1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C)2003,2004 USAGI/WIDE Project
9 #define pr_fmt(fmt) "IPv6: " fmt
11 #include <linux/icmpv6.h>
12 #include <linux/init.h>
13 #include <linux/module.h>
14 #include <linux/mutex.h>
15 #include <linux/netdevice.h>
16 #include <linux/skbuff.h>
17 #include <linux/slab.h>
19 #include <net/protocol.h>
22 static struct xfrm6_tunnel __rcu *tunnel6_handlers __read_mostly;
23 static struct xfrm6_tunnel __rcu *tunnel46_handlers __read_mostly;
24 static struct xfrm6_tunnel __rcu *tunnelmpls6_handlers __read_mostly;
25 static DEFINE_MUTEX(tunnel6_mutex);
27 static inline int xfrm6_tunnel_mpls_supported(void)
29 return IS_ENABLED(CONFIG_MPLS);
32 int xfrm6_tunnel_register(struct xfrm6_tunnel *handler, unsigned short family)
34 struct xfrm6_tunnel __rcu **pprev;
35 struct xfrm6_tunnel *t;
37 int priority = handler->priority;
39 mutex_lock(&tunnel6_mutex);
43 pprev = &tunnel6_handlers;
46 pprev = &tunnel46_handlers;
49 pprev = &tunnelmpls6_handlers;
55 for (; (t = rcu_dereference_protected(*pprev,
56 lockdep_is_held(&tunnel6_mutex))) != NULL;
58 if (t->priority > priority)
60 if (t->priority == priority)
64 handler->next = *pprev;
65 rcu_assign_pointer(*pprev, handler);
70 mutex_unlock(&tunnel6_mutex);
74 EXPORT_SYMBOL(xfrm6_tunnel_register);
76 int xfrm6_tunnel_deregister(struct xfrm6_tunnel *handler, unsigned short family)
78 struct xfrm6_tunnel __rcu **pprev;
79 struct xfrm6_tunnel *t;
82 mutex_lock(&tunnel6_mutex);
86 pprev = &tunnel6_handlers;
89 pprev = &tunnel46_handlers;
92 pprev = &tunnelmpls6_handlers;
98 for (; (t = rcu_dereference_protected(*pprev,
99 lockdep_is_held(&tunnel6_mutex))) != NULL;
102 *pprev = handler->next;
109 mutex_unlock(&tunnel6_mutex);
115 EXPORT_SYMBOL(xfrm6_tunnel_deregister);
117 #define for_each_tunnel_rcu(head, handler) \
118 for (handler = rcu_dereference(head); \
120 handler = rcu_dereference(handler->next)) \
122 static int tunnelmpls6_rcv(struct sk_buff *skb)
124 struct xfrm6_tunnel *handler;
126 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
129 for_each_tunnel_rcu(tunnelmpls6_handlers, handler)
130 if (!handler->handler(skb))
133 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
140 static int tunnel6_rcv(struct sk_buff *skb)
142 struct xfrm6_tunnel *handler;
144 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
147 for_each_tunnel_rcu(tunnel6_handlers, handler)
148 if (!handler->handler(skb))
151 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
158 static int tunnel46_rcv(struct sk_buff *skb)
160 struct xfrm6_tunnel *handler;
162 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
165 for_each_tunnel_rcu(tunnel46_handlers, handler)
166 if (!handler->handler(skb))
169 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
176 static int tunnel6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
177 u8 type, u8 code, int offset, __be32 info)
179 struct xfrm6_tunnel *handler;
181 for_each_tunnel_rcu(tunnel6_handlers, handler)
182 if (!handler->err_handler(skb, opt, type, code, offset, info))
188 static int tunnel46_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
189 u8 type, u8 code, int offset, __be32 info)
191 struct xfrm6_tunnel *handler;
193 for_each_tunnel_rcu(tunnel46_handlers, handler)
194 if (!handler->err_handler(skb, opt, type, code, offset, info))
200 static int tunnelmpls6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
201 u8 type, u8 code, int offset, __be32 info)
203 struct xfrm6_tunnel *handler;
205 for_each_tunnel_rcu(tunnelmpls6_handlers, handler)
206 if (!handler->err_handler(skb, opt, type, code, offset, info))
212 static const struct inet6_protocol tunnel6_protocol = {
213 .handler = tunnel6_rcv,
214 .err_handler = tunnel6_err,
215 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
218 static const struct inet6_protocol tunnel46_protocol = {
219 .handler = tunnel46_rcv,
220 .err_handler = tunnel46_err,
221 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
224 static const struct inet6_protocol tunnelmpls6_protocol = {
225 .handler = tunnelmpls6_rcv,
226 .err_handler = tunnelmpls6_err,
227 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
230 static int __init tunnel6_init(void)
232 if (inet6_add_protocol(&tunnel6_protocol, IPPROTO_IPV6)) {
233 pr_err("%s: can't add protocol\n", __func__);
236 if (inet6_add_protocol(&tunnel46_protocol, IPPROTO_IPIP)) {
237 pr_err("%s: can't add protocol\n", __func__);
238 inet6_del_protocol(&tunnel6_protocol, IPPROTO_IPV6);
241 if (xfrm6_tunnel_mpls_supported() &&
242 inet6_add_protocol(&tunnelmpls6_protocol, IPPROTO_MPLS)) {
243 pr_err("%s: can't add protocol\n", __func__);
244 inet6_del_protocol(&tunnel6_protocol, IPPROTO_IPV6);
245 inet6_del_protocol(&tunnel46_protocol, IPPROTO_IPIP);
251 static void __exit tunnel6_fini(void)
253 if (inet6_del_protocol(&tunnel46_protocol, IPPROTO_IPIP))
254 pr_err("%s: can't remove protocol\n", __func__);
255 if (inet6_del_protocol(&tunnel6_protocol, IPPROTO_IPV6))
256 pr_err("%s: can't remove protocol\n", __func__);
257 if (xfrm6_tunnel_mpls_supported() &&
258 inet6_del_protocol(&tunnelmpls6_protocol, IPPROTO_MPLS))
259 pr_err("%s: can't remove protocol\n", __func__);
262 module_init(tunnel6_init);
263 module_exit(tunnel6_fini);
264 MODULE_LICENSE("GPL");