Procházet zdrojové kódy

qcacld-3.0: Reject TDLS Setup for concurrencies

Add concurrency conditions to reject TDLS setup if
along with BSS STA, any other iface is in connected state.

In case where supplicant directly sends TDLS setup without
adding peer or Discovery been rejected because of
concurrency, driver adds the peer and update fw with the
same using UPDATE_TDLS_PEER_STATE command. This results
in fw crash as TDLS state is not yet set.
This check is required because setp_peer shouldn't be
processed if any other interface such as SAP, P2P already
have started otherwise it will result in FW crash.

Change-Id: Ia0f1f099a5fb5be0c4875a38842d97070964aaa0
CRs-Fixed: 3263513
Utkarsh Bhatnagar před 2 roky
rodič
revize
23582bfd81

+ 6 - 0
components/tdls/core/src/wlan_tdls_cmds_process.c

@@ -1970,6 +1970,12 @@ QDF_STATUS tdls_process_setup_peer(struct tdls_oper_request *req)
 		goto freereq;
 	}
 
+	if (!tdls_check_is_tdls_allowed(vdev)) {
+		tdls_err("TDLS not allowed, Reject setup peer");
+		status = QDF_STATUS_E_INVAL;
+		goto error;
+	}
+
 	qdf_mem_zero(&peer_req, sizeof(peer_req));
 	peer_req.vdev = vdev;
 	qdf_mem_copy(peer_req.peer_addr, req->peer_addr, QDF_MAC_ADDR_SIZE);