linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mac80211: Remove dummy STA on deauth
@ 2012-01-17 10:19 Pontus Fuchs
  2012-01-17 13:04 ` Johannes Berg
  0 siblings, 1 reply; 3+ messages in thread
From: Pontus Fuchs @ 2012-01-17 10:19 UTC (permalink / raw)
  To: linux-wireless

Under certain conditions a dummy STA entry could be left in the
station list. This causes subsequent connection attempts to fail.

Logs look like this:

authenticate with 00:23:69:aa:dd:7b (try 1)
authenticated
failed to insert Dummy STA entry for the AP (error -17)
deauthenticating from 00:23:69:aa:dd:7b by local choice (reason=2)

Fix this by making sure to remove the dummy STA on deauth.

Signed-off-by: Pontus Fuchs <pontus.fuchs@gmail.com>
---

The problem was introduced by the following commit added in v3.1:
mac80211: fix race condition between assoc_done and first EAP packet

This problem is fixed in the recent patch series from 
Johannes Berg: [PATCH 0/8] more station handling refactoring

If you need a smaller fix this might fit you.

 net/mac80211/mlme.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c
index ecb4c84..8bd8d4d 100644
--- a/net/mac80211/mlme.c
+++ b/net/mac80211/mlme.c
@@ -2751,6 +2751,7 @@ int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
 	struct ieee80211_local *local = sdata->local;
 	struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
 	struct ieee80211_work *wk;
+	struct sta_info *dummy;
 	u8 bssid[ETH_ALEN];
 	bool assoc_bss = false;
 
@@ -2810,6 +2811,11 @@ int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata,
 	if (assoc_bss)
 		sta_info_flush(sdata->local, sdata);
 
+	/* Make sure to remove dummy STA if it's there */
+	dummy = sta_info_get_bss_rx(sdata, req->bss->bssid);
+	if (dummy)
+		sta_info_destroy_addr(sdata, req->bss->bssid);
+
 	mutex_lock(&sdata->local->mtx);
 	ieee80211_recalc_idle(sdata->local);
 	mutex_unlock(&sdata->local->mtx);
-- 
1.7.5.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-01-18 13:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-17 10:19 [PATCH] mac80211: Remove dummy STA on deauth Pontus Fuchs
2012-01-17 13:04 ` Johannes Berg
2012-01-18 13:17   ` Pontus Fuchs

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).