Skip to content

Commit 4e95072

Browse files
Barry Songgregkh
Barry Song
authored andcommitted
mm: fix kernel BUG when userfaultfd_move encounters swapcache
commit c50f8e6 upstream. userfaultfd_move() checks whether the PTE entry is present or a swap entry. - If the PTE entry is present, move_present_pte() handles folio migration by setting: src_folio->index = linear_page_index(dst_vma, dst_addr); - If the PTE entry is a swap entry, move_swap_pte() simply copies the PTE to the new dst_addr. This approach is incorrect because, even if the PTE is a swap entry, it can still reference a folio that remains in the swap cache. This creates a race window between steps 2 and 4. 1. add_to_swap: The folio is added to the swapcache. 2. try_to_unmap: PTEs are converted to swap entries. 3. pageout: The folio is written back. 4. Swapcache is cleared. If userfaultfd_move() occurs in the window between steps 2 and 4, after the swap PTE has been moved to the destination, accessing the destination triggers do_swap_page(), which may locate the folio in the swapcache. However, since the folio's index has not been updated to match the destination VMA, do_swap_page() will detect a mismatch. This can result in two critical issues depending on the system configuration. If KSM is disabled, both small and large folios can trigger a BUG during the add_rmap operation due to: page_pgoff(folio, page) != linear_page_index(vma, address) [ 13.336953] page: refcount:6 mapcount:1 mapping:00000000f43db19c index:0xffffaf150 pfn:0x4667c [ 13.337520] head: order:2 mapcount:1 entire_mapcount:0 nr_pages_mapped:1 pincount:0 [ 13.337716] memcg:ffff00000405f000 [ 13.337849] anon flags: 0x3fffc0000020459(locked|uptodate|dirty|owner_priv_1|head|swapbacked|node=0|zone=0|lastcpupid=0xffff) [ 13.338630] raw: 03fffc0000020459 ffff80008507b538 ffff80008507b538 ffff000006260361 [ 13.338831] raw: 0000000ffffaf150 0000000000004000 0000000600000000 ffff00000405f000 [ 13.339031] head: 03fffc0000020459 ffff80008507b538 ffff80008507b538 ffff000006260361 [ 13.339204] head: 0000000ffffaf150 0000000000004000 0000000600000000 ffff00000405f000 [ 13.339375] head: 03fffc0000000202 fffffdffc0199f01 ffffffff00000000 0000000000000001 [ 13.339546] head: 0000000000000004 0000000000000000 00000000ffffffff 0000000000000000 [ 13.339736] page dumped because: VM_BUG_ON_PAGE(page_pgoff(folio, page) != linear_page_index(vma, address)) [ 13.340190] ------------[ cut here ]------------ [ 13.340316] kernel BUG at mm/rmap.c:1380! [ 13.340683] Internal error: Oops - BUG: 00000000f2000800 [#1] PREEMPT SMP [ 13.340969] Modules linked in: [ 13.341257] CPU: 1 UID: 0 PID: 107 Comm: a.out Not tainted 6.14.0-rc3-gcf42737e247a-dirty #299 [ 13.341470] Hardware name: linux,dummy-virt (DT) [ 13.341671] pstate: 60000005 (nZCv daif -PAN -UAO -TCO -DIT -SSBS BTYPE=--) [ 13.341815] pc : __page_check_anon_rmap+0xa0/0xb0 [ 13.341920] lr : __page_check_anon_rmap+0xa0/0xb0 [ 13.342018] sp : ffff80008752bb20 [ 13.342093] x29: ffff80008752bb20 x28: fffffdffc0199f00 x27: 0000000000000001 [ 13.342404] x26: 0000000000000000 x25: 0000000000000001 x24: 0000000000000001 [ 13.342575] x23: 0000ffffaf0d0000 x22: 0000ffffaf0d0000 x21: fffffdffc0199f00 [ 13.342731] x20: fffffdffc0199f00 x19: ffff000006210700 x18: 00000000ffffffff [ 13.342881] x17: 6c203d2120296567 x16: 6170202c6f696c6f x15: 662866666f67705f [ 13.343033] x14: 6567617028454741 x13: 2929737365726464 x12: ffff800083728ab0 [ 13.343183] x11: ffff800082996bf8 x10: 0000000000000fd7 x9 : ffff80008011bc40 [ 13.343351] x8 : 0000000000017fe8 x7 : 00000000fffff000 x6 : ffff8000829eebf8 [ 13.343498] x5 : c0000000fffff000 x4 : 0000000000000000 x3 : 0000000000000000 [ 13.343645] x2 : 0000000000000000 x1 : ffff0000062db980 x0 : 000000000000005f [ 13.343876] Call trace: [ 13.344045] __page_check_anon_rmap+0xa0/0xb0 (P) [ 13.344234] folio_add_anon_rmap_ptes+0x22c/0x320 [ 13.344333] do_swap_page+0x1060/0x1400 [ 13.344417] __handle_mm_fault+0x61c/0xbc8 [ 13.344504] handle_mm_fault+0xd8/0x2e8 [ 13.344586] do_page_fault+0x20c/0x770 [ 13.344673] do_translation_fault+0xb4/0xf0 [ 13.344759] do_mem_abort+0x48/0xa0 [ 13.344842] el0_da+0x58/0x130 [ 13.344914] el0t_64_sync_handler+0xc4/0x138 [ 13.345002] el0t_64_sync+0x1ac/0x1b0 [ 13.345208] Code: aa1503e0 f000f801 910f6021 97ff5779 (d4210000) [ 13.345504] ---[ end trace 0000000000000000 ]--- [ 13.345715] note: a.out[107] exited with irqs disabled [ 13.345954] note: a.out[107] exited with preempt_count 2 If KSM is enabled, Peter Xu also discovered that do_swap_page() may trigger an unexpected CoW operation for small folios because ksm_might_need_to_copy() allocates a new folio when the folio index does not match linear_page_index(vma, addr). This patch also checks the swapcache when handling swap entries. If a match is found in the swapcache, it processes it similarly to a present PTE. However, there are some differences. For example, the folio is no longer exclusive because folio_try_share_anon_rmap_pte() is performed during unmapping. Furthermore, in the case of swapcache, the folio has already been unmapped, eliminating the risk of concurrent rmap walks and removing the need to acquire src_folio's anon_vma or lock. Note that for large folios, in the swapcache handling path, we directly return -EBUSY since split_folio() will return -EBUSY regardless if the folio is under writeback or unmapped. This is not an urgent issue, so a follow-up patch may address it separately. [[email protected]: minor cleanup according to Peter Xu] Link: https://lkml.kernel.org/r/[email protected] Link: https://lkml.kernel.org/r/[email protected] Fixes: adef440 ("userfaultfd: UFFDIO_MOVE uABI") Signed-off-by: Barry Song <[email protected]> Acked-by: Peter Xu <[email protected]> Reviewed-by: Suren Baghdasaryan <[email protected]> Cc: Andrea Arcangeli <[email protected]> Cc: Al Viro <[email protected]> Cc: Axel Rasmussen <[email protected]> Cc: Brian Geffon <[email protected]> Cc: Christian Brauner <[email protected]> Cc: David Hildenbrand <[email protected]> Cc: Hugh Dickins <[email protected]> Cc: Jann Horn <[email protected]> Cc: Kalesh Singh <[email protected]> Cc: Liam R. Howlett <[email protected]> Cc: Lokesh Gidra <[email protected]> Cc: Matthew Wilcox (Oracle) <[email protected]> Cc: Michal Hocko <[email protected]> Cc: Mike Rapoport (IBM) <[email protected]> Cc: Nicolas Geoffray <[email protected]> Cc: Ryan Roberts <[email protected]> Cc: Shuah Khan <[email protected]> Cc: ZhangPeng <[email protected]> Cc: Tangquan Zheng <[email protected]> Cc: <[email protected]> Signed-off-by: Andrew Morton <[email protected]> [ surenb: resolved merged conflict caused by the difference in move_swap_pte() arguments ] Signed-off-by: Suren Baghdasaryan <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent a74979d commit 4e95072

