linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] perf/x86: KVM: Disable vPMU support on hybrid CPUs (host PMUs)
@ 2023-01-20  0:40 Sean Christopherson
  2023-01-20 14:39 ` Liang, Kan
  0 siblings, 1 reply; 9+ messages in thread
From: Sean Christopherson @ 2023-01-20  0:40 UTC (permalink / raw)
  To: Peter Zijlstra, Ingo Molnar, Arnaldo Carvalho de Melo,
	Thomas Gleixner, Borislav Petkov, Dave Hansen, x86
  Cc: Mark Rutland, Alexander Shishkin, Jiri Olsa, Namhyung Kim,
	H. Peter Anvin, linux-perf-users, linux-kernel, Jianfeng Gao,
	Andrew Cooper, Kan Liang, Andi Kleen, Sean Christopherson

Disable KVM support for virtualizing PMUs on hosts with hybrid PMUs until
KVM gains a sane way to enumeration the hybrid vPMU to userspace and/or
gains a mechanism to let userspace opt-in to the dangers of exposing a
hybrid vPMU to KVM guests.

Virtualizing a hybrid PMU, or at least part of a hybrid PMU, is possible,
but it requires userspace to pin vCPUs to pCPUs to prevent migrating a
vCPU between a big core and a little core, requires the VMM to accurately
enumerate the topology to the guest (if exposing a hybrid CPU to the
guest), and also requires the VMM to accurately enumerate the vPMU
capabilities to the guest.

The last point is especially problematic, as KVM doesn't control which
pCPU it runs on when enumerating KVM's vPMU capabilities to userspace.
For now, simply disable vPMU support on hybrid CPUs to avoid inducing
seemingly random #GPs in guests.

Reported-by: Jianfeng Gao <jianfeng.gao@intel.com>
Cc: stable@vger.kernel.org
Cc: Andrew Cooper <Andrew.Cooper3@citrix.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Kan Liang <kan.liang@linux.intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Link: https://lore.kernel.org/all/20220818181530.2355034-1-kan.liang@linux.intel.com
Signed-off-by: Sean Christopherson <seanjc@google.com>
---

Lightly tested as I don't have hybrid hardware.  For the record, I'm not
against supporting hybrid vPMUs in KVM, but it needs to be a dedicated
effort and not implicitly rely on userspace to do the right thing (or get
lucky).

 arch/x86/events/core.c | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/arch/x86/events/core.c b/arch/x86/events/core.c
index 85a63a41c471..a67667c41cc8 100644
--- a/arch/x86/events/core.c
+++ b/arch/x86/events/core.c
@@ -2974,17 +2974,18 @@ unsigned long perf_misc_flags(struct pt_regs *regs)
 
 void perf_get_x86_pmu_capability(struct x86_pmu_capability *cap)
 {
-	if (!x86_pmu_initialized()) {
+	/*
+	 * Hybrid PMUs don't play nice with virtualization unless userspace
+	 * pins vCPUs _and_ can enumerate accurate information to the guest.
+	 * Disable vPMU support for hybrid PMUs until KVM gains a way to let
+	 * userspace opt into the dangers of hybrid vPMUs.
+	 */
+	if (!x86_pmu_initialized() || is_hybrid()) {
 		memset(cap, 0, sizeof(*cap));
 		return;
 	}
 
 	cap->version		= x86_pmu.version;
-	/*
-	 * KVM doesn't support the hybrid PMU yet.
-	 * Return the common value in global x86_pmu,
-	 * which available for all cores.
-	 */
 	cap->num_counters_gp	= x86_pmu.num_counters;
 	cap->num_counters_fixed	= x86_pmu.num_counters_fixed;
 	cap->bit_width_gp	= x86_pmu.cntval_bits;

base-commit: de60733246ff4545a0483140c1f21426b8d7cb7f
-- 
2.39.0.246.g2a6d74b583-goog


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [PATCH] perf/x86: KVM: Disable vPMU support on hybrid CPUs (host PMUs)
  2023-01-20  0:40 [PATCH] perf/x86: KVM: Disable vPMU support on hybrid CPUs (host PMUs) Sean Christopherson
@ 2023-01-20 14:39 ` Liang, Kan
  2023-01-20 17:32   ` Sean Christopherson
  0 siblings, 1 reply; 9+ messages in thread
From: Liang, Kan @ 2023-01-20 14:39 UTC (permalink / raw)
  To: Sean Christopherson, Peter Zijlstra, Ingo Molnar,
	Arnaldo Carvalho de Melo, Thomas Gleixner, Borislav Petkov,
	Dave Hansen, x86
  Cc: Mark Rutland, Alexander Shishkin, Jiri Olsa, Namhyung Kim,
	H. Peter Anvin, linux-perf-users, linux-kernel, Jianfeng Gao,
	Andrew Cooper, Andi Kleen



On 2023-01-19 7:40 p.m., Sean Christopherson wrote:
> Disable KVM support for virtualizing PMUs on hosts with hybrid PMUs until
> KVM gains a sane way to enumeration the hybrid vPMU to userspace and/or
> gains a mechanism to let userspace opt-in to the dangers of exposing a
> hybrid vPMU to KVM guests.
> 
> Virtualizing a hybrid PMU, or at least part of a hybrid PMU, is possible,
> but it requires userspace to pin vCPUs to pCPUs to prevent migrating a
> vCPU between a big core and a little core, requires the VMM to accurately
> enumerate the topology to the guest (if exposing a hybrid CPU to the
> guest), and also requires the VMM to accurately enumerate the vPMU
> capabilities to the guest.

Current kernel only return the common counters to KVM, which is
available on both e-core and p-core. In theory, there should be no
problem with the migration between cores. You don't have to pin vCPU.
The only problem is that you probably can only use the architecture events.

There is nothing wrong for the information provided by the kernel. I
think it should be a KVM issue (my guess is the CPUID enumeration.) we
should fix rather than simply disable the PMU for entire hybrid machines.

Thanks,
Kan
> 
> The last point is especially problematic, as KVM doesn't control which
> pCPU it runs on when enumerating KVM's vPMU capabilities to userspace.
> For now, simply disable vPMU support on hybrid CPUs to avoid inducing
> seemingly random #GPs in guests.
> 
> Reported-by: Jianfeng Gao <jianfeng.gao@intel.com>
> Cc: stable@vger.kernel.org
> Cc: Andrew Cooper <Andrew.Cooper3@citrix.com>
> Cc: Peter Zijlstra <peterz@infradead.org>
> Cc: Kan Liang <kan.liang@linux.intel.com>
> Cc: Andi Kleen <ak@linux.intel.com>
> Link: https://lore.kernel.org/all/20220818181530.2355034-1-kan.liang@linux.intel.com
> Signed-off-by: Sean Christopherson <seanjc@google.com>
> ---
> 
> Lightly tested as I don't have hybrid hardware.  For the record, I'm not
> against supporting hybrid vPMUs in KVM, but it needs to be a dedicated
> effort and not implicitly rely on userspace to do the right thing (or get
> lucky).
> 
>  arch/x86/events/core.c | 13 +++++++------
>  1 file changed, 7 insertions(+), 6 deletions(-)
> 
> diff --git a/arch/x86/events/core.c b/arch/x86/events/core.c
> index 85a63a41c471..a67667c41cc8 100644
> --- a/arch/x86/events/core.c
> +++ b/arch/x86/events/core.c
> @@ -2974,17 +2974,18 @@ unsigned long perf_misc_flags(struct pt_regs *regs)
>  
>  void perf_get_x86_pmu_capability(struct x86_pmu_capability *cap)
>  {
> -	if (!x86_pmu_initialized()) {
> +	/*
> +	 * Hybrid PMUs don't play nice with virtualization unless userspace
> +	 * pins vCPUs _and_ can enumerate accurate information to the guest.
> +	 * Disable vPMU support for hybrid PMUs until KVM gains a way to let
> +	 * userspace opt into the dangers of hybrid vPMUs.
> +	 */
> +	if (!x86_pmu_initialized() || is_hybrid()) {
>  		memset(cap, 0, sizeof(*cap));
>  		return;
>  	}
>  
>  	cap->version		= x86_pmu.version;
> -	/*
> -	 * KVM doesn't support the hybrid PMU yet.
> -	 * Return the common value in global x86_pmu,
> -	 * which available for all cores.
> -	 */
>  	cap->num_counters_gp	= x86_pmu.num_counters;
>  	cap->num_counters_fixed	= x86_pmu.num_counters_fixed;
>  	cap->bit_width_gp	= x86_pmu.cntval_bits;
> 
> base-commit: de60733246ff4545a0483140c1f21426b8d7cb7f

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] perf/x86: KVM: Disable vPMU support on hybrid CPUs (host PMUs)
  2023-01-20 14:39 ` Liang, Kan
