blob: 36b72cafc2276899d5a296236a9c9dba34f9fc08 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This is the 1999 rewrite of IP Firewalling, aiming for kernel 2.3.x.
3 *
4 * Copyright (C) 1999 Paul `Rusty' Russell & Michael J. Neuling
5 * Copyright (C) 2000-2004 Netfilter Core Team <coreteam@netfilter.org>
6 *
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.
10 */
11
12#include <linux/module.h>
13#include <linux/moduleparam.h>
14#include <linux/netfilter_ipv6/ip6_tables.h>
15
16MODULE_LICENSE("GPL");
17MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
18MODULE_DESCRIPTION("ip6tables filter table");
19
Patrick McHardy6e23ae22007-11-19 18:53:30 -080020#define FILTER_VALID_HOOKS ((1 << NF_INET_LOCAL_IN) | \
21 (1 << NF_INET_FORWARD) | \
22 (1 << NF_INET_LOCAL_OUT))
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Jan Engelhardt35aad0f2009-08-24 14:56:30 +020024static const struct xt_table packet_filter = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 .name = "filter",
26 .valid_hooks = FILTER_VALID_HOOKS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 .me = THIS_MODULE,
Jan Engelhardtf88e6a82009-06-13 06:25:44 +020028 .af = NFPROTO_IPV6,
Jan Engelhardt2b95efe2009-06-17 13:57:48 +020029 .priority = NF_IP6_PRI_FILTER,
Linus Torvalds1da177e2005-04-16 15:20:36 -070030};
31
32/* The work comes in here from netfilter.c. */
33static unsigned int
Jan Engelhardt737535c2009-06-13 06:46:36 +020034ip6table_filter_hook(unsigned int hook, struct sk_buff *skb,
35 const struct net_device *in, const struct net_device *out,
36 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
Jan Engelhardt2b21e052009-06-13 06:57:10 +020038 const struct net *net = dev_net((in != NULL) ? in : out);
Jan Engelhardt737535c2009-06-13 06:46:36 +020039
Jan Engelhardt2b21e052009-06-13 06:57:10 +020040 return ip6t_do_table(skb, hook, in, out, net->ipv6.ip6table_filter);
Alexey Dobriyan43de9dfe2008-07-08 02:36:18 -070041}
42
Jan Engelhardt2b95efe2009-06-17 13:57:48 +020043static struct nf_hook_ops *filter_ops __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45/* Default to forward because I got too much mail already. */
46static int forward = NF_ACCEPT;
47module_param(forward, bool, 0000);
48
Alexey Dobriyan8280aa62008-01-31 04:04:13 -080049static int __net_init ip6table_filter_net_init(struct net *net)
50{
Jan Engelhardte3eaa992009-06-17 22:14:54 +020051 struct ip6t_replace *repl;
52
53 repl = ip6t_alloc_initial_table(&packet_filter);
54 if (repl == NULL)
55 return -ENOMEM;
56 /* Entry 1 is the FORWARD hook */
57 ((struct ip6t_standard *)repl->entries)[1].target.verdict =
58 -forward - 1;
59
Alexey Dobriyan8280aa62008-01-31 04:04:13 -080060 net->ipv6.ip6table_filter =
Jan Engelhardte3eaa992009-06-17 22:14:54 +020061 ip6t_register_table(net, &packet_filter, repl);
62 kfree(repl);
Alexey Dobriyan8280aa62008-01-31 04:04:13 -080063 if (IS_ERR(net->ipv6.ip6table_filter))
64 return PTR_ERR(net->ipv6.ip6table_filter);
65 return 0;
66}
67
68static void __net_exit ip6table_filter_net_exit(struct net *net)
69{
Alexey Dobriyanf54e9362010-01-18 08:25:47 +010070 ip6t_unregister_table(net, net->ipv6.ip6table_filter);
Alexey Dobriyan8280aa62008-01-31 04:04:13 -080071}
72
73static struct pernet_operations ip6table_filter_net_ops = {
74 .init = ip6table_filter_net_init,
75 .exit = ip6table_filter_net_exit,
76};
77
Andrew Morton65b4b4e2006-03-28 16:37:06 -080078static int __init ip6table_filter_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
80 int ret;
81
82 if (forward < 0 || forward > NF_MAX_VERDICT) {
83 printk("iptables forward must be 0 or 1\n");
84 return -EINVAL;
85 }
86
Alexey Dobriyan8280aa62008-01-31 04:04:13 -080087 ret = register_pernet_subsys(&ip6table_filter_net_ops);
88 if (ret < 0)
89 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91 /* Register hooks */
Jan Engelhardt2b95efe2009-06-17 13:57:48 +020092 filter_ops = xt_hook_link(&packet_filter, ip6table_filter_hook);
93 if (IS_ERR(filter_ops)) {
94 ret = PTR_ERR(filter_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 goto cleanup_table;
Jan Engelhardt2b95efe2009-06-17 13:57:48 +020096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 return ret;
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 cleanup_table:
Alexey Dobriyan8280aa62008-01-31 04:04:13 -0800101 unregister_pernet_subsys(&ip6table_filter_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 return ret;
103}
104
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800105static void __exit ip6table_filter_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
Jan Engelhardt2b95efe2009-06-17 13:57:48 +0200107 xt_hook_unlink(&packet_filter, filter_ops);
Alexey Dobriyan8280aa62008-01-31 04:04:13 -0800108 unregister_pernet_subsys(&ip6table_filter_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109}
110
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800111module_init(ip6table_filter_init);
112module_exit(ip6table_filter_fini);