[NETFILTER]: x_tables: add data member to struct xt_match
[safe/jmp/linux-2.6] / include / linux / netfilter / x_tables.h
1 #ifndef _X_TABLES_H
2 #define _X_TABLES_H
3
4 #define XT_FUNCTION_MAXNAMELEN 30
5 #define XT_TABLE_MAXNAMELEN 32
6
7 struct 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
32 struct 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
57 struct xt_standard_target
58 {
59         struct xt_entry_target target;
60         int verdict;
61 };
62
63 /* The argument to IPT_SO_GET_REVISION_*.  Returns highest revision
64  * kernel supports, if >= revision. */
65 struct xt_get_revision
66 {
67         char name[XT_FUNCTION_MAXNAMELEN-1];
68
69         u_int8_t revision;
70 };
71
72 /* CONTINUE verdict for targets */
73 #define XT_CONTINUE 0xFFFFFFFF
74
75 /* For standard target */
76 #define XT_RETURN (-NF_REPEAT - 1)
77
78 /* this is a dummy structure to find out the alignment requirement for a struct
79  * containing all the fundamental data types that are used in ipt_entry,
80  * ip6t_entry and arpt_entry.  This sucks, and it is a hack.  It will be my
81  * personal pleasure to remove it -HW
82  */
83 struct _xt_align
84 {
85         u_int8_t u8;
86         u_int16_t u16;
87         u_int32_t u32;
88         u_int64_t u64;
89 };
90
91 #define XT_ALIGN(s) (((s) + (__alignof__(struct _xt_align)-1))  \
92                         & ~(__alignof__(struct _xt_align)-1))
93
94 /* Standard return verdict, or do jump. */
95 #define XT_STANDARD_TARGET ""
96 /* Error verdict. */
97 #define XT_ERROR_TARGET "ERROR"
98
99 /*
100  * New IP firewall options for [gs]etsockopt at the RAW IP level.
101  * Unlike BSD Linux inherits IP options so you don't have to use a raw
102  * socket for this. Instead we check rights in the calls. */
103 #define XT_BASE_CTL             64      /* base for firewall socket options */
104
105 #define XT_SO_SET_REPLACE       (XT_BASE_CTL)
106 #define XT_SO_SET_ADD_COUNTERS  (XT_BASE_CTL + 1)
107 #define XT_SO_SET_MAX           XT_SO_SET_ADD_COUNTERS
108
109 #define XT_SO_GET_INFO                  (XT_BASE_CTL)
110 #define XT_SO_GET_ENTRIES               (XT_BASE_CTL + 1)
111 #define XT_SO_GET_REVISION_MATCH        (XT_BASE_CTL + 2)
112 #define XT_SO_GET_REVISION_TARGET       (XT_BASE_CTL + 3)
113 #define XT_SO_GET_MAX                   XT_SO_GET_REVISION_TARGET
114
115 #define SET_COUNTER(c,b,p) do { (c).bcnt = (b); (c).pcnt = (p); } while(0)
116 #define ADD_COUNTER(c,b,p) do { (c).bcnt += (b); (c).pcnt += (p); } while(0)
117
118 struct xt_counters
119 {
120         u_int64_t pcnt, bcnt;                   /* Packet and byte counters */
121 };
122
123 /* The argument to IPT_SO_ADD_COUNTERS. */
124 struct xt_counters_info
125 {
126         /* Which table. */
127         char name[XT_TABLE_MAXNAMELEN];
128
129         unsigned int num_counters;
130
131         /* The counters (actually `number' of these). */
132         struct xt_counters counters[0];
133 };
134
135 #define XT_INV_PROTO            0x40    /* Invert the sense of PROTO. */
136
137 #ifdef __KERNEL__
138
139 #include <linux/netdevice.h>
140
141 #define ASSERT_READ_LOCK(x)
142 #define ASSERT_WRITE_LOCK(x)
143 #include <linux/netfilter_ipv4/listhelp.h>
144
145 #ifdef CONFIG_COMPAT
146 #define COMPAT_TO_USER          1
147 #define COMPAT_FROM_USER        -1
148 #define COMPAT_CALC_SIZE        0
149 #endif
150
151 struct xt_match
152 {
153         struct list_head list;
154
155         const char name[XT_FUNCTION_MAXNAMELEN-1];
156
157         /* Return true or false: return FALSE and set *hotdrop = 1 to
158            force immediate packet drop. */
159         /* Arguments changed since 2.6.9, as this must now handle
160            non-linear skb, using skb_header_pointer and
161            skb_ip_make_writable. */
162         int (*match)(const struct sk_buff *skb,
163                      const struct net_device *in,
164                      const struct net_device *out,
165                      const struct xt_match *match,
166                      const void *matchinfo,
167                      int offset,
168                      unsigned int protoff,
169                      int *hotdrop);
170
171         /* Called when user tries to insert an entry of this type. */
172         /* Should return true or false. */
173         int (*checkentry)(const char *tablename,
174                           const void *ip,
175                           const struct xt_match *match,
176                           void *matchinfo,
177                           unsigned int hook_mask);
178
179         /* Called when entry of this type deleted. */
180         void (*destroy)(const struct xt_match *match, void *matchinfo);
181
182         /* Called when userspace align differs from kernel space one */
183         int (*compat)(void *match, void **dstptr, int *size, int convert);
184
185         /* Set this to THIS_MODULE if you are a module, otherwise NULL */
186         struct module *me;
187
188         /* Free to use by each match */
189         unsigned long data;
190
191         char *table;
192         unsigned int matchsize;
193         unsigned int hooks;
194         unsigned short proto;
195
196         unsigned short family;
197         u_int8_t revision;
198 };
199
200 /* Registration hooks for targets. */
201 struct xt_target
202 {
203         struct list_head list;
204
205         const char name[XT_FUNCTION_MAXNAMELEN-1];
206
207         /* Returns verdict. Argument order changed since 2.6.9, as this
208            must now handle non-linear skbs, using skb_copy_bits and
209            skb_ip_make_writable. */
210         unsigned int (*target)(struct sk_buff **pskb,
211                                const struct net_device *in,
212                                const struct net_device *out,
213                                unsigned int hooknum,
214                                const struct xt_target *target,
215                                const void *targinfo);
216
217         /* Called when user tries to insert an entry of this type:
218            hook_mask is a bitmask of hooks from which it can be
219            called. */
220         /* Should return true or false. */
221         int (*checkentry)(const char *tablename,
222                           const void *entry,
223                           const struct xt_target *target,
224                           void *targinfo,
225                           unsigned int hook_mask);
226
227         /* Called when entry of this type deleted. */
228         void (*destroy)(const struct xt_target *target, void *targinfo);
229
230         /* Called when userspace align differs from kernel space one */
231         int (*compat)(void *target, void **dstptr, int *size, int convert);
232
233         /* Set this to THIS_MODULE if you are a module, otherwise NULL */
234         struct module *me;
235
236         char *table;
237         unsigned int targetsize;
238         unsigned int hooks;
239         unsigned short proto;
240
241         unsigned short family;
242         u_int8_t revision;
243 };
244
245 /* Furniture shopping... */
246 struct xt_table
247 {
248         struct list_head list;
249
250         /* A unique name... */
251         char name[XT_TABLE_MAXNAMELEN];
252
253         /* What hooks you will enter on */
254         unsigned int valid_hooks;
255
256         /* Lock for the curtain */
257         rwlock_t lock;
258
259         /* Man behind the curtain... */
260         //struct ip6t_table_info *private;
261         void *private;
262
263         /* Set this to THIS_MODULE if you are a module, otherwise NULL */
264         struct module *me;
265
266         int af;         /* address/protocol family */
267 };
268
269 #include <linux/netfilter_ipv4.h>
270
271 /* The table itself */
272 struct xt_table_info
273 {
274         /* Size per table */
275         unsigned int size;
276         /* Number of entries: FIXME. --RR */
277         unsigned int number;
278         /* Initial number of entries. Needed for module usage count */
279         unsigned int initial_entries;
280
281         /* Entry points and underflows */
282         unsigned int hook_entry[NF_IP_NUMHOOKS];
283         unsigned int underflow[NF_IP_NUMHOOKS];
284
285         /* ipt_entry tables: one per CPU */
286         char *entries[NR_CPUS];
287 };
288
289 extern int xt_register_target(struct xt_target *target);
290 extern void xt_unregister_target(struct xt_target *target);
291 extern int xt_register_targets(struct xt_target *target, unsigned int n);
292 extern void xt_unregister_targets(struct xt_target *target, unsigned int n);
293
294 extern int xt_register_match(struct xt_match *target);
295 extern void xt_unregister_match(struct xt_match *target);
296 extern int xt_register_matches(struct xt_match *match, unsigned int n);
297 extern void xt_unregister_matches(struct xt_match *match, unsigned int n);
298
299 extern int xt_check_match(const struct xt_match *match, unsigned short family,
300                           unsigned int size, const char *table, unsigned int hook,
301                           unsigned short proto, int inv_proto);
302 extern int xt_check_target(const struct xt_target *target, unsigned short family,
303                            unsigned int size, const char *table, unsigned int hook,
304                            unsigned short proto, int inv_proto);
305
306 extern int xt_register_table(struct xt_table *table,
307                              struct xt_table_info *bootstrap,
308                              struct xt_table_info *newinfo);
309 extern void *xt_unregister_table(struct xt_table *table);
310
311 extern struct xt_table_info *xt_replace_table(struct xt_table *table,
312                                               unsigned int num_counters,
313                                               struct xt_table_info *newinfo,
314                                               int *error);
315
316 extern struct xt_match *xt_find_match(int af, const char *name, u8 revision);
317 extern struct xt_target *xt_find_target(int af, const char *name, u8 revision);
318 extern struct xt_target *xt_request_find_target(int af, const char *name, 
319                                                 u8 revision);
320 extern int xt_find_revision(int af, const char *name, u8 revision, int target,
321                             int *err);
322
323 extern struct xt_table *xt_find_table_lock(int af, const char *name);
324 extern void xt_table_unlock(struct xt_table *t);
325
326 extern int xt_proto_init(int af);
327 extern void xt_proto_fini(int af);
328
329 extern struct xt_table_info *xt_alloc_table_info(unsigned int size);
330 extern void xt_free_table_info(struct xt_table_info *info);
331
332 #ifdef CONFIG_COMPAT
333 #include <net/compat.h>
334
335 struct compat_xt_entry_match
336 {
337         union {
338                 struct {
339                         u_int16_t match_size;
340                         char name[XT_FUNCTION_MAXNAMELEN - 1];
341                         u_int8_t revision;
342                 } user;
343                 struct {
344                         u_int16_t match_size;
345                         compat_uptr_t match;
346                 } kernel;
347                 u_int16_t match_size;
348         } u;
349         unsigned char data[0];
350 };
351
352 struct compat_xt_entry_target
353 {
354         union {
355                 struct {
356                         u_int16_t target_size;
357                         char name[XT_FUNCTION_MAXNAMELEN - 1];
358                         u_int8_t revision;
359                 } user;
360                 struct {
361                         u_int16_t target_size;
362                         compat_uptr_t target;
363                 } kernel;
364                 u_int16_t target_size;
365         } u;
366         unsigned char data[0];
367 };
368
369 /* FIXME: this works only on 32 bit tasks
370  * need to change whole approach in order to calculate align as function of
371  * current task alignment */
372
373 struct compat_xt_counters
374 {
375 #if defined(CONFIG_X86_64) || defined(CONFIG_IA64)
376         u_int32_t cnt[4];
377 #else
378         u_int64_t cnt[2];
379 #endif
380 };
381
382 struct compat_xt_counters_info
383 {
384         char name[XT_TABLE_MAXNAMELEN];
385         compat_uint_t num_counters;
386         struct compat_xt_counters counters[0];
387 };
388
389 #define COMPAT_XT_ALIGN(s) (((s) + (__alignof__(struct compat_xt_counters)-1)) \
390                 & ~(__alignof__(struct compat_xt_counters)-1))
391
392 extern void xt_compat_lock(int af);
393 extern void xt_compat_unlock(int af);
394 extern int xt_compat_match(void *match, void **dstptr, int *size, int convert);
395 extern int xt_compat_target(void *target, void **dstptr, int *size,
396                 int convert);
397
398 #endif /* CONFIG_COMPAT */
399 #endif /* __KERNEL__ */
400
401 #endif /* _X_TABLES_H */