netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1] Fix NULL pointer dereference in cn_filter()
@ 2023-10-13 22:56 Anjali Kulkarni
  2023-10-17  8:02 ` Simon Horman
  0 siblings, 1 reply; 4+ messages in thread
From: Anjali Kulkarni @ 2023-10-13 22:56 UTC (permalink / raw)
  To: linux-kernel
  Cc: davem, Liam.Howlett, netdev, oliver.sang, kuba, horms,
	anjali.k.kulkarni

Check that sk_user_data is not NULL, else return from cn_filter().

Fixes: 2aa1f7a1f47c ("connector/cn_proc: Add filtering to fix some bugs")
Reported-by: kernel test robot <oliver.sang@intel.com>
Closes: https://lore.kernel.org/oe-lkp/202309201456.84c19e27-oliver.sang@intel.com/
Signed-off-by: Anjali Kulkarni <anjali.k.kulkarni@oracle.com>
---
 drivers/connector/cn_proc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/connector/cn_proc.c b/drivers/connector/cn_proc.c
index 05d562e9c8b1..a8e55569e4f5 100644
--- a/drivers/connector/cn_proc.c
+++ b/drivers/connector/cn_proc.c
@@ -54,7 +54,7 @@ static int cn_filter(struct sock *dsk, struct sk_buff *skb, void *data)
 	enum proc_cn_mcast_op mc_op;
 	uintptr_t val;
 
-	if (!dsk || !data)
+	if (!dsk || !data || !dsk->sk_user_data)
 		return 0;
 
 	ptr = (__u32 *)data;
-- 
2.42.0


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

end of thread, other threads:[~2023-10-20 23:30 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-13 22:56 [PATCH v1] Fix NULL pointer dereference in cn_filter() Anjali Kulkarni
2023-10-17  8:02 ` Simon Horman
2023-10-17 18:23   ` Anjali Kulkarni
2023-10-20 23:30   ` Anjali Kulkarni

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