CVE-2024-35956
Last modified
CVE-2024-35956 is a medium-severity vulnerability rated 5.5/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: btrfs: qgroup: fix qgroup prealloc rsv leak in subvolume operations Create subvolume, create snapshot and delete subvolume all use btrfs_subvolume_reserve_metadata() to reserve metadata for the changes done to the parent subvolume's fs tree, which cannot be mediated in the normal way via start_transaction. When quota groups (squota or qgroups) are enabled, this reserves qgroup metadata of type PREALLOC. EPSS estimates a 0.23% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: btrfs: qgroup: fix qgroup prealloc rsv leak in subvolume operations Create subvolume, create snapshot and delete subvolume all use btrfs_subvolume_reserve_metadata() to reserve metadata for the changes done to the parent subvolume's fs tree, which cannot be mediated in the normal way via start_transaction. When quota groups (squota or qgroups) are enabled, this reserves qgroup metadata of type PREALLOC. Once the operation is associated to a transaction, we convert PREALLOC to PERTRANS, which gets cleared in bulk at the end of the transaction. However, the error paths of these three operations were not implementing this lifecycle correctly. They unconditionally converted the PREALLOC to PERTRANS in a generic cleanup step regardless of errors or whether the operation was fully associated to a transaction or not. This resulted in error paths occasionally converting this rsv to PERTRANS without calling record_root_in_trans successfully, which meant that unless that root got recorded in the transaction by some other thread, the end of the transaction would not free that root's PERTRANS, leaking it. Ultimately, this resulted in hitting a WARN in CONFIG_BTRFS_DEBUG builds at unmount for the leaked reservation. The fix is to ensure that every qgroup PREALLOC reservation observes the following properties: 1. any failure before record_root_in_trans is called successfully results in freeing the PREALLOC reservation. 2. after record_root_in_trans, we convert to PERTRANS, and now the transaction owns freeing the reservation. This patch enforces those properties on the three operations. Without it, generic/269 with squotas enabled at mkfs time would fail in ~5-10 runs on my system. With this patch, it ran successfully 1000 times in a row.
Metrics
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
Weakness Enumeration
Affected Software
| Vendor | Product | Versions | Update |
|---|---|---|---|
| Linux | Linux Kernel | >= 5.9.5, < 6.1.120 | — |
| Linux | Linux Kernel | >= 6.2, < 6.6.28 | — |
| Linux | Linux Kernel | >= 6.7, < 6.8.7 | — |
| Linux | Linux Kernel | 6.9 | Rc1 |
References
Timeline
- Published
- Last Modified
- Status
- Modified
Frequently Asked Questions
What is CVE-2024-35956?
How severe is CVE-2024-35956?
How do I fix CVE-2024-35956?
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 2024
- CVE-2024-35950In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2024-35951In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2024-35952In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2024-35953In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2024-35954In the Linux kernel, the following vulnerability has been re…4.7
- CVE-2024-35955In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2024-35957In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2024-35958In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2024-35959In the Linux kernel, the following vulnerability has been re…5.5
- CVE-2024-3596RADIUS Protocol under RFC 2865 is susceptible to forgery att…9
- CVE-2024-35960In the Linux kernel, the following vulnerability has been re…9.1
- CVE-2024-35961In the Linux kernel, the following vulnerability has been re…5.5
Are you affected by CVE-2024-35956?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
