CVE-2026-89533
Last modified
CVE-2026-89533 is a critical-severity vulnerability rated 9.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: svcrdma: Fix offset arithmetic in read_chunk_range svc_rdma_read_chunk_range() walks a Read chunk's segment list to build a sub-range starting at byte offset and spanning length bytes for a Position-Zero or Call chunk. Two arithmetic defects in the per-segment loop produce wrong DMA lengths and a u32 underflow: pcl_for_each_segment(segment, chunk) { if (offset > segment->rs_length) { offset -= segment->rs_length; continue; } dummy.rs_handle = segment->rs_handle; dummy.rs_length = min_t(u32, length, segment->rs_length) - offset; dummy.rs_offset = segment->rs_offset + offset; First, the skip predicate uses '>' instead of '>='. EPSS estimates a 0.46% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: svcrdma: Fix offset arithmetic in read_chunk_range svc_rdma_read_chunk_range() walks a Read chunk's segment list to build a sub-range starting at byte offset and spanning length bytes for a Position-Zero or Call chunk. Two arithmetic defects in the per-segment loop produce wrong DMA lengths and a u32 underflow: pcl_for_each_segment(segment, chunk) { if (offset > segment->rs_length) { offset -= segment->rs_length; continue; } dummy.rs_handle = segment->rs_handle; dummy.rs_length = min_t(u32, length, segment->rs_length) - offset; dummy.rs_offset = segment->rs_offset + offset; First, the skip predicate uses '>' instead of '>='. When offset equals the segment's full rs_length, the segment is fully consumed and should be skipped, but the loop falls through into the body. The resulting dummy.rs_length is min_t(u32, length, rs_length) - rs_length, which underflows to a near-UINT_MAX u32 when length is smaller than rs_length, or is zero otherwise. Second, the length formula subtracts offset from the min_t() result rather than from segment->rs_length before the cap. For offset > 0 the segment's residual is rs_length - offset, not rs_length, so the cap must be applied to the residual. With the current bracketing, whenever length is smaller than rs_length - offset the per-segment length becomes length - offset instead of length, silently dropping offset bytes from the rebuilt chunk. Combined with the boundary case above it also enables the u32 underflow path, which propagates a huge nr_bvec into svc_rdma_build_read_segment() and a multi-MiB kmalloc_array_node() in svc_rdma_get_rw_ctxt(). Additionally, svc_rdma_read_call_chunk() can invoke this function with length == 0 when the last Read chunk ends exactly at the end of the Call chunk. With the corrected >= predicate, every segment is skipped and the function returns the initial -EINVAL, rejecting a valid request. Return success immediately when length is zero. Also break out of the loop once length is fully consumed to avoid passing zero-length segments to svc_rdma_build_read_segment(). Fix by using '>=' so a fully-consumed segment is skipped, by moving '- offset' inside min_t() so the cap is applied to the segment's residual length, by returning success for zero-length requests, and by stopping iteration when the requested range has been consumed.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= d7cc73972661be4a02a1b09f1d9b3283c6c05154, < 10873311f91db9454e2fadbf9866bc819e0646d9; >= d7cc73972661be4a02a1b09f1d9b3283c6c05154, < addbf02dfe3b25e7e38e03bbd4e2a6ed86a14be7; >= d7cc73972661be4a02a1b09f1d9b3283c6c05154, < cba8543c18cf42fd80fd63effb6df6ff4f7e73ce; >= d7cc73972661be4a02a1b09f1d9b3283c6c05154, < 6ee4dc7476b3abc92ec1d444533a559f33f59561; >= d7cc73972661be4a02a1b09f1d9b3283c6c05154, < a46b35f213c2426f5d6a0458a8f7e873fc59cdfd; >= d7cc73972661be4a02a1b09f1d9b3283c6c05154, < 4493c96bbd0068fadf69cbae8d13426202e34cdc; >= d7cc73972661be4a02a1b09f1d9b3283c6c05154, < 4a44c140cc2f3643a39e258bb0c0ab9d0f494f5e |
| Linux | Linux | 5.11 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-89533?
How severe is CVE-2026-89533?
How do I fix CVE-2026-89533?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-89528In the Linux kernel, the following vulnerability has been re…7.5
- CVE-2026-89529In the Linux kernel, the following vulnerability has been re…
- CVE-2026-8953Sandbox escape due to use-after-free in the Disability Acces…9.6
- CVE-2026-89530In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-89531In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89532In the Linux kernel, the following vulnerability has been re…9.1
- CVE-2026-89534In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-89535In the Linux kernel, the following vulnerability has been re…8.1
- CVE-2026-89536In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-89537In the Linux kernel, the following vulnerability has been re…9.1
- CVE-2026-89538In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-89539In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-89533?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
