CVE Catalog

CVE-2026-97954

Unknown
Published: Translated: NVD NIST

Summary

In the Linux kernel, the RDS-TCP subsystem has TCP stream corruption with large pages. rds_message_map_pages() assigns full page size to each scatterlist entry, even when the last part is smaller, causing mapping beyond the end of the congestion map. The fix limits the last mapping to the remaining bytes.

Risk Assessment

TCP stream corruption can lead to misinterpretation of data, potentially causing crashes or malfunction of applications using RDS. The issue affects systems with page size larger than 4K.

Recommendation

Apply a Linux kernel update containing the fix for RDS. If possible, use systems with 4K page size until the fix is deployed.

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

In the Linux kernel, the following vulnerability has been resolved: net/rds: fix tcp stream corruption with large pages rds_message_map_pages() assigns PAGE_SIZE bytes to every scatterlist entry, even when total_len ends in a partial page. The RDS congestion map is defined as 8192 bytes, so on systems with PAGE_SIZE greater than 8192 the scatterlist maps bytes beyond the end of the congestion map. RDS-TCP transmits the SG contents according to those lengths, so the extra bytes become part of the TCP RDS stream and are interpreted as subsequent RDS message headers, corrupting the stream. Limit the final scatterlist mapping to the number of bytes remaining. This has no effect on systems with a 4K page size and allows RDS-TCP to be used on systems with 16K and larger page sizes. The RDS selftest, which previously hung on 16K pages, now passes.

Vulnerability data from NVD (NIST) · CISA KEV · EPSS