CVE-2026-97902
Last modified
CVE-2026-97902 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: fs: don't return -EINVAL for successful nested thaw Commit 7366f8b6fc6a ("fs: handle freezing from multiple devices") replaced the freeze_holders bitmask with per-holder counters to allow nested freezes. In the bitmask version, a thaw that released a shared hold while another holder remained returned 0.
Description
In the Linux kernel, the following vulnerability has been resolved: fs: don't return -EINVAL for successful nested thaw Commit 7366f8b6fc6a ("fs: handle freezing from multiple devices") replaced the freeze_holders bitmask with per-holder counters to allow nested freezes. In the bitmask version, a thaw that released a shared hold while another holder remained returned 0. Since the rework, thaw_super_locked() drops the freeze reference via freeze_dec() but then returns -EINVAL when other freezers remain, misinforming the caller: the thaw did succeed, the superblock just stays frozen for the remaining holders. This breaks bdev-initiated freezing. When a filesystem is frozen with FIFREEZE and additionally frozen via bdev_freeze() -- which nests by design, see fs_bdev_freeze() -- the subsequent bdev_thaw() receives -EINVAL from the holder op although its freeze reference was dropped, and therefore keeps bd_fsfreeze_count elevated. Then device-mapper's unlock_fs() ignores bdev_thaw()'s return value, so nothing rebalances the count. After the user's FITHAW and umount, the block device can never be mounted again: dm-1: Can't mount, blockdev is frozen There is no way for userspace to drop the leaked count; only destroying the block device (or a reboot) recovers the device. Reproducer (any kernel since v6.8): dmsetup create dut --table "0 $(blockdev --getsz "$DEV") linear $DEV 0" mkfs.ext4 /dev/mapper/dut mount /dev/mapper/dut /mnt fsfreeze --freeze /mnt # freeze_ucount == 1 dmsetup suspend dut # bd_fsfreeze_count == 1, ucount == 2 dmsetup resume dut # ucount 2 -> 1, but thaw_super() # returns -EINVAL, so bdev_thaw() # keeps bd_fsfreeze_count at 1 fsfreeze --unfreeze /mnt # filesystem thaws fine umount /mnt mount /dev/mapper/dut /mnt # EBUSY, forever The same happens with fsfreeze held across an LVM snapshot of the origin volume. fs_bdev_thaw()'s documentation already describes the intended semantics: "If this function returns zero it doesn't mean that the filesystem is unfrozen as it may have been frozen multiple times". Restore them by returning 0 when a nested thaw drops its hold while other freezers remain. Thawing without holding a freeze still fails with -EINVAL as may_unfreeze() rejects that case before the reference count is touched.
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 7366f8b6fc6aa21c4199cb5d337b023df69745b0, < 111339816138f042a59778322f941edc26903484; >= 7366f8b6fc6aa21c4199cb5d337b023df69745b0, < 76e478499913dc1f368aebe85b28b7d1265985ff; >= 7366f8b6fc6aa21c4199cb5d337b023df69745b0, < ff2a694f6613d54ebd77ba72583d4d94446f55bd; >= 7366f8b6fc6aa21c4199cb5d337b023df69745b0, < fe967191e5851ea79818c5fe4e781c3882139218 |
| Linux | Linux | 6.8 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-97902?
How severe is CVE-2026-97902?
How do I fix CVE-2026-97902?
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-97896A vulnerability was identified in krayin laravel-crm up to 2…3.5
- CVE-2026-97897A security flaw has been discovered in Krayin laravel-crm up…3.5
- CVE-2026-97898Insecure Direct Object Reference / missing object-level auth…8.4
- CVE-2026-97899In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97900In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97901In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97903In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-97904In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97905In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97906In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97907In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97908In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-97902?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
