Bug 2330349 (CVE-2024-53131) - CVE-2024-53131 kernel: nilfs2: fix null-ptr-deref in block_touch_buffer tracepoint
Summary: CVE-2024-53131 kernel: nilfs2: fix null-ptr-deref in block_touch_buffer trace...
Keywords:
Status: NEW
Alias: CVE-2024-53131
Product: Security Response
Classification: Other
Component: vulnerability
Version: unspecified
Hardware: All
OS: Linux
low
low
Target Milestone: ---
Assignee: Product Security DevOps Team
QA Contact:
URL:
Whiteboard:
Depends On: 2330495
Blocks:
TreeView+ depends on / blocked
 
Reported: 2024-12-04 15:02 UTC by OSIDB Bzimport
Modified: 2024-12-05 04:58 UTC (History)
4 users (show)

Fixed In Version:
Clone Of:
Environment:
Last Closed:
Embargoed:


Attachments (Terms of Use)

Description OSIDB Bzimport 2024-12-04 15:02:04 UTC
In the Linux kernel, the following vulnerability has been resolved:

nilfs2: fix null-ptr-deref in block_touch_buffer tracepoint

Patch series "nilfs2: fix null-ptr-deref bugs on block tracepoints".

This series fixes null pointer dereference bugs that occur when using
nilfs2 and two block-related tracepoints.


This patch (of 2):

It has been reported that when using "block:block_touch_buffer"
tracepoint, touch_buffer() called from __nilfs_get_folio_block() causes a
NULL pointer dereference, or a general protection fault when KASAN is
enabled.

This happens because since the tracepoint was added in touch_buffer(), it
references the dev_t member bh->b_bdev->bd_dev regardless of whether the
buffer head has a pointer to a block_device structure.  In the current
implementation, the block_device structure is set after the function
returns to the caller.

Here, touch_buffer() is used to mark the folio/page that owns the buffer
head as accessed, but the common search helper for folio/page used by the
caller function was optimized to mark the folio/page as accessed when it
was reimplemented a long time ago, eliminating the need to call
touch_buffer() here in the first place.

So this solves the issue by eliminating the touch_buffer() call itself.

Comment 1 Avinash Hanwate 2024-12-05 04:13:59 UTC
Upstream advisory:
https://lore.kernel.org/linux-cve-announce/2024120450-CVE-2024-53131-60ad@gregkh/T


Note You need to log in before you can comment on or make changes to this bug.