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)
279 static int target_revfn(u8 af, const char *name, u8 revision, int *bestp)
281 const struct xt_target *t;
284 list_for_each_entry(t, &xt[af].target, list) {
285 if (strcmp(t->name, name) == 0) {
286 if (t->revision > *bestp)
287 *bestp = t->revision;
288 if (t->revision == revision)
295 /* Returns true or false (if no such extension at all) */
296 int xt_find_revision(u8 af, const char *name, u8 revision, int target,
299 int have_rev, best = -1;
301 if (mutex_lock_interruptible(&xt[af].mutex) != 0) {
306 have_rev = target_revfn(af, name, revision, &best);
308 have_rev = match_revfn(af, name, revision, &best);
309 mutex_unlock(&xt[af].mutex);
311 /* Nothing at all? Return 0 to try loading module. */
319 *err = -EPROTONOSUPPORT;
322 EXPORT_SYMBOL_GPL(xt_find_revision);
324 int xt_check_match(struct xt_mtchk_param *par,
325 unsigned int size, u_int8_t proto, bool inv_proto)
327 if (XT_ALIGN(par->match->matchsize) != size &&
328 par->match->matchsize != -1) {
330 * ebt_among is exempt from centralized matchsize checking
331 * because it uses a dynamic-size data set.
333 printk("%s_tables: %s match: invalid size %Zu != %u\n",
334 xt_prefix[par->family], par->match->name,
335 XT_ALIGN(par->match->matchsize), size);
338 if (par->match->table != NULL &&
339 strcmp(par->match->table, par->table) != 0) {
340 printk("%s_tables: %s match: only valid in %s table, not %s\n",
341 xt_prefix[par->family], par->match->name,
342 par->match->table, par->table);
345 if (par->match->hooks && (par->hook_mask & ~par->match->hooks) != 0) {
346 printk("%s_tables: %s match: bad hook_mask %#x/%#x\n",
347 xt_prefix[par->family], par->match->name,
348 par->hook_mask, par->match->hooks);
351 if (par->match->proto && (par->match->proto != proto || inv_proto)) {
352 printk("%s_tables: %s match: only valid for protocol %u\n",
353 xt_prefix[par->family], par->match->name,
357 if (par->match->checkentry != NULL && !par->match->checkentry(par))
361 EXPORT_SYMBOL_GPL(xt_check_match);
364 int xt_compat_add_offset(u_int8_t af, unsigned int offset, short delta)
366 struct compat_delta *tmp;
368 tmp = kmalloc(sizeof(struct compat_delta), GFP_KERNEL);
372 tmp->offset = offset;
375 if (xt[af].compat_offsets) {
376 tmp->next = xt[af].compat_offsets->next;
377 xt[af].compat_offsets->next = tmp;
379 xt[af].compat_offsets = tmp;
384 EXPORT_SYMBOL_GPL(xt_compat_add_offset);
386 void xt_compat_flush_offsets(u_int8_t af)
388 struct compat_delta *tmp, *next;
390 if (xt[af].compat_offsets) {
391 for (tmp = xt[af].compat_offsets; tmp; tmp = next) {
395 xt[af].compat_offsets = NULL;
398 EXPORT_SYMBOL_GPL(xt_compat_flush_offsets);
400 short xt_compat_calc_jump(u_int8_t af, unsigned int offset)
402 struct compat_delta *tmp;
405 for (tmp = xt[af].compat_offsets, delta = 0; tmp; tmp = tmp->next)
406 if (tmp->offset < offset)
410 EXPORT_SYMBOL_GPL(xt_compat_calc_jump);
412 int xt_compat_match_offset(const struct xt_match *match)
414 u_int16_t csize = match->compatsize ? : match->matchsize;
415 return XT_ALIGN(match->matchsize) - COMPAT_XT_ALIGN(csize);
417 EXPORT_SYMBOL_GPL(xt_compat_match_offset);
419 int xt_compat_match_from_user(struct xt_entry_match *m, void **dstptr,
422 const struct xt_match *match = m->u.kernel.match;
423 struct compat_xt_entry_match *cm = (struct compat_xt_entry_match *)m;
424 int pad, off = xt_compat_match_offset(match);
425 u_int16_t msize = cm->u.user.match_size;
428 memcpy(m, cm, sizeof(*cm));
429 if (match->compat_from_user)
430 match->compat_from_user(m->data, cm->data);
432 memcpy(m->data, cm->data, msize - sizeof(*cm));
433 pad = XT_ALIGN(match->matchsize) - match->matchsize;
435 memset(m->data + match->matchsize, 0, pad);
438 m->u.user.match_size = msize;
444 EXPORT_SYMBOL_GPL(xt_compat_match_from_user);
446 int xt_compat_match_to_user(struct xt_entry_match *m, void __user **dstptr,
449 const struct xt_match *match = m->u.kernel.match;
450 struct compat_xt_entry_match __user *cm = *dstptr;
451 int off = xt_compat_match_offset(match);
452 u_int16_t msize = m->u.user.match_size - off;
454 if (copy_to_user(cm, m, sizeof(*cm)) ||
455 put_user(msize, &cm->u.user.match_size) ||
456 copy_to_user(cm->u.user.name, m->u.kernel.match->name,
457 strlen(m->u.kernel.match->name) + 1))
460 if (match->compat_to_user) {
461 if (match->compat_to_user((void __user *)cm->data, m->data))
464 if (copy_to_user(cm->data, m->data, msize - sizeof(*cm)))
472 EXPORT_SYMBOL_GPL(xt_compat_match_to_user);
473 #endif /* CONFIG_COMPAT */
475 int xt_check_target(struct xt_tgchk_param *par,
476 unsigned int size, u_int8_t proto, bool inv_proto)
478 if (XT_ALIGN(par->target->targetsize) != size) {
479 printk("%s_tables: %s target: invalid size %Zu != %u\n",
480 xt_prefix[par->family], par->target->name,
481 XT_ALIGN(par->target->targetsize), size);
484 if (par->target->table != NULL &&
485 strcmp(par->target->table, par->table) != 0) {
486 printk("%s_tables: %s target: only valid in %s table, not %s\n",
487 xt_prefix[par->family], par->target->name,
488 par->target->table, par->table);
491 if (par->target->hooks && (par->hook_mask & ~par->target->hooks) != 0) {
492 printk("%s_tables: %s target: bad hook_mask %#x/%#x\n",
493 xt_prefix[par->family], par->target->name,
494 par->hook_mask, par->target->hooks);
497 if (par->target->proto && (par->target->proto != proto || inv_proto)) {
498 printk("%s_tables: %s target: only valid for protocol %u\n",
499 xt_prefix[par->family], par->target->name,
503 if (par->target->checkentry != NULL && !par->target->checkentry(par))
507 EXPORT_SYMBOL_GPL(xt_check_target);
510 int xt_compat_target_offset(const struct xt_target *target)
512 u_int16_t csize = target->compatsize ? : target->targetsize;
513 return XT_ALIGN(target->targetsize) - COMPAT_XT_ALIGN(csize);
515 EXPORT_SYMBOL_GPL(xt_compat_target_offset);
517 void xt_compat_target_from_user(struct xt_entry_target *t, void **dstptr,
520 const struct xt_target *target = t->u.kernel.target;
521 struct compat_xt_entry_target *ct = (struct compat_xt_entry_target *)t;
522 int pad, off = xt_compat_target_offset(target);
523 u_int16_t tsize = ct->u.user.target_size;
526 memcpy(t, ct, sizeof(*ct));
527 if (target->compat_from_user)
528 target->compat_from_user(t->data, ct->data);
530 memcpy(t->data, ct->data, tsize - sizeof(*ct));
531 pad = XT_ALIGN(target->targetsize) - target->targetsize;
533 memset(t->data + target->targetsize, 0, pad);
536 t->u.user.target_size = tsize;
541 EXPORT_SYMBOL_GPL(xt_compat_target_from_user);
543 int xt_compat_target_to_user(struct xt_entry_target *t, void __user **dstptr,
546 const struct xt_target *target = t->u.kernel.target;
547 struct compat_xt_entry_target __user *ct = *dstptr;
548 int off = xt_compat_target_offset(target);
549 u_int16_t tsize = t->u.user.target_size - off;
551 if (copy_to_user(ct, t, sizeof(*ct)) ||
552 put_user(tsize, &ct->u.user.target_size) ||
553 copy_to_user(ct->u.user.name, t->u.kernel.target->name,
554 strlen(t->u.kernel.target->name) + 1))
557 if (target->compat_to_user) {
558 if (target->compat_to_user((void __user *)ct->data, t->data))
561 if (copy_to_user(ct->data, t->data, tsize - sizeof(*ct)))
569 EXPORT_SYMBOL_GPL(xt_compat_target_to_user);
572 struct xt_table_info *xt_alloc_table_info(unsigned int size)
574 struct xt_table_info *newinfo;
577 /* Pedantry: prevent them from hitting BUG() in vmalloc.c --RR */
578 if ((SMP_ALIGN(size) >> PAGE_SHIFT) + 2 > num_physpages)
581 newinfo = kzalloc(XT_TABLE_INFO_SZ, GFP_KERNEL);
585 newinfo->size = size;
587 for_each_possible_cpu(cpu) {
588 if (size <= PAGE_SIZE)
589 newinfo->entries[cpu] = kmalloc_node(size,
593 newinfo->entries[cpu] = vmalloc_node(size,
596 if (newinfo->entries[cpu] == NULL) {
597 xt_free_table_info(newinfo);
604 EXPORT_SYMBOL(xt_alloc_table_info);
606 void xt_free_table_info(struct xt_table_info *info)
610 for_each_possible_cpu(cpu) {
611 if (info->size <= PAGE_SIZE)
612 kfree(info->entries[cpu]);
614 vfree(info->entries[cpu]);
618 EXPORT_SYMBOL(xt_free_table_info);
620 /* Find table by name, grabs mutex & ref. Returns ERR_PTR() on error. */
621 struct xt_table *xt_find_table_lock(struct net *net, u_int8_t af,
626 if (mutex_lock_interruptible(&xt[af].mutex) != 0)
627 return ERR_PTR(-EINTR);
629 list_for_each_entry(t, &net->xt.tables[af], list)
630 if (strcmp(t->name, name) == 0 && try_module_get(t->me))
632 mutex_unlock(&xt[af].mutex);
635 EXPORT_SYMBOL_GPL(xt_find_table_lock);
637 void xt_table_unlock(struct xt_table *table)
639 mutex_unlock(&xt[table->af].mutex);
641 EXPORT_SYMBOL_GPL(xt_table_unlock);
644 void xt_compat_lock(u_int8_t af)
646 mutex_lock(&xt[af].compat_mutex);
648 EXPORT_SYMBOL_GPL(xt_compat_lock);
650 void xt_compat_unlock(u_int8_t af)
652 mutex_unlock(&xt[af].compat_mutex);
654 EXPORT_SYMBOL_GPL(xt_compat_unlock);
657 struct xt_table_info *
658 xt_replace_table(struct xt_table *table,
659 unsigned int num_counters,
660 struct xt_table_info *newinfo,
663 struct xt_table_info *oldinfo, *private;
665 /* Do the substitution. */
666 write_lock_bh(&table->lock);
667 private = table->private;
668 /* Check inside lock: is the old number correct? */
669 if (num_counters != private->number) {
670 duprintf("num_counters != table->private->number (%u/%u)\n",
671 num_counters, private->number);
672 write_unlock_bh(&table->lock);
677 table->private = newinfo;
678 newinfo->initial_entries = oldinfo->initial_entries;
679 write_unlock_bh(&table->lock);
683 EXPORT_SYMBOL_GPL(xt_replace_table);
685 struct xt_table *xt_register_table(struct net *net, struct xt_table *table,
686 struct xt_table_info *bootstrap,
687 struct xt_table_info *newinfo)
690 struct xt_table_info *private;
693 /* Don't add one object to multiple lists. */
694 table = kmemdup(table, sizeof(struct xt_table), GFP_KERNEL);
700 ret = mutex_lock_interruptible(&xt[table->af].mutex);
704 /* Don't autoload: we'd eat our tail... */
705 list_for_each_entry(t, &net->xt.tables[table->af], list) {
706 if (strcmp(t->name, table->name) == 0) {
712 /* Simplifies replace_table code. */
713 table->private = bootstrap;
714 rwlock_init(&table->lock);
715 if (!xt_replace_table(table, 0, newinfo, &ret))
718 private = table->private;
719 duprintf("table->private->number = %u\n", private->number);
721 /* save number of initial entries */
722 private->initial_entries = private->number;
724 list_add(&table->list, &net->xt.tables[table->af]);
725 mutex_unlock(&xt[table->af].mutex);
729 mutex_unlock(&xt[table->af].mutex);
735 EXPORT_SYMBOL_GPL(xt_register_table);
737 void *xt_unregister_table(struct xt_table *table)
739 struct xt_table_info *private;
741 mutex_lock(&xt[table->af].mutex);
742 private = table->private;
743 list_del(&table->list);
744 mutex_unlock(&xt[table->af].mutex);
749 EXPORT_SYMBOL_GPL(xt_unregister_table);
751 #ifdef CONFIG_PROC_FS
752 struct xt_names_priv {
753 struct seq_net_private p;
756 static void *xt_table_seq_start(struct seq_file *seq, loff_t *pos)
758 struct xt_names_priv *priv = seq->private;
759 struct net *net = seq_file_net(seq);
760 u_int8_t af = priv->af;
762 mutex_lock(&xt[af].mutex);
763 return seq_list_start(&net->xt.tables[af], *pos);
766 static void *xt_table_seq_next(struct seq_file *seq, void *v, loff_t *pos)
768 struct xt_names_priv *priv = seq->private;
769 struct net *net = seq_file_net(seq);
770 u_int8_t af = priv->af;
772 return seq_list_next(v, &net->xt.tables[af], pos);
775 static void xt_table_seq_stop(struct seq_file *seq, void *v)
777 struct xt_names_priv *priv = seq->private;
778 u_int8_t af = priv->af;
780 mutex_unlock(&xt[af].mutex);
783 static int xt_table_seq_show(struct seq_file *seq, void *v)
785 struct xt_table *table = list_entry(v, struct xt_table, list);
787 if (strlen(table->name))
788 return seq_printf(seq, "%s\n", table->name);
793 static const struct seq_operations xt_table_seq_ops = {
794 .start = xt_table_seq_start,
795 .next = xt_table_seq_next,
796 .stop = xt_table_seq_stop,
797 .show = xt_table_seq_show,
800 static int xt_table_open(struct inode *inode, struct file *file)
803 struct xt_names_priv *priv;
805 ret = seq_open_net(inode, file, &xt_table_seq_ops,
806 sizeof(struct xt_names_priv));
808 priv = ((struct seq_file *)file->private_data)->private;
809 priv->af = (unsigned long)PDE(inode)->data;
814 static const struct file_operations xt_table_ops = {
815 .owner = THIS_MODULE,
816 .open = xt_table_open,
819 .release = seq_release_net,
822 static void *xt_match_seq_start(struct seq_file *seq, loff_t *pos)
824 struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private;
825 u_int16_t af = (unsigned long)pde->data;
827 mutex_lock(&xt[af].mutex);
828 return seq_list_start(&xt[af].match, *pos);
831 static void *xt_match_seq_next(struct seq_file *seq, void *v, loff_t *pos)
833 struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private;
834 u_int16_t af = (unsigned long)pde->data;
836 return seq_list_next(v, &xt[af].match, pos);
839 static void xt_match_seq_stop(struct seq_file *seq, void *v)
841 struct proc_dir_entry *pde = seq->private;
842 u_int16_t af = (unsigned long)pde->data;
844 mutex_unlock(&xt[af].mutex);
847 static int xt_match_seq_show(struct seq_file *seq, void *v)
849 struct xt_match *match = list_entry(v, struct xt_match, list);
851 if (strlen(match->name))
852 return seq_printf(seq, "%s\n", match->name);
857 static const struct seq_operations xt_match_seq_ops = {
858 .start = xt_match_seq_start,
859 .next = xt_match_seq_next,
860 .stop = xt_match_seq_stop,
861 .show = xt_match_seq_show,
864 static int xt_match_open(struct inode *inode, struct file *file)
868 ret = seq_open(file, &xt_match_seq_ops);
870 struct seq_file *seq = file->private_data;
872 seq->private = PDE(inode);
877 static const struct file_operations xt_match_ops = {
878 .owner = THIS_MODULE,
879 .open = xt_match_open,
882 .release = seq_release,
885 static void *xt_target_seq_start(struct seq_file *seq, loff_t *pos)
887 struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private;
888 u_int16_t af = (unsigned long)pde->data;
890 mutex_lock(&xt[af].mutex);
891 return seq_list_start(&xt[af].target, *pos);
894 static void *xt_target_seq_next(struct seq_file *seq, void *v, loff_t *pos)
896 struct proc_dir_entry *pde = (struct proc_dir_entry *)seq->private;
897 u_int16_t af = (unsigned long)pde->data;
899 return seq_list_next(v, &xt[af].target, pos);
902 static void xt_target_seq_stop(struct seq_file *seq, void *v)
904 struct proc_dir_entry *pde = seq->private;
905 u_int16_t af = (unsigned long)pde->data;
907 mutex_unlock(&xt[af].mutex);
910 static int xt_target_seq_show(struct seq_file *seq, void *v)
912 struct xt_target *target = list_entry(v, struct xt_target, list);
914 if (strlen(target->name))
915 return seq_printf(seq, "%s\n", target->name);
920 static const struct seq_operations xt_target_seq_ops = {
921 .start = xt_target_seq_start,
922 .next = xt_target_seq_next,
923 .stop = xt_target_seq_stop,
924 .show = xt_target_seq_show,
927 static int xt_target_open(struct inode *inode, struct file *file)
931 ret = seq_open(file, &xt_target_seq_ops);
933 struct seq_file *seq = file->private_data;
935 seq->private = PDE(inode);
940 static const struct file_operations xt_target_ops = {
941 .owner = THIS_MODULE,
942 .open = xt_target_open,
945 .release = seq_release,
948 #define FORMAT_TABLES "_tables_names"
949 #define FORMAT_MATCHES "_tables_matches"
950 #define FORMAT_TARGETS "_tables_targets"
952 #endif /* CONFIG_PROC_FS */
954 int xt_proto_init(struct net *net, u_int8_t af)
956 #ifdef CONFIG_PROC_FS
957 char buf[XT_FUNCTION_MAXNAMELEN];
958 struct proc_dir_entry *proc;
961 if (af >= ARRAY_SIZE(xt_prefix))
965 #ifdef CONFIG_PROC_FS
966 strlcpy(buf, xt_prefix[af], sizeof(buf));
967 strlcat(buf, FORMAT_TABLES, sizeof(buf));
968 proc = proc_create_data(buf, 0440, net->proc_net, &xt_table_ops,
969 (void *)(unsigned long)af);
973 strlcpy(buf, xt_prefix[af], sizeof(buf));
974 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
975 proc = proc_create_data(buf, 0440, net->proc_net, &xt_match_ops,
976 (void *)(unsigned long)af);
978 goto out_remove_tables;
980 strlcpy(buf, xt_prefix[af], sizeof(buf));
981 strlcat(buf, FORMAT_TARGETS, sizeof(buf));
982 proc = proc_create_data(buf, 0440, net->proc_net, &xt_target_ops,
983 (void *)(unsigned long)af);
985 goto out_remove_matches;
990 #ifdef CONFIG_PROC_FS
992 strlcpy(buf, xt_prefix[af], sizeof(buf));
993 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
994 proc_net_remove(net, buf);
997 strlcpy(buf, xt_prefix[af], sizeof(buf));
998 strlcat(buf, FORMAT_TABLES, sizeof(buf));
999 proc_net_remove(net, buf);
1004 EXPORT_SYMBOL_GPL(xt_proto_init);
1006 void xt_proto_fini(struct net *net, u_int8_t af)
1008 #ifdef CONFIG_PROC_FS
1009 char buf[XT_FUNCTION_MAXNAMELEN];
1011 strlcpy(buf, xt_prefix[af], sizeof(buf));
1012 strlcat(buf, FORMAT_TABLES, sizeof(buf));
1013 proc_net_remove(net, buf);
1015 strlcpy(buf, xt_prefix[af], sizeof(buf));
1016 strlcat(buf, FORMAT_TARGETS, sizeof(buf));
1017 proc_net_remove(net, buf);
1019 strlcpy(buf, xt_prefix[af], sizeof(buf));
1020 strlcat(buf, FORMAT_MATCHES, sizeof(buf));
1021 proc_net_remove(net, buf);
1022 #endif /*CONFIG_PROC_FS*/
1024 EXPORT_SYMBOL_GPL(xt_proto_fini);
1026 static int __net_init xt_net_init(struct net *net)
1030 for (i = 0; i < NFPROTO_NUMPROTO; i++)
1031 INIT_LIST_HEAD(&net->xt.tables[i]);
1035 static struct pernet_operations xt_net_ops = {
1036 .init = xt_net_init,
1039 static int __init xt_init(void)
1043 xt = kmalloc(sizeof(struct xt_af) * NFPROTO_NUMPROTO, GFP_KERNEL);
1047 for (i = 0; i < NFPROTO_NUMPROTO; i++) {
1048 mutex_init(&xt[i].mutex);
1049 #ifdef CONFIG_COMPAT
1050 mutex_init(&xt[i].compat_mutex);
1051 xt[i].compat_offsets = NULL;
1053 INIT_LIST_HEAD(&xt[i].target);
1054 INIT_LIST_HEAD(&xt[i].match);
1056 rv = register_pernet_subsys(&xt_net_ops);
1062 static void __exit xt_fini(void)
1064 unregister_pernet_subsys(&xt_net_ops);
1068 module_init(xt_init);
1069 module_exit(xt_fini);