|
@@ -1038,6 +1038,8 @@ void cm_get_sta_cxn_info(struct wlan_objmgr_vdev *vdev,
|
|
|
#endif
|
|
|
#endif
|
|
|
|
|
|
+#define MGMT_FRAME_FULL_PROTECTION (RSN_CAP_MFP_REQUIRED | RSN_CAP_MFP_CAPABLE)
|
|
|
+
|
|
|
QDF_STATUS cm_connect_start_ind(struct wlan_objmgr_vdev *vdev,
|
|
|
struct wlan_cm_connect_req *req)
|
|
|
{
|
|
@@ -1062,6 +1064,8 @@ QDF_STATUS cm_connect_start_ind(struct wlan_objmgr_vdev *vdev,
|
|
|
|
|
|
rso_cfg = wlan_cm_get_rso_config(vdev);
|
|
|
if (rso_cfg) {
|
|
|
+ uint8_t rso_user_mfp;
|
|
|
+
|
|
|
rso_cfg->orig_sec_info.rsn_caps = req->crypto.rsn_caps;
|
|
|
rso_cfg->orig_sec_info.authmodeset = req->crypto.auth_type;
|
|
|
rso_cfg->orig_sec_info.ucastcipherset =
|
|
@@ -1075,6 +1079,19 @@ QDF_STATUS cm_connect_start_ind(struct wlan_objmgr_vdev *vdev,
|
|
|
* wlan_cm_send_connect_rsp
|
|
|
*/
|
|
|
rso_cfg->tried_candidate_freq_list.num_chan = 0;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * This user configure MFP capability is global and is for
|
|
|
+ * multiple profiles which can be used by firmware for cross-AKM
|
|
|
+ * roaming. When user configures MFP required then we should
|
|
|
+ * set both MFPC and MFPR in RSN caps.
|
|
|
+ */
|
|
|
+ rso_user_mfp = req->crypto.user_mfp;
|
|
|
+ if (rso_user_mfp == RSN_CAP_MFP_REQUIRED)
|
|
|
+ rso_user_mfp = MGMT_FRAME_FULL_PROTECTION;
|
|
|
+ rso_cfg->rso_rsn_caps = (req->crypto.rsn_caps) &
|
|
|
+ (~MGMT_FRAME_FULL_PROTECTION);
|
|
|
+ rso_cfg->rso_rsn_caps = (rso_cfg->rso_rsn_caps) | rso_user_mfp;
|
|
|
}
|
|
|
|
|
|
if (wlan_get_vendor_ie_ptr_from_oui(HS20_OUI_TYPE,
|