]> git.itanic.dy.fi Git - linux-stable/commitdiff
Bluetooth: L2CAP: fix "bad unlock balance" in l2cap_disconnect_rsp
authorMin Li <lm0963hack@gmail.com>
Mon, 17 Apr 2023 02:27:54 +0000 (10:27 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 30 May 2023 11:38:35 +0000 (12:38 +0100)
[ Upstream commit 25e97f7b1866e6b8503be349eeea44bb52d661ce ]

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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
net/bluetooth/l2cap_core.c

index 6f47cb69775d617fc682ec4f897d10e5762a273a..b0bb4cf52a7ee05bb74871750c2bf037b9a9478f 100644 (file)
@@ -4392,7 +4392,6 @@ static inline int l2cap_disconnect_rsp(struct l2cap_conn *conn,
 
        chan = l2cap_get_chan_by_scid(conn, scid);
        if (!chan) {
-               mutex_unlock(&conn->chan_lock);
                return 0;
        }