Bug 2400735 (CVE-2023-53506)

Summary: CVE-2023-53506 kernel: udf: Do not bother merging very long extents
Product: [Other] Security Response Reporter: OSIDB Bzimport <bzimport>
Component: vulnerabilityAssignee: Product Security DevOps Team <prodsec-dev>
Status: NEW --- QA Contact:
Severity: medium Docs Contact:
Priority: medium    
Version: unspecifiedKeywords: Security
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: ---
Doc Text:
A flaw was discovered in the UDF (Universal Disk Format) filesystem implementation in the Linux Kernel. The merging logic for very long extents attempted to push as much length as possible into the first extent, which introduced a bug. That bug may cause corruption of file extents on the filesystem when certain long-extent merges occur. A local user (with at least low privileges) on a system using the UDF filesystem could trigger this condition by manipulating extent lengths, potentially leading to file corruption (affecting confidentiality, integrity and availability).
Story Points: ---
Clone Of: Environment:
Last Closed: Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description OSIDB Bzimport 2025-10-01 12:04:22 UTC
In the Linux kernel, the following vulnerability has been resolved:

udf: Do not bother merging very long extents

When merging very long extents we try to push as much length as possible
to the first extent. However this is unnecessarily complicated and not
really worth the trouble. Furthermore there was a bug in the logic
resulting in corrupting extents in the file as syzbot reproducer shows.
So just don't bother with the merging of extents that are too long
together.