Browse Source

qcacld-3.0: Fix NAN peer addition/deletion with all-zero mac addr

NAN Enable/NAN Disable followed by NAN data request causes NDP to
fail. The failure is due to the firmware sending all-zero peer
mac address. Even though, FW should not be sending all-zero
peer address, the host should not attempt to add/delete such
a peer.

CRs-Fixed: 2043780
Change-Id: Ieab390d3fe4c585e1692767839856af2ad17a37b
Ravi Joshi 8 years ago
parent
commit
bf5981365c
1 changed files with 16 additions and 0 deletions
  1. 16 0
      core/mac/src/pe/nan/nan_datapath.c

+ 16 - 0
core/mac/src/pe/nan/nan_datapath.c

@@ -103,13 +103,22 @@ static QDF_STATUS lim_add_ndi_peer(tpAniSirGlobal mac_ctx,
 	tpDphHashNode sta_ds;
 	uint16_t assoc_id, peer_idx;
 	tSirRetStatus status;
+	uint8_t zero_mac_addr[QDF_MAC_ADDR_SIZE] = { 0, 0, 0, 0, 0, 0 };
+
+	if (!qdf_mem_cmp(&zero_mac_addr, &peer_mac_addr.bytes[0],
+			QDF_MAC_ADDR_SIZE)) {
+		pe_err("Failing to add peer with all zero mac addr");
+		return QDF_STATUS_E_FAILURE;
+	}
 
 	session = pe_find_session_by_sme_session_id(mac_ctx,
 						vdev_id);
 	if (session == NULL) {
 		/* couldn't find session */
+		pe_err("Session not found for vdev_id: %d", vdev_id);
 		return QDF_STATUS_E_FAILURE;
 	}
+
 	sta_ds = dph_lookup_hash_entry(mac_ctx,
 				peer_mac_addr.bytes,
 				&assoc_id, &session->dph.dphHashTable);
@@ -263,6 +272,13 @@ static void lim_ndp_delete_peer_by_addr(tpAniSirGlobal mac_ctx, uint8_t vdev_id,
 	tpPESession session;
 	tpDphHashNode sta_ds;
 	uint16_t peer_idx;
+	uint8_t zero_mac_addr[QDF_MAC_ADDR_SIZE] = { 0, 0, 0, 0, 0, 0 };
+
+	if (!qdf_mem_cmp(&zero_mac_addr, &peer_ndi_mac_addr.bytes[0],
+			QDF_MAC_ADDR_SIZE)) {
+		pe_err("Failing to delete the peer with all zero mac addr");
+		return;
+	}
 
 	pe_info("deleting peer: "MAC_ADDRESS_STR" confirm rejected",
 		MAC_ADDR_ARRAY(peer_ndi_mac_addr.bytes));