|
@@ -518,7 +518,7 @@ static uint32_t csr_get_dot11_mode(struct mac_context *mac_ctx,
|
|
|
}
|
|
|
|
|
|
QDF_STATUS csr_roam_issue_ft_preauth_req(struct mac_context *mac_ctx,
|
|
|
- uint32_t session_id,
|
|
|
+ uint32_t vdev_id,
|
|
|
struct bss_description *bss_desc)
|
|
|
{
|
|
|
tpSirFTPreAuthReq preauth_req;
|
|
@@ -527,15 +527,14 @@ QDF_STATUS csr_roam_issue_ft_preauth_req(struct mac_context *mac_ctx,
|
|
|
uint32_t dot11mode, buf_len;
|
|
|
QDF_STATUS status;
|
|
|
struct csr_roam_session *csr_session = CSR_GET_SESSION(mac_ctx,
|
|
|
- session_id);
|
|
|
+ vdev_id);
|
|
|
|
|
|
if (!csr_session) {
|
|
|
- sme_err("Session does not exist for session id: %d",
|
|
|
- session_id);
|
|
|
+ sme_err("Session does not exist for vdev_id: %d", vdev_id);
|
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
}
|
|
|
|
|
|
- dot11mode = csr_get_dot11_mode(mac_ctx, session_id, bss_desc);
|
|
|
+ dot11mode = csr_get_dot11_mode(mac_ctx, vdev_id, bss_desc);
|
|
|
if (!dot11mode) {
|
|
|
sme_err("dot11mode is zero");
|
|
|
return QDF_STATUS_E_FAILURE;
|
|
@@ -554,7 +553,7 @@ QDF_STATUS csr_roam_issue_ft_preauth_req(struct mac_context *mac_ctx,
|
|
|
}
|
|
|
|
|
|
/* Save the SME Session ID. We need it while processing preauth resp */
|
|
|
- csr_session->ftSmeContext.smeSessionId = session_id;
|
|
|
+ csr_session->ftSmeContext.vdev_id = vdev_id;
|
|
|
preauth_req->messageType = eWNI_SME_FT_PRE_AUTH_REQ;
|
|
|
preauth_req->pre_auth_channel_freq = bss_desc->chan_freq;
|
|
|
preauth_req->dot11mode = dot11mode;
|
|
@@ -567,8 +566,8 @@ QDF_STATUS csr_roam_issue_ft_preauth_req(struct mac_context *mac_ctx,
|
|
|
qdf_mem_copy((void *)&preauth_req->self_mac_addr,
|
|
|
(void *)&csr_session->self_mac_addr.bytes, sizeof(tSirMacAddr));
|
|
|
|
|
|
- if (csr_roam_is11r_assoc(mac_ctx, session_id) &&
|
|
|
- (mac_ctx->roam.roamSession[session_id].connectedProfile.AuthType !=
|
|
|
+ if (csr_roam_is11r_assoc(mac_ctx, vdev_id) &&
|
|
|
+ (mac_ctx->roam.roamSession[vdev_id].connectedProfile.AuthType !=
|
|
|
eCSR_AUTH_TYPE_OPEN_SYSTEM)) {
|
|
|
preauth_req->ft_ies_length =
|
|
|
(uint16_t) csr_session->ftSmeContext.auth_ft_ies_length;
|
|
@@ -595,9 +594,9 @@ void csr_roam_ft_pre_auth_rsp_processor(struct mac_context *mac_ctx,
|
|
|
QDF_STATUS status = QDF_STATUS_SUCCESS;
|
|
|
struct csr_roam_info *roam_info;
|
|
|
enum csr_akm_type conn_Auth_type;
|
|
|
- uint32_t session_id = preauth_rsp->smeSessionId;
|
|
|
+ uint32_t vdev_id = preauth_rsp->vdev_id;
|
|
|
struct csr_roam_session *csr_session = CSR_GET_SESSION(mac_ctx,
|
|
|
- session_id);
|
|
|
+ vdev_id);
|
|
|
tDot11fAuthentication *p_auth = NULL;
|
|
|
|
|
|
if (!csr_session) {
|
|
@@ -605,10 +604,10 @@ void csr_roam_ft_pre_auth_rsp_processor(struct mac_context *mac_ctx,
|
|
|
return;
|
|
|
}
|
|
|
status = csr_neighbor_roam_preauth_rsp_handler(mac_ctx,
|
|
|
- preauth_rsp->smeSessionId, preauth_rsp->status);
|
|
|
+ preauth_rsp->vdev_id, preauth_rsp->status);
|
|
|
if (status != QDF_STATUS_SUCCESS) {
|
|
|
sme_err("Preauth was not processed: %d SessionID: %d",
|
|
|
- status, session_id);
|
|
|
+ status, vdev_id);
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -617,13 +616,13 @@ void csr_roam_ft_pre_auth_rsp_processor(struct mac_context *mac_ctx,
|
|
|
csr_session->ftSmeContext.FTState = eFT_AUTH_COMPLETE;
|
|
|
csr_session->ftSmeContext.psavedFTPreAuthRsp = preauth_rsp;
|
|
|
/* No need to notify qos module if this is a non 11r & ESE roam */
|
|
|
- if (csr_roam_is11r_assoc(mac_ctx, preauth_rsp->smeSessionId)
|
|
|
+ if (csr_roam_is11r_assoc(mac_ctx, preauth_rsp->vdev_id)
|
|
|
#ifdef FEATURE_WLAN_ESE
|
|
|
- || csr_roam_is_ese_assoc(mac_ctx, preauth_rsp->smeSessionId)
|
|
|
+ || csr_roam_is_ese_assoc(mac_ctx, preauth_rsp->vdev_id)
|
|
|
#endif
|
|
|
) {
|
|
|
sme_qos_csr_event_ind(mac_ctx,
|
|
|
- csr_session->ftSmeContext.smeSessionId,
|
|
|
+ csr_session->ftSmeContext.vdev_id,
|
|
|
SME_QOS_CSR_PREAUTH_SUCCESS_IND, NULL);
|
|
|
}
|
|
|
status =
|
|
@@ -642,29 +641,29 @@ void csr_roam_ft_pre_auth_rsp_processor(struct mac_context *mac_ctx,
|
|
|
qdf_mem_copy((void *)&csr_session->ftSmeContext.preAuthbssId,
|
|
|
(void *)preauth_rsp->preAuthbssId,
|
|
|
sizeof(struct qdf_mac_addr));
|
|
|
- if (csr_roam_is11r_assoc(mac_ctx, preauth_rsp->smeSessionId))
|
|
|
- csr_roam_call_callback(mac_ctx, preauth_rsp->smeSessionId,
|
|
|
+ if (csr_roam_is11r_assoc(mac_ctx, preauth_rsp->vdev_id))
|
|
|
+ csr_roam_call_callback(mac_ctx, preauth_rsp->vdev_id,
|
|
|
NULL, 0, eCSR_ROAM_FT_RESPONSE, eCSR_ROAM_RESULT_NONE);
|
|
|
|
|
|
#ifdef FEATURE_WLAN_ESE
|
|
|
- if (csr_roam_is_ese_assoc(mac_ctx, preauth_rsp->smeSessionId)) {
|
|
|
+ if (csr_roam_is_ese_assoc(mac_ctx, preauth_rsp->vdev_id)) {
|
|
|
csr_roam_read_tsf(mac_ctx, (uint8_t *)&roam_info->timestamp,
|
|
|
- preauth_rsp->smeSessionId);
|
|
|
+ preauth_rsp->vdev_id);
|
|
|
qdf_mem_copy((void *)&roam_info->bssid,
|
|
|
(void *)preauth_rsp->preAuthbssId,
|
|
|
sizeof(struct qdf_mac_addr));
|
|
|
- csr_roam_call_callback(mac_ctx, preauth_rsp->smeSessionId,
|
|
|
+ csr_roam_call_callback(mac_ctx, preauth_rsp->vdev_id,
|
|
|
roam_info, 0,
|
|
|
eCSR_ROAM_CCKM_PREAUTH_NOTIFY, 0);
|
|
|
}
|
|
|
#endif
|
|
|
|
|
|
- if (csr_roam_is_fast_roam_enabled(mac_ctx, preauth_rsp->smeSessionId)) {
|
|
|
+ if (csr_roam_is_fast_roam_enabled(mac_ctx, preauth_rsp->vdev_id)) {
|
|
|
/* Save the bssid from the received response */
|
|
|
qdf_mem_copy((void *)&roam_info->bssid,
|
|
|
(void *)preauth_rsp->preAuthbssId,
|
|
|
sizeof(struct qdf_mac_addr));
|
|
|
- csr_roam_call_callback(mac_ctx, preauth_rsp->smeSessionId,
|
|
|
+ csr_roam_call_callback(mac_ctx, preauth_rsp->vdev_id,
|
|
|
roam_info, 0, eCSR_ROAM_PMK_NOTIFY, 0);
|
|
|
}
|
|
|
|
|
@@ -673,14 +672,14 @@ void csr_roam_ft_pre_auth_rsp_processor(struct mac_context *mac_ctx,
|
|
|
/* If its an Open Auth, FT IEs are not provided by supplicant */
|
|
|
/* Hence populate them here */
|
|
|
conn_Auth_type =
|
|
|
- mac_ctx->roam.roamSession[session_id].connectedProfile.AuthType;
|
|
|
+ mac_ctx->roam.roamSession[vdev_id].connectedProfile.AuthType;
|
|
|
|
|
|
csr_session->ftSmeContext.addMDIE = false;
|
|
|
|
|
|
/* Done with it, init it. */
|
|
|
csr_session->ftSmeContext.psavedFTPreAuthRsp = NULL;
|
|
|
|
|
|
- if (csr_roam_is11r_assoc(mac_ctx, preauth_rsp->smeSessionId) &&
|
|
|
+ if (csr_roam_is11r_assoc(mac_ctx, preauth_rsp->vdev_id) &&
|
|
|
(conn_Auth_type == eCSR_AUTH_TYPE_OPEN_SYSTEM)) {
|
|
|
uint16_t ft_ies_length;
|
|
|
|