public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg KH <greg@kroah.com>
To: Thadeu Lima de Souza Cascardo <cascardo@igalia.com>
Cc: stable@vger.kernel.org, Yang Jihong <yangjihong1@huawei.com>,
	Peter Zijlstra <peterz@infradead.org>,
	kernel-dev@igalia.com
Subject: Re: [PATCH 4.19,5.4,5.10,5.15] perf/core: Fix reentry problem in perf_output_read_group()
Date: Fri, 29 Mar 2024 14:08:15 +0100	[thread overview]
Message-ID: <2024032908-uphold-scapegoat-74e7@gregkh> (raw)
In-Reply-To: <20240307175015.1972330-1-cascardo@igalia.com>

On Thu, Mar 07, 2024 at 02:50:15PM -0300, Thadeu Lima de Souza Cascardo wrote:
> From: Yang Jihong <yangjihong1@huawei.com>
> 
> commit 6b959ba22d34ca793ffdb15b5715457c78e38b1a upstream.
> 
> perf_output_read_group may respond to IPI request of other cores and invoke
> __perf_install_in_context function. As a result, hwc configuration is modified.
> causing inconsistency and unexpected consequences.
> 
> Interrupts are not disabled when perf_output_read_group reads PMU counter.
> In this case, IPI request may be received from other cores.
> As a result, PMU configuration is modified and an error occurs when
> reading PMU counter:
> 
> 		     CPU0                                         CPU1
> 						      __se_sys_perf_event_open
> 							perf_install_in_context
>   perf_output_read_group                                  smp_call_function_single
>     for_each_sibling_event(sub, leader) {                   generic_exec_single
>       if ((sub != event) &&                                   remote_function
> 	  (sub->state == PERF_EVENT_STATE_ACTIVE))                    |
>   <enter IPI handler: __perf_install_in_context>   <----RAISE IPI-----+
>   __perf_install_in_context
>     ctx_resched
>       event_sched_out
> 	armpmu_del
> 	  ...
> 	  hwc->idx = -1; // event->hwc.idx is set to -1
>   ...
>   <exit IPI>
> 	      sub->pmu->read(sub);
> 		armpmu_read
> 		  armv8pmu_read_counter
> 		    armv8pmu_read_hw_counter
> 		      int idx = event->hw.idx; // idx = -1
> 		      u64 val = armv8pmu_read_evcntr(idx);
> 			u32 counter = ARMV8_IDX_TO_COUNTER(idx); // invalid counter = 30
> 			read_pmevcntrn(counter) // undefined instruction
> 
> Signed-off-by: Yang Jihong <yangjihong1@huawei.com>
> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
> Link: https://lkml.kernel.org/r/20220902082918.179248-1-yangjihong1@huawei.com
> Signed-off-by: Thadeu Lima de Souza Cascardo <cascardo@igalia.com>
> ---
> 
> This race may also lead to observed behavior like RCU stalls, hang tasks,
> OOM. Likely due to list corruption or a similar root cause.

Now queued up, thanks.

greg k-h

      reply	other threads:[~2024-03-29 13:08 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-07 17:50 [PATCH 4.19,5.4,5.10,5.15] perf/core: Fix reentry problem in perf_output_read_group() Thadeu Lima de Souza Cascardo
2024-03-29 13:08 ` Greg KH [this message]

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=2024032908-uphold-scapegoat-74e7@gregkh \
    --to=greg@kroah.com \
    --cc=cascardo@igalia.com \
    --cc=kernel-dev@igalia.com \
    --cc=peterz@infradead.org \
    --cc=stable@vger.kernel.org \
    --cc=yangjihong1@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