blob: 40d2e36d8fac292b8fdf8663717d3eaf505108c5 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070024static struct
25{
26 struct ip6t_replace repl;
27 struct ip6t_standard entries[3];
28 struct ip6t_error term;
Alexey Dobriyan8280aa62008-01-31 04:04:13 -080029} initial_table __net_initdata = {
Patrick McHardy3c2ad462007-05-10 14:14:16 -070030 .repl = {
31 .name = "filter",
32 .valid_hooks = FILTER_VALID_HOOKS,
33 .num_entries = 4,
34 .size = sizeof(struct ip6t_standard) * 3 + sizeof(struct ip6t_error),
35 .hook_entry = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -080036 [NF_INET_LOCAL_IN] = 0,
37 [NF_INET_FORWARD] = sizeof(struct ip6t_standard),
38 [NF_INET_LOCAL_OUT] = sizeof(struct ip6t_standard) * 2
Patrick McHardy3c2ad462007-05-10 14:14:16 -070039 },
40 .underflow = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -080041 [NF_INET_LOCAL_IN] = 0,
42 [NF_INET_FORWARD] = sizeof(struct ip6t_standard),
43 [NF_INET_LOCAL_OUT] = sizeof(struct ip6t_standard) * 2
Patrick McHardy3c2ad462007-05-10 14:14:16 -070044 },
45 },
46 .entries = {
47 IP6T_STANDARD_INIT(NF_ACCEPT), /* LOCAL_IN */
48 IP6T_STANDARD_INIT(NF_ACCEPT), /* FORWARD */
49 IP6T_STANDARD_INIT(NF_ACCEPT), /* LOCAL_OUT */
50 },
51 .term = IP6T_ERROR_INIT, /* ERROR */
Linus Torvalds1da177e2005-04-16 15:20:36 -070052};
53
Alexey Dobriyan8280aa62008-01-31 04:04:13 -080054static struct xt_table packet_filter = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 .name = "filter",
56 .valid_hooks = FILTER_VALID_HOOKS,
Robert P. J. Dayfdccecd2008-04-14 09:56:03 +020057 .lock = __RW_LOCK_UNLOCKED(packet_filter.lock),
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 .me = THIS_MODULE,
Harald Welte2e4e6a12006-01-12 13:30:04 -080059 .af = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -070060};
61
62/* The work comes in here from netfilter.c. */
63static unsigned int
Alexey Dobriyan61d30152008-11-20 09:58:08 +010064ip6t_in_hook(unsigned int hook,
Alexey Dobriyan43de9dfe2008-07-08 02:36:18 -070065 struct sk_buff *skb,
66 const struct net_device *in,
67 const struct net_device *out,
68 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
Alexey Dobriyan43de9dfe2008-07-08 02:36:18 -070070 return ip6t_do_table(skb, hook, in, out,
Alexey Dobriyan48dc7862008-10-08 11:35:01 +020071 dev_net(in)->ipv6.ip6table_filter);
Alexey Dobriyan43de9dfe2008-07-08 02:36:18 -070072}
73
74static unsigned int
Linus Torvalds1da177e2005-04-16 15:20:36 -070075ip6t_local_out_hook(unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -070076 struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 const struct net_device *in,
78 const struct net_device *out,
79 int (*okfn)(struct sk_buff *))
80{
81#if 0
82 /* root is playing with raw sockets. */
Herbert Xu3db05fe2007-10-15 00:53:15 -070083 if (skb->len < sizeof(struct iphdr)
84 || ip_hdrlen(skb) < sizeof(struct iphdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 if (net_ratelimit())
86 printk("ip6t_hook: happy cracking.\n");
87 return NF_ACCEPT;
88 }
89#endif
90
Alexey Dobriyan43de9dfe2008-07-08 02:36:18 -070091 return ip6t_do_table(skb, hook, in, out,
Alexey Dobriyan48dc7862008-10-08 11:35:01 +020092 dev_net(out)->ipv6.ip6table_filter);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94
Patrick McHardy19994142007-12-05 01:23:00 -080095static struct nf_hook_ops ip6t_ops[] __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 {
Alexey Dobriyan61d30152008-11-20 09:58:08 +010097 .hook = ip6t_in_hook,
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 .owner = THIS_MODULE,
99 .pf = PF_INET6,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800100 .hooknum = NF_INET_LOCAL_IN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 .priority = NF_IP6_PRI_FILTER,
102 },
103 {
Alexey Dobriyan61d30152008-11-20 09:58:08 +0100104 .hook = ip6t_in_hook,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 .owner = THIS_MODULE,
106 .pf = PF_INET6,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800107 .hooknum = NF_INET_FORWARD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 .priority = NF_IP6_PRI_FILTER,
109 },
110 {
111 .hook = ip6t_local_out_hook,
112 .owner = THIS_MODULE,
113 .pf = PF_INET6,
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800114 .hooknum = NF_INET_LOCAL_OUT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 .priority = NF_IP6_PRI_FILTER,
116 },
117};
118
119/* Default to forward because I got too much mail already. */
120static int forward = NF_ACCEPT;
121module_param(forward, bool, 0000);
122
Alexey Dobriyan8280aa62008-01-31 04:04:13 -0800123static int __net_init ip6table_filter_net_init(struct net *net)
124{
125 /* Register table */
126 net->ipv6.ip6table_filter =
127 ip6t_register_table(net, &packet_filter, &initial_table.repl);
128 if (IS_ERR(net->ipv6.ip6table_filter))
129 return PTR_ERR(net->ipv6.ip6table_filter);
130 return 0;
131}
132
133static void __net_exit ip6table_filter_net_exit(struct net *net)
134{
135 ip6t_unregister_table(net->ipv6.ip6table_filter);
136}
137
138static struct pernet_operations ip6table_filter_net_ops = {
139 .init = ip6table_filter_net_init,
140 .exit = ip6table_filter_net_exit,
141};
142
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800143static int __init ip6table_filter_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
145 int ret;
146
147 if (forward < 0 || forward > NF_MAX_VERDICT) {
148 printk("iptables forward must be 0 or 1\n");
149 return -EINVAL;
150 }
151
152 /* Entry 1 is the FORWARD hook */
153 initial_table.entries[1].target.verdict = -forward - 1;
154
Alexey Dobriyan8280aa62008-01-31 04:04:13 -0800155 ret = register_pernet_subsys(&ip6table_filter_net_ops);
156 if (ret < 0)
157 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 /* Register hooks */
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700160 ret = nf_register_hooks(ip6t_ops, ARRAY_SIZE(ip6t_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 if (ret < 0)
162 goto cleanup_table;
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 return ret;
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 cleanup_table:
Alexey Dobriyan8280aa62008-01-31 04:04:13 -0800167 unregister_pernet_subsys(&ip6table_filter_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return ret;
169}
170
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800171static void __exit ip6table_filter_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700173 nf_unregister_hooks(ip6t_ops, ARRAY_SIZE(ip6t_ops));
Alexey Dobriyan8280aa62008-01-31 04:04:13 -0800174 unregister_pernet_subsys(&ip6table_filter_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800177module_init(ip6table_filter_init);
178module_exit(ip6table_filter_fini);