All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] infiniband: cxgb4: fix a potential NULL pointer dereference
@ 2019-03-09  5:19 Kangjie Lu
  2019-03-23  2:37 ` Kangjie Lu
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Kangjie Lu @ 2019-03-09  5:19 UTC (permalink / raw)
  To: kjlu
  Cc: pakki001, Steve Wise, Doug Ledford, Jason Gunthorpe, linux-rdma,
	linux-kernel

get_skb may fail and return NULL. The fix returns "ENOMEM"
when it fails to avoid NULL dereference.

Signed-off-by: Kangjie Lu <kjlu@umn.edu>
---
 drivers/infiniband/hw/cxgb4/cm.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/infiniband/hw/cxgb4/cm.c b/drivers/infiniband/hw/cxgb4/cm.c
index 8221813219e5..502a54d57e2c 100644
--- a/drivers/infiniband/hw/cxgb4/cm.c
+++ b/drivers/infiniband/hw/cxgb4/cm.c
@@ -1919,6 +1919,9 @@ static int send_fw_act_open_req(struct c4iw_ep *ep, unsigned int atid)
 	int win;
 
 	skb = get_skb(NULL, sizeof(*req), GFP_KERNEL);
+	if (!skb)
+		return -ENOMEM;
+
 	req = __skb_put_zero(skb, sizeof(*req));
 	req->op_compl = htonl(WR_OP_V(FW_OFLD_CONNECTION_WR));
 	req->len16_pkd = htonl(FW_WR_LEN16_V(DIV_ROUND_UP(sizeof(*req), 16)));
-- 
2.17.1

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

end of thread, other threads:[~2019-03-28 14:26 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-09  5:19 [PATCH] infiniband: cxgb4: fix a potential NULL pointer dereference Kangjie Lu
2019-03-23  2:37 ` Kangjie Lu
2019-03-23 23:25   ` Bart Van Assche
2019-03-27 13:38   ` Potnuri Bharat Teja
2019-03-28 12:40     ` Jason Gunthorpe
2019-03-28 14:20       ` Potnuri Bharat Teja
2019-03-28 14:26         ` Jason Gunthorpe
2019-03-27 12:13 ` Mukesh Ojha
2019-03-27 12:15 ` Mukesh Ojha

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.