blob: 4f06dad0bde90d5f6de514adb2d2825e3c4ad861 [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>
20#include <linux/types.h>
21#include <linux/in.h>
22#include <linux/ip.h>
23#include <linux/skbuff.h>
24#endif
25#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
31#define IPT_TABLE_MAXNAMELEN XT_FUNCTION_MAXNAMELEN
32#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 */
79struct ipt_entry
80{
81 struct ipt_ip ip;
82
83 /* Mark with fields that we care about. */
84 unsigned int nfcache;
85
86 /* Size of ipt_entry + matches */
87 u_int16_t target_offset;
88 /* Size of ipt_entry + matches + target */
89 u_int16_t next_offset;
90
91 /* Back pointer */
92 unsigned int comefrom;
93
94 /* Packet and byte counters. */
Harald Welte2e4e6a12006-01-12 13:30:04 -080095 struct xt_counters counters;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97 /* The matches (if any), then the target. */
98 unsigned char elems[0];
99};
100
101/*
102 * New IP firewall options for [gs]etsockopt at the RAW IP level.
103 * Unlike BSD Linux inherits IP options so you don't have to use a raw
Yasuyuki Kozakaib96e7ec2006-11-14 19:48:48 -0800104 * socket for this. Instead we check rights in the calls.
105 *
106 * ATTENTION: check linux/in.h before adding new number here.
107 */
108#define IPT_BASE_CTL 64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Yasuyuki Kozakaib96e7ec2006-11-14 19:48:48 -0800110#define IPT_SO_SET_REPLACE (IPT_BASE_CTL)
111#define IPT_SO_SET_ADD_COUNTERS (IPT_BASE_CTL + 1)
112#define IPT_SO_SET_MAX IPT_SO_SET_ADD_COUNTERS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Yasuyuki Kozakaib96e7ec2006-11-14 19:48:48 -0800114#define IPT_SO_GET_INFO (IPT_BASE_CTL)
115#define IPT_SO_GET_ENTRIES (IPT_BASE_CTL + 1)
116#define IPT_SO_GET_REVISION_MATCH (IPT_BASE_CTL + 2)
117#define IPT_SO_GET_REVISION_TARGET (IPT_BASE_CTL + 3)
118#define IPT_SO_GET_MAX IPT_SO_GET_REVISION_TARGET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Harald Welte2e4e6a12006-01-12 13:30:04 -0800120#define IPT_CONTINUE XT_CONTINUE
121#define IPT_RETURN XT_RETURN
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Harald Welte2e4e6a12006-01-12 13:30:04 -0800123#include <linux/netfilter/xt_tcpudp.h>
124#define ipt_udp xt_udp
125#define ipt_tcp xt_tcp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Harald Welte2e4e6a12006-01-12 13:30:04 -0800127#define IPT_TCP_INV_SRCPT XT_TCP_INV_SRCPT
128#define IPT_TCP_INV_DSTPT XT_TCP_INV_DSTPT
129#define IPT_TCP_INV_FLAGS XT_TCP_INV_FLAGS
130#define IPT_TCP_INV_OPTION XT_TCP_INV_OPTION
131#define IPT_TCP_INV_MASK XT_TCP_INV_MASK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Harald Welte2e4e6a12006-01-12 13:30:04 -0800133#define IPT_UDP_INV_SRCPT XT_UDP_INV_SRCPT
134#define IPT_UDP_INV_DSTPT XT_UDP_INV_DSTPT
135#define IPT_UDP_INV_MASK XT_UDP_INV_MASK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137/* ICMP matching stuff */
138struct ipt_icmp
139{
140 u_int8_t type; /* type to match */
141 u_int8_t code[2]; /* range of code */
142 u_int8_t invflags; /* Inverse flags */
143};
144
145/* Values for "inv" field for struct ipt_icmp. */
146#define IPT_ICMP_INV 0x01 /* Invert the sense of type/code test */
147
148/* The argument to IPT_SO_GET_INFO */
149struct ipt_getinfo
150{
151 /* Which table: caller fills this in. */
152 char name[IPT_TABLE_MAXNAMELEN];
153
154 /* Kernel fills these in. */
155 /* Which hook entry points are valid: bitmask */
156 unsigned int valid_hooks;
157
158 /* Hook entry points: one per netfilter hook. */
159 unsigned int hook_entry[NF_IP_NUMHOOKS];
160
161 /* Underflow points. */
162 unsigned int underflow[NF_IP_NUMHOOKS];
163
164 /* Number of entries */
165 unsigned int num_entries;
166
167 /* Size of entries. */
168 unsigned int size;
169};
170
171/* The argument to IPT_SO_SET_REPLACE. */
172struct ipt_replace
173{
174 /* Which table. */
175 char name[IPT_TABLE_MAXNAMELEN];
176
177 /* Which hook entry points are valid: bitmask. You can't
178 change this. */
179 unsigned int valid_hooks;
180
181 /* Number of entries */
182 unsigned int num_entries;
183
184 /* Total size of new entries */
185 unsigned int size;
186
187 /* Hook entry points. */
188 unsigned int hook_entry[NF_IP_NUMHOOKS];
189
190 /* Underflow points. */
191 unsigned int underflow[NF_IP_NUMHOOKS];
192
193 /* Information about old entries: */
194 /* Number of counters (must be equal to current number of entries). */
195 unsigned int num_counters;
196 /* The old entries' counters. */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800197 struct xt_counters __user *counters;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 /* The entries (hang off end: not really an array). */
200 struct ipt_entry entries[0];
201};
202
203/* The argument to IPT_SO_ADD_COUNTERS. */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800204#define ipt_counters_info xt_counters_info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206/* The argument to IPT_SO_GET_ENTRIES. */
207struct ipt_get_entries
208{
209 /* Which table: user fills this in. */
210 char name[IPT_TABLE_MAXNAMELEN];
211
212 /* User fills this in: total entry size. */
213 unsigned int size;
214
215 /* The entries. */
216 struct ipt_entry entrytable[0];
217};
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219/* Standard return verdict, or do jump. */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800220#define IPT_STANDARD_TARGET XT_STANDARD_TARGET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221/* Error verdict. */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800222#define IPT_ERROR_TARGET XT_ERROR_TARGET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224/* Helper functions */
225static __inline__ struct ipt_entry_target *
226ipt_get_target(struct ipt_entry *e)
227{
228 return (void *)e + e->target_offset;
229}
230
231/* fn returns 0 to continue iteration */
232#define IPT_MATCH_ITERATE(e, fn, args...) \
233({ \
234 unsigned int __i; \
235 int __ret = 0; \
236 struct ipt_entry_match *__match; \
237 \
238 for (__i = sizeof(struct ipt_entry); \
239 __i < (e)->target_offset; \
240 __i += __match->u.match_size) { \
241 __match = (void *)(e) + __i; \
242 \
243 __ret = fn(__match , ## args); \
244 if (__ret != 0) \
245 break; \
246 } \
247 __ret; \
248})
249
250/* fn returns 0 to continue iteration */
251#define IPT_ENTRY_ITERATE(entries, size, fn, args...) \
252({ \
253 unsigned int __i; \
254 int __ret = 0; \
255 struct ipt_entry *__entry; \
256 \
257 for (__i = 0; __i < (size); __i += __entry->next_offset) { \
258 __entry = (void *)(entries) + __i; \
259 \
260 __ret = fn(__entry , ## args); \
261 if (__ret != 0) \
262 break; \
263 } \
264 __ret; \
265})
266
267/*
268 * Main firewall chains definitions and global var's definitions.
269 */
270#ifdef __KERNEL__
271
272#include <linux/init.h>
273extern void ipt_init(void) __init;
274
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800275#define ipt_register_target(tgt) \
276({ (tgt)->family = AF_INET; \
277 xt_register_target(tgt); })
278#define ipt_unregister_target(tgt) xt_unregister_target(tgt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800280#define ipt_register_match(mtch) \
281({ (mtch)->family = AF_INET; \
282 xt_register_match(mtch); })
283#define ipt_unregister_match(mtch) xt_unregister_match(mtch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Harald Welte2e4e6a12006-01-12 13:30:04 -0800285//#define ipt_register_table(tbl, repl) xt_register_table(AF_INET, tbl, repl)
286//#define ipt_unregister_table(tbl) xt_unregister_table(AF_INET, tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Harald Welte2e4e6a12006-01-12 13:30:04 -0800288extern int ipt_register_table(struct ipt_table *table,
289 const struct ipt_replace *repl);
290extern void ipt_unregister_table(struct ipt_table *table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292/* net/sched/ipt.c: Gimme access to your targets! Gets target->me. */
293extern struct ipt_target *ipt_find_target(const char *name, u8 revision);
294
295/* Standard entry. */
296struct ipt_standard
297{
298 struct ipt_entry entry;
299 struct ipt_standard_target target;
300};
301
302struct ipt_error_target
303{
304 struct ipt_entry_target target;
305 char errorname[IPT_FUNCTION_MAXNAMELEN];
306};
307
308struct ipt_error
309{
310 struct ipt_entry entry;
311 struct ipt_error_target target;
312};
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314extern unsigned int ipt_do_table(struct sk_buff **pskb,
315 unsigned int hook,
316 const struct net_device *in,
317 const struct net_device *out,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700318 struct ipt_table *table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Harald Welte2e4e6a12006-01-12 13:30:04 -0800320#define IPT_ALIGN(s) XT_ALIGN(s)
Dmitry Mishin27229712006-04-01 02:25:19 -0800321
322#ifdef CONFIG_COMPAT
323#include <net/compat.h>
324
325struct compat_ipt_entry
326{
327 struct ipt_ip ip;
328 compat_uint_t nfcache;
329 u_int16_t target_offset;
330 u_int16_t next_offset;
331 compat_uint_t comefrom;
332 struct compat_xt_counters counters;
333 unsigned char elems[0];
334};
335
336#define COMPAT_IPT_ALIGN(s) COMPAT_XT_ALIGN(s)
337
338#endif /* CONFIG_COMPAT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339#endif /*__KERNEL__*/
340#endif /* _IPTABLES_H */