2 * x_tables core - Backend for {ip,ip6,arp}_tables
4 * Copyright (C) 2006-2006 Harald Welte <laforge@netfilter.org>
5 * Copyright (C) 2006-2012 Patrick McHardy <kaber@trash.net>
7 * Based on existing ip_tables code which is
8 * Copyright (C) 1999 Paul `Rusty' Russell & Michael J. Neuling
9 * Copyright (C) 2000-2005 Netfilter Core Team <coreteam@netfilter.org>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
16 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17 #include <linux/kernel.h>
18 #include <linux/module.h>
19 #include <linux/socket.h>
20 #include <linux/net.h>
21 #include <linux/proc_fs.h>
22 #include <linux/seq_file.h>
23 #include <linux/string.h>
24 #include <linux/vmalloc.h>
25 #include <linux/mutex.h>
27 #include <linux/slab.h>
28 #include <linux/audit.h>
29 #include <net/net_namespace.h>
31 #include <linux/netfilter/x_tables.h>
32 #include <linux/netfilter_arp.h>
33 #include <linux/netfilter_ipv4/ip_tables.h>
34 #include <linux/netfilter_ipv6/ip6_tables.h>
35 #include <linux/netfilter_arp/arp_tables.h>
37 MODULE_LICENSE("GPL");
38 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
39 MODULE_DESCRIPTION("{ip,ip6,arp,eb}_tables backend module");
41 #define SMP_ALIGN(x) (((x) + SMP_CACHE_BYTES-1) & ~(SMP_CACHE_BYTES-1))
44 unsigned int offset
; /* offset in kernel */
45 int delta
; /* delta in 32bit user land */
50 struct list_head match
;
51 struct list_head target
;
53 struct mutex compat_mutex
;
54 struct compat_delta
*compat_tab
;
55 unsigned int number
; /* number of slots in compat_tab[] */
56 unsigned int cur
; /* number of used slots in compat_tab[] */
60 static struct xt_af
*xt
;
62 static const char *const xt_prefix
[NFPROTO_NUMPROTO
] = {
63 [NFPROTO_UNSPEC
] = "x",
64 [NFPROTO_IPV4
] = "ip",
65 [NFPROTO_ARP
] = "arp",
66 [NFPROTO_BRIDGE
] = "eb",
67 [NFPROTO_IPV6
] = "ip6",
70 /* Allow this many total (re)entries. */
71 static const unsigned int xt_jumpstack_multiplier
= 2;
73 /* Registration hooks for targets. */
74 int xt_register_target(struct xt_target
*target
)
76 u_int8_t af
= target
->family
;
78 mutex_lock(&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
);
124 int xt_register_match(struct xt_match
*match
)
126 u_int8_t af
= match
->family
;
128 mutex_lock(&xt
[af
].mutex
);
129 list_add(&match
->list
, &xt
[af
].match
);
130 mutex_unlock(&xt
[af
].mutex
);
133 EXPORT_SYMBOL(xt_register_match
);
136 xt_unregister_match(struct xt_match
*match
)
138 u_int8_t af
= match
->family
;
140 mutex_lock(&xt
[af
].mutex
);
141 list_del(&match
->list
);
142 mutex_unlock(&xt
[af
].mutex
);
144 EXPORT_SYMBOL(xt_unregister_match
);
147 xt_register_matches(struct xt_match
*match
, unsigned int n
)
152 for (i
= 0; i
< n
; i
++) {
153 err
= xt_register_match(&match
[i
]);
161 xt_unregister_matches(match
, i
);
164 EXPORT_SYMBOL(xt_register_matches
);
167 xt_unregister_matches(struct xt_match
*match
, unsigned int n
)
170 xt_unregister_match(&match
[n
]);
172 EXPORT_SYMBOL(xt_unregister_matches
);
176 * These are weird, but module loading must not be done with mutex
177 * held (since they will register), and we have to have a single
181 /* Find match, grabs ref. Returns ERR_PTR() on error. */
182 struct xt_match
*xt_find_match(u8 af
, const char *name
, u8 revision
)
187 mutex_lock(&xt
[af
].mutex
);
188 list_for_each_entry(m
, &xt
[af
].match
, list
) {
189 if (strcmp(m
->name
, name
) == 0) {
190 if (m
->revision
== revision
) {
191 if (try_module_get(m
->me
)) {
192 mutex_unlock(&xt
[af
].mutex
);
196 err
= -EPROTOTYPE
; /* Found something. */
199 mutex_unlock(&xt
[af
].mutex
);
201 if (af
!= NFPROTO_UNSPEC
)
202 /* Try searching again in the family-independent list */
203 return xt_find_match(NFPROTO_UNSPEC
, name
, revision
);
207 EXPORT_SYMBOL(xt_find_match
);
210 xt_request_find_match(uint8_t nfproto
, const char *name
, uint8_t revision
)
212 struct xt_match
*match
;
214 match
= xt_find_match(nfproto
, name
, revision
);
216 request_module("%st_%s", xt_prefix
[nfproto
], name
);
217 match
= xt_find_match(nfproto
, name
, revision
);
222 EXPORT_SYMBOL_GPL(xt_request_find_match
);
224 /* Find target, grabs ref. Returns ERR_PTR() on error. */
225 struct xt_target
*xt_find_target(u8 af
, const char *name
, u8 revision
)
230 mutex_lock(&xt
[af
].mutex
);
231 list_for_each_entry(t
, &xt
[af
].target
, list
) {
232 if (strcmp(t
->name
, name
) == 0) {
233 if (t
->revision
== revision
) {
234 if (try_module_get(t
->me
)) {
235 mutex_unlock(&xt
[af
].mutex
);
239 err
= -EPROTOTYPE
; /* Found something. */
242 mutex_unlock(&xt
[af
].mutex
);
244 if (af
!= NFPROTO_UNSPEC
)
245 /* Try searching again in the family-independent list */
246 return xt_find_target(NFPROTO_UNSPEC
, name
, revision
);
250 EXPORT_SYMBOL(xt_find_target
);
252 struct xt_target
*xt_request_find_target(u8 af
, const char *name
, u8 revision
)
254 struct xt_target
*target
;
256 target
= xt_find_target(af
, name
, revision
);
257 if (IS_ERR(target
)) {
258 request_module("%st_%s", xt_prefix
[af
], name
);
259 target
= xt_find_target(af
, name
, revision
);
264 EXPORT_SYMBOL_GPL(xt_request_find_target
);
266 static int match_revfn(u8 af
, const char *name
, u8 revision
, int *bestp
)
268 const struct xt_match
*m
;
271 list_for_each_entry(m
, &xt
[af
].match
, list
) {
272 if (strcmp(m
->name
, name
) == 0) {
273 if (m
->revision
> *bestp
)
274 *bestp
= m
->revision
;
275 if (m
->revision
== revision
)
280 if (af
!= NFPROTO_UNSPEC
&& !have_rev
)
281 return match_revfn(NFPROTO_UNSPEC
, name
, revision
, bestp
);
286 static int target_revfn(u8 af
, const char *name
, u8 revision
, int *bestp
)
288 const struct xt_target
*t
;
291 list_for_each_entry(t
, &xt
[af
].target
, list
) {
292 if (strcmp(t
->name
, name
) == 0) {
293 if (t
->revision
> *bestp
)
294 *bestp
= t
->revision
;
295 if (t
->revision
== revision
)
300 if (af
!= NFPROTO_UNSPEC
&& !have_rev
)
301 return target_revfn(NFPROTO_UNSPEC
, name
, revision
, bestp
);
306 /* Returns true or false (if no such extension at all) */
307 int xt_find_revision(u8 af
, const char *name
, u8 revision
, int target
,
310 int have_rev
, best
= -1;
312 mutex_lock(&xt
[af
].mutex
);
314 have_rev
= target_revfn(af
, name
, revision
, &best
);
316 have_rev
= match_revfn(af
, name
, revision
, &best
);
317 mutex_unlock(&xt
[af
].mutex
);
319 /* Nothing at all? Return 0 to try loading module. */
327 *err
= -EPROTONOSUPPORT
;
330 EXPORT_SYMBOL_GPL(xt_find_revision
);
333 textify_hooks(char *buf
, size_t size
, unsigned int mask
, uint8_t nfproto
)
335 static const char *const inetbr_names
[] = {
336 "PREROUTING", "INPUT", "FORWARD",
337 "OUTPUT", "POSTROUTING", "BROUTING",
339 static const char *const arp_names
[] = {
340 "INPUT", "FORWARD", "OUTPUT",
342 const char *const *names
;
348 names
= (nfproto
== NFPROTO_ARP
) ? arp_names
: inetbr_names
;
349 max
= (nfproto
== NFPROTO_ARP
) ? ARRAY_SIZE(arp_names
) :
350 ARRAY_SIZE(inetbr_names
);
352 for (i
= 0; i
< max
; ++i
) {
353 if (!(mask
& (1 << i
)))
355 res
= snprintf(p
, size
, "%s%s", np
? "/" : "", names
[i
]);
366 int xt_check_match(struct xt_mtchk_param
*par
,
367 unsigned int size
, u_int8_t proto
, bool inv_proto
)
371 if (XT_ALIGN(par
->match
->matchsize
) != size
&&
372 par
->match
->matchsize
!= -1) {
374 * ebt_among is exempt from centralized matchsize checking
375 * because it uses a dynamic-size data set.
377 pr_err("%s_tables: %s.%u match: invalid size "
378 "%u (kernel) != (user) %u\n",
379 xt_prefix
[par
->family
], par
->match
->name
,
380 par
->match
->revision
,
381 XT_ALIGN(par
->match
->matchsize
), size
);
384 if (par
->match
->table
!= NULL
&&
385 strcmp(par
->match
->table
, par
->table
) != 0) {
386 pr_err("%s_tables: %s match: only valid in %s table, not %s\n",
387 xt_prefix
[par
->family
], par
->match
->name
,
388 par
->match
->table
, par
->table
);
391 if (par
->match
->hooks
&& (par
->hook_mask
& ~par
->match
->hooks
) != 0) {
392 char used
[64], allow
[64];
394 pr_err("%s_tables: %s match: used from hooks %s, but only "
396 xt_prefix
[par
->family
], par
->match
->name
,
397 textify_hooks(used
, sizeof(used
), par
->hook_mask
,
399 textify_hooks(allow
, sizeof(allow
), par
->match
->hooks
,
403 if (par
->match
->proto
&& (par
->match
->proto
!= proto
|| inv_proto
)) {
404 pr_err("%s_tables: %s match: only valid for protocol %u\n",
405 xt_prefix
[par
->family
], par
->match
->name
,
409 if (par
->match
->checkentry
!= NULL
) {
410 ret
= par
->match
->checkentry(par
);
414 /* Flag up potential errors. */
419 EXPORT_SYMBOL_GPL(xt_check_match
);
422 int xt_compat_add_offset(u_int8_t af
, unsigned int offset
, int delta
)
424 struct xt_af
*xp
= &xt
[af
];
426 if (!xp
->compat_tab
) {
429 xp
->compat_tab
= vmalloc(sizeof(struct compat_delta
) * xp
->number
);
435 if (xp
->cur
>= xp
->number
)
439 delta
+= xp
->compat_tab
[xp
->cur
- 1].delta
;
440 xp
->compat_tab
[xp
->cur
].offset
= offset
;
441 xp
->compat_tab
[xp
->cur
].delta
= delta
;
445 EXPORT_SYMBOL_GPL(xt_compat_add_offset
);
447 void xt_compat_flush_offsets(u_int8_t af
)
449 if (xt
[af
].compat_tab
) {
450 vfree(xt
[af
].compat_tab
);
451 xt
[af
].compat_tab
= NULL
;
456 EXPORT_SYMBOL_GPL(xt_compat_flush_offsets
);
458 int xt_compat_calc_jump(u_int8_t af
, unsigned int offset
)
460 struct compat_delta
*tmp
= xt
[af
].compat_tab
;
461 int mid
, left
= 0, right
= xt
[af
].cur
- 1;
463 while (left
<= right
) {
464 mid
= (left
+ right
) >> 1;
465 if (offset
> tmp
[mid
].offset
)
467 else if (offset
< tmp
[mid
].offset
)
470 return mid
? tmp
[mid
- 1].delta
: 0;
472 return left
? tmp
[left
- 1].delta
: 0;
474 EXPORT_SYMBOL_GPL(xt_compat_calc_jump
);
476 void xt_compat_init_offsets(u_int8_t af
, unsigned int number
)
478 xt
[af
].number
= number
;
481 EXPORT_SYMBOL(xt_compat_init_offsets
);
483 int xt_compat_match_offset(const struct xt_match
*match
)
485 u_int16_t csize
= match
->compatsize
? : match
->matchsize
;
486 return XT_ALIGN(match
->matchsize
) - COMPAT_XT_ALIGN(csize
);
488 EXPORT_SYMBOL_GPL(xt_compat_match_offset
);
490 int xt_compat_match_from_user(struct xt_entry_match
*m
, void **dstptr
,
493 const struct xt_match
*match
= m
->u
.kernel
.match
;
494 struct compat_xt_entry_match
*cm
= (struct compat_xt_entry_match
*)m
;
495 int pad
, off
= xt_compat_match_offset(match
);
496 u_int16_t msize
= cm
->u
.user
.match_size
;
499 memcpy(m
, cm
, sizeof(*cm
));
500 if (match
->compat_from_user
)
501 match
->compat_from_user(m
->data
, cm
->data
);
503 memcpy(m
->data
, cm
->data
, msize
- sizeof(*cm
));
504 pad
= XT_ALIGN(match
->matchsize
) - match
->matchsize
;
506 memset(m
->data
+ match
->matchsize
, 0, pad
);
509 m
->u
.user
.match_size
= msize
;
515 EXPORT_SYMBOL_GPL(xt_compat_match_from_user
);
517 int xt_compat_match_to_user(const struct xt_entry_match
*m
,
518 void __user
**dstptr
, unsigned int *size
)
520 const struct xt_match
*match
= m
->u
.kernel
.match
;
521 struct compat_xt_entry_match __user
*cm
= *dstptr
;
522 int off
= xt_compat_match_offset(match
);
523 u_int16_t msize
= m
->u
.user
.match_size
- off
;
525 if (copy_to_user(cm
, m
, sizeof(*cm
)) ||
526 put_user(msize
, &cm
->u
.user
.match_size
) ||
527 copy_to_user(cm
->u
.user
.name
, m
->u
.kernel
.match
->name
,
528 strlen(m
->u
.kernel
.match
->name
) + 1))
531 if (match
->compat_to_user
) {
532 if (match
->compat_to_user((void __user
*)cm
->data
, m
->data
))
535 if (copy_to_user(cm
->data
, m
->data
, msize
- sizeof(*cm
)))
543 EXPORT_SYMBOL_GPL(xt_compat_match_to_user
);
544 #endif /* CONFIG_COMPAT */
546 int xt_check_target(struct xt_tgchk_param
*par
,
547 unsigned int size
, u_int8_t proto
, bool inv_proto
)
551 if (XT_ALIGN(par
->target
->targetsize
) != size
) {
552 pr_err("%s_tables: %s.%u target: invalid size "
553 "%u (kernel) != (user) %u\n",
554 xt_prefix
[par
->family
], par
->target
->name
,
555 par
->target
->revision
,
556 XT_ALIGN(par
->target
->targetsize
), size
);
559 if (par
->target
->table
!= NULL
&&
560 strcmp(par
->target
->table
, par
->table
) != 0) {
561 pr_err("%s_tables: %s target: only valid in %s table, not %s\n",
562 xt_prefix
[par
->family
], par
->target
->name
,
563 par
->target
->table
, par
->table
);
566 if (par
->target
->hooks
&& (par
->hook_mask
& ~par
->target
->hooks
) != 0) {
567 char used
[64], allow
[64];
569 pr_err("%s_tables: %s target: used from hooks %s, but only "
571 xt_prefix
[par
->family
], par
->target
->name
,
572 textify_hooks(used
, sizeof(used
), par
->hook_mask
,
574 textify_hooks(allow
, sizeof(allow
), par
->target
->hooks
,
578 if (par
->target
->proto
&& (par
->target
->proto
!= proto
|| inv_proto
)) {
579 pr_err("%s_tables: %s target: only valid for protocol %u\n",
580 xt_prefix
[par
->family
], par
->target
->name
,
584 if (par
->target
->checkentry
!= NULL
) {
585 ret
= par
->target
->checkentry(par
);
589 /* Flag up potential errors. */
594 EXPORT_SYMBOL_GPL(xt_check_target
);
597 int xt_compat_target_offset(const struct xt_target
*target
)
599 u_int16_t csize
= target
->compatsize
? : target
->targetsize
;
600 return XT_ALIGN(target
->targetsize
) - COMPAT_XT_ALIGN(csize
);
602 EXPORT_SYMBOL_GPL(xt_compat_target_offset
);
604 void xt_compat_target_from_user(struct xt_entry_target
*t
, void **dstptr
,
607 const struct xt_target
*target
= t
->u
.kernel
.target
;
608 struct compat_xt_entry_target
*ct
= (struct compat_xt_entry_target
*)t
;
609 int pad
, off
= xt_compat_target_offset(target
);
610 u_int16_t tsize
= ct
->u
.user
.target_size
;
613 memcpy(t
, ct
, sizeof(*ct
));
614 if (target
->compat_from_user
)
615 target
->compat_from_user(t
->data
, ct
->data
);
617 memcpy(t
->data
, ct
->data
, tsize
- sizeof(*ct
));
618 pad
= XT_ALIGN(target
->targetsize
) - target
->targetsize
;
620 memset(t
->data
+ target
->targetsize
, 0, pad
);
623 t
->u
.user
.target_size
= tsize
;
628 EXPORT_SYMBOL_GPL(xt_compat_target_from_user
);
630 int xt_compat_target_to_user(const struct xt_entry_target
*t
,
631 void __user
**dstptr
, unsigned int *size
)
633 const struct xt_target
*target
= t
->u
.kernel
.target
;
634 struct compat_xt_entry_target __user
*ct
= *dstptr
;
635 int off
= xt_compat_target_offset(target
);
636 u_int16_t tsize
= t
->u
.user
.target_size
- off
;
638 if (copy_to_user(ct
, t
, sizeof(*ct
)) ||
639 put_user(tsize
, &ct
->u
.user
.target_size
) ||
640 copy_to_user(ct
->u
.user
.name
, t
->u
.kernel
.target
->name
,
641 strlen(t
->u
.kernel
.target
->name
) + 1))
644 if (target
->compat_to_user
) {
645 if (target
->compat_to_user((void __user
*)ct
->data
, t
->data
))
648 if (copy_to_user(ct
->data
, t
->data
, tsize
- sizeof(*ct
)))
656 EXPORT_SYMBOL_GPL(xt_compat_target_to_user
);
659 struct xt_table_info
*xt_alloc_table_info(unsigned int size
)
661 struct xt_table_info
*newinfo
;
664 /* Pedantry: prevent them from hitting BUG() in vmalloc.c --RR */
665 if ((SMP_ALIGN(size
) >> PAGE_SHIFT
) + 2 > totalram_pages
)
668 newinfo
= kzalloc(XT_TABLE_INFO_SZ
, GFP_KERNEL
);
672 newinfo
->size
= size
;
674 for_each_possible_cpu(cpu
) {
675 if (size
<= PAGE_SIZE
)
676 newinfo
->entries
[cpu
] = kmalloc_node(size
,
680 newinfo
->entries
[cpu
] = vmalloc_node(size
,
683 if (newinfo
->entries
[cpu
] == NULL
) {
684 xt_free_table_info(newinfo
);
691 EXPORT_SYMBOL(xt_alloc_table_info
);
693 void xt_free_table_info(struct xt_table_info
*info
)
697 for_each_possible_cpu(cpu
)
698 kvfree(info
->entries
[cpu
]);
700 if (info
->jumpstack
!= NULL
) {
701 for_each_possible_cpu(cpu
)
702 kvfree(info
->jumpstack
[cpu
]);
703 kvfree(info
->jumpstack
);
706 free_percpu(info
->stackptr
);
710 EXPORT_SYMBOL(xt_free_table_info
);
712 /* Find table by name, grabs mutex & ref. Returns ERR_PTR() on error. */
713 struct xt_table
*xt_find_table_lock(struct net
*net
, u_int8_t af
,
718 mutex_lock(&xt
[af
].mutex
);
719 list_for_each_entry(t
, &net
->xt
.tables
[af
], list
)
720 if (strcmp(t
->name
, name
) == 0 && try_module_get(t
->me
))
722 mutex_unlock(&xt
[af
].mutex
);
725 EXPORT_SYMBOL_GPL(xt_find_table_lock
);
727 void xt_table_unlock(struct xt_table
*table
)
729 mutex_unlock(&xt
[table
->af
].mutex
);
731 EXPORT_SYMBOL_GPL(xt_table_unlock
);
734 void xt_compat_lock(u_int8_t af
)
736 mutex_lock(&xt
[af
].compat_mutex
);
738 EXPORT_SYMBOL_GPL(xt_compat_lock
);
740 void xt_compat_unlock(u_int8_t af
)
742 mutex_unlock(&xt
[af
].compat_mutex
);
744 EXPORT_SYMBOL_GPL(xt_compat_unlock
);
747 DEFINE_PER_CPU(seqcount_t
, xt_recseq
);
748 EXPORT_PER_CPU_SYMBOL_GPL(xt_recseq
);
750 static int xt_jumpstack_alloc(struct xt_table_info
*i
)
755 i
->stackptr
= alloc_percpu(unsigned int);
756 if (i
->stackptr
== NULL
)
759 size
= sizeof(void **) * nr_cpu_ids
;
760 if (size
> PAGE_SIZE
)
761 i
->jumpstack
= vzalloc(size
);
763 i
->jumpstack
= kzalloc(size
, GFP_KERNEL
);
764 if (i
->jumpstack
== NULL
)
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 newinfo
->initial_entries
= private->initial_entries
;
818 * Ensure contents of newinfo are visible before assigning to
822 table
->private = newinfo
;
825 * Even though table entries have now been swapped, other CPU's
826 * may still be using the old entries. This is okay, because
827 * resynchronization happens because of the locking done
828 * during the get_counters() routine.
834 struct audit_buffer
*ab
;
836 ab
= audit_log_start(current
->audit_context
, GFP_KERNEL
,
837 AUDIT_NETFILTER_CFG
);
839 audit_log_format(ab
, "table=%s family=%u entries=%u",
840 table
->name
, table
->af
,
849 EXPORT_SYMBOL_GPL(xt_replace_table
);
851 struct xt_table
*xt_register_table(struct net
*net
,
852 const struct xt_table
*input_table
,
853 struct xt_table_info
*bootstrap
,
854 struct xt_table_info
*newinfo
)
857 struct xt_table_info
*private;
858 struct xt_table
*t
, *table
;
860 /* Don't add one object to multiple lists. */
861 table
= kmemdup(input_table
, sizeof(struct xt_table
), GFP_KERNEL
);
867 mutex_lock(&xt
[table
->af
].mutex
);
868 /* Don't autoload: we'd eat our tail... */
869 list_for_each_entry(t
, &net
->xt
.tables
[table
->af
], list
) {
870 if (strcmp(t
->name
, table
->name
) == 0) {
876 /* Simplifies replace_table code. */
877 table
->private = bootstrap
;
879 if (!xt_replace_table(table
, 0, newinfo
, &ret
))
882 private = table
->private;
883 pr_debug("table->private->number = %u\n", private->number
);
885 /* save number of initial entries */
886 private->initial_entries
= private->number
;
888 list_add(&table
->list
, &net
->xt
.tables
[table
->af
]);
889 mutex_unlock(&xt
[table
->af
].mutex
);
893 mutex_unlock(&xt
[table
->af
].mutex
);
898 EXPORT_SYMBOL_GPL(xt_register_table
);
900 void *xt_unregister_table(struct xt_table
*table
)
902 struct xt_table_info
*private;
904 mutex_lock(&xt
[table
->af
].mutex
);
905 private = table
->private;
906 list_del(&table
->list
);
907 mutex_unlock(&xt
[table
->af
].mutex
);
912 EXPORT_SYMBOL_GPL(xt_unregister_table
);
914 #ifdef CONFIG_PROC_FS
915 struct xt_names_priv
{
916 struct seq_net_private p
;
919 static void *xt_table_seq_start(struct seq_file
*seq
, loff_t
*pos
)
921 struct xt_names_priv
*priv
= seq
->private;
922 struct net
*net
= seq_file_net(seq
);
923 u_int8_t af
= priv
->af
;
925 mutex_lock(&xt
[af
].mutex
);
926 return seq_list_start(&net
->xt
.tables
[af
], *pos
);
929 static void *xt_table_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
931 struct xt_names_priv
*priv
= seq
->private;
932 struct net
*net
= seq_file_net(seq
);
933 u_int8_t af
= priv
->af
;
935 return seq_list_next(v
, &net
->xt
.tables
[af
], pos
);
938 static void xt_table_seq_stop(struct seq_file
*seq
, void *v
)
940 struct xt_names_priv
*priv
= seq
->private;
941 u_int8_t af
= priv
->af
;
943 mutex_unlock(&xt
[af
].mutex
);
946 static int xt_table_seq_show(struct seq_file
*seq
, void *v
)
948 struct xt_table
*table
= list_entry(v
, struct xt_table
, list
);
950 if (strlen(table
->name
)) {
951 seq_printf(seq
, "%s\n", table
->name
);
952 return seq_has_overflowed(seq
);
957 static const struct seq_operations xt_table_seq_ops
= {
958 .start
= xt_table_seq_start
,
959 .next
= xt_table_seq_next
,
960 .stop
= xt_table_seq_stop
,
961 .show
= xt_table_seq_show
,
964 static int xt_table_open(struct inode
*inode
, struct file
*file
)
967 struct xt_names_priv
*priv
;
969 ret
= seq_open_net(inode
, file
, &xt_table_seq_ops
,
970 sizeof(struct xt_names_priv
));
972 priv
= ((struct seq_file
*)file
->private_data
)->private;
973 priv
->af
= (unsigned long)PDE_DATA(inode
);
978 static const struct file_operations xt_table_ops
= {
979 .owner
= THIS_MODULE
,
980 .open
= xt_table_open
,
983 .release
= seq_release_net
,
987 * Traverse state for ip{,6}_{tables,matches} for helping crossing
988 * the multi-AF mutexes.
990 struct nf_mttg_trav
{
991 struct list_head
*head
, *curr
;
992 uint8_t class, nfproto
;
997 MTTG_TRAV_NFP_UNSPEC
,
1002 static void *xt_mttg_seq_next(struct seq_file
*seq
, void *v
, loff_t
*ppos
,
1005 static const uint8_t next_class
[] = {
1006 [MTTG_TRAV_NFP_UNSPEC
] = MTTG_TRAV_NFP_SPEC
,
1007 [MTTG_TRAV_NFP_SPEC
] = MTTG_TRAV_DONE
,
1009 struct nf_mttg_trav
*trav
= seq
->private;
1011 switch (trav
->class) {
1012 case MTTG_TRAV_INIT
:
1013 trav
->class = MTTG_TRAV_NFP_UNSPEC
;
1014 mutex_lock(&xt
[NFPROTO_UNSPEC
].mutex
);
1015 trav
->head
= trav
->curr
= is_target
?
1016 &xt
[NFPROTO_UNSPEC
].target
: &xt
[NFPROTO_UNSPEC
].match
;
1018 case MTTG_TRAV_NFP_UNSPEC
:
1019 trav
->curr
= trav
->curr
->next
;
1020 if (trav
->curr
!= trav
->head
)
1022 mutex_unlock(&xt
[NFPROTO_UNSPEC
].mutex
);
1023 mutex_lock(&xt
[trav
->nfproto
].mutex
);
1024 trav
->head
= trav
->curr
= is_target
?
1025 &xt
[trav
->nfproto
].target
: &xt
[trav
->nfproto
].match
;
1026 trav
->class = next_class
[trav
->class];
1028 case MTTG_TRAV_NFP_SPEC
:
1029 trav
->curr
= trav
->curr
->next
;
1030 if (trav
->curr
!= trav
->head
)
1032 /* fallthru, _stop will unlock */
1042 static void *xt_mttg_seq_start(struct seq_file
*seq
, loff_t
*pos
,
1045 struct nf_mttg_trav
*trav
= seq
->private;
1048 trav
->class = MTTG_TRAV_INIT
;
1049 for (j
= 0; j
< *pos
; ++j
)
1050 if (xt_mttg_seq_next(seq
, NULL
, NULL
, is_target
) == NULL
)
1055 static void xt_mttg_seq_stop(struct seq_file
*seq
, void *v
)
1057 struct nf_mttg_trav
*trav
= seq
->private;
1059 switch (trav
->class) {
1060 case MTTG_TRAV_NFP_UNSPEC
:
1061 mutex_unlock(&xt
[NFPROTO_UNSPEC
].mutex
);
1063 case MTTG_TRAV_NFP_SPEC
:
1064 mutex_unlock(&xt
[trav
->nfproto
].mutex
);
1069 static void *xt_match_seq_start(struct seq_file
*seq
, loff_t
*pos
)
1071 return xt_mttg_seq_start(seq
, pos
, false);
1074 static void *xt_match_seq_next(struct seq_file
*seq
, void *v
, loff_t
*ppos
)
1076 return xt_mttg_seq_next(seq
, v
, ppos
, false);
1079 static int xt_match_seq_show(struct seq_file
*seq
, void *v
)
1081 const struct nf_mttg_trav
*trav
= seq
->private;
1082 const struct xt_match
*match
;
1084 switch (trav
->class) {
1085 case MTTG_TRAV_NFP_UNSPEC
:
1086 case MTTG_TRAV_NFP_SPEC
:
1087 if (trav
->curr
== trav
->head
)
1089 match
= list_entry(trav
->curr
, struct xt_match
, list
);
1090 if (*match
->name
== '\0')
1092 seq_printf(seq
, "%s\n", match
->name
);
1093 return seq_has_overflowed(seq
);
1098 static const struct seq_operations xt_match_seq_ops
= {
1099 .start
= xt_match_seq_start
,
1100 .next
= xt_match_seq_next
,
1101 .stop
= xt_mttg_seq_stop
,
1102 .show
= xt_match_seq_show
,
1105 static int xt_match_open(struct inode
*inode
, struct file
*file
)
1107 struct nf_mttg_trav
*trav
;
1108 trav
= __seq_open_private(file
, &xt_match_seq_ops
, sizeof(*trav
));
1112 trav
->nfproto
= (unsigned long)PDE_DATA(inode
);
1116 static const struct file_operations xt_match_ops
= {
1117 .owner
= THIS_MODULE
,
1118 .open
= xt_match_open
,
1120 .llseek
= seq_lseek
,
1121 .release
= seq_release_private
,
1124 static void *xt_target_seq_start(struct seq_file
*seq
, loff_t
*pos
)
1126 return xt_mttg_seq_start(seq
, pos
, true);
1129 static void *xt_target_seq_next(struct seq_file
*seq
, void *v
, loff_t
*ppos
)
1131 return xt_mttg_seq_next(seq
, v
, ppos
, true);
1134 static int xt_target_seq_show(struct seq_file
*seq
, void *v
)
1136 const struct nf_mttg_trav
*trav
= seq
->private;
1137 const struct xt_target
*target
;
1139 switch (trav
->class) {
1140 case MTTG_TRAV_NFP_UNSPEC
:
1141 case MTTG_TRAV_NFP_SPEC
:
1142 if (trav
->curr
== trav
->head
)
1144 target
= list_entry(trav
->curr
, struct xt_target
, list
);
1145 if (*target
->name
== '\0')
1147 seq_printf(seq
, "%s\n", target
->name
);
1148 return seq_has_overflowed(seq
);
1153 static const struct seq_operations xt_target_seq_ops
= {
1154 .start
= xt_target_seq_start
,
1155 .next
= xt_target_seq_next
,
1156 .stop
= xt_mttg_seq_stop
,
1157 .show
= xt_target_seq_show
,
1160 static int xt_target_open(struct inode
*inode
, struct file
*file
)
1162 struct nf_mttg_trav
*trav
;
1163 trav
= __seq_open_private(file
, &xt_target_seq_ops
, sizeof(*trav
));
1167 trav
->nfproto
= (unsigned long)PDE_DATA(inode
);
1171 static const struct file_operations xt_target_ops
= {
1172 .owner
= THIS_MODULE
,
1173 .open
= xt_target_open
,
1175 .llseek
= seq_lseek
,
1176 .release
= seq_release_private
,
1179 #define FORMAT_TABLES "_tables_names"
1180 #define FORMAT_MATCHES "_tables_matches"
1181 #define FORMAT_TARGETS "_tables_targets"
1183 #endif /* CONFIG_PROC_FS */
1186 * xt_hook_link - set up hooks for a new table
1187 * @table: table with metadata needed to set up hooks
1188 * @fn: Hook function
1190 * This function will take care of creating and registering the necessary
1191 * Netfilter hooks for XT tables.
1193 struct nf_hook_ops
*xt_hook_link(const struct xt_table
*table
, nf_hookfn
*fn
)
1195 unsigned int hook_mask
= table
->valid_hooks
;
1196 uint8_t i
, num_hooks
= hweight32(hook_mask
);
1198 struct nf_hook_ops
*ops
;
1201 ops
= kmalloc(sizeof(*ops
) * num_hooks
, GFP_KERNEL
);
1203 return ERR_PTR(-ENOMEM
);
1205 for (i
= 0, hooknum
= 0; i
< num_hooks
&& hook_mask
!= 0;
1206 hook_mask
>>= 1, ++hooknum
) {
1207 if (!(hook_mask
& 1))
1210 ops
[i
].owner
= table
->me
;
1211 ops
[i
].pf
= table
->af
;
1212 ops
[i
].hooknum
= hooknum
;
1213 ops
[i
].priority
= table
->priority
;
1217 ret
= nf_register_hooks(ops
, num_hooks
);
1220 return ERR_PTR(ret
);
1225 EXPORT_SYMBOL_GPL(xt_hook_link
);
1228 * xt_hook_unlink - remove hooks for a table
1229 * @ops: nf_hook_ops array as returned by nf_hook_link
1230 * @hook_mask: the very same mask that was passed to nf_hook_link
1232 void xt_hook_unlink(const struct xt_table
*table
, struct nf_hook_ops
*ops
)
1234 nf_unregister_hooks(ops
, hweight32(table
->valid_hooks
));
1237 EXPORT_SYMBOL_GPL(xt_hook_unlink
);
1239 int xt_proto_init(struct net
*net
, u_int8_t af
)
1241 #ifdef CONFIG_PROC_FS
1242 char buf
[XT_FUNCTION_MAXNAMELEN
];
1243 struct proc_dir_entry
*proc
;
1246 if (af
>= ARRAY_SIZE(xt_prefix
))
1250 #ifdef CONFIG_PROC_FS
1251 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1252 strlcat(buf
, FORMAT_TABLES
, sizeof(buf
));
1253 proc
= proc_create_data(buf
, 0440, net
->proc_net
, &xt_table_ops
,
1254 (void *)(unsigned long)af
);
1258 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1259 strlcat(buf
, FORMAT_MATCHES
, sizeof(buf
));
1260 proc
= proc_create_data(buf
, 0440, net
->proc_net
, &xt_match_ops
,
1261 (void *)(unsigned long)af
);
1263 goto out_remove_tables
;
1265 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1266 strlcat(buf
, FORMAT_TARGETS
, sizeof(buf
));
1267 proc
= proc_create_data(buf
, 0440, net
->proc_net
, &xt_target_ops
,
1268 (void *)(unsigned long)af
);
1270 goto out_remove_matches
;
1275 #ifdef CONFIG_PROC_FS
1277 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1278 strlcat(buf
, FORMAT_MATCHES
, sizeof(buf
));
1279 remove_proc_entry(buf
, net
->proc_net
);
1282 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1283 strlcat(buf
, FORMAT_TABLES
, sizeof(buf
));
1284 remove_proc_entry(buf
, net
->proc_net
);
1289 EXPORT_SYMBOL_GPL(xt_proto_init
);
1291 void xt_proto_fini(struct net
*net
, u_int8_t af
)
1293 #ifdef CONFIG_PROC_FS
1294 char buf
[XT_FUNCTION_MAXNAMELEN
];
1296 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1297 strlcat(buf
, FORMAT_TABLES
, sizeof(buf
));
1298 remove_proc_entry(buf
, net
->proc_net
);
1300 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1301 strlcat(buf
, FORMAT_TARGETS
, sizeof(buf
));
1302 remove_proc_entry(buf
, net
->proc_net
);
1304 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1305 strlcat(buf
, FORMAT_MATCHES
, sizeof(buf
));
1306 remove_proc_entry(buf
, net
->proc_net
);
1307 #endif /*CONFIG_PROC_FS*/
1309 EXPORT_SYMBOL_GPL(xt_proto_fini
);
1311 static int __net_init
xt_net_init(struct net
*net
)
1315 for (i
= 0; i
< NFPROTO_NUMPROTO
; i
++)
1316 INIT_LIST_HEAD(&net
->xt
.tables
[i
]);
1320 static struct pernet_operations xt_net_ops
= {
1321 .init
= xt_net_init
,
1324 static int __init
xt_init(void)
1329 for_each_possible_cpu(i
) {
1330 seqcount_init(&per_cpu(xt_recseq
, i
));
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_tab
= 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
);