mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 18:41:58 +09:00
Bluetooth: RFCOMM: avoid leaving dangling sk pointer in rfcomm_sock_alloc()
[ Upstream commit 3945c799f12b8d1f49a3b48369ca494d981ac465 ] bt_sock_alloc() attaches allocated sk object to the provided sock object. If rfcomm_dlc_alloc() fails, we release the sk object, but leave the dangling pointer in the sock object, which may cause use-after-free. Fix this by swapping calls to bt_sock_alloc() and rfcomm_dlc_alloc(). Signed-off-by: Ignat Korchagin <ignat@cloudflare.com> Reviewed-by: Kuniyuki Iwashima <kuniyu@amazon.com> Reviewed-by: Eric Dumazet <edumazet@google.com> Link: https://patch.msgid.link/20241014153808.51894-4-ignat@cloudflare.com Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
bb2f2342a6
commit
ac3eaac4cf
@@ -274,13 +274,13 @@ static struct sock *rfcomm_sock_alloc(struct net *net, struct socket *sock,
|
|||||||
struct rfcomm_dlc *d;
|
struct rfcomm_dlc *d;
|
||||||
struct sock *sk;
|
struct sock *sk;
|
||||||
|
|
||||||
sk = bt_sock_alloc(net, sock, &rfcomm_proto, proto, prio, kern);
|
d = rfcomm_dlc_alloc(prio);
|
||||||
if (!sk)
|
if (!d)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
d = rfcomm_dlc_alloc(prio);
|
sk = bt_sock_alloc(net, sock, &rfcomm_proto, proto, prio, kern);
|
||||||
if (!d) {
|
if (!sk) {
|
||||||
sk_free(sk);
|
rfcomm_dlc_free(d);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user