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->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) &&
93 !(tx->flags & IEEE80211_TXRXD_FRAGMENTED) &&
94 !(tx->key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_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;
135 DECLARE_MAC_BUF(mac);
140 * No way to verify the MIC if the hardware stripped it
142 if (rx->u.rx.status->flag & RX_FLAG_MMIC_STRIPPED)
143 return TXRX_CONTINUE;
145 if (!rx->key || rx->key->conf.alg != ALG_TKIP ||
146 !(rx->fc & IEEE80211_FCTL_PROTECTED) || !WLAN_FC_DATA_PRESENT(fc))
147 return TXRX_CONTINUE;
149 if (ieee80211_get_hdr_info(skb, &sa, &da, &qos_tid, &data, &data_len)
150 || data_len < MICHAEL_MIC_LEN)
153 data_len -= MICHAEL_MIC_LEN;
156 authenticator = fc & IEEE80211_FCTL_TODS; /* FIX */
160 key = &rx->key->conf.key[authenticator ? ALG_TKIP_TEMP_AUTH_RX_MIC_KEY :
161 ALG_TKIP_TEMP_AUTH_TX_MIC_KEY];
162 michael_mic(key, da, sa, qos_tid & 0x0f, data, data_len, mic);
163 if (memcmp(mic, data + data_len, MICHAEL_MIC_LEN) != 0 || wpa_test) {
164 if (!(rx->flags & IEEE80211_TXRXD_RXRA_MATCH))
167 printk(KERN_DEBUG "%s: invalid Michael MIC in data frame from "
168 "%s\n", rx->dev->name, print_mac(mac, sa));
170 mac80211_ev_michael_mic_failure(rx->dev, rx->key->conf.keyidx,
175 /* remove Michael MIC from payload */
176 skb_trim(skb, skb->len - MICHAEL_MIC_LEN);
178 return TXRX_CONTINUE;
182 static int tkip_encrypt_skb(struct ieee80211_txrx_data *tx,
183 struct sk_buff *skb, int test)
185 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
186 struct ieee80211_key *key = tx->key;
187 int hdrlen, len, tailneed;
191 fc = le16_to_cpu(hdr->frame_control);
192 hdrlen = ieee80211_get_hdrlen(fc);
193 len = skb->len - hdrlen;
195 if (tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
198 tailneed = TKIP_ICV_LEN;
200 if ((skb_headroom(skb) < TKIP_IV_LEN ||
201 skb_tailroom(skb) < tailneed)) {
202 I802_DEBUG_INC(tx->local->tx_expand_skb_head);
203 if (unlikely(pskb_expand_head(skb, TKIP_IV_LEN, tailneed,
208 pos = skb_push(skb, TKIP_IV_LEN);
209 memmove(pos, pos + TKIP_IV_LEN, hdrlen);
212 /* Increase IV for the frame */
214 if (key->u.tkip.iv16 == 0)
217 if (tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) {
218 hdr = (struct ieee80211_hdr *)skb->data;
220 /* hwaccel - with preallocated room for IV */
221 ieee80211_tkip_add_iv(pos, key,
222 (u8) (key->u.tkip.iv16 >> 8),
223 (u8) (((key->u.tkip.iv16 >> 8) | 0x20) &
225 (u8) key->u.tkip.iv16);
227 tx->u.tx.control->key_idx = tx->key->conf.hw_key_idx;
231 /* Add room for ICV */
232 skb_put(skb, TKIP_ICV_LEN);
234 hdr = (struct ieee80211_hdr *) skb->data;
235 ieee80211_tkip_encrypt_data(tx->local->wep_tx_tfm,
236 key, pos, len, hdr->addr2);
241 ieee80211_txrx_result
242 ieee80211_tx_h_tkip_encrypt(struct ieee80211_txrx_data *tx)
244 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
246 struct ieee80211_key *key = tx->key;
247 struct sk_buff *skb = tx->skb;
248 int wpa_test = 0, test = 0;
250 fc = le16_to_cpu(hdr->frame_control);
252 if (!key || key->conf.alg != ALG_TKIP || !WLAN_FC_DATA_PRESENT(fc))
253 return TXRX_CONTINUE;
255 tx->u.tx.control->icv_len = TKIP_ICV_LEN;
256 tx->u.tx.control->iv_len = TKIP_IV_LEN;
257 ieee80211_tx_set_iswep(tx);
259 if ((tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) &&
260 !(tx->key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV) &&
262 /* hwaccel - with no need for preallocated room for IV/ICV */
263 tx->u.tx.control->key_idx = tx->key->conf.hw_key_idx;
264 return TXRX_CONTINUE;
267 if (tkip_encrypt_skb(tx, skb, test) < 0)
270 if (tx->u.tx.extra_frag) {
272 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
273 if (tkip_encrypt_skb(tx, tx->u.tx.extra_frag[i], test)
279 return TXRX_CONTINUE;
283 ieee80211_txrx_result
284 ieee80211_rx_h_tkip_decrypt(struct ieee80211_txrx_data *rx)
286 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) rx->skb->data;
288 int hdrlen, res, hwaccel = 0, wpa_test = 0;
289 struct ieee80211_key *key = rx->key;
290 struct sk_buff *skb = rx->skb;
291 DECLARE_MAC_BUF(mac);
293 fc = le16_to_cpu(hdr->frame_control);
294 hdrlen = ieee80211_get_hdrlen(fc);
296 if (!rx->key || rx->key->conf.alg != ALG_TKIP ||
297 !(rx->fc & IEEE80211_FCTL_PROTECTED) ||
298 (rx->fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA)
299 return TXRX_CONTINUE;
301 if (!rx->sta || skb->len - hdrlen < 12)
304 if (rx->u.rx.status->flag & RX_FLAG_DECRYPTED) {
305 if (rx->u.rx.status->flag & RX_FLAG_IV_STRIPPED) {
307 * Hardware took care of all processing, including
308 * replay protection, and stripped the ICV/IV so
309 * we cannot do any checks here.
311 return TXRX_CONTINUE;
314 /* let TKIP code verify IV, but skip decryption */
318 res = ieee80211_tkip_decrypt_data(rx->local->wep_rx_tfm,
319 key, skb->data + hdrlen,
320 skb->len - hdrlen, rx->sta->addr,
321 hwaccel, rx->u.rx.queue);
322 if (res != TKIP_DECRYPT_OK || wpa_test) {
323 printk(KERN_DEBUG "%s: TKIP decrypt failed for RX frame from "
325 rx->dev->name, print_mac(mac, rx->sta->addr), res);
330 skb_trim(skb, skb->len - TKIP_ICV_LEN);
333 memmove(skb->data + TKIP_IV_LEN, skb->data, hdrlen);
334 skb_pull(skb, TKIP_IV_LEN);
336 return TXRX_CONTINUE;
340 static void ccmp_special_blocks(struct sk_buff *skb, u8 *pn, u8 *b_0, u8 *aad,
344 int a4_included, qos_included;
345 u8 qos_tid, *fc_pos, *data, *sa, *da;
348 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
350 fc_pos = (u8 *) &hdr->frame_control;
351 fc = fc_pos[0] ^ (fc_pos[1] << 8);
352 a4_included = (fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) ==
353 (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS);
355 ieee80211_get_hdr_info(skb, &sa, &da, &qos_tid, &data, &data_len);
356 data_len -= CCMP_HDR_LEN + (encrypted ? CCMP_MIC_LEN : 0);
357 if (qos_tid & 0x80) {
362 /* First block, b_0 */
364 b_0[0] = 0x59; /* flags: Adata: 1, M: 011, L: 001 */
365 /* Nonce: QoS Priority | A2 | PN */
367 memcpy(&b_0[2], hdr->addr2, 6);
368 memcpy(&b_0[8], pn, CCMP_PN_LEN);
370 b_0[14] = (data_len >> 8) & 0xff;
371 b_0[15] = data_len & 0xff;
374 /* AAD (extra authenticate-only data) / masked 802.11 header
375 * FC | A1 | A2 | A3 | SC | [A4] | [QC] */
377 len_a = a4_included ? 28 : 22;
381 aad[0] = 0; /* (len_a >> 8) & 0xff; */
382 aad[1] = len_a & 0xff;
383 /* Mask FC: zero subtype b4 b5 b6 */
384 aad[2] = fc_pos[0] & ~(BIT(4) | BIT(5) | BIT(6));
385 /* Retry, PwrMgt, MoreData; set Protected */
386 aad[3] = (fc_pos[1] & ~(BIT(3) | BIT(4) | BIT(5))) | BIT(6);
387 memcpy(&aad[4], &hdr->addr1, 18);
389 /* Mask Seq#, leave Frag# */
390 aad[22] = *((u8 *) &hdr->seq_ctrl) & 0x0f;
393 memcpy(&aad[24], hdr->addr4, 6);
397 memset(&aad[24], 0, 8);
399 u8 *dpos = &aad[a4_included ? 30 : 24];
401 /* Mask QoS Control field */
408 static inline void ccmp_pn2hdr(u8 *hdr, u8 *pn, int key_id)
413 hdr[3] = 0x20 | (key_id << 6);
421 static inline int ccmp_hdr2pn(u8 *pn, u8 *hdr)
429 return (hdr[3] >> 6) & 0x03;
433 static int ccmp_encrypt_skb(struct ieee80211_txrx_data *tx,
434 struct sk_buff *skb, int test)
436 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
437 struct ieee80211_key *key = tx->key;
438 int hdrlen, len, tailneed;
440 u8 *pos, *pn, *b_0, *aad, *scratch;
443 scratch = key->u.ccmp.tx_crypto_buf;
444 b_0 = scratch + 3 * AES_BLOCK_LEN;
445 aad = scratch + 4 * AES_BLOCK_LEN;
447 fc = le16_to_cpu(hdr->frame_control);
448 hdrlen = ieee80211_get_hdrlen(fc);
449 len = skb->len - hdrlen;
451 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
454 tailneed = CCMP_MIC_LEN;
456 if ((skb_headroom(skb) < CCMP_HDR_LEN ||
457 skb_tailroom(skb) < tailneed)) {
458 I802_DEBUG_INC(tx->local->tx_expand_skb_head);
459 if (unlikely(pskb_expand_head(skb, CCMP_HDR_LEN, tailneed,
464 pos = skb_push(skb, CCMP_HDR_LEN);
465 memmove(pos, pos + CCMP_HDR_LEN, hdrlen);
466 hdr = (struct ieee80211_hdr *) pos;
470 pn = key->u.ccmp.tx_pn;
472 for (i = CCMP_PN_LEN - 1; i >= 0; i--) {
478 ccmp_pn2hdr(pos, pn, key->conf.keyidx);
480 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) {
481 /* hwaccel - with preallocated room for CCMP header */
482 tx->u.tx.control->key_idx = key->conf.hw_key_idx;
487 ccmp_special_blocks(skb, pn, b_0, aad, 0);
488 ieee80211_aes_ccm_encrypt(key->u.ccmp.tfm, scratch, b_0, aad, pos, len,
489 pos, skb_put(skb, CCMP_MIC_LEN));
495 ieee80211_txrx_result
496 ieee80211_tx_h_ccmp_encrypt(struct ieee80211_txrx_data *tx)
498 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
499 struct ieee80211_key *key = tx->key;
501 struct sk_buff *skb = tx->skb;
504 fc = le16_to_cpu(hdr->frame_control);
506 if (!key || key->conf.alg != ALG_CCMP || !WLAN_FC_DATA_PRESENT(fc))
507 return TXRX_CONTINUE;
509 tx->u.tx.control->icv_len = CCMP_MIC_LEN;
510 tx->u.tx.control->iv_len = CCMP_HDR_LEN;
511 ieee80211_tx_set_iswep(tx);
513 if ((tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) &&
514 !(tx->key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV)) {
515 /* hwaccel - with no need for preallocated room for CCMP "
516 * header or MIC fields */
517 tx->u.tx.control->key_idx = tx->key->conf.hw_key_idx;
518 return TXRX_CONTINUE;
521 if (ccmp_encrypt_skb(tx, skb, test) < 0)
524 if (tx->u.tx.extra_frag) {
526 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
527 if (ccmp_encrypt_skb(tx, tx->u.tx.extra_frag[i], test)
533 return TXRX_CONTINUE;
537 ieee80211_txrx_result
538 ieee80211_rx_h_ccmp_decrypt(struct ieee80211_txrx_data *rx)
540 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) rx->skb->data;
543 struct ieee80211_key *key = rx->key;
544 struct sk_buff *skb = rx->skb;
547 DECLARE_MAC_BUF(mac);
549 fc = le16_to_cpu(hdr->frame_control);
550 hdrlen = ieee80211_get_hdrlen(fc);
552 if (!key || key->conf.alg != ALG_CCMP ||
553 !(rx->fc & IEEE80211_FCTL_PROTECTED) ||
554 (rx->fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA)
555 return TXRX_CONTINUE;
557 data_len = skb->len - hdrlen - CCMP_HDR_LEN - CCMP_MIC_LEN;
558 if (!rx->sta || data_len < 0)
561 if ((rx->u.rx.status->flag & RX_FLAG_DECRYPTED) &&
562 (rx->u.rx.status->flag & RX_FLAG_IV_STRIPPED))
563 return TXRX_CONTINUE;
565 (void) ccmp_hdr2pn(pn, skb->data + hdrlen);
567 if (memcmp(pn, key->u.ccmp.rx_pn[rx->u.rx.queue], CCMP_PN_LEN) <= 0) {
568 #ifdef CONFIG_MAC80211_DEBUG
569 u8 *ppn = key->u.ccmp.rx_pn[rx->u.rx.queue];
571 printk(KERN_DEBUG "%s: CCMP replay detected for RX frame from "
572 "%s (RX PN %02x%02x%02x%02x%02x%02x <= prev. PN "
573 "%02x%02x%02x%02x%02x%02x)\n", rx->dev->name,
574 print_mac(mac, rx->sta->addr),
575 pn[0], pn[1], pn[2], pn[3], pn[4], pn[5],
576 ppn[0], ppn[1], ppn[2], ppn[3], ppn[4], ppn[5]);
577 #endif /* CONFIG_MAC80211_DEBUG */
578 key->u.ccmp.replays++;
582 if (!(rx->u.rx.status->flag & RX_FLAG_DECRYPTED)) {
583 /* hardware didn't decrypt/verify MIC */
584 u8 *scratch, *b_0, *aad;
586 scratch = key->u.ccmp.rx_crypto_buf;
587 b_0 = scratch + 3 * AES_BLOCK_LEN;
588 aad = scratch + 4 * AES_BLOCK_LEN;
590 ccmp_special_blocks(skb, pn, b_0, aad, 1);
592 if (ieee80211_aes_ccm_decrypt(
593 key->u.ccmp.tfm, scratch, b_0, aad,
594 skb->data + hdrlen + CCMP_HDR_LEN, data_len,
595 skb->data + skb->len - CCMP_MIC_LEN,
596 skb->data + hdrlen + CCMP_HDR_LEN)) {
597 printk(KERN_DEBUG "%s: CCMP decrypt failed for RX "
598 "frame from %s\n", rx->dev->name,
599 print_mac(mac, rx->sta->addr));
604 memcpy(key->u.ccmp.rx_pn[rx->u.rx.queue], pn, CCMP_PN_LEN);
606 /* Remove CCMP header and MIC */
607 skb_trim(skb, skb->len - CCMP_MIC_LEN);
608 memmove(skb->data + CCMP_HDR_LEN, skb->data, hdrlen);
609 skb_pull(skb, CCMP_HDR_LEN);
611 return TXRX_CONTINUE;