netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] batman-adv: Fix refcnt leak in batadv_show_throughput_override
@ 2020-04-15  8:31 Xiyu Yang
  2020-04-15  9:04 ` Sven Eckelmann
  0 siblings, 1 reply; 3+ messages in thread
From: Xiyu Yang @ 2020-04-15  8:31 UTC (permalink / raw)
  To: Marek Lindner, Simon Wunderlich, Antonio Quartulli,
	Sven Eckelmann, David S. Miller, Jakub Kicinski, b.a.t.m.a.n,
	netdev, linux-kernel
  Cc: yuanxzhang, kjlu, Xiyu Yang, Xin Tan

batadv_show_throughput_override() invokes batadv_hardif_get_by_netdev(),
which gets a batadv_hard_iface object from net_dev with increased refcnt
and its reference is assigned to a local pointer 'hard_iface'.

When batadv_show_throughput_override() returns, "hard_iface" becomes
invalid, so the refcount should be decreased to keep refcount balanced.

The issue happens in the normal path of
batadv_show_throughput_override(), which forgets to decrease the refcnt
increased by batadv_hardif_get_by_netdev() before the function returns,
causing a refcnt leak.

Fix this issue by calling batadv_hardif_put() before the
batadv_show_throughput_override() returns in the normal path.

Signed-off-by: Xiyu Yang <xiyuyang19@fudan.edu.cn>
Signed-off-by: Xin Tan <tanxin.ctf@gmail.com>
---
 net/batman-adv/sysfs.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net/batman-adv/sysfs.c b/net/batman-adv/sysfs.c
index 97736696d042..0f962dcd239e 100644
--- a/net/batman-adv/sysfs.c
+++ b/net/batman-adv/sysfs.c
@@ -1190,6 +1190,7 @@ static ssize_t batadv_show_throughput_override(struct kobject *kobj,
 
 	tp_override = atomic_read(&hard_iface->bat_v.throughput_override);
 
+	batadv_hardif_put(hard_iface);
 	return sprintf(buff, "%u.%u MBit\n", tp_override / 10,
 		       tp_override % 10);
 }
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] batman-adv: Fix refcnt leak in batadv_show_throughput_override
  2020-04-15  8:31 [PATCH] batman-adv: Fix refcnt leak in batadv_show_throughput_override Xiyu Yang
@ 2020-04-15  9:04 ` Sven Eckelmann
  2020-04-15 11:03   ` Xiyu Yang
  0 siblings, 1 reply; 3+ messages in thread
From: Sven Eckelmann @ 2020-04-15  9:04 UTC (permalink / raw)
  To: Xiyu Yang
  Cc: Marek Lindner, Simon Wunderlich, Antonio Quartulli,
	David S. Miller, Jakub Kicinski, b.a.t.m.a.n, netdev,
	linux-kernel, yuanxzhang, kjlu, Xin Tan

[-- Attachment #1: Type: text/plain, Size: 623 bytes --]

On Wednesday, 15 April 2020 10:31:50 CEST Xiyu Yang wrote:
[...]
> Fix this issue by calling batadv_hardif_put() before the
[...]

Thanks, fixes for batadv_store_throughput_override [1] and 
batadv_show_throughput_override [2] were applied. I've also added the missing 
Fixes: line to both patches.

May I ask whether you are still a user of the deprecated sysfs interface or 
did you find this in an automated fashion?

Thanks,
	Sven

[1] https://git.open-mesh.org/linux-merge.git/commit/cd339d8b14cd895d8333d94d832b05f67f00eefc
[2] https://git.open-mesh.org/linux-merge.git/commit/3d3e548f74fe51aee9a3c9e297518a2655dbc642

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] batman-adv: Fix refcnt leak in batadv_show_throughput_override
  2020-04-15  9:04 ` Sven Eckelmann
@ 2020-04-15 11:03   ` Xiyu Yang
  0 siblings, 0 replies; 3+ messages in thread
From: Xiyu Yang @ 2020-04-15 11:03 UTC (permalink / raw)
  To: Sven Eckelmann
  Cc: Marek Lindner, Simon Wunderlich, Antonio Quartulli,
	David S. Miller, Jakub Kicinski, b.a.t.m.a.n, netdev,
	linux-kernel, yuanxzhang, kjlu, Xin Tan

On Wed, Apr 15, 2020 at 11:04:02AM +0200, Sven Eckelmann wrote:
> On Wednesday, 15 April 2020 10:31:50 CEST Xiyu Yang wrote:
> [...]
> > Fix this issue by calling batadv_hardif_put() before the
> [...]
> 
> Thanks, fixes for batadv_store_throughput_override [1] and 
> batadv_show_throughput_override [2] were applied. I've also added the missing 
> Fixes: line to both patches.
> 
> May I ask whether you are still a user of the deprecated sysfs interface or 
> did you find this in an automated fashion?
> 
> Thanks,
> 	Sven
> 
> [1] https://git.open-mesh.org/linux-merge.git/commit/cd339d8b14cd895d8333d94d832b05f67f00eefc
> [2] https://git.open-mesh.org/linux-merge.git/commit/3d3e548f74fe51aee9a3c9e297518a2655dbc642

Thanks for your confirmation! We are looking for some automated ways to find this kind of bug.


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-04-15 11:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-15  8:31 [PATCH] batman-adv: Fix refcnt leak in batadv_show_throughput_override Xiyu Yang
2020-04-15  9:04 ` Sven Eckelmann
2020-04-15 11:03   ` Xiyu Yang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).