CVE-2026-89969 PUBLISHED

nvmet-tcp: fix out-of-bounds write when receiving an over-long PDU

Assigner: Linux
Reserved: 11.09.2026 Published: 16.09.2026 Updated: 16.09.2026

In the Linux kernel, the following vulnerability has been resolved:

nvmet-tcp: fix out-of-bounds write when receiving an over-long PDU

nvmet_tcp_try_recv_pdu() reads a PDU header into the fixed 128-byte queue->pdu union, then computes the remaining payload length as

<pre>queue->left = hdr->hlen - queue->offset + hdgst; </pre>

and reads that many more bytes into &queue->pdu + queue->offset, without ever bounding the result against sizeof(queue->pdu).

A struct nvme_tcp_icreq_pdu is itself 128 bytes, exactly the size of the union. Once a header digest has been negotiated (hdgst = 4), a second ICReq passes the hlen == nvmet_tcp_pdu_size() check but yields queue->left = 128 - 8 + 4 = 124, so bytes 8..132 are written into the 128-byte buffer -- 4 bytes past its end, over queue->hdr_digest and queue->data_digest. Those bytes are attacker-controlled (an ICReq carries no digest), and the duplicate ICReq is only rejected later, after the overflow. A remote unauthenticated host can thus corrupt kernel memory adjacent to the receive buffer.

Reject any PDU whose declared length would read past the end of queue->pdu before the second recv.

Metrics

CVSS Vector: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
CVSS Score: 9.8

AV:N - The flaw is in nvmet-tcp, an in-kernel NVMe-over-TCP target that accepts remote TCP connections; nvmet_tcp_try_recv_pdu() copies attacker-controlled PDU bytes from the socket, so the overflow is reachable from any network peer that can connect to an exposed NVMe-oF TCP port (typical cloud/storage-server deployment). AC:L - The attacker enables header digest in the first ICReq (the target copies the initiator's digest flags with no extra configuration), then sends a second 128-byte ICReq; queue->left becomes 124 and four attacker-controlled bytes are written past queue->pdu with no race or condition outside attacker control. PR:N - The overflow fires on a duplicate ICReq after TCP accept and digest negotiation, before NVMe Connect, host NQN allow-list, or DH-HMAC-CHAP in-band authentication; no Linux credentials or capabilities on the target are required. UI:N - Exploitation requires only attacker-sent NVMe/TCP PDUs to an already listening target port; no victim user action such as mounting a filesystem or opening a device is needed. S:U - The out-of-bounds write corrupts fields of the host's nvmet_tcp_queue in kernel memory and does not cross a VM, hypervisor, container, or IOMMU security boundary. C:H - Attacker-controlled 4-byte overflow into kernel memory adjacent to queue->pdu is memory corruption that, per kernel guidance, can be leveraged for information disclosure (including by clearing hdr_digest so later verify_hdgst is skipped and by controlling the persisted digest-flag bytes). I:H - This is an attacker-controlled out-of-bounds write past the 128-byte queue->pdu union into adjacent kernel fields (hdr_digest and data_digest); per kernel guidance an OOB write is High integrity impact and can disable PDU digest verification before the duplicate ICReq is rejected. A:H - After the overflow, nvmet_tcp_done_recv_pdu() returns -EPROTO and nvmet_tcp_socket_error() calls nvmet_ctrl_fatal_error() once a controller exists (e.g. after unauthenticated Discovery Connect), taking down the NVMe target; the kernel memory corruption can also oops, and the trigger is remotely repeatable.

Product Status

Vendor Linux
Product Linux
Versions Default: unaffected
  • affected from 872d26a391da92ed8f0c0f5cb5fef428067b7f30 to a3f0bcfbaf3312a5754d1ce020a07d394669eb25 (excl.)
  • affected from 872d26a391da92ed8f0c0f5cb5fef428067b7f30 to 4f84d42c53c49557fb1ef285c683b0a81b576c74 (excl.)
  • affected from 872d26a391da92ed8f0c0f5cb5fef428067b7f30 to 58dc6035b79c4c73c0cbf9ec9f68a7f117b2b3e6 (excl.)
  • affected from 872d26a391da92ed8f0c0f5cb5fef428067b7f30 to cf5f39d2b58f97e0cd1829c4a6aeef17f1607cca (excl.)
  • affected from 872d26a391da92ed8f0c0f5cb5fef428067b7f30 to 3a385e0c39efbe34db8edd95900c123113ae3450 (excl.)
  • affected from 872d26a391da92ed8f0c0f5cb5fef428067b7f30 to dbc4acbdb3ca8c81441368ad7409b8f77d4de8f6 (excl.)
  • affected from 872d26a391da92ed8f0c0f5cb5fef428067b7f30 to d95d342bc0ea82dc79e6362b2f1f997431750e4c (excl.)
  • affected from 872d26a391da92ed8f0c0f5cb5fef428067b7f30 to 14cc5a7e77731497d5bea70f3bb05df7eda982e4 (excl.)
Vendor Linux
Product Linux
Versions Default: affected
  • Version 5.0 is affected
  • unaffected from 0 to 5.0 (excl.)
  • unaffected from 5.10.270 to 5.10.* (incl.)
  • unaffected from 5.15.221 to 5.15.* (incl.)
  • unaffected from 6.1.188 to 6.1.* (incl.)
  • unaffected from 6.6.157 to 6.6.* (incl.)
  • unaffected from 6.12.110 to 6.12.* (incl.)
  • unaffected from 6.18.51 to 6.18.* (incl.)
  • unaffected from 7.2.5 to 7.2.* (incl.)
  • unaffected from 7.3-rc2 to * (incl.)

References