aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/wep.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/mac80211/wep.c')
-rw-r--r--net/mac80211/wep.c26
1 files changed, 14 insertions, 12 deletions
diff --git a/net/mac80211/wep.c b/net/mac80211/wep.c
index 8a980f136941..5f3a4113bda1 100644
--- a/net/mac80211/wep.c
+++ b/net/mac80211/wep.c
@@ -17,6 +17,7 @@
17#include <linux/err.h> 17#include <linux/err.h>
18#include <linux/mm.h> 18#include <linux/mm.h>
19#include <linux/scatterlist.h> 19#include <linux/scatterlist.h>
20#include <linux/slab.h>
20#include <asm/unaligned.h> 21#include <asm/unaligned.h>
21 22
22#include <net/mac80211.h> 23#include <net/mac80211.h>
@@ -281,16 +282,18 @@ bool ieee80211_wep_is_weak_iv(struct sk_buff *skb, struct ieee80211_key *key)
281ieee80211_rx_result 282ieee80211_rx_result
282ieee80211_crypto_wep_decrypt(struct ieee80211_rx_data *rx) 283ieee80211_crypto_wep_decrypt(struct ieee80211_rx_data *rx)
283{ 284{
284 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data; 285 struct sk_buff *skb = rx->skb;
286 struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
287 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
285 288
286 if (!ieee80211_is_data(hdr->frame_control) && 289 if (!ieee80211_is_data(hdr->frame_control) &&
287 !ieee80211_is_auth(hdr->frame_control)) 290 !ieee80211_is_auth(hdr->frame_control))
288 return RX_CONTINUE; 291 return RX_CONTINUE;
289 292
290 if (!(rx->status->flag & RX_FLAG_DECRYPTED)) { 293 if (!(status->flag & RX_FLAG_DECRYPTED)) {
291 if (ieee80211_wep_decrypt(rx->local, rx->skb, rx->key)) 294 if (ieee80211_wep_decrypt(rx->local, rx->skb, rx->key))
292 return RX_DROP_UNUSABLE; 295 return RX_DROP_UNUSABLE;
293 } else if (!(rx->status->flag & RX_FLAG_IV_STRIPPED)) { 296 } else if (!(status->flag & RX_FLAG_IV_STRIPPED)) {
294 ieee80211_wep_remove_iv(rx->local, rx->skb, rx->key); 297 ieee80211_wep_remove_iv(rx->local, rx->skb, rx->key);
295 /* remove ICV */ 298 /* remove ICV */
296 skb_trim(rx->skb, rx->skb->len - WEP_ICV_LEN); 299 skb_trim(rx->skb, rx->skb->len - WEP_ICV_LEN);
@@ -303,20 +306,19 @@ static int wep_encrypt_skb(struct ieee80211_tx_data *tx, struct sk_buff *skb)
303{ 306{
304 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); 307 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
305 308
306 if (!(tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)) { 309 if (!info->control.hw_key) {
307 if (ieee80211_wep_encrypt(tx->local, skb, tx->key->conf.key, 310 if (ieee80211_wep_encrypt(tx->local, skb, tx->key->conf.key,
308 tx->key->conf.keylen, 311 tx->key->conf.keylen,
309 tx->key->conf.keyidx)) 312 tx->key->conf.keyidx))
310 return -1; 313 return -1;
311 } else { 314 } else if (info->control.hw_key->flags &
312 info->control.hw_key = &tx->key->conf; 315 IEEE80211_KEY_FLAG_GENERATE_IV) {
313 if (tx->key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV) { 316 if (!ieee80211_wep_add_iv(tx->local, skb,
314 if (!ieee80211_wep_add_iv(tx->local, skb, 317 tx->key->conf.keylen,
315 tx->key->conf.keylen, 318 tx->key->conf.keyidx))
316 tx->key->conf.keyidx)) 319 return -1;
317 return -1;
318 }
319 } 320 }
321
320 return 0; 322 return 0;
321} 323}
322 324