From: Mark Zhang <markzhang@nvidia.com>
To: Zheng Zhang <zheng.zhang@email.ucr.edu>,
jgg@ziepe.ca, leon@kernel.org, mbloch@nvidia.com
Cc: linux-rdma@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: use-after-free in debug_spin_lock_before invoked the rdma driver
Date: Fri, 28 Jul 2023 09:40:03 +0800 [thread overview]
Message-ID: <eaddbca3-fb83-4f0e-501e-fed2d7e292b4@nvidia.com> (raw)
In-Reply-To: <CAC_GQSqAC56qOvJFYu02fmWaRRsZ-Q-e6Z0xD+j8iFU9GxCNXA@mail.gmail.com>
On 7/28/2023 8:45 AM, Zheng Zhang wrote:
> *External email: Use caution opening links or attachments*
>
>
> Jason, Leon, Mark Zhang, Mark Bloch and to whom it may concern:
>
> Hello! We have found a bug in the Linux kernel version 6.2.0 by
> Syzkaller with our own templates. In the call trace it invoked the rdma
> driver, thus we think it may be different from the reported case invoked
> io_ring whose fix is also in the io_ring module.
> Unfortunately, it doesn't generate a reproducer.
>
> Attached is the report, log generated by syzkaller.
> Please let me know if there is any additional information that I can
> provide to help debug this issue.
> Thanks!
> Best
> zheng
>
Hi Zheng,
Thank you very much for reporting. Is it easy to reproduce? Can you
please help test with this patch, thanks:
diff --git a/drivers/infiniband/core/cma.c b/drivers/infiniband/core/cma.c
index 1ee87c3aaeab..76810aac1809 100644
--- a/drivers/infiniband/core/cma.c
+++ b/drivers/infiniband/core/cma.c
@@ -3491,11 +3491,13 @@ static void addr_handler(int status, struct
sockaddr *src_addr,
event.event = RDMA_CM_EVENT_ADDR_RESOLVED;
if (cma_cm_event_handler(id_priv, &event)) {
+ cma_id_put(id_priv);
destroy_id_handler_unlock(id_priv);
return;
}
out:
mutex_unlock(&id_priv->handler_mutex);
+ cma_id_put(id_priv);
}
static int cma_resolve_loopback(struct rdma_id_private *id_priv)
@@ -4107,6 +4109,9 @@ int rdma_resolve_addr(struct rdma_cm_id *id,
struct sockaddr *src_addr,
rdma_addr_cancel(&id->route.addr.dev_addr);
else
id_priv->used_resolve_ip = 1;
+
+ /* Balances with cma_id_put() in addr_handler */
+ cma_id_get(id_priv);
ret = rdma_resolve_ip(cma_src_addr(id_priv), dst_addr,
&id->route.addr.dev_addr,
timeout_ms, addr_handler,
parent reply other threads:[~2023-07-28 1:40 UTC|newest]
Thread overview: expand[flat|nested] mbox.gz Atom feed
[parent not found: <CAC_GQSqAC56qOvJFYu02fmWaRRsZ-Q-e6Z0xD+j8iFU9GxCNXA@mail.gmail.com>]
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=eaddbca3-fb83-4f0e-501e-fed2d7e292b4@nvidia.com \
--to=markzhang@nvidia.com \
--cc=jgg@ziepe.ca \
--cc=leon@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rdma@vger.kernel.org \
--cc=mbloch@nvidia.com \
--cc=zheng.zhang@email.ucr.edu \
/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
all inboxes | Powered by JetHome®