CVE-2025-38017

Source
https://cve.org/CVERecord?id=CVE-2025-38017
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2025-38017.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2025-38017
Downstream
Published
2025-06-18T09:28:25.790Z
Modified
2026-04-02T12:47:44.802796Z
Summary
fs/eventpoll: fix endless busy loop after timeout has expired
Details

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

fs/eventpoll: fix endless busy loop after timeout has expired

After commit 0a65bc27bd64 ("eventpoll: Set epoll timeout if it's in the future"), the following program would immediately enter a busy loop in the kernel:

int main() {
  int e = epoll_create1(0);
  struct epoll_event event = {.events = EPOLLIN};
  epoll_ctl(e, EPOLL_CTL_ADD, 0, &event);
  const struct timespec timeout = {.tv_nsec = 1};
  epoll_pwait2(e, &event, 1, &timeout, 0);
}

This happens because the given (non-zero) timeout of 1 nanosecond usually expires before eppoll() is entered and then epschedule_timeout() returns false, but timed_out is never set because the code line that sets it is skipped. This quickly turns into a soft lockup, RCU stalls and deadlocks, inflicting severe headaches to the whole system.

When the timeout has expired, we don't need to schedule a hrtimer, but we should set the timed_out variable. Therefore, I suggest moving the epscheduletimeout() check into the timed_out expression instead of skipping it.

brauner: Note that there was an earlier fix by Joe Damato in response to my bug report in [1].

Database specific
{
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2025/38xxx/CVE-2025-38017.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
99a0ad16dfd114a429df665065dcc576dad743c0
Fixed
7631dca012593c95d36199082546a24a0058fc50
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
0a65bc27bd645894175c059397b4916e31955fb2
Fixed
d9ec73301099ec5975505e1c3effbe768bab9490

Database specific

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