CVE-2026-89532
Last modified
CVE-2026-89532 is a critical-severity vulnerability rated 9.1/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: svcrdma: Fix pcl_for_each_segment for empty chunks When a parsed chunk list contains a chunk whose ch_segcount is zero, pcl_for_each_segment computes its inclusive upper bound as &chunk->ch_segments[ch_segcount - 1]. ch_segcount is u32, so the subtraction wraps to 0xFFFFFFFF and the bound lands far past the ch_segments flex array. 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 pcl_for_each_segment for empty chunks When a parsed chunk list contains a chunk whose ch_segcount is zero, pcl_for_each_segment computes its inclusive upper bound as &chunk->ch_segments[ch_segcount - 1]. ch_segcount is u32, so the subtraction wraps to 0xFFFFFFFF and the bound lands far past the ch_segments flex array. The loop body then walks unrelated memory at sizeof(struct svc_rdma_segment) stride until it faults. A zero-segcount chunk is reachable from the wire: xdr_check_write_chunk() only rejects segcount values greater than rc_maxpages, and pcl_alloc_write() links a freshly allocated chunk onto rc_write_pcl/rc_reply_pcl before its segment-fill loop runs, so a Write or Reply chunk advertising zero segments leaves ch_segcount == 0 on the list. When the transport has negotiated Send-With-Invalidate, svc_rdma_get_inv_rkey() iterates all four PCLs with pcl_for_each_segment and dereferences segment->rs_handle on each iteration, turning the underflow into an out-of-bounds read and a general protection fault. xdr_check_write_list / xdr_check_reply_chunk pcl_alloc_write() chunk = pcl_alloc_chunk(...) /* ch_segcount = 0 */ list_add_tail(&chunk->ch_list, &pcl->cl_chunks) /* fill loop iterates zero times for wire segcount 0 */ svc_rdma_get_inv_rkey() pcl_for_each_chunk(rc_write_pcl) pcl_for_each_segment(segment, chunk) pos <= &ch_segments[0u - 1u] /* 0xFFFFFFFF */ segment->rs_handle /* OOB read -> GPF */ Fix by switching the macro to a half-open upper bound that uses ch_segcount directly. For ch_segcount == 0 the loop start equals the loop end and the body is skipped; for ch_segcount > 0 the iteration range is unchanged. All six existing call sites in net/sunrpc/xprtrdma/svc_rdma_recvfrom.c and net/sunrpc/xprtrdma/svc_rdma_rw.c remain correct under the new bound, so no caller changes are needed.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 78147ca8b4a9b6cf0e597ddd6bf17959e08376c2, < 1e2e3481e39103a386b86be1c33eaef97cbdf16e; >= 78147ca8b4a9b6cf0e597ddd6bf17959e08376c2, < 3a78b841879c2a3243f74edc514236fb2907167f; >= 78147ca8b4a9b6cf0e597ddd6bf17959e08376c2, < 06d0390c37fa6714624af771bd72bbf1a7ed9bb1; >= 78147ca8b4a9b6cf0e597ddd6bf17959e08376c2, < 9c5a03c3dc505c0295339b0a1b9e4fe36447e482; >= 78147ca8b4a9b6cf0e597ddd6bf17959e08376c2, < a1c954ca4977a4e6ec73ef92fe48073ec54f9fc8; >= 78147ca8b4a9b6cf0e597ddd6bf17959e08376c2, < 6d33a7e6bf6c6b293a266a617201285a1ad32c56; >= 78147ca8b4a9b6cf0e597ddd6bf17959e08376c2, < b7713a784c59515d0aba558c8f5df6a0164dd3a9 |
| Linux | Linux | 5.11 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-89532?
How severe is CVE-2026-89532?
How do I fix CVE-2026-89532?
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-89527In the Linux kernel, the following vulnerability has been re…
- 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-89533In the Linux kernel, the following vulnerability has been re…9.8
- 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
Are you affected by CVE-2026-89532?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
