blob: 438831d3359315718ff5cca2ca11ca01f878ae02 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034/*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090035 * xfrm_tunnel_spi things are for allocating unique id ("spi")
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 * per xfrm_address_t.
37 */
38struct xfrm6_tunnel_spi {
Eric Dumazet91cc3bb2009-10-23 18:19:19 +000039 struct hlist_node list_byaddr;
40 struct hlist_node list_byspi;
41 xfrm_address_t addr;
42 u32 spi;
43 atomic_t refcnt;
44 struct rcu_head rcu_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045};
46
Eric Dumazet91cc3bb2009-10-23 18:19:19 +000047static DEFINE_SPINLOCK(xfrm6_tunnel_spi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49static u32 xfrm6_tunnel_spi;
50
51#define XFRM6_TUNNEL_SPI_MIN 1
52#define XFRM6_TUNNEL_SPI_MAX 0xffffffff
53
Christoph Lametere18b8902006-12-06 20:33:20 -080054static struct kmem_cache *xfrm6_tunnel_spi_kmem __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56#define XFRM6_TUNNEL_SPI_BYADDR_HSIZE 256
57#define XFRM6_TUNNEL_SPI_BYSPI_HSIZE 256
58
59static struct hlist_head xfrm6_tunnel_spi_byaddr[XFRM6_TUNNEL_SPI_BYADDR_HSIZE];
60static struct hlist_head xfrm6_tunnel_spi_byspi[XFRM6_TUNNEL_SPI_BYSPI_HSIZE];
61
Dave Jonesb6f99a22007-03-22 12:27:49 -070062static inline unsigned xfrm6_tunnel_spi_hash_byaddr(xfrm_address_t *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
64 unsigned h;
65
Al Viro8c689a62006-11-08 00:20:21 -080066 h = (__force u32)(addr->a6[0] ^ addr->a6[1] ^ addr->a6[2] ^ addr->a6[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 h ^= h >> 16;
68 h ^= h >> 8;
69 h &= XFRM6_TUNNEL_SPI_BYADDR_HSIZE - 1;
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 return h;
72}
73
Dave Jonesb6f99a22007-03-22 12:27:49 -070074static inline unsigned xfrm6_tunnel_spi_hash_byspi(u32 spi)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
76 return spi % XFRM6_TUNNEL_SPI_BYSPI_HSIZE;
77}
78
79
80static int xfrm6_tunnel_spi_init(void)
81{
82 int i;
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 xfrm6_tunnel_spi = 0;
85 xfrm6_tunnel_spi_kmem = kmem_cache_create("xfrm6_tunnel_spi",
86 sizeof(struct xfrm6_tunnel_spi),
87 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +090088 NULL);
David S. Millera922ba52006-07-24 13:49:06 -070089 if (!xfrm6_tunnel_spi_kmem)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 for (i = 0; i < XFRM6_TUNNEL_SPI_BYADDR_HSIZE; i++)
93 INIT_HLIST_HEAD(&xfrm6_tunnel_spi_byaddr[i]);
94 for (i = 0; i < XFRM6_TUNNEL_SPI_BYSPI_HSIZE; i++)
95 INIT_HLIST_HEAD(&xfrm6_tunnel_spi_byspi[i]);
96 return 0;
97}
98
99static void xfrm6_tunnel_spi_fini(void)
100{
101 int i;
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 for (i = 0; i < XFRM6_TUNNEL_SPI_BYADDR_HSIZE; i++) {
104 if (!hlist_empty(&xfrm6_tunnel_spi_byaddr[i]))
David S. Millera922ba52006-07-24 13:49:06 -0700105 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 }
107 for (i = 0; i < XFRM6_TUNNEL_SPI_BYSPI_HSIZE; i++) {
108 if (!hlist_empty(&xfrm6_tunnel_spi_byspi[i]))
David S. Millera922ba52006-07-24 13:49:06 -0700109 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000111 rcu_barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 kmem_cache_destroy(xfrm6_tunnel_spi_kmem);
113 xfrm6_tunnel_spi_kmem = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
116static struct xfrm6_tunnel_spi *__xfrm6_tunnel_spi_lookup(xfrm_address_t *saddr)
117{
118 struct xfrm6_tunnel_spi *x6spi;
119 struct hlist_node *pos;
120
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000121 hlist_for_each_entry_rcu(x6spi, pos,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 &xfrm6_tunnel_spi_byaddr[xfrm6_tunnel_spi_hash_byaddr(saddr)],
123 list_byaddr) {
David S. Millera922ba52006-07-24 13:49:06 -0700124 if (memcmp(&x6spi->addr, saddr, sizeof(x6spi->addr)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 return x6spi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 }
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return NULL;
129}
130
Al Viro8c689a62006-11-08 00:20:21 -0800131__be32 xfrm6_tunnel_spi_lookup(xfrm_address_t *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
133 struct xfrm6_tunnel_spi *x6spi;
134 u32 spi;
135
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000136 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 x6spi = __xfrm6_tunnel_spi_lookup(saddr);
138 spi = x6spi ? x6spi->spi : 0;
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000139 rcu_read_unlock_bh();
Al Viro5b122542006-11-01 15:28:58 -0800140 return htonl(spi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
143EXPORT_SYMBOL(xfrm6_tunnel_spi_lookup);
144
YOSHIFUJI Hideakidf8ea192008-02-19 22:54:00 +0900145static int __xfrm6_tunnel_spi_check(u32 spi)
146{
147 struct xfrm6_tunnel_spi *x6spi;
148 int index = xfrm6_tunnel_spi_hash_byspi(spi);
149 struct hlist_node *pos;
150
151 hlist_for_each_entry(x6spi, pos,
152 &xfrm6_tunnel_spi_byspi[index],
153 list_byspi) {
154 if (x6spi->spi == spi)
155 return -1;
156 }
157 return index;
158}
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160static u32 __xfrm6_tunnel_alloc_spi(xfrm_address_t *saddr)
161{
162 u32 spi;
163 struct xfrm6_tunnel_spi *x6spi;
YOSHIFUJI Hideakidf8ea192008-02-19 22:54:00 +0900164 int index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 if (xfrm6_tunnel_spi < XFRM6_TUNNEL_SPI_MIN ||
167 xfrm6_tunnel_spi >= XFRM6_TUNNEL_SPI_MAX)
168 xfrm6_tunnel_spi = XFRM6_TUNNEL_SPI_MIN;
169 else
170 xfrm6_tunnel_spi++;
171
172 for (spi = xfrm6_tunnel_spi; spi <= XFRM6_TUNNEL_SPI_MAX; spi++) {
YOSHIFUJI Hideakidf8ea192008-02-19 22:54:00 +0900173 index = __xfrm6_tunnel_spi_check(spi);
174 if (index >= 0)
175 goto alloc_spi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
177 for (spi = XFRM6_TUNNEL_SPI_MIN; spi < xfrm6_tunnel_spi; spi++) {
YOSHIFUJI Hideakidf8ea192008-02-19 22:54:00 +0900178 index = __xfrm6_tunnel_spi_check(spi);
179 if (index >= 0)
180 goto alloc_spi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
182 spi = 0;
183 goto out;
184alloc_spi:
YOSHIFUJI Hideakidf8ea192008-02-19 22:54:00 +0900185 xfrm6_tunnel_spi = spi;
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800186 x6spi = kmem_cache_alloc(xfrm6_tunnel_spi_kmem, GFP_ATOMIC);
David S. Millera922ba52006-07-24 13:49:06 -0700187 if (!x6spi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 goto out;
David S. Millera922ba52006-07-24 13:49:06 -0700189
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000190 INIT_RCU_HEAD(&x6spi->rcu_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 memcpy(&x6spi->addr, saddr, sizeof(x6spi->addr));
192 x6spi->spi = spi;
193 atomic_set(&x6spi->refcnt, 1);
194
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000195 hlist_add_head_rcu(&x6spi->list_byspi, &xfrm6_tunnel_spi_byspi[index]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 index = xfrm6_tunnel_spi_hash_byaddr(saddr);
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000198 hlist_add_head_rcu(&x6spi->list_byaddr, &xfrm6_tunnel_spi_byaddr[index]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return spi;
201}
202
Al Viro8c689a62006-11-08 00:20:21 -0800203__be32 xfrm6_tunnel_alloc_spi(xfrm_address_t *saddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
205 struct xfrm6_tunnel_spi *x6spi;
206 u32 spi;
207
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000208 spin_lock_bh(&xfrm6_tunnel_spi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 x6spi = __xfrm6_tunnel_spi_lookup(saddr);
210 if (x6spi) {
211 atomic_inc(&x6spi->refcnt);
212 spi = x6spi->spi;
213 } else
214 spi = __xfrm6_tunnel_alloc_spi(saddr);
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000215 spin_unlock_bh(&xfrm6_tunnel_spi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Al Viro5b122542006-11-01 15:28:58 -0800217 return htonl(spi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
220EXPORT_SYMBOL(xfrm6_tunnel_alloc_spi);
221
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000222static void x6spi_destroy_rcu(struct rcu_head *head)
223{
224 kmem_cache_free(xfrm6_tunnel_spi_kmem,
225 container_of(head, struct xfrm6_tunnel_spi, rcu_head));
226}
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228void xfrm6_tunnel_free_spi(xfrm_address_t *saddr)
229{
230 struct xfrm6_tunnel_spi *x6spi;
231 struct hlist_node *pos, *n;
232
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000233 spin_lock_bh(&xfrm6_tunnel_spi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900235 hlist_for_each_entry_safe(x6spi, pos, n,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 &xfrm6_tunnel_spi_byaddr[xfrm6_tunnel_spi_hash_byaddr(saddr)],
237 list_byaddr)
238 {
239 if (memcmp(&x6spi->addr, saddr, sizeof(x6spi->addr)) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 if (atomic_dec_and_test(&x6spi->refcnt)) {
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000241 hlist_del_rcu(&x6spi->list_byaddr);
242 hlist_del_rcu(&x6spi->list_byspi);
243 call_rcu(&x6spi->rcu_head, x6spi_destroy_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 break;
245 }
246 }
247 }
Eric Dumazet91cc3bb2009-10-23 18:19:19 +0000248 spin_unlock_bh(&xfrm6_tunnel_spi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
251EXPORT_SYMBOL(xfrm6_tunnel_free_spi);
252
253static int xfrm6_tunnel_output(struct xfrm_state *x, struct sk_buff *skb)
254{
Herbert Xu7b277b12007-10-10 15:44:06 -0700255 skb_push(skb, -skb_network_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 return 0;
257}
258
Herbert Xue6956332006-04-01 00:52:46 -0800259static int xfrm6_tunnel_input(struct xfrm_state *x, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
Herbert Xu04663d02007-10-17 21:28:06 -0700261 return skb_network_header(skb)[IP6CB(skb)->nhoff];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
Herbert Xud2acc342006-03-28 01:12:13 -0800264static int xfrm6_tunnel_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700266 struct ipv6hdr *iph = ipv6_hdr(skb);
Al Viroa252cc22006-09-27 18:48:18 -0700267 __be32 spi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 spi = xfrm6_tunnel_spi_lookup((xfrm_address_t *)&iph->saddr);
Herbert Xu33b5ecb2007-10-17 21:29:25 -0700270 return xfrm6_rcv_spi(skb, IPPROTO_IPV6, spi) > 0 ? : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
Herbert Xud2acc342006-03-28 01:12:13 -0800273static int xfrm6_tunnel_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700274 u8 type, u8 code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 /* xfrm6_tunnel native err handling */
277 switch (type) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900278 case ICMPV6_DEST_UNREACH:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 switch (code) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900280 case ICMPV6_NOROUTE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 case ICMPV6_ADM_PROHIBITED:
282 case ICMPV6_NOT_NEIGHBOUR:
283 case ICMPV6_ADDR_UNREACH:
284 case ICMPV6_PORT_UNREACH:
285 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 break;
287 }
288 break;
289 case ICMPV6_PKT_TOOBIG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 break;
291 case ICMPV6_TIME_EXCEED:
292 switch (code) {
293 case ICMPV6_EXC_HOPLIMIT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 break;
295 case ICMPV6_EXC_FRAGTIME:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900296 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 break;
298 }
299 break;
300 case ICMPV6_PARAMPROB:
301 switch (code) {
302 case ICMPV6_HDR_FIELD: break;
303 case ICMPV6_UNK_NEXTHDR: break;
304 case ICMPV6_UNK_OPTION: break;
305 }
306 break;
307 default:
308 break;
309 }
Herbert Xud2acc342006-03-28 01:12:13 -0800310
311 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
Herbert Xu72cb6962005-06-20 13:18:08 -0700314static int xfrm6_tunnel_init_state(struct xfrm_state *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700316 if (x->props.mode != XFRM_MODE_TUNNEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 return -EINVAL;
318
319 if (x->encap)
320 return -EINVAL;
321
322 x->props.header_len = sizeof(struct ipv6hdr);
323
324 return 0;
325}
326
327static void xfrm6_tunnel_destroy(struct xfrm_state *x)
328{
329 xfrm6_tunnel_free_spi((xfrm_address_t *)&x->props.saddr);
330}
331
Eric Dumazet533cb5b2008-01-30 19:11:50 -0800332static const struct xfrm_type xfrm6_tunnel_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 .description = "IP6IP6",
334 .owner = THIS_MODULE,
335 .proto = IPPROTO_IPV6,
336 .init_state = xfrm6_tunnel_init_state,
337 .destructor = xfrm6_tunnel_destroy,
338 .input = xfrm6_tunnel_input,
339 .output = xfrm6_tunnel_output,
340};
341
Herbert Xud2acc342006-03-28 01:12:13 -0800342static struct xfrm6_tunnel xfrm6_tunnel_handler = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 .handler = xfrm6_tunnel_rcv,
Herbert Xud2acc342006-03-28 01:12:13 -0800344 .err_handler = xfrm6_tunnel_err,
345 .priority = 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346};
347
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -0800348static struct xfrm6_tunnel xfrm46_tunnel_handler = {
349 .handler = xfrm6_tunnel_rcv,
350 .err_handler = xfrm6_tunnel_err,
351 .priority = 2,
352};
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354static int __init xfrm6_tunnel_init(void)
355{
David S. Millera922ba52006-07-24 13:49:06 -0700356 if (xfrm_register_type(&xfrm6_tunnel_type, AF_INET6) < 0)
Ilpo Järvinen5ce1bbb2008-12-14 23:13:48 -0800357 goto err;
358 if (xfrm6_tunnel_register(&xfrm6_tunnel_handler, AF_INET6))
359 goto unreg;
360 if (xfrm6_tunnel_register(&xfrm46_tunnel_handler, AF_INET))
361 goto dereg6;
362 if (xfrm6_tunnel_spi_init() < 0)
363 goto dereg46;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 return 0;
Ilpo Järvinen5ce1bbb2008-12-14 23:13:48 -0800365
366dereg46:
367 xfrm6_tunnel_deregister(&xfrm46_tunnel_handler, AF_INET);
368dereg6:
369 xfrm6_tunnel_deregister(&xfrm6_tunnel_handler, AF_INET6);
370unreg:
371 xfrm_unregister_type(&xfrm6_tunnel_type, AF_INET6);
372err:
373 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
376static void __exit xfrm6_tunnel_fini(void)
377{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 xfrm6_tunnel_spi_fini();
Kazunori MIYAZAWA73d605d2007-02-13 12:55:55 -0800379 xfrm6_tunnel_deregister(&xfrm46_tunnel_handler, AF_INET);
380 xfrm6_tunnel_deregister(&xfrm6_tunnel_handler, AF_INET6);
David S. Millera922ba52006-07-24 13:49:06 -0700381 xfrm_unregister_type(&xfrm6_tunnel_type, AF_INET6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
384module_init(xfrm6_tunnel_init);
385module_exit(xfrm6_tunnel_fini);
386MODULE_LICENSE("GPL");
Masahide NAKAMURAd3d6dd32007-06-26 23:57:49 -0700387MODULE_ALIAS_XFRM_TYPE(AF_INET6, XFRM_PROTO_IPV6);