Adapt 802.11 generic layer to support hardware crypto other than ath(4).
[dragonfly/vkernel-mp.git] / sys / netproto / 802_11 / wlan_ccmp / ieee80211_crypto_ccmp.c
blob15947052efdace529e08543526fb2394e03bc7ad
1 /*
2 * Copyright (c) 2002-2005 Sam Leffler, Errno Consulting
3 * All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. The name of the author may not be used to endorse or promote products
14 * derived from this software without specific prior written permission.
16 * Alternatively, this software may be distributed under the terms of the
17 * GNU General Public License ("GPL") version 2 as published by the Free
18 * Software Foundation.
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 * $FreeBSD: src/sys/net80211/ieee80211_crypto_ccmp.c,v 1.7.2.1 2005/12/22 19:02:08 sam Exp $
32 * $DragonFly: src/sys/netproto/802_11/wlan_ccmp/ieee80211_crypto_ccmp.c,v 1.5 2007/05/07 14:12:16 sephe Exp $
36 * IEEE 802.11i AES-CCMP crypto support.
38 * Part of this module is derived from similar code in the Host
39 * AP driver. The code is used with the consent of the author and
40 * it's license is included below.
42 #include <sys/param.h>
43 #include <sys/systm.h>
44 #include <sys/mbuf.h>
45 #include <sys/malloc.h>
46 #include <sys/kernel.h>
47 #include <sys/module.h>
49 #include <sys/socket.h>
51 #include <net/if.h>
52 #include <net/if_arp.h>
53 #include <net/if_media.h>
54 #include <net/ethernet.h>
56 #include <netproto/802_11/ieee80211_var.h>
58 #include <opencrypto/rijndael.h>
60 #define AES_BLOCK_LEN 16
62 struct ccmp_ctx {
63 struct ieee80211com *cc_ic; /* for diagnostics */
64 rijndael_ctx cc_aes;
67 static void *ccmp_attach(struct ieee80211com *, struct ieee80211_key *);
68 static void ccmp_detach(struct ieee80211_key *);
69 static int ccmp_setkey(struct ieee80211_key *);
70 static int ccmp_encap(struct ieee80211_key *k, struct mbuf *, uint8_t keyid);
71 static int ccmp_decap(struct ieee80211_key *, struct mbuf *, int);
72 static int ccmp_enmic(struct ieee80211_key *, struct mbuf *, int);
73 static int ccmp_demic(struct ieee80211_key *, struct mbuf *, int);
74 static int ccmp_getiv(struct ieee80211_key *, struct ieee80211_crypto_iv *,
75 uint8_t);
76 static int ccmp_update(struct ieee80211_key *,
77 const struct ieee80211_crypto_iv *,
78 const struct ieee80211_frame *);
80 static const struct ieee80211_cipher ccmp = {
81 .ic_name = "AES-CCM",
82 .ic_cipher = IEEE80211_CIPHER_AES_CCM,
83 .ic_header = IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN +
84 IEEE80211_WEP_EXTIVLEN,
85 .ic_trailer = IEEE80211_WEP_MICLEN,
86 .ic_miclen = 0,
87 .ic_attach = ccmp_attach,
88 .ic_detach = ccmp_detach,
89 .ic_setkey = ccmp_setkey,
90 .ic_encap = ccmp_encap,
91 .ic_decap = ccmp_decap,
92 .ic_enmic = ccmp_enmic,
93 .ic_demic = ccmp_demic,
94 .ic_getiv = ccmp_getiv,
95 .ic_update = ccmp_update
98 static int ccmp_encrypt(struct ieee80211_key *, struct mbuf *, int hdrlen);
99 static int ccmp_decrypt(struct ieee80211_key *, uint64_t pn,
100 struct mbuf *, int hdrlen);
102 /* number of references from net80211 layer */
103 static int nrefs = 0;
105 static void *
106 ccmp_attach(struct ieee80211com *ic, struct ieee80211_key *k)
108 struct ccmp_ctx *ctx;
110 ctx = kmalloc(sizeof(struct ccmp_ctx), M_DEVBUF, M_NOWAIT | M_ZERO);
111 if (ctx == NULL) {
112 ic->ic_stats.is_crypto_nomem++;
113 return NULL;
115 ctx->cc_ic = ic;
116 nrefs++; /* NB: we assume caller locking */
117 return ctx;
120 static void
121 ccmp_detach(struct ieee80211_key *k)
123 struct ccmp_ctx *ctx = k->wk_private;
125 kfree(ctx, M_DEVBUF);
126 KASSERT(nrefs > 0, ("imbalanced attach/detach"));
127 nrefs--; /* NB: we assume caller locking */
130 static int
131 ccmp_setkey(struct ieee80211_key *k)
133 struct ccmp_ctx *ctx = k->wk_private;
135 if (k->wk_keylen != (128/NBBY)) {
136 IEEE80211_DPRINTF(ctx->cc_ic, IEEE80211_MSG_CRYPTO,
137 "%s: Invalid key length %u, expecting %u\n",
138 __func__, k->wk_keylen, 128/NBBY);
139 return 0;
141 if (k->wk_flags & IEEE80211_KEY_SWCRYPT) {
142 rijndael_set_key(&ctx->cc_aes, k->wk_key, k->wk_keylen * NBBY,
145 return 1;
149 * Add privacy headers appropriate for the specified key.
151 static int
152 ccmp_encap(struct ieee80211_key *k, struct mbuf *m, uint8_t keyid)
154 struct ccmp_ctx *ctx = k->wk_private;
155 struct ieee80211com *ic = ctx->cc_ic;
156 uint8_t *ivp;
157 int hdrlen;
159 hdrlen = ieee80211_hdrspace(ic, mtod(m, void *));
162 * Copy down 802.11 header and add the IV, KeyID, and ExtIV.
164 M_PREPEND(m, ccmp.ic_header, MB_DONTWAIT);
165 if (m == NULL)
166 return 0;
167 ivp = mtod(m, uint8_t *);
168 ovbcopy(ivp + ccmp.ic_header, ivp, hdrlen);
169 ivp += hdrlen;
171 k->wk_keytsc++; /* XXX wrap at 48 bits */
172 ivp[0] = k->wk_keytsc >> 0; /* PN0 */
173 ivp[1] = k->wk_keytsc >> 8; /* PN1 */
174 ivp[2] = 0; /* Reserved */
175 ivp[3] = keyid | IEEE80211_WEP_EXTIV; /* KeyID | ExtID */
176 ivp[4] = k->wk_keytsc >> 16; /* PN2 */
177 ivp[5] = k->wk_keytsc >> 24; /* PN3 */
178 ivp[6] = k->wk_keytsc >> 32; /* PN4 */
179 ivp[7] = k->wk_keytsc >> 40; /* PN5 */
182 * Finally, do software encrypt if neeed.
184 if ((k->wk_flags & IEEE80211_KEY_SWCRYPT) &&
185 !ccmp_encrypt(k, m, hdrlen))
186 return 0;
188 return 1;
191 static int
192 ccmp_getiv(struct ieee80211_key *k, struct ieee80211_crypto_iv *iv,
193 uint8_t keyid)
195 uint8_t *ivp = (uint8_t *)iv;
197 k->wk_keytsc++; /* XXX wrap at 48 bits */
198 ivp[0] = k->wk_keytsc >> 0; /* PN0 */
199 ivp[1] = k->wk_keytsc >> 8; /* PN1 */
200 ivp[2] = 0; /* Reserved */
201 ivp[3] = keyid | IEEE80211_WEP_EXTIV; /* KeyID | ExtID */
202 ivp[4] = k->wk_keytsc >> 16; /* PN2 */
203 ivp[5] = k->wk_keytsc >> 24; /* PN3 */
204 ivp[6] = k->wk_keytsc >> 32; /* PN4 */
205 ivp[7] = k->wk_keytsc >> 40; /* PN5 */
207 return 1;
211 * Add MIC to the frame as needed.
213 static int
214 ccmp_enmic(struct ieee80211_key *k, struct mbuf *m, int force)
216 return 1;
219 static __inline uint64_t
220 READ_6(uint8_t b0, uint8_t b1, uint8_t b2, uint8_t b3, uint8_t b4, uint8_t b5)
222 uint32_t iv32 = (b0 << 0) | (b1 << 8) | (b2 << 16) | (b3 << 24);
223 uint16_t iv16 = (b4 << 0) | (b5 << 8);
224 return (((uint64_t)iv16) << 32) | iv32;
228 * Validate and strip privacy headers (and trailer) for a
229 * received frame. The specified key should be correct but
230 * is also verified.
232 static int
233 ccmp_decap(struct ieee80211_key *k, struct mbuf *m, int hdrlen)
235 struct ccmp_ctx *ctx = k->wk_private;
236 struct ieee80211_frame *wh;
237 uint8_t *ivp;
238 uint64_t pn;
241 * Header should have extended IV and sequence number;
242 * verify the former and validate the latter.
244 wh = mtod(m, struct ieee80211_frame *);
245 ivp = mtod(m, uint8_t *) + hdrlen;
246 if ((ivp[IEEE80211_WEP_IVLEN] & IEEE80211_WEP_EXTIV) == 0) {
248 * No extended IV; discard frame.
250 IEEE80211_DPRINTF(ctx->cc_ic, IEEE80211_MSG_CRYPTO,
251 "[%6D] Missing ExtIV for AES-CCM cipher\n",
252 wh->i_addr2, ":");
253 ctx->cc_ic->ic_stats.is_rx_ccmpformat++;
254 return 0;
256 pn = READ_6(ivp[0], ivp[1], ivp[4], ivp[5], ivp[6], ivp[7]);
257 if (pn <= k->wk_keyrsc) {
259 * Replay violation.
261 ieee80211_notify_replay_failure(ctx->cc_ic, wh, k, pn);
262 ctx->cc_ic->ic_stats.is_rx_ccmpreplay++;
263 return 0;
267 * Check if the device handled the decrypt in hardware.
268 * If so we just strip the header; otherwise we need to
269 * handle the decrypt in software. Note that for the
270 * latter we leave the header in place for use in the
271 * decryption work.
273 if ((k->wk_flags & IEEE80211_KEY_SWCRYPT) &&
274 !ccmp_decrypt(k, pn, m, hdrlen))
275 return 0;
278 * Copy up 802.11 header and strip crypto bits.
280 ovbcopy(mtod(m, void *), mtod(m, uint8_t *) + ccmp.ic_header, hdrlen);
281 m_adj(m, ccmp.ic_header);
282 m_adj(m, -ccmp.ic_trailer);
285 * Ok to update rsc now.
287 k->wk_keyrsc = pn;
289 return 1;
292 static int
293 ccmp_update(struct ieee80211_key *k, const struct ieee80211_crypto_iv *iv,
294 const struct ieee80211_frame *wh)
296 struct ccmp_ctx *ctx = k->wk_private;
297 const uint8_t *ivp = (const uint8_t *)iv;
298 uint64_t pn;
301 * Header should have extended IV and sequence number;
302 * verify the former and validate the latter.
304 if ((ivp[IEEE80211_WEP_IVLEN] & IEEE80211_WEP_EXTIV) == 0) {
306 * No extended IV; discard frame.
308 IEEE80211_DPRINTF(ctx->cc_ic, IEEE80211_MSG_CRYPTO,
309 "[%6D] Missing ExtIV for AES-CCM cipher\n",
310 wh->i_addr2, ":");
311 ctx->cc_ic->ic_stats.is_rx_ccmpformat++;
312 return 0;
314 pn = READ_6(ivp[0], ivp[1], ivp[4], ivp[5], ivp[6], ivp[7]);
315 if (pn <= k->wk_keyrsc) {
317 * Replay violation.
319 ieee80211_notify_replay_failure(ctx->cc_ic, wh, k, pn);
320 ctx->cc_ic->ic_stats.is_rx_ccmpreplay++;
321 return 0;
325 * Ok to update rsc now.
327 k->wk_keyrsc = pn;
328 return 1;
332 * Verify and strip MIC from the frame.
334 static int
335 ccmp_demic(struct ieee80211_key *k, struct mbuf *m, int force)
337 return 1;
340 static __inline void
341 xor_block(uint8_t *b, const uint8_t *a, size_t len)
343 int i;
344 for (i = 0; i < len; i++)
345 b[i] ^= a[i];
349 * Host AP crypt: host-based CCMP encryption implementation for Host AP driver
351 * Copyright (c) 2003-2004, Jouni Malinen <jkmaline@cc.hut.fi>
353 * This program is free software; you can redistribute it and/or modify
354 * it under the terms of the GNU General Public License version 2 as
355 * published by the Free Software Foundation. See README and COPYING for
356 * more details.
358 * Alternatively, this software may be distributed under the terms of BSD
359 * license.
362 static void
363 ccmp_init_blocks(rijndael_ctx *ctx, struct ieee80211_frame *wh,
364 uint64_t pn, size_t dlen,
365 uint8_t b0[AES_BLOCK_LEN], uint8_t aad[2 * AES_BLOCK_LEN],
366 uint8_t auth[AES_BLOCK_LEN], uint8_t s0[AES_BLOCK_LEN])
368 #define IS_4ADDRESS(wh) \
369 ((wh->i_fc[1] & IEEE80211_FC1_DIR_MASK) == IEEE80211_FC1_DIR_DSTODS)
370 #define IS_QOS_DATA(wh) IEEE80211_QOS_HAS_SEQ(wh)
372 /* CCM Initial Block:
373 * Flag (Include authentication header, M=3 (8-octet MIC),
374 * L=1 (2-octet Dlen))
375 * Nonce: 0x00 | A2 | PN
376 * Dlen */
377 b0[0] = 0x59;
378 /* NB: b0[1] set below */
379 IEEE80211_ADDR_COPY(b0 + 2, wh->i_addr2);
380 b0[8] = pn >> 40;
381 b0[9] = pn >> 32;
382 b0[10] = pn >> 24;
383 b0[11] = pn >> 16;
384 b0[12] = pn >> 8;
385 b0[13] = pn >> 0;
386 b0[14] = (dlen >> 8) & 0xff;
387 b0[15] = dlen & 0xff;
389 /* AAD:
390 * FC with bits 4..6 and 11..13 masked to zero; 14 is always one
391 * A1 | A2 | A3
392 * SC with bits 4..15 (seq#) masked to zero
393 * A4 (if present)
394 * QC (if present)
396 aad[0] = 0; /* AAD length >> 8 */
397 /* NB: aad[1] set below */
398 aad[2] = wh->i_fc[0] & 0x8f; /* XXX magic #s */
399 aad[3] = wh->i_fc[1] & 0xc7; /* XXX magic #s */
400 /* NB: we know 3 addresses are contiguous */
401 memcpy(aad + 4, wh->i_addr1, 3 * IEEE80211_ADDR_LEN);
402 aad[22] = wh->i_seq[0] & IEEE80211_SEQ_FRAG_MASK;
403 aad[23] = 0; /* all bits masked */
405 * Construct variable-length portion of AAD based
406 * on whether this is a 4-address frame/QOS frame.
407 * We always zero-pad to 32 bytes before running it
408 * through the cipher.
410 * We also fill in the priority bits of the CCM
411 * initial block as we know whether or not we have
412 * a QOS frame.
414 if (IS_4ADDRESS(wh)) {
415 IEEE80211_ADDR_COPY(aad + 24,
416 ((struct ieee80211_frame_addr4 *)wh)->i_addr4);
417 if (IS_QOS_DATA(wh)) {
418 struct ieee80211_qosframe_addr4 *qwh4 =
419 (struct ieee80211_qosframe_addr4 *) wh;
420 aad[30] = qwh4->i_qos[0] & 0x0f;/* just priority bits */
421 aad[31] = 0;
422 b0[1] = aad[30];
423 aad[1] = 22 + IEEE80211_ADDR_LEN + 2;
424 } else {
425 *(uint16_t *)&aad[30] = 0;
426 b0[1] = 0;
427 aad[1] = 22 + IEEE80211_ADDR_LEN;
429 } else {
430 if (IS_QOS_DATA(wh)) {
431 struct ieee80211_qosframe *qwh =
432 (struct ieee80211_qosframe*) wh;
433 aad[24] = qwh->i_qos[0] & 0x0f; /* just priority bits */
434 aad[25] = 0;
435 b0[1] = aad[24];
436 aad[1] = 22 + 2;
437 } else {
438 *(uint16_t *)&aad[24] = 0;
439 b0[1] = 0;
440 aad[1] = 22;
442 *(uint16_t *)&aad[26] = 0;
443 *(uint32_t *)&aad[28] = 0;
446 /* Start with the first block and AAD */
447 rijndael_encrypt(ctx, b0, auth);
448 xor_block(auth, aad, AES_BLOCK_LEN);
449 rijndael_encrypt(ctx, auth, auth);
450 xor_block(auth, &aad[AES_BLOCK_LEN], AES_BLOCK_LEN);
451 rijndael_encrypt(ctx, auth, auth);
452 b0[0] &= 0x07;
453 b0[14] = b0[15] = 0;
454 rijndael_encrypt(ctx, b0, s0);
455 #undef IS_QOS_DATA
456 #undef IS_4ADDRESS
459 #define CCMP_ENCRYPT(_i, _b, _b0, _pos, _e, _len) do { \
460 /* Authentication */ \
461 xor_block(_b, _pos, _len); \
462 rijndael_encrypt(&ctx->cc_aes, _b, _b); \
463 /* Encryption, with counter */ \
464 _b0[14] = (_i >> 8) & 0xff; \
465 _b0[15] = _i & 0xff; \
466 rijndael_encrypt(&ctx->cc_aes, _b0, _e); \
467 xor_block(_pos, _e, _len); \
468 } while (0)
470 static int
471 ccmp_encrypt(struct ieee80211_key *key, struct mbuf *m0, int hdrlen)
473 struct ccmp_ctx *ctx = key->wk_private;
474 struct ieee80211_frame *wh;
475 struct mbuf *m = m0;
476 int data_len, i, space;
477 uint8_t aad[2 * AES_BLOCK_LEN], b0[AES_BLOCK_LEN], b[AES_BLOCK_LEN],
478 e[AES_BLOCK_LEN], s0[AES_BLOCK_LEN];
479 uint8_t *pos;
481 ctx->cc_ic->ic_stats.is_crypto_ccmp++;
483 wh = mtod(m, struct ieee80211_frame *);
484 data_len = m->m_pkthdr.len - (hdrlen + ccmp.ic_header);
485 ccmp_init_blocks(&ctx->cc_aes, wh, key->wk_keytsc,
486 data_len, b0, aad, b, s0);
488 i = 1;
489 pos = mtod(m, uint8_t *) + hdrlen + ccmp.ic_header;
490 /* NB: assumes header is entirely in first mbuf */
491 space = m->m_len - (hdrlen + ccmp.ic_header);
492 for (;;) {
493 if (space > data_len)
494 space = data_len;
496 * Do full blocks.
498 while (space >= AES_BLOCK_LEN) {
499 CCMP_ENCRYPT(i, b, b0, pos, e, AES_BLOCK_LEN);
500 pos += AES_BLOCK_LEN, space -= AES_BLOCK_LEN;
501 data_len -= AES_BLOCK_LEN;
502 i++;
504 if (data_len <= 0) /* no more data */
505 break;
506 m = m->m_next;
507 if (m == NULL) { /* last buffer */
508 if (space != 0) {
510 * Short last block.
512 CCMP_ENCRYPT(i, b, b0, pos, e, space);
514 break;
516 if (space != 0) {
517 uint8_t *pos_next;
518 int space_next;
519 int len, dl, sp;
520 struct mbuf *n;
523 * Block straddles one or more mbufs, gather data
524 * into the block buffer b, apply the cipher, then
525 * scatter the results back into the mbuf chain.
526 * The buffer will automatically get space bytes
527 * of data at offset 0 copied in+out by the
528 * CCMP_ENCRYPT request so we must take care of
529 * the remaining data.
531 n = m;
532 dl = data_len;
533 sp = space;
534 for (;;) {
535 pos_next = mtod(n, uint8_t *);
536 len = min(dl, AES_BLOCK_LEN);
537 space_next = len > sp ? len - sp : 0;
538 if (n->m_len >= space_next) {
540 * This mbuf has enough data; just grab
541 * what we need and stop.
543 xor_block(b+sp, pos_next, space_next);
544 break;
547 * This mbuf's contents are insufficient,
548 * take 'em all and prepare to advance to
549 * the next mbuf.
551 xor_block(b+sp, pos_next, n->m_len);
552 sp += n->m_len, dl -= n->m_len;
553 n = n->m_next;
554 if (n == NULL)
555 break;
558 CCMP_ENCRYPT(i, b, b0, pos, e, space);
560 /* NB: just like above, but scatter data to mbufs */
561 dl = data_len;
562 sp = space;
563 for (;;) {
564 pos_next = mtod(m, uint8_t *);
565 len = min(dl, AES_BLOCK_LEN);
566 space_next = len > sp ? len - sp : 0;
567 if (m->m_len >= space_next) {
568 xor_block(pos_next, e+sp, space_next);
569 break;
571 xor_block(pos_next, e+sp, m->m_len);
572 sp += m->m_len, dl -= m->m_len;
573 m = m->m_next;
574 if (m == NULL)
575 goto done;
578 * Do bookkeeping. m now points to the last mbuf
579 * we grabbed data from. We know we consumed a
580 * full block of data as otherwise we'd have hit
581 * the end of the mbuf chain, so deduct from data_len.
582 * Otherwise advance the block number (i) and setup
583 * pos+space to reflect contents of the new mbuf.
585 data_len -= AES_BLOCK_LEN;
586 i++;
587 pos = pos_next + space_next;
588 space = m->m_len - space_next;
589 } else {
591 * Setup for next buffer.
593 pos = mtod(m, uint8_t *);
594 space = m->m_len;
597 done:
598 /* tack on MIC */
599 xor_block(b, s0, ccmp.ic_trailer);
600 return ieee80211_mbuf_append(m0, ccmp.ic_trailer, b);
602 #undef CCMP_ENCRYPT
604 #define CCMP_DECRYPT(_i, _b, _b0, _pos, _a, _len) do { \
605 /* Decrypt, with counter */ \
606 _b0[14] = (_i >> 8) & 0xff; \
607 _b0[15] = _i & 0xff; \
608 rijndael_encrypt(&ctx->cc_aes, _b0, _b); \
609 xor_block(_pos, _b, _len); \
610 /* Authentication */ \
611 xor_block(_a, _pos, _len); \
612 rijndael_encrypt(&ctx->cc_aes, _a, _a); \
613 } while (0)
615 static int
616 ccmp_decrypt(struct ieee80211_key *key, uint64_t pn, struct mbuf *m, int hdrlen)
618 struct ccmp_ctx *ctx = key->wk_private;
619 struct ieee80211_frame *wh;
620 uint8_t aad[2 * AES_BLOCK_LEN];
621 uint8_t b0[AES_BLOCK_LEN], b[AES_BLOCK_LEN], a[AES_BLOCK_LEN];
622 uint8_t mic[AES_BLOCK_LEN];
623 size_t data_len;
624 int i;
625 uint8_t *pos;
626 u_int space;
628 ctx->cc_ic->ic_stats.is_crypto_ccmp++;
630 wh = mtod(m, struct ieee80211_frame *);
631 data_len = m->m_pkthdr.len - (hdrlen + ccmp.ic_header + ccmp.ic_trailer);
632 ccmp_init_blocks(&ctx->cc_aes, wh, pn, data_len, b0, aad, a, b);
633 m_copydata(m, m->m_pkthdr.len - ccmp.ic_trailer, ccmp.ic_trailer, mic);
634 xor_block(mic, b, ccmp.ic_trailer);
636 i = 1;
637 pos = mtod(m, uint8_t *) + hdrlen + ccmp.ic_header;
638 space = m->m_len - (hdrlen + ccmp.ic_header);
639 for (;;) {
640 if (space > data_len)
641 space = data_len;
642 while (space >= AES_BLOCK_LEN) {
643 CCMP_DECRYPT(i, b, b0, pos, a, AES_BLOCK_LEN);
644 pos += AES_BLOCK_LEN, space -= AES_BLOCK_LEN;
645 data_len -= AES_BLOCK_LEN;
646 i++;
648 if (data_len <= 0) /* no more data */
649 break;
650 m = m->m_next;
651 if (m == NULL) { /* last buffer */
652 if (space != 0) /* short last block */
653 CCMP_DECRYPT(i, b, b0, pos, a, space);
654 break;
656 if (space != 0) {
657 uint8_t *pos_next;
658 u_int space_next;
659 u_int len;
662 * Block straddles buffers, split references. We
663 * do not handle splits that require >2 buffers
664 * since rx'd frames are never badly fragmented
665 * because drivers typically recv in clusters.
667 pos_next = mtod(m, uint8_t *);
668 len = min(data_len, AES_BLOCK_LEN);
669 space_next = len > space ? len - space : 0;
670 KASSERT(m->m_len >= space_next,
671 ("not enough data in following buffer, "
672 "m_len %u need %u\n", m->m_len, space_next));
674 xor_block(b+space, pos_next, space_next);
675 CCMP_DECRYPT(i, b, b0, pos, a, space);
676 xor_block(pos_next, b+space, space_next);
677 data_len -= len;
678 i++;
680 pos = pos_next + space_next;
681 space = m->m_len - space_next;
682 } else {
684 * Setup for next buffer.
686 pos = mtod(m, uint8_t *);
687 space = m->m_len;
690 if (memcmp(mic, a, ccmp.ic_trailer) != 0) {
691 IEEE80211_DPRINTF(ctx->cc_ic, IEEE80211_MSG_CRYPTO,
692 "[%6D] AES-CCM decrypt failed; MIC mismatch\n",
693 wh->i_addr2, ":");
694 ctx->cc_ic->ic_stats.is_rx_ccmpmic++;
695 return 0;
697 return 1;
699 #undef CCMP_DECRYPT
702 * Module glue.
704 static int
705 ccmp_modevent(module_t mod, int type, void *unused)
707 switch (type) {
708 case MOD_LOAD:
709 ieee80211_crypto_register(&ccmp);
710 return 0;
711 case MOD_UNLOAD:
712 if (nrefs) {
713 kprintf("wlan_ccmp: still in use (%u dynamic refs)\n",
714 nrefs);
715 return EBUSY;
717 ieee80211_crypto_unregister(&ccmp);
718 return 0;
720 return EINVAL;
723 static moduledata_t ccmp_mod = {
724 "wlan_ccmp",
725 ccmp_modevent,
728 DECLARE_MODULE(wlan_ccmp, ccmp_mod, SI_SUB_DRIVERS, SI_ORDER_FIRST);
729 MODULE_VERSION(wlan_ccmp, 1);
730 MODULE_DEPEND(wlan_ccmp, wlan, 1, 1, 1);