@ 2023-01-20 17:32   ` Sean Christopherson
  2023-01-20 19:55     ` Liang, Kan
  0 siblings, 1 reply; 9+ messages in thread
From: Sean Christopherson @ 2023-01-20 17:32 UTC (permalink / raw)
  To: Liang, Kan
  Cc: Peter Zijlstra, Ingo Molnar, Arnaldo Carvalho de Melo,
	Thomas Gleixner, Borislav Petkov, Dave Hansen, x86, Mark Rutland,
	Alexander Shishkin, Jiri Olsa, Namhyung Kim, H. Peter Anvin,
	linux-perf-users, linux-kernel, Jianfeng Gao, Andrew Cooper,
	Andi Kleen

On Fri, Jan 20, 2023, Liang, Kan wrote:
> 
> On 2023-01-19 7:40 p.m., Sean Christopherson wrote:
> > Disable KVM support for virtualizing PMUs on hosts with hybrid PMUs until
> > KVM gains a sane way to enumeration the hybrid vPMU to userspace and/or
> > gains a mechanism to let userspace opt-in to the dangers of exposing a
> > hybrid vPMU to KVM guests.
> > 
> > Virtualizing a hybrid PMU, or at least part of a hybrid PMU, is possible,
> > but it requires userspace to pin vCPUs to pCPUs to prevent migrating a
> > vCPU between a big core and a little core, requires the VMM to accurately
> > enumerate the topology to the guest (if exposing a hybrid CPU to the
> > guest), and also requires the VMM to accurately enumerate the vPMU
> > capabilities to the guest.
> 
> Current kernel only return the common counters to KVM, which is
> available on both e-core and p-core. In theory, there should be no
> problem with the migration between cores. You don't have to pin vCPU.
> The only problem is that you probably can only use the architecture events.

