diff options
author | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2008-06-28 01:50:13 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-06-30 21:43:53 +0200 |
commit | 23976efedd5ecb420b87455787c537eb4aed1981 (patch) | |
tree | 902550e2716af5682de8219da1f228e13a5f0adb /net | |
parent | hostap: fix sparse warnings (diff) | |
download | linux-23976efedd5ecb420b87455787c537eb4aed1981.tar.xz linux-23976efedd5ecb420b87455787c537eb4aed1981.zip |
mac80211: don't accept WEP keys other than WEP40 and WEP104
This patch makes mac80211 refuse a WEP key whose length is not WEP40 nor
WEP104.
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/mac80211/wext.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/net/mac80211/wext.c b/net/mac80211/wext.c index 6106cb79060c..e8404212ad57 100644 --- a/net/mac80211/wext.c +++ b/net/mac80211/wext.c @@ -95,6 +95,13 @@ static int ieee80211_set_encryption(struct net_device *dev, u8 *sta_addr, } } + if (alg == ALG_WEP && + key_len != LEN_WEP40 && key_len != LEN_WEP104) { + ieee80211_key_free(key); + err = -EINVAL; + goto out_unlock; + } + ieee80211_key_link(key, sdata, sta); if (set_tx_key || (!sta && !sdata->default_key && key)) |