All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH next] Bluetooth: L2CAP: Fix NULL dereference in l2cap_recv_acldata()
@ 2025-02-12 16:40 Dan Carpenter
  2025-02-12 17:31 ` [next] " bluez.test.bot
  2025-02-12 22:23 ` [PATCH next] " Luiz Augusto von Dentz
  0 siblings, 2 replies; 4+ messages in thread
From: Dan Carpenter @ 2025-02-12 16:40 UTC (permalink / raw)
  To: Luiz Augusto von Dentz
  Cc: Marcel Holtmann, Johan Hedberg, Luiz Augusto von Dentz,
	linux-bluetooth, linux-kernel, kernel-janitors

The "conn" pointer is NULL so this "goto drop;" will lead to a NULL
dereference when we call mutex_unlock(&conn->lock). Free the skb and
return directly instead.

Fixes: dd6367916d2d ("Bluetooth: L2CAP: Fix corrupted list in hci_chan_del")
Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
---
 net/bluetooth/l2cap_core.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c
index 6cdc1dc3a7f9..fec11e576f31 100644
--- a/net/bluetooth/l2cap_core.c
+++ b/net/bluetooth/l2cap_core.c
@@ -7456,8 +7456,10 @@ void l2cap_recv_acldata(struct hci_conn *hcon, struct sk_buff *skb, u16 flags)
 
 	hci_dev_unlock(hcon->hdev);
 
-	if (!conn)
-		goto drop;
+	if (!conn) {
+		kfree_skb(skb);
+		return;
+	}
 
 	BT_DBG("conn %p len %u flags 0x%x", conn, skb->len, flags);
 
-- 
2.47.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-02-13  5:21 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-12 16:40 [PATCH next] Bluetooth: L2CAP: Fix NULL dereference in l2cap_recv_acldata() Dan Carpenter
2025-02-12 17:31 ` [next] " bluez.test.bot
2025-02-12 22:23 ` [PATCH next] " Luiz Augusto von Dentz
2025-02-13  5:21   ` Dan Carpenter

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.