Message ID | 20240218081214.4806-1-remi@remlab.net (mailing list archive) |
---|---|
State | Accepted |
Commit | 3b2d9bc4d4acdf15a876eae2c0d83149250e85ba |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [PATCHv2,1/2] phonet: take correct lock to peek at the RX queue | expand |
Hello: This series was applied to netdev/net.git (main) by Paolo Abeni <pabeni@redhat.com>: On Sun, 18 Feb 2024 10:12:13 +0200 you wrote: > From: Rémi Denis-Courmont <courmisch@gmail.com> > > The receive queue is protected by its embedded spin-lock, not the > socket lock, so we need the former lock here (and only that one). > > Fixes: 107d0d9b8d9a ("Phonet: Phonet datagram transport protocol") > Reported-by: Luosili <rootlab@huawei.com> > Signed-off-by: Rémi Denis-Courmont <courmisch@gmail.com> > Reviewed-by: Eric Dumazet <edumazet@google.com> > > [...] Here is the summary with links: - [PATCHv2,1/2] phonet: take correct lock to peek at the RX queue https://git.kernel.org/netdev/net/c/3b2d9bc4d4ac - [PATCHv2,2/2] phonet/pep: fix racy skb_queue_empty() use https://git.kernel.org/netdev/net/c/7d2a894d7f48 You are awesome, thank you!
diff --git a/net/phonet/datagram.c b/net/phonet/datagram.c index 3aa50dc7535b..976fe250b509 100644 --- a/net/phonet/datagram.c +++ b/net/phonet/datagram.c @@ -34,10 +34,10 @@ static int pn_ioctl(struct sock *sk, int cmd, int *karg) switch (cmd) { case SIOCINQ: - lock_sock(sk); + spin_lock_bh(&sk->sk_receive_queue.lock); skb = skb_peek(&sk->sk_receive_queue); *karg = skb ? skb->len : 0; - release_sock(sk); + spin_unlock_bh(&sk->sk_receive_queue.lock); return 0; case SIOCPNADDRESOURCE: