From: Ajay Kaher <ajay.kaher@broadcom.com>
To: Mathias Krause <minipli@grsecurity.net>,
Steven Rostedt <rostedt@goodmis.org>
Cc: "Masami Hiramatsu" <mhiramat@kernel.org>,
"Ilkka Naulapää" <digirigawa@gmail.com>,
"Linus Torvalds" <torvalds@linux-foundation.org>,
"Al Viro" <viro@zeniv.linux.org.uk>,
linux-trace-kernel@vger.kernel.org, linux-kernel@vger.kernel.org,
regressions@leemhuis.info,
"Dan Carpenter" <dan.carpenter@linaro.org>,
"Vasavi Sirnapalli" <vasavi.sirnapalli@broadcom.com>,
"Alexey Makhalov" <alexey.makhalov@broadcom.com>,
"Florian Fainelli" <florian.fainelli@broadcom.com>
Subject: Re: tracing: user events UAF crash report
Date: Thu, 25 Jul 2024 19:03:39 +0530 [thread overview]
Message-ID: <CAD2QZ9ZxZ+mjfju2JMw3fPATNNWkqT1p97QxXgeGo54AFzQ-Cw@mail.gmail.com> (raw)
In-Reply-To: <5083301c-6dc9-45c9-8106-da683ac6bfbb@grsecurity.net>
On Mon, Jul 22, 2024 at 5:38 PM Mathias Krause <minipli@grsecurity.net> wrote:
>
> On 22.07.24 13:13, Ajay Kaher wrote:
> > On Sat, Jul 20, 2024 at 2:17 AM Mathias Krause <minipli@grsecurity.net> wrote:
> >>
> >> I noticed, the user events ftrace selftest is crashing every now and
> >> then in our automated tests. Digging into, I found that the following
> >> is triggering the issue very reliable:
> >>
> >> - in one shell, as root:
> >> # while true; do ./kselftest/user_events/ftrace_test; done
> >>
> >> - in a second shell, again as root:
> >> # cd /sys/kernel/tracing
> >> # while true; do cat events/user_events/__test_event/format; done 2>/dev/null
> >>
> >
> > Tried to reproduced on 6.10.0-rc7-100.ph5+, only getting repeated output as:
>
Mathias, thanks for reporting. I am able to reproduce the 'KASAN:
slab-use-after-free'.
Steve, let me know if anything wrong in my investigation:
[ 6264.339882] ==================================================================
[ 6264.339970] BUG: KASAN: slab-use-after-free in f_start+0x2b5/0x370
This belongs to f_start() -> f_next() -> trace_get_fields():
trace_get_fields(struct trace_event_call *event_call)
{
if (!event_call->class->get_fields)
return &event_call->class->fields;
return event_call->class->get_fields(event_call);
}
This happens while reading 'events/user_events/__test_event/format'.
Allocation:
[ 6264.347212] Allocated by task 3287:
[ 6264.348247] kasan_save_stack+0x26/0x50
[ 6264.348256] kasan_save_track+0x14/0x40
[ 6264.348260] kasan_save_alloc_info+0x37/0x50
[ 6264.348265] __kasan_kmalloc+0xb3/0xc0
[ 6264.348268] kmalloc_trace_noprof+0x168/0x330
[ 6264.348280] user_event_parse_cmd+0x57b/0x26c0
[ 6264.348286] user_events_ioctl+0xa92/0x1850
[ 6264.348290] __x64_sys_ioctl+0x138/0x1b0
[ 6264.348295] x64_sys_call+0x9a4/0x1f20
[ 6264.348299] do_syscall_64+0x4b/0x110
user_event_parse_cmd() -> user_event_parse() {
.
user = kzalloc(sizeof(*user), GFP_KERNEL_ACCOUNT);
Link: https://elixir.bootlin.com/linux/v6.10/source/kernel/trace/trace_events_user.c#L2118
Freed:
[ 6264.350333] kfree+0xd1/0x2b0
[ 6264.350337] destroy_user_event.part.0+0x313/0x450
[ 6264.350341] destroy_user_event+0x129/0x1a0
[ 6264.350344] delayed_destroy_user_event+0x62/0xd0
[ 6264.350347] process_one_work+0x621/0xf60
[ 6264.350359] worker_thread+0x760/0x14f0
static int destroy_user_event(struct user_event *user) {
.
kfree(user->call.print_fmt);
kfree(EVENT_NAME(user));
kfree(user); <--
Link: https://elixir.bootlin.com/linux/v6.10/source/kernel/trace/trace_events_user.c#L1510
Race condition:
Thread A i.e. event reader able to reach the f_start() as the path is
valid. Thread A waiting
for lock. At the sametime, Thread B has acquired lock and removing
events entry followed
by free the user_event object. Later once Thread A got the lock it
tried to read address
which belongs to struct trace_event_call (struct trace_event_call is
member of struct
user_event)
Thread A (read event) Thread B (remove event)
. worker_thread()
.
delayed_destroy_user_event() -> acquire event_mutex
.
destroy_user_event()
vfs_read() .
seq_read() .
f_start() -> acquire event_mutex eventfs_remove_dir()
. (waiting) kfree(user)
. (waiting) released event_mutex
acquired event_mutex
f_next()
trace_get_fields():
I think you have added the following check in f_start() to prevent
this race condition,
but somehow with eventfs still some gap to race condition.
static void *f_start(struct seq_file *m, loff_t *pos) {
mutex_lock(&event_mutex);
if (!event_file_data(m->private)) <--
return ERR_PTR(-ENODEV);
-Ajay
next prev parent reply other threads:[~2024-07-25 13:33 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-19 20:47 tracing: user events UAF crash report Mathias Krause
2024-07-20 3:33 ` Dan Carpenter
2024-07-22 11:13 ` Ajay Kaher
2024-07-22 12:08 ` Mathias Krause
2024-07-25 13:33 ` Ajay Kaher [this message]
2024-07-25 16:15 ` Ajay Kaher
2024-07-25 16:30 ` Ajay Kaher
2024-07-25 17:10 ` Steven Rostedt
2024-07-25 17:16 ` Steven Rostedt
2024-07-25 18:12 ` Mathias Krause
2024-07-25 19:05 ` Steven Rostedt
2024-07-25 19:42 ` Mathias Krause
2024-07-25 20:15 ` Steven Rostedt
2024-07-25 20:41 ` Mathias Krause
2024-07-25 21:14 ` Steven Rostedt
2024-07-25 21:32 ` Mathias Krause
2024-07-25 23:06 ` Steven Rostedt
2024-07-26 8:25 ` Mathias Krause
2024-07-25 19:53 ` Mathias Krause
2024-07-25 16:48 ` Steven Rostedt
2024-07-23 0:11 ` Steven Rostedt
2024-07-23 12:25 ` [PATCH] eventfs: Don't return NULL in eventfs_create_dir() Mathias Krause
2024-07-23 14:43 ` tracing: user events UAF crash report Steven Rostedt
2024-07-23 20:54 ` Mathias Krause
2024-07-23 21:07 ` [PATCH] eventfs: Use SRCU for freeing eventfs_inodes Mathias Krause
2024-07-23 21:23 ` Steven Rostedt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CAD2QZ9ZxZ+mjfju2JMw3fPATNNWkqT1p97QxXgeGo54AFzQ-Cw@mail.gmail.com \
--to=ajay.kaher@broadcom.com \
--cc=alexey.makhalov@broadcom.com \
--cc=dan.carpenter@linaro.org \
--cc=digirigawa@gmail.com \
--cc=florian.fainelli@broadcom.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-trace-kernel@vger.kernel.org \
--cc=mhiramat@kernel.org \
--cc=minipli@grsecurity.net \
--cc=regressions@leemhuis.info \
--cc=rostedt@goodmis.org \
--cc=torvalds@linux-foundation.org \
--cc=vasavi.sirnapalli@broadcom.com \
--cc=viro@zeniv.linux.org.uk \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).