CVE-2026-72129
Received Received - Intake

Buffer Overflow in Linux Kernel NVMe-oF RDMA Driver

Vulnerability report for CVE-2026-72129, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-08-15

Last updated on: 2026-08-15

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: nvmet-rdma: handle inline data with a nonzero offset nvmet_rdma_use_inline_sg() maps the host-controlled inline data offset into the per-command inline scatterlist. The bounds check admits any offset with off + len <= inline_data_size, but the mapping still assumes the data begins in the first inline page: sg->offset = off; sg->length = min_t(int, len, PAGE_SIZE - off); When a port is configured with inline_data_size > PAGE_SIZE (settable up to max(SZ_16K, PAGE_SIZE)), an offset in (PAGE_SIZE, inline_data_size] makes "PAGE_SIZE - off" underflow, so sg->length is set to ~4 GiB and the block backend reads far past the first inline page. num_pages(len) also ignores the offset, so an in-bounds offset whose [off, off+len) span crosses a page boundary under-counts the scatterlist. Map the offset properly: split it into a page index and an in-page offset, start the scatterlist at that page, and size the page count from page_off + len. Because the request scatterlist may now start at inline_sg[page_idx] rather than inline_sg[0], generalize the inline-SGL identity test in nvmet_rdma_release_rsp() to a range test; otherwise the persistent inline scatterlist is mistaken for an allocated one and nvmet_req_free_sgls() frees an inline page (and warns in free_large_kmalloc()).

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-08-15
Last Modified
2026-08-15
Generated
2026-08-15
AI Q&A
2026-08-15
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
linux linux_kernel *

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability affects the Linux kernel's NVMe over RDMA (nvmet-rdma) subsystem. It involves improper handling of inline data with a nonzero offset in the nvmet_rdma_use_inline_sg function. The issue occurs when the inline_data_size is set larger than the system's page size, leading to incorrect scatterlist mapping and potential memory corruption.

Detection Guidance

This vulnerability is specific to the Linux kernel's NVMe over RDMA (nvmet-rdma) implementation. Detection requires checking if your system is running a vulnerable kernel version and if the nvmet-rdma feature is enabled. Inspect kernel logs for errors related to scatterlist handling or inline data offsets. No direct commands are provided in the context.

Impact Analysis

This vulnerability could allow an attacker with access to the system to cause memory corruption, leading to crashes, data corruption, or potential privilege escalation. It specifically affects systems using NVMe over RDMA with inline data enabled and configured with inline_data_size larger than the page size.

Mitigation Strategies

Apply the latest kernel patches or updates that address this issue. Disable the nvmet-rdma feature if not required. Monitor kernel logs for related errors. The context does not provide specific mitigation commands.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-72129. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart