2 * x_tables core - Backend for {ip,ip6,arp}_tables
4 * Copyright (C) 2006-2006 Harald Welte <laforge@netfilter.org>
6 * Based on existing ip_tables code which is
7 * Copyright (C) 1999 Paul `Rusty' Russell & Michael J. Neuling
8 * Copyright (C) 2000-2005 Netfilter Core Team <coreteam@netfilter.org>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
16 #include <linux/kernel.h>
17 #include <linux/socket.h>
18 #include <linux/net.h>
19 #include <linux/proc_fs.h>
20 #include <linux/seq_file.h>
21 #include <linux/string.h>
22 #include <linux/vmalloc.h>
23 #include <linux/mutex.h>
25 #include <linux/slab.h>
26 #include <net/net_namespace.h>
28 #include <linux/netfilter/x_tables.h>
29 #include <linux/netfilter_arp.h>
30 #include <linux/netfilter_ipv4/ip_tables.h>
31 #include <linux/netfilter_ipv6/ip6_tables.h>
32 #include <linux/netfilter_arp/arp_tables.h>
34 MODULE_LICENSE("GPL");
35 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
36 MODULE_DESCRIPTION("{ip,ip6,arp,eb}_tables backend module");
38 #define SMP_ALIGN(x) (((x) + SMP_CACHE_BYTES-1) & ~(SMP_CACHE_BYTES-1))
41 struct compat_delta
*next
;
48 struct list_head match
;
49 struct list_head target
;
51 struct mutex compat_mutex
;
52 struct compat_delta
*compat_offsets
;
56 static struct xt_af
*xt
;
58 static const char *const xt_prefix
[NFPROTO_NUMPROTO
] = {
59 [NFPROTO_UNSPEC
] = "x",
60 [NFPROTO_IPV4
] = "ip",
61 [NFPROTO_ARP
] = "arp",
62 [NFPROTO_BRIDGE
] = "eb",
63 [NFPROTO_IPV6
] = "ip6",
66 /* Allow this many total (re)entries. */
67 static const unsigned int xt_jumpstack_multiplier
= 2;
69 /* Registration hooks for targets. */
71 xt_register_target(struct xt_target
*target
)
73 u_int8_t af
= target
->family
;
76 ret
= mutex_lock_interruptible(&xt
[af
].mutex
);
79 list_add(&target
->list
, &xt
[af
].target
);
80 mutex_unlock(&xt
[af
].mutex
);
83 EXPORT_SYMBOL(xt_register_target
);
86 xt_unregister_target(struct xt_target
*target
)
88 u_int8_t af
= target
->family
;
90 mutex_lock(&xt
[af
].mutex
);
91 list_del(&target
->list
);
92 mutex_unlock(&xt
[af
].mutex
);
94 EXPORT_SYMBOL(xt_unregister_target
);
97 xt_register_targets(struct xt_target
*target
, unsigned int n
)
102 for (i
= 0; i
< n
; i
++) {
103 err
= xt_register_target(&target
[i
]);
111 xt_unregister_targets(target
, i
);
114 EXPORT_SYMBOL(xt_register_targets
);
117 xt_unregister_targets(struct xt_target
*target
, unsigned int n
)
120 xt_unregister_target(&target
[n
]);
122 EXPORT_SYMBOL(xt_unregister_targets
);
125 xt_register_match(struct xt_match
*match
)
127 u_int8_t af
= match
->family
;
130 ret
= mutex_lock_interruptible(&xt
[af
].mutex
);
134 list_add(&match
->list
, &xt
[af
].match
);
135 mutex_unlock(&xt
[af
].mutex
);
139 EXPORT_SYMBOL(xt_register_match
);
142 xt_unregister_match(struct xt_match
*match
)
144 u_int8_t af
= match
->family
;
146 mutex_lock(&xt
[af
].mutex
);
147 list_del(&match
->list
);
148 mutex_unlock(&xt
[af
].mutex
);
150 EXPORT_SYMBOL(xt_unregister_match
);
153 xt_register_matches(struct xt_match
*match
, unsigned int n
)
158 for (i
= 0; i
< n
; i
++) {
159 err
= xt_register_match(&match
[i
]);
167 xt_unregister_matches(match
, i
);
170 EXPORT_SYMBOL(xt_register_matches
);
173 xt_unregister_matches(struct xt_match
*match
, unsigned int n
)
176 xt_unregister_match(&match
[n
]);
178 EXPORT_SYMBOL(xt_unregister_matches
);
182 * These are weird, but module loading must not be done with mutex
183 * held (since they will register), and we have to have a single
184 * function to use try_then_request_module().
187 /* Find match, grabs ref. Returns ERR_PTR() on error. */
188 struct xt_match
*xt_find_match(u8 af
, const char *name
, u8 revision
)
193 if (mutex_lock_interruptible(&xt
[af
].mutex
) != 0)
194 return ERR_PTR(-EINTR
);
196 list_for_each_entry(m
, &xt
[af
].match
, list
) {
197 if (strcmp(m
->name
, name
) == 0) {
198 if (m
->revision
== revision
) {
199 if (try_module_get(m
->me
)) {
200 mutex_unlock(&xt
[af
].mutex
);
204 err
= -EPROTOTYPE
; /* Found something. */
207 mutex_unlock(&xt
[af
].mutex
);
209 if (af
!= NFPROTO_UNSPEC
)
210 /* Try searching again in the family-independent list */
211 return xt_find_match(NFPROTO_UNSPEC
, name
, revision
);
215 EXPORT_SYMBOL(xt_find_match
);
218 xt_request_find_match(uint8_t nfproto
, const char *name
, uint8_t revision
)
220 struct xt_match
*match
;
222 match
= try_then_request_module(xt_find_match(nfproto
, name
, revision
),
223 "%st_%s", xt_prefix
[nfproto
], name
);
224 return (match
!= NULL
) ? match
: ERR_PTR(-ENOENT
);
226 EXPORT_SYMBOL_GPL(xt_request_find_match
);
228 /* Find target, grabs ref. Returns ERR_PTR() on error. */
229 struct xt_target
*xt_find_target(u8 af
, const char *name
, u8 revision
)
234 if (mutex_lock_interruptible(&xt
[af
].mutex
) != 0)
235 return ERR_PTR(-EINTR
);
237 list_for_each_entry(t
, &xt
[af
].target
, list
) {
238 if (strcmp(t
->name
, name
) == 0) {
239 if (t
->revision
== revision
) {
240 if (try_module_get(t
->me
)) {
241 mutex_unlock(&xt
[af
].mutex
);
245 err
= -EPROTOTYPE
; /* Found something. */
248 mutex_unlock(&xt
[af
].mutex
);
250 if (af
!= NFPROTO_UNSPEC
)
251 /* Try searching again in the family-independent list */
252 return xt_find_target(NFPROTO_UNSPEC
, name
, revision
);
256 EXPORT_SYMBOL(xt_find_target
);
258 struct xt_target
*xt_request_find_target(u8 af
, const char *name
, u8 revision
)
260 struct xt_target
*target
;
262 target
= try_then_request_module(xt_find_target(af
, name
, revision
),
263 "%st_%s", xt_prefix
[af
], name
);
264 return (target
!= NULL
) ? target
: ERR_PTR(-ENOENT
);
266 EXPORT_SYMBOL_GPL(xt_request_find_target
);
268 static int match_revfn(u8 af
, const char *name
, u8 revision
, int *bestp
)
270 const struct xt_match
*m
;
273 list_for_each_entry(m
, &xt
[af
].match
, list
) {
274 if (strcmp(m
->name
, name
) == 0) {
275 if (m
->revision
> *bestp
)
276 *bestp
= m
->revision
;
277 if (m
->revision
== revision
)
282 if (af
!= NFPROTO_UNSPEC
&& !have_rev
)
283 return match_revfn(NFPROTO_UNSPEC
, name
, revision
, bestp
);
288 static int target_revfn(u8 af
, const char *name
, u8 revision
, int *bestp
)
290 const struct xt_target
*t
;
293 list_for_each_entry(t
, &xt
[af
].target
, list
) {
294 if (strcmp(t
->name
, name
) == 0) {
295 if (t
->revision
> *bestp
)
296 *bestp
= t
->revision
;
297 if (t
->revision
== revision
)
302 if (af
!= NFPROTO_UNSPEC
&& !have_rev
)
303 return target_revfn(NFPROTO_UNSPEC
, name
, revision
, bestp
);
308 /* Returns true or false (if no such extension at all) */
309 int xt_find_revision(u8 af
, const char *name
, u8 revision
, int target
,
312 int have_rev
, best
= -1;
314 if (mutex_lock_interruptible(&xt
[af
].mutex
) != 0) {
319 have_rev
= target_revfn(af
, name
, revision
, &best
);
321 have_rev
= match_revfn(af
, name
, revision
, &best
);
322 mutex_unlock(&xt
[af
].mutex
);
324 /* Nothing at all? Return 0 to try loading module. */
332 *err
= -EPROTONOSUPPORT
;
335 EXPORT_SYMBOL_GPL(xt_find_revision
);
337 static char *textify_hooks(char *buf
, size_t size
, unsigned int mask
)
339 static const char *const names
[] = {
340 "PREROUTING", "INPUT", "FORWARD",
341 "OUTPUT", "POSTROUTING", "BROUTING",
349 for (i
= 0; i
< ARRAY_SIZE(names
); ++i
) {
350 if (!(mask
& (1 << i
)))
352 res
= snprintf(p
, size
, "%s%s", np
? "/" : "", names
[i
]);
363 int xt_check_match(struct xt_mtchk_param
*par
,
364 unsigned int size
, u_int8_t proto
, bool inv_proto
)
368 if (XT_ALIGN(par
->match
->matchsize
) != size
&&
369 par
->match
->matchsize
!= -1) {
371 * ebt_among is exempt from centralized matchsize checking
372 * because it uses a dynamic-size data set.
374 pr_err("%s_tables: %s.%u match: invalid size "
375 "%u (kernel) != (user) %u\n",
376 xt_prefix
[par
->family
], par
->match
->name
,
377 par
->match
->revision
,
378 XT_ALIGN(par
->match
->matchsize
), size
);
381 if (par
->match
->table
!= NULL
&&
382 strcmp(par
->match
->table
, par
->table
) != 0) {
383 pr_err("%s_tables: %s match: only valid in %s table, not %s\n",
384 xt_prefix
[par
->family
], par
->match
->name
,
385 par
->match
->table
, par
->table
);
388 if (par
->match
->hooks
&& (par
->hook_mask
& ~par
->match
->hooks
) != 0) {
389 char used
[64], allow
[64];
391 pr_err("%s_tables: %s match: used from hooks %s, but only "
393 xt_prefix
[par
->family
], par
->match
->name
,
394 textify_hooks(used
, sizeof(used
), par
->hook_mask
),
395 textify_hooks(allow
, sizeof(allow
), par
->match
->hooks
));
398 if (par
->match
->proto
&& (par
->match
->proto
!= proto
|| inv_proto
)) {
399 pr_err("%s_tables: %s match: only valid for protocol %u\n",
400 xt_prefix
[par
->family
], par
->match
->name
,
404 if (par
->match
->checkentry
!= NULL
) {
405 ret
= par
->match
->checkentry(par
);
409 /* Flag up potential errors. */
414 EXPORT_SYMBOL_GPL(xt_check_match
);
417 int xt_compat_add_offset(u_int8_t af
, unsigned int offset
, short delta
)
419 struct compat_delta
*tmp
;
421 tmp
= kmalloc(sizeof(struct compat_delta
), GFP_KERNEL
);
425 tmp
->offset
= offset
;
428 if (xt
[af
].compat_offsets
) {
429 tmp
->next
= xt
[af
].compat_offsets
->next
;
430 xt
[af
].compat_offsets
->next
= tmp
;
432 xt
[af
].compat_offsets
= tmp
;
437 EXPORT_SYMBOL_GPL(xt_compat_add_offset
);
439 void xt_compat_flush_offsets(u_int8_t af
)
441 struct compat_delta
*tmp
, *next
;
443 if (xt
[af
].compat_offsets
) {
444 for (tmp
= xt
[af
].compat_offsets
; tmp
; tmp
= next
) {
448 xt
[af
].compat_offsets
= NULL
;
451 EXPORT_SYMBOL_GPL(xt_compat_flush_offsets
);
453 int xt_compat_calc_jump(u_int8_t af
, unsigned int offset
)
455 struct compat_delta
*tmp
;
458 for (tmp
= xt
[af
].compat_offsets
, delta
= 0; tmp
; tmp
= tmp
->next
)
459 if (tmp
->offset
< offset
)
463 EXPORT_SYMBOL_GPL(xt_compat_calc_jump
);
465 int xt_compat_match_offset(const struct xt_match
*match
)
467 u_int16_t csize
= match
->compatsize
? : match
->matchsize
;
468 return XT_ALIGN(match
->matchsize
) - COMPAT_XT_ALIGN(csize
);
470 EXPORT_SYMBOL_GPL(xt_compat_match_offset
);
472 int xt_compat_match_from_user(struct xt_entry_match
*m
, void **dstptr
,
475 const struct xt_match
*match
= m
->u
.kernel
.match
;
476 struct compat_xt_entry_match
*cm
= (struct compat_xt_entry_match
*)m
;
477 int pad
, off
= xt_compat_match_offset(match
);
478 u_int16_t msize
= cm
->u
.user
.match_size
;
481 memcpy(m
, cm
, sizeof(*cm
));
482 if (match
->compat_from_user
)
483 match
->compat_from_user(m
->data
, cm
->data
);
485 memcpy(m
->data
, cm
->data
, msize
- sizeof(*cm
));
486 pad
= XT_ALIGN(match
->matchsize
) - match
->matchsize
;
488 memset(m
->data
+ match
->matchsize
, 0, pad
);
491 m
->u
.user
.match_size
= msize
;
497 EXPORT_SYMBOL_GPL(xt_compat_match_from_user
);
499 int xt_compat_match_to_user(const struct xt_entry_match
*m
,
500 void __user
**dstptr
, unsigned int *size
)
502 const struct xt_match
*match
= m
->u
.kernel
.match
;
503 struct compat_xt_entry_match __user
*cm
= *dstptr
;
504 int off
= xt_compat_match_offset(match
);
505 u_int16_t msize
= m
->u
.user
.match_size
- off
;
507 if (copy_to_user(cm
, m
, sizeof(*cm
)) ||
508 put_user(msize
, &cm
->u
.user
.match_size
) ||
509 copy_to_user(cm
->u
.user
.name
, m
->u
.kernel
.match
->name
,
510 strlen(m
->u
.kernel
.match
->name
) + 1))
513 if (match
->compat_to_user
) {
514 if (match
->compat_to_user((void __user
*)cm
->data
, m
->data
))
517 if (copy_to_user(cm
->data
, m
->data
, msize
- sizeof(*cm
)))
525 EXPORT_SYMBOL_GPL(xt_compat_match_to_user
);
526 #endif /* CONFIG_COMPAT */
528 int xt_check_target(struct xt_tgchk_param
*par
,
529 unsigned int size
, u_int8_t proto
, bool inv_proto
)
533 if (XT_ALIGN(par
->target
->targetsize
) != size
) {
534 pr_err("%s_tables: %s.%u target: invalid size "
535 "%u (kernel) != (user) %u\n",
536 xt_prefix
[par
->family
], par
->target
->name
,
537 par
->target
->revision
,
538 XT_ALIGN(par
->target
->targetsize
), size
);
541 if (par
->target
->table
!= NULL
&&
542 strcmp(par
->target
->table
, par
->table
) != 0) {
543 pr_err("%s_tables: %s target: only valid in %s table, not %s\n",
544 xt_prefix
[par
->family
], par
->target
->name
,
545 par
->target
->table
, par
->table
);
548 if (par
->target
->hooks
&& (par
->hook_mask
& ~par
->target
->hooks
) != 0) {
549 char used
[64], allow
[64];
551 pr_err("%s_tables: %s target: used from hooks %s, but only "
553 xt_prefix
[par
->family
], par
->target
->name
,
554 textify_hooks(used
, sizeof(used
), par
->hook_mask
),
555 textify_hooks(allow
, sizeof(allow
), par
->target
->hooks
));
558 if (par
->target
->proto
&& (par
->target
->proto
!= proto
|| inv_proto
)) {
559 pr_err("%s_tables: %s target: only valid for protocol %u\n",
560 xt_prefix
[par
->family
], par
->target
->name
,
564 if (par
->target
->checkentry
!= NULL
) {
565 ret
= par
->target
->checkentry(par
);
569 /* Flag up potential errors. */
574 EXPORT_SYMBOL_GPL(xt_check_target
);
577 int xt_compat_target_offset(const struct xt_target
*target
)
579 u_int16_t csize
= target
->compatsize
? : target
->targetsize
;
580 return XT_ALIGN(target
->targetsize
) - COMPAT_XT_ALIGN(csize
);
582 EXPORT_SYMBOL_GPL(xt_compat_target_offset
);
584 void xt_compat_target_from_user(struct xt_entry_target
*t
, void **dstptr
,
587 const struct xt_target
*target
= t
->u
.kernel
.target
;
588 struct compat_xt_entry_target
*ct
= (struct compat_xt_entry_target
*)t
;
589 int pad
, off
= xt_compat_target_offset(target
);
590 u_int16_t tsize
= ct
->u
.user
.target_size
;
593 memcpy(t
, ct
, sizeof(*ct
));
594 if (target
->compat_from_user
)
595 target
->compat_from_user(t
->data
, ct
->data
);
597 memcpy(t
->data
, ct
->data
, tsize
- sizeof(*ct
));
598 pad
= XT_ALIGN(target
->targetsize
) - target
->targetsize
;
600 memset(t
->data
+ target
->targetsize
, 0, pad
);
603 t
->u
.user
.target_size
= tsize
;
608 EXPORT_SYMBOL_GPL(xt_compat_target_from_user
);
610 int xt_compat_target_to_user(const struct xt_entry_target
*t
,
611 void __user
**dstptr
, unsigned int *size
)
613 const struct xt_target
*target
= t
->u
.kernel
.target
;
614 struct compat_xt_entry_target __user
*ct
= *dstptr
;
615 int off
= xt_compat_target_offset(target
);
616 u_int16_t tsize
= t
->u
.user
.target_size
- off
;
618 if (copy_to_user(ct
, t
, sizeof(*ct
)) ||
619 put_user(tsize
, &ct
->u
.user
.target_size
) ||
620 copy_to_user(ct
->u
.user
.name
, t
->u
.kernel
.target
->name
,
621 strlen(t
->u
.kernel
.target
->name
) + 1))
624 if (target
->compat_to_user
) {
625 if (target
->compat_to_user((void __user
*)ct
->data
, t
->data
))
628 if (copy_to_user(ct
->data
, t
->data
, tsize
- sizeof(*ct
)))
636 EXPORT_SYMBOL_GPL(xt_compat_target_to_user
);
639 struct xt_table_info
*xt_alloc_table_info(unsigned int size
)
641 struct xt_table_info
*newinfo
;
644 /* Pedantry: prevent them from hitting BUG() in vmalloc.c --RR */
645 if ((SMP_ALIGN(size
) >> PAGE_SHIFT
) + 2 > totalram_pages
)
648 newinfo
= kzalloc(XT_TABLE_INFO_SZ
, GFP_KERNEL
);
652 newinfo
->size
= size
;
654 for_each_possible_cpu(cpu
) {
655 if (size
<= PAGE_SIZE
)
656 newinfo
->entries
[cpu
] = kmalloc_node(size
,
660 newinfo
->entries
[cpu
] = vmalloc_node(size
,
663 if (newinfo
->entries
[cpu
] == NULL
) {
664 xt_free_table_info(newinfo
);
671 EXPORT_SYMBOL(xt_alloc_table_info
);
673 void xt_free_table_info(struct xt_table_info
*info
)
677 for_each_possible_cpu(cpu
) {
678 if (info
->size
<= PAGE_SIZE
)
679 kfree(info
->entries
[cpu
]);
681 vfree(info
->entries
[cpu
]);
684 if (info
->jumpstack
!= NULL
) {
685 if (sizeof(void *) * info
->stacksize
> PAGE_SIZE
) {
686 for_each_possible_cpu(cpu
)
687 vfree(info
->jumpstack
[cpu
]);
689 for_each_possible_cpu(cpu
)
690 kfree(info
->jumpstack
[cpu
]);
694 if (sizeof(void **) * nr_cpu_ids
> PAGE_SIZE
)
695 vfree(info
->jumpstack
);
697 kfree(info
->jumpstack
);
699 free_percpu(info
->stackptr
);
703 EXPORT_SYMBOL(xt_free_table_info
);
705 /* Find table by name, grabs mutex & ref. Returns ERR_PTR() on error. */
706 struct xt_table
*xt_find_table_lock(struct net
*net
, u_int8_t af
,
711 if (mutex_lock_interruptible(&xt
[af
].mutex
) != 0)
712 return ERR_PTR(-EINTR
);
714 list_for_each_entry(t
, &net
->xt
.tables
[af
], list
)
715 if (strcmp(t
->name
, name
) == 0 && try_module_get(t
->me
))
717 mutex_unlock(&xt
[af
].mutex
);
720 EXPORT_SYMBOL_GPL(xt_find_table_lock
);
722 void xt_table_unlock(struct xt_table
*table
)
724 mutex_unlock(&xt
[table
->af
].mutex
);
726 EXPORT_SYMBOL_GPL(xt_table_unlock
);
729 void xt_compat_lock(u_int8_t af
)
731 mutex_lock(&xt
[af
].compat_mutex
);
733 EXPORT_SYMBOL_GPL(xt_compat_lock
);
735 void xt_compat_unlock(u_int8_t af
)
737 mutex_unlock(&xt
[af
].compat_mutex
);
739 EXPORT_SYMBOL_GPL(xt_compat_unlock
);
742 DEFINE_PER_CPU(struct xt_info_lock
, xt_info_locks
);
743 EXPORT_PER_CPU_SYMBOL_GPL(xt_info_locks
);
745 static int xt_jumpstack_alloc(struct xt_table_info
*i
)
750 i
->stackptr
= alloc_percpu(unsigned int);
751 if (i
->stackptr
== NULL
)
754 size
= sizeof(void **) * nr_cpu_ids
;
755 if (size
> PAGE_SIZE
)
756 i
->jumpstack
= vmalloc(size
);
758 i
->jumpstack
= kmalloc(size
, GFP_KERNEL
);
759 if (i
->jumpstack
== NULL
)
761 memset(i
->jumpstack
, 0, size
);
763 i
->stacksize
*= xt_jumpstack_multiplier
;
764 size
= sizeof(void *) * i
->stacksize
;
765 for_each_possible_cpu(cpu
) {
766 if (size
> PAGE_SIZE
)
767 i
->jumpstack
[cpu
] = vmalloc_node(size
,
770 i
->jumpstack
[cpu
] = kmalloc_node(size
,
771 GFP_KERNEL
, cpu_to_node(cpu
));
772 if (i
->jumpstack
[cpu
] == NULL
)
774 * Freeing will be done later on by the callers. The
775 * chain is: xt_replace_table -> __do_replace ->
776 * do_replace -> xt_free_table_info.
784 struct xt_table_info
*
785 xt_replace_table(struct xt_table
*table
,
786 unsigned int num_counters
,
787 struct xt_table_info
*newinfo
,
790 struct xt_table_info
*private;
793 ret
= xt_jumpstack_alloc(newinfo
);
799 /* Do the substitution. */
801 private = table
->private;
803 /* Check inside lock: is the old number correct? */
804 if (num_counters
!= private->number
) {
805 pr_debug("num_counters != table->private->number (%u/%u)\n",
806 num_counters
, private->number
);
812 table
->private = newinfo
;
813 newinfo
->initial_entries
= private->initial_entries
;
816 * Even though table entries have now been swapped, other CPU's
817 * may still be using the old entries. This is okay, because
818 * resynchronization happens because of the locking done
819 * during the get_counters() routine.
825 EXPORT_SYMBOL_GPL(xt_replace_table
);
827 struct xt_table
*xt_register_table(struct net
*net
,
828 const struct xt_table
*input_table
,
829 struct xt_table_info
*bootstrap
,
830 struct xt_table_info
*newinfo
)
833 struct xt_table_info
*private;
834 struct xt_table
*t
, *table
;
836 /* Don't add one object to multiple lists. */
837 table
= kmemdup(input_table
, sizeof(struct xt_table
), GFP_KERNEL
);
843 ret
= mutex_lock_interruptible(&xt
[table
->af
].mutex
);
847 /* Don't autoload: we'd eat our tail... */
848 list_for_each_entry(t
, &net
->xt
.tables
[table
->af
], list
) {
849 if (strcmp(t
->name
, table
->name
) == 0) {
855 /* Simplifies replace_table code. */
856 table
->private = bootstrap
;
858 if (!xt_replace_table(table
, 0, newinfo
, &ret
))
861 private = table
->private;
862 pr_debug("table->private->number = %u\n", private->number
);
864 /* save number of initial entries */
865 private->initial_entries
= private->number
;
867 list_add(&table
->list
, &net
->xt
.tables
[table
->af
]);
868 mutex_unlock(&xt
[table
->af
].mutex
);
872 mutex_unlock(&xt
[table
->af
].mutex
);
878 EXPORT_SYMBOL_GPL(xt_register_table
);
880 void *xt_unregister_table(struct xt_table
*table
)
882 struct xt_table_info
*private;
884 mutex_lock(&xt
[table
->af
].mutex
);
885 private = table
->private;
886 list_del(&table
->list
);
887 mutex_unlock(&xt
[table
->af
].mutex
);
892 EXPORT_SYMBOL_GPL(xt_unregister_table
);
894 #ifdef CONFIG_PROC_FS
895 struct xt_names_priv
{
896 struct seq_net_private p
;
899 static void *xt_table_seq_start(struct seq_file
*seq
, loff_t
*pos
)
901 struct xt_names_priv
*priv
= seq
->private;
902 struct net
*net
= seq_file_net(seq
);
903 u_int8_t af
= priv
->af
;
905 mutex_lock(&xt
[af
].mutex
);
906 return seq_list_start(&net
->xt
.tables
[af
], *pos
);
909 static void *xt_table_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
911 struct xt_names_priv
*priv
= seq
->private;
912 struct net
*net
= seq_file_net(seq
);
913 u_int8_t af
= priv
->af
;
915 return seq_list_next(v
, &net
->xt
.tables
[af
], pos
);
918 static void xt_table_seq_stop(struct seq_file
*seq
, void *v
)
920 struct xt_names_priv
*priv
= seq
->private;
921 u_int8_t af
= priv
->af
;
923 mutex_unlock(&xt
[af
].mutex
);
926 static int xt_table_seq_show(struct seq_file
*seq
, void *v
)
928 struct xt_table
*table
= list_entry(v
, struct xt_table
, list
);
930 if (strlen(table
->name
))
931 return seq_printf(seq
, "%s\n", table
->name
);
936 static const struct seq_operations xt_table_seq_ops
= {
937 .start
= xt_table_seq_start
,
938 .next
= xt_table_seq_next
,
939 .stop
= xt_table_seq_stop
,
940 .show
= xt_table_seq_show
,
943 static int xt_table_open(struct inode
*inode
, struct file
*file
)
946 struct xt_names_priv
*priv
;
948 ret
= seq_open_net(inode
, file
, &xt_table_seq_ops
,
949 sizeof(struct xt_names_priv
));
951 priv
= ((struct seq_file
*)file
->private_data
)->private;
952 priv
->af
= (unsigned long)PDE(inode
)->data
;
957 static const struct file_operations xt_table_ops
= {
958 .owner
= THIS_MODULE
,
959 .open
= xt_table_open
,
962 .release
= seq_release_net
,
966 * Traverse state for ip{,6}_{tables,matches} for helping crossing
967 * the multi-AF mutexes.
969 struct nf_mttg_trav
{
970 struct list_head
*head
, *curr
;
971 uint8_t class, nfproto
;
976 MTTG_TRAV_NFP_UNSPEC
,
981 static void *xt_mttg_seq_next(struct seq_file
*seq
, void *v
, loff_t
*ppos
,
984 static const uint8_t next_class
[] = {
985 [MTTG_TRAV_NFP_UNSPEC
] = MTTG_TRAV_NFP_SPEC
,
986 [MTTG_TRAV_NFP_SPEC
] = MTTG_TRAV_DONE
,
988 struct nf_mttg_trav
*trav
= seq
->private;
990 switch (trav
->class) {
992 trav
->class = MTTG_TRAV_NFP_UNSPEC
;
993 mutex_lock(&xt
[NFPROTO_UNSPEC
].mutex
);
994 trav
->head
= trav
->curr
= is_target
?
995 &xt
[NFPROTO_UNSPEC
].target
: &xt
[NFPROTO_UNSPEC
].match
;
997 case MTTG_TRAV_NFP_UNSPEC
:
998 trav
->curr
= trav
->curr
->next
;
999 if (trav
->curr
!= trav
->head
)
1001 mutex_unlock(&xt
[NFPROTO_UNSPEC
].mutex
);
1002 mutex_lock(&xt
[trav
->nfproto
].mutex
);
1003 trav
->head
= trav
->curr
= is_target
?
1004 &xt
[trav
->nfproto
].target
: &xt
[trav
->nfproto
].match
;
1005 trav
->class = next_class
[trav
->class];
1007 case MTTG_TRAV_NFP_SPEC
:
1008 trav
->curr
= trav
->curr
->next
;
1009 if (trav
->curr
!= trav
->head
)
1011 /* fallthru, _stop will unlock */
1021 static void *xt_mttg_seq_start(struct seq_file
*seq
, loff_t
*pos
,
1024 struct nf_mttg_trav
*trav
= seq
->private;
1027 trav
->class = MTTG_TRAV_INIT
;
1028 for (j
= 0; j
< *pos
; ++j
)
1029 if (xt_mttg_seq_next(seq
, NULL
, NULL
, is_target
) == NULL
)
1034 static void xt_mttg_seq_stop(struct seq_file
*seq
, void *v
)
1036 struct nf_mttg_trav
*trav
= seq
->private;
1038 switch (trav
->class) {
1039 case MTTG_TRAV_NFP_UNSPEC
:
1040 mutex_unlock(&xt
[NFPROTO_UNSPEC
].mutex
);
1042 case MTTG_TRAV_NFP_SPEC
:
1043 mutex_unlock(&xt
[trav
->nfproto
].mutex
);
1048 static void *xt_match_seq_start(struct seq_file
*seq
, loff_t
*pos
)
1050 return xt_mttg_seq_start(seq
, pos
, false);
1053 static void *xt_match_seq_next(struct seq_file
*seq
, void *v
, loff_t
*ppos
)
1055 return xt_mttg_seq_next(seq
, v
, ppos
, false);
1058 static int xt_match_seq_show(struct seq_file
*seq
, void *v
)
1060 const struct nf_mttg_trav
*trav
= seq
->private;
1061 const struct xt_match
*match
;
1063 switch (trav
->class) {
1064 case MTTG_TRAV_NFP_UNSPEC
:
1065 case MTTG_TRAV_NFP_SPEC
:
1066 if (trav
->curr
== trav
->head
)
1068 match
= list_entry(trav
->curr
, struct xt_match
, list
);
1069 return (*match
->name
== '\0') ? 0 :
1070 seq_printf(seq
, "%s\n", match
->name
);
1075 static const struct seq_operations xt_match_seq_ops
= {
1076 .start
= xt_match_seq_start
,
1077 .next
= xt_match_seq_next
,
1078 .stop
= xt_mttg_seq_stop
,
1079 .show
= xt_match_seq_show
,
1082 static int xt_match_open(struct inode
*inode
, struct file
*file
)
1084 struct seq_file
*seq
;
1085 struct nf_mttg_trav
*trav
;
1088 trav
= kmalloc(sizeof(*trav
), GFP_KERNEL
);
1092 ret
= seq_open(file
, &xt_match_seq_ops
);
1098 seq
= file
->private_data
;
1099 seq
->private = trav
;
1100 trav
->nfproto
= (unsigned long)PDE(inode
)->data
;
1104 static const struct file_operations xt_match_ops
= {
1105 .owner
= THIS_MODULE
,
1106 .open
= xt_match_open
,
1108 .llseek
= seq_lseek
,
1109 .release
= seq_release_private
,
1112 static void *xt_target_seq_start(struct seq_file
*seq
, loff_t
*pos
)
1114 return xt_mttg_seq_start(seq
, pos
, true);
1117 static void *xt_target_seq_next(struct seq_file
*seq
, void *v
, loff_t
*ppos
)
1119 return xt_mttg_seq_next(seq
, v
, ppos
, true);
1122 static int xt_target_seq_show(struct seq_file
*seq
, void *v
)
1124 const struct nf_mttg_trav
*trav
= seq
->private;
1125 const struct xt_target
*target
;
1127 switch (trav
->class) {
1128 case MTTG_TRAV_NFP_UNSPEC
:
1129 case MTTG_TRAV_NFP_SPEC
:
1130 if (trav
->curr
== trav
->head
)
1132 target
= list_entry(trav
->curr
, struct xt_target
, list
);
1133 return (*target
->name
== '\0') ? 0 :
1134 seq_printf(seq
, "%s\n", target
->name
);
1139 static const struct seq_operations xt_target_seq_ops
= {
1140 .start
= xt_target_seq_start
,
1141 .next
= xt_target_seq_next
,
1142 .stop
= xt_mttg_seq_stop
,
1143 .show
= xt_target_seq_show
,
1146 static int xt_target_open(struct inode
*inode
, struct file
*file
)
1148 struct seq_file
*seq
;
1149 struct nf_mttg_trav
*trav
;
1152 trav
= kmalloc(sizeof(*trav
), GFP_KERNEL
);
1156 ret
= seq_open(file
, &xt_target_seq_ops
);
1162 seq
= file
->private_data
;
1163 seq
->private = trav
;
1164 trav
->nfproto
= (unsigned long)PDE(inode
)->data
;
1168 static const struct file_operations xt_target_ops
= {
1169 .owner
= THIS_MODULE
,
1170 .open
= xt_target_open
,
1172 .llseek
= seq_lseek
,
1173 .release
= seq_release_private
,
1176 #define FORMAT_TABLES "_tables_names"
1177 #define FORMAT_MATCHES "_tables_matches"
1178 #define FORMAT_TARGETS "_tables_targets"
1180 #endif /* CONFIG_PROC_FS */
1183 * xt_hook_link - set up hooks for a new table
1184 * @table: table with metadata needed to set up hooks
1185 * @fn: Hook function
1187 * This function will take care of creating and registering the necessary
1188 * Netfilter hooks for XT tables.
1190 struct nf_hook_ops
*xt_hook_link(const struct xt_table
*table
, nf_hookfn
*fn
)
1192 unsigned int hook_mask
= table
->valid_hooks
;
1193 uint8_t i
, num_hooks
= hweight32(hook_mask
);
1195 struct nf_hook_ops
*ops
;
1198 ops
= kmalloc(sizeof(*ops
) * num_hooks
, GFP_KERNEL
);
1200 return ERR_PTR(-ENOMEM
);
1202 for (i
= 0, hooknum
= 0; i
< num_hooks
&& hook_mask
!= 0;
1203 hook_mask
>>= 1, ++hooknum
) {
1204 if (!(hook_mask
& 1))
1207 ops
[i
].owner
= table
->me
;
1208 ops
[i
].pf
= table
->af
;
1209 ops
[i
].hooknum
= hooknum
;
1210 ops
[i
].priority
= table
->priority
;
1214 ret
= nf_register_hooks(ops
, num_hooks
);
1217 return ERR_PTR(ret
);
1222 EXPORT_SYMBOL_GPL(xt_hook_link
);
1225 * xt_hook_unlink - remove hooks for a table
1226 * @ops: nf_hook_ops array as returned by nf_hook_link
1227 * @hook_mask: the very same mask that was passed to nf_hook_link
1229 void xt_hook_unlink(const struct xt_table
*table
, struct nf_hook_ops
*ops
)
1231 nf_unregister_hooks(ops
, hweight32(table
->valid_hooks
));
1234 EXPORT_SYMBOL_GPL(xt_hook_unlink
);
1236 int xt_proto_init(struct net
*net
, u_int8_t af
)
1238 #ifdef CONFIG_PROC_FS
1239 char buf
[XT_FUNCTION_MAXNAMELEN
];
1240 struct proc_dir_entry
*proc
;
1243 if (af
>= ARRAY_SIZE(xt_prefix
))
1247 #ifdef CONFIG_PROC_FS
1248 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1249 strlcat(buf
, FORMAT_TABLES
, sizeof(buf
));
1250 proc
= proc_create_data(buf
, 0440, net
->proc_net
, &xt_table_ops
,
1251 (void *)(unsigned long)af
);
1255 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1256 strlcat(buf
, FORMAT_MATCHES
, sizeof(buf
));
1257 proc
= proc_create_data(buf
, 0440, net
->proc_net
, &xt_match_ops
,
1258 (void *)(unsigned long)af
);
1260 goto out_remove_tables
;
1262 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1263 strlcat(buf
, FORMAT_TARGETS
, sizeof(buf
));
1264 proc
= proc_create_data(buf
, 0440, net
->proc_net
, &xt_target_ops
,
1265 (void *)(unsigned long)af
);
1267 goto out_remove_matches
;
1272 #ifdef CONFIG_PROC_FS
1274 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1275 strlcat(buf
, FORMAT_MATCHES
, sizeof(buf
));
1276 proc_net_remove(net
, buf
);
1279 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1280 strlcat(buf
, FORMAT_TABLES
, sizeof(buf
));
1281 proc_net_remove(net
, buf
);
1286 EXPORT_SYMBOL_GPL(xt_proto_init
);
1288 void xt_proto_fini(struct net
*net
, u_int8_t af
)
1290 #ifdef CONFIG_PROC_FS
1291 char buf
[XT_FUNCTION_MAXNAMELEN
];
1293 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1294 strlcat(buf
, FORMAT_TABLES
, sizeof(buf
));
1295 proc_net_remove(net
, buf
);
1297 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1298 strlcat(buf
, FORMAT_TARGETS
, sizeof(buf
));
1299 proc_net_remove(net
, buf
);
1301 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1302 strlcat(buf
, FORMAT_MATCHES
, sizeof(buf
));
1303 proc_net_remove(net
, buf
);
1304 #endif /*CONFIG_PROC_FS*/
1306 EXPORT_SYMBOL_GPL(xt_proto_fini
);
1308 static int __net_init
xt_net_init(struct net
*net
)
1312 for (i
= 0; i
< NFPROTO_NUMPROTO
; i
++)
1313 INIT_LIST_HEAD(&net
->xt
.tables
[i
]);
1317 static struct pernet_operations xt_net_ops
= {
1318 .init
= xt_net_init
,
1321 static int __init
xt_init(void)
1326 for_each_possible_cpu(i
) {
1327 struct xt_info_lock
*lock
= &per_cpu(xt_info_locks
, i
);
1329 seqlock_init(&lock
->lock
);
1333 xt
= kmalloc(sizeof(struct xt_af
) * NFPROTO_NUMPROTO
, GFP_KERNEL
);
1337 for (i
= 0; i
< NFPROTO_NUMPROTO
; i
++) {
1338 mutex_init(&xt
[i
].mutex
);
1339 #ifdef CONFIG_COMPAT
1340 mutex_init(&xt
[i
].compat_mutex
);
1341 xt
[i
].compat_offsets
= NULL
;
1343 INIT_LIST_HEAD(&xt
[i
].target
);
1344 INIT_LIST_HEAD(&xt
[i
].match
);
1346 rv
= register_pernet_subsys(&xt_net_ops
);
1352 static void __exit
xt_fini(void)
1354 unregister_pernet_subsys(&xt_net_ops
);
1358 module_init(xt_init
);
1359 module_exit(xt_fini
);