public inbox for v9fs@lists.linux.dev
 help / color / mirror / Atom feed
* [PATCH] net: 9p: Fix a possible null-pointer dereference in p9_cm_event_handler()
@ 2025-12-18  7:10 Tuo Li
  2025-12-18 10:54 ` Christian Schoenebeck
  2025-12-18 12:56 ` asmadeus
  0 siblings, 2 replies; 4+ messages in thread
From: Tuo Li @ 2025-12-18  7:10 UTC (permalink / raw)
  To: ericvh, lucho, asmadeus, linux_oss; +Cc: v9fs, linux-kernel, Tuo Li

In p9_cm_event_handler(), rdma is checked in the RDMA_CM_EVENT_DISCONNECTED
case, indicating that it may be NULL. If this happens, a null-pointer
dereference can occur when complete() is called:

  complete(&rdma->cm_done);

To prevent such a potential null-pointer dereference, add a defensive check
before invoking complete().

Signed-off-by: Tuo Li <islituo@gmail.com>
---
 net/9p/trans_rdma.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/net/9p/trans_rdma.c b/net/9p/trans_rdma.c
index 4d406479f83b..b5ceae1cccbb 100644
--- a/net/9p/trans_rdma.c
+++ b/net/9p/trans_rdma.c
@@ -170,7 +170,8 @@ p9_cm_event_handler(struct rdma_cm_id *id, struct rdma_cm_event *event)
 	default:
 		BUG();
 	}
-	complete(&rdma->cm_done);
+	if (rdma)
+		complete(&rdma->cm_done);
 	return 0;
 }
 
-- 
2.43.0


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

end of thread, other threads:[~2025-12-18 13:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-18  7:10 [PATCH] net: 9p: Fix a possible null-pointer dereference in p9_cm_event_handler() Tuo Li
2025-12-18 10:54 ` Christian Schoenebeck
2025-12-18 12:56 ` asmadeus
2025-12-18 13:13   ` Tuo Li

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox