From: Peter Zijlstra <peterz@infradead.org>
To: Vince Weaver <vincent.weaver@maine.edu>
Cc: linux-kernel@vger.kernel.org, Ingo Molnar <mingo@kernel.org>,
Thomas Gleixner <tglx@linutronix.de>
Subject: Re: [perf] yet another 32/64-bit range check failure
Date: Wed, 23 Apr 2014 12:10:38 +0200 [thread overview]
Message-ID: <20140423101038.GK11096@twins.programming.kicks-ass.net> (raw)
In-Reply-To: <alpine.DEB.2.10.1404230011280.28524@vincent-weaver-1.um.maine.edu>
On Wed, Apr 23, 2014 at 12:14:52AM -0400, Vince Weaver wrote:
> On Tue, 22 Apr 2014, Vince Weaver wrote:
>
> > This is allowing events to be allocated memory but not being freed somehow
> > before returning EINVAL (a memory leak).
> > At least it looks like this is happening in the huge traces I have trying
> > to track down the perf_fuzzer memory corruption bug.
>
> I can't find where the memory leak happens, but it looks like this in the
> trace:
>
> [ 3524.626452] perf_fuz-1798 0.... 1271584315us : sys_enter: NR 298 (698e40, 706, ffffffff, f, 800000000000, 800000000000)
> [ 3524.642312] perf_fuz-1798 0.... 1271584324us : kmalloc: call_site=ffffffff8113a575 ptr=ffff88007d5b0800 bytes_req=1272 bytes_alloc=2048 gfp_flags=GFP_KERNEL|GFP_ZERO
> [ 3524.662598] perf_fuz-1798 0.... 1271584337us : sys_exit: NR 298 = -22
>
> The call site for the kmalloc is in perf_event_alloc()
>
> The memory is eventually freed as:
>
> [ 3547.895534] <idle>-0 0.Ns. 1271595088us : kfree: call_site=ffffffff811316aa ptr=ffff88007d5b0800
So perf_event_open() -> err_alloc: -> free_event() -> __free_event() ->
call_rcu() -> free_event_rcu() -> kfree().
Would explain that, right? The memory is RCU freed, which means we need
to wait a grace period before releasing it.
next prev parent reply other threads:[~2014-04-23 10:10 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-04-23 3:40 Vince Weaver
2014-04-23 4:14 ` Vince Weaver
2014-04-23 10:10 ` Peter Zijlstra [this message]
2014-04-23 13:33 ` Vince Weaver
2014-04-23 10:22 ` Peter Zijlstra
2014-04-23 14:14 ` Vince Weaver
2014-04-23 14:37 ` Vince Weaver
2014-04-24 21:14 ` Vince Weaver
2014-05-15 5:07 ` Vince Weaver
2014-05-15 8:37 ` Peter Zijlstra
2014-05-19 12:55 ` [tip:perf/core] perf: Fix perf_event_open(.flags) test tip-bot for Peter Zijlstra
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=20140423101038.GK11096@twins.programming.kicks-ass.net \
--to=peterz@infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@kernel.org \
--cc=tglx@linutronix.de \
--cc=vincent.weaver@maine.edu \
/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
Powered by JetHome