diff options
author | Johannes Berg <johannes.berg@intel.com> | 2011-05-12 09:07:15 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-05-12 14:10:54 -0400 |
commit | 8cb231530f03961b55aa4e84e6ead5590bcde04d (patch) | |
tree | 62e94c7423bbb073640fe4fe8454ba5135b0ebc8 /net/mac80211 | |
parent | 5c0c36412b2dc6b1e243c7e9115306fe286583b7 (diff) |
mac80211: fix another key non-race
The code here is only not racy because all the
places that assign the pointers it uses are
holding the sta_mtx as well as the key_mtx and
so can't race against this because this code
holds the sta_mtx. But that's not intuitive,
so fix it to hold the key_mtx.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211')
-rw-r--r-- | net/mac80211/sta_info.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/mac80211/sta_info.c b/net/mac80211/sta_info.c index f05244dc773e..cba8309e9ace 100644 --- a/net/mac80211/sta_info.c +++ b/net/mac80211/sta_info.c | |||
@@ -652,10 +652,12 @@ static int __must_check __sta_info_destroy(struct sta_info *sta) | |||
652 | if (ret) | 652 | if (ret) |
653 | return ret; | 653 | return ret; |
654 | 654 | ||
655 | mutex_lock(&local->key_mtx); | ||
655 | for (i = 0; i < NUM_DEFAULT_KEYS; i++) | 656 | for (i = 0; i < NUM_DEFAULT_KEYS; i++) |
656 | ieee80211_key_free(local, sta->gtk[i]); | 657 | __ieee80211_key_free(sta->gtk[i]); |
657 | if (sta->ptk) | 658 | if (sta->ptk) |
658 | ieee80211_key_free(local, sta->ptk); | 659 | __ieee80211_key_free(sta->ptk); |
660 | mutex_unlock(&local->key_mtx); | ||
659 | 661 | ||
660 | sta->dead = true; | 662 | sta->dead = true; |
661 | 663 | ||