0b32ab64ebdf2f5df7d0db5e31505d2e4389e41d
[openwrt.git] / package / mac80211 / src / 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->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) &&
93             !(tx->flags & IEEE80211_TXRXD_FRAGMENTED) &&
94             !(tx->key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_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->u.rx.status->flag & RX_FLAG_MMIC_STRIPPED)
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 (ieee80211_get_hdr_info(skb, &sa, &da, &qos_tid, &data, &data_len)
149             || data_len < MICHAEL_MIC_LEN)
150                 return TXRX_DROP;
151
152         data_len -= MICHAEL_MIC_LEN;
153
154 #if 0
155         authenticator = fc & IEEE80211_FCTL_TODS; /* FIX */
156 #else
157         authenticator = 1;
158 #endif
159         key = &rx->key->conf.key[authenticator ? ALG_TKIP_TEMP_AUTH_RX_MIC_KEY :
160                                  ALG_TKIP_TEMP_AUTH_TX_MIC_KEY];
161         michael_mic(key, da, sa, qos_tid & 0x0f, data, data_len, mic);
162         if (memcmp(mic, data + data_len, MICHAEL_MIC_LEN) != 0 || wpa_test) {
163                 if (!(rx->flags & IEEE80211_TXRXD_RXRA_MATCH))
164                         return TXRX_DROP;
165
166                 printk(KERN_DEBUG "%s: invalid Michael MIC in data frame from "
167                        MAC_FMT "\n", rx->dev->name, MAC_ARG(sa));
168
169                 mac80211_ev_michael_mic_failure(rx->dev, rx->key->conf.keyidx,
170                                                 (void *) skb->data);
171                 return TXRX_DROP;
172         }
173
174         /* remove Michael MIC from payload */
175         skb_trim(skb, skb->len - MICHAEL_MIC_LEN);
176
177         /* update IV in key information to be able to detect replays */
178         rx->key->u.tkip.iv32_rx[rx->u.rx.queue] = rx->u.rx.tkip_iv32;
179         rx->key->u.tkip.iv16_rx[rx->u.rx.queue] = rx->u.rx.tkip_iv16;
180
181         return TXRX_CONTINUE;
182 }
183
184
185 static int tkip_encrypt_skb(struct ieee80211_txrx_data *tx,
186                             struct sk_buff *skb, int test)
187 {
188         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
189         struct ieee80211_key *key = tx->key;
190         int hdrlen, len, tailneed;
191         u16 fc;
192         u8 *pos;
193
194         fc = le16_to_cpu(hdr->frame_control);
195         hdrlen = ieee80211_get_hdrlen(fc);
196         len = skb->len - hdrlen;
197
198         if (tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
199                 tailneed = 0;
200         else
201                 tailneed = TKIP_ICV_LEN;
202
203         if ((skb_headroom(skb) < TKIP_IV_LEN ||
204              skb_tailroom(skb) < tailneed)) {
205                 I802_DEBUG_INC(tx->local->tx_expand_skb_head);
206                 if (unlikely(pskb_expand_head(skb, TKIP_IV_LEN, tailneed,
207                                               GFP_ATOMIC)))
208                         return -1;
209         }
210
211         pos = skb_push(skb, TKIP_IV_LEN);
212         memmove(pos, pos + TKIP_IV_LEN, hdrlen);
213         pos += hdrlen;
214
215         /* Increase IV for the frame */
216         key->u.tkip.iv16++;
217         if (key->u.tkip.iv16 == 0)
218                 key->u.tkip.iv32++;
219
220         if (tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) {
221                 hdr = (struct ieee80211_hdr *)skb->data;
222
223                 /* hwaccel - with preallocated room for IV */
224                 ieee80211_tkip_add_iv(pos, key,
225                                       (u8) (key->u.tkip.iv16 >> 8),
226                                       (u8) (((key->u.tkip.iv16 >> 8) | 0x20) &
227                                             0x7f),
228                                       (u8) key->u.tkip.iv16);
229
230                 tx->u.tx.control->key_idx = tx->key->conf.hw_key_idx;
231                 return 0;
232         }
233
234         /* Add room for ICV */
235         skb_put(skb, TKIP_ICV_LEN);
236
237         hdr = (struct ieee80211_hdr *) skb->data;
238         ieee80211_tkip_encrypt_data(tx->local->wep_tx_tfm,
239                                     key, pos, len, hdr->addr2);
240         return 0;
241 }
242
243
244 ieee80211_txrx_result
245 ieee80211_crypto_tkip_encrypt(struct ieee80211_txrx_data *tx)
246 {
247         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
248         u16 fc;
249         struct sk_buff *skb = tx->skb;
250         int wpa_test = 0, test = 0;
251
252         fc = le16_to_cpu(hdr->frame_control);
253
254         if (!WLAN_FC_DATA_PRESENT(fc))
255                 return TXRX_CONTINUE;
256
257         tx->u.tx.control->icv_len = TKIP_ICV_LEN;
258         tx->u.tx.control->iv_len = TKIP_IV_LEN;
259         ieee80211_tx_set_iswep(tx);
260
261         if ((tx->key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) &&
262             !(tx->key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV) &&
263             !wpa_test) {
264                 /* hwaccel - with no need for preallocated room for IV/ICV */
265                 tx->u.tx.control->key_idx = tx->key->conf.hw_key_idx;
266                 return TXRX_CONTINUE;
267         }
268
269         if (tkip_encrypt_skb(tx, skb, test) < 0)
270                 return TXRX_DROP;
271
272         if (tx->u.tx.extra_frag) {
273                 int i;
274                 for (i = 0; i < tx->u.tx.num_extra_frag; i++) {
275                         if (tkip_encrypt_skb(tx, tx->u.tx.extra_frag[i], test)
276                             < 0)
277                                 return TXRX_DROP;
278                 }
279         }
280
281         return TXRX_CONTINUE;
282 }
283
284
285 ieee80211_txrx_result
286 ieee80211_crypto_tkip_decrypt(struct ieee80211_txrx_data *rx)
287 {
288         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) rx->skb->data;
289         u16 fc;
290         int hdrlen, res, hwaccel = 0, wpa_test = 0;
291         struct ieee80211_key *key = rx->key;
292         struct sk_buff *skb = rx->skb;
293
294         fc = le16_to_cpu(hdr->frame_control);
295         hdrlen = ieee80211_get_hdrlen(fc);
296
297         if ((rx->fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA)
298                 return TXRX_CONTINUE;
299
300         if (!rx->sta || skb->len - hdrlen < 12)
301                 return TXRX_DROP;
302
303         if (rx->u.rx.status->flag & RX_FLAG_DECRYPTED) {
304                 if (rx->u.rx.status->flag & RX_FLAG_IV_STRIPPED) {
305                         /*
306                          * Hardware took care of all processing, including
307                          * replay protection, and stripped the ICV/IV so
308                          * we cannot do any checks here.
309                          */
310                         return TXRX_CONTINUE;
311                 }
312
313                 /* let TKIP code verify IV, but skip decryption */
314                 hwaccel = 1;
315         }
316
317         res = ieee80211_tkip_decrypt_data(rx->local->wep_rx_tfm,
318                                           key, skb->data + hdrlen,
319                                           skb->len - hdrlen, rx->sta->addr,
320                                           hwaccel, rx->u.rx.queue,
321                                           &rx->u.rx.tkip_iv32,
322                                           &rx->u.rx.tkip_iv16);
323         if (res != TKIP_DECRYPT_OK || wpa_test) {
324                 printk(KERN_DEBUG "%s: TKIP decrypt failed for RX frame from "
325                        MAC_FMT " (res=%d)\n",
326                        rx->dev->name, MAC_ARG(rx->sta->addr), res);
327                 return TXRX_DROP;
328         }
329
330         /* Trim ICV */
331         skb_trim(skb, skb->len - TKIP_ICV_LEN);
332
333         /* Remove IV */
334         memmove(skb->data + TKIP_IV_LEN, skb->data, hdrlen);
335         skb_pull(skb, TKIP_IV_LEN);
336
337         return TXRX_CONTINUE;
338 }
339
340
341 static void ccmp_special_blocks(struct sk_buff *skb, u8 *pn, u8 *b_0, u8 *aad,
342                                 int encrypted)
343 {
344         u16 fc;
345         int a4_included, qos_included;
346         u8 qos_tid, *fc_pos, *data, *sa, *da;
347         int len_a;
348         size_t data_len;
349         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
350
351         fc_pos = (u8 *) &hdr->frame_control;
352         fc = fc_pos[0] ^ (fc_pos[1] << 8);
353         a4_included = (fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) ==
354                 (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS);
355
356         ieee80211_get_hdr_info(skb, &sa, &da, &qos_tid, &data, &data_len);
357         data_len -= CCMP_HDR_LEN + (encrypted ? CCMP_MIC_LEN : 0);
358         if (qos_tid & 0x80) {
359                 qos_included = 1;
360                 qos_tid &= 0x0f;
361         } else
362                 qos_included = 0;
363         /* First block, b_0 */
364
365         b_0[0] = 0x59; /* flags: Adata: 1, M: 011, L: 001 */
366         /* Nonce: QoS Priority | A2 | PN */
367         b_0[1] = qos_tid;
368         memcpy(&b_0[2], hdr->addr2, 6);
369         memcpy(&b_0[8], pn, CCMP_PN_LEN);
370         /* l(m) */
371         b_0[14] = (data_len >> 8) & 0xff;
372         b_0[15] = data_len & 0xff;
373
374
375         /* AAD (extra authenticate-only data) / masked 802.11 header
376          * FC | A1 | A2 | A3 | SC | [A4] | [QC] */
377
378         len_a = a4_included ? 28 : 22;
379         if (qos_included)
380                 len_a += 2;
381
382         aad[0] = 0; /* (len_a >> 8) & 0xff; */
383         aad[1] = len_a & 0xff;
384         /* Mask FC: zero subtype b4 b5 b6 */
385         aad[2] = fc_pos[0] & ~(BIT(4) | BIT(5) | BIT(6));
386         /* Retry, PwrMgt, MoreData; set Protected */
387         aad[3] = (fc_pos[1] & ~(BIT(3) | BIT(4) | BIT(5))) | BIT(6);
388         memcpy(&aad[4], &hdr->addr1, 18);
389
390         /* Mask Seq#, leave Frag# */
391         aad[22] = *((u8 *) &hdr->seq_ctrl) & 0x0f;
392         aad[23] = 0;
393         if (a4_included) {
394                 memcpy(&aad[24], hdr->addr4, 6);
395                 aad[30] = 0;
396                 aad[31] = 0;
397         } else
398                 memset(&aad[24], 0, 8);
399         if (qos_included) {
400                 u8 *dpos = &aad[a4_included ? 30 : 24];
401
402                 /* Mask QoS Control field */
403                 dpos[0] = qos_tid;
404                 dpos[1] = 0;
405         }
406 }
407
408
409 static inline void ccmp_pn2hdr(u8 *hdr, u8 *pn, int key_id)
410 {
411         hdr[0] = pn[5];
412         hdr[1] = pn[4];
413         hdr[2] = 0;
414         hdr[3] = 0x20 | (key_id << 6);
415         hdr[4] = pn[3];
416         hdr[5] = pn[2];
417         hdr[6] = pn[1];
418         hdr[7] = pn[0];
419 }
420
421
422 static inline int ccmp_hdr2pn(u8 *pn, u8 *hdr)
423 {
424         pn[0] = hdr[7];
425         pn[1] = hdr[6];
426         pn[2] = hdr[5];
427         pn[3] = hdr[4];
428         pn[4] = hdr[1];
429         pn[5] = hdr[0];
430         return (hdr[3] >> 6) & 0x03;
431 }
432
433
434 static int ccmp_encrypt_skb(struct ieee80211_txrx_data *tx,
435                             struct sk_buff *skb, int test)
436 {
437         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
438         struct ieee80211_key *key = tx->key;
439         int hdrlen, len, tailneed;
440         u16 fc;
441         u8 *pos, *pn, *b_0, *aad, *scratch;
442         int i;
443
444         scratch = key->u.ccmp.tx_crypto_buf;
445         b_0 = scratch + 3 * AES_BLOCK_LEN;
446         aad = scratch + 4 * AES_BLOCK_LEN;
447
448         fc = le16_to_cpu(hdr->frame_control);
449         hdrlen = ieee80211_get_hdrlen(fc);
450         len = skb->len - hdrlen;
451
452         if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
453                 tailneed = 0;
454         else
455                 tailneed = CCMP_MIC_LEN;
456
457         if ((skb_headroom(skb) < CCMP_HDR_LEN ||
458              skb_tailroom(skb) < tailneed)) {
459                 I802_DEBUG_INC(tx->local->tx_expand_skb_head);
460                 if (unlikely(pskb_expand_head(skb, CCMP_HDR_LEN, tailneed,
461                                               GFP_ATOMIC)))
462                         return -1;
463         }
464
465         pos = skb_push(skb, CCMP_HDR_LEN);
466         memmove(pos, pos + CCMP_HDR_LEN, hdrlen);
467         hdr = (struct ieee80211_hdr *) pos;
468         pos += hdrlen;
469
470         /* PN = PN + 1 */
471         pn = key->u.ccmp.tx_pn;
472
473         for (i = CCMP_PN_LEN - 1; i >= 0; i--) {
474                 pn[i]++;
475                 if (pn[i])
476                         break;
477         }
478
479         ccmp_pn2hdr(pos, pn, key->conf.keyidx);
480
481         if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) {
482                 /* hwaccel - with preallocated room for CCMP header */
483                 tx->u.tx.control->key_idx = key->conf.hw_key_idx;
484                 return 0;
485         }
486
487         pos += CCMP_HDR_LEN;
488         ccmp_special_blocks(skb, pn, b_0, aad, 0);
489         ieee80211_aes_ccm_encrypt(key->u.ccmp.tfm, scratch, b_0, aad, pos, len,
490                                   pos, skb_put(skb, CCMP_MIC_LEN));
491
492         return 0;
493 }
494
495
496 ieee80211_txrx_result
497 ieee80211_crypto_ccmp_encrypt(struct ieee80211_txrx_data *tx)
498 {
499         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) tx->skb->data;
500         u16 fc;
501         struct sk_buff *skb = tx->skb;
502         int test = 0;
503
504         fc = le16_to_cpu(hdr->frame_control);
505
506         if (!WLAN_FC_DATA_PRESENT(fc))
507                 return TXRX_CONTINUE;
508
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);
512
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;
519         }
520
521         if (ccmp_encrypt_skb(tx, skb, test) < 0)
522                 return TXRX_DROP;
523
524         if (tx->u.tx.extra_frag) {
525                 int i;
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)
528                             < 0)
529                                 return TXRX_DROP;
530                 }
531         }
532
533         return TXRX_CONTINUE;
534 }
535
536
537 ieee80211_txrx_result
538 ieee80211_crypto_ccmp_decrypt(struct ieee80211_txrx_data *rx)
539 {
540         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) rx->skb->data;
541         u16 fc;
542         int hdrlen;
543         struct ieee80211_key *key = rx->key;
544         struct sk_buff *skb = rx->skb;
545         u8 pn[CCMP_PN_LEN];
546         int data_len;
547
548         fc = le16_to_cpu(hdr->frame_control);
549         hdrlen = ieee80211_get_hdrlen(fc);
550
551         if ((rx->fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA)
552                 return TXRX_CONTINUE;
553
554         data_len = skb->len - hdrlen - CCMP_HDR_LEN - CCMP_MIC_LEN;
555         if (!rx->sta || data_len < 0)
556                 return TXRX_DROP;
557
558         if ((rx->u.rx.status->flag & RX_FLAG_DECRYPTED) &&
559             (rx->u.rx.status->flag & RX_FLAG_IV_STRIPPED))
560                 return TXRX_CONTINUE;
561
562         (void) ccmp_hdr2pn(pn, skb->data + hdrlen);
563
564         if (memcmp(pn, key->u.ccmp.rx_pn[rx->u.rx.queue], CCMP_PN_LEN) <= 0) {
565 #ifdef CONFIG_MAC80211_DEBUG
566                 u8 *ppn = key->u.ccmp.rx_pn[rx->u.rx.queue];
567                 printk(KERN_DEBUG "%s: CCMP replay detected for RX frame from "
568                        MAC_FMT " (RX PN %02x%02x%02x%02x%02x%02x <= prev. PN "
569                        "%02x%02x%02x%02x%02x%02x)\n", rx->dev->name,
570                        MAC_ARG(rx->sta->addr),
571                        pn[0], pn[1], pn[2], pn[3], pn[4], pn[5],
572                        ppn[0], ppn[1], ppn[2], ppn[3], ppn[4], ppn[5]);
573 #endif /* CONFIG_MAC80211_DEBUG */
574                 key->u.ccmp.replays++;
575                 return TXRX_DROP;
576         }
577
578         if (!(rx->u.rx.status->flag & RX_FLAG_DECRYPTED)) {
579                 /* hardware didn't decrypt/verify MIC */
580                 u8 *scratch, *b_0, *aad;
581
582                 scratch = key->u.ccmp.rx_crypto_buf;
583                 b_0 = scratch + 3 * AES_BLOCK_LEN;
584                 aad = scratch + 4 * AES_BLOCK_LEN;
585
586                 ccmp_special_blocks(skb, pn, b_0, aad, 1);
587
588                 if (ieee80211_aes_ccm_decrypt(
589                             key->u.ccmp.tfm, scratch, b_0, aad,
590                             skb->data + hdrlen + CCMP_HDR_LEN, data_len,
591                             skb->data + skb->len - CCMP_MIC_LEN,
592                             skb->data + hdrlen + CCMP_HDR_LEN)) {
593                         printk(KERN_DEBUG "%s: CCMP decrypt failed for RX "
594                                "frame from " MAC_FMT "\n", rx->dev->name,
595                                MAC_ARG(rx->sta->addr));
596                         return TXRX_DROP;
597                 }
598         }
599
600         memcpy(key->u.ccmp.rx_pn[rx->u.rx.queue], pn, CCMP_PN_LEN);
601
602         /* Remove CCMP header and MIC */
603         skb_trim(skb, skb->len - CCMP_MIC_LEN);
604         memmove(skb->data + CCMP_HDR_LEN, skb->data, hdrlen);
605         skb_pull(skb, CCMP_HDR_LEN);
606
607         return TXRX_CONTINUE;
608 }
609