]> git.baikalelectronics.ru Git - kernel.git/commit
sctp: read sk->sk_bound_dev_if once in sctp_rcv()
authorEric Dumazet <edumazet@google.com>
Fri, 13 May 2022 18:55:42 +0000 (11:55 -0700)
committerDavid S. Miller <davem@davemloft.net>
Mon, 16 May 2022 09:31:06 +0000 (10:31 +0100)
commitf065216bdfc0e989d3242234a63197b3b49d2d8f
tree7a871cb0b15e5e73b3a77b794e29380f3290cb39
parent6039d7bda04862b27c8711071bbf16fb76428931
sctp: read sk->sk_bound_dev_if once in sctp_rcv()

sctp_rcv() reads sk->sk_bound_dev_if twice while the socket
is not locked. Another cpu could change this field under us.

Fixes: 87051fdaac74 ("[SCTP] Support SO_BINDTODEVICE socket option on incoming packets.")
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>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sctp/input.c