CVE & CISA-KEV Catalog

CVE-2023-53728

UNSCORED

Description

In the Linux kernel, the following vulnerability has been resolved: posix-timers: Ensure timer ID search-loop limit is valid posix_timer_add() tries to allocate a posix timer ID by starting from the cached ID which was stored by the last successful allocation. This is done in a loop searching the ID space for a free slot one by one. The loop has to terminate when the search wrapped around to the starting point. But that's racy vs. establishing the starting point. That is read out lockless, which leads to the following problem: CPU0 CPU1 posix_timer_add() start = sig->posix_timer_id; lock(hash_lock); ... posix_timer_add() if (++sig->posix_timer_id < 0) start = sig->posix_timer_id; sig->posix_timer_id = 0; So CPU1 can observe a negative start value, i.e. -1, and the loop break never happens because the condition can never be true: if (sig->posix_timer_id == start) break; While this is unlikely to ever turn into an endless loop as the ID space is huge (INT_MAX), the racy read of the start value caught the attention of KCSAN and Dmitry unearthed that incorrectness. Rewrite it so that all id operations are under the hash lock.

How to fix

Remediation Available
linuxDebian
Fixed in:5.10.191-1CVE-2023-53728
Fixed in:6.1.112-1CVE-2023-53728
Fixed in:6.4.11-1CVE-2023-53728
Fixed in:6.4.11-1CVE-2023-53728

Remediation is compiled from vendor and distribution security advisories. Always confirm against the linked source for your exact version and platform.

CVSS v3.1 Vector

No CVSS vector data available.

Exploit Intelligence

0.19%probability of exploitation in 30 days
9thpercentile

Low risk: more likely to be exploited than 9% of all known CVEs.

References

Embed a live status badge for CVE-2023-53728
CVE-2023-53728 severity badge

Markdown

[![CVE-2023-53728](https://tridentstack.com/cve/badge/CVE-2023-53728.svg)](https://tridentstack.com/cve/CVE-2023-53728)

HTML

<a href="https://tridentstack.com/cve/CVE-2023-53728"><img src="https://tridentstack.com/cve/badge/CVE-2023-53728.svg" alt="CVE-2023-53728"></a>

Find and fix vulnerabilities across your fleet

TridentStack Control continuously scans your Windows, macOS, and Linux fleet for known vulnerabilities, prioritizes them by severity and active exploitation, and patches them automatically.

Start free

This product uses NVD data but is not endorsed or certified by the NVD. EPSS scores courtesy of FIRST.org (https://www.first.org/epss). Source: CISA KEV Catalog. Data as of 2025-10-22.