All of lore.kernel.org
 help / color / mirror / Atom feed
From: sashiko-bot@kernel.org
To: "Fuad Tabba" <fuad.tabba@linux.dev>
Cc: kvmarm@lists.linux.dev, "Oliver Upton" <oupton@kernel.org>,
	"Marc Zyngier" <maz@kernel.org>
Subject: Re: [PATCH v3 6/8] KVM: arm64: Minimise EL2's exposure of host VGIC state during world switch
Date: Fri, 26 Jun 2026 07:24:44 +0000	[thread overview]
Message-ID: <20260626072444.F1EA31F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260626070408.3420953-7-fuad.tabba@linux.dev>

Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:

Pre-existing issues:
- [Critical] The patch correctly fixes TOCTOU and arbitrary read/write vulnerabilities for GICv3 by preventing EL2 from directly dereferencing host-provided pointers in `handle___vgic_v3_save_aprs` and `handle___vgic_v3_restore_vmcr_aprs`. However, it leaves the exact same vulnerability unpatched in the GICv5 equivalents: `handle___vgic_v5_save_apr` and `handle___vgic_v5_restore_vmcr_apr`. These functions take a host-supplied pointer (`cpu_if`), which they pass directly to the inner save/restore functions via `kern_hyp_va`. Because `kern_hyp_va` is idempotent for hypervisor linear-map pointers, the untrusted host (which is an adversary in the pKVM threat model) can pass an arbitrary EL2 memory address. This allows the host to execute arbitrary memory reads and writes in the hypervisor (e.g., writing the value of `SYS_ICH_APR_EL2` to arbitrary EL2 memory or reading arbitrary memory into sysregs), completely bypassing pKVM isolation.
--

commit 815e460f9f860b3c06ec7eb259e1f2d75d196c33
Author: Marc Zyngier <maz@kernel.org>

KVM: arm64: Minimise EL2's exposure of host VGIC state during world switch

The host passes a vgic_v3_cpu_if pointer to the __vgic_v3_save_aprs and
__vgic_v3_restore_vmcr_aprs hypercalls, which EL2 dereferences
wholesale. That exposes the host's full VGIC emulation state to the
hypervisor, against pKVM's isolation goals.

> diff --git a/arch/arm64/kvm/hyp/nvhe/hyp-main.c b/arch/arm64/kvm/hyp/nvhe/hyp-main.c
> index 45d717889f6ea..f3233ee343a39 100644
> --- a/arch/arm64/kvm/hyp/nvhe/hyp-main.c
> +++ b/arch/arm64/kvm/hyp/nvhe/hyp-main.c

[ ... ]

> @@ -508,16 +520,63 @@ static void handle___vgic_v3_init_lrs(struct kvm_cpu_context *host_ctxt)
>  
>  static void handle___vgic_v3_save_aprs(struct kvm_cpu_context *host_ctxt)
>  {
> -	DECLARE_REG(struct vgic_v3_cpu_if *, cpu_if, host_ctxt, 1);
> +	struct pkvm_hyp_vcpu *hyp_vcpu;
> +	struct kvm_vcpu *host_vcpu;
>  
> -	__vgic_v3_save_aprs(kern_hyp_va(cpu_if));
> +	host_vcpu = get_host_hyp_vcpus_from_vgic_v3_cpu_if(host_ctxt, 1,
> +							   &hyp_vcpu);
> +	if (!host_vcpu)
> +		return;
> +
> +	if (unlikely(hyp_vcpu)) {
> +		struct vgic_v3_cpu_if *hyp_cpu_if, *host_cpu_if;
> +		int i;
> +
> +		hyp_cpu_if = &hyp_vcpu->vcpu.arch.vgic_cpu.vgic_v3;
> +		__vgic_v3_save_aprs(hyp_cpu_if);
> +
> +		host_cpu_if = &host_vcpu->arch.vgic_cpu.vgic_v3;
> +		host_cpu_if->vgic_vmcr = hyp_cpu_if->vgic_vmcr;
> +		for (i = 0; i < ARRAY_SIZE(host_cpu_if->vgic_ap0r); i++) {
> +			host_cpu_if->vgic_ap0r[i] = hyp_cpu_if->vgic_ap0r[i];
> +			host_cpu_if->vgic_ap1r[i] = hyp_cpu_if->vgic_ap1r[i];
> +		}
> +	} else {
> +		__vgic_v3_save_aprs(&host_vcpu->arch.vgic_cpu.vgic_v3);
> +	}
>  }
>  
>  static void handle___vgic_v3_restore_vmcr_aprs(struct kvm_cpu_context *host_ctxt)
>  {
> -	DECLARE_REG(struct vgic_v3_cpu_if *, cpu_if, host_ctxt, 1);
> +	struct pkvm_hyp_vcpu *hyp_vcpu;
> +	struct kvm_vcpu *host_vcpu;
> +
> +	host_vcpu = get_host_hyp_vcpus_from_vgic_v3_cpu_if(host_ctxt, 1,
> +							   &hyp_vcpu);
> +	if (!host_vcpu)
> +		return;
>  
> -	__vgic_v3_restore_vmcr_aprs(kern_hyp_va(cpu_if));
> +	if (unlikely(hyp_vcpu)) {
> +		struct vgic_v3_cpu_if *hyp_cpu_if, *host_cpu_if;
> +		int i;
> +
> +		hyp_cpu_if = &hyp_vcpu->vcpu.arch.vgic_cpu.vgic_v3;
> +		host_cpu_if = &host_vcpu->arch.vgic_cpu.vgic_v3;
> +
> +		hyp_cpu_if->vgic_vmcr = host_cpu_if->vgic_vmcr;
> +		/* Should be a one-off */
> +		hyp_cpu_if->vgic_sre = (ICC_SRE_EL1_DIB |
> +					ICC_SRE_EL1_DFB |
> +					ICC_SRE_EL1_SRE);
> +		for (i = 0; i < ARRAY_SIZE(host_cpu_if->vgic_ap0r); i++) {
> +			hyp_cpu_if->vgic_ap0r[i] = host_cpu_if->vgic_ap0r[i];
> +			hyp_cpu_if->vgic_ap1r[i] = host_cpu_if->vgic_ap1r[i];
> +		}
> +
> +		__vgic_v3_restore_vmcr_aprs(hyp_cpu_if);
> +	} else {
> +		__vgic_v3_restore_vmcr_aprs(&host_vcpu->arch.vgic_cpu.vgic_v3);
> +	}
>  }

