linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3] qedr: fix resource leak in qedr_create_qp
       [not found] <AEYrHjmsd4Sp2R54y55pVL3CXr1KXedoBnTEczCBkpE9+SsFNg@mail.gmail.com>
@ 2020-09-11 12:51 ` Keita Suzuki
  2020-09-15  6:41   ` [EXT] " Michal Kalderon
  0 siblings, 1 reply; 2+ messages in thread
From: Keita Suzuki @ 2020-09-11 12:51 UTC (permalink / raw)
  Cc: keitasuzuki.park, takafumi, Michal Kalderon, Ariel Elior,
	Doug Ledford, Jason Gunthorpe, Yuval Bason, linux-rdma,
	linux-kernel

When xa_insert() fails, the acquired resource in qedr_create_qp should
also be freed. However, current implementation does not handle the
error.

Fix this by adding a new goto label that calls qedr_free_qp_resources.

Fixes: 1212767e23bb ("qedr: Add wrapping generic structure for qpidr and adjust idr routines.")
Signed-off-by: Keita Suzuki <keitasuzuki.park@sslab.ics.keio.ac.jp>
---
changelog(v3): Fix linebreak of the fix tag
changelog(v2): Change numbered labels to descriptive labels

 drivers/infiniband/hw/qedr/verbs.c | 52 ++++++++++++++++--------------
 1 file changed, 27 insertions(+), 25 deletions(-)

diff --git a/drivers/infiniband/hw/qedr/verbs.c b/drivers/infiniband/hw/qedr/verbs.c
index b49bef94637e..3b4c84f67023 100644
--- a/drivers/infiniband/hw/qedr/verbs.c
+++ b/drivers/infiniband/hw/qedr/verbs.c
@@ -2112,6 +2112,28 @@ static int qedr_create_kernel_qp(struct qedr_dev *dev,
 	return rc;
 }
 
+static int qedr_free_qp_resources(struct qedr_dev *dev, struct qedr_qp *qp,
+				  struct ib_udata *udata)
+{
+	struct qedr_ucontext *ctx =
+		rdma_udata_to_drv_context(udata, struct qedr_ucontext,
+					  ibucontext);
+	int rc;
+
+	if (qp->qp_type != IB_QPT_GSI) {
+		rc = dev->ops->rdma_destroy_qp(dev->rdma_ctx, qp->qed_qp);
+		if (rc)
+			return rc;
+	}
+
+	if (qp->create_type == QEDR_QP_CREATE_USER)
+		qedr_cleanup_user(dev, ctx, qp);
+	else
+		qedr_cleanup_kernel(dev, qp);
+
+	return 0;
+}
+
 struct ib_qp *qedr_create_qp(struct ib_pd *ibpd,
 			     struct ib_qp_init_attr *attrs,
 			     struct ib_udata *udata)
