|
@@ -1,5 +1,5 @@
|
|
|
/*
|
|
|
- * Copyright (c) 2012-2019 The Linux Foundation. All rights reserved.
|
|
|
+ * Copyright (c) 2012-2020 The Linux Foundation. All rights reserved.
|
|
|
*
|
|
|
* Permission to use, copy, modify, and/or distribute this software for
|
|
|
* any purpose with or without fee is hereby granted, provided that the
|
|
@@ -2484,29 +2484,9 @@ void lim_process_mlm_set_sta_key_rsp(struct mac_context *mac_ctx,
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- if (!lim_is_set_key_req_converged() &&
|
|
|
- (session_entry->limMlmState != eLIM_MLM_WT_SET_STA_KEY_STATE)) {
|
|
|
- pe_err("Received in unexpected limMlmState %X vdev %d pe_session_id %d",
|
|
|
- session_entry->limMlmState, session_entry->vdev_id,
|
|
|
- session_entry->peSessionId);
|
|
|
- qdf_mem_zero(msg->bodyptr, sizeof(*set_key_params));
|
|
|
- qdf_mem_free(msg->bodyptr);
|
|
|
- msg->bodyptr = NULL;
|
|
|
- lim_send_sme_set_context_rsp(mac_ctx,
|
|
|
- mlm_set_key_cnf.peer_macaddr,
|
|
|
- 0, eSIR_SME_INVALID_SESSION, NULL,
|
|
|
- vdev_id);
|
|
|
- return;
|
|
|
- }
|
|
|
session_id = session_entry->peSessionId;
|
|
|
pe_debug("PE session ID %d, vdev_id %d", session_id, vdev_id);
|
|
|
result_status = set_key_params->status;
|
|
|
- if (!lim_is_set_key_req_converged()) {
|
|
|
- mlm_set_key_cnf.resultCode = result_status;
|
|
|
- /* Restore MLME state */
|
|
|
- session_entry->limMlmState = session_entry->limPrevMlmState;
|
|
|
- }
|
|
|
-
|
|
|
key_len = set_key_params->key[0].keyLength;
|
|
|
|
|
|
if (result_status == eSIR_SME_SUCCESS && key_len)
|
|
@@ -2533,9 +2513,8 @@ void lim_process_mlm_set_sta_key_rsp(struct mac_context *mac_ctx,
|
|
|
qdf_mem_free(mac_ctx->lim.gpLimMlmSetKeysReq);
|
|
|
mac_ctx->lim.gpLimMlmSetKeysReq = NULL;
|
|
|
} else {
|
|
|
- lim_copy_set_key_req_mac_addr(
|
|
|
- &mlm_set_key_cnf.peer_macaddr,
|
|
|
- &set_key_params->macaddr);
|
|
|
+ qdf_copy_macaddr(&mlm_set_key_cnf.peer_macaddr,
|
|
|
+ &set_key_params->macaddr);
|
|
|
}
|
|
|
mlm_set_key_cnf.sessionId = session_id;
|
|
|
lim_post_sme_message(mac_ctx, LIM_MLM_SETKEYS_CNF,
|
|
@@ -2586,21 +2565,6 @@ void lim_process_mlm_set_bss_key_rsp(struct mac_context *mac_ctx,
|
|
|
vdev_id);
|
|
|
return;
|
|
|
}
|
|
|
- if (!lim_is_set_key_req_converged() &&
|
|
|
- (session_entry->limMlmState != eLIM_MLM_WT_SET_BSS_KEY_STATE) &&
|
|
|
- (session_entry->limMlmState !=
|
|
|
- eLIM_MLM_WT_SET_STA_BCASTKEY_STATE)) {
|
|
|
- pe_err("Received in unexpected limMlmState %X vdev %d pe_session_id %d",
|
|
|
- session_entry->limMlmState, session_entry->vdev_id,
|
|
|
- session_entry->peSessionId);
|
|
|
- qdf_mem_zero(msg->bodyptr, sizeof(tSetBssKeyParams));
|
|
|
- qdf_mem_free(msg->bodyptr);
|
|
|
- msg->bodyptr = NULL;
|
|
|
- lim_send_sme_set_context_rsp(mac_ctx, set_key_cnf.peer_macaddr,
|
|
|
- 0, eSIR_SME_INVALID_SESSION, NULL,
|
|
|
- vdev_id);
|
|
|
- return;
|
|
|
- }
|
|
|
|
|
|
session_id = session_entry->peSessionId;
|
|
|
pe_debug("PE session ID %d, vdev_id %d", session_id, vdev_id);
|
|
@@ -2608,18 +2572,10 @@ void lim_process_mlm_set_bss_key_rsp(struct mac_context *mac_ctx,
|
|
|
result_status =
|
|
|
(uint16_t)(((tpSetBssKeyParams)msg->bodyptr)->status);
|
|
|
key_len = ((tpSetBssKeyParams)msg->bodyptr)->key[0].keyLength;
|
|
|
- } else if (lim_is_set_key_req_converged()) {
|
|
|
+ } else {
|
|
|
result_status =
|
|
|
(uint16_t)(((tpSetBssKeyParams)msg->bodyptr)->status);
|
|
|
key_len = ((tpSetBssKeyParams)msg->bodyptr)->key[0].keyLength;
|
|
|
- } else {
|
|
|
- /*
|
|
|
- * BCAST key also uses tpSetStaKeyParams.
|
|
|
- * Done this way for readabilty.
|
|
|
- */
|
|
|
- result_status =
|
|
|
- (uint16_t)(((tpSetStaKeyParams)msg->bodyptr)->status);
|
|
|
- key_len = ((tpSetStaKeyParams)msg->bodyptr)->key[0].keyLength;
|
|
|
}
|
|
|
|
|
|
pe_debug("limMlmState %d status %d key_len %d",
|
|
@@ -2630,11 +2586,6 @@ void lim_process_mlm_set_bss_key_rsp(struct mac_context *mac_ctx,
|
|
|
else
|
|
|
set_key_cnf.key_len_nonzero = false;
|
|
|
|
|
|
- if (!lim_is_set_key_req_converged()) {
|
|
|
- set_key_cnf.resultCode = result_status;
|
|
|
- session_entry->limMlmState = session_entry->limPrevMlmState;
|
|
|
- }
|
|
|
-
|
|
|
MTRACE(mac_trace
|
|
|
(mac_ctx, TRACE_CODE_MLM_STATE, session_entry->peSessionId,
|
|
|
session_entry->limMlmState));
|
|
@@ -2655,9 +2606,8 @@ void lim_process_mlm_set_bss_key_rsp(struct mac_context *mac_ctx,
|
|
|
qdf_mem_free(mac_ctx->lim.gpLimMlmSetKeysReq);
|
|
|
mac_ctx->lim.gpLimMlmSetKeysReq = NULL;
|
|
|
} else {
|
|
|
- lim_copy_set_key_req_mac_addr(
|
|
|
- &set_key_cnf.peer_macaddr,
|
|
|
- &((tpSetBssKeyParams)msg->bodyptr)->macaddr);
|
|
|
+ qdf_copy_macaddr(&set_key_cnf.peer_macaddr,
|
|
|
+ &((tpSetBssKeyParams)msg->bodyptr)->macaddr);
|
|
|
}
|
|
|
qdf_mem_zero(msg->bodyptr, sizeof(tSetBssKeyParams));
|
|
|
qdf_mem_free(msg->bodyptr);
|