|
@@ -122,13 +122,11 @@ uint8_t ccp_rsn_oui04[HDD_RSN_OUI_SIZE] = { 0x00, 0x0F, 0xAC, 0x04 };
|
|
|
/* WEP-104 */
|
|
|
uint8_t ccp_rsn_oui05[HDD_RSN_OUI_SIZE] = { 0x00, 0x0F, 0xAC, 0x05 };
|
|
|
|
|
|
-#ifdef WLAN_FEATURE_11W
|
|
|
/* RSN-PSK-SHA256 */
|
|
|
uint8_t ccp_rsn_oui07[HDD_RSN_OUI_SIZE] = { 0x00, 0x0F, 0xAC, 0x06 };
|
|
|
|
|
|
/* RSN-8021X-SHA256 */
|
|
|
uint8_t ccp_rsn_oui08[HDD_RSN_OUI_SIZE] = { 0x00, 0x0F, 0xAC, 0x05 };
|
|
|
-#endif
|
|
|
|
|
|
/* AES-GCMP-128 */
|
|
|
uint8_t ccp_rsn_oui09[HDD_RSN_OUI_SIZE] = { 0x00, 0x0F, 0xAC, 0x08 };
|
|
@@ -1668,11 +1666,9 @@ void hdd_clear_roam_profile_ie(struct hdd_adapter *adapter)
|
|
|
|
|
|
qdf_mem_zero(roam_profile->bssid_hint.bytes, QDF_MAC_ADDR_SIZE);
|
|
|
|
|
|
-#ifdef WLAN_FEATURE_11W
|
|
|
roam_profile->MFPEnabled = false;
|
|
|
roam_profile->MFPRequired = 0;
|
|
|
roam_profile->MFPCapable = 0;
|
|
|
-#endif
|
|
|
|
|
|
qdf_mem_zero(roam_profile->Keys.KeyLength, CSR_MAX_NUM_KEY);
|
|
|
qdf_mem_zero(roam_profile->Keys.KeyMaterial,
|
|
@@ -3440,8 +3436,6 @@ QDF_STATUS hdd_roam_register_tdlssta(struct hdd_adapter *adapter,
|
|
|
|
|
|
#endif
|
|
|
|
|
|
-#ifdef WLAN_FEATURE_11W
|
|
|
-
|
|
|
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 11, 0))
|
|
|
|
|
|
static void hdd_rx_unprot_disassoc(struct net_device *dev,
|
|
@@ -3527,7 +3521,6 @@ hdd_indicate_unprot_mgmt_frame(struct hdd_adapter *adapter,
|
|
|
break;
|
|
|
}
|
|
|
}
|
|
|
-#endif /* WLAN_FEATURE_11W */
|
|
|
|
|
|
#ifdef FEATURE_WLAN_ESE
|
|
|
/**
|
|
@@ -3922,21 +3915,14 @@ hdd_indicate_ese_bcn_report_ind(const struct hdd_adapter *adapter,
|
|
|
*
|
|
|
* Return: bool
|
|
|
*/
|
|
|
-#ifdef WLAN_FEATURE_11W
|
|
|
static inline bool
|
|
|
hdd_is_8021x_sha256_auth_type(struct hdd_station_ctx *sta_ctx)
|
|
|
{
|
|
|
return eCSR_AUTH_TYPE_RSN_8021X_SHA256 ==
|
|
|
sta_ctx->conn_info.auth_type;
|
|
|
}
|
|
|
-#else
|
|
|
-static inline bool
|
|
|
-hdd_is_8021x_sha256_auth_type(struct hdd_station_ctx *sta_ctx)
|
|
|
-{
|
|
|
- return false;
|
|
|
-}
|
|
|
-#endif
|
|
|
#endif
|
|
|
+
|
|
|
/*
|
|
|
* hdd_roam_channel_switch_handler() - hdd channel switch handler
|
|
|
* @adapter: Pointer to adapter context
|
|
@@ -4278,7 +4264,6 @@ hdd_sme_roam_callback(void *context, struct csr_roam_info *roam_info,
|
|
|
break;
|
|
|
#endif
|
|
|
#endif /* ndef FEATURE_CM_ENABLE */
|
|
|
-#ifdef WLAN_FEATURE_11W
|
|
|
case eCSR_ROAM_UNPROT_MGMT_FRAME_IND:
|
|
|
if (roam_info)
|
|
|
hdd_indicate_unprot_mgmt_frame(adapter,
|
|
@@ -4286,7 +4271,6 @@ hdd_sme_roam_callback(void *context, struct csr_roam_info *roam_info,
|
|
|
roam_info->pbFrames,
|
|
|
roam_info->frameType);
|
|
|
break;
|
|
|
-#endif
|
|
|
#ifdef FEATURE_WLAN_ESE
|
|
|
case eCSR_ROAM_TSM_IE_IND:
|
|
|
if (roam_info)
|
|
@@ -4457,16 +4441,13 @@ enum csr_akm_type hdd_translate_rsn_to_csr_auth_type(uint8_t auth_suite[4])
|
|
|
auth_type = eCSR_AUTH_TYPE_CCKM_RSN;
|
|
|
} else
|
|
|
#endif /* FEATURE_WLAN_ESE */
|
|
|
-#ifdef WLAN_FEATURE_11W
|
|
|
if (memcmp(auth_suite, ccp_rsn_oui07, 4) == 0) {
|
|
|
auth_type = eCSR_AUTH_TYPE_RSN_PSK_SHA256;
|
|
|
} else if (memcmp(auth_suite, ccp_rsn_oui08, 4) == 0) {
|
|
|
auth_type = eCSR_AUTH_TYPE_RSN_8021X_SHA256;
|
|
|
} else if (memcmp(auth_suite, ccp_rsn_oui_18, 4) == 0) {
|
|
|
auth_type = eCSR_AUTH_TYPE_OWE;
|
|
|
- } else
|
|
|
-#endif
|
|
|
- if (memcmp(auth_suite, ccp_rsn_oui_12, 4) == 0) {
|
|
|
+ } else if (memcmp(auth_suite, ccp_rsn_oui_12, 4) == 0) {
|
|
|
auth_type = eCSR_AUTH_TYPE_DPP_RSN;
|
|
|
} else if (memcmp(auth_suite, ccp_rsn_oui_0b, 4) == 0) {
|
|
|
/* Check for Suite B EAP 256 */
|
|
@@ -4606,7 +4587,6 @@ bool hdd_is_fils_connection(struct hdd_context *hdd_ctx,
|
|
|
*
|
|
|
* Return: 0 on success, error number otherwise
|
|
|
*/
|
|
|
-#ifdef WLAN_FEATURE_11W
|
|
|
static int32_t hdd_process_genie(struct hdd_adapter *adapter,
|
|
|
u8 *bssid,
|
|
|
eCsrEncryptionType *encrypt_type,
|
|
@@ -4614,14 +4594,6 @@ static int32_t hdd_process_genie(struct hdd_adapter *adapter,
|
|
|
enum csr_akm_type *auth_type,
|
|
|
uint8_t *mfp_required, uint8_t *mfp_capable,
|
|
|
uint16_t gen_ie_len, uint8_t *gen_ie)
|
|
|
-#else
|
|
|
-static int32_t hdd_process_genie(struct hdd_adapter *adapter,
|
|
|
- u8 *bssid,
|
|
|
- eCsrEncryptionType *encrypt_type,
|
|
|
- eCsrEncryptionType *mc_encrypt_type,
|
|
|
- enum csr_akm_type *auth_type,
|
|
|
- uint16_t gen_ie_len, uint8_t *gen_ie)
|
|
|
-#endif
|
|
|
{
|
|
|
mac_handle_t mac_handle = hdd_adapter_get_mac_handle(adapter);
|
|
|
tDot11fIERSN dot11_rsn_ie = {0};
|
|
@@ -4678,12 +4650,10 @@ static int32_t hdd_process_genie(struct hdd_adapter *adapter,
|
|
|
*mc_encrypt_type =
|
|
|
hdd_translate_rsn_to_csr_encryption_type(
|
|
|
dot11_rsn_ie.gp_cipher_suite);
|
|
|
-#ifdef WLAN_FEATURE_11W
|
|
|
*mfp_required = dot11_rsn_ie.RSN_Cap[0] &
|
|
|
WLAN_CRYPTO_RSN_CAP_MFP_REQUIRED;
|
|
|
*mfp_capable = dot11_rsn_ie.RSN_Cap[0] &
|
|
|
WLAN_CRYPTO_RSN_CAP_MFP_ENABLED;
|
|
|
-#endif
|
|
|
qdf_mem_copy(&rsn_cap, dot11_rsn_ie.RSN_Cap, sizeof(rsn_cap));
|
|
|
wlan_crypto_set_vdev_param(adapter->vdev,
|
|
|
WLAN_CRYPTO_PARAM_RSN_CAP, rsn_cap);
|
|
@@ -4730,7 +4700,6 @@ static int32_t hdd_process_genie(struct hdd_adapter *adapter,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-#ifdef WLAN_FEATURE_11W
|
|
|
/**
|
|
|
* hdd_set_def_mfp_cap: Set default value for MFPCapable
|
|
|
* @profile: Source profile
|
|
@@ -4742,12 +4711,6 @@ static void hdd_set_def_mfp_cap(
|
|
|
{
|
|
|
roam_profile->MFPCapable = roam_profile->MFPEnabled;
|
|
|
}
|
|
|
-#else
|
|
|
-static void hdd_set_def_mfp_cap(
|
|
|
- struct csr_roam_profile *roam_profile)
|
|
|
-{
|
|
|
-}
|
|
|
-#endif
|
|
|
|
|
|
/**
|
|
|
* hdd_set_def_rsne_override() - set default encryption type and auth type
|
|
@@ -4779,7 +4742,6 @@ static void hdd_set_def_rsne_override(
|
|
|
*auth_type = eCSR_AUTH_TYPE_RSN_PSK;
|
|
|
}
|
|
|
|
|
|
-#ifdef WLAN_FEATURE_11W
|
|
|
/**
|
|
|
* hdd_update_values_mfp_cap: Update values for MFPCapable,MFPEnabled
|
|
|
* @profile: Source profile
|
|
@@ -4795,15 +4757,7 @@ static void hdd_update_values_mfp_cap(
|
|
|
roam_profile->MFPRequired = mfp_required;
|
|
|
roam_profile->MFPCapable = mfp_capable;
|
|
|
}
|
|
|
-#else
|
|
|
-static void hdd_update_values_mfp_cap(
|
|
|
- struct csr_roam_profile *roam_profile,
|
|
|
- uint8_t mfp_required, uint8_t mfp_capable )
|
|
|
-{
|
|
|
-}
|
|
|
-#endif
|
|
|
|
|
|
-#ifdef WLAN_FEATURE_11W
|
|
|
/**
|
|
|
* hdd_set_mfp_enable: Set value for MFPEnabled
|
|
|
* @profile: Source profile
|
|
@@ -4823,13 +4777,7 @@ static void hdd_set_mfp_enable(struct csr_roam_profile *roam_profile)
|
|
|
roam_profile->MFPEnabled = 0;
|
|
|
}
|
|
|
}
|
|
|
-#else
|
|
|
-static void hdd_set_mfp_enable(struct csr_roam_profile *roam_profile)
|
|
|
-{
|
|
|
-}
|
|
|
-#endif
|
|
|
|
|
|
-#ifdef WLAN_FEATURE_11W
|
|
|
static uint32_t wlan_hdd_process_genie(struct hdd_adapter *adapter,
|
|
|
u8 *bssid,
|
|
|
eCsrEncryptionType *encrypt_type,
|
|
@@ -4848,25 +4796,6 @@ static uint32_t wlan_hdd_process_genie(struct hdd_adapter *adapter,
|
|
|
|
|
|
return status;
|
|
|
}
|
|
|
-#else
|
|
|
-static uint32_t wlan_hdd_process_genie(struct hdd_adapter *adapter,
|
|
|
- u8 *bssid,
|
|
|
- eCsrEncryptionType *encrypt_type,
|
|
|
- eCsrEncryptionType *mc_encrypt_type,
|
|
|
- enum csr_akm_type *auth_type,
|
|
|
- uint8_t *mfp_required,
|
|
|
- uint8_t *mfp_capable,
|
|
|
- uint16_t gen_ie_len, uint8_t *gen_ie)
|
|
|
-{
|
|
|
- uint32_t status;
|
|
|
-
|
|
|
- status = hdd_process_genie(adapter, bssid,
|
|
|
- encrypt_type, mc_encrypt_type,
|
|
|
- auth_type, gen_ie_len, gen_ie);
|
|
|
-
|
|
|
- return status;
|
|
|
-}
|
|
|
-#endif
|
|
|
|
|
|
/**
|
|
|
* hdd_set_genie_to_csr() - set genie to csr
|
|
@@ -5074,19 +5003,16 @@ int hdd_set_csr_auth_type(struct hdd_adapter *adapter,
|
|
|
== HDD_AUTH_KEY_MGMT_PSK)) {
|
|
|
roam_profile->AuthType.authType[0] =
|
|
|
eCSR_AUTH_TYPE_FT_RSN_PSK;
|
|
|
- } else
|
|
|
-
|
|
|
-#ifdef WLAN_FEATURE_11W
|
|
|
- if (rsn_auth_type == eCSR_AUTH_TYPE_RSN_PSK_SHA256) {
|
|
|
+ } else if (rsn_auth_type ==
|
|
|
+ eCSR_AUTH_TYPE_RSN_PSK_SHA256) {
|
|
|
roam_profile->AuthType.authType[0] =
|
|
|
eCSR_AUTH_TYPE_RSN_PSK_SHA256;
|
|
|
} else if (rsn_auth_type ==
|
|
|
eCSR_AUTH_TYPE_RSN_8021X_SHA256) {
|
|
|
roam_profile->AuthType.authType[0] =
|
|
|
eCSR_AUTH_TYPE_RSN_8021X_SHA256;
|
|
|
- } else
|
|
|
-#endif
|
|
|
- if (hdd_check_fils_rsn_n_set_auth_type(roam_profile,
|
|
|
+ } else if (hdd_check_fils_rsn_n_set_auth_type(
|
|
|
+ roam_profile,
|
|
|
rsn_auth_type)) {
|
|
|
roam_profile->AuthType.authType[0] =
|
|
|
rsn_auth_type;
|
|
@@ -5126,14 +5052,12 @@ int hdd_set_csr_auth_type(struct hdd_adapter *adapter,
|
|
|
/* FT Suite-B EAP SHA 384 */
|
|
|
roam_profile->AuthType.authType[0] =
|
|
|
eCSR_AUTH_TYPE_FT_SUITEB_EAP_SHA384;
|
|
|
-
|
|
|
} else if ((key_mgmt & HDD_AUTH_KEY_MGMT_802_1X)
|
|
|
== HDD_AUTH_KEY_MGMT_802_1X) {
|
|
|
roam_profile->AuthType.authType[0] =
|
|
|
eCSR_AUTH_TYPE_RSN;
|
|
|
- } else
|
|
|
- if ((key_mgmt & HDD_AUTH_KEY_MGMT_PSK)
|
|
|
- == HDD_AUTH_KEY_MGMT_PSK) {
|
|
|
+ } else if ((key_mgmt & HDD_AUTH_KEY_MGMT_PSK)
|
|
|
+ == HDD_AUTH_KEY_MGMT_PSK) {
|
|
|
roam_profile->AuthType.authType[0] =
|
|
|
eCSR_AUTH_TYPE_RSN_PSK;
|
|
|
} else {
|