4 #define XT_FUNCTION_MAXNAMELEN 30
5 #define XT_TABLE_MAXNAMELEN 32
13 /* Used by userspace */
14 char name
[XT_FUNCTION_MAXNAMELEN
-1];
21 /* Used inside the kernel */
22 struct xt_match
*match
;
29 unsigned char data
[0];
32 struct xt_entry_target
36 u_int16_t target_size
;
38 /* Used by userspace */
39 char name
[XT_FUNCTION_MAXNAMELEN
-1];
44 u_int16_t target_size
;
46 /* Used inside the kernel */
47 struct xt_target
*target
;
51 u_int16_t target_size
;
54 unsigned char data
[0];
57 #define XT_TARGET_INIT(__name, __size) \
60 .target_size = XT_ALIGN(__size), \
65 struct xt_standard_target
67 struct xt_entry_target target
;
71 /* The argument to IPT_SO_GET_REVISION_*. Returns highest revision
72 * kernel supports, if >= revision. */
73 struct xt_get_revision
75 char name
[XT_FUNCTION_MAXNAMELEN
-1];
80 /* CONTINUE verdict for targets */
81 #define XT_CONTINUE 0xFFFFFFFF
83 /* For standard target */
84 #define XT_RETURN (-NF_REPEAT - 1)
86 /* 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
99 #define XT_ALIGN(s) (((s) + (__alignof__(struct _xt_align)-1)) \
100 & ~(__alignof__(struct _xt_align)-1))
102 /* Standard return verdict, or do jump. */
103 #define XT_STANDARD_TARGET ""
105 #define XT_ERROR_TARGET "ERROR"
107 #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)
112 u_int64_t pcnt
, bcnt
; /* Packet and byte counters */
115 /* The argument to IPT_SO_ADD_COUNTERS. */
116 struct xt_counters_info
119 char name
[XT_TABLE_MAXNAMELEN
];
121 unsigned int num_counters
;
123 /* The counters (actually `number' of these). */
124 struct xt_counters counters
[0];
127 #define XT_INV_PROTO 0x40 /* Invert the sense of PROTO. */
129 /* fn returns 0 to continue iteration */
130 #define XT_MATCH_ITERATE(type, e, fn, args...) \
134 struct xt_entry_match *__m; \
136 for (__i = sizeof(type); \
137 __i < (e)->target_offset; \
138 __i += __m->u.match_size) { \
139 __m = (void *)e + __i; \
141 __ret = fn(__m , ## args); \
148 /* fn returns 0 to continue iteration */
149 #define XT_ENTRY_ITERATE_CONTINUE(type, entries, size, n, fn, args...) \
151 unsigned int __i, __n; \
155 for (__i = 0, __n = 0; __i < (size); \
156 __i += __entry->next_offset, __n++) { \
157 __entry = (void *)(entries) + __i; \
161 __ret = fn(__entry , ## args); \
168 /* fn returns 0 to continue iteration */
169 #define XT_ENTRY_ITERATE(type, entries, size, fn, args...) \
170 XT_ENTRY_ITERATE_CONTINUE(type, entries, size, 0, fn, args)
174 #include <linux/netdevice.h>
178 struct list_head list
;
180 const char name
[XT_FUNCTION_MAXNAMELEN
-1];
182 /* Return true or false: return FALSE and set *hotdrop = 1 to
183 force immediate packet drop. */
184 /* Arguments changed since 2.6.9, as this must now handle
185 non-linear skb, using skb_header_pointer and
186 skb_ip_make_writable. */
187 bool (*match
)(const struct sk_buff
*skb
,
188 const struct net_device
*in
,
189 const struct net_device
*out
,
190 const struct xt_match
*match
,
191 const void *matchinfo
,
193 unsigned int protoff
,
196 /* Called when user tries to insert an entry of this type. */
197 /* Should return true or false. */
198 bool (*checkentry
)(const char *tablename
,
200 const struct xt_match
*match
,
202 unsigned int hook_mask
);
204 /* Called when entry of this type deleted. */
205 void (*destroy
)(const struct xt_match
*match
, void *matchinfo
);
207 /* Called when userspace align differs from kernel space one */
208 void (*compat_from_user
)(void *dst
, void *src
);
209 int (*compat_to_user
)(void __user
*dst
, void *src
);
211 /* Set this to THIS_MODULE if you are a module, otherwise NULL */
214 /* Free to use by each match */
218 unsigned int matchsize
;
219 unsigned int compatsize
;
221 unsigned short proto
;
223 unsigned short family
;
227 /* Registration hooks for targets. */
230 struct list_head list
;
232 const char name
[XT_FUNCTION_MAXNAMELEN
-1];
234 /* Returns verdict. Argument order changed since 2.6.9, as this
235 must now handle non-linear skbs, using skb_copy_bits and
236 skb_ip_make_writable. */
237 unsigned int (*target
)(struct sk_buff
*skb
,
238 const struct net_device
*in
,
239 const struct net_device
*out
,
240 unsigned int hooknum
,
241 const struct xt_target
*target
,
242 const void *targinfo
);
244 /* Called when user tries to insert an entry of this type:
245 hook_mask is a bitmask of hooks from which it can be
247 /* Should return true or false. */
248 bool (*checkentry
)(const char *tablename
,
250 const struct xt_target
*target
,
252 unsigned int hook_mask
);
254 /* Called when entry of this type deleted. */
255 void (*destroy
)(const struct xt_target
*target
, void *targinfo
);
257 /* Called when userspace align differs from kernel space one */
258 void (*compat_from_user
)(void *dst
, void *src
);
259 int (*compat_to_user
)(void __user
*dst
, void *src
);
261 /* Set this to THIS_MODULE if you are a module, otherwise NULL */
265 unsigned int targetsize
;
266 unsigned int compatsize
;
268 unsigned short proto
;
270 unsigned short family
;
274 /* Furniture shopping... */
277 struct list_head list
;
279 /* A unique name... */
280 const char name
[XT_TABLE_MAXNAMELEN
];
282 /* What hooks you will enter on */
283 unsigned int valid_hooks
;
285 /* Lock for the curtain */
288 /* Man behind the curtain... */
289 //struct ip6t_table_info *private;
292 /* Set this to THIS_MODULE if you are a module, otherwise NULL */
295 int af
; /* address/protocol family */
298 #include <linux/netfilter_ipv4.h>
300 /* The table itself */
305 /* Number of entries: FIXME. --RR */
307 /* Initial number of entries. Needed for module usage count */
308 unsigned int initial_entries
;
310 /* Entry points and underflows */
311 unsigned int hook_entry
[NF_INET_NUMHOOKS
];
312 unsigned int underflow
[NF_INET_NUMHOOKS
];
314 /* ipt_entry tables: one per CPU */
315 /* Note : this field MUST be the last one, see XT_TABLE_INFO_SZ */
319 #define XT_TABLE_INFO_SZ (offsetof(struct xt_table_info, entries) \
320 + nr_cpu_ids * sizeof(char *))
321 extern int xt_register_target(struct xt_target
*target
);
322 extern void xt_unregister_target(struct xt_target
*target
);
323 extern int xt_register_targets(struct xt_target
*target
, unsigned int n
);
324 extern void xt_unregister_targets(struct xt_target
*target
, unsigned int n
);
326 extern int xt_register_match(struct xt_match
*target
);
327 extern void xt_unregister_match(struct xt_match
*target
);
328 extern int xt_register_matches(struct xt_match
*match
, unsigned int n
);
329 extern void xt_unregister_matches(struct xt_match
*match
, unsigned int n
);
331 extern int xt_check_match(const struct xt_match
*match
, unsigned short family
,
332 unsigned int size
, const char *table
, unsigned int hook
,
333 unsigned short proto
, int inv_proto
);
334 extern int xt_check_target(const struct xt_target
*target
, unsigned short family
,
335 unsigned int size
, const char *table
, unsigned int hook
,
336 unsigned short proto
, int inv_proto
);
338 extern struct xt_table
*xt_register_table(struct net
*net
,
339 struct xt_table
*table
,
340 struct xt_table_info
*bootstrap
,
341 struct xt_table_info
*newinfo
);
342 extern void *xt_unregister_table(struct xt_table
*table
);
344 extern struct xt_table_info
*xt_replace_table(struct xt_table
*table
,
345 unsigned int num_counters
,
346 struct xt_table_info
*newinfo
,
349 extern struct xt_match
*xt_find_match(int af
, const char *name
, u8 revision
);
350 extern struct xt_target
*xt_find_target(int af
, const char *name
, u8 revision
);
351 extern struct xt_target
*xt_request_find_target(int af
, const char *name
,
353 extern int xt_find_revision(int af
, const char *name
, u8 revision
, int target
,
356 extern struct xt_table
*xt_find_table_lock(struct net
*net
, int af
,
358 extern void xt_table_unlock(struct xt_table
*t
);
360 extern int xt_proto_init(struct net
*net
, int af
);
361 extern void xt_proto_fini(struct net
*net
, int af
);
363 extern struct xt_table_info
*xt_alloc_table_info(unsigned int size
);
364 extern void xt_free_table_info(struct xt_table_info
*info
);
367 #include <net/compat.h>
369 struct compat_xt_entry_match
373 u_int16_t match_size
;
374 char name
[XT_FUNCTION_MAXNAMELEN
- 1];
378 u_int16_t match_size
;
381 u_int16_t match_size
;
383 unsigned char data
[0];
386 struct compat_xt_entry_target
390 u_int16_t target_size
;
391 char name
[XT_FUNCTION_MAXNAMELEN
- 1];
395 u_int16_t target_size
;
396 compat_uptr_t target
;
398 u_int16_t target_size
;
400 unsigned char data
[0];
403 /* FIXME: this works only on 32 bit tasks
404 * need to change whole approach in order to calculate align as function of
405 * current task alignment */
407 struct compat_xt_counters
409 #if defined(CONFIG_X86_64) || defined(CONFIG_IA64)
416 struct compat_xt_counters_info
418 char name
[XT_TABLE_MAXNAMELEN
];
419 compat_uint_t num_counters
;
420 struct compat_xt_counters counters
[0];
423 #define COMPAT_XT_ALIGN(s) (((s) + (__alignof__(struct compat_xt_counters)-1)) \
424 & ~(__alignof__(struct compat_xt_counters)-1))
426 extern void xt_compat_lock(int af
);
427 extern void xt_compat_unlock(int af
);
429 extern int xt_compat_add_offset(int af
, unsigned int offset
, short delta
);
430 extern void xt_compat_flush_offsets(int af
);
431 extern short xt_compat_calc_jump(int af
, unsigned int offset
);
433 extern int xt_compat_match_offset(struct xt_match
*match
);
434 extern int xt_compat_match_from_user(struct xt_entry_match
*m
,
435 void **dstptr
, unsigned int *size
);
436 extern int xt_compat_match_to_user(struct xt_entry_match
*m
,
437 void __user
**dstptr
, unsigned int *size
);
439 extern int xt_compat_target_offset(struct xt_target
*target
);
440 extern void xt_compat_target_from_user(struct xt_entry_target
*t
,
441 void **dstptr
, unsigned int *size
);
442 extern int xt_compat_target_to_user(struct xt_entry_target
*t
,
443 void __user
**dstptr
, unsigned int *size
);
445 #endif /* CONFIG_COMPAT */
446 #endif /* __KERNEL__ */
448 #endif /* _X_TABLES_H */