blob: e44aaf41a13832aa13bc2205095cad3d75f16951 [file] [log] [blame]
Thomas Gleixner09c434b2019-05-19 13:08:20 +01001// SPDX-License-Identifier: GPL-2.0-only
Herbert Xud2acc342006-03-28 01:12:13 -08002/* tunnel4.c: Generic IP tunnel transformer.
3 *
4 * Copyright (C) 2003 David S. Miller (davem@redhat.com)
5 */
6
7#include <linux/init.h>
8#include <linux/module.h>
9#include <linux/mutex.h>
Simon Horman8afe97e2016-07-07 07:56:12 +020010#include <linux/mpls.h>
Herbert Xud2acc342006-03-28 01:12:13 -080011#include <linux/netdevice.h>
12#include <linux/skbuff.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Herbert Xu50fba2a2006-04-04 13:50:45 -070014#include <net/icmp.h>
15#include <net/ip.h>
Herbert Xud2acc342006-03-28 01:12:13 -080016#include <net/protocol.h>
17#include <net/xfrm.h>
18
Eric Dumazetb33eab02010-10-25 21:01:26 +000019static struct xfrm_tunnel __rcu *tunnel4_handlers __read_mostly;
20static struct xfrm_tunnel __rcu *tunnel64_handlers __read_mostly;
Simon Horman8afe97e2016-07-07 07:56:12 +020021static struct xfrm_tunnel __rcu *tunnelmpls4_handlers __read_mostly;
Herbert Xud2acc342006-03-28 01:12:13 -080022static DEFINE_MUTEX(tunnel4_mutex);
23
Eric Dumazetb33eab02010-10-25 21:01:26 +000024static inline struct xfrm_tunnel __rcu **fam_handlers(unsigned short family)
Pavel Emelyanov358352b2007-11-10 21:48:54 -080025{
Simon Horman8afe97e2016-07-07 07:56:12 +020026 return (family == AF_INET) ? &tunnel4_handlers :
27 (family == AF_INET6) ? &tunnel64_handlers :
28 &tunnelmpls4_handlers;
Pavel Emelyanov358352b2007-11-10 21:48:54 -080029}
30
Kazunori MIYAZAWAc0d56402007-02-13 12:54:47 -080031int xfrm4_tunnel_register(struct xfrm_tunnel *handler, unsigned short family)
Herbert Xud2acc342006-03-28 01:12:13 -080032{
Eric Dumazetb33eab02010-10-25 21:01:26 +000033 struct xfrm_tunnel __rcu **pprev;
34 struct xfrm_tunnel *t;
35
Herbert Xud2acc342006-03-28 01:12:13 -080036 int ret = -EEXIST;
37 int priority = handler->priority;
38
39 mutex_lock(&tunnel4_mutex);
40
Eric Dumazetb33eab02010-10-25 21:01:26 +000041 for (pprev = fam_handlers(family);
42 (t = rcu_dereference_protected(*pprev,
43 lockdep_is_held(&tunnel4_mutex))) != NULL;
44 pprev = &t->next) {
45 if (t->priority > priority)
Herbert Xud2acc342006-03-28 01:12:13 -080046 break;
Eric Dumazetb33eab02010-10-25 21:01:26 +000047 if (t->priority == priority)
Herbert Xud2acc342006-03-28 01:12:13 -080048 goto err;
49 }
50
51 handler->next = *pprev;
Eric Dumazet49d61e22010-09-09 05:33:43 +000052 rcu_assign_pointer(*pprev, handler);
Herbert Xud2acc342006-03-28 01:12:13 -080053
54 ret = 0;
55
56err:
57 mutex_unlock(&tunnel4_mutex);
58
59 return ret;
60}
Herbert Xud2acc342006-03-28 01:12:13 -080061EXPORT_SYMBOL(xfrm4_tunnel_register);
62
Kazunori MIYAZAWAc0d56402007-02-13 12:54:47 -080063int xfrm4_tunnel_deregister(struct xfrm_tunnel *handler, unsigned short family)
Herbert Xud2acc342006-03-28 01:12:13 -080064{
Eric Dumazetb33eab02010-10-25 21:01:26 +000065 struct xfrm_tunnel __rcu **pprev;
66 struct xfrm_tunnel *t;
Herbert Xud2acc342006-03-28 01:12:13 -080067 int ret = -ENOENT;
68
69 mutex_lock(&tunnel4_mutex);
70
Eric Dumazetb33eab02010-10-25 21:01:26 +000071 for (pprev = fam_handlers(family);
72 (t = rcu_dereference_protected(*pprev,
73 lockdep_is_held(&tunnel4_mutex))) != NULL;
74 pprev = &t->next) {
75 if (t == handler) {
Herbert Xud2acc342006-03-28 01:12:13 -080076 *pprev = handler->next;
77 ret = 0;
78 break;
79 }
80 }
81
82 mutex_unlock(&tunnel4_mutex);
83
84 synchronize_net();
85
86 return ret;
87}
Herbert Xud2acc342006-03-28 01:12:13 -080088EXPORT_SYMBOL(xfrm4_tunnel_deregister);
89
Eric Dumazet875168a2010-08-30 11:07:25 +000090#define for_each_tunnel_rcu(head, handler) \
91 for (handler = rcu_dereference(head); \
92 handler != NULL; \
93 handler = rcu_dereference(handler->next)) \
Stephen Hemminger82695b32018-02-27 15:48:21 -080094
Herbert Xud2acc342006-03-28 01:12:13 -080095static int tunnel4_rcv(struct sk_buff *skb)
96{
97 struct xfrm_tunnel *handler;
98
Herbert Xu50fba2a2006-04-04 13:50:45 -070099 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
100 goto drop;
101
Eric Dumazet875168a2010-08-30 11:07:25 +0000102 for_each_tunnel_rcu(tunnel4_handlers, handler)
Herbert Xud2acc342006-03-28 01:12:13 -0800103 if (!handler->handler(skb))
104 return 0;
105
Herbert Xu50fba2a2006-04-04 13:50:45 -0700106 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
107
108drop:
Herbert Xud2acc342006-03-28 01:12:13 -0800109 kfree_skb(skb);
110 return 0;
111}
112
Xin Long6df2db52020-07-06 20:01:30 +0800113#if IS_ENABLED(CONFIG_INET_XFRM_TUNNEL)
114static int tunnel4_rcv_cb(struct sk_buff *skb, u8 proto, int err)
115{
116 struct xfrm_tunnel __rcu *head;
117 struct xfrm_tunnel *handler;
118 int ret;
119
120 head = (proto == IPPROTO_IPIP) ? tunnel4_handlers : tunnel64_handlers;
121
122 for_each_tunnel_rcu(head, handler) {
123 if (handler->cb_handler) {
124 ret = handler->cb_handler(skb, err);
125 if (ret <= 0)
126 return ret;
127 }
128 }
129
130 return 0;
131}
132
133static const struct xfrm_input_afinfo tunnel4_input_afinfo = {
134 .family = AF_INET,
135 .is_ipip = true,
136 .callback = tunnel4_rcv_cb,
137};
138#endif
139
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000140#if IS_ENABLED(CONFIG_IPV6)
Kazunori MIYAZAWAc0d56402007-02-13 12:54:47 -0800141static int tunnel64_rcv(struct sk_buff *skb)
142{
143 struct xfrm_tunnel *handler;
144
YOSHIFUJI Hideakibaa2bfb2008-05-30 11:35:03 +0900145 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
Kazunori MIYAZAWAc0d56402007-02-13 12:54:47 -0800146 goto drop;
147
Eric Dumazet875168a2010-08-30 11:07:25 +0000148 for_each_tunnel_rcu(tunnel64_handlers, handler)
Kazunori MIYAZAWAc0d56402007-02-13 12:54:47 -0800149 if (!handler->handler(skb))
150 return 0;
151
152 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
153
154drop:
155 kfree_skb(skb);
156 return 0;
157}
158#endif
159
Simon Horman8afe97e2016-07-07 07:56:12 +0200160#if IS_ENABLED(CONFIG_MPLS)
161static int tunnelmpls4_rcv(struct sk_buff *skb)
162{
163 struct xfrm_tunnel *handler;
164
165 if (!pskb_may_pull(skb, sizeof(struct mpls_label)))
166 goto drop;
167
168 for_each_tunnel_rcu(tunnelmpls4_handlers, handler)
169 if (!handler->handler(skb))
170 return 0;
171
172 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
173
174drop:
175 kfree_skb(skb);
176 return 0;
177}
178#endif
179
Stefano Brivio32bbd872018-11-08 12:19:21 +0100180static int tunnel4_err(struct sk_buff *skb, u32 info)
Herbert Xud2acc342006-03-28 01:12:13 -0800181{
182 struct xfrm_tunnel *handler;
183
Eric Dumazet875168a2010-08-30 11:07:25 +0000184 for_each_tunnel_rcu(tunnel4_handlers, handler)
Herbert Xud2acc342006-03-28 01:12:13 -0800185 if (!handler->err_handler(skb, info))
Stefano Brivio32bbd872018-11-08 12:19:21 +0100186 return 0;
187
188 return -ENOENT;
Herbert Xud2acc342006-03-28 01:12:13 -0800189}
190
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000191#if IS_ENABLED(CONFIG_IPV6)
Stefano Brivio32bbd872018-11-08 12:19:21 +0100192static int tunnel64_err(struct sk_buff *skb, u32 info)
Pavel Emelyanov99f93322007-11-10 21:47:39 -0800193{
194 struct xfrm_tunnel *handler;
195
Eric Dumazet875168a2010-08-30 11:07:25 +0000196 for_each_tunnel_rcu(tunnel64_handlers, handler)
Pavel Emelyanov99f93322007-11-10 21:47:39 -0800197 if (!handler->err_handler(skb, info))
Stefano Brivio32bbd872018-11-08 12:19:21 +0100198 return 0;
199
200 return -ENOENT;
Pavel Emelyanov99f93322007-11-10 21:47:39 -0800201}
202#endif
203
Simon Horman8afe97e2016-07-07 07:56:12 +0200204#if IS_ENABLED(CONFIG_MPLS)
Stefano Brivio32bbd872018-11-08 12:19:21 +0100205static int tunnelmpls4_err(struct sk_buff *skb, u32 info)
Simon Horman8afe97e2016-07-07 07:56:12 +0200206{
207 struct xfrm_tunnel *handler;
208
209 for_each_tunnel_rcu(tunnelmpls4_handlers, handler)
210 if (!handler->err_handler(skb, info))
Stefano Brivio32bbd872018-11-08 12:19:21 +0100211 return 0;
212
213 return -ENOENT;
Simon Horman8afe97e2016-07-07 07:56:12 +0200214}
215#endif
216
Alexey Dobriyan32613092009-09-14 12:21:47 +0000217static const struct net_protocol tunnel4_protocol = {
Herbert Xud2acc342006-03-28 01:12:13 -0800218 .handler = tunnel4_rcv,
219 .err_handler = tunnel4_err,
220 .no_policy = 1,
Pavel Emelyanov4597a0c2008-04-16 01:06:56 -0700221 .netns_ok = 1,
Herbert Xud2acc342006-03-28 01:12:13 -0800222};
223
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000224#if IS_ENABLED(CONFIG_IPV6)
Alexey Dobriyan32613092009-09-14 12:21:47 +0000225static const struct net_protocol tunnel64_protocol = {
Kazunori MIYAZAWAc0d56402007-02-13 12:54:47 -0800226 .handler = tunnel64_rcv,
Pavel Emelyanov99f93322007-11-10 21:47:39 -0800227 .err_handler = tunnel64_err,
Kazunori MIYAZAWAc0d56402007-02-13 12:54:47 -0800228 .no_policy = 1,
Pavel Emelyanovb0970c42008-04-16 01:17:39 -0700229 .netns_ok = 1,
Kazunori MIYAZAWAc0d56402007-02-13 12:54:47 -0800230};
231#endif
232
Simon Horman8afe97e2016-07-07 07:56:12 +0200233#if IS_ENABLED(CONFIG_MPLS)
234static const struct net_protocol tunnelmpls4_protocol = {
235 .handler = tunnelmpls4_rcv,
236 .err_handler = tunnelmpls4_err,
237 .no_policy = 1,
238 .netns_ok = 1,
239};
240#endif
241
Herbert Xud2acc342006-03-28 01:12:13 -0800242static int __init tunnel4_init(void)
243{
Simon Horman8afe97e2016-07-07 07:56:12 +0200244 if (inet_add_protocol(&tunnel4_protocol, IPPROTO_IPIP))
Simon Hormanaa9667e2016-07-10 10:20:11 +0900245 goto err;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000246#if IS_ENABLED(CONFIG_IPV6)
Simon Hormanaa9667e2016-07-10 10:20:11 +0900247 if (inet_add_protocol(&tunnel64_protocol, IPPROTO_IPV6)) {
248 inet_del_protocol(&tunnel4_protocol, IPPROTO_IPIP);
249 goto err;
250 }
Simon Horman8afe97e2016-07-07 07:56:12 +0200251#endif
252#if IS_ENABLED(CONFIG_MPLS)
Simon Hormanaa9667e2016-07-10 10:20:11 +0900253 if (inet_add_protocol(&tunnelmpls4_protocol, IPPROTO_MPLS)) {
254 inet_del_protocol(&tunnel4_protocol, IPPROTO_IPIP);
255#if IS_ENABLED(CONFIG_IPV6)
256 inet_del_protocol(&tunnel64_protocol, IPPROTO_IPV6);
257#endif
258 goto err;
259 }
Kazunori MIYAZAWAc0d56402007-02-13 12:54:47 -0800260#endif
Xin Long6df2db52020-07-06 20:01:30 +0800261#if IS_ENABLED(CONFIG_INET_XFRM_TUNNEL)
262 if (xfrm_input_register_afinfo(&tunnel4_input_afinfo)) {
263 inet_del_protocol(&tunnel4_protocol, IPPROTO_IPIP);
264#if IS_ENABLED(CONFIG_IPV6)
265 inet_del_protocol(&tunnel64_protocol, IPPROTO_IPV6);
266#endif
267#if IS_ENABLED(CONFIG_MPLS)
268 inet_del_protocol(&tunnelmpls4_protocol, IPPROTO_MPLS);
269#endif
270 goto err;
271 }
272#endif
Herbert Xud2acc342006-03-28 01:12:13 -0800273 return 0;
Simon Horman8afe97e2016-07-07 07:56:12 +0200274
Simon Hormanaa9667e2016-07-10 10:20:11 +0900275err:
Simon Horman8afe97e2016-07-07 07:56:12 +0200276 pr_err("%s: can't add protocol\n", __func__);
277 return -EAGAIN;
Herbert Xud2acc342006-03-28 01:12:13 -0800278}
279
280static void __exit tunnel4_fini(void)
281{
Xin Long6df2db52020-07-06 20:01:30 +0800282#if IS_ENABLED(CONFIG_INET_XFRM_TUNNEL)
283 if (xfrm_input_unregister_afinfo(&tunnel4_input_afinfo))
284 pr_err("tunnel4 close: can't remove input afinfo\n");
285#endif
Simon Horman8afe97e2016-07-07 07:56:12 +0200286#if IS_ENABLED(CONFIG_MPLS)
287 if (inet_del_protocol(&tunnelmpls4_protocol, IPPROTO_MPLS))
288 pr_err("tunnelmpls4 close: can't remove protocol\n");
289#endif
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000290#if IS_ENABLED(CONFIG_IPV6)
Kazunori MIYAZAWAc0d56402007-02-13 12:54:47 -0800291 if (inet_del_protocol(&tunnel64_protocol, IPPROTO_IPV6))
Joe Perches058bd4d2012-03-11 18:36:11 +0000292 pr_err("tunnel64 close: can't remove protocol\n");
Kazunori MIYAZAWAc0d56402007-02-13 12:54:47 -0800293#endif
Herbert Xud2acc342006-03-28 01:12:13 -0800294 if (inet_del_protocol(&tunnel4_protocol, IPPROTO_IPIP))
Joe Perches058bd4d2012-03-11 18:36:11 +0000295 pr_err("tunnel4 close: can't remove protocol\n");
Herbert Xud2acc342006-03-28 01:12:13 -0800296}
297
298module_init(tunnel4_init);
299module_exit(tunnel4_fini);
300MODULE_LICENSE("GPL");