Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1655263 > unrolled thread

[PATCH 3.16 149/212] rdma_cm: fail iwarp accepts w/o connection params

Started byBen Hutchings <ben@decadent.org.uk>
First post2017-06-01 17:50 +0200
Last post2017-06-01 17:50 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 3.16 149/212] rdma_cm: fail iwarp accepts w/o connection  params Ben Hutchings <ben@decadent.org.uk> - 2017-06-01 17:50 +0200

#1655263 — [PATCH 3.16 149/212] rdma_cm: fail iwarp accepts w/o connection params

FromBen Hutchings <ben@decadent.org.uk>
Date2017-06-01 17:50 +0200
Subject[PATCH 3.16 149/212] rdma_cm: fail iwarp accepts w/o connection params
Message-ID<tNAwi-4oP-37@gated-at.bofh.it>
3.16.44-rc1 review patch.  If anyone has any objections, please let me know.

------------------

From: Steve Wise <swise@opengridcomputing.com>

commit f2625f7db4dd0bbd16a9c7d2950e7621f9aa57ad upstream.

cma_accept_iw() needs to return an error if conn_params is NULL.
Since this is coming from user space, we can crash.

Reported-by: Shaobo He <shaobo@cs.utah.edu>
Acked-by: Sean Hefty <sean.hefty@intel.com>
Signed-off-by: Steve Wise <swise@opengridcomputing.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
---
 drivers/infiniband/core/cma.c | 3 +++
 1 file changed, 3 insertions(+)

--- a/drivers/infiniband/core/cma.c
+++ b/drivers/infiniband/core/cma.c
@@ -2952,6 +2952,9 @@ static int cma_accept_iw(struct rdma_id_
 	struct iw_cm_conn_param iw_param;
 	int ret;
 
+	if (!conn_param)
+		return -EINVAL;
+
 	ret = cma_modify_qp_rtr(id_priv, conn_param);
 	if (ret)
 		return ret;

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web