Skip to content

Commit 43c0309

Browse files
Bluetooth: L2CAP: fix "bad unlock balance" in l2cap_disconnect_rsp
jira VULN-155003 cve CVE-2023-53297 commit-author Min Li <lm0963hack@gmail.com> 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: syzbot+9519d6b5b79cf7787cf3@syzkaller.appspotmail.com Link: https://lore.kernel.org/all/000000000000894f5f05f95e9f4d@google.com/ Signed-off-by: Min Li <lm0963hack@gmail.com> Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> (cherry picked from commit 25e97f7) Signed-off-by: Shreeya Patel <spatel@ciq.com>
1 parent 48c6613 commit 43c0309

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
@@ -4676,7 +4676,6 @@ static inline int l2cap_disconnect_rsp(struct l2cap_conn *conn,
46764676

46774677
chan = l2cap_get_chan_by_scid(conn, scid);
46784678
if (!chan) {
4679-
mutex_unlock(&conn->chan_lock);
46804679
return 0;
46814680
}
46824681

0 commit comments

Comments
 (0)