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
)
275 if (x
->props
.mode
!= XFRM_MODE_TUNNEL
)
281 x
->props
.header_len
= sizeof(struct ipv6hdr
);
286 static void xfrm6_tunnel_destroy(struct xfrm_state
*x
)
288 struct net
*net
= xs_net(x
);
290 xfrm6_tunnel_free_spi(net
, (xfrm_address_t
*)&x
->props
.saddr
);
293 static const struct xfrm_type xfrm6_tunnel_type
= {
294 .description
= "IP6IP6",
295 .owner
= THIS_MODULE
,
296 .proto
= IPPROTO_IPV6
,
297 .init_state
= xfrm6_tunnel_init_state
,
298 .destructor
= xfrm6_tunnel_destroy
,
299 .input
= xfrm6_tunnel_input
,
300 .output
= xfrm6_tunnel_output
,
303 static struct xfrm6_tunnel xfrm6_tunnel_handler __read_mostly
= {
304 .handler
= xfrm6_tunnel_rcv
,
305 .err_handler
= xfrm6_tunnel_err
,
309 static struct xfrm6_tunnel xfrm46_tunnel_handler __read_mostly
= {
310 .handler
= xfrm6_tunnel_rcv
,
311 .err_handler
= xfrm6_tunnel_err
,
315 static int __net_init
xfrm6_tunnel_net_init(struct net
*net
)
317 struct xfrm6_tunnel_net
*xfrm6_tn
= xfrm6_tunnel_pernet(net
);
320 for (i
= 0; i
< XFRM6_TUNNEL_SPI_BYADDR_HSIZE
; i
++)
321 INIT_HLIST_HEAD(&xfrm6_tn
->spi_byaddr
[i
]);
322 for (i
= 0; i
< XFRM6_TUNNEL_SPI_BYSPI_HSIZE
; i
++)
323 INIT_HLIST_HEAD(&xfrm6_tn
->spi_byspi
[i
]);
329 static void __net_exit
xfrm6_tunnel_net_exit(struct net
*net
)
331 struct xfrm6_tunnel_net
*xfrm6_tn
= xfrm6_tunnel_pernet(net
);
335 xfrm_state_flush(net
, 0, false, true);
337 for (i
= 0; i
< XFRM6_TUNNEL_SPI_BYADDR_HSIZE
; i
++)
338 WARN_ON_ONCE(!hlist_empty(&xfrm6_tn
->spi_byaddr
[i
]));
340 for (i
= 0; i
< XFRM6_TUNNEL_SPI_BYSPI_HSIZE
; i
++)
341 WARN_ON_ONCE(!hlist_empty(&xfrm6_tn
->spi_byspi
[i
]));
344 static struct pernet_operations xfrm6_tunnel_net_ops
= {
345 .init
= xfrm6_tunnel_net_init
,
346 .exit
= xfrm6_tunnel_net_exit
,
347 .id
= &xfrm6_tunnel_net_id
,
348 .size
= sizeof(struct xfrm6_tunnel_net
),
351 static int __init
xfrm6_tunnel_init(void)
355 xfrm6_tunnel_spi_kmem
= kmem_cache_create("xfrm6_tunnel_spi",
356 sizeof(struct xfrm6_tunnel_spi
),
357 0, SLAB_HWCACHE_ALIGN
,
359 if (!xfrm6_tunnel_spi_kmem
)
361 rv
= register_pernet_subsys(&xfrm6_tunnel_net_ops
);
364 rv
= xfrm_register_type(&xfrm6_tunnel_type
, AF_INET6
);
367 rv
= xfrm6_tunnel_register(&xfrm6_tunnel_handler
, AF_INET6
);
370 rv
= xfrm6_tunnel_register(&xfrm46_tunnel_handler
, AF_INET
);
376 xfrm6_tunnel_deregister(&xfrm6_tunnel_handler
, AF_INET6
);
378 xfrm_unregister_type(&xfrm6_tunnel_type
, AF_INET6
);
380 unregister_pernet_subsys(&xfrm6_tunnel_net_ops
);
382 kmem_cache_destroy(xfrm6_tunnel_spi_kmem
);
386 static void __exit
xfrm6_tunnel_fini(void)
388 xfrm6_tunnel_deregister(&xfrm46_tunnel_handler
, AF_INET
);
389 xfrm6_tunnel_deregister(&xfrm6_tunnel_handler
, AF_INET6
);
390 xfrm_unregister_type(&xfrm6_tunnel_type
, AF_INET6
);
391 unregister_pernet_subsys(&xfrm6_tunnel_net_ops
);
392 /* Someone maybe has gotten the xfrm6_tunnel_spi.
393 * So need to wait it.
396 kmem_cache_destroy(xfrm6_tunnel_spi_kmem
);
399 module_init(xfrm6_tunnel_init
);
400 module_exit(xfrm6_tunnel_fini
);
401 MODULE_LICENSE("GPL");
402 MODULE_ALIAS_XFRM_TYPE(AF_INET6
, XFRM_PROTO_IPV6
);