blob: 4b0f50d9a962d9cab94e2a567d23183fe6dac441 [file] [log] [blame]
Herbert Xud2acc342006-03-28 01:12:13 -08001/*
2 * Copyright (C)2003,2004 USAGI/WIDE Project
3 *
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.
8 *
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.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Authors Mitsuru KANDA <mk@linux-ipv6.org>
19 * YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
20 */
21
Joe Perchesf3213832012-05-15 14:11:53 +000022#define pr_fmt(fmt) "IPv6: " fmt
23
Herbert Xu50fba2a2006-04-04 13:50:45 -070024#include <linux/icmpv6.h>
Herbert Xud2acc342006-03-28 01:12:13 -080025#include <linux/init.h>
26#include <linux/module.h>
27#include <linux/mutex.h>
28#include <linux/netdevice.h>
29#include <linux/skbuff.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Herbert Xu50fba2a2006-04-04 13:50:45 -070031#include <net/ipv6.h>
Herbert Xud2acc342006-03-28 01:12:13 -080032#include <net/protocol.h>
33#include <net/xfrm.h>
34
Eric Dumazet6f0bcf12010-10-24 21:33:16 +000035static struct xfrm6_tunnel __rcu *tunnel6_handlers __read_mostly;
36static struct xfrm6_tunnel __rcu *tunnel46_handlers __read_mostly;
Herbert Xud2acc342006-03-28 01:12:13 -080037static DEFINE_MUTEX(tunnel6_mutex);
38
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -080039int xfrm6_tunnel_register(struct xfrm6_tunnel *handler, unsigned short family)
Herbert Xud2acc342006-03-28 01:12:13 -080040{
Eric Dumazet6f0bcf12010-10-24 21:33:16 +000041 struct xfrm6_tunnel __rcu **pprev;
42 struct xfrm6_tunnel *t;
Herbert Xud2acc342006-03-28 01:12:13 -080043 int ret = -EEXIST;
44 int priority = handler->priority;
45
46 mutex_lock(&tunnel6_mutex);
47
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -080048 for (pprev = (family == AF_INET6) ? &tunnel6_handlers : &tunnel46_handlers;
Eric Dumazet6f0bcf12010-10-24 21:33:16 +000049 (t = rcu_dereference_protected(*pprev,
50 lockdep_is_held(&tunnel6_mutex))) != NULL;
51 pprev = &t->next) {
52 if (t->priority > priority)
Herbert Xud2acc342006-03-28 01:12:13 -080053 break;
Eric Dumazet6f0bcf12010-10-24 21:33:16 +000054 if (t->priority == priority)
Herbert Xud2acc342006-03-28 01:12:13 -080055 goto err;
56 }
57
58 handler->next = *pprev;
Eric Dumazet49d61e22010-09-09 05:33:43 +000059 rcu_assign_pointer(*pprev, handler);
Herbert Xud2acc342006-03-28 01:12:13 -080060
61 ret = 0;
62
63err:
64 mutex_unlock(&tunnel6_mutex);
65
66 return ret;
67}
68
69EXPORT_SYMBOL(xfrm6_tunnel_register);
70
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -080071int xfrm6_tunnel_deregister(struct xfrm6_tunnel *handler, unsigned short family)
Herbert Xud2acc342006-03-28 01:12:13 -080072{
Eric Dumazet6f0bcf12010-10-24 21:33:16 +000073 struct xfrm6_tunnel __rcu **pprev;
74 struct xfrm6_tunnel *t;
Herbert Xud2acc342006-03-28 01:12:13 -080075 int ret = -ENOENT;
76
77 mutex_lock(&tunnel6_mutex);
78
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -080079 for (pprev = (family == AF_INET6) ? &tunnel6_handlers : &tunnel46_handlers;
Eric Dumazet6f0bcf12010-10-24 21:33:16 +000080 (t = rcu_dereference_protected(*pprev,
81 lockdep_is_held(&tunnel6_mutex))) != NULL;
82 pprev = &t->next) {
83 if (t == handler) {
Herbert Xud2acc342006-03-28 01:12:13 -080084 *pprev = handler->next;
85 ret = 0;
86 break;
87 }
88 }
89
90 mutex_unlock(&tunnel6_mutex);
91
92 synchronize_net();
93
94 return ret;
95}
96
97EXPORT_SYMBOL(xfrm6_tunnel_deregister);
98
Eric Dumazet875168a2010-08-30 11:07:25 +000099#define for_each_tunnel_rcu(head, handler) \
100 for (handler = rcu_dereference(head); \
101 handler != NULL; \
102 handler = rcu_dereference(handler->next)) \
103
Herbert Xue5bbef22007-10-15 12:50:28 -0700104static int tunnel6_rcv(struct sk_buff *skb)
Herbert Xud2acc342006-03-28 01:12:13 -0800105{
Herbert Xud2acc342006-03-28 01:12:13 -0800106 struct xfrm6_tunnel *handler;
107
Herbert Xu50fba2a2006-04-04 13:50:45 -0700108 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
109 goto drop;
110
Eric Dumazet875168a2010-08-30 11:07:25 +0000111 for_each_tunnel_rcu(tunnel6_handlers, handler)
Herbert Xud2acc342006-03-28 01:12:13 -0800112 if (!handler->handler(skb))
113 return 0;
114
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000115 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
Herbert Xu50fba2a2006-04-04 13:50:45 -0700116
117drop:
Herbert Xud2acc342006-03-28 01:12:13 -0800118 kfree_skb(skb);
119 return 0;
120}
121
Herbert Xue5bbef22007-10-15 12:50:28 -0700122static int tunnel46_rcv(struct sk_buff *skb)
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -0800123{
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -0800124 struct xfrm6_tunnel *handler;
125
Colin82836372008-05-27 00:04:43 +0800126 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -0800127 goto drop;
128
Eric Dumazet875168a2010-08-30 11:07:25 +0000129 for_each_tunnel_rcu(tunnel46_handlers, handler)
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -0800130 if (!handler->handler(skb))
131 return 0;
132
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000133 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -0800134
135drop:
136 kfree_skb(skb);
137 return 0;
138}
139
Herbert Xud2acc342006-03-28 01:12:13 -0800140static void tunnel6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700141 u8 type, u8 code, int offset, __be32 info)
Herbert Xud2acc342006-03-28 01:12:13 -0800142{
143 struct xfrm6_tunnel *handler;
144
Eric Dumazet875168a2010-08-30 11:07:25 +0000145 for_each_tunnel_rcu(tunnel6_handlers, handler)
Herbert Xud2acc342006-03-28 01:12:13 -0800146 if (!handler->err_handler(skb, opt, type, code, offset, info))
147 break;
148}
149
Alexey Dobriyan41135cc2009-09-14 12:22:28 +0000150static const struct inet6_protocol tunnel6_protocol = {
Herbert Xud2acc342006-03-28 01:12:13 -0800151 .handler = tunnel6_rcv,
152 .err_handler = tunnel6_err,
153 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
154};
155
Alexey Dobriyan41135cc2009-09-14 12:22:28 +0000156static const struct inet6_protocol tunnel46_protocol = {
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -0800157 .handler = tunnel46_rcv,
158 .err_handler = tunnel6_err,
159 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
160};
161
Herbert Xud2acc342006-03-28 01:12:13 -0800162static int __init tunnel6_init(void)
163{
164 if (inet6_add_protocol(&tunnel6_protocol, IPPROTO_IPV6)) {
Joe Perchesf3213832012-05-15 14:11:53 +0000165 pr_err("%s: can't add protocol\n", __func__);
Herbert Xud2acc342006-03-28 01:12:13 -0800166 return -EAGAIN;
167 }
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -0800168 if (inet6_add_protocol(&tunnel46_protocol, IPPROTO_IPIP)) {
Joe Perchesf3213832012-05-15 14:11:53 +0000169 pr_err("%s: can't add protocol\n", __func__);
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -0800170 inet6_del_protocol(&tunnel6_protocol, IPPROTO_IPV6);
171 return -EAGAIN;
172 }
Herbert Xud2acc342006-03-28 01:12:13 -0800173 return 0;
174}
175
176static void __exit tunnel6_fini(void)
177{
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -0800178 if (inet6_del_protocol(&tunnel46_protocol, IPPROTO_IPIP))
Joe Perchesf3213832012-05-15 14:11:53 +0000179 pr_err("%s: can't remove protocol\n", __func__);
Herbert Xud2acc342006-03-28 01:12:13 -0800180 if (inet6_del_protocol(&tunnel6_protocol, IPPROTO_IPV6))
Joe Perchesf3213832012-05-15 14:11:53 +0000181 pr_err("%s: can't remove protocol\n", __func__);
Herbert Xud2acc342006-03-28 01:12:13 -0800182}
183
184module_init(tunnel6_init);
185module_exit(tunnel6_fini);
186MODULE_LICENSE("GPL");