CVE-2025-37747

Source
https://cve.org/CVERecord?id=CVE-2025-37747
Import Source
https://storage.googleapis.com/osv-test-cve-osv-conversion/osv-output/CVE-2025-37747.json
JSON Data
https://api.test.osv.dev/v1/vulns/CVE-2025-37747
Downstream
Related
Published
2025-05-01T12:55:54.028Z
Modified
2026-03-11T07:45:37.981374Z
Summary
perf: Fix hang while freeing sigtrap event
Details

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

perf: Fix hang while freeing sigtrap event

Perf can hang while freeing a sigtrap event if a related deferred signal hadn't managed to be sent before the file got closed:

perfeventoverflow() taskworkadd(perfpendingtask)

fput() taskworkadd(____fput())

taskworkrun() ___fput() perfrelease() perfeventreleasekernel() freeevent() perfpendingtasksync() taskworkcancel() -> FAILED rcuwaitwaitevent()

Once taskworkrun() is running, the list of pending callbacks is removed from the taskstruct and from this point on taskworkcancel() can't remove any pending and not yet started work items, hence the taskworkcancel() failure and the hang on rcuwaitwait_event().

Task work could be changed to remove one work at a time, so a work running on the current task can always cancel a pending one, however the wait / wake design is still subject to inverted dependencies when remote targets are involved, as pictured by Oleg:

T1 T2

fd = perfeventopen(pid => T2->pid); fd = perfeventopen(pid => T1->pid); close(fd) close(fd) <IRQ> <IRQ> perfeventoverflow() perfeventoverflow() taskworkadd(perfpendingtask) taskworkadd(perfpendingtask) </IRQ> </IRQ> fput() fput() taskworkadd(____fput()) taskworkadd(____fput())

task_work_run()                                        task_work_run()
    ____fput()                                             ____fput()
        perf_release()                                         perf_release()
            perf_event_release_kernel()                            perf_event_release_kernel()
                _free_event()                                          _free_event()
                    perf_pending_task_sync()                               perf_pending_task_sync()
                        rcuwait_wait_event()                                   rcuwait_wait_event()

Therefore the only option left is to acquire the event reference count upon queueing the perf task work and release it from the task work, just like it was done before 3a5465418f5f ("perf: Fix event leak upon exec and file release") but without the leaks it fixed.

Some adjustments are necessary to make it work:

  • A child event might dereference its parent upon freeing. Care must be taken to release the parent last.

  • Some places assuming the event doesn't have any reference held and therefore can be freed right away must instead put the reference and let the reference counting to its job.

Database specific
{
    "cna_assigner": "Linux",
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2025/37xxx/CVE-2025-37747.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
3a5465418f5fd970e86a86c7f4075be262682840
Fixed
fa1827fa968c0674e9b6fca223fa9fb4da4493eb
Fixed
665b87b8f8b3aeb49083ef3b65c4953e7753fc12
Fixed
1267bd38f161c1a27d9b722de017027167a225a0
Fixed
56799bc035658738f362acec3e7647bb84e68933
Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
0 Unknown introduced commit / All previous commits are affected
Last affected
9ad46f1fef421d43cdab3a7d1744b2f43b54dae0
Last affected
ed2c202dac55423a52d7e2290f2888bf08b8ee99
Last affected
104e258a004037bc7dba9f6085c71dad6af57ad4
Last affected
f34d8307a73a18de5320fcc6f40403146d061891

Database specific

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