Re: [PATCH v6 5/8] arm64: KVM: Add iflag for FEAT_TRF

From: Marc Zyngier
Date: Mon Feb 26 2024 - 13:04:06 EST


On Mon, 26 Feb 2024 15:41:02 +0000,
James Clark <james.clark@xxxxxxx> wrote:
>
>
>
> On 26/02/2024 13:35, Marc Zyngier wrote:
> > On Mon, 26 Feb 2024 11:30:33 +0000,
> > James Clark <james.clark@xxxxxxx> wrote:

[...]

> >> diff --git a/arch/arm64/kvm/debug.c b/arch/arm64/kvm/debug.c
> >> index ce8886122ed3..49a13e72ddd2 100644
> >> --- a/arch/arm64/kvm/debug.c
> >> +++ b/arch/arm64/kvm/debug.c
> >> @@ -332,14 +332,30 @@ void kvm_arch_vcpu_load_debug_state_flags(struct kvm_vcpu *vcpu)
> >> !(read_sysreg_s(SYS_PMBIDR_EL1) & BIT(PMBIDR_EL1_P_SHIFT)))
> >> vcpu_set_flag(vcpu, DEBUG_STATE_SAVE_SPE);
> >>
> >> - /* Check if we have TRBE implemented and available at the host */
> >> - if (cpuid_feature_extract_unsigned_field(dfr0, ID_AA64DFR0_EL1_TraceBuffer_SHIFT) &&
> >> - !(read_sysreg_s(SYS_TRBIDR_EL1) & TRBIDR_EL1_P))
> >> - vcpu_set_flag(vcpu, DEBUG_STATE_SAVE_TRBE);
> >> + /*
> >> + * Set SAVE_TRFCR flag if FEAT_TRF (TraceFilt) exists. This flag
> >> + * signifies that the exclude_host/exclude_guest settings of any active
> >> + * host Perf session on a core running a VCPU can be written into
> >> + * TRFCR_EL1 on guest switch.
> >> + */
> >> + if (cpuid_feature_extract_unsigned_field(dfr0, ID_AA64DFR0_EL1_TraceFilt_SHIFT)) {
> >> + vcpu_set_flag(vcpu, DEBUG_STATE_SAVE_TRFCR);
> >
> > Can we avoid doing this unconditionally? It only makes sense to save
> > the trace crud if it is going to be changed, right?
> >
>
> Do you mean to see if kvm_guest_trfcr was non-zero (and would have to be
> changed) at VCPU load? I assumed that it could be modified between load
> and switch. That would mean there is no way to do it conditionally.

What's the problem? If you change the value behind the vcpu's back,
you get what you deserve: garbage.

I'm baffled that you consider that randomly changing a value without
proper synchronisation (such as with an IPI) is a valid approach.
Please look at what is being done for the PMU in the same context.

> I also assumed that's the reason SPE and TRBE were implemented like
> this, with the feat check at load and the enabled check at switch. It
> doesn't feel like TRFCR is any different to those two.

Well, that' doesn't make it right. Having just looked at the debug
stuff, I'm ashamed to have let that stuff in.

> Or do you mean to only set DEBUG_STATE_SAVE_TRFCR on switch if tracing
> was enabled?

I don't think there should be any flag. The discriminant should be:

- does the HW support TRF?
- is the in-guest tracing enabled?

If both are true, and that this requires a change of configuration,
*then* you perform the change. Same thing on exit. No flag. And a
static key for TRF support, which should really be valid on all CPUs.

M.

--
Without deviation from the norm, progress is not possible.