2 * This is the 1999 rewrite of IP Firewalling, aiming for kernel 2.3.x.
4 * Copyright (C) 1999 Paul `Rusty' Russell & Michael J. Neuling
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/module.h>
13 #include <linux/moduleparam.h>
14 #include <linux/netfilter_ipv6/ip6_tables.h>
15 #include <linux/slab.h>
17 MODULE_LICENSE("GPL");
19 MODULE_DESCRIPTION("ip6tables filter table");
21 #define FILTER_VALID_HOOKS ((1 << NF_INET_LOCAL_IN) | \
22 (1 << NF_INET_FORWARD) | \
23 (1 << NF_INET_LOCAL_OUT))
25 static const struct xt_table packet_filter = {
27 .valid_hooks = FILTER_VALID_HOOKS,
30 .priority = NF_IP6_PRI_FILTER,
33 /* The work comes in here from netfilter.c. */
35 ip6table_filter_hook(const struct nf_hook_ops *ops, struct sk_buff *skb,
36 const struct net_device *in, const struct net_device *out,
37 int (*okfn)(struct sk_buff *))
39 const struct net *net = dev_net((in != NULL) ? in : out);
41 return ip6t_do_table(skb, ops->hooknum, in, out,
42 net->ipv6.ip6table_filter);
45 static struct nf_hook_ops *filter_ops __read_mostly;
47 /* Default to forward because I got too much mail already. */
48 static bool forward = true;
49 module_param(forward, bool, 0000);
51 static int __net_init ip6table_filter_net_init(struct net *net)
53 struct ip6t_replace *repl;
55 repl = ip6t_alloc_initial_table(&packet_filter);
58 /* Entry 1 is the FORWARD hook */
59 ((struct ip6t_standard *)repl->entries)[1].target.verdict =
60 forward ? -NF_ACCEPT - 1 : -NF_DROP - 1;
62 net->ipv6.ip6table_filter =
63 ip6t_register_table(net, &packet_filter, repl);
65 return PTR_ERR_OR_ZERO(net->ipv6.ip6table_filter);
68 static void __net_exit ip6table_filter_net_exit(struct net *net)
70 ip6t_unregister_table(net, net->ipv6.ip6table_filter);
73 static struct pernet_operations ip6table_filter_net_ops = {
74 .init = ip6table_filter_net_init,
75 .exit = ip6table_filter_net_exit,
78 static int __init ip6table_filter_init(void)
82 ret = register_pernet_subsys(&ip6table_filter_net_ops);
87 filter_ops = xt_hook_link(&packet_filter, ip6table_filter_hook);
88 if (IS_ERR(filter_ops)) {
89 ret = PTR_ERR(filter_ops);
96 unregister_pernet_subsys(&ip6table_filter_net_ops);
100 static void __exit ip6table_filter_fini(void)
102 xt_hook_unlink(&packet_filter, filter_ops);
103 unregister_pernet_subsys(&ip6table_filter_net_ops);
106 module_init(ip6table_filter_init);
107 module_exit(ip6table_filter_fini);