blob: 4aed340401dbca0368049dff8fdbddf4f5a399ad [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>
20#include <linux/types.h>
21#include <linux/in6.h>
22#include <linux/ipv6.h>
23#include <linux/skbuff.h>
24#endif
25#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
30#define IP6T_FUNCTION_MAXNAMELEN XT_FUNCTION_MAXNAMELEN
31#define IP6T_TABLE_MAXNAMELEN XT_TABLE_MAXNAMELEN
32
33#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
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/* Yes, Virginia, you have to zero the padding. */
39struct ip6t_ip6 {
40 /* Source and destination IP6 addr */
41 struct in6_addr src, dst;
42 /* Mask for src and dest IP6 addr */
43 struct in6_addr smsk, dmsk;
44 char iniface[IFNAMSIZ], outiface[IFNAMSIZ];
45 unsigned char iniface_mask[IFNAMSIZ], outiface_mask[IFNAMSIZ];
46
47 /* ARGH, HopByHop uses 0, so can't do 0 = ANY,
48 instead IP6T_F_NOPROTO must be set */
49 u_int16_t proto;
50 /* TOS to match iff flags & IP6T_F_TOS */
51 u_int8_t tos;
52
53 /* Flags word */
54 u_int8_t flags;
55 /* Inverse flags */
56 u_int8_t invflags;
57};
58
Dmitry Mishin1e30a012006-03-22 13:56:56 -080059#define ip6t_entry_match xt_entry_match
60#define ip6t_entry_target xt_entry_target
61#define ip6t_standard_target xt_standard_target
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Harald Welte2e4e6a12006-01-12 13:30:04 -080063#define ip6t_counters xt_counters
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65/* Values for "flag" field in struct ip6t_ip6 (general ip6 structure). */
66#define IP6T_F_PROTO 0x01 /* Set if rule cares about upper
67 protocols */
68#define IP6T_F_TOS 0x02 /* Match the TOS. */
Patrick McHardy05465342005-08-21 23:31:43 -070069#define IP6T_F_GOTO 0x04 /* Set if jump is a goto */
70#define IP6T_F_MASK 0x07 /* All possible flag bits mask. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72/* Values for "inv" field in struct ip6t_ip6. */
73#define IP6T_INV_VIA_IN 0x01 /* Invert the sense of IN IFACE. */
74#define IP6T_INV_VIA_OUT 0x02 /* Invert the sense of OUT IFACE */
75#define IP6T_INV_TOS 0x04 /* Invert the sense of TOS. */
76#define IP6T_INV_SRCIP 0x08 /* Invert the sense of SRC IP. */
77#define IP6T_INV_DSTIP 0x10 /* Invert the sense of DST OP. */
78#define IP6T_INV_FRAG 0x20 /* Invert the sense of FRAG. */
Harald Welte2e4e6a12006-01-12 13:30:04 -080079#define IP6T_INV_PROTO XT_INV_PROTO
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#define IP6T_INV_MASK 0x7F /* All possible flag bits mask. */
81
82/* This structure defines each of the firewall rules. Consists of 3
83 parts which are 1) general IP header stuff 2) match specific
84 stuff 3) the target to perform if the rule matches */
85struct ip6t_entry
86{
87 struct ip6t_ip6 ipv6;
88
89 /* Mark with fields that we care about. */
90 unsigned int nfcache;
91
92 /* Size of ipt_entry + matches */
93 u_int16_t target_offset;
94 /* Size of ipt_entry + matches + target */
95 u_int16_t next_offset;
96
97 /* Back pointer */
98 unsigned int comefrom;
99
100 /* Packet and byte counters. */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800101 struct xt_counters counters;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103 /* The matches (if any), then the target. */
104 unsigned char elems[0];
105};
106
107/*
108 * New IP firewall options for [gs]etsockopt at the RAW IP level.
109 * Unlike BSD Linux inherits IP options so you don't have to use
Yasuyuki Kozakaib96e7ec2006-11-14 19:48:48 -0800110 * a raw socket for this. Instead we check rights in the calls.
111 *
112 * ATTENTION: check linux/in6.h before adding new number here.
113 */
114#define IP6T_BASE_CTL 64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Yasuyuki Kozakaib96e7ec2006-11-14 19:48:48 -0800116#define IP6T_SO_SET_REPLACE (IP6T_BASE_CTL)
117#define IP6T_SO_SET_ADD_COUNTERS (IP6T_BASE_CTL + 1)
118#define IP6T_SO_SET_MAX IP6T_SO_SET_ADD_COUNTERS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Yasuyuki Kozakaib96e7ec2006-11-14 19:48:48 -0800120#define IP6T_SO_GET_INFO (IP6T_BASE_CTL)
121#define IP6T_SO_GET_ENTRIES (IP6T_BASE_CTL + 1)
122#define IP6T_SO_GET_REVISION_MATCH (IP6T_BASE_CTL + 4)
123#define IP6T_SO_GET_REVISION_TARGET (IP6T_BASE_CTL + 5)
124#define IP6T_SO_GET_MAX IP6T_SO_GET_REVISION_TARGET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126/* CONTINUE verdict for targets */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800127#define IP6T_CONTINUE XT_CONTINUE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129/* For standard target */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800130#define IP6T_RETURN XT_RETURN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Harald Welte2e4e6a12006-01-12 13:30:04 -0800132/* TCP/UDP matching stuff */
133#include <linux/netfilter/xt_tcpudp.h>
134
135#define ip6t_tcp xt_tcp
136#define ip6t_udp xt_udp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138/* Values for "inv" field in struct ipt_tcp. */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800139#define IP6T_TCP_INV_SRCPT XT_TCP_INV_SRCPT
140#define IP6T_TCP_INV_DSTPT XT_TCP_INV_DSTPT
141#define IP6T_TCP_INV_FLAGS XT_TCP_INV_FLAGS
142#define IP6T_TCP_INV_OPTION XT_TCP_INV_OPTION
143#define IP6T_TCP_INV_MASK XT_TCP_INV_MASK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145/* Values for "invflags" field in struct ipt_udp. */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800146#define IP6T_UDP_INV_SRCPT XT_UDP_INV_SRCPT
147#define IP6T_UDP_INV_DSTPT XT_UDP_INV_DSTPT
148#define IP6T_UDP_INV_MASK XT_UDP_INV_MASK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150/* ICMP matching stuff */
151struct ip6t_icmp
152{
153 u_int8_t type; /* type to match */
154 u_int8_t code[2]; /* range of code */
155 u_int8_t invflags; /* Inverse flags */
156};
157
158/* Values for "inv" field for struct ipt_icmp. */
159#define IP6T_ICMP_INV 0x01 /* Invert the sense of type/code test */
160
161/* The argument to IP6T_SO_GET_INFO */
162struct ip6t_getinfo
163{
164 /* Which table: caller fills this in. */
165 char name[IP6T_TABLE_MAXNAMELEN];
166
167 /* Kernel fills these in. */
168 /* Which hook entry points are valid: bitmask */
169 unsigned int valid_hooks;
170
171 /* Hook entry points: one per netfilter hook. */
172 unsigned int hook_entry[NF_IP6_NUMHOOKS];
173
174 /* Underflow points. */
175 unsigned int underflow[NF_IP6_NUMHOOKS];
176
177 /* Number of entries */
178 unsigned int num_entries;
179
180 /* Size of entries. */
181 unsigned int size;
182};
183
184/* The argument to IP6T_SO_SET_REPLACE. */
185struct ip6t_replace
186{
187 /* Which table. */
188 char name[IP6T_TABLE_MAXNAMELEN];
189
190 /* Which hook entry points are valid: bitmask. You can't
191 change this. */
192 unsigned int valid_hooks;
193
194 /* Number of entries */
195 unsigned int num_entries;
196
197 /* Total size of new entries */
198 unsigned int size;
199
200 /* Hook entry points. */
201 unsigned int hook_entry[NF_IP6_NUMHOOKS];
202
203 /* Underflow points. */
204 unsigned int underflow[NF_IP6_NUMHOOKS];
205
206 /* Information about old entries: */
207 /* Number of counters (must be equal to current number of entries). */
208 unsigned int num_counters;
209 /* The old entries' counters. */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800210 struct xt_counters __user *counters;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 /* The entries (hang off end: not really an array). */
213 struct ip6t_entry entries[0];
214};
215
216/* The argument to IP6T_SO_ADD_COUNTERS. */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800217#define ip6t_counters_info xt_counters_info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219/* The argument to IP6T_SO_GET_ENTRIES. */
220struct ip6t_get_entries
221{
222 /* Which table: user fills this in. */
223 char name[IP6T_TABLE_MAXNAMELEN];
224
225 /* User fills this in: total entry size. */
226 unsigned int size;
227
228 /* The entries. */
229 struct ip6t_entry entrytable[0];
230};
231
232/* Standard return verdict, or do jump. */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800233#define IP6T_STANDARD_TARGET XT_STANDARD_TARGET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234/* Error verdict. */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800235#define IP6T_ERROR_TARGET XT_ERROR_TARGET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237/* Helper functions */
238static __inline__ struct ip6t_entry_target *
239ip6t_get_target(struct ip6t_entry *e)
240{
241 return (void *)e + e->target_offset;
242}
243
244/* fn returns 0 to continue iteration */
245#define IP6T_MATCH_ITERATE(e, fn, args...) \
246({ \
247 unsigned int __i; \
248 int __ret = 0; \
249 struct ip6t_entry_match *__m; \
250 \
251 for (__i = sizeof(struct ip6t_entry); \
252 __i < (e)->target_offset; \
253 __i += __m->u.match_size) { \
254 __m = (void *)(e) + __i; \
255 \
256 __ret = fn(__m , ## args); \
257 if (__ret != 0) \
258 break; \
259 } \
260 __ret; \
261})
262
263/* fn returns 0 to continue iteration */
264#define IP6T_ENTRY_ITERATE(entries, size, fn, args...) \
265({ \
266 unsigned int __i; \
267 int __ret = 0; \
268 struct ip6t_entry *__e; \
269 \
270 for (__i = 0; __i < (size); __i += __e->next_offset) { \
271 __e = (void *)(entries) + __i; \
272 \
273 __ret = fn(__e , ## args); \
274 if (__ret != 0) \
275 break; \
276 } \
277 __ret; \
278})
279
280/*
281 * Main firewall chains definitions and global var's definitions.
282 */
283
284#ifdef __KERNEL__
285
286#include <linux/init.h>
287extern void ip6t_init(void) __init;
288
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800289#define ip6t_register_target(tgt) \
290({ (tgt)->family = AF_INET6; \
291 xt_register_target(tgt); })
292#define ip6t_unregister_target(tgt) xt_unregister_target(tgt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800294#define ip6t_register_match(match) \
295({ (match)->family = AF_INET6; \
296 xt_register_match(match); })
297#define ip6t_unregister_match(match) xt_unregister_match(match)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299extern int ip6t_register_table(struct ip6t_table *table,
300 const struct ip6t_replace *repl);
301extern void ip6t_unregister_table(struct ip6t_table *table);
302extern unsigned int ip6t_do_table(struct sk_buff **pskb,
303 unsigned int hook,
304 const struct net_device *in,
305 const struct net_device *out,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700306 struct ip6t_table *table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308/* Check for an extension */
309extern int ip6t_ext_hdr(u8 nexthdr);
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -0700310/* find specified header and get offset to it */
311extern int ipv6_find_hdr(const struct sk_buff *skb, unsigned int *offset,
Patrick McHardyb777e0c2006-01-05 12:21:16 -0800312 int target, unsigned short *fragoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Patrick McHardy22dea562006-01-05 12:21:34 -0800314extern int ip6_masked_addrcmp(const struct in6_addr *addr1,
315 const struct in6_addr *mask,
316 const struct in6_addr *addr2);
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318#define IP6T_ALIGN(s) (((s) + (__alignof__(struct ip6t_entry)-1)) & ~(__alignof__(struct ip6t_entry)-1))
319
320#endif /*__KERNEL__*/
321#endif /* _IP6_TABLES_H */