CVE-2026-64269
Gravedad CVSS v3.1:
CRÍTICA
Tipo:
No Disponible / Otro tipo
Fecha de publicación:
25/07/2026
Última modificación:
30/07/2026
Descripción
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
RDMA/rtrs-srv: Bound RDMA-Write length to chunk size in rdma_write_sg<br />
<br />
When the server answers an RTRS READ, rdma_write_sg() builds the source<br />
scatter/gather entry for the IB_WR_RDMA_WRITE that returns data to the<br />
peer. Its length is taken directly from the wire descriptor:<br />
<br />
plist->length = le32_to_cpu(id->rd_msg->desc[0].len);<br />
<br />
rd_msg points into the chunk buffer that the remote peer filled via<br />
RDMA-WRITE-WITH-IMM (rtrs_srv_rdma_done() -> process_io_req() -><br />
process_read()), so desc[0].len is attacker-controlled and, before this<br />
change, was only rejected when zero. The source address is the fixed<br />
chunk start (dma_addr[msg_id]) and the source lkey is the PD-wide<br />
local_dma_lkey, which is not tied to the chunk&#39;s MR mapping, so the verbs<br />
layer does not constrain the transfer length to max_chunk_size. msg_id<br />
and off are bounded against queue_depth and max_chunk_size in<br />
rtrs_srv_rdma_done(), but desc[0].len is a separate field that was not<br />
checked against the chunk size.<br />
<br />
A peer that advertises desc[0].len larger than max_chunk_size can make<br />
the posted RDMA write read past the chunk&#39;s mapped region. The resulting<br />
behaviour depends on the IOMMU configuration: with no IOMMU or in<br />
passthrough mode the read may extend into memory adjacent to the chunk<br />
and be returned to the peer, which can disclose host memory; with a<br />
translating IOMMU the out-of-range access is expected to fault and abort<br />
the connection. In either case the transfer exceeds what the protocol<br />
permits and is driven by a remote peer.<br />
<br />
Reject a descriptor length above max_chunk_size, mirroring the existing<br />
off >= max_chunk_size bound in rtrs_srv_rdma_done(). Legitimate clients<br />
do not exceed it: the client sets desc[0].len to its MR length, which is<br />
capped at the negotiated max_io_size (max_chunk_size - MAX_HDR_SIZE).
Impacto
Puntuación base 3.x
9.10
Gravedad 3.x
CRÍTICA
Referencias a soluciones, herramientas e información
- https://git.kernel.org/stable/c/2912f3d40355dabc08fdbaaf2764d02445fe88dc
- https://git.kernel.org/stable/c/5a45d0aa1fa50a333ce5763ade744e2d89838667
- https://git.kernel.org/stable/c/68c09762172f6224e9ddf9b0a60bacbb36e443eb
- https://git.kernel.org/stable/c/6cada540150894e81042a0ae0c796a21a9a877da
- https://git.kernel.org/stable/c/6f40246f4312fdbab5a13cc440adebf95eb2aa66
- https://git.kernel.org/stable/c/963af8d97a8c6a117134a8d0db1415e0489200b1
- https://git.kernel.org/stable/c/da3e44add94b05dfde56f898421922f5cf35705f



