blob: e1c0bbe7996cf8ca00374db26488bd85e02a36ad [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * 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.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090013 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * You should have received a copy of the GNU General Public License
Jeff Kirshera99421d2013-12-06 09:13:39 -080015 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 *
17 * Authors Mitsuru KANDA <mk@linux-ipv6.org>
Ian Morris67ba4152014-08-24 21:53:10 +010018 * YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 *
20 * Based on net/ipv4/xfrm4_tunnel.c
21 *
22 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/module.h>
24#include <linux/xfrm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Eric Dumazet91cc3bb2009-10-23 18:19:19 +000026#include <linux/rculist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <net/ip.h>
28#include <net/xfrm.h>
29#include <net/ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/ipv6.h>
31#include <linux/icmpv6.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080032#include <linux/mutex.h>
Alexey Dobriyana1664772010-01-25 10:37:54 +000033#include <net/netns/generic.h>
34
35#define XFRM6_TUNNEL_SPI_BYADDR_HSIZE 256
36#define XFRM6_TUNNEL_SPI_BYSPI_HSIZE 256
37
38#define XFRM6_TUNNEL_SPI_MIN 1
39#define XFRM6_TUNNEL_SPI_MAX 0xffffffff
40
41struct xfrm6_tunnel_net {
42 struct hlist_head spi_byaddr[XFRM6_TUNNEL_SPI_BYADDR_HSIZE];
43 struct hlist_head spi_byspi[XFRM6_TUNNEL_SPI_BYSPI_HSIZE];
44 u32 spi;
45};
46
47static int xfrm6_tunnel_net_id __read_mostly;
48static inline struct xfrm6_tunnel_net *xfrm6_tunnel_pernet(struct net *net)
49{
50 return net_generic(net, xfrm6_tunnel_net_id);
51}
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090054 * xfrm_tunnel_spi things are for allocating unique id ("spi")
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 * per xfrm_address_t.
56 */
57struct xfrm6_tunnel_spi {
Eric Dumazet91cc3bb2009-10-23 18:19:19 +000058 struct hlist_node list_byaddr;
59 struct hlist_node list_byspi;
60 xfrm_address_t addr;
61 u32 spi;
62 atomic_t refcnt;
63 struct rcu_head rcu_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65
Eric Dumazet91cc3bb2009-10-23 18:19:19 +000066static DEFINE_SPINLOCK(xfrm6_tunnel_spi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Christoph Lametere18b8902006-12-06 20:33:20 -080068static struct kmem_cache *xfrm6_tunnel_spi_kmem __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Eric Dumazet95c96172012-04-15 05:58:06 +000070static inline unsigned int xfrm6_tunnel_spi_hash_byaddr(const xfrm_address_t *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
Eric Dumazet95c96172012-04-15 05:58:06 +000072 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
YOSHIFUJI Hideaki / 吉藤英明2b464f62013-01-13 05:02:38 +000074 h = ipv6_addr_hash((const struct in6_addr *)addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 h ^= h >> 16;
76 h ^= h >> 8;
77 h &= XFRM6_TUNNEL_SPI_BYADDR_HSIZE - 1;
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 return h;
80}
81
Eric Dumazet95c96172012-04-15 05:58:06 +000082static inline unsigned int xfrm6_tunnel_spi_hash_byspi(u32 spi)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
84 return spi % XFRM6_TUNNEL_SPI_BYSPI_HSIZE;
85}
86
Eric Dumazetb71d1d42011-04-22 04:53:02 +000087static struct xfrm6_tunnel_spi *__xfrm6_tunnel_spi_lookup(struct net *net, const xfrm_address_t *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Alexey Dobriyana1664772010-01-25 10:37:54 +000089 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 struct xfrm6_tunnel_spi *x6spi;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Sasha Levinb67bfe02013-02-27 17:06:00 -080092 hlist_for_each_entry_rcu(x6spi,
Alexey Dobriyana1664772010-01-25 10:37:54 +000093 &xfrm6_tn->spi_byaddr[xfrm6_tunnel_spi_hash_byaddr(saddr)],
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 list_byaddr) {
YOSHIFUJI Hideaki / 吉藤英明ff88b302013-01-29 12:48:31 +000095 if (xfrm6_addr_equal(&x6spi->addr, saddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 return x6spi;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 }
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 return NULL;
100}
101
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000102__be32 xfrm6_tunnel_spi_lookup(struct net *net, const xfrm_address_t *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
104 struct xfrm6_tunnel_spi *x6spi;
105 u32 spi;
106
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000107 rcu_read_lock_bh();
Alexey Dobriyana1664772010-01-25 10:37:54 +0000108 x6spi = __xfrm6_tunnel_spi_lookup(net, saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 spi = x6spi ? x6spi->spi : 0;
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000110 rcu_read_unlock_bh();
Al Viro5b122542006-11-01 15:28:58 -0800111 return htonl(spi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113EXPORT_SYMBOL(xfrm6_tunnel_spi_lookup);
114
Alexey Dobriyana1664772010-01-25 10:37:54 +0000115static int __xfrm6_tunnel_spi_check(struct net *net, u32 spi)
YOSHIFUJI Hideakidf8ea192008-02-19 22:54:00 +0900116{
Alexey Dobriyana1664772010-01-25 10:37:54 +0000117 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
YOSHIFUJI Hideakidf8ea192008-02-19 22:54:00 +0900118 struct xfrm6_tunnel_spi *x6spi;
119 int index = xfrm6_tunnel_spi_hash_byspi(spi);
YOSHIFUJI Hideakidf8ea192008-02-19 22:54:00 +0900120
Sasha Levinb67bfe02013-02-27 17:06:00 -0800121 hlist_for_each_entry(x6spi,
Alexey Dobriyana1664772010-01-25 10:37:54 +0000122 &xfrm6_tn->spi_byspi[index],
YOSHIFUJI Hideakidf8ea192008-02-19 22:54:00 +0900123 list_byspi) {
124 if (x6spi->spi == spi)
125 return -1;
126 }
127 return index;
128}
129
Alexey Dobriyana1664772010-01-25 10:37:54 +0000130static u32 __xfrm6_tunnel_alloc_spi(struct net *net, xfrm_address_t *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Alexey Dobriyana1664772010-01-25 10:37:54 +0000132 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 u32 spi;
134 struct xfrm6_tunnel_spi *x6spi;
YOSHIFUJI Hideakidf8ea192008-02-19 22:54:00 +0900135 int index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Alexey Dobriyana1664772010-01-25 10:37:54 +0000137 if (xfrm6_tn->spi < XFRM6_TUNNEL_SPI_MIN ||
138 xfrm6_tn->spi >= XFRM6_TUNNEL_SPI_MAX)
139 xfrm6_tn->spi = XFRM6_TUNNEL_SPI_MIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 else
Alexey Dobriyana1664772010-01-25 10:37:54 +0000141 xfrm6_tn->spi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Alexey Dobriyana1664772010-01-25 10:37:54 +0000143 for (spi = xfrm6_tn->spi; spi <= XFRM6_TUNNEL_SPI_MAX; spi++) {
144 index = __xfrm6_tunnel_spi_check(net, spi);
YOSHIFUJI Hideakidf8ea192008-02-19 22:54:00 +0900145 if (index >= 0)
146 goto alloc_spi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 }
Alexey Dobriyana1664772010-01-25 10:37:54 +0000148 for (spi = XFRM6_TUNNEL_SPI_MIN; spi < xfrm6_tn->spi; spi++) {
149 index = __xfrm6_tunnel_spi_check(net, spi);
YOSHIFUJI Hideakidf8ea192008-02-19 22:54:00 +0900150 if (index >= 0)
151 goto alloc_spi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 }
153 spi = 0;
154 goto out;
155alloc_spi:
Alexey Dobriyana1664772010-01-25 10:37:54 +0000156 xfrm6_tn->spi = spi;
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800157 x6spi = kmem_cache_alloc(xfrm6_tunnel_spi_kmem, GFP_ATOMIC);
David S. Millera922ba52006-07-24 13:49:06 -0700158 if (!x6spi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 goto out;
David S. Millera922ba52006-07-24 13:49:06 -0700160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 memcpy(&x6spi->addr, saddr, sizeof(x6spi->addr));
162 x6spi->spi = spi;
163 atomic_set(&x6spi->refcnt, 1);
164
Alexey Dobriyana1664772010-01-25 10:37:54 +0000165 hlist_add_head_rcu(&x6spi->list_byspi, &xfrm6_tn->spi_byspi[index]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167 index = xfrm6_tunnel_spi_hash_byaddr(saddr);
Alexey Dobriyana1664772010-01-25 10:37:54 +0000168 hlist_add_head_rcu(&x6spi->list_byaddr, &xfrm6_tn->spi_byaddr[index]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 return spi;
171}
172
Alexey Dobriyana1664772010-01-25 10:37:54 +0000173__be32 xfrm6_tunnel_alloc_spi(struct net *net, xfrm_address_t *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
175 struct xfrm6_tunnel_spi *x6spi;
176 u32 spi;
177
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000178 spin_lock_bh(&xfrm6_tunnel_spi_lock);
Alexey Dobriyana1664772010-01-25 10:37:54 +0000179 x6spi = __xfrm6_tunnel_spi_lookup(net, saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 if (x6spi) {
181 atomic_inc(&x6spi->refcnt);
182 spi = x6spi->spi;
183 } else
Alexey Dobriyana1664772010-01-25 10:37:54 +0000184 spi = __xfrm6_tunnel_alloc_spi(net, saddr);
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000185 spin_unlock_bh(&xfrm6_tunnel_spi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Al Viro5b122542006-11-01 15:28:58 -0800187 return htonl(spi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189EXPORT_SYMBOL(xfrm6_tunnel_alloc_spi);
190
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000191static void x6spi_destroy_rcu(struct rcu_head *head)
192{
193 kmem_cache_free(xfrm6_tunnel_spi_kmem,
194 container_of(head, struct xfrm6_tunnel_spi, rcu_head));
195}
196
stephen hemminger6f747ac2010-10-15 05:15:59 +0000197static void xfrm6_tunnel_free_spi(struct net *net, xfrm_address_t *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Alexey Dobriyana1664772010-01-25 10:37:54 +0000199 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 struct xfrm6_tunnel_spi *x6spi;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800201 struct hlist_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000203 spin_lock_bh(&xfrm6_tunnel_spi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Sasha Levinb67bfe02013-02-27 17:06:00 -0800205 hlist_for_each_entry_safe(x6spi, n,
Alexey Dobriyana1664772010-01-25 10:37:54 +0000206 &xfrm6_tn->spi_byaddr[xfrm6_tunnel_spi_hash_byaddr(saddr)],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 list_byaddr)
208 {
YOSHIFUJI Hideaki / 吉藤英明ff88b302013-01-29 12:48:31 +0000209 if (xfrm6_addr_equal(&x6spi->addr, saddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (atomic_dec_and_test(&x6spi->refcnt)) {
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000211 hlist_del_rcu(&x6spi->list_byaddr);
212 hlist_del_rcu(&x6spi->list_byspi);
213 call_rcu(&x6spi->rcu_head, x6spi_destroy_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 break;
215 }
216 }
217 }
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000218 spin_unlock_bh(&xfrm6_tunnel_spi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221static int xfrm6_tunnel_output(struct xfrm_state *x, struct sk_buff *skb)
222{
Herbert Xu7b277b12007-10-10 15:44:06 -0700223 skb_push(skb, -skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return 0;
225}
226
Herbert Xue6956332006-04-01 00:52:46 -0800227static int xfrm6_tunnel_input(struct xfrm_state *x, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
Herbert Xu04663d02007-10-17 21:28:06 -0700229 return skb_network_header(skb)[IP6CB(skb)->nhoff];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230}
231
Herbert Xud2acc342006-03-28 01:12:13 -0800232static int xfrm6_tunnel_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Alexey Dobriyana1664772010-01-25 10:37:54 +0000234 struct net *net = dev_net(skb->dev);
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000235 const struct ipv6hdr *iph = ipv6_hdr(skb);
Al Viroa252cc22006-09-27 18:48:18 -0700236 __be32 spi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000238 spi = xfrm6_tunnel_spi_lookup(net, (const xfrm_address_t *)&iph->saddr);
Nicolas Dichtel63c43782016-09-19 16:17:57 +0200239 return xfrm6_rcv_spi(skb, IPPROTO_IPV6, spi, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
Herbert Xud2acc342006-03-28 01:12:13 -0800242static int xfrm6_tunnel_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700243 u8 type, u8 code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 /* xfrm6_tunnel native err handling */
246 switch (type) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900247 case ICMPV6_DEST_UNREACH:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 switch (code) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900249 case ICMPV6_NOROUTE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 case ICMPV6_ADM_PROHIBITED:
251 case ICMPV6_NOT_NEIGHBOUR:
252 case ICMPV6_ADDR_UNREACH:
253 case ICMPV6_PORT_UNREACH:
254 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 break;
256 }
257 break;
258 case ICMPV6_PKT_TOOBIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 break;
260 case ICMPV6_TIME_EXCEED:
261 switch (code) {
262 case ICMPV6_EXC_HOPLIMIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 break;
264 case ICMPV6_EXC_FRAGTIME:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900265 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 break;
267 }
268 break;
269 case ICMPV6_PARAMPROB:
270 switch (code) {
271 case ICMPV6_HDR_FIELD: break;
272 case ICMPV6_UNK_NEXTHDR: break;
273 case ICMPV6_UNK_OPTION: break;
274 }
275 break;
276 default:
277 break;
278 }
Herbert Xud2acc342006-03-28 01:12:13 -0800279
280 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
Herbert Xu72cb6962005-06-20 13:18:08 -0700283static int xfrm6_tunnel_init_state(struct xfrm_state *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700285 if (x->props.mode != XFRM_MODE_TUNNEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 return -EINVAL;
287
288 if (x->encap)
289 return -EINVAL;
290
291 x->props.header_len = sizeof(struct ipv6hdr);
292
293 return 0;
294}
295
296static void xfrm6_tunnel_destroy(struct xfrm_state *x)
297{
Alexey Dobriyana1664772010-01-25 10:37:54 +0000298 struct net *net = xs_net(x);
299
300 xfrm6_tunnel_free_spi(net, (xfrm_address_t *)&x->props.saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
Eric Dumazet533cb5b2008-01-30 19:11:50 -0800303static const struct xfrm_type xfrm6_tunnel_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 .description = "IP6IP6",
305 .owner = THIS_MODULE,
306 .proto = IPPROTO_IPV6,
307 .init_state = xfrm6_tunnel_init_state,
308 .destructor = xfrm6_tunnel_destroy,
309 .input = xfrm6_tunnel_input,
310 .output = xfrm6_tunnel_output,
311};
312
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +0000313static struct xfrm6_tunnel xfrm6_tunnel_handler __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 .handler = xfrm6_tunnel_rcv,
Herbert Xud2acc342006-03-28 01:12:13 -0800315 .err_handler = xfrm6_tunnel_err,
316 .priority = 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317};
318
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +0000319static struct xfrm6_tunnel xfrm46_tunnel_handler __read_mostly = {
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -0800320 .handler = xfrm6_tunnel_rcv,
321 .err_handler = xfrm6_tunnel_err,
322 .priority = 2,
323};
324
Alexey Dobriyana1664772010-01-25 10:37:54 +0000325static int __net_init xfrm6_tunnel_net_init(struct net *net)
326{
327 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
328 unsigned int i;
329
330 for (i = 0; i < XFRM6_TUNNEL_SPI_BYADDR_HSIZE; i++)
331 INIT_HLIST_HEAD(&xfrm6_tn->spi_byaddr[i]);
332 for (i = 0; i < XFRM6_TUNNEL_SPI_BYSPI_HSIZE; i++)
333 INIT_HLIST_HEAD(&xfrm6_tn->spi_byspi[i]);
334 xfrm6_tn->spi = 0;
335
336 return 0;
337}
338
339static void __net_exit xfrm6_tunnel_net_exit(struct net *net)
340{
341}
342
343static struct pernet_operations xfrm6_tunnel_net_ops = {
344 .init = xfrm6_tunnel_net_init,
345 .exit = xfrm6_tunnel_net_exit,
346 .id = &xfrm6_tunnel_net_id,
347 .size = sizeof(struct xfrm6_tunnel_net),
348};
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350static int __init xfrm6_tunnel_init(void)
351{
Alexey Dobriyane9249602010-01-25 10:28:21 +0000352 int rv;
353
Alexey Dobriyand5aa4072010-02-16 09:05:04 +0000354 xfrm6_tunnel_spi_kmem = kmem_cache_create("xfrm6_tunnel_spi",
355 sizeof(struct xfrm6_tunnel_spi),
356 0, SLAB_HWCACHE_ALIGN,
357 NULL);
358 if (!xfrm6_tunnel_spi_kmem)
359 return -ENOMEM;
Alexey Dobriyana1664772010-01-25 10:37:54 +0000360 rv = register_pernet_subsys(&xfrm6_tunnel_net_ops);
361 if (rv < 0)
Alexey Dobriyand5aa4072010-02-16 09:05:04 +0000362 goto out_pernet;
363 rv = xfrm_register_type(&xfrm6_tunnel_type, AF_INET6);
364 if (rv < 0)
365 goto out_type;
366 rv = xfrm6_tunnel_register(&xfrm6_tunnel_handler, AF_INET6);
367 if (rv < 0)
368 goto out_xfrm6;
369 rv = xfrm6_tunnel_register(&xfrm46_tunnel_handler, AF_INET);
370 if (rv < 0)
371 goto out_xfrm46;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return 0;
Ilpo Järvinen5ce1bbb2008-12-14 23:13:48 -0800373
Alexey Dobriyand5aa4072010-02-16 09:05:04 +0000374out_xfrm46:
Ilpo Järvinen5ce1bbb2008-12-14 23:13:48 -0800375 xfrm6_tunnel_deregister(&xfrm6_tunnel_handler, AF_INET6);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +0000376out_xfrm6:
Ilpo Järvinen5ce1bbb2008-12-14 23:13:48 -0800377 xfrm_unregister_type(&xfrm6_tunnel_type, AF_INET6);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +0000378out_type:
379 unregister_pernet_subsys(&xfrm6_tunnel_net_ops);
380out_pernet:
381 kmem_cache_destroy(xfrm6_tunnel_spi_kmem);
Alexey Dobriyane9249602010-01-25 10:28:21 +0000382 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
385static void __exit xfrm6_tunnel_fini(void)
386{
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -0800387 xfrm6_tunnel_deregister(&xfrm46_tunnel_handler, AF_INET);
388 xfrm6_tunnel_deregister(&xfrm6_tunnel_handler, AF_INET6);
David S. Millera922ba52006-07-24 13:49:06 -0700389 xfrm_unregister_type(&xfrm6_tunnel_type, AF_INET6);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +0000390 unregister_pernet_subsys(&xfrm6_tunnel_net_ops);
391 kmem_cache_destroy(xfrm6_tunnel_spi_kmem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
393
394module_init(xfrm6_tunnel_init);
395module_exit(xfrm6_tunnel_fini);
396MODULE_LICENSE("GPL");
Masahide NAKAMURAd3d6dd32007-06-26 23:57:49 -0700397MODULE_ALIAS_XFRM_TYPE(AF_INET6, XFRM_PROTO_IPV6);