Bug 2481935 (CVE-2026-45975) - CVE-2026-45975 kernel: ublk: use READ_ONCE() to read struct ublksrv_ctrl_cmd
Summary: CVE-2026-45975 kernel: ublk: use READ_ONCE() to read struct ublksrv_ctrl_cmd
Keywords:
Status: NEW
Alias: CVE-2026-45975
Product: Security Response
Classification: Other
Component: vulnerability
Version: unspecified
Hardware: All
OS: Linux
high
high
Target Milestone: ---
Assignee: Product Security
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2026-05-27 15:03 UTC by OSIDB Bzimport
Modified: 2026-05-27 22:36 UTC (History)
2 users (show)

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


Attachments (Terms of Use)

Description OSIDB Bzimport 2026-05-27 15:03:09 UTC
In the Linux kernel, the following vulnerability has been resolved:

ublk: use READ_ONCE() to read struct ublksrv_ctrl_cmd

struct ublksrv_ctrl_cmd is part of the io_uring_sqe, which may lie in
userspace-mapped memory. It's racy to access its fields with normal
loads, as userspace may write to them concurrently. Use READ_ONCE() to
copy the ublksrv_ctrl_cmd from the io_uring_sqe to the stack. Use the
local copy in place of the one in the io_uring_sqe.


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