Bug 2532303 (CVE-2026-89618) - CVE-2026-89618 kernel: eventfs: Initialize ei->children and ei->list in init_ei()
Summary: CVE-2026-89618 kernel: eventfs: Initialize ei->children and ei->list in init_...
Keywords:
Status: NEW
Alias: CVE-2026-89618
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:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2026-09-11 22:14 UTC by OSIDB Bzimport
Modified: 2026-09-18 19:30 UTC (History)
17 users (show)

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


Attachments (Terms of Use)

Description OSIDB Bzimport 2026-09-11 22:14:35 UTC
In the Linux kernel, the following vulnerability has been resolved:

eventfs: Initialize ei->children and ei->list in init_ei()

eventfs_create_dir() allocates the eventfs_inode and initializes it with
init_ei(). But this does not initialize the eventfs_inode list_heads. If
the eventfs_create_dir() fails due to memory pressure, it will call
free_ei() before it initialized the lists, and that checks to make sure
the eventfs_inode has no children. But because the list wasn't
initialized, it will give a false warning.

Fix it by moving the list initialization into init_ei().

[ Rewrote change log ]


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