aboutsummaryrefslogtreecommitdiffstats
path: root/net/xfrm
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2017-02-08 05:52:29 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-03-31 04:31:45 -0400
commitf68a09c7944eca3bdfce2ef18b43dfd2359346b7 (patch)
tree8cbfe0debedd6bef793148e73246cd13ba1945d8 /net/xfrm
parentc8e131605de2e0d1d5769ff25272ae1c8e4720b0 (diff)
xfrm: policy: init locks early
commit c282222a45cb9503cbfbebfdb60491f06ae84b49 upstream. Dmitry reports following splat: INFO: trying to register non-static key. the code is fine but needs lockdep annotation. turning off the locking correctness validator. CPU: 0 PID: 13059 Comm: syz-executor1 Not tainted 4.10.0-rc7-next-20170207 #1 [..] spin_lock_bh include/linux/spinlock.h:304 [inline] xfrm_policy_flush+0x32/0x470 net/xfrm/xfrm_policy.c:963 xfrm_policy_fini+0xbf/0x560 net/xfrm/xfrm_policy.c:3041 xfrm_net_init+0x79f/0x9e0 net/xfrm/xfrm_policy.c:3091 ops_init+0x10a/0x530 net/core/net_namespace.c:115 setup_net+0x2ed/0x690 net/core/net_namespace.c:291 copy_net_ns+0x26c/0x530 net/core/net_namespace.c:396 create_new_namespaces+0x409/0x860 kernel/nsproxy.c:106 unshare_nsproxy_namespaces+0xae/0x1e0 kernel/nsproxy.c:205 SYSC_unshare kernel/fork.c:2281 [inline] Problem is that when we get error during xfrm_net_init we will call xfrm_policy_fini which will acquire xfrm_policy_lock before it was initialized. Just move it around so locks get set up first. Reported-by: Dmitry Vyukov <dvyukov@google.com> Fixes: 283bc9f35bbbcb0e9 ("xfrm: Namespacify xfrm state/policy locks") Signed-off-by: Florian Westphal <fw@strlen.de> Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'net/xfrm')
-rw-r--r--net/xfrm/xfrm_policy.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/net/xfrm/xfrm_policy.c b/net/xfrm/xfrm_policy.c
index 5bf7e1bfeac7..e0437a7aa1a2 100644
--- a/net/xfrm/xfrm_policy.c
+++ b/net/xfrm/xfrm_policy.c
@@ -3062,6 +3062,11 @@ static int __net_init xfrm_net_init(struct net *net)
3062{ 3062{
3063 int rv; 3063 int rv;
3064 3064
3065 /* Initialize the per-net locks here */
3066 spin_lock_init(&net->xfrm.xfrm_state_lock);
3067 spin_lock_init(&net->xfrm.xfrm_policy_lock);
3068 mutex_init(&net->xfrm.xfrm_cfg_mutex);
3069
3065 rv = xfrm_statistics_init(net); 3070 rv = xfrm_statistics_init(net);
3066 if (rv < 0) 3071 if (rv < 0)
3067 goto out_statistics; 3072 goto out_statistics;
@@ -3078,11 +3083,6 @@ static int __net_init xfrm_net_init(struct net *net)
3078 if (rv < 0) 3083 if (rv < 0)
3079 goto out; 3084 goto out;
3080 3085
3081 /* Initialize the per-net locks here */
3082 spin_lock_init(&net->xfrm.xfrm_state_lock);
3083 spin_lock_init(&net->xfrm.xfrm_policy_lock);
3084 mutex_init(&net->xfrm.xfrm_cfg_mutex);
3085
3086 return 0; 3086 return 0;
3087 3087
3088out: 3088out: