blob: de2bcfaaf759c95df42effbdd24a0593247ecb1a [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
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 * Based on net/ipv4/xfrm4_tunnel.c
22 *
23 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/module.h>
25#include <linux/xfrm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Eric Dumazet91cc3bb2009-10-23 18:19:19 +000027#include <linux/rculist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <net/ip.h>
29#include <net/xfrm.h>
30#include <net/ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/ipv6.h>
32#include <linux/icmpv6.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080033#include <linux/mutex.h>
Alexey Dobriyana1664772010-01-25 10:37:54 +000034#include <net/netns/generic.h>
35
36#define XFRM6_TUNNEL_SPI_BYADDR_HSIZE 256
37#define XFRM6_TUNNEL_SPI_BYSPI_HSIZE 256
38
39#define XFRM6_TUNNEL_SPI_MIN 1
40#define XFRM6_TUNNEL_SPI_MAX 0xffffffff
41
42struct xfrm6_tunnel_net {
43 struct hlist_head spi_byaddr[XFRM6_TUNNEL_SPI_BYADDR_HSIZE];
44 struct hlist_head spi_byspi[XFRM6_TUNNEL_SPI_BYSPI_HSIZE];
45 u32 spi;
46};
47
48static int xfrm6_tunnel_net_id __read_mostly;
49static inline struct xfrm6_tunnel_net *xfrm6_tunnel_pernet(struct net *net)
50{
51 return net_generic(net, xfrm6_tunnel_net_id);
52}
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054/*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090055 * xfrm_tunnel_spi things are for allocating unique id ("spi")
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 * per xfrm_address_t.
57 */
58struct xfrm6_tunnel_spi {
Eric Dumazet91cc3bb2009-10-23 18:19:19 +000059 struct hlist_node list_byaddr;
60 struct hlist_node list_byspi;
61 xfrm_address_t addr;
62 u32 spi;
63 atomic_t refcnt;
64 struct rcu_head rcu_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065};
66
Eric Dumazet91cc3bb2009-10-23 18:19:19 +000067static DEFINE_SPINLOCK(xfrm6_tunnel_spi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Christoph Lametere18b8902006-12-06 20:33:20 -080069static struct kmem_cache *xfrm6_tunnel_spi_kmem __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Eric Dumazet95c96172012-04-15 05:58:06 +000071static inline unsigned int xfrm6_tunnel_spi_hash_byaddr(const xfrm_address_t *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Eric Dumazet95c96172012-04-15 05:58:06 +000073 unsigned int h;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
YOSHIFUJI Hideaki / 吉藤英明2b464f62013-01-13 05:02:38 +000075 h = ipv6_addr_hash((const struct in6_addr *)addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 h ^= h >> 16;
77 h ^= h >> 8;
78 h &= XFRM6_TUNNEL_SPI_BYADDR_HSIZE - 1;
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 return h;
81}
82
Eric Dumazet95c96172012-04-15 05:58:06 +000083static inline unsigned int xfrm6_tunnel_spi_hash_byspi(u32 spi)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
85 return spi % XFRM6_TUNNEL_SPI_BYSPI_HSIZE;
86}
87
Eric Dumazetb71d1d42011-04-22 04:53:02 +000088static struct xfrm6_tunnel_spi *__xfrm6_tunnel_spi_lookup(struct net *net, const xfrm_address_t *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
Alexey Dobriyana1664772010-01-25 10:37:54 +000090 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 struct xfrm6_tunnel_spi *x6spi;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Sasha Levinb67bfe02013-02-27 17:06:00 -080093 hlist_for_each_entry_rcu(x6spi,
Alexey Dobriyana1664772010-01-25 10:37:54 +000094 &xfrm6_tn->spi_byaddr[xfrm6_tunnel_spi_hash_byaddr(saddr)],
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 list_byaddr) {
YOSHIFUJI Hideaki / 吉藤英明ff88b302013-01-29 12:48:31 +000096 if (xfrm6_addr_equal(&x6spi->addr, saddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 return x6spi;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 }
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 return NULL;
101}
102
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000103__be32 xfrm6_tunnel_spi_lookup(struct net *net, const xfrm_address_t *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
105 struct xfrm6_tunnel_spi *x6spi;
106 u32 spi;
107
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000108 rcu_read_lock_bh();
Alexey Dobriyana1664772010-01-25 10:37:54 +0000109 x6spi = __xfrm6_tunnel_spi_lookup(net, saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 spi = x6spi ? x6spi->spi : 0;
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000111 rcu_read_unlock_bh();
Al Viro5b122542006-11-01 15:28:58 -0800112 return htonl(spi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
115EXPORT_SYMBOL(xfrm6_tunnel_spi_lookup);
116
Alexey Dobriyana1664772010-01-25 10:37:54 +0000117static int __xfrm6_tunnel_spi_check(struct net *net, u32 spi)
YOSHIFUJI Hideakidf8ea192008-02-19 22:54:00 +0900118{
Alexey Dobriyana1664772010-01-25 10:37:54 +0000119 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
YOSHIFUJI Hideakidf8ea192008-02-19 22:54:00 +0900120 struct xfrm6_tunnel_spi *x6spi;
121 int index = xfrm6_tunnel_spi_hash_byspi(spi);
YOSHIFUJI Hideakidf8ea192008-02-19 22:54:00 +0900122
Sasha Levinb67bfe02013-02-27 17:06:00 -0800123 hlist_for_each_entry(x6spi,
Alexey Dobriyana1664772010-01-25 10:37:54 +0000124 &xfrm6_tn->spi_byspi[index],
YOSHIFUJI Hideakidf8ea192008-02-19 22:54:00 +0900125 list_byspi) {
126 if (x6spi->spi == spi)
127 return -1;
128 }
129 return index;
130}
131
Alexey Dobriyana1664772010-01-25 10:37:54 +0000132static u32 __xfrm6_tunnel_alloc_spi(struct net *net, xfrm_address_t *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Alexey Dobriyana1664772010-01-25 10:37:54 +0000134 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 u32 spi;
136 struct xfrm6_tunnel_spi *x6spi;
YOSHIFUJI Hideakidf8ea192008-02-19 22:54:00 +0900137 int index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Alexey Dobriyana1664772010-01-25 10:37:54 +0000139 if (xfrm6_tn->spi < XFRM6_TUNNEL_SPI_MIN ||
140 xfrm6_tn->spi >= XFRM6_TUNNEL_SPI_MAX)
141 xfrm6_tn->spi = XFRM6_TUNNEL_SPI_MIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 else
Alexey Dobriyana1664772010-01-25 10:37:54 +0000143 xfrm6_tn->spi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Alexey Dobriyana1664772010-01-25 10:37:54 +0000145 for (spi = xfrm6_tn->spi; spi <= XFRM6_TUNNEL_SPI_MAX; spi++) {
146 index = __xfrm6_tunnel_spi_check(net, spi);
YOSHIFUJI Hideakidf8ea192008-02-19 22:54:00 +0900147 if (index >= 0)
148 goto alloc_spi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 }
Alexey Dobriyana1664772010-01-25 10:37:54 +0000150 for (spi = XFRM6_TUNNEL_SPI_MIN; spi < xfrm6_tn->spi; spi++) {
151 index = __xfrm6_tunnel_spi_check(net, spi);
YOSHIFUJI Hideakidf8ea192008-02-19 22:54:00 +0900152 if (index >= 0)
153 goto alloc_spi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 }
155 spi = 0;
156 goto out;
157alloc_spi:
Alexey Dobriyana1664772010-01-25 10:37:54 +0000158 xfrm6_tn->spi = spi;
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800159 x6spi = kmem_cache_alloc(xfrm6_tunnel_spi_kmem, GFP_ATOMIC);
David S. Millera922ba52006-07-24 13:49:06 -0700160 if (!x6spi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 goto out;
David S. Millera922ba52006-07-24 13:49:06 -0700162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 memcpy(&x6spi->addr, saddr, sizeof(x6spi->addr));
164 x6spi->spi = spi;
165 atomic_set(&x6spi->refcnt, 1);
166
Alexey Dobriyana1664772010-01-25 10:37:54 +0000167 hlist_add_head_rcu(&x6spi->list_byspi, &xfrm6_tn->spi_byspi[index]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 index = xfrm6_tunnel_spi_hash_byaddr(saddr);
Alexey Dobriyana1664772010-01-25 10:37:54 +0000170 hlist_add_head_rcu(&x6spi->list_byaddr, &xfrm6_tn->spi_byaddr[index]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return spi;
173}
174
Alexey Dobriyana1664772010-01-25 10:37:54 +0000175__be32 xfrm6_tunnel_alloc_spi(struct net *net, xfrm_address_t *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
177 struct xfrm6_tunnel_spi *x6spi;
178 u32 spi;
179
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000180 spin_lock_bh(&xfrm6_tunnel_spi_lock);
Alexey Dobriyana1664772010-01-25 10:37:54 +0000181 x6spi = __xfrm6_tunnel_spi_lookup(net, saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 if (x6spi) {
183 atomic_inc(&x6spi->refcnt);
184 spi = x6spi->spi;
185 } else
Alexey Dobriyana1664772010-01-25 10:37:54 +0000186 spi = __xfrm6_tunnel_alloc_spi(net, saddr);
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000187 spin_unlock_bh(&xfrm6_tunnel_spi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Al Viro5b122542006-11-01 15:28:58 -0800189 return htonl(spi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
192EXPORT_SYMBOL(xfrm6_tunnel_alloc_spi);
193
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000194static void x6spi_destroy_rcu(struct rcu_head *head)
195{
196 kmem_cache_free(xfrm6_tunnel_spi_kmem,
197 container_of(head, struct xfrm6_tunnel_spi, rcu_head));
198}
199
stephen hemminger6f747ac2010-10-15 05:15:59 +0000200static void xfrm6_tunnel_free_spi(struct net *net, xfrm_address_t *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
Alexey Dobriyana1664772010-01-25 10:37:54 +0000202 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 struct xfrm6_tunnel_spi *x6spi;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800204 struct hlist_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000206 spin_lock_bh(&xfrm6_tunnel_spi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Sasha Levinb67bfe02013-02-27 17:06:00 -0800208 hlist_for_each_entry_safe(x6spi, n,
Alexey Dobriyana1664772010-01-25 10:37:54 +0000209 &xfrm6_tn->spi_byaddr[xfrm6_tunnel_spi_hash_byaddr(saddr)],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 list_byaddr)
211 {
YOSHIFUJI Hideaki / 吉藤英明ff88b302013-01-29 12:48:31 +0000212 if (xfrm6_addr_equal(&x6spi->addr, saddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 if (atomic_dec_and_test(&x6spi->refcnt)) {
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000214 hlist_del_rcu(&x6spi->list_byaddr);
215 hlist_del_rcu(&x6spi->list_byspi);
216 call_rcu(&x6spi->rcu_head, x6spi_destroy_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 break;
218 }
219 }
220 }
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000221 spin_unlock_bh(&xfrm6_tunnel_spi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224static int xfrm6_tunnel_output(struct xfrm_state *x, struct sk_buff *skb)
225{
Herbert Xu7b277b12007-10-10 15:44:06 -0700226 skb_push(skb, -skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return 0;
228}
229
Herbert Xue6956332006-04-01 00:52:46 -0800230static int xfrm6_tunnel_input(struct xfrm_state *x, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Herbert Xu04663d02007-10-17 21:28:06 -0700232 return skb_network_header(skb)[IP6CB(skb)->nhoff];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
Herbert Xud2acc342006-03-28 01:12:13 -0800235static int xfrm6_tunnel_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
Alexey Dobriyana1664772010-01-25 10:37:54 +0000237 struct net *net = dev_net(skb->dev);
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000238 const struct ipv6hdr *iph = ipv6_hdr(skb);
Al Viroa252cc22006-09-27 18:48:18 -0700239 __be32 spi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000241 spi = xfrm6_tunnel_spi_lookup(net, (const xfrm_address_t *)&iph->saddr);
David S. Miller6ac3f662011-05-24 01:11:51 -0400242 return xfrm6_rcv_spi(skb, IPPROTO_IPV6, spi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
Herbert Xud2acc342006-03-28 01:12:13 -0800245static int xfrm6_tunnel_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700246 u8 type, u8 code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 /* xfrm6_tunnel native err handling */
249 switch (type) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900250 case ICMPV6_DEST_UNREACH:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 switch (code) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900252 case ICMPV6_NOROUTE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 case ICMPV6_ADM_PROHIBITED:
254 case ICMPV6_NOT_NEIGHBOUR:
255 case ICMPV6_ADDR_UNREACH:
256 case ICMPV6_PORT_UNREACH:
257 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 break;
259 }
260 break;
261 case ICMPV6_PKT_TOOBIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 break;
263 case ICMPV6_TIME_EXCEED:
264 switch (code) {
265 case ICMPV6_EXC_HOPLIMIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 break;
267 case ICMPV6_EXC_FRAGTIME:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900268 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 break;
270 }
271 break;
272 case ICMPV6_PARAMPROB:
273 switch (code) {
274 case ICMPV6_HDR_FIELD: break;
275 case ICMPV6_UNK_NEXTHDR: break;
276 case ICMPV6_UNK_OPTION: break;
277 }
278 break;
279 default:
280 break;
281 }
Herbert Xud2acc342006-03-28 01:12:13 -0800282
283 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
Herbert Xu72cb6962005-06-20 13:18:08 -0700286static int xfrm6_tunnel_init_state(struct xfrm_state *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700288 if (x->props.mode != XFRM_MODE_TUNNEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 return -EINVAL;
290
291 if (x->encap)
292 return -EINVAL;
293
294 x->props.header_len = sizeof(struct ipv6hdr);
295
296 return 0;
297}
298
299static void xfrm6_tunnel_destroy(struct xfrm_state *x)
300{
Alexey Dobriyana1664772010-01-25 10:37:54 +0000301 struct net *net = xs_net(x);
302
303 xfrm6_tunnel_free_spi(net, (xfrm_address_t *)&x->props.saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
Eric Dumazet533cb5b2008-01-30 19:11:50 -0800306static const struct xfrm_type xfrm6_tunnel_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 .description = "IP6IP6",
308 .owner = THIS_MODULE,
309 .proto = IPPROTO_IPV6,
310 .init_state = xfrm6_tunnel_init_state,
311 .destructor = xfrm6_tunnel_destroy,
312 .input = xfrm6_tunnel_input,
313 .output = xfrm6_tunnel_output,
314};
315
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +0000316static struct xfrm6_tunnel xfrm6_tunnel_handler __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 .handler = xfrm6_tunnel_rcv,
Herbert Xud2acc342006-03-28 01:12:13 -0800318 .err_handler = xfrm6_tunnel_err,
319 .priority = 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320};
321
Eric Dumazet3ff2cfa2010-08-30 10:27:10 +0000322static struct xfrm6_tunnel xfrm46_tunnel_handler __read_mostly = {
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -0800323 .handler = xfrm6_tunnel_rcv,
324 .err_handler = xfrm6_tunnel_err,
325 .priority = 2,
326};
327
Alexey Dobriyana1664772010-01-25 10:37:54 +0000328static int __net_init xfrm6_tunnel_net_init(struct net *net)
329{
330 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
331 unsigned int i;
332
333 for (i = 0; i < XFRM6_TUNNEL_SPI_BYADDR_HSIZE; i++)
334 INIT_HLIST_HEAD(&xfrm6_tn->spi_byaddr[i]);
335 for (i = 0; i < XFRM6_TUNNEL_SPI_BYSPI_HSIZE; i++)
336 INIT_HLIST_HEAD(&xfrm6_tn->spi_byspi[i]);
337 xfrm6_tn->spi = 0;
338
339 return 0;
340}
341
342static void __net_exit xfrm6_tunnel_net_exit(struct net *net)
343{
344}
345
346static struct pernet_operations xfrm6_tunnel_net_ops = {
347 .init = xfrm6_tunnel_net_init,
348 .exit = xfrm6_tunnel_net_exit,
349 .id = &xfrm6_tunnel_net_id,
350 .size = sizeof(struct xfrm6_tunnel_net),
351};
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353static int __init xfrm6_tunnel_init(void)
354{
Alexey Dobriyane9249602010-01-25 10:28:21 +0000355 int rv;
356
Alexey Dobriyand5aa4072010-02-16 09:05:04 +0000357 xfrm6_tunnel_spi_kmem = kmem_cache_create("xfrm6_tunnel_spi",
358 sizeof(struct xfrm6_tunnel_spi),
359 0, SLAB_HWCACHE_ALIGN,
360 NULL);
361 if (!xfrm6_tunnel_spi_kmem)
362 return -ENOMEM;
Alexey Dobriyana1664772010-01-25 10:37:54 +0000363 rv = register_pernet_subsys(&xfrm6_tunnel_net_ops);
364 if (rv < 0)
Alexey Dobriyand5aa4072010-02-16 09:05:04 +0000365 goto out_pernet;
366 rv = xfrm_register_type(&xfrm6_tunnel_type, AF_INET6);
367 if (rv < 0)
368 goto out_type;
369 rv = xfrm6_tunnel_register(&xfrm6_tunnel_handler, AF_INET6);
370 if (rv < 0)
371 goto out_xfrm6;
372 rv = xfrm6_tunnel_register(&xfrm46_tunnel_handler, AF_INET);
373 if (rv < 0)
374 goto out_xfrm46;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 return 0;
Ilpo Järvinen5ce1bbb2008-12-14 23:13:48 -0800376
Alexey Dobriyand5aa4072010-02-16 09:05:04 +0000377out_xfrm46:
Ilpo Järvinen5ce1bbb2008-12-14 23:13:48 -0800378 xfrm6_tunnel_deregister(&xfrm6_tunnel_handler, AF_INET6);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +0000379out_xfrm6:
Ilpo Järvinen5ce1bbb2008-12-14 23:13:48 -0800380 xfrm_unregister_type(&xfrm6_tunnel_type, AF_INET6);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +0000381out_type:
382 unregister_pernet_subsys(&xfrm6_tunnel_net_ops);
383out_pernet:
384 kmem_cache_destroy(xfrm6_tunnel_spi_kmem);
Alexey Dobriyane9249602010-01-25 10:28:21 +0000385 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
388static void __exit xfrm6_tunnel_fini(void)
389{
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -0800390 xfrm6_tunnel_deregister(&xfrm46_tunnel_handler, AF_INET);
391 xfrm6_tunnel_deregister(&xfrm6_tunnel_handler, AF_INET6);
David S. Millera922ba52006-07-24 13:49:06 -0700392 xfrm_unregister_type(&xfrm6_tunnel_type, AF_INET6);
Alexey Dobriyand5aa4072010-02-16 09:05:04 +0000393 unregister_pernet_subsys(&xfrm6_tunnel_net_ops);
394 kmem_cache_destroy(xfrm6_tunnel_spi_kmem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395}
396
397module_init(xfrm6_tunnel_init);
398module_exit(xfrm6_tunnel_fini);
399MODULE_LICENSE("GPL");
Masahide NAKAMURAd3d6dd32007-06-26 23:57:49 -0700400MODULE_ALIAS_XFRM_TYPE(AF_INET6, XFRM_PROTO_IPV6);