And how exactly is KVM supposed to tell the guest that it can only use
architectural events?  I see CPUID bits that enumerate which architectural events
are supported, but I'm not seeing anything that says _only_ architectural events
are supported.

> There is nothing wrong for the information provided by the kernel. I
> think it should be a KVM issue (my guess is the CPUID enumeration.) we
> should fix rather than simply disable the PMU for entire hybrid machines.

I'm not arguing this isn't KVM's problem, and I'm all for proper enabling in KVM,
but I'm not seeing any patches being posted.  In the meantime, we've got bug reports
coming in about KVM guests having PMU problems on hybrid hosts, and a pile of
evidence that strongly suggests this isn't going to be fixed by a one-line patch.

Again, I'm not against enabling vPMU on hybrid CPUs, but AFAICT the enabling is
non-trivial and may require new uAPI to provide the necessary information to
userspace.  As a short term fix, and something that can be backported to stable
trees, I don't see a better alternative than disabling vPMU support.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] perf/x86: KVM: Disable vPMU support on hybrid CPUs (host PMUs)
  2023-01-20 17:32   ` Sean Christopherson
@ 2023-01-20 19:55     ` Liang, Kan
  2023-01-20 20:34       ` Sean Christopherson
  0 siblings, 1 reply; 9+ messages in thread
From: Liang, Kan @ 2023-01-20 19:55 UTC (permalink / raw)
  To: Sean Christopherson
  Cc: Peter Zijlstra, Ingo Molnar, Arnaldo Carvalho de Melo,
	Thomas Gleixner, Borislav Petkov, Dave Hansen, x86, Mark Rutland,
	Alexander Shishkin, Jiri Olsa, Namhyung Kim, H. Peter Anvin,
	linux-perf-users, linux-kernel, Jianfeng Gao, Andrew Cooper,
	Andi Kleen



On 2023-01-20 12:32 p.m., Sean Christopherson wrote:
> On Fri, Jan 20, 2023, Liang, Kan wrote:
>>
>> On 2023-01-19 7:40 p.m., Sean Christopherson wrote:
>>> Disable KVM support for virtualizing PMUs on hosts with hybrid PMUs until
>>> KVM gains a sane way to enumeration the hybrid vPMU to userspace and/or
>>> gains a mechanism to let userspace opt-in to the dangers of exposing a
>>> hybrid vPMU to KVM guests.
>>>
>>> Virtualizing a hybrid PMU, or at least part of a hybrid PMU, is possible,
>>> but it requires userspace to pin vCPUs to pCPUs to prevent migrating a
>>> vCPU between a big core and a little core, requires the VMM to accurately
>>> enumerate the topology to the guest (if exposing a hybrid CPU to the
>>> guest), and also requires the VMM to accurately enumerate the vPMU
>>> capabilities to the guest.
>>
>> Current kernel only return the common counters to KVM, which is
>> available on both e-core and p-core. In theory, there should be no
>> problem with the migration between cores. You don't have to pin vCPU.
>> The only problem is that you probably can only use the architecture events.
> 
> And how exactly is KVM supposed to tell the guest that it can only use
> architectural events?  I see CPUID bits that enumerate which architectural events
> are supported, but I'm not seeing anything that says _only_ architectural events
> are supported.

I think we have to use a white list in KVM. For the unsupported event,
KVM will not create the event.

> 
>> There is nothing wrong for the information provided by the kernel. I
>> think it should be a KVM issue (my guess is the CPUID enumeration.) we
>> should fix rather than simply disable the PMU for entire hybrid machines.
> 
> I'm not arguing this isn't KVM's problem, and I'm all for proper enabling in KVM,
> but I'm not seeing any patches being posted.  In the meantime, we've got bug reports
> coming in about KVM guests having PMU problems on hybrid hosts, and a pile of
> evidence that strongly suggests this isn't going to be fixed by a one-line patch.
> 
> Again, I'm not against enabling vPMU on hybrid CPUs, but AFAICT the enabling is
> non-trivial and may require new uAPI to provide the necessary information to
> userspace.  As a short term fix, and something that can be backported to stable
> trees, I don't see a better alternative than disabling vPMU support.

I just did some tests with the latest kernel on a RPL machine, and
observed the below error in the guest.

[    0.118214] unchecked MSR access error: WRMSR to 0x38f (tried to
write 0x00011000f0000003f) at rIP: 0xffffffff83082124
(native_write_msr+0x4/0x30)
[    0.118949] Call Trace:
[    0.119092]  <TASK>
[    0.119215]  ? __intel_pmu_enable_all.constprop.0+0x88/0xe0
[    0.119533]  intel_pmu_enable_all+0x15/0x20
[    0.119778]  x86_pmu_enable+0x17c/0x320


The error is caused by the access to an unsupported bit (bit 48).
The bit is to enable the Perf Metrics feature, which is a p-core only
feature.

KVM doesn't support the feature, so the corresponding bit of
PERF_CAPABILITIES MSR is not exposed to the guest. For a non-hybrid
platform, guest checks the bit. Everything works well.

However, the current implementation in perf kernel for ADL and RPL
doesn't check the bit. Because the bit is not reliable on ADL and RPL.
Perf assumes that the p-core hardware always has the feature enabled.
There is no problem for the bare metal, but seems bring troubles on KVM.

There is no such issue for the later platforms anymore, e.g., MTL, since
we enhance the PMU features enumeration for the hybrid platforms.
Please find the enhancement in Chapter 10 NEXT GENERATION PERFORMANCE
MONITORING UNIT (PMU)
https://cdrdv2-public.intel.com/671368/architecture-instruction-set-extensions-programming-reference.pdf

I think, for a short term fix, we should fix the issue in the perf
kernel for ADL and RPL, rather than disable the entire vPMU on a hybrid
platform.

How about the below patch?


diff --git a/arch/x86/events/intel/core.c b/arch/x86/events/intel/core.c
index dfd2c124cdf8..d667e8b79286 100644
--- a/arch/x86/events/intel/core.c
+++ b/arch/x86/events/intel/core.c
@@ -6459,7 +6459,13 @@ __init int intel_pmu_init(void)
 					__EVENT_CONSTRAINT(0, (1ULL << pmu->num_counters) - 1,
 							   0, pmu->num_counters, 0, 0);
 		pmu->intel_cap.capabilities = x86_pmu.intel_cap.capabilities;
-		pmu->intel_cap.perf_metrics = 1;
+		/*
+		 * The perf metrics bit is not reliable on ADL and RPL. For bare
+		 * metal, it's safe to assume that the feature is always enabled
+		 * on p-core, but we cannot do the same assumption for KVM.
+		 */
+		if (!boot_cpu_has(X86_FEATURE_HYPERVISOR))
+			pmu->intel_cap.perf_metrics = 1;
 		pmu->intel_cap.pebs_output_pt_available = 0;

 		memcpy(pmu->hw_cache_event_ids, spr_hw_cache_event_ids,
sizeof(pmu->hw_cache_event_ids));


Thanks,
Kan

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [PATCH] perf/x86: KVM: Disable vPMU support on hybrid CPUs (host PMUs)
  2023-01-20 19:55     ` Liang, Kan
