CVE-2026-53292
Gravedad:
Pendiente de análisis
Tipo:
No Disponible / Otro tipo
Fecha de publicación:
26/06/2026
Última modificación:
30/06/2026
Descripción
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
net: phonet: do not BUG_ON() in pn_socket_autobind() on failed bind<br />
<br />
syzbot reported a kernel BUG triggered from pn_socket_sendmsg() via<br />
pn_socket_autobind():<br />
<br />
kernel BUG at net/phonet/socket.c:213!<br />
RIP: 0010:pn_socket_autobind net/phonet/socket.c:213 [inline]<br />
RIP: 0010:pn_socket_sendmsg+0x240/0x250 net/phonet/socket.c:421<br />
Call Trace:<br />
sock_sendmsg_nosec+0x112/0x150 net/socket.c:797<br />
__sock_sendmsg net/socket.c:812 [inline]<br />
__sys_sendto+0x402/0x590 net/socket.c:2280<br />
...<br />
<br />
pn_socket_autobind() calls pn_socket_bind() with port 0 and, on<br />
-EINVAL, assumes the socket was already bound and asserts that the<br />
port is non-zero:<br />
<br />
err = pn_socket_bind(sock, ..., sizeof(struct sockaddr_pn));<br />
if (err != -EINVAL)<br />
return err;<br />
BUG_ON(!pn_port(pn_sk(sock->sk)->sobject));<br />
return 0; /* socket was already bound */<br />
<br />
However pn_socket_bind() also returns -EINVAL when sk->sk_state is not<br />
TCP_CLOSE, even when the socket has never been bound and pn_port() is<br />
still 0. In that case the BUG_ON() fires and panics the kernel from a<br />
user-triggerable path.<br />
<br />
Treat the "bind returned -EINVAL but pn_port() is still 0" case as a<br />
regular error and propagate -EINVAL to the caller instead of crashing.<br />
Existing callers already translate a non-zero return from<br />
pn_socket_autobind() into -ENOBUFS/-EAGAIN, so returning -EINVAL here<br />
only changes behaviour from panic to a normal errno.



