Not a U.S. government website. NDD is an independent vulnerability database by Volerion and is not affiliated with or endorsed by NIST or NVD.
VOLERION
Volerion Security Research

NOT DEFERRED DATABASE

VULNERABILITIES

CVE-2026-52923 Details

Description

In the Linux kernel, the following vulnerability has been resolved: ipc: limit next_id allocation to the valid ID range The checkpoint/restore sysctl path can request the next SysV IPC id through ids->next_id. ipc_idr_alloc() currently forwards that request to idr_alloc() with an open-ended upper bound. If the valid tail of the SysV IPC id space is full, the allocation can spill beyond ipc_mni. The returned SysV IPC id still uses the normal index encoding, so later lookup and removal can target the wrong slot. This leaves the real IDR entry behind and breaks the IDR state for the object. The bug is in ipc_idr_alloc() in the checkpoint/restore path. 1. ids->next_id is passed to: idr_alloc(&ids->ipcs_idr, new, ipcid_to_idx(next_id), 0, ...) 2. The zero upper bound makes the allocation effectively open-ended. Once the valid SysV IPC tail is occupied, idr_alloc() can spill past ipc_mni and allocate an entry beyond the valid IPC id range. 3. The new object id is still encoded with the narrower SysV IPC index width: new->id = (new->seq << ipcmni_seq_shift()) + idx 4. Later removal goes through ipc_rmid(), which uses: ipcid_to_idx(ipcp->id) That truncates the real IDR index. An object actually stored at a high index can then be removed as if it lived at a low in-range index. 5. For shared memory, shm_destroy() frees the current object anyway, but the real high IDR slot is left behind as a dangling pointer. 6. A subsequent walk of /proc/sysvipc/shm reaches the stale IDR entry and dereferences freed memory. Prevent this by bounding the requested allocation to ipc_mni so the checkpoint/restore path fails once the valid range is exhausted.

Metrics

CVSS 3.x Severity and Vector Strings:

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.

URLSource(s)Tag(s)
https://access.redhat.com/errata/RHSA-2026:47248 redhat-SADP
https://access.redhat.com/errata/RHSA-2026:48386 redhat-SADP
https://access.redhat.com/errata/RHSA-2026:49031 redhat-SADP
https://access.redhat.com/errata/RHSA-2026:49212 redhat-SADP
https://access.redhat.com/errata/RHSA-2026:49851 redhat-SADP

see all 24 references

Weakness Enumeration

CWE-IDCWE NameSource
CWE-401Missing Release of Memory after Effective Lifetime[email protected]
CWE-825Expired Pointer Dereferenceredhat-SADP

Affected Products

ProductVersions
linux linux kernel
>= 3.8.1, < 5.10.259
>= 5.11, < 5.15.210
>= 5.16, < 6.1.176
>= 6.2, < 6.6.143
>= 6.7, < 6.12.93

CPE

  • cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:3.8:-:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:3.8:rc3:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:3.8:rc4:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:3.8:rc5:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:3.8:rc6:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:3.8:rc7:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:7.1:rc1:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:7.1:rc2:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:7.1:rc3:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:7.1:rc4:*:*:*:*:*:*
  • cpe:2.3:o:linux:linux_kernel:7.1:rc5:*:*:*:*:*:*

Remediation

  • No remediation found in references.

Change History

18 change records found show changes


QUICK INFO

CVE Dictionary Entry:
CVE-2026-52923
NVD Published Date:
Jun 24, 2026
NVD Last Modified:
Sep 4, 2026
Source:
kernel.org