From: Dan Carpenter <dan.carpenter@oracle.com>
To: Jason Gunthorpe <jgg@nvidia.com>
Cc: Potnuri Bharat Teja <bharat@chelsio.com>,
Steve Wise <larrystevenwise@gmail.com>,
Doug Ledford <dledford@redhat.com>,
linux-rdma@vger.kernel.org, kernel-janitors@vger.kernel.org
Subject: Re: [PATCH] RDMA/cxgb4: fix refcounting leak in c4iw_ref_send_wait()
Date: Fri, 28 Jan 2022 22:52:27 +0300 [thread overview]
Message-ID: <20220128195226.GN1978@kadam> (raw)
In-Reply-To: <20220128171636.GA1892386@nvidia.com>
On Fri, Jan 28, 2022 at 01:16:36PM -0400, Jason Gunthorpe wrote:
> On Mon, Jan 24, 2022 at 03:25:02PM +0300, Dan Carpenter wrote:
> > Call c4iw_put_wr_wait() if c4iw_wait_for_reply() fails. This
> > code uses kobject so the worst impact from this bug is a DoS.
> >
> > Fixes: 2015f26cfade ("iw_cxgb4: add referencing to wait objects")
> > Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
> > ---
> > >From static analysis. Not tested.
> >
> > drivers/infiniband/hw/cxgb4/iw_cxgb4.h | 17 ++++++++++++-----
> > 1 file changed, 12 insertions(+), 5 deletions(-)
>
> Are you sure?
>
> Looking at the caller alloc_srq_queue() it calls down to
> c4iw_ref_send_wait() then immediately exits on failure
>
> The only caller c4iw_create_srq()
>
> ret = alloc_srq_queue(srq, ucontext ? &ucontext->uctx :
> &rhp->rdev.uctx, srq->wr_waitp);
> if (ret)
> goto err_free_skb;
>
> And then
>
> err_free_skb:
> kfree_skb(srq->destroy_skb);
> err_free_srq_idx:
> c4iw_free_srq_idx(&rhp->rdev, srq->idx);
> err_free_wr_wait:
> c4iw_put_wr_wait(srq->wr_waitp);
>
> So we just double put the thing with this patch
>
> I have no idea how this logic is supposed to work, and clearly
> something is buggy in here, but I can't say this is right..
Yeah. My patch isn't right. That refcount from my patch is supposed to
be decremented in _c4iw_wake_up(). That function gets called when the
firmware responds in fw6_msg(). So if we cleanup everything and the
firmware sends a delayed response the it leads to a use after free.
Say the firmware never responds, then sure, that leads to a resource
leak. But it's better to have a small memory leak than a use after free.
regards,
dan carpenter
prev parent reply other threads:[~2022-01-28 19:53 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-01-24 12:25 [PATCH] RDMA/cxgb4: fix refcounting leak in c4iw_ref_send_wait() Dan Carpenter
2022-01-28 17:16 ` Jason Gunthorpe
2022-01-28 19:52 ` Dan Carpenter [this message]
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=20220128195226.GN1978@kadam \
--to=dan.carpenter@oracle.com \
--cc=bharat@chelsio.com \
--cc=dledford@redhat.com \
--cc=jgg@nvidia.com \
--cc=kernel-janitors@vger.kernel.org \
--cc=larrystevenwise@gmail.com \
--cc=linux-rdma@vger.kernel.org \
/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;
as well as URLs for NNTP newsgroup(s).