CVE-2023-53728

Source
https://cve.org/CVERecord?id=CVE-2023-53728
Import Source
https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2023-53728.json
JSON Data
https://api.test.osv.dev/v1/vulns/CVE-2023-53728
Downstream
Related
Published
2025-10-22T13:23:57.127Z
Modified
2026-03-20T12:33:18.926347Z
Summary
posix-timers: Ensure timer ID search-loop limit is valid
Details

In the Linux kernel, the following vulnerability has been resolved:

posix-timers: Ensure timer ID search-loop limit is valid

posixtimeradd() 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 posixtimeradd() start = sig->posixtimerid; lock(hashlock); ... posixtimeradd() if (++sig->posixtimerid < 0) start = sig->posixtimerid; sig->posixtimer_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->posixtimerid == 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.

Database specific
{
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2023/53xxx/CVE-2023-53728.json",
    "cna_assigner": "Linux"
}
References

Affected packages

Git / git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Affected ranges

Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
5ed67f05f66c41e39880a6d61358438a25f9fee5
Fixed
8dc52c200b889bc1cb34288fbf623d4ff381d2ae
Fixed
9ea26a8494a0a9337e7415eafd6f3ed940327dc5
Fixed
8ad6679a5bb97cdb3e14942729292b4bfcc0e223
Fixed
322377cc909defcca9451487484845e7e1d20d1b
Fixed
ef535e0315afd098c4beb1da364847eca4b56a20
Fixed
6a0ac84501b4fec73a1a823c55cf13584c43f418
Fixed
37175e25edf7cc0d5a2cd2c2a1cbe2dcbf4a1937
Fixed
8ce8849dd1e78dadcee0ec9acbd259d239b7069f

Database specific

source
"https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2023-53728.json"

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
3.10.0
Fixed
4.14.322
Type
ECOSYSTEM
Events
Introduced
4.15.0
Fixed
4.19.291
Type
ECOSYSTEM
Events
Introduced
4.20.0
Fixed
5.4.251
Type
ECOSYSTEM
Events
Introduced
5.5.0
Fixed
5.10.188
Type
ECOSYSTEM
Events
Introduced
5.11.0
Fixed
5.15.150
Type
ECOSYSTEM
Events
Introduced
5.16.0
Fixed
6.1.107
Type
ECOSYSTEM
Events
Introduced
6.2.0
Fixed
6.4.7

Database specific

source
"https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2023-53728.json"