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
)
121 for (i
= 0; i
< n
; i
++)
122 xt_unregister_target(&target
[i
]);
124 EXPORT_SYMBOL(xt_unregister_targets
);
127 xt_register_match(struct xt_match
*match
)
129 u_int8_t af
= match
->family
;
132 ret
= mutex_lock_interruptible(&xt
[af
].mutex
);
136 list_add(&match
->list
, &xt
[af
].match
);
137 mutex_unlock(&xt
[af
].mutex
);
141 EXPORT_SYMBOL(xt_register_match
);
144 xt_unregister_match(struct xt_match
*match
)
146 u_int8_t af
= match
->family
;
148 mutex_lock(&xt
[af
].mutex
);
149 list_del(&match
->list
);
150 mutex_unlock(&xt
[af
].mutex
);
152 EXPORT_SYMBOL(xt_unregister_match
);
155 xt_register_matches(struct xt_match
*match
, unsigned int n
)
160 for (i
= 0; i
< n
; i
++) {
161 err
= xt_register_match(&match
[i
]);
169 xt_unregister_matches(match
, i
);
172 EXPORT_SYMBOL(xt_register_matches
);
175 xt_unregister_matches(struct xt_match
*match
, unsigned int n
)
179 for (i
= 0; i
< n
; i
++)
180 xt_unregister_match(&match
[i
]);
182 EXPORT_SYMBOL(xt_unregister_matches
);
186 * These are weird, but module loading must not be done with mutex
187 * held (since they will register), and we have to have a single
188 * function to use try_then_request_module().
191 /* Find match, grabs ref. Returns ERR_PTR() on error. */
192 struct xt_match
*xt_find_match(u8 af
, const char *name
, u8 revision
)
197 if (mutex_lock_interruptible(&xt
[af
].mutex
) != 0)
198 return ERR_PTR(-EINTR
);
200 list_for_each_entry(m
, &xt
[af
].match
, list
) {
201 if (strcmp(m
->name
, name
) == 0) {
202 if (m
->revision
== revision
) {
203 if (try_module_get(m
->me
)) {
204 mutex_unlock(&xt
[af
].mutex
);
208 err
= -EPROTOTYPE
; /* Found something. */
211 mutex_unlock(&xt
[af
].mutex
);
213 if (af
!= NFPROTO_UNSPEC
)
214 /* Try searching again in the family-independent list */
215 return xt_find_match(NFPROTO_UNSPEC
, name
, revision
);
219 EXPORT_SYMBOL(xt_find_match
);
222 xt_request_find_match(uint8_t nfproto
, const char *name
, uint8_t revision
)
224 struct xt_match
*match
;
226 match
= try_then_request_module(xt_find_match(nfproto
, name
, revision
),
227 "%st_%s", xt_prefix
[nfproto
], name
);
228 return (match
!= NULL
) ? match
: ERR_PTR(-ENOENT
);
230 EXPORT_SYMBOL_GPL(xt_request_find_match
);
232 /* Find target, grabs ref. Returns ERR_PTR() on error. */
233 struct xt_target
*xt_find_target(u8 af
, const char *name
, u8 revision
)
238 if (mutex_lock_interruptible(&xt
[af
].mutex
) != 0)
239 return ERR_PTR(-EINTR
);
241 list_for_each_entry(t
, &xt
[af
].target
, list
) {
242 if (strcmp(t
->name
, name
) == 0) {
243 if (t
->revision
== revision
) {
244 if (try_module_get(t
->me
)) {
245 mutex_unlock(&xt
[af
].mutex
);
249 err
= -EPROTOTYPE
; /* Found something. */
252 mutex_unlock(&xt
[af
].mutex
);
254 if (af
!= NFPROTO_UNSPEC
)
255 /* Try searching again in the family-independent list */
256 return xt_find_target(NFPROTO_UNSPEC
, name
, revision
);
260 EXPORT_SYMBOL(xt_find_target
);
262 struct xt_target
*xt_request_find_target(u8 af
, const char *name
, u8 revision
)
264 struct xt_target
*target
;
266 target
= try_then_request_module(xt_find_target(af
, name
, revision
),
267 "%st_%s", xt_prefix
[af
], name
);
268 return (target
!= NULL
) ? target
: ERR_PTR(-ENOENT
);
270 EXPORT_SYMBOL_GPL(xt_request_find_target
);
272 static int match_revfn(u8 af
, const char *name
, u8 revision
, int *bestp
)
274 const struct xt_match
*m
;
277 list_for_each_entry(m
, &xt
[af
].match
, list
) {
278 if (strcmp(m
->name
, name
) == 0) {
279 if (m
->revision
> *bestp
)
280 *bestp
= m
->revision
;
281 if (m
->revision
== revision
)
286 if (af
!= NFPROTO_UNSPEC
&& !have_rev
)
287 return match_revfn(NFPROTO_UNSPEC
, name
, revision
, bestp
);
292 static int target_revfn(u8 af
, const char *name
, u8 revision
, int *bestp
)
294 const struct xt_target
*t
;
297 list_for_each_entry(t
, &xt
[af
].target
, list
) {
298 if (strcmp(t
->name
, name
) == 0) {
299 if (t
->revision
> *bestp
)
300 *bestp
= t
->revision
;
301 if (t
->revision
== revision
)
306 if (af
!= NFPROTO_UNSPEC
&& !have_rev
)
307 return target_revfn(NFPROTO_UNSPEC
, name
, revision
, bestp
);
312 /* Returns true or false (if no such extension at all) */
313 int xt_find_revision(u8 af
, const char *name
, u8 revision
, int target
,
316 int have_rev
, best
= -1;
318 if (mutex_lock_interruptible(&xt
[af
].mutex
) != 0) {
323 have_rev
= target_revfn(af
, name
, revision
, &best
);
325 have_rev
= match_revfn(af
, name
, revision
, &best
);
326 mutex_unlock(&xt
[af
].mutex
);
328 /* Nothing at all? Return 0 to try loading module. */
336 *err
= -EPROTONOSUPPORT
;
339 EXPORT_SYMBOL_GPL(xt_find_revision
);
341 static char *textify_hooks(char *buf
, size_t size
, unsigned int mask
)
343 static const char *const names
[] = {
344 "PREROUTING", "INPUT", "FORWARD",
345 "OUTPUT", "POSTROUTING", "BROUTING",
353 for (i
= 0; i
< ARRAY_SIZE(names
); ++i
) {
354 if (!(mask
& (1 << i
)))
356 res
= snprintf(p
, size
, "%s%s", np
? "/" : "", names
[i
]);
367 int xt_check_match(struct xt_mtchk_param
*par
,
368 unsigned int size
, u_int8_t proto
, bool inv_proto
)
372 if (XT_ALIGN(par
->match
->matchsize
) != size
&&
373 par
->match
->matchsize
!= -1) {
375 * ebt_among is exempt from centralized matchsize checking
376 * because it uses a dynamic-size data set.
378 pr_err("%s_tables: %s.%u match: invalid size "
379 "%u (kernel) != (user) %u\n",
380 xt_prefix
[par
->family
], par
->match
->name
,
381 par
->match
->revision
,
382 XT_ALIGN(par
->match
->matchsize
), size
);
385 if (par
->match
->table
!= NULL
&&
386 strcmp(par
->match
->table
, par
->table
) != 0) {
387 pr_err("%s_tables: %s match: only valid in %s table, not %s\n",
388 xt_prefix
[par
->family
], par
->match
->name
,
389 par
->match
->table
, par
->table
);
392 if (par
->match
->hooks
&& (par
->hook_mask
& ~par
->match
->hooks
) != 0) {
393 char used
[64], allow
[64];
395 pr_err("%s_tables: %s match: used from hooks %s, but only "
397 xt_prefix
[par
->family
], par
->match
->name
,
398 textify_hooks(used
, sizeof(used
), par
->hook_mask
),
399 textify_hooks(allow
, sizeof(allow
), par
->match
->hooks
));
402 if (par
->match
->proto
&& (par
->match
->proto
!= proto
|| inv_proto
)) {
403 pr_err("%s_tables: %s match: only valid for protocol %u\n",
404 xt_prefix
[par
->family
], par
->match
->name
,
408 if (par
->match
->checkentry
!= NULL
) {
409 ret
= par
->match
->checkentry(par
);
413 /* Flag up potential errors. */
418 EXPORT_SYMBOL_GPL(xt_check_match
);
421 int xt_compat_add_offset(u_int8_t af
, unsigned int offset
, short delta
)
423 struct compat_delta
*tmp
;
425 tmp
= kmalloc(sizeof(struct compat_delta
), GFP_KERNEL
);
429 tmp
->offset
= offset
;
432 if (xt
[af
].compat_offsets
) {
433 tmp
->next
= xt
[af
].compat_offsets
->next
;
434 xt
[af
].compat_offsets
->next
= tmp
;
436 xt
[af
].compat_offsets
= tmp
;
441 EXPORT_SYMBOL_GPL(xt_compat_add_offset
);
443 void xt_compat_flush_offsets(u_int8_t af
)
445 struct compat_delta
*tmp
, *next
;
447 if (xt
[af
].compat_offsets
) {
448 for (tmp
= xt
[af
].compat_offsets
; tmp
; tmp
= next
) {
452 xt
[af
].compat_offsets
= NULL
;
455 EXPORT_SYMBOL_GPL(xt_compat_flush_offsets
);
457 int xt_compat_calc_jump(u_int8_t af
, unsigned int offset
)
459 struct compat_delta
*tmp
;
462 for (tmp
= xt
[af
].compat_offsets
, delta
= 0; tmp
; tmp
= tmp
->next
)
463 if (tmp
->offset
< offset
)
467 EXPORT_SYMBOL_GPL(xt_compat_calc_jump
);
469 int xt_compat_match_offset(const struct xt_match
*match
)
471 u_int16_t csize
= match
->compatsize
? : match
->matchsize
;
472 return XT_ALIGN(match
->matchsize
) - COMPAT_XT_ALIGN(csize
);
474 EXPORT_SYMBOL_GPL(xt_compat_match_offset
);
476 int xt_compat_match_from_user(struct xt_entry_match
*m
, void **dstptr
,
479 const struct xt_match
*match
= m
->u
.kernel
.match
;
480 struct compat_xt_entry_match
*cm
= (struct compat_xt_entry_match
*)m
;
481 int pad
, off
= xt_compat_match_offset(match
);
482 u_int16_t msize
= cm
->u
.user
.match_size
;
485 memcpy(m
, cm
, sizeof(*cm
));
486 if (match
->compat_from_user
)
487 match
->compat_from_user(m
->data
, cm
->data
);
489 memcpy(m
->data
, cm
->data
, msize
- sizeof(*cm
));
490 pad
= XT_ALIGN(match
->matchsize
) - match
->matchsize
;
492 memset(m
->data
+ match
->matchsize
, 0, pad
);
495 m
->u
.user
.match_size
= msize
;
501 EXPORT_SYMBOL_GPL(xt_compat_match_from_user
);
503 int xt_compat_match_to_user(const struct xt_entry_match
*m
,
504 void __user
**dstptr
, unsigned int *size
)
506 const struct xt_match
*match
= m
->u
.kernel
.match
;
507 struct compat_xt_entry_match __user
*cm
= *dstptr
;
508 int off
= xt_compat_match_offset(match
);
509 u_int16_t msize
= m
->u
.user
.match_size
- off
;
511 if (copy_to_user(cm
, m
, sizeof(*cm
)) ||
512 put_user(msize
, &cm
->u
.user
.match_size
) ||
513 copy_to_user(cm
->u
.user
.name
, m
->u
.kernel
.match
->name
,
514 strlen(m
->u
.kernel
.match
->name
) + 1))
517 if (match
->compat_to_user
) {
518 if (match
->compat_to_user((void __user
*)cm
->data
, m
->data
))
521 if (copy_to_user(cm
->data
, m
->data
, msize
- sizeof(*cm
)))
529 EXPORT_SYMBOL_GPL(xt_compat_match_to_user
);
530 #endif /* CONFIG_COMPAT */
532 int xt_check_target(struct xt_tgchk_param
*par
,
533 unsigned int size
, u_int8_t proto
, bool inv_proto
)
537 if (XT_ALIGN(par
->target
->targetsize
) != size
) {
538 pr_err("%s_tables: %s.%u target: invalid size "
539 "%u (kernel) != (user) %u\n",
540 xt_prefix
[par
->family
], par
->target
->name
,
541 par
->target
->revision
,
542 XT_ALIGN(par
->target
->targetsize
), size
);
545 if (par
->target
->table
!= NULL
&&
546 strcmp(par
->target
->table
, par
->table
) != 0) {
547 pr_err("%s_tables: %s target: only valid in %s table, not %s\n",
548 xt_prefix
[par
->family
], par
->target
->name
,
549 par
->target
->table
, par
->table
);
552 if (par
->target
->hooks
&& (par
->hook_mask
& ~par
->target
->hooks
) != 0) {
553 char used
[64], allow
[64];
555 pr_err("%s_tables: %s target: used from hooks %s, but only "
557 xt_prefix
[par
->family
], par
->target
->name
,
558 textify_hooks(used
, sizeof(used
), par
->hook_mask
),
559 textify_hooks(allow
, sizeof(allow
), par
->target
->hooks
));
562 if (par
->target
->proto
&& (par
->target
->proto
!= proto
|| inv_proto
)) {
563 pr_err("%s_tables: %s target: only valid for protocol %u\n",
564 xt_prefix
[par
->family
], par
->target
->name
,
568 if (par
->target
->checkentry
!= NULL
) {
569 ret
= par
->target
->checkentry(par
);
573 /* Flag up potential errors. */
578 EXPORT_SYMBOL_GPL(xt_check_target
);
581 int xt_compat_target_offset(const struct xt_target
*target
)
583 u_int16_t csize
= target
->compatsize
? : target
->targetsize
;
584 return XT_ALIGN(target
->targetsize
) - COMPAT_XT_ALIGN(csize
);
586 EXPORT_SYMBOL_GPL(xt_compat_target_offset
);
588 void xt_compat_target_from_user(struct xt_entry_target
*t
, void **dstptr
,
591 const struct xt_target
*target
= t
->u
.kernel
.target
;
592 struct compat_xt_entry_target
*ct
= (struct compat_xt_entry_target
*)t
;
593 int pad
, off
= xt_compat_target_offset(target
);
594 u_int16_t tsize
= ct
->u
.user
.target_size
;
597 memcpy(t
, ct
, sizeof(*ct
));
598 if (target
->compat_from_user
)
599 target
->compat_from_user(t
->data
, ct
->data
);
601 memcpy(t
->data
, ct
->data
, tsize
- sizeof(*ct
));
602 pad
= XT_ALIGN(target
->targetsize
) - target
->targetsize
;
604 memset(t
->data
+ target
->targetsize
, 0, pad
);
607 t
->u
.user
.target_size
= tsize
;
612 EXPORT_SYMBOL_GPL(xt_compat_target_from_user
);
614 int xt_compat_target_to_user(const struct xt_entry_target
*t
,
615 void __user
**dstptr
, unsigned int *size
)
617 const struct xt_target
*target
= t
->u
.kernel
.target
;
618 struct compat_xt_entry_target __user
*ct
= *dstptr
;
619 int off
= xt_compat_target_offset(target
);
620 u_int16_t tsize
= t
->u
.user
.target_size
- off
;
622 if (copy_to_user(ct
, t
, sizeof(*ct
)) ||
623 put_user(tsize
, &ct
->u
.user
.target_size
) ||
624 copy_to_user(ct
->u
.user
.name
, t
->u
.kernel
.target
->name
,
625 strlen(t
->u
.kernel
.target
->name
) + 1))
628 if (target
->compat_to_user
) {
629 if (target
->compat_to_user((void __user
*)ct
->data
, t
->data
))
632 if (copy_to_user(ct
->data
, t
->data
, tsize
- sizeof(*ct
)))
640 EXPORT_SYMBOL_GPL(xt_compat_target_to_user
);
643 struct xt_table_info
*xt_alloc_table_info(unsigned int size
)
645 struct xt_table_info
*newinfo
;
648 /* Pedantry: prevent them from hitting BUG() in vmalloc.c --RR */
649 if ((SMP_ALIGN(size
) >> PAGE_SHIFT
) + 2 > totalram_pages
)
652 newinfo
= kzalloc(XT_TABLE_INFO_SZ
, GFP_KERNEL
);
656 newinfo
->size
= size
;
658 for_each_possible_cpu(cpu
) {
659 if (size
<= PAGE_SIZE
)
660 newinfo
->entries
[cpu
] = kmalloc_node(size
,
664 newinfo
->entries
[cpu
] = vmalloc_node(size
,
667 if (newinfo
->entries
[cpu
] == NULL
) {
668 xt_free_table_info(newinfo
);
675 EXPORT_SYMBOL(xt_alloc_table_info
);
677 void xt_free_table_info(struct xt_table_info
*info
)
681 for_each_possible_cpu(cpu
) {
682 if (info
->size
<= PAGE_SIZE
)
683 kfree(info
->entries
[cpu
]);
685 vfree(info
->entries
[cpu
]);
688 if (info
->jumpstack
!= NULL
) {
689 if (sizeof(void *) * info
->stacksize
> PAGE_SIZE
) {
690 for_each_possible_cpu(cpu
)
691 vfree(info
->jumpstack
[cpu
]);
693 for_each_possible_cpu(cpu
)
694 kfree(info
->jumpstack
[cpu
]);
698 if (sizeof(void **) * nr_cpu_ids
> PAGE_SIZE
)
699 vfree(info
->jumpstack
);
701 kfree(info
->jumpstack
);
703 free_percpu(info
->stackptr
);
707 EXPORT_SYMBOL(xt_free_table_info
);
709 /* Find table by name, grabs mutex & ref. Returns ERR_PTR() on error. */
710 struct xt_table
*xt_find_table_lock(struct net
*net
, u_int8_t af
,
715 if (mutex_lock_interruptible(&xt
[af
].mutex
) != 0)
716 return ERR_PTR(-EINTR
);
718 list_for_each_entry(t
, &net
->xt
.tables
[af
], list
)
719 if (strcmp(t
->name
, name
) == 0 && try_module_get(t
->me
))
721 mutex_unlock(&xt
[af
].mutex
);
724 EXPORT_SYMBOL_GPL(xt_find_table_lock
);
726 void xt_table_unlock(struct xt_table
*table
)
728 mutex_unlock(&xt
[table
->af
].mutex
);
730 EXPORT_SYMBOL_GPL(xt_table_unlock
);
733 void xt_compat_lock(u_int8_t af
)
735 mutex_lock(&xt
[af
].compat_mutex
);
737 EXPORT_SYMBOL_GPL(xt_compat_lock
);
739 void xt_compat_unlock(u_int8_t af
)
741 mutex_unlock(&xt
[af
].compat_mutex
);
743 EXPORT_SYMBOL_GPL(xt_compat_unlock
);
746 DEFINE_PER_CPU(struct xt_info_lock
, xt_info_locks
);
747 EXPORT_PER_CPU_SYMBOL_GPL(xt_info_locks
);
749 static int xt_jumpstack_alloc(struct xt_table_info
*i
)
754 i
->stackptr
= alloc_percpu(unsigned int);
755 if (i
->stackptr
== NULL
)
758 size
= sizeof(void **) * nr_cpu_ids
;
759 if (size
> PAGE_SIZE
)
760 i
->jumpstack
= vmalloc(size
);
762 i
->jumpstack
= kmalloc(size
, GFP_KERNEL
);
763 if (i
->jumpstack
== NULL
)
765 memset(i
->jumpstack
, 0, size
);
767 i
->stacksize
*= xt_jumpstack_multiplier
;
768 size
= sizeof(void *) * i
->stacksize
;
769 for_each_possible_cpu(cpu
) {
770 if (size
> PAGE_SIZE
)
771 i
->jumpstack
[cpu
] = vmalloc_node(size
,
774 i
->jumpstack
[cpu
] = kmalloc_node(size
,
775 GFP_KERNEL
, cpu_to_node(cpu
));
776 if (i
->jumpstack
[cpu
] == NULL
)
778 * Freeing will be done later on by the callers. The
779 * chain is: xt_replace_table -> __do_replace ->
780 * do_replace -> xt_free_table_info.
788 struct xt_table_info
*
789 xt_replace_table(struct xt_table
*table
,
790 unsigned int num_counters
,
791 struct xt_table_info
*newinfo
,
794 struct xt_table_info
*private;
797 ret
= xt_jumpstack_alloc(newinfo
);
803 /* Do the substitution. */
805 private = table
->private;
807 /* Check inside lock: is the old number correct? */
808 if (num_counters
!= private->number
) {
809 pr_debug("num_counters != table->private->number (%u/%u)\n",
810 num_counters
, private->number
);
816 table
->private = newinfo
;
817 newinfo
->initial_entries
= private->initial_entries
;
820 * Even though table entries have now been swapped, other CPU's
821 * may still be using the old entries. This is okay, because
822 * resynchronization happens because of the locking done
823 * during the get_counters() routine.
829 EXPORT_SYMBOL_GPL(xt_replace_table
);
831 struct xt_table
*xt_register_table(struct net
*net
,
832 const struct xt_table
*input_table
,
833 struct xt_table_info
*bootstrap
,
834 struct xt_table_info
*newinfo
)
837 struct xt_table_info
*private;
838 struct xt_table
*t
, *table
;
840 /* Don't add one object to multiple lists. */
841 table
= kmemdup(input_table
, sizeof(struct xt_table
), GFP_KERNEL
);
847 ret
= mutex_lock_interruptible(&xt
[table
->af
].mutex
);
851 /* Don't autoload: we'd eat our tail... */
852 list_for_each_entry(t
, &net
->xt
.tables
[table
->af
], list
) {
853 if (strcmp(t
->name
, table
->name
) == 0) {
859 /* Simplifies replace_table code. */
860 table
->private = bootstrap
;
862 if (!xt_replace_table(table
, 0, newinfo
, &ret
))
865 private = table
->private;
866 pr_debug("table->private->number = %u\n", private->number
);
868 /* save number of initial entries */
869 private->initial_entries
= private->number
;
871 list_add(&table
->list
, &net
->xt
.tables
[table
->af
]);
872 mutex_unlock(&xt
[table
->af
].mutex
);
876 mutex_unlock(&xt
[table
->af
].mutex
);
882 EXPORT_SYMBOL_GPL(xt_register_table
);
884 void *xt_unregister_table(struct xt_table
*table
)
886 struct xt_table_info
*private;
888 mutex_lock(&xt
[table
->af
].mutex
);
889 private = table
->private;
890 list_del(&table
->list
);
891 mutex_unlock(&xt
[table
->af
].mutex
);
896 EXPORT_SYMBOL_GPL(xt_unregister_table
);
898 #ifdef CONFIG_PROC_FS
899 struct xt_names_priv
{
900 struct seq_net_private p
;
903 static void *xt_table_seq_start(struct seq_file
*seq
, loff_t
*pos
)
905 struct xt_names_priv
*priv
= seq
->private;
906 struct net
*net
= seq_file_net(seq
);
907 u_int8_t af
= priv
->af
;
909 mutex_lock(&xt
[af
].mutex
);
910 return seq_list_start(&net
->xt
.tables
[af
], *pos
);
913 static void *xt_table_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
915 struct xt_names_priv
*priv
= seq
->private;
916 struct net
*net
= seq_file_net(seq
);
917 u_int8_t af
= priv
->af
;
919 return seq_list_next(v
, &net
->xt
.tables
[af
], pos
);
922 static void xt_table_seq_stop(struct seq_file
*seq
, void *v
)
924 struct xt_names_priv
*priv
= seq
->private;
925 u_int8_t af
= priv
->af
;
927 mutex_unlock(&xt
[af
].mutex
);
930 static int xt_table_seq_show(struct seq_file
*seq
, void *v
)
932 struct xt_table
*table
= list_entry(v
, struct xt_table
, list
);
934 if (strlen(table
->name
))
935 return seq_printf(seq
, "%s\n", table
->name
);
940 static const struct seq_operations xt_table_seq_ops
= {
941 .start
= xt_table_seq_start
,
942 .next
= xt_table_seq_next
,
943 .stop
= xt_table_seq_stop
,
944 .show
= xt_table_seq_show
,
947 static int xt_table_open(struct inode
*inode
, struct file
*file
)
950 struct xt_names_priv
*priv
;
952 ret
= seq_open_net(inode
, file
, &xt_table_seq_ops
,
953 sizeof(struct xt_names_priv
));
955 priv
= ((struct seq_file
*)file
->private_data
)->private;
956 priv
->af
= (unsigned long)PDE(inode
)->data
;
961 static const struct file_operations xt_table_ops
= {
962 .owner
= THIS_MODULE
,
963 .open
= xt_table_open
,
966 .release
= seq_release_net
,
970 * Traverse state for ip{,6}_{tables,matches} for helping crossing
971 * the multi-AF mutexes.
973 struct nf_mttg_trav
{
974 struct list_head
*head
, *curr
;
975 uint8_t class, nfproto
;
980 MTTG_TRAV_NFP_UNSPEC
,
985 static void *xt_mttg_seq_next(struct seq_file
*seq
, void *v
, loff_t
*ppos
,
988 static const uint8_t next_class
[] = {
989 [MTTG_TRAV_NFP_UNSPEC
] = MTTG_TRAV_NFP_SPEC
,
990 [MTTG_TRAV_NFP_SPEC
] = MTTG_TRAV_DONE
,
992 struct nf_mttg_trav
*trav
= seq
->private;
994 switch (trav
->class) {
996 trav
->class = MTTG_TRAV_NFP_UNSPEC
;
997 mutex_lock(&xt
[NFPROTO_UNSPEC
].mutex
);
998 trav
->head
= trav
->curr
= is_target
?
999 &xt
[NFPROTO_UNSPEC
].target
: &xt
[NFPROTO_UNSPEC
].match
;
1001 case MTTG_TRAV_NFP_UNSPEC
:
1002 trav
->curr
= trav
->curr
->next
;
1003 if (trav
->curr
!= trav
->head
)
1005 mutex_unlock(&xt
[NFPROTO_UNSPEC
].mutex
);
1006 mutex_lock(&xt
[trav
->nfproto
].mutex
);
1007 trav
->head
= trav
->curr
= is_target
?
1008 &xt
[trav
->nfproto
].target
: &xt
[trav
->nfproto
].match
;
1009 trav
->class = next_class
[trav
->class];
1011 case MTTG_TRAV_NFP_SPEC
:
1012 trav
->curr
= trav
->curr
->next
;
1013 if (trav
->curr
!= trav
->head
)
1015 /* fallthru, _stop will unlock */
1025 static void *xt_mttg_seq_start(struct seq_file
*seq
, loff_t
*pos
,
1028 struct nf_mttg_trav
*trav
= seq
->private;
1031 trav
->class = MTTG_TRAV_INIT
;
1032 for (j
= 0; j
< *pos
; ++j
)
1033 if (xt_mttg_seq_next(seq
, NULL
, NULL
, is_target
) == NULL
)
1038 static void xt_mttg_seq_stop(struct seq_file
*seq
, void *v
)
1040 struct nf_mttg_trav
*trav
= seq
->private;
1042 switch (trav
->class) {
1043 case MTTG_TRAV_NFP_UNSPEC
:
1044 mutex_unlock(&xt
[NFPROTO_UNSPEC
].mutex
);
1046 case MTTG_TRAV_NFP_SPEC
:
1047 mutex_unlock(&xt
[trav
->nfproto
].mutex
);
1052 static void *xt_match_seq_start(struct seq_file
*seq
, loff_t
*pos
)
1054 return xt_mttg_seq_start(seq
, pos
, false);
1057 static void *xt_match_seq_next(struct seq_file
*seq
, void *v
, loff_t
*ppos
)
1059 return xt_mttg_seq_next(seq
, v
, ppos
, false);
1062 static int xt_match_seq_show(struct seq_file
*seq
, void *v
)
1064 const struct nf_mttg_trav
*trav
= seq
->private;
1065 const struct xt_match
*match
;
1067 switch (trav
->class) {
1068 case MTTG_TRAV_NFP_UNSPEC
:
1069 case MTTG_TRAV_NFP_SPEC
:
1070 if (trav
->curr
== trav
->head
)
1072 match
= list_entry(trav
->curr
, struct xt_match
, list
);
1073 return (*match
->name
== '\0') ? 0 :
1074 seq_printf(seq
, "%s\n", match
->name
);
1079 static const struct seq_operations xt_match_seq_ops
= {
1080 .start
= xt_match_seq_start
,
1081 .next
= xt_match_seq_next
,
1082 .stop
= xt_mttg_seq_stop
,
1083 .show
= xt_match_seq_show
,
1086 static int xt_match_open(struct inode
*inode
, struct file
*file
)
1088 struct seq_file
*seq
;
1089 struct nf_mttg_trav
*trav
;
1092 trav
= kmalloc(sizeof(*trav
), GFP_KERNEL
);
1096 ret
= seq_open(file
, &xt_match_seq_ops
);
1102 seq
= file
->private_data
;
1103 seq
->private = trav
;
1104 trav
->nfproto
= (unsigned long)PDE(inode
)->data
;
1108 static const struct file_operations xt_match_ops
= {
1109 .owner
= THIS_MODULE
,
1110 .open
= xt_match_open
,
1112 .llseek
= seq_lseek
,
1113 .release
= seq_release_private
,
1116 static void *xt_target_seq_start(struct seq_file
*seq
, loff_t
*pos
)
1118 return xt_mttg_seq_start(seq
, pos
, true);
1121 static void *xt_target_seq_next(struct seq_file
*seq
, void *v
, loff_t
*ppos
)
1123 return xt_mttg_seq_next(seq
, v
, ppos
, true);
1126 static int xt_target_seq_show(struct seq_file
*seq
, void *v
)
1128 const struct nf_mttg_trav
*trav
= seq
->private;
1129 const struct xt_target
*target
;
1131 switch (trav
->class) {
1132 case MTTG_TRAV_NFP_UNSPEC
:
1133 case MTTG_TRAV_NFP_SPEC
:
1134 if (trav
->curr
== trav
->head
)
1136 target
= list_entry(trav
->curr
, struct xt_target
, list
);
1137 return (*target
->name
== '\0') ? 0 :
1138 seq_printf(seq
, "%s\n", target
->name
);
1143 static const struct seq_operations xt_target_seq_ops
= {
1144 .start
= xt_target_seq_start
,
1145 .next
= xt_target_seq_next
,
1146 .stop
= xt_mttg_seq_stop
,
1147 .show
= xt_target_seq_show
,
1150 static int xt_target_open(struct inode
*inode
, struct file
*file
)
1152 struct seq_file
*seq
;
1153 struct nf_mttg_trav
*trav
;
1156 trav
= kmalloc(sizeof(*trav
), GFP_KERNEL
);
1160 ret
= seq_open(file
, &xt_target_seq_ops
);
1166 seq
= file
->private_data
;
1167 seq
->private = trav
;
1168 trav
->nfproto
= (unsigned long)PDE(inode
)->data
;
1172 static const struct file_operations xt_target_ops
= {
1173 .owner
= THIS_MODULE
,
1174 .open
= xt_target_open
,
1176 .llseek
= seq_lseek
,
1177 .release
= seq_release_private
,
1180 #define FORMAT_TABLES "_tables_names"
1181 #define FORMAT_MATCHES "_tables_matches"
1182 #define FORMAT_TARGETS "_tables_targets"
1184 #endif /* CONFIG_PROC_FS */
1187 * xt_hook_link - set up hooks for a new table
1188 * @table: table with metadata needed to set up hooks
1189 * @fn: Hook function
1191 * This function will take care of creating and registering the necessary
1192 * Netfilter hooks for XT tables.
1194 struct nf_hook_ops
*xt_hook_link(const struct xt_table
*table
, nf_hookfn
*fn
)
1196 unsigned int hook_mask
= table
->valid_hooks
;
1197 uint8_t i
, num_hooks
= hweight32(hook_mask
);
1199 struct nf_hook_ops
*ops
;
1202 ops
= kmalloc(sizeof(*ops
) * num_hooks
, GFP_KERNEL
);
1204 return ERR_PTR(-ENOMEM
);
1206 for (i
= 0, hooknum
= 0; i
< num_hooks
&& hook_mask
!= 0;
1207 hook_mask
>>= 1, ++hooknum
) {
1208 if (!(hook_mask
& 1))
1211 ops
[i
].owner
= table
->me
;
1212 ops
[i
].pf
= table
->af
;
1213 ops
[i
].hooknum
= hooknum
;
1214 ops
[i
].priority
= table
->priority
;
1218 ret
= nf_register_hooks(ops
, num_hooks
);
1221 return ERR_PTR(ret
);
1226 EXPORT_SYMBOL_GPL(xt_hook_link
);
1229 * xt_hook_unlink - remove hooks for a table
1230 * @ops: nf_hook_ops array as returned by nf_hook_link
1231 * @hook_mask: the very same mask that was passed to nf_hook_link
1233 void xt_hook_unlink(const struct xt_table
*table
, struct nf_hook_ops
*ops
)
1235 nf_unregister_hooks(ops
, hweight32(table
->valid_hooks
));
1238 EXPORT_SYMBOL_GPL(xt_hook_unlink
);
1240 int xt_proto_init(struct net
*net
, u_int8_t af
)
1242 #ifdef CONFIG_PROC_FS
1243 char buf
[XT_FUNCTION_MAXNAMELEN
];
1244 struct proc_dir_entry
*proc
;
1247 if (af
>= ARRAY_SIZE(xt_prefix
))
1251 #ifdef CONFIG_PROC_FS
1252 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1253 strlcat(buf
, FORMAT_TABLES
, sizeof(buf
));
1254 proc
= proc_create_data(buf
, 0440, net
->proc_net
, &xt_table_ops
,
1255 (void *)(unsigned long)af
);
1259 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1260 strlcat(buf
, FORMAT_MATCHES
, sizeof(buf
));
1261 proc
= proc_create_data(buf
, 0440, net
->proc_net
, &xt_match_ops
,
1262 (void *)(unsigned long)af
);
1264 goto out_remove_tables
;
1266 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1267 strlcat(buf
, FORMAT_TARGETS
, sizeof(buf
));
1268 proc
= proc_create_data(buf
, 0440, net
->proc_net
, &xt_target_ops
,
1269 (void *)(unsigned long)af
);
1271 goto out_remove_matches
;
1276 #ifdef CONFIG_PROC_FS
1278 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1279 strlcat(buf
, FORMAT_MATCHES
, sizeof(buf
));
1280 proc_net_remove(net
, buf
);
1283 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1284 strlcat(buf
, FORMAT_TABLES
, sizeof(buf
));
1285 proc_net_remove(net
, buf
);
1290 EXPORT_SYMBOL_GPL(xt_proto_init
);
1292 void xt_proto_fini(struct net
*net
, u_int8_t af
)
1294 #ifdef CONFIG_PROC_FS
1295 char buf
[XT_FUNCTION_MAXNAMELEN
];
1297 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1298 strlcat(buf
, FORMAT_TABLES
, sizeof(buf
));
1299 proc_net_remove(net
, buf
);
1301 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1302 strlcat(buf
, FORMAT_TARGETS
, sizeof(buf
));
1303 proc_net_remove(net
, buf
);
1305 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1306 strlcat(buf
, FORMAT_MATCHES
, sizeof(buf
));
1307 proc_net_remove(net
, buf
);
1308 #endif /*CONFIG_PROC_FS*/
1310 EXPORT_SYMBOL_GPL(xt_proto_fini
);
1312 static int __net_init
xt_net_init(struct net
*net
)
1316 for (i
= 0; i
< NFPROTO_NUMPROTO
; i
++)
1317 INIT_LIST_HEAD(&net
->xt
.tables
[i
]);
1321 static struct pernet_operations xt_net_ops
= {
1322 .init
= xt_net_init
,
1325 static int __init
xt_init(void)
1330 for_each_possible_cpu(i
) {
1331 struct xt_info_lock
*lock
= &per_cpu(xt_info_locks
, i
);
1332 spin_lock_init(&lock
->lock
);
1336 xt
= kmalloc(sizeof(struct xt_af
) * NFPROTO_NUMPROTO
, GFP_KERNEL
);
1340 for (i
= 0; i
< NFPROTO_NUMPROTO
; i
++) {
1341 mutex_init(&xt
[i
].mutex
);
1342 #ifdef CONFIG_COMPAT
1343 mutex_init(&xt
[i
].compat_mutex
);
1344 xt
[i
].compat_offsets
= NULL
;
1346 INIT_LIST_HEAD(&xt
[i
].target
);
1347 INIT_LIST_HEAD(&xt
[i
].match
);
1349 rv
= register_pernet_subsys(&xt_net_ops
);
1355 static void __exit
xt_fini(void)
1357 unregister_pernet_subsys(&xt_net_ops
);
1361 module_init(xt_init
);
1362 module_exit(xt_fini
);