[Severity: Critical]
This is a pre-existing issue, but while this patch correctly fixes the TOCTOU
and arbitrary read/write vulnerabilities for GICv3, it seems the same pattern
remains unpatched in the GICv5 equivalents:

arch/arm64/kvm/hyp/nvhe/hyp-main.c:handle___vgic_v5_save_apr() {
	DECLARE_REG(struct vgic_v5_cpu_if *, cpu_if, host_ctxt, 1);
	__vgic_v5_save_apr(kern_hyp_va(cpu_if));
}

arch/arm64/kvm/hyp/nvhe/hyp-main.c:handle___vgic_v5_restore_vmcr_apr() {
	DECLARE_REG(struct vgic_v5_cpu_if *, cpu_if, host_ctxt, 1);
	__vgic_v5_restore_vmcr_apr(kern_hyp_va(cpu_if));
}

Since kern_hyp_va() is idempotent for hypervisor linear-map pointers, could
the untrusted host (which is an adversary in the pKVM threat model) pass an
arbitrary EL2 memory address here?

Would this allow the host to execute arbitrary memory reads and writes in the
hypervisor (for example, writing the value of SYS_ICH_APR_EL2 to arbitrary
EL2 memory or reading arbitrary memory into sysregs), which might bypass pKVM
isolation?

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260626070408.3420953-1-fuad.tabba@linux.dev?part=6

  reply	other threads:[~2026-06-26  7:24 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-26  7:04 [PATCH v3 0/8] KVM: arm64: Rework pKVM vCPU state synchronisation Fuad Tabba
2026-06-26  7:04 ` [PATCH v3 1/8] KVM: arm64: Extract MPIDR computation into a shared header Fuad Tabba
2026-06-26  7:04 ` [PATCH v3 2/8] KVM: arm64: Make vcpu_{read,write}_sys_reg available to HYP code Fuad Tabba
2026-06-26  7:04 ` [PATCH v3 3/8] KVM: arm64: Factor out reusable vCPU reset helpers Fuad Tabba
2026-06-26  7:04 ` [PATCH v3 4/8] KVM: arm64: Move PSCI helper functions to a shared header Fuad Tabba
2026-06-26  7:16   ` sashiko-bot
2026-06-26  7:20     ` Fuad Tabba
2026-06-26  7:04 ` [PATCH v3 5/8] KVM: arm64: Add host and hypervisor vCPU lookup primitives Fuad Tabba
2026-06-26  7:04 ` [PATCH v3 6/8] KVM: arm64: Minimise EL2's exposure of host VGIC state during world switch Fuad Tabba
2026-06-26  7:24   ` sashiko-bot [this message]
2026-06-26  7:30     ` Fuad Tabba
2026-06-26  7:04 ` [PATCH v3 7/8] KVM: arm64: Add primitives to flush/sync the VGIC state at EL2 Fuad Tabba
2026-06-26  7:27   ` sashiko-bot
2026-06-26  7:33     ` Fuad Tabba
2026-06-26  7:04 ` [PATCH v3 8/8] KVM: arm64: Implement lazy vCPU state sync for non-protected guests Fuad Tabba
2026-06-26  7:26   ` Vincent Donnefort
2026-06-26  7:29   ` sashiko-bot
2026-06-26  7:36     ` 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=20260626072444.F1EA31F000E9@smtp.kernel.org \
    --to=sashiko-bot@kernel.org \
    --cc=fuad.tabba@linux.dev \
    --cc=kvmarm@lists.linux.dev \
    --cc=maz@kernel.org \
    --cc=oupton@kernel.org \
    --cc=sashiko-reviews@lists.linux.dev \
    /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.