Home | History | Annotate | Line # | Download | only in net80211
ieee80211_crypto_ccmp.c revision 1.12
      1 /*-
      2  * Copyright (c) 2002-2005 Sam Leffler, Errno Consulting
      3  * All rights reserved.
      4  *
      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.
     15  *
     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.
     19  *
     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.
     30  */
     31 
     32 #include <sys/cdefs.h>
     33 #ifdef __FreeBSD__
     34 __FBSDID("$FreeBSD: src/sys/net80211/ieee80211_crypto_ccmp.c,v 1.7 2005/07/11 03:06:23 sam Exp $");
     35 #endif
     36 #ifdef __NetBSD__
     37 __KERNEL_RCSID(0, "$NetBSD: ieee80211_crypto_ccmp.c,v 1.12 2018/01/17 17:41:38 maxv Exp $");
     38 #endif
     39 
     40 /*
     41  * IEEE 802.11i AES-CCMP crypto support.
     42  *
     43  * Part of this module is derived from similar code in the Host
     44  * AP driver. The code is used with the consent of the author and
     45  * its license is included below.
     46  */
     47 #include <sys/param.h>
     48 #include <sys/systm.h>
     49 #include <sys/mbuf.h>
     50 #include <sys/malloc.h>
     51 #include <sys/kernel.h>
     52 
     53 #include <sys/socket.h>
     54 
     55 #include <net/if.h>
     56 #include <net/if_ether.h>
     57 #include <net/if_media.h>
     58 
     59 #include <net80211/ieee80211_var.h>
     60 
     61 #include <crypto/rijndael/rijndael.h>
     62 
     63 #define AES_BLOCK_LEN 16
     64 
     65 struct ccmp_ctx {
     66 	struct ieee80211com *cc_ic;	/* for diagnostics */
     67 	rijndael_ctx	     cc_aes;
     68 };
     69 
     70 static	void *ccmp_attach(struct ieee80211com *, struct ieee80211_key *);
     71 static	void ccmp_detach(struct ieee80211_key *);
     72 static	int ccmp_setkey(struct ieee80211_key *);
     73 static	int ccmp_encap(struct ieee80211_key *k, struct mbuf *, u_int8_t keyid);
     74 static	int ccmp_decap(struct ieee80211_key *, struct mbuf *, int);
     75 static	int ccmp_enmic(struct ieee80211_key *, struct mbuf *, int);
     76 static	int ccmp_demic(struct ieee80211_key *, struct mbuf *, int);
     77 
     78 const struct ieee80211_cipher ieee80211_cipher_ccmp = {
     79 	.ic_name	= "AES-CCM",
     80 	.ic_cipher	= IEEE80211_CIPHER_AES_CCM,
     81 	.ic_header	= IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN +
     82 			  IEEE80211_WEP_EXTIVLEN,
     83 	.ic_trailer	= IEEE80211_WEP_MICLEN,
     84 	.ic_miclen	= 0,
     85 	.ic_attach	= ccmp_attach,
     86 	.ic_detach	= ccmp_detach,
     87 	.ic_setkey	= ccmp_setkey,
     88 	.ic_encap	= ccmp_encap,
     89 	.ic_decap	= ccmp_decap,
     90 	.ic_enmic	= ccmp_enmic,
     91 	.ic_demic	= ccmp_demic,
     92 };
     93 
     94 #define	ccmp	ieee80211_cipher_ccmp
     95 
     96 static	int ccmp_encrypt(struct ieee80211_key *, struct mbuf *, int hdrlen);
     97 static	int ccmp_decrypt(struct ieee80211_key *, u_int64_t pn,
     98 		struct mbuf *, int hdrlen);
     99 
    100 static void *
    101 ccmp_attach(struct ieee80211com *ic, struct ieee80211_key *k)
    102 {
    103 	struct ccmp_ctx *ctx;
    104 
    105 	ctx = malloc(sizeof(struct ccmp_ctx),
    106 		M_DEVBUF, M_NOWAIT | M_ZERO);
    107 	if (ctx == NULL) {
    108 		ic->ic_stats.is_crypto_nomem++;
    109 		return NULL;
    110 	}
    111 	ctx->cc_ic = ic;
    112 	return ctx;
    113 }
    114 
    115 static void
    116 ccmp_detach(struct ieee80211_key *k)
    117 {
    118 	struct ccmp_ctx *ctx = k->wk_private;
    119 
    120 	free(ctx, M_DEVBUF);
    121 }
    122 
    123 static int
    124 ccmp_setkey(struct ieee80211_key *k)
    125 {
    126 	struct ccmp_ctx *ctx = k->wk_private;
    127 
    128 	if (k->wk_keylen != (128/NBBY)) {
    129 		IEEE80211_DPRINTF(ctx->cc_ic, IEEE80211_MSG_CRYPTO,
    130 			"%s: Invalid key length %u, expecting %u\n",
    131 			__func__, k->wk_keylen, 128/NBBY);
    132 		return 0;
    133 	}
    134 	if (k->wk_flags & IEEE80211_KEY_SWCRYPT)
    135 		rijndael_set_key(&ctx->cc_aes, k->wk_key, k->wk_keylen*NBBY);
    136 	return 1;
    137 }
    138 
    139 /*
    140  * Add privacy headers appropriate for the specified key.
    141  */
    142 static int
    143 ccmp_encap(struct ieee80211_key *k, struct mbuf *m, u_int8_t keyid)
    144 {
    145 	struct ccmp_ctx *ctx = k->wk_private;
    146 	struct ieee80211com *ic = ctx->cc_ic;
    147 	u_int8_t *ivp;
    148 	int hdrlen;
    149 
    150 	hdrlen = ieee80211_hdrspace(ic, mtod(m, void *));
    151 	ivp = mtod(m, u_int8_t *) + hdrlen;
    152 
    153 	k->wk_keytsc++;		/* XXX wrap at 48 bits */
    154 	ivp[0] = k->wk_keytsc >> 0;		/* PN0 */
    155 	ivp[1] = k->wk_keytsc >> 8;		/* PN1 */
    156 	ivp[2] = 0;				/* Reserved */
    157 	ivp[3] = keyid | IEEE80211_WEP_EXTIV;	/* KeyID | ExtID */
    158 	ivp[4] = k->wk_keytsc >> 16;		/* PN2 */
    159 	ivp[5] = k->wk_keytsc >> 24;		/* PN3 */
    160 	ivp[6] = k->wk_keytsc >> 32;		/* PN4 */
    161 	ivp[7] = k->wk_keytsc >> 40;		/* PN5 */
    162 
    163 	/*
    164 	 * Finally, do software encrypt if neeed.
    165 	 */
    166 	if ((k->wk_flags & IEEE80211_KEY_SWCRYPT) &&
    167 	    !ccmp_encrypt(k, m, hdrlen))
    168 		return 0;
    169 
    170 	return 1;
    171 }
    172 
    173 /*
    174  * Add MIC to the frame as needed.
    175  */
    176 static int
    177 ccmp_enmic(struct ieee80211_key *k, struct mbuf *m,
    178     int force)
    179 {
    180 
    181 	return 1;
    182 }
    183 
    184 static __inline uint64_t
    185 READ_6(uint8_t b0, uint8_t b1, uint8_t b2, uint8_t b3, uint8_t b4, uint8_t b5)
    186 {
    187 	uint32_t iv32 = (b0 << 0) | (b1 << 8) | (b2 << 16) | (b3 << 24);
    188 	uint16_t iv16 = (b4 << 0) | (b5 << 8);
    189 	return (((uint64_t)iv16) << 32) | iv32;
    190 }
    191 
    192 /*
    193  * Validate and strip privacy headers (and trailer) for a
    194  * received frame. The specified key should be correct but
    195  * is also verified.
    196  */
    197 static int
    198 ccmp_decap(struct ieee80211_key *k, struct mbuf *m, int hdrlen)
    199 {
    200 	struct ccmp_ctx *ctx = k->wk_private;
    201 	struct ieee80211_frame *wh;
    202 	uint8_t *ivp;
    203 	uint64_t pn;
    204 
    205 	/*
    206 	 * Header should have extended IV and sequence number;
    207 	 * verify the former and validate the latter.
    208 	 */
    209 	wh = mtod(m, struct ieee80211_frame *);
    210 	ivp = mtod(m, uint8_t *) + hdrlen;
    211 	if ((ivp[IEEE80211_WEP_IVLEN] & IEEE80211_WEP_EXTIV) == 0) {
    212 		/*
    213 		 * No extended IV; discard frame.
    214 		 */
    215 		IEEE80211_DPRINTF(ctx->cc_ic, IEEE80211_MSG_CRYPTO,
    216 			"[%s] Missing ExtIV for AES-CCM cipher\n",
    217 			ether_sprintf(wh->i_addr2));
    218 		ctx->cc_ic->ic_stats.is_rx_ccmpformat++;
    219 		return 0;
    220 	}
    221 	pn = READ_6(ivp[0], ivp[1], ivp[4], ivp[5], ivp[6], ivp[7]);
    222 	if (pn <= k->wk_keyrsc) {
    223 		/*
    224 		 * Replay violation.
    225 		 */
    226 		ieee80211_notify_replay_failure(ctx->cc_ic, wh, k, pn);
    227 		ctx->cc_ic->ic_stats.is_rx_ccmpreplay++;
    228 		return 0;
    229 	}
    230 
    231 	/*
    232 	 * Check if the device handled the decrypt in hardware.
    233 	 * If so we just strip the header; otherwise we need to
    234 	 * handle the decrypt in software.  Note that for the
    235 	 * latter we leave the header in place for use in the
    236 	 * decryption work.
    237 	 */
    238 	if ((k->wk_flags & IEEE80211_KEY_SWCRYPT) &&
    239 	    !ccmp_decrypt(k, pn, m, hdrlen))
    240 		return 0;
    241 
    242 	/*
    243 	 * Copy up 802.11 header and strip crypto bits.
    244 	 */
    245 	ovbcopy(mtod(m, void *), mtod(m, u_int8_t *) + ccmp.ic_header, hdrlen);
    246 	m_adj(m, ccmp.ic_header);
    247 	m_adj(m, -ccmp.ic_trailer);
    248 
    249 	/*
    250 	 * Ok to update rsc now.
    251 	 */
    252 	k->wk_keyrsc = pn;
    253 
    254 	return 1;
    255 }
    256 
    257 /*
    258  * Verify and strip MIC from the frame.
    259  */
    260 static int
    261 ccmp_demic(struct ieee80211_key *k, struct mbuf *m,
    262     int force)
    263 {
    264 	return 1;
    265 }
    266 
    267 static __inline void
    268 xor_block(uint8_t *b, const uint8_t *a, size_t len)
    269 {
    270 	int i;
    271 	for (i = 0; i < len; i++)
    272 		b[i] ^= a[i];
    273 }
    274 
    275 /*
    276  * Host AP crypt: host-based CCMP encryption implementation for Host AP driver
    277  *
    278  * Copyright (c) 2003-2004, Jouni Malinen <jkmaline (at) cc.hut.fi>
    279  *
    280  * This program is free software; you can redistribute it and/or modify
    281  * it under the terms of the GNU General Public License version 2 as
    282  * published by the Free Software Foundation. See README and COPYING for
    283  * more details.
    284  *
    285  * Alternatively, this software may be distributed under the terms of BSD
    286  * license.
    287  */
    288 
    289 static void
    290 ccmp_init_blocks(rijndael_ctx *ctx, struct ieee80211_frame *wh,
    291 	u_int64_t pn, size_t dlen,
    292 	uint8_t b0[AES_BLOCK_LEN], uint8_t aad[2 * AES_BLOCK_LEN],
    293 	uint8_t auth[AES_BLOCK_LEN], uint8_t s0[AES_BLOCK_LEN])
    294 {
    295 #define	IS_4ADDRESS(wh) \
    296 	((wh->i_fc[1] & IEEE80211_FC1_DIR_MASK) == IEEE80211_FC1_DIR_DSTODS)
    297 #define	IS_QOS_DATA(wh)	ieee80211_has_qos(wh)
    298 
    299 	/* CCM Initial Block:
    300 	 * Flag (Include authentication header, M=3 (8-octet MIC),
    301 	 *       L=1 (2-octet Dlen))
    302 	 * Nonce: 0x00 | A2 | PN
    303 	 * Dlen */
    304 	b0[0] = 0x59;
    305 	/* NB: b0[1] set below */
    306 	IEEE80211_ADDR_COPY(b0 + 2, wh->i_addr2);
    307 	b0[8] = pn >> 40;
    308 	b0[9] = pn >> 32;
    309 	b0[10] = pn >> 24;
    310 	b0[11] = pn >> 16;
    311 	b0[12] = pn >> 8;
    312 	b0[13] = pn >> 0;
    313 	b0[14] = (dlen >> 8) & 0xff;
    314 	b0[15] = dlen & 0xff;
    315 
    316 	/* AAD:
    317 	 * FC with bits 4..6 and 11..13 masked to zero; 14 is always one
    318 	 * A1 | A2 | A3
    319 	 * SC with bits 4..15 (seq#) masked to zero
    320 	 * A4 (if present)
    321 	 * QC (if present)
    322 	 */
    323 	aad[0] = 0;	/* AAD length >> 8 */
    324 	/* NB: aad[1] set below */
    325 	aad[2] = wh->i_fc[0] & 0x8f;	/* XXX magic #s */
    326 	aad[3] = wh->i_fc[1] & 0xc7;	/* XXX magic #s */
    327 	/* NB: we know 3 addresses are contiguous */
    328 	memcpy(aad + 4, wh->i_addr1, 3 * IEEE80211_ADDR_LEN);
    329 	aad[22] = wh->i_seq[0] & IEEE80211_SEQ_FRAG_MASK;
    330 	aad[23] = 0; /* all bits masked */
    331 	/*
    332 	 * Construct variable-length portion of AAD based
    333 	 * on whether this is a 4-address frame/QOS frame.
    334 	 * We always zero-pad to 32 bytes before running it
    335 	 * through the cipher.
    336 	 *
    337 	 * We also fill in the priority bits of the CCM
    338 	 * initial block as we know whether or not we have
    339 	 * a QOS frame.
    340 	 */
    341 	if (IS_4ADDRESS(wh)) {
    342 		IEEE80211_ADDR_COPY(aad + 24,
    343 			((struct ieee80211_frame_addr4 *)wh)->i_addr4);
    344 		if (IS_QOS_DATA(wh)) {
    345 			struct ieee80211_qosframe_addr4 *qwh4 =
    346 				(struct ieee80211_qosframe_addr4 *) wh;
    347 			aad[30] = qwh4->i_qos[0] & 0x0f;/* just priority bits */
    348 			aad[31] = 0;
    349 			b0[1] = aad[30];
    350 			aad[1] = 22 + IEEE80211_ADDR_LEN + 2;
    351 		} else {
    352 			*(u_int16_t *)&aad[30] = 0;
    353 			b0[1] = 0;
    354 			aad[1] = 22 + IEEE80211_ADDR_LEN;
    355 		}
    356 	} else {
    357 		if (IS_QOS_DATA(wh)) {
    358 			struct ieee80211_qosframe *qwh =
    359 				(struct ieee80211_qosframe*) wh;
    360 			aad[24] = qwh->i_qos[0] & 0x0f;	/* just priority bits */
    361 			aad[25] = 0;
    362 			b0[1] = aad[24];
    363 			aad[1] = 22 + 2;
    364 		} else {
    365 			*(u_int16_t *)&aad[24] = 0;
    366 			b0[1] = 0;
    367 			aad[1] = 22;
    368 		}
    369 		*(u_int16_t *)&aad[26] = 0;
    370 		*(u_int32_t *)&aad[28] = 0;
    371 	}
    372 
    373 	/* Start with the first block and AAD */
    374 	rijndael_encrypt(ctx, b0, auth);
    375 	xor_block(auth, aad, AES_BLOCK_LEN);
    376 	rijndael_encrypt(ctx, auth, auth);
    377 	xor_block(auth, &aad[AES_BLOCK_LEN], AES_BLOCK_LEN);
    378 	rijndael_encrypt(ctx, auth, auth);
    379 	b0[0] &= 0x07;
    380 	b0[14] = b0[15] = 0;
    381 	rijndael_encrypt(ctx, b0, s0);
    382 #undef	IS_QOS_DATA
    383 #undef	IS_4ADDRESS
    384 }
    385 
    386 #define	CCMP_ENCRYPT(_i, _b, _b0, _pos, _e, _len) do {	\
    387 	/* Authentication */				\
    388 	xor_block(_b, _pos, _len);			\
    389 	rijndael_encrypt(&ctx->cc_aes, _b, _b);		\
    390 	/* Encryption, with counter */			\
    391 	_b0[14] = (_i >> 8) & 0xff;			\
    392 	_b0[15] = _i & 0xff;				\
    393 	rijndael_encrypt(&ctx->cc_aes, _b0, _e);	\
    394 	xor_block(_pos, _e, _len);			\
    395 } while (0)
    396 
    397 static int
    398 ccmp_encrypt(struct ieee80211_key *key, struct mbuf *m0, int hdrlen)
    399 {
    400 	struct ccmp_ctx *ctx = key->wk_private;
    401 	struct ieee80211_frame *wh;
    402 	struct mbuf *m = m0;
    403 	int data_len, i, space;
    404 	uint8_t aad[2 * AES_BLOCK_LEN], b0[AES_BLOCK_LEN], b[AES_BLOCK_LEN],
    405 		e[AES_BLOCK_LEN], s0[AES_BLOCK_LEN];
    406 	uint8_t *pos;
    407 
    408 	ctx->cc_ic->ic_stats.is_crypto_ccmp++;
    409 
    410 	wh = mtod(m, struct ieee80211_frame *);
    411 	data_len = m->m_pkthdr.len - (hdrlen + ccmp.ic_header);
    412 	ccmp_init_blocks(&ctx->cc_aes, wh, key->wk_keytsc,
    413 		data_len, b0, aad, b, s0);
    414 
    415 	i = 1;
    416 	pos = mtod(m, uint8_t *) + hdrlen + ccmp.ic_header;
    417 	/* NB: assumes header is entirely in first mbuf */
    418 	space = m->m_len - (hdrlen + ccmp.ic_header);
    419 	for (;;) {
    420 		if (space > data_len)
    421 			space = data_len;
    422 		/*
    423 		 * Do full blocks.
    424 		 */
    425 		while (space >= AES_BLOCK_LEN) {
    426 			CCMP_ENCRYPT(i, b, b0, pos, e, AES_BLOCK_LEN);
    427 			pos += AES_BLOCK_LEN, space -= AES_BLOCK_LEN;
    428 			data_len -= AES_BLOCK_LEN;
    429 			i++;
    430 		}
    431 		if (data_len <= 0)		/* no more data */
    432 			break;
    433 		m = m->m_next;
    434 		if (m == NULL) {		/* last buffer */
    435 			if (space != 0) {
    436 				/*
    437 				 * Short last block.
    438 				 */
    439 				CCMP_ENCRYPT(i, b, b0, pos, e, space);
    440 			}
    441 			break;
    442 		}
    443 		if (space != 0) {
    444 			uint8_t *pos_next;
    445 			int space_next;
    446 			int len, dl, sp;
    447 			struct mbuf *n;
    448 
    449 			/*
    450 			 * Block straddles one or more mbufs, gather data
    451 			 * into the block buffer b, apply the cipher, then
    452 			 * scatter the results back into the mbuf chain.
    453 			 * The buffer will automatically get space bytes
    454 			 * of data at offset 0 copied in+out by the
    455 			 * CCMP_ENCRYPT request so we must take care of
    456 			 * the remaining data.
    457 			 */
    458 			n = m;
    459 			dl = data_len;
    460 			sp = space;
    461 			for (;;) {
    462 				pos_next = mtod(n, uint8_t *);
    463 				len = min(dl, AES_BLOCK_LEN);
    464 				space_next = len > sp ? len - sp : 0;
    465 				if (n->m_len >= space_next) {
    466 					/*
    467 					 * This mbuf has enough data; just grab
    468 					 * what we need and stop.
    469 					 */
    470 					xor_block(b+sp, pos_next, space_next);
    471 					break;
    472 				}
    473 				/*
    474 				 * This mbuf's contents are insufficient,
    475 				 * take 'em all and prepare to advance to
    476 				 * the next mbuf.
    477 				 */
    478 				xor_block(b+sp, pos_next, n->m_len);
    479 				sp += n->m_len, dl -= n->m_len;
    480 				n = n->m_next;
    481 				if (n == NULL)
    482 					break;
    483 			}
    484 
    485 			CCMP_ENCRYPT(i, b, b0, pos, e, space);
    486 
    487 			/* NB: just like above, but scatter data to mbufs */
    488 			dl = data_len;
    489 			sp = space;
    490 			for (;;) {
    491 				pos_next = mtod(m, uint8_t *);
    492 				len = min(dl, AES_BLOCK_LEN);
    493 				space_next = len > sp ? len - sp : 0;
    494 				if (m->m_len >= space_next) {
    495 					xor_block(pos_next, e+sp, space_next);
    496 					break;
    497 				}
    498 				xor_block(pos_next, e+sp, m->m_len);
    499 				sp += m->m_len, dl -= m->m_len;
    500 				m = m->m_next;
    501 				if (m == NULL)
    502 					goto done;
    503 			}
    504 			/*
    505 			 * Do bookkeeping.  m now points to the last mbuf
    506 			 * we grabbed data from.  We know we consumed a
    507 			 * full block of data as otherwise we'd have hit
    508 			 * the end of the mbuf chain, so deduct from data_len.
    509 			 * Otherwise advance the block number (i) and setup
    510 			 * pos+space to reflect contents of the new mbuf.
    511 			 */
    512 			data_len -= AES_BLOCK_LEN;
    513 			i++;
    514 			pos = pos_next + space_next;
    515 			space = m->m_len - space_next;
    516 		} else {
    517 			/*
    518 			 * Setup for next buffer.
    519 			 */
    520 			pos = mtod(m, uint8_t *);
    521 			space = m->m_len;
    522 		}
    523 	}
    524 done:
    525 	/* tack on MIC */
    526 	xor_block(b, s0, ccmp.ic_trailer);
    527 	return m_append(m0, ccmp.ic_trailer, b);
    528 }
    529 #undef CCMP_ENCRYPT
    530 
    531 #define	CCMP_DECRYPT(_i, _b, _b0, _pos, _a, _len) do {	\
    532 	/* Decrypt, with counter */			\
    533 	_b0[14] = (_i >> 8) & 0xff;			\
    534 	_b0[15] = _i & 0xff;				\
    535 	rijndael_encrypt(&ctx->cc_aes, _b0, _b);	\
    536 	xor_block(_pos, _b, _len);			\
    537 	/* Authentication */				\
    538 	xor_block(_a, _pos, _len);			\
    539 	rijndael_encrypt(&ctx->cc_aes, _a, _a);		\
    540 } while (0)
    541 
    542 static int
    543 ccmp_decrypt(struct ieee80211_key *key, u_int64_t pn, struct mbuf *m, int hdrlen)
    544 {
    545 	struct ccmp_ctx *ctx = key->wk_private;
    546 	struct ieee80211_frame *wh;
    547 	uint8_t aad[2 * AES_BLOCK_LEN];
    548 	uint8_t b0[AES_BLOCK_LEN], b[AES_BLOCK_LEN], a[AES_BLOCK_LEN];
    549 	uint8_t mic[AES_BLOCK_LEN];
    550 	size_t data_len;
    551 	int i;
    552 	uint8_t *pos;
    553 	u_int space;
    554 
    555 	ctx->cc_ic->ic_stats.is_crypto_ccmp++;
    556 
    557 	wh = mtod(m, struct ieee80211_frame *);
    558 	data_len = m->m_pkthdr.len - (hdrlen + ccmp.ic_header + ccmp.ic_trailer);
    559 	ccmp_init_blocks(&ctx->cc_aes, wh, pn, data_len, b0, aad, a, b);
    560 	m_copydata(m, m->m_pkthdr.len - ccmp.ic_trailer, ccmp.ic_trailer, mic);
    561 	xor_block(mic, b, ccmp.ic_trailer);
    562 
    563 	i = 1;
    564 	pos = mtod(m, uint8_t *) + hdrlen + ccmp.ic_header;
    565 	space = m->m_len - (hdrlen + ccmp.ic_header);
    566 	for (;;) {
    567 		if (space > data_len)
    568 			space = data_len;
    569 		while (space >= AES_BLOCK_LEN) {
    570 			CCMP_DECRYPT(i, b, b0, pos, a, AES_BLOCK_LEN);
    571 			pos += AES_BLOCK_LEN, space -= AES_BLOCK_LEN;
    572 			data_len -= AES_BLOCK_LEN;
    573 			i++;
    574 		}
    575 		if (data_len <= 0)		/* no more data */
    576 			break;
    577 		m = m->m_next;
    578 		if (m == NULL) {		/* last buffer */
    579 			if (space != 0)		/* short last block */
    580 				CCMP_DECRYPT(i, b, b0, pos, a, space);
    581 			break;
    582 		}
    583 		if (space != 0) {
    584 			uint8_t *pos_next;
    585 			u_int space_next;
    586 			u_int len;
    587 
    588 			/*
    589 			 * Block straddles buffers, split references.  We
    590 			 * do not handle splits that require >2 buffers
    591 			 * since rx'd frames are never badly fragmented
    592 			 * because drivers typically recv in clusters.
    593 			 */
    594 			pos_next = mtod(m, uint8_t *);
    595 			len = min(data_len, AES_BLOCK_LEN);
    596 			space_next = len > space ? len - space : 0;
    597 			IASSERT(m->m_len >= space_next,
    598 				("not enough data in following buffer, "
    599 				"m_len %u need %u\n", m->m_len, space_next));
    600 
    601 			xor_block(b+space, pos_next, space_next);
    602 			CCMP_DECRYPT(i, b, b0, pos, a, space);
    603 			xor_block(pos_next, b+space, space_next);
    604 			data_len -= len;
    605 			i++;
    606 
    607 			pos = pos_next + space_next;
    608 			space = m->m_len - space_next;
    609 		} else {
    610 			/*
    611 			 * Setup for next buffer.
    612 			 */
    613 			pos = mtod(m, uint8_t *);
    614 			space = m->m_len;
    615 		}
    616 	}
    617 	if (memcmp(mic, a, ccmp.ic_trailer) != 0) {
    618 		IEEE80211_DPRINTF(ctx->cc_ic, IEEE80211_MSG_CRYPTO,
    619 			"[%s] AES-CCM decrypt failed; MIC mismatch\n",
    620 			ether_sprintf(wh->i_addr2));
    621 		ctx->cc_ic->ic_stats.is_rx_ccmpmic++;
    622 		return 0;
    623 	}
    624 	return 1;
    625 }
    626 #undef CCMP_DECRYPT
    627 
    628 IEEE80211_CRYPTO_SETUP(ccmp_register)
    629 {
    630 	ieee80211_crypto_register(&ccmp);
    631 }
    632