Chen Jun
a501f2500f
tracing: Fix a kmemleak false positive in tracing_map
...
[ Upstream commit f25667e5980a4333729cac3101e5de1bb851f71a ]
Doing the command:
echo 'hist:key=common_pid.execname,common_timestamp' > /sys/kernel/debug/tracing/events/xxx/trigger
Triggers many kmemleak reports:
unreferenced object 0xffff0000c7ea4980 (size 128):
comm "bash", pid 338, jiffies 4294912626 (age 9339.324s)
hex dump (first 32 bytes):
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
backtrace:
[<00000000f3469921>] kmem_cache_alloc_trace+0x4c0/0x6f0
[<0000000054ca40c3>] hist_trigger_elt_data_alloc+0x140/0x178
[<00000000633bd154>] tracing_map_init+0x1f8/0x268
[<000000007e814ab9>] event_hist_trigger_func+0xca0/0x1ad0
[<00000000bf8520ed>] trigger_process_regex+0xd4/0x128
[<00000000f549355a>] event_trigger_write+0x7c/0x120
[<00000000b80f898d>] vfs_write+0xc4/0x380
[<00000000823e1055>] ksys_write+0x74/0xf8
[<000000008a9374aa>] __arm64_sys_write+0x24/0x30
[<0000000087124017>] do_el0_svc+0x88/0x1c0
[<00000000efd0dcd1>] el0_svc+0x1c/0x28
[<00000000dbfba9b3>] el0_sync_handler+0x88/0xc0
[<00000000e7399680>] el0_sync+0x148/0x180
unreferenced object 0xffff0000c7ea4980 (size 128):
comm "bash", pid 338, jiffies 4294912626 (age 9339.324s)
hex dump (first 32 bytes):
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
backtrace:
[<00000000f3469921>] kmem_cache_alloc_trace+0x4c0/0x6f0
[<0000000054ca40c3>] hist_trigger_elt_data_alloc+0x140/0x178
[<00000000633bd154>] tracing_map_init+0x1f8/0x268
[<000000007e814ab9>] event_hist_trigger_func+0xca0/0x1ad0
[<00000000bf8520ed>] trigger_process_regex+0xd4/0x128
[<00000000f549355a>] event_trigger_write+0x7c/0x120
[<00000000b80f898d>] vfs_write+0xc4/0x380
[<00000000823e1055>] ksys_write+0x74/0xf8
[<000000008a9374aa>] __arm64_sys_write+0x24/0x30
[<0000000087124017>] do_el0_svc+0x88/0x1c0
[<00000000efd0dcd1>] el0_svc+0x1c/0x28
[<00000000dbfba9b3>] el0_sync_handler+0x88/0xc0
[<00000000e7399680>] el0_sync+0x148/0x180
The reason is elts->pages[i] is alloced by get_zeroed_page.
and kmemleak will not scan the area alloced by get_zeroed_page.
The address stored in elts->pages will be regarded as leaked.
That is, the elts->pages[i] will have pointers loaded onto it as well, and
without telling kmemleak about it, those pointers will look like memory
without a reference.
To fix this, call kmemleak_alloc to tell kmemleak to scan elts->pages[i]
Link: https://lkml.kernel.org/r/20211124140801.87121-1-chenjun102@huawei.com
Signed-off-by: Chen Jun <chenjun102@huawei.com>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
2021-12-22 09:19:00 +01:00
..
2021-10-06 15:31:15 +02:00
2021-07-20 16:15:42 +02:00
2021-10-27 09:53:15 +02:00
2021-01-19 18:22:35 +01:00
2018-08-21 09:11:49 -04:00
2018-10-17 15:35:33 -04:00
2018-08-16 19:08:06 -04:00
2021-07-28 11:13:50 +02:00
2018-05-15 10:27:29 -07:00
2018-08-16 19:08:06 -04:00
2019-07-03 13:14:41 +02:00
2021-06-30 08:48:23 -04:00
2020-10-01 13:14:31 +02:00
2019-10-29 09:20:03 +01:00
2018-08-16 19:08:06 -04:00
2020-08-05 10:05:59 +02:00
2021-08-26 08:36:47 -04:00
2020-06-30 23:17:17 -04:00
2021-12-01 09:27:43 +01:00
2018-05-29 08:28:53 -04:00
2018-12-08 12:59:07 +01:00
2021-10-27 09:53:15 +02:00
2020-12-08 10:18:55 +01:00
2018-12-08 12:59:07 +01:00
2019-06-25 11:35:52 +08:00
2018-07-30 18:41:04 -04:00
2018-08-16 19:08:06 -04:00
2021-09-26 13:39:47 +02:00
2018-08-16 19:08:06 -04:00
2018-08-16 19:08:06 -04:00
2020-10-01 13:14:50 +02:00
2018-08-16 19:08:06 -04:00
2018-08-16 19:08:06 -04:00
2018-08-16 19:08:06 -04:00
2020-02-11 04:33:55 -08:00
2020-01-14 20:06:59 +01:00
2018-01-23 15:57:29 -05:00
2020-11-10 12:35:58 +01:00
2018-08-16 19:08:06 -04:00
2020-01-14 20:06:59 +01:00
2020-02-24 08:34:39 +01:00
2018-08-16 19:08:06 -04:00
2019-02-20 10:25:48 +01:00
2021-08-12 13:19:42 +02:00
2021-12-01 09:27:39 +01:00
2021-12-22 09:19:00 +01:00
2018-08-16 19:08:06 -04:00