From: sashiko-bot@kernel.org
To: "Eliot Courtney" <ecourtney@nvidia.com>
Cc: "Alexandre Courbot" <acourbot@nvidia.com>,
"Danilo Krummrich" <dakr@kernel.org>,
dri-devel@lists.freedesktop.org
Subject: Re: [PATCH 12/16] gpu: nova-core: mm: Add virtual address range tracking to VMM
Date: Wed, 09 Sep 2026 04:18:07 +0000 [thread overview]
Message-ID: <20260909041808.452AA1F00A3A@smtp.kernel.org> (raw)
In-Reply-To: <20260909-mmrebase-v1-12-8dd5d4225d2e@nvidia.com>
Thank you for your contribution! Sashiko AI review found 3 potential issue(s) to consider:
- [High] `free_vfn` inadvertently frees entire multi-page or unrelated adjacent allocations because the maple tree automatically coalesces identical values and `erase` removes the full node.
- [High] `alloc_vfn_range` silently truncates unaligned requested virtual addresses instead of returning an error, mapping a different virtual address range than requested.
- [High] `alloc_vfn_range` fails to validate that an explicitly requested `va_range` falls within the VMM's maximum address space limits.
--
commit 72ebdc957b03c40c8135fdeabd96b70130feb75f
Author: Joel Fernandes <joelagnelf@nvidia.com>
gpu: nova-core: mm: Add virtual address range tracking to VMM
This commit adds a maple tree allocator for tracking contiguous virtual
address ranges. It enables allocating and freeing virtual frame numbers
for mappings.
> diff --git a/drivers/gpu/nova-core/mm/vmm.rs b/drivers/gpu/nova-core/mm/vmm.rs
> index a7911efb65a03..0bcae29db4f2c 100644
> --- a/drivers/gpu/nova-core/mm/vmm.rs
> +++ b/drivers/gpu/nova-core/mm/vmm.rs
[ ... ]
> @@ -34,18 +43,74 @@ pub(crate) struct Vmm {
> mmu_version: MmuVersion,
> /// Page table allocations required for mappings.
> page_table_allocs: KVec<Pin<KBox<AllocatedBlocks>>>,
> + /// Maple tree allocator for virtual address range tracking.
> + virt_alloc: Pin<KBox<MapleTreeAlloc<()>>>,
> + /// Total number of pages in the virtual address space.
> + va_pages: usize,
> }
>
> impl Vmm {
> /// Create a new [`Vmm`] for the given Page Directory Base address.
> - pub(crate) fn new(pdb_addr: VramAddress, mmu_version: MmuVersion) -> Result<Self> {
> + ///
> + /// The [`Vmm`] will manage a virtual address space of `va_size` bytes.
> + pub(crate) fn new(
> + pdb_addr: VramAddress,
> + mmu_version: MmuVersion,
> + va_size: u64,
> + ) -> Result<Self> {
> + let page_size: u64 = PAGE_SIZE.into_safe_cast();
> + let va_pages: usize = (va_size / page_size).into_safe_cast();
> + let virt_alloc = KBox::pin_init(MapleTreeAlloc::<()>::new(), GFP_KERNEL)?;
[Severity: High]
Since the maple tree allocator is instantiated with () as the value, won't it
automatically coalesce contiguous allocations into a single node because the
stored pointers are identical?
> +
> Ok(Self {
> pdb_addr,
> mmu_version,
> page_table_allocs: KVec::new(),
> + virt_alloc,
> + va_pages,
> })
> }
>
> + /// Allocate a contiguous virtual frame number range.
> + ///
> + /// # Arguments
> + ///
> + /// - `num_pages`: Number of pages to allocate.
> + /// - `va_range`: `None` = allocate anywhere, `Some(range)` = constrain allocation to the given
> + /// range.
> + fn alloc_vfn_range(&self, num_pages: usize, va_range: Option<Range<u64>>) -> Result<Vfn> {
> + let page_size: u64 = PAGE_SIZE.into_safe_cast();
> +
> + let start_vfn = match va_range {
> + Some(r) => {
> + let num_pages_u64: u64 = num_pages.into_safe_cast();
> + let size = num_pages_u64.checked_mul(page_size).ok_or(EOVERFLOW)?;
> + let range_size = r.end.checked_sub(r.start).ok_or(EOVERFLOW)?;
> + if range_size != size {
> + return Err(EINVAL);
> + }
> + let start_vfn: usize = (r.start / page_size).into_safe_cast();
> + let end_vfn: usize = (r.end / page_size).into_safe_cast();
[Severity: High]
Could the integer division truncate misaligned addresses here?
If r.start or r.end are not page-aligned, this division silently maps a
different page-aligned address instead of returning -EINVAL for the misaligned
request.
> + self.virt_alloc
> + .insert_range(start_vfn..end_vfn, (), GFP_KERNEL)?;
[Severity: High]
Does this insertion need to be validated against the VMM's maximum address space
limit?
If an explicitly requested end_vfn exceeds self.va_pages, this succeeds but
could later cause wrap-around truncation and page table corruption during
hardware programming.
> + start_vfn
> + }
> + None => self
> + .virt_alloc
> + .alloc_range(num_pages, (), ..self.va_pages, GFP_KERNEL)?,
> + };
> +
> + Ok(Vfn::new(start_vfn.into_safe_cast()))
> + }
> +
> + /// Free a virtual frame number range back to the maple tree.
> + fn free_vfn(&self, vfn: Vfn) {
> + let vfn_index: usize = vfn.raw().into_safe_cast();
> + if self.virt_alloc.erase(vfn_index).is_none() {
[Severity: High]
If the maple tree automatically coalesced contiguous allocations because they all
share the () value, won't erase() remove the entire coalesced node rather
than just the originally requested range?
This could inadvertently free unrelated adjacent mappings or the remainder of a
multi-page allocation.
> + kernel::pr_warn!("free_vfn: VFN {} not found in maple tree\n", vfn_index);
> + }
> + }
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260909-mmrebase-v1-0-8dd5d4225d2e@nvidia.com?part=12
next prev parent reply other threads:[~2026-09-09 4:18 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-09 3:59 [PATCH 00/16] gpu: nova-core: GPU page table, vmm, and bar1 mapping Eliot Courtney
2026-09-09 3:59 ` [PATCH 01/16] gpu: nova-core: mm: Add common types for virtual memory management Eliot Courtney
2026-09-09 3:59 ` [PATCH 02/16] gpu: nova-core: mm: Add buddy allocator and TLB to GpuMm Eliot Courtney
2026-09-09 4:09 ` sashiko-bot
2026-09-09 3:59 ` [PATCH 03/16] gpu: nova-core: mm: Add common types for all page table formats Eliot Courtney
2026-09-09 3:59 ` [PATCH 04/16] gpu: nova-core: mm: pagetable: Add PteOps trait Eliot Courtney
2026-09-09 4:07 ` sashiko-bot
2026-09-09 3:59 ` [PATCH 05/16] gpu: nova-core: mm: pagetable: Add PdeOps trait Eliot Courtney
2026-09-09 4:08 ` sashiko-bot
2026-09-09 3:59 ` [PATCH 06/16] gpu: nova-core: mm: pagetable: Add DualPdeOps trait Eliot Courtney
2026-09-09 3:59 ` [PATCH 07/16] gpu: nova-core: mm: Add MMU v2 page table types Eliot Courtney
2026-09-09 4:12 ` sashiko-bot
2026-09-09 18:43 ` Danilo Krummrich
2026-09-09 3:59 ` [PATCH 08/16] gpu: nova-core: mm: Add MMU v3 " Eliot Courtney
2026-09-09 3:59 ` [PATCH 09/16] gpu: nova-core: mm: pagetable: Add MmuConfig trait Eliot Courtney
2026-09-09 4:12 ` sashiko-bot
2026-09-09 3:59 ` [PATCH 10/16] gpu: nova-core: mm: Add page table walker for MMU v2/v3 Eliot Courtney
2026-09-09 4:07 ` sashiko-bot
2026-09-09 3:59 ` [PATCH 11/16] gpu: nova-core: mm: Add Virtual Memory Manager Eliot Courtney
2026-09-09 3:59 ` [PATCH 12/16] gpu: nova-core: mm: Add virtual address range tracking to VMM Eliot Courtney
2026-09-09 4:18 ` sashiko-bot [this message]
2026-09-09 19:32 ` Danilo Krummrich
2026-09-09 3:59 ` [PATCH 13/16] gpu: nova-core: mm: Add multi-page mapping API " Eliot Courtney
2026-09-09 4:17 ` sashiko-bot
2026-09-09 19:58 ` Danilo Krummrich
2026-09-10 0:47 ` Alistair Popple
2026-09-09 3:59 ` [PATCH 14/16] gpu: nova-core: Add BAR1 aperture type and size constant Eliot Courtney
2026-09-09 4:14 ` sashiko-bot
2026-09-09 3:59 ` [PATCH 15/16] gpu: nova-core: mm: Add BAR1 user interface Eliot Courtney
2026-09-09 4:16 ` sashiko-bot
2026-09-09 20:13 ` Danilo Krummrich
2026-09-09 3:59 ` [PATCH 16/16] gpu: nova-core: mm: Add BAR1 memory management self-tests Eliot Courtney
2026-09-09 4:18 ` sashiko-bot
2026-09-09 21:11 ` [PATCH 00/16] gpu: nova-core: GPU page table, vmm, and bar1 mapping Danilo Krummrich
2026-09-11 15:02 ` Alexandre Courbot
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=20260909041808.452AA1F00A3A@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=acourbot@nvidia.com \
--cc=dakr@kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=ecourtney@nvidia.com \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox