]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
l2tp: use rcu_dereference_sk_user_data() in l2tp_udp_encap_recv()
authorEric Dumazet <edumazet@google.com>
Tue, 23 Apr 2019 16:43:26 +0000 (09:43 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 26 Apr 2019 15:18:23 +0000 (11:18 -0400)
Canonical way to fetch sk_user_data from an encap_rcv() handler called
from UDP stack in rcu protected section is to use rcu_dereference_sk_user_data(),
otherwise compiler might read it multiple times.

Fixes: d00fa9adc528 ("il2tp: fix races with tunnel socket close")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Cc: James Chapman <jchapman@katalix.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/l2tp/l2tp_core.c

index fed6becc5daf86afa2ad9188bb28e151244bb5a6..aee33d1320184e411dbedff72b5bf5199481e53f 100644 (file)
@@ -909,7 +909,7 @@ int l2tp_udp_encap_recv(struct sock *sk, struct sk_buff *skb)
 {
        struct l2tp_tunnel *tunnel;
 
-       tunnel = l2tp_tunnel(sk);
+       tunnel = rcu_dereference_sk_user_data(sk);
        if (tunnel == NULL)
                goto pass_up;