CVE-2025-68214

Source
https://cve.org/CVERecord?id=CVE-2025-68214
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2025-68214.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2025-68214
Downstream
Related
Published
2025-12-16T13:57:09Z
Modified
2026-08-12T03:51:21Z
Summary
timers: Fix NULL function pointer race in timer_shutdown_sync()
Details

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

timers: Fix NULL function pointer race in timer_shutdown_sync()

There is a race condition between timer_shutdown_sync() and timer expiration that can lead to hitting a WARN_ON in expire_timers().

The issue occurs when timer_shutdown_sync() clears the timer function to NULL while the timer is still running on another CPU. The race scenario looks like this:

CPU0 CPU1 lock_timer_base() expire_timers() base->running_timer = timer; unlock_timer_base() [call_timer_fn enter] mod_timer() ... timer_shutdown_sync() lock_timer_base() // For now, will not detach the timer but only clear its function to NULL if (base->running_timer != timer) ret = detach_if_pending(timer, base, true); if (shutdown) timer->function = NULL; unlock_timer_base() [call_timer_fn exit] lock_timer_base() base->running_timer = NULL; unlock_timer_base() ... // Now timer is pending while its function set to NULL. // next timer trigger expire_timers() WARN_ON_ONCE(!fn) // hit ... lock_timer_base() // Now timer will detach if (base->running_timer != timer) ret = detach_if_pending(timer, base, true); if (shutdown) timer->function = NULL; unlock_timer_base()

The problem is that timer_shutdown_sync() clears the timer function regardless of whether the timer is currently running. This can leave a pending timer with a NULL function pointer, which triggers the WARN_ON_ONCE(!fn) check in expire_timers().

Fix this by only clearing the timer function when actually detaching the timer. If the timer is running, leave the function pointer intact, which is safe because the timer will be properly detached when it finishes running.

Database specific
{
    "cna_assigner": "Linux",
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2025/68xxx/CVE-2025-68214.json"
}
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
debbcf812d735003c96c5e5968a3cfa4e1fbd1af
Fixed
ba43ac025c4318241f8edf94f31d2eebab86991b
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
334c33aa487be406a149c8b87c38c8399d2dba8d
Fixed
1a975716cc8977f461e45e28e3e5977d46ad7a6a
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
0cc04e80458a822300b93f82ed861a513edde194
Fixed
6665fbd7730b26d770c232b20d1b907e6a67a914
Fixed
176725f4848376530a0f0da9023f956afcc33585
Fixed
a01efa7a780c42ac5170a949bd95c9786ffcc60a
Fixed
20739af07383e6eb1ec59dcd70b72ebfa9ac362c
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
6.1.158
Fixed
6.1.159

Affected versions

v6.*
v6.1.158

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2025-68214.json"

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0 Unknown introduced version / All previous versions are affected
Fixed
6.1.159
Type
ECOSYSTEM
Events
Introduced
6.2.0
Fixed
6.6.118
Fixed
6.12.60
Type
ECOSYSTEM
Events
Introduced
6.7.0
Fixed
6.17.10

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2025-68214.json"