CVE-2026-97927
Last modified
CVE-2026-97927 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: ufs: create the root dentry after loading cylinder metadata ufs_fill_super() installed sb->s_root before it loaded the cylinder group structures for a writable mount: sb->s_root = d_make_root(inode); ... if (!sb_rdonly(sb)) if (!ufs_read_cylinder_structures(sb)) goto failed; When ufs_read_cylinder_structures() failed, the error path freed the in-core superblock information and set sb->s_fs_info to NULL while sb->s_root stayed installed. get_tree_bdev() then reached deactivate_locked_super(), and because s_root was present, generic_shutdown_super() called sync_filesystem() and the put_super operation.
Description
In the Linux kernel, the following vulnerability has been resolved: ufs: create the root dentry after loading cylinder metadata ufs_fill_super() installed sb->s_root before it loaded the cylinder group structures for a writable mount: sb->s_root = d_make_root(inode); ... if (!sb_rdonly(sb)) if (!ufs_read_cylinder_structures(sb)) goto failed; When ufs_read_cylinder_structures() failed, the error path freed the in-core superblock information and set sb->s_fs_info to NULL while sb->s_root stayed installed. get_tree_bdev() then reached deactivate_locked_super(), and because s_root was present, generic_shutdown_super() called sync_filesystem() and the put_super operation. Both dereference UFS_SB(sb), which is now NULL, so a mount that fails only while reading the cylinder groups oopses during teardown. A crafted image whose first cylinder group cannot be read reaches this path. Load the cylinder group metadata first and create the root dentry last, so the superblock is published to the VFS only once it is fully set up. ufs_setup_cstotal() and ufs_read_cylinder_structures() take only the super_block and do not use the root inode, so the reordering is safe.
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2, < a9804121d55aaa4319c1cac00b99794aa177dd6a; >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2, < 785e523b6c1931d802cab9f85912f3e6c7028af1; >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2, < 8173e051a8acbb4ae6547be0436727944119e0b5; >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2, < 55a4c98abb9694b067c6a031d11501f06b6b523c |
| Linux | Linux | 2.6.12 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-97927?
How severe is CVE-2026-97927?
How do I fix CVE-2026-97927?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-97921In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97922In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97923In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97924In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97925In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97926In the Linux kernel, the following vulnerability has been re…7
- CVE-2026-97928In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97929In the Linux kernel, the following vulnerability has been re…
- CVE-2026-9793A flaw was found in Keycloak. When a JSON Web Encryption (JW…7.5
- CVE-2026-97930In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97931In the Linux kernel, the following vulnerability has been re…7
- CVE-2026-97932In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-97927?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
