xref: /freebsd/sys/net80211/ieee80211_crypto.c (revision 98e8df90b5cc5180c09e71998e5f3e05c76a4fe1)
11a1e1d21SSam Leffler /*-
24d846d26SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
3fe267a55SPedro F. Giffuni  *
47535e66aSSam Leffler  * Copyright (c) 2001 Atsushi Onoe
5b032f27cSSam Leffler  * Copyright (c) 2002-2008 Sam Leffler, Errno Consulting
61a1e1d21SSam Leffler  * All rights reserved.
71a1e1d21SSam Leffler  *
81a1e1d21SSam Leffler  * Redistribution and use in source and binary forms, with or without
91a1e1d21SSam Leffler  * modification, are permitted provided that the following conditions
101a1e1d21SSam Leffler  * are met:
111a1e1d21SSam Leffler  * 1. Redistributions of source code must retain the above copyright
127535e66aSSam Leffler  *    notice, this list of conditions and the following disclaimer.
137535e66aSSam Leffler  * 2. Redistributions in binary form must reproduce the above copyright
147535e66aSSam Leffler  *    notice, this list of conditions and the following disclaimer in the
157535e66aSSam Leffler  *    documentation and/or other materials provided with the distribution.
161a1e1d21SSam Leffler  *
177535e66aSSam Leffler  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
187535e66aSSam Leffler  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
197535e66aSSam Leffler  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
207535e66aSSam Leffler  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
217535e66aSSam Leffler  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
227535e66aSSam Leffler  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
237535e66aSSam Leffler  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
247535e66aSSam Leffler  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
257535e66aSSam Leffler  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
267535e66aSSam Leffler  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
271a1e1d21SSam Leffler  */
281a1e1d21SSam Leffler 
291a1e1d21SSam Leffler #include <sys/cdefs.h>
308a1b9b6aSSam Leffler /*
318a1b9b6aSSam Leffler  * IEEE 802.11 generic crypto support.
328a1b9b6aSSam Leffler  */
33b032f27cSSam Leffler #include "opt_wlan.h"
34b032f27cSSam Leffler 
351a1e1d21SSam Leffler #include <sys/param.h>
36b032f27cSSam Leffler #include <sys/kernel.h>
37b032f27cSSam Leffler #include <sys/malloc.h>
381a1e1d21SSam Leffler #include <sys/mbuf.h>
391a1e1d21SSam Leffler 
408a1b9b6aSSam Leffler #include <sys/socket.h>
411a1e1d21SSam Leffler 
421a1e1d21SSam Leffler #include <net/if.h>
431a1e1d21SSam Leffler #include <net/if_media.h>
448a1b9b6aSSam Leffler #include <net/ethernet.h>		/* XXX ETHER_HDR_LEN */
451a1e1d21SSam Leffler 
461a1e1d21SSam Leffler #include <net80211/ieee80211_var.h>
471a1e1d21SSam Leffler 
48b032f27cSSam Leffler MALLOC_DEFINE(M_80211_CRYPTO, "80211crypto", "802.11 crypto state");
49b032f27cSSam Leffler 
50b032f27cSSam Leffler static	int _ieee80211_crypto_delkey(struct ieee80211vap *,
51b032f27cSSam Leffler 		struct ieee80211_key *);
52b032f27cSSam Leffler 
538a1b9b6aSSam Leffler /*
548a1b9b6aSSam Leffler  * Table of registered cipher modules.
558a1b9b6aSSam Leffler  */
568a1b9b6aSSam Leffler static	const struct ieee80211_cipher *ciphers[IEEE80211_CIPHER_MAX];
571a1e1d21SSam Leffler 
588a1b9b6aSSam Leffler /*
598a1b9b6aSSam Leffler  * Default "null" key management routines.
608a1b9b6aSSam Leffler  */
618a1b9b6aSSam Leffler static int
62e6e547d5SSam Leffler null_key_alloc(struct ieee80211vap *vap, struct ieee80211_key *k,
63c1225b52SSam Leffler 	ieee80211_keyix *keyix, ieee80211_keyix *rxkeyix)
641a1e1d21SSam Leffler {
65b032f27cSSam Leffler 	if (!(&vap->iv_nw_keys[0] <= k &&
66b032f27cSSam Leffler 	     k < &vap->iv_nw_keys[IEEE80211_WEP_NKID])) {
675c8a7b1bSSam Leffler 		/*
685c8a7b1bSSam Leffler 		 * Not in the global key table, the driver should handle this
695c8a7b1bSSam Leffler 		 * by allocating a slot in the h/w key table/cache.  In
705c8a7b1bSSam Leffler 		 * lieu of that return key slot 0 for any unicast key
715c8a7b1bSSam Leffler 		 * request.  We disallow the request if this is a group key.
725c8a7b1bSSam Leffler 		 * This default policy does the right thing for legacy hardware
735c8a7b1bSSam Leffler 		 * with a 4 key table.  It also handles devices that pass
745c8a7b1bSSam Leffler 		 * packets through untouched when marked with the WEP bit
755c8a7b1bSSam Leffler 		 * and key index 0.
765c8a7b1bSSam Leffler 		 */
77c1225b52SSam Leffler 		if (k->wk_flags & IEEE80211_KEY_GROUP)
78c1225b52SSam Leffler 			return 0;
79c1225b52SSam Leffler 		*keyix = 0;	/* NB: use key index 0 for ucast key */
80c1225b52SSam Leffler 	} else {
814a19d712SAndriy Voskoboinyk 		*keyix = ieee80211_crypto_get_key_wepidx(vap, k);
828a1b9b6aSSam Leffler 	}
83c1225b52SSam Leffler 	*rxkeyix = IEEE80211_KEYIX_NONE;	/* XXX maybe *keyix? */
84c1225b52SSam Leffler 	return 1;
855c8a7b1bSSam Leffler }
868a1b9b6aSSam Leffler static int
87b032f27cSSam Leffler null_key_delete(struct ieee80211vap *vap, const struct ieee80211_key *k)
888a1b9b6aSSam Leffler {
898a1b9b6aSSam Leffler 	return 1;
908a1b9b6aSSam Leffler }
918a1b9b6aSSam Leffler static 	int
92bc813c40SAdrian Chadd null_key_set(struct ieee80211vap *vap, const struct ieee80211_key *k)
938a1b9b6aSSam Leffler {
948a1b9b6aSSam Leffler 	return 1;
958a1b9b6aSSam Leffler }
96b032f27cSSam Leffler static void null_key_update(struct ieee80211vap *vap) {}
978a1b9b6aSSam Leffler 
988a1b9b6aSSam Leffler /*
998a1b9b6aSSam Leffler  * Write-arounds for common operations.
1008a1b9b6aSSam Leffler  */
1018a1b9b6aSSam Leffler static __inline void
1028a1b9b6aSSam Leffler cipher_detach(struct ieee80211_key *key)
1038a1b9b6aSSam Leffler {
1048a1b9b6aSSam Leffler 	key->wk_cipher->ic_detach(key);
1058a1b9b6aSSam Leffler }
1068a1b9b6aSSam Leffler 
1078a1b9b6aSSam Leffler static __inline void *
108b032f27cSSam Leffler cipher_attach(struct ieee80211vap *vap, struct ieee80211_key *key)
1098a1b9b6aSSam Leffler {
110b032f27cSSam Leffler 	return key->wk_cipher->ic_attach(vap, key);
1118a1b9b6aSSam Leffler }
1128a1b9b6aSSam Leffler 
1138a1b9b6aSSam Leffler /*
1148a1b9b6aSSam Leffler  * Wrappers for driver key management methods.
1158a1b9b6aSSam Leffler  */
1168a1b9b6aSSam Leffler static __inline int
117b032f27cSSam Leffler dev_key_alloc(struct ieee80211vap *vap,
118e6e547d5SSam Leffler 	struct ieee80211_key *key,
119c1225b52SSam Leffler 	ieee80211_keyix *keyix, ieee80211_keyix *rxkeyix)
1208a1b9b6aSSam Leffler {
121b032f27cSSam Leffler 	return vap->iv_key_alloc(vap, key, keyix, rxkeyix);
1228a1b9b6aSSam Leffler }
1238a1b9b6aSSam Leffler 
1248a1b9b6aSSam Leffler static __inline int
125b032f27cSSam Leffler dev_key_delete(struct ieee80211vap *vap,
1268a1b9b6aSSam Leffler 	const struct ieee80211_key *key)
1278a1b9b6aSSam Leffler {
128b032f27cSSam Leffler 	return vap->iv_key_delete(vap, key);
1298a1b9b6aSSam Leffler }
1308a1b9b6aSSam Leffler 
1318a1b9b6aSSam Leffler static __inline int
13271fe06caSSam Leffler dev_key_set(struct ieee80211vap *vap, const struct ieee80211_key *key)
1338a1b9b6aSSam Leffler {
134bc813c40SAdrian Chadd 	return vap->iv_key_set(vap, key);
1358a1b9b6aSSam Leffler }
1361a1e1d21SSam Leffler 
1371a1e1d21SSam Leffler /*
138b032f27cSSam Leffler  * Setup crypto support for a device/shared instance.
1391a1e1d21SSam Leffler  */
1401a1e1d21SSam Leffler void
1418a1b9b6aSSam Leffler ieee80211_crypto_attach(struct ieee80211com *ic)
1421a1e1d21SSam Leffler {
1438a1b9b6aSSam Leffler 	/* NB: we assume everything is pre-zero'd */
1448a1b9b6aSSam Leffler 	ciphers[IEEE80211_CIPHER_NONE] = &ieee80211_cipher_none;
1451116e8b9SAdrian Chadd 
1461116e8b9SAdrian Chadd 	/*
1471116e8b9SAdrian Chadd 	 * Default set of net80211 supported ciphers.
1481116e8b9SAdrian Chadd 	 *
1491116e8b9SAdrian Chadd 	 * These are the default set that all drivers are expected to
1501116e8b9SAdrian Chadd 	 * support, either/or in hardware and software.
1511116e8b9SAdrian Chadd 	 *
1521116e8b9SAdrian Chadd 	 * Drivers can add their own support to this and the
1531116e8b9SAdrian Chadd 	 * hardware cipher list (ic_cryptocaps.)
1541116e8b9SAdrian Chadd 	 */
1551116e8b9SAdrian Chadd 	ic->ic_sw_cryptocaps = IEEE80211_CRYPTO_WEP |
1561116e8b9SAdrian Chadd 	    IEEE80211_CRYPTO_TKIP | IEEE80211_CRYPTO_AES_CCM;
1571a1e1d21SSam Leffler }
1581a1e1d21SSam Leffler 
1598a1b9b6aSSam Leffler /*
1608a1b9b6aSSam Leffler  * Teardown crypto support.
1618a1b9b6aSSam Leffler  */
1628a1b9b6aSSam Leffler void
1638a1b9b6aSSam Leffler ieee80211_crypto_detach(struct ieee80211com *ic)
1648a1b9b6aSSam Leffler {
165b032f27cSSam Leffler }
166b032f27cSSam Leffler 
167b032f27cSSam Leffler /*
168e9961ea1SAdrian Chadd  * Set the supported ciphers for software encryption.
169e9961ea1SAdrian Chadd  */
170e9961ea1SAdrian Chadd void
171e9961ea1SAdrian Chadd ieee80211_crypto_set_supported_software_ciphers(struct ieee80211com *ic,
172e9961ea1SAdrian Chadd     uint32_t cipher_set)
173e9961ea1SAdrian Chadd {
174e9961ea1SAdrian Chadd 	ic->ic_sw_cryptocaps = cipher_set;
175e9961ea1SAdrian Chadd }
176e9961ea1SAdrian Chadd 
177e9961ea1SAdrian Chadd /*
178e9961ea1SAdrian Chadd  * Set the supported ciphers for hardware encryption.
179e9961ea1SAdrian Chadd  */
180e9961ea1SAdrian Chadd void
181e9961ea1SAdrian Chadd ieee80211_crypto_set_supported_hardware_ciphers(struct ieee80211com *ic,
182e9961ea1SAdrian Chadd     uint32_t cipher_set)
183e9961ea1SAdrian Chadd {
184e9961ea1SAdrian Chadd 	ic->ic_cryptocaps = cipher_set;
185e9961ea1SAdrian Chadd }
186e9961ea1SAdrian Chadd 
187e9961ea1SAdrian Chadd 
188e9961ea1SAdrian Chadd /*
189b032f27cSSam Leffler  * Setup crypto support for a vap.
190b032f27cSSam Leffler  */
191b032f27cSSam Leffler void
192b032f27cSSam Leffler ieee80211_crypto_vattach(struct ieee80211vap *vap)
193b032f27cSSam Leffler {
194b032f27cSSam Leffler 	int i;
195b032f27cSSam Leffler 
196b032f27cSSam Leffler 	/* NB: we assume everything is pre-zero'd */
197b032f27cSSam Leffler 	vap->iv_max_keyix = IEEE80211_WEP_NKID;
198b032f27cSSam Leffler 	vap->iv_def_txkey = IEEE80211_KEYIX_NONE;
199b032f27cSSam Leffler 	for (i = 0; i < IEEE80211_WEP_NKID; i++)
200b032f27cSSam Leffler 		ieee80211_crypto_resetkey(vap, &vap->iv_nw_keys[i],
201b032f27cSSam Leffler 			IEEE80211_KEYIX_NONE);
202b032f27cSSam Leffler 	/*
203b032f27cSSam Leffler 	 * Initialize the driver key support routines to noop entries.
204b032f27cSSam Leffler 	 * This is useful especially for the cipher test modules.
205b032f27cSSam Leffler 	 */
206b032f27cSSam Leffler 	vap->iv_key_alloc = null_key_alloc;
207b032f27cSSam Leffler 	vap->iv_key_set = null_key_set;
208b032f27cSSam Leffler 	vap->iv_key_delete = null_key_delete;
209b032f27cSSam Leffler 	vap->iv_key_update_begin = null_key_update;
210b032f27cSSam Leffler 	vap->iv_key_update_end = null_key_update;
211b032f27cSSam Leffler }
212b032f27cSSam Leffler 
213b032f27cSSam Leffler /*
214b032f27cSSam Leffler  * Teardown crypto support for a vap.
215b032f27cSSam Leffler  */
216b032f27cSSam Leffler void
217b032f27cSSam Leffler ieee80211_crypto_vdetach(struct ieee80211vap *vap)
218b032f27cSSam Leffler {
219b032f27cSSam Leffler 	ieee80211_crypto_delglobalkeys(vap);
2201a1e1d21SSam Leffler }
2211a1e1d21SSam Leffler 
2228a1b9b6aSSam Leffler /*
2238a1b9b6aSSam Leffler  * Register a crypto cipher module.
2248a1b9b6aSSam Leffler  */
2258a1b9b6aSSam Leffler void
2268a1b9b6aSSam Leffler ieee80211_crypto_register(const struct ieee80211_cipher *cip)
2278a1b9b6aSSam Leffler {
2288a1b9b6aSSam Leffler 	if (cip->ic_cipher >= IEEE80211_CIPHER_MAX) {
2298a1b9b6aSSam Leffler 		printf("%s: cipher %s has an invalid cipher index %u\n",
2308a1b9b6aSSam Leffler 			__func__, cip->ic_name, cip->ic_cipher);
2318a1b9b6aSSam Leffler 		return;
2328a1b9b6aSSam Leffler 	}
2338a1b9b6aSSam Leffler 	if (ciphers[cip->ic_cipher] != NULL && ciphers[cip->ic_cipher] != cip) {
2348a1b9b6aSSam Leffler 		printf("%s: cipher %s registered with a different template\n",
2358a1b9b6aSSam Leffler 			__func__, cip->ic_name);
2368a1b9b6aSSam Leffler 		return;
2378a1b9b6aSSam Leffler 	}
2388a1b9b6aSSam Leffler 	ciphers[cip->ic_cipher] = cip;
2398a1b9b6aSSam Leffler }
2408a1b9b6aSSam Leffler 
2418a1b9b6aSSam Leffler /*
2428a1b9b6aSSam Leffler  * Unregister a crypto cipher module.
2438a1b9b6aSSam Leffler  */
2448a1b9b6aSSam Leffler void
2458a1b9b6aSSam Leffler ieee80211_crypto_unregister(const struct ieee80211_cipher *cip)
2468a1b9b6aSSam Leffler {
2478a1b9b6aSSam Leffler 	if (cip->ic_cipher >= IEEE80211_CIPHER_MAX) {
2488a1b9b6aSSam Leffler 		printf("%s: cipher %s has an invalid cipher index %u\n",
2498a1b9b6aSSam Leffler 			__func__, cip->ic_name, cip->ic_cipher);
2508a1b9b6aSSam Leffler 		return;
2518a1b9b6aSSam Leffler 	}
2528a1b9b6aSSam Leffler 	if (ciphers[cip->ic_cipher] != NULL && ciphers[cip->ic_cipher] != cip) {
2538a1b9b6aSSam Leffler 		printf("%s: cipher %s registered with a different template\n",
2548a1b9b6aSSam Leffler 			__func__, cip->ic_name);
2558a1b9b6aSSam Leffler 		return;
2568a1b9b6aSSam Leffler 	}
2578a1b9b6aSSam Leffler 	/* NB: don't complain about not being registered */
2588a1b9b6aSSam Leffler 	/* XXX disallow if references */
2598a1b9b6aSSam Leffler 	ciphers[cip->ic_cipher] = NULL;
2608a1b9b6aSSam Leffler }
2618a1b9b6aSSam Leffler 
2628a1b9b6aSSam Leffler int
2638a1b9b6aSSam Leffler ieee80211_crypto_available(u_int cipher)
2648a1b9b6aSSam Leffler {
2658a1b9b6aSSam Leffler 	return cipher < IEEE80211_CIPHER_MAX && ciphers[cipher] != NULL;
2668a1b9b6aSSam Leffler }
2678a1b9b6aSSam Leffler 
2688a1b9b6aSSam Leffler /* XXX well-known names! */
269b032f27cSSam Leffler static const char *cipher_modnames[IEEE80211_CIPHER_MAX] = {
2709fcf5318SSam Leffler 	[IEEE80211_CIPHER_WEP]	   = "wlan_wep",
2719fcf5318SSam Leffler 	[IEEE80211_CIPHER_TKIP]	   = "wlan_tkip",
2729fcf5318SSam Leffler 	[IEEE80211_CIPHER_AES_OCB] = "wlan_aes_ocb",
2739fcf5318SSam Leffler 	[IEEE80211_CIPHER_AES_CCM] = "wlan_ccmp",
2749fcf5318SSam Leffler 	[IEEE80211_CIPHER_TKIPMIC] = "#4",	/* NB: reserved */
2759fcf5318SSam Leffler 	[IEEE80211_CIPHER_CKIP]	   = "wlan_ckip",
2769fcf5318SSam Leffler 	[IEEE80211_CIPHER_NONE]	   = "wlan_none",
277*98e8df90SAdrian Chadd 	[IEEE80211_CIPHER_AES_CCM_256] = "wlan_ccmp",
278*98e8df90SAdrian Chadd 	[IEEE80211_CIPHER_BIP_CMAC_128] = "wlan_bip_cmac",
279*98e8df90SAdrian Chadd 	[IEEE80211_CIPHER_BIP_CMAC_256] = "wlan_bip_cmac",
280*98e8df90SAdrian Chadd 	[IEEE80211_CIPHER_BIP_GMAC_128] = "wlan_bip_gmac",
281*98e8df90SAdrian Chadd 	[IEEE80211_CIPHER_BIP_GMAC_256] = "wlan_bip_gmac",
282*98e8df90SAdrian Chadd 	[IEEE80211_CIPHER_AES_GCM_128]  = "wlan_gcmp",
283*98e8df90SAdrian Chadd 	[IEEE80211_CIPHER_AES_GCM_256]  = "wlan_gcmp",
2848a1b9b6aSSam Leffler };
2858a1b9b6aSSam Leffler 
286411ccf5fSSam Leffler /* NB: there must be no overlap between user-supplied and device-owned flags */
287411ccf5fSSam Leffler CTASSERT((IEEE80211_KEY_COMMON & IEEE80211_KEY_DEVICE) == 0);
288411ccf5fSSam Leffler 
2898a1b9b6aSSam Leffler /*
2908a1b9b6aSSam Leffler  * Establish a relationship between the specified key and cipher
291dd70e17bSSam Leffler  * and, if necessary, allocate a hardware index from the driver.
292411ccf5fSSam Leffler  * Note that when a fixed key index is required it must be specified.
2938a1b9b6aSSam Leffler  *
2948a1b9b6aSSam Leffler  * This must be the first call applied to a key; all the other key
2958a1b9b6aSSam Leffler  * routines assume wk_cipher is setup.
2968a1b9b6aSSam Leffler  *
2978a1b9b6aSSam Leffler  * Locking must be handled by the caller using:
298b032f27cSSam Leffler  *	ieee80211_key_update_begin(vap);
299b032f27cSSam Leffler  *	ieee80211_key_update_end(vap);
3008a1b9b6aSSam Leffler  */
3018a1b9b6aSSam Leffler int
302b032f27cSSam Leffler ieee80211_crypto_newkey(struct ieee80211vap *vap,
303dd70e17bSSam Leffler 	int cipher, int flags, struct ieee80211_key *key)
3048a1b9b6aSSam Leffler {
305b032f27cSSam Leffler 	struct ieee80211com *ic = vap->iv_ic;
3068a1b9b6aSSam Leffler 	const struct ieee80211_cipher *cip;
307c1225b52SSam Leffler 	ieee80211_keyix keyix, rxkeyix;
3088a1b9b6aSSam Leffler 	void *keyctx;
3098a1b9b6aSSam Leffler 	int oflags;
3108a1b9b6aSSam Leffler 
31107760642SSam Leffler 	IEEE80211_DPRINTF(vap, IEEE80211_MSG_CRYPTO,
31207760642SSam Leffler 	    "%s: cipher %u flags 0x%x keyix %u\n",
31307760642SSam Leffler 	    __func__, cipher, flags, key->wk_keyix);
31407760642SSam Leffler 
3158a1b9b6aSSam Leffler 	/*
3168a1b9b6aSSam Leffler 	 * Validate cipher and set reference to cipher routines.
3178a1b9b6aSSam Leffler 	 */
3188a1b9b6aSSam Leffler 	if (cipher >= IEEE80211_CIPHER_MAX) {
319b032f27cSSam Leffler 		IEEE80211_DPRINTF(vap, IEEE80211_MSG_CRYPTO,
3208a1b9b6aSSam Leffler 		    "%s: invalid cipher %u\n", __func__, cipher);
321b032f27cSSam Leffler 		vap->iv_stats.is_crypto_badcipher++;
3228a1b9b6aSSam Leffler 		return 0;
3238a1b9b6aSSam Leffler 	}
3248a1b9b6aSSam Leffler 	cip = ciphers[cipher];
3258a1b9b6aSSam Leffler 	if (cip == NULL) {
3268a1b9b6aSSam Leffler 		/*
3278a1b9b6aSSam Leffler 		 * Auto-load cipher module if we have a well-known name
3288a1b9b6aSSam Leffler 		 * for it.  It might be better to use string names rather
3298a1b9b6aSSam Leffler 		 * than numbers and craft a module name based on the cipher
3308a1b9b6aSSam Leffler 		 * name; e.g. wlan_cipher_<cipher-name>.
3318a1b9b6aSSam Leffler 		 */
332b032f27cSSam Leffler 		IEEE80211_DPRINTF(vap, IEEE80211_MSG_CRYPTO,
3338a1b9b6aSSam Leffler 		    "%s: unregistered cipher %u, load module %s\n",
3348a1b9b6aSSam Leffler 		    __func__, cipher, cipher_modnames[cipher]);
3358a1b9b6aSSam Leffler 		ieee80211_load_module(cipher_modnames[cipher]);
3368a1b9b6aSSam Leffler 		/*
3378a1b9b6aSSam Leffler 		 * If cipher module loaded it should immediately
3388a1b9b6aSSam Leffler 		 * call ieee80211_crypto_register which will fill
3398a1b9b6aSSam Leffler 		 * in the entry in the ciphers array.
3408a1b9b6aSSam Leffler 		 */
3418a1b9b6aSSam Leffler 		cip = ciphers[cipher];
3428a1b9b6aSSam Leffler 		if (cip == NULL) {
343b032f27cSSam Leffler 			IEEE80211_DPRINTF(vap, IEEE80211_MSG_CRYPTO,
3448a1b9b6aSSam Leffler 			    "%s: unable to load cipher %u, module %s\n",
345b032f27cSSam Leffler 			    __func__, cipher, cipher_modnames[cipher]);
346b032f27cSSam Leffler 			vap->iv_stats.is_crypto_nocipher++;
3478a1b9b6aSSam Leffler 			return 0;
3488a1b9b6aSSam Leffler 		}
3498a1b9b6aSSam Leffler 	}
3508a1b9b6aSSam Leffler 
3518a1b9b6aSSam Leffler 	oflags = key->wk_flags;
352dd70e17bSSam Leffler 	flags &= IEEE80211_KEY_COMMON;
353411ccf5fSSam Leffler 	/* NB: preserve device attributes */
354411ccf5fSSam Leffler 	flags |= (oflags & IEEE80211_KEY_DEVICE);
3558a1b9b6aSSam Leffler 	/*
3568a1b9b6aSSam Leffler 	 * If the hardware does not support the cipher then
3578a1b9b6aSSam Leffler 	 * fallback to a host-based implementation.
3588a1b9b6aSSam Leffler 	 */
359b032f27cSSam Leffler 	if ((ic->ic_cryptocaps & (1<<cipher)) == 0) {
360b032f27cSSam Leffler 		IEEE80211_DPRINTF(vap, IEEE80211_MSG_CRYPTO,
3618a1b9b6aSSam Leffler 		    "%s: no h/w support for cipher %s, falling back to s/w\n",
3628a1b9b6aSSam Leffler 		    __func__, cip->ic_name);
363dd70e17bSSam Leffler 		flags |= IEEE80211_KEY_SWCRYPT;
3648a1b9b6aSSam Leffler 	}
3658a1b9b6aSSam Leffler 	/*
3668a1b9b6aSSam Leffler 	 * Hardware TKIP with software MIC is an important
3678a1b9b6aSSam Leffler 	 * combination; we handle it by flagging each key,
3688a1b9b6aSSam Leffler 	 * the cipher modules honor it.
3698a1b9b6aSSam Leffler 	 */
3708a1b9b6aSSam Leffler 	if (cipher == IEEE80211_CIPHER_TKIP &&
371b032f27cSSam Leffler 	    (ic->ic_cryptocaps & IEEE80211_CRYPTO_TKIPMIC) == 0) {
372b032f27cSSam Leffler 		IEEE80211_DPRINTF(vap, IEEE80211_MSG_CRYPTO,
3738a1b9b6aSSam Leffler 		    "%s: no h/w support for TKIP MIC, falling back to s/w\n",
3748a1b9b6aSSam Leffler 		    __func__);
375dd70e17bSSam Leffler 		flags |= IEEE80211_KEY_SWMIC;
3768a1b9b6aSSam Leffler 	}
3778a1b9b6aSSam Leffler 
3788a1b9b6aSSam Leffler 	/*
3798a1b9b6aSSam Leffler 	 * Bind cipher to key instance.  Note we do this
3808a1b9b6aSSam Leffler 	 * after checking the device capabilities so the
3818a1b9b6aSSam Leffler 	 * cipher module can optimize space usage based on
3828a1b9b6aSSam Leffler 	 * whether or not it needs to do the cipher work.
3838a1b9b6aSSam Leffler 	 */
384dd70e17bSSam Leffler 	if (key->wk_cipher != cip || key->wk_flags != flags) {
385dd70e17bSSam Leffler 		/*
386dd70e17bSSam Leffler 		 * Fillin the flags so cipher modules can see s/w
387dd70e17bSSam Leffler 		 * crypto requirements and potentially allocate
388dd70e17bSSam Leffler 		 * different state and/or attach different method
389dd70e17bSSam Leffler 		 * pointers.
390dd70e17bSSam Leffler 		 */
391dd70e17bSSam Leffler 		key->wk_flags = flags;
392b032f27cSSam Leffler 		keyctx = cip->ic_attach(vap, key);
3938a1b9b6aSSam Leffler 		if (keyctx == NULL) {
394b032f27cSSam Leffler 			IEEE80211_DPRINTF(vap, IEEE80211_MSG_CRYPTO,
3958a1b9b6aSSam Leffler 				"%s: unable to attach cipher %s\n",
3968a1b9b6aSSam Leffler 				__func__, cip->ic_name);
3978a1b9b6aSSam Leffler 			key->wk_flags = oflags;	/* restore old flags */
398b032f27cSSam Leffler 			vap->iv_stats.is_crypto_attachfail++;
3998a1b9b6aSSam Leffler 			return 0;
4008a1b9b6aSSam Leffler 		}
4018a1b9b6aSSam Leffler 		cipher_detach(key);
4028a1b9b6aSSam Leffler 		key->wk_cipher = cip;		/* XXX refcnt? */
4038a1b9b6aSSam Leffler 		key->wk_private = keyctx;
4048a1b9b6aSSam Leffler 	}
4058a1b9b6aSSam Leffler 
4068a1b9b6aSSam Leffler 	/*
4078a1b9b6aSSam Leffler 	 * Ask the driver for a key index if we don't have one.
4088a1b9b6aSSam Leffler 	 * Note that entries in the global key table always have
4098a1b9b6aSSam Leffler 	 * an index; this means it's safe to call this routine
4108a1b9b6aSSam Leffler 	 * for these entries just to setup the reference to the
4118a1b9b6aSSam Leffler 	 * cipher template.  Note also that when using software
4128a1b9b6aSSam Leffler 	 * crypto we also call the driver to give us a key index.
4138a1b9b6aSSam Leffler 	 */
414e6e547d5SSam Leffler 	if ((key->wk_flags & IEEE80211_KEY_DEVKEY) == 0) {
415b032f27cSSam Leffler 		if (!dev_key_alloc(vap, key, &keyix, &rxkeyix)) {
4168a1b9b6aSSam Leffler 			/*
417e6e547d5SSam Leffler 			 * Unable to setup driver state.
4188a1b9b6aSSam Leffler 			 */
419b032f27cSSam Leffler 			vap->iv_stats.is_crypto_keyfail++;
420b032f27cSSam Leffler 			IEEE80211_DPRINTF(vap, IEEE80211_MSG_CRYPTO,
4218a1b9b6aSSam Leffler 			    "%s: unable to setup cipher %s\n",
4228a1b9b6aSSam Leffler 			    __func__, cip->ic_name);
4238a1b9b6aSSam Leffler 			return 0;
4248a1b9b6aSSam Leffler 		}
425e6e547d5SSam Leffler 		if (key->wk_flags != flags) {
426e6e547d5SSam Leffler 			/*
427e6e547d5SSam Leffler 			 * Driver overrode flags we setup; typically because
428e6e547d5SSam Leffler 			 * resources were unavailable to handle _this_ key.
429e6e547d5SSam Leffler 			 * Re-attach the cipher context to allow cipher
430e6e547d5SSam Leffler 			 * modules to handle differing requirements.
431e6e547d5SSam Leffler 			 */
432e6e547d5SSam Leffler 			IEEE80211_DPRINTF(vap, IEEE80211_MSG_CRYPTO,
433e6e547d5SSam Leffler 			    "%s: driver override for cipher %s, flags "
434e6e547d5SSam Leffler 			    "0x%x -> 0x%x\n", __func__, cip->ic_name,
435e6e547d5SSam Leffler 			    oflags, key->wk_flags);
436e6e547d5SSam Leffler 			keyctx = cip->ic_attach(vap, key);
437e6e547d5SSam Leffler 			if (keyctx == NULL) {
438e6e547d5SSam Leffler 				IEEE80211_DPRINTF(vap, IEEE80211_MSG_CRYPTO,
439e6e547d5SSam Leffler 				    "%s: unable to attach cipher %s with "
440e6e547d5SSam Leffler 				    "flags 0x%x\n", __func__, cip->ic_name,
441e6e547d5SSam Leffler 				    key->wk_flags);
442e6e547d5SSam Leffler 				key->wk_flags = oflags;	/* restore old flags */
443e6e547d5SSam Leffler 				vap->iv_stats.is_crypto_attachfail++;
444e6e547d5SSam Leffler 				return 0;
445e6e547d5SSam Leffler 			}
446e6e547d5SSam Leffler 			cipher_detach(key);
447e6e547d5SSam Leffler 			key->wk_cipher = cip;		/* XXX refcnt? */
448e6e547d5SSam Leffler 			key->wk_private = keyctx;
449e6e547d5SSam Leffler 		}
450c1225b52SSam Leffler 		key->wk_keyix = keyix;
451c1225b52SSam Leffler 		key->wk_rxkeyix = rxkeyix;
452e6e547d5SSam Leffler 		key->wk_flags |= IEEE80211_KEY_DEVKEY;
4538a1b9b6aSSam Leffler 	}
4548a1b9b6aSSam Leffler 	return 1;
4558a1b9b6aSSam Leffler }
4568a1b9b6aSSam Leffler 
4578a1b9b6aSSam Leffler /*
4588a1b9b6aSSam Leffler  * Remove the key (no locking, for internal use).
4598a1b9b6aSSam Leffler  */
4608a1b9b6aSSam Leffler static int
461b032f27cSSam Leffler _ieee80211_crypto_delkey(struct ieee80211vap *vap, struct ieee80211_key *key)
4628a1b9b6aSSam Leffler {
4638a1b9b6aSSam Leffler 	KASSERT(key->wk_cipher != NULL, ("No cipher!"));
4648a1b9b6aSSam Leffler 
465b032f27cSSam Leffler 	IEEE80211_DPRINTF(vap, IEEE80211_MSG_CRYPTO,
466fc508e8eSSam Leffler 	    "%s: %s keyix %u flags 0x%x rsc %ju tsc %ju len %u\n",
467fc508e8eSSam Leffler 	    __func__, key->wk_cipher->ic_name,
468fc508e8eSSam Leffler 	    key->wk_keyix, key->wk_flags,
469b032f27cSSam Leffler 	    key->wk_keyrsc[IEEE80211_NONQOS_TID], key->wk_keytsc,
470b032f27cSSam Leffler 	    key->wk_keylen);
471fc508e8eSSam Leffler 
472e6e547d5SSam Leffler 	if (key->wk_flags & IEEE80211_KEY_DEVKEY) {
4738a1b9b6aSSam Leffler 		/*
4748a1b9b6aSSam Leffler 		 * Remove hardware entry.
4758a1b9b6aSSam Leffler 		 */
4768a1b9b6aSSam Leffler 		/* XXX key cache */
477b032f27cSSam Leffler 		if (!dev_key_delete(vap, key)) {
478b032f27cSSam Leffler 			IEEE80211_DPRINTF(vap, IEEE80211_MSG_CRYPTO,
4798a1b9b6aSSam Leffler 			    "%s: driver did not delete key index %u\n",
480e6e547d5SSam Leffler 			    __func__, key->wk_keyix);
481b032f27cSSam Leffler 			vap->iv_stats.is_crypto_delkey++;
4828a1b9b6aSSam Leffler 			/* XXX recovery? */
4838a1b9b6aSSam Leffler 		}
4848a1b9b6aSSam Leffler 	}
4858a1b9b6aSSam Leffler 	cipher_detach(key);
4868a1b9b6aSSam Leffler 	memset(key, 0, sizeof(*key));
487b032f27cSSam Leffler 	ieee80211_crypto_resetkey(vap, key, IEEE80211_KEYIX_NONE);
4888a1b9b6aSSam Leffler 	return 1;
4898a1b9b6aSSam Leffler }
4908a1b9b6aSSam Leffler 
4918a1b9b6aSSam Leffler /*
4928a1b9b6aSSam Leffler  * Remove the specified key.
4938a1b9b6aSSam Leffler  */
4948a1b9b6aSSam Leffler int
495b032f27cSSam Leffler ieee80211_crypto_delkey(struct ieee80211vap *vap, struct ieee80211_key *key)
4968a1b9b6aSSam Leffler {
4978a1b9b6aSSam Leffler 	int status;
4988a1b9b6aSSam Leffler 
499b032f27cSSam Leffler 	ieee80211_key_update_begin(vap);
500b032f27cSSam Leffler 	status = _ieee80211_crypto_delkey(vap, key);
501b032f27cSSam Leffler 	ieee80211_key_update_end(vap);
5028a1b9b6aSSam Leffler 	return status;
5038a1b9b6aSSam Leffler }
5048a1b9b6aSSam Leffler 
5058a1b9b6aSSam Leffler /*
5068a1b9b6aSSam Leffler  * Clear the global key table.
5078a1b9b6aSSam Leffler  */
5088a1b9b6aSSam Leffler void
509b032f27cSSam Leffler ieee80211_crypto_delglobalkeys(struct ieee80211vap *vap)
5108a1b9b6aSSam Leffler {
5118a1b9b6aSSam Leffler 	int i;
5128a1b9b6aSSam Leffler 
513b032f27cSSam Leffler 	ieee80211_key_update_begin(vap);
5148a1b9b6aSSam Leffler 	for (i = 0; i < IEEE80211_WEP_NKID; i++)
515b032f27cSSam Leffler 		(void) _ieee80211_crypto_delkey(vap, &vap->iv_nw_keys[i]);
516b032f27cSSam Leffler 	ieee80211_key_update_end(vap);
5178a1b9b6aSSam Leffler }
5188a1b9b6aSSam Leffler 
5198a1b9b6aSSam Leffler /*
5208a1b9b6aSSam Leffler  * Set the contents of the specified key.
5218a1b9b6aSSam Leffler  *
5228a1b9b6aSSam Leffler  * Locking must be handled by the caller using:
523b032f27cSSam Leffler  *	ieee80211_key_update_begin(vap);
524b032f27cSSam Leffler  *	ieee80211_key_update_end(vap);
5258a1b9b6aSSam Leffler  */
5268a1b9b6aSSam Leffler int
52771fe06caSSam Leffler ieee80211_crypto_setkey(struct ieee80211vap *vap, struct ieee80211_key *key)
5288a1b9b6aSSam Leffler {
5298a1b9b6aSSam Leffler 	const struct ieee80211_cipher *cip = key->wk_cipher;
5308a1b9b6aSSam Leffler 
5318a1b9b6aSSam Leffler 	KASSERT(cip != NULL, ("No cipher!"));
5328a1b9b6aSSam Leffler 
533b032f27cSSam Leffler 	IEEE80211_DPRINTF(vap, IEEE80211_MSG_CRYPTO,
534fc508e8eSSam Leffler 	    "%s: %s keyix %u flags 0x%x mac %s rsc %ju tsc %ju len %u\n",
535fc508e8eSSam Leffler 	    __func__, cip->ic_name, key->wk_keyix,
53671fe06caSSam Leffler 	    key->wk_flags, ether_sprintf(key->wk_macaddr),
537b032f27cSSam Leffler 	    key->wk_keyrsc[IEEE80211_NONQOS_TID], key->wk_keytsc,
538b032f27cSSam Leffler 	    key->wk_keylen);
539fc508e8eSSam Leffler 
540e6e547d5SSam Leffler 	if ((key->wk_flags & IEEE80211_KEY_DEVKEY)  == 0) {
541e6e547d5SSam Leffler 		/* XXX nothing allocated, should not happen */
542e6e547d5SSam Leffler 		IEEE80211_DPRINTF(vap, IEEE80211_MSG_CRYPTO,
543e6e547d5SSam Leffler 		    "%s: no device key setup done; should not happen!\n",
544e6e547d5SSam Leffler 		    __func__);
545e6e547d5SSam Leffler 		vap->iv_stats.is_crypto_setkey_nokey++;
546e6e547d5SSam Leffler 		return 0;
547e6e547d5SSam Leffler 	}
5488a1b9b6aSSam Leffler 	/*
5498a1b9b6aSSam Leffler 	 * Give cipher a chance to validate key contents.
5508a1b9b6aSSam Leffler 	 * XXX should happen before modifying state.
5518a1b9b6aSSam Leffler 	 */
5528a1b9b6aSSam Leffler 	if (!cip->ic_setkey(key)) {
553b032f27cSSam Leffler 		IEEE80211_DPRINTF(vap, IEEE80211_MSG_CRYPTO,
5548a1b9b6aSSam Leffler 		    "%s: cipher %s rejected key index %u len %u flags 0x%x\n",
5558a1b9b6aSSam Leffler 		    __func__, cip->ic_name, key->wk_keyix,
5568a1b9b6aSSam Leffler 		    key->wk_keylen, key->wk_flags);
557b032f27cSSam Leffler 		vap->iv_stats.is_crypto_setkey_cipher++;
5588a1b9b6aSSam Leffler 		return 0;
5598a1b9b6aSSam Leffler 	}
56071fe06caSSam Leffler 	return dev_key_set(vap, key);
5618a1b9b6aSSam Leffler }
5628a1b9b6aSSam Leffler 
56354a95d0dSAdrian Chadd /*
56454a95d0dSAdrian Chadd  * Return index if the key is a WEP key (0..3); -1 otherwise.
56554a95d0dSAdrian Chadd  *
56654a95d0dSAdrian Chadd  * This is different to "get_keyid" which defaults to returning
56754a95d0dSAdrian Chadd  * 0 for unicast keys; it assumes that it won't be used for WEP.
56854a95d0dSAdrian Chadd  */
56954a95d0dSAdrian Chadd int
57054a95d0dSAdrian Chadd ieee80211_crypto_get_key_wepidx(const struct ieee80211vap *vap,
57154a95d0dSAdrian Chadd     const struct ieee80211_key *k)
57254a95d0dSAdrian Chadd {
57354a95d0dSAdrian Chadd 
57454a95d0dSAdrian Chadd 	if (k >= &vap->iv_nw_keys[0] &&
57554a95d0dSAdrian Chadd 	    k <  &vap->iv_nw_keys[IEEE80211_WEP_NKID])
57654a95d0dSAdrian Chadd 		return (k - vap->iv_nw_keys);
577d0155f67SXin LI 	return (-1);
57854a95d0dSAdrian Chadd }
57954a95d0dSAdrian Chadd 
58054a95d0dSAdrian Chadd /*
58154a95d0dSAdrian Chadd  * Note: only supports a single unicast key (0).
58254a95d0dSAdrian Chadd  */
583ef0d8f63SAdrian Chadd uint8_t
584ef0d8f63SAdrian Chadd ieee80211_crypto_get_keyid(struct ieee80211vap *vap, struct ieee80211_key *k)
585ef0d8f63SAdrian Chadd {
586ef0d8f63SAdrian Chadd 	if (k >= &vap->iv_nw_keys[0] &&
587ef0d8f63SAdrian Chadd 	    k <  &vap->iv_nw_keys[IEEE80211_WEP_NKID])
588ef0d8f63SAdrian Chadd 		return (k - vap->iv_nw_keys);
589ef0d8f63SAdrian Chadd 	else
590ef0d8f63SAdrian Chadd 		return (0);
591ef0d8f63SAdrian Chadd }
592ef0d8f63SAdrian Chadd 
5938a1b9b6aSSam Leffler struct ieee80211_key *
59415395998SAdrian Chadd ieee80211_crypto_get_txkey(struct ieee80211_node *ni, struct mbuf *m)
5958a1b9b6aSSam Leffler {
596b032f27cSSam Leffler 	struct ieee80211vap *vap = ni->ni_vap;
5978a1b9b6aSSam Leffler 	struct ieee80211_frame *wh;
5988a1b9b6aSSam Leffler 
5998a1b9b6aSSam Leffler 	/*
6008a1b9b6aSSam Leffler 	 * Multicast traffic always uses the multicast key.
60161605e0aSdomienschepers 	 *
60261605e0aSdomienschepers 	 * Historically we would fall back to the default
60361605e0aSdomienschepers 	 * transmit key if there was no unicast key.  This
60461605e0aSdomienschepers 	 * behaviour was documented up to IEEE Std 802.11-2016,
60561605e0aSdomienschepers 	 * 12.9.2.2 Per-MSDU/Per-A-MSDU Tx pseudocode, in the
60661605e0aSdomienschepers 	 * 'else' case but is no longer in later versions of
60761605e0aSdomienschepers 	 * the standard.  Additionally falling back to the
60861605e0aSdomienschepers 	 * group key for unicast was a security risk.
6098a1b9b6aSSam Leffler 	 */
6108a1b9b6aSSam Leffler 	wh = mtod(m, struct ieee80211_frame *);
61161605e0aSdomienschepers 	if (IEEE80211_IS_MULTICAST(wh->i_addr1)) {
612b032f27cSSam Leffler 		if (vap->iv_def_txkey == IEEE80211_KEYIX_NONE) {
613b032f27cSSam Leffler 			IEEE80211_NOTE_MAC(vap, IEEE80211_MSG_CRYPTO,
614b032f27cSSam Leffler 			    wh->i_addr1,
615b032f27cSSam Leffler 			    "no default transmit key (%s) deftxkey %u",
616b032f27cSSam Leffler 			    __func__, vap->iv_def_txkey);
617b032f27cSSam Leffler 			vap->iv_stats.is_tx_nodefkey++;
6188a1b9b6aSSam Leffler 			return NULL;
6198a1b9b6aSSam Leffler 		}
62015395998SAdrian Chadd 		return &vap->iv_nw_keys[vap->iv_def_txkey];
62115395998SAdrian Chadd 	}
622ef0d8f63SAdrian Chadd 
62361605e0aSdomienschepers 	if (IEEE80211_KEY_UNDEFINED(&ni->ni_ucastkey))
62461605e0aSdomienschepers 		return NULL;
62515395998SAdrian Chadd 	return &ni->ni_ucastkey;
62615395998SAdrian Chadd }
62715395998SAdrian Chadd 
62815395998SAdrian Chadd /*
62915395998SAdrian Chadd  * Add privacy headers appropriate for the specified key.
63015395998SAdrian Chadd  */
63115395998SAdrian Chadd struct ieee80211_key *
63215395998SAdrian Chadd ieee80211_crypto_encap(struct ieee80211_node *ni, struct mbuf *m)
63315395998SAdrian Chadd {
63415395998SAdrian Chadd 	struct ieee80211_key *k;
63515395998SAdrian Chadd 	const struct ieee80211_cipher *cip;
63615395998SAdrian Chadd 
63715395998SAdrian Chadd 	if ((k = ieee80211_crypto_get_txkey(ni, m)) != NULL) {
6388a1b9b6aSSam Leffler 		cip = k->wk_cipher;
639ef0d8f63SAdrian Chadd 		return (cip->ic_encap(k, m) ? k : NULL);
6408a1b9b6aSSam Leffler 	}
6418a1b9b6aSSam Leffler 
64215395998SAdrian Chadd 	return NULL;
64315395998SAdrian Chadd }
64415395998SAdrian Chadd 
6458a1b9b6aSSam Leffler /*
6468a1b9b6aSSam Leffler  * Validate and strip privacy headers (and trailer) for a
6478a1b9b6aSSam Leffler  * received frame that has the WEP/Privacy bit set.
6488a1b9b6aSSam Leffler  */
649fe75b452SAdrian Chadd int
650fe75b452SAdrian Chadd ieee80211_crypto_decap(struct ieee80211_node *ni, struct mbuf *m, int hdrlen,
651fe75b452SAdrian Chadd     struct ieee80211_key **key)
6528a1b9b6aSSam Leffler {
6538a1b9b6aSSam Leffler #define	IEEE80211_WEP_HDRLEN	(IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN)
6548a1b9b6aSSam Leffler #define	IEEE80211_WEP_MINLEN \
655a92c6eb0SSam Leffler 	(sizeof(struct ieee80211_frame) + \
6568a1b9b6aSSam Leffler 	IEEE80211_WEP_HDRLEN + IEEE80211_WEP_CRCLEN)
657b032f27cSSam Leffler 	struct ieee80211vap *vap = ni->ni_vap;
6588a1b9b6aSSam Leffler 	struct ieee80211_key *k;
6598a1b9b6aSSam Leffler 	struct ieee80211_frame *wh;
660fe75b452SAdrian Chadd 	const struct ieee80211_rx_stats *rxs;
6618a1b9b6aSSam Leffler 	const struct ieee80211_cipher *cip;
66268e8e04eSSam Leffler 	uint8_t keyid;
6638a1b9b6aSSam Leffler 
664fe75b452SAdrian Chadd 	/*
665fe75b452SAdrian Chadd 	 * Check for hardware decryption and IV stripping.
666fe75b452SAdrian Chadd 	 * If the IV is stripped then we definitely can't find a key.
667fe75b452SAdrian Chadd 	 * Set the key to NULL but return true; upper layers
668fe75b452SAdrian Chadd 	 * will need to handle a NULL key for a successful
669fe75b452SAdrian Chadd 	 * decrypt.
670fe75b452SAdrian Chadd 	 */
671fe75b452SAdrian Chadd 	rxs = ieee80211_get_rx_params_ptr(m);
672fe75b452SAdrian Chadd 	if ((rxs != NULL) && (rxs->c_pktflags & IEEE80211_RX_F_DECRYPTED)) {
673fe75b452SAdrian Chadd 		if (rxs->c_pktflags & IEEE80211_RX_F_IV_STRIP) {
674fe75b452SAdrian Chadd 			/*
675fe75b452SAdrian Chadd 			 * Hardware decrypted, IV stripped.
676fe75b452SAdrian Chadd 			 * We can't find a key with a stripped IV.
677fe75b452SAdrian Chadd 			 * Return successful.
678fe75b452SAdrian Chadd 			 */
679fe75b452SAdrian Chadd 			*key = NULL;
680fe75b452SAdrian Chadd 			return (1);
681fe75b452SAdrian Chadd 		}
682fe75b452SAdrian Chadd 	}
683fe75b452SAdrian Chadd 
6848a1b9b6aSSam Leffler 	/* NB: this minimum size data frame could be bigger */
6858a1b9b6aSSam Leffler 	if (m->m_pkthdr.len < IEEE80211_WEP_MINLEN) {
686b032f27cSSam Leffler 		IEEE80211_DPRINTF(vap, IEEE80211_MSG_ANY,
6878a1b9b6aSSam Leffler 			"%s: WEP data frame too short, len %u\n",
6888a1b9b6aSSam Leffler 			__func__, m->m_pkthdr.len);
689b032f27cSSam Leffler 		vap->iv_stats.is_rx_tooshort++;	/* XXX need unique stat? */
690fe75b452SAdrian Chadd 		*key = NULL;
691fe75b452SAdrian Chadd 		return (0);
6921a1e1d21SSam Leffler 	}
6931a1e1d21SSam Leffler 
6941a1e1d21SSam Leffler 	/*
6958a1b9b6aSSam Leffler 	 * Locate the key. If unicast and there is no unicast
6968a1b9b6aSSam Leffler 	 * key then we fall back to the key id in the header.
6978a1b9b6aSSam Leffler 	 * This assumes unicast keys are only configured when
6988a1b9b6aSSam Leffler 	 * the key id in the header is meaningless (typically 0).
6991a1e1d21SSam Leffler 	 */
7008a1b9b6aSSam Leffler 	wh = mtod(m, struct ieee80211_frame *);
701b032f27cSSam Leffler 	m_copydata(m, hdrlen + IEEE80211_WEP_IVLEN, sizeof(keyid), &keyid);
7028a1b9b6aSSam Leffler 	if (IEEE80211_IS_MULTICAST(wh->i_addr1) ||
703cda15ce1SSam Leffler 	    IEEE80211_KEY_UNDEFINED(&ni->ni_ucastkey))
704b032f27cSSam Leffler 		k = &vap->iv_nw_keys[keyid >> 6];
7051a1e1d21SSam Leffler 	else
7068a1b9b6aSSam Leffler 		k = &ni->ni_ucastkey;
7071a1e1d21SSam Leffler 
7081a1e1d21SSam Leffler 	/*
70979e0962dSAndriy Voskoboinyk 	 * Insure crypto header is contiguous and long enough for all
71079e0962dSAndriy Voskoboinyk 	 * decap work.
7111a1e1d21SSam Leffler 	 */
7128a1b9b6aSSam Leffler 	cip = k->wk_cipher;
71379e0962dSAndriy Voskoboinyk 	if (m->m_len < hdrlen + cip->ic_header) {
714b032f27cSSam Leffler 		IEEE80211_NOTE_MAC(vap, IEEE80211_MSG_CRYPTO, wh->i_addr2,
71579e0962dSAndriy Voskoboinyk 		    "frame is too short (%d < %u) for crypto decap",
71679e0962dSAndriy Voskoboinyk 		    cip->ic_name, m->m_len, hdrlen + cip->ic_header);
71779e0962dSAndriy Voskoboinyk 		vap->iv_stats.is_rx_tooshort++;
718fe75b452SAdrian Chadd 		*key = NULL;
719fe75b452SAdrian Chadd 		return (0);
7208a1b9b6aSSam Leffler 	}
7211a1e1d21SSam Leffler 
722fe75b452SAdrian Chadd 	/*
723fe75b452SAdrian Chadd 	 * Attempt decryption.
724fe75b452SAdrian Chadd 	 *
725fe75b452SAdrian Chadd 	 * If we fail then don't return the key - return NULL
726fe75b452SAdrian Chadd 	 * and an error.
727fe75b452SAdrian Chadd 	 */
728fe75b452SAdrian Chadd 	if (cip->ic_decap(k, m, hdrlen)) {
729fe75b452SAdrian Chadd 		/* success */
730fe75b452SAdrian Chadd 		*key = k;
731fe75b452SAdrian Chadd 		return (1);
732fe75b452SAdrian Chadd 	}
733fe75b452SAdrian Chadd 
734fe75b452SAdrian Chadd 	/* Failure */
735fe75b452SAdrian Chadd 	*key = NULL;
736fe75b452SAdrian Chadd 	return (0);
7378a1b9b6aSSam Leffler #undef IEEE80211_WEP_MINLEN
7388a1b9b6aSSam Leffler #undef IEEE80211_WEP_HDRLEN
7391a1e1d21SSam Leffler }
74006b2d888SSam Leffler 
741ee9d294bSAdrian Chadd /*
742ee9d294bSAdrian Chadd  * Check and remove any MIC.
743ee9d294bSAdrian Chadd  */
744ee9d294bSAdrian Chadd int
745ee9d294bSAdrian Chadd ieee80211_crypto_demic(struct ieee80211vap *vap, struct ieee80211_key *k,
746ee9d294bSAdrian Chadd     struct mbuf *m, int force)
747ee9d294bSAdrian Chadd {
748ee9d294bSAdrian Chadd 	const struct ieee80211_cipher *cip;
749ee9d294bSAdrian Chadd 	const struct ieee80211_rx_stats *rxs;
750ee9d294bSAdrian Chadd 	struct ieee80211_frame *wh;
751ee9d294bSAdrian Chadd 
752ee9d294bSAdrian Chadd 	rxs = ieee80211_get_rx_params_ptr(m);
753ee9d294bSAdrian Chadd 	wh = mtod(m, struct ieee80211_frame *);
754ee9d294bSAdrian Chadd 
755ee9d294bSAdrian Chadd 	/*
756ee9d294bSAdrian Chadd 	 * Handle demic / mic errors from hardware-decrypted offload devices.
757ee9d294bSAdrian Chadd 	 */
758ee9d294bSAdrian Chadd 	if ((rxs != NULL) && (rxs->c_pktflags & IEEE80211_RX_F_DECRYPTED)) {
759ee9d294bSAdrian Chadd 		if (rxs->c_pktflags & IEEE80211_RX_F_FAIL_MIC) {
760ee9d294bSAdrian Chadd 			/*
761ee9d294bSAdrian Chadd 			 * Hardware has said MIC failed.  We don't care about
762ee9d294bSAdrian Chadd 			 * whether it was stripped or not.
763ee9d294bSAdrian Chadd 			 *
764ee9d294bSAdrian Chadd 			 * Eventually - teach the demic methods in crypto
765ee9d294bSAdrian Chadd 			 * modules to handle a NULL key and not to dereference
766ee9d294bSAdrian Chadd 			 * it.
767ee9d294bSAdrian Chadd 			 */
768ee9d294bSAdrian Chadd 			ieee80211_notify_michael_failure(vap, wh, -1);
769ee9d294bSAdrian Chadd 			return (0);
770ee9d294bSAdrian Chadd 		}
771ee9d294bSAdrian Chadd 
772ee9d294bSAdrian Chadd 		if (rxs->c_pktflags & IEEE80211_RX_F_MMIC_STRIP) {
773ee9d294bSAdrian Chadd 			/*
774ee9d294bSAdrian Chadd 			 * Hardware has decrypted and not indicated a
775ee9d294bSAdrian Chadd 			 * MIC failure and has stripped the MIC.
776ee9d294bSAdrian Chadd 			 * We may not have a key, so for now just
777ee9d294bSAdrian Chadd 			 * return OK.
778ee9d294bSAdrian Chadd 			 */
779ee9d294bSAdrian Chadd 			return (1);
780ee9d294bSAdrian Chadd 		}
781ee9d294bSAdrian Chadd 	}
782ee9d294bSAdrian Chadd 
783ee9d294bSAdrian Chadd 	/*
784ee9d294bSAdrian Chadd 	 * If we don't have a key at this point then we don't
785ee9d294bSAdrian Chadd 	 * have to demic anything.
786ee9d294bSAdrian Chadd 	 */
787ee9d294bSAdrian Chadd 	if (k == NULL)
788ee9d294bSAdrian Chadd 		return (1);
789ee9d294bSAdrian Chadd 
790ee9d294bSAdrian Chadd 	cip = k->wk_cipher;
791ee9d294bSAdrian Chadd 	return (cip->ic_miclen > 0 ? cip->ic_demic(k, m, force) : 1);
792ee9d294bSAdrian Chadd }
793ee9d294bSAdrian Chadd 
79406b2d888SSam Leffler static void
79506b2d888SSam Leffler load_ucastkey(void *arg, struct ieee80211_node *ni)
79606b2d888SSam Leffler {
79706b2d888SSam Leffler 	struct ieee80211vap *vap = ni->ni_vap;
79806b2d888SSam Leffler 	struct ieee80211_key *k;
79906b2d888SSam Leffler 
80006b2d888SSam Leffler 	if (vap->iv_state != IEEE80211_S_RUN)
80106b2d888SSam Leffler 		return;
80206b2d888SSam Leffler 	k = &ni->ni_ucastkey;
803e6e547d5SSam Leffler 	if (k->wk_flags & IEEE80211_KEY_DEVKEY)
80406b2d888SSam Leffler 		dev_key_set(vap, k);
80506b2d888SSam Leffler }
80606b2d888SSam Leffler 
80706b2d888SSam Leffler /*
80806b2d888SSam Leffler  * Re-load all keys known to the 802.11 layer that may
80906b2d888SSam Leffler  * have hardware state backing them.  This is used by
81006b2d888SSam Leffler  * drivers on resume to push keys down into the device.
81106b2d888SSam Leffler  */
81206b2d888SSam Leffler void
81306b2d888SSam Leffler ieee80211_crypto_reload_keys(struct ieee80211com *ic)
81406b2d888SSam Leffler {
81506b2d888SSam Leffler 	struct ieee80211vap *vap;
81606b2d888SSam Leffler 	int i;
81706b2d888SSam Leffler 
81806b2d888SSam Leffler 	/*
81906b2d888SSam Leffler 	 * Keys in the global key table of each vap.
82006b2d888SSam Leffler 	 */
82106b2d888SSam Leffler 	/* NB: used only during resume so don't lock for now */
82206b2d888SSam Leffler 	TAILQ_FOREACH(vap, &ic->ic_vaps, iv_next) {
82306b2d888SSam Leffler 		if (vap->iv_state != IEEE80211_S_RUN)
82406b2d888SSam Leffler 			continue;
82506b2d888SSam Leffler 		for (i = 0; i < IEEE80211_WEP_NKID; i++) {
82606b2d888SSam Leffler 			const struct ieee80211_key *k = &vap->iv_nw_keys[i];
827e6e547d5SSam Leffler 			if (k->wk_flags & IEEE80211_KEY_DEVKEY)
82806b2d888SSam Leffler 				dev_key_set(vap, k);
82906b2d888SSam Leffler 		}
83006b2d888SSam Leffler 	}
83106b2d888SSam Leffler 	/*
83206b2d888SSam Leffler 	 * Unicast keys.
83306b2d888SSam Leffler 	 */
83406b2d888SSam Leffler 	ieee80211_iterate_nodes(&ic->ic_sta, load_ucastkey, NULL);
83506b2d888SSam Leffler }
836781487cfSAdrian Chadd 
837781487cfSAdrian Chadd /*
838781487cfSAdrian Chadd  * Set the default key index for WEP, or KEYIX_NONE for no default TX key.
839781487cfSAdrian Chadd  *
840781487cfSAdrian Chadd  * This should be done as part of a key update block (iv_key_update_begin /
841781487cfSAdrian Chadd  * iv_key_update_end.)
842781487cfSAdrian Chadd  */
843781487cfSAdrian Chadd void
844781487cfSAdrian Chadd ieee80211_crypto_set_deftxkey(struct ieee80211vap *vap, ieee80211_keyix kid)
845781487cfSAdrian Chadd {
846781487cfSAdrian Chadd 
847781487cfSAdrian Chadd 	/* XXX TODO: assert we're in a key update block */
848781487cfSAdrian Chadd 
849781487cfSAdrian Chadd 	vap->iv_update_deftxkey(vap, kid);
850781487cfSAdrian Chadd }
851