Thread (3 messages) flat view 3 messages, 3 authors, 2016-02-16

Re: [PATCH net] af_unix: Guard against other == sk in unix_dgram_sendmsg

From: David Miller <davem@davemloft.net>
Date: 2016-02-16 17:55:03
Also in: lkml

Possibly related (same subject, not in this thread)

From: Rainer Weikusat <redacted>
Date: Thu, 11 Feb 2016 19:37:27 +0000
The unix_dgram_sendmsg routine use the following test

if (unlikely(unix_peer(other) != sk && unix_recvq_full(other))) {

to determine if sk and other are in an n:1 association (either
established via connect or by using sendto to send messages to an
unrelated socket identified by address). This isn't correct as the
specified address could have been bound to the sending socket itself or
because this socket could have been connected to itself by the time of
the unix_peer_get but disconnected before the unix_state_lock(other). In
both cases, the if-block would be entered despite other == sk which
might either block the sender unintentionally or lead to trying to unlock
the same spin lock twice for a non-blocking send. Add a other != sk
check to guard against this.

Fixes: 7d267278a9ec ("unix: avoid use-after-free in ep_remove_wait_queue")
Reported-By: Philipp Hahn <redacted>
Signed-off-by: Rainer Weikusat <redacted>
Also applied and queued up for -stable, thanks.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help