|
@@ -77,6 +77,7 @@
|
|
|
#include "wlan_mlme_api.h"
|
|
|
#include "wmi_unified_bcn_api.h"
|
|
|
#include <wlan_crypto_global_api.h>
|
|
|
+#include <wlan_mlme_main.h>
|
|
|
|
|
|
/**
|
|
|
* wma_send_bcn_buf_ll() - prepare and send beacon buffer to fw for LL
|
|
@@ -1913,6 +1914,23 @@ wma_skip_bip_key_set(tp_wma_handle wma_handle, uint32_t key_cipher)
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
+static void wma_set_peer_unicast_cipher(tp_wma_handle wma,
|
|
|
+ struct set_key_params *params)
|
|
|
+{
|
|
|
+ struct wlan_objmgr_peer *peer;
|
|
|
+
|
|
|
+ peer = wlan_objmgr_get_peer(wma->psoc,
|
|
|
+ wlan_objmgr_pdev_get_pdev_id(wma->pdev),
|
|
|
+ params->peer_mac, WLAN_LEGACY_WMA_ID);
|
|
|
+ if (!peer) {
|
|
|
+ WMA_LOGE("Peer of peer_mac %pM not found", params->peer_mac);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ wlan_peer_set_unicast_cipher(peer, params->key_cipher);
|
|
|
+ wlan_objmgr_peer_release_ref(peer, WLAN_LEGACY_WMA_ID);
|
|
|
+}
|
|
|
+
|
|
|
/**
|
|
|
* wma_setup_install_key_cmd() - set key parameters
|
|
|
* @wma_handle: wma handle
|
|
@@ -2089,11 +2107,11 @@ static QDF_STATUS wma_setup_install_key_cmd(tp_wma_handle wma_handle,
|
|
|
CMAC_IPN_LEN);
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
- if (key_params->unicast && iface)
|
|
|
- iface->ucast_key_cipher = params.key_cipher;
|
|
|
#endif /* WLAN_FEATURE_11W */
|
|
|
|
|
|
+ if (key_params->unicast)
|
|
|
+ wma_set_peer_unicast_cipher(wma_handle, ¶ms);
|
|
|
+
|
|
|
WMA_LOGD("Key setup : vdev_id %d key_idx %d key_type %d key_len %d",
|
|
|
key_params->vdev_id, key_params->key_idx,
|
|
|
key_params->key_type, key_params->key_len);
|
|
@@ -3895,7 +3913,8 @@ int wma_process_rmf_frame(tp_wma_handle wma_handle,
|
|
|
{
|
|
|
uint8_t *orig_hdr;
|
|
|
uint8_t *ccmp;
|
|
|
- uint8_t mic_len, hdr_len;
|
|
|
+ uint8_t mic_len, hdr_len, pdev_id;
|
|
|
+ QDF_STATUS status;
|
|
|
|
|
|
if ((wh)->i_fc[1] & IEEE80211_FC1_WEP) {
|
|
|
if (QDF_IS_ADDR_BROADCAST(wh->i_addr1) ||
|
|
@@ -3904,19 +3923,23 @@ int wma_process_rmf_frame(tp_wma_handle wma_handle,
|
|
|
cds_pkt_return_packet(rx_pkt);
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
- if (iface->ucast_key_cipher == WMI_CIPHER_AES_GCM) {
|
|
|
- hdr_len = WLAN_IEEE80211_GCMP_HEADERLEN;
|
|
|
- mic_len = WLAN_IEEE80211_GCMP_MICLEN;
|
|
|
- } else {
|
|
|
- hdr_len = IEEE80211_CCMP_HEADERLEN;
|
|
|
- mic_len = IEEE80211_CCMP_MICLEN;
|
|
|
- }
|
|
|
- if (qdf_nbuf_len(wbuf) < (sizeof(*wh) + hdr_len + mic_len)) {
|
|
|
- WMA_LOGE("Buffer length less than expected %d",
|
|
|
- (int)qdf_nbuf_len(wbuf));
|
|
|
- cds_pkt_return_packet(rx_pkt);
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
+
|
|
|
+ pdev_id = wlan_objmgr_pdev_get_pdev_id(wma_handle->pdev);
|
|
|
+ status = mlme_get_peer_mic_len(wma_handle->psoc, pdev_id,
|
|
|
+ wh->i_addr2, &mic_len,
|
|
|
+ &hdr_len);
|
|
|
+ if (QDF_IS_STATUS_ERROR(status)) {
|
|
|
+ WMA_LOGE("Failed to get mic hdr and length");
|
|
|
+ cds_pkt_return_packet(rx_pkt);
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (qdf_nbuf_len(wbuf) < (sizeof(*wh) + hdr_len + mic_len)) {
|
|
|
+ WMA_LOGE("Buffer length less than expected %d",
|
|
|
+ (int)qdf_nbuf_len(wbuf));
|
|
|
+ cds_pkt_return_packet(rx_pkt);
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
|
|
|
orig_hdr = (uint8_t *) qdf_nbuf_data(wbuf);
|
|
|
/* Pointer to head of CCMP header */
|