From: Sascha Bischoff <Sascha.Bischoff@arm.com>
To: "sashiko-reviews@lists.linux.dev" <sashiko-reviews@lists.linux.dev>
Cc: "maz@kernel.org" <maz@kernel.org>,
"kvm@vger.kernel.org" <kvm@vger.kernel.org>,
"kvmarm@lists.linux.dev" <kvmarm@lists.linux.dev>,
"oupton@kernel.org" <oupton@kernel.org>, nd <nd@arm.com>
Subject: Re: [PATCH v4 11/48] KVM: arm64: gic-v5: Implement VMT/vIST IRS MMIO Ops
Date: Fri, 7 Aug 2026 08:12:55 +0000 [thread overview]
Message-ID: <bdf078c234dae38b218c79945322ea81b10d69fa.camel@arm.com> (raw)
In-Reply-To: <20260724112036.7144B1F000E9@smtp.kernel.org>
On Fri, 2026-07-24 at 11:20 +0000, sashiko-bot@kernel.org wrote:
> Thank you for your contribution! Sashiko AI review found 6 potential
> issue(s) to consider:
> - [Critical] Timeout of IRS MMIO commands leads to hardware Use-
> After-Free for IST/VMTE memory.
> - [Critical] Cache line false sharing on non-coherent GICv5 VMT
> causes silent memory corruption.
> - [Critical] Unsafe use of kzalloc for hardware data structures
> requiring strict alignment.
> - [High] Missing wait for idle before writing to IRS VMT
> configuration registers.
> - [High] GICv5 probe fails systematically across kexec because it
> rejects an already valid VMT base register.
> - [Medium] The newly allocated VMT is leaked if
> vgic_v5_irs_assign_vmt() returns -EBUSY and vgic_v5_irs_clear_vmt()
> fails.
> --
>
> --- Patch [11]: [PATCH v4 11/48] KVM: arm64: gic-v5: Implement
> VMT/vIST IRS MMIO Ops ---
> commit ef6f1e2217f9b0055cd57ec9bca6826104eed2cf
> Author: Sascha Bischoff <Sascha.Bischoff@arm.com>
>
> KVM: arm64: gic-v5: Implement VMT/vIST IRS MMIO Ops
>
> This commit adds support for making level 1 VMTs valid, allowing
> dynamic
> level 2 array allocation. It also implements IRS MMIO operations for
> making VMs and ISTs valid or invalid.
>
> > --- a/arch/arm64/kvm/vgic/vgic-v5-tables.c
> > +++ b/arch/arm64/kvm/vgic/vgic-v5-tables.c
>
> [ ... ]
>
> > @@ -730,8 +738,13 @@ static int vgic_v5_vmte_assign_ist(struct kvm
> > *kvm, phys_addr_t ist_base,
> > /* Finally, mark the entry as valid */
> > cmd = spi_ist ? SPI_VIST_MAKE_VALID : LPI_VIST_MAKE_VALID;
> > ret = irq_set_vcpu_affinity(vgic_v5_vpe_db(vcpu0), &cmd);
> > + if (ret) {
> > + WRITE_ONCE(vmte->val[section], 0ULL);
> > + vgic_v5_clean_inval(vmte, sizeof(*vmte));
> > + return ret;
> > + }
> >
> > - return ret;
> > + return 0;
> > }
>
> [Severity: Critical]
> If the IRS MMIO command times out and returns an error here, KVM
> zeroes the
> VMTE and the caller frees the IST memory. Is it possible that the
> hardware
> IRS is still processing the delayed command?
This would only realistically happen on very broken hardware. We wait
for up to 1 second, which should be more than enough time for the
hardware to complete such a request.
>
> If the hardware eventually completes the command, it might use the
> physical
> address KVM just freed, potentially causing a Use-After-Free DMA by
> writing
> to the freed memory.
Again, this would be very broken hardware if it was going this wrong.
If the MMIO command times out, then we're already in the situation
where KVM's view might differ from the hardware's view. Things will
only get worse from here, I'm afraid.
>
> [Severity: Critical]
> Could there be a false-sharing issue leading to memory corruption on
> non-coherent GICv5 VMT systems?
>
> The vmtl2_entry structure is 32 bytes:
>
> arch/arm64/kvm/vgic/vgic-v5-tables.h:
> struct vmtl2_entry {
> __le64 val[4];
> };
>
> When modifying a VMTE, the cache line is flushed:
>
> arch/arm64/kvm/vgic/vgic-v5-tables.c:vgic_v5_clean_inval() {
> ...
> if (kvm_vgic_global_state.vgic_v5_irs_caps.non_coherent)
> dcache_clean_inval_poc(base, base + size);
> }
>
> Since ARM64 cache lines are at least 64 bytes, multiple VMTEs share a
> single
> cache line. If the CPU writes back this dirty cache line, won't it
> overwrite
> any concurrent updates the IRS made directly to adjacent VMTEs in
> main memory?
I believe that the way that this was written it could have happened.
I've extended the locking around these to ensure that there is never a
case where more than one VMTE is being operated on at any one time.
This should avoid any false sharing issues.
>
> [Severity: Critical]
> Are the alignment requirements for hardware data structures
> guaranteed when
> using kzalloc()?
>
> In vgic_v5_vmte_init(), vmd is allocated with kzalloc() and its
> physical
> address is bit-shifted:
>
> arch/arm64/kvm/vgic/vgic-v5-tables.c:vgic_v5_vmte_init() {
> ...
> vmd = kzalloc(vmt_info->vmd_size, GFP_KERNEL);
> ...
> tmp = FIELD_PREP(GICV5_VMTEL2E_VMD_ADDR,
> virt_to_phys(vmd) >>
> GICV5_VMTEL2E_VMD_ADDR_SHIFT);
> ...
> }
>
> Since kzalloc() only guarantees natural alignment, shifting the
> address right
> by GICV5_VMTEL2E_VMD_ADDR_SHIFT could truncate the lower bits if the
> allocation isn't perfectly aligned to 1 << SHIFT. Could this lead to
> the
> hardware accessing the wrong memory location?
kzalloc() will provide naturally aligned memory, with alignment being
at least ARCH_KMALLOC_MINALIGN, which is 8 for arm64. We already ensure
that the allocation is large enough that those lower bits are not set,
so that shift should never lose bits. FWIW, the shift is there because
we are using FIELD_PREP() which both masks and shifts, whereas for the
address we only really want to zero the lower bits. We're effectively
undoing the shift that FIELD_PREP() is implicitly applying.
>
> > --- a/arch/arm64/kvm/vgic/vgic-v5.c
> > +++ b/arch/arm64/kvm/vgic/vgic-v5.c
>
> [ ... ]
>
> > @@ -105,13 +131,55 @@ int vgic_v5_probe(const struct gic_kvm_info
> > *info)
>
> [ ... ]
>
> > + ret =
> > vgic_v5_irs_assign_vmt(irs_caps.two_level_vmt_support,
> > + ilog2(irs_caps.max_vms),
> > + vgic_v5_get_vmt_base());
> > + if (ret) {
> > + kvm_err("Failed to assign the GICv5 VM tables to
> > the IRS; no GICv5 support\n");
> > + if (!vgic_v5_irs_clear_vmt())
> > + vgic_v5_vmt_free();
> > + return -ENODEV;
> > + }
>
> [Severity: Medium]
> If vgic_v5_irs_assign_vmt() returns -EBUSY and
> vgic_v5_irs_clear_vmt() fails,
> this skips calling vgic_v5_vmt_free().
>
> Since vgic_v5_irs_assign_vmt() returns -EBUSY when the hardware
> VMT_BASER is
> already valid (holding a pointer to the old VMT), doesn't skipping
> the free
> here leak the newly allocated VMT?
It would only do that if we also failed to clear the IRS_VMT_BASER. The
only way we realistically hit this case is if we've kexec'd or similar
and have inherited an IRS with a pre-set IRS_VMT_BASER. We'd fail to
write the new VMT to it, would then clear it, and then free the newly
allocated VMT. The clear would only fail if we timed out here, which
would imply dodgy hardware.
>
> [ ... ]
>
> > @@ -153,18 +222,136 @@ int vgic_v5_probe(const struct gic_kvm_info
> > *info)
>
> [ ... ]
>
> > +static int vgic_v5_irs_assign_vmt(bool two_level, u8 vm_id_bits,
> > + phys_addr_t vmt_base)
> > +{
> > + u64 vmt_baser;
> > + u32 vmt_cfgr;
> > +
> > + guard(raw_spinlock_irqsave)(&global_irs_lock);
> > +
> > + vmt_baser = irs_readq_relaxed(GICV5_IRS_VMT_BASER);
> > + if (!!FIELD_GET(GICV5_IRS_VMT_BASER_VALID, vmt_baser))
> > + return -EBUSY;
>
> [Severity: High]
> During a kexec, KVM does not clear this register on shutdown, so the
> GICV5_IRS_VMT_BASER_VALID bit may already be set by the previous
> kernel.
>
> Will vgic_v5_probe() systematically fail and permanently disable
> GICv5 on
> kexec because it aborts instead of clearing the old VMT?
As the code is currently written, yes. That's something that should be
addressed in the future, but right now kexec will result in coming back
without support for VMs.
>
> > + vmt_cfgr = FIELD_PREP(GICV5_IRS_VMT_CFGR_VM_ID_BITS,
> > vm_id_bits);
> > + if (two_level)
> > + vmt_cfgr |=
> > FIELD_PREP(GICV5_IRS_VMT_CFGR_STRUCTURE,
> > +
> > GICV5_IRS_VMT_CFGR_STRUCTURE_TWO_LEVEL);
> > +
> > + irs_writel_relaxed(vmt_cfgr, GICV5_IRS_VMT_CFGR);
>
> [Severity: High]
> Should this function call vgic_v5_irs_wait_for_vm_op() to poll for
> the IRS
> to be idle before writing directly to GICV5_IRS_VMT_CFGR?
>
> Other IRS writer functions enforce an idle check before writing. If
> the IRS
> is busy processing an operation, could this direct write corrupt the
> hardware
> state?
>
I'd previously dismissed this one, but I think it does make sense to
add in that additional vgic_v5_irs_wait_for_vm_op() here. While it is
very unlikely for the IDLE bit to be non-zero, the GICv5 spec is
explicit that the IRS_VMT_CFGR and IRS_VMT_BASER are read only while
IDLE is 0.
Thanks,
Sascha
next prev parent reply other threads:[~2026-08-07 8:13 UTC|newest]
Thread overview: 131+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-24 10:48 [PATCH v4 00/48] KVM: arm64: Add GICv5 IRS support Sascha Bischoff
2026-07-24 10:48 ` [PATCH v4 01/48] irqchip/gic-v5: Allow KVM setup without a maintenance IRQ Sascha Bischoff
2026-07-24 11:21 ` sashiko-bot
2026-07-31 9:20 ` Sascha Bischoff
2026-07-24 10:48 ` [PATCH v4 02/48] irqchip/gic-v5: Provide OF IRS config frame attrs to KVM Sascha Bischoff
2026-07-24 11:10 ` sashiko-bot
2026-07-31 9:29 ` Sascha Bischoff
2026-07-25 9:06 ` Marc Zyngier
2026-07-25 9:18 ` Marc Zyngier
2026-07-24 10:49 ` [PATCH v4 03/48] irqchip/gic-v5: Set up gic_kvm_info on ACPI hosts Sascha Bischoff
2026-07-24 11:19 ` sashiko-bot
2026-07-25 10:08 ` Marc Zyngier
2026-07-28 12:14 ` Fuad Tabba
2026-07-31 7:18 ` Sascha Bischoff
2026-07-25 9:35 ` Marc Zyngier
2026-07-31 7:21 ` Sascha Bischoff
2026-07-24 10:49 ` [PATCH v4 04/48] KVM: arm64: gic-v5: Define remaining IRS MMIO registers Sascha Bischoff
2026-07-24 10:49 ` [PATCH v4 05/48] arm64/sysreg: Add GICv5 GIC VDPEND encoding Sascha Bischoff
2026-07-24 10:49 ` [PATCH v4 06/48] arm64/sysreg: Update ICC_CR0_EL1 with LINK and LINK_IDLE fields Sascha Bischoff
2026-07-24 11:14 ` sashiko-bot
2026-07-25 10:10 ` Marc Zyngier
2026-07-31 9:32 ` Sascha Bischoff
2026-07-24 10:50 ` [PATCH v4 07/48] KVM: arm64: gic-v5: Extract host IRS caps from IRS config frame Sascha Bischoff
2026-07-24 11:19 ` sashiko-bot
2026-07-31 9:35 ` Sascha Bischoff
2026-07-25 10:40 ` Marc Zyngier
2026-07-31 7:24 ` Sascha Bischoff
2026-07-24 10:50 ` [PATCH v4 08/48] KVM: arm64: gic-v5: Add VPE doorbell domain Sascha Bischoff
2026-07-24 11:11 ` sashiko-bot
2026-07-31 9:33 ` Sascha Bischoff
2026-07-25 10:56 ` Marc Zyngier
2026-07-31 8:35 ` Sascha Bischoff
2026-07-24 10:50 ` [PATCH v4 09/48] KVM: arm64: gic-v5: Create and manage VM and VPE tables Sascha Bischoff
2026-07-24 11:19 ` sashiko-bot
2026-08-07 8:06 ` Sascha Bischoff
2026-07-24 10:50 ` [PATCH v4 10/48] KVM: arm64: gic-v5: Introduce guest IST alloc and management Sascha Bischoff
2026-07-24 11:22 ` sashiko-bot
2026-07-27 16:39 ` Fuad Tabba
2026-08-07 8:27 ` Sascha Bischoff
2026-07-27 17:55 ` Fuad Tabba
2026-07-31 9:11 ` Sascha Bischoff
2026-07-24 10:51 ` [PATCH v4 11/48] KVM: arm64: gic-v5: Implement VMT/vIST IRS MMIO Ops Sascha Bischoff
2026-07-24 11:20 ` sashiko-bot
2026-08-07 8:12 ` Sascha Bischoff [this message]
2026-07-24 10:51 ` [PATCH v4 12/48] KVM: arm64: gic-v5: Keep GICv5 vCPU limit model-specific Sascha Bischoff
2026-07-24 10:51 ` [PATCH v4 13/48] KVM: arm64: gic-v5: Implement VPE IRS MMIO Ops Sascha Bischoff
2026-07-24 11:21 ` sashiko-bot
2026-07-31 13:15 ` Sascha Bischoff
2026-07-24 10:52 ` [PATCH v4 14/48] KVM: arm64: gic-v5: Set up VMTEs and VPE doorbells Sascha Bischoff
2026-07-24 11:27 ` sashiko-bot
2026-07-31 10:17 ` Sascha Bischoff
2026-07-24 10:52 ` [PATCH v4 15/48] KVM: arm64: gic-v5: Add resident/non-resident hyp calls Sascha Bischoff
2026-07-24 11:26 ` sashiko-bot
2026-07-31 13:16 ` Sascha Bischoff
2026-07-24 10:52 ` [PATCH v4 16/48] KVM: arm64: gic-v5: Request doorbells when VPEs enter WFI Sascha Bischoff
2026-07-24 11:41 ` sashiko-bot
2026-07-31 10:20 ` Sascha Bischoff
2026-07-24 10:52 ` [PATCH v4 17/48] KVM: arm64: gic-v5: Introduce struct vgic_v5_irs and IRS base address Sascha Bischoff
2026-07-24 10:53 ` [PATCH v4 18/48] KVM: arm64: gic-v5: Add IRS IODEV support to MMIO handlers Sascha Bischoff
2026-07-24 10:53 ` [PATCH v4 19/48] KVM: arm64: gic-v5: Add KVM_VGIC_V5_ADDR_TYPE_IRS to UAPI Sascha Bischoff
2026-07-24 11:30 ` sashiko-bot
2026-07-31 10:22 ` Sascha Bischoff
2026-07-24 10:53 ` [PATCH v4 20/48] KVM: arm64: gic-v5: Add GICv5 IRS IODEV and MMIO emulation Sascha Bischoff
2026-07-24 11:45 ` sashiko-bot
2026-08-03 10:21 ` Sascha Bischoff
2026-07-27 18:34 ` Fuad Tabba
2026-07-30 16:06 ` Sascha Bischoff
2026-07-24 10:53 ` [PATCH v4 21/48] KVM: arm64: gic-v5: Initialise per-VM IRS state Sascha Bischoff
2026-07-24 10:54 ` [PATCH v4 22/48] KVM: arm64: gic-v5: Register the IRS IODEV Sascha Bischoff
2026-07-24 11:33 ` sashiko-bot
2026-07-31 13:05 ` Sascha Bischoff
2026-07-24 10:54 ` [PATCH v4 23/48] KVM: arm64: gic-v5: Set IRICHPPIDIS based on IRS enable state Sascha Bischoff
2026-07-24 11:41 ` sashiko-bot
2026-07-31 13:32 ` Sascha Bischoff
2026-07-24 10:54 ` [PATCH v4 24/48] KVM: arm64: selftests: Update vGICv5 selftest to set IRS address Sascha Bischoff
2026-07-24 10:54 ` [PATCH v4 25/48] KVM: arm64: gic-v5: Add GIC VDPEND hyp call Sascha Bischoff
2026-07-24 11:34 ` sashiko-bot
2026-07-31 13:18 ` Sascha Bischoff
2026-07-24 10:55 ` [PATCH v4 26/48] KVM: arm64: gic: Introduce set_pending_state() to irq_op Sascha Bischoff
2026-07-24 11:39 ` sashiko-bot
2026-07-31 13:37 ` Sascha Bischoff
2026-07-24 10:55 ` [PATCH v4 27/48] KVM: arm64: gic-v5: Support SPI injection Sascha Bischoff
2026-07-24 11:48 ` sashiko-bot
2026-07-31 13:49 ` Sascha Bischoff
2026-07-24 10:55 ` [PATCH v4 28/48] Documentation: KVM: Extend VGICv5 device attribute docs Sascha Bischoff
2026-07-24 10:55 ` [PATCH v4 29/48] KVM: arm64: gic-v5: Add GICv5 SPI injection to irqfd Sascha Bischoff
2026-07-24 12:19 ` sashiko-bot
2026-07-31 14:13 ` Sascha Bischoff
2026-07-24 10:56 ` [PATCH v4 30/48] KVM: arm64: gic-v5: Mask per-vcpu PPI state in vgic_v5_finalize_ppi_state() Sascha Bischoff
2026-07-24 11:52 ` sashiko-bot
2026-07-31 14:21 ` Sascha Bischoff
2026-07-24 10:56 ` [PATCH v4 31/48] KVM: arm64: gic-v5: Add GICv5 EL1 sysreg userspace accessors Sascha Bischoff
2026-07-24 12:09 ` sashiko-bot
2026-07-31 14:27 ` Sascha Bischoff
2026-07-24 10:56 ` [PATCH v4 32/48] KVM: arm64: gic-v5: Handle userspace accesses to IRS MMIO region Sascha Bischoff
2026-07-24 12:05 ` sashiko-bot
2026-07-31 14:42 ` Sascha Bischoff
2026-07-24 10:56 ` [PATCH v4 33/48] KVM: arm64: gic-v5: Add CoreSight MMIO regs to IRS Sascha Bischoff
2026-07-24 10:57 ` [PATCH v4 34/48] KVM: arm64: gic-v5: Add VGICv5 IST save/restore UAPI Sascha Bischoff
2026-07-24 11:46 ` sashiko-bot
2026-07-31 14:35 ` Sascha Bischoff
2026-07-24 10:57 ` [PATCH v4 35/48] KVM: arm64: gic-v5: Implement save/restore mechanisms for ISTs Sascha Bischoff
2026-07-24 12:02 ` sashiko-bot
2026-07-31 16:43 ` Sascha Bischoff
2026-07-27 18:56 ` Fuad Tabba
2026-07-31 8:55 ` Sascha Bischoff
2026-07-24 10:57 ` [PATCH v4 36/48] Documentation: KVM: Document KVM_DEV_ARM_VGIC_GRP_CPU_SYSREGS for VGICv5 Sascha Bischoff
2026-07-24 10:57 ` [PATCH v4 37/48] Documentation: KVM: Add KVM_DEV_ARM_VGIC_GRP_IRS_REGS to VGICv5 docs Sascha Bischoff
2026-07-24 12:19 ` sashiko-bot
2026-07-31 14:46 ` Sascha Bischoff
2026-07-24 10:58 ` [PATCH v4 38/48] Documentation: KVM: Add docs for KVM_DEV_ARM_VGIC_GRP_IST Sascha Bischoff
2026-07-27 19:26 ` Fuad Tabba
2026-07-31 9:19 ` Sascha Bischoff
2026-07-24 10:58 ` [PATCH v4 39/48] Documentation: KVM: Add the VGICv5 IRS save/restore sequences Sascha Bischoff
2026-07-24 10:58 ` [PATCH v4 40/48] KVM: selftests: Add VGICv5 IRS address attribute tests Sascha Bischoff
2026-07-24 10:58 ` [PATCH v4 41/48] KVM: selftests: Add VGICv5 NR_IRQS " Sascha Bischoff
2026-07-24 12:02 ` sashiko-bot
2026-07-31 16:24 ` Sascha Bischoff
2026-07-24 10:59 ` [PATCH v4 42/48] KVM: selftests: Add VGICv5 IRS_REGS " Sascha Bischoff
2026-07-24 12:06 ` sashiko-bot
2026-07-31 15:52 ` Sascha Bischoff
2026-07-24 10:59 ` [PATCH v4 43/48] KVM: selftests: Add VGICv5 IST " Sascha Bischoff
2026-07-24 10:59 ` [PATCH v4 44/48] KVM: selftests: Add VGICv5 USERSPACE_PPIS tests Sascha Bischoff
2026-07-24 11:00 ` [PATCH v4 45/48] KVM: selftests: Add VGICv5 CPU sysreg attribute tests Sascha Bischoff
2026-07-24 11:00 ` [PATCH v4 46/48] KVM: selftests: Add VGICv5 SPI injection tests Sascha Bischoff
2026-07-24 12:15 ` sashiko-bot
2026-07-31 14:54 ` Sascha Bischoff
2026-07-24 11:00 ` [PATCH v4 47/48] KVM: selftests: Add VGICv5 LPI delivery tests Sascha Bischoff
2026-07-24 12:18 ` sashiko-bot
2026-07-31 14:49 ` Sascha Bischoff
2026-07-24 11:00 ` [PATCH v4 48/48] KVM: selftests: Add VGICv5 IST save/restore coverage Sascha Bischoff
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=bdf078c234dae38b218c79945322ea81b10d69fa.camel@arm.com \
--to=sascha.bischoff@arm.com \
--cc=kvm@vger.kernel.org \
--cc=kvmarm@lists.linux.dev \
--cc=maz@kernel.org \
--cc=nd@arm.com \
--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.