CVE-2026-23097
MediumIn the Linux kernel, the following vulnerability has been resolved: migrate: correct lock ordering for hugetlb file folios Syzbot has found a deadlock (analyzed by Lance Yang): 1) Task (5749): Holds folio_lock, then tries to acquire i_mmap_rwsem(read lock). 2) Task (5754): Holds i_mmap_rwsem(write lock), then tries to acquire folio_lock. migrate_pages() -> migrate_hugetlbs() -> unmap_and_move_huge_page() <- Takes folio_lock! -> remove_migration_ptes() -> __rmap_walk_file() -> i_mmap_lock_read() <- Waits for i_mmap_rwsem(read lock)! hugetlbfs_fallocate() -> hugetlbfs_punch_hole() <- Takes i_mmap_rwsem(write lock)! -> hugetlbfs_zero_partial_page() -> filemap_lock_hugetlb_folio() -> filemap_lock_folio() -> __filemap_get_folio <- Waits for folio_lock! The migration path is the one taking locks in the wrong order according to the documentation at the top of mm/rmap.c. So expand the scope of the existing i_mmap_lock to cover the calls to remove_migration_ptes() too. This is (mostly) how it used to be after commit c0d0381ade79. That was removed by 336bf30eb765 for both file & anon hugetlb pages when it should only have been removed for anon hugetlb pages.
CVSS 3.1 score
5.5
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Affected versions
Linux kernel versions
5.9.9,
5.10
and later are affected. Fixed in
5.10.249,
5.15.199,
6.1.162,
6.6.122,
6.12.68,
6.18.8,
6.19
and their respective stable series.
References
The following references provide additional information about CVE-2026-23097 including vendor advisories, patch commits, exploit details, and third-party analysis. Links are sourced from the NIST NVD database.
-
PatchKernel patch commithttps://git.kernel.org/stable/c/1b68efce6dd483d22f50d0d3800c4cfda14b1305
-
PatchKernel patch commithttps://git.kernel.org/stable/c/526394af4e8ade89cacd1a9ce2b97712712fcc34
-
PatchKernel patch commithttps://git.kernel.org/stable/c/5edb9854f8df5428b40990a1c7d60507da5bd330
Frequently asked questions
-
What is CVE-2026-23097?
CVE-2026-23097 is a Medium severity Linux kernel vulnerability with a CVSS score of 5.5 out of 10 . It affects Linux kernel versions from 5.9.9 onward and has been patched in 5.10.249, 5.15.199, 6.1.162 and others. CVE-2026-23097 has not been confirmed as actively exploited and is not listed in the CISA KEV catalog.
-
What is the CVSS score for CVE-2026-23097?
CVE-2026-23097 has a CVSS score of 5.5 out of 10, rated Medium severity (CVSS 3.1). The vector string is
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H. -
Is there a patch available for CVE-2026-23097?
Yes — CVE-2026-23097 has been patched. Fixed versions include 5.10.249, 5.15.199, 6.1.162 and others. If you are running Linux kernel 5.9.9 or later up to the fix versions, apply the relevant patch for your kernel branch.
-
Is CVE-2026-23097 actively exploited?
No — CVE-2026-23097 has not been confirmed as actively exploited. It is not listed in the CISA Known Exploited Vulnerabilities (KEV) catalog.