From: sashiko-bot@kernel.org
To: "Sean Christopherson" <seanjc@google.com>
Cc: kvm@vger.kernel.org
Subject: Re: [PATCH v5 4/7] KVM: guest_memfd: Fold __kvm_gmem_prepare_folio() into its sole caller
Date: Tue, 14 Jul 2026 23:39:13 +0000 [thread overview]
Message-ID: <20260714233913.8D52E1F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260714231015.3337831-5-seanjc@google.com>
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
New issues:
- [Critical] Refactoring `kvm_gmem_prepare_folio()` and `kvm_gmem_make_private()` to align `gfn` before computing `index` produces a mismatched and unaligned `pfn` if the memslot's `base_gfn` is not aligned to the huge folio size. This causes the architecture-specific prepare function to write beyond the bounds of the folio, leading to host physical memory corruption.
Pre-existing issues:
- [High] In SEV-SNP, if large RMP entry preparation fails for a huge folio, KVM will only prepare the base 4K page, causing an incomplete initialization and an infinite page fault loop for subpage accesses.
--
--- Patch [4]: [PATCH v5 4/7] KVM: guest_memfd: Fold __kvm_gmem_prepare_folio() into its sole caller ---
commit ef3a2643968d189a00f8b26552b9b814bf1aa548
Author: Sean Christopherson <seanjc@google.com>
KVM: guest_memfd: Fold __kvm_gmem_prepare_folio() into its sole caller
This commit folds __kvm_gmem_prepare_folio() into its caller, removing the
single-use tail-call helper. It also adjusts the alignment logic to align the
gfn before computing the index, and converts a WARN to WARN_ON_ONCE.
> diff --git a/virt/kvm/guest_memfd.c b/virt/kvm/guest_memfd.c
> index 28cdcf6007453..f065dedfbba8c 100644
> --- a/virt/kvm/guest_memfd.c
> +++ b/virt/kvm/guest_memfd.c
[ ... ]
> @@ -97,11 +85,15 @@ static int kvm_gmem_prepare_folio(struct kvm *kvm, struct kvm_memory_slot *slot,
> * The order will be passed when creating the guest_memfd, and
> * checked when creating memslots.
> */
> - WARN_ON(!IS_ALIGNED(slot->gmem.pgoff, folio_nr_pages(folio)));
> + WARN_ON_ONCE(!IS_ALIGNED(slot->gmem.pgoff, folio_nr_pages(folio)));
> + gfn = ALIGN_DOWN(gfn, folio_nr_pages(folio));
> index = kvm_gmem_get_index(slot, gfn);
> - index = ALIGN_DOWN(index, folio_nr_pages(folio));
>
> - return __kvm_gmem_prepare_folio(kvm, slot, index, folio);
> + return kvm_arch_gmem_prepare(kvm, gfn, folio_file_pfn(folio, index),
> + folio_order(folio));
[Severity: Critical]
Does aligning gfn before computing index cause an unaligned index when
slot->base_gfn is not huge-page aligned?
If a userspace process maps a guest_memfd using KVM_SET_USER_MEMORY_REGION2
with a base_gfn that is not aligned to the huge page size,
kvm_gmem_get_index() could return an unaligned index.
Because folio_file_pfn() applies the index offset to the base PFN:
virt/kvm/guest_memfd.c:folio_file_pfn() {
return folio_pfn(folio) + (index & (folio_nr_pages(folio) - 1));
}
an unaligned index causes it to return an offset PFN instead of the
folio's base PFN.
Could this lead to host physical memory corruption? The architecture
backend processes the full page count starting from the offset PFN,
which would write beyond the allocated folio boundaries and overwrite
unrelated host physical memory.
It looks like this same alignment pattern is also present in
kvm_gmem_make_private().
[Severity: High]
This isn't a bug introduced by this patch, but could this generic
function incorrectly assume a successful return means the entire
huge folio was prepared?
Looking at sev_gmem_prepare() in arch/x86/kvm/svm/sev.c, if it falls
back to PG_LEVEL_4K for a huge folio:
} else {
level = PG_LEVEL_4K;
pfn_aligned = pfn;
gfn_aligned = gfn;
}
rc = rmp_make_private(pfn_aligned, gfn_to_gpa(gfn_aligned), level, sev->asid, false);
It appears rmp_make_private() is called only once for the base 4K page,
without looping over the remaining pages in the huge folio.
Since kvm_arch_gmem_prepare() then returns success to this generic code,
are the remaining 511 pages left uninitialized, potentially causing an
infinite page fault loop for subsequent subpage accesses?
> +#else
> + return 0;
> +#endif
> }
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260714231015.3337831-1-seanjc@google.com?part=4
next prev parent reply other threads:[~2026-07-14 23:39 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-14 23:10 [PATCH v5 0/7] KVM: guest_memfd: reclaim()/convert() cleanups Sean Christopherson
2026-07-14 23:10 ` [PATCH v5 1/7] KVM: guest_memfd: Plumb the number of pages and max order into .invalidate() Sean Christopherson
2026-07-14 23:52 ` Ackerley Tng
2026-07-15 8:15 ` Fuad Tabba
2026-07-14 23:10 ` [PATCH v5 2/7] KVM: guest_memfd: Rename invalidate() arch hook to reclaim() and isolate it Sean Christopherson
2026-07-14 23:53 ` Ackerley Tng
2026-07-15 8:19 ` Fuad Tabba
2026-07-14 23:10 ` [PATCH v5 3/7] KVM: guest_memfd: Drop the redundant printk on arch gmem_prepare() failure Sean Christopherson
2026-07-15 8:21 ` Fuad Tabba
2026-07-14 23:10 ` [PATCH v5 4/7] KVM: guest_memfd: Fold __kvm_gmem_prepare_folio() into its sole caller Sean Christopherson
2026-07-14 23:39 ` sashiko-bot [this message]
2026-07-14 23:55 ` Ackerley Tng
2026-07-14 23:10 ` [PATCH v5 5/7] KVM: guest_memfd: Explicitly pass number of pages to kvm_arch_gmem_prepare() Sean Christopherson
2026-07-14 23:10 ` [PATCH v5 6/7] KVM: x86: Combine .gmem_prepare()+.gmem_invalidate() into .gmem_convert() Sean Christopherson
2026-07-15 0:06 ` Ackerley Tng
2026-07-15 0:10 ` Sean Christopherson
2026-07-15 9:50 ` Fuad Tabba
2026-07-15 9:48 ` Fuad Tabba
2026-07-14 23:10 ` [PATCH v5 7/7] KVM: guest_memfd: Rework PREPARE config and hook into a more generic CONVERT Sean Christopherson
2026-07-15 0:09 ` Ackerley Tng
2026-07-15 9:53 ` 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=20260714233913.8D52E1F000E9@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=kvm@vger.kernel.org \
--cc=sashiko-reviews@lists.linux.dev \
--cc=seanjc@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