From: Leon Romanovsky <leon@kernel.org>
To: Chen Zhongjin <chenzhongjin@huawei.com>
Cc: linux-kernel@vger.kernel.org, linux-rdma@vger.kernel.org,
jgg@ziepe.ca, wsa+renesas@sang-engineering.com,
avihaih@nvidia.com, raeds@nvidia.com,
penguin-kernel@i-love.sakura.ne.jp, dledford@redhat.com,
matanb@mellanox.com
Subject: Re: [PATCH] RDMA/core: Fix null-ptr-deref in ib_core_cleanup()
Date: Tue, 25 Oct 2022 10:30:27 +0300 [thread overview]
Message-ID: <Y1eQkzttmSDcSIrU@unreal> (raw)
In-Reply-To: <20221025024146.109137-1-chenzhongjin@huawei.com>
On Tue, Oct 25, 2022 at 10:41:46AM +0800, Chen Zhongjin wrote:
> KASAN reported a null-ptr-deref error:
>
> KASAN: null-ptr-deref in range [0x0000000000000118-0x000000000000011f]
> CPU: 1 PID: 379
> Hardware name: QEMU Standard PC (i440FX + PIIX, 1996)
> RIP: 0010:destroy_workqueue+0x2f/0x740
> RSP: 0018:ffff888016137df8 EFLAGS: 00000202
> ...
> Call Trace:
> <TASK>
> ib_core_cleanup+0xa/0xa1 [ib_core]
> __do_sys_delete_module.constprop.0+0x34f/0x5b0
> do_syscall_64+0x3a/0x90
> entry_SYSCALL_64_after_hwframe+0x63/0xcd
> RIP: 0033:0x7fa1a0d221b7
> ...
> </TASK>
>
> It is because the fail of roce_gid_mgmt_init() is ignored:
>
> ib_core_init()
> roce_gid_mgmt_init()
> gid_cache_wq = alloc_ordered_workqueue # fail
> ...
> ib_core_cleanup()
> roce_gid_mgmt_cleanup()
> destroy_workqueue(gid_cache_wq)
> # destroy an unallocated wq
>
> Fix this by catching the fail of roce_gid_mgmt_init() in ib_core_init().
>
> Fixes: 03db3a2d81e6 ("IB/core: Add RoCE GID table management")
> Signed-off-by: Chen Zhongjin <chenzhongjin@huawei.com>
> ---
> drivers/infiniband/core/device.c | 10 +++++++++-
> 1 file changed, 9 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/infiniband/core/device.c b/drivers/infiniband/core/device.c
> index ae60c73babcc..b45431e6817b 100644
> --- a/drivers/infiniband/core/device.c
> +++ b/drivers/infiniband/core/device.c
> @@ -2815,10 +2815,18 @@ static int __init ib_core_init(void)
>
> nldev_init();
> rdma_nl_register(RDMA_NL_LS, ibnl_ls_cb_table);
> - roce_gid_mgmt_init();
> + ret = roce_gid_mgmt_init();
> + if (ret) {
> + pr_warn("Couldn't init RoCE GID management\n");
> + goto err_parent;
> + }
>
> return 0;
>
> +err_parent:
> + nldev_exit();
> + rdma_nl_unregister(RDMA_NL_LS);
> + unregister_pernet_device(&rdma_dev_net_ops);
I fixed release flow and applied to -rc.
diff --git a/drivers/infiniband/core/device.c b/drivers/infiniband/core/device.c
index b45431e6817b..b69e2c4e4d2a 100644
--- a/drivers/infiniband/core/device.c
+++ b/drivers/infiniband/core/device.c
@@ -2824,8 +2824,8 @@ static int __init ib_core_init(void)
return 0;
err_parent:
- nldev_exit();
rdma_nl_unregister(RDMA_NL_LS);
+ nldev_exit();
unregister_pernet_device(&rdma_dev_net_ops);
err_compat:
unregister_blocking_lsm_notifier(&ibdev_lsm_nb);
Thanks
> err_compat:
> unregister_blocking_lsm_notifier(&ibdev_lsm_nb);
> err_sa:
> --
> 2.17.1
>
next prev parent reply other threads:[~2022-10-25 7:30 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-25 2:41 [PATCH] RDMA/core: Fix null-ptr-deref in ib_core_cleanup() Chen Zhongjin
2022-10-25 7:30 ` Leon Romanovsky [this message]
2022-10-25 7:37 ` Leon Romanovsky
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Y1eQkzttmSDcSIrU@unreal \
--to=leon@kernel.org \
--cc=avihaih@nvidia.com \
--cc=chenzhongjin@huawei.com \
--cc=dledford@redhat.com \
--cc=jgg@ziepe.ca \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rdma@vger.kernel.org \
--cc=matanb@mellanox.com \
--cc=penguin-kernel@i-love.sakura.ne.jp \
--cc=raeds@nvidia.com \
--cc=wsa+renesas@sang-engineering.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox