|
@@ -1131,134 +1131,6 @@ uint8_t lim_is_system_in_scan_state(tpAniSirGlobal pMac)
|
|
|
}
|
|
|
} /*** end lim_is_system_in_scan_state() ***/
|
|
|
|
|
|
-#ifdef WLAN_FEATURE_11W
|
|
|
-/**
|
|
|
- * lim_is_assoc_req_for_drop()- function to decides to drop assoc\reassoc
|
|
|
- * frames.
|
|
|
- * @mac: pointer to global mac structure
|
|
|
- * @rx_pkt_info: rx packet meta information
|
|
|
- *
|
|
|
- * This function is called before enqueuing the frame to PE queue to
|
|
|
- * drop flooded assoc/reassoc frames getting into PE Queue.
|
|
|
- *
|
|
|
- * Return: true for dropping the frame otherwise false
|
|
|
- */
|
|
|
-
|
|
|
-bool lim_is_assoc_req_for_drop(tpAniSirGlobal mac, uint8_t *rx_pkt_info)
|
|
|
-{
|
|
|
- uint8_t session_id;
|
|
|
- uint16_t aid;
|
|
|
- tpPESession session_entry;
|
|
|
- tpSirMacMgmtHdr mac_hdr;
|
|
|
- tpDphHashNode sta_ds;
|
|
|
-
|
|
|
- mac_hdr = WMA_GET_RX_MAC_HEADER(rx_pkt_info);
|
|
|
- session_entry = pe_find_session_by_bssid(mac, mac_hdr->bssId,
|
|
|
- &session_id);
|
|
|
- if (!session_entry) {
|
|
|
- PELOG1(limLog(pMac, LOG1,
|
|
|
- FL("session does not exist for given STA [%pM]"),
|
|
|
- mac_hdr->sa););
|
|
|
- return false;
|
|
|
- }
|
|
|
-
|
|
|
- sta_ds = dph_lookup_hash_entry(mac, mac_hdr->sa, &aid,
|
|
|
- &session_entry->dph.dphHashTable);
|
|
|
- if (!sta_ds) {
|
|
|
- PELOG1(limLog(pMac, LOG1, FL("pStaDs is NULL")););
|
|
|
- return false;
|
|
|
- }
|
|
|
-
|
|
|
- if (!sta_ds->rmfEnabled)
|
|
|
- return false;
|
|
|
-
|
|
|
- if (sta_ds->pmfSaQueryState == DPH_SA_QUERY_IN_PROGRESS)
|
|
|
- return true;
|
|
|
-
|
|
|
- if (sta_ds->last_assoc_received_time &&
|
|
|
- ((qdf_mc_timer_get_system_ticks() -
|
|
|
- sta_ds->last_assoc_received_time) < 1000))
|
|
|
- return true;
|
|
|
-
|
|
|
- sta_ds->last_assoc_received_time = qdf_mc_timer_get_system_ticks();
|
|
|
- return false;
|
|
|
-}
|
|
|
-#endif
|
|
|
-
|
|
|
-/**
|
|
|
- * lim_is_deauth_diassoc_for_drop()- function to decides to drop deauth\diassoc
|
|
|
- * frames.
|
|
|
- * @mac: pointer to global mac structure
|
|
|
- * @rx_pkt_info: rx packet meta information
|
|
|
- *
|
|
|
- * This function is called before enqueuing the frame to PE queue to
|
|
|
- * drop flooded deauth/diassoc frames getting into PE Queue.
|
|
|
- *
|
|
|
- * Return: true for dropping the frame otherwise false
|
|
|
- */
|
|
|
-
|
|
|
-bool lim_is_deauth_diassoc_for_drop(tpAniSirGlobal mac, uint8_t *rx_pkt_info)
|
|
|
-{
|
|
|
- uint8_t session_id;
|
|
|
- uint16_t aid;
|
|
|
- tpPESession session_entry;
|
|
|
- tpSirMacMgmtHdr mac_hdr;
|
|
|
- tpDphHashNode sta_ds;
|
|
|
-
|
|
|
- mac_hdr = WMA_GET_RX_MAC_HEADER(rx_pkt_info);
|
|
|
- session_entry = pe_find_session_by_bssid(mac, mac_hdr->bssId,
|
|
|
- &session_id);
|
|
|
- if (!session_entry) {
|
|
|
- PELOG1(limLog(mac, LOG1,
|
|
|
- FL("session does not exist for given STA [%pM]"),
|
|
|
- mac_hdr->sa););
|
|
|
- return true;
|
|
|
- }
|
|
|
-
|
|
|
- sta_ds = dph_lookup_hash_entry(mac, mac_hdr->sa, &aid,
|
|
|
- &session_entry->dph.dphHashTable);
|
|
|
- if (!sta_ds) {
|
|
|
- PELOG1(limLog(mac, LOG1, FL("pStaDs is NULL")););
|
|
|
- return true;
|
|
|
- }
|
|
|
-
|
|
|
-#ifdef WLAN_FEATURE_11W
|
|
|
- if (session_entry->limRmfEnabled) {
|
|
|
- if ((WMA_GET_RX_DPU_FEEDBACK(rx_pkt_info) &
|
|
|
- DPU_FEEDBACK_UNPROTECTED_ERROR)) {
|
|
|
- /* It may be possible that deauth/diassoc frames from a
|
|
|
- * spoofy AP is received. So if all further
|
|
|
- * deauth/diassoc frmaes are dropped, then it may
|
|
|
- * result in lossing deauth/diassoc frames from genuine
|
|
|
- * AP. So process all deauth/diassoc frames with
|
|
|
- * a time difference of 1 sec.
|
|
|
- */
|
|
|
- if ((qdf_mc_timer_get_system_ticks() -
|
|
|
- sta_ds->last_unprot_deauth_disassoc) < 1000)
|
|
|
- return true;
|
|
|
-
|
|
|
- sta_ds->last_unprot_deauth_disassoc =
|
|
|
- qdf_mc_timer_get_system_ticks();
|
|
|
- } else {
|
|
|
- /* PMF enabed, Management frames are protected */
|
|
|
- if (sta_ds->proct_deauh_disassoc_cnt)
|
|
|
- return true;
|
|
|
- else
|
|
|
- sta_ds->proct_deauh_disassoc_cnt++;
|
|
|
- }
|
|
|
- } else
|
|
|
-#endif
|
|
|
- /* PMF disabled */
|
|
|
- {
|
|
|
- if (sta_ds->is_disassoc_deauth_in_progress)
|
|
|
- return true;
|
|
|
- else
|
|
|
- sta_ds->is_disassoc_deauth_in_progress++;
|
|
|
- }
|
|
|
-
|
|
|
- return false;
|
|
|
-}
|
|
|
-
|
|
|
/**
|
|
|
*\brief lim_received_hb_handler()
|
|
|
*
|
|
@@ -2209,18 +2081,6 @@ tMgmtFrmDropReason lim_is_pkt_candidate_for_drop(tpAniSirGlobal pMac,
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- if ((subType == SIR_MAC_MGMT_DEAUTH ||
|
|
|
- subType == SIR_MAC_MGMT_DISASSOC) &&
|
|
|
- lim_is_deauth_diassoc_for_drop(pMac, pRxPacketInfo))
|
|
|
- return eMGMT_DROP_SPURIOUS_FRAME;
|
|
|
-
|
|
|
-#ifdef WLAN_FEATURE_11W
|
|
|
- if ((subType == SIR_MAC_MGMT_ASSOC_REQ ||
|
|
|
- subType == SIR_MAC_MGMT_REASSOC_REQ) &&
|
|
|
- lim_is_assoc_req_for_drop(pMac, pRxPacketInfo))
|
|
|
- return eMGMT_DROP_SPURIOUS_FRAME;
|
|
|
-#endif
|
|
|
-
|
|
|
framelen = WMA_GET_RX_PAYLOAD_LEN(pRxPacketInfo);
|
|
|
pBody = WMA_GET_RX_MPDU_DATA(pRxPacketInfo);
|
|
|
|