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

rxrpc: fix io_thread race in rxrpc_wake_up_io_thread()

rxrpc_wake_up_io_thread() checks local->io_thread before waking it, but
then reloads the pointer for wake_up_process().

local->io_thread is cleared with WRITE_ONCE() when the I/O thread exits, so
the second load can see NULL even if the first load did not.

Take a READ_ONCE() snapshot and use it for both the NULL check and the
wake_up_process() call, as rxrpc_encap_rcv() already does.
Published: 2026-08-10
Score: 5.9 Medium
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

A race condition exists in the Linux kernel’s rxrpc subsystem where the rxrpc_wake_up_io_thread function checks a thread pointer, reloads it, and may call wake_up_process on a NULL value because the pointer is cleared with WRITE_ONCE when the I/O thread exits. The race can cause a NULL dereference of wake_up_process, leading to a kernel panic and a denial‑of‑service for the affected system. This vulnerability stems from improper synchronization of shared data across threads, a classic race condition flaw.

Affected Systems

All Linux kernel releases that contain the legacy rxrpc implementation are affected. The issue is identified through global CPE strings that reference any Linux kernel version. No specific version range is provided, so any system running an unpatched kernel is potentially vulnerable until a compensated fix is installed.

Risk and Exploitability

The CVSS score of 5.9 indicates a moderate severity. The EPSS score of less than 1% suggests a low likelihood of exploitation. The vulnerability is not listed in CISA’s KEV catalog, indicating no publicly confirmed exploits. This race condition can be triggered by manipulating rxrpc traffic, potentially causing a kernel panic and a denial‑of‑service, but specific attack conditions are not detailed in the description.

Generated by OpenCVE AI on August 13, 2026 at 17:56 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Apply the latest Linux kernel update that includes the rxrpc_wake_up_io_thread race condition fix; the relevant patches are available in the official kernel repository as referenced in the advisory links.
  • If an immediate kernel upgrade is not feasible, isolate the system from external networks that could use the rxrpc protocol to mitigate the risk of triggering the race.
  • Continuously monitor for kernel vulnerabilities and apply security updates as they are released to prevent exploitation of similar race conditions.

Generated by OpenCVE AI on August 13, 2026 at 17:56 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Thu, 13 Aug 2026 14:30:00 +0000

Type Values Removed Values Added
Weaknesses CWE-362

Thu, 13 Aug 2026 12:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-366
References
Metrics threat_severity

None

cvssV3_1

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

threat_severity

Moderate


Mon, 10 Aug 2026 16:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-362

Mon, 10 Aug 2026 12:30:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: rxrpc: fix io_thread race in rxrpc_wake_up_io_thread() rxrpc_wake_up_io_thread() checks local->io_thread before waking it, but then reloads the pointer for wake_up_process(). local->io_thread is cleared with WRITE_ONCE() when the I/O thread exits, so the second load can see NULL even if the first load did not. Take a READ_ONCE() snapshot and use it for both the NULL check and the wake_up_process() call, as rxrpc_encap_rcv() already does.
Title rxrpc: fix io_thread race in rxrpc_wake_up_io_thread()
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-17T05:03:33.108Z

Reserved: 2026-07-30T09:28:09.383Z

Link: CVE-2026-68334

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-08-10T13:20:23.750

Modified: 2026-08-17T06:17:41.510

Link: CVE-2026-68334

cve-icon Redhat

Severity : Moderate

Publid Date: 2026-08-10T12:03:10Z

Links: CVE-2026-68334 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-08-13T18:00:04Z

Weaknesses
  • CWE-366

    Race Condition within a Thread