]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
WPA: Clear authenticator keys for a STA on deinit/disconnection
authorJouni Malinen <jouni@codeaurora.org>
Thu, 18 Apr 2019 15:17:07 +0000 (18:17 +0300)
committerJouni Malinen <j@w1.fi>
Thu, 18 Apr 2019 22:12:30 +0000 (01:12 +0300)
Do not leave keys in heap memory after they are no longer needed.

Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
src/ap/wpa_auth.c

index a956e527b6810161ed67a7075bae66326853a8b2..158207125eaa7565797cb3c94c1994f65ef1e0f7 100644 (file)
@@ -712,7 +712,7 @@ static void wpa_free_sta_sm(struct wpa_state_machine *sm)
 #ifdef CONFIG_DPP2
        wpabuf_clear_free(sm->dpp_z);
 #endif /* CONFIG_DPP2 */
 #ifdef CONFIG_DPP2
        wpabuf_clear_free(sm->dpp_z);
 #endif /* CONFIG_DPP2 */
-       os_free(sm);
+       bin_clear_free(sm, sizeof(*sm));
 }
 
 
 }
 
 
@@ -1743,6 +1743,12 @@ int wpa_auth_sm_event(struct wpa_state_machine *sm, enum wpa_event event)
        case WPA_DEAUTH:
        case WPA_DISASSOC:
                sm->DeauthenticationRequest = TRUE;
        case WPA_DEAUTH:
        case WPA_DISASSOC:
                sm->DeauthenticationRequest = TRUE;
+#ifdef CONFIG_IEEE80211R_AP
+               os_memset(sm->PMK, 0, sizeof(sm->PMK));
+               sm->pmk_len = 0;
+               os_memset(sm->xxkey, 0, sizeof(sm->xxkey));
+               sm->xxkey_len = 0;
+#endif /* CONFIG_IEEE80211R_AP */
                break;
        case WPA_REAUTH:
        case WPA_REAUTH_EAPOL:
                break;
        case WPA_REAUTH:
        case WPA_REAUTH_EAPOL: