nvme: clear caller pointer on identify failure
authorKeith Busch <kbusch@kernel.org>
Wed, 6 Mar 2024 14:20:30 +0000 (06:20 -0800)
committerKeith Busch <kbusch@kernel.org>
Wed, 6 Mar 2024 14:29:01 +0000 (06:29 -0800)
The memory allocated for the identification is freed on failure. Set
it to NULL so the caller doesn't have a pointer to that freed address.

Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Keith Busch <kbusch@kernel.org>
drivers/nvme/host/core.c

index c4d928585ce359c489239a42ad3866a4f01366d3..2baf5786a92fe66bbbeebda12f5957d02ea2718a 100644 (file)
@@ -1403,8 +1403,10 @@ static int nvme_identify_ctrl(struct nvme_ctrl *dev, struct nvme_id_ctrl **id)
 
        error = nvme_submit_sync_cmd(dev->admin_q, &c, *id,
                        sizeof(struct nvme_id_ctrl));
-       if (error)
+       if (error) {
                kfree(*id);
+               *id = NULL;
+       }
        return error;
 }
 
@@ -1533,6 +1535,7 @@ int nvme_identify_ns(struct nvme_ctrl *ctrl, unsigned nsid,
        if (error) {
                dev_warn(ctrl->device, "Identify namespace failed (%d)\n", error);
                kfree(*id);
+               *id = NULL;
        }
        return error;
 }