]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/blame - releases/4.4.181/xfrm6_tunnel-fix-potential-panic-when-unloading-xfrm.patch
Linux 4.4.181
[thirdparty/kernel/stable-queue.git] / releases / 4.4.181 / xfrm6_tunnel-fix-potential-panic-when-unloading-xfrm.patch
CommitLineData
1aa7b030
SL
1From fe62e481297878a35494219232c66d7b0e58cecb Mon Sep 17 00:00:00 2001
2From: Su Yanjun <suyj.fnst@cn.fujitsu.com>
3Date: Thu, 14 Mar 2019 14:59:42 +0800
4Subject: xfrm6_tunnel: Fix potential panic when unloading xfrm6_tunnel module
5
6[ Upstream commit 6ee02a54ef990a71bf542b6f0a4e3321de9d9c66 ]
7
8When unloading xfrm6_tunnel module, xfrm6_tunnel_fini directly
9frees the xfrm6_tunnel_spi_kmem. Maybe someone has gotten the
10xfrm6_tunnel_spi, so need to wait it.
11
12Fixes: 91cc3bb0b04ff("xfrm6_tunnel: RCU conversion")
13Signed-off-by: Su Yanjun <suyj.fnst@cn.fujitsu.com>
14Acked-by: Herbert Xu <herbert@gondor.apana.org.au>
15Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
16Signed-off-by: Sasha Levin <sashal@kernel.org>
17---
811ef891 18 net/ipv6/xfrm6_tunnel.c | 4 ++++
1aa7b030
SL
19 1 file changed, 4 insertions(+)
20
1aa7b030
SL
21--- a/net/ipv6/xfrm6_tunnel.c
22+++ b/net/ipv6/xfrm6_tunnel.c
811ef891 23@@ -391,6 +391,10 @@ static void __exit xfrm6_tunnel_fini(voi
1aa7b030
SL
24 xfrm6_tunnel_deregister(&xfrm6_tunnel_handler, AF_INET6);
25 xfrm_unregister_type(&xfrm6_tunnel_type, AF_INET6);
26 unregister_pernet_subsys(&xfrm6_tunnel_net_ops);
27+ /* Someone maybe has gotten the xfrm6_tunnel_spi.
28+ * So need to wait it.
29+ */
30+ rcu_barrier();
31 kmem_cache_destroy(xfrm6_tunnel_spi_kmem);
32 }
33