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/module.h>
18 #include <linux/socket.h>
19 #include <linux/net.h>
20 #include <linux/proc_fs.h>
21 #include <linux/seq_file.h>
22 #include <linux/string.h>
23 #include <linux/vmalloc.h>
24 #include <linux/mutex.h>
26 #include <linux/slab.h>
27 #include <linux/audit.h>
28 #include <net/net_namespace.h>
30 #include <linux/netfilter/x_tables.h>
31 #include <linux/netfilter_arp.h>
32 #include <linux/netfilter_ipv4/ip_tables.h>
33 #include <linux/netfilter_ipv6/ip6_tables.h>
34 #include <linux/netfilter_arp/arp_tables.h>
36 MODULE_LICENSE("GPL");
37 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
38 MODULE_DESCRIPTION("{ip,ip6,arp,eb}_tables backend module");
40 #define SMP_ALIGN(x) (((x) + SMP_CACHE_BYTES-1) & ~(SMP_CACHE_BYTES-1))
43 unsigned int offset
; /* offset in kernel */
44 int delta
; /* delta in 32bit user land */
49 struct list_head match
;
50 struct list_head target
;
52 struct mutex compat_mutex
;
53 struct compat_delta
*compat_tab
;
54 unsigned int number
; /* number of slots in compat_tab[] */
55 unsigned int cur
; /* number of used slots in compat_tab[] */
59 static struct xt_af
*xt
;
61 static const char *const xt_prefix
[NFPROTO_NUMPROTO
] = {
62 [NFPROTO_UNSPEC
] = "x",
63 [NFPROTO_IPV4
] = "ip",
64 [NFPROTO_ARP
] = "arp",
65 [NFPROTO_BRIDGE
] = "eb",
66 [NFPROTO_IPV6
] = "ip6",
69 /* Allow this many total (re)entries. */
70 static const unsigned int xt_jumpstack_multiplier
= 2;
72 /* Registration hooks for targets. */
74 xt_register_target(struct xt_target
*target
)
76 u_int8_t af
= target
->family
;
79 ret
= mutex_lock_interruptible(&xt
[af
].mutex
);
82 list_add(&target
->list
, &xt
[af
].target
);
83 mutex_unlock(&xt
[af
].mutex
);
86 EXPORT_SYMBOL(xt_register_target
);
89 xt_unregister_target(struct xt_target
*target
)
91 u_int8_t af
= target
->family
;
93 mutex_lock(&xt
[af
].mutex
);
94 list_del(&target
->list
);
95 mutex_unlock(&xt
[af
].mutex
);
97 EXPORT_SYMBOL(xt_unregister_target
);
100 xt_register_targets(struct xt_target
*target
, unsigned int n
)
105 for (i
= 0; i
< n
; i
++) {
106 err
= xt_register_target(&target
[i
]);
114 xt_unregister_targets(target
, i
);
117 EXPORT_SYMBOL(xt_register_targets
);
120 xt_unregister_targets(struct xt_target
*target
, unsigned int n
)
123 xt_unregister_target(&target
[n
]);
125 EXPORT_SYMBOL(xt_unregister_targets
);
128 xt_register_match(struct xt_match
*match
)
130 u_int8_t af
= match
->family
;
133 ret
= mutex_lock_interruptible(&xt
[af
].mutex
);
137 list_add(&match
->list
, &xt
[af
].match
);
138 mutex_unlock(&xt
[af
].mutex
);
142 EXPORT_SYMBOL(xt_register_match
);
145 xt_unregister_match(struct xt_match
*match
)
147 u_int8_t af
= match
->family
;
149 mutex_lock(&xt
[af
].mutex
);
150 list_del(&match
->list
);
151 mutex_unlock(&xt
[af
].mutex
);
153 EXPORT_SYMBOL(xt_unregister_match
);
156 xt_register_matches(struct xt_match
*match
, unsigned int n
)
161 for (i
= 0; i
< n
; i
++) {
162 err
= xt_register_match(&match
[i
]);
170 xt_unregister_matches(match
, i
);
173 EXPORT_SYMBOL(xt_register_matches
);
176 xt_unregister_matches(struct xt_match
*match
, unsigned int n
)
179 xt_unregister_match(&match
[n
]);
181 EXPORT_SYMBOL(xt_unregister_matches
);
185 * These are weird, but module loading must not be done with mutex
186 * held (since they will register), and we have to have a single
190 /* Find match, grabs ref. Returns ERR_PTR() on error. */
191 struct xt_match
*xt_find_match(u8 af
, const char *name
, u8 revision
)
196 if (mutex_lock_interruptible(&xt
[af
].mutex
) != 0)
197 return ERR_PTR(-EINTR
);
199 list_for_each_entry(m
, &xt
[af
].match
, list
) {
200 if (strcmp(m
->name
, name
) == 0) {
201 if (m
->revision
== revision
) {
202 if (try_module_get(m
->me
)) {
203 mutex_unlock(&xt
[af
].mutex
);
207 err
= -EPROTOTYPE
; /* Found something. */
210 mutex_unlock(&xt
[af
].mutex
);
212 if (af
!= NFPROTO_UNSPEC
)
213 /* Try searching again in the family-independent list */
214 return xt_find_match(NFPROTO_UNSPEC
, name
, revision
);
218 EXPORT_SYMBOL(xt_find_match
);
221 xt_request_find_match(uint8_t nfproto
, const char *name
, uint8_t revision
)
223 struct xt_match
*match
;
225 match
= xt_find_match(nfproto
, name
, revision
);
227 request_module("%st_%s", xt_prefix
[nfproto
], name
);
228 match
= xt_find_match(nfproto
, name
, revision
);
233 EXPORT_SYMBOL_GPL(xt_request_find_match
);
235 /* Find target, grabs ref. Returns ERR_PTR() on error. */
236 struct xt_target
*xt_find_target(u8 af
, const char *name
, u8 revision
)
241 if (mutex_lock_interruptible(&xt
[af
].mutex
) != 0)
242 return ERR_PTR(-EINTR
);
244 list_for_each_entry(t
, &xt
[af
].target
, list
) {
245 if (strcmp(t
->name
, name
) == 0) {
246 if (t
->revision
== revision
) {
247 if (try_module_get(t
->me
)) {
248 mutex_unlock(&xt
[af
].mutex
);
252 err
= -EPROTOTYPE
; /* Found something. */
255 mutex_unlock(&xt
[af
].mutex
);
257 if (af
!= NFPROTO_UNSPEC
)
258 /* Try searching again in the family-independent list */
259 return xt_find_target(NFPROTO_UNSPEC
, name
, revision
);
263 EXPORT_SYMBOL(xt_find_target
);
265 struct xt_target
*xt_request_find_target(u8 af
, const char *name
, u8 revision
)
267 struct xt_target
*target
;
269 target
= xt_find_target(af
, name
, revision
);
270 if (IS_ERR(target
)) {
271 request_module("%st_%s", xt_prefix
[af
], name
);
272 target
= xt_find_target(af
, name
, revision
);
277 EXPORT_SYMBOL_GPL(xt_request_find_target
);
279 static int match_revfn(u8 af
, const char *name
, u8 revision
, int *bestp
)
281 const struct xt_match
*m
;
284 list_for_each_entry(m
, &xt
[af
].match
, list
) {
285 if (strcmp(m
->name
, name
) == 0) {
286 if (m
->revision
> *bestp
)
287 *bestp
= m
->revision
;
288 if (m
->revision
== revision
)
293 if (af
!= NFPROTO_UNSPEC
&& !have_rev
)
294 return match_revfn(NFPROTO_UNSPEC
, name
, revision
, bestp
);
299 static int target_revfn(u8 af
, const char *name
, u8 revision
, int *bestp
)
301 const struct xt_target
*t
;
304 list_for_each_entry(t
, &xt
[af
].target
, list
) {
305 if (strcmp(t
->name
, name
) == 0) {
306 if (t
->revision
> *bestp
)
307 *bestp
= t
->revision
;
308 if (t
->revision
== revision
)
313 if (af
!= NFPROTO_UNSPEC
&& !have_rev
)
314 return target_revfn(NFPROTO_UNSPEC
, name
, revision
, bestp
);
319 /* Returns true or false (if no such extension at all) */
320 int xt_find_revision(u8 af
, const char *name
, u8 revision
, int target
,
323 int have_rev
, best
= -1;
325 if (mutex_lock_interruptible(&xt
[af
].mutex
) != 0) {
330 have_rev
= target_revfn(af
, name
, revision
, &best
);
332 have_rev
= match_revfn(af
, name
, revision
, &best
);
333 mutex_unlock(&xt
[af
].mutex
);
335 /* Nothing at all? Return 0 to try loading module. */
343 *err
= -EPROTONOSUPPORT
;
346 EXPORT_SYMBOL_GPL(xt_find_revision
);
349 textify_hooks(char *buf
, size_t size
, unsigned int mask
, uint8_t nfproto
)
351 static const char *const inetbr_names
[] = {
352 "PREROUTING", "INPUT", "FORWARD",
353 "OUTPUT", "POSTROUTING", "BROUTING",
355 static const char *const arp_names
[] = {
356 "INPUT", "FORWARD", "OUTPUT",
358 const char *const *names
;
364 names
= (nfproto
== NFPROTO_ARP
) ? arp_names
: inetbr_names
;
365 max
= (nfproto
== NFPROTO_ARP
) ? ARRAY_SIZE(arp_names
) :
366 ARRAY_SIZE(inetbr_names
);
368 for (i
= 0; i
< max
; ++i
) {
369 if (!(mask
& (1 << i
)))
371 res
= snprintf(p
, size
, "%s%s", np
? "/" : "", names
[i
]);
382 int xt_check_match(struct xt_mtchk_param
*par
,
383 unsigned int size
, u_int8_t proto
, bool inv_proto
)
387 if (XT_ALIGN(par
->match
->matchsize
) != size
&&
388 par
->match
->matchsize
!= -1) {
390 * ebt_among is exempt from centralized matchsize checking
391 * because it uses a dynamic-size data set.
393 pr_err("%s_tables: %s.%u match: invalid size "
394 "%u (kernel) != (user) %u\n",
395 xt_prefix
[par
->family
], par
->match
->name
,
396 par
->match
->revision
,
397 XT_ALIGN(par
->match
->matchsize
), size
);
400 if (par
->match
->table
!= NULL
&&
401 strcmp(par
->match
->table
, par
->table
) != 0) {
402 pr_err("%s_tables: %s match: only valid in %s table, not %s\n",
403 xt_prefix
[par
->family
], par
->match
->name
,
404 par
->match
->table
, par
->table
);
407 if (par
->match
->hooks
&& (par
->hook_mask
& ~par
->match
->hooks
) != 0) {
408 char used
[64], allow
[64];
410 pr_err("%s_tables: %s match: used from hooks %s, but only "
412 xt_prefix
[par
->family
], par
->match
->name
,
413 textify_hooks(used
, sizeof(used
), par
->hook_mask
,
415 textify_hooks(allow
, sizeof(allow
), par
->match
->hooks
,
419 if (par
->match
->proto
&& (par
->match
->proto
!= proto
|| inv_proto
)) {
420 pr_err("%s_tables: %s match: only valid for protocol %u\n",
421 xt_prefix
[par
->family
], par
->match
->name
,
425 if (par
->match
->checkentry
!= NULL
) {
426 ret
= par
->match
->checkentry(par
);
430 /* Flag up potential errors. */
435 EXPORT_SYMBOL_GPL(xt_check_match
);
438 int xt_compat_add_offset(u_int8_t af
, unsigned int offset
, int delta
)
440 struct xt_af
*xp
= &xt
[af
];
442 if (!xp
->compat_tab
) {
445 xp
->compat_tab
= vmalloc(sizeof(struct compat_delta
) * xp
->number
);
451 if (xp
->cur
>= xp
->number
)
455 delta
+= xp
->compat_tab
[xp
->cur
- 1].delta
;
456 xp
->compat_tab
[xp
->cur
].offset
= offset
;
457 xp
->compat_tab
[xp
->cur
].delta
= delta
;
461 EXPORT_SYMBOL_GPL(xt_compat_add_offset
);
463 void xt_compat_flush_offsets(u_int8_t af
)
465 if (xt
[af
].compat_tab
) {
466 vfree(xt
[af
].compat_tab
);
467 xt
[af
].compat_tab
= NULL
;
472 EXPORT_SYMBOL_GPL(xt_compat_flush_offsets
);
474 int xt_compat_calc_jump(u_int8_t af
, unsigned int offset
)
476 struct compat_delta
*tmp
= xt
[af
].compat_tab
;
477 int mid
, left
= 0, right
= xt
[af
].cur
- 1;
479 while (left
<= right
) {
480 mid
= (left
+ right
) >> 1;
481 if (offset
> tmp
[mid
].offset
)
483 else if (offset
< tmp
[mid
].offset
)
486 return mid
? tmp
[mid
- 1].delta
: 0;
488 return left
? tmp
[left
- 1].delta
: 0;
490 EXPORT_SYMBOL_GPL(xt_compat_calc_jump
);
492 void xt_compat_init_offsets(u_int8_t af
, unsigned int number
)
494 xt
[af
].number
= number
;
497 EXPORT_SYMBOL(xt_compat_init_offsets
);
499 int xt_compat_match_offset(const struct xt_match
*match
)
501 u_int16_t csize
= match
->compatsize
? : match
->matchsize
;
502 return XT_ALIGN(match
->matchsize
) - COMPAT_XT_ALIGN(csize
);
504 EXPORT_SYMBOL_GPL(xt_compat_match_offset
);
506 int xt_compat_match_from_user(struct xt_entry_match
*m
, void **dstptr
,
509 const struct xt_match
*match
= m
->u
.kernel
.match
;
510 struct compat_xt_entry_match
*cm
= (struct compat_xt_entry_match
*)m
;
511 int pad
, off
= xt_compat_match_offset(match
);
512 u_int16_t msize
= cm
->u
.user
.match_size
;
515 memcpy(m
, cm
, sizeof(*cm
));
516 if (match
->compat_from_user
)
517 match
->compat_from_user(m
->data
, cm
->data
);
519 memcpy(m
->data
, cm
->data
, msize
- sizeof(*cm
));
520 pad
= XT_ALIGN(match
->matchsize
) - match
->matchsize
;
522 memset(m
->data
+ match
->matchsize
, 0, pad
);
525 m
->u
.user
.match_size
= msize
;
531 EXPORT_SYMBOL_GPL(xt_compat_match_from_user
);
533 int xt_compat_match_to_user(const struct xt_entry_match
*m
,
534 void __user
**dstptr
, unsigned int *size
)
536 const struct xt_match
*match
= m
->u
.kernel
.match
;
537 struct compat_xt_entry_match __user
*cm
= *dstptr
;
538 int off
= xt_compat_match_offset(match
);
539 u_int16_t msize
= m
->u
.user
.match_size
- off
;
541 if (copy_to_user(cm
, m
, sizeof(*cm
)) ||
542 put_user(msize
, &cm
->u
.user
.match_size
) ||
543 copy_to_user(cm
->u
.user
.name
, m
->u
.kernel
.match
->name
,
544 strlen(m
->u
.kernel
.match
->name
) + 1))
547 if (match
->compat_to_user
) {
548 if (match
->compat_to_user((void __user
*)cm
->data
, m
->data
))
551 if (copy_to_user(cm
->data
, m
->data
, msize
- sizeof(*cm
)))
559 EXPORT_SYMBOL_GPL(xt_compat_match_to_user
);
560 #endif /* CONFIG_COMPAT */
562 int xt_check_target(struct xt_tgchk_param
*par
,
563 unsigned int size
, u_int8_t proto
, bool inv_proto
)
567 if (XT_ALIGN(par
->target
->targetsize
) != size
) {
568 pr_err("%s_tables: %s.%u target: invalid size "
569 "%u (kernel) != (user) %u\n",
570 xt_prefix
[par
->family
], par
->target
->name
,
571 par
->target
->revision
,
572 XT_ALIGN(par
->target
->targetsize
), size
);
575 if (par
->target
->table
!= NULL
&&
576 strcmp(par
->target
->table
, par
->table
) != 0) {
577 pr_err("%s_tables: %s target: only valid in %s table, not %s\n",
578 xt_prefix
[par
->family
], par
->target
->name
,
579 par
->target
->table
, par
->table
);
582 if (par
->target
->hooks
&& (par
->hook_mask
& ~par
->target
->hooks
) != 0) {
583 char used
[64], allow
[64];
585 pr_err("%s_tables: %s target: used from hooks %s, but only "
587 xt_prefix
[par
->family
], par
->target
->name
,
588 textify_hooks(used
, sizeof(used
), par
->hook_mask
,
590 textify_hooks(allow
, sizeof(allow
), par
->target
->hooks
,
594 if (par
->target
->proto
&& (par
->target
->proto
!= proto
|| inv_proto
)) {
595 pr_err("%s_tables: %s target: only valid for protocol %u\n",
596 xt_prefix
[par
->family
], par
->target
->name
,
600 if (par
->target
->checkentry
!= NULL
) {
601 ret
= par
->target
->checkentry(par
);
605 /* Flag up potential errors. */
610 EXPORT_SYMBOL_GPL(xt_check_target
);
613 int xt_compat_target_offset(const struct xt_target
*target
)
615 u_int16_t csize
= target
->compatsize
? : target
->targetsize
;
616 return XT_ALIGN(target
->targetsize
) - COMPAT_XT_ALIGN(csize
);
618 EXPORT_SYMBOL_GPL(xt_compat_target_offset
);
620 void xt_compat_target_from_user(struct xt_entry_target
*t
, void **dstptr
,
623 const struct xt_target
*target
= t
->u
.kernel
.target
;
624 struct compat_xt_entry_target
*ct
= (struct compat_xt_entry_target
*)t
;
625 int pad
, off
= xt_compat_target_offset(target
);
626 u_int16_t tsize
= ct
->u
.user
.target_size
;
629 memcpy(t
, ct
, sizeof(*ct
));
630 if (target
->compat_from_user
)
631 target
->compat_from_user(t
->data
, ct
->data
);
633 memcpy(t
->data
, ct
->data
, tsize
- sizeof(*ct
));
634 pad
= XT_ALIGN(target
->targetsize
) - target
->targetsize
;
636 memset(t
->data
+ target
->targetsize
, 0, pad
);
639 t
->u
.user
.target_size
= tsize
;
644 EXPORT_SYMBOL_GPL(xt_compat_target_from_user
);
646 int xt_compat_target_to_user(const struct xt_entry_target
*t
,
647 void __user
**dstptr
, unsigned int *size
)
649 const struct xt_target
*target
= t
->u
.kernel
.target
;
650 struct compat_xt_entry_target __user
*ct
= *dstptr
;
651 int off
= xt_compat_target_offset(target
);
652 u_int16_t tsize
= t
->u
.user
.target_size
- off
;
654 if (copy_to_user(ct
, t
, sizeof(*ct
)) ||
655 put_user(tsize
, &ct
->u
.user
.target_size
) ||
656 copy_to_user(ct
->u
.user
.name
, t
->u
.kernel
.target
->name
,
657 strlen(t
->u
.kernel
.target
->name
) + 1))
660 if (target
->compat_to_user
) {
661 if (target
->compat_to_user((void __user
*)ct
->data
, t
->data
))
664 if (copy_to_user(ct
->data
, t
->data
, tsize
- sizeof(*ct
)))
672 EXPORT_SYMBOL_GPL(xt_compat_target_to_user
);
675 struct xt_table_info
*xt_alloc_table_info(unsigned int size
)
677 struct xt_table_info
*newinfo
;
680 /* Pedantry: prevent them from hitting BUG() in vmalloc.c --RR */
681 if ((SMP_ALIGN(size
) >> PAGE_SHIFT
) + 2 > totalram_pages
)
684 newinfo
= kzalloc(XT_TABLE_INFO_SZ
, GFP_KERNEL
);
688 newinfo
->size
= size
;
690 for_each_possible_cpu(cpu
) {
691 if (size
<= PAGE_SIZE
)
692 newinfo
->entries
[cpu
] = kmalloc_node(size
,
696 newinfo
->entries
[cpu
] = vmalloc_node(size
,
699 if (newinfo
->entries
[cpu
] == NULL
) {
700 xt_free_table_info(newinfo
);
707 EXPORT_SYMBOL(xt_alloc_table_info
);
709 void xt_free_table_info(struct xt_table_info
*info
)
713 for_each_possible_cpu(cpu
) {
714 if (info
->size
<= PAGE_SIZE
)
715 kfree(info
->entries
[cpu
]);
717 vfree(info
->entries
[cpu
]);
720 if (info
->jumpstack
!= NULL
) {
721 if (sizeof(void *) * info
->stacksize
> PAGE_SIZE
) {
722 for_each_possible_cpu(cpu
)
723 vfree(info
->jumpstack
[cpu
]);
725 for_each_possible_cpu(cpu
)
726 kfree(info
->jumpstack
[cpu
]);
730 if (sizeof(void **) * nr_cpu_ids
> PAGE_SIZE
)
731 vfree(info
->jumpstack
);
733 kfree(info
->jumpstack
);
735 free_percpu(info
->stackptr
);
739 EXPORT_SYMBOL(xt_free_table_info
);
741 /* Find table by name, grabs mutex & ref. Returns ERR_PTR() on error. */
742 struct xt_table
*xt_find_table_lock(struct net
*net
, u_int8_t af
,
747 if (mutex_lock_interruptible(&xt
[af
].mutex
) != 0)
748 return ERR_PTR(-EINTR
);
750 list_for_each_entry(t
, &net
->xt
.tables
[af
], list
)
751 if (strcmp(t
->name
, name
) == 0 && try_module_get(t
->me
))
753 mutex_unlock(&xt
[af
].mutex
);
756 EXPORT_SYMBOL_GPL(xt_find_table_lock
);
758 void xt_table_unlock(struct xt_table
*table
)
760 mutex_unlock(&xt
[table
->af
].mutex
);
762 EXPORT_SYMBOL_GPL(xt_table_unlock
);
765 void xt_compat_lock(u_int8_t af
)
767 mutex_lock(&xt
[af
].compat_mutex
);
769 EXPORT_SYMBOL_GPL(xt_compat_lock
);
771 void xt_compat_unlock(u_int8_t af
)
773 mutex_unlock(&xt
[af
].compat_mutex
);
775 EXPORT_SYMBOL_GPL(xt_compat_unlock
);
778 DEFINE_PER_CPU(seqcount_t
, xt_recseq
);
779 EXPORT_PER_CPU_SYMBOL_GPL(xt_recseq
);
781 static int xt_jumpstack_alloc(struct xt_table_info
*i
)
786 i
->stackptr
= alloc_percpu(unsigned int);
787 if (i
->stackptr
== NULL
)
790 size
= sizeof(void **) * nr_cpu_ids
;
791 if (size
> PAGE_SIZE
)
792 i
->jumpstack
= vzalloc(size
);
794 i
->jumpstack
= kzalloc(size
, GFP_KERNEL
);
795 if (i
->jumpstack
== NULL
)
798 i
->stacksize
*= xt_jumpstack_multiplier
;
799 size
= sizeof(void *) * i
->stacksize
;
800 for_each_possible_cpu(cpu
) {
801 if (size
> PAGE_SIZE
)
802 i
->jumpstack
[cpu
] = vmalloc_node(size
,
805 i
->jumpstack
[cpu
] = kmalloc_node(size
,
806 GFP_KERNEL
, cpu_to_node(cpu
));
807 if (i
->jumpstack
[cpu
] == NULL
)
809 * Freeing will be done later on by the callers. The
810 * chain is: xt_replace_table -> __do_replace ->
811 * do_replace -> xt_free_table_info.
819 struct xt_table_info
*
820 xt_replace_table(struct xt_table
*table
,
821 unsigned int num_counters
,
822 struct xt_table_info
*newinfo
,
825 struct xt_table_info
*private;
828 ret
= xt_jumpstack_alloc(newinfo
);
834 /* Do the substitution. */
836 private = table
->private;
838 /* Check inside lock: is the old number correct? */
839 if (num_counters
!= private->number
) {
840 pr_debug("num_counters != table->private->number (%u/%u)\n",
841 num_counters
, private->number
);
847 table
->private = newinfo
;
848 newinfo
->initial_entries
= private->initial_entries
;
851 * Even though table entries have now been swapped, other CPU's
852 * may still be using the old entries. This is okay, because
853 * resynchronization happens because of the locking done
854 * during the get_counters() routine.
860 struct audit_buffer
*ab
;
862 ab
= audit_log_start(current
->audit_context
, GFP_KERNEL
,
863 AUDIT_NETFILTER_CFG
);
865 audit_log_format(ab
, "table=%s family=%u entries=%u",
866 table
->name
, table
->af
,
875 EXPORT_SYMBOL_GPL(xt_replace_table
);
877 struct xt_table
*xt_register_table(struct net
*net
,
878 const struct xt_table
*input_table
,
879 struct xt_table_info
*bootstrap
,
880 struct xt_table_info
*newinfo
)
883 struct xt_table_info
*private;
884 struct xt_table
*t
, *table
;
886 /* Don't add one object to multiple lists. */
887 table
= kmemdup(input_table
, sizeof(struct xt_table
), GFP_KERNEL
);
893 ret
= mutex_lock_interruptible(&xt
[table
->af
].mutex
);
897 /* Don't autoload: we'd eat our tail... */
898 list_for_each_entry(t
, &net
->xt
.tables
[table
->af
], list
) {
899 if (strcmp(t
->name
, table
->name
) == 0) {
905 /* Simplifies replace_table code. */
906 table
->private = bootstrap
;
908 if (!xt_replace_table(table
, 0, newinfo
, &ret
))
911 private = table
->private;
912 pr_debug("table->private->number = %u\n", private->number
);
914 /* save number of initial entries */
915 private->initial_entries
= private->number
;
917 list_add(&table
->list
, &net
->xt
.tables
[table
->af
]);
918 mutex_unlock(&xt
[table
->af
].mutex
);
922 mutex_unlock(&xt
[table
->af
].mutex
);
928 EXPORT_SYMBOL_GPL(xt_register_table
);
930 void *xt_unregister_table(struct xt_table
*table
)
932 struct xt_table_info
*private;
934 mutex_lock(&xt
[table
->af
].mutex
);
935 private = table
->private;
936 list_del(&table
->list
);
937 mutex_unlock(&xt
[table
->af
].mutex
);
942 EXPORT_SYMBOL_GPL(xt_unregister_table
);
944 #ifdef CONFIG_PROC_FS
945 struct xt_names_priv
{
946 struct seq_net_private p
;
949 static void *xt_table_seq_start(struct seq_file
*seq
, loff_t
*pos
)
951 struct xt_names_priv
*priv
= seq
->private;
952 struct net
*net
= seq_file_net(seq
);
953 u_int8_t af
= priv
->af
;
955 mutex_lock(&xt
[af
].mutex
);
956 return seq_list_start(&net
->xt
.tables
[af
], *pos
);
959 static void *xt_table_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
961 struct xt_names_priv
*priv
= seq
->private;
962 struct net
*net
= seq_file_net(seq
);
963 u_int8_t af
= priv
->af
;
965 return seq_list_next(v
, &net
->xt
.tables
[af
], pos
);
968 static void xt_table_seq_stop(struct seq_file
*seq
, void *v
)
970 struct xt_names_priv
*priv
= seq
->private;
971 u_int8_t af
= priv
->af
;
973 mutex_unlock(&xt
[af
].mutex
);
976 static int xt_table_seq_show(struct seq_file
*seq
, void *v
)
978 struct xt_table
*table
= list_entry(v
, struct xt_table
, list
);
980 if (strlen(table
->name
))
981 return seq_printf(seq
, "%s\n", table
->name
);
986 static const struct seq_operations xt_table_seq_ops
= {
987 .start
= xt_table_seq_start
,
988 .next
= xt_table_seq_next
,
989 .stop
= xt_table_seq_stop
,
990 .show
= xt_table_seq_show
,
993 static int xt_table_open(struct inode
*inode
, struct file
*file
)
996 struct xt_names_priv
*priv
;
998 ret
= seq_open_net(inode
, file
, &xt_table_seq_ops
,
999 sizeof(struct xt_names_priv
));
1001 priv
= ((struct seq_file
*)file
->private_data
)->private;
1002 priv
->af
= (unsigned long)PDE(inode
)->data
;
1007 static const struct file_operations xt_table_ops
= {
1008 .owner
= THIS_MODULE
,
1009 .open
= xt_table_open
,
1011 .llseek
= seq_lseek
,
1012 .release
= seq_release_net
,
1016 * Traverse state for ip{,6}_{tables,matches} for helping crossing
1017 * the multi-AF mutexes.
1019 struct nf_mttg_trav
{
1020 struct list_head
*head
, *curr
;
1021 uint8_t class, nfproto
;
1026 MTTG_TRAV_NFP_UNSPEC
,
1031 static void *xt_mttg_seq_next(struct seq_file
*seq
, void *v
, loff_t
*ppos
,
1034 static const uint8_t next_class
[] = {
1035 [MTTG_TRAV_NFP_UNSPEC
] = MTTG_TRAV_NFP_SPEC
,
1036 [MTTG_TRAV_NFP_SPEC
] = MTTG_TRAV_DONE
,
1038 struct nf_mttg_trav
*trav
= seq
->private;
1040 switch (trav
->class) {
1041 case MTTG_TRAV_INIT
:
1042 trav
->class = MTTG_TRAV_NFP_UNSPEC
;
1043 mutex_lock(&xt
[NFPROTO_UNSPEC
].mutex
);
1044 trav
->head
= trav
->curr
= is_target
?
1045 &xt
[NFPROTO_UNSPEC
].target
: &xt
[NFPROTO_UNSPEC
].match
;
1047 case MTTG_TRAV_NFP_UNSPEC
:
1048 trav
->curr
= trav
->curr
->next
;
1049 if (trav
->curr
!= trav
->head
)
1051 mutex_unlock(&xt
[NFPROTO_UNSPEC
].mutex
);
1052 mutex_lock(&xt
[trav
->nfproto
].mutex
);
1053 trav
->head
= trav
->curr
= is_target
?
1054 &xt
[trav
->nfproto
].target
: &xt
[trav
->nfproto
].match
;
1055 trav
->class = next_class
[trav
->class];
1057 case MTTG_TRAV_NFP_SPEC
:
1058 trav
->curr
= trav
->curr
->next
;
1059 if (trav
->curr
!= trav
->head
)
1061 /* fallthru, _stop will unlock */
1071 static void *xt_mttg_seq_start(struct seq_file
*seq
, loff_t
*pos
,
1074 struct nf_mttg_trav
*trav
= seq
->private;
1077 trav
->class = MTTG_TRAV_INIT
;
1078 for (j
= 0; j
< *pos
; ++j
)
1079 if (xt_mttg_seq_next(seq
, NULL
, NULL
, is_target
) == NULL
)
1084 static void xt_mttg_seq_stop(struct seq_file
*seq
, void *v
)
1086 struct nf_mttg_trav
*trav
= seq
->private;
1088 switch (trav
->class) {
1089 case MTTG_TRAV_NFP_UNSPEC
:
1090 mutex_unlock(&xt
[NFPROTO_UNSPEC
].mutex
);
1092 case MTTG_TRAV_NFP_SPEC
:
1093 mutex_unlock(&xt
[trav
->nfproto
].mutex
);
1098 static void *xt_match_seq_start(struct seq_file
*seq
, loff_t
*pos
)
1100 return xt_mttg_seq_start(seq
, pos
, false);
1103 static void *xt_match_seq_next(struct seq_file
*seq
, void *v
, loff_t
*ppos
)
1105 return xt_mttg_seq_next(seq
, v
, ppos
, false);
1108 static int xt_match_seq_show(struct seq_file
*seq
, void *v
)
1110 const struct nf_mttg_trav
*trav
= seq
->private;
1111 const struct xt_match
*match
;
1113 switch (trav
->class) {
1114 case MTTG_TRAV_NFP_UNSPEC
:
1115 case MTTG_TRAV_NFP_SPEC
:
1116 if (trav
->curr
== trav
->head
)
1118 match
= list_entry(trav
->curr
, struct xt_match
, list
);
1119 return (*match
->name
== '\0') ? 0 :
1120 seq_printf(seq
, "%s\n", match
->name
);
1125 static const struct seq_operations xt_match_seq_ops
= {
1126 .start
= xt_match_seq_start
,
1127 .next
= xt_match_seq_next
,
1128 .stop
= xt_mttg_seq_stop
,
1129 .show
= xt_match_seq_show
,
1132 static int xt_match_open(struct inode
*inode
, struct file
*file
)
1134 struct seq_file
*seq
;
1135 struct nf_mttg_trav
*trav
;
1138 trav
= kmalloc(sizeof(*trav
), GFP_KERNEL
);
1142 ret
= seq_open(file
, &xt_match_seq_ops
);
1148 seq
= file
->private_data
;
1149 seq
->private = trav
;
1150 trav
->nfproto
= (unsigned long)PDE(inode
)->data
;
1154 static const struct file_operations xt_match_ops
= {
1155 .owner
= THIS_MODULE
,
1156 .open
= xt_match_open
,
1158 .llseek
= seq_lseek
,
1159 .release
= seq_release_private
,
1162 static void *xt_target_seq_start(struct seq_file
*seq
, loff_t
*pos
)
1164 return xt_mttg_seq_start(seq
, pos
, true);
1167 static void *xt_target_seq_next(struct seq_file
*seq
, void *v
, loff_t
*ppos
)
1169 return xt_mttg_seq_next(seq
, v
, ppos
, true);
1172 static int xt_target_seq_show(struct seq_file
*seq
, void *v
)
1174 const struct nf_mttg_trav
*trav
= seq
->private;
1175 const struct xt_target
*target
;
1177 switch (trav
->class) {
1178 case MTTG_TRAV_NFP_UNSPEC
:
1179 case MTTG_TRAV_NFP_SPEC
:
1180 if (trav
->curr
== trav
->head
)
1182 target
= list_entry(trav
->curr
, struct xt_target
, list
);
1183 return (*target
->name
== '\0') ? 0 :
1184 seq_printf(seq
, "%s\n", target
->name
);
1189 static const struct seq_operations xt_target_seq_ops
= {
1190 .start
= xt_target_seq_start
,
1191 .next
= xt_target_seq_next
,
1192 .stop
= xt_mttg_seq_stop
,
1193 .show
= xt_target_seq_show
,
1196 static int xt_target_open(struct inode
*inode
, struct file
*file
)
1198 struct seq_file
*seq
;
1199 struct nf_mttg_trav
*trav
;
1202 trav
= kmalloc(sizeof(*trav
), GFP_KERNEL
);
1206 ret
= seq_open(file
, &xt_target_seq_ops
);
1212 seq
= file
->private_data
;
1213 seq
->private = trav
;
1214 trav
->nfproto
= (unsigned long)PDE(inode
)->data
;
1218 static const struct file_operations xt_target_ops
= {
1219 .owner
= THIS_MODULE
,
1220 .open
= xt_target_open
,
1222 .llseek
= seq_lseek
,
1223 .release
= seq_release_private
,
1226 #define FORMAT_TABLES "_tables_names"
1227 #define FORMAT_MATCHES "_tables_matches"
1228 #define FORMAT_TARGETS "_tables_targets"
1230 #endif /* CONFIG_PROC_FS */
1233 * xt_hook_link - set up hooks for a new table
1234 * @table: table with metadata needed to set up hooks
1235 * @fn: Hook function
1237 * This function will take care of creating and registering the necessary
1238 * Netfilter hooks for XT tables.
1240 struct nf_hook_ops
*xt_hook_link(const struct xt_table
*table
, nf_hookfn
*fn
)
1242 unsigned int hook_mask
= table
->valid_hooks
;
1243 uint8_t i
, num_hooks
= hweight32(hook_mask
);
1245 struct nf_hook_ops
*ops
;
1248 ops
= kmalloc(sizeof(*ops
) * num_hooks
, GFP_KERNEL
);
1250 return ERR_PTR(-ENOMEM
);
1252 for (i
= 0, hooknum
= 0; i
< num_hooks
&& hook_mask
!= 0;
1253 hook_mask
>>= 1, ++hooknum
) {
1254 if (!(hook_mask
& 1))
1257 ops
[i
].owner
= table
->me
;
1258 ops
[i
].pf
= table
->af
;
1259 ops
[i
].hooknum
= hooknum
;
1260 ops
[i
].priority
= table
->priority
;
1264 ret
= nf_register_hooks(ops
, num_hooks
);
1267 return ERR_PTR(ret
);
1272 EXPORT_SYMBOL_GPL(xt_hook_link
);
1275 * xt_hook_unlink - remove hooks for a table
1276 * @ops: nf_hook_ops array as returned by nf_hook_link
1277 * @hook_mask: the very same mask that was passed to nf_hook_link
1279 void xt_hook_unlink(const struct xt_table
*table
, struct nf_hook_ops
*ops
)
1281 nf_unregister_hooks(ops
, hweight32(table
->valid_hooks
));
1284 EXPORT_SYMBOL_GPL(xt_hook_unlink
);
1286 int xt_proto_init(struct net
*net
, u_int8_t af
)
1288 #ifdef CONFIG_PROC_FS
1289 char buf
[XT_FUNCTION_MAXNAMELEN
];
1290 struct proc_dir_entry
*proc
;
1293 if (af
>= ARRAY_SIZE(xt_prefix
))
1297 #ifdef CONFIG_PROC_FS
1298 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1299 strlcat(buf
, FORMAT_TABLES
, sizeof(buf
));
1300 proc
= proc_create_data(buf
, 0440, net
->proc_net
, &xt_table_ops
,
1301 (void *)(unsigned long)af
);
1305 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1306 strlcat(buf
, FORMAT_MATCHES
, sizeof(buf
));
1307 proc
= proc_create_data(buf
, 0440, net
->proc_net
, &xt_match_ops
,
1308 (void *)(unsigned long)af
);
1310 goto out_remove_tables
;
1312 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1313 strlcat(buf
, FORMAT_TARGETS
, sizeof(buf
));
1314 proc
= proc_create_data(buf
, 0440, net
->proc_net
, &xt_target_ops
,
1315 (void *)(unsigned long)af
);
1317 goto out_remove_matches
;
1322 #ifdef CONFIG_PROC_FS
1324 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1325 strlcat(buf
, FORMAT_MATCHES
, sizeof(buf
));
1326 remove_proc_entry(buf
, net
->proc_net
);
1329 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1330 strlcat(buf
, FORMAT_TABLES
, sizeof(buf
));
1331 remove_proc_entry(buf
, net
->proc_net
);
1336 EXPORT_SYMBOL_GPL(xt_proto_init
);
1338 void xt_proto_fini(struct net
*net
, u_int8_t af
)
1340 #ifdef CONFIG_PROC_FS
1341 char buf
[XT_FUNCTION_MAXNAMELEN
];
1343 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1344 strlcat(buf
, FORMAT_TABLES
, sizeof(buf
));
1345 remove_proc_entry(buf
, net
->proc_net
);
1347 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1348 strlcat(buf
, FORMAT_TARGETS
, sizeof(buf
));
1349 remove_proc_entry(buf
, net
->proc_net
);
1351 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1352 strlcat(buf
, FORMAT_MATCHES
, sizeof(buf
));
1353 remove_proc_entry(buf
, net
->proc_net
);
1354 #endif /*CONFIG_PROC_FS*/
1356 EXPORT_SYMBOL_GPL(xt_proto_fini
);
1358 static int __net_init
xt_net_init(struct net
*net
)
1362 for (i
= 0; i
< NFPROTO_NUMPROTO
; i
++)
1363 INIT_LIST_HEAD(&net
->xt
.tables
[i
]);
1367 static struct pernet_operations xt_net_ops
= {
1368 .init
= xt_net_init
,
1371 static int __init
xt_init(void)
1376 for_each_possible_cpu(i
) {
1377 seqcount_init(&per_cpu(xt_recseq
, i
));
1380 xt
= kmalloc(sizeof(struct xt_af
) * NFPROTO_NUMPROTO
, GFP_KERNEL
);
1384 for (i
= 0; i
< NFPROTO_NUMPROTO
; i
++) {
1385 mutex_init(&xt
[i
].mutex
);
1386 #ifdef CONFIG_COMPAT
1387 mutex_init(&xt
[i
].compat_mutex
);
1388 xt
[i
].compat_tab
= NULL
;
1390 INIT_LIST_HEAD(&xt
[i
].target
);
1391 INIT_LIST_HEAD(&xt
[i
].match
);
1393 rv
= register_pernet_subsys(&xt_net_ops
);
1399 static void __exit
xt_fini(void)
1401 unregister_pernet_subsys(&xt_net_ops
);
1405 module_init(xt_init
);
1406 module_exit(xt_fini
);