2 * Copyright (C)2003,2004 USAGI/WIDE Project
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.
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.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
17 * Authors Mitsuru KANDA <mk@linux-ipv6.org>
18 * YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
20 * Based on net/ipv4/xfrm4_tunnel.c
23 #include <linux/module.h>
24 #include <linux/xfrm.h>
25 #include <linux/slab.h>
26 #include <linux/rculist.h>
30 #include <linux/ipv6.h>
31 #include <linux/icmpv6.h>
32 #include <linux/mutex.h>
33 #include <net/netns/generic.h>
35 #define XFRM6_TUNNEL_SPI_BYADDR_HSIZE 256
36 #define XFRM6_TUNNEL_SPI_BYSPI_HSIZE 256
38 #define XFRM6_TUNNEL_SPI_MIN 1
39 #define XFRM6_TUNNEL_SPI_MAX 0xffffffff
41 struct 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];
47 static unsigned int xfrm6_tunnel_net_id __read_mostly;
48 static inline struct xfrm6_tunnel_net *xfrm6_tunnel_pernet(struct net *net)
50 return net_generic(net, xfrm6_tunnel_net_id);
54 * xfrm_tunnel_spi things are for allocating unique id ("spi")
57 struct xfrm6_tunnel_spi {
58 struct hlist_node list_byaddr;
59 struct hlist_node list_byspi;
63 struct rcu_head rcu_head;
66 static DEFINE_SPINLOCK(xfrm6_tunnel_spi_lock);
68 static struct kmem_cache *xfrm6_tunnel_spi_kmem __read_mostly;
70 static inline unsigned int xfrm6_tunnel_spi_hash_byaddr(const xfrm_address_t *addr)
74 h = ipv6_addr_hash((const struct in6_addr *)addr);
77 h &= XFRM6_TUNNEL_SPI_BYADDR_HSIZE - 1;
82 static inline unsigned int xfrm6_tunnel_spi_hash_byspi(u32 spi)
84 return spi % XFRM6_TUNNEL_SPI_BYSPI_HSIZE;
87 static struct xfrm6_tunnel_spi *__xfrm6_tunnel_spi_lookup(struct net *net, const xfrm_address_t *saddr)
89 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
90 struct xfrm6_tunnel_spi *x6spi;
92 hlist_for_each_entry_rcu(x6spi,
93 &xfrm6_tn->spi_byaddr[xfrm6_tunnel_spi_hash_byaddr(saddr)],
95 if (xfrm6_addr_equal(&x6spi->addr, saddr))
102 __be32 xfrm6_tunnel_spi_lookup(struct net *net, const xfrm_address_t *saddr)
104 struct xfrm6_tunnel_spi *x6spi;
108 x6spi = __xfrm6_tunnel_spi_lookup(net, saddr);
109 spi = x6spi ? x6spi->spi : 0;
110 rcu_read_unlock_bh();
113 EXPORT_SYMBOL(xfrm6_tunnel_spi_lookup);
115 static int __xfrm6_tunnel_spi_check(struct net *net, u32 spi)
117 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
118 struct xfrm6_tunnel_spi *x6spi;
119 int index = xfrm6_tunnel_spi_hash_byspi(spi);
121 hlist_for_each_entry(x6spi,
122 &xfrm6_tn->spi_byspi[index],
124 if (x6spi->spi == spi)
130 static u32 __xfrm6_tunnel_alloc_spi(struct net *net, xfrm_address_t *saddr)
132 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
134 struct xfrm6_tunnel_spi *x6spi;
137 if (xfrm6_tn->spi < XFRM6_TUNNEL_SPI_MIN ||
138 xfrm6_tn->spi >= XFRM6_TUNNEL_SPI_MAX)
139 xfrm6_tn->spi = XFRM6_TUNNEL_SPI_MIN;
143 for (spi = xfrm6_tn->spi; spi <= XFRM6_TUNNEL_SPI_MAX; spi++) {
144 index = __xfrm6_tunnel_spi_check(net, spi);
148 for (spi = XFRM6_TUNNEL_SPI_MIN; spi < xfrm6_tn->spi; spi++) {
149 index = __xfrm6_tunnel_spi_check(net, spi);
157 x6spi = kmem_cache_alloc(xfrm6_tunnel_spi_kmem, GFP_ATOMIC);
161 memcpy(&x6spi->addr, saddr, sizeof(x6spi->addr));
163 refcount_set(&x6spi->refcnt, 1);
165 hlist_add_head_rcu(&x6spi->list_byspi, &xfrm6_tn->spi_byspi[index]);
167 index = xfrm6_tunnel_spi_hash_byaddr(saddr);
168 hlist_add_head_rcu(&x6spi->list_byaddr, &xfrm6_tn->spi_byaddr[index]);
173 __be32 xfrm6_tunnel_alloc_spi(struct net *net, xfrm_address_t *saddr)
175 struct xfrm6_tunnel_spi *x6spi;
178 spin_lock_bh(&xfrm6_tunnel_spi_lock);
179 x6spi = __xfrm6_tunnel_spi_lookup(net, saddr);
181 refcount_inc(&x6spi->refcnt);
184 spi = __xfrm6_tunnel_alloc_spi(net, saddr);
185 spin_unlock_bh(&xfrm6_tunnel_spi_lock);
189 EXPORT_SYMBOL(xfrm6_tunnel_alloc_spi);
191 static void x6spi_destroy_rcu(struct rcu_head *head)
193 kmem_cache_free(xfrm6_tunnel_spi_kmem,
194 container_of(head, struct xfrm6_tunnel_spi, rcu_head));
197 static void xfrm6_tunnel_free_spi(struct net *net, xfrm_address_t *saddr)
199 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
200 struct xfrm6_tunnel_spi *x6spi;
201 struct hlist_node *n;
203 spin_lock_bh(&xfrm6_tunnel_spi_lock);
205 hlist_for_each_entry_safe(x6spi, n,
206 &xfrm6_tn->spi_byaddr[xfrm6_tunnel_spi_hash_byaddr(saddr)],
209 if (xfrm6_addr_equal(&x6spi->addr, saddr)) {
210 if (refcount_dec_and_test(&x6spi->refcnt)) {
211 hlist_del_rcu(&x6spi->list_byaddr);
212 hlist_del_rcu(&x6spi->list_byspi);
213 call_rcu(&x6spi->rcu_head, x6spi_destroy_rcu);
218 spin_unlock_bh(&xfrm6_tunnel_spi_lock);
221 static int xfrm6_tunnel_output(struct xfrm_state *x, struct sk_buff *skb)
223 skb_push(skb, -skb_network_offset(skb));
227 static int xfrm6_tunnel_input(struct xfrm_state *x, struct sk_buff *skb)
229 return skb_network_header(skb)[IP6CB(skb)->nhoff];
232 static int xfrm6_tunnel_rcv(struct sk_buff *skb)
234 struct net *net = dev_net(skb->dev);
235 const struct ipv6hdr *iph = ipv6_hdr(skb);
238 spi = xfrm6_tunnel_spi_lookup(net, (const xfrm_address_t *)&iph->saddr);
239 return xfrm6_rcv_spi(skb, IPPROTO_IPV6, spi, NULL);
242 static int xfrm6_tunnel_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
243 u8 type, u8 code, int offset, __be32 info)
245 /* xfrm6_tunnel native err handling */
247 case ICMPV6_DEST_UNREACH:
250 case ICMPV6_ADM_PROHIBITED:
251 case ICMPV6_NOT_NEIGHBOUR:
252 case ICMPV6_ADDR_UNREACH:
253 case ICMPV6_PORT_UNREACH:
258 case ICMPV6_PKT_TOOBIG:
260 case ICMPV6_TIME_EXCEED:
262 case ICMPV6_EXC_HOPLIMIT:
264 case ICMPV6_EXC_FRAGTIME:
269 case ICMPV6_PARAMPROB:
271 case ICMPV6_HDR_FIELD: break;
272 case ICMPV6_UNK_NEXTHDR: break;
273 case ICMPV6_UNK_OPTION: break;
283 static int xfrm6_tunnel_init_state(struct xfrm_state *x)
285 if (x->props.mode != XFRM_MODE_TUNNEL)
291 x->props.header_len = sizeof(struct ipv6hdr);
296 static void xfrm6_tunnel_destroy(struct xfrm_state *x)
298 struct net *net = xs_net(x);
300 xfrm6_tunnel_free_spi(net, (xfrm_address_t *)&x->props.saddr);
303 static const struct xfrm_type xfrm6_tunnel_type = {
304 .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,
313 static struct xfrm6_tunnel xfrm6_tunnel_handler __read_mostly = {
314 .handler = xfrm6_tunnel_rcv,
315 .err_handler = xfrm6_tunnel_err,
319 static struct xfrm6_tunnel xfrm46_tunnel_handler __read_mostly = {
320 .handler = xfrm6_tunnel_rcv,
321 .err_handler = xfrm6_tunnel_err,
325 static int __net_init xfrm6_tunnel_net_init(struct net *net)
327 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
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]);
339 static void __net_exit xfrm6_tunnel_net_exit(struct net *net)
341 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
344 xfrm_state_flush(net, IPSEC_PROTO_ANY, false);
347 for (i = 0; i < XFRM6_TUNNEL_SPI_BYADDR_HSIZE; i++)
348 WARN_ON_ONCE(!hlist_empty(&xfrm6_tn->spi_byaddr[i]));
350 for (i = 0; i < XFRM6_TUNNEL_SPI_BYSPI_HSIZE; i++)
351 WARN_ON_ONCE(!hlist_empty(&xfrm6_tn->spi_byspi[i]));
354 static struct pernet_operations xfrm6_tunnel_net_ops = {
355 .init = xfrm6_tunnel_net_init,
356 .exit = xfrm6_tunnel_net_exit,
357 .id = &xfrm6_tunnel_net_id,
358 .size = sizeof(struct xfrm6_tunnel_net),
361 static int __init xfrm6_tunnel_init(void)
365 xfrm6_tunnel_spi_kmem = kmem_cache_create("xfrm6_tunnel_spi",
366 sizeof(struct xfrm6_tunnel_spi),
367 0, SLAB_HWCACHE_ALIGN,
369 if (!xfrm6_tunnel_spi_kmem)
371 rv = register_pernet_subsys(&xfrm6_tunnel_net_ops);
374 rv = xfrm_register_type(&xfrm6_tunnel_type, AF_INET6);
377 rv = xfrm6_tunnel_register(&xfrm6_tunnel_handler, AF_INET6);
380 rv = xfrm6_tunnel_register(&xfrm46_tunnel_handler, AF_INET);
386 xfrm6_tunnel_deregister(&xfrm6_tunnel_handler, AF_INET6);
388 xfrm_unregister_type(&xfrm6_tunnel_type, AF_INET6);
390 unregister_pernet_subsys(&xfrm6_tunnel_net_ops);
392 kmem_cache_destroy(xfrm6_tunnel_spi_kmem);
396 static void __exit xfrm6_tunnel_fini(void)
398 xfrm6_tunnel_deregister(&xfrm46_tunnel_handler, AF_INET);
399 xfrm6_tunnel_deregister(&xfrm6_tunnel_handler, AF_INET6);
400 xfrm_unregister_type(&xfrm6_tunnel_type, AF_INET6);
401 unregister_pernet_subsys(&xfrm6_tunnel_net_ops);
402 kmem_cache_destroy(xfrm6_tunnel_spi_kmem);
405 module_init(xfrm6_tunnel_init);
406 module_exit(xfrm6_tunnel_fini);
407 MODULE_LICENSE("GPL");
408 MODULE_ALIAS_XFRM_TYPE(AF_INET6, XFRM_PROTO_IPV6);