]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
nvme-tcp: fix a NULL deref when receiving a 0-length r2t PDU
authorSagi Grimberg <sagi@grimberg.me>
Mon, 15 Mar 2021 21:08:11 +0000 (14:08 -0700)
committerChristoph Hellwig <hch@lst.de>
Thu, 18 Mar 2021 04:39:01 +0000 (05:39 +0100)
When the controller sends us a 0-length r2t PDU we should not attempt to
try to set up a h2cdata PDU but rather conclude that this is a buggy
controller (forward progress is not possible) and simply fail it
immediately.

Fixes: 3f2304f8c6d6 ("nvme-tcp: add NVMe over TCP host driver")
Reported-by: Belanger, Martin <Martin.Belanger@dell.com>
Signed-off-by: Sagi Grimberg <sagi@grimberg.me>
Signed-off-by: Christoph Hellwig <hch@lst.de>
drivers/nvme/host/tcp.c

index c535836e7065b9b28bb7b73aff69bf3318f9ca7f..5b23e1d52cb338a3f1aa42ca05dd7917eb2438f2 100644 (file)
@@ -568,6 +568,13 @@ static int nvme_tcp_setup_h2c_data_pdu(struct nvme_tcp_request *req,
        req->pdu_len = le32_to_cpu(pdu->r2t_length);
        req->pdu_sent = 0;
 
+       if (unlikely(!req->pdu_len)) {
+               dev_err(queue->ctrl->ctrl.device,
+                       "req %d r2t len is %u, probably a bug...\n",
+                       rq->tag, req->pdu_len);
+               return -EPROTO;
+       }
+
        if (unlikely(req->data_sent + req->pdu_len > req->data_len)) {
                dev_err(queue->ctrl->ctrl.device,
                        "req %d r2t len %u exceeded data len %u (%zu sent)\n",