Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Software WEP encryption implementation |
| 3 | * Copyright 2002, Jouni Malinen <jkmaline@cc.hut.fi> |
| 4 | * Copyright 2003, Instant802 Networks, Inc. |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/netdevice.h> |
| 12 | #include <linux/types.h> |
| 13 | #include <linux/random.h> |
| 14 | #include <linux/compiler.h> |
| 15 | #include <linux/crc32.h> |
| 16 | #include <linux/crypto.h> |
| 17 | #include <linux/err.h> |
| 18 | #include <linux/mm.h> |
Ralf Baechle | 1176360 | 2007-10-23 20:42:11 +0200 | [diff] [blame] | 19 | #include <linux/scatterlist.h> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 20 | |
| 21 | #include <net/mac80211.h> |
| 22 | #include "ieee80211_i.h" |
| 23 | #include "wep.h" |
| 24 | |
| 25 | |
| 26 | int ieee80211_wep_init(struct ieee80211_local *local) |
| 27 | { |
| 28 | /* start WEP IV from a random value */ |
| 29 | get_random_bytes(&local->wep_iv, WEP_IV_LEN); |
| 30 | |
| 31 | local->wep_tx_tfm = crypto_alloc_blkcipher("ecb(arc4)", 0, |
| 32 | CRYPTO_ALG_ASYNC); |
| 33 | if (IS_ERR(local->wep_tx_tfm)) |
Jeremy Fitzhardinge | 023a04b | 2008-07-14 12:52:08 -0700 | [diff] [blame] | 34 | return PTR_ERR(local->wep_tx_tfm); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 35 | |
| 36 | local->wep_rx_tfm = crypto_alloc_blkcipher("ecb(arc4)", 0, |
| 37 | CRYPTO_ALG_ASYNC); |
| 38 | if (IS_ERR(local->wep_rx_tfm)) { |
| 39 | crypto_free_blkcipher(local->wep_tx_tfm); |
Jeremy Fitzhardinge | 023a04b | 2008-07-14 12:52:08 -0700 | [diff] [blame] | 40 | return PTR_ERR(local->wep_rx_tfm); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | return 0; |
| 44 | } |
| 45 | |
| 46 | void ieee80211_wep_free(struct ieee80211_local *local) |
| 47 | { |
| 48 | crypto_free_blkcipher(local->wep_tx_tfm); |
| 49 | crypto_free_blkcipher(local->wep_rx_tfm); |
| 50 | } |
| 51 | |
Johannes Berg | c6a1fa1 | 2008-10-07 12:04:32 +0200 | [diff] [blame^] | 52 | static inline bool ieee80211_wep_weak_iv(u32 iv, int keylen) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 53 | { |
Johannes Berg | c6a1fa1 | 2008-10-07 12:04:32 +0200 | [diff] [blame^] | 54 | /* |
| 55 | * Fluhrer, Mantin, and Shamir have reported weaknesses in the |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 56 | * key scheduling algorithm of RC4. At least IVs (KeyByte + 3, |
Johannes Berg | c6a1fa1 | 2008-10-07 12:04:32 +0200 | [diff] [blame^] | 57 | * 0xff, N) can be used to speedup attacks, so avoid using them. |
| 58 | */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 59 | if ((iv & 0xff00) == 0xff00) { |
| 60 | u8 B = (iv >> 16) & 0xff; |
| 61 | if (B >= 3 && B < 3 + keylen) |
Johannes Berg | c6a1fa1 | 2008-10-07 12:04:32 +0200 | [diff] [blame^] | 62 | return true; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 63 | } |
Johannes Berg | c6a1fa1 | 2008-10-07 12:04:32 +0200 | [diff] [blame^] | 64 | return false; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | |
Johannes Berg | 4f0d18e | 2007-09-26 15:19:40 +0200 | [diff] [blame] | 68 | static void ieee80211_wep_get_iv(struct ieee80211_local *local, |
| 69 | struct ieee80211_key *key, u8 *iv) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 70 | { |
| 71 | local->wep_iv++; |
Johannes Berg | 8f20fc2 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 72 | if (ieee80211_wep_weak_iv(local->wep_iv, key->conf.keylen)) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 73 | local->wep_iv += 0x0100; |
| 74 | |
| 75 | if (!iv) |
| 76 | return; |
| 77 | |
| 78 | *iv++ = (local->wep_iv >> 16) & 0xff; |
| 79 | *iv++ = (local->wep_iv >> 8) & 0xff; |
| 80 | *iv++ = local->wep_iv & 0xff; |
Johannes Berg | 8f20fc2 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 81 | *iv++ = key->conf.keyidx << 6; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | |
Johannes Berg | 6a22a59 | 2007-09-26 15:19:41 +0200 | [diff] [blame] | 85 | static u8 *ieee80211_wep_add_iv(struct ieee80211_local *local, |
| 86 | struct sk_buff *skb, |
| 87 | struct ieee80211_key *key) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 88 | { |
Harvey Harrison | 70217d7 | 2008-06-22 16:45:23 -0700 | [diff] [blame] | 89 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data; |
| 90 | unsigned int hdrlen; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 91 | u8 *newhdr; |
| 92 | |
Harvey Harrison | 70217d7 | 2008-06-22 16:45:23 -0700 | [diff] [blame] | 93 | hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_PROTECTED); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 94 | |
Johannes Berg | 23c0752 | 2008-05-29 10:38:53 +0200 | [diff] [blame] | 95 | if (WARN_ON(skb_tailroom(skb) < WEP_ICV_LEN || |
| 96 | skb_headroom(skb) < WEP_IV_LEN)) |
| 97 | return NULL; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 98 | |
Harvey Harrison | 70217d7 | 2008-06-22 16:45:23 -0700 | [diff] [blame] | 99 | hdrlen = ieee80211_hdrlen(hdr->frame_control); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 100 | newhdr = skb_push(skb, WEP_IV_LEN); |
| 101 | memmove(newhdr, newhdr + WEP_IV_LEN, hdrlen); |
| 102 | ieee80211_wep_get_iv(local, key, newhdr + hdrlen); |
| 103 | return newhdr + hdrlen; |
| 104 | } |
| 105 | |
| 106 | |
Johannes Berg | 4f0d18e | 2007-09-26 15:19:40 +0200 | [diff] [blame] | 107 | static void ieee80211_wep_remove_iv(struct ieee80211_local *local, |
| 108 | struct sk_buff *skb, |
| 109 | struct ieee80211_key *key) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 110 | { |
Harvey Harrison | 70217d7 | 2008-06-22 16:45:23 -0700 | [diff] [blame] | 111 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data; |
| 112 | unsigned int hdrlen; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 113 | |
Harvey Harrison | 70217d7 | 2008-06-22 16:45:23 -0700 | [diff] [blame] | 114 | hdrlen = ieee80211_hdrlen(hdr->frame_control); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 115 | memmove(skb->data + WEP_IV_LEN, skb->data, hdrlen); |
| 116 | skb_pull(skb, WEP_IV_LEN); |
| 117 | } |
| 118 | |
| 119 | |
| 120 | /* Perform WEP encryption using given key. data buffer must have tailroom |
| 121 | * for 4-byte ICV. data_len must not include this ICV. Note: this function |
| 122 | * does _not_ add IV. data = RC4(data | CRC32(data)) */ |
| 123 | void ieee80211_wep_encrypt_data(struct crypto_blkcipher *tfm, u8 *rc4key, |
| 124 | size_t klen, u8 *data, size_t data_len) |
| 125 | { |
| 126 | struct blkcipher_desc desc = { .tfm = tfm }; |
| 127 | struct scatterlist sg; |
| 128 | __le32 *icv; |
| 129 | |
| 130 | icv = (__le32 *)(data + data_len); |
| 131 | *icv = cpu_to_le32(~crc32_le(~0, data, data_len)); |
| 132 | |
| 133 | crypto_blkcipher_setkey(tfm, rc4key, klen); |
Jens Axboe | fa05f12 | 2007-10-22 19:44:26 +0200 | [diff] [blame] | 134 | sg_init_one(&sg, data, data_len + WEP_ICV_LEN); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 135 | crypto_blkcipher_encrypt(&desc, &sg, &sg, sg.length); |
| 136 | } |
| 137 | |
| 138 | |
| 139 | /* Perform WEP encryption on given skb. 4 bytes of extra space (IV) in the |
| 140 | * beginning of the buffer 4 bytes of extra space (ICV) in the end of the |
| 141 | * buffer will be added. Both IV and ICV will be transmitted, so the |
| 142 | * payload length increases with 8 bytes. |
| 143 | * |
| 144 | * WEP frame payload: IV + TX key idx, RC4(data), ICV = RC4(CRC32(data)) |
| 145 | */ |
| 146 | int ieee80211_wep_encrypt(struct ieee80211_local *local, struct sk_buff *skb, |
| 147 | struct ieee80211_key *key) |
| 148 | { |
| 149 | u32 klen; |
| 150 | u8 *rc4key, *iv; |
| 151 | size_t len; |
| 152 | |
Johannes Berg | 8f20fc2 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 153 | if (!key || key->conf.alg != ALG_WEP) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 154 | return -1; |
| 155 | |
Johannes Berg | 8f20fc2 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 156 | klen = 3 + key->conf.keylen; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 157 | rc4key = kmalloc(klen, GFP_ATOMIC); |
| 158 | if (!rc4key) |
| 159 | return -1; |
| 160 | |
| 161 | iv = ieee80211_wep_add_iv(local, skb, key); |
| 162 | if (!iv) { |
| 163 | kfree(rc4key); |
| 164 | return -1; |
| 165 | } |
| 166 | |
| 167 | len = skb->len - (iv + WEP_IV_LEN - skb->data); |
| 168 | |
| 169 | /* Prepend 24-bit IV to RC4 key */ |
| 170 | memcpy(rc4key, iv, 3); |
| 171 | |
| 172 | /* Copy rest of the WEP key (the secret part) */ |
Johannes Berg | 8f20fc2 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 173 | memcpy(rc4key + 3, key->conf.key, key->conf.keylen); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 174 | |
| 175 | /* Add room for ICV */ |
| 176 | skb_put(skb, WEP_ICV_LEN); |
| 177 | |
| 178 | ieee80211_wep_encrypt_data(local->wep_tx_tfm, rc4key, klen, |
| 179 | iv + WEP_IV_LEN, len); |
| 180 | |
| 181 | kfree(rc4key); |
| 182 | |
| 183 | return 0; |
| 184 | } |
| 185 | |
| 186 | |
| 187 | /* Perform WEP decryption using given key. data buffer includes encrypted |
| 188 | * payload, including 4-byte ICV, but _not_ IV. data_len must not include ICV. |
| 189 | * Return 0 on success and -1 on ICV mismatch. */ |
| 190 | int ieee80211_wep_decrypt_data(struct crypto_blkcipher *tfm, u8 *rc4key, |
| 191 | size_t klen, u8 *data, size_t data_len) |
| 192 | { |
| 193 | struct blkcipher_desc desc = { .tfm = tfm }; |
| 194 | struct scatterlist sg; |
| 195 | __le32 crc; |
| 196 | |
| 197 | crypto_blkcipher_setkey(tfm, rc4key, klen); |
Jens Axboe | fa05f12 | 2007-10-22 19:44:26 +0200 | [diff] [blame] | 198 | sg_init_one(&sg, data, data_len + WEP_ICV_LEN); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 199 | crypto_blkcipher_decrypt(&desc, &sg, &sg, sg.length); |
| 200 | |
| 201 | crc = cpu_to_le32(~crc32_le(~0, data, data_len)); |
| 202 | if (memcmp(&crc, data + data_len, WEP_ICV_LEN) != 0) |
| 203 | /* ICV mismatch */ |
| 204 | return -1; |
| 205 | |
| 206 | return 0; |
| 207 | } |
| 208 | |
| 209 | |
| 210 | /* Perform WEP decryption on given skb. Buffer includes whole WEP part of |
| 211 | * the frame: IV (4 bytes), encrypted payload (including SNAP header), |
| 212 | * ICV (4 bytes). skb->len includes both IV and ICV. |
| 213 | * |
| 214 | * Returns 0 if frame was decrypted successfully and ICV was correct and -1 on |
| 215 | * failure. If frame is OK, IV and ICV will be removed, i.e., decrypted payload |
| 216 | * is moved to the beginning of the skb and skb length will be reduced. |
| 217 | */ |
| 218 | int ieee80211_wep_decrypt(struct ieee80211_local *local, struct sk_buff *skb, |
| 219 | struct ieee80211_key *key) |
| 220 | { |
| 221 | u32 klen; |
| 222 | u8 *rc4key; |
| 223 | u8 keyidx; |
Harvey Harrison | 70217d7 | 2008-06-22 16:45:23 -0700 | [diff] [blame] | 224 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data; |
| 225 | unsigned int hdrlen; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 226 | size_t len; |
| 227 | int ret = 0; |
| 228 | |
Harvey Harrison | 70217d7 | 2008-06-22 16:45:23 -0700 | [diff] [blame] | 229 | if (!ieee80211_has_protected(hdr->frame_control)) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 230 | return -1; |
| 231 | |
Harvey Harrison | 70217d7 | 2008-06-22 16:45:23 -0700 | [diff] [blame] | 232 | hdrlen = ieee80211_hdrlen(hdr->frame_control); |
Harvey Harrison | d298487 | 2008-07-15 18:44:10 -0700 | [diff] [blame] | 233 | if (skb->len < hdrlen + WEP_IV_LEN + WEP_ICV_LEN) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 234 | return -1; |
| 235 | |
Harvey Harrison | d298487 | 2008-07-15 18:44:10 -0700 | [diff] [blame] | 236 | len = skb->len - hdrlen - WEP_IV_LEN - WEP_ICV_LEN; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 237 | |
| 238 | keyidx = skb->data[hdrlen + 3] >> 6; |
| 239 | |
Johannes Berg | 8f20fc2 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 240 | if (!key || keyidx != key->conf.keyidx || key->conf.alg != ALG_WEP) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 241 | return -1; |
| 242 | |
Johannes Berg | 8f20fc2 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 243 | klen = 3 + key->conf.keylen; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 244 | |
| 245 | rc4key = kmalloc(klen, GFP_ATOMIC); |
| 246 | if (!rc4key) |
| 247 | return -1; |
| 248 | |
| 249 | /* Prepend 24-bit IV to RC4 key */ |
| 250 | memcpy(rc4key, skb->data + hdrlen, 3); |
| 251 | |
| 252 | /* Copy rest of the WEP key (the secret part) */ |
Johannes Berg | 8f20fc2 | 2007-08-28 17:01:54 -0400 | [diff] [blame] | 253 | memcpy(rc4key + 3, key->conf.key, key->conf.keylen); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 254 | |
| 255 | if (ieee80211_wep_decrypt_data(local->wep_rx_tfm, rc4key, klen, |
| 256 | skb->data + hdrlen + WEP_IV_LEN, |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 257 | len)) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 258 | ret = -1; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 259 | |
| 260 | kfree(rc4key); |
| 261 | |
| 262 | /* Trim ICV */ |
| 263 | skb_trim(skb, skb->len - WEP_ICV_LEN); |
| 264 | |
| 265 | /* Remove IV */ |
| 266 | memmove(skb->data + WEP_IV_LEN, skb->data, hdrlen); |
| 267 | skb_pull(skb, WEP_IV_LEN); |
| 268 | |
| 269 | return ret; |
| 270 | } |
| 271 | |
| 272 | |
Johannes Berg | c6a1fa1 | 2008-10-07 12:04:32 +0200 | [diff] [blame^] | 273 | bool ieee80211_wep_is_weak_iv(struct sk_buff *skb, struct ieee80211_key *key) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 274 | { |
Harvey Harrison | 70217d7 | 2008-06-22 16:45:23 -0700 | [diff] [blame] | 275 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data; |
| 276 | unsigned int hdrlen; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 277 | u8 *ivpos; |
| 278 | u32 iv; |
| 279 | |
Harvey Harrison | 70217d7 | 2008-06-22 16:45:23 -0700 | [diff] [blame] | 280 | if (!ieee80211_has_protected(hdr->frame_control)) |
Johannes Berg | c6a1fa1 | 2008-10-07 12:04:32 +0200 | [diff] [blame^] | 281 | return false; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 282 | |
Harvey Harrison | 70217d7 | 2008-06-22 16:45:23 -0700 | [diff] [blame] | 283 | hdrlen = ieee80211_hdrlen(hdr->frame_control); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 284 | ivpos = skb->data + hdrlen; |
| 285 | iv = (ivpos[0] << 16) | (ivpos[1] << 8) | ivpos[2]; |
| 286 | |
Johannes Berg | c6a1fa1 | 2008-10-07 12:04:32 +0200 | [diff] [blame^] | 287 | return ieee80211_wep_weak_iv(iv, key->conf.keylen); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 288 | } |
Johannes Berg | 4f0d18e | 2007-09-26 15:19:40 +0200 | [diff] [blame] | 289 | |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 290 | ieee80211_rx_result |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 291 | ieee80211_crypto_wep_decrypt(struct ieee80211_rx_data *rx) |
Johannes Berg | 4f0d18e | 2007-09-26 15:19:40 +0200 | [diff] [blame] | 292 | { |
Harvey Harrison | 358c8d9 | 2008-07-15 18:44:13 -0700 | [diff] [blame] | 293 | struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data; |
| 294 | |
| 295 | if (!ieee80211_is_data(hdr->frame_control) && |
| 296 | !ieee80211_is_auth(hdr->frame_control)) |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 297 | return RX_CONTINUE; |
Johannes Berg | 4f0d18e | 2007-09-26 15:19:40 +0200 | [diff] [blame] | 298 | |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 299 | if (!(rx->status->flag & RX_FLAG_DECRYPTED)) { |
Johannes Berg | f4ea83d | 2008-06-30 15:10:46 +0200 | [diff] [blame] | 300 | if (ieee80211_wep_decrypt(rx->local, rx->skb, rx->key)) |
Johannes Berg | e4c26ad | 2008-01-31 19:48:21 +0100 | [diff] [blame] | 301 | return RX_DROP_UNUSABLE; |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 302 | } else if (!(rx->status->flag & RX_FLAG_IV_STRIPPED)) { |
Johannes Berg | 4f0d18e | 2007-09-26 15:19:40 +0200 | [diff] [blame] | 303 | ieee80211_wep_remove_iv(rx->local, rx->skb, rx->key); |
| 304 | /* remove ICV */ |
Harvey Harrison | d298487 | 2008-07-15 18:44:10 -0700 | [diff] [blame] | 305 | skb_trim(rx->skb, rx->skb->len - WEP_ICV_LEN); |
Johannes Berg | 4f0d18e | 2007-09-26 15:19:40 +0200 | [diff] [blame] | 306 | } |
| 307 | |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 308 | return RX_CONTINUE; |
Johannes Berg | 4f0d18e | 2007-09-26 15:19:40 +0200 | [diff] [blame] | 309 | } |
Johannes Berg | 6a22a59 | 2007-09-26 15:19:41 +0200 | [diff] [blame] | 310 | |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 311 | static int wep_encrypt_skb(struct ieee80211_tx_data *tx, struct sk_buff *skb) |
Johannes Berg | 6a22a59 | 2007-09-26 15:19:41 +0200 | [diff] [blame] | 312 | { |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 313 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 314 | |
Johannes Berg | 6a22a59 | 2007-09-26 15:19:41 +0200 | [diff] [blame] | 315 | if (!(tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)) { |
| 316 | if (ieee80211_wep_encrypt(tx->local, skb, tx->key)) |
| 317 | return -1; |
| 318 | } else { |
Pavel Roskin | 2b21214 | 2008-06-02 07:54:50 -0400 | [diff] [blame] | 319 | info->control.hw_key = &tx->key->conf; |
Johannes Berg | 6a22a59 | 2007-09-26 15:19:41 +0200 | [diff] [blame] | 320 | if (tx->key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV) { |
| 321 | if (!ieee80211_wep_add_iv(tx->local, skb, tx->key)) |
| 322 | return -1; |
| 323 | } |
| 324 | } |
| 325 | return 0; |
| 326 | } |
| 327 | |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 328 | ieee80211_tx_result |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 329 | ieee80211_crypto_wep_encrypt(struct ieee80211_tx_data *tx) |
Johannes Berg | 6a22a59 | 2007-09-26 15:19:41 +0200 | [diff] [blame] | 330 | { |
Johannes Berg | c6a1fa1 | 2008-10-07 12:04:32 +0200 | [diff] [blame^] | 331 | int i; |
| 332 | |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 333 | ieee80211_tx_set_protected(tx); |
Johannes Berg | 6a22a59 | 2007-09-26 15:19:41 +0200 | [diff] [blame] | 334 | |
| 335 | if (wep_encrypt_skb(tx, tx->skb) < 0) { |
| 336 | I802_DEBUG_INC(tx->local->tx_handlers_drop_wep); |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 337 | return TX_DROP; |
Johannes Berg | 6a22a59 | 2007-09-26 15:19:41 +0200 | [diff] [blame] | 338 | } |
| 339 | |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 340 | if (tx->extra_frag) { |
Johannes Berg | 5cf121c | 2008-02-25 16:27:43 +0100 | [diff] [blame] | 341 | for (i = 0; i < tx->num_extra_frag; i++) { |
Johannes Berg | c6a1fa1 | 2008-10-07 12:04:32 +0200 | [diff] [blame^] | 342 | if (wep_encrypt_skb(tx, tx->extra_frag[i])) { |
Johannes Berg | 6a22a59 | 2007-09-26 15:19:41 +0200 | [diff] [blame] | 343 | I802_DEBUG_INC(tx->local-> |
| 344 | tx_handlers_drop_wep); |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 345 | return TX_DROP; |
Johannes Berg | 6a22a59 | 2007-09-26 15:19:41 +0200 | [diff] [blame] | 346 | } |
| 347 | } |
| 348 | } |
| 349 | |
Johannes Berg | 9ae54c8 | 2008-01-31 19:48:20 +0100 | [diff] [blame] | 350 | return TX_CONTINUE; |
Johannes Berg | 6a22a59 | 2007-09-26 15:19:41 +0200 | [diff] [blame] | 351 | } |