[MAC80211]: embed key conf in key, fix driver interface
[safe/jmp/linux-2.6] / net / mac80211 / wpa.c
1 /*
2  * Copyright 2002-2004, Instant802 Networks, Inc.
3  *
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.
7  */
8
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>
15
16 #include "ieee80211_i.h"
17 #include "michael.h"
18 #include "tkip.h"
19 #include "aes_ccm.h"
20 #include "wpa.h"
21
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)
24 {
25         struct ieee80211_hdr *hdr;
26         size_t hdrlen;
27         u16 fc;
28         int a4_included;
29         u8 *pos;
30
31         hdr = (struct ieee80211_hdr *) skb->data;
32         fc = le16_to_cpu(hdr->frame_control);
33
34         hdrlen = 24;
35         if ((fc & (IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS)) ==
36             (IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS)) {
37                 hdrlen += ETH_ALEN;
38                 *sa = hdr->addr4;
39                 *da = hdr->addr3;
40         } else if (fc & IEEE80211_FCTL_FROMDS) {
41                 *sa = hdr->addr3;
42                 *da = hdr->addr1;
43         } else if (fc & IEEE80211_FCTL_TODS) {
44                 *sa = hdr->addr2;
45                 *da = hdr->addr3;
46         } else {
47                 *sa = hdr->addr2;
48                 *da = hdr->addr1;
49         }
50
51         if (fc & 0x80)
52                 hdrlen += 2;
53
54         *data = skb->data + hdrlen;
55         *data_len = skb->len - hdrlen;
56
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;
62                 if (a4_included)
63                         pos += 6;
64                 *qos_tid = pos[0] & 0x0f;
65                 *qos_tid |= 0x80; /* qos_included flag */
66         } else
67                 *qos_tid = 0;
68
69         return skb->len < hdrlen ? -1 : 0;
70 }
71
72
73 ieee80211_txrx_result
74 ieee80211_tx_h_michael_mic_add(struct ieee80211_txrx_data *tx)
75 {
76         u8 *data, *sa, *da, *key, *mic, qos_tid;
77         size_t data_len;
78         u16 fc;
79         struct sk_buff *skb = tx->skb;
80         int authenticator;
81         int wpa_test = 0;
82
83         fc = tx->fc;
84
85         if (!tx->key || tx->key->conf.alg != ALG_TKIP || skb->len < 24 ||
86             !WLAN_FC_DATA_PRESENT(fc))
87                 return TXRX_CONTINUE;
88
89         if (ieee80211_get_hdr_info(skb, &sa, &da, &qos_tid, &data, &data_len))
90                 return TXRX_DROP;
91
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) &&
95             !wpa_test) {
96                 /* hwaccel - with no need for preallocated room for Michael MIC
97                  */
98                 return TXRX_CONTINUE;
99         }
100
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,
105                                               GFP_ATOMIC))) {
106                         printk(KERN_DEBUG "%s: failed to allocate more memory "
107                                "for Michael MIC\n", tx->dev->name);
108                         return TXRX_DROP;
109                 }
110         }
111
112 #if 0
113         authenticator = fc & IEEE80211_FCTL_FROMDS; /* FIX */
114 #else
115         authenticator = 1;
116 #endif
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);
121
122         return TXRX_CONTINUE;
123 }
124
125
126 ieee80211_txrx_result
127 ieee80211_rx_h_michael_mic_verify(struct ieee80211_txrx_data *rx)
128 {
129         u8 *data, *sa, *da, *key = NULL, qos_tid;
130         size_t data_len;
131         u16 fc;
132         u8 mic[MICHAEL_MIC_LEN];
133         struct sk_buff *skb = rx->skb;
134         int authenticator = 1, wpa_test = 0;
135
136         fc = rx->fc;
137
138         /*
139          * No way to verify the MIC if the hardware stripped it
140          */
141         if (rx->local->hw.flags & IEEE80211_HW_DEVICE_STRIPS_MIC)
142                 return TXRX_CONTINUE;
143
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;
147
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)
152                                 return TXRX_DROP;
153                 }
154                 /* Need to verify Michael MIC sometimes in software even when
155                  * hwaccel is used. Atheros ar5212: fragmented frames and QoS
156                  * frames. */
157                 if (!(rx->flags & IEEE80211_TXRXD_FRAGMENTED) && !wpa_test)
158                         goto remove_mic;
159         }
160
161         if (ieee80211_get_hdr_info(skb, &sa, &da, &qos_tid, &data, &data_len)
162             || data_len < MICHAEL_MIC_LEN)
163                 return TXRX_DROP;
164
165         data_len -= MICHAEL_MIC_LEN;
166
167 #if 0
168         authenticator = fc & IEEE80211_FCTL_TODS; /* FIX */
169 #else
170         authenticator = 1;
171 #endif
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))
177                         return TXRX_DROP;
178
179                 printk(KERN_DEBUG "%s: invalid Michael MIC in data frame from "
180                        MAC_FMT "\n", rx->dev->name, MAC_ARG(sa));
181
182                 mac80211_ev_michael_mic_failure(rx->dev, rx->key->conf.keyidx,
183                                                 (void *) skb->data);
184                 return TXRX_DROP;
185         }
186
187  remove_mic:
188         /* remove Michael MIC from payload */
189         skb_trim(skb, skb->len - MICHAEL_MIC_LEN);
190
191         return TXRX_CONTINUE;
192 }
193
194
195 static int tkip_encrypt_skb(struct ieee80211_txrx_data *tx,
196                             struct sk_buff *skb, int test)
197 {
198         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
199         struct ieee80211_key *key = tx->key;
200         int hdrlen, len, tailneed;
201         u16 fc;
202         u8 *pos;
203
204         fc = le16_to_cpu(hdr->frame_control);
205         hdrlen = ieee80211_get_hdrlen(fc);
206         len = skb->len - hdrlen;
207
208         if (tx->key->conf.flags & IEEE80211_KEY_FORCE_SW_ENCRYPT)
209                 tailneed = TKIP_ICV_LEN;
210         else
211                 tailneed = 0;
212
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,
217                                               GFP_ATOMIC)))
218                         return -1;
219         }
220
221         pos = skb_push(skb, TKIP_IV_LEN);
222         memmove(pos, pos + TKIP_IV_LEN, hdrlen);
223         pos += hdrlen;
224
225         /* Increase IV for the frame */
226         key->u.tkip.iv16++;
227         if (key->u.tkip.iv16 == 0)
228                 key->u.tkip.iv32++;
229
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;
233
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) &
238                                             0x7f),
239                                       (u8) key->u.tkip.iv16);
240
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;
252                         } else
253                                 tx->u.tx.control->flags &=
254                                             ~IEEE80211_TXCTL_TKIP_NEW_PHASE1_KEY;
255                 }
256
257                 tx->u.tx.control->key_idx = tx->key->conf.hw_key_idx;
258                 return 0;
259         }
260
261         /* Add room for ICV */
262         skb_put(skb, TKIP_ICV_LEN);
263
264         hdr = (struct ieee80211_hdr *) skb->data;
265         ieee80211_tkip_encrypt_data(tx->local->wep_tx_tfm,
266                                     key, pos, len, hdr->addr2);
267         return 0;
268 }
269
270
271 ieee80211_txrx_result
272 ieee80211_tx_h_tkip_encrypt(struct ieee80211_txrx_data *tx)
273 {
274         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
275         u16 fc;
276         struct ieee80211_key *key = tx->key;
277         struct sk_buff *skb = tx->skb;
278         int wpa_test = 0, test = 0;
279
280         fc = le16_to_cpu(hdr->frame_control);
281
282         if (!key || key->conf.alg != ALG_TKIP || !WLAN_FC_DATA_PRESENT(fc))
283                 return TXRX_CONTINUE;
284
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);
288
289         if (!(tx->key->conf.flags & IEEE80211_KEY_FORCE_SW_ENCRYPT) &&
290             !(tx->local->hw.flags & IEEE80211_HW_WEP_INCLUDE_IV) &&
291             !wpa_test) {
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;
295         }
296
297         if (tkip_encrypt_skb(tx, skb, test) < 0)
298                 return TXRX_DROP;
299
300         if (tx->u.tx.extra_frag) {
301                 int i;
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)
304                             < 0)
305                                 return TXRX_DROP;
306                 }
307         }
308
309         return TXRX_CONTINUE;
310 }
311
312
313 ieee80211_txrx_result
314 ieee80211_rx_h_tkip_decrypt(struct ieee80211_txrx_data *rx)
315 {
316         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) rx->skb->data;
317         u16 fc;
318         int hdrlen, res, hwaccel = 0, wpa_test = 0;
319         struct ieee80211_key *key = rx->key;
320         struct sk_buff *skb = rx->skb;
321
322         fc = le16_to_cpu(hdr->frame_control);
323         hdrlen = ieee80211_get_hdrlen(fc);
324
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;
329
330         if (!rx->sta || skb->len - hdrlen < 12)
331                 return TXRX_DROP;
332
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;
339                 }
340
341                 /* let TKIP code verify IV, but skip decryption */
342                 hwaccel = 1;
343         }
344
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);
353                 return TXRX_DROP;
354         }
355
356         /* Trim ICV */
357         skb_trim(skb, skb->len - TKIP_ICV_LEN);
358
359         /* Remove IV */
360         memmove(skb->data + TKIP_IV_LEN, skb->data, hdrlen);
361         skb_pull(skb, TKIP_IV_LEN);
362
363         return TXRX_CONTINUE;
364 }
365
366
367 static void ccmp_special_blocks(struct sk_buff *skb, u8 *pn, u8 *b_0, u8 *aad,
368                                 int encrypted)
369 {
370         u16 fc;
371         int a4_included, qos_included;
372         u8 qos_tid, *fc_pos, *data, *sa, *da;
373         int len_a;
374         size_t data_len;
375         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
376
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);
381
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) {
385                 qos_included = 1;
386                 qos_tid &= 0x0f;
387         } else
388                 qos_included = 0;
389         /* First block, b_0 */
390
391         b_0[0] = 0x59; /* flags: Adata: 1, M: 011, L: 001 */
392         /* Nonce: QoS Priority | A2 | PN */
393         b_0[1] = qos_tid;
394         memcpy(&b_0[2], hdr->addr2, 6);
395         memcpy(&b_0[8], pn, CCMP_PN_LEN);
396         /* l(m) */
397         b_0[14] = (data_len >> 8) & 0xff;
398         b_0[15] = data_len & 0xff;
399
400
401         /* AAD (extra authenticate-only data) / masked 802.11 header
402          * FC | A1 | A2 | A3 | SC | [A4] | [QC] */
403
404         len_a = a4_included ? 28 : 22;
405         if (qos_included)
406                 len_a += 2;
407
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);
415
416         /* Mask Seq#, leave Frag# */
417         aad[22] = *((u8 *) &hdr->seq_ctrl) & 0x0f;
418         aad[23] = 0;
419         if (a4_included) {
420                 memcpy(&aad[24], hdr->addr4, 6);
421                 aad[30] = 0;
422                 aad[31] = 0;
423         } else
424                 memset(&aad[24], 0, 8);
425         if (qos_included) {
426                 u8 *dpos = &aad[a4_included ? 30 : 24];
427
428                 /* Mask QoS Control field */
429                 dpos[0] = qos_tid;
430                 dpos[1] = 0;
431         }
432 }
433
434
435 static inline void ccmp_pn2hdr(u8 *hdr, u8 *pn, int key_id)
436 {
437         hdr[0] = pn[5];
438         hdr[1] = pn[4];
439         hdr[2] = 0;
440         hdr[3] = 0x20 | (key_id << 6);
441         hdr[4] = pn[3];
442         hdr[5] = pn[2];
443         hdr[6] = pn[1];
444         hdr[7] = pn[0];
445 }
446
447
448 static inline int ccmp_hdr2pn(u8 *pn, u8 *hdr)
449 {
450         pn[0] = hdr[7];
451         pn[1] = hdr[6];
452         pn[2] = hdr[5];
453         pn[3] = hdr[4];
454         pn[4] = hdr[1];
455         pn[5] = hdr[0];
456         return (hdr[3] >> 6) & 0x03;
457 }
458
459
460 static int ccmp_encrypt_skb(struct ieee80211_txrx_data *tx,
461                             struct sk_buff *skb, int test)
462 {
463         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
464         struct ieee80211_key *key = tx->key;
465         int hdrlen, len, tailneed;
466         u16 fc;
467         u8 *pos, *pn, *b_0, *aad, *scratch;
468         int i;
469
470         scratch = key->u.ccmp.tx_crypto_buf;
471         b_0 = scratch + 3 * AES_BLOCK_LEN;
472         aad = scratch + 4 * AES_BLOCK_LEN;
473
474         fc = le16_to_cpu(hdr->frame_control);
475         hdrlen = ieee80211_get_hdrlen(fc);
476         len = skb->len - hdrlen;
477
478         if (key->conf.flags & IEEE80211_KEY_FORCE_SW_ENCRYPT)
479                 tailneed = CCMP_MIC_LEN;
480         else
481                 tailneed = 0;
482
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,
487                                               GFP_ATOMIC)))
488                         return -1;
489         }
490
491         pos = skb_push(skb, CCMP_HDR_LEN);
492         memmove(pos, pos + CCMP_HDR_LEN, hdrlen);
493         hdr = (struct ieee80211_hdr *) pos;
494         pos += hdrlen;
495
496         /* PN = PN + 1 */
497         pn = key->u.ccmp.tx_pn;
498
499         for (i = CCMP_PN_LEN - 1; i >= 0; i--) {
500                 pn[i]++;
501                 if (pn[i])
502                         break;
503         }
504
505         ccmp_pn2hdr(pos, pn, key->conf.keyidx);
506
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;
510                 return 0;
511         }
512
513         pos += CCMP_HDR_LEN;
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));
517
518         return 0;
519 }
520
521
522 ieee80211_txrx_result
523 ieee80211_tx_h_ccmp_encrypt(struct ieee80211_txrx_data *tx)
524 {
525         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
526         struct ieee80211_key *key = tx->key;
527         u16 fc;
528         struct sk_buff *skb = tx->skb;
529         int test = 0;
530
531         fc = le16_to_cpu(hdr->frame_control);
532
533         if (!key || key->conf.alg != ALG_CCMP || !WLAN_FC_DATA_PRESENT(fc))
534                 return TXRX_CONTINUE;
535
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);
539
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;
546         }
547
548         if (ccmp_encrypt_skb(tx, skb, test) < 0)
549                 return TXRX_DROP;
550
551         if (tx->u.tx.extra_frag) {
552                 int i;
553
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)
556                             < 0)
557                                 return TXRX_DROP;
558                 }
559         }
560
561         return TXRX_CONTINUE;
562 }
563
564
565 ieee80211_txrx_result
566 ieee80211_rx_h_ccmp_decrypt(struct ieee80211_txrx_data *rx)
567 {
568         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) rx->skb->data;
569         u16 fc;
570         int hdrlen;
571         struct ieee80211_key *key = rx->key;
572         struct sk_buff *skb = rx->skb;
573         u8 pn[CCMP_PN_LEN];
574         int data_len;
575
576         fc = le16_to_cpu(hdr->frame_control);
577         hdrlen = ieee80211_get_hdrlen(fc);
578
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;
583
584         data_len = skb->len - hdrlen - CCMP_HDR_LEN - CCMP_MIC_LEN;
585         if (!rx->sta || data_len < 0)
586                 return TXRX_DROP;
587
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;
592
593         (void) ccmp_hdr2pn(pn, skb->data + hdrlen);
594
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++;
606                 return TXRX_DROP;
607         }
608
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 */
612         } else {
613                 u8 *scratch, *b_0, *aad;
614
615                 scratch = key->u.ccmp.rx_crypto_buf;
616                 b_0 = scratch + 3 * AES_BLOCK_LEN;
617                 aad = scratch + 4 * AES_BLOCK_LEN;
618
619                 ccmp_special_blocks(skb, pn, b_0, aad, 1);
620
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));
629                         return TXRX_DROP;
630                 }
631         }
632
633         memcpy(key->u.ccmp.rx_pn[rx->u.rx.queue], pn, CCMP_PN_LEN);
634
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);
639
640         return TXRX_CONTINUE;
641 }
642