blob: 03e6ce979eaa52f1a58493f1f020e5298ab16f70 [file] [log] [blame]
Harald Welte2e4e6a12006-01-12 13:30:04 -08001#ifndef _X_TABLES_H
2#define _X_TABLES_H
3
4#define XT_FUNCTION_MAXNAMELEN 30
5#define XT_TABLE_MAXNAMELEN 32
6
Dmitry Mishin1e30a012006-03-22 13:56:56 -08007struct xt_entry_match
8{
9 union {
10 struct {
11 u_int16_t match_size;
12
13 /* Used by userspace */
14 char name[XT_FUNCTION_MAXNAMELEN-1];
15
16 u_int8_t revision;
17 } user;
18 struct {
19 u_int16_t match_size;
20
21 /* Used inside the kernel */
22 struct xt_match *match;
23 } kernel;
24
25 /* Total length */
26 u_int16_t match_size;
27 } u;
28
29 unsigned char data[0];
30};
31
32struct xt_entry_target
33{
34 union {
35 struct {
36 u_int16_t target_size;
37
38 /* Used by userspace */
39 char name[XT_FUNCTION_MAXNAMELEN-1];
40
41 u_int8_t revision;
42 } user;
43 struct {
44 u_int16_t target_size;
45
46 /* Used inside the kernel */
47 struct xt_target *target;
48 } kernel;
49
50 /* Total length */
51 u_int16_t target_size;
52 } u;
53
54 unsigned char data[0];
55};
56
Patrick McHardy3c2ad462007-05-10 14:14:16 -070057#define XT_TARGET_INIT(__name, __size) \
58{ \
59 .target.u.user = { \
60 .target_size = XT_ALIGN(__size), \
61 .name = __name, \
62 }, \
63}
64
Dmitry Mishin1e30a012006-03-22 13:56:56 -080065struct xt_standard_target
66{
67 struct xt_entry_target target;
68 int verdict;
69};
70
Harald Welte2e4e6a12006-01-12 13:30:04 -080071/* The argument to IPT_SO_GET_REVISION_*. Returns highest revision
72 * kernel supports, if >= revision. */
73struct xt_get_revision
74{
75 char name[XT_FUNCTION_MAXNAMELEN-1];
76
77 u_int8_t revision;
78};
79
80/* CONTINUE verdict for targets */
81#define XT_CONTINUE 0xFFFFFFFF
82
83/* For standard target */
84#define XT_RETURN (-NF_REPEAT - 1)
85
David S. Miller6fbfc962006-01-20 11:57:07 -080086/* this is a dummy structure to find out the alignment requirement for a struct
87 * containing all the fundamental data types that are used in ipt_entry,
88 * ip6t_entry and arpt_entry. This sucks, and it is a hack. It will be my
89 * personal pleasure to remove it -HW
90 */
91struct _xt_align
92{
93 u_int8_t u8;
94 u_int16_t u16;
95 u_int32_t u32;
96 u_int64_t u64;
97};
98
99#define XT_ALIGN(s) (((s) + (__alignof__(struct _xt_align)-1)) \
100 & ~(__alignof__(struct _xt_align)-1))
Harald Welte2e4e6a12006-01-12 13:30:04 -0800101
102/* Standard return verdict, or do jump. */
103#define XT_STANDARD_TARGET ""
104/* Error verdict. */
105#define XT_ERROR_TARGET "ERROR"
106
Harald Welte2e4e6a12006-01-12 13:30:04 -0800107#define SET_COUNTER(c,b,p) do { (c).bcnt = (b); (c).pcnt = (p); } while(0)
108#define ADD_COUNTER(c,b,p) do { (c).bcnt += (b); (c).pcnt += (p); } while(0)
109
110struct xt_counters
111{
112 u_int64_t pcnt, bcnt; /* Packet and byte counters */
113};
114
115/* The argument to IPT_SO_ADD_COUNTERS. */
116struct xt_counters_info
117{
118 /* Which table. */
119 char name[XT_TABLE_MAXNAMELEN];
120
121 unsigned int num_counters;
122
123 /* The counters (actually `number' of these). */
124 struct xt_counters counters[0];
125};
126
127#define XT_INV_PROTO 0x40 /* Invert the sense of PROTO. */
128
129#ifdef __KERNEL__
130
131#include <linux/netdevice.h>
132
Harald Welte2e4e6a12006-01-12 13:30:04 -0800133struct xt_match
134{
135 struct list_head list;
136
137 const char name[XT_FUNCTION_MAXNAMELEN-1];
138
Harald Welte2e4e6a12006-01-12 13:30:04 -0800139 /* Return true or false: return FALSE and set *hotdrop = 1 to
140 force immediate packet drop. */
141 /* Arguments changed since 2.6.9, as this must now handle
142 non-linear skb, using skb_header_pointer and
143 skb_ip_make_writable. */
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -0700144 bool (*match)(const struct sk_buff *skb,
145 const struct net_device *in,
146 const struct net_device *out,
147 const struct xt_match *match,
148 const void *matchinfo,
149 int offset,
150 unsigned int protoff,
151 bool *hotdrop);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800152
153 /* Called when user tries to insert an entry of this type. */
154 /* Should return true or false. */
Jan Engelhardtccb79bd2007-07-07 22:16:00 -0700155 bool (*checkentry)(const char *tablename,
156 const void *ip,
157 const struct xt_match *match,
158 void *matchinfo,
159 unsigned int hook_mask);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800160
161 /* Called when entry of this type deleted. */
Patrick McHardyefa74162006-08-22 00:36:37 -0700162 void (*destroy)(const struct xt_match *match, void *matchinfo);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800163
Dmitry Mishin27229712006-04-01 02:25:19 -0800164 /* Called when userspace align differs from kernel space one */
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700165 void (*compat_from_user)(void *dst, void *src);
166 int (*compat_to_user)(void __user *dst, void *src);
Dmitry Mishin27229712006-04-01 02:25:19 -0800167
Harald Welte2e4e6a12006-01-12 13:30:04 -0800168 /* Set this to THIS_MODULE if you are a module, otherwise NULL */
169 struct module *me;
Patrick McHardy37f9f732006-03-20 17:59:06 -0800170
Patrick McHardy91270cf2006-08-22 00:43:38 -0700171 /* Free to use by each match */
172 unsigned long data;
173
Patrick McHardy37f9f732006-03-20 17:59:06 -0800174 char *table;
175 unsigned int matchsize;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700176 unsigned int compatsize;
Patrick McHardy37f9f732006-03-20 17:59:06 -0800177 unsigned int hooks;
178 unsigned short proto;
Patrick McHardyc4b88512006-03-20 18:03:40 -0800179
180 unsigned short family;
Patrick McHardy37f9f732006-03-20 17:59:06 -0800181 u_int8_t revision;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800182};
183
184/* Registration hooks for targets. */
185struct xt_target
186{
187 struct list_head list;
188
189 const char name[XT_FUNCTION_MAXNAMELEN-1];
190
Harald Welte2e4e6a12006-01-12 13:30:04 -0800191 /* Returns verdict. Argument order changed since 2.6.9, as this
192 must now handle non-linear skbs, using skb_copy_bits and
193 skb_ip_make_writable. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700194 unsigned int (*target)(struct sk_buff *skb,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800195 const struct net_device *in,
196 const struct net_device *out,
197 unsigned int hooknum,
Patrick McHardy1c524832006-03-20 18:02:15 -0800198 const struct xt_target *target,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700199 const void *targinfo);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800200
201 /* Called when user tries to insert an entry of this type:
202 hook_mask is a bitmask of hooks from which it can be
203 called. */
204 /* Should return true or false. */
Jan Engelhardte1931b72007-07-07 22:16:26 -0700205 bool (*checkentry)(const char *tablename,
206 const void *entry,
207 const struct xt_target *target,
208 void *targinfo,
209 unsigned int hook_mask);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800210
211 /* Called when entry of this type deleted. */
Patrick McHardyefa74162006-08-22 00:36:37 -0700212 void (*destroy)(const struct xt_target *target, void *targinfo);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800213
Dmitry Mishin27229712006-04-01 02:25:19 -0800214 /* Called when userspace align differs from kernel space one */
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700215 void (*compat_from_user)(void *dst, void *src);
216 int (*compat_to_user)(void __user *dst, void *src);
Dmitry Mishin27229712006-04-01 02:25:19 -0800217
Harald Welte2e4e6a12006-01-12 13:30:04 -0800218 /* Set this to THIS_MODULE if you are a module, otherwise NULL */
219 struct module *me;
Patrick McHardy37f9f732006-03-20 17:59:06 -0800220
221 char *table;
222 unsigned int targetsize;
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700223 unsigned int compatsize;
Patrick McHardy37f9f732006-03-20 17:59:06 -0800224 unsigned int hooks;
225 unsigned short proto;
Patrick McHardyc4b88512006-03-20 18:03:40 -0800226
227 unsigned short family;
Patrick McHardy37f9f732006-03-20 17:59:06 -0800228 u_int8_t revision;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800229};
230
231/* Furniture shopping... */
232struct xt_table
233{
234 struct list_head list;
235
236 /* A unique name... */
237 char name[XT_TABLE_MAXNAMELEN];
238
239 /* What hooks you will enter on */
240 unsigned int valid_hooks;
241
242 /* Lock for the curtain */
243 rwlock_t lock;
244
245 /* Man behind the curtain... */
246 //struct ip6t_table_info *private;
247 void *private;
248
249 /* Set this to THIS_MODULE if you are a module, otherwise NULL */
250 struct module *me;
251
252 int af; /* address/protocol family */
253};
254
255#include <linux/netfilter_ipv4.h>
256
257/* The table itself */
258struct xt_table_info
259{
260 /* Size per table */
261 unsigned int size;
262 /* Number of entries: FIXME. --RR */
263 unsigned int number;
264 /* Initial number of entries. Needed for module usage count */
265 unsigned int initial_entries;
266
267 /* Entry points and underflows */
268 unsigned int hook_entry[NF_IP_NUMHOOKS];
269 unsigned int underflow[NF_IP_NUMHOOKS];
270
271 /* ipt_entry tables: one per CPU */
272 char *entries[NR_CPUS];
273};
274
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800275extern int xt_register_target(struct xt_target *target);
276extern void xt_unregister_target(struct xt_target *target);
Patrick McHardy52d9c422006-08-22 00:33:45 -0700277extern int xt_register_targets(struct xt_target *target, unsigned int n);
278extern void xt_unregister_targets(struct xt_target *target, unsigned int n);
279
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800280extern int xt_register_match(struct xt_match *target);
281extern void xt_unregister_match(struct xt_match *target);
Patrick McHardy52d9c422006-08-22 00:33:45 -0700282extern int xt_register_matches(struct xt_match *match, unsigned int n);
283extern void xt_unregister_matches(struct xt_match *match, unsigned int n);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800284
Patrick McHardy37f9f732006-03-20 17:59:06 -0800285extern int xt_check_match(const struct xt_match *match, unsigned short family,
286 unsigned int size, const char *table, unsigned int hook,
287 unsigned short proto, int inv_proto);
288extern int xt_check_target(const struct xt_target *target, unsigned short family,
289 unsigned int size, const char *table, unsigned int hook,
290 unsigned short proto, int inv_proto);
291
Harald Welte2e4e6a12006-01-12 13:30:04 -0800292extern int xt_register_table(struct xt_table *table,
293 struct xt_table_info *bootstrap,
294 struct xt_table_info *newinfo);
295extern void *xt_unregister_table(struct xt_table *table);
296
297extern struct xt_table_info *xt_replace_table(struct xt_table *table,
298 unsigned int num_counters,
299 struct xt_table_info *newinfo,
300 int *error);
301
302extern struct xt_match *xt_find_match(int af, const char *name, u8 revision);
303extern struct xt_target *xt_find_target(int af, const char *name, u8 revision);
304extern struct xt_target *xt_request_find_target(int af, const char *name,
305 u8 revision);
306extern int xt_find_revision(int af, const char *name, u8 revision, int target,
307 int *err);
308
309extern struct xt_table *xt_find_table_lock(int af, const char *name);
310extern void xt_table_unlock(struct xt_table *t);
311
312extern int xt_proto_init(int af);
313extern void xt_proto_fini(int af);
314
315extern struct xt_table_info *xt_alloc_table_info(unsigned int size);
316extern void xt_free_table_info(struct xt_table_info *info);
317
Dmitry Mishin27229712006-04-01 02:25:19 -0800318#ifdef CONFIG_COMPAT
319#include <net/compat.h>
320
321struct compat_xt_entry_match
322{
323 union {
324 struct {
325 u_int16_t match_size;
326 char name[XT_FUNCTION_MAXNAMELEN - 1];
327 u_int8_t revision;
328 } user;
Patrick McHardy46c5ea3c2006-05-02 05:12:22 +0200329 struct {
330 u_int16_t match_size;
331 compat_uptr_t match;
332 } kernel;
Dmitry Mishin27229712006-04-01 02:25:19 -0800333 u_int16_t match_size;
334 } u;
335 unsigned char data[0];
336};
337
338struct compat_xt_entry_target
339{
340 union {
341 struct {
342 u_int16_t target_size;
343 char name[XT_FUNCTION_MAXNAMELEN - 1];
344 u_int8_t revision;
345 } user;
Patrick McHardy46c5ea3c2006-05-02 05:12:22 +0200346 struct {
347 u_int16_t target_size;
348 compat_uptr_t target;
349 } kernel;
Dmitry Mishin27229712006-04-01 02:25:19 -0800350 u_int16_t target_size;
351 } u;
352 unsigned char data[0];
353};
354
355/* FIXME: this works only on 32 bit tasks
356 * need to change whole approach in order to calculate align as function of
357 * current task alignment */
358
359struct compat_xt_counters
360{
Patrick McHardy55fe5862006-04-24 17:16:28 -0700361#if defined(CONFIG_X86_64) || defined(CONFIG_IA64)
Dmitry Mishin27229712006-04-01 02:25:19 -0800362 u_int32_t cnt[4];
Patrick McHardy55fe5862006-04-24 17:16:28 -0700363#else
364 u_int64_t cnt[2];
365#endif
Dmitry Mishin27229712006-04-01 02:25:19 -0800366};
367
368struct compat_xt_counters_info
369{
370 char name[XT_TABLE_MAXNAMELEN];
371 compat_uint_t num_counters;
372 struct compat_xt_counters counters[0];
373};
374
375#define COMPAT_XT_ALIGN(s) (((s) + (__alignof__(struct compat_xt_counters)-1)) \
376 & ~(__alignof__(struct compat_xt_counters)-1))
377
378extern void xt_compat_lock(int af);
379extern void xt_compat_unlock(int af);
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700380
381extern int xt_compat_match_offset(struct xt_match *match);
382extern void xt_compat_match_from_user(struct xt_entry_match *m,
383 void **dstptr, int *size);
384extern int xt_compat_match_to_user(struct xt_entry_match *m,
Al Viro3e597c62006-09-24 23:42:20 +0100385 void __user **dstptr, int *size);
Patrick McHardy9fa492c2006-09-20 12:05:37 -0700386
387extern int xt_compat_target_offset(struct xt_target *target);
388extern void xt_compat_target_from_user(struct xt_entry_target *t,
389 void **dstptr, int *size);
390extern int xt_compat_target_to_user(struct xt_entry_target *t,
Al Viro3e597c62006-09-24 23:42:20 +0100391 void __user **dstptr, int *size);
Dmitry Mishin27229712006-04-01 02:25:19 -0800392
393#endif /* CONFIG_COMPAT */
Harald Welte2e4e6a12006-01-12 13:30:04 -0800394#endif /* __KERNEL__ */
395
396#endif /* _X_TABLES_H */