|
@@ -596,7 +596,6 @@ static void wpa_supplicant_process_1_of_4(struct wpa_sm *sm,
|
|
|
os_memset(buf, 0, sizeof(buf));
|
|
|
}
|
|
|
sm->tptk_set = 1;
|
|
|
- sm->tk_to_set = 1;
|
|
|
|
|
|
kde = sm->assoc_wpa_ie;
|
|
|
kde_len = sm->assoc_wpa_ie_len;
|
|
@@ -703,7 +702,7 @@ static int wpa_supplicant_install_ptk(struct wpa_sm *sm,
|
|
|
enum wpa_alg alg;
|
|
|
const u8 *key_rsc;
|
|
|
|
|
|
- if (!sm->tk_to_set) {
|
|
|
+ if (sm->ptk.installed) {
|
|
|
wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG,
|
|
|
"WPA: Do not re-install same PTK to the driver");
|
|
|
return 0;
|
|
@@ -747,7 +746,7 @@ static int wpa_supplicant_install_ptk(struct wpa_sm *sm,
|
|
|
|
|
|
/* TK is not needed anymore in supplicant */
|
|
|
os_memset(sm->ptk.tk, 0, WPA_TK_MAX_LEN);
|
|
|
- sm->tk_to_set = 0;
|
|
|
+ sm->ptk.installed = 1;
|
|
|
|
|
|
if (sm->wpa_ptk_rekey) {
|
|
|
eloop_cancel_timeout(wpa_sm_rekey_ptk, sm, NULL);
|
|
@@ -4185,6 +4184,7 @@ int fils_process_assoc_resp(struct wpa_sm *sm, const u8 *resp, size_t len)
|
|
|
* takes care of association frame encryption/decryption. */
|
|
|
/* TK is not needed anymore in supplicant */
|
|
|
os_memset(sm->ptk.tk, 0, WPA_TK_MAX_LEN);
|
|
|
+ sm->ptk.installed = 1;
|
|
|
|
|
|
/* FILS HLP Container */
|
|
|
fils_process_hlp_container(sm, ie_start, end - ie_start);
|