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
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/if_ether.h>
14 #include <linux/etherdevice.h>
15 #include <linux/list.h>
16 #include <linux/rcupdate.h>
17 #include <linux/rtnetlink.h>
18 #include <linux/slab.h>
19 #include <linux/export.h>
20 #include <net/mac80211.h>
21 #include <asm/unaligned.h>
22 #include "ieee80211_i.h"
23 #include "driver-ops.h"
24 #include "debugfs_key.h"
32 * DOC: Key handling basics
34 * Key handling in mac80211 is done based on per-interface (sub_if_data)
35 * keys and per-station keys. Since each station belongs to an interface,
36 * each station key also belongs to that interface.
38 * Hardware acceleration is done on a best-effort basis for algorithms
39 * that are implemented in software, for each key the hardware is asked
40 * to enable that key for offloading but if it cannot do that the key is
41 * simply kept for software encryption (unless it is for an algorithm
42 * that isn't implemented in software).
43 * There is currently no way of knowing whether a key is handled in SW
44 * or HW except by looking into debugfs.
46 * All key management is internally protected by a mutex. Within all
47 * other parts of mac80211, key references are, just as STA structure
48 * references, protected by RCU. Note, however, that some things are
49 * unprotected, namely the key->sta dereferences within the hardware
50 * acceleration functions. This means that sta_info_destroy() must
51 * remove the key which waits for an RCU grace period.
54 static const u8 bcast_addr
[ETH_ALEN
] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
56 static void assert_key_lock(struct ieee80211_local
*local
)
58 lockdep_assert_held(&local
->key_mtx
);
62 update_vlan_tailroom_need_count(struct ieee80211_sub_if_data
*sdata
, int delta
)
64 struct ieee80211_sub_if_data
*vlan
;
66 if (sdata
->vif
.type
!= NL80211_IFTYPE_AP
)
69 /* crypto_tx_tailroom_needed_cnt is protected by this */
70 assert_key_lock(sdata
->local
);
74 list_for_each_entry_rcu(vlan
, &sdata
->u
.ap
.vlans
, u
.vlan
.list
)
75 vlan
->crypto_tx_tailroom_needed_cnt
+= delta
;
80 static void increment_tailroom_need_count(struct ieee80211_sub_if_data
*sdata
)
83 * When this count is zero, SKB resizing for allocating tailroom
84 * for IV or MMIC is skipped. But, this check has created two race
85 * cases in xmit path while transiting from zero count to one:
87 * 1. SKB resize was skipped because no key was added but just before
88 * the xmit key is added and SW encryption kicks off.
90 * 2. SKB resize was skipped because all the keys were hw planted but
91 * just before xmit one of the key is deleted and SW encryption kicks
94 * In both the above case SW encryption will find not enough space for
95 * tailroom and exits with WARN_ON. (See WARN_ONs at wpa.c)
97 * Solution has been explained at
98 * http://mid.gmane.org/1308590980.4322.19.camel@jlt3.sipsolutions.net
101 assert_key_lock(sdata
->local
);
103 update_vlan_tailroom_need_count(sdata
, 1);
105 if (!sdata
->crypto_tx_tailroom_needed_cnt
++) {
107 * Flush all XMIT packets currently using HW encryption or no
108 * encryption at all if the count transition is from 0 -> 1.
114 static void decrease_tailroom_need_count(struct ieee80211_sub_if_data
*sdata
,
117 assert_key_lock(sdata
->local
);
119 WARN_ON_ONCE(sdata
->crypto_tx_tailroom_needed_cnt
< delta
);
121 update_vlan_tailroom_need_count(sdata
, -delta
);
122 sdata
->crypto_tx_tailroom_needed_cnt
-= delta
;
125 static int ieee80211_key_enable_hw_accel(struct ieee80211_key
*key
)
127 struct ieee80211_sub_if_data
*sdata
;
128 struct sta_info
*sta
;
129 int ret
= -EOPNOTSUPP
;
133 if (key
->flags
& KEY_FLAG_TAINTED
) {
134 /* If we get here, it's during resume and the key is
135 * tainted so shouldn't be used/programmed any more.
136 * However, its flags may still indicate that it was
137 * programmed into the device (since we're in resume)
138 * so clear that flag now to avoid trying to remove
141 key
->flags
&= ~KEY_FLAG_UPLOADED_TO_HARDWARE
;
145 if (!key
->local
->ops
->set_key
)
146 goto out_unsupported
;
148 assert_key_lock(key
->local
);
153 * If this is a per-STA GTK, check if it
154 * is supported; if not, return.
156 if (sta
&& !(key
->conf
.flags
& IEEE80211_KEY_FLAG_PAIRWISE
) &&
157 !ieee80211_hw_check(&key
->local
->hw
, SUPPORTS_PER_STA_GTK
))
158 goto out_unsupported
;
160 if (sta
&& !sta
->uploaded
)
161 goto out_unsupported
;
164 if (sdata
->vif
.type
== NL80211_IFTYPE_AP_VLAN
) {
166 * The driver doesn't know anything about VLAN interfaces.
167 * Hence, don't send GTKs for VLAN interfaces to the driver.
169 if (!(key
->conf
.flags
& IEEE80211_KEY_FLAG_PAIRWISE
))
170 goto out_unsupported
;
173 ret
= drv_set_key(key
->local
, SET_KEY
, sdata
,
174 sta
? &sta
->sta
: NULL
, &key
->conf
);
177 key
->flags
|= KEY_FLAG_UPLOADED_TO_HARDWARE
;
179 if (!((key
->conf
.flags
& IEEE80211_KEY_FLAG_GENERATE_MMIC
) ||
180 (key
->conf
.flags
& IEEE80211_KEY_FLAG_RESERVE_TAILROOM
)))
181 decrease_tailroom_need_count(sdata
, 1);
183 WARN_ON((key
->conf
.flags
& IEEE80211_KEY_FLAG_PUT_IV_SPACE
) &&
184 (key
->conf
.flags
& IEEE80211_KEY_FLAG_GENERATE_IV
));
189 if (ret
!= -ENOSPC
&& ret
!= -EOPNOTSUPP
&& ret
!= 1)
191 "failed to set key (%d, %pM) to hardware (%d)\n",
193 sta
? sta
->sta
.addr
: bcast_addr
, ret
);
196 switch (key
->conf
.cipher
) {
197 case WLAN_CIPHER_SUITE_WEP40
:
198 case WLAN_CIPHER_SUITE_WEP104
:
199 case WLAN_CIPHER_SUITE_TKIP
:
200 case WLAN_CIPHER_SUITE_CCMP
:
201 case WLAN_CIPHER_SUITE_CCMP_256
:
202 case WLAN_CIPHER_SUITE_AES_CMAC
:
203 case WLAN_CIPHER_SUITE_BIP_CMAC_256
:
204 case WLAN_CIPHER_SUITE_BIP_GMAC_128
:
205 case WLAN_CIPHER_SUITE_BIP_GMAC_256
:
206 case WLAN_CIPHER_SUITE_GCMP
:
207 case WLAN_CIPHER_SUITE_GCMP_256
:
208 /* all of these we can do in software - if driver can */
211 if (ieee80211_hw_check(&key
->local
->hw
, SW_CRYPTO_CONTROL
))
219 static void ieee80211_key_disable_hw_accel(struct ieee80211_key
*key
)
221 struct ieee80211_sub_if_data
*sdata
;
222 struct sta_info
*sta
;
227 if (!key
|| !key
->local
->ops
->set_key
)
230 assert_key_lock(key
->local
);
232 if (!(key
->flags
& KEY_FLAG_UPLOADED_TO_HARDWARE
))
238 if (!((key
->conf
.flags
& IEEE80211_KEY_FLAG_GENERATE_MMIC
) ||
239 (key
->conf
.flags
& IEEE80211_KEY_FLAG_RESERVE_TAILROOM
)))
240 increment_tailroom_need_count(sdata
);
242 ret
= drv_set_key(key
->local
, DISABLE_KEY
, sdata
,
243 sta
? &sta
->sta
: NULL
, &key
->conf
);
247 "failed to remove key (%d, %pM) from hardware (%d)\n",
249 sta
? sta
->sta
.addr
: bcast_addr
, ret
);
251 key
->flags
&= ~KEY_FLAG_UPLOADED_TO_HARDWARE
;
254 static void __ieee80211_set_default_key(struct ieee80211_sub_if_data
*sdata
,
255 int idx
, bool uni
, bool multi
)
257 struct ieee80211_key
*key
= NULL
;
259 assert_key_lock(sdata
->local
);
261 if (idx
>= 0 && idx
< NUM_DEFAULT_KEYS
)
262 key
= key_mtx_dereference(sdata
->local
, sdata
->keys
[idx
]);
265 rcu_assign_pointer(sdata
->default_unicast_key
, key
);
266 ieee80211_check_fast_xmit_iface(sdata
);
267 drv_set_default_unicast_key(sdata
->local
, sdata
, idx
);
271 rcu_assign_pointer(sdata
->default_multicast_key
, key
);
273 ieee80211_debugfs_key_update_default(sdata
);
276 void ieee80211_set_default_key(struct ieee80211_sub_if_data
*sdata
, int idx
,
277 bool uni
, bool multi
)
279 mutex_lock(&sdata
->local
->key_mtx
);
280 __ieee80211_set_default_key(sdata
, idx
, uni
, multi
);
281 mutex_unlock(&sdata
->local
->key_mtx
);
285 __ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data
*sdata
, int idx
)
287 struct ieee80211_key
*key
= NULL
;
289 assert_key_lock(sdata
->local
);
291 if (idx
>= NUM_DEFAULT_KEYS
&&
292 idx
< NUM_DEFAULT_KEYS
+ NUM_DEFAULT_MGMT_KEYS
)
293 key
= key_mtx_dereference(sdata
->local
, sdata
->keys
[idx
]);
295 rcu_assign_pointer(sdata
->default_mgmt_key
, key
);
297 ieee80211_debugfs_key_update_default(sdata
);
300 void ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data
*sdata
,
303 mutex_lock(&sdata
->local
->key_mtx
);
304 __ieee80211_set_default_mgmt_key(sdata
, idx
);
305 mutex_unlock(&sdata
->local
->key_mtx
);
309 static void ieee80211_key_replace(struct ieee80211_sub_if_data
*sdata
,
310 struct sta_info
*sta
,
312 struct ieee80211_key
*old
,
313 struct ieee80211_key
*new)
316 bool defunikey
, defmultikey
, defmgmtkey
;
318 /* caller must provide at least one old/new */
319 if (WARN_ON(!new && !old
))
323 list_add_tail(&new->list
, &sdata
->key_list
);
325 WARN_ON(new && old
&& new->conf
.keyidx
!= old
->conf
.keyidx
);
328 idx
= old
->conf
.keyidx
;
330 idx
= new->conf
.keyidx
;
334 rcu_assign_pointer(sta
->ptk
[idx
], new);
336 ieee80211_check_fast_xmit(sta
);
338 rcu_assign_pointer(sta
->gtk
[idx
], new);
342 old
== key_mtx_dereference(sdata
->local
,
343 sdata
->default_unicast_key
);
345 old
== key_mtx_dereference(sdata
->local
,
346 sdata
->default_multicast_key
);
348 old
== key_mtx_dereference(sdata
->local
,
349 sdata
->default_mgmt_key
);
351 if (defunikey
&& !new)
352 __ieee80211_set_default_key(sdata
, -1, true, false);
353 if (defmultikey
&& !new)
354 __ieee80211_set_default_key(sdata
, -1, false, true);
355 if (defmgmtkey
&& !new)
356 __ieee80211_set_default_mgmt_key(sdata
, -1);
358 rcu_assign_pointer(sdata
->keys
[idx
], new);
359 if (defunikey
&& new)
360 __ieee80211_set_default_key(sdata
, new->conf
.keyidx
,
362 if (defmultikey
&& new)
363 __ieee80211_set_default_key(sdata
, new->conf
.keyidx
,
365 if (defmgmtkey
&& new)
366 __ieee80211_set_default_mgmt_key(sdata
,
371 list_del(&old
->list
);
374 struct ieee80211_key
*
375 ieee80211_key_alloc(u32 cipher
, int idx
, size_t key_len
,
377 size_t seq_len
, const u8
*seq
,
378 const struct ieee80211_cipher_scheme
*cs
)
380 struct ieee80211_key
*key
;
383 if (WARN_ON(idx
< 0 || idx
>= NUM_DEFAULT_KEYS
+ NUM_DEFAULT_MGMT_KEYS
))
384 return ERR_PTR(-EINVAL
);
386 key
= kzalloc(sizeof(struct ieee80211_key
) + key_len
, GFP_KERNEL
);
388 return ERR_PTR(-ENOMEM
);
391 * Default to software encryption; we'll later upload the
392 * key to the hardware if possible.
397 key
->conf
.cipher
= cipher
;
398 key
->conf
.keyidx
= idx
;
399 key
->conf
.keylen
= key_len
;
401 case WLAN_CIPHER_SUITE_WEP40
:
402 case WLAN_CIPHER_SUITE_WEP104
:
403 key
->conf
.iv_len
= IEEE80211_WEP_IV_LEN
;
404 key
->conf
.icv_len
= IEEE80211_WEP_ICV_LEN
;
406 case WLAN_CIPHER_SUITE_TKIP
:
407 key
->conf
.iv_len
= IEEE80211_TKIP_IV_LEN
;
408 key
->conf
.icv_len
= IEEE80211_TKIP_ICV_LEN
;
410 for (i
= 0; i
< IEEE80211_NUM_TIDS
; i
++) {
411 key
->u
.tkip
.rx
[i
].iv32
=
412 get_unaligned_le32(&seq
[2]);
413 key
->u
.tkip
.rx
[i
].iv16
=
414 get_unaligned_le16(seq
);
417 spin_lock_init(&key
->u
.tkip
.txlock
);
419 case WLAN_CIPHER_SUITE_CCMP
:
420 key
->conf
.iv_len
= IEEE80211_CCMP_HDR_LEN
;
421 key
->conf
.icv_len
= IEEE80211_CCMP_MIC_LEN
;
423 for (i
= 0; i
< IEEE80211_NUM_TIDS
+ 1; i
++)
424 for (j
= 0; j
< IEEE80211_CCMP_PN_LEN
; j
++)
425 key
->u
.ccmp
.rx_pn
[i
][j
] =
426 seq
[IEEE80211_CCMP_PN_LEN
- j
- 1];
429 * Initialize AES key state here as an optimization so that
430 * it does not need to be initialized for every packet.
432 key
->u
.ccmp
.tfm
= ieee80211_aes_key_setup_encrypt(
433 key_data
, key_len
, IEEE80211_CCMP_MIC_LEN
);
434 if (IS_ERR(key
->u
.ccmp
.tfm
)) {
435 err
= PTR_ERR(key
->u
.ccmp
.tfm
);
440 case WLAN_CIPHER_SUITE_CCMP_256
:
441 key
->conf
.iv_len
= IEEE80211_CCMP_256_HDR_LEN
;
442 key
->conf
.icv_len
= IEEE80211_CCMP_256_MIC_LEN
;
443 for (i
= 0; seq
&& i
< IEEE80211_NUM_TIDS
+ 1; i
++)
444 for (j
= 0; j
< IEEE80211_CCMP_256_PN_LEN
; j
++)
445 key
->u
.ccmp
.rx_pn
[i
][j
] =
446 seq
[IEEE80211_CCMP_256_PN_LEN
- j
- 1];
447 /* Initialize AES key state here as an optimization so that
448 * it does not need to be initialized for every packet.
450 key
->u
.ccmp
.tfm
= ieee80211_aes_key_setup_encrypt(
451 key_data
, key_len
, IEEE80211_CCMP_256_MIC_LEN
);
452 if (IS_ERR(key
->u
.ccmp
.tfm
)) {
453 err
= PTR_ERR(key
->u
.ccmp
.tfm
);
458 case WLAN_CIPHER_SUITE_AES_CMAC
:
459 case WLAN_CIPHER_SUITE_BIP_CMAC_256
:
460 key
->conf
.iv_len
= 0;
461 if (cipher
== WLAN_CIPHER_SUITE_AES_CMAC
)
462 key
->conf
.icv_len
= sizeof(struct ieee80211_mmie
);
464 key
->conf
.icv_len
= sizeof(struct ieee80211_mmie_16
);
466 for (j
= 0; j
< IEEE80211_CMAC_PN_LEN
; j
++)
467 key
->u
.aes_cmac
.rx_pn
[j
] =
468 seq
[IEEE80211_CMAC_PN_LEN
- j
- 1];
470 * Initialize AES key state here as an optimization so that
471 * it does not need to be initialized for every packet.
473 key
->u
.aes_cmac
.tfm
=
474 ieee80211_aes_cmac_key_setup(key_data
, key_len
);
475 if (IS_ERR(key
->u
.aes_cmac
.tfm
)) {
476 err
= PTR_ERR(key
->u
.aes_cmac
.tfm
);
481 case WLAN_CIPHER_SUITE_BIP_GMAC_128
:
482 case WLAN_CIPHER_SUITE_BIP_GMAC_256
:
483 key
->conf
.iv_len
= 0;
484 key
->conf
.icv_len
= sizeof(struct ieee80211_mmie_16
);
486 for (j
= 0; j
< IEEE80211_GMAC_PN_LEN
; j
++)
487 key
->u
.aes_gmac
.rx_pn
[j
] =
488 seq
[IEEE80211_GMAC_PN_LEN
- j
- 1];
489 /* Initialize AES key state here as an optimization so that
490 * it does not need to be initialized for every packet.
492 key
->u
.aes_gmac
.tfm
=
493 ieee80211_aes_gmac_key_setup(key_data
, key_len
);
494 if (IS_ERR(key
->u
.aes_gmac
.tfm
)) {
495 err
= PTR_ERR(key
->u
.aes_gmac
.tfm
);
500 case WLAN_CIPHER_SUITE_GCMP
:
501 case WLAN_CIPHER_SUITE_GCMP_256
:
502 key
->conf
.iv_len
= IEEE80211_GCMP_HDR_LEN
;
503 key
->conf
.icv_len
= IEEE80211_GCMP_MIC_LEN
;
504 for (i
= 0; seq
&& i
< IEEE80211_NUM_TIDS
+ 1; i
++)
505 for (j
= 0; j
< IEEE80211_GCMP_PN_LEN
; j
++)
506 key
->u
.gcmp
.rx_pn
[i
][j
] =
507 seq
[IEEE80211_GCMP_PN_LEN
- j
- 1];
508 /* Initialize AES key state here as an optimization so that
509 * it does not need to be initialized for every packet.
511 key
->u
.gcmp
.tfm
= ieee80211_aes_gcm_key_setup_encrypt(key_data
,
513 if (IS_ERR(key
->u
.gcmp
.tfm
)) {
514 err
= PTR_ERR(key
->u
.gcmp
.tfm
);
521 if (seq_len
&& seq_len
!= cs
->pn_len
) {
523 return ERR_PTR(-EINVAL
);
526 key
->conf
.iv_len
= cs
->hdr_len
;
527 key
->conf
.icv_len
= cs
->mic_len
;
528 for (i
= 0; i
< IEEE80211_NUM_TIDS
+ 1; i
++)
529 for (j
= 0; j
< seq_len
; j
++)
530 key
->u
.gen
.rx_pn
[i
][j
] =
531 seq
[seq_len
- j
- 1];
532 key
->flags
|= KEY_FLAG_CIPHER_SCHEME
;
535 memcpy(key
->conf
.key
, key_data
, key_len
);
536 INIT_LIST_HEAD(&key
->list
);
541 static void ieee80211_key_free_common(struct ieee80211_key
*key
)
543 switch (key
->conf
.cipher
) {
544 case WLAN_CIPHER_SUITE_CCMP
:
545 case WLAN_CIPHER_SUITE_CCMP_256
:
546 ieee80211_aes_key_free(key
->u
.ccmp
.tfm
);
548 case WLAN_CIPHER_SUITE_AES_CMAC
:
549 case WLAN_CIPHER_SUITE_BIP_CMAC_256
:
550 ieee80211_aes_cmac_key_free(key
->u
.aes_cmac
.tfm
);
552 case WLAN_CIPHER_SUITE_BIP_GMAC_128
:
553 case WLAN_CIPHER_SUITE_BIP_GMAC_256
:
554 ieee80211_aes_gmac_key_free(key
->u
.aes_gmac
.tfm
);
556 case WLAN_CIPHER_SUITE_GCMP
:
557 case WLAN_CIPHER_SUITE_GCMP_256
:
558 ieee80211_aes_gcm_key_free(key
->u
.gcmp
.tfm
);
564 static void __ieee80211_key_destroy(struct ieee80211_key
*key
,
568 ieee80211_key_disable_hw_accel(key
);
571 struct ieee80211_sub_if_data
*sdata
= key
->sdata
;
573 ieee80211_debugfs_key_remove(key
);
575 if (delay_tailroom
) {
576 /* see ieee80211_delayed_tailroom_dec */
577 sdata
->crypto_tx_tailroom_pending_dec
++;
578 schedule_delayed_work(&sdata
->dec_tailroom_needed_wk
,
581 decrease_tailroom_need_count(sdata
, 1);
585 ieee80211_key_free_common(key
);
588 static void ieee80211_key_destroy(struct ieee80211_key
*key
,
595 * Synchronize so the TX path can no longer be using
596 * this key before we free/remove it.
600 __ieee80211_key_destroy(key
, delay_tailroom
);
603 void ieee80211_key_free_unused(struct ieee80211_key
*key
)
605 WARN_ON(key
->sdata
|| key
->local
);
606 ieee80211_key_free_common(key
);
609 int ieee80211_key_link(struct ieee80211_key
*key
,
610 struct ieee80211_sub_if_data
*sdata
,
611 struct sta_info
*sta
)
613 struct ieee80211_local
*local
= sdata
->local
;
614 struct ieee80211_key
*old_key
;
618 pairwise
= key
->conf
.flags
& IEEE80211_KEY_FLAG_PAIRWISE
;
619 idx
= key
->conf
.keyidx
;
620 key
->local
= sdata
->local
;
624 mutex_lock(&sdata
->local
->key_mtx
);
627 old_key
= key_mtx_dereference(sdata
->local
, sta
->ptk
[idx
]);
629 old_key
= key_mtx_dereference(sdata
->local
, sta
->gtk
[idx
]);
631 old_key
= key_mtx_dereference(sdata
->local
, sdata
->keys
[idx
]);
633 increment_tailroom_need_count(sdata
);
635 ieee80211_key_replace(sdata
, sta
, pairwise
, old_key
, key
);
636 ieee80211_key_destroy(old_key
, true);
638 ieee80211_debugfs_key_add(key
);
640 if (!local
->wowlan
) {
641 ret
= ieee80211_key_enable_hw_accel(key
);
643 ieee80211_key_free(key
, true);
648 mutex_unlock(&sdata
->local
->key_mtx
);
653 void ieee80211_key_free(struct ieee80211_key
*key
, bool delay_tailroom
)
659 * Replace key with nothingness if it was ever used.
662 ieee80211_key_replace(key
->sdata
, key
->sta
,
663 key
->conf
.flags
& IEEE80211_KEY_FLAG_PAIRWISE
,
665 ieee80211_key_destroy(key
, delay_tailroom
);
668 void ieee80211_enable_keys(struct ieee80211_sub_if_data
*sdata
)
670 struct ieee80211_key
*key
;
671 struct ieee80211_sub_if_data
*vlan
;
675 if (WARN_ON(!ieee80211_sdata_running(sdata
)))
678 mutex_lock(&sdata
->local
->key_mtx
);
680 WARN_ON_ONCE(sdata
->crypto_tx_tailroom_needed_cnt
||
681 sdata
->crypto_tx_tailroom_pending_dec
);
683 if (sdata
->vif
.type
== NL80211_IFTYPE_AP
) {
684 list_for_each_entry(vlan
, &sdata
->u
.ap
.vlans
, u
.vlan
.list
)
685 WARN_ON_ONCE(vlan
->crypto_tx_tailroom_needed_cnt
||
686 vlan
->crypto_tx_tailroom_pending_dec
);
689 list_for_each_entry(key
, &sdata
->key_list
, list
) {
690 increment_tailroom_need_count(sdata
);
691 ieee80211_key_enable_hw_accel(key
);
694 mutex_unlock(&sdata
->local
->key_mtx
);
697 void ieee80211_reset_crypto_tx_tailroom(struct ieee80211_sub_if_data
*sdata
)
699 struct ieee80211_sub_if_data
*vlan
;
701 mutex_lock(&sdata
->local
->key_mtx
);
703 sdata
->crypto_tx_tailroom_needed_cnt
= 0;
705 if (sdata
->vif
.type
== NL80211_IFTYPE_AP
) {
706 list_for_each_entry(vlan
, &sdata
->u
.ap
.vlans
, u
.vlan
.list
)
707 vlan
->crypto_tx_tailroom_needed_cnt
= 0;
710 mutex_unlock(&sdata
->local
->key_mtx
);
713 void ieee80211_iter_keys(struct ieee80211_hw
*hw
,
714 struct ieee80211_vif
*vif
,
715 void (*iter
)(struct ieee80211_hw
*hw
,
716 struct ieee80211_vif
*vif
,
717 struct ieee80211_sta
*sta
,
718 struct ieee80211_key_conf
*key
,
722 struct ieee80211_local
*local
= hw_to_local(hw
);
723 struct ieee80211_key
*key
, *tmp
;
724 struct ieee80211_sub_if_data
*sdata
;
728 mutex_lock(&local
->key_mtx
);
730 sdata
= vif_to_sdata(vif
);
731 list_for_each_entry_safe(key
, tmp
, &sdata
->key_list
, list
)
732 iter(hw
, &sdata
->vif
,
733 key
->sta
? &key
->sta
->sta
: NULL
,
734 &key
->conf
, iter_data
);
736 list_for_each_entry(sdata
, &local
->interfaces
, list
)
737 list_for_each_entry_safe(key
, tmp
,
738 &sdata
->key_list
, list
)
739 iter(hw
, &sdata
->vif
,
740 key
->sta
? &key
->sta
->sta
: NULL
,
741 &key
->conf
, iter_data
);
743 mutex_unlock(&local
->key_mtx
);
745 EXPORT_SYMBOL(ieee80211_iter_keys
);
747 static void ieee80211_free_keys_iface(struct ieee80211_sub_if_data
*sdata
,
748 struct list_head
*keys
)
750 struct ieee80211_key
*key
, *tmp
;
752 decrease_tailroom_need_count(sdata
,
753 sdata
->crypto_tx_tailroom_pending_dec
);
754 sdata
->crypto_tx_tailroom_pending_dec
= 0;
756 ieee80211_debugfs_key_remove_mgmt_default(sdata
);
758 list_for_each_entry_safe(key
, tmp
, &sdata
->key_list
, list
) {
759 ieee80211_key_replace(key
->sdata
, key
->sta
,
760 key
->conf
.flags
& IEEE80211_KEY_FLAG_PAIRWISE
,
762 list_add_tail(&key
->list
, keys
);
765 ieee80211_debugfs_key_update_default(sdata
);
768 void ieee80211_free_keys(struct ieee80211_sub_if_data
*sdata
,
769 bool force_synchronize
)
771 struct ieee80211_local
*local
= sdata
->local
;
772 struct ieee80211_sub_if_data
*vlan
;
773 struct ieee80211_sub_if_data
*master
;
774 struct ieee80211_key
*key
, *tmp
;
777 cancel_delayed_work_sync(&sdata
->dec_tailroom_needed_wk
);
779 mutex_lock(&local
->key_mtx
);
781 ieee80211_free_keys_iface(sdata
, &keys
);
783 if (sdata
->vif
.type
== NL80211_IFTYPE_AP
) {
784 list_for_each_entry(vlan
, &sdata
->u
.ap
.vlans
, u
.vlan
.list
)
785 ieee80211_free_keys_iface(vlan
, &keys
);
788 if (!list_empty(&keys
) || force_synchronize
)
790 list_for_each_entry_safe(key
, tmp
, &keys
, list
)
791 __ieee80211_key_destroy(key
, false);
793 if (sdata
->vif
.type
== NL80211_IFTYPE_AP_VLAN
) {
795 master
= container_of(sdata
->bss
,
796 struct ieee80211_sub_if_data
,
799 WARN_ON_ONCE(sdata
->crypto_tx_tailroom_needed_cnt
!=
800 master
->crypto_tx_tailroom_needed_cnt
);
803 WARN_ON_ONCE(sdata
->crypto_tx_tailroom_needed_cnt
||
804 sdata
->crypto_tx_tailroom_pending_dec
);
807 if (sdata
->vif
.type
== NL80211_IFTYPE_AP
) {
808 list_for_each_entry(vlan
, &sdata
->u
.ap
.vlans
, u
.vlan
.list
)
809 WARN_ON_ONCE(vlan
->crypto_tx_tailroom_needed_cnt
||
810 vlan
->crypto_tx_tailroom_pending_dec
);
813 mutex_unlock(&local
->key_mtx
);
816 void ieee80211_free_sta_keys(struct ieee80211_local
*local
,
817 struct sta_info
*sta
)
819 struct ieee80211_key
*key
;
822 mutex_lock(&local
->key_mtx
);
823 for (i
= 0; i
< ARRAY_SIZE(sta
->gtk
); i
++) {
824 key
= key_mtx_dereference(local
, sta
->gtk
[i
]);
827 ieee80211_key_replace(key
->sdata
, key
->sta
,
828 key
->conf
.flags
& IEEE80211_KEY_FLAG_PAIRWISE
,
830 __ieee80211_key_destroy(key
, true);
833 for (i
= 0; i
< NUM_DEFAULT_KEYS
; i
++) {
834 key
= key_mtx_dereference(local
, sta
->ptk
[i
]);
837 ieee80211_key_replace(key
->sdata
, key
->sta
,
838 key
->conf
.flags
& IEEE80211_KEY_FLAG_PAIRWISE
,
840 __ieee80211_key_destroy(key
, true);
843 mutex_unlock(&local
->key_mtx
);
846 void ieee80211_delayed_tailroom_dec(struct work_struct
*wk
)
848 struct ieee80211_sub_if_data
*sdata
;
850 sdata
= container_of(wk
, struct ieee80211_sub_if_data
,
851 dec_tailroom_needed_wk
.work
);
854 * The reason for the delayed tailroom needed decrementing is to
855 * make roaming faster: during roaming, all keys are first deleted
856 * and then new keys are installed. The first new key causes the
857 * crypto_tx_tailroom_needed_cnt to go from 0 to 1, which invokes
858 * the cost of synchronize_net() (which can be slow). Avoid this
859 * by deferring the crypto_tx_tailroom_needed_cnt decrementing on
860 * key removal for a while, so if we roam the value is larger than
861 * zero and no 0->1 transition happens.
863 * The cost is that if the AP switching was from an AP with keys
864 * to one without, we still allocate tailroom while it would no
865 * longer be needed. However, in the typical (fast) roaming case
866 * within an ESS this usually won't happen.
869 mutex_lock(&sdata
->local
->key_mtx
);
870 decrease_tailroom_need_count(sdata
,
871 sdata
->crypto_tx_tailroom_pending_dec
);
872 sdata
->crypto_tx_tailroom_pending_dec
= 0;
873 mutex_unlock(&sdata
->local
->key_mtx
);
876 void ieee80211_gtk_rekey_notify(struct ieee80211_vif
*vif
, const u8
*bssid
,
877 const u8
*replay_ctr
, gfp_t gfp
)
879 struct ieee80211_sub_if_data
*sdata
= vif_to_sdata(vif
);
881 trace_api_gtk_rekey_notify(sdata
, bssid
, replay_ctr
);
883 cfg80211_gtk_rekey_notify(sdata
->dev
, bssid
, replay_ctr
, gfp
);
885 EXPORT_SYMBOL_GPL(ieee80211_gtk_rekey_notify
);
887 void ieee80211_get_key_tx_seq(struct ieee80211_key_conf
*keyconf
,
888 struct ieee80211_key_seq
*seq
)
890 struct ieee80211_key
*key
;
893 if (WARN_ON(!(keyconf
->flags
& IEEE80211_KEY_FLAG_GENERATE_IV
)))
896 key
= container_of(keyconf
, struct ieee80211_key
, conf
);
898 switch (key
->conf
.cipher
) {
899 case WLAN_CIPHER_SUITE_TKIP
:
900 seq
->tkip
.iv32
= key
->u
.tkip
.tx
.iv32
;
901 seq
->tkip
.iv16
= key
->u
.tkip
.tx
.iv16
;
903 case WLAN_CIPHER_SUITE_CCMP
:
904 case WLAN_CIPHER_SUITE_CCMP_256
:
905 case WLAN_CIPHER_SUITE_AES_CMAC
:
906 case WLAN_CIPHER_SUITE_BIP_CMAC_256
:
907 BUILD_BUG_ON(offsetof(typeof(*seq
), ccmp
) !=
908 offsetof(typeof(*seq
), aes_cmac
));
909 case WLAN_CIPHER_SUITE_BIP_GMAC_128
:
910 case WLAN_CIPHER_SUITE_BIP_GMAC_256
:
911 BUILD_BUG_ON(offsetof(typeof(*seq
), ccmp
) !=
912 offsetof(typeof(*seq
), aes_gmac
));
913 case WLAN_CIPHER_SUITE_GCMP
:
914 case WLAN_CIPHER_SUITE_GCMP_256
:
915 BUILD_BUG_ON(offsetof(typeof(*seq
), ccmp
) !=
916 offsetof(typeof(*seq
), gcmp
));
917 pn64
= atomic64_read(&key
->conf
.tx_pn
);
918 seq
->ccmp
.pn
[5] = pn64
;
919 seq
->ccmp
.pn
[4] = pn64
>> 8;
920 seq
->ccmp
.pn
[3] = pn64
>> 16;
921 seq
->ccmp
.pn
[2] = pn64
>> 24;
922 seq
->ccmp
.pn
[1] = pn64
>> 32;
923 seq
->ccmp
.pn
[0] = pn64
>> 40;
929 EXPORT_SYMBOL(ieee80211_get_key_tx_seq
);
931 void ieee80211_get_key_rx_seq(struct ieee80211_key_conf
*keyconf
,
932 int tid
, struct ieee80211_key_seq
*seq
)
934 struct ieee80211_key
*key
;
937 key
= container_of(keyconf
, struct ieee80211_key
, conf
);
939 switch (key
->conf
.cipher
) {
940 case WLAN_CIPHER_SUITE_TKIP
:
941 if (WARN_ON(tid
< 0 || tid
>= IEEE80211_NUM_TIDS
))
943 seq
->tkip
.iv32
= key
->u
.tkip
.rx
[tid
].iv32
;
944 seq
->tkip
.iv16
= key
->u
.tkip
.rx
[tid
].iv16
;
946 case WLAN_CIPHER_SUITE_CCMP
:
947 case WLAN_CIPHER_SUITE_CCMP_256
:
948 if (WARN_ON(tid
< -1 || tid
>= IEEE80211_NUM_TIDS
))
951 pn
= key
->u
.ccmp
.rx_pn
[IEEE80211_NUM_TIDS
];
953 pn
= key
->u
.ccmp
.rx_pn
[tid
];
954 memcpy(seq
->ccmp
.pn
, pn
, IEEE80211_CCMP_PN_LEN
);
956 case WLAN_CIPHER_SUITE_AES_CMAC
:
957 case WLAN_CIPHER_SUITE_BIP_CMAC_256
:
958 if (WARN_ON(tid
!= 0))
960 pn
= key
->u
.aes_cmac
.rx_pn
;
961 memcpy(seq
->aes_cmac
.pn
, pn
, IEEE80211_CMAC_PN_LEN
);
963 case WLAN_CIPHER_SUITE_BIP_GMAC_128
:
964 case WLAN_CIPHER_SUITE_BIP_GMAC_256
:
965 if (WARN_ON(tid
!= 0))
967 pn
= key
->u
.aes_gmac
.rx_pn
;
968 memcpy(seq
->aes_gmac
.pn
, pn
, IEEE80211_GMAC_PN_LEN
);
970 case WLAN_CIPHER_SUITE_GCMP
:
971 case WLAN_CIPHER_SUITE_GCMP_256
:
972 if (WARN_ON(tid
< -1 || tid
>= IEEE80211_NUM_TIDS
))
975 pn
= key
->u
.gcmp
.rx_pn
[IEEE80211_NUM_TIDS
];
977 pn
= key
->u
.gcmp
.rx_pn
[tid
];
978 memcpy(seq
->gcmp
.pn
, pn
, IEEE80211_GCMP_PN_LEN
);
982 EXPORT_SYMBOL(ieee80211_get_key_rx_seq
);
984 void ieee80211_set_key_tx_seq(struct ieee80211_key_conf
*keyconf
,
985 struct ieee80211_key_seq
*seq
)
987 struct ieee80211_key
*key
;
990 key
= container_of(keyconf
, struct ieee80211_key
, conf
);
992 switch (key
->conf
.cipher
) {
993 case WLAN_CIPHER_SUITE_TKIP
:
994 key
->u
.tkip
.tx
.iv32
= seq
->tkip
.iv32
;
995 key
->u
.tkip
.tx
.iv16
= seq
->tkip
.iv16
;
997 case WLAN_CIPHER_SUITE_CCMP
:
998 case WLAN_CIPHER_SUITE_CCMP_256
:
999 case WLAN_CIPHER_SUITE_AES_CMAC
:
1000 case WLAN_CIPHER_SUITE_BIP_CMAC_256
:
1001 BUILD_BUG_ON(offsetof(typeof(*seq
), ccmp
) !=
1002 offsetof(typeof(*seq
), aes_cmac
));
1003 case WLAN_CIPHER_SUITE_BIP_GMAC_128
:
1004 case WLAN_CIPHER_SUITE_BIP_GMAC_256
:
1005 BUILD_BUG_ON(offsetof(typeof(*seq
), ccmp
) !=
1006 offsetof(typeof(*seq
), aes_gmac
));
1007 case WLAN_CIPHER_SUITE_GCMP
:
1008 case WLAN_CIPHER_SUITE_GCMP_256
:
1009 BUILD_BUG_ON(offsetof(typeof(*seq
), ccmp
) !=
1010 offsetof(typeof(*seq
), gcmp
));
1011 pn64
= (u64
)seq
->ccmp
.pn
[5] |
1012 ((u64
)seq
->ccmp
.pn
[4] << 8) |
1013 ((u64
)seq
->ccmp
.pn
[3] << 16) |
1014 ((u64
)seq
->ccmp
.pn
[2] << 24) |
1015 ((u64
)seq
->ccmp
.pn
[1] << 32) |
1016 ((u64
)seq
->ccmp
.pn
[0] << 40);
1017 atomic64_set(&key
->conf
.tx_pn
, pn64
);
1024 EXPORT_SYMBOL_GPL(ieee80211_set_key_tx_seq
);
1026 void ieee80211_set_key_rx_seq(struct ieee80211_key_conf
*keyconf
,
1027 int tid
, struct ieee80211_key_seq
*seq
)
1029 struct ieee80211_key
*key
;
1032 key
= container_of(keyconf
, struct ieee80211_key
, conf
);
1034 switch (key
->conf
.cipher
) {
1035 case WLAN_CIPHER_SUITE_TKIP
:
1036 if (WARN_ON(tid
< 0 || tid
>= IEEE80211_NUM_TIDS
))
1038 key
->u
.tkip
.rx
[tid
].iv32
= seq
->tkip
.iv32
;
1039 key
->u
.tkip
.rx
[tid
].iv16
= seq
->tkip
.iv16
;
1041 case WLAN_CIPHER_SUITE_CCMP
:
1042 case WLAN_CIPHER_SUITE_CCMP_256
:
1043 if (WARN_ON(tid
< -1 || tid
>= IEEE80211_NUM_TIDS
))
1046 pn
= key
->u
.ccmp
.rx_pn
[IEEE80211_NUM_TIDS
];
1048 pn
= key
->u
.ccmp
.rx_pn
[tid
];
1049 memcpy(pn
, seq
->ccmp
.pn
, IEEE80211_CCMP_PN_LEN
);
1051 case WLAN_CIPHER_SUITE_AES_CMAC
:
1052 case WLAN_CIPHER_SUITE_BIP_CMAC_256
:
1053 if (WARN_ON(tid
!= 0))
1055 pn
= key
->u
.aes_cmac
.rx_pn
;
1056 memcpy(pn
, seq
->aes_cmac
.pn
, IEEE80211_CMAC_PN_LEN
);
1058 case WLAN_CIPHER_SUITE_BIP_GMAC_128
:
1059 case WLAN_CIPHER_SUITE_BIP_GMAC_256
:
1060 if (WARN_ON(tid
!= 0))
1062 pn
= key
->u
.aes_gmac
.rx_pn
;
1063 memcpy(pn
, seq
->aes_gmac
.pn
, IEEE80211_GMAC_PN_LEN
);
1065 case WLAN_CIPHER_SUITE_GCMP
:
1066 case WLAN_CIPHER_SUITE_GCMP_256
:
1067 if (WARN_ON(tid
< -1 || tid
>= IEEE80211_NUM_TIDS
))
1070 pn
= key
->u
.gcmp
.rx_pn
[IEEE80211_NUM_TIDS
];
1072 pn
= key
->u
.gcmp
.rx_pn
[tid
];
1073 memcpy(pn
, seq
->gcmp
.pn
, IEEE80211_GCMP_PN_LEN
);
1080 EXPORT_SYMBOL_GPL(ieee80211_set_key_rx_seq
);
1082 void ieee80211_remove_key(struct ieee80211_key_conf
*keyconf
)
1084 struct ieee80211_key
*key
;
1086 key
= container_of(keyconf
, struct ieee80211_key
, conf
);
1088 assert_key_lock(key
->local
);
1091 * if key was uploaded, we assume the driver will/has remove(d)
1092 * it, so adjust bookkeeping accordingly
1094 if (key
->flags
& KEY_FLAG_UPLOADED_TO_HARDWARE
) {
1095 key
->flags
&= ~KEY_FLAG_UPLOADED_TO_HARDWARE
;
1097 if (!((key
->conf
.flags
& IEEE80211_KEY_FLAG_GENERATE_MMIC
) ||
1098 (key
->conf
.flags
& IEEE80211_KEY_FLAG_RESERVE_TAILROOM
)))
1099 increment_tailroom_need_count(key
->sdata
);
1102 ieee80211_key_free(key
, false);
1104 EXPORT_SYMBOL_GPL(ieee80211_remove_key
);
1106 struct ieee80211_key_conf
*
1107 ieee80211_gtk_rekey_add(struct ieee80211_vif
*vif
,
1108 struct ieee80211_key_conf
*keyconf
)
1110 struct ieee80211_sub_if_data
*sdata
= vif_to_sdata(vif
);
1111 struct ieee80211_local
*local
= sdata
->local
;
1112 struct ieee80211_key
*key
;
1115 if (WARN_ON(!local
->wowlan
))
1116 return ERR_PTR(-EINVAL
);
1118 if (WARN_ON(vif
->type
!= NL80211_IFTYPE_STATION
))
1119 return ERR_PTR(-EINVAL
);
1121 key
= ieee80211_key_alloc(keyconf
->cipher
, keyconf
->keyidx
,
1122 keyconf
->keylen
, keyconf
->key
,
1125 return ERR_CAST(key
);
1127 if (sdata
->u
.mgd
.mfp
!= IEEE80211_MFP_DISABLED
)
1128 key
->conf
.flags
|= IEEE80211_KEY_FLAG_RX_MGMT
;
1130 err
= ieee80211_key_link(key
, sdata
, NULL
);
1132 return ERR_PTR(err
);
1136 EXPORT_SYMBOL_GPL(ieee80211_gtk_rekey_add
);