From: Mark Rutland <mark.rutland@arm.com>
To: zhouchengming <zhouchengming1@huawei.com>
Cc: linux-kernel@vger.kernel.org,
Alexander Shishkin <alexander.shishkin@linux.intel.com>,
Arnaldo Carvalho de Melo <acme@kernel.org>,
Ingo Molnar <mingo@redhat.com>,
Peter Zijlstra <peterz@infradead.org>,
Li Bin <huawei.libin@huawei.com>
Subject: Re: [PATCH] perf/core: fix group {cpu,task} validation
Date: Fri, 23 Jun 2017 11:07:44 +0100 [thread overview]
Message-ID: <20170623100743.GA12398@leverpostej> (raw)
In-Reply-To: <594C6746.2060401@huawei.com>
Hi,
On Fri, Jun 23, 2017 at 08:56:38AM +0800, zhouchengming wrote:
> On 2017/6/22 22:41, Mark Rutland wrote:
> >Regardless of which events form a group, it does not make sense for the
> >events to target different tasks and/or CPUs, as this leaves the group
> >inconsistent and impossible to schedule. The core perf code assumes that
> >these are consistent across (successfully intialised) groups.
> >
> >Core perf code only verifies this when moving SW events into a HW
> >context. Thus, we can violate this requirement for pure SW groups and
> >pure HW groups, unless the relevant PMU driver happens to perform this
> >verification itself. These mismatched groups subsequently wreak havoc
> >elsewhere.
> >
> >For example, we handle watchpoints as SW events, and reserve watchpoint
> >HW on a per-cpu basis at pmu::event_init() time to ensure that any event
> >that is initialised is guaranteed to have a slot at pmu::add() time.
> >However, the core code only checks the group leader's cpu filter (via
> >event_filter_match()), and can thus install follower events onto CPUs
> >violating thier (mismatched) CPU filters, potentially installing them
> >into a CPU without sufficient reserved slots.
[...]
> >Fix this by validating this requirement regardless of whether we're
> >moving events.
> >
> >Signed-off-by: Mark Rutland<mark.rutland@arm.com>
> >Cc: Alexander Shishkin<alexander.shishkin@linux.intel.com>
> >Cc: Arnaldo Carvalho de Melo<acme@kernel.org>
> >Cc: Ingo Molnar<mingo@redhat.com>
> >Cc: Peter Zijlstra<peterz@infradead.org>
> >Cc: Zhou Chengming<zhouchengming1@huawei.com>
> >Cc: linux-kernel@vger.kernel.org
> >---
> > kernel/events/core.c | 39 +++++++++++++++++++--------------------
> > 1 file changed, 19 insertions(+), 20 deletions(-)
> >
> >diff --git a/kernel/events/core.c b/kernel/events/core.c
> >index 6c4e523..1dca484 100644
> >--- a/kernel/events/core.c
> >+++ b/kernel/events/core.c
> >@@ -10010,28 +10010,27 @@ static int perf_event_set_clock(struct perf_event *event, clockid_t clk_id)
> > goto err_context;
> >
> > /*
> >- * Do not allow to attach to a group in a different
> >- * task or CPU context:
> >+ * Make sure we're both events for the same CPU;
> >+ * grouping events for different CPUs is broken; since
> >+ * you can never concurrently schedule them anyhow.
> > */
> >- if (move_group) {
> >- /*
> >- * Make sure we're both on the same task, or both
> >- * per-cpu events.
> >- */
> >- if (group_leader->ctx->task != ctx->task)
> >- goto err_context;
> >+ if (group_leader->cpu != event->cpu)
> >+ goto err_context;
> >
> >- /*
> >- * Make sure we're both events for the same CPU;
> >- * grouping events for different CPUs is broken; since
> >- * you can never concurrently schedule them anyhow.
> >- */
> >- if (group_leader->cpu != event->cpu)
> >- goto err_context;
> >- } else {
> >- if (group_leader->ctx != ctx)
> >- goto err_context;
> >- }
> >+ /*
> >+ * Make sure we're both on the same task, or both
> >+ * per-cpu events.
> >+ */
> >+ if (group_leader->ctx->task != ctx->task)
> >+ goto err_context;
> >+
> >+ /*
> >+ * Do not allow to attach to a group in a different task
> >+ * or CPU context. If we're moving SW events, we'll fix
> >+ * this up later, so allow that.
> >+ */
> >+ if (!move_group&& group_leader->ctx != ctx)
> >+ goto err_context;
>
> We don't need to check move_group here, the previous two checks
> already make sure the events are on the same task and the same cpu.
That's not sufficient to ensure that they're the same context, however.
> So when move_group needed, they will be moved to the same taskctx or
> cpuctx then.
Consider the case of two "uncore" PMUs, X and Y. Each has their own
cpuctx. You could open PMU X event with cpu == 0 && !task, and you could
subsequently open a PMU Y event following X with cpu == 0, && !task.
Neither event is a SW event, so we won't set move_group, and thus we
won't move either event.
Each event would be placed in its respective PMU's cpuctx, so
group_leader->ctx != event->ctx. We don't check this again prior to
installing the event, which would go wrong:
perf_install_in_context(ctx, event, event->cpu)
-> __perf_install_in_context()
-> add_event_to_ctx(event, ctx)
-> perf_group_attach(event)
-> WARN_ON_ONCE(group_leader->ctx != event->ctx)
... and subsequently a number of other things could go wrong due to this
mismatch.
We need to keep this check in the !move_group case.
Thanks,
Mark.
next prev parent reply other threads:[~2017-06-23 10:08 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-22 14:41 [PATCH] perf/core: fix group {cpu,task} validation Mark Rutland
2017-06-23 0:56 ` zhouchengming
2017-06-23 10:07 ` Mark Rutland [this message]
2017-08-21 15:53 ` Peter Zijlstra
2017-08-21 16:01 ` Mark Rutland
2017-08-21 16:08 ` Peter Zijlstra
2017-08-25 11:51 ` [tip:perf/core] perf/core: Fix " tip-bot for Mark Rutland
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=20170623100743.GA12398@leverpostej \
--to=mark.rutland@arm.com \
--cc=acme@kernel.org \
--cc=alexander.shishkin@linux.intel.com \
--cc=huawei.libin@huawei.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=peterz@infradead.org \
--cc=zhouchengming1@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