@ 2023-01-20 20:34       ` Sean Christopherson
  2023-01-20 22:00         ` Liang, Kan
  0 siblings, 1 reply; 9+ messages in thread
From: Sean Christopherson @ 2023-01-20 20:34 UTC (permalink / raw)
  To: Liang, Kan
  Cc: Peter Zijlstra, Ingo Molnar, Arnaldo Carvalho de Melo,
	Thomas Gleixner, Borislav Petkov, Dave Hansen, x86, Mark Rutland,
	Alexander Shishkin, Jiri Olsa, Namhyung Kim, H. Peter Anvin,
	linux-perf-users, linux-kernel, Jianfeng Gao, Andrew Cooper,
	Andi Kleen

On Fri, Jan 20, 2023, Liang, Kan wrote:
> On 2023-01-20 12:32 p.m., Sean Christopherson wrote:
> > On Fri, Jan 20, 2023, Liang, Kan wrote:
> >> There is nothing wrong for the information provided by the kernel. I
> >> think it should be a KVM issue (my guess is the CPUID enumeration.) we
> >> should fix rather than simply disable the PMU for entire hybrid machines.
> > 
> > I'm not arguing this isn't KVM's problem, and I'm all for proper enabling in KVM,
> > but I'm not seeing any patches being posted.  In the meantime, we've got bug reports
> > coming in about KVM guests having PMU problems on hybrid hosts, and a pile of
> > evidence that strongly suggests this isn't going to be fixed by a one-line patch.
> > 
> > Again, I'm not against enabling vPMU on hybrid CPUs, but AFAICT the enabling is
> > non-trivial and may require new uAPI to provide the necessary information to
> > userspace.  As a short term fix, and something that can be backported to stable
> > trees, I don't see a better alternative than disabling vPMU support.
> 
> I just did some tests with the latest kernel on a RPL machine, and
> observed the below error in the guest.
> 
> [    0.118214] unchecked MSR access error: WRMSR to 0x38f (tried to
> write 0x00011000f0000003f) at rIP: 0xffffffff83082124
> (native_write_msr+0x4/0x30)
> [    0.118949] Call Trace:
> [    0.119092]  <TASK>
> [    0.119215]  ? __intel_pmu_enable_all.constprop.0+0x88/0xe0
> [    0.119533]  intel_pmu_enable_all+0x15/0x20
> [    0.119778]  x86_pmu_enable+0x17c/0x320
> 
> 
> The error is caused by the access to an unsupported bit (bit 48).
> The bit is to enable the Perf Metrics feature, which is a p-core only
> feature.
> 
> KVM doesn't support the feature, so the corresponding bit of
> PERF_CAPABILITIES MSR is not exposed to the guest. For a non-hybrid
> platform, guest checks the bit. Everything works well.
> 
> However, the current implementation in perf kernel for ADL and RPL
> doesn't check the bit. Because the bit is not reliable on ADL and RPL.
> Perf assumes that the p-core hardware always has the feature enabled.
> There is no problem for the bare metal, but seems bring troubles on KVM.
> 
> There is no such issue for the later platforms anymore, e.g., MTL, since
> we enhance the PMU features enumeration for the hybrid platforms.
> Please find the enhancement in Chapter 10 NEXT GENERATION PERFORMANCE
> MONITORING UNIT (PMU)
> https://cdrdv2-public.intel.com/671368/architecture-instruction-set-extensions-programming-reference.pdf
> 
> I think, for a short term fix, we should fix the issue in the perf
> kernel for ADL and RPL, rather than disable the entire vPMU on a hybrid
> platform.
> 
> How about the below patch?

