projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ab443c5
)
phonet: refcount leak in pep_sock_accep
author
Hangyu Hua
<hbh25y@gmail.com>
Thu, 9 Dec 2021 08:28:39 +0000
(16:28 +0800)
committer
Jakub Kicinski
<kuba@kernel.org>
Sat, 11 Dec 2021 03:53:52 +0000
(19:53 -0800)
sock_hold(sk) is invoked in pep_sock_accept(), but __sock_put(sk) is not
invoked in subsequent failure branches(pep_accept_conn() != 0).
Signed-off-by: Hangyu Hua <hbh25y@gmail.com>
Link:
https://lore.kernel.org/r/20211209082839.33985-1-hbh25y@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/phonet/pep.c
patch
|
blob
|
history
diff --git
a/net/phonet/pep.c
b/net/phonet/pep.c
index a1525916885ae9741972e32b16363319edc1aa31..b4f90afb0638b7e6b2f7668cfe2498f35625f79c 100644
(file)
--- a/
net/phonet/pep.c
+++ b/
net/phonet/pep.c
@@
-868,6
+868,7
@@
static struct sock *pep_sock_accept(struct sock *sk, int flags, int *errp,
err = pep_accept_conn(newsk, skb);
if (err) {
+ __sock_put(sk);
sock_put(newsk);
newsk = NULL;
goto drop;