* [PATCH] netdevsim: Fix memory leak of nsim_dev->fa_cookie
@ 2022-11-12 6:28 Wang Yufen
2022-11-15 2:50 ` Jakub Kicinski
0 siblings, 1 reply; 4+ messages in thread
From: Wang Yufen @ 2022-11-12 6:28 UTC (permalink / raw)
To: netdev; +Cc: kuba, davem, edumazet, pabeni, Wang Yufen, Jiri Pirko
kmemleak reports this issue:
unreferenced object 0xffff8881bac872d0 (size 8):
comm "sh", pid 58603, jiffies 4481524462 (age 68.065s)
hex dump (first 8 bytes):
04 00 00 00 de ad be ef ........
backtrace:
[<00000000c80b8577>] __kmalloc+0x49/0x150
[<000000005292b8c6>] nsim_dev_trap_fa_cookie_write+0xc1/0x210 [netdevsim]
[<0000000093d78e77>] full_proxy_write+0xf3/0x180
[<000000005a662c16>] vfs_write+0x1c5/0xaf0
[<000000007aabf84a>] ksys_write+0xed/0x1c0
[<000000005f1d2e47>] do_syscall_64+0x3b/0x90
[<000000006001c6ec>] entry_SYSCALL_64_after_hwframe+0x63/0xcd
The issue occurs in the following scenarios:
nsim_dev_trap_fa_cookie_write()
kmalloc() fa_cookie
nsim_dev->fa_cookie = fa_cookie
..
nsim_drv_remove()
nsim_dev->fa_cookie alloced, but the nsim_dev_trap_report_work()
job has not been done, the flow action cookie has not been assigned
to the metadata. To fix, add kfree(nsim_dev->fa_cookie) to
nsim_drv_remove().
Fixes: d3cbb907ae57 ("netdevsim: add ACL trap reporting cookie as a metadata")
Signed-off-by: Wang Yufen <wangyufen@huawei.com>
Cc: Jiri Pirko <jiri@mellanox.com>
---
drivers/net/netdevsim/dev.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/net/netdevsim/dev.c b/drivers/net/netdevsim/dev.c
index a7880c7..68e56e4 100644
--- a/drivers/net/netdevsim/dev.c
+++ b/drivers/net/netdevsim/dev.c
@@ -1683,6 +1683,7 @@ void nsim_drv_remove(struct nsim_bus_dev *nsim_bus_dev)
ARRAY_SIZE(nsim_devlink_params));
devl_resources_unregister(devlink);
kfree(nsim_dev->vfconfigs);
+ kfree(nsim_dev->fa_cookie);
devl_unlock(devlink);
devlink_free(devlink);
dev_set_drvdata(&nsim_bus_dev->dev, NULL);
--
1.8.3.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] netdevsim: Fix memory leak of nsim_dev->fa_cookie
2022-11-12 6:28 [PATCH] netdevsim: Fix memory leak of nsim_dev->fa_cookie Wang Yufen
@ 2022-11-15 2:50 ` Jakub Kicinski
2022-11-15 3:38 ` wangyufen
0 siblings, 1 reply; 4+ messages in thread
From: Jakub Kicinski @ 2022-11-15 2:50 UTC (permalink / raw)
To: Wang Yufen; +Cc: netdev, davem, edumazet, pabeni, Jiri Pirko
On Sat, 12 Nov 2022 14:28:05 +0800 Wang Yufen wrote:
> nsim_dev_trap_fa_cookie_write()
> kmalloc() fa_cookie
> nsim_dev->fa_cookie = fa_cookie
> ..
> nsim_drv_remove()
>
> nsim_dev->fa_cookie alloced, but the nsim_dev_trap_report_work()
> job has not been done, the flow action cookie has not been assigned
> to the metadata. To fix, add kfree(nsim_dev->fa_cookie) to
> nsim_drv_remove().
I don't see the path thru nsim_dev_trap_report_work() which would free
the fa_cookie.
The fix looks right, but the commit message seems incorrect. Isn't the
leak always there, without any race?
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] netdevsim: Fix memory leak of nsim_dev->fa_cookie
2022-11-15 2:50 ` Jakub Kicinski
@ 2022-11-15 3:38 ` wangyufen
2022-11-15 4:48 ` Jakub Kicinski
0 siblings, 1 reply; 4+ messages in thread
From: wangyufen @ 2022-11-15 3:38 UTC (permalink / raw)
To: Jakub Kicinski; +Cc: netdev, davem, edumazet, pabeni, Jiri Pirko
在 2022/11/15 10:50, Jakub Kicinski 写道:
> On Sat, 12 Nov 2022 14:28:05 +0800 Wang Yufen wrote:
>> nsim_dev_trap_fa_cookie_write()
>> kmalloc() fa_cookie
>> nsim_dev->fa_cookie = fa_cookie
>> ..
>> nsim_drv_remove()
>>
>> nsim_dev->fa_cookie alloced, but the nsim_dev_trap_report_work()
>> job has not been done, the flow action cookie has not been assigned
>> to the metadata. To fix, add kfree(nsim_dev->fa_cookie) to
>> nsim_drv_remove().
> I don't see the path thru nsim_dev_trap_report_work() which would free
> the fa_cookie.
>
> The fix looks right, but the commit message seems incorrect. Isn't the
> leak always there, without any race?
Sorry, I didn't make it clear.
The detailed process of nsim_dev_trap_report_work() is as follows:
nsim_dev_trap_report_work()
nsim_dev_trap_report_work()
...
devlink_trap_report()
devlink_trap_report_metadata_set()
<-- fa_cookie is assigned to metadata->fa_cookie here, and will be freed in net_dm_hw_metadata_free()
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] netdevsim: Fix memory leak of nsim_dev->fa_cookie
2022-11-15 3:38 ` wangyufen
@ 2022-11-15 4:48 ` Jakub Kicinski
0 siblings, 0 replies; 4+ messages in thread
From: Jakub Kicinski @ 2022-11-15 4:48 UTC (permalink / raw)
To: wangyufen; +Cc: netdev, davem, edumazet, pabeni, Jiri Pirko
On Tue, 15 Nov 2022 11:38:26 +0800 wangyufen wrote:
> Sorry, I didn't make it clear.
>
> The detailed process of nsim_dev_trap_report_work() is as follows:
>
> nsim_dev_trap_report_work()
> nsim_dev_trap_report_work()
> ...
> devlink_trap_report()
> devlink_trap_report_metadata_set()
> <-- fa_cookie is assigned to metadata->fa_cookie here, and will be freed in net_dm_hw_metadata_free()
What's assigned here and freed in net_dm_hw_metadata_free() is a copy
made with net_dm_hw_metadata_copy(), no?
Could you double check the whole path?
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-11-15 4:48 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-12 6:28 [PATCH] netdevsim: Fix memory leak of nsim_dev->fa_cookie Wang Yufen
2022-11-15 2:50 ` Jakub Kicinski
2022-11-15 3:38 ` wangyufen
2022-11-15 4:48 ` Jakub Kicinski
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).