From: sashiko-bot@kernel.org
To: "Sebastian Ene" <sebastianene@google.com>
Cc: "Marc Zyngier" <maz@kernel.org>,
kvmarm@lists.linux.dev, "Oliver Upton" <oupton@kernel.org>
Subject: Re: [PATCH v7 4/7] KVM: arm64: Fix bounds checking in do_ffa_mem_reclaim()
Date: Wed, 17 Jun 2026 15:18:20 +0000 [thread overview]
Message-ID: <20260617151821.328AE1F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260617145130.3729015-5-sebastianene@google.com>
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Low] Unbalanced double-release of the FF-A RX buffer on the newly added error path.
--
commit 4c27507e65d7c9e01d4ac8269e48ef52850308ea
Author: Mostafa Saleh <smostafa@google.com>
KVM: arm64: Fix bounds checking in do_ffa_mem_reclaim()
This commit addresses a potential out-of-bounds access by splitting the FF-A
descriptor length validation into two steps. It ensures that both the fixed
portion and the variable array size (addr_range_cnt) fit within the
descriptor length.
> diff --git a/arch/arm64/kvm/hyp/nvhe/ffa.c b/arch/arm64/kvm/hyp/nvhe/ffa.c
> index 1af722771178a..2d211661952e3 100644
> --- a/arch/arm64/kvm/hyp/nvhe/ffa.c
> +++ b/arch/arm64/kvm/hyp/nvhe/ffa.c
[ ... ]
> @@ -636,11 +636,17 @@ static void do_ffa_mem_reclaim(struct arm_smccc_1_2_regs *res,
> ffa_rx_release(res);
> }
>
> + reg = (void *)buf + offset;
> + if (offset + CONSTITUENTS_OFFSET(reg->addr_range_cnt) > len) {
> + ret = FFA_RET_ABORTED;
> + ffa_rx_release(res);
[Severity: Low]
Does this error path trigger an unbalanced double-release of the FF-A RX
buffer?
Looking just above this new block, the EL2 RX buffer has already been
released prior to the loop and at the end of every fragment iteration:
for (fragoff = fraglen; fragoff < len; fragoff += fraglen) {
...
memcpy((void *)buf + fragoff, hyp_buffers.rx, fraglen);
ffa_rx_release(res);
}
If the newly added bounds check fails here, calling ffa_rx_release() again
appears to issue a spurious FFA_RX_RELEASE SMC call to the SPMD for a buffer
KVM no longer holds. Would it be better to omit the ffa_rx_release() in
this new error path?
> + goto out_unlock;
> + }
> +
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260617145130.3729015-1-sebastianene@google.com?part=4
next prev parent reply other threads:[~2026-06-17 15:18 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-17 14:51 [PATCH v7 0/7] arm_ffa, KVM: Fix FF-A emad offset calculations Sebastian Ene
2026-06-17 14:51 ` [PATCH v7 1/7] optee: ffa: Add NULL check in optee_ffa_lend_protmem Sebastian Ene
2026-06-17 15:07 ` sashiko-bot
2026-06-29 8:53 ` Jens Wiklander
2026-06-30 10:13 ` Sebastian Ene
2026-06-17 14:51 ` [PATCH v7 2/7] firmware: arm_ffa: Fix out-of-bound writes in ffa_setup_and_transmit() Sebastian Ene
2026-06-17 14:51 ` [PATCH v7 3/7] firmware: arm_ffa: Fix Endpoint Memory Access Descriptor offset calculation Sebastian Ene
2026-06-17 14:51 ` [PATCH v7 4/7] KVM: arm64: Fix bounds checking in do_ffa_mem_reclaim() Sebastian Ene
2026-06-17 15:18 ` sashiko-bot [this message]
2026-06-18 16:19 ` Vincent Donnefort
2026-06-17 14:51 ` [PATCH v7 5/7] KVM: arm64: Validate the offset to the mem access descriptor Sebastian Ene
2026-06-18 16:56 ` Vincent Donnefort
2026-06-22 9:23 ` Sebastian Ene
2026-06-22 11:22 ` Sebastian Ene
2026-06-17 14:51 ` [PATCH v7 6/7] KVM: arm64: Ensure FFA ranges are page aligned Sebastian Ene
2026-06-18 17:09 ` Vincent Donnefort
2026-06-30 9:51 ` Sebastian Ene
2026-06-30 10:22 ` Mostafa Saleh
2026-06-17 14:51 ` [PATCH v7 7/7] KVM: arm64: Zero out the stack initialized data in the FFA handler Sebastian Ene
2026-06-17 15:29 ` sashiko-bot
2026-06-18 17:14 ` Vincent Donnefort
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=20260617151821.328AE1F000E9@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=kvmarm@lists.linux.dev \
--cc=maz@kernel.org \
--cc=oupton@kernel.org \
--cc=sashiko-reviews@lists.linux.dev \
--cc=sebastianene@google.com \
/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