]> Git Repo - linux.git/commitdiff
xfrm: fix rcu lock in xfrm_notify_userpolicy()
authorNicolas Dichtel <[email protected]>
Wed, 22 Sep 2021 08:50:06 +0000 (10:50 +0200)
committerSteffen Klassert <[email protected]>
Thu, 23 Sep 2021 08:11:12 +0000 (10:11 +0200)
As stated in the comment above xfrm_nlmsg_multicast(), rcu read lock must
be held before calling this function.

Reported-by: [email protected]
Fixes: 703b94b93c19 ("xfrm: notify default policy on update")
Signed-off-by: Nicolas Dichtel <[email protected]>
Signed-off-by: Steffen Klassert <[email protected]>
net/xfrm/xfrm_user.c

index 0eba0c27c66575487b6820ee9d447ecd59fe3090..3a3cb09eec1228f994fb23ec378879652dec9a6d 100644 (file)
@@ -1967,6 +1967,7 @@ static int xfrm_notify_userpolicy(struct net *net)
        int len = NLMSG_ALIGN(sizeof(*up));
        struct nlmsghdr *nlh;
        struct sk_buff *skb;
+       int err;
 
        skb = nlmsg_new(len, GFP_ATOMIC);
        if (skb == NULL)
@@ -1988,7 +1989,11 @@ static int xfrm_notify_userpolicy(struct net *net)
 
        nlmsg_end(skb, nlh);
 
-       return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
+       rcu_read_lock();
+       err = xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
+       rcu_read_unlock();
+
+       return err;
 }
 
 static int xfrm_set_default(struct sk_buff *skb, struct nlmsghdr *nlh,
This page took 0.060183 seconds and 4 git commands to generate.