No, fudging around this in the guest isn't a viable fix, even as a short term fix.
Linux isn't the only guest supported by KVM, the VMM isn't strictly required to
set HYPERVISOR in guest CPUID, and it doesn't fix the problems with trying to use
microarchitectural events.

> diff --git a/arch/x86/events/intel/core.c b/arch/x86/events/intel/core.c
> index dfd2c124cdf8..d667e8b79286 100644
> --- a/arch/x86/events/intel/core.c
> +++ b/arch/x86/events/intel/core.c
> @@ -6459,7 +6459,13 @@ __init int intel_pmu_init(void)
>  					__EVENT_CONSTRAINT(0, (1ULL << pmu->num_counters) - 1,
>  							   0, pmu->num_counters, 0, 0);
>  		pmu->intel_cap.capabilities = x86_pmu.intel_cap.capabilities;
> -		pmu->intel_cap.perf_metrics = 1;
> +		/*
> +		 * The perf metrics bit is not reliable on ADL and RPL. For bare
> +		 * metal, it's safe to assume that the feature is always enabled
> +		 * on p-core, but we cannot do the same assumption for KVM.
> +		 */
> +		if (!boot_cpu_has(X86_FEATURE_HYPERVISOR))
> +			pmu->intel_cap.perf_metrics = 1;
>  		pmu->intel_cap.pebs_output_pt_available = 0;
> 
>  		memcpy(pmu->hw_cache_event_ids, spr_hw_cache_event_ids,
> sizeof(pmu->hw_cache_event_ids));
> 
> 
> Thanks,
> Kan

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] perf/x86: KVM: Disable vPMU support on hybrid CPUs (host PMUs)
  2023-01-20 20:34       ` Sean Christopherson
@ 2023-01-20 22:00         ` Liang, Kan
  2023-01-24  1:04           ` Andi Kleen
  0 siblings, 1 reply; 9+ messages in thread
From: Liang, Kan @ 2023-01-20 22:00 UTC (permalink / raw)
  To: Sean Christopherson
  Cc: Peter Zijlstra, Ingo Molnar, Arnaldo Carvalho de Melo,
	Thomas Gleixner, Borislav Petkov, Dave Hansen, x86, Mark Rutland,
	Alexander Shishkin, Jiri Olsa, Namhyung Kim, H. Peter Anvin,
	linux-perf-users, linux-kernel, Jianfeng Gao, Andrew Cooper,
	Andi Kleen



On 2023-01-20 3:34 p.m., Sean Christopherson wrote:
> On Fri, Jan 20, 2023, Liang, Kan wrote:
>> On 2023-01-20 12:32 p.m., Sean Christopherson wrote:
>>> On Fri, Jan 20, 2023, Liang, Kan wrote:
>>>> There is nothing wrong for the information provided by the kernel. I
>>>> think it should be a KVM issue (my guess is the CPUID enumeration.) we
>>>> should fix rather than simply disable the PMU for entire hybrid machines.
>>>
>>> I'm not arguing this isn't KVM's problem, and I'm all for proper enabling in KVM,
>>> but I'm not seeing any patches being posted.  In the meantime, we've got bug reports
>>> coming in about KVM guests having PMU problems on hybrid hosts, and a pile of
>>> evidence that strongly suggests this isn't going to be fixed by a one-line patch.
>>>
>>> Again, I'm not against enabling vPMU on hybrid CPUs, but AFAICT the enabling is
>>> non-trivial and may require new uAPI to provide the necessary information to
>>> userspace.  As a short term fix, and something that can be backported to stable
>>> trees, I don't see a better alternative than disabling vPMU support.
>>
>> I just did some tests with the latest kernel on a RPL machine, and
>> observed the below error in the guest.
>>
>> [    0.118214] unchecked MSR access error: WRMSR to 0x38f (tried to
>> write 0x00011000f0000003f) at rIP: 0xffffffff83082124
>> (native_write_msr+0x4/0x30)
>> [    0.118949] Call Trace:
>> [    0.119092]  <TASK>
>> [    0.119215]  ? __intel_pmu_enable_all.constprop.0+0x88/0xe0
>> [    0.119533]  intel_pmu_enable_all+0x15/0x20
>> [    0.119778]  x86_pmu_enable+0x17c/0x320
>>
>>
>> The error is caused by the access to an unsupported bit (bit 48).
>> The bit is to enable the Perf Metrics feature, which is a p-core only
>> feature.
>>
>> KVM doesn't support the feature, so the corresponding bit of
>> PERF_CAPABILITIES MSR is not exposed to the guest. For a non-hybrid
>> platform, guest checks the bit. Everything works well.
>>
>> However, the current implementation in perf kernel for ADL and RPL
>> doesn't check the bit. Because the bit is not reliable on ADL and RPL.
>> Perf assumes that the p-core hardware always has the feature enabled.
>> There is no problem for the bare metal, but seems bring troubles on KVM.
>>
>> There is no such issue for the later platforms anymore, e.g., MTL, since
>> we enhance the PMU features enumeration for the hybrid platforms.
>> Please find the enhancement in Chapter 10 NEXT GENERATION PERFORMANCE
>> MONITORING UNIT (PMU)
>> https://cdrdv2-public.intel.com/671368/architecture-instruction-set-extensions-programming-reference.pdf
>>
>> I think, for a short term fix, we should fix the issue in the perf
>> kernel for ADL and RPL, rather than disable the entire vPMU on a hybrid
>> platform.
>>
>> How about the below patch?
> 
> No, fudging around this in the guest isn't a viable fix, even as a short term fix.
> Linux isn't the only guest supported by KVM, the VMM isn't strictly required to
> set HYPERVISOR in guest CPUID, 

I once thought it's a KVM issue, but I was wrong after the debugging.

It's the Linux guest which doesn't behave properly. The response from
KVM is correct. KVM doesn't expose the perf metrics feature to the
guest. But the guest tries to enable the feature. The MSR access error
should be expected.

I think we should fix the wrong behavior of the Linux guest, rather than
disable innocent KVM.

If the HYPERVISOR bit is nor reliable, is there other way to check
whether it's a guest?

> and it doesn't fix the problems with trying to use
> microarchitectural events.

I think it's a different problem. Even in the non-hybrid machine, the
guest can try any events (supported or non-supported). You cannot stop
it. It's a long term issue.

If I understand correct, the workaround in KVM is to add a white/black
list to filter the events. I think we can do the same thing for the
hybrid machine for now.
https://lore.kernel.org/lkml/CAOyeoRUUK+T_71J=+zcToyL93LkpARpsuWSfZS7jbJq=wd1rQg@mail.gmail.com/

Thanks,
Kan
> 
>> diff --git a/arch/x86/events/intel/core.c b/arch/x86/events/intel/core.c
>> index dfd2c124cdf8..d667e8b79286 100644
>> --- a/arch/x86/events/intel/core.c
>> +++ b/arch/x86/events/intel/core.c
>> @@ -6459,7 +6459,13 @@ __init int intel_pmu_init(void)
>>  					__EVENT_CONSTRAINT(0, (1ULL << pmu->num_counters) - 1,
>>  							   0, pmu->num_counters, 0, 0);
>>  		pmu->intel_cap.capabilities = x86_pmu.intel_cap.capabilities;
>> -		pmu->intel_cap.perf_metrics = 1;
>> +		/*
>> +		 * The perf metrics bit is not reliable on ADL and RPL. For bare
>> +		 * metal, it's safe to assume that the feature is always enabled
>> +		 * on p-core, but we cannot do the same assumption for KVM.
>> +		 */
>> +		if (!boot_cpu_has(X86_FEATURE_HYPERVISOR))
>> +			pmu->intel_cap.perf_metrics = 1;
>>  		pmu->intel_cap.pebs_output_pt_available = 0;
>>
>>  		memcpy(pmu->hw_cache_event_ids, spr_hw_cache_event_ids,
>> sizeof(pmu->hw_cache_event_ids));
>>
>>
>> Thanks,
>> Kan

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] perf/x86: KVM: Disable vPMU support on hybrid CPUs (host PMUs)
  2023-01-20 22:00         ` Liang, Kan
