Lines Matching full:key
32 * DOC: Key handling basics
34 * Key handling in mac80211 is done based on per-interface (sub_if_data)
36 * each station key also belongs to that interface.
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
43 * There is currently no way of knowing whether a key is handled in SW
46 * All key management is internally protected by a mutex. Within all
47 * other parts of mac80211, key references are, just as STA structure
49 * unprotected, namely the key->sta dereferences within the hardware
51 * remove the key which waits for an RCU grace period.
82 * 1. SKB resize was skipped because no key was added but just before in increment_tailroom_need_count()
83 * the xmit key is added and SW encryption kicks off. in increment_tailroom_need_count()
86 * just before xmit one of the key is deleted and SW encryption kicks in increment_tailroom_need_count()
120 static int ieee80211_key_enable_hw_accel(struct ieee80211_key *key) in ieee80211_key_enable_hw_accel() argument
122 struct ieee80211_sub_if_data *sdata = key->sdata; in ieee80211_key_enable_hw_accel()
127 lockdep_assert_wiphy(key->local->hw.wiphy); in ieee80211_key_enable_hw_accel()
129 if (key->flags & KEY_FLAG_TAINTED) { in ieee80211_key_enable_hw_accel()
130 /* If we get here, it's during resume and the key is in ieee80211_key_enable_hw_accel()
137 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE && in ieee80211_key_enable_hw_accel()
138 !(key->conf.flags & (IEEE80211_KEY_FLAG_GENERATE_MMIC | in ieee80211_key_enable_hw_accel()
143 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE; in ieee80211_key_enable_hw_accel()
147 if (!key->local->ops->set_key) in ieee80211_key_enable_hw_accel()
150 sta = key->sta; in ieee80211_key_enable_hw_accel()
156 if (sta && !(key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE) && in ieee80211_key_enable_hw_accel()
157 !ieee80211_hw_check(&key->local->hw, SUPPORTS_PER_STA_GTK)) in ieee80211_key_enable_hw_accel()
168 if (!(key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE)) { in ieee80211_key_enable_hw_accel()
174 if (key->conf.link_id >= 0 && sdata->vif.active_links && in ieee80211_key_enable_hw_accel()
175 !(sdata->vif.active_links & BIT(key->conf.link_id))) in ieee80211_key_enable_hw_accel()
178 ret = drv_set_key(key->local, SET_KEY, sdata, in ieee80211_key_enable_hw_accel()
179 sta ? &sta->sta : NULL, &key->conf); in ieee80211_key_enable_hw_accel()
182 key->flags |= KEY_FLAG_UPLOADED_TO_HARDWARE; in ieee80211_key_enable_hw_accel()
184 if (!(key->conf.flags & (IEEE80211_KEY_FLAG_GENERATE_MMIC | in ieee80211_key_enable_hw_accel()
189 WARN_ON((key->conf.flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE) && in ieee80211_key_enable_hw_accel()
190 (key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV)); in ieee80211_key_enable_hw_accel()
192 WARN_ON((key->conf.flags & IEEE80211_KEY_FLAG_PUT_MIC_SPACE) && in ieee80211_key_enable_hw_accel()
193 (key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC)); in ieee80211_key_enable_hw_accel()
200 "failed to set key (%d, %pM) to hardware (%d)\n", in ieee80211_key_enable_hw_accel()
201 key->conf.keyidx, in ieee80211_key_enable_hw_accel()
205 switch (key->conf.cipher) { in ieee80211_key_enable_hw_accel()
220 if (ieee80211_hw_check(&key->local->hw, SW_CRYPTO_CONTROL)) in ieee80211_key_enable_hw_accel()
228 static void ieee80211_key_disable_hw_accel(struct ieee80211_key *key) in ieee80211_key_disable_hw_accel() argument
236 if (!key || !key->local->ops->set_key) in ieee80211_key_disable_hw_accel()
239 if (!(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)) in ieee80211_key_disable_hw_accel()
242 sta = key->sta; in ieee80211_key_disable_hw_accel()
243 sdata = key->sdata; in ieee80211_key_disable_hw_accel()
245 lockdep_assert_wiphy(key->local->hw.wiphy); in ieee80211_key_disable_hw_accel()
247 if (key->conf.link_id >= 0 && sdata->vif.active_links && in ieee80211_key_disable_hw_accel()
248 !(sdata->vif.active_links & BIT(key->conf.link_id))) in ieee80211_key_disable_hw_accel()
251 if (!(key->conf.flags & (IEEE80211_KEY_FLAG_GENERATE_MMIC | in ieee80211_key_disable_hw_accel()
256 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE; in ieee80211_key_disable_hw_accel()
257 ret = drv_set_key(key->local, DISABLE_KEY, sdata, in ieee80211_key_disable_hw_accel()
258 sta ? &sta->sta : NULL, &key->conf); in ieee80211_key_disable_hw_accel()
262 "failed to remove key (%d, %pM) from hardware (%d)\n", in ieee80211_key_disable_hw_accel()
263 key->conf.keyidx, in ieee80211_key_disable_hw_accel()
267 static int _ieee80211_set_tx_key(struct ieee80211_key *key, bool force) in _ieee80211_set_tx_key() argument
269 struct sta_info *sta = key->sta; in _ieee80211_set_tx_key()
270 struct ieee80211_local *local = key->local; in _ieee80211_set_tx_key()
276 sta->ptk_idx = key->conf.keyidx; in _ieee80211_set_tx_key()
285 int ieee80211_set_tx_key(struct ieee80211_key *key) in ieee80211_set_tx_key() argument
287 return _ieee80211_set_tx_key(key, false); in ieee80211_set_tx_key()
300 /* Extended Key ID key install, initial one or rekey */ in ieee80211_pairwise_rekey()
304 /* Aggregation Sessions with Extended Key ID must not in ieee80211_pairwise_rekey()
309 * supporting A-MPDU key borders. (Blocking Tx only in ieee80211_pairwise_rekey()
319 /* Rekey without Extended Key ID. in ieee80211_pairwise_rekey()
327 /* Stop Tx till we are on the new key */ in ieee80211_pairwise_rekey()
351 struct ieee80211_key *key = NULL; in __ieee80211_set_default_key() local
356 key = wiphy_dereference(sdata->local->hw.wiphy, in __ieee80211_set_default_key()
358 if (!key) in __ieee80211_set_default_key()
359 key = wiphy_dereference(sdata->local->hw.wiphy, in __ieee80211_set_default_key()
364 rcu_assign_pointer(sdata->default_unicast_key, key); in __ieee80211_set_default_key()
371 rcu_assign_pointer(link->default_multicast_key, key); in __ieee80211_set_default_key()
388 struct ieee80211_key *key = NULL; in __ieee80211_set_default_mgmt_key() local
394 key = wiphy_dereference(sdata->local->hw.wiphy, in __ieee80211_set_default_mgmt_key()
397 rcu_assign_pointer(link->default_mgmt_key, key); in __ieee80211_set_default_mgmt_key()
414 struct ieee80211_key *key = NULL; in __ieee80211_set_default_beacon_key() local
421 key = wiphy_dereference(sdata->local->hw.wiphy, in __ieee80211_set_default_beacon_key()
424 rcu_assign_pointer(link->default_beacon_key, key); in __ieee80211_set_default_beacon_key()
497 /* Unicast rekey needs special handling. With Extended Key ID in ieee80211_key_replace()
532 /* Only needed for transition from no key -> key. in ieee80211_key_replace()
533 * Still triggers unnecessary when using Extended Key ID in ieee80211_key_replace()
534 * and installing the second key ID the first time. in ieee80211_key_replace()
591 struct ieee80211_key *key; in ieee80211_key_alloc() local
599 key = kzalloc(sizeof(struct ieee80211_key) + key_len, GFP_KERNEL); in ieee80211_key_alloc()
600 if (!key) in ieee80211_key_alloc()
605 * key to the hardware if possible. in ieee80211_key_alloc()
607 key->conf.flags = 0; in ieee80211_key_alloc()
608 key->flags = 0; in ieee80211_key_alloc()
610 key->conf.link_id = -1; in ieee80211_key_alloc()
611 key->conf.cipher = cipher; in ieee80211_key_alloc()
612 key->conf.keyidx = idx; in ieee80211_key_alloc()
613 key->conf.keylen = key_len; in ieee80211_key_alloc()
617 key->conf.iv_len = IEEE80211_WEP_IV_LEN; in ieee80211_key_alloc()
618 key->conf.icv_len = IEEE80211_WEP_ICV_LEN; in ieee80211_key_alloc()
621 key->conf.iv_len = IEEE80211_TKIP_IV_LEN; in ieee80211_key_alloc()
622 key->conf.icv_len = IEEE80211_TKIP_ICV_LEN; in ieee80211_key_alloc()
625 key->u.tkip.rx[i].iv32 = in ieee80211_key_alloc()
627 key->u.tkip.rx[i].iv16 = in ieee80211_key_alloc()
631 spin_lock_init(&key->u.tkip.txlock); in ieee80211_key_alloc()
634 key->conf.iv_len = IEEE80211_CCMP_HDR_LEN; in ieee80211_key_alloc()
635 key->conf.icv_len = IEEE80211_CCMP_MIC_LEN; in ieee80211_key_alloc()
639 key->u.ccmp.rx_pn[i][j] = in ieee80211_key_alloc()
643 * Initialize AES key state here as an optimization so that in ieee80211_key_alloc()
646 key->u.ccmp.tfm = ieee80211_aes_key_setup_encrypt( in ieee80211_key_alloc()
648 if (IS_ERR(key->u.ccmp.tfm)) { in ieee80211_key_alloc()
649 err = PTR_ERR(key->u.ccmp.tfm); in ieee80211_key_alloc()
650 kfree(key); in ieee80211_key_alloc()
655 key->conf.iv_len = IEEE80211_CCMP_256_HDR_LEN; in ieee80211_key_alloc()
656 key->conf.icv_len = IEEE80211_CCMP_256_MIC_LEN; in ieee80211_key_alloc()
659 key->u.ccmp.rx_pn[i][j] = in ieee80211_key_alloc()
661 /* Initialize AES key state here as an optimization so that in ieee80211_key_alloc()
664 key->u.ccmp.tfm = ieee80211_aes_key_setup_encrypt( in ieee80211_key_alloc()
666 if (IS_ERR(key->u.ccmp.tfm)) { in ieee80211_key_alloc()
667 err = PTR_ERR(key->u.ccmp.tfm); in ieee80211_key_alloc()
668 kfree(key); in ieee80211_key_alloc()
674 key->conf.iv_len = 0; in ieee80211_key_alloc()
676 key->conf.icv_len = sizeof(struct ieee80211_mmie); in ieee80211_key_alloc()
678 key->conf.icv_len = sizeof(struct ieee80211_mmie_16); in ieee80211_key_alloc()
681 key->u.aes_cmac.rx_pn[j] = in ieee80211_key_alloc()
684 * Initialize AES key state here as an optimization so that in ieee80211_key_alloc()
687 key->u.aes_cmac.tfm = in ieee80211_key_alloc()
689 if (IS_ERR(key->u.aes_cmac.tfm)) { in ieee80211_key_alloc()
690 err = PTR_ERR(key->u.aes_cmac.tfm); in ieee80211_key_alloc()
691 kfree(key); in ieee80211_key_alloc()
697 key->conf.iv_len = 0; in ieee80211_key_alloc()
698 key->conf.icv_len = sizeof(struct ieee80211_mmie_16); in ieee80211_key_alloc()
701 key->u.aes_gmac.rx_pn[j] = in ieee80211_key_alloc()
703 /* Initialize AES key state here as an optimization so that in ieee80211_key_alloc()
706 key->u.aes_gmac.tfm = in ieee80211_key_alloc()
708 if (IS_ERR(key->u.aes_gmac.tfm)) { in ieee80211_key_alloc()
709 err = PTR_ERR(key->u.aes_gmac.tfm); in ieee80211_key_alloc()
710 kfree(key); in ieee80211_key_alloc()
716 key->conf.iv_len = IEEE80211_GCMP_HDR_LEN; in ieee80211_key_alloc()
717 key->conf.icv_len = IEEE80211_GCMP_MIC_LEN; in ieee80211_key_alloc()
720 key->u.gcmp.rx_pn[i][j] = in ieee80211_key_alloc()
722 /* Initialize AES key state here as an optimization so that in ieee80211_key_alloc()
725 key->u.gcmp.tfm = ieee80211_aes_gcm_key_setup_encrypt(key_data, in ieee80211_key_alloc()
727 if (IS_ERR(key->u.gcmp.tfm)) { in ieee80211_key_alloc()
728 err = PTR_ERR(key->u.gcmp.tfm); in ieee80211_key_alloc()
729 kfree(key); in ieee80211_key_alloc()
734 memcpy(key->conf.key, key_data, key_len); in ieee80211_key_alloc()
735 INIT_LIST_HEAD(&key->list); in ieee80211_key_alloc()
737 return key; in ieee80211_key_alloc()
740 static void ieee80211_key_free_common(struct ieee80211_key *key) in ieee80211_key_free_common() argument
742 switch (key->conf.cipher) { in ieee80211_key_free_common()
745 ieee80211_aes_key_free(key->u.ccmp.tfm); in ieee80211_key_free_common()
749 ieee80211_aes_cmac_key_free(key->u.aes_cmac.tfm); in ieee80211_key_free_common()
753 ieee80211_aes_gmac_key_free(key->u.aes_gmac.tfm); in ieee80211_key_free_common()
757 ieee80211_aes_gcm_key_free(key->u.gcmp.tfm); in ieee80211_key_free_common()
760 kfree_sensitive(key); in ieee80211_key_free_common()
763 static void __ieee80211_key_destroy(struct ieee80211_key *key, in __ieee80211_key_destroy() argument
766 if (key->local) { in __ieee80211_key_destroy()
767 struct ieee80211_sub_if_data *sdata = key->sdata; in __ieee80211_key_destroy()
769 ieee80211_debugfs_key_remove(key); in __ieee80211_key_destroy()
782 ieee80211_key_free_common(key); in __ieee80211_key_destroy()
785 static void ieee80211_key_destroy(struct ieee80211_key *key, in ieee80211_key_destroy() argument
788 if (!key) in ieee80211_key_destroy()
792 * Synchronize so the TX path and rcu key iterators in ieee80211_key_destroy()
793 * can no longer be using this key before we free/remove it. in ieee80211_key_destroy()
797 __ieee80211_key_destroy(key, delay_tailroom); in ieee80211_key_destroy()
800 void ieee80211_key_free_unused(struct ieee80211_key *key) in ieee80211_key_free_unused() argument
802 if (!key) in ieee80211_key_free_unused()
805 WARN_ON(key->sdata || key->local); in ieee80211_key_free_unused()
806 ieee80211_key_free_common(key); in ieee80211_key_free_unused()
819 tk_old = old->conf.key; in ieee80211_key_identical()
820 tk_new = new->conf.key; in ieee80211_key_identical()
823 * In station mode, don't compare the TX MIC key, as it's never used in ieee80211_key_identical()
842 int ieee80211_key_link(struct ieee80211_key *key, in ieee80211_key_link() argument
849 int idx = key->conf.keyidx; in ieee80211_key_link()
850 bool pairwise = key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE; in ieee80211_key_link()
869 /* The rekey code assumes that the old and new key are using in ieee80211_key_link()
872 if ((alt_key && alt_key->conf.cipher != key->conf.cipher) || in ieee80211_key_link()
873 (old_key && old_key->conf.cipher != key->conf.cipher)) { in ieee80211_key_link()
879 int link_id = key->conf.link_id; in ieee80211_key_link()
903 if (old_key && old_key->conf.cipher != key->conf.cipher) { in ieee80211_key_link()
910 * Silently accept key re-installation without really installing the in ieee80211_key_link()
911 * new version of the key to avoid nonce reuse or replay issues. in ieee80211_key_link()
913 if (ieee80211_key_identical(sdata, old_key, key)) { in ieee80211_key_link()
918 key->local = sdata->local; in ieee80211_key_link()
919 key->sdata = sdata; in ieee80211_key_link()
920 key->sta = sta; in ieee80211_key_link()
923 * Assign a unique ID to every key so we can easily prevent mixed in ieee80211_key_link()
924 * key and fragment cache attacks. in ieee80211_key_link()
926 key->color = atomic_inc_return(&key_color); in ieee80211_key_link()
930 ret = ieee80211_key_replace(sdata, link, sta, pairwise, old_key, key); in ieee80211_key_link()
933 ieee80211_debugfs_key_add(key); in ieee80211_key_link()
936 ieee80211_key_free(key, delay_tailroom); in ieee80211_key_link()
939 key = NULL; in ieee80211_key_link()
942 ieee80211_key_free_unused(key); in ieee80211_key_link()
946 void ieee80211_key_free(struct ieee80211_key *key, bool delay_tailroom) in ieee80211_key_free() argument
948 if (!key) in ieee80211_key_free()
952 * Replace key with nothingness if it was ever used. in ieee80211_key_free()
954 if (key->sdata) in ieee80211_key_free()
955 ieee80211_key_replace(key->sdata, NULL, key->sta, in ieee80211_key_free()
956 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE, in ieee80211_key_free()
957 key, NULL); in ieee80211_key_free()
958 ieee80211_key_destroy(key, delay_tailroom); in ieee80211_key_free()
963 struct ieee80211_key *key; in ieee80211_reenable_keys() local
979 list_for_each_entry(key, &sdata->key_list, list) { in ieee80211_reenable_keys()
981 ieee80211_key_enable_hw_accel(key); in ieee80211_reenable_keys()
991 struct ieee80211_key_conf *key, in ieee80211_iter_keys() argument
996 struct ieee80211_key *key, *tmp; in ieee80211_iter_keys() local
1003 list_for_each_entry_safe(key, tmp, &sdata->key_list, list) in ieee80211_iter_keys()
1005 key->sta ? &key->sta->sta : NULL, in ieee80211_iter_keys()
1006 &key->conf, iter_data); in ieee80211_iter_keys()
1009 list_for_each_entry_safe(key, tmp, in ieee80211_iter_keys()
1012 key->sta ? &key->sta->sta : NULL, in ieee80211_iter_keys()
1013 &key->conf, iter_data); in ieee80211_iter_keys()
1024 struct ieee80211_key_conf *key, in _ieee80211_iter_keys_rcu() argument
1028 struct ieee80211_key *key; in _ieee80211_iter_keys_rcu() local
1030 list_for_each_entry_rcu(key, &sdata->key_list, list) { in _ieee80211_iter_keys_rcu()
1032 if (key->sta && key->sta->removed) in _ieee80211_iter_keys_rcu()
1034 if (!(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)) in _ieee80211_iter_keys_rcu()
1038 key->sta ? &key->sta->sta : NULL, in _ieee80211_iter_keys_rcu()
1039 &key->conf, iter_data); in _ieee80211_iter_keys_rcu()
1048 struct ieee80211_key_conf *key, in ieee80211_iter_keys_rcu() argument
1068 struct ieee80211_key *key, *tmp; in ieee80211_free_keys_iface() local
1077 list_for_each_entry_safe(key, tmp, &sdata->key_list, list) { in ieee80211_free_keys_iface()
1078 ieee80211_key_replace(key->sdata, NULL, key->sta, in ieee80211_free_keys_iface()
1079 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE, in ieee80211_free_keys_iface()
1080 key, NULL); in ieee80211_free_keys_iface()
1081 list_add_tail(&key->list, keys); in ieee80211_free_keys_iface()
1092 struct ieee80211_key *key, *tmp; in ieee80211_remove_link_keys() local
1096 list_for_each_entry_safe(key, tmp, &sdata->key_list, list) { in ieee80211_remove_link_keys()
1097 if (key->conf.link_id != link->link_id) in ieee80211_remove_link_keys()
1099 ieee80211_key_replace(key->sdata, link, key->sta, in ieee80211_remove_link_keys()
1100 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE, in ieee80211_remove_link_keys()
1101 key, NULL); in ieee80211_remove_link_keys()
1102 list_add_tail(&key->list, keys); in ieee80211_remove_link_keys()
1109 struct ieee80211_key *key, *tmp; in ieee80211_free_key_list() local
1113 list_for_each_entry_safe(key, tmp, keys, list) in ieee80211_free_key_list()
1114 __ieee80211_key_destroy(key, false); in ieee80211_free_key_list()
1123 struct ieee80211_key *key, *tmp; in ieee80211_free_keys() local
1140 list_for_each_entry_safe(key, tmp, &keys, list) in ieee80211_free_keys()
1141 __ieee80211_key_destroy(key, false); in ieee80211_free_keys()
1167 struct ieee80211_key *key; in ieee80211_free_sta_keys() local
1173 key = wiphy_dereference(local->hw.wiphy, sta->deflink.gtk[i]); in ieee80211_free_sta_keys()
1174 if (!key) in ieee80211_free_sta_keys()
1176 ieee80211_key_replace(key->sdata, NULL, key->sta, in ieee80211_free_sta_keys()
1177 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE, in ieee80211_free_sta_keys()
1178 key, NULL); in ieee80211_free_sta_keys()
1179 __ieee80211_key_destroy(key, key->sdata->vif.type == in ieee80211_free_sta_keys()
1184 key = wiphy_dereference(local->hw.wiphy, sta->ptk[i]); in ieee80211_free_sta_keys()
1185 if (!key) in ieee80211_free_sta_keys()
1187 ieee80211_key_replace(key->sdata, NULL, key->sta, in ieee80211_free_sta_keys()
1188 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE, in ieee80211_free_sta_keys()
1189 key, NULL); in ieee80211_free_sta_keys()
1190 __ieee80211_key_destroy(key, key->sdata->vif.type == in ieee80211_free_sta_keys()
1206 * and then new keys are installed. The first new key causes the in ieee80211_delayed_tailroom_dec()
1210 * key removal for a while, so if we roam the value is larger than in ieee80211_delayed_tailroom_dec()
1238 struct ieee80211_key *key; in ieee80211_get_key_rx_seq() local
1241 key = container_of(keyconf, struct ieee80211_key, conf); in ieee80211_get_key_rx_seq()
1243 switch (key->conf.cipher) { in ieee80211_get_key_rx_seq()
1247 seq->tkip.iv32 = key->u.tkip.rx[tid].iv32; in ieee80211_get_key_rx_seq()
1248 seq->tkip.iv16 = key->u.tkip.rx[tid].iv16; in ieee80211_get_key_rx_seq()
1255 pn = key->u.ccmp.rx_pn[IEEE80211_NUM_TIDS]; in ieee80211_get_key_rx_seq()
1257 pn = key->u.ccmp.rx_pn[tid]; in ieee80211_get_key_rx_seq()
1264 pn = key->u.aes_cmac.rx_pn; in ieee80211_get_key_rx_seq()
1271 pn = key->u.aes_gmac.rx_pn; in ieee80211_get_key_rx_seq()
1279 pn = key->u.gcmp.rx_pn[IEEE80211_NUM_TIDS]; in ieee80211_get_key_rx_seq()
1281 pn = key->u.gcmp.rx_pn[tid]; in ieee80211_get_key_rx_seq()
1291 struct ieee80211_key *key; in ieee80211_set_key_rx_seq() local
1294 key = container_of(keyconf, struct ieee80211_key, conf); in ieee80211_set_key_rx_seq()
1296 switch (key->conf.cipher) { in ieee80211_set_key_rx_seq()
1300 key->u.tkip.rx[tid].iv32 = seq->tkip.iv32; in ieee80211_set_key_rx_seq()
1301 key->u.tkip.rx[tid].iv16 = seq->tkip.iv16; in ieee80211_set_key_rx_seq()
1308 pn = key->u.ccmp.rx_pn[IEEE80211_NUM_TIDS]; in ieee80211_set_key_rx_seq()
1310 pn = key->u.ccmp.rx_pn[tid]; in ieee80211_set_key_rx_seq()
1317 pn = key->u.aes_cmac.rx_pn; in ieee80211_set_key_rx_seq()
1324 pn = key->u.aes_gmac.rx_pn; in ieee80211_set_key_rx_seq()
1332 pn = key->u.gcmp.rx_pn[IEEE80211_NUM_TIDS]; in ieee80211_set_key_rx_seq()
1334 pn = key->u.gcmp.rx_pn[tid]; in ieee80211_set_key_rx_seq()
1346 struct ieee80211_key *key; in ieee80211_remove_key() local
1348 key = container_of(keyconf, struct ieee80211_key, conf); in ieee80211_remove_key()
1350 lockdep_assert_wiphy(key->local->hw.wiphy); in ieee80211_remove_key()
1353 * if key was uploaded, we assume the driver will/has remove(d) in ieee80211_remove_key()
1356 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) { in ieee80211_remove_key()
1357 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE; in ieee80211_remove_key()
1359 if (!(key->conf.flags & (IEEE80211_KEY_FLAG_GENERATE_MMIC | in ieee80211_remove_key()
1362 increment_tailroom_need_count(key->sdata); in ieee80211_remove_key()
1365 ieee80211_key_free(key, false); in ieee80211_remove_key()
1375 struct ieee80211_key *key; in ieee80211_gtk_rekey_add() local
1384 key = ieee80211_key_alloc(keyconf->cipher, keyconf->keyidx, in ieee80211_gtk_rekey_add()
1385 keyconf->keylen, keyconf->key, in ieee80211_gtk_rekey_add()
1387 if (IS_ERR(key)) in ieee80211_gtk_rekey_add()
1388 return ERR_CAST(key); in ieee80211_gtk_rekey_add()
1391 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT; in ieee80211_gtk_rekey_add()
1394 err = ieee80211_key_link(key, &sdata->deflink, NULL); in ieee80211_gtk_rekey_add()
1398 return &key->conf; in ieee80211_gtk_rekey_add()
1404 struct ieee80211_key *key; in ieee80211_key_mic_failure() local
1406 key = container_of(keyconf, struct ieee80211_key, conf); in ieee80211_key_mic_failure()
1408 switch (key->conf.cipher) { in ieee80211_key_mic_failure()
1411 key->u.aes_cmac.icverrors++; in ieee80211_key_mic_failure()
1415 key->u.aes_gmac.icverrors++; in ieee80211_key_mic_failure()
1426 struct ieee80211_key *key; in ieee80211_key_replay() local
1428 key = container_of(keyconf, struct ieee80211_key, conf); in ieee80211_key_replay()
1430 switch (key->conf.cipher) { in ieee80211_key_replay()
1433 key->u.ccmp.replays++; in ieee80211_key_replay()
1437 key->u.aes_cmac.replays++; in ieee80211_key_replay()
1441 key->u.aes_gmac.replays++; in ieee80211_key_replay()
1445 key->u.gcmp.replays++; in ieee80211_key_replay()
1455 struct ieee80211_key *key; in ieee80211_key_switch_links() local
1458 list_for_each_entry(key, &sdata->key_list, list) { in ieee80211_key_switch_links()
1459 if (key->conf.link_id < 0 || in ieee80211_key_switch_links()
1460 !(del_links_mask & BIT(key->conf.link_id))) in ieee80211_key_switch_links()
1464 WARN_ON(key->sta); in ieee80211_key_switch_links()
1466 ieee80211_key_disable_hw_accel(key); in ieee80211_key_switch_links()
1469 list_for_each_entry(key, &sdata->key_list, list) { in ieee80211_key_switch_links()
1470 if (key->conf.link_id < 0 || in ieee80211_key_switch_links()
1471 !(add_links_mask & BIT(key->conf.link_id))) in ieee80211_key_switch_links()
1475 WARN_ON(key->sta); in ieee80211_key_switch_links()
1477 ret = ieee80211_key_enable_hw_accel(key); in ieee80211_key_switch_links()