Skip to content

Commit 25e97f7

Browse files
Min LiVudentz
authored andcommitted
Bluetooth: L2CAP: fix "bad unlock balance" in l2cap_disconnect_rsp
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>
1 parent 000c2fa commit 25e97f7

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

net/bluetooth/l2cap_core.c

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

46944694
chan = l2cap_get_chan_by_scid(conn, scid);
46954695
if (!chan) {
4696-
mutex_unlock(&conn->chan_lock);
46974696
return 0;
46984697
}
46994698

0 commit comments

Comments
 (0)