From: Peter Zijlstra <peterz@infradead.org>
To: Namhyung Kim <namhyung@kernel.org>
Cc: Ingo Molnar <mingo@kernel.org>,
Mark Rutland <mark.rutland@arm.com>,
Alexander Shishkin <alexander.shishkin@linux.intel.com>,
Arnaldo Carvalho de Melo <acme@kernel.org>,
LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH RESEND] perf/core: Fix a refcount leak in attach_perf_ctx_data()
Date: Wed, 23 Sep 2026 09:51:04 +0200 [thread overview]
Message-ID: <20260923075104.GA4121339@noisy.programming.kicks-ass.net> (raw)
In-Reply-To: <arNZ2YeL7Uuva-YQ@google.com>
On Tue, Sep 22, 2026 at 09:47:21PM -0700, Namhyung Kim wrote:
> On Tue, Sep 22, 2026 at 03:38:35PM +0200, Peter Zijlstra wrote:
> > On Sun, Sep 20, 2026 at 04:16:39PM -0700, Namhyung Kim wrote:
> > > The attach_perf_ctx_data() can race on global and !global cases. The
> > > global case is protected by global_ctx_data_rwsem and shares a single
> > > reference count using perf_ctx_data.global field.
> > >
> > > But when it races with !global case, it may miss to set the global field
> > > and result in a reference count leak.
> > >
> > > CPU1 CPU2
> > > ----------------------------------------------------------------
> > > attach_task_ctx_data(global=1) attach_task_ctx_data(global=0)
> > > cd1 = alloc_perf_ctx_data() cd2 = alloc_perf_ctx_data()
> > > try_cmpxchg() // ok
> > > // task->perf_ctx_data = cd2
> > >
> > > try_cmpxchg() // fail; old = cd2; global = 0
> > > refcount_inc_not_zero() // cd2->refcount++;
> > > free_perf_ctx_data() // cd1
> >
> > Urgh, took a good while to remember how all that worked. Also, I think
> > it might have been clearer written like so:
> >
> > CPU1 CPU2
> >
> > attach_task_ctx_data(.global=1) attach_task_ctx_data(.global=0)
> > cd1 = alloc_perf_ctx_data(); cd2 = alloc_perf_ctx_data();
> > // { .global = 0, .refcount = 1 };
> >
> > try_cmpxchg(); // success,
> > // task->perf_ctx_data = cd2
> > try_cmpxhg(); // fail; old = cd2
> > refcount_inc_not_zero(&old->refcount); // success
> > // old.refcount = 2
> > free_perf_ctx_data(cd1);
>
> I see. I'll do better next time. Let me know if you want me to resend.
Nah, I'll make a few edits and stuff it in a git tree somewhere.
Thanks!
next prev parent reply other threads:[~2026-09-23 7:51 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-20 23:16 Namhyung Kim
2026-09-22 13:38 ` Peter Zijlstra
2026-09-23 4:47 ` Namhyung Kim
2026-09-23 7:51 ` Peter Zijlstra [this message]
2026-09-23 9:52 ` [tip: perf/urgent] " tip-bot2 for Namhyung Kim
-- strict thread matches above, loose matches on Subject: below --
2026-06-15 5:11 [PATCH RESEND] " Namhyung Kim
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=20260923075104.GA4121339@noisy.programming.kicks-ass.net \
--to=peterz@infradead.org \
--cc=acme@kernel.org \
--cc=alexander.shishkin@linux.intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=mingo@kernel.org \
--cc=namhyung@kernel.org \
/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®