Thread (83 messages) flat view 83 messages, 9 authors, 2017-11-14
STALE3213d

[PATCH v3 12/21] xfrm6_tunnel: exit_net cleanup check added

From: Vasily Averin <hidden>
Date: 2017-11-06 13:25:05
Subsystem: networking [general], networking [ipsec], the rest · Maintainers: "David S. Miller", Eric Dumazet, Jakub Kicinski, Paolo Abeni, Steffen Klassert, Herbert Xu, Linus Torvalds

Be sure that spi_byaddr and spi_byspi arrays initialized in net_init hook
were return to initial state

Signed-off-by: Vasily Averin <redacted>
---
 net/ipv6/xfrm6_tunnel.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
diff --git a/net/ipv6/xfrm6_tunnel.c b/net/ipv6/xfrm6_tunnel.c
index 4e438bc..5ac3c90 100644
--- a/net/ipv6/xfrm6_tunnel.c
+++ b/net/ipv6/xfrm6_tunnel.c
@@ -338,6 +338,20 @@ static int __net_init xfrm6_tunnel_net_init(struct net *net)
 
 static void __net_exit xfrm6_tunnel_net_exit(struct net *net)
 {
+	struct xfrm6_tunnel_net *xfrm6_tn = xfrm6_tunnel_pernet(net);
+	unsigned int i;
+
+	for (i = 0; i < XFRM6_TUNNEL_SPI_BYADDR_HSIZE; i++)
+		if (WARN_ONCE(!hlist_empty(&xfrm6_tn->spi_byaddr[i]),
+			      "net %x %s: spi_byaddr is not empty\n",
+			      net->ns.inum, __func__))
+			break;
+
+	for (i = 0; i < XFRM6_TUNNEL_SPI_BYSPI_HSIZE; i++)
+		if (WARN_ONCE(!hlist_empty(&xfrm6_tn->spi_byspi[i]),
+			      "net %x %s: spi_byspi is not empty\n",
+			      net->ns.inum, __func__))
+			break;
 }
 
 static struct pernet_operations xfrm6_tunnel_net_ops = {
-- 
2.7.4
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help