blob: 1343077dde938f29cb6262937c8587d2ed640b69 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17MODULE_LICENSE("GPL");
18MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
19MODULE_DESCRIPTION("ip6tables filter table");
20
Patrick McHardy6e23ae22007-11-19 18:53:30 -080021#define FILTER_VALID_HOOKS ((1 << NF_INET_LOCAL_IN) | \
22 (1 << NF_INET_FORWARD) | \
23 (1 << NF_INET_LOCAL_OUT))
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Florian Westphalb9e69e12016-02-25 10:08:36 +010025static int __net_init ip6table_filter_table_init(struct net *net);
26
Jan Engelhardt35aad0f2009-08-24 14:56:30 +020027static const struct xt_table packet_filter = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 .name = "filter",
29 .valid_hooks = FILTER_VALID_HOOKS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 .me = THIS_MODULE,
Jan Engelhardtf88e6a82009-06-13 06:25:44 +020031 .af = NFPROTO_IPV6,
Jan Engelhardt2b95efe2009-06-17 13:57:48 +020032 .priority = NF_IP6_PRI_FILTER,
Florian Westphalb9e69e12016-02-25 10:08:36 +010033 .table_init = ip6table_filter_table_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -070034};
35
36/* The work comes in here from netfilter.c. */
37static unsigned int
Eric W. Biederman06198b32015-09-18 14:33:06 -050038ip6table_filter_hook(void *priv, struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -040039 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040{
Eric W. Biederman6cb8ff3f12015-09-18 14:32:55 -050041 return ip6t_do_table(skb, state, state->net->ipv6.ip6table_filter);
Alexey Dobriyan43de9dfe2008-07-08 02:36:18 -070042}
43
Jan Engelhardt2b95efe2009-06-17 13:57:48 +020044static struct nf_hook_ops *filter_ops __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46/* Default to forward because I got too much mail already. */
Rusty Russell523f6102012-03-22 12:27:06 +000047static bool forward = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048module_param(forward, bool, 0000);
49
Florian Westphalb9e69e12016-02-25 10:08:36 +010050static int __net_init ip6table_filter_table_init(struct net *net)
Alexey Dobriyan8280aa62008-01-31 04:04:13 -080051{
Jan Engelhardte3eaa992009-06-17 22:14:54 +020052 struct ip6t_replace *repl;
Florian Westphala67dd262016-02-25 10:08:35 +010053 int err;
Jan Engelhardte3eaa992009-06-17 22:14:54 +020054
Florian Westphalb9e69e12016-02-25 10:08:36 +010055 if (net->ipv6.ip6table_filter)
56 return 0;
57
Jan Engelhardte3eaa992009-06-17 22:14:54 +020058 repl = ip6t_alloc_initial_table(&packet_filter);
59 if (repl == NULL)
60 return -ENOMEM;
61 /* Entry 1 is the FORWARD hook */
62 ((struct ip6t_standard *)repl->entries)[1].target.verdict =
Rusty Russell523f6102012-03-22 12:27:06 +000063 forward ? -NF_ACCEPT - 1 : -NF_DROP - 1;
Jan Engelhardte3eaa992009-06-17 22:14:54 +020064
Florian Westphala67dd262016-02-25 10:08:35 +010065 err = ip6t_register_table(net, &packet_filter, repl, filter_ops,
66 &net->ipv6.ip6table_filter);
Jan Engelhardte3eaa992009-06-17 22:14:54 +020067 kfree(repl);
Florian Westphala67dd262016-02-25 10:08:35 +010068 return err;
Alexey Dobriyan8280aa62008-01-31 04:04:13 -080069}
70
Florian Westphalb9e69e12016-02-25 10:08:36 +010071static int __net_init ip6table_filter_net_init(struct net *net)
72{
73 if (net == &init_net || !forward)
74 return ip6table_filter_table_init(net);
75
76 return 0;
77}
78
Alexey Dobriyan8280aa62008-01-31 04:04:13 -080079static void __net_exit ip6table_filter_net_exit(struct net *net)
80{
Florian Westphalb9e69e12016-02-25 10:08:36 +010081 if (!net->ipv6.ip6table_filter)
82 return;
Florian Westphala67dd262016-02-25 10:08:35 +010083 ip6t_unregister_table(net, net->ipv6.ip6table_filter, filter_ops);
Florian Westphalb9e69e12016-02-25 10:08:36 +010084 net->ipv6.ip6table_filter = NULL;
Alexey Dobriyan8280aa62008-01-31 04:04:13 -080085}
86
87static struct pernet_operations ip6table_filter_net_ops = {
88 .init = ip6table_filter_net_init,
89 .exit = ip6table_filter_net_exit,
90};
91
Andrew Morton65b4b4e2006-03-28 16:37:06 -080092static int __init ip6table_filter_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
94 int ret;
95
Florian Westphalb9e69e12016-02-25 10:08:36 +010096 filter_ops = xt_hook_ops_alloc(&packet_filter, ip6table_filter_hook);
97 if (IS_ERR(filter_ops))
98 return PTR_ERR(filter_ops);
99
Alexey Dobriyan8280aa62008-01-31 04:04:13 -0800100 ret = register_pernet_subsys(&ip6table_filter_net_ops);
101 if (ret < 0)
Florian Westphalb9e69e12016-02-25 10:08:36 +0100102 kfree(filter_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return ret;
105}
106
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800107static void __exit ip6table_filter_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
Alexey Dobriyan8280aa62008-01-31 04:04:13 -0800109 unregister_pernet_subsys(&ip6table_filter_net_ops);
Florian Westphalb9e69e12016-02-25 10:08:36 +0100110 kfree(filter_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800113module_init(ip6table_filter_init);
114module_exit(ip6table_filter_fini);