mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Masami Hiramatsu (Google) <mhiramat@kernel.org>
To: wangyufen <wangyufen@huawei.com>
Cc: <linux-kernel@vger.kernel.org>, <rostedt@goodmis.org>,
	<mhiramat@kernel.org>
Subject: Re: [PATCH v2] tracing: fix memory leak in tracing_read_pipe
Date: Mon, 7 Nov 2022 22:17:10 +0900	[thread overview]
Message-ID: <20221107221710.23d90a4cf74043a9b5f7d6fc@kernel.org> (raw)
In-Reply-To: <a5a79265-be08-0375-ad50-fbe568c7a769@huawei.com>

On Mon, 7 Nov 2022 19:45:04 +0800
wangyufen <wangyufen@huawei.com> wrote:

> 
> 在 2022/11/7 19:04, Wang Yufen 写道:
> > kmemleak reports this issue:
> >
> > unreferenced object 0xffff888105a18900 (size 128):
> >    comm "test_progs", pid 18933, jiffies 4336275356 (age 22801.766s)
> >    hex dump (first 32 bytes):
> >      25 73 00 90 81 88 ff ff 26 05 00 00 42 01 58 04  %s......&...B.X.
> >      03 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00  ................
> >    backtrace:
> >      [<00000000560143a1>] __kmalloc_node_track_caller+0x4a/0x140
> >      [<000000006af00822>] krealloc+0x8d/0xf0
> >      [<00000000c309be6a>] trace_iter_expand_format+0x99/0x150
> >      [<000000005a53bdb6>] trace_check_vprintf+0x1e0/0x11d0
> >      [<0000000065629d9d>] trace_event_printf+0xb6/0xf0
> >      [<000000009a690dc7>] trace_raw_output_bpf_trace_printk+0x89/0xc0
> >      [<00000000d22db172>] print_trace_line+0x73c/0x1480
> >      [<00000000cdba76ba>] tracing_read_pipe+0x45c/0x9f0
> >      [<0000000015b58459>] vfs_read+0x17b/0x7c0
> >      [<000000004aeee8ed>] ksys_read+0xed/0x1c0
> >      [<0000000063d3d898>] do_syscall_64+0x3b/0x90
> >      [<00000000a06dda7f>] entry_SYSCALL_64_after_hwframe+0x63/0xcd
> >
> > iter->fmt alloced in
> >    tracing_read_pipe() -> .. ->trace_iter_expand_format(), but not
> > freed, to fix, add free in tracing_release_pipe()
> Fixes: efbbdaa22bb7 ("tracing: Show real address for trace event arguments")

Oops, good catch!

Cc: stable@vger.kernel.org

Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>

Thank you,

> > Signed-off-by: Wang Yufen <wangyufen@huawei.com>
> > ---
> > v1 -> v2: del if (iter->fmt), free iter->fmt directly
> >   kernel/trace/trace.c | 1 +
> >   1 file changed, 1 insertion(+)
> >
> > diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
> > index 47a44b0..f9d98e7 100644
> > --- a/kernel/trace/trace.c
> > +++ b/kernel/trace/trace.c
> > @@ -6657,6 +6657,7 @@ static int tracing_release_pipe(struct inode *inode, struct file *file)
> >   	mutex_unlock(&trace_types_lock);
> >   
> >   	free_cpumask_var(iter->started);
> > +	kfree(iter->fmt);
> >   	mutex_destroy(&iter->mutex);
> >   	kfree(iter);
> >   


-- 
Masami Hiramatsu (Google) <mhiramat@kernel.org>

  reply	other threads:[~2022-11-07 13:17 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-07 11:04 Wang Yufen
2022-11-07 11:45 ` wangyufen
2022-11-07 13:17   ` Masami Hiramatsu [this message]
2022-11-17  2:36     ` 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=20221107221710.23d90a4cf74043a9b5f7d6fc@kernel.org \
    --to=mhiramat@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=rostedt@goodmis.org \
    --cc=wangyufen@huawei.com \
    /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

all inboxes | Powered by JetHome®