blob: 1d26b202bf3017bd9abc6fc403b9dea09559d3f5 [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
20#define FILTER_VALID_HOOKS ((1 << NF_IP6_LOCAL_IN) | (1 << NF_IP6_FORWARD) | (1 << NF_IP6_LOCAL_OUT))
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022static struct
23{
24 struct ip6t_replace repl;
25 struct ip6t_standard entries[3];
26 struct ip6t_error term;
Patrick McHardy3c2ad462007-05-10 14:14:16 -070027} initial_table __initdata = {
28 .repl = {
29 .name = "filter",
30 .valid_hooks = FILTER_VALID_HOOKS,
31 .num_entries = 4,
32 .size = sizeof(struct ip6t_standard) * 3 + sizeof(struct ip6t_error),
33 .hook_entry = {
34 [NF_IP6_LOCAL_IN] = 0,
35 [NF_IP6_FORWARD] = sizeof(struct ip6t_standard),
36 [NF_IP6_LOCAL_OUT] = sizeof(struct ip6t_standard) * 2
37 },
38 .underflow = {
39 [NF_IP6_LOCAL_IN] = 0,
40 [NF_IP6_FORWARD] = sizeof(struct ip6t_standard),
41 [NF_IP6_LOCAL_OUT] = sizeof(struct ip6t_standard) * 2
42 },
43 },
44 .entries = {
45 IP6T_STANDARD_INIT(NF_ACCEPT), /* LOCAL_IN */
46 IP6T_STANDARD_INIT(NF_ACCEPT), /* FORWARD */
47 IP6T_STANDARD_INIT(NF_ACCEPT), /* LOCAL_OUT */
48 },
49 .term = IP6T_ERROR_INIT, /* ERROR */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050};
51
Jan Engelhardte60a13e2007-02-07 15:12:33 -080052static struct xt_table packet_filter = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 .name = "filter",
54 .valid_hooks = FILTER_VALID_HOOKS,
55 .lock = RW_LOCK_UNLOCKED,
56 .me = THIS_MODULE,
Harald Welte2e4e6a12006-01-12 13:30:04 -080057 .af = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -070058};
59
60/* The work comes in here from netfilter.c. */
61static unsigned int
62ip6t_hook(unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -070063 struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 const struct net_device *in,
65 const struct net_device *out,
66 int (*okfn)(struct sk_buff *))
67{
Herbert Xu3db05fe2007-10-15 00:53:15 -070068 return ip6t_do_table(skb, hook, in, out, &packet_filter);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069}
70
71static unsigned int
72ip6t_local_out_hook(unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -070073 struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 const struct net_device *in,
75 const struct net_device *out,
76 int (*okfn)(struct sk_buff *))
77{
78#if 0
79 /* root is playing with raw sockets. */
Herbert Xu3db05fe2007-10-15 00:53:15 -070080 if (skb->len < sizeof(struct iphdr)
81 || ip_hdrlen(skb) < sizeof(struct iphdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 if (net_ratelimit())
83 printk("ip6t_hook: happy cracking.\n");
84 return NF_ACCEPT;
85 }
86#endif
87
Herbert Xu3db05fe2007-10-15 00:53:15 -070088 return ip6t_do_table(skb, hook, in, out, &packet_filter);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089}
90
91static struct nf_hook_ops ip6t_ops[] = {
92 {
93 .hook = ip6t_hook,
94 .owner = THIS_MODULE,
95 .pf = PF_INET6,
96 .hooknum = NF_IP6_LOCAL_IN,
97 .priority = NF_IP6_PRI_FILTER,
98 },
99 {
100 .hook = ip6t_hook,
101 .owner = THIS_MODULE,
102 .pf = PF_INET6,
103 .hooknum = NF_IP6_FORWARD,
104 .priority = NF_IP6_PRI_FILTER,
105 },
106 {
107 .hook = ip6t_local_out_hook,
108 .owner = THIS_MODULE,
109 .pf = PF_INET6,
110 .hooknum = NF_IP6_LOCAL_OUT,
111 .priority = NF_IP6_PRI_FILTER,
112 },
113};
114
115/* Default to forward because I got too much mail already. */
116static int forward = NF_ACCEPT;
117module_param(forward, bool, 0000);
118
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800119static int __init ip6table_filter_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
121 int ret;
122
123 if (forward < 0 || forward > NF_MAX_VERDICT) {
124 printk("iptables forward must be 0 or 1\n");
125 return -EINVAL;
126 }
127
128 /* Entry 1 is the FORWARD hook */
129 initial_table.entries[1].target.verdict = -forward - 1;
130
131 /* Register table */
132 ret = ip6t_register_table(&packet_filter, &initial_table.repl);
133 if (ret < 0)
134 return ret;
135
136 /* Register hooks */
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700137 ret = nf_register_hooks(ip6t_ops, ARRAY_SIZE(ip6t_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 if (ret < 0)
139 goto cleanup_table;
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 return ret;
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 cleanup_table:
144 ip6t_unregister_table(&packet_filter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 return ret;
146}
147
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800148static void __exit ip6table_filter_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700150 nf_unregister_hooks(ip6t_ops, ARRAY_SIZE(ip6t_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 ip6t_unregister_table(&packet_filter);
152}
153
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800154module_init(ip6table_filter_init);
155module_exit(ip6table_filter_fini);