2 * Copyright 2002-2004, Instant802 Networks, Inc.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
9 #include <linux/netdevice.h>
10 #include <linux/types.h>
11 #include <linux/slab.h>
12 #include <linux/skbuff.h>
13 #include <linux/compiler.h>
14 #include <net/mac80211.h>
16 #include "ieee80211_i.h"
22 static int ieee80211_get_hdr_info(const struct sk_buff *skb, u8 **sa, u8 **da,
23 u8 *qos_tid, u8 **data, size_t *data_len)
25 struct ieee80211_hdr *hdr;
31 hdr = (struct ieee80211_hdr *) skb->data;
32 fc = le16_to_cpu(hdr->frame_control);
35 if ((fc & (IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS)) ==
36 (IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS)) {
40 } else if (fc & IEEE80211_FCTL_FROMDS) {
43 } else if (fc & IEEE80211_FCTL_TODS) {
54 *data = skb->data + hdrlen;
55 *data_len = skb->len - hdrlen;
57 a4_included = (fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) ==
58 (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS);
59 if ((fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA &&
60 fc & IEEE80211_STYPE_QOS_DATA) {
61 pos = (u8 *) &hdr->addr4;
64 *qos_tid = pos[0] & 0x0f;
65 *qos_tid |= 0x80; /* qos_included flag */
69 return skb->len < hdrlen ? -1 : 0;
74 ieee80211_tx_h_michael_mic_add(struct ieee80211_txrx_data *tx)
76 u8 *data, *sa, *da, *key, *mic, qos_tid;
79 struct sk_buff *skb = tx->skb;
85 if (!tx->key || tx->key->conf.alg != ALG_TKIP || skb->len < 24 ||
86 !WLAN_FC_DATA_PRESENT(fc))
89 if (ieee80211_get_hdr_info(skb, &sa, &da, &qos_tid, &data, &data_len))
92 if (!(tx->key->conf.flags & IEEE80211_KEY_FORCE_SW_ENCRYPT) &&
93 !(tx->flags & IEEE80211_TXRXD_FRAGMENTED) &&
94 !(tx->local->hw.flags & IEEE80211_HW_TKIP_INCLUDE_MMIC) &&
96 /* hwaccel - with no need for preallocated room for Michael MIC
101 if (skb_tailroom(skb) < MICHAEL_MIC_LEN) {
102 I802_DEBUG_INC(tx->local->tx_expand_skb_head);
103 if (unlikely(pskb_expand_head(skb, TKIP_IV_LEN,
104 MICHAEL_MIC_LEN + TKIP_ICV_LEN,
106 printk(KERN_DEBUG "%s: failed to allocate more memory "
107 "for Michael MIC\n", tx->dev->name);
113 authenticator = fc & IEEE80211_FCTL_FROMDS; /* FIX */
117 key = &tx->key->conf.key[authenticator ? ALG_TKIP_TEMP_AUTH_TX_MIC_KEY :
118 ALG_TKIP_TEMP_AUTH_RX_MIC_KEY];
119 mic = skb_put(skb, MICHAEL_MIC_LEN);
120 michael_mic(key, da, sa, qos_tid & 0x0f, data, data_len, mic);
122 return TXRX_CONTINUE;
126 ieee80211_txrx_result
127 ieee80211_rx_h_michael_mic_verify(struct ieee80211_txrx_data *rx)
129 u8 *data, *sa, *da, *key = NULL, qos_tid;
132 u8 mic[MICHAEL_MIC_LEN];
133 struct sk_buff *skb = rx->skb;
134 int authenticator = 1, wpa_test = 0;
139 * No way to verify the MIC if the hardware stripped it
141 if (rx->local->hw.flags & IEEE80211_HW_DEVICE_STRIPS_MIC)
142 return TXRX_CONTINUE;
144 if (!rx->key || rx->key->conf.alg != ALG_TKIP ||
145 !(rx->fc & IEEE80211_FCTL_PROTECTED) || !WLAN_FC_DATA_PRESENT(fc))
146 return TXRX_CONTINUE;
148 if ((rx->u.rx.status->flag & RX_FLAG_DECRYPTED) &&
149 !(rx->key->conf.flags & IEEE80211_KEY_FORCE_SW_ENCRYPT)) {
150 if (rx->local->hw.flags & IEEE80211_HW_WEP_INCLUDE_IV) {
151 if (skb->len < MICHAEL_MIC_LEN)
154 /* Need to verify Michael MIC sometimes in software even when
155 * hwaccel is used. Atheros ar5212: fragmented frames and QoS
157 if (!(rx->flags & IEEE80211_TXRXD_FRAGMENTED) && !wpa_test)
161 if (ieee80211_get_hdr_info(skb, &sa, &da, &qos_tid, &data, &data_len)
162 || data_len < MICHAEL_MIC_LEN)
165 data_len -= MICHAEL_MIC_LEN;
168 authenticator = fc & IEEE80211_FCTL_TODS; /* FIX */
172 key = &rx->key->conf.key[authenticator ? ALG_TKIP_TEMP_AUTH_RX_MIC_KEY :
173 ALG_TKIP_TEMP_AUTH_TX_MIC_KEY];
174 michael_mic(key, da, sa, qos_tid & 0x0f, data, data_len, mic);
175 if (memcmp(mic, data + data_len, MICHAEL_MIC_LEN) != 0 || wpa_test) {
176 if (!(rx->flags & IEEE80211_TXRXD_RXRA_MATCH))
179 printk(KERN_DEBUG "%s: invalid Michael MIC in data frame from "
180 MAC_FMT "\n", rx->dev->name, MAC_ARG(sa));
182 mac80211_ev_michael_mic_failure(rx->dev, rx->key->conf.keyidx,
188 /* remove Michael MIC from payload */
189 skb_trim(skb, skb->len - MICHAEL_MIC_LEN);
191 return TXRX_CONTINUE;
195 static int tkip_encrypt_skb(struct ieee80211_txrx_data *tx,
196 struct sk_buff *skb, int test)
198 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
199 struct ieee80211_key *key = tx->key;
200 int hdrlen, len, tailneed;
204 fc = le16_to_cpu(hdr->frame_control);
205 hdrlen = ieee80211_get_hdrlen(fc);
206 len = skb->len - hdrlen;
208 if (tx->key->conf.flags & IEEE80211_KEY_FORCE_SW_ENCRYPT)
209 tailneed = TKIP_ICV_LEN;
213 if ((skb_headroom(skb) < TKIP_IV_LEN ||
214 skb_tailroom(skb) < tailneed)) {
215 I802_DEBUG_INC(tx->local->tx_expand_skb_head);
216 if (unlikely(pskb_expand_head(skb, TKIP_IV_LEN, tailneed,
221 pos = skb_push(skb, TKIP_IV_LEN);
222 memmove(pos, pos + TKIP_IV_LEN, hdrlen);
225 /* Increase IV for the frame */
227 if (key->u.tkip.iv16 == 0)
230 if (!(tx->key->conf.flags & IEEE80211_KEY_FORCE_SW_ENCRYPT)) {
231 u32 flags = tx->local->hw.flags;
232 hdr = (struct ieee80211_hdr *)skb->data;
234 /* hwaccel - with preallocated room for IV */
235 ieee80211_tkip_add_iv(pos, key,
236 (u8) (key->u.tkip.iv16 >> 8),
237 (u8) (((key->u.tkip.iv16 >> 8) | 0x20) &
239 (u8) key->u.tkip.iv16);
241 if (flags & IEEE80211_HW_TKIP_REQ_PHASE2_KEY)
242 ieee80211_tkip_gen_rc4key(key, hdr->addr2,
243 tx->u.tx.control->tkip_key);
244 else if (flags & IEEE80211_HW_TKIP_REQ_PHASE1_KEY) {
245 if (key->u.tkip.iv16 == 0 ||
246 !key->u.tkip.tx_initialized) {
247 ieee80211_tkip_gen_phase1key(key, hdr->addr2,
248 (u16 *)tx->u.tx.control->tkip_key);
249 key->u.tkip.tx_initialized = 1;
250 tx->u.tx.control->flags |=
251 IEEE80211_TXCTL_TKIP_NEW_PHASE1_KEY;
253 tx->u.tx.control->flags &=
254 ~IEEE80211_TXCTL_TKIP_NEW_PHASE1_KEY;
257 tx->u.tx.control->key_idx = tx->key->conf.hw_key_idx;
261 /* Add room for ICV */
262 skb_put(skb, TKIP_ICV_LEN);
264 hdr = (struct ieee80211_hdr *) skb->data;
265 ieee80211_tkip_encrypt_data(tx->local->wep_tx_tfm,
266 key, pos, len, hdr->addr2);
271 ieee80211_txrx_result
272 ieee80211_tx_h_tkip_encrypt(struct ieee80211_txrx_data *tx)
274 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
276 struct ieee80211_key *key = tx->key;
277 struct sk_buff *skb = tx->skb;
278 int wpa_test = 0, test = 0;
280 fc = le16_to_cpu(hdr->frame_control);
282 if (!key || key->conf.alg != ALG_TKIP || !WLAN_FC_DATA_PRESENT(fc))
283 return TXRX_CONTINUE;
285 tx->u.tx.control->icv_len = TKIP_ICV_LEN;
286 tx->u.tx.control->iv_len = TKIP_IV_LEN;
287 ieee80211_tx_set_iswep(tx);
289 if (!(tx->key->conf.flags & IEEE80211_KEY_FORCE_SW_ENCRYPT) &&
290 !(tx->local->hw.flags & IEEE80211_HW_WEP_INCLUDE_IV) &&
292 /* hwaccel - with no need for preallocated room for IV/ICV */
293 tx->u.tx.control->key_idx = tx->key->conf.hw_key_idx;
294 return TXRX_CONTINUE;
297 if (tkip_encrypt_skb(tx, skb, test) < 0)
300 if (tx->u.tx.extra_frag) {
302 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
303 if (tkip_encrypt_skb(tx, tx->u.tx.extra_frag[i], test)
309 return TXRX_CONTINUE;
313 ieee80211_txrx_result
314 ieee80211_rx_h_tkip_decrypt(struct ieee80211_txrx_data *rx)
316 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) rx->skb->data;
318 int hdrlen, res, hwaccel = 0, wpa_test = 0;
319 struct ieee80211_key *key = rx->key;
320 struct sk_buff *skb = rx->skb;
322 fc = le16_to_cpu(hdr->frame_control);
323 hdrlen = ieee80211_get_hdrlen(fc);
325 if (!rx->key || rx->key->conf.alg != ALG_TKIP ||
326 !(rx->fc & IEEE80211_FCTL_PROTECTED) ||
327 (rx->fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA)
328 return TXRX_CONTINUE;
330 if (!rx->sta || skb->len - hdrlen < 12)
333 if ((rx->u.rx.status->flag & RX_FLAG_DECRYPTED) &&
334 !(key->conf.flags & IEEE80211_KEY_FORCE_SW_ENCRYPT)) {
335 if (!(rx->local->hw.flags & IEEE80211_HW_WEP_INCLUDE_IV)) {
336 /* Hardware takes care of all processing, including
337 * replay protection, so no need to continue here. */
338 return TXRX_CONTINUE;
341 /* let TKIP code verify IV, but skip decryption */
345 res = ieee80211_tkip_decrypt_data(rx->local->wep_rx_tfm,
346 key, skb->data + hdrlen,
347 skb->len - hdrlen, rx->sta->addr,
348 hwaccel, rx->u.rx.queue);
349 if (res != TKIP_DECRYPT_OK || wpa_test) {
350 printk(KERN_DEBUG "%s: TKIP decrypt failed for RX frame from "
351 MAC_FMT " (res=%d)\n",
352 rx->dev->name, MAC_ARG(rx->sta->addr), res);
357 skb_trim(skb, skb->len - TKIP_ICV_LEN);
360 memmove(skb->data + TKIP_IV_LEN, skb->data, hdrlen);
361 skb_pull(skb, TKIP_IV_LEN);
363 return TXRX_CONTINUE;
367 static void ccmp_special_blocks(struct sk_buff *skb, u8 *pn, u8 *b_0, u8 *aad,
371 int a4_included, qos_included;
372 u8 qos_tid, *fc_pos, *data, *sa, *da;
375 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
377 fc_pos = (u8 *) &hdr->frame_control;
378 fc = fc_pos[0] ^ (fc_pos[1] << 8);
379 a4_included = (fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) ==
380 (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS);
382 ieee80211_get_hdr_info(skb, &sa, &da, &qos_tid, &data, &data_len);
383 data_len -= CCMP_HDR_LEN + (encrypted ? CCMP_MIC_LEN : 0);
384 if (qos_tid & 0x80) {
389 /* First block, b_0 */
391 b_0[0] = 0x59; /* flags: Adata: 1, M: 011, L: 001 */
392 /* Nonce: QoS Priority | A2 | PN */
394 memcpy(&b_0[2], hdr->addr2, 6);
395 memcpy(&b_0[8], pn, CCMP_PN_LEN);
397 b_0[14] = (data_len >> 8) & 0xff;
398 b_0[15] = data_len & 0xff;
401 /* AAD (extra authenticate-only data) / masked 802.11 header
402 * FC | A1 | A2 | A3 | SC | [A4] | [QC] */
404 len_a = a4_included ? 28 : 22;
408 aad[0] = 0; /* (len_a >> 8) & 0xff; */
409 aad[1] = len_a & 0xff;
410 /* Mask FC: zero subtype b4 b5 b6 */
411 aad[2] = fc_pos[0] & ~(BIT(4) | BIT(5) | BIT(6));
412 /* Retry, PwrMgt, MoreData; set Protected */
413 aad[3] = (fc_pos[1] & ~(BIT(3) | BIT(4) | BIT(5))) | BIT(6);
414 memcpy(&aad[4], &hdr->addr1, 18);
416 /* Mask Seq#, leave Frag# */
417 aad[22] = *((u8 *) &hdr->seq_ctrl) & 0x0f;
420 memcpy(&aad[24], hdr->addr4, 6);
424 memset(&aad[24], 0, 8);
426 u8 *dpos = &aad[a4_included ? 30 : 24];
428 /* Mask QoS Control field */
435 static inline void ccmp_pn2hdr(u8 *hdr, u8 *pn, int key_id)
440 hdr[3] = 0x20 | (key_id << 6);
448 static inline int ccmp_hdr2pn(u8 *pn, u8 *hdr)
456 return (hdr[3] >> 6) & 0x03;
460 static int ccmp_encrypt_skb(struct ieee80211_txrx_data *tx,
461 struct sk_buff *skb, int test)
463 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
464 struct ieee80211_key *key = tx->key;
465 int hdrlen, len, tailneed;
467 u8 *pos, *pn, *b_0, *aad, *scratch;
470 scratch = key->u.ccmp.tx_crypto_buf;
471 b_0 = scratch + 3 * AES_BLOCK_LEN;
472 aad = scratch + 4 * AES_BLOCK_LEN;
474 fc = le16_to_cpu(hdr->frame_control);
475 hdrlen = ieee80211_get_hdrlen(fc);
476 len = skb->len - hdrlen;
478 if (key->conf.flags & IEEE80211_KEY_FORCE_SW_ENCRYPT)
479 tailneed = CCMP_MIC_LEN;
483 if ((skb_headroom(skb) < CCMP_HDR_LEN ||
484 skb_tailroom(skb) < tailneed)) {
485 I802_DEBUG_INC(tx->local->tx_expand_skb_head);
486 if (unlikely(pskb_expand_head(skb, CCMP_HDR_LEN, tailneed,
491 pos = skb_push(skb, CCMP_HDR_LEN);
492 memmove(pos, pos + CCMP_HDR_LEN, hdrlen);
493 hdr = (struct ieee80211_hdr *) pos;
497 pn = key->u.ccmp.tx_pn;
499 for (i = CCMP_PN_LEN - 1; i >= 0; i--) {
505 ccmp_pn2hdr(pos, pn, key->conf.keyidx);
507 if (!(key->conf.flags & IEEE80211_KEY_FORCE_SW_ENCRYPT)) {
508 /* hwaccel - with preallocated room for CCMP header */
509 tx->u.tx.control->key_idx = key->conf.hw_key_idx;
514 ccmp_special_blocks(skb, pn, b_0, aad, 0);
515 ieee80211_aes_ccm_encrypt(key->u.ccmp.tfm, scratch, b_0, aad, pos, len,
516 pos, skb_put(skb, CCMP_MIC_LEN));
522 ieee80211_txrx_result
523 ieee80211_tx_h_ccmp_encrypt(struct ieee80211_txrx_data *tx)
525 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
526 struct ieee80211_key *key = tx->key;
528 struct sk_buff *skb = tx->skb;
531 fc = le16_to_cpu(hdr->frame_control);
533 if (!key || key->conf.alg != ALG_CCMP || !WLAN_FC_DATA_PRESENT(fc))
534 return TXRX_CONTINUE;
536 tx->u.tx.control->icv_len = CCMP_MIC_LEN;
537 tx->u.tx.control->iv_len = CCMP_HDR_LEN;
538 ieee80211_tx_set_iswep(tx);
540 if (!(tx->key->conf.flags & IEEE80211_KEY_FORCE_SW_ENCRYPT) &&
541 !(tx->local->hw.flags & IEEE80211_HW_WEP_INCLUDE_IV)) {
542 /* hwaccel - with no need for preallocated room for CCMP "
543 * header or MIC fields */
544 tx->u.tx.control->key_idx = tx->key->conf.hw_key_idx;
545 return TXRX_CONTINUE;
548 if (ccmp_encrypt_skb(tx, skb, test) < 0)
551 if (tx->u.tx.extra_frag) {
554 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
555 if (ccmp_encrypt_skb(tx, tx->u.tx.extra_frag[i], test)
561 return TXRX_CONTINUE;
565 ieee80211_txrx_result
566 ieee80211_rx_h_ccmp_decrypt(struct ieee80211_txrx_data *rx)
568 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) rx->skb->data;
571 struct ieee80211_key *key = rx->key;
572 struct sk_buff *skb = rx->skb;
576 fc = le16_to_cpu(hdr->frame_control);
577 hdrlen = ieee80211_get_hdrlen(fc);
579 if (!key || key->conf.alg != ALG_CCMP ||
580 !(rx->fc & IEEE80211_FCTL_PROTECTED) ||
581 (rx->fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA)
582 return TXRX_CONTINUE;
584 data_len = skb->len - hdrlen - CCMP_HDR_LEN - CCMP_MIC_LEN;
585 if (!rx->sta || data_len < 0)
588 if ((rx->u.rx.status->flag & RX_FLAG_DECRYPTED) &&
589 !(key->conf.flags & IEEE80211_KEY_FORCE_SW_ENCRYPT) &&
590 !(rx->local->hw.flags & IEEE80211_HW_WEP_INCLUDE_IV))
591 return TXRX_CONTINUE;
593 (void) ccmp_hdr2pn(pn, skb->data + hdrlen);
595 if (memcmp(pn, key->u.ccmp.rx_pn[rx->u.rx.queue], CCMP_PN_LEN) <= 0) {
596 #ifdef CONFIG_MAC80211_DEBUG
597 u8 *ppn = key->u.ccmp.rx_pn[rx->u.rx.queue];
598 printk(KERN_DEBUG "%s: CCMP replay detected for RX frame from "
599 MAC_FMT " (RX PN %02x%02x%02x%02x%02x%02x <= prev. PN "
600 "%02x%02x%02x%02x%02x%02x)\n", rx->dev->name,
601 MAC_ARG(rx->sta->addr),
602 pn[0], pn[1], pn[2], pn[3], pn[4], pn[5],
603 ppn[0], ppn[1], ppn[2], ppn[3], ppn[4], ppn[5]);
604 #endif /* CONFIG_MAC80211_DEBUG */
605 key->u.ccmp.replays++;
609 if ((rx->u.rx.status->flag & RX_FLAG_DECRYPTED) &&
610 !(key->conf.flags & IEEE80211_KEY_FORCE_SW_ENCRYPT)) {
611 /* hwaccel has already decrypted frame and verified MIC */
613 u8 *scratch, *b_0, *aad;
615 scratch = key->u.ccmp.rx_crypto_buf;
616 b_0 = scratch + 3 * AES_BLOCK_LEN;
617 aad = scratch + 4 * AES_BLOCK_LEN;
619 ccmp_special_blocks(skb, pn, b_0, aad, 1);
621 if (ieee80211_aes_ccm_decrypt(
622 key->u.ccmp.tfm, scratch, b_0, aad,
623 skb->data + hdrlen + CCMP_HDR_LEN, data_len,
624 skb->data + skb->len - CCMP_MIC_LEN,
625 skb->data + hdrlen + CCMP_HDR_LEN)) {
626 printk(KERN_DEBUG "%s: CCMP decrypt failed for RX "
627 "frame from " MAC_FMT "\n", rx->dev->name,
628 MAC_ARG(rx->sta->addr));
633 memcpy(key->u.ccmp.rx_pn[rx->u.rx.queue], pn, CCMP_PN_LEN);
635 /* Remove CCMP header and MIC */
636 skb_trim(skb, skb->len - CCMP_MIC_LEN);
637 memmove(skb->data + CCMP_HDR_LEN, skb->data, hdrlen);
638 skb_pull(skb, CCMP_HDR_LEN);
640 return TXRX_CONTINUE;