SME: Fix IBSS setup after shared key/FT/FILS association
wpa_s->sme.auth_alg could have been left to a previously value other than WPA_AUTH_ALG_OPEN if IBSS network is used after an association that used shared key, FT, or FILS authentication algorithm. This could result in the IBSS setup failing due to incorrect authentication processing steps. Fix this by setting wpa_s->sme.auth_alg = WPA_AUTH_ALG_OPEN whenever starting an IBSS (or mesh, for that matter) network. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
f49c852b5e
commit
a1836de64b
1 changed files with 7 additions and 0 deletions
|
@ -1798,6 +1798,13 @@ void wpa_supplicant_associate(struct wpa_supplicant *wpa_s,
|
|||
return;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_SME
|
||||
if (ssid->mode == WPAS_MODE_IBSS || ssid->mode == WPAS_MODE_MESH) {
|
||||
/* Clear possibly set auth_alg, if any, from last attempt. */
|
||||
wpa_s->sme.auth_alg = WPA_AUTH_ALG_OPEN;
|
||||
}
|
||||
#endif /* CONFIG_SME */
|
||||
|
||||
wpas_abort_ongoing_scan(wpa_s);
|
||||
|
||||
cwork = os_zalloc(sizeof(*cwork));
|
||||
|
|
Loading…
Reference in a new issue