Thomas Gleixner | 1ccea77 | 2019-05-19 15:51:43 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C)2003,2004 USAGI/WIDE Project |
| 4 | * |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 5 | * Authors Mitsuru KANDA <mk@linux-ipv6.org> |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 6 | * YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 7 | */ |
| 8 | |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 9 | #define pr_fmt(fmt) "IPv6: " fmt |
| 10 | |
Herbert Xu | 50fba2a | 2006-04-04 13:50:45 -0700 | [diff] [blame] | 11 | #include <linux/icmpv6.h> |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 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> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 17 | #include <linux/slab.h> |
Herbert Xu | 50fba2a | 2006-04-04 13:50:45 -0700 | [diff] [blame] | 18 | #include <net/ipv6.h> |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 19 | #include <net/protocol.h> |
| 20 | #include <net/xfrm.h> |
| 21 | |
Eric Dumazet | 6f0bcf1 | 2010-10-24 21:33:16 +0000 | [diff] [blame] | 22 | static struct xfrm6_tunnel __rcu *tunnel6_handlers __read_mostly; |
| 23 | static struct xfrm6_tunnel __rcu *tunnel46_handlers __read_mostly; |
Vadim Fedorenko | f234efa | 2020-05-20 18:21:37 +0300 | [diff] [blame] | 24 | static struct xfrm6_tunnel __rcu *tunnelmpls6_handlers __read_mostly; |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 25 | static DEFINE_MUTEX(tunnel6_mutex); |
| 26 | |
Vadim Fedorenko | f234efa | 2020-05-20 18:21:37 +0300 | [diff] [blame] | 27 | static inline int xfrm6_tunnel_mpls_supported(void) |
| 28 | { |
| 29 | return IS_ENABLED(CONFIG_MPLS); |
| 30 | } |
| 31 | |
Kazunori MIYAZAWA | 73d605d | 2007-02-13 12:55:55 -0800 | [diff] [blame] | 32 | int xfrm6_tunnel_register(struct xfrm6_tunnel *handler, unsigned short family) |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 33 | { |
Eric Dumazet | 6f0bcf1 | 2010-10-24 21:33:16 +0000 | [diff] [blame] | 34 | struct xfrm6_tunnel __rcu **pprev; |
| 35 | struct xfrm6_tunnel *t; |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 36 | int ret = -EEXIST; |
| 37 | int priority = handler->priority; |
| 38 | |
| 39 | mutex_lock(&tunnel6_mutex); |
| 40 | |
Vadim Fedorenko | f234efa | 2020-05-20 18:21:37 +0300 | [diff] [blame] | 41 | switch (family) { |
| 42 | case AF_INET6: |
| 43 | pprev = &tunnel6_handlers; |
| 44 | break; |
| 45 | case AF_INET: |
| 46 | pprev = &tunnel46_handlers; |
| 47 | break; |
| 48 | case AF_MPLS: |
| 49 | pprev = &tunnelmpls6_handlers; |
| 50 | break; |
| 51 | default: |
| 52 | goto err; |
| 53 | } |
| 54 | |
| 55 | for (; (t = rcu_dereference_protected(*pprev, |
Eric Dumazet | 6f0bcf1 | 2010-10-24 21:33:16 +0000 | [diff] [blame] | 56 | lockdep_is_held(&tunnel6_mutex))) != NULL; |
| 57 | pprev = &t->next) { |
| 58 | if (t->priority > priority) |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 59 | break; |
Eric Dumazet | 6f0bcf1 | 2010-10-24 21:33:16 +0000 | [diff] [blame] | 60 | if (t->priority == priority) |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 61 | goto err; |
| 62 | } |
| 63 | |
| 64 | handler->next = *pprev; |
Eric Dumazet | 49d61e2 | 2010-09-09 05:33:43 +0000 | [diff] [blame] | 65 | rcu_assign_pointer(*pprev, handler); |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 66 | |
| 67 | ret = 0; |
| 68 | |
| 69 | err: |
| 70 | mutex_unlock(&tunnel6_mutex); |
| 71 | |
| 72 | return ret; |
| 73 | } |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 74 | EXPORT_SYMBOL(xfrm6_tunnel_register); |
| 75 | |
Kazunori MIYAZAWA | 73d605d | 2007-02-13 12:55:55 -0800 | [diff] [blame] | 76 | int xfrm6_tunnel_deregister(struct xfrm6_tunnel *handler, unsigned short family) |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 77 | { |
Eric Dumazet | 6f0bcf1 | 2010-10-24 21:33:16 +0000 | [diff] [blame] | 78 | struct xfrm6_tunnel __rcu **pprev; |
| 79 | struct xfrm6_tunnel *t; |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 80 | int ret = -ENOENT; |
| 81 | |
| 82 | mutex_lock(&tunnel6_mutex); |
| 83 | |
Vadim Fedorenko | f234efa | 2020-05-20 18:21:37 +0300 | [diff] [blame] | 84 | switch (family) { |
| 85 | case AF_INET6: |
| 86 | pprev = &tunnel6_handlers; |
| 87 | break; |
| 88 | case AF_INET: |
| 89 | pprev = &tunnel46_handlers; |
| 90 | break; |
| 91 | case AF_MPLS: |
| 92 | pprev = &tunnelmpls6_handlers; |
| 93 | break; |
| 94 | default: |
| 95 | goto err; |
| 96 | } |
| 97 | |
| 98 | for (; (t = rcu_dereference_protected(*pprev, |
Eric Dumazet | 6f0bcf1 | 2010-10-24 21:33:16 +0000 | [diff] [blame] | 99 | lockdep_is_held(&tunnel6_mutex))) != NULL; |
| 100 | pprev = &t->next) { |
| 101 | if (t == handler) { |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 102 | *pprev = handler->next; |
| 103 | ret = 0; |
| 104 | break; |
| 105 | } |
| 106 | } |
| 107 | |
Vadim Fedorenko | f234efa | 2020-05-20 18:21:37 +0300 | [diff] [blame] | 108 | err: |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 109 | mutex_unlock(&tunnel6_mutex); |
| 110 | |
| 111 | synchronize_net(); |
| 112 | |
| 113 | return ret; |
| 114 | } |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 115 | EXPORT_SYMBOL(xfrm6_tunnel_deregister); |
| 116 | |
Eric Dumazet | 875168a | 2010-08-30 11:07:25 +0000 | [diff] [blame] | 117 | #define for_each_tunnel_rcu(head, handler) \ |
| 118 | for (handler = rcu_dereference(head); \ |
| 119 | handler != NULL; \ |
| 120 | handler = rcu_dereference(handler->next)) \ |
| 121 | |
Vadim Fedorenko | f234efa | 2020-05-20 18:21:37 +0300 | [diff] [blame] | 122 | static int tunnelmpls6_rcv(struct sk_buff *skb) |
| 123 | { |
| 124 | struct xfrm6_tunnel *handler; |
| 125 | |
| 126 | if (!pskb_may_pull(skb, sizeof(struct ipv6hdr))) |
| 127 | goto drop; |
| 128 | |
| 129 | for_each_tunnel_rcu(tunnelmpls6_handlers, handler) |
| 130 | if (!handler->handler(skb)) |
| 131 | return 0; |
| 132 | |
| 133 | icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0); |
| 134 | |
| 135 | drop: |
| 136 | kfree_skb(skb); |
| 137 | return 0; |
| 138 | } |
| 139 | |
Herbert Xu | e5bbef2 | 2007-10-15 12:50:28 -0700 | [diff] [blame] | 140 | static int tunnel6_rcv(struct sk_buff *skb) |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 141 | { |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 142 | struct xfrm6_tunnel *handler; |
| 143 | |
Herbert Xu | 50fba2a | 2006-04-04 13:50:45 -0700 | [diff] [blame] | 144 | if (!pskb_may_pull(skb, sizeof(struct ipv6hdr))) |
| 145 | goto drop; |
| 146 | |
Eric Dumazet | 875168a | 2010-08-30 11:07:25 +0000 | [diff] [blame] | 147 | for_each_tunnel_rcu(tunnel6_handlers, handler) |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 148 | if (!handler->handler(skb)) |
| 149 | return 0; |
| 150 | |
Alexey Dobriyan | 3ffe533 | 2010-02-18 08:25:24 +0000 | [diff] [blame] | 151 | icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0); |
Herbert Xu | 50fba2a | 2006-04-04 13:50:45 -0700 | [diff] [blame] | 152 | |
| 153 | drop: |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 154 | kfree_skb(skb); |
| 155 | return 0; |
| 156 | } |
| 157 | |
Xin Long | 86afc70 | 2020-07-06 20:01:31 +0800 | [diff] [blame] | 158 | #if IS_ENABLED(CONFIG_INET6_XFRM_TUNNEL) |
| 159 | static int tunnel6_rcv_cb(struct sk_buff *skb, u8 proto, int err) |
| 160 | { |
| 161 | struct xfrm6_tunnel __rcu *head; |
| 162 | struct xfrm6_tunnel *handler; |
| 163 | int ret; |
| 164 | |
| 165 | head = (proto == IPPROTO_IPV6) ? tunnel6_handlers : tunnel46_handlers; |
| 166 | |
| 167 | for_each_tunnel_rcu(head, handler) { |
| 168 | if (handler->cb_handler) { |
| 169 | ret = handler->cb_handler(skb, err); |
| 170 | if (ret <= 0) |
| 171 | return ret; |
| 172 | } |
| 173 | } |
| 174 | |
| 175 | return 0; |
| 176 | } |
| 177 | |
| 178 | static const struct xfrm_input_afinfo tunnel6_input_afinfo = { |
| 179 | .family = AF_INET6, |
| 180 | .is_ipip = true, |
| 181 | .callback = tunnel6_rcv_cb, |
| 182 | }; |
| 183 | #endif |
| 184 | |
Herbert Xu | e5bbef2 | 2007-10-15 12:50:28 -0700 | [diff] [blame] | 185 | static int tunnel46_rcv(struct sk_buff *skb) |
Kazunori MIYAZAWA | 73d605d | 2007-02-13 12:55:55 -0800 | [diff] [blame] | 186 | { |
Kazunori MIYAZAWA | 73d605d | 2007-02-13 12:55:55 -0800 | [diff] [blame] | 187 | struct xfrm6_tunnel *handler; |
| 188 | |
Colin | 8283637 | 2008-05-27 00:04:43 +0800 | [diff] [blame] | 189 | if (!pskb_may_pull(skb, sizeof(struct iphdr))) |
Kazunori MIYAZAWA | 73d605d | 2007-02-13 12:55:55 -0800 | [diff] [blame] | 190 | goto drop; |
| 191 | |
Eric Dumazet | 875168a | 2010-08-30 11:07:25 +0000 | [diff] [blame] | 192 | for_each_tunnel_rcu(tunnel46_handlers, handler) |
Kazunori MIYAZAWA | 73d605d | 2007-02-13 12:55:55 -0800 | [diff] [blame] | 193 | if (!handler->handler(skb)) |
| 194 | return 0; |
| 195 | |
Alexey Dobriyan | 3ffe533 | 2010-02-18 08:25:24 +0000 | [diff] [blame] | 196 | icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0); |
Kazunori MIYAZAWA | 73d605d | 2007-02-13 12:55:55 -0800 | [diff] [blame] | 197 | |
| 198 | drop: |
| 199 | kfree_skb(skb); |
| 200 | return 0; |
| 201 | } |
| 202 | |
Stefano Brivio | 32bbd87 | 2018-11-08 12:19:21 +0100 | [diff] [blame] | 203 | static int tunnel6_err(struct sk_buff *skb, struct inet6_skb_parm *opt, |
Brian Haley | d5fdd6b | 2009-06-23 04:31:07 -0700 | [diff] [blame] | 204 | u8 type, u8 code, int offset, __be32 info) |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 205 | { |
| 206 | struct xfrm6_tunnel *handler; |
| 207 | |
Eric Dumazet | 875168a | 2010-08-30 11:07:25 +0000 | [diff] [blame] | 208 | for_each_tunnel_rcu(tunnel6_handlers, handler) |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 209 | if (!handler->err_handler(skb, opt, type, code, offset, info)) |
Stefano Brivio | 32bbd87 | 2018-11-08 12:19:21 +0100 | [diff] [blame] | 210 | return 0; |
| 211 | |
| 212 | return -ENOENT; |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 213 | } |
| 214 | |
Stefano Brivio | 32bbd87 | 2018-11-08 12:19:21 +0100 | [diff] [blame] | 215 | static int tunnel46_err(struct sk_buff *skb, struct inet6_skb_parm *opt, |
Michal Kubeček | ebac62f | 2015-11-03 08:51:07 +0100 | [diff] [blame] | 216 | u8 type, u8 code, int offset, __be32 info) |
| 217 | { |
| 218 | struct xfrm6_tunnel *handler; |
| 219 | |
| 220 | for_each_tunnel_rcu(tunnel46_handlers, handler) |
| 221 | if (!handler->err_handler(skb, opt, type, code, offset, info)) |
Stefano Brivio | 32bbd87 | 2018-11-08 12:19:21 +0100 | [diff] [blame] | 222 | return 0; |
| 223 | |
| 224 | return -ENOENT; |
Michal Kubeček | ebac62f | 2015-11-03 08:51:07 +0100 | [diff] [blame] | 225 | } |
| 226 | |
Vadim Fedorenko | f234efa | 2020-05-20 18:21:37 +0300 | [diff] [blame] | 227 | static int tunnelmpls6_err(struct sk_buff *skb, struct inet6_skb_parm *opt, |
| 228 | u8 type, u8 code, int offset, __be32 info) |
| 229 | { |
| 230 | struct xfrm6_tunnel *handler; |
| 231 | |
| 232 | for_each_tunnel_rcu(tunnelmpls6_handlers, handler) |
| 233 | if (!handler->err_handler(skb, opt, type, code, offset, info)) |
| 234 | return 0; |
| 235 | |
| 236 | return -ENOENT; |
| 237 | } |
| 238 | |
Alexey Dobriyan | 41135cc | 2009-09-14 12:22:28 +0000 | [diff] [blame] | 239 | static const struct inet6_protocol tunnel6_protocol = { |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 240 | .handler = tunnel6_rcv, |
| 241 | .err_handler = tunnel6_err, |
| 242 | .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL, |
| 243 | }; |
| 244 | |
Alexey Dobriyan | 41135cc | 2009-09-14 12:22:28 +0000 | [diff] [blame] | 245 | static const struct inet6_protocol tunnel46_protocol = { |
Kazunori MIYAZAWA | 73d605d | 2007-02-13 12:55:55 -0800 | [diff] [blame] | 246 | .handler = tunnel46_rcv, |
Michal Kubeček | ebac62f | 2015-11-03 08:51:07 +0100 | [diff] [blame] | 247 | .err_handler = tunnel46_err, |
Kazunori MIYAZAWA | 73d605d | 2007-02-13 12:55:55 -0800 | [diff] [blame] | 248 | .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL, |
| 249 | }; |
| 250 | |
Vadim Fedorenko | f234efa | 2020-05-20 18:21:37 +0300 | [diff] [blame] | 251 | static const struct inet6_protocol tunnelmpls6_protocol = { |
| 252 | .handler = tunnelmpls6_rcv, |
| 253 | .err_handler = tunnelmpls6_err, |
| 254 | .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL, |
| 255 | }; |
| 256 | |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 257 | static int __init tunnel6_init(void) |
| 258 | { |
| 259 | if (inet6_add_protocol(&tunnel6_protocol, IPPROTO_IPV6)) { |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 260 | pr_err("%s: can't add protocol\n", __func__); |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 261 | return -EAGAIN; |
| 262 | } |
Kazunori MIYAZAWA | 73d605d | 2007-02-13 12:55:55 -0800 | [diff] [blame] | 263 | if (inet6_add_protocol(&tunnel46_protocol, IPPROTO_IPIP)) { |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 264 | pr_err("%s: can't add protocol\n", __func__); |
Kazunori MIYAZAWA | 73d605d | 2007-02-13 12:55:55 -0800 | [diff] [blame] | 265 | inet6_del_protocol(&tunnel6_protocol, IPPROTO_IPV6); |
| 266 | return -EAGAIN; |
| 267 | } |
Vadim Fedorenko | f234efa | 2020-05-20 18:21:37 +0300 | [diff] [blame] | 268 | if (xfrm6_tunnel_mpls_supported() && |
| 269 | inet6_add_protocol(&tunnelmpls6_protocol, IPPROTO_MPLS)) { |
| 270 | pr_err("%s: can't add protocol\n", __func__); |
| 271 | inet6_del_protocol(&tunnel6_protocol, IPPROTO_IPV6); |
| 272 | inet6_del_protocol(&tunnel46_protocol, IPPROTO_IPIP); |
| 273 | return -EAGAIN; |
| 274 | } |
Xin Long | 86afc70 | 2020-07-06 20:01:31 +0800 | [diff] [blame] | 275 | #if IS_ENABLED(CONFIG_INET6_XFRM_TUNNEL) |
| 276 | if (xfrm_input_register_afinfo(&tunnel6_input_afinfo)) { |
| 277 | pr_err("%s: can't add input afinfo\n", __func__); |
| 278 | inet6_del_protocol(&tunnel6_protocol, IPPROTO_IPV6); |
| 279 | inet6_del_protocol(&tunnel46_protocol, IPPROTO_IPIP); |
| 280 | if (xfrm6_tunnel_mpls_supported()) |
| 281 | inet6_del_protocol(&tunnelmpls6_protocol, IPPROTO_MPLS); |
| 282 | return -EAGAIN; |
| 283 | } |
| 284 | #endif |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 285 | return 0; |
| 286 | } |
| 287 | |
| 288 | static void __exit tunnel6_fini(void) |
| 289 | { |
Xin Long | 86afc70 | 2020-07-06 20:01:31 +0800 | [diff] [blame] | 290 | #if IS_ENABLED(CONFIG_INET6_XFRM_TUNNEL) |
| 291 | if (xfrm_input_unregister_afinfo(&tunnel6_input_afinfo)) |
| 292 | pr_err("%s: can't remove input afinfo\n", __func__); |
| 293 | #endif |
Kazunori MIYAZAWA | 73d605d | 2007-02-13 12:55:55 -0800 | [diff] [blame] | 294 | if (inet6_del_protocol(&tunnel46_protocol, IPPROTO_IPIP)) |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 295 | pr_err("%s: can't remove protocol\n", __func__); |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 296 | if (inet6_del_protocol(&tunnel6_protocol, IPPROTO_IPV6)) |
Joe Perches | f321383 | 2012-05-15 14:11:53 +0000 | [diff] [blame] | 297 | pr_err("%s: can't remove protocol\n", __func__); |
Vadim Fedorenko | f234efa | 2020-05-20 18:21:37 +0300 | [diff] [blame] | 298 | if (xfrm6_tunnel_mpls_supported() && |
| 299 | inet6_del_protocol(&tunnelmpls6_protocol, IPPROTO_MPLS)) |
| 300 | pr_err("%s: can't remove protocol\n", __func__); |
Herbert Xu | d2acc34 | 2006-03-28 01:12:13 -0800 | [diff] [blame] | 301 | } |
| 302 | |
| 303 | module_init(tunnel6_init); |
| 304 | module_exit(tunnel6_fini); |
| 305 | MODULE_LICENSE("GPL"); |