2 * Copyright (C)2003,2004 USAGI/WIDE Project
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
17 * Authors Mitsuru KANDA <mk@linux-ipv6.org>
18 * YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
21 #define pr_fmt(fmt) "IPv6: " fmt
23 #include <linux/icmpv6.h>
24 #include <linux/init.h>
25 #include <linux/module.h>
26 #include <linux/mutex.h>
27 #include <linux/netdevice.h>
28 #include <linux/skbuff.h>
29 #include <linux/slab.h>
31 #include <net/protocol.h>
34 static struct xfrm6_tunnel __rcu
*tunnel6_handlers __read_mostly
;
35 static struct xfrm6_tunnel __rcu
*tunnel46_handlers __read_mostly
;
36 static DEFINE_MUTEX(tunnel6_mutex
);
38 int xfrm6_tunnel_register(struct xfrm6_tunnel
*handler
, unsigned short family
)
40 struct xfrm6_tunnel __rcu
**pprev
;
41 struct xfrm6_tunnel
*t
;
43 int priority
= handler
->priority
;
45 mutex_lock(&tunnel6_mutex
);
47 for (pprev
= (family
== AF_INET6
) ? &tunnel6_handlers
: &tunnel46_handlers
;
48 (t
= rcu_dereference_protected(*pprev
,
49 lockdep_is_held(&tunnel6_mutex
))) != NULL
;
51 if (t
->priority
> priority
)
53 if (t
->priority
== priority
)
57 handler
->next
= *pprev
;
58 rcu_assign_pointer(*pprev
, handler
);
63 mutex_unlock(&tunnel6_mutex
);
68 EXPORT_SYMBOL(xfrm6_tunnel_register
);
70 int xfrm6_tunnel_deregister(struct xfrm6_tunnel
*handler
, unsigned short family
)
72 struct xfrm6_tunnel __rcu
**pprev
;
73 struct xfrm6_tunnel
*t
;
76 mutex_lock(&tunnel6_mutex
);
78 for (pprev
= (family
== AF_INET6
) ? &tunnel6_handlers
: &tunnel46_handlers
;
79 (t
= rcu_dereference_protected(*pprev
,
80 lockdep_is_held(&tunnel6_mutex
))) != NULL
;
83 *pprev
= handler
->next
;
89 mutex_unlock(&tunnel6_mutex
);
96 EXPORT_SYMBOL(xfrm6_tunnel_deregister
);
98 #define for_each_tunnel_rcu(head, handler) \
99 for (handler = rcu_dereference(head); \
101 handler = rcu_dereference(handler->next)) \
103 static int tunnel6_rcv(struct sk_buff *skb)
105 struct xfrm6_tunnel
*handler
;
107 if (!pskb_may_pull(skb
, sizeof(struct ipv6hdr
)))
110 for_each_tunnel_rcu(tunnel6_handlers
, handler
)
111 if (!handler
->handler(skb
))
114 icmpv6_send(skb
, ICMPV6_DEST_UNREACH
, ICMPV6_PORT_UNREACH
, 0);
121 static int tunnel46_rcv(struct sk_buff
*skb
)
123 struct xfrm6_tunnel
*handler
;
125 if (!pskb_may_pull(skb
, sizeof(struct iphdr
)))
128 for_each_tunnel_rcu(tunnel46_handlers
, handler
)
129 if (!handler
->handler(skb
))
132 icmpv6_send(skb
, ICMPV6_DEST_UNREACH
, ICMPV6_PORT_UNREACH
, 0);
139 static void tunnel6_err(struct sk_buff
*skb
, struct inet6_skb_parm
*opt
,
140 u8 type
, u8 code
, int offset
, __be32 info
)
142 struct xfrm6_tunnel
*handler
;
144 for_each_tunnel_rcu(tunnel6_handlers
, handler
)
145 if (!handler
->err_handler(skb
, opt
, type
, code
, offset
, info
))
149 static const struct inet6_protocol tunnel6_protocol
= {
150 .handler
= tunnel6_rcv
,
151 .err_handler
= tunnel6_err
,
152 .flags
= INET6_PROTO_NOPOLICY
|INET6_PROTO_FINAL
,
155 static const struct inet6_protocol tunnel46_protocol
= {
156 .handler
= tunnel46_rcv
,
157 .err_handler
= tunnel6_err
,
158 .flags
= INET6_PROTO_NOPOLICY
|INET6_PROTO_FINAL
,
161 static int __init
tunnel6_init(void)
163 if (inet6_add_protocol(&tunnel6_protocol
, IPPROTO_IPV6
)) {
164 pr_err("%s: can't add protocol\n", __func__
);
167 if (inet6_add_protocol(&tunnel46_protocol
, IPPROTO_IPIP
)) {
168 pr_err("%s: can't add protocol\n", __func__
);
169 inet6_del_protocol(&tunnel6_protocol
, IPPROTO_IPV6
);
175 static void __exit
tunnel6_fini(void)
177 if (inet6_del_protocol(&tunnel46_protocol
, IPPROTO_IPIP
))
178 pr_err("%s: can't remove protocol\n", __func__
);
179 if (inet6_del_protocol(&tunnel6_protocol
, IPPROTO_IPV6
))
180 pr_err("%s: can't remove protocol\n", __func__
);
183 module_init(tunnel6_init
);
184 module_exit(tunnel6_fini
);
185 MODULE_LICENSE("GPL");