linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* Mapping vmalloc pages to userspace
@ 2024-12-06 16:28 Matthew Wilcox
  2024-12-06 21:01 ` Matthew Wilcox
  2024-12-10 19:48 ` David Hildenbrand
  0 siblings, 2 replies; 3+ messages in thread
From: Matthew Wilcox @ 2024-12-06 16:28 UTC (permalink / raw)
  To: linux-mm; +Cc: Uladzislau Rezki, David Hildenbrand, Christoph Hellwig

Today we have a very useful helper, remap_vmalloc_range() (and _partial())
which lets drivers call vmalloc(), then map that memory to userspace.
It does so using vm_insert_page() which ends up calling folio_get() and
folio_add_file_rmap_pte(), so jiggling both the refcount and the mapcount.

As you all know by now, we're looking to eliminate both mapcount and
refcount from struct page.  I have four options for consideration, some
of which I like more than others.

1. We could introduce a vmalloc memdesc that has a per-page mapcount and
refcount.  This seems like unnecessarily high overhead for a precision
of tracking that is, perhaps, not warranted.

2. We could do no tracking at all of vmalloc pages.  Insert the PFNs
of the allocated pages and rely on the driver to track everything
correctly, not freeing the vmalloc allocation until the mmap has been
torn down.  This implies not supporting GUP.  This option feels risky to
me; we're depending on device driver writers to get this right, and if
they get it wrong, it's quite the UAF hole; letting an attacker get
access to pages which could be allocated to any purpose.

3. Embed a refcount into struct vm_struct.  We can support GUP if we want.
Calling GUP bumps the refcount on the entire struct.  When the refcount
hits zero, we free the entire allocation.  There's no need for a mapcount
or pincount because we don't need to distinguish between temporary and
longterm gups.

4. Introduce an indirection structure between the page and vm_struct which
contains the refcount.


I'm most in favour of #3, but there's probably ramifications I haven't
considered.


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-12-10 19:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-12-06 16:28 Mapping vmalloc pages to userspace Matthew Wilcox
2024-12-06 21:01 ` Matthew Wilcox
2024-12-10 19:48 ` David Hildenbrand

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox