OSV 1.4.0 · unreviewed · 修改于 2026-08-27 14:31
发布时间
2026-08-27 14:31
GitHub 审查时间
—
NVD 发布时间
2026-08-26 23:16
源文件
advisories/unreviewed/2026/08/GHSA-2495-48wf-cqx2/GHSA-2495-48wf-cqx2.json
In the Linux kernel, the following vulnerability has been resolved:
ovpn: defer key slot crypto freeing to workqueue
Key slots are released through a kref and the existing release path frees the AEAD transforms from an RCU callback. That is not safe for all crypto implementations: crypto_free_aead can sleep, for example when an async or hardware implementation has teardown work to complete.
Use queue_rcu_work for key-slot release. This keeps the RCU grace period needed by lockless key-slot readers, but runs the actual crypto teardown from workqueue context where sleeping is allowed. Once the rcu_work callback runs, pre-existing RCU readers are gone, and the final kref put already proves that no transform user remains, so the worker can release the AEAD transforms and free the slot directly.
The previous patch drains ovpn_wq during module exit, so queued key-slot teardown work cannot outlive module text.
该公告没有提供结构化的受影响软件包信息。