mirror of
https://github.com/torvalds/linux.git
synced 2026-06-09 23:23:53 +02:00
mac80211: fail authentication when AP denied authentication
commit dac211ec10 upstream.
ieee80211_rx_mgmt_auth() doesn't handle denied authentication
properly - it authenticates the station and waits for association
(for 5 seconds) instead of failing the authentication.
Fix it by destroying auth_data and bailing out instead.
Signed-off-by: Eliad Peller <eliad@wizery.com>
Acked-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
20855fe209
commit
79746484ca
|
|
@ -1813,7 +1813,8 @@ ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
|
|||
if (status_code != WLAN_STATUS_SUCCESS) {
|
||||
printk(KERN_DEBUG "%s: %pM denied authentication (status %d)\n",
|
||||
sdata->name, mgmt->sa, status_code);
|
||||
goto out;
|
||||
ieee80211_destroy_auth_data(sdata, false);
|
||||
return RX_MGMT_CFG80211_RX_AUTH;
|
||||
}
|
||||
|
||||
switch (ifmgd->auth_data->algorithm) {
|
||||
|
|
@ -1835,7 +1836,6 @@ ieee80211_rx_mgmt_auth(struct ieee80211_sub_if_data *sdata,
|
|||
}
|
||||
|
||||
printk(KERN_DEBUG "%s: authenticated\n", sdata->name);
|
||||
out:
|
||||
ifmgd->auth_data->done = true;
|
||||
ifmgd->auth_data->timeout = jiffies + IEEE80211_AUTH_WAIT_ASSOC;
|
||||
run_again(ifmgd, ifmgd->auth_data->timeout);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user