Bug 2513370 (CVE-2026-68334) - CVE-2026-68334 kernel: Linux kernel: `rxrpc` race condition causes Denial of Service
Summary: CVE-2026-68334 kernel: Linux kernel: `rxrpc` race condition causes Denial of ...
Keywords:
Status: NEW
Alias: CVE-2026-68334
Product: Security Response
Classification: Other
Component: vulnerability
Version: unspecified
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Product Security
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2026-08-10 12:33 UTC by OSIDB Bzimport
Modified: 2026-08-12 22:42 UTC (History)
6 users (show)

Fixed In Version:
Clone Of:
Environment:
Last Closed:
Embargoed:


Attachments (Terms of Use)

Description OSIDB Bzimport 2026-08-10 12:33:37 UTC
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.


Note You need to log in before you can comment on or make changes to this bug.