wifi: ath12k: Fix a NULL pointer dereference in ath12k_mac_op_hw_scan()
authorWen Gong <quic_wgong@quicinc.com>
Wed, 26 Jul 2023 09:26:25 +0000 (05:26 -0400)
committerKalle Valo <quic_kvalo@quicinc.com>
Wed, 2 Aug 2023 16:54:18 +0000 (19:54 +0300)
commit8ad314da54c6dd223a6b6cc85019160aa842f659
treecc941949ed35aa7aecec245fc381ce15ebda33e8
parent13329d0cb7212b058bd8451a99d215a8f97645ea
wifi: ath12k: Fix a NULL pointer dereference in ath12k_mac_op_hw_scan()

In ath12k_mac_op_hw_scan(), the return value of kzalloc() is directly
used in memcpy(), which may lead to a NULL pointer dereference on
failure of kzalloc().

Fix this bug by adding a check of arg.extraie.ptr.

Tested-on: WCN7850 hw2.0 PCI WLAN.HMT.1.0-03427-QCAHMTSWPL_V1.0_V2.0_SILICONZ-1.15378.4

Signed-off-by: Wen Gong <quic_wgong@quicinc.com>
Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
Link: https://lore.kernel.org/r/20230726092625.3350-1-quic_wgong@quicinc.com
drivers/net/wireless/ath/ath12k/mac.c