@@ -2158,19 +2180,21 @@ struct ib_qp *qedr_create_qp(struct ib_pd *ibpd,
 		rc = qedr_create_kernel_qp(dev, qp, ibpd, attrs);
 
 	if (rc)
-		goto err;
+		goto out_free_qp;
 
 	qp->ibqp.qp_num = qp->qp_id;
 
 	if (rdma_protocol_iwarp(&dev->ibdev, 1)) {
 		rc = xa_insert(&dev->qps, qp->qp_id, qp, GFP_KERNEL);
 		if (rc)
-			goto err;
+			goto out_free_qp_resources;
 	}
 
 	return &qp->ibqp;
 
-err:
+out_free_qp_resources:
+	qedr_free_qp_resources(dev, qp, udata);
+out_free_qp:
 	kfree(qp);
 
 	return ERR_PTR(-EFAULT);
@@ -2671,28 +2695,6 @@ int qedr_query_qp(struct ib_qp *ibqp,
 	return rc;
 }
 
-static int qedr_free_qp_resources(struct qedr_dev *dev, struct qedr_qp *qp,
-				  struct ib_udata *udata)
-{
-	struct qedr_ucontext *ctx =
-		rdma_udata_to_drv_context(udata, struct qedr_ucontext,
-					  ibucontext);
-	int rc;
-
-	if (qp->qp_type != IB_QPT_GSI) {
-		rc = dev->ops->rdma_destroy_qp(dev->rdma_ctx, qp->qed_qp);
-		if (rc)
-			return rc;
-	}
-
-	if (qp->create_type == QEDR_QP_CREATE_USER)
-		qedr_cleanup_user(dev, ctx, qp);
-	else
-		qedr_cleanup_kernel(dev, qp);
-
-	return 0;
-}
-
 int qedr_destroy_qp(struct ib_qp *ibqp, struct ib_udata *udata)
 {
 	struct qedr_qp *qp = get_qedr_qp(ibqp);
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* RE: [EXT] [PATCH v3] qedr: fix resource leak in qedr_create_qp
  2020-09-11 12:51 ` [PATCH v3] qedr: fix resource leak in qedr_create_qp Keita Suzuki
@ 2020-09-15  6:41   ` Michal Kalderon
  0 siblings, 0 replies; 2+ messages in thread
From: Michal Kalderon @ 2020-09-15  6:41 UTC (permalink / raw)
  To: Keita Suzuki
  Cc: takafumi, Ariel Elior, Doug Ledford, Jason Gunthorpe,
	Yuval Bason, linux-rdma, linux-kernel

> From: Keita Suzuki <keitasuzuki.park@sslab.ics.keio.ac.jp>
> Sent: Friday, September 11, 2020 3:52 PM
> When xa_insert() fails, the acquired resource in qedr_create_qp should also
> be freed. However, current implementation does not handle the error.
> 
> Fix this by adding a new goto label that calls qedr_free_qp_resources.
> 
> Fixes: 1212767e23bb ("qedr: Add wrapping generic structure for qpidr and
> adjust idr routines.")
> Signed-off-by: Keita Suzuki <keitasuzuki.park@sslab.ics.keio.ac.jp>
> ---
> changelog(v3): Fix linebreak of the fix tag
> changelog(v2): Change numbered labels to descriptive labels
> 
>  drivers/infiniband/hw/qedr/verbs.c | 52 ++++++++++++++++--------------
>  1 file changed, 27 insertions(+), 25 deletions(-)
> 
> diff --git a/drivers/infiniband/hw/qedr/verbs.c
> b/drivers/infiniband/hw/qedr/verbs.c
> index b49bef94637e..3b4c84f67023 100644
> --- a/drivers/infiniband/hw/qedr/verbs.c
> +++ b/drivers/infiniband/hw/qedr/verbs.c
> @@ -2112,6 +2112,28 @@ static int qedr_create_kernel_qp(struct qedr_dev
> *dev,
>  	return rc;
>  }
> 
> +static int qedr_free_qp_resources(struct qedr_dev *dev, struct qedr_qp
> *qp,
> +				  struct ib_udata *udata)
> +{
> +	struct qedr_ucontext *ctx =
> +		rdma_udata_to_drv_context(udata, struct qedr_ucontext,
> +					  ibucontext);
> +	int rc;
> +
> +	if (qp->qp_type != IB_QPT_GSI) {
> +		rc = dev->ops->rdma_destroy_qp(dev->rdma_ctx, qp-
> >qed_qp);
> +		if (rc)
> +			return rc;
> +	}
> +
> +	if (qp->create_type == QEDR_QP_CREATE_USER)
> +		qedr_cleanup_user(dev, ctx, qp);
> +	else
> +		qedr_cleanup_kernel(dev, qp);
> +
> +	return 0;
> +}
> +
>  struct ib_qp *qedr_create_qp(struct ib_pd *ibpd,
>  			     struct ib_qp_init_attr *attrs,
>  			     struct ib_udata *udata)
> @@ -2158,19 +2180,21 @@ struct ib_qp *qedr_create_qp(struct ib_pd
> *ibpd,
>  		rc = qedr_create_kernel_qp(dev, qp, ibpd, attrs);
> 
>  	if (rc)
> -		goto err;
> +		goto out_free_qp;
> 
>  	qp->ibqp.qp_num = qp->qp_id;
> 
>  	if (rdma_protocol_iwarp(&dev->ibdev, 1)) {
>  		rc = xa_insert(&dev->qps, qp->qp_id, qp, GFP_KERNEL);
>  		if (rc)
> -			goto err;
> +			goto out_free_qp_resources;
>  	}
> 
>  	return &qp->ibqp;
> 
> -err:
> +out_free_qp_resources:
> +	qedr_free_qp_resources(dev, qp, udata);
> +out_free_qp:
>  	kfree(qp);
> 
>  	return ERR_PTR(-EFAULT);
> @@ -2671,28 +2695,6 @@ int qedr_query_qp(struct ib_qp *ibqp,
>  	return rc;
>  }
> 
> -static int qedr_free_qp_resources(struct qedr_dev *dev, struct qedr_qp
> *qp,
> -				  struct ib_udata *udata)
> -{
> -	struct qedr_ucontext *ctx =
> -		rdma_udata_to_drv_context(udata, struct qedr_ucontext,
> -					  ibucontext);
> -	int rc;
> -
> -	if (qp->qp_type != IB_QPT_GSI) {
> -		rc = dev->ops->rdma_destroy_qp(dev->rdma_ctx, qp-
> >qed_qp);
> -		if (rc)
> -			return rc;
> -	}
> -
> -	if (qp->create_type == QEDR_QP_CREATE_USER)
> -		qedr_cleanup_user(dev, ctx, qp);
> -	else
> -		qedr_cleanup_kernel(dev, qp);
> -
> -	return 0;
> -}
> -
>  int qedr_destroy_qp(struct ib_qp *ibqp, struct ib_udata *udata)  {
>  	struct qedr_qp *qp = get_qedr_qp(ibqp);
> --
> 2.17.1

Thanks, 

Acked-by: Michal Kalderon <michal.kalderon@marvell.com>



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-09-15  6:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <AEYrHjmsd4Sp2R54y55pVL3CXr1KXedoBnTEczCBkpE9+SsFNg@mail.gmail.com>
2020-09-11 12:51 ` [PATCH v3] qedr: fix resource leak in qedr_create_qp Keita Suzuki
2020-09-15  6:41   ` [EXT] " Michal Kalderon

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).