* [PATCH v2 0/2] userfaultfd: clear the inherited uffd bit in move_swap_pte()
@ 2026-09-25 4:29 Donggeun Yoo
2026-09-25 4:29 ` [PATCH v2 1/2] " Donggeun Yoo
2026-09-25 4:29 ` [PATCH v2 2/2] selftests/mm: add a test for UFFDIO_MOVE of a write-protected swap entry Donggeun Yoo
0 siblings, 2 replies; 6+ messages in thread
From: Donggeun Yoo @ 2026-09-25 4:29 UTC (permalink / raw)
To: akpm, rppt
Cc: peterx, surenb, aarcange, david, ljs, liam, vbabka, mhocko,
shuah, kirill, linux-mm, linux-kselftest, linux-kernel,
donggeunyoo.kernel
UFFDIO_MOVE on a swapped-out page installs the source PTE at the
destination unchanged, so a uffd bit set on the source lands in a
destination VMA that was never registered for write protection, and
nothing clears it afterwards. Patch 1 clears the bit unless the
destination is RWP-registered, which is what the present-page and
zeropage move paths already do. Patch 2 adds the test that catches it.
v1: https://lore.kernel.org/all/20260919004630.1159895-1-donggeunyoo.kernel@gmail.com/
Changes in v2:
- patch 1: clear the bit unconditionally (Kiryl Shutsemau)
- patch 1: rewrite the changelog for readability (Mike Rapoport)
- add Assisted-by: LLM (Mike Rapoport)
x86_64 defconfig plus USERFAULTFD, TRANSPARENT_HUGEPAGE, GUP_TEST and a
swap device, under QEMU, base 17e7b8eacf4c:
uffd-unit-tests before after
move-swap-wp on anon not ok ok
the other 114 unit tests ok ok
uffd-wp-mremap, 38 tests ok ok
pagemap bit 57 at the destination before after
swapped page, dst not armed set clear
swapped page, dst WP-armed set clear
swapped page, dst RWP-armed set set
resident page, dst WP-armed clear clear
MADV_COLLAPSE over 2 MB at dst EINVAL 0
Donggeun Yoo (2):
userfaultfd: clear the inherited uffd bit in move_swap_pte()
selftests/mm: add a test for UFFDIO_MOVE of a write-protected swap
entry
mm/userfaultfd.c | 1 +
tools/testing/selftests/mm/uffd-unit-tests.c | 61 ++++++++++++++++++++
2 files changed, 62 insertions(+)
--
2.53.0
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v2 1/2] userfaultfd: clear the inherited uffd bit in move_swap_pte()
2026-09-25 4:29 [PATCH v2 0/2] userfaultfd: clear the inherited uffd bit in move_swap_pte() Donggeun Yoo
@ 2026-09-25 4:29 ` Donggeun Yoo
2026-09-25 4:48 ` Andrew Morton
2026-09-25 4:29 ` [PATCH v2 2/2] selftests/mm: add a test for UFFDIO_MOVE of a write-protected swap entry Donggeun Yoo
1 sibling, 1 reply; 6+ messages in thread
From: Donggeun Yoo @ 2026-09-25 4:29 UTC (permalink / raw)
To: akpm, rppt
Cc: peterx, surenb, aarcange, david, ljs, liam, vbabka, mhocko,
shuah, kirill, linux-mm, linux-kselftest, linux-kernel,
donggeunyoo.kernel, stable
UFFDIO_MOVE on a swapped-out page installs the source PTE at the
destination unchanged, so a uffd bit set on the source lands in a
destination VMA that was never registered for write protection. It
can't be unset there, and THP collapse can't happen either, because a
swap entry with the uffd bit set makes the scan bail.
I don't think it's intentional because for an unswapped page the bit
doesn't come along, and I don't see why being swapped out should change
that.
Clear the uffd bit on the moved swap entry unless the destination is
RWP-registered.
Fixes: adef440691ba ("userfaultfd: UFFDIO_MOVE uABI")
Cc: <stable@vger.kernel.org>
Assisted-by: LLM
Signed-off-by: Donggeun Yoo <donggeunyoo.kernel@gmail.com>
---
mm/userfaultfd.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/mm/userfaultfd.c b/mm/userfaultfd.c
index 74f04c323c50f..f39f109f17989 100644
--- a/mm/userfaultfd.c
+++ b/mm/userfaultfd.c
@@ -1449,6 +1449,7 @@ static int move_swap_pte(struct mm_struct *mm, struct vm_area_struct *dst_vma,
orig_src_pte = ptep_get_and_clear(mm, src_addr, src_pte);
if (pgtable_supports_soft_dirty())
orig_src_pte = pte_swp_mksoft_dirty(orig_src_pte);
+ orig_src_pte = pte_swp_clear_uffd(orig_src_pte);
/* Re-arm RWP on the moved swap entry if dst_vma is RWP-registered. */
if (userfaultfd_rwp(dst_vma))
orig_src_pte = pte_swp_mkuffd(orig_src_pte);
--
2.53.0
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v2 2/2] selftests/mm: add a test for UFFDIO_MOVE of a write-protected swap entry
2026-09-25 4:29 [PATCH v2 0/2] userfaultfd: clear the inherited uffd bit in move_swap_pte() Donggeun Yoo
2026-09-25 4:29 ` [PATCH v2 1/2] " Donggeun Yoo
@ 2026-09-25 4:29 ` Donggeun Yoo
2026-09-25 7:41 ` David Hildenbrand (Arm)
1 sibling, 1 reply; 6+ messages in thread
From: Donggeun Yoo @ 2026-09-25 4:29 UTC (permalink / raw)
To: akpm, rppt
Cc: peterx, surenb, aarcange, david, ljs, liam, vbabka, mhocko,
shuah, kirill, linux-mm, linux-kselftest, linux-kernel,
donggeunyoo.kernel
Move a swapped-out page out of a write-protected area into a destination
registered for missing faults only, and read pagemap bit 57 at the
destination. The destination was never write-protected, so the bit must
be clear.
Assisted-by: LLM
Signed-off-by: Donggeun Yoo <donggeunyoo.kernel@gmail.com>
---
tools/testing/selftests/mm/uffd-unit-tests.c | 61 ++++++++++++++++++++
1 file changed, 61 insertions(+)
diff --git a/tools/testing/selftests/mm/uffd-unit-tests.c b/tools/testing/selftests/mm/uffd-unit-tests.c
index ef9b3956bdcfd..ae8b718f0a278 100644
--- a/tools/testing/selftests/mm/uffd-unit-tests.c
+++ b/tools/testing/selftests/mm/uffd-unit-tests.c
@@ -2037,6 +2037,59 @@ static void uffd_move_pmd_split_test(uffd_global_test_opts_t *gopts, uffd_test_a
uffd_move_pmd_handle_fault);
}
+/*
+ * Moving a swapped-out page out of a write-protected area must not carry the
+ * uffd-wp bit into a destination that is not write-protect registered: such a
+ * bit is never cleared afterwards, so pagemap keeps reporting the page as
+ * uffd-tracked.
+ *
+ * Needs a swap device; skipped if MADV_PAGEOUT cannot evict the page.
+ */
+static void uffd_move_swap_wp_test(uffd_global_test_opts_t *gopts,
+ uffd_test_args_t *targs)
+{
+ unsigned long page_size = gopts->page_size;
+ struct uffdio_move move = { };
+ int pagemap_fd, i;
+
+ if (uffd_register(gopts->uffd, gopts->area_src, page_size,
+ false, true, false))
+ err("register src failure");
+ if (uffd_register(gopts->uffd, gopts->area_dst, page_size,
+ true, false, false))
+ err("register dst failure");
+
+ wp_range(gopts->uffd, (unsigned long)gopts->area_src, page_size, true);
+
+ pagemap_fd = pagemap_open();
+ for (i = 0; i < 100; i++) {
+ if (madvise(gopts->area_src, page_size, MADV_PAGEOUT))
+ err("MADV_PAGEOUT");
+ if (pagemap_is_swapped(pagemap_fd, gopts->area_src))
+ break;
+ usleep(10000);
+ }
+ if (!pagemap_is_swapped(pagemap_fd, gopts->area_src)) {
+ uffd_test_skip("MADV_PAGEOUT did not swap the page; is swap enabled?");
+ goto out;
+ }
+
+ move.dst = (unsigned long)gopts->area_dst;
+ move.src = (unsigned long)gopts->area_src;
+ move.len = page_size;
+ if (ioctl(gopts->uffd, UFFDIO_MOVE, &move))
+ err("UFFDIO_MOVE");
+
+ if (pagemap_get_entry(pagemap_fd, gopts->area_dst) & PM_UFFD_WP)
+ uffd_test_fail("uffd-wp bit moved into an area that is not write-protected");
+ else
+ uffd_test_pass();
+out:
+ close(pagemap_fd);
+ uffd_unregister(gopts->uffd, gopts->area_src, page_size);
+ uffd_unregister(gopts->uffd, gopts->area_dst, page_size);
+}
+
static bool
uffdio_verify_results(const char *name, int ret, int error, long result)
{
@@ -2359,6 +2412,14 @@ uffd_test_case_t uffd_tests[] = {
.uffd_feature_required = UFFD_FEATURE_MOVE,
.test_case_ops = &uffd_move_test_pmd_case_ops,
},
+ {
+ .name = "move-swap-wp",
+ .uffd_fn = uffd_move_swap_wp_test,
+ .mem_targets = MEM_ANON,
+ .uffd_feature_required = UFFD_FEATURE_MOVE |
+ UFFD_FEATURE_PAGEFAULT_FLAG_WP,
+ .test_case_ops = &uffd_move_test_case_ops,
+ },
{
.name = "wp-fork",
.uffd_fn = uffd_wp_fork_test,
--
2.53.0
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2 1/2] userfaultfd: clear the inherited uffd bit in move_swap_pte()
2026-09-25 4:29 ` [PATCH v2 1/2] " Donggeun Yoo
@ 2026-09-25 4:48 ` Andrew Morton
2026-09-25 7:36 ` David Hildenbrand (Arm)
0 siblings, 1 reply; 6+ messages in thread
From: Andrew Morton @ 2026-09-25 4:48 UTC (permalink / raw)
To: Donggeun Yoo
Cc: rppt, peterx, surenb, aarcange, david, ljs, liam, vbabka, mhocko,
shuah, kirill, linux-mm, linux-kselftest, linux-kernel, stable
On Fri, 25 Sep 2026 13:29:06 +0900 Donggeun Yoo <donggeunyoo.kernel@gmail.com> wrote:
> UFFDIO_MOVE on a swapped-out page installs the source PTE at the
> destination unchanged, so a uffd bit set on the source lands in a
> destination VMA that was never registered for write protection. It
> can't be unset there, and THP collapse can't happen either, because a
> swap entry with the uffd bit set makes the scan bail.
>
> I don't think it's intentional because for an unswapped page the bit
> doesn't come along, and I don't see why being swapped out should change
> that.
>
> Clear the uffd bit on the moved swap entry unless the destination is
> RWP-registered.
Thanks, but...
When fixing a bug, please always fully describe the userspace-visible
effects of that bug.
> Fixes: adef440691ba ("userfaultfd: UFFDIO_MOVE uABI")
> Cc: <stable@vger.kernel.org>
Especially when proposing a backport.
Please review the first half-page of
Documentation/process/stable-kernel-rules.rst
I don't mean "be reluctant to backport". I mean "when proposing a
backport, explain *why*".
> Assisted-by: LLM
Great! Please add a prompt to LLM's .md ensuring that future
changelogs always provide this information. Please also share that
update with the rest of your organization.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2 1/2] userfaultfd: clear the inherited uffd bit in move_swap_pte()
2026-09-25 4:48 ` Andrew Morton
@ 2026-09-25 7:36 ` David Hildenbrand (Arm)
0 siblings, 0 replies; 6+ messages in thread
From: David Hildenbrand (Arm) @ 2026-09-25 7:36 UTC (permalink / raw)
To: Andrew Morton, Donggeun Yoo
Cc: rppt, peterx, surenb, aarcange, ljs, liam, vbabka, mhocko, shuah,
kirill, linux-mm, linux-kselftest, linux-kernel, stable
On 9/25/26 06:48, Andrew Morton wrote:
> On Fri, 25 Sep 2026 13:29:06 +0900 Donggeun Yoo <donggeunyoo.kernel@gmail.com> wrote:
>
>> UFFDIO_MOVE on a swapped-out page installs the source PTE at the
>> destination unchanged, so a uffd bit set on the source lands in a
>> destination VMA that was never registered for write protection. It
>> can't be unset there, and THP collapse can't happen either, because a
>> swap entry with the uffd bit set makes the scan bail.
>>
>> I don't think it's intentional because for an unswapped page the bit
>> doesn't come along, and I don't see why being swapped out should change
>> that.
>>
>> Clear the uffd bit on the moved swap entry unless the destination is
>> RWP-registered.
>
> Thanks, but...
>
> When fixing a bug, please always fully describe the userspace-visible
> effects of that bug.
It would also be helpful to describe if this was actually hit in practice so
far. IOW, how relevant is this in practice.
Will this trigger a kernel splat later?
Someone would have to use UFFD_WP/UFFD_RWP with UFFDIO_MOVE, and have
UFFD_WP/UFFD_RWP disabled on the destination vma ... and then work on a swap entry.
Code itself LGTM
--
Cheers,
David
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2 2/2] selftests/mm: add a test for UFFDIO_MOVE of a write-protected swap entry
2026-09-25 4:29 ` [PATCH v2 2/2] selftests/mm: add a test for UFFDIO_MOVE of a write-protected swap entry Donggeun Yoo
@ 2026-09-25 7:41 ` David Hildenbrand (Arm)
0 siblings, 0 replies; 6+ messages in thread
From: David Hildenbrand (Arm) @ 2026-09-25 7:41 UTC (permalink / raw)
To: Donggeun Yoo, akpm, rppt
Cc: peterx, surenb, aarcange, ljs, liam, vbabka, mhocko, shuah,
kirill, linux-mm, linux-kselftest, linux-kernel
On 9/25/26 06:29, Donggeun Yoo wrote:
> Move a swapped-out page out of a write-protected area into a destination
> registered for missing faults only, and read pagemap bit 57 at the
> destination. The destination was never write-protected, so the bit must
> be clear.
>
> Assisted-by: LLM
> Signed-off-by: Donggeun Yoo <donggeunyoo.kernel@gmail.com>
> ---
> tools/testing/selftests/mm/uffd-unit-tests.c | 61 ++++++++++++++++++++
> 1 file changed, 61 insertions(+)
>
> diff --git a/tools/testing/selftests/mm/uffd-unit-tests.c b/tools/testing/selftests/mm/uffd-unit-tests.c
> index ef9b3956bdcfd..ae8b718f0a278 100644
> --- a/tools/testing/selftests/mm/uffd-unit-tests.c
> +++ b/tools/testing/selftests/mm/uffd-unit-tests.c
> @@ -2037,6 +2037,59 @@ static void uffd_move_pmd_split_test(uffd_global_test_opts_t *gopts, uffd_test_a
> uffd_move_pmd_handle_fault);
> }
>
> +/*
> + * Moving a swapped-out page out of a write-protected area must not carry the
> + * uffd-wp bit into a destination that is not write-protect registered: such a
> + * bit is never cleared afterwards, so pagemap keeps reporting the page as
> + * uffd-tracked.
> + *
> + * Needs a swap device; skipped if MADV_PAGEOUT cannot evict the page.
> + */
> +static void uffd_move_swap_wp_test(uffd_global_test_opts_t *gopts,
> + uffd_test_args_t *targs)
> +{
> + unsigned long page_size = gopts->page_size;
> + struct uffdio_move move = { };
> + int pagemap_fd, i;
> +
> + if (uffd_register(gopts->uffd, gopts->area_src, page_size,
> + false, true, false))
> + err("register src failure");
> + if (uffd_register(gopts->uffd, gopts->area_dst, page_size,
> + true, false, false))
Side note: this binary encoding of features is horrible.
> + err("register dst failure");
> +
> + wp_range(gopts->uffd, (unsigned long)gopts->area_src, page_size, true);
> +
> + pagemap_fd = pagemap_open();
> + for (i = 0; i < 100; i++) {
> + if (madvise(gopts->area_src, page_size, MADV_PAGEOUT))
> + err("MADV_PAGEOUT");
> + if (pagemap_is_swapped(pagemap_fd, gopts->area_src))
> + break;
> + usleep(10000);
> + }
Is this loop really required? I thought the page should just be unmapped from
the page table. It might still be in the swapcache and under writeback, but
that's irrelevant.
> + if (!pagemap_is_swapped(pagemap_fd, gopts->area_src)) {
> + uffd_test_skip("MADV_PAGEOUT did not swap the page; is swap enabled?");
> + goto out;
> + }
> +
> + move.dst = (unsigned long)gopts->area_dst;
> + move.src = (unsigned long)gopts->area_src;
> + move.len = page_size;
> + if (ioctl(gopts->uffd, UFFDIO_MOVE, &move))
> + err("UFFDIO_MOVE");
> +
> + if (pagemap_get_entry(pagemap_fd, gopts->area_dst) & PM_UFFD_WP)
> + uffd_test_fail("uffd-wp bit moved into an area that is not write-protected");
> + else
> + uffd_test_pass();
> +out:
> + close(pagemap_fd);
> + uffd_unregister(gopts->uffd, gopts->area_src, page_size);
> + uffd_unregister(gopts->uffd, gopts->area_dst, page_size);
> +}
> +
> static bool
> uffdio_verify_results(const char *name, int ret, int error, long result)
> {
> @@ -2359,6 +2412,14 @@ uffd_test_case_t uffd_tests[] = {
> .uffd_feature_required = UFFD_FEATURE_MOVE,
> .test_case_ops = &uffd_move_test_pmd_case_ops,
> },
> + {
> + .name = "move-swap-wp",
> + .uffd_fn = uffd_move_swap_wp_test,
> + .mem_targets = MEM_ANON,
> + .uffd_feature_required = UFFD_FEATURE_MOVE |
> + UFFD_FEATURE_PAGEFAULT_FLAG_WP,
> + .test_case_ops = &uffd_move_test_case_ops,
> + },
Do we also want to check wrp? I'd assume it suffers from the same problem (did
not check carefully though)
--
Cheers,
David
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-09-25 7:41 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-25 4:29 [PATCH v2 0/2] userfaultfd: clear the inherited uffd bit in move_swap_pte() Donggeun Yoo
2026-09-25 4:29 ` [PATCH v2 1/2] " Donggeun Yoo
2026-09-25 4:48 ` Andrew Morton
2026-09-25 7:36 ` David Hildenbrand (Arm)
2026-09-25 4:29 ` [PATCH v2 2/2] selftests/mm: add a test for UFFDIO_MOVE of a write-protected swap entry Donggeun Yoo
2026-09-25 7:41 ` David Hildenbrand (Arm)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®