@ 2023-01-24  1:04           ` Andi Kleen
  2023-01-24 15:31             ` Liang, Kan
  0 siblings, 1 reply; 9+ messages in thread
From: Andi Kleen @ 2023-01-24  1:04 UTC (permalink / raw)
  To: Liang, Kan, Sean Christopherson
  Cc: Peter Zijlstra, Ingo Molnar, Arnaldo Carvalho de Melo,
	Thomas Gleixner, Borislav Petkov, Dave Hansen, x86, Mark Rutland,
	Alexander Shishkin, Jiri Olsa, Namhyung Kim, H. Peter Anvin,
	linux-perf-users, linux-kernel, Jianfeng Gao, Andrew Cooper


> If I understand correct, the workaround in KVM is to add a white/black
> list to filter the events. I think we can do the same thing for the
> hybrid machine for now.
> https://lore.kernel.org/lkml/CAOyeoRUUK+T_71J=+zcToyL93LkpARpsuWSfZS7jbJq=wd1rQg@mail.gmail.com/


This will make everyone who actually wants to use the PMU sad.

It's reasonable if the vCPUs are not bound, but if they are bound it 
would be better to expose it with a suitable CPUID for the types.


-Andi




^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] perf/x86: KVM: Disable vPMU support on hybrid CPUs (host PMUs)
  2023-01-24  1:04           ` Andi Kleen
@ 2023-01-24 15:31             ` Liang, Kan
  2023-01-31 10:59               ` Peter Zijlstra
  0 siblings, 1 reply; 9+ messages in thread
From: Liang, Kan @ 2023-01-24 15:31 UTC (permalink / raw)
  To: Andi Kleen, Sean Christopherson
  Cc: Peter Zijlstra, Ingo Molnar, Arnaldo Carvalho de Melo,
	Thomas Gleixner, Borislav Petkov, Dave Hansen, x86, Mark Rutland,
	Alexander Shishkin, Jiri Olsa, Namhyung Kim, H. Peter Anvin,
	linux-perf-users, linux-kernel, Jianfeng Gao, Andrew Cooper



On 2023-01-23 8:04 p.m., Andi Kleen wrote:
> 
>> If I understand correct, the workaround in KVM is to add a white/black
>> list to filter the events. I think we can do the same thing for the
>> hybrid machine for now.
>> https://lore.kernel.org/lkml/CAOyeoRUUK+T_71J=+zcToyL93LkpARpsuWSfZS7jbJq=wd1rQg@mail.gmail.com/
> 
> 
> This will make everyone who actually wants to use the PMU sad.

Yes, but we still have all the architecture events work. I think it
should be good enough as a short-term solution, when the hybrid is not
completely supported in KVM.
> 
> It's reasonable if the vCPUs are not bound, but if they are bound it
> would be better to expose it with a suitable CPUID for the types.
> 

Yes, and also the CPUID leaf 0x23H support to enumerate the PMU features
of each types.


Thanks,
Kan


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] perf/x86: KVM: Disable vPMU support on hybrid CPUs (host PMUs)
  2023-01-24 15:31             ` Liang, Kan
