mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 18:09:56 +00:00
kcm: do not attach PF_KCM sockets to avoid deadlock
[ Upstream commit351050ecd6] syzkaller had no problem to trigger a deadlock, attaching a KCM socket to another one (or itself). (original syzkaller report was a very confusing lockdep splat during a sendmsg()) It seems KCM claims to only support TCP, but no enforcement is done, so we might need to add additional checks. Fixes:ab7ac4eb98("kcm: Kernel Connection Multiplexor module") Signed-off-by: Eric Dumazet <edumazet@google.com> Reported-by: Dmitry Vyukov <dvyukov@google.com> Acked-by: Tom Herbert <tom@quantonium.net> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
e7ebdeb47c
commit
f9901adf53
@@ -1383,6 +1383,10 @@ static int kcm_attach(struct socket *sock, struct socket *csock,
|
|||||||
if (!csk)
|
if (!csk)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
|
/* We must prevent loops or risk deadlock ! */
|
||||||
|
if (csk->sk_family == PF_KCM)
|
||||||
|
return -EOPNOTSUPP;
|
||||||
|
|
||||||
psock = kmem_cache_zalloc(kcm_psockp, GFP_KERNEL);
|
psock = kmem_cache_zalloc(kcm_psockp, GFP_KERNEL);
|
||||||
if (!psock)
|
if (!psock)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|||||||
Reference in New Issue
Block a user