Description
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.
Published: 2026-08-26
Score: 7.5 High
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The Linux kernel’s ovpn cryptographic module released key slots via an RCU callback that could sleep. Because the teardown path could block, the original implementation was unsafe for hardware or asynchronous crypto backends and could cause kernel panics or OOPS events. The patch defers freeing of the AEAD transforms to a workqueue, which permits sleep and preserves the RCU grace period needed for concurrent readers.

Affected Systems

The flaw affects any Linux kernel build that includes the ovpn module and its key‑slot handling logic, regardless of the specific kernel version, until the deferred teardown patch is applied. The lack of explicit versioning means all affected kernels using the ovpn subsystem are at risk until they incorporate the change from the upstream fix.

Risk and Exploitability

The CVSS score of 7.5 indicates high severity, while the EPSS score is not available. The issue is not listed in CISA’s KEV catalog, so formal severity data are missing in that context. Exploitation would likely require a local or privileged user who can trigger the ovpn module to release a key slot, such as by loading or unloading the module or manipulating crypto usage. Because the vulnerability involves kernel execution paths, it could be leveraged by an attacker with the ability to execute code in kernel mode to cause a denial of service. The lack of publicly available exploits does not eliminate the risk, and the threat remains significant until the patch is deployed.

Generated by OpenCVE AI on August 27, 2026 at 08:06 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Upgrade the Linux kernel to a release that incorporates the deferred key‑slot crypto teardown patch; review changelogs for the "ovpn: defer key slot crypto freeing to workqueue" update.
  • If an immediate kernel upgrade is not possible, unload or disable the ovpn module until a patched kernel is available to avoid the unsafe RCU teardown path.
  • If the system relies on a custom kernel build, apply the upstream patch to the kernel source before compiling, then rebuild and deploy the patched kernel.
  • Monitor kernel logs for panic, OOPS, or RCU callback errors that could indicate a crash caused by crypto teardown; investigate and apply the patch as soon as a relevant issue is observed.

Generated by OpenCVE AI on August 27, 2026 at 08:06 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Thu, 27 Aug 2026 06:15:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

{'score': 7.5, 'vector': 'CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H'}


Wed, 26 Aug 2026 17:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-362
CWE-665

Wed, 26 Aug 2026 14:45:00 +0000

Type Values Removed Values Added
Description 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.
Title ovpn: defer key slot crypto freeing to workqueue
First Time appeared Linux
Linux linux Kernel
CPEs cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
Vendors & Products Linux
Linux linux Kernel
References

Subscriptions

Linux Linux Kernel
cve-icon MITRE

Status: PUBLISHED

Assigner: Linux

Published:

Updated: 2026-08-27T05:01:10.597Z

Reserved: 2026-08-15T05:44:03.931Z

Link: CVE-2026-74750

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-08-26T15:16:54.050

Modified: 2026-08-27T06:17:26.000

Link: CVE-2026-74750

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-08-27T08:15:05Z

Weaknesses
  • CWE-362

    Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition')

  • CWE-665

    Improper Initialization