From: Pontus Fuchs <pontus.fuchs@gmail.com>
To: linux-wireless@vger.kernel.org
Subject: [PATCH] mac80211: Remove dummy STA on deauth
Date: Tue, 17 Jan 2012 11:19:37 +0100 [thread overview]
Message-ID: <1326795577-29650-1-git-send-email-pontus.fuchs@gmail.com> (raw)
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
next reply other threads:[~2012-01-17 10:19 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-17 10:19 Pontus Fuchs [this message]
2012-01-17 13:04 ` [PATCH] mac80211: Remove dummy STA on deauth Johannes Berg
2012-01-18 13:17 ` Pontus Fuchs
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1326795577-29650-1-git-send-email-pontus.fuchs@gmail.com \
--to=pontus.fuchs@gmail.com \
--cc=linux-wireless@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).