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.
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 <net/net_namespace.h>
27 #include <linux/netfilter/x_tables.h>
28 #include <linux/netfilter_arp.h>
31 MODULE_LICENSE("GPL");
32 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
33 MODULE_DESCRIPTION("{ip,ip6,arp,eb}_tables backend module");
35 #define SMP_ALIGN(x) (((x) + SMP_CACHE_BYTES-1) & ~(SMP_CACHE_BYTES-1))
38 struct compat_delta
*next
;
45 struct list_head match
;
46 struct list_head target
;
48 struct mutex compat_mutex
;
49 struct compat_delta
*compat_offsets
;
53 static struct xt_af
*xt
;
55 #ifdef DEBUG_IP_FIREWALL_USER
56 #define duprintf(format, args...) printk(format , ## args)
58 #define duprintf(format, args...)
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 /* 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
);
221 /* Find target, grabs ref. Returns ERR_PTR() on error. */
222 struct xt_target
*xt_find_target(u8 af
, const char *name
, u8 revision
)
227 if (mutex_lock_interruptible(&xt
[af
].mutex
) != 0)
228 return ERR_PTR(-EINTR
);
230 list_for_each_entry(t
, &xt
[af
].target
, list
) {
231 if (strcmp(t
->name
, name
) == 0) {
232 if (t
->revision
== revision
) {
233 if (try_module_get(t
->me
)) {
234 mutex_unlock(&xt
[af
].mutex
);
238 err
= -EPROTOTYPE
; /* Found something. */
241 mutex_unlock(&xt
[af
].mutex
);
243 if (af
!= NFPROTO_UNSPEC
)
244 /* Try searching again in the family-independent list */
245 return xt_find_target(NFPROTO_UNSPEC
, name
, revision
);
249 EXPORT_SYMBOL(xt_find_target
);
251 struct xt_target
*xt_request_find_target(u8 af
, const char *name
, u8 revision
)
253 struct xt_target
*target
;
255 target
= try_then_request_module(xt_find_target(af
, name
, revision
),
256 "%st_%s", xt_prefix
[af
], name
);
257 if (IS_ERR(target
) || !target
)
261 EXPORT_SYMBOL_GPL(xt_request_find_target
);
263 static int match_revfn(u8 af
, const char *name
, u8 revision
, int *bestp
)
265 const struct xt_match
*m
;
268 list_for_each_entry(m
, &xt
[af
].match
, list
) {
269 if (strcmp(m
->name
, name
) == 0) {
270 if (m
->revision
> *bestp
)
271 *bestp
= m
->revision
;
272 if (m
->revision
== revision
)
277 if (af
!= NFPROTO_UNSPEC
&& !have_rev
)
278 return match_revfn(NFPROTO_UNSPEC
, name
, revision
, bestp
);
283 static int target_revfn(u8 af
, const char *name
, u8 revision
, int *bestp
)
285 const struct xt_target
*t
;
288 list_for_each_entry(t
, &xt
[af
].target
, list
) {
289 if (strcmp(t
->name
, name
) == 0) {
290 if (t
->revision
> *bestp
)
291 *bestp
= t
->revision
;
292 if (t
->revision
== revision
)
297 if (af
!= NFPROTO_UNSPEC
&& !have_rev
)
298 return target_revfn(NFPROTO_UNSPEC
, name
, revision
, bestp
);
303 /* Returns true or false (if no such extension at all) */
304 int xt_find_revision(u8 af
, const char *name
, u8 revision
, int target
,
307 int have_rev
, best
= -1;
309 if (mutex_lock_interruptible(&xt
[af
].mutex
) != 0) {
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
);
332 static char *textify_hooks(char *buf
, size_t size
, unsigned int mask
)
334 static const char *const names
[] = {
335 "PREROUTING", "INPUT", "FORWARD",
336 "OUTPUT", "POSTROUTING", "BROUTING",
344 for (i
= 0; i
< ARRAY_SIZE(names
); ++i
) {
345 if (!(mask
& (1 << i
)))
347 res
= snprintf(p
, size
, "%s%s", np
? "/" : "", names
[i
]);
358 int xt_check_match(struct xt_mtchk_param
*par
,
359 unsigned int size
, u_int8_t proto
, bool inv_proto
)
361 if (XT_ALIGN(par
->match
->matchsize
) != size
&&
362 par
->match
->matchsize
!= -1) {
364 * ebt_among is exempt from centralized matchsize checking
365 * because it uses a dynamic-size data set.
367 pr_err("%s_tables: %s match: invalid size %Zu != %u\n",
368 xt_prefix
[par
->family
], par
->match
->name
,
369 XT_ALIGN(par
->match
->matchsize
), size
);
372 if (par
->match
->table
!= NULL
&&
373 strcmp(par
->match
->table
, par
->table
) != 0) {
374 pr_err("%s_tables: %s match: only valid in %s table, not %s\n",
375 xt_prefix
[par
->family
], par
->match
->name
,
376 par
->match
->table
, par
->table
);
379 if (par
->match
->hooks
&& (par
->hook_mask
& ~par
->match
->hooks
) != 0) {
380 char used
[64], allow
[64];
382 pr_err("%s_tables: %s match: used from hooks %s, but only "
384 xt_prefix
[par
->family
], par
->match
->name
,
385 textify_hooks(used
, sizeof(used
), par
->hook_mask
),
386 textify_hooks(allow
, sizeof(allow
), par
->match
->hooks
));
389 if (par
->match
->proto
&& (par
->match
->proto
!= proto
|| inv_proto
)) {
390 pr_err("%s_tables: %s match: only valid for protocol %u\n",
391 xt_prefix
[par
->family
], par
->match
->name
,
395 if (par
->match
->checkentry
!= NULL
&& !par
->match
->checkentry(par
))
399 EXPORT_SYMBOL_GPL(xt_check_match
);
402 int xt_compat_add_offset(u_int8_t af
, unsigned int offset
, short delta
)
404 struct compat_delta
*tmp
;
406 tmp
= kmalloc(sizeof(struct compat_delta
), GFP_KERNEL
);
410 tmp
->offset
= offset
;
413 if (xt
[af
].compat_offsets
) {
414 tmp
->next
= xt
[af
].compat_offsets
->next
;
415 xt
[af
].compat_offsets
->next
= tmp
;
417 xt
[af
].compat_offsets
= tmp
;
422 EXPORT_SYMBOL_GPL(xt_compat_add_offset
);
424 void xt_compat_flush_offsets(u_int8_t af
)
426 struct compat_delta
*tmp
, *next
;
428 if (xt
[af
].compat_offsets
) {
429 for (tmp
= xt
[af
].compat_offsets
; tmp
; tmp
= next
) {
433 xt
[af
].compat_offsets
= NULL
;
436 EXPORT_SYMBOL_GPL(xt_compat_flush_offsets
);
438 short xt_compat_calc_jump(u_int8_t af
, unsigned int offset
)
440 struct compat_delta
*tmp
;
443 for (tmp
= xt
[af
].compat_offsets
, delta
= 0; tmp
; tmp
= tmp
->next
)
444 if (tmp
->offset
< offset
)
448 EXPORT_SYMBOL_GPL(xt_compat_calc_jump
);
450 int xt_compat_match_offset(const struct xt_match
*match
)
452 u_int16_t csize
= match
->compatsize
? : match
->matchsize
;
453 return XT_ALIGN(match
->matchsize
) - COMPAT_XT_ALIGN(csize
);
455 EXPORT_SYMBOL_GPL(xt_compat_match_offset
);
457 int xt_compat_match_from_user(struct xt_entry_match
*m
, void **dstptr
,
460 const struct xt_match
*match
= m
->u
.kernel
.match
;
461 struct compat_xt_entry_match
*cm
= (struct compat_xt_entry_match
*)m
;
462 int pad
, off
= xt_compat_match_offset(match
);
463 u_int16_t msize
= cm
->u
.user
.match_size
;
466 memcpy(m
, cm
, sizeof(*cm
));
467 if (match
->compat_from_user
)
468 match
->compat_from_user(m
->data
, cm
->data
);
470 memcpy(m
->data
, cm
->data
, msize
- sizeof(*cm
));
471 pad
= XT_ALIGN(match
->matchsize
) - match
->matchsize
;
473 memset(m
->data
+ match
->matchsize
, 0, pad
);
476 m
->u
.user
.match_size
= msize
;
482 EXPORT_SYMBOL_GPL(xt_compat_match_from_user
);
484 int xt_compat_match_to_user(struct xt_entry_match
*m
, void __user
**dstptr
,
487 const struct xt_match
*match
= m
->u
.kernel
.match
;
488 struct compat_xt_entry_match __user
*cm
= *dstptr
;
489 int off
= xt_compat_match_offset(match
);
490 u_int16_t msize
= m
->u
.user
.match_size
- off
;
492 if (copy_to_user(cm
, m
, sizeof(*cm
)) ||
493 put_user(msize
, &cm
->u
.user
.match_size
) ||
494 copy_to_user(cm
->u
.user
.name
, m
->u
.kernel
.match
->name
,
495 strlen(m
->u
.kernel
.match
->name
) + 1))
498 if (match
->compat_to_user
) {
499 if (match
->compat_to_user((void __user
*)cm
->data
, m
->data
))
502 if (copy_to_user(cm
->data
, m
->data
, msize
- sizeof(*cm
)))
510 EXPORT_SYMBOL_GPL(xt_compat_match_to_user
);
511 #endif /* CONFIG_COMPAT */
513 int xt_check_target(struct xt_tgchk_param
*par
,
514 unsigned int size
, u_int8_t proto
, bool inv_proto
)
516 if (XT_ALIGN(par
->target
->targetsize
) != size
) {
517 pr_err("%s_tables: %s target: invalid size %Zu != %u\n",
518 xt_prefix
[par
->family
], par
->target
->name
,
519 XT_ALIGN(par
->target
->targetsize
), size
);
522 if (par
->target
->table
!= NULL
&&
523 strcmp(par
->target
->table
, par
->table
) != 0) {
524 pr_err("%s_tables: %s target: only valid in %s table, not %s\n",
525 xt_prefix
[par
->family
], par
->target
->name
,
526 par
->target
->table
, par
->table
);
529 if (par
->target
->hooks
&& (par
->hook_mask
& ~par
->target
->hooks
) != 0) {
530 char used
[64], allow
[64];
532 pr_err("%s_tables: %s target: used from hooks %s, but only "
534 xt_prefix
[par
->family
], par
->target
->name
,
535 textify_hooks(used
, sizeof(used
), par
->hook_mask
),
536 textify_hooks(allow
, sizeof(allow
), par
->target
->hooks
));
539 if (par
->target
->proto
&& (par
->target
->proto
!= proto
|| inv_proto
)) {
540 pr_err("%s_tables: %s target: only valid for protocol %u\n",
541 xt_prefix
[par
->family
], par
->target
->name
,
545 if (par
->target
->checkentry
!= NULL
&& !par
->target
->checkentry(par
))
549 EXPORT_SYMBOL_GPL(xt_check_target
);
552 int xt_compat_target_offset(const struct xt_target
*target
)
554 u_int16_t csize
= target
->compatsize
? : target
->targetsize
;
555 return XT_ALIGN(target
->targetsize
) - COMPAT_XT_ALIGN(csize
);
557 EXPORT_SYMBOL_GPL(xt_compat_target_offset
);
559 void xt_compat_target_from_user(struct xt_entry_target
*t
, void **dstptr
,
562 const struct xt_target
*target
= t
->u
.kernel
.target
;
563 struct compat_xt_entry_target
*ct
= (struct compat_xt_entry_target
*)t
;
564 int pad
, off
= xt_compat_target_offset(target
);
565 u_int16_t tsize
= ct
->u
.user
.target_size
;
568 memcpy(t
, ct
, sizeof(*ct
));
569 if (target
->compat_from_user
)
570 target
->compat_from_user(t
->data
, ct
->data
);
572 memcpy(t
->data
, ct
->data
, tsize
- sizeof(*ct
));
573 pad
= XT_ALIGN(target
->targetsize
) - target
->targetsize
;
575 memset(t
->data
+ target
->targetsize
, 0, pad
);
578 t
->u
.user
.target_size
= tsize
;
583 EXPORT_SYMBOL_GPL(xt_compat_target_from_user
);
585 int xt_compat_target_to_user(struct xt_entry_target
*t
, void __user
**dstptr
,
588 const struct xt_target
*target
= t
->u
.kernel
.target
;
589 struct compat_xt_entry_target __user
*ct
= *dstptr
;
590 int off
= xt_compat_target_offset(target
);
591 u_int16_t tsize
= t
->u
.user
.target_size
- off
;
593 if (copy_to_user(ct
, t
, sizeof(*ct
)) ||
594 put_user(tsize
, &ct
->u
.user
.target_size
) ||
595 copy_to_user(ct
->u
.user
.name
, t
->u
.kernel
.target
->name
,
596 strlen(t
->u
.kernel
.target
->name
) + 1))
599 if (target
->compat_to_user
) {
600 if (target
->compat_to_user((void __user
*)ct
->data
, t
->data
))
603 if (copy_to_user(ct
->data
, t
->data
, tsize
- sizeof(*ct
)))
611 EXPORT_SYMBOL_GPL(xt_compat_target_to_user
);
614 struct xt_table_info
*xt_alloc_table_info(unsigned int size
)
616 struct xt_table_info
*newinfo
;
619 /* Pedantry: prevent them from hitting BUG() in vmalloc.c --RR */
620 if ((SMP_ALIGN(size
) >> PAGE_SHIFT
) + 2 > totalram_pages
)
623 newinfo
= kzalloc(XT_TABLE_INFO_SZ
, GFP_KERNEL
);
627 newinfo
->size
= size
;
629 for_each_possible_cpu(cpu
) {
630 if (size
<= PAGE_SIZE
)
631 newinfo
->entries
[cpu
] = kmalloc_node(size
,
635 newinfo
->entries
[cpu
] = vmalloc_node(size
,
638 if (newinfo
->entries
[cpu
] == NULL
) {
639 xt_free_table_info(newinfo
);
646 EXPORT_SYMBOL(xt_alloc_table_info
);
648 void xt_free_table_info(struct xt_table_info
*info
)
652 for_each_possible_cpu(cpu
) {
653 if (info
->size
<= PAGE_SIZE
)
654 kfree(info
->entries
[cpu
]);
656 vfree(info
->entries
[cpu
]);
660 EXPORT_SYMBOL(xt_free_table_info
);
662 /* Find table by name, grabs mutex & ref. Returns ERR_PTR() on error. */
663 struct xt_table
*xt_find_table_lock(struct net
*net
, u_int8_t af
,
668 if (mutex_lock_interruptible(&xt
[af
].mutex
) != 0)
669 return ERR_PTR(-EINTR
);
671 list_for_each_entry(t
, &net
->xt
.tables
[af
], list
)
672 if (strcmp(t
->name
, name
) == 0 && try_module_get(t
->me
))
674 mutex_unlock(&xt
[af
].mutex
);
677 EXPORT_SYMBOL_GPL(xt_find_table_lock
);
679 void xt_table_unlock(struct xt_table
*table
)
681 mutex_unlock(&xt
[table
->af
].mutex
);
683 EXPORT_SYMBOL_GPL(xt_table_unlock
);
686 void xt_compat_lock(u_int8_t af
)
688 mutex_lock(&xt
[af
].compat_mutex
);
690 EXPORT_SYMBOL_GPL(xt_compat_lock
);
692 void xt_compat_unlock(u_int8_t af
)
694 mutex_unlock(&xt
[af
].compat_mutex
);
696 EXPORT_SYMBOL_GPL(xt_compat_unlock
);
699 DEFINE_PER_CPU(struct xt_info_lock
, xt_info_locks
);
700 EXPORT_PER_CPU_SYMBOL_GPL(xt_info_locks
);
703 struct xt_table_info
*
704 xt_replace_table(struct xt_table
*table
,
705 unsigned int num_counters
,
706 struct xt_table_info
*newinfo
,
709 struct xt_table_info
*private;
711 /* Do the substitution. */
713 private = table
->private;
715 /* Check inside lock: is the old number correct? */
716 if (num_counters
!= private->number
) {
717 duprintf("num_counters != table->private->number (%u/%u)\n",
718 num_counters
, private->number
);
724 table
->private = newinfo
;
725 newinfo
->initial_entries
= private->initial_entries
;
728 * Even though table entries have now been swapped, other CPU's
729 * may still be using the old entries. This is okay, because
730 * resynchronization happens because of the locking done
731 * during the get_counters() routine.
737 EXPORT_SYMBOL_GPL(xt_replace_table
);
739 struct xt_table
*xt_register_table(struct net
*net
,
740 const struct xt_table
*input_table
,
741 struct xt_table_info
*bootstrap
,
742 struct xt_table_info
*newinfo
)
745 struct xt_table_info
*private;
746 struct xt_table
*t
, *table
;
748 /* Don't add one object to multiple lists. */
749 table
= kmemdup(input_table
, sizeof(struct xt_table
), GFP_KERNEL
);
755 ret
= mutex_lock_interruptible(&xt
[table
->af
].mutex
);
759 /* Don't autoload: we'd eat our tail... */
760 list_for_each_entry(t
, &net
->xt
.tables
[table
->af
], list
) {
761 if (strcmp(t
->name
, table
->name
) == 0) {
767 /* Simplifies replace_table code. */
768 table
->private = bootstrap
;
770 if (!xt_replace_table(table
, 0, newinfo
, &ret
))
773 private = table
->private;
774 duprintf("table->private->number = %u\n", private->number
);
776 /* save number of initial entries */
777 private->initial_entries
= private->number
;
779 list_add(&table
->list
, &net
->xt
.tables
[table
->af
]);
780 mutex_unlock(&xt
[table
->af
].mutex
);
784 mutex_unlock(&xt
[table
->af
].mutex
);
790 EXPORT_SYMBOL_GPL(xt_register_table
);
792 void *xt_unregister_table(struct xt_table
*table
)
794 struct xt_table_info
*private;
796 mutex_lock(&xt
[table
->af
].mutex
);
797 private = table
->private;
798 list_del(&table
->list
);
799 mutex_unlock(&xt
[table
->af
].mutex
);
804 EXPORT_SYMBOL_GPL(xt_unregister_table
);
806 #ifdef CONFIG_PROC_FS
807 struct xt_names_priv
{
808 struct seq_net_private p
;
811 static void *xt_table_seq_start(struct seq_file
*seq
, loff_t
*pos
)
813 struct xt_names_priv
*priv
= seq
->private;
814 struct net
*net
= seq_file_net(seq
);
815 u_int8_t af
= priv
->af
;
817 mutex_lock(&xt
[af
].mutex
);
818 return seq_list_start(&net
->xt
.tables
[af
], *pos
);
821 static void *xt_table_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
823 struct xt_names_priv
*priv
= seq
->private;
824 struct net
*net
= seq_file_net(seq
);
825 u_int8_t af
= priv
->af
;
827 return seq_list_next(v
, &net
->xt
.tables
[af
], pos
);
830 static void xt_table_seq_stop(struct seq_file
*seq
, void *v
)
832 struct xt_names_priv
*priv
= seq
->private;
833 u_int8_t af
= priv
->af
;
835 mutex_unlock(&xt
[af
].mutex
);
838 static int xt_table_seq_show(struct seq_file
*seq
, void *v
)
840 struct xt_table
*table
= list_entry(v
, struct xt_table
, list
);
842 if (strlen(table
->name
))
843 return seq_printf(seq
, "%s\n", table
->name
);
848 static const struct seq_operations xt_table_seq_ops
= {
849 .start
= xt_table_seq_start
,
850 .next
= xt_table_seq_next
,
851 .stop
= xt_table_seq_stop
,
852 .show
= xt_table_seq_show
,
855 static int xt_table_open(struct inode
*inode
, struct file
*file
)
858 struct xt_names_priv
*priv
;
860 ret
= seq_open_net(inode
, file
, &xt_table_seq_ops
,
861 sizeof(struct xt_names_priv
));
863 priv
= ((struct seq_file
*)file
->private_data
)->private;
864 priv
->af
= (unsigned long)PDE(inode
)->data
;
869 static const struct file_operations xt_table_ops
= {
870 .owner
= THIS_MODULE
,
871 .open
= xt_table_open
,
874 .release
= seq_release_net
,
878 * Traverse state for ip{,6}_{tables,matches} for helping crossing
879 * the multi-AF mutexes.
881 struct nf_mttg_trav
{
882 struct list_head
*head
, *curr
;
883 uint8_t class, nfproto
;
888 MTTG_TRAV_NFP_UNSPEC
,
893 static void *xt_mttg_seq_next(struct seq_file
*seq
, void *v
, loff_t
*ppos
,
896 static const uint8_t next_class
[] = {
897 [MTTG_TRAV_NFP_UNSPEC
] = MTTG_TRAV_NFP_SPEC
,
898 [MTTG_TRAV_NFP_SPEC
] = MTTG_TRAV_DONE
,
900 struct nf_mttg_trav
*trav
= seq
->private;
902 switch (trav
->class) {
904 trav
->class = MTTG_TRAV_NFP_UNSPEC
;
905 mutex_lock(&xt
[NFPROTO_UNSPEC
].mutex
);
906 trav
->head
= trav
->curr
= is_target
?
907 &xt
[NFPROTO_UNSPEC
].target
: &xt
[NFPROTO_UNSPEC
].match
;
909 case MTTG_TRAV_NFP_UNSPEC
:
910 trav
->curr
= trav
->curr
->next
;
911 if (trav
->curr
!= trav
->head
)
913 mutex_unlock(&xt
[NFPROTO_UNSPEC
].mutex
);
914 mutex_lock(&xt
[trav
->nfproto
].mutex
);
915 trav
->head
= trav
->curr
= is_target
?
916 &xt
[trav
->nfproto
].target
: &xt
[trav
->nfproto
].match
;
917 trav
->class = next_class
[trav
->class];
919 case MTTG_TRAV_NFP_SPEC
:
920 trav
->curr
= trav
->curr
->next
;
921 if (trav
->curr
!= trav
->head
)
923 /* fallthru, _stop will unlock */
933 static void *xt_mttg_seq_start(struct seq_file
*seq
, loff_t
*pos
,
936 struct nf_mttg_trav
*trav
= seq
->private;
939 trav
->class = MTTG_TRAV_INIT
;
940 for (j
= 0; j
< *pos
; ++j
)
941 if (xt_mttg_seq_next(seq
, NULL
, NULL
, is_target
) == NULL
)
946 static void xt_mttg_seq_stop(struct seq_file
*seq
, void *v
)
948 struct nf_mttg_trav
*trav
= seq
->private;
950 switch (trav
->class) {
951 case MTTG_TRAV_NFP_UNSPEC
:
952 mutex_unlock(&xt
[NFPROTO_UNSPEC
].mutex
);
954 case MTTG_TRAV_NFP_SPEC
:
955 mutex_unlock(&xt
[trav
->nfproto
].mutex
);
960 static void *xt_match_seq_start(struct seq_file
*seq
, loff_t
*pos
)
962 return xt_mttg_seq_start(seq
, pos
, false);
965 static void *xt_match_seq_next(struct seq_file
*seq
, void *v
, loff_t
*ppos
)
967 return xt_mttg_seq_next(seq
, v
, ppos
, false);
970 static int xt_match_seq_show(struct seq_file
*seq
, void *v
)
972 const struct nf_mttg_trav
*trav
= seq
->private;
973 const struct xt_match
*match
;
975 switch (trav
->class) {
976 case MTTG_TRAV_NFP_UNSPEC
:
977 case MTTG_TRAV_NFP_SPEC
:
978 if (trav
->curr
== trav
->head
)
980 match
= list_entry(trav
->curr
, struct xt_match
, list
);
981 return (*match
->name
== '\0') ? 0 :
982 seq_printf(seq
, "%s\n", match
->name
);
987 static const struct seq_operations xt_match_seq_ops
= {
988 .start
= xt_match_seq_start
,
989 .next
= xt_match_seq_next
,
990 .stop
= xt_mttg_seq_stop
,
991 .show
= xt_match_seq_show
,
994 static int xt_match_open(struct inode
*inode
, struct file
*file
)
996 struct seq_file
*seq
;
997 struct nf_mttg_trav
*trav
;
1000 trav
= kmalloc(sizeof(*trav
), GFP_KERNEL
);
1004 ret
= seq_open(file
, &xt_match_seq_ops
);
1010 seq
= file
->private_data
;
1011 seq
->private = trav
;
1012 trav
->nfproto
= (unsigned long)PDE(inode
)->data
;
1016 static const struct file_operations xt_match_ops
= {
1017 .owner
= THIS_MODULE
,
1018 .open
= xt_match_open
,
1020 .llseek
= seq_lseek
,
1021 .release
= seq_release_private
,
1024 static void *xt_target_seq_start(struct seq_file
*seq
, loff_t
*pos
)
1026 return xt_mttg_seq_start(seq
, pos
, true);
1029 static void *xt_target_seq_next(struct seq_file
*seq
, void *v
, loff_t
*ppos
)
1031 return xt_mttg_seq_next(seq
, v
, ppos
, true);
1034 static int xt_target_seq_show(struct seq_file
*seq
, void *v
)
1036 const struct nf_mttg_trav
*trav
= seq
->private;
1037 const struct xt_target
*target
;
1039 switch (trav
->class) {
1040 case MTTG_TRAV_NFP_UNSPEC
:
1041 case MTTG_TRAV_NFP_SPEC
:
1042 if (trav
->curr
== trav
->head
)
1044 target
= list_entry(trav
->curr
, struct xt_target
, list
);
1045 return (*target
->name
== '\0') ? 0 :
1046 seq_printf(seq
, "%s\n", target
->name
);
1051 static const struct seq_operations xt_target_seq_ops
= {
1052 .start
= xt_target_seq_start
,
1053 .next
= xt_target_seq_next
,
1054 .stop
= xt_mttg_seq_stop
,
1055 .show
= xt_target_seq_show
,
1058 static int xt_target_open(struct inode
*inode
, struct file
*file
)
1060 struct seq_file
*seq
;
1061 struct nf_mttg_trav
*trav
;
1064 trav
= kmalloc(sizeof(*trav
), GFP_KERNEL
);
1068 ret
= seq_open(file
, &xt_target_seq_ops
);
1074 seq
= file
->private_data
;
1075 seq
->private = trav
;
1076 trav
->nfproto
= (unsigned long)PDE(inode
)->data
;
1080 static const struct file_operations xt_target_ops
= {
1081 .owner
= THIS_MODULE
,
1082 .open
= xt_target_open
,
1084 .llseek
= seq_lseek
,
1085 .release
= seq_release_private
,
1088 #define FORMAT_TABLES "_tables_names"
1089 #define FORMAT_MATCHES "_tables_matches"
1090 #define FORMAT_TARGETS "_tables_targets"
1092 #endif /* CONFIG_PROC_FS */
1094 int xt_proto_init(struct net
*net
, u_int8_t af
)
1096 #ifdef CONFIG_PROC_FS
1097 char buf
[XT_FUNCTION_MAXNAMELEN
];
1098 struct proc_dir_entry
*proc
;
1101 if (af
>= ARRAY_SIZE(xt_prefix
))
1105 #ifdef CONFIG_PROC_FS
1106 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1107 strlcat(buf
, FORMAT_TABLES
, sizeof(buf
));
1108 proc
= proc_create_data(buf
, 0440, net
->proc_net
, &xt_table_ops
,
1109 (void *)(unsigned long)af
);
1113 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1114 strlcat(buf
, FORMAT_MATCHES
, sizeof(buf
));
1115 proc
= proc_create_data(buf
, 0440, net
->proc_net
, &xt_match_ops
,
1116 (void *)(unsigned long)af
);
1118 goto out_remove_tables
;
1120 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1121 strlcat(buf
, FORMAT_TARGETS
, sizeof(buf
));
1122 proc
= proc_create_data(buf
, 0440, net
->proc_net
, &xt_target_ops
,
1123 (void *)(unsigned long)af
);
1125 goto out_remove_matches
;
1130 #ifdef CONFIG_PROC_FS
1132 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1133 strlcat(buf
, FORMAT_MATCHES
, sizeof(buf
));
1134 proc_net_remove(net
, buf
);
1137 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1138 strlcat(buf
, FORMAT_TABLES
, sizeof(buf
));
1139 proc_net_remove(net
, buf
);
1144 EXPORT_SYMBOL_GPL(xt_proto_init
);
1146 void xt_proto_fini(struct net
*net
, u_int8_t af
)
1148 #ifdef CONFIG_PROC_FS
1149 char buf
[XT_FUNCTION_MAXNAMELEN
];
1151 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1152 strlcat(buf
, FORMAT_TABLES
, sizeof(buf
));
1153 proc_net_remove(net
, buf
);
1155 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1156 strlcat(buf
, FORMAT_TARGETS
, sizeof(buf
));
1157 proc_net_remove(net
, buf
);
1159 strlcpy(buf
, xt_prefix
[af
], sizeof(buf
));
1160 strlcat(buf
, FORMAT_MATCHES
, sizeof(buf
));
1161 proc_net_remove(net
, buf
);
1162 #endif /*CONFIG_PROC_FS*/
1164 EXPORT_SYMBOL_GPL(xt_proto_fini
);
1166 static int __net_init
xt_net_init(struct net
*net
)
1170 for (i
= 0; i
< NFPROTO_NUMPROTO
; i
++)
1171 INIT_LIST_HEAD(&net
->xt
.tables
[i
]);
1175 static struct pernet_operations xt_net_ops
= {
1176 .init
= xt_net_init
,
1179 static int __init
xt_init(void)
1184 for_each_possible_cpu(i
) {
1185 struct xt_info_lock
*lock
= &per_cpu(xt_info_locks
, i
);
1186 spin_lock_init(&lock
->lock
);
1190 xt
= kmalloc(sizeof(struct xt_af
) * NFPROTO_NUMPROTO
, GFP_KERNEL
);
1194 for (i
= 0; i
< NFPROTO_NUMPROTO
; i
++) {
1195 mutex_init(&xt
[i
].mutex
);
1196 #ifdef CONFIG_COMPAT
1197 mutex_init(&xt
[i
].compat_mutex
);
1198 xt
[i
].compat_offsets
= NULL
;
1200 INIT_LIST_HEAD(&xt
[i
].target
);
1201 INIT_LIST_HEAD(&xt
[i
].match
);
1203 rv
= register_pernet_subsys(&xt_net_ops
);
1209 static void __exit
xt_fini(void)
1211 unregister_pernet_subsys(&xt_net_ops
);
1215 module_init(xt_init
);
1216 module_exit(xt_fini
);