2 * Copyright 2002-2004, Instant802 Networks, Inc.
3 * Copyright 2008, Jouni Malinen <j@w1.fi>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
10 #include <linux/netdevice.h>
11 #include <linux/types.h>
12 #include <linux/skbuff.h>
13 #include <linux/compiler.h>
14 #include <linux/ieee80211.h>
15 #include <linux/gfp.h>
16 #include <asm/unaligned.h>
17 #include <net/mac80211.h>
18 #include <crypto/aes.h>
19 #include <crypto/algapi.h>
21 #include "ieee80211_i.h"
29 ieee80211_tx_h_michael_mic_add(struct ieee80211_tx_data
*tx
)
34 struct ieee80211_hdr
*hdr
;
35 struct sk_buff
*skb
= tx
->skb
;
36 struct ieee80211_tx_info
*info
= IEEE80211_SKB_CB(skb
);
39 hdr
= (struct ieee80211_hdr
*)skb
->data
;
40 if (!tx
->key
|| tx
->key
->conf
.cipher
!= WLAN_CIPHER_SUITE_TKIP
||
41 skb
->len
< 24 || !ieee80211_is_data_present(hdr
->frame_control
))
44 hdrlen
= ieee80211_hdrlen(hdr
->frame_control
);
45 if (skb
->len
< hdrlen
)
48 data
= skb
->data
+ hdrlen
;
49 data_len
= skb
->len
- hdrlen
;
51 if (unlikely(info
->flags
& IEEE80211_TX_INTFL_TKIP_MIC_FAILURE
)) {
52 /* Need to use software crypto for the test */
53 info
->control
.hw_key
= NULL
;
56 if (info
->control
.hw_key
&&
57 (info
->flags
& IEEE80211_TX_CTL_DONTFRAG
||
58 tx
->local
->ops
->set_frag_threshold
) &&
59 !(tx
->key
->conf
.flags
& IEEE80211_KEY_FLAG_GENERATE_MMIC
)) {
60 /* hwaccel - with no need for SW-generated MMIC */
64 tail
= MICHAEL_MIC_LEN
;
65 if (!info
->control
.hw_key
)
66 tail
+= IEEE80211_TKIP_ICV_LEN
;
68 if (WARN(skb_tailroom(skb
) < tail
||
69 skb_headroom(skb
) < IEEE80211_TKIP_IV_LEN
,
70 "mmic: not enough head/tail (%d/%d,%d/%d)\n",
71 skb_headroom(skb
), IEEE80211_TKIP_IV_LEN
,
72 skb_tailroom(skb
), tail
))
75 key
= &tx
->key
->conf
.key
[NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY
];
76 mic
= skb_put(skb
, MICHAEL_MIC_LEN
);
77 michael_mic(key
, hdr
, data
, data_len
, mic
);
78 if (unlikely(info
->flags
& IEEE80211_TX_INTFL_TKIP_MIC_FAILURE
))
86 ieee80211_rx_h_michael_mic_verify(struct ieee80211_rx_data
*rx
)
88 u8
*data
, *key
= NULL
;
91 u8 mic
[MICHAEL_MIC_LEN
];
92 struct sk_buff
*skb
= rx
->skb
;
93 struct ieee80211_rx_status
*status
= IEEE80211_SKB_RXCB(skb
);
94 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*)skb
->data
;
97 * it makes no sense to check for MIC errors on anything other
100 if (!ieee80211_is_data_present(hdr
->frame_control
))
104 * No way to verify the MIC if the hardware stripped it or
105 * the IV with the key index. In this case we have solely rely
106 * on the driver to set RX_FLAG_MMIC_ERROR in the event of a
107 * MIC failure report.
109 if (status
->flag
& (RX_FLAG_MMIC_STRIPPED
| RX_FLAG_IV_STRIPPED
)) {
110 if (status
->flag
& RX_FLAG_MMIC_ERROR
)
111 goto mic_fail_no_key
;
113 if (!(status
->flag
& RX_FLAG_IV_STRIPPED
) && rx
->key
&&
114 rx
->key
->conf
.cipher
== WLAN_CIPHER_SUITE_TKIP
)
121 * Some hardware seems to generate Michael MIC failure reports; even
122 * though, the frame was not encrypted with TKIP and therefore has no
123 * MIC. Ignore the flag them to avoid triggering countermeasures.
125 if (!rx
->key
|| rx
->key
->conf
.cipher
!= WLAN_CIPHER_SUITE_TKIP
||
126 !(status
->flag
& RX_FLAG_DECRYPTED
))
129 if (rx
->sdata
->vif
.type
== NL80211_IFTYPE_AP
&& rx
->key
->conf
.keyidx
) {
131 * APs with pairwise keys should never receive Michael MIC
132 * errors for non-zero keyidx because these are reserved for
133 * group keys and only the AP is sending real multicast
136 return RX_DROP_UNUSABLE
;
139 if (status
->flag
& RX_FLAG_MMIC_ERROR
)
142 hdrlen
= ieee80211_hdrlen(hdr
->frame_control
);
143 if (skb
->len
< hdrlen
+ MICHAEL_MIC_LEN
)
144 return RX_DROP_UNUSABLE
;
146 if (skb_linearize(rx
->skb
))
147 return RX_DROP_UNUSABLE
;
148 hdr
= (void *)skb
->data
;
150 data
= skb
->data
+ hdrlen
;
151 data_len
= skb
->len
- hdrlen
- MICHAEL_MIC_LEN
;
152 key
= &rx
->key
->conf
.key
[NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY
];
153 michael_mic(key
, hdr
, data
, data_len
, mic
);
154 if (crypto_memneq(mic
, data
+ data_len
, MICHAEL_MIC_LEN
))
157 /* remove Michael MIC from payload */
158 skb_trim(skb
, skb
->len
- MICHAEL_MIC_LEN
);
161 /* update IV in key information to be able to detect replays */
162 rx
->key
->u
.tkip
.rx
[rx
->security_idx
].iv32
= rx
->tkip_iv32
;
163 rx
->key
->u
.tkip
.rx
[rx
->security_idx
].iv16
= rx
->tkip_iv16
;
168 rx
->key
->u
.tkip
.mic_failures
++;
172 * In some cases the key can be unset - e.g. a multicast packet, in
173 * a driver that supports HW encryption. Send up the key idx only if
176 mac80211_ev_michael_mic_failure(rx
->sdata
,
177 rx
->key
? rx
->key
->conf
.keyidx
: -1,
178 (void *) skb
->data
, NULL
, GFP_ATOMIC
);
179 return RX_DROP_UNUSABLE
;
183 static int tkip_encrypt_skb(struct ieee80211_tx_data
*tx
, struct sk_buff
*skb
)
185 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*) skb
->data
;
186 struct ieee80211_key
*key
= tx
->key
;
187 struct ieee80211_tx_info
*info
= IEEE80211_SKB_CB(skb
);
192 if (info
->control
.hw_key
&&
193 !(info
->control
.hw_key
->flags
& IEEE80211_KEY_FLAG_GENERATE_IV
) &&
194 !(info
->control
.hw_key
->flags
& IEEE80211_KEY_FLAG_PUT_IV_SPACE
)) {
195 /* hwaccel - with no need for software-generated IV */
199 hdrlen
= ieee80211_hdrlen(hdr
->frame_control
);
200 len
= skb
->len
- hdrlen
;
202 if (info
->control
.hw_key
)
205 tail
= IEEE80211_TKIP_ICV_LEN
;
207 if (WARN_ON(skb_tailroom(skb
) < tail
||
208 skb_headroom(skb
) < IEEE80211_TKIP_IV_LEN
))
211 pos
= skb_push(skb
, IEEE80211_TKIP_IV_LEN
);
212 memmove(pos
, pos
+ IEEE80211_TKIP_IV_LEN
, hdrlen
);
213 skb_set_network_header(skb
, skb_network_offset(skb
) +
214 IEEE80211_TKIP_IV_LEN
);
217 /* the HW only needs room for the IV, but not the actual IV */
218 if (info
->control
.hw_key
&&
219 (info
->control
.hw_key
->flags
& IEEE80211_KEY_FLAG_PUT_IV_SPACE
))
222 /* Increase IV for the frame */
223 spin_lock(&key
->u
.tkip
.txlock
);
224 key
->u
.tkip
.tx
.iv16
++;
225 if (key
->u
.tkip
.tx
.iv16
== 0)
226 key
->u
.tkip
.tx
.iv32
++;
227 pos
= ieee80211_tkip_add_iv(pos
, key
);
228 spin_unlock(&key
->u
.tkip
.txlock
);
230 /* hwaccel - with software IV */
231 if (info
->control
.hw_key
)
234 /* Add room for ICV */
235 skb_put(skb
, IEEE80211_TKIP_ICV_LEN
);
237 return ieee80211_tkip_encrypt_data(tx
->local
->wep_tx_tfm
,
243 ieee80211_crypto_tkip_encrypt(struct ieee80211_tx_data
*tx
)
247 ieee80211_tx_set_protected(tx
);
249 skb_queue_walk(&tx
->skbs
, skb
) {
250 if (tkip_encrypt_skb(tx
, skb
) < 0)
259 ieee80211_crypto_tkip_decrypt(struct ieee80211_rx_data
*rx
)
261 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*) rx
->skb
->data
;
262 int hdrlen
, res
, hwaccel
= 0;
263 struct ieee80211_key
*key
= rx
->key
;
264 struct sk_buff
*skb
= rx
->skb
;
265 struct ieee80211_rx_status
*status
= IEEE80211_SKB_RXCB(skb
);
267 hdrlen
= ieee80211_hdrlen(hdr
->frame_control
);
269 if (!ieee80211_is_data(hdr
->frame_control
))
272 if (!rx
->sta
|| skb
->len
- hdrlen
< 12)
273 return RX_DROP_UNUSABLE
;
275 /* it may be possible to optimize this a bit more */
276 if (skb_linearize(rx
->skb
))
277 return RX_DROP_UNUSABLE
;
278 hdr
= (void *)skb
->data
;
281 * Let TKIP code verify IV, but skip decryption.
282 * In the case where hardware checks the IV as well,
283 * we don't even get here, see ieee80211_rx_h_decrypt()
285 if (status
->flag
& RX_FLAG_DECRYPTED
)
288 res
= ieee80211_tkip_decrypt_data(rx
->local
->wep_rx_tfm
,
289 key
, skb
->data
+ hdrlen
,
290 skb
->len
- hdrlen
, rx
->sta
->sta
.addr
,
291 hdr
->addr1
, hwaccel
, rx
->security_idx
,
294 if (res
!= TKIP_DECRYPT_OK
)
295 return RX_DROP_UNUSABLE
;
298 skb_trim(skb
, skb
->len
- IEEE80211_TKIP_ICV_LEN
);
301 memmove(skb
->data
+ IEEE80211_TKIP_IV_LEN
, skb
->data
, hdrlen
);
302 skb_pull(skb
, IEEE80211_TKIP_IV_LEN
);
308 static void ccmp_special_blocks(struct sk_buff
*skb
, u8
*pn
, u8
*b_0
, u8
*aad
)
311 int a4_included
, mgmt
;
315 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*)skb
->data
;
318 * Mask FC: zero subtype b4 b5 b6 (if not mgmt)
319 * Retry, PwrMgt, MoreData; set Protected
321 mgmt
= ieee80211_is_mgmt(hdr
->frame_control
);
322 mask_fc
= hdr
->frame_control
;
323 mask_fc
&= ~cpu_to_le16(IEEE80211_FCTL_RETRY
|
324 IEEE80211_FCTL_PM
| IEEE80211_FCTL_MOREDATA
);
326 mask_fc
&= ~cpu_to_le16(0x0070);
327 mask_fc
|= cpu_to_le16(IEEE80211_FCTL_PROTECTED
);
329 hdrlen
= ieee80211_hdrlen(hdr
->frame_control
);
331 a4_included
= ieee80211_has_a4(hdr
->frame_control
);
333 if (ieee80211_is_data_qos(hdr
->frame_control
))
334 qos_tid
= *ieee80211_get_qos_ctl(hdr
) & IEEE80211_QOS_CTL_TID_MASK
;
338 /* In CCM, the initial vectors (IV) used for CTR mode encryption and CBC
339 * mode authentication are not allowed to collide, yet both are derived
340 * from this vector b_0. We only set L := 1 here to indicate that the
341 * data size can be represented in (L+1) bytes. The CCM layer will take
342 * care of storing the data length in the top (L+1) bytes and setting
343 * and clearing the other bits as is required to derive the two IVs.
347 /* Nonce: Nonce Flags | A2 | PN
348 * Nonce Flags: Priority (b0..b3) | Management (b4) | Reserved (b5..b7)
350 b_0
[1] = qos_tid
| (mgmt
<< 4);
351 memcpy(&b_0
[2], hdr
->addr2
, ETH_ALEN
);
352 memcpy(&b_0
[8], pn
, IEEE80211_CCMP_PN_LEN
);
354 /* AAD (extra authenticate-only data) / masked 802.11 header
355 * FC | A1 | A2 | A3 | SC | [A4] | [QC] */
356 put_unaligned_be16(len_a
, &aad
[0]);
357 put_unaligned(mask_fc
, (__le16
*)&aad
[2]);
358 memcpy(&aad
[4], &hdr
->addr1
, 3 * ETH_ALEN
);
360 /* Mask Seq#, leave Frag# */
361 aad
[22] = *((u8
*) &hdr
->seq_ctrl
) & 0x0f;
365 memcpy(&aad
[24], hdr
->addr4
, ETH_ALEN
);
369 memset(&aad
[24], 0, ETH_ALEN
+ IEEE80211_QOS_CTL_LEN
);
375 static inline void ccmp_pn2hdr(u8
*hdr
, u8
*pn
, int key_id
)
380 hdr
[3] = 0x20 | (key_id
<< 6);
388 static inline void ccmp_hdr2pn(u8
*pn
, u8
*hdr
)
399 static int ccmp_encrypt_skb(struct ieee80211_tx_data
*tx
, struct sk_buff
*skb
)
401 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*) skb
->data
;
402 struct ieee80211_key
*key
= tx
->key
;
403 struct ieee80211_tx_info
*info
= IEEE80211_SKB_CB(skb
);
404 int hdrlen
, len
, tail
;
408 u8 aad
[2 * AES_BLOCK_SIZE
];
409 u8 b_0
[AES_BLOCK_SIZE
];
411 if (info
->control
.hw_key
&&
412 !(info
->control
.hw_key
->flags
& IEEE80211_KEY_FLAG_GENERATE_IV
) &&
413 !(info
->control
.hw_key
->flags
& IEEE80211_KEY_FLAG_PUT_IV_SPACE
) &&
414 !((info
->control
.hw_key
->flags
&
415 IEEE80211_KEY_FLAG_GENERATE_IV_MGMT
) &&
416 ieee80211_is_mgmt(hdr
->frame_control
))) {
418 * hwaccel has no need for preallocated room for CCMP
419 * header or MIC fields
424 hdrlen
= ieee80211_hdrlen(hdr
->frame_control
);
425 len
= skb
->len
- hdrlen
;
427 if (info
->control
.hw_key
)
430 tail
= IEEE80211_CCMP_MIC_LEN
;
432 if (WARN_ON(skb_tailroom(skb
) < tail
||
433 skb_headroom(skb
) < IEEE80211_CCMP_HDR_LEN
))
436 pos
= skb_push(skb
, IEEE80211_CCMP_HDR_LEN
);
437 memmove(pos
, pos
+ IEEE80211_CCMP_HDR_LEN
, hdrlen
);
438 skb_set_network_header(skb
, skb_network_offset(skb
) +
439 IEEE80211_CCMP_HDR_LEN
);
441 /* the HW only needs room for the IV, but not the actual IV */
442 if (info
->control
.hw_key
&&
443 (info
->control
.hw_key
->flags
& IEEE80211_KEY_FLAG_PUT_IV_SPACE
))
446 hdr
= (struct ieee80211_hdr
*) pos
;
449 pn64
= atomic64_inc_return(&key
->u
.ccmp
.tx_pn
);
458 ccmp_pn2hdr(pos
, pn
, key
->conf
.keyidx
);
460 /* hwaccel - with software CCMP header */
461 if (info
->control
.hw_key
)
464 pos
+= IEEE80211_CCMP_HDR_LEN
;
465 ccmp_special_blocks(skb
, pn
, b_0
, aad
);
466 ieee80211_aes_ccm_encrypt(key
->u
.ccmp
.tfm
, b_0
, aad
, pos
, len
,
467 skb_put(skb
, IEEE80211_CCMP_MIC_LEN
));
474 ieee80211_crypto_ccmp_encrypt(struct ieee80211_tx_data
*tx
)
478 ieee80211_tx_set_protected(tx
);
480 skb_queue_walk(&tx
->skbs
, skb
) {
481 if (ccmp_encrypt_skb(tx
, skb
) < 0)
490 ieee80211_crypto_ccmp_decrypt(struct ieee80211_rx_data
*rx
)
492 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*)rx
->skb
->data
;
494 struct ieee80211_key
*key
= rx
->key
;
495 struct sk_buff
*skb
= rx
->skb
;
496 struct ieee80211_rx_status
*status
= IEEE80211_SKB_RXCB(skb
);
497 u8 pn
[IEEE80211_CCMP_PN_LEN
];
501 hdrlen
= ieee80211_hdrlen(hdr
->frame_control
);
503 if (!ieee80211_is_data(hdr
->frame_control
) &&
504 !ieee80211_is_robust_mgmt_frame(skb
))
507 data_len
= skb
->len
- hdrlen
- IEEE80211_CCMP_HDR_LEN
-
508 IEEE80211_CCMP_MIC_LEN
;
509 if (!rx
->sta
|| data_len
< 0)
510 return RX_DROP_UNUSABLE
;
512 if (status
->flag
& RX_FLAG_DECRYPTED
) {
513 if (!pskb_may_pull(rx
->skb
, hdrlen
+ IEEE80211_CCMP_HDR_LEN
))
514 return RX_DROP_UNUSABLE
;
516 if (skb_linearize(rx
->skb
))
517 return RX_DROP_UNUSABLE
;
520 ccmp_hdr2pn(pn
, skb
->data
+ hdrlen
);
522 queue
= rx
->security_idx
;
524 if (memcmp(pn
, key
->u
.ccmp
.rx_pn
[queue
], IEEE80211_CCMP_PN_LEN
) <= 0) {
525 key
->u
.ccmp
.replays
++;
526 return RX_DROP_UNUSABLE
;
529 if (!(status
->flag
& RX_FLAG_DECRYPTED
)) {
530 u8 aad
[2 * AES_BLOCK_SIZE
];
531 u8 b_0
[AES_BLOCK_SIZE
];
532 /* hardware didn't decrypt/verify MIC */
533 ccmp_special_blocks(skb
, pn
, b_0
, aad
);
535 if (ieee80211_aes_ccm_decrypt(
536 key
->u
.ccmp
.tfm
, b_0
, aad
,
537 skb
->data
+ hdrlen
+ IEEE80211_CCMP_HDR_LEN
,
539 skb
->data
+ skb
->len
- IEEE80211_CCMP_MIC_LEN
))
540 return RX_DROP_UNUSABLE
;
543 memcpy(key
->u
.ccmp
.rx_pn
[queue
], pn
, IEEE80211_CCMP_PN_LEN
);
545 /* Remove CCMP header and MIC */
546 if (pskb_trim(skb
, skb
->len
- IEEE80211_CCMP_MIC_LEN
))
547 return RX_DROP_UNUSABLE
;
548 memmove(skb
->data
+ IEEE80211_CCMP_HDR_LEN
, skb
->data
, hdrlen
);
549 skb_pull(skb
, IEEE80211_CCMP_HDR_LEN
);
554 static ieee80211_tx_result
555 ieee80211_crypto_cs_encrypt(struct ieee80211_tx_data
*tx
,
558 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*)skb
->data
;
559 struct ieee80211_key
*key
= tx
->key
;
560 struct ieee80211_tx_info
*info
= IEEE80211_SKB_CB(skb
);
561 const struct ieee80211_cipher_scheme
*cs
= key
->sta
->cipher_scheme
;
565 if (info
->control
.hw_key
&&
566 !(info
->control
.hw_key
->flags
& IEEE80211_KEY_FLAG_PUT_IV_SPACE
)) {
567 /* hwaccel has no need for preallocated head room */
571 if (unlikely(skb_headroom(skb
) < cs
->hdr_len
&&
572 pskb_expand_head(skb
, cs
->hdr_len
, 0, GFP_ATOMIC
)))
575 hdrlen
= ieee80211_hdrlen(hdr
->frame_control
);
577 pos
= skb_push(skb
, cs
->hdr_len
);
578 memmove(pos
, pos
+ cs
->hdr_len
, hdrlen
);
579 skb_set_network_header(skb
, skb_network_offset(skb
) + cs
->hdr_len
);
584 static inline int ieee80211_crypto_cs_pn_compare(u8
*pn1
, u8
*pn2
, int len
)
588 /* pn is little endian */
589 for (i
= len
- 1; i
>= 0; i
--) {
592 else if (pn1
[i
] > pn2
[i
])
599 static ieee80211_rx_result
600 ieee80211_crypto_cs_decrypt(struct ieee80211_rx_data
*rx
)
602 struct ieee80211_key
*key
= rx
->key
;
603 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*)rx
->skb
->data
;
604 const struct ieee80211_cipher_scheme
*cs
= NULL
;
605 int hdrlen
= ieee80211_hdrlen(hdr
->frame_control
);
606 struct ieee80211_rx_status
*status
= IEEE80211_SKB_RXCB(rx
->skb
);
612 if (!rx
->sta
|| !rx
->sta
->cipher_scheme
||
613 !(status
->flag
& RX_FLAG_DECRYPTED
))
614 return RX_DROP_UNUSABLE
;
616 if (!ieee80211_is_data(hdr
->frame_control
))
619 cs
= rx
->sta
->cipher_scheme
;
621 data_len
= rx
->skb
->len
- hdrlen
- cs
->hdr_len
;
624 return RX_DROP_UNUSABLE
;
626 if (ieee80211_is_data_qos(hdr
->frame_control
))
627 qos_tid
= *ieee80211_get_qos_ctl(hdr
) &
628 IEEE80211_QOS_CTL_TID_MASK
;
632 if (skb_linearize(rx
->skb
))
633 return RX_DROP_UNUSABLE
;
635 hdr
= (struct ieee80211_hdr
*)rx
->skb
->data
;
637 rx_pn
= key
->u
.gen
.rx_pn
[qos_tid
];
638 skb_pn
= rx
->skb
->data
+ hdrlen
+ cs
->pn_off
;
640 if (ieee80211_crypto_cs_pn_compare(skb_pn
, rx_pn
, cs
->pn_len
) <= 0)
641 return RX_DROP_UNUSABLE
;
643 memcpy(rx_pn
, skb_pn
, cs
->pn_len
);
645 /* remove security header and MIC */
646 if (pskb_trim(rx
->skb
, rx
->skb
->len
- cs
->mic_len
))
647 return RX_DROP_UNUSABLE
;
649 memmove(rx
->skb
->data
+ cs
->hdr_len
, rx
->skb
->data
, hdrlen
);
650 skb_pull(rx
->skb
, cs
->hdr_len
);
655 static void bip_aad(struct sk_buff
*skb
, u8
*aad
)
658 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*) skb
->data
;
660 /* BIP AAD: FC(masked) || A1 || A2 || A3 */
662 /* FC type/subtype */
663 /* Mask FC Retry, PwrMgt, MoreData flags to zero */
664 mask_fc
= hdr
->frame_control
;
665 mask_fc
&= ~cpu_to_le16(IEEE80211_FCTL_RETRY
| IEEE80211_FCTL_PM
|
666 IEEE80211_FCTL_MOREDATA
);
667 put_unaligned(mask_fc
, (__le16
*) &aad
[0]);
669 memcpy(aad
+ 2, &hdr
->addr1
, 3 * ETH_ALEN
);
673 static inline void bip_ipn_set64(u8
*d
, u64 pn
)
683 static inline void bip_ipn_swap(u8
*d
, const u8
*s
)
695 ieee80211_crypto_aes_cmac_encrypt(struct ieee80211_tx_data
*tx
)
698 struct ieee80211_tx_info
*info
;
699 struct ieee80211_key
*key
= tx
->key
;
700 struct ieee80211_mmie
*mmie
;
704 if (WARN_ON(skb_queue_len(&tx
->skbs
) != 1))
707 skb
= skb_peek(&tx
->skbs
);
709 info
= IEEE80211_SKB_CB(skb
);
711 if (info
->control
.hw_key
)
714 if (WARN_ON(skb_tailroom(skb
) < sizeof(*mmie
)))
717 mmie
= (struct ieee80211_mmie
*) skb_put(skb
, sizeof(*mmie
));
718 mmie
->element_id
= WLAN_EID_MMIE
;
719 mmie
->length
= sizeof(*mmie
) - 2;
720 mmie
->key_id
= cpu_to_le16(key
->conf
.keyidx
);
723 pn64
= atomic64_inc_return(&key
->u
.aes_cmac
.tx_pn
);
725 bip_ipn_set64(mmie
->sequence_number
, pn64
);
730 * MIC = AES-128-CMAC(IGTK, AAD || Management Frame Body || MMIE, 64)
732 ieee80211_aes_cmac(key
->u
.aes_cmac
.tfm
, aad
,
733 skb
->data
+ 24, skb
->len
- 24, mmie
->mic
);
740 ieee80211_crypto_aes_cmac_decrypt(struct ieee80211_rx_data
*rx
)
742 struct sk_buff
*skb
= rx
->skb
;
743 struct ieee80211_rx_status
*status
= IEEE80211_SKB_RXCB(skb
);
744 struct ieee80211_key
*key
= rx
->key
;
745 struct ieee80211_mmie
*mmie
;
746 u8 aad
[20], mic
[8], ipn
[6];
747 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*) skb
->data
;
749 if (!ieee80211_is_mgmt(hdr
->frame_control
))
752 /* management frames are already linear */
754 if (skb
->len
< 24 + sizeof(*mmie
))
755 return RX_DROP_UNUSABLE
;
757 mmie
= (struct ieee80211_mmie
*)
758 (skb
->data
+ skb
->len
- sizeof(*mmie
));
759 if (mmie
->element_id
!= WLAN_EID_MMIE
||
760 mmie
->length
!= sizeof(*mmie
) - 2)
761 return RX_DROP_UNUSABLE
; /* Invalid MMIE */
763 bip_ipn_swap(ipn
, mmie
->sequence_number
);
765 if (memcmp(ipn
, key
->u
.aes_cmac
.rx_pn
, 6) <= 0) {
766 key
->u
.aes_cmac
.replays
++;
767 return RX_DROP_UNUSABLE
;
770 if (!(status
->flag
& RX_FLAG_DECRYPTED
)) {
771 /* hardware didn't decrypt/verify MIC */
773 ieee80211_aes_cmac(key
->u
.aes_cmac
.tfm
, aad
,
774 skb
->data
+ 24, skb
->len
- 24, mic
);
775 if (crypto_memneq(mic
, mmie
->mic
, sizeof(mmie
->mic
))) {
776 key
->u
.aes_cmac
.icverrors
++;
777 return RX_DROP_UNUSABLE
;
781 memcpy(key
->u
.aes_cmac
.rx_pn
, ipn
, 6);
784 skb_trim(skb
, skb
->len
- sizeof(*mmie
));
790 ieee80211_crypto_hw_encrypt(struct ieee80211_tx_data
*tx
)
793 struct ieee80211_tx_info
*info
= NULL
;
794 ieee80211_tx_result res
;
796 skb_queue_walk(&tx
->skbs
, skb
) {
797 info
= IEEE80211_SKB_CB(skb
);
799 /* handle hw-only algorithm */
800 if (!info
->control
.hw_key
)
803 if (tx
->key
->sta
->cipher_scheme
) {
804 res
= ieee80211_crypto_cs_encrypt(tx
, skb
);
805 if (res
!= TX_CONTINUE
)
810 ieee80211_tx_set_protected(tx
);
816 ieee80211_crypto_hw_decrypt(struct ieee80211_rx_data
*rx
)
818 if (rx
->sta
&& rx
->sta
->cipher_scheme
)
819 return ieee80211_crypto_cs_decrypt(rx
);
821 return RX_DROP_UNUSABLE
;