Skip to content

Commit c05d38b

Browse files
committed
Bluetooth: L2CAP: fix "bad unlock balance" in l2cap_disconnect_rsp
jira VULN-154997 cve CVE-2023-53297 commit-author Min Li <[email protected]> commit 25e97f7 conn->chan_lock isn't acquired before l2cap_get_chan_by_scid, if l2cap_get_chan_by_scid returns NULL, then 'bad unlock balance' is triggered. Reported-by: [email protected] Link: https://lore.kernel.org/all/[email protected]/ Signed-off-by: Min Li <[email protected]> Signed-off-by: Luiz Augusto von Dentz <[email protected]> (cherry picked from commit 25e97f7) Signed-off-by: Roxana Nicolescu <[email protected]>
1 parent 379fcdc commit c05d38b

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

net/bluetooth/l2cap_core.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4675,7 +4675,6 @@ static inline int l2cap_disconnect_rsp(struct l2cap_conn *conn,
46754675

46764676
chan = l2cap_get_chan_by_scid(conn, scid);
46774677
if (!chan) {
4678-
mutex_unlock(&conn->chan_lock);
46794678
return 0;
46804679
}
46814680

0 commit comments

Comments
 (0)