aboutsummaryrefslogtreecommitdiff
path: root/kernel/trace/synth_event_gen_test.c
diff options
context:
space:
mode:
authorGravatar Xiu Jianfeng <xiujianfeng@huawei.com> 2022-11-16 09:52:07 +0800
committerGravatar Steven Rostedt (Google) <rostedt@goodmis.org> 2022-11-17 17:16:44 -0500
commit19ba6c8af9382c4c05dc6a0a79af3013b9a35cd0 (patch)
tree4ffa27210d5f1255198cc33f42968db3396e7839 /kernel/trace/synth_event_gen_test.c
parentring_buffer: Do not deactivate non-existant pages (diff)
downloadlinux-19ba6c8af9382c4c05dc6a0a79af3013b9a35cd0.tar.gz
linux-19ba6c8af9382c4c05dc6a0a79af3013b9a35cd0.tar.bz2
linux-19ba6c8af9382c4c05dc6a0a79af3013b9a35cd0.zip
ftrace: Fix null pointer dereference in ftrace_add_mod()
The @ftrace_mod is allocated by kzalloc(), so both the members {prev,next} of @ftrace_mode->list are NULL, it's not a valid state to call list_del(). If kstrdup() for @ftrace_mod->{func|module} fails, it goes to @out_free tag and calls free_ftrace_mod() to destroy @ftrace_mod, then list_del() will write prev->next and next->prev, where null pointer dereference happens. BUG: kernel NULL pointer dereference, address: 0000000000000008 Oops: 0002 [#1] PREEMPT SMP NOPTI Call Trace: <TASK> ftrace_mod_callback+0x20d/0x220 ? do_filp_open+0xd9/0x140 ftrace_process_regex.isra.51+0xbf/0x130 ftrace_regex_write.isra.52.part.53+0x6e/0x90 vfs_write+0xee/0x3a0 ? __audit_filter_op+0xb1/0x100 ? auditd_test_task+0x38/0x50 ksys_write+0xa5/0xe0 do_syscall_64+0x3a/0x90 entry_SYSCALL_64_after_hwframe+0x63/0xcd Kernel panic - not syncing: Fatal exception So call INIT_LIST_HEAD() to initialize the list member to fix this issue. Link: https://lkml.kernel.org/r/20221116015207.30858-1-xiujianfeng@huawei.com Cc: stable@vger.kernel.org Fixes: 673feb9d76ab ("ftrace: Add :mod: caching infrastructure to trace_array") Signed-off-by: Xiu Jianfeng <xiujianfeng@huawei.com> Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Diffstat (limited to 'kernel/trace/synth_event_gen_test.c')
0 files changed, 0 insertions, 0 deletions