From: Marc Zyngier <maz@kernel.org>
To: Fuad Tabba <tabba@google.com>
Cc: kvmarm@lists.linux.dev, oliver.upton@linux.dev,
oupton@google.com, will@kernel.org, pbonzini@redhat.com,
james.morse@arm.com, alexandru.elisei@arm.com,
suzuki.poulose@arm.com, reijiw@google.com, ricarkol@google.com,
rananta@google.com, jingzhangos@google.com
Subject: Re: [PATCH v4] KVM: arm64: Advertise ID_AA64PFR0_EL1.CSV2/3 to protected VMs
Date: Mon, 03 Apr 2023 14:50:32 +0100 [thread overview]
Message-ID: <86wn2tulav.wl-maz@kernel.org> (raw)
In-Reply-To: <20230403132953.2069621-1-tabba@google.com>
On Mon, 03 Apr 2023 14:29:53 +0100,
Fuad Tabba <tabba@google.com> wrote:
>
> The existing pKVM code attempts to advertise CSV2/3 using values
> initialized to 0, but never set. To advertise CSV2/3 to protected
> guests, pass the CSV2/3 values to hyp when initializing hyp's
> view of guests' ID_AA64PFR0_EL1.
>
> Similar to non-protected KVM, these are system-wide, rather than
> per cpu, for simplicity.
>
> Fixes: 6c30bfb18d0b ("KVM: arm64: Add handlers for protected VM System Registers")
> Signed-off-by: Fuad Tabba <tabba@google.com>
>
> ---
>
> Based on: 197b6b60ae7b (6.3-rc4)
> Changes from V3: Fix masking to constrain CSV2/3 to 1 (Oliver).
>
> arch/arm64/kvm/arm.c | 25 ++++++++++++++++++-
> .../arm64/kvm/hyp/include/nvhe/fixed_config.h | 5 +++-
> arch/arm64/kvm/hyp/nvhe/sys_regs.c | 7 ------
> 3 files changed, 28 insertions(+), 9 deletions(-)
>
> diff --git a/arch/arm64/kvm/arm.c b/arch/arm64/kvm/arm.c
> index 3bd732eaf087..04401c2851f8 100644
> --- a/arch/arm64/kvm/arm.c
> +++ b/arch/arm64/kvm/arm.c
> @@ -1889,9 +1889,32 @@ static int __init do_pkvm_init(u32 hyp_va_bits)
> return ret;
> }
>
> +static u64 get_hyp_id_aa64pfr0_el1(void)
> +{
> + u64 mask = ~(ARM64_FEATURE_MASK(ID_AA64PFR0_EL1_CSV2) |
> + ARM64_FEATURE_MASK(ID_AA64PFR0_EL1_CSV3));
> +
> + /*
> + * Track whether the system isn't affected by spectre/meltown in the
> + * hypervisor's view of id_aa64pfr0_el1, used for protected VMs.
> + * Although this is per-CPU, we make it global for simplicity, e.g., not
> + * to have to worry about vcpu migration.
> + *
> + * Unlike for non-protected VMs, userspace cannot override this for
> + * protected VMs.
> + */
> + mask |= FIELD_PREP(ARM64_FEATURE_MASK(ID_AA64PFR0_EL1_CSV2),
> + arm64_get_spectre_v2_state() == SPECTRE_UNAFFECTED);
> +
> + mask |= FIELD_PREP(ARM64_FEATURE_MASK(ID_AA64PFR0_EL1_CSV3),
> + arm64_get_meltdown_state() == SPECTRE_UNAFFECTED);
> +
> + return read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1) & mask;
I'm confused. PFR0.CSV2 is only set if the HW advertises it. But KVM
should advertises it to guests if arm64_get_spectre_v2_state() reports
"UNAFFECTED".
In that later case, "read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1) &
mask" will always leave CSV2 to 0. Same thing for CSV3.
I'd expect something like:
u64 val = read_sanitised_ftr_reg(SYS_ID_AA64PFR0_EL1);
val &= ~(ARM64_FEATURE_MASK(ID_AA64PFR0_EL1_CSV2) |
ARM64_FEATURE_MASK(ID_AA64PFR0_EL1_CSV3));
val |= FIELD_PREP(ARM64_FEATURE_MASK(ID_AA64PFR0_EL1_CSV2),
arm64_get_spectre_v2_state() == SPECTRE_UNAFFECTED);
val |= FIELD_PREP(ARM64_FEATURE_MASK(ID_AA64PFR0_EL1_CSV3),
arm64_get_meltdown_state() == SPECTRE_UNAFFECTED);
return val;
Or did I read that completely wrong?
M.
--
Without deviation from the norm, progress is not possible.
next prev parent reply other threads:[~2023-04-03 13:50 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-03 13:29 [PATCH v4] KVM: arm64: Advertise ID_AA64PFR0_EL1.CSV2/3 to protected VMs Fuad Tabba
2023-04-03 13:50 ` Marc Zyngier [this message]
2023-04-03 16:41 ` Fuad Tabba
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=86wn2tulav.wl-maz@kernel.org \
--to=maz@kernel.org \
--cc=alexandru.elisei@arm.com \
--cc=james.morse@arm.com \
--cc=jingzhangos@google.com \
--cc=kvmarm@lists.linux.dev \
--cc=oliver.upton@linux.dev \
--cc=oupton@google.com \
--cc=pbonzini@redhat.com \
--cc=rananta@google.com \
--cc=reijiw@google.com \
--cc=ricarkol@google.com \
--cc=suzuki.poulose@arm.com \
--cc=tabba@google.com \
--cc=will@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.