File tree

1 file changed

+66
-9
lines changed

1 file changed

+66
-9
lines changed

mm/userfaultfd.c

Lines changed: 66 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#include <asm/tlbflush.h>
1919
#include <asm/tlb.h>
2020
#include "internal.h"
21+
#include "swap.h"
2122

2223
static __always_inline
2324
bool validate_dst_vma(struct vm_area_struct *dst_vma, unsigned long dst_end)
@@ -1067,15 +1068,13 @@ static int move_present_pte(struct mm_struct *mm,
10671068
return err;
10681069
}
10691070

1070-
static int move_swap_pte(struct mm_struct *mm,
1071+
static int move_swap_pte(struct mm_struct *mm, struct vm_area_struct *dst_vma,
10711072
unsigned long dst_addr, unsigned long src_addr,
10721073
pte_t *dst_pte, pte_t *src_pte,
10731074
pte_t orig_dst_pte, pte_t orig_src_pte,
1074-
spinlock_t *dst_ptl, spinlock_t *src_ptl)
1075+
spinlock_t *dst_ptl, spinlock_t *src_ptl,
1076+
struct folio *src_folio)
10751077
{
1076-
if (!pte_swp_exclusive(orig_src_pte))
1077-
return -EBUSY;
1078-
10791078
double_pt_lock(dst_ptl, src_ptl);
10801079

10811080
if (!pte_same(ptep_get(src_pte), orig_src_pte) ||
@@ -1084,6 +1083,16 @@ static int move_swap_pte(struct mm_struct *mm,
10841083
return -EAGAIN;
10851084
}
10861085

1086+
/*
1087+
* The src_folio resides in the swapcache, requiring an update to its
1088+
* index and mapping to align with the dst_vma, where a swap-in may
1089+
* occur and hit the swapcache after moving the PTE.
1090+
*/
1091+
if (src_folio) {
1092+
folio_move_anon_rmap(src_folio, dst_vma);
1093+
src_folio->index = linear_page_index(dst_vma, dst_addr);
1094+
}
1095+
10871096
orig_src_pte = ptep_get_and_clear(mm, src_addr, src_pte);
10881097
set_pte_at(mm, dst_addr, dst_pte, orig_src_pte);
10891098
double_pt_unlock(dst_ptl, src_ptl);
@@ -1130,6 +1139,7 @@ static int move_pages_pte(struct mm_struct *mm, pmd_t *dst_pmd, pmd_t *src_pmd,
11301139
__u64 mode)
11311140
{
11321141
swp_entry_t entry;
1142+
struct swap_info_struct *si = NULL;
11331143
pte_t orig_src_pte, orig_dst_pte;
11341144
pte_t src_folio_pte;
11351145
spinlock_t *src_ptl, *dst_ptl;
@@ -1312,6 +1322,8 @@ static int move_pages_pte(struct mm_struct *mm, pmd_t *dst_pmd, pmd_t *src_pmd,
13121322
orig_dst_pte, orig_src_pte,
13131323
dst_ptl, src_ptl, src_folio);
13141324
} else {
1325+
struct folio *folio = NULL;
1326+
13151327
entry = pte_to_swp_entry(orig_src_pte);
13161328
if (non_swap_entry(entry)) {
13171329
if (is_migration_entry(entry)) {
@@ -1325,10 +1337,53 @@ static int move_pages_pte(struct mm_struct *mm, pmd_t *dst_pmd, pmd_t *src_pmd,
13251337
goto out;
13261338
}
13271339

1328-
err = move_swap_pte(mm, dst_addr, src_addr,
1329-
dst_pte, src_pte,
1330-
orig_dst_pte, orig_src_pte,
1331-
dst_ptl, src_ptl);
1340+
if (!pte_swp_exclusive(orig_src_pte)) {
1341+
err = -EBUSY;
1342+
goto out;
1343+
}
1344+
1345+
si = get_swap_device(entry);
1346+
if (unlikely(!si)) {
1347+
err = -EAGAIN;
1348+
goto out;
1349+
}
1350+
/*
1351+
* Verify the existence of the swapcache. If present, the folio's
1352+
* index and mapping must be updated even when the PTE is a swap
1353+
* entry. The anon_vma lock is not taken during this process since
1354+
* the folio has already been unmapped, and the swap entry is
1355+
* exclusive, preventing rmap walks.
1356+
*
1357+
* For large folios, return -EBUSY immediately, as split_folio()
1358+
* also returns -EBUSY when attempting to split unmapped large
1359+
* folios in the swapcache. This issue needs to be resolved
1360+
* separately to allow proper handling.
1361+
*/
1362+
if (!src_folio)
1363+
folio = filemap_get_folio(swap_address_space(entry),
1364+
swap_cache_index(entry));
1365+
if (!IS_ERR_OR_NULL(folio)) {
1366+
if (folio_test_large(folio)) {
1367+
err = -EBUSY;
1368+
folio_put(folio);
1369+
goto out;
1370+
}
1371+
src_folio = folio;
1372+
src_folio_pte = orig_src_pte;
1373+
if (!folio_trylock(src_folio)) {
1374+
pte_unmap(&orig_src_pte);
1375+
pte_unmap(&orig_dst_pte);
1376+
src_pte = dst_pte = NULL;
1377+
put_swap_device(si);
1378+
si = NULL;
1379+
/* now we can block and wait */
1380+
folio_lock(src_folio);
1381+
goto retry;
1382+
}
1383+
}
1384+
err = move_swap_pte(mm, dst_vma, dst_addr, src_addr, dst_pte, src_pte,
1385+
orig_dst_pte, orig_src_pte,
1386+
dst_ptl, src_ptl, src_folio);
13321387
}
13331388

13341389
out:
@@ -1345,6 +1400,8 @@ static int move_pages_pte(struct mm_struct *mm, pmd_t *dst_pmd, pmd_t *src_pmd,
13451400
if (src_pte)
13461401
pte_unmap(src_pte);
13471402
mmu_notifier_invalidate_range_end(&range);
1403+
if (si)
1404+
put_swap_device(si);
13481405

13491406
return err;
13501407
}

0 commit comments

Comments
 (0)