mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 08:48:31 -05:00
Fix EAPOL_SM_USES_WPA flag to be set correctly
Commit c02d52b405
removed direct calls
to the WPA authenticator, but the change here was incorrect.
EAPOL_SM_USES_WPA was supposed to be set based on sta->wpa_sm being
set, i.e., no need to check for PMKSA entries for that.
While this could potentially change EAPOL Key TX state machine behavior,
no clear problems have been identified so far. Anyway, better fix this
to get the correct flags set for EAPOL authenticator state machine.
This commit is contained in:
parent
3ab72b626b
commit
439d4bf960
@ -646,7 +646,6 @@ ieee802_1x_alloc_eapol_sm(struct hostapd_data *hapd, struct sta_info *sta)
|
||||
if (sta->flags & WLAN_STA_PREAUTH)
|
||||
flags |= EAPOL_SM_PREAUTH;
|
||||
if (sta->wpa_sm) {
|
||||
if (wpa_auth_sta_get_pmksa(sta->wpa_sm))
|
||||
flags |= EAPOL_SM_USES_WPA;
|
||||
if (wpa_auth_sta_get_pmksa(sta->wpa_sm))
|
||||
flags |= EAPOL_SM_FROM_PMKSA_CACHE;
|
||||
|
Loading…
Reference in New Issue
Block a user