CVE-2026-31689 Details
Description
In the Linux kernel, the following vulnerability has been resolved: EDAC/mc: Fix error path ordering in edac_mc_alloc() When the mci->pvt_info allocation in edac_mc_alloc() fails, the error path will call put_device() which will end up calling the device's release function. However, the init ordering is wrong such that device_initialize() happens *after* the failed allocation and thus the device itself and the release function pointer are not initialized yet when they're called: MCE: In-kernel MCE decoding enabled. ------------[ cut here ]------------ kobject: '(null)': is not initialized, yet kobject_put() is being called. WARNING: lib/kobject.c:734 at kobject_put, CPU#22: systemd-udevd CPU: 22 UID: 0 PID: 538 Comm: systemd-udevd Not tainted 7.0.0-rc1+ #2 PREEMPT(full) RIP: 0010:kobject_put Call Trace: <TASK> edac_mc_alloc+0xbe/0xe0 [edac_core] amd64_edac_init+0x7a4/0xff0 [amd64_edac] ? __pfx_amd64_edac_init+0x10/0x10 [amd64_edac] do_one_initcall ... Reorder the calling sequence so that the device is initialized and thus the release function pointer is properly set before it can be used. This was found by Claude while reviewing another EDAC patch.
A vulnerability exists in the Linux kernel's Error Detection and Correction (EDAC) memory controller driver. The issue arises in the 'edac_mc_alloc()' function, where the allocation of private information fails. This failure triggers an error path that calls 'put_device()', which in turn invokes the device's release function. However, the initialization order is incorrect; 'device_initialize()' is called after the allocation failure, leaving the device and its release function pointer uninitialized. This flaw can lead to a warning about an uninitialized kobject being released, as observed in the systemd-udevd process.
Users can upgrade to the latest stable version of the Linux kernel, where this vulnerability has been addressed. Instructions for downloading the latest kernel version can be found on the official Linux kernel website.
Metrics
CVSS 4.0 Severity and Vector Strings:
No CVSS 4.0 data is available for this CVE.
CVSS 3.x Severity and Vector Strings:
No data available for CVSS Version 2.0 on this CVE.
No SSVC data is available for this CVE.
References to Advisories, Solutions, and Tools
By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.
| URL | Source(s) | Tag(s) |
|---|---|---|
| https://git.kernel.org/stable/c/51520e03e70d6c73e33ee7cbe0319767d05764fe | kernel.org | Patch |
| https://git.kernel.org/stable/c/75825648ce984ca4cebb28e4bd2bf8c3a7e837c5 | kernel.org | Patch |
| https://git.kernel.org/stable/c/87ce8ae511962e105bcb3534944208c6a9471ed9 | kernel.org | Patch |
| https://git.kernel.org/stable/c/aae95970fad2127a1bd49d8713c7cd0677dcd2d6 | kernel.org | Patch |
| https://git.kernel.org/stable/c/d20e98c2df9354cc744431ad8ccbf49405b8b40f | kernel.org | Patch |
| https://git.kernel.org/stable/c/d3de72e2a2b9ee3a57734c1c068823e41a707715 | kernel.org | Patch |
Weakness Enumeration
| CWE-ID | CWE Name | Source |
|---|---|---|
| CWE-476 | NULL Pointer Dereference | [email protected] |
Affected Products
| Product | Versions |
|---|---|
| linux linux kernel | >= 5.19, < 6.1.169 >= 6.2, < 6.6.135 >= 6.7, < 6.12.82 >= 6.13, < 6.18.23 >= 6.19, < 6.19.13 7.0 rc1 7.0 rc2 7.0 rc3 7.0 rc4 7.0 rc5 7.0 rc6 7.0 rc7 |
CPE
Remediation
| |
Change History
3 change records found show changes
| Date | Action | Recorded By |
|---|---|---|
| Jun 17, 2026 | CVE Modified | kernel.org |
| May 6, 2026 | Initial Analysis | [email protected] |
| Apr 27, 2026 | New CVE Received | kernel.org |