CVE-2024-47699: nilfs2: fix potential null-ptr-deref in nilfs_btree_insert()
In the Linux kernel, the following vulnerability has been resolved:
nilfs2: fix potential null-ptr-deref in nilfsbtreeinsert()
Patch series "nilfs2: fix potential issues with empty b-tree nodes".
This series addresses three potential issues with empty b-tree nodes that can occur with corrupted filesystem images, including one recently discovered by syzbot.
This patch (of 3):
If a b-tree is broken on the device, and the b-tree height is greater than 2 (the level of the root node is greater than 1) even if the number of child nodes of the b-tree root is 0, a NULL pointer dereference occurs in nilfsbtreeprepareinsert(), which is called from nilfsbtreeinsert().
This is because, when the number of child nodes of the b-tree root is 0, nilfsbtreedolookup() does not set the block buffer head in any of path[x].bpbh, leaving it as the initial value of NULL, but if the level of the b-tree root node is greater than 1, nilfsbtreegetnonrootnode(), which accesses the buffer memory of path[x].bpbh, is called.
Fix this issue by adding a check to nilfsbtreerootbroken(), which performs sanity checks when reading the root node from the device, to detect this inconsistency.
Thanks to Lizhi Xu for trying to solve the bug and clarifying the cause early on.
Other sources
This CVE was automatically created from a reference found in an email or other text. If you are reading this, then this CVE entry is probably erroneous, since this text should be replaced by the official CVE description automatically.
— Launchpad
Affected Software
Remediation
Event History
Frequently Asked Questions
What is the severity of CVE-2024-47699?
CVE-2024-47699 has been rated with a severity that could lead to potential null pointer dereference in the Linux kernel.
How do I fix CVE-2024-47699?
To fix CVE-2024-47699, update your Linux kernel to a version that incorporates the applied patches, particularly versions 6.1.123-1, 6.1.119-1, 6.12.11-1, or 6.12.12-1.
Which Linux kernel versions are affected by CVE-2024-47699?
CVE-2024-47699 affects Linux kernel versions from 2.6.30 up to 5.10.227, as well as various versions between 5.11 to 6.11.2.
Is there a risk of exploitation for CVE-2024-47699?
Yes, CVE-2024-47699 poses a risk of exploitation due to null pointer dereference vulnerabilities in nilfs2 b-trees.
What mitigation steps should be taken for CVE-2024-47699?
To mitigate the risks associated with CVE-2024-47699, apply the latest kernel security updates and patches immediately.