phonet/pep: fix racy skb_queue_empty() use
authorRémi Denis-Courmont <courmisch@gmail.com>
Sun, 18 Feb 2024 08:12:14 +0000 (10:12 +0200)
committerPaolo Abeni <pabeni@redhat.com>
Thu, 22 Feb 2024 08:05:50 +0000 (09:05 +0100)
commit7d2a894d7f487dcb894df023e9d3014cf5b93fe5
tree18664540fc28c1b481a413ad17e08d21d5d0727c
parent3b2d9bc4d4acdf15a876eae2c0d83149250e85ba
phonet/pep: fix racy skb_queue_empty() use

The receive queues are protected by their respective spin-lock, not
the socket lock. This could lead to skb_peek() unexpectedly
returning NULL or a pointer to an already dequeued socket buffer.

Fixes: 9641458d3ec4 ("Phonet: Pipe End Point for Phonet Pipes protocol")
Signed-off-by: Rémi Denis-Courmont <courmisch@gmail.com>
Link: https://lore.kernel.org/r/20240218081214.4806-2-remi@remlab.net
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
net/phonet/pep.c