Commit 5c0c3641 authored by Johannes Berg's avatar Johannes Berg Committed by John W. Linville

mac80211: make key locking clearer

The code in ieee80211_del_key() doesn't acquire the
key_mtx properly when it dereferences the keys. It
turns out that isn't actually necessary since the
key_mtx itself seems to be redundant since all key
manipulations are done under the RTNL, but as long
as we have the key_mtx we should use it the right
way too.
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent dea4096b
...@@ -160,13 +160,14 @@ static int ieee80211_add_key(struct wiphy *wiphy, struct net_device *dev, ...@@ -160,13 +160,14 @@ static int ieee80211_add_key(struct wiphy *wiphy, struct net_device *dev,
static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev, static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev,
u8 key_idx, bool pairwise, const u8 *mac_addr) u8 key_idx, bool pairwise, const u8 *mac_addr)
{ {
struct ieee80211_sub_if_data *sdata; struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
struct ieee80211_local *local = sdata->local;
struct sta_info *sta; struct sta_info *sta;
struct ieee80211_key *key = NULL;
int ret; int ret;
sdata = IEEE80211_DEV_TO_SUB_IF(dev); mutex_lock(&local->sta_mtx);
mutex_lock(&local->key_mtx);
mutex_lock(&sdata->local->sta_mtx);
if (mac_addr) { if (mac_addr) {
ret = -ENOENT; ret = -ENOENT;
...@@ -175,33 +176,24 @@ static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev, ...@@ -175,33 +176,24 @@ static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev,
if (!sta) if (!sta)
goto out_unlock; goto out_unlock;
if (pairwise) { if (pairwise)
if (sta->ptk) { key = sta->ptk;
ieee80211_key_free(sdata->local, sta->ptk); else
ret = 0; key = sta->gtk[key_idx];
} } else
} else { key = sdata->keys[key_idx];
if (sta->gtk[key_idx]) {
ieee80211_key_free(sdata->local,
sta->gtk[key_idx]);
ret = 0;
}
}
goto out_unlock;
}
if (!sdata->keys[key_idx]) { if (!key) {
ret = -ENOENT; ret = -ENOENT;
goto out_unlock; goto out_unlock;
} }
ieee80211_key_free(sdata->local, sdata->keys[key_idx]); __ieee80211_key_free(key);
WARN_ON(sdata->keys[key_idx]);
ret = 0; ret = 0;
out_unlock: out_unlock:
mutex_unlock(&sdata->local->sta_mtx); mutex_unlock(&local->key_mtx);
mutex_unlock(&local->sta_mtx);
return ret; return ret;
} }
......
...@@ -471,8 +471,11 @@ int ieee80211_key_link(struct ieee80211_key *key, ...@@ -471,8 +471,11 @@ int ieee80211_key_link(struct ieee80211_key *key,
return ret; return ret;
} }
static void __ieee80211_key_free(struct ieee80211_key *key) void __ieee80211_key_free(struct ieee80211_key *key)
{ {
if (!key)
return;
/* /*
* Replace key with nothingness if it was ever used. * Replace key with nothingness if it was ever used.
*/ */
...@@ -486,9 +489,6 @@ static void __ieee80211_key_free(struct ieee80211_key *key) ...@@ -486,9 +489,6 @@ static void __ieee80211_key_free(struct ieee80211_key *key)
void ieee80211_key_free(struct ieee80211_local *local, void ieee80211_key_free(struct ieee80211_local *local,
struct ieee80211_key *key) struct ieee80211_key *key)
{ {
if (!key)
return;
mutex_lock(&local->key_mtx); mutex_lock(&local->key_mtx);
__ieee80211_key_free(key); __ieee80211_key_free(key);
mutex_unlock(&local->key_mtx); mutex_unlock(&local->key_mtx);
......
...@@ -135,6 +135,7 @@ struct ieee80211_key *ieee80211_key_alloc(u32 cipher, int idx, size_t key_len, ...@@ -135,6 +135,7 @@ struct ieee80211_key *ieee80211_key_alloc(u32 cipher, int idx, size_t key_len,
int __must_check ieee80211_key_link(struct ieee80211_key *key, int __must_check ieee80211_key_link(struct ieee80211_key *key,
struct ieee80211_sub_if_data *sdata, struct ieee80211_sub_if_data *sdata,
struct sta_info *sta); struct sta_info *sta);
void __ieee80211_key_free(struct ieee80211_key *key);
void ieee80211_key_free(struct ieee80211_local *local, void ieee80211_key_free(struct ieee80211_local *local,
struct ieee80211_key *key); struct ieee80211_key *key);
void ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata, int idx, void ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata, int idx,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment