1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C)2003,2004 USAGI/WIDE Project
5 * Authors Mitsuru KANDA <mk@linux-ipv6.org>
6 * YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
8 * Based on net/ipv4/xfrm4_tunnel.c
10 #include <linux/module.h>
11 #include <linux/xfrm.h>
12 #include <linux/slab.h>
13 #include <linux/rculist.h>
17 #include <linux/ipv6.h>
18 #include <linux/icmpv6.h>
19 #include <linux/mutex.h>
20 #include <net/netns/generic.h>
22 #define XFRM6_TUNNEL_SPI_BYADDR_HSIZE 256
23 #define XFRM6_TUNNEL_SPI_BYSPI_HSIZE 256
25 #define XFRM6_TUNNEL_SPI_MIN 1
26 #define XFRM6_TUNNEL_SPI_MAX 0xffffffff
28 struct xfrm6_tunnel_net {
29 struct hlist_head spi_byaddr[XFRM6_TUNNEL_SPI_BYADDR_HSIZE];
30 struct hlist_head spi_byspi[XFRM6_TUNNEL_SPI_BYSPI_HSIZE];
34 static unsigned int xfrm6_tunnel_net_id __read_mostly;
35 static inline struct xfrm6_tunnel_net *xfrm6_tunnel_pernet(struct net *net)
37 return net_generic(net, xfrm6_tunnel_net_id);
41 * xfrm_tunnel_spi things are for allocating unique id ("spi")
44 struct xfrm6_tunnel_spi {
45 struct hlist_node list_byaddr;
46 struct hlist_node list_byspi;
50 struct rcu_head rcu_head;
53 static DEFINE_SPINLOCK(xfrm6_tunnel_spi_lock);
55 static struct kmem_cache *xfrm6_tunnel_spi_kmem __read_mostly;
57 static inline unsigned int xfrm6_tunnel_spi_hash_byaddr(const xfrm_address_t *addr)
61 h = ipv6_addr_hash((const struct in6_addr *)addr);
64 h &= XFRM6_TUNNEL_SPI_BYADDR_HSIZE - 1;
69 static inline unsigned int xfrm6_tunnel_spi_hash_byspi(u32 spi)
71 return spi % XFRM6_TUNNEL_SPI_BYSPI_HSIZE;
74 static struct xfrm6_tunnel_spi *__xfrm6_tunnel_spi_lookup(struct net *net, const xfrm_address_t *saddr)
76 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
77 struct xfrm6_tunnel_spi *x6spi;
79 hlist_for_each_entry_rcu(x6spi,
80 &xfrm6_tn->spi_byaddr[xfrm6_tunnel_spi_hash_byaddr(saddr)],
81 list_byaddr, lockdep_is_held(&xfrm6_tunnel_spi_lock)) {
82 if (xfrm6_addr_equal(&x6spi->addr, saddr))
89 __be32 xfrm6_tunnel_spi_lookup(struct net *net, const xfrm_address_t *saddr)
91 struct xfrm6_tunnel_spi *x6spi;
95 x6spi = __xfrm6_tunnel_spi_lookup(net, saddr);
96 spi = x6spi ? x6spi->spi : 0;
100 EXPORT_SYMBOL(xfrm6_tunnel_spi_lookup);
102 static int __xfrm6_tunnel_spi_check(struct net *net, u32 spi)
104 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
105 struct xfrm6_tunnel_spi *x6spi;
106 int index = xfrm6_tunnel_spi_hash_byspi(spi);
108 hlist_for_each_entry(x6spi,
109 &xfrm6_tn->spi_byspi[index],
111 if (x6spi->spi == spi)
117 static u32 __xfrm6_tunnel_alloc_spi(struct net *net, xfrm_address_t *saddr)
119 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
121 struct xfrm6_tunnel_spi *x6spi;
124 if (xfrm6_tn->spi < XFRM6_TUNNEL_SPI_MIN ||
125 xfrm6_tn->spi >= XFRM6_TUNNEL_SPI_MAX)
126 xfrm6_tn->spi = XFRM6_TUNNEL_SPI_MIN;
130 for (spi = xfrm6_tn->spi; spi <= XFRM6_TUNNEL_SPI_MAX; spi++) {
131 index = __xfrm6_tunnel_spi_check(net, spi);
135 if (spi == XFRM6_TUNNEL_SPI_MAX)
138 for (spi = XFRM6_TUNNEL_SPI_MIN; spi < xfrm6_tn->spi; spi++) {
139 index = __xfrm6_tunnel_spi_check(net, spi);
147 x6spi = kmem_cache_alloc(xfrm6_tunnel_spi_kmem, GFP_ATOMIC);
151 memcpy(&x6spi->addr, saddr, sizeof(x6spi->addr));
153 refcount_set(&x6spi->refcnt, 1);
155 hlist_add_head_rcu(&x6spi->list_byspi, &xfrm6_tn->spi_byspi[index]);
157 index = xfrm6_tunnel_spi_hash_byaddr(saddr);
158 hlist_add_head_rcu(&x6spi->list_byaddr, &xfrm6_tn->spi_byaddr[index]);
163 __be32 xfrm6_tunnel_alloc_spi(struct net *net, xfrm_address_t *saddr)
165 struct xfrm6_tunnel_spi *x6spi;
168 spin_lock_bh(&xfrm6_tunnel_spi_lock);
169 x6spi = __xfrm6_tunnel_spi_lookup(net, saddr);
171 refcount_inc(&x6spi->refcnt);
174 spi = __xfrm6_tunnel_alloc_spi(net, saddr);
175 spin_unlock_bh(&xfrm6_tunnel_spi_lock);
179 EXPORT_SYMBOL(xfrm6_tunnel_alloc_spi);
181 static void x6spi_destroy_rcu(struct rcu_head *head)
183 kmem_cache_free(xfrm6_tunnel_spi_kmem,
184 container_of(head, struct xfrm6_tunnel_spi, rcu_head));
187 static void xfrm6_tunnel_free_spi(struct net *net, xfrm_address_t *saddr)
189 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
190 struct xfrm6_tunnel_spi *x6spi;
191 struct hlist_node *n;
193 spin_lock_bh(&xfrm6_tunnel_spi_lock);
195 hlist_for_each_entry_safe(x6spi, n,
196 &xfrm6_tn->spi_byaddr[xfrm6_tunnel_spi_hash_byaddr(saddr)],
199 if (xfrm6_addr_equal(&x6spi->addr, saddr)) {
200 if (refcount_dec_and_test(&x6spi->refcnt)) {
201 hlist_del_rcu(&x6spi->list_byaddr);
202 hlist_del_rcu(&x6spi->list_byspi);
203 call_rcu(&x6spi->rcu_head, x6spi_destroy_rcu);
208 spin_unlock_bh(&xfrm6_tunnel_spi_lock);
211 static int xfrm6_tunnel_output(struct xfrm_state *x, struct sk_buff *skb)
213 skb_push(skb, -skb_network_offset(skb));
217 static int xfrm6_tunnel_input(struct xfrm_state *x, struct sk_buff *skb)
219 return skb_network_header(skb)[IP6CB(skb)->nhoff];
222 static int xfrm6_tunnel_rcv(struct sk_buff *skb)
224 struct net *net = dev_net(skb->dev);
225 const struct ipv6hdr *iph = ipv6_hdr(skb);
228 spi = xfrm6_tunnel_spi_lookup(net, (const xfrm_address_t *)&iph->saddr);
229 return xfrm6_rcv_spi(skb, IPPROTO_IPV6, spi, NULL);
232 static int xfrm6_tunnel_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
233 u8 type, u8 code, int offset, __be32 info)
235 /* xfrm6_tunnel native err handling */
237 case ICMPV6_DEST_UNREACH:
240 case ICMPV6_ADM_PROHIBITED:
241 case ICMPV6_NOT_NEIGHBOUR:
242 case ICMPV6_ADDR_UNREACH:
243 case ICMPV6_PORT_UNREACH:
248 case ICMPV6_PKT_TOOBIG:
250 case ICMPV6_TIME_EXCEED:
252 case ICMPV6_EXC_HOPLIMIT:
254 case ICMPV6_EXC_FRAGTIME:
259 case ICMPV6_PARAMPROB:
261 case ICMPV6_HDR_FIELD: break;
262 case ICMPV6_UNK_NEXTHDR: break;
263 case ICMPV6_UNK_OPTION: break;
273 static int xfrm6_tunnel_init_state(struct xfrm_state *x, struct netlink_ext_ack *extack)
275 if (x->props.mode != XFRM_MODE_TUNNEL) {
276 NL_SET_ERR_MSG(extack, "IPv6 tunnel can only be used with tunnel mode");
281 NL_SET_ERR_MSG(extack, "IPv6 tunnel is not compatible with encapsulation");
285 x->props.header_len = sizeof(struct ipv6hdr);
290 static void xfrm6_tunnel_destroy(struct xfrm_state *x)
292 struct net *net = xs_net(x);
294 xfrm6_tunnel_free_spi(net, (xfrm_address_t *)&x->props.saddr);
297 static const struct xfrm_type xfrm6_tunnel_type = {
298 .owner = THIS_MODULE,
299 .proto = IPPROTO_IPV6,
300 .init_state = xfrm6_tunnel_init_state,
301 .destructor = xfrm6_tunnel_destroy,
302 .input = xfrm6_tunnel_input,
303 .output = xfrm6_tunnel_output,
306 static struct xfrm6_tunnel xfrm6_tunnel_handler __read_mostly = {
307 .handler = xfrm6_tunnel_rcv,
308 .err_handler = xfrm6_tunnel_err,
312 static struct xfrm6_tunnel xfrm46_tunnel_handler __read_mostly = {
313 .handler = xfrm6_tunnel_rcv,
314 .err_handler = xfrm6_tunnel_err,
318 static int __net_init xfrm6_tunnel_net_init(struct net *net)
320 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
323 for (i = 0; i < XFRM6_TUNNEL_SPI_BYADDR_HSIZE; i++)
324 INIT_HLIST_HEAD(&xfrm6_tn->spi_byaddr[i]);
325 for (i = 0; i < XFRM6_TUNNEL_SPI_BYSPI_HSIZE; i++)
326 INIT_HLIST_HEAD(&xfrm6_tn->spi_byspi[i]);
332 static void __net_exit xfrm6_tunnel_net_exit(struct net *net)
334 struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
338 xfrm_state_flush(net, 0, false, true);
340 for (i = 0; i < XFRM6_TUNNEL_SPI_BYADDR_HSIZE; i++)
341 WARN_ON_ONCE(!hlist_empty(&xfrm6_tn->spi_byaddr[i]));
343 for (i = 0; i < XFRM6_TUNNEL_SPI_BYSPI_HSIZE; i++)
344 WARN_ON_ONCE(!hlist_empty(&xfrm6_tn->spi_byspi[i]));
347 static struct pernet_operations xfrm6_tunnel_net_ops = {
348 .init = xfrm6_tunnel_net_init,
349 .exit = xfrm6_tunnel_net_exit,
350 .id = &xfrm6_tunnel_net_id,
351 .size = sizeof(struct xfrm6_tunnel_net),
354 static int __init xfrm6_tunnel_init(void)
358 xfrm6_tunnel_spi_kmem = kmem_cache_create("xfrm6_tunnel_spi",
359 sizeof(struct xfrm6_tunnel_spi),
360 0, SLAB_HWCACHE_ALIGN,
362 if (!xfrm6_tunnel_spi_kmem)
364 rv = register_pernet_subsys(&xfrm6_tunnel_net_ops);
367 rv = xfrm_register_type(&xfrm6_tunnel_type, AF_INET6);
370 rv = xfrm6_tunnel_register(&xfrm6_tunnel_handler, AF_INET6);
373 rv = xfrm6_tunnel_register(&xfrm46_tunnel_handler, AF_INET);
379 xfrm6_tunnel_deregister(&xfrm6_tunnel_handler, AF_INET6);
381 xfrm_unregister_type(&xfrm6_tunnel_type, AF_INET6);
383 unregister_pernet_subsys(&xfrm6_tunnel_net_ops);
385 kmem_cache_destroy(xfrm6_tunnel_spi_kmem);
389 static void __exit xfrm6_tunnel_fini(void)
391 xfrm6_tunnel_deregister(&xfrm46_tunnel_handler, AF_INET);
392 xfrm6_tunnel_deregister(&xfrm6_tunnel_handler, AF_INET6);
393 xfrm_unregister_type(&xfrm6_tunnel_type, AF_INET6);
394 unregister_pernet_subsys(&xfrm6_tunnel_net_ops);
395 /* Someone maybe has gotten the xfrm6_tunnel_spi.
396 * So need to wait it.
399 kmem_cache_destroy(xfrm6_tunnel_spi_kmem);
402 module_init(xfrm6_tunnel_init);
403 module_exit(xfrm6_tunnel_fini);
404 MODULE_LICENSE("GPL");
405 MODULE_ALIAS_XFRM_TYPE(AF_INET6, XFRM_PROTO_IPV6);