blob: 364973b4213370f834ae06d9b5b67798397df3a2 [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 IP 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 _IPTABLES_H
16#define _IPTABLES_H
17
18#ifdef __KERNEL__
19#include <linux/if.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/in.h>
21#include <linux/ip.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_ipv4.h>
27
Harald Welte2e4e6a12006-01-12 13:30:04 -080028#include <linux/netfilter/x_tables.h>
29
30#define IPT_FUNCTION_MAXNAMELEN XT_FUNCTION_MAXNAMELEN
Patrick McHardy2748e5d2007-01-23 22:00:13 -080031#define IPT_TABLE_MAXNAMELEN XT_TABLE_MAXNAMELEN
Harald Welte2e4e6a12006-01-12 13:30:04 -080032#define ipt_match xt_match
33#define ipt_target xt_target
34#define ipt_table xt_table
35#define ipt_get_revision xt_get_revision
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37/* Yes, Virginia, you have to zero the padding. */
38struct ipt_ip {
39 /* Source and destination IP addr */
40 struct in_addr src, dst;
41 /* Mask for src and dest IP addr */
42 struct in_addr smsk, dmsk;
43 char iniface[IFNAMSIZ], outiface[IFNAMSIZ];
44 unsigned char iniface_mask[IFNAMSIZ], outiface_mask[IFNAMSIZ];
45
46 /* Protocol, 0 = ANY */
47 u_int16_t proto;
48
49 /* Flags word */
50 u_int8_t flags;
51 /* Inverse flags */
52 u_int8_t invflags;
53};
54
Dmitry Mishin1e30a012006-03-22 13:56:56 -080055#define ipt_entry_match xt_entry_match
56#define ipt_entry_target xt_entry_target
57#define ipt_standard_target xt_standard_target
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Harald Welte2e4e6a12006-01-12 13:30:04 -080059#define ipt_counters xt_counters
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61/* Values for "flag" field in struct ipt_ip (general ip structure). */
62#define IPT_F_FRAG 0x01 /* Set if rule is a fragment rule */
Patrick McHardy05465342005-08-21 23:31:43 -070063#define IPT_F_GOTO 0x02 /* Set if jump is a goto */
64#define IPT_F_MASK 0x03 /* All possible flag bits mask. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66/* Values for "inv" field in struct ipt_ip. */
67#define IPT_INV_VIA_IN 0x01 /* Invert the sense of IN IFACE. */
68#define IPT_INV_VIA_OUT 0x02 /* Invert the sense of OUT IFACE */
69#define IPT_INV_TOS 0x04 /* Invert the sense of TOS. */
70#define IPT_INV_SRCIP 0x08 /* Invert the sense of SRC IP. */
71#define IPT_INV_DSTIP 0x10 /* Invert the sense of DST OP. */
72#define IPT_INV_FRAG 0x20 /* Invert the sense of FRAG. */
Harald Welte2e4e6a12006-01-12 13:30:04 -080073#define IPT_INV_PROTO XT_INV_PROTO
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#define IPT_INV_MASK 0x7F /* All possible flag bits mask. */
75
76/* This structure defines each of the firewall rules. Consists of 3
77 parts which are 1) general IP header stuff 2) match specific
78 stuff 3) the target to perform if the rule matches */
Eric Dumazetd94d9fe2009-11-04 09:50:58 -080079struct ipt_entry {
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 struct ipt_ip ip;
81
82 /* Mark with fields that we care about. */
83 unsigned int nfcache;
84
85 /* Size of ipt_entry + matches */
86 u_int16_t target_offset;
87 /* Size of ipt_entry + matches + target */
88 u_int16_t next_offset;
89
90 /* Back pointer */
91 unsigned int comefrom;
92
93 /* Packet and byte counters. */
Harald Welte2e4e6a12006-01-12 13:30:04 -080094 struct xt_counters counters;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96 /* The matches (if any), then the target. */
97 unsigned char elems[0];
98};
99
100/*
101 * New IP firewall options for [gs]etsockopt at the RAW IP level.
102 * Unlike BSD Linux inherits IP options so you don't have to use a raw
Yasuyuki Kozakaib96e7ec2006-11-14 19:48:48 -0800103 * socket for this. Instead we check rights in the calls.
104 *
105 * ATTENTION: check linux/in.h before adding new number here.
106 */
107#define IPT_BASE_CTL 64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Yasuyuki Kozakaib96e7ec2006-11-14 19:48:48 -0800109#define IPT_SO_SET_REPLACE (IPT_BASE_CTL)
110#define IPT_SO_SET_ADD_COUNTERS (IPT_BASE_CTL + 1)
111#define IPT_SO_SET_MAX IPT_SO_SET_ADD_COUNTERS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Yasuyuki Kozakaib96e7ec2006-11-14 19:48:48 -0800113#define IPT_SO_GET_INFO (IPT_BASE_CTL)
114#define IPT_SO_GET_ENTRIES (IPT_BASE_CTL + 1)
115#define IPT_SO_GET_REVISION_MATCH (IPT_BASE_CTL + 2)
116#define IPT_SO_GET_REVISION_TARGET (IPT_BASE_CTL + 3)
117#define IPT_SO_GET_MAX IPT_SO_GET_REVISION_TARGET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Harald Welte2e4e6a12006-01-12 13:30:04 -0800119#define IPT_CONTINUE XT_CONTINUE
120#define IPT_RETURN XT_RETURN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Harald Welte2e4e6a12006-01-12 13:30:04 -0800122#include <linux/netfilter/xt_tcpudp.h>
123#define ipt_udp xt_udp
124#define ipt_tcp xt_tcp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Harald Welte2e4e6a12006-01-12 13:30:04 -0800126#define IPT_TCP_INV_SRCPT XT_TCP_INV_SRCPT
127#define IPT_TCP_INV_DSTPT XT_TCP_INV_DSTPT
128#define IPT_TCP_INV_FLAGS XT_TCP_INV_FLAGS
129#define IPT_TCP_INV_OPTION XT_TCP_INV_OPTION
130#define IPT_TCP_INV_MASK XT_TCP_INV_MASK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Harald Welte2e4e6a12006-01-12 13:30:04 -0800132#define IPT_UDP_INV_SRCPT XT_UDP_INV_SRCPT
133#define IPT_UDP_INV_DSTPT XT_UDP_INV_DSTPT
134#define IPT_UDP_INV_MASK XT_UDP_INV_MASK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136/* ICMP matching stuff */
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800137struct ipt_icmp {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 u_int8_t type; /* type to match */
139 u_int8_t code[2]; /* range of code */
140 u_int8_t invflags; /* Inverse flags */
141};
142
143/* Values for "inv" field for struct ipt_icmp. */
144#define IPT_ICMP_INV 0x01 /* Invert the sense of type/code test */
145
146/* The argument to IPT_SO_GET_INFO */
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800147struct ipt_getinfo {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 /* Which table: caller fills this in. */
149 char name[IPT_TABLE_MAXNAMELEN];
150
151 /* Kernel fills these in. */
152 /* Which hook entry points are valid: bitmask */
153 unsigned int valid_hooks;
154
155 /* Hook entry points: one per netfilter hook. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800156 unsigned int hook_entry[NF_INET_NUMHOOKS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 /* Underflow points. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800159 unsigned int underflow[NF_INET_NUMHOOKS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 /* Number of entries */
162 unsigned int num_entries;
163
164 /* Size of entries. */
165 unsigned int size;
166};
167
168/* The argument to IPT_SO_SET_REPLACE. */
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800169struct ipt_replace {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 /* Which table. */
171 char name[IPT_TABLE_MAXNAMELEN];
172
173 /* Which hook entry points are valid: bitmask. You can't
174 change this. */
175 unsigned int valid_hooks;
176
177 /* Number of entries */
178 unsigned int num_entries;
179
180 /* Total size of new entries */
181 unsigned int size;
182
183 /* Hook entry points. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800184 unsigned int hook_entry[NF_INET_NUMHOOKS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 /* Underflow points. */
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800187 unsigned int underflow[NF_INET_NUMHOOKS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189 /* Information about old entries: */
190 /* Number of counters (must be equal to current number of entries). */
191 unsigned int num_counters;
192 /* The old entries' counters. */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800193 struct xt_counters __user *counters;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195 /* The entries (hang off end: not really an array). */
196 struct ipt_entry entries[0];
197};
198
199/* The argument to IPT_SO_ADD_COUNTERS. */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800200#define ipt_counters_info xt_counters_info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202/* The argument to IPT_SO_GET_ENTRIES. */
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800203struct ipt_get_entries {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 /* Which table: user fills this in. */
205 char name[IPT_TABLE_MAXNAMELEN];
206
207 /* User fills this in: total entry size. */
208 unsigned int size;
209
210 /* The entries. */
211 struct ipt_entry entrytable[0];
212};
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214/* Standard return verdict, or do jump. */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800215#define IPT_STANDARD_TARGET XT_STANDARD_TARGET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216/* Error verdict. */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800217#define IPT_ERROR_TARGET XT_ERROR_TARGET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219/* Helper functions */
220static __inline__ struct ipt_entry_target *
221ipt_get_target(struct ipt_entry *e)
222{
223 return (void *)e + e->target_offset;
224}
225
226/* fn returns 0 to continue iteration */
Patrick McHardy89c002d2007-12-17 21:46:59 -0800227#define IPT_MATCH_ITERATE(e, fn, args...) \
228 XT_MATCH_ITERATE(struct ipt_entry, e, fn, ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230/* fn returns 0 to continue iteration */
Patrick McHardy89c002d2007-12-17 21:46:59 -0800231#define IPT_ENTRY_ITERATE(entries, size, fn, args...) \
232 XT_ENTRY_ITERATE(struct ipt_entry, entries, size, fn, ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234/*
235 * Main firewall chains definitions and global var's definitions.
236 */
237#ifdef __KERNEL__
238
239#include <linux/init.h>
240extern void ipt_init(void) __init;
241
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800242extern struct xt_table *ipt_register_table(struct net *net,
Jan Engelhardt35aad0f2009-08-24 14:56:30 +0200243 const struct xt_table *table,
Alexey Dobriyan44d34e72008-01-31 04:02:44 -0800244 const struct ipt_replace *repl);
Alexey Dobriyanf54e9362010-01-18 08:25:47 +0100245extern void ipt_unregister_table(struct net *net, struct xt_table *table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247/* Standard entry. */
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800248struct ipt_standard {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 struct ipt_entry entry;
250 struct ipt_standard_target target;
251};
252
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800253struct ipt_error_target {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 struct ipt_entry_target target;
255 char errorname[IPT_FUNCTION_MAXNAMELEN];
256};
257
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800258struct ipt_error {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 struct ipt_entry entry;
260 struct ipt_error_target target;
261};
262
Patrick McHardy3c2ad462007-05-10 14:14:16 -0700263#define IPT_ENTRY_INIT(__size) \
264{ \
265 .target_offset = sizeof(struct ipt_entry), \
266 .next_offset = (__size), \
267}
268
269#define IPT_STANDARD_INIT(__verdict) \
270{ \
271 .entry = IPT_ENTRY_INIT(sizeof(struct ipt_standard)), \
272 .target = XT_TARGET_INIT(IPT_STANDARD_TARGET, \
273 sizeof(struct xt_standard_target)), \
274 .target.verdict = -(__verdict) - 1, \
275}
276
277#define IPT_ERROR_INIT \
278{ \
279 .entry = IPT_ENTRY_INIT(sizeof(struct ipt_error)), \
280 .target = XT_TARGET_INIT(IPT_ERROR_TARGET, \
281 sizeof(struct ipt_error_target)), \
282 .target.errorname = "ERROR", \
283}
284
Jan Engelhardte3eaa992009-06-17 22:14:54 +0200285extern void *ipt_alloc_initial_table(const struct xt_table *);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700286extern unsigned int ipt_do_table(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 unsigned int hook,
288 const struct net_device *in,
289 const struct net_device *out,
Jan Engelhardte60a13e2007-02-07 15:12:33 -0800290 struct xt_table *table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Harald Welte2e4e6a12006-01-12 13:30:04 -0800292#define IPT_ALIGN(s) XT_ALIGN(s)
Dmitry Mishin27229712006-04-01 02:25:19 -0800293
294#ifdef CONFIG_COMPAT
295#include <net/compat.h>
296
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800297struct compat_ipt_entry {
Dmitry Mishin27229712006-04-01 02:25:19 -0800298 struct ipt_ip ip;
299 compat_uint_t nfcache;
300 u_int16_t target_offset;
301 u_int16_t next_offset;
302 compat_uint_t comefrom;
303 struct compat_xt_counters counters;
304 unsigned char elems[0];
305};
306
Patrick McHardy73cd5982007-12-17 21:47:32 -0800307/* Helper functions */
308static inline struct ipt_entry_target *
309compat_ipt_get_target(struct compat_ipt_entry *e)
310{
311 return (void *)e + e->target_offset;
312}
313
Dmitry Mishin27229712006-04-01 02:25:19 -0800314#define COMPAT_IPT_ALIGN(s) COMPAT_XT_ALIGN(s)
315
Patrick McHardy73cd5982007-12-17 21:47:32 -0800316/* fn returns 0 to continue iteration */
317#define COMPAT_IPT_MATCH_ITERATE(e, fn, args...) \
318 XT_MATCH_ITERATE(struct compat_ipt_entry, e, fn, ## args)
319
320/* fn returns 0 to continue iteration */
321#define COMPAT_IPT_ENTRY_ITERATE(entries, size, fn, args...) \
322 XT_ENTRY_ITERATE(struct compat_ipt_entry, entries, size, fn, ## args)
323
324/* fn returns 0 to continue iteration */
325#define COMPAT_IPT_ENTRY_ITERATE_CONTINUE(entries, size, n, fn, args...) \
326 XT_ENTRY_ITERATE_CONTINUE(struct compat_ipt_entry, entries, size, n, \
327 fn, ## args)
328
Dmitry Mishin27229712006-04-01 02:25:19 -0800329#endif /* CONFIG_COMPAT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330#endif /*__KERNEL__*/
331#endif /* _IPTABLES_H */