• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2002-2005, Instant802 Networks, Inc.
3  * Copyright 2005-2006, Devicescape Software, Inc.
4  * Copyright 2006-2007	Jiri Benc <jbenc@suse.cz>
5  * Copyright 2007-2008	Johannes Berg <johannes@sipsolutions.net>
6  * Copyright 2013-2014  Intel Mobile Communications GmbH
7  * Copyright 2017	Intel Deutschland GmbH
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License version 2 as
11  * published by the Free Software Foundation.
12  */
13 
14 #include <linux/if_ether.h>
15 #include <linux/etherdevice.h>
16 #include <linux/list.h>
17 #include <linux/rcupdate.h>
18 #include <linux/rtnetlink.h>
19 #include <linux/slab.h>
20 #include <linux/export.h>
21 #include <net/mac80211.h>
22 #include <crypto/algapi.h>
23 #include <asm/unaligned.h>
24 #include "ieee80211_i.h"
25 #include "driver-ops.h"
26 #include "debugfs_key.h"
27 #include "aes_ccm.h"
28 #include "aes_cmac.h"
29 #include "aes_gmac.h"
30 #include "aes_gcm.h"
31 
32 
33 /**
34  * DOC: Key handling basics
35  *
36  * Key handling in mac80211 is done based on per-interface (sub_if_data)
37  * keys and per-station keys. Since each station belongs to an interface,
38  * each station key also belongs to that interface.
39  *
40  * Hardware acceleration is done on a best-effort basis for algorithms
41  * that are implemented in software,  for each key the hardware is asked
42  * to enable that key for offloading but if it cannot do that the key is
43  * simply kept for software encryption (unless it is for an algorithm
44  * that isn't implemented in software).
45  * There is currently no way of knowing whether a key is handled in SW
46  * or HW except by looking into debugfs.
47  *
48  * All key management is internally protected by a mutex. Within all
49  * other parts of mac80211, key references are, just as STA structure
50  * references, protected by RCU. Note, however, that some things are
51  * unprotected, namely the key->sta dereferences within the hardware
52  * acceleration functions. This means that sta_info_destroy() must
53  * remove the key which waits for an RCU grace period.
54  */
55 
56 static const u8 bcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
57 
assert_key_lock(struct ieee80211_local * local)58 static void assert_key_lock(struct ieee80211_local *local)
59 {
60 	lockdep_assert_held(&local->key_mtx);
61 }
62 
63 static void
update_vlan_tailroom_need_count(struct ieee80211_sub_if_data * sdata,int delta)64 update_vlan_tailroom_need_count(struct ieee80211_sub_if_data *sdata, int delta)
65 {
66 	struct ieee80211_sub_if_data *vlan;
67 
68 	if (sdata->vif.type != NL80211_IFTYPE_AP)
69 		return;
70 
71 	/* crypto_tx_tailroom_needed_cnt is protected by this */
72 	assert_key_lock(sdata->local);
73 
74 	rcu_read_lock();
75 
76 	list_for_each_entry_rcu(vlan, &sdata->u.ap.vlans, u.vlan.list)
77 		vlan->crypto_tx_tailroom_needed_cnt += delta;
78 
79 	rcu_read_unlock();
80 }
81 
increment_tailroom_need_count(struct ieee80211_sub_if_data * sdata)82 static void increment_tailroom_need_count(struct ieee80211_sub_if_data *sdata)
83 {
84 	/*
85 	 * When this count is zero, SKB resizing for allocating tailroom
86 	 * for IV or MMIC is skipped. But, this check has created two race
87 	 * cases in xmit path while transiting from zero count to one:
88 	 *
89 	 * 1. SKB resize was skipped because no key was added but just before
90 	 * the xmit key is added and SW encryption kicks off.
91 	 *
92 	 * 2. SKB resize was skipped because all the keys were hw planted but
93 	 * just before xmit one of the key is deleted and SW encryption kicks
94 	 * off.
95 	 *
96 	 * In both the above case SW encryption will find not enough space for
97 	 * tailroom and exits with WARN_ON. (See WARN_ONs at wpa.c)
98 	 *
99 	 * Solution has been explained at
100 	 * http://mid.gmane.org/1308590980.4322.19.camel@jlt3.sipsolutions.net
101 	 */
102 
103 	assert_key_lock(sdata->local);
104 
105 	update_vlan_tailroom_need_count(sdata, 1);
106 
107 	if (!sdata->crypto_tx_tailroom_needed_cnt++) {
108 		/*
109 		 * Flush all XMIT packets currently using HW encryption or no
110 		 * encryption at all if the count transition is from 0 -> 1.
111 		 */
112 		synchronize_net();
113 	}
114 }
115 
decrease_tailroom_need_count(struct ieee80211_sub_if_data * sdata,int delta)116 static void decrease_tailroom_need_count(struct ieee80211_sub_if_data *sdata,
117 					 int delta)
118 {
119 	assert_key_lock(sdata->local);
120 
121 	WARN_ON_ONCE(sdata->crypto_tx_tailroom_needed_cnt < delta);
122 
123 	update_vlan_tailroom_need_count(sdata, -delta);
124 	sdata->crypto_tx_tailroom_needed_cnt -= delta;
125 }
126 
ieee80211_key_enable_hw_accel(struct ieee80211_key * key)127 static int ieee80211_key_enable_hw_accel(struct ieee80211_key *key)
128 {
129 	struct ieee80211_sub_if_data *sdata;
130 	struct sta_info *sta;
131 	int ret = -EOPNOTSUPP;
132 
133 	might_sleep();
134 
135 	if (key->flags & KEY_FLAG_TAINTED) {
136 		/* If we get here, it's during resume and the key is
137 		 * tainted so shouldn't be used/programmed any more.
138 		 * However, its flags may still indicate that it was
139 		 * programmed into the device (since we're in resume)
140 		 * so clear that flag now to avoid trying to remove
141 		 * it again later.
142 		 */
143 		key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
144 		return -EINVAL;
145 	}
146 
147 	if (!key->local->ops->set_key)
148 		goto out_unsupported;
149 
150 	assert_key_lock(key->local);
151 
152 	sta = key->sta;
153 
154 	/*
155 	 * If this is a per-STA GTK, check if it
156 	 * is supported; if not, return.
157 	 */
158 	if (sta && !(key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE) &&
159 	    !ieee80211_hw_check(&key->local->hw, SUPPORTS_PER_STA_GTK))
160 		goto out_unsupported;
161 
162 	if (sta && !sta->uploaded)
163 		goto out_unsupported;
164 
165 	sdata = key->sdata;
166 	if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
167 		/*
168 		 * The driver doesn't know anything about VLAN interfaces.
169 		 * Hence, don't send GTKs for VLAN interfaces to the driver.
170 		 */
171 		if (!(key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE))
172 			goto out_unsupported;
173 	}
174 
175 	ret = drv_set_key(key->local, SET_KEY, sdata,
176 			  sta ? &sta->sta : NULL, &key->conf);
177 
178 	if (!ret) {
179 		key->flags |= KEY_FLAG_UPLOADED_TO_HARDWARE;
180 
181 		if (!((key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC) ||
182 		      (key->conf.flags & IEEE80211_KEY_FLAG_RESERVE_TAILROOM)))
183 			decrease_tailroom_need_count(sdata, 1);
184 
185 		WARN_ON((key->conf.flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE) &&
186 			(key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV));
187 
188 		return 0;
189 	}
190 
191 	if (ret != -ENOSPC && ret != -EOPNOTSUPP && ret != 1)
192 		sdata_err(sdata,
193 			  "failed to set key (%d, %pM) to hardware (%d)\n",
194 			  key->conf.keyidx,
195 			  sta ? sta->sta.addr : bcast_addr, ret);
196 
197  out_unsupported:
198 	switch (key->conf.cipher) {
199 	case WLAN_CIPHER_SUITE_WEP40:
200 	case WLAN_CIPHER_SUITE_WEP104:
201 	case WLAN_CIPHER_SUITE_TKIP:
202 	case WLAN_CIPHER_SUITE_CCMP:
203 	case WLAN_CIPHER_SUITE_CCMP_256:
204 	case WLAN_CIPHER_SUITE_AES_CMAC:
205 	case WLAN_CIPHER_SUITE_BIP_CMAC_256:
206 	case WLAN_CIPHER_SUITE_BIP_GMAC_128:
207 	case WLAN_CIPHER_SUITE_BIP_GMAC_256:
208 	case WLAN_CIPHER_SUITE_GCMP:
209 	case WLAN_CIPHER_SUITE_GCMP_256:
210 		/* all of these we can do in software - if driver can */
211 		if (ret == 1)
212 			return 0;
213 		if (ieee80211_hw_check(&key->local->hw, SW_CRYPTO_CONTROL))
214 			return -EINVAL;
215 		return 0;
216 	default:
217 		return -EINVAL;
218 	}
219 }
220 
ieee80211_key_disable_hw_accel(struct ieee80211_key * key)221 static void ieee80211_key_disable_hw_accel(struct ieee80211_key *key)
222 {
223 	struct ieee80211_sub_if_data *sdata;
224 	struct sta_info *sta;
225 	int ret;
226 
227 	might_sleep();
228 
229 	if (!key || !key->local->ops->set_key)
230 		return;
231 
232 	assert_key_lock(key->local);
233 
234 	if (!(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
235 		return;
236 
237 	sta = key->sta;
238 	sdata = key->sdata;
239 
240 	if (!((key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC) ||
241 	      (key->conf.flags & IEEE80211_KEY_FLAG_RESERVE_TAILROOM)))
242 		increment_tailroom_need_count(sdata);
243 
244 	ret = drv_set_key(key->local, DISABLE_KEY, sdata,
245 			  sta ? &sta->sta : NULL, &key->conf);
246 
247 	if (ret)
248 		sdata_err(sdata,
249 			  "failed to remove key (%d, %pM) from hardware (%d)\n",
250 			  key->conf.keyidx,
251 			  sta ? sta->sta.addr : bcast_addr, ret);
252 
253 	key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
254 }
255 
__ieee80211_set_default_key(struct ieee80211_sub_if_data * sdata,int idx,bool uni,bool multi)256 static void __ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata,
257 					int idx, bool uni, bool multi)
258 {
259 	struct ieee80211_key *key = NULL;
260 
261 	assert_key_lock(sdata->local);
262 
263 	if (idx >= 0 && idx < NUM_DEFAULT_KEYS)
264 		key = key_mtx_dereference(sdata->local, sdata->keys[idx]);
265 
266 	if (uni) {
267 		rcu_assign_pointer(sdata->default_unicast_key, key);
268 		ieee80211_check_fast_xmit_iface(sdata);
269 		drv_set_default_unicast_key(sdata->local, sdata, idx);
270 	}
271 
272 	if (multi)
273 		rcu_assign_pointer(sdata->default_multicast_key, key);
274 
275 	ieee80211_debugfs_key_update_default(sdata);
276 }
277 
ieee80211_set_default_key(struct ieee80211_sub_if_data * sdata,int idx,bool uni,bool multi)278 void ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata, int idx,
279 			       bool uni, bool multi)
280 {
281 	mutex_lock(&sdata->local->key_mtx);
282 	__ieee80211_set_default_key(sdata, idx, uni, multi);
283 	mutex_unlock(&sdata->local->key_mtx);
284 }
285 
286 static void
__ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data * sdata,int idx)287 __ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata, int idx)
288 {
289 	struct ieee80211_key *key = NULL;
290 
291 	assert_key_lock(sdata->local);
292 
293 	if (idx >= NUM_DEFAULT_KEYS &&
294 	    idx < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
295 		key = key_mtx_dereference(sdata->local, sdata->keys[idx]);
296 
297 	rcu_assign_pointer(sdata->default_mgmt_key, key);
298 
299 	ieee80211_debugfs_key_update_default(sdata);
300 }
301 
ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data * sdata,int idx)302 void ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata,
303 				    int idx)
304 {
305 	mutex_lock(&sdata->local->key_mtx);
306 	__ieee80211_set_default_mgmt_key(sdata, idx);
307 	mutex_unlock(&sdata->local->key_mtx);
308 }
309 
310 
ieee80211_key_replace(struct ieee80211_sub_if_data * sdata,struct sta_info * sta,bool pairwise,struct ieee80211_key * old,struct ieee80211_key * new)311 static void ieee80211_key_replace(struct ieee80211_sub_if_data *sdata,
312 				  struct sta_info *sta,
313 				  bool pairwise,
314 				  struct ieee80211_key *old,
315 				  struct ieee80211_key *new)
316 {
317 	int idx;
318 	bool defunikey, defmultikey, defmgmtkey;
319 
320 	/* caller must provide at least one old/new */
321 	if (WARN_ON(!new && !old))
322 		return;
323 
324 	if (new)
325 		list_add_tail(&new->list, &sdata->key_list);
326 
327 	WARN_ON(new && old && new->conf.keyidx != old->conf.keyidx);
328 
329 	if (old)
330 		idx = old->conf.keyidx;
331 	else
332 		idx = new->conf.keyidx;
333 
334 	if (sta) {
335 		if (pairwise) {
336 			rcu_assign_pointer(sta->ptk[idx], new);
337 			sta->ptk_idx = idx;
338 			ieee80211_check_fast_xmit(sta);
339 		} else {
340 			rcu_assign_pointer(sta->gtk[idx], new);
341 		}
342 	} else {
343 		defunikey = old &&
344 			old == key_mtx_dereference(sdata->local,
345 						sdata->default_unicast_key);
346 		defmultikey = old &&
347 			old == key_mtx_dereference(sdata->local,
348 						sdata->default_multicast_key);
349 		defmgmtkey = old &&
350 			old == key_mtx_dereference(sdata->local,
351 						sdata->default_mgmt_key);
352 
353 		if (defunikey && !new)
354 			__ieee80211_set_default_key(sdata, -1, true, false);
355 		if (defmultikey && !new)
356 			__ieee80211_set_default_key(sdata, -1, false, true);
357 		if (defmgmtkey && !new)
358 			__ieee80211_set_default_mgmt_key(sdata, -1);
359 
360 		rcu_assign_pointer(sdata->keys[idx], new);
361 		if (defunikey && new)
362 			__ieee80211_set_default_key(sdata, new->conf.keyidx,
363 						    true, false);
364 		if (defmultikey && new)
365 			__ieee80211_set_default_key(sdata, new->conf.keyidx,
366 						    false, true);
367 		if (defmgmtkey && new)
368 			__ieee80211_set_default_mgmt_key(sdata,
369 							 new->conf.keyidx);
370 	}
371 
372 	if (old)
373 		list_del(&old->list);
374 }
375 
376 struct ieee80211_key *
ieee80211_key_alloc(u32 cipher,int idx,size_t key_len,const u8 * key_data,size_t seq_len,const u8 * seq,const struct ieee80211_cipher_scheme * cs)377 ieee80211_key_alloc(u32 cipher, int idx, size_t key_len,
378 		    const u8 *key_data,
379 		    size_t seq_len, const u8 *seq,
380 		    const struct ieee80211_cipher_scheme *cs)
381 {
382 	struct ieee80211_key *key;
383 	int i, j, err;
384 
385 	if (WARN_ON(idx < 0 || idx >= NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS))
386 		return ERR_PTR(-EINVAL);
387 
388 	key = kzalloc(sizeof(struct ieee80211_key) + key_len, GFP_KERNEL);
389 	if (!key)
390 		return ERR_PTR(-ENOMEM);
391 
392 	/*
393 	 * Default to software encryption; we'll later upload the
394 	 * key to the hardware if possible.
395 	 */
396 	key->conf.flags = 0;
397 	key->flags = 0;
398 
399 	key->conf.cipher = cipher;
400 	key->conf.keyidx = idx;
401 	key->conf.keylen = key_len;
402 	switch (cipher) {
403 	case WLAN_CIPHER_SUITE_WEP40:
404 	case WLAN_CIPHER_SUITE_WEP104:
405 		key->conf.iv_len = IEEE80211_WEP_IV_LEN;
406 		key->conf.icv_len = IEEE80211_WEP_ICV_LEN;
407 		break;
408 	case WLAN_CIPHER_SUITE_TKIP:
409 		key->conf.iv_len = IEEE80211_TKIP_IV_LEN;
410 		key->conf.icv_len = IEEE80211_TKIP_ICV_LEN;
411 		if (seq) {
412 			for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
413 				key->u.tkip.rx[i].iv32 =
414 					get_unaligned_le32(&seq[2]);
415 				key->u.tkip.rx[i].iv16 =
416 					get_unaligned_le16(seq);
417 			}
418 		}
419 		spin_lock_init(&key->u.tkip.txlock);
420 		break;
421 	case WLAN_CIPHER_SUITE_CCMP:
422 		key->conf.iv_len = IEEE80211_CCMP_HDR_LEN;
423 		key->conf.icv_len = IEEE80211_CCMP_MIC_LEN;
424 		if (seq) {
425 			for (i = 0; i < IEEE80211_NUM_TIDS + 1; i++)
426 				for (j = 0; j < IEEE80211_CCMP_PN_LEN; j++)
427 					key->u.ccmp.rx_pn[i][j] =
428 						seq[IEEE80211_CCMP_PN_LEN - j - 1];
429 		}
430 		/*
431 		 * Initialize AES key state here as an optimization so that
432 		 * it does not need to be initialized for every packet.
433 		 */
434 		key->u.ccmp.tfm = ieee80211_aes_key_setup_encrypt(
435 			key_data, key_len, IEEE80211_CCMP_MIC_LEN);
436 		if (IS_ERR(key->u.ccmp.tfm)) {
437 			err = PTR_ERR(key->u.ccmp.tfm);
438 			kfree(key);
439 			return ERR_PTR(err);
440 		}
441 		break;
442 	case WLAN_CIPHER_SUITE_CCMP_256:
443 		key->conf.iv_len = IEEE80211_CCMP_256_HDR_LEN;
444 		key->conf.icv_len = IEEE80211_CCMP_256_MIC_LEN;
445 		for (i = 0; seq && i < IEEE80211_NUM_TIDS + 1; i++)
446 			for (j = 0; j < IEEE80211_CCMP_256_PN_LEN; j++)
447 				key->u.ccmp.rx_pn[i][j] =
448 					seq[IEEE80211_CCMP_256_PN_LEN - j - 1];
449 		/* Initialize AES key state here as an optimization so that
450 		 * it does not need to be initialized for every packet.
451 		 */
452 		key->u.ccmp.tfm = ieee80211_aes_key_setup_encrypt(
453 			key_data, key_len, IEEE80211_CCMP_256_MIC_LEN);
454 		if (IS_ERR(key->u.ccmp.tfm)) {
455 			err = PTR_ERR(key->u.ccmp.tfm);
456 			kfree(key);
457 			return ERR_PTR(err);
458 		}
459 		break;
460 	case WLAN_CIPHER_SUITE_AES_CMAC:
461 	case WLAN_CIPHER_SUITE_BIP_CMAC_256:
462 		key->conf.iv_len = 0;
463 		if (cipher == WLAN_CIPHER_SUITE_AES_CMAC)
464 			key->conf.icv_len = sizeof(struct ieee80211_mmie);
465 		else
466 			key->conf.icv_len = sizeof(struct ieee80211_mmie_16);
467 		if (seq)
468 			for (j = 0; j < IEEE80211_CMAC_PN_LEN; j++)
469 				key->u.aes_cmac.rx_pn[j] =
470 					seq[IEEE80211_CMAC_PN_LEN - j - 1];
471 		/*
472 		 * Initialize AES key state here as an optimization so that
473 		 * it does not need to be initialized for every packet.
474 		 */
475 		key->u.aes_cmac.tfm =
476 			ieee80211_aes_cmac_key_setup(key_data, key_len);
477 		if (IS_ERR(key->u.aes_cmac.tfm)) {
478 			err = PTR_ERR(key->u.aes_cmac.tfm);
479 			kfree(key);
480 			return ERR_PTR(err);
481 		}
482 		break;
483 	case WLAN_CIPHER_SUITE_BIP_GMAC_128:
484 	case WLAN_CIPHER_SUITE_BIP_GMAC_256:
485 		key->conf.iv_len = 0;
486 		key->conf.icv_len = sizeof(struct ieee80211_mmie_16);
487 		if (seq)
488 			for (j = 0; j < IEEE80211_GMAC_PN_LEN; j++)
489 				key->u.aes_gmac.rx_pn[j] =
490 					seq[IEEE80211_GMAC_PN_LEN - j - 1];
491 		/* Initialize AES key state here as an optimization so that
492 		 * it does not need to be initialized for every packet.
493 		 */
494 		key->u.aes_gmac.tfm =
495 			ieee80211_aes_gmac_key_setup(key_data, key_len);
496 		if (IS_ERR(key->u.aes_gmac.tfm)) {
497 			err = PTR_ERR(key->u.aes_gmac.tfm);
498 			kfree(key);
499 			return ERR_PTR(err);
500 		}
501 		break;
502 	case WLAN_CIPHER_SUITE_GCMP:
503 	case WLAN_CIPHER_SUITE_GCMP_256:
504 		key->conf.iv_len = IEEE80211_GCMP_HDR_LEN;
505 		key->conf.icv_len = IEEE80211_GCMP_MIC_LEN;
506 		for (i = 0; seq && i < IEEE80211_NUM_TIDS + 1; i++)
507 			for (j = 0; j < IEEE80211_GCMP_PN_LEN; j++)
508 				key->u.gcmp.rx_pn[i][j] =
509 					seq[IEEE80211_GCMP_PN_LEN - j - 1];
510 		/* Initialize AES key state here as an optimization so that
511 		 * it does not need to be initialized for every packet.
512 		 */
513 		key->u.gcmp.tfm = ieee80211_aes_gcm_key_setup_encrypt(key_data,
514 								      key_len);
515 		if (IS_ERR(key->u.gcmp.tfm)) {
516 			err = PTR_ERR(key->u.gcmp.tfm);
517 			kfree(key);
518 			return ERR_PTR(err);
519 		}
520 		break;
521 	default:
522 		if (cs) {
523 			if (seq_len && seq_len != cs->pn_len) {
524 				kfree(key);
525 				return ERR_PTR(-EINVAL);
526 			}
527 
528 			key->conf.iv_len = cs->hdr_len;
529 			key->conf.icv_len = cs->mic_len;
530 			for (i = 0; i < IEEE80211_NUM_TIDS + 1; i++)
531 				for (j = 0; j < seq_len; j++)
532 					key->u.gen.rx_pn[i][j] =
533 							seq[seq_len - j - 1];
534 			key->flags |= KEY_FLAG_CIPHER_SCHEME;
535 		}
536 	}
537 	memcpy(key->conf.key, key_data, key_len);
538 	INIT_LIST_HEAD(&key->list);
539 
540 	return key;
541 }
542 
ieee80211_key_free_common(struct ieee80211_key * key)543 static void ieee80211_key_free_common(struct ieee80211_key *key)
544 {
545 	switch (key->conf.cipher) {
546 	case WLAN_CIPHER_SUITE_CCMP:
547 	case WLAN_CIPHER_SUITE_CCMP_256:
548 		ieee80211_aes_key_free(key->u.ccmp.tfm);
549 		break;
550 	case WLAN_CIPHER_SUITE_AES_CMAC:
551 	case WLAN_CIPHER_SUITE_BIP_CMAC_256:
552 		ieee80211_aes_cmac_key_free(key->u.aes_cmac.tfm);
553 		break;
554 	case WLAN_CIPHER_SUITE_BIP_GMAC_128:
555 	case WLAN_CIPHER_SUITE_BIP_GMAC_256:
556 		ieee80211_aes_gmac_key_free(key->u.aes_gmac.tfm);
557 		break;
558 	case WLAN_CIPHER_SUITE_GCMP:
559 	case WLAN_CIPHER_SUITE_GCMP_256:
560 		ieee80211_aes_gcm_key_free(key->u.gcmp.tfm);
561 		break;
562 	}
563 	kzfree(key);
564 }
565 
__ieee80211_key_destroy(struct ieee80211_key * key,bool delay_tailroom)566 static void __ieee80211_key_destroy(struct ieee80211_key *key,
567 				    bool delay_tailroom)
568 {
569 	if (key->local)
570 		ieee80211_key_disable_hw_accel(key);
571 
572 	if (key->local) {
573 		struct ieee80211_sub_if_data *sdata = key->sdata;
574 
575 		ieee80211_debugfs_key_remove(key);
576 
577 		if (delay_tailroom) {
578 			/* see ieee80211_delayed_tailroom_dec */
579 			sdata->crypto_tx_tailroom_pending_dec++;
580 			schedule_delayed_work(&sdata->dec_tailroom_needed_wk,
581 					      HZ/2);
582 		} else {
583 			decrease_tailroom_need_count(sdata, 1);
584 		}
585 	}
586 
587 	ieee80211_key_free_common(key);
588 }
589 
ieee80211_key_destroy(struct ieee80211_key * key,bool delay_tailroom)590 static void ieee80211_key_destroy(struct ieee80211_key *key,
591 				  bool delay_tailroom)
592 {
593 	if (!key)
594 		return;
595 
596 	/*
597 	 * Synchronize so the TX path can no longer be using
598 	 * this key before we free/remove it.
599 	 */
600 	synchronize_net();
601 
602 	__ieee80211_key_destroy(key, delay_tailroom);
603 }
604 
ieee80211_key_free_unused(struct ieee80211_key * key)605 void ieee80211_key_free_unused(struct ieee80211_key *key)
606 {
607 	WARN_ON(key->sdata || key->local);
608 	ieee80211_key_free_common(key);
609 }
610 
ieee80211_key_identical(struct ieee80211_sub_if_data * sdata,struct ieee80211_key * old,struct ieee80211_key * new)611 static bool ieee80211_key_identical(struct ieee80211_sub_if_data *sdata,
612 				    struct ieee80211_key *old,
613 				    struct ieee80211_key *new)
614 {
615 	u8 tkip_old[WLAN_KEY_LEN_TKIP], tkip_new[WLAN_KEY_LEN_TKIP];
616 	u8 *tk_old, *tk_new;
617 
618 	if (!old || new->conf.keylen != old->conf.keylen)
619 		return false;
620 
621 	tk_old = old->conf.key;
622 	tk_new = new->conf.key;
623 
624 	/*
625 	 * In station mode, don't compare the TX MIC key, as it's never used
626 	 * and offloaded rekeying may not care to send it to the host. This
627 	 * is the case in iwlwifi, for example.
628 	 */
629 	if (sdata->vif.type == NL80211_IFTYPE_STATION &&
630 	    new->conf.cipher == WLAN_CIPHER_SUITE_TKIP &&
631 	    new->conf.keylen == WLAN_KEY_LEN_TKIP &&
632 	    !(new->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
633 		memcpy(tkip_old, tk_old, WLAN_KEY_LEN_TKIP);
634 		memcpy(tkip_new, tk_new, WLAN_KEY_LEN_TKIP);
635 		memset(tkip_old + NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY, 0, 8);
636 		memset(tkip_new + NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY, 0, 8);
637 		tk_old = tkip_old;
638 		tk_new = tkip_new;
639 	}
640 
641 	return !crypto_memneq(tk_old, tk_new, new->conf.keylen);
642 }
643 
ieee80211_key_link(struct ieee80211_key * key,struct ieee80211_sub_if_data * sdata,struct sta_info * sta)644 int ieee80211_key_link(struct ieee80211_key *key,
645 		       struct ieee80211_sub_if_data *sdata,
646 		       struct sta_info *sta)
647 {
648 	struct ieee80211_local *local = sdata->local;
649 	static atomic_t key_color = ATOMIC_INIT(0);
650 	struct ieee80211_key *old_key;
651 	int idx = key->conf.keyidx;
652 	bool pairwise = key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE;
653 	/*
654 	 * We want to delay tailroom updates only for station - in that
655 	 * case it helps roaming speed, but in other cases it hurts and
656 	 * can cause warnings to appear.
657 	 */
658 	bool delay_tailroom = sdata->vif.type == NL80211_IFTYPE_STATION;
659 	int ret;
660 
661 	mutex_lock(&sdata->local->key_mtx);
662 
663 	if (sta && pairwise)
664 		old_key = key_mtx_dereference(sdata->local, sta->ptk[idx]);
665 	else if (sta)
666 		old_key = key_mtx_dereference(sdata->local, sta->gtk[idx]);
667 	else
668 		old_key = key_mtx_dereference(sdata->local, sdata->keys[idx]);
669 
670 	/*
671 	 * Silently accept key re-installation without really installing the
672 	 * new version of the key to avoid nonce reuse or replay issues.
673 	 */
674 	if (ieee80211_key_identical(sdata, old_key, key)) {
675 		ieee80211_key_free_unused(key);
676 		ret = 0;
677 		goto out;
678 	}
679 
680 	key->local = sdata->local;
681 	key->sdata = sdata;
682 	key->sta = sta;
683 
684 	/*
685 	 * Assign a unique ID to every key so we can easily prevent mixed
686 	 * key and fragment cache attacks.
687 	 */
688 	key->color = atomic_inc_return(&key_color);
689 
690 	increment_tailroom_need_count(sdata);
691 
692 	ieee80211_key_replace(sdata, sta, pairwise, old_key, key);
693 	ieee80211_key_destroy(old_key, delay_tailroom);
694 
695 	ieee80211_debugfs_key_add(key);
696 
697 	if (!local->wowlan) {
698 		ret = ieee80211_key_enable_hw_accel(key);
699 		if (ret)
700 			ieee80211_key_free(key, delay_tailroom);
701 	} else {
702 		ret = 0;
703 	}
704 
705  out:
706 	mutex_unlock(&sdata->local->key_mtx);
707 
708 	return ret;
709 }
710 
ieee80211_key_free(struct ieee80211_key * key,bool delay_tailroom)711 void ieee80211_key_free(struct ieee80211_key *key, bool delay_tailroom)
712 {
713 	if (!key)
714 		return;
715 
716 	/*
717 	 * Replace key with nothingness if it was ever used.
718 	 */
719 	if (key->sdata)
720 		ieee80211_key_replace(key->sdata, key->sta,
721 				key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE,
722 				key, NULL);
723 	ieee80211_key_destroy(key, delay_tailroom);
724 }
725 
ieee80211_enable_keys(struct ieee80211_sub_if_data * sdata)726 void ieee80211_enable_keys(struct ieee80211_sub_if_data *sdata)
727 {
728 	struct ieee80211_key *key;
729 	struct ieee80211_sub_if_data *vlan;
730 
731 	ASSERT_RTNL();
732 
733 	if (WARN_ON(!ieee80211_sdata_running(sdata)))
734 		return;
735 
736 	mutex_lock(&sdata->local->key_mtx);
737 
738 	WARN_ON_ONCE(sdata->crypto_tx_tailroom_needed_cnt ||
739 		     sdata->crypto_tx_tailroom_pending_dec);
740 
741 	if (sdata->vif.type == NL80211_IFTYPE_AP) {
742 		list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
743 			WARN_ON_ONCE(vlan->crypto_tx_tailroom_needed_cnt ||
744 				     vlan->crypto_tx_tailroom_pending_dec);
745 	}
746 
747 	list_for_each_entry(key, &sdata->key_list, list) {
748 		increment_tailroom_need_count(sdata);
749 		ieee80211_key_enable_hw_accel(key);
750 	}
751 
752 	mutex_unlock(&sdata->local->key_mtx);
753 }
754 
ieee80211_reset_crypto_tx_tailroom(struct ieee80211_sub_if_data * sdata)755 void ieee80211_reset_crypto_tx_tailroom(struct ieee80211_sub_if_data *sdata)
756 {
757 	struct ieee80211_sub_if_data *vlan;
758 
759 	mutex_lock(&sdata->local->key_mtx);
760 
761 	sdata->crypto_tx_tailroom_needed_cnt = 0;
762 
763 	if (sdata->vif.type == NL80211_IFTYPE_AP) {
764 		list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
765 			vlan->crypto_tx_tailroom_needed_cnt = 0;
766 	}
767 
768 	mutex_unlock(&sdata->local->key_mtx);
769 }
770 
ieee80211_iter_keys(struct ieee80211_hw * hw,struct ieee80211_vif * vif,void (* iter)(struct ieee80211_hw * hw,struct ieee80211_vif * vif,struct ieee80211_sta * sta,struct ieee80211_key_conf * key,void * data),void * iter_data)771 void ieee80211_iter_keys(struct ieee80211_hw *hw,
772 			 struct ieee80211_vif *vif,
773 			 void (*iter)(struct ieee80211_hw *hw,
774 				      struct ieee80211_vif *vif,
775 				      struct ieee80211_sta *sta,
776 				      struct ieee80211_key_conf *key,
777 				      void *data),
778 			 void *iter_data)
779 {
780 	struct ieee80211_local *local = hw_to_local(hw);
781 	struct ieee80211_key *key, *tmp;
782 	struct ieee80211_sub_if_data *sdata;
783 
784 	ASSERT_RTNL();
785 
786 	mutex_lock(&local->key_mtx);
787 	if (vif) {
788 		sdata = vif_to_sdata(vif);
789 		list_for_each_entry_safe(key, tmp, &sdata->key_list, list)
790 			iter(hw, &sdata->vif,
791 			     key->sta ? &key->sta->sta : NULL,
792 			     &key->conf, iter_data);
793 	} else {
794 		list_for_each_entry(sdata, &local->interfaces, list)
795 			list_for_each_entry_safe(key, tmp,
796 						 &sdata->key_list, list)
797 				iter(hw, &sdata->vif,
798 				     key->sta ? &key->sta->sta : NULL,
799 				     &key->conf, iter_data);
800 	}
801 	mutex_unlock(&local->key_mtx);
802 }
803 EXPORT_SYMBOL(ieee80211_iter_keys);
804 
ieee80211_free_keys_iface(struct ieee80211_sub_if_data * sdata,struct list_head * keys)805 static void ieee80211_free_keys_iface(struct ieee80211_sub_if_data *sdata,
806 				      struct list_head *keys)
807 {
808 	struct ieee80211_key *key, *tmp;
809 
810 	decrease_tailroom_need_count(sdata,
811 				     sdata->crypto_tx_tailroom_pending_dec);
812 	sdata->crypto_tx_tailroom_pending_dec = 0;
813 
814 	ieee80211_debugfs_key_remove_mgmt_default(sdata);
815 
816 	list_for_each_entry_safe(key, tmp, &sdata->key_list, list) {
817 		ieee80211_key_replace(key->sdata, key->sta,
818 				key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE,
819 				key, NULL);
820 		list_add_tail(&key->list, keys);
821 	}
822 
823 	ieee80211_debugfs_key_update_default(sdata);
824 }
825 
ieee80211_free_keys(struct ieee80211_sub_if_data * sdata,bool force_synchronize)826 void ieee80211_free_keys(struct ieee80211_sub_if_data *sdata,
827 			 bool force_synchronize)
828 {
829 	struct ieee80211_local *local = sdata->local;
830 	struct ieee80211_sub_if_data *vlan;
831 	struct ieee80211_sub_if_data *master;
832 	struct ieee80211_key *key, *tmp;
833 	LIST_HEAD(keys);
834 
835 	cancel_delayed_work_sync(&sdata->dec_tailroom_needed_wk);
836 
837 	mutex_lock(&local->key_mtx);
838 
839 	ieee80211_free_keys_iface(sdata, &keys);
840 
841 	if (sdata->vif.type == NL80211_IFTYPE_AP) {
842 		list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
843 			ieee80211_free_keys_iface(vlan, &keys);
844 	}
845 
846 	if (!list_empty(&keys) || force_synchronize)
847 		synchronize_net();
848 	list_for_each_entry_safe(key, tmp, &keys, list)
849 		__ieee80211_key_destroy(key, false);
850 
851 	if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
852 		if (sdata->bss) {
853 			master = container_of(sdata->bss,
854 					      struct ieee80211_sub_if_data,
855 					      u.ap);
856 
857 			WARN_ON_ONCE(sdata->crypto_tx_tailroom_needed_cnt !=
858 				     master->crypto_tx_tailroom_needed_cnt);
859 		}
860 	} else {
861 		WARN_ON_ONCE(sdata->crypto_tx_tailroom_needed_cnt ||
862 			     sdata->crypto_tx_tailroom_pending_dec);
863 	}
864 
865 	if (sdata->vif.type == NL80211_IFTYPE_AP) {
866 		list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
867 			WARN_ON_ONCE(vlan->crypto_tx_tailroom_needed_cnt ||
868 				     vlan->crypto_tx_tailroom_pending_dec);
869 	}
870 
871 	mutex_unlock(&local->key_mtx);
872 }
873 
ieee80211_free_sta_keys(struct ieee80211_local * local,struct sta_info * sta)874 void ieee80211_free_sta_keys(struct ieee80211_local *local,
875 			     struct sta_info *sta)
876 {
877 	struct ieee80211_key *key;
878 	int i;
879 
880 	mutex_lock(&local->key_mtx);
881 	for (i = 0; i < ARRAY_SIZE(sta->gtk); i++) {
882 		key = key_mtx_dereference(local, sta->gtk[i]);
883 		if (!key)
884 			continue;
885 		ieee80211_key_replace(key->sdata, key->sta,
886 				key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE,
887 				key, NULL);
888 		__ieee80211_key_destroy(key, key->sdata->vif.type ==
889 					NL80211_IFTYPE_STATION);
890 	}
891 
892 	for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
893 		key = key_mtx_dereference(local, sta->ptk[i]);
894 		if (!key)
895 			continue;
896 		ieee80211_key_replace(key->sdata, key->sta,
897 				key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE,
898 				key, NULL);
899 		__ieee80211_key_destroy(key, key->sdata->vif.type ==
900 					NL80211_IFTYPE_STATION);
901 	}
902 
903 	mutex_unlock(&local->key_mtx);
904 }
905 
ieee80211_delayed_tailroom_dec(struct work_struct * wk)906 void ieee80211_delayed_tailroom_dec(struct work_struct *wk)
907 {
908 	struct ieee80211_sub_if_data *sdata;
909 
910 	sdata = container_of(wk, struct ieee80211_sub_if_data,
911 			     dec_tailroom_needed_wk.work);
912 
913 	/*
914 	 * The reason for the delayed tailroom needed decrementing is to
915 	 * make roaming faster: during roaming, all keys are first deleted
916 	 * and then new keys are installed. The first new key causes the
917 	 * crypto_tx_tailroom_needed_cnt to go from 0 to 1, which invokes
918 	 * the cost of synchronize_net() (which can be slow). Avoid this
919 	 * by deferring the crypto_tx_tailroom_needed_cnt decrementing on
920 	 * key removal for a while, so if we roam the value is larger than
921 	 * zero and no 0->1 transition happens.
922 	 *
923 	 * The cost is that if the AP switching was from an AP with keys
924 	 * to one without, we still allocate tailroom while it would no
925 	 * longer be needed. However, in the typical (fast) roaming case
926 	 * within an ESS this usually won't happen.
927 	 */
928 
929 	mutex_lock(&sdata->local->key_mtx);
930 	decrease_tailroom_need_count(sdata,
931 				     sdata->crypto_tx_tailroom_pending_dec);
932 	sdata->crypto_tx_tailroom_pending_dec = 0;
933 	mutex_unlock(&sdata->local->key_mtx);
934 }
935 
ieee80211_gtk_rekey_notify(struct ieee80211_vif * vif,const u8 * bssid,const u8 * replay_ctr,gfp_t gfp)936 void ieee80211_gtk_rekey_notify(struct ieee80211_vif *vif, const u8 *bssid,
937 				const u8 *replay_ctr, gfp_t gfp)
938 {
939 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
940 
941 	trace_api_gtk_rekey_notify(sdata, bssid, replay_ctr);
942 
943 	cfg80211_gtk_rekey_notify(sdata->dev, bssid, replay_ctr, gfp);
944 }
945 EXPORT_SYMBOL_GPL(ieee80211_gtk_rekey_notify);
946 
ieee80211_get_key_tx_seq(struct ieee80211_key_conf * keyconf,struct ieee80211_key_seq * seq)947 void ieee80211_get_key_tx_seq(struct ieee80211_key_conf *keyconf,
948 			      struct ieee80211_key_seq *seq)
949 {
950 	struct ieee80211_key *key;
951 	u64 pn64;
952 
953 	if (WARN_ON(!(keyconf->flags & IEEE80211_KEY_FLAG_GENERATE_IV)))
954 		return;
955 
956 	key = container_of(keyconf, struct ieee80211_key, conf);
957 
958 	switch (key->conf.cipher) {
959 	case WLAN_CIPHER_SUITE_TKIP:
960 		seq->tkip.iv32 = key->u.tkip.tx.iv32;
961 		seq->tkip.iv16 = key->u.tkip.tx.iv16;
962 		break;
963 	case WLAN_CIPHER_SUITE_CCMP:
964 	case WLAN_CIPHER_SUITE_CCMP_256:
965 	case WLAN_CIPHER_SUITE_AES_CMAC:
966 	case WLAN_CIPHER_SUITE_BIP_CMAC_256:
967 		BUILD_BUG_ON(offsetof(typeof(*seq), ccmp) !=
968 			     offsetof(typeof(*seq), aes_cmac));
969 	case WLAN_CIPHER_SUITE_BIP_GMAC_128:
970 	case WLAN_CIPHER_SUITE_BIP_GMAC_256:
971 		BUILD_BUG_ON(offsetof(typeof(*seq), ccmp) !=
972 			     offsetof(typeof(*seq), aes_gmac));
973 	case WLAN_CIPHER_SUITE_GCMP:
974 	case WLAN_CIPHER_SUITE_GCMP_256:
975 		BUILD_BUG_ON(offsetof(typeof(*seq), ccmp) !=
976 			     offsetof(typeof(*seq), gcmp));
977 		pn64 = atomic64_read(&key->conf.tx_pn);
978 		seq->ccmp.pn[5] = pn64;
979 		seq->ccmp.pn[4] = pn64 >> 8;
980 		seq->ccmp.pn[3] = pn64 >> 16;
981 		seq->ccmp.pn[2] = pn64 >> 24;
982 		seq->ccmp.pn[1] = pn64 >> 32;
983 		seq->ccmp.pn[0] = pn64 >> 40;
984 		break;
985 	default:
986 		WARN_ON(1);
987 	}
988 }
989 EXPORT_SYMBOL(ieee80211_get_key_tx_seq);
990 
ieee80211_get_key_rx_seq(struct ieee80211_key_conf * keyconf,int tid,struct ieee80211_key_seq * seq)991 void ieee80211_get_key_rx_seq(struct ieee80211_key_conf *keyconf,
992 			      int tid, struct ieee80211_key_seq *seq)
993 {
994 	struct ieee80211_key *key;
995 	const u8 *pn;
996 
997 	key = container_of(keyconf, struct ieee80211_key, conf);
998 
999 	switch (key->conf.cipher) {
1000 	case WLAN_CIPHER_SUITE_TKIP:
1001 		if (WARN_ON(tid < 0 || tid >= IEEE80211_NUM_TIDS))
1002 			return;
1003 		seq->tkip.iv32 = key->u.tkip.rx[tid].iv32;
1004 		seq->tkip.iv16 = key->u.tkip.rx[tid].iv16;
1005 		break;
1006 	case WLAN_CIPHER_SUITE_CCMP:
1007 	case WLAN_CIPHER_SUITE_CCMP_256:
1008 		if (WARN_ON(tid < -1 || tid >= IEEE80211_NUM_TIDS))
1009 			return;
1010 		if (tid < 0)
1011 			pn = key->u.ccmp.rx_pn[IEEE80211_NUM_TIDS];
1012 		else
1013 			pn = key->u.ccmp.rx_pn[tid];
1014 		memcpy(seq->ccmp.pn, pn, IEEE80211_CCMP_PN_LEN);
1015 		break;
1016 	case WLAN_CIPHER_SUITE_AES_CMAC:
1017 	case WLAN_CIPHER_SUITE_BIP_CMAC_256:
1018 		if (WARN_ON(tid != 0))
1019 			return;
1020 		pn = key->u.aes_cmac.rx_pn;
1021 		memcpy(seq->aes_cmac.pn, pn, IEEE80211_CMAC_PN_LEN);
1022 		break;
1023 	case WLAN_CIPHER_SUITE_BIP_GMAC_128:
1024 	case WLAN_CIPHER_SUITE_BIP_GMAC_256:
1025 		if (WARN_ON(tid != 0))
1026 			return;
1027 		pn = key->u.aes_gmac.rx_pn;
1028 		memcpy(seq->aes_gmac.pn, pn, IEEE80211_GMAC_PN_LEN);
1029 		break;
1030 	case WLAN_CIPHER_SUITE_GCMP:
1031 	case WLAN_CIPHER_SUITE_GCMP_256:
1032 		if (WARN_ON(tid < -1 || tid >= IEEE80211_NUM_TIDS))
1033 			return;
1034 		if (tid < 0)
1035 			pn = key->u.gcmp.rx_pn[IEEE80211_NUM_TIDS];
1036 		else
1037 			pn = key->u.gcmp.rx_pn[tid];
1038 		memcpy(seq->gcmp.pn, pn, IEEE80211_GCMP_PN_LEN);
1039 		break;
1040 	}
1041 }
1042 EXPORT_SYMBOL(ieee80211_get_key_rx_seq);
1043 
ieee80211_set_key_tx_seq(struct ieee80211_key_conf * keyconf,struct ieee80211_key_seq * seq)1044 void ieee80211_set_key_tx_seq(struct ieee80211_key_conf *keyconf,
1045 			      struct ieee80211_key_seq *seq)
1046 {
1047 	struct ieee80211_key *key;
1048 	u64 pn64;
1049 
1050 	key = container_of(keyconf, struct ieee80211_key, conf);
1051 
1052 	switch (key->conf.cipher) {
1053 	case WLAN_CIPHER_SUITE_TKIP:
1054 		key->u.tkip.tx.iv32 = seq->tkip.iv32;
1055 		key->u.tkip.tx.iv16 = seq->tkip.iv16;
1056 		break;
1057 	case WLAN_CIPHER_SUITE_CCMP:
1058 	case WLAN_CIPHER_SUITE_CCMP_256:
1059 	case WLAN_CIPHER_SUITE_AES_CMAC:
1060 	case WLAN_CIPHER_SUITE_BIP_CMAC_256:
1061 		BUILD_BUG_ON(offsetof(typeof(*seq), ccmp) !=
1062 			     offsetof(typeof(*seq), aes_cmac));
1063 	case WLAN_CIPHER_SUITE_BIP_GMAC_128:
1064 	case WLAN_CIPHER_SUITE_BIP_GMAC_256:
1065 		BUILD_BUG_ON(offsetof(typeof(*seq), ccmp) !=
1066 			     offsetof(typeof(*seq), aes_gmac));
1067 	case WLAN_CIPHER_SUITE_GCMP:
1068 	case WLAN_CIPHER_SUITE_GCMP_256:
1069 		BUILD_BUG_ON(offsetof(typeof(*seq), ccmp) !=
1070 			     offsetof(typeof(*seq), gcmp));
1071 		pn64 = (u64)seq->ccmp.pn[5] |
1072 		       ((u64)seq->ccmp.pn[4] << 8) |
1073 		       ((u64)seq->ccmp.pn[3] << 16) |
1074 		       ((u64)seq->ccmp.pn[2] << 24) |
1075 		       ((u64)seq->ccmp.pn[1] << 32) |
1076 		       ((u64)seq->ccmp.pn[0] << 40);
1077 		atomic64_set(&key->conf.tx_pn, pn64);
1078 		break;
1079 	default:
1080 		WARN_ON(1);
1081 		break;
1082 	}
1083 }
1084 EXPORT_SYMBOL_GPL(ieee80211_set_key_tx_seq);
1085 
ieee80211_set_key_rx_seq(struct ieee80211_key_conf * keyconf,int tid,struct ieee80211_key_seq * seq)1086 void ieee80211_set_key_rx_seq(struct ieee80211_key_conf *keyconf,
1087 			      int tid, struct ieee80211_key_seq *seq)
1088 {
1089 	struct ieee80211_key *key;
1090 	u8 *pn;
1091 
1092 	key = container_of(keyconf, struct ieee80211_key, conf);
1093 
1094 	switch (key->conf.cipher) {
1095 	case WLAN_CIPHER_SUITE_TKIP:
1096 		if (WARN_ON(tid < 0 || tid >= IEEE80211_NUM_TIDS))
1097 			return;
1098 		key->u.tkip.rx[tid].iv32 = seq->tkip.iv32;
1099 		key->u.tkip.rx[tid].iv16 = seq->tkip.iv16;
1100 		break;
1101 	case WLAN_CIPHER_SUITE_CCMP:
1102 	case WLAN_CIPHER_SUITE_CCMP_256:
1103 		if (WARN_ON(tid < -1 || tid >= IEEE80211_NUM_TIDS))
1104 			return;
1105 		if (tid < 0)
1106 			pn = key->u.ccmp.rx_pn[IEEE80211_NUM_TIDS];
1107 		else
1108 			pn = key->u.ccmp.rx_pn[tid];
1109 		memcpy(pn, seq->ccmp.pn, IEEE80211_CCMP_PN_LEN);
1110 		break;
1111 	case WLAN_CIPHER_SUITE_AES_CMAC:
1112 	case WLAN_CIPHER_SUITE_BIP_CMAC_256:
1113 		if (WARN_ON(tid != 0))
1114 			return;
1115 		pn = key->u.aes_cmac.rx_pn;
1116 		memcpy(pn, seq->aes_cmac.pn, IEEE80211_CMAC_PN_LEN);
1117 		break;
1118 	case WLAN_CIPHER_SUITE_BIP_GMAC_128:
1119 	case WLAN_CIPHER_SUITE_BIP_GMAC_256:
1120 		if (WARN_ON(tid != 0))
1121 			return;
1122 		pn = key->u.aes_gmac.rx_pn;
1123 		memcpy(pn, seq->aes_gmac.pn, IEEE80211_GMAC_PN_LEN);
1124 		break;
1125 	case WLAN_CIPHER_SUITE_GCMP:
1126 	case WLAN_CIPHER_SUITE_GCMP_256:
1127 		if (WARN_ON(tid < -1 || tid >= IEEE80211_NUM_TIDS))
1128 			return;
1129 		if (tid < 0)
1130 			pn = key->u.gcmp.rx_pn[IEEE80211_NUM_TIDS];
1131 		else
1132 			pn = key->u.gcmp.rx_pn[tid];
1133 		memcpy(pn, seq->gcmp.pn, IEEE80211_GCMP_PN_LEN);
1134 		break;
1135 	default:
1136 		WARN_ON(1);
1137 		break;
1138 	}
1139 }
1140 EXPORT_SYMBOL_GPL(ieee80211_set_key_rx_seq);
1141 
ieee80211_remove_key(struct ieee80211_key_conf * keyconf)1142 void ieee80211_remove_key(struct ieee80211_key_conf *keyconf)
1143 {
1144 	struct ieee80211_key *key;
1145 
1146 	key = container_of(keyconf, struct ieee80211_key, conf);
1147 
1148 	assert_key_lock(key->local);
1149 
1150 	/*
1151 	 * if key was uploaded, we assume the driver will/has remove(d)
1152 	 * it, so adjust bookkeeping accordingly
1153 	 */
1154 	if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) {
1155 		key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
1156 
1157 		if (!((key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC) ||
1158 		      (key->conf.flags & IEEE80211_KEY_FLAG_RESERVE_TAILROOM)))
1159 			increment_tailroom_need_count(key->sdata);
1160 	}
1161 
1162 	ieee80211_key_free(key, false);
1163 }
1164 EXPORT_SYMBOL_GPL(ieee80211_remove_key);
1165 
1166 struct ieee80211_key_conf *
ieee80211_gtk_rekey_add(struct ieee80211_vif * vif,struct ieee80211_key_conf * keyconf)1167 ieee80211_gtk_rekey_add(struct ieee80211_vif *vif,
1168 			struct ieee80211_key_conf *keyconf)
1169 {
1170 	struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1171 	struct ieee80211_local *local = sdata->local;
1172 	struct ieee80211_key *key;
1173 	int err;
1174 
1175 	if (WARN_ON(!local->wowlan))
1176 		return ERR_PTR(-EINVAL);
1177 
1178 	if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
1179 		return ERR_PTR(-EINVAL);
1180 
1181 	key = ieee80211_key_alloc(keyconf->cipher, keyconf->keyidx,
1182 				  keyconf->keylen, keyconf->key,
1183 				  0, NULL, NULL);
1184 	if (IS_ERR(key))
1185 		return ERR_CAST(key);
1186 
1187 	if (sdata->u.mgd.mfp != IEEE80211_MFP_DISABLED)
1188 		key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
1189 
1190 	err = ieee80211_key_link(key, sdata, NULL);
1191 	if (err)
1192 		return ERR_PTR(err);
1193 
1194 	return &key->conf;
1195 }
1196 EXPORT_SYMBOL_GPL(ieee80211_gtk_rekey_add);
1197