Message ID | 20220513185550.844558-3-eric.dumazet@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | a20ea298071f46effa3aaf965bf9bb34c901db3f |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [v2,net-next,01/10] net: annotate races around sk->sk_bound_dev_if | expand |
On Fri, May 13, 2022 at 11:55:42AM -0700, Eric Dumazet wrote: > From: Eric Dumazet <edumazet@google.com> > > sctp_rcv() reads sk->sk_bound_dev_if twice while the socket > is not locked. Another cpu could change this field under us. > > Fixes: 0fd9a65a76e8 ("[SCTP] Support SO_BINDTODEVICE socket option on incoming packets.") 2005.. :-) > Signed-off-by: Eric Dumazet <edumazet@google.com> > Cc: Neil Horman <nhorman@tuxdriver.com> > Cc: Vlad Yasevich <vyasevich@gmail.com> > Cc: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com> Acked-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
diff --git a/net/sctp/input.c b/net/sctp/input.c index 90e12bafdd4894624b3a63d625ed21c85b60a4f0..4f43afa8678f9febf2f02c2ce1a840ce3ab6a07d 100644 --- a/net/sctp/input.c +++ b/net/sctp/input.c @@ -92,6 +92,7 @@ int sctp_rcv(struct sk_buff *skb) struct sctp_chunk *chunk; union sctp_addr src; union sctp_addr dest; + int bound_dev_if; int family; struct sctp_af *af; struct net *net = dev_net(skb->dev); @@ -169,7 +170,8 @@ int sctp_rcv(struct sk_buff *skb) * If a frame arrives on an interface and the receiving socket is * bound to another interface, via SO_BINDTODEVICE, treat it as OOTB */ - if (sk->sk_bound_dev_if && (sk->sk_bound_dev_if != af->skb_iif(skb))) { + bound_dev_if = READ_ONCE(sk->sk_bound_dev_if); + if (bound_dev_if && (bound_dev_if != af->skb_iif(skb))) { if (transport) { sctp_transport_put(transport); asoc = NULL;