* userfaultfd wp-async support for (GPU) special mappings?
@ 2026-08-12 21:01 Natalie Vock
2026-08-17 17:35 ` Peter Xu
0 siblings, 1 reply; 2+ messages in thread
From: Natalie Vock @ 2026-08-12 21:01 UTC (permalink / raw)
To: Andrew Morton, Mike Rapoport, Peter Xu, linux-mm, dri-devel
Hi all,
lately I've been investigating some ways to efficiently query for
whether particular memory has been written to or not. The functionality
I'm looking for is pretty much exactly what userfaultfd's wp-async mode
exposes, but with a twist: The memory I'm interested in is GPU memory
mapped into users' address spaces.
The broader context here is writing a "capture/replay" tool for the
Vulkan graphics API: The tool lives in a .so that is injected into some
app at runtime (LD_PRELOAD style). All graphics API calls (rendering
commands etc.) are then intercepted, making a copy of any call
parameters and writing ("capturing") them to disk. Later, these calls
can be read back from the file and "replayed", reproducing the exact
same sequence of rendering commands again (hopefully leading to the same
rendering output, too).
However, one of the commands is a simple wrapper over mmap(), where the
input is a GPU resource and the output is a mapped pointer for free use
by applications. To correctly reproduce the behavior of apps using this
command, the capture/replay tool needs some side-channel to know which
parts of this mapped memory have been overwritten by the CPU, so that it
can perform the same modifications when replaying API calls.
The only part I'm interested here are writes done by the CPU. The GPU
may also write to the mapped memory itself, but there's no need to track
where it wrote.
userfaultfd wp-async tracking would be a pretty great match for this, if
only it could be made to work with GPU mappings, too. I've been hacking
around in the kernel and I did get my use case working fairly well with
only a few modifications:
First, I mostly-reverted commit 3c58f641e81 ("userfaultfd: prevent
registration of special VMAs") for rather obvious reasons :)
Then, all I had to change to get things to work was add handling for
encountering uffd-wp marker PTEs on a read fault inside insert_pfn(),
and allow the PM_SCAN ioctl for /proc/<pid>/pagemap to process vmas
marked with VM_PFNMAP if ioctl only does uffd wp-async bookkeeping.
I included a complete diff of these changes at the end of this email,
but their quality is very much proof-of-concept only; it's not remotely
in an upstreamable state.
Is this something upstream would consider supporting at all? I'm not
familiar enough with memory management to judge whether there are
fundamental pitfalls making this whole idea impossible (but for what
it's worth, it worked really well on every program I tried
capturing/replaying :P)
Best,
Natalie
---
Here's the diff for my dirty hacks making uffd work with GPU mappings,
based on commit f5098b6bae ("Linux 7.2-rc5"):
diff --git a/fs/proc/task_mmu.c b/fs/proc/task_mmu.c
index d32408f7cd5ed..7ac75ac0a7794 100644
--- a/fs/proc/task_mmu.c
+++ b/fs/proc/task_mmu.c
@@ -2426,6 +2426,19 @@ struct pagemap_scan_private {
struct page_region __user *vec_out;
};
+static bool pagemap_exclusively_mark_wp(struct pagemap_scan_private *p)
+{
+ return (p->arg.flags & PM_SCAN_WP_MATCHING) && !p->vec_out;
+}
+
+static bool
+pagemap_exclusively_mark_and_query_wp(struct pagemap_scan_private *p)
+{
+ return !p->arg.category_anyof_mask && !p->arg.category_inverted &&
+ p->arg.category_mask == PAGE_IS_WRITTEN &&
+ p->arg.return_mask == PAGE_IS_WRITTEN;
+}
+
static unsigned long pagemap_page_category(struct pagemap_scan_private *p,
struct vm_area_struct *vma,
unsigned long addr, pte_t pte)
@@ -2689,7 +2702,9 @@ static int pagemap_scan_test_walk(unsigned long
start, unsigned long end,
*/
}
- if (vma->vm_flags & VM_PFNMAP)
+ if ((vma->vm_flags & VM_PFNMAP) &&
+ !(pagemap_exclusively_mark_wp(p) ||
+ pagemap_exclusively_mark_and_query_wp(p)))
return 1;
if (wp_allowed)
@@ -2844,7 +2859,7 @@ static int pagemap_scan_pmd_entry(pmd_t *pmd,
unsigned long start,
lazy_mmu_mode_enable();
- if ((p->arg.flags & PM_SCAN_WP_MATCHING) && !p->vec_out) {
+ if (pagemap_exclusively_mark_wp(p)) {
/* Fast path for performing exclusive WP */
for (addr = start; addr != end; pte++, addr += PAGE_SIZE) {
pte_t ptent = ptep_get(pte);
@@ -2860,9 +2875,7 @@ static int pagemap_scan_pmd_entry(pmd_t *pmd,
unsigned long start,
goto flush_and_return;
}
- if (!p->arg.category_anyof_mask && !p->arg.category_inverted &&
- p->arg.category_mask == PAGE_IS_WRITTEN &&
- p->arg.return_mask == PAGE_IS_WRITTEN) {
+ if (pagemap_exclusively_mark_and_query_wp(p)) {
for (addr = start; addr < end; pte++, addr += PAGE_SIZE) {
unsigned long next = addr + PAGE_SIZE;
pte_t ptent = ptep_get(pte);
diff --git a/mm/memory.c b/mm/memory.c
index ff338c2abe923..a06a31f7f45cc 100644
--- a/mm/memory.c
+++ b/mm/memory.c
@@ -2698,6 +2698,10 @@ static vm_fault_t insert_pfn(struct
vm_area_struct *vma, unsigned long addr,
entry = maybe_mkwrite(pte_mkdirty(entry), vma);
if (ptep_set_access_flags(vma, addr, pte, entry, 1))
update_mmu_cache(vma, addr, pte);
+ } else if (pte_uffd_wp(entry)) {
+ entry = pte_mkspecial(pfn_pte(pfn, prot));
+ entry = pte_mkuffd_wp(entry);
+ goto out_set_pte;
}
goto out_unlock;
}
@@ -2710,6 +2714,7 @@ static vm_fault_t insert_pfn(struct vm_area_struct
*vma, unsigned long addr,
entry = maybe_mkwrite(pte_mkdirty(entry), vma);
}
+out_set_pte:
set_pte_at(mm, addr, pte, entry);
update_mmu_cache(vma, addr, pte); /* XXX: why not for insert_page? */
diff --git a/mm/userfaultfd.c b/mm/userfaultfd.c
index c3adedaaf7d54..aa1553ec5a3bb 100644
--- a/mm/userfaultfd.c
+++ b/mm/userfaultfd.c
@@ -2114,8 +2114,8 @@ static bool vma_can_userfault(struct
vm_area_struct *vma, vm_flags_t vm_flags,
if (vma->vm_flags & (VM_DROPPABLE | VM_SHADOW_STACK))
return false;
- if (!is_vm_hugetlb_page(vma) && (vma->vm_flags & VM_SPECIAL))
- return false;
+ //if (!is_vm_hugetlb_page(vma) && (vma->vm_flags & VM_SPECIAL))
+ // return false;
vm_flags &= __VM_UFFD_FLAGS;
--
2.55.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: userfaultfd wp-async support for (GPU) special mappings?
2026-08-12 21:01 userfaultfd wp-async support for (GPU) special mappings? Natalie Vock
@ 2026-08-17 17:35 ` Peter Xu
0 siblings, 0 replies; 2+ messages in thread
From: Peter Xu @ 2026-08-17 17:35 UTC (permalink / raw)
To: Natalie Vock; +Cc: Andrew Morton, Mike Rapoport, linux-mm, dri-devel
On Wed, Aug 12, 2026 at 11:01:55PM +0200, Natalie Vock wrote:
> Hi all,
Hi, Natalie,
>
> lately I've been investigating some ways to efficiently query for whether
> particular memory has been written to or not. The functionality I'm looking
> for is pretty much exactly what userfaultfd's wp-async mode exposes, but
> with a twist: The memory I'm interested in is GPU memory mapped into users'
> address spaces.
>
> The broader context here is writing a "capture/replay" tool for the Vulkan
> graphics API: The tool lives in a .so that is injected into some app at
> runtime (LD_PRELOAD style). All graphics API calls (rendering commands etc.)
> are then intercepted, making a copy of any call parameters and writing
> ("capturing") them to disk. Later, these calls can be read back from the
> file and "replayed", reproducing the exact same sequence of rendering
> commands again (hopefully leading to the same rendering output, too).
> However, one of the commands is a simple wrapper over mmap(), where the
> input is a GPU resource and the output is a mapped pointer for free use by
> applications. To correctly reproduce the behavior of apps using this
> command, the capture/replay tool needs some side-channel to know which parts
> of this mapped memory have been overwritten by the CPU, so that it can
> perform the same modifications when replaying API calls.
>
> The only part I'm interested here are writes done by the CPU. The GPU may
> also write to the mapped memory itself, but there's no need to track where
> it wrote.
>
> userfaultfd wp-async tracking would be a pretty great match for this, if
> only it could be made to work with GPU mappings, too. I've been hacking
> around in the kernel and I did get my use case working fairly well with only
> a few modifications:
>
> First, I mostly-reverted commit 3c58f641e81 ("userfaultfd: prevent
> registration of special VMAs") for rather obvious reasons :)
> Then, all I had to change to get things to work was add handling for
> encountering uffd-wp marker PTEs on a read fault inside insert_pfn(), and
> allow the PM_SCAN ioctl for /proc/<pid>/pagemap to process vmas marked with
> VM_PFNMAP if ioctl only does uffd wp-async bookkeeping.
>
> I included a complete diff of these changes at the end of this email, but
> their quality is very much proof-of-concept only; it's not remotely in an
> upstreamable state.
>
> Is this something upstream would consider supporting at all? I'm not
> familiar enough with memory management to judge whether there are
> fundamental pitfalls making this whole idea impossible (but for what it's
> worth, it worked really well on every program I tried capturing/replaying
> :P)
I believe the VM_FAULT_NOPAGE path was used to be overlooked.. bypassing
finish_fault() completely. It's good to see that we have forbidden SPECIAL
mappings for now.
On the use case alone, it looks like a valid one. Said that, I think it'll
be slightly more involved than what you have proposed below.
>
> Best,
> Natalie
>
> ---
>
> Here's the diff for my dirty hacks making uffd work with GPU mappings, based
> on commit f5098b6bae ("Linux 7.2-rc5"):
>
> diff --git a/fs/proc/task_mmu.c b/fs/proc/task_mmu.c
> index d32408f7cd5ed..7ac75ac0a7794 100644
> --- a/fs/proc/task_mmu.c
> +++ b/fs/proc/task_mmu.c
> @@ -2426,6 +2426,19 @@ struct pagemap_scan_private {
> struct page_region __user *vec_out;
> };
>
> +static bool pagemap_exclusively_mark_wp(struct pagemap_scan_private *p)
> +{
> + return (p->arg.flags & PM_SCAN_WP_MATCHING) && !p->vec_out;
> +}
> +
> +static bool
> +pagemap_exclusively_mark_and_query_wp(struct pagemap_scan_private *p)
> +{
> + return !p->arg.category_anyof_mask && !p->arg.category_inverted &&
> + p->arg.category_mask == PAGE_IS_WRITTEN &&
> + p->arg.return_mask == PAGE_IS_WRITTEN;
> +}
> +
> static unsigned long pagemap_page_category(struct pagemap_scan_private *p,
> struct vm_area_struct *vma,
> unsigned long addr, pte_t pte)
> @@ -2689,7 +2702,9 @@ static int pagemap_scan_test_walk(unsigned long start,
> unsigned long end,
> */
> }
>
> - if (vma->vm_flags & VM_PFNMAP)
> + if ((vma->vm_flags & VM_PFNMAP) &&
> + !(pagemap_exclusively_mark_wp(p) ||
> + pagemap_exclusively_mark_and_query_wp(p)))
> return 1;
>
> if (wp_allowed)
> @@ -2844,7 +2859,7 @@ static int pagemap_scan_pmd_entry(pmd_t *pmd, unsigned
> long start,
>
> lazy_mmu_mode_enable();
>
> - if ((p->arg.flags & PM_SCAN_WP_MATCHING) && !p->vec_out) {
> + if (pagemap_exclusively_mark_wp(p)) {
> /* Fast path for performing exclusive WP */
> for (addr = start; addr != end; pte++, addr += PAGE_SIZE) {
> pte_t ptent = ptep_get(pte);
> @@ -2860,9 +2875,7 @@ static int pagemap_scan_pmd_entry(pmd_t *pmd, unsigned
> long start,
> goto flush_and_return;
> }
>
> - if (!p->arg.category_anyof_mask && !p->arg.category_inverted &&
> - p->arg.category_mask == PAGE_IS_WRITTEN &&
> - p->arg.return_mask == PAGE_IS_WRITTEN) {
> + if (pagemap_exclusively_mark_and_query_wp(p)) {
> for (addr = start; addr < end; pte++, addr += PAGE_SIZE) {
> unsigned long next = addr + PAGE_SIZE;
> pte_t ptent = ptep_get(pte);
> diff --git a/mm/memory.c b/mm/memory.c
> index ff338c2abe923..a06a31f7f45cc 100644
> --- a/mm/memory.c
> +++ b/mm/memory.c
> @@ -2698,6 +2698,10 @@ static vm_fault_t insert_pfn(struct vm_area_struct
> *vma, unsigned long addr,
> entry = maybe_mkwrite(pte_mkdirty(entry), vma);
> if (ptep_set_access_flags(vma, addr, pte, entry, 1))
> update_mmu_cache(vma, addr, pte);
> + } else if (pte_uffd_wp(entry)) {
> + entry = pte_mkspecial(pfn_pte(pfn, prot));
> + entry = pte_mkuffd_wp(entry);
> + goto out_set_pte;
> }
I don't think I understand how this current patch works so far at least
here.. Logically this path should need to at very minimum take care of pte
markers, which async uffd-wp tracking requires. I think it means we may
need to pass *vmf over to check orig_pte, atomically install the pte with
the knowledge of what is orig_pte, especially if it was a marker.
Maybe in your case the pfnmap VMA doesn't dynamically do .fault()s, but
install the pgtables either with remap_pfn_range(), or something always
populated in mmap() time? If all the entries were populated at pte level
properly, uffd-wp could have worked all fine indeed even for pfnmap.
However it may not work fine with pfnmaps that either allow ptes to be
dynamcally faulted in, or being zapped and repopulated somehow.
Currently, for any holes that are tracked (e.g. pfnmaps that can lazily be
faulted into the pgtable with fault()s), the async uffd-wp tracking relies
on the pte markers installed in the pgtables when wr-protection happened
without a mapping.
To support pfnmap with uffd-wp async in a generic way, IIUC we need to make
sure all VM_FAULT_NOPAGE users be able to properly process pte markers with
uffd-wp bit set, then install a RO+UFFD_WP pte instead, leaving the rest
processing to do_wp_page().
That's why the current change of insert_pfn() doesn't look like to have
achieved what is needed to me. The other thing is, insert_pfn() may also
not be the only path that can be used by pfnmaps. E.g. I saw at least
insert_page_in_batch_locked() that may need similar care.
So supporting pfnmaps with uffd-wp async tracking might be more challenging
to be done in one shot, and that may need careful look. We need to make
sure all paths like that to be properly covered, and AFAIU it's not easy,
because VM_FAULT_NOPAGE can be randomly used in special drivers.. unlike
the other normal case where __do_fault() will bring back a page within
vmf->page, then finish_fault() will do the pgtable job in one place.
Nowadays, with vm_uffd_ops, maybe one viable approach is to allow drivers
opt-in with uffd-wp on pfnmaps, that might be slightly easier to achieve
with a custom .can_userfault() after justifying the driver works, either
the driver should make sure all pfnmaps will be populated upfront and never
zapped, or the driver should be able to identify things like pte markers
when injecting pfnmaps.
Thanks,
> goto out_unlock;
> }
> @@ -2710,6 +2714,7 @@ static vm_fault_t insert_pfn(struct vm_area_struct
> *vma, unsigned long addr,
> entry = maybe_mkwrite(pte_mkdirty(entry), vma);
> }
>
> +out_set_pte:
> set_pte_at(mm, addr, pte, entry);
> update_mmu_cache(vma, addr, pte); /* XXX: why not for insert_page? */
>
> diff --git a/mm/userfaultfd.c b/mm/userfaultfd.c
> index c3adedaaf7d54..aa1553ec5a3bb 100644
> --- a/mm/userfaultfd.c
> +++ b/mm/userfaultfd.c
> @@ -2114,8 +2114,8 @@ static bool vma_can_userfault(struct vm_area_struct
> *vma, vm_flags_t vm_flags,
> if (vma->vm_flags & (VM_DROPPABLE | VM_SHADOW_STACK))
> return false;
>
> - if (!is_vm_hugetlb_page(vma) && (vma->vm_flags & VM_SPECIAL))
> - return false;
> + //if (!is_vm_hugetlb_page(vma) && (vma->vm_flags & VM_SPECIAL))
> + // return false;
>
> vm_flags &= __VM_UFFD_FLAGS;
>
> --
> 2.55.0
>
>
--
Peter Xu
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-08-17 17:35 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-12 21:01 userfaultfd wp-async support for (GPU) special mappings? Natalie Vock
2026-08-17 17:35 ` Peter Xu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox