nvme: clear the request_queue pointers on failure in nvme_alloc_admin_tag_set
authorMaurizio Lombardi <mlombard@redhat.com>
Fri, 27 Jan 2023 15:42:37 +0000 (16:42 +0100)
committerChristoph Hellwig <hch@lst.de>
Wed, 1 Feb 2023 13:18:46 +0000 (14:18 +0100)
If nvme_alloc_admin_tag_set() fails, the admin_q and fabrics_q pointers
are left with an invalid, non-NULL value. Other functions may then check
the pointers and dereference them, e.g. in

  nvme_probe() -> out_disable: -> nvme_dev_remove_admin().

Fix the bug by setting admin_q and fabrics_q to NULL in case of error.

Also use the set variable to free the tag_set as ctrl->admin_tagset isn't
initialized yet.

Signed-off-by: Maurizio Lombardi <mlombard@redhat.com>
Reviewed-by: Keith Busch <kbusch@kernel.org>
Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
drivers/nvme/host/core.c

index 2990ed331a1aa8bf438effb22d0e8afbbbc295fa..1c333ce64bd441c2b72c909b7c21f79664de65fd 100644 (file)
@@ -4892,7 +4892,9 @@ out_cleanup_admin_q:
        blk_mq_destroy_queue(ctrl->admin_q);
        blk_put_queue(ctrl->admin_q);
 out_free_tagset:
-       blk_mq_free_tag_set(ctrl->admin_tagset);
+       blk_mq_free_tag_set(set);
+       ctrl->admin_q = NULL;
+       ctrl->fabrics_q = NULL;
        return ret;
 }
 EXPORT_SYMBOL_GPL(nvme_alloc_admin_tag_set);