blob: 679865e3d5ff1b50454a1e9e342faeaadf8b627e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IPv6 raw table, a port of the IPv4 raw table to IPv6
3 *
4 * Copyright (C) 2003 Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
5 */
6#include <linux/module.h>
7#include <linux/netfilter_ipv6/ip6_tables.h>
8
Patrick McHardy6e23ae22007-11-19 18:53:30 -08009#define RAW_VALID_HOOKS ((1 << NF_INET_PRE_ROUTING) | (1 << NF_INET_LOCAL_OUT))
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Linus Torvalds1da177e2005-04-16 15:20:36 -070011static struct
12{
13 struct ip6t_replace repl;
14 struct ip6t_standard entries[2];
15 struct ip6t_error term;
Alexey Dobriyan8280aa62008-01-31 04:04:13 -080016} initial_table __net_initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 .repl = {
18 .name = "raw",
19 .valid_hooks = RAW_VALID_HOOKS,
20 .num_entries = 3,
21 .size = sizeof(struct ip6t_standard) * 2 + sizeof(struct ip6t_error),
22 .hook_entry = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -080023 [NF_INET_PRE_ROUTING] = 0,
24 [NF_INET_LOCAL_OUT] = sizeof(struct ip6t_standard)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 },
26 .underflow = {
Patrick McHardy6e23ae22007-11-19 18:53:30 -080027 [NF_INET_PRE_ROUTING] = 0,
28 [NF_INET_LOCAL_OUT] = sizeof(struct ip6t_standard)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 },
30 },
31 .entries = {
Patrick McHardy3c2ad462007-05-10 14:14:16 -070032 IP6T_STANDARD_INIT(NF_ACCEPT), /* PRE_ROUTING */
33 IP6T_STANDARD_INIT(NF_ACCEPT), /* LOCAL_OUT */
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 },
Patrick McHardy3c2ad462007-05-10 14:14:16 -070035 .term = IP6T_ERROR_INIT, /* ERROR */
Linus Torvalds1da177e2005-04-16 15:20:36 -070036};
37
Alexey Dobriyan8280aa62008-01-31 04:04:13 -080038static struct xt_table packet_raw = {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090039 .name = "raw",
40 .valid_hooks = RAW_VALID_HOOKS,
Harald Welte2e4e6a12006-01-12 13:30:04 -080041 .me = THIS_MODULE,
Jan Engelhardtf88e6a82009-06-13 06:25:44 +020042 .af = NFPROTO_IPV6,
Linus Torvalds1da177e2005-04-16 15:20:36 -070043};
44
45/* The work comes in here from netfilter.c. */
46static unsigned int
Alexey Dobriyan1339dd92008-10-08 11:35:01 +020047ip6t_pre_routing_hook(unsigned int hook,
Herbert Xu3db05fe2007-10-15 00:53:15 -070048 struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 const struct net_device *in,
50 const struct net_device *out,
51 int (*okfn)(struct sk_buff *))
52{
Alexey Dobriyan1339dd92008-10-08 11:35:01 +020053 return ip6t_do_table(skb, hook, in, out,
54 dev_net(in)->ipv6.ip6table_raw);
55}
56
57static unsigned int
58ip6t_local_out_hook(unsigned int hook,
59 struct sk_buff *skb,
60 const struct net_device *in,
61 const struct net_device *out,
62 int (*okfn)(struct sk_buff *))
63{
64 return ip6t_do_table(skb, hook, in, out,
65 dev_net(out)->ipv6.ip6table_raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
67
Patrick McHardy19994142007-12-05 01:23:00 -080068static struct nf_hook_ops ip6t_ops[] __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 {
Alexey Dobriyan1339dd92008-10-08 11:35:01 +020070 .hook = ip6t_pre_routing_hook,
Jan Engelhardt24c232d2009-06-13 06:20:29 +020071 .pf = NFPROTO_IPV6,
Patrick McHardy6e23ae22007-11-19 18:53:30 -080072 .hooknum = NF_INET_PRE_ROUTING,
Patrick McHardy97216c72005-06-21 14:03:01 -070073 .priority = NF_IP6_PRI_FIRST,
74 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 },
76 {
Alexey Dobriyan1339dd92008-10-08 11:35:01 +020077 .hook = ip6t_local_out_hook,
Jan Engelhardt24c232d2009-06-13 06:20:29 +020078 .pf = NFPROTO_IPV6,
Patrick McHardy6e23ae22007-11-19 18:53:30 -080079 .hooknum = NF_INET_LOCAL_OUT,
Patrick McHardy97216c72005-06-21 14:03:01 -070080 .priority = NF_IP6_PRI_FIRST,
81 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 },
83};
84
Alexey Dobriyan8280aa62008-01-31 04:04:13 -080085static int __net_init ip6table_raw_net_init(struct net *net)
86{
87 /* Register table */
88 net->ipv6.ip6table_raw =
89 ip6t_register_table(net, &packet_raw, &initial_table.repl);
90 if (IS_ERR(net->ipv6.ip6table_raw))
91 return PTR_ERR(net->ipv6.ip6table_raw);
92 return 0;
93}
94
95static void __net_exit ip6table_raw_net_exit(struct net *net)
96{
97 ip6t_unregister_table(net->ipv6.ip6table_raw);
98}
99
100static struct pernet_operations ip6table_raw_net_ops = {
101 .init = ip6table_raw_net_init,
102 .exit = ip6table_raw_net_exit,
103};
104
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800105static int __init ip6table_raw_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
107 int ret;
108
Alexey Dobriyan8280aa62008-01-31 04:04:13 -0800109 ret = register_pernet_subsys(&ip6table_raw_net_ops);
110 if (ret < 0)
111 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113 /* Register hooks */
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700114 ret = nf_register_hooks(ip6t_ops, ARRAY_SIZE(ip6t_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 if (ret < 0)
116 goto cleanup_table;
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 return ret;
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 cleanup_table:
Alexey Dobriyan8280aa62008-01-31 04:04:13 -0800121 unregister_pernet_subsys(&ip6table_raw_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 return ret;
123}
124
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800125static void __exit ip6table_raw_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
Patrick McHardy964ddaa2006-04-06 14:09:49 -0700127 nf_unregister_hooks(ip6t_ops, ARRAY_SIZE(ip6t_ops));
Alexey Dobriyan8280aa62008-01-31 04:04:13 -0800128 unregister_pernet_subsys(&ip6table_raw_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
130
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800131module_init(ip6table_raw_init);
132module_exit(ip6table_raw_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133MODULE_LICENSE("GPL");