From: sashiko-bot@kernel.org
Cc: kvm@vger.kernel.org
Subject: Re: [PATCH v4 12/14] userfaultfd: add UFFDIO_SET_MODE for runtime sync/async toggle
Date: Mon, 25 May 2026 12:42:20 +0000 [thread overview]
Message-ID: <20260525124220.5336F1F00A3A@smtp.kernel.org> (raw)
In-Reply-To: <20260525113737.1942478-13-kas@kernel.org>
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
- [High] The userfaultfd_set_mode function iterates over an external mm_struct's VMAs without verifying address space stability.
- [Low] Lockless read of ctx->features races with its own WRITE_ONCE update, causing a data race.
--
commit 6988a435b501422279701e12a0fb8f5c3d604468
Author: Kiryl Shutsemau (Meta) <kas@kernel.org>
userfaultfd: add UFFDIO_SET_MODE for runtime sync/async toggle
This commit adds an ioctl to toggle UFFD_FEATURE_RWP_ASYNC on an active
userfaultfd context. It handles synchronization by acquiring the mmap_write_lock,
draining in-flight faults via vma_start_write(), and waking pending sync
waiters to retry.
> diff --git a/mm/userfaultfd.c b/mm/userfaultfd.c
> index 20478bb373111..680ef9bd57fd6 100644
> --- a/mm/userfaultfd.c
> +++ b/mm/userfaultfd.c
[ ... ]
> @@ -4261,6 +4271,109 @@ static int userfaultfd_rwprotect(struct userfaultfd_ctx *ctx,
> return ret;
> }
>
[ ... ]
> +static int userfaultfd_set_mode(struct userfaultfd_ctx *ctx,
> + unsigned long arg)
> +{
> + struct uffdio_set_mode mode;
> + struct mm_struct *mm = ctx->mm;
> +
> + if (copy_from_user(&mode, (void __user *)arg, sizeof(mode)))
> + return -EFAULT;
> +
> + /* enable and disable must not overlap */
> + if (mode.enable & mode.disable)
> + return -EINVAL;
> +
> + /* only toggleable features that this kernel/arch actually supports */
> + if ((mode.enable | mode.disable) &
> + ~(uffd_api_available_features() & UFFD_FEATURE_TOGGLEABLE))
> + return -EINVAL;
> +
> + /* RWP_ASYNC can only be enabled on contexts that negotiated RWP */
> + if ((mode.enable & UFFD_FEATURE_RWP_ASYNC) &&
> + !(ctx->features & UFFD_FEATURE_RWP))
[Severity: Low]
Is it possible for a concurrent UFFDIO_SET_MODE call to trigger a data race
here?
Because ctx->features is updated with WRITE_ONCE() later in this function,
reading it locklessly without the new userfaultfd_features() helper
(or READ_ONCE) might cause KCSAN warnings, even though the UFFD_FEATURE_RWP
bit itself doesn't change.
> + return -EINVAL;
> +
> + if (!mmget_not_zero(mm))
> + return -ESRCH;
> +
> + /*
> + * Drain in-flight faults before flipping features. mmap_write_lock()
> + * blocks new mmap_read_lock() callers, but per-VMA locked faults
> + * (lock_vma_under_rcu() + FAULT_FLAG_VMA_LOCK) that acquired before
> + * this point keep running. Calling vma_start_write() on each UFFD-
> + * armed VMA waits for those readers to drop, so no in-flight fault
> + * can observe the old features after mmap_write_unlock().
> + */
> + mmap_write_lock(mm);
> + {
> + struct vm_area_struct *vma;
> + VMA_ITERATOR(vmi, mm, 0);
> +
> + for_each_vma(vmi, vma) {
[Severity: High]
Does this iteration code need to verify address space stability before
walking the VMAs?
Since ctx->mm can belong to a different process, it might be marked
MMF_UNSTABLE if the target process encountered a dup_mmap() failure or
was reaped by the OOM killer.
If the address space is unstable, the maple tree might contain XA_ZERO_ENTRY
markers, which could cause a kernel panic when dereferencing
vma->vm_userfaultfd_ctx.ctx.
Would it be appropriate to call check_stable_address_space(mm) right after
acquiring the mmap_write_lock?
> + if (vma->vm_userfaultfd_ctx.ctx == ctx)
> + vma_start_write(vma);
> + }
> + }
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260525113737.1942478-1-kas@kernel.org?part=12
next prev parent reply other threads:[~2026-05-25 12:42 UTC|newest]
Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-25 11:37 [PATCH v4 00/14] userfaultfd: working set tracking for VM guest memory Kiryl Shutsemau (Meta)
2026-05-25 11:37 ` [PATCH v4 01/14] mm: decouple protnone helpers from CONFIG_NUMA_BALANCING Kiryl Shutsemau (Meta)
2026-05-25 12:06 ` sashiko-bot
2026-05-25 14:41 ` Kiryl Shutsemau
2026-05-25 11:37 ` [PATCH v4 02/14] mm: rename uffd-wp PTE bit macros to uffd Kiryl Shutsemau (Meta)
2026-05-25 11:37 ` [PATCH v4 03/14] mm: rename uffd-wp PTE accessors " Kiryl Shutsemau (Meta)
2026-05-25 12:05 ` sashiko-bot
2026-05-25 14:43 ` Kiryl Shutsemau
2026-05-25 19:31 ` Andrew Morton
2026-05-25 19:43 ` Kiryl Shutsemau
2026-05-25 11:37 ` [PATCH v4 04/14] mm: add VM_UFFD_RWP VMA flag Kiryl Shutsemau (Meta)
2026-05-25 12:19 ` sashiko-bot
2026-05-25 14:59 ` Kiryl Shutsemau
2026-05-25 11:37 ` [PATCH v4 05/14] mm: add MM_CP_UFFD_RWP change_protection() flag Kiryl Shutsemau (Meta)
2026-05-25 12:13 ` sashiko-bot
2026-05-25 15:03 ` Kiryl Shutsemau
2026-05-25 11:37 ` [PATCH v4 06/14] mm: preserve RWP marker across PTE rewrites Kiryl Shutsemau (Meta)
2026-05-25 12:08 ` sashiko-bot
2026-05-25 15:07 ` Kiryl Shutsemau
2026-05-26 8:19 ` Kiryl Shutsemau
2026-05-25 11:37 ` [PATCH v4 07/14] mm: handle VM_UFFD_RWP in khugepaged, rmap, and GUP Kiryl Shutsemau (Meta)
2026-05-25 13:19 ` sashiko-bot
2026-05-25 15:18 ` Kiryl Shutsemau
2026-05-25 11:37 ` [PATCH v4 08/14] userfaultfd: add UFFDIO_REGISTER_MODE_RWP and UFFDIO_RWPROTECT plumbing Kiryl Shutsemau (Meta)
2026-05-25 12:11 ` sashiko-bot
2026-05-25 15:19 ` Kiryl Shutsemau
2026-05-26 8:21 ` Kiryl Shutsemau
2026-05-25 11:37 ` [PATCH v4 09/14] mm/userfaultfd: add RWP fault delivery and expose UFFDIO_REGISTER_MODE_RWP Kiryl Shutsemau (Meta)
2026-05-25 12:18 ` sashiko-bot
2026-05-25 15:27 ` Kiryl Shutsemau
2026-05-25 11:37 ` [PATCH v4 10/14] mm/pagemap: add PAGE_IS_ACCESSED for RWP tracking Kiryl Shutsemau (Meta)
2026-05-25 12:26 ` sashiko-bot
2026-05-25 15:29 ` Kiryl Shutsemau
2026-05-25 11:37 ` [PATCH v4 11/14] userfaultfd: add UFFD_FEATURE_RWP_ASYNC for async fault resolution Kiryl Shutsemau (Meta)
2026-05-25 12:36 ` sashiko-bot
2026-05-25 15:35 ` Kiryl Shutsemau
2026-05-25 11:37 ` [PATCH v4 12/14] userfaultfd: add UFFDIO_SET_MODE for runtime sync/async toggle Kiryl Shutsemau (Meta)
2026-05-25 12:42 ` sashiko-bot [this message]
2026-05-25 15:40 ` Kiryl Shutsemau
2026-05-25 11:37 ` [PATCH v4 13/14] selftests/mm: add userfaultfd RWP tests Kiryl Shutsemau (Meta)
2026-05-25 12:39 ` sashiko-bot
2026-05-25 15:43 ` Kiryl Shutsemau
2026-05-25 11:37 ` [PATCH v4 14/14] Documentation/userfaultfd: document RWP working set tracking Kiryl Shutsemau (Meta)
2026-05-25 12:24 ` sashiko-bot
2026-05-25 15:45 ` Kiryl Shutsemau
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=20260525124220.5336F1F00A3A@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=kvm@vger.kernel.org \
--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