CVE-2026-72068

Source
https://cve.org/CVERecord?id=CVE-2026-72068
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-72068.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2026-72068
Downstream
Published
2026-08-15T05:52:21.007Z
Modified
2026-08-18T03:30:54.814091706Z
Summary
posix-cpu-timers: Use u64 multiplication in update_rlimit_cpu()
Details

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

posix-cpu-timers: Use u64 multiplication in updaterlimitcpu()

updaterlimitcpu() converts the RLIMIT_CPU value to nanoseconds with

    u64 nsecs = rlim_new * NSEC_PER_SEC;

On 32-bit kernels both rlimnew (unsigned long) and NSECPERSEC (1000000000L) are 32-bit, so the multiplication is performed in unsigned long and truncated for rlimnew > 4 seconds before being widened to u64.

The same file already casts to u64 for the matching computation in checkprocesstimers():

    u64 softns = (u64)soft * NSEC_PER_SEC;

As a result, the truncated value is installed into the CPUCLOCKPROF expiry cache (nextevt), causing the process CPU timer to be programmed to fire prematurely for any RLIMITCPU soft limit >= 5 seconds. The actual SIGXCPU/SIGKILL decision in checkprocesstimers() already casts to u64 and is therefore correct, so limit enforcement is not broken; only the expiry-cache programming is wrong. Apply the same cast here so both paths convert rlim_cur identically.

64-bit kernels are unaffected.

Database specific
{
    "cna_assigner": "Linux",
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/72xxx/CVE-2026-72068.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
858cf3a8c59968e7c5f7c1a1192459a0d52d1ab4
Fixed
feb5c87c8514444ba891b75a5a3eae57c64edaf8
Fixed
384628d6cdde0fcd76868606fad3ad8293100afb
Fixed
1fafc4d9b411645eb34de43362b966dc8fb3e263
Fixed
cff8281bacd2866767e6194c3079d33b6c5a74f4
Fixed
edf6babb9edd2d3e19229ade339081f439d4f478
Fixed
ea6a188ee805e841a0e242f14d15953e0dfa74bb
Fixed
571e1f10b5996ba3e4dc63ea77de4aa309c384ce
Fixed
26aff38fefb1d6cd87e22525f41cc8f1aa61b24f

Database specific

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

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
4.11.0
Fixed
5.10.261
Type
ECOSYSTEM
Events
Introduced
5.11.0
Fixed
5.15.212
Type
ECOSYSTEM
Events
Introduced
5.16.0
Fixed
6.1.178
Type
ECOSYSTEM
Events
Introduced
6.2.0
Fixed
6.6.145
Type
ECOSYSTEM
Events
Introduced
6.7.0
Fixed
6.12.97
Type
ECOSYSTEM
Events
Introduced
6.13.0
Fixed
6.18.40
Type
ECOSYSTEM
Events
Introduced
6.19.0
Fixed
7.1.5

Database specific

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