blob: d6f9aeec69f79a2b99098e2cd653a11552a7a016 [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>
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
Dave Jonesb6f99a22007-03-22 12:27:49 -070070static inline unsigned xfrm6_tunnel_spi_hash_byaddr(xfrm_address_t *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
72 unsigned h;
73
Al Viro8c689a62006-11-08 00:20:21 -080074 h = (__force u32)(addr->a6[0] ^ addr->a6[1] ^ addr->a6[2] ^ addr->a6[3]);
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
Dave Jonesb6f99a22007-03-22 12:27:49 -070082static inline unsigned 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
87
Alexey Dobriyana1664772010-01-25 10:37:54 +000088static int __init xfrm6_tunnel_spi_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 xfrm6_tunnel_spi_kmem = kmem_cache_create("xfrm6_tunnel_spi",
91 sizeof(struct xfrm6_tunnel_spi),
92 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +090093 NULL);
David S. Millera922ba52006-07-24 13:49:06 -070094 if (!xfrm6_tunnel_spi_kmem)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 return 0;
97}
98
99static void xfrm6_tunnel_spi_fini(void)
100{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 kmem_cache_destroy(xfrm6_tunnel_spi_kmem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
Alexey Dobriyana1664772010-01-25 10:37:54 +0000104static struct xfrm6_tunnel_spi *__xfrm6_tunnel_spi_lookup(struct net *net, xfrm_address_t *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
Alexey Dobriyana1664772010-01-25 10:37:54 +0000106 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 struct xfrm6_tunnel_spi *x6spi;
108 struct hlist_node *pos;
109
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000110 hlist_for_each_entry_rcu(x6spi, pos,
Alexey Dobriyana1664772010-01-25 10:37:54 +0000111 &xfrm6_tn->spi_byaddr[xfrm6_tunnel_spi_hash_byaddr(saddr)],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 list_byaddr) {
David S. Millera922ba52006-07-24 13:49:06 -0700113 if (memcmp(&x6spi->addr, saddr, sizeof(x6spi->addr)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 return x6spi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 }
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 return NULL;
118}
119
Alexey Dobriyana1664772010-01-25 10:37:54 +0000120__be32 xfrm6_tunnel_spi_lookup(struct net *net, xfrm_address_t *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
122 struct xfrm6_tunnel_spi *x6spi;
123 u32 spi;
124
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000125 rcu_read_lock_bh();
Alexey Dobriyana1664772010-01-25 10:37:54 +0000126 x6spi = __xfrm6_tunnel_spi_lookup(net, saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 spi = x6spi ? x6spi->spi : 0;
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000128 rcu_read_unlock_bh();
Al Viro5b122542006-11-01 15:28:58 -0800129 return htonl(spi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
132EXPORT_SYMBOL(xfrm6_tunnel_spi_lookup);
133
Alexey Dobriyana1664772010-01-25 10:37:54 +0000134static int __xfrm6_tunnel_spi_check(struct net *net, u32 spi)
YOSHIFUJI Hideakidf8ea192008-02-19 22:54:00 +0900135{
Alexey Dobriyana1664772010-01-25 10:37:54 +0000136 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
YOSHIFUJI Hideakidf8ea192008-02-19 22:54:00 +0900137 struct xfrm6_tunnel_spi *x6spi;
138 int index = xfrm6_tunnel_spi_hash_byspi(spi);
139 struct hlist_node *pos;
140
141 hlist_for_each_entry(x6spi, pos,
Alexey Dobriyana1664772010-01-25 10:37:54 +0000142 &xfrm6_tn->spi_byspi[index],
YOSHIFUJI Hideakidf8ea192008-02-19 22:54:00 +0900143 list_byspi) {
144 if (x6spi->spi == spi)
145 return -1;
146 }
147 return index;
148}
149
Alexey Dobriyana1664772010-01-25 10:37:54 +0000150static u32 __xfrm6_tunnel_alloc_spi(struct net *net, xfrm_address_t *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
Alexey Dobriyana1664772010-01-25 10:37:54 +0000152 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 u32 spi;
154 struct xfrm6_tunnel_spi *x6spi;
YOSHIFUJI Hideakidf8ea192008-02-19 22:54:00 +0900155 int index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Alexey Dobriyana1664772010-01-25 10:37:54 +0000157 if (xfrm6_tn->spi < XFRM6_TUNNEL_SPI_MIN ||
158 xfrm6_tn->spi >= XFRM6_TUNNEL_SPI_MAX)
159 xfrm6_tn->spi = XFRM6_TUNNEL_SPI_MIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 else
Alexey Dobriyana1664772010-01-25 10:37:54 +0000161 xfrm6_tn->spi++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Alexey Dobriyana1664772010-01-25 10:37:54 +0000163 for (spi = xfrm6_tn->spi; spi <= XFRM6_TUNNEL_SPI_MAX; spi++) {
164 index = __xfrm6_tunnel_spi_check(net, spi);
YOSHIFUJI Hideakidf8ea192008-02-19 22:54:00 +0900165 if (index >= 0)
166 goto alloc_spi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 }
Alexey Dobriyana1664772010-01-25 10:37:54 +0000168 for (spi = XFRM6_TUNNEL_SPI_MIN; spi < xfrm6_tn->spi; spi++) {
169 index = __xfrm6_tunnel_spi_check(net, spi);
YOSHIFUJI Hideakidf8ea192008-02-19 22:54:00 +0900170 if (index >= 0)
171 goto alloc_spi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
173 spi = 0;
174 goto out;
175alloc_spi:
Alexey Dobriyana1664772010-01-25 10:37:54 +0000176 xfrm6_tn->spi = spi;
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800177 x6spi = kmem_cache_alloc(xfrm6_tunnel_spi_kmem, GFP_ATOMIC);
David S. Millera922ba52006-07-24 13:49:06 -0700178 if (!x6spi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 goto out;
David S. Millera922ba52006-07-24 13:49:06 -0700180
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000181 INIT_RCU_HEAD(&x6spi->rcu_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 memcpy(&x6spi->addr, saddr, sizeof(x6spi->addr));
183 x6spi->spi = spi;
184 atomic_set(&x6spi->refcnt, 1);
185
Alexey Dobriyana1664772010-01-25 10:37:54 +0000186 hlist_add_head_rcu(&x6spi->list_byspi, &xfrm6_tn->spi_byspi[index]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 index = xfrm6_tunnel_spi_hash_byaddr(saddr);
Alexey Dobriyana1664772010-01-25 10:37:54 +0000189 hlist_add_head_rcu(&x6spi->list_byaddr, &xfrm6_tn->spi_byaddr[index]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return spi;
192}
193
Alexey Dobriyana1664772010-01-25 10:37:54 +0000194__be32 xfrm6_tunnel_alloc_spi(struct net *net, xfrm_address_t *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
196 struct xfrm6_tunnel_spi *x6spi;
197 u32 spi;
198
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000199 spin_lock_bh(&xfrm6_tunnel_spi_lock);
Alexey Dobriyana1664772010-01-25 10:37:54 +0000200 x6spi = __xfrm6_tunnel_spi_lookup(net, saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 if (x6spi) {
202 atomic_inc(&x6spi->refcnt);
203 spi = x6spi->spi;
204 } else
Alexey Dobriyana1664772010-01-25 10:37:54 +0000205 spi = __xfrm6_tunnel_alloc_spi(net, saddr);
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000206 spin_unlock_bh(&xfrm6_tunnel_spi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Al Viro5b122542006-11-01 15:28:58 -0800208 return htonl(spi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
211EXPORT_SYMBOL(xfrm6_tunnel_alloc_spi);
212
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000213static void x6spi_destroy_rcu(struct rcu_head *head)
214{
215 kmem_cache_free(xfrm6_tunnel_spi_kmem,
216 container_of(head, struct xfrm6_tunnel_spi, rcu_head));
217}
218
Alexey Dobriyana1664772010-01-25 10:37:54 +0000219void xfrm6_tunnel_free_spi(struct net *net, xfrm_address_t *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
Alexey Dobriyana1664772010-01-25 10:37:54 +0000221 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 struct xfrm6_tunnel_spi *x6spi;
223 struct hlist_node *pos, *n;
224
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000225 spin_lock_bh(&xfrm6_tunnel_spi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900227 hlist_for_each_entry_safe(x6spi, pos, n,
Alexey Dobriyana1664772010-01-25 10:37:54 +0000228 &xfrm6_tn->spi_byaddr[xfrm6_tunnel_spi_hash_byaddr(saddr)],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 list_byaddr)
230 {
231 if (memcmp(&x6spi->addr, saddr, sizeof(x6spi->addr)) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (atomic_dec_and_test(&x6spi->refcnt)) {
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000233 hlist_del_rcu(&x6spi->list_byaddr);
234 hlist_del_rcu(&x6spi->list_byspi);
235 call_rcu(&x6spi->rcu_head, x6spi_destroy_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 break;
237 }
238 }
239 }
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000240 spin_unlock_bh(&xfrm6_tunnel_spi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
243EXPORT_SYMBOL(xfrm6_tunnel_free_spi);
244
245static int xfrm6_tunnel_output(struct xfrm_state *x, struct sk_buff *skb)
246{
Herbert Xu7b277b12007-10-10 15:44:06 -0700247 skb_push(skb, -skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return 0;
249}
250
Herbert Xue6956332006-04-01 00:52:46 -0800251static int xfrm6_tunnel_input(struct xfrm_state *x, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
Herbert Xu04663d02007-10-17 21:28:06 -0700253 return skb_network_header(skb)[IP6CB(skb)->nhoff];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
Herbert Xud2acc342006-03-28 01:12:13 -0800256static int xfrm6_tunnel_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
Alexey Dobriyana1664772010-01-25 10:37:54 +0000258 struct net *net = dev_net(skb->dev);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700259 struct ipv6hdr *iph = ipv6_hdr(skb);
Al Viroa252cc22006-09-27 18:48:18 -0700260 __be32 spi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Alexey Dobriyana1664772010-01-25 10:37:54 +0000262 spi = xfrm6_tunnel_spi_lookup(net, (xfrm_address_t *)&iph->saddr);
Herbert Xu33b5ecb2007-10-17 21:29:25 -0700263 return xfrm6_rcv_spi(skb, IPPROTO_IPV6, spi) > 0 ? : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
Herbert Xud2acc342006-03-28 01:12:13 -0800266static int xfrm6_tunnel_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700267 u8 type, u8 code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 /* xfrm6_tunnel native err handling */
270 switch (type) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900271 case ICMPV6_DEST_UNREACH:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 switch (code) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900273 case ICMPV6_NOROUTE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 case ICMPV6_ADM_PROHIBITED:
275 case ICMPV6_NOT_NEIGHBOUR:
276 case ICMPV6_ADDR_UNREACH:
277 case ICMPV6_PORT_UNREACH:
278 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 break;
280 }
281 break;
282 case ICMPV6_PKT_TOOBIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 break;
284 case ICMPV6_TIME_EXCEED:
285 switch (code) {
286 case ICMPV6_EXC_HOPLIMIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 break;
288 case ICMPV6_EXC_FRAGTIME:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900289 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 break;
291 }
292 break;
293 case ICMPV6_PARAMPROB:
294 switch (code) {
295 case ICMPV6_HDR_FIELD: break;
296 case ICMPV6_UNK_NEXTHDR: break;
297 case ICMPV6_UNK_OPTION: break;
298 }
299 break;
300 default:
301 break;
302 }
Herbert Xud2acc342006-03-28 01:12:13 -0800303
304 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
Herbert Xu72cb6962005-06-20 13:18:08 -0700307static int xfrm6_tunnel_init_state(struct xfrm_state *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700309 if (x->props.mode != XFRM_MODE_TUNNEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 return -EINVAL;
311
312 if (x->encap)
313 return -EINVAL;
314
315 x->props.header_len = sizeof(struct ipv6hdr);
316
317 return 0;
318}
319
320static void xfrm6_tunnel_destroy(struct xfrm_state *x)
321{
Alexey Dobriyana1664772010-01-25 10:37:54 +0000322 struct net *net = xs_net(x);
323
324 xfrm6_tunnel_free_spi(net, (xfrm_address_t *)&x->props.saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
Eric Dumazet533cb5b2008-01-30 19:11:50 -0800327static const struct xfrm_type xfrm6_tunnel_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 .description = "IP6IP6",
329 .owner = THIS_MODULE,
330 .proto = IPPROTO_IPV6,
331 .init_state = xfrm6_tunnel_init_state,
332 .destructor = xfrm6_tunnel_destroy,
333 .input = xfrm6_tunnel_input,
334 .output = xfrm6_tunnel_output,
335};
336
Herbert Xud2acc342006-03-28 01:12:13 -0800337static struct xfrm6_tunnel xfrm6_tunnel_handler = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 .handler = xfrm6_tunnel_rcv,
Herbert Xud2acc342006-03-28 01:12:13 -0800339 .err_handler = xfrm6_tunnel_err,
340 .priority = 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341};
342
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -0800343static struct xfrm6_tunnel xfrm46_tunnel_handler = {
344 .handler = xfrm6_tunnel_rcv,
345 .err_handler = xfrm6_tunnel_err,
346 .priority = 2,
347};
348
Alexey Dobriyana1664772010-01-25 10:37:54 +0000349static int __net_init xfrm6_tunnel_net_init(struct net *net)
350{
351 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
352 unsigned int i;
353
354 for (i = 0; i < XFRM6_TUNNEL_SPI_BYADDR_HSIZE; i++)
355 INIT_HLIST_HEAD(&xfrm6_tn->spi_byaddr[i]);
356 for (i = 0; i < XFRM6_TUNNEL_SPI_BYSPI_HSIZE; i++)
357 INIT_HLIST_HEAD(&xfrm6_tn->spi_byspi[i]);
358 xfrm6_tn->spi = 0;
359
360 return 0;
361}
362
363static void __net_exit xfrm6_tunnel_net_exit(struct net *net)
364{
365}
366
367static struct pernet_operations xfrm6_tunnel_net_ops = {
368 .init = xfrm6_tunnel_net_init,
369 .exit = xfrm6_tunnel_net_exit,
370 .id = &xfrm6_tunnel_net_id,
371 .size = sizeof(struct xfrm6_tunnel_net),
372};
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374static int __init xfrm6_tunnel_init(void)
375{
Alexey Dobriyane9249602010-01-25 10:28:21 +0000376 int rv;
377
378 rv = xfrm_register_type(&xfrm6_tunnel_type, AF_INET6);
379 if (rv < 0)
Ilpo Järvinen5ce1bbb2008-12-14 23:13:48 -0800380 goto err;
Alexey Dobriyane9249602010-01-25 10:28:21 +0000381 rv = xfrm6_tunnel_register(&xfrm6_tunnel_handler, AF_INET6);
382 if (rv < 0)
Ilpo Järvinen5ce1bbb2008-12-14 23:13:48 -0800383 goto unreg;
Alexey Dobriyane9249602010-01-25 10:28:21 +0000384 rv = xfrm6_tunnel_register(&xfrm46_tunnel_handler, AF_INET);
385 if (rv < 0)
Ilpo Järvinen5ce1bbb2008-12-14 23:13:48 -0800386 goto dereg6;
Alexey Dobriyane9249602010-01-25 10:28:21 +0000387 rv = xfrm6_tunnel_spi_init();
388 if (rv < 0)
Ilpo Järvinen5ce1bbb2008-12-14 23:13:48 -0800389 goto dereg46;
Alexey Dobriyana1664772010-01-25 10:37:54 +0000390 rv = register_pernet_subsys(&xfrm6_tunnel_net_ops);
391 if (rv < 0)
392 goto deregspi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 return 0;
Ilpo Järvinen5ce1bbb2008-12-14 23:13:48 -0800394
Alexey Dobriyana1664772010-01-25 10:37:54 +0000395deregspi:
396 xfrm6_tunnel_spi_fini();
Ilpo Järvinen5ce1bbb2008-12-14 23:13:48 -0800397dereg46:
398 xfrm6_tunnel_deregister(&xfrm46_tunnel_handler, AF_INET);
399dereg6:
400 xfrm6_tunnel_deregister(&xfrm6_tunnel_handler, AF_INET6);
401unreg:
402 xfrm_unregister_type(&xfrm6_tunnel_type, AF_INET6);
403err:
Alexey Dobriyane9249602010-01-25 10:28:21 +0000404 return rv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
407static void __exit xfrm6_tunnel_fini(void)
408{
Alexey Dobriyana1664772010-01-25 10:37:54 +0000409 unregister_pernet_subsys(&xfrm6_tunnel_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 xfrm6_tunnel_spi_fini();
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -0800411 xfrm6_tunnel_deregister(&xfrm46_tunnel_handler, AF_INET);
412 xfrm6_tunnel_deregister(&xfrm6_tunnel_handler, AF_INET6);
David S. Millera922ba52006-07-24 13:49:06 -0700413 xfrm_unregister_type(&xfrm6_tunnel_type, AF_INET6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415
416module_init(xfrm6_tunnel_init);
417module_exit(xfrm6_tunnel_fini);
418MODULE_LICENSE("GPL");
Masahide NAKAMURAd3d6dd32007-06-26 23:57:49 -0700419MODULE_ALIAS_XFRM_TYPE(AF_INET6, XFRM_PROTO_IPV6);