@ 2023-01-31 10:59               ` Peter Zijlstra
  0 siblings, 0 replies; 9+ messages in thread
From: Peter Zijlstra @ 2023-01-31 10:59 UTC (permalink / raw)
  To: Liang, Kan
  Cc: Andi Kleen, Sean Christopherson, Ingo Molnar,
	Arnaldo Carvalho de Melo, Thomas Gleixner, Borislav Petkov,
	Dave Hansen, x86, Mark Rutland, Alexander Shishkin, Jiri Olsa,
	Namhyung Kim, H. Peter Anvin, linux-perf-users, linux-kernel,
	Jianfeng Gao, Andrew Cooper

On Tue, Jan 24, 2023 at 10:31:00AM -0500, Liang, Kan wrote:

> Yes, and also the CPUID leaf 0x23H support to enumerate the PMU features
> of each types.

Note that this is not enough or even useful. There is nothing that stops
a vCPU from migrating between types at every instruction. There simply
is no relation between a vCPU and a type, so knowing what a type does or
does not support is useless information.

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2023-01-31 11:00 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-20  0:40 [PATCH] perf/x86: KVM: Disable vPMU support on hybrid CPUs (host PMUs) Sean Christopherson
2023-01-20 14:39 ` Liang, Kan
2023-01-20 17:32   ` Sean Christopherson
2023-01-20 19:55     ` Liang, Kan
2023-01-20 20:34       ` Sean Christopherson
2023-01-20 22:00         ` Liang, Kan
2023-01-24  1:04           ` Andi Kleen
2023-01-24 15:31             ` Liang, Kan
2023-01-31 10:59               ` Peter Zijlstra

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).