Linux KVM/arm64 development list
 help / color / mirror / Atom feed
From: Oliver Upton <oliver.upton@linux.dev>
To: Fuad Tabba <tabba@google.com>
Cc: kvmarm@lists.linux.dev, maz@kernel.org, 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 v3] KVM: arm64: Advertise ID_AA64PFR0_EL1.CSV2/3 to protected VMs
Date: Fri, 31 Mar 2023 16:10:55 +0000	[thread overview]
Message-ID: <ZCcGD+El90tBpexd@linux.dev> (raw)
In-Reply-To: <20230331131218.2063233-1-tabba@google.com>

Hi Fuad,

Thanks for catching the masking issue in v2. Few comments:

On Fri, Mar 31, 2023 at 02:12:18PM +0100, Fuad Tabba wrote:
> The existing pKVM code attempts to do that using a value

nit: it is more readable if you restate what 'that' is in the changelog,
even if it is already in the shortlog.

> initialized to 0, but never set. To advertise csv2/3 to protected
> guests, pass the csv 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>
> 
> Changes from V2: Fix masking not to affect bits other than CSV2/3.

Commentary like this that you don't want to appear in the commit when
applied should appear below the '---'

> ---

I.e. right here.

>  arch/arm64/kvm/arm.c                          | 24 ++++++++++++++++++-
>  .../arm64/kvm/hyp/include/nvhe/fixed_config.h |  5 +++-
>  arch/arm64/kvm/hyp/nvhe/sys_regs.c            |  7 ------
>  3 files changed, 27 insertions(+), 9 deletions(-)
> 
> diff --git a/arch/arm64/kvm/arm.c b/arch/arm64/kvm/arm.c
> index 3bd732eaf087..0ae927c99fa1 100644
> --- a/arch/arm64/kvm/arm.c
> +++ b/arch/arm64/kvm/arm.c
> @@ -1889,9 +1889,31 @@ static int __init do_pkvm_init(u32 hyp_va_bits)
>  	return ret;
>  }
>  
> +static u64 get_hyp_id_aa64pfr0_el1(void)
> +{
> +	u64 mask = ~0ULL;
> +
> +	/*
> +	 * 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.
> +	 */
> +	if (arm64_get_spectre_v2_state() != SPECTRE_UNAFFECTED)
> +		mask &= ~ARM64_FEATURE_MASK(ID_AA64PFR0_EL1_CSV2);
> +
> +	if (arm64_get_meltdown_state() != SPECTRE_UNAFFECTED)
> +		mask &= ~ARM64_FEATURE_MASK(ID_AA64PFR0_EL1_CSV3);

Doesn't this introduce a subtle change to the way that the CSV[23] values
are constrained in KVM? At least for 'normal' VMs we constrain both fields
to having a max value of 1.

-- 
Thanks,
Oliver

  reply	other threads:[~2023-03-31 16:11 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-31 13:12 [PATCH v3] KVM: arm64: Advertise ID_AA64PFR0_EL1.CSV2/3 to protected VMs Fuad Tabba
2023-03-31 16:10 ` Oliver Upton [this message]
2023-04-02 13:47   ` 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=ZCcGD+El90tBpexd@linux.dev \
    --to=oliver.upton@linux.dev \
    --cc=alexandru.elisei@arm.com \
    --cc=james.morse@arm.com \
    --cc=jingzhangos@google.com \
    --cc=kvmarm@lists.linux.dev \
    --cc=maz@kernel.org \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox