* [PATCH v6] mm/userfaultfd: detect VMA type change after copy retry in mfill_copy_folio_retry()
@ 2026-04-12 16:48 David Carlier
0 siblings, 0 replies; only message in thread
From: David Carlier @ 2026-04-12 16:48 UTC (permalink / raw)
To: Andrew Morton, Mike Rapoport
Cc: Peter Xu, Usama Arif, linux-mm, linux-kernel, David Carlier
mfill_copy_folio_retry() drops mmap_lock for the copy_from_user() call.
During this window, the VMA can be replaced with a different type (e.g.
hugetlb), making the caller's ops pointer stale. Subsequent use of the
stale ops can lead to incorrect folio handling or a kernel crash.
Capture the VMA's ops via vma_uffd_ops() before dropping the lock and
compare against the current vma_uffd_ops() after re-acquiring it. Return
-EAGAIN if they differ so the operation can be retried. This avoids
comparing against the caller's ops which may have been overridden to
anon_uffd_ops for MAP_PRIVATE file-backed mappings.
Fixes: 59da5c32ffa3 ("userfaultfd: mfill_atomic(): remove retry logic")
Reported-by: Usama Arif <usamaarif642@gmail.com>
Signed-off-by: David Carlier <devnexen@gmail.com>
---
mm/userfaultfd.c | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/mm/userfaultfd.c b/mm/userfaultfd.c
index 481ec7eb4442..7fbe8eca3668 100644
--- a/mm/userfaultfd.c
+++ b/mm/userfaultfd.c
@@ -443,8 +443,10 @@ static int mfill_copy_folio_locked(struct folio *folio, unsigned long src_addr)
return ret;
}
-static int mfill_copy_folio_retry(struct mfill_state *state, struct folio *folio)
+static int mfill_copy_folio_retry(struct mfill_state *state,
+ struct folio *folio)
{
+ const struct vm_uffd_ops *orig_ops = vma_uffd_ops(state->vma);
unsigned long src_addr = state->src_addr;
void *kaddr;
int err;
@@ -465,6 +467,14 @@ static int mfill_copy_folio_retry(struct mfill_state *state, struct folio *folio
if (err)
return err;
+ /*
+ * The VMA type may have changed while the lock was dropped
+ * (e.g. replaced with a hugetlb mapping), making the caller's
+ * ops pointer stale.
+ */
+ if (vma_uffd_ops(state->vma) != orig_ops)
+ return -EAGAIN;
+
err = mfill_establish_pmd(state);
if (err)
return err;
--
2.53.0
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2026-04-12 16:48 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-04-12 16:48 [PATCH v6] mm/userfaultfd: detect VMA type change after copy retry in mfill_copy_folio_retry() David Carlier
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox