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()
538 /* Only needed for transition from no key -> key. in ieee80211_key_replace()
539 * Still triggers unnecessary when using Extended Key ID in ieee80211_key_replace()
540 * and installing the second key ID the first time. in ieee80211_key_replace()
597 struct ieee80211_key *key; in ieee80211_key_alloc() local
605 key = kzalloc(sizeof(struct ieee80211_key) + key_len, GFP_KERNEL); in ieee80211_key_alloc()
606 if (!key) in ieee80211_key_alloc()
611 * key to the hardware if possible. in ieee80211_key_alloc()
613 key->conf.flags = 0; in ieee80211_key_alloc()
614 key->flags = 0; in ieee80211_key_alloc()
616 key->conf.link_id = -1; in ieee80211_key_alloc()
617 key->conf.cipher = cipher; in ieee80211_key_alloc()
618 key->conf.keyidx = idx; in ieee80211_key_alloc()
619 key->conf.keylen = key_len; in ieee80211_key_alloc()
623 key->conf.iv_len = IEEE80211_WEP_IV_LEN; in ieee80211_key_alloc()
624 key->conf.icv_len = IEEE80211_WEP_ICV_LEN; in ieee80211_key_alloc()
627 key->conf.iv_len = IEEE80211_TKIP_IV_LEN; in ieee80211_key_alloc()
628 key->conf.icv_len = IEEE80211_TKIP_ICV_LEN; in ieee80211_key_alloc()
631 key->u.tkip.rx[i].iv32 = in ieee80211_key_alloc()
633 key->u.tkip.rx[i].iv16 = in ieee80211_key_alloc()
637 spin_lock_init(&key->u.tkip.txlock); in ieee80211_key_alloc()
640 key->conf.iv_len = IEEE80211_CCMP_HDR_LEN; in ieee80211_key_alloc()
641 key->conf.icv_len = IEEE80211_CCMP_MIC_LEN; in ieee80211_key_alloc()
645 key->u.ccmp.rx_pn[i][j] = in ieee80211_key_alloc()
649 * Initialize AES key state here as an optimization so that in ieee80211_key_alloc()
652 key->u.ccmp.tfm = ieee80211_aes_key_setup_encrypt( in ieee80211_key_alloc()
654 if (IS_ERR(key->u.ccmp.tfm)) { in ieee80211_key_alloc()
655 err = PTR_ERR(key->u.ccmp.tfm); in ieee80211_key_alloc()
656 kfree(key); in ieee80211_key_alloc()
661 key->conf.iv_len = IEEE80211_CCMP_256_HDR_LEN; in ieee80211_key_alloc()
662 key->conf.icv_len = IEEE80211_CCMP_256_MIC_LEN; in ieee80211_key_alloc()
665 key->u.ccmp.rx_pn[i][j] = in ieee80211_key_alloc()
667 /* Initialize AES key state here as an optimization so that in ieee80211_key_alloc()
670 key->u.ccmp.tfm = ieee80211_aes_key_setup_encrypt( in ieee80211_key_alloc()
672 if (IS_ERR(key->u.ccmp.tfm)) { in ieee80211_key_alloc()
673 err = PTR_ERR(key->u.ccmp.tfm); in ieee80211_key_alloc()
674 kfree(key); in ieee80211_key_alloc()
680 key->conf.iv_len = 0; in ieee80211_key_alloc()
682 key->conf.icv_len = sizeof(struct ieee80211_mmie); in ieee80211_key_alloc()
684 key->conf.icv_len = sizeof(struct ieee80211_mmie_16); in ieee80211_key_alloc()
687 key->u.aes_cmac.rx_pn[j] = in ieee80211_key_alloc()
690 * Initialize AES key state here as an optimization so that in ieee80211_key_alloc()
693 key->u.aes_cmac.tfm = in ieee80211_key_alloc()
695 if (IS_ERR(key->u.aes_cmac.tfm)) { in ieee80211_key_alloc()
696 err = PTR_ERR(key->u.aes_cmac.tfm); in ieee80211_key_alloc()
697 kfree(key); in ieee80211_key_alloc()
703 key->conf.iv_len = 0; in ieee80211_key_alloc()
704 key->conf.icv_len = sizeof(struct ieee80211_mmie_16); in ieee80211_key_alloc()
707 key->u.aes_gmac.rx_pn[j] = in ieee80211_key_alloc()
709 /* Initialize AES key state here as an optimization so that in ieee80211_key_alloc()
712 key->u.aes_gmac.tfm = in ieee80211_key_alloc()
714 if (IS_ERR(key->u.aes_gmac.tfm)) { in ieee80211_key_alloc()
715 err = PTR_ERR(key->u.aes_gmac.tfm); in ieee80211_key_alloc()
716 kfree(key); in ieee80211_key_alloc()
722 key->conf.iv_len = IEEE80211_GCMP_HDR_LEN; in ieee80211_key_alloc()
723 key->conf.icv_len = IEEE80211_GCMP_MIC_LEN; in ieee80211_key_alloc()
726 key->u.gcmp.rx_pn[i][j] = in ieee80211_key_alloc()
728 /* Initialize AES key state here as an optimization so that in ieee80211_key_alloc()
731 key->u.gcmp.tfm = ieee80211_aes_gcm_key_setup_encrypt(key_data, in ieee80211_key_alloc()
733 if (IS_ERR(key->u.gcmp.tfm)) { in ieee80211_key_alloc()
734 err = PTR_ERR(key->u.gcmp.tfm); in ieee80211_key_alloc()
735 kfree(key); in ieee80211_key_alloc()
740 memcpy(key->conf.key, key_data, key_len); in ieee80211_key_alloc()
741 INIT_LIST_HEAD(&key->list); in ieee80211_key_alloc()
743 return key; in ieee80211_key_alloc()
746 static void ieee80211_key_free_common(struct ieee80211_key *key) in ieee80211_key_free_common() argument
748 switch (key->conf.cipher) { in ieee80211_key_free_common()
751 ieee80211_aes_key_free(key->u.ccmp.tfm); in ieee80211_key_free_common()
755 ieee80211_aes_cmac_key_free(key->u.aes_cmac.tfm); in ieee80211_key_free_common()
759 ieee80211_aes_gmac_key_free(key->u.aes_gmac.tfm); in ieee80211_key_free_common()
763 ieee80211_aes_gcm_key_free(key->u.gcmp.tfm); in ieee80211_key_free_common()
766 kfree_sensitive(key); in ieee80211_key_free_common()
769 static void __ieee80211_key_destroy(struct ieee80211_key *key, in __ieee80211_key_destroy() argument
772 if (key->local) { in __ieee80211_key_destroy()
773 struct ieee80211_sub_if_data *sdata = key->sdata; in __ieee80211_key_destroy()
775 ieee80211_debugfs_key_remove(key); in __ieee80211_key_destroy()
788 ieee80211_key_free_common(key); in __ieee80211_key_destroy()
791 static void ieee80211_key_destroy(struct ieee80211_key *key, in ieee80211_key_destroy() argument
794 if (!key) in ieee80211_key_destroy()
798 * Synchronize so the TX path and rcu key iterators in ieee80211_key_destroy()
799 * can no longer be using this key before we free/remove it. in ieee80211_key_destroy()
803 __ieee80211_key_destroy(key, delay_tailroom); in ieee80211_key_destroy()
806 void ieee80211_key_free_unused(struct ieee80211_key *key) in ieee80211_key_free_unused() argument
808 if (!key) in ieee80211_key_free_unused()
811 WARN_ON(key->sdata || key->local); in ieee80211_key_free_unused()
812 ieee80211_key_free_common(key); in ieee80211_key_free_unused()
825 tk_old = old->conf.key; in ieee80211_key_identical()
826 tk_new = new->conf.key; in ieee80211_key_identical()
829 * In station mode, don't compare the TX MIC key, as it's never used in ieee80211_key_identical()
848 int ieee80211_key_link(struct ieee80211_key *key, in ieee80211_key_link() argument
855 int idx = key->conf.keyidx; in ieee80211_key_link()
856 bool pairwise = key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE; in ieee80211_key_link()
875 /* The rekey code assumes that the old and new key are using in ieee80211_key_link()
878 if ((alt_key && alt_key->conf.cipher != key->conf.cipher) || in ieee80211_key_link()
879 (old_key && old_key->conf.cipher != key->conf.cipher)) { in ieee80211_key_link()
885 int link_id = key->conf.link_id; in ieee80211_key_link()
909 if (old_key && old_key->conf.cipher != key->conf.cipher) { in ieee80211_key_link()
916 * Silently accept key re-installation without really installing the in ieee80211_key_link()
917 * new version of the key to avoid nonce reuse or replay issues. in ieee80211_key_link()
919 if (ieee80211_key_identical(sdata, old_key, key)) { in ieee80211_key_link()
924 key->local = sdata->local; in ieee80211_key_link()
925 key->sdata = sdata; in ieee80211_key_link()
926 key->sta = sta; in ieee80211_key_link()
929 * Assign a unique ID to every key so we can easily prevent mixed in ieee80211_key_link()
930 * key and fragment cache attacks. in ieee80211_key_link()
932 key->color = atomic_inc_return(&key_color); in ieee80211_key_link()
936 key->conf.flags |= IEEE80211_KEY_FLAG_SPP_AMSDU; in ieee80211_key_link()
940 ret = ieee80211_key_replace(sdata, link, sta, pairwise, old_key, key); in ieee80211_key_link()
943 ieee80211_debugfs_key_add(key); in ieee80211_key_link()
946 ieee80211_key_free(key, delay_tailroom); in ieee80211_key_link()
949 key = NULL; in ieee80211_key_link()
952 ieee80211_key_free_unused(key); in ieee80211_key_link()
956 void ieee80211_key_free(struct ieee80211_key *key, bool delay_tailroom) in ieee80211_key_free() argument
958 if (!key) in ieee80211_key_free()
962 * Replace key with nothingness if it was ever used. in ieee80211_key_free()
964 if (key->sdata) in ieee80211_key_free()
965 ieee80211_key_replace(key->sdata, NULL, key->sta, in ieee80211_key_free()
966 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE, in ieee80211_key_free()
967 key, NULL); in ieee80211_key_free()
968 ieee80211_key_destroy(key, delay_tailroom); in ieee80211_key_free()
973 struct ieee80211_key *key; in ieee80211_reenable_keys() local
989 list_for_each_entry(key, &sdata->key_list, list) { in ieee80211_reenable_keys()
990 if (!(key->flags & KEY_FLAG_TAINTED)) in ieee80211_reenable_keys()
992 ieee80211_key_enable_hw_accel(key); in ieee80211_reenable_keys()
1000 struct ieee80211_key *key, in ieee80211_key_iter() argument
1004 struct ieee80211_key_conf *key, in ieee80211_key_iter() argument
1009 if (key->sta && key->sta->removed) in ieee80211_key_iter()
1011 if (!(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)) in ieee80211_key_iter()
1013 iter(hw, vif, key->sta ? &key->sta->sta : NULL, in ieee80211_key_iter()
1014 &key->conf, iter_data); in ieee80211_key_iter()
1022 struct ieee80211_key_conf *key, in ieee80211_iter_keys() argument
1027 struct ieee80211_key *key, *tmp; in ieee80211_iter_keys() local
1034 list_for_each_entry_safe(key, tmp, &sdata->key_list, list) in ieee80211_iter_keys()
1035 ieee80211_key_iter(hw, vif, key, iter, iter_data); in ieee80211_iter_keys()
1038 list_for_each_entry_safe(key, tmp, in ieee80211_iter_keys()
1040 ieee80211_key_iter(hw, &sdata->vif, key, in ieee80211_iter_keys()
1052 struct ieee80211_key_conf *key, in _ieee80211_iter_keys_rcu() argument
1056 struct ieee80211_key *key; in _ieee80211_iter_keys_rcu() local
1058 list_for_each_entry_rcu(key, &sdata->key_list, list) in _ieee80211_iter_keys_rcu()
1059 ieee80211_key_iter(hw, &sdata->vif, key, iter, iter_data); in _ieee80211_iter_keys_rcu()
1067 struct ieee80211_key_conf *key, in ieee80211_iter_keys_rcu() argument
1087 struct ieee80211_key *key, *tmp; in ieee80211_free_keys_iface() local
1096 list_for_each_entry_safe(key, tmp, &sdata->key_list, list) { in ieee80211_free_keys_iface()
1097 ieee80211_key_replace(key->sdata, NULL, key->sta, in ieee80211_free_keys_iface()
1098 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE, in ieee80211_free_keys_iface()
1099 key, NULL); in ieee80211_free_keys_iface()
1100 list_add_tail(&key->list, keys); in ieee80211_free_keys_iface()
1111 struct ieee80211_key *key, *tmp; in ieee80211_remove_link_keys() local
1115 list_for_each_entry_safe(key, tmp, &sdata->key_list, list) { in ieee80211_remove_link_keys()
1116 if (key->conf.link_id != link->link_id) in ieee80211_remove_link_keys()
1118 ieee80211_key_replace(key->sdata, link, key->sta, in ieee80211_remove_link_keys()
1119 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE, in ieee80211_remove_link_keys()
1120 key, NULL); in ieee80211_remove_link_keys()
1121 list_add_tail(&key->list, keys); in ieee80211_remove_link_keys()
1128 struct ieee80211_key *key, *tmp; in ieee80211_free_key_list() local
1132 list_for_each_entry_safe(key, tmp, keys, list) in ieee80211_free_key_list()
1133 __ieee80211_key_destroy(key, false); in ieee80211_free_key_list()
1142 struct ieee80211_key *key, *tmp; in ieee80211_free_keys() local
1159 list_for_each_entry_safe(key, tmp, &keys, list) in ieee80211_free_keys()
1160 __ieee80211_key_destroy(key, false); in ieee80211_free_keys()
1186 struct ieee80211_key *key; in ieee80211_free_sta_keys() local
1192 key = wiphy_dereference(local->hw.wiphy, sta->deflink.gtk[i]); in ieee80211_free_sta_keys()
1193 if (!key) in ieee80211_free_sta_keys()
1195 ieee80211_key_replace(key->sdata, NULL, key->sta, in ieee80211_free_sta_keys()
1196 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE, in ieee80211_free_sta_keys()
1197 key, NULL); in ieee80211_free_sta_keys()
1198 __ieee80211_key_destroy(key, key->sdata->vif.type == in ieee80211_free_sta_keys()
1203 key = wiphy_dereference(local->hw.wiphy, sta->ptk[i]); in ieee80211_free_sta_keys()
1204 if (!key) in ieee80211_free_sta_keys()
1206 ieee80211_key_replace(key->sdata, NULL, key->sta, in ieee80211_free_sta_keys()
1207 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE, in ieee80211_free_sta_keys()
1208 key, NULL); in ieee80211_free_sta_keys()
1209 __ieee80211_key_destroy(key, key->sdata->vif.type == in ieee80211_free_sta_keys()
1225 * and then new keys are installed. The first new key causes the in ieee80211_delayed_tailroom_dec()
1229 * key removal for a while, so if we roam the value is larger than in ieee80211_delayed_tailroom_dec()
1257 struct ieee80211_key *key; in ieee80211_get_key_rx_seq() local
1260 key = container_of(keyconf, struct ieee80211_key, conf); in ieee80211_get_key_rx_seq()
1262 switch (key->conf.cipher) { in ieee80211_get_key_rx_seq()
1266 seq->tkip.iv32 = key->u.tkip.rx[tid].iv32; in ieee80211_get_key_rx_seq()
1267 seq->tkip.iv16 = key->u.tkip.rx[tid].iv16; in ieee80211_get_key_rx_seq()
1274 pn = key->u.ccmp.rx_pn[IEEE80211_NUM_TIDS]; in ieee80211_get_key_rx_seq()
1276 pn = key->u.ccmp.rx_pn[tid]; in ieee80211_get_key_rx_seq()
1283 pn = key->u.aes_cmac.rx_pn; in ieee80211_get_key_rx_seq()
1290 pn = key->u.aes_gmac.rx_pn; in ieee80211_get_key_rx_seq()
1298 pn = key->u.gcmp.rx_pn[IEEE80211_NUM_TIDS]; in ieee80211_get_key_rx_seq()
1300 pn = key->u.gcmp.rx_pn[tid]; in ieee80211_get_key_rx_seq()
1310 struct ieee80211_key *key; in ieee80211_set_key_rx_seq() local
1313 key = container_of(keyconf, struct ieee80211_key, conf); in ieee80211_set_key_rx_seq()
1315 switch (key->conf.cipher) { in ieee80211_set_key_rx_seq()
1319 key->u.tkip.rx[tid].iv32 = seq->tkip.iv32; in ieee80211_set_key_rx_seq()
1320 key->u.tkip.rx[tid].iv16 = seq->tkip.iv16; in ieee80211_set_key_rx_seq()
1327 pn = key->u.ccmp.rx_pn[IEEE80211_NUM_TIDS]; in ieee80211_set_key_rx_seq()
1329 pn = key->u.ccmp.rx_pn[tid]; in ieee80211_set_key_rx_seq()
1336 pn = key->u.aes_cmac.rx_pn; in ieee80211_set_key_rx_seq()
1343 pn = key->u.aes_gmac.rx_pn; in ieee80211_set_key_rx_seq()
1351 pn = key->u.gcmp.rx_pn[IEEE80211_NUM_TIDS]; in ieee80211_set_key_rx_seq()
1353 pn = key->u.gcmp.rx_pn[tid]; in ieee80211_set_key_rx_seq()
1371 struct ieee80211_key *key; in ieee80211_gtk_rekey_add() local
1415 key = ieee80211_key_alloc(prev_key->conf.cipher, idx, in ieee80211_gtk_rekey_add()
1418 if (IS_ERR(key)) in ieee80211_gtk_rekey_add()
1419 return ERR_CAST(key); in ieee80211_gtk_rekey_add()
1422 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT; in ieee80211_gtk_rekey_add()
1424 key->conf.link_id = link_data->link_id; in ieee80211_gtk_rekey_add()
1426 err = ieee80211_key_link(key, link_data, NULL); in ieee80211_gtk_rekey_add()
1430 return &key->conf; in ieee80211_gtk_rekey_add()
1436 struct ieee80211_key *key; in ieee80211_key_mic_failure() local
1438 key = container_of(keyconf, struct ieee80211_key, conf); in ieee80211_key_mic_failure()
1440 switch (key->conf.cipher) { in ieee80211_key_mic_failure()
1443 key->u.aes_cmac.icverrors++; in ieee80211_key_mic_failure()
1447 key->u.aes_gmac.icverrors++; in ieee80211_key_mic_failure()
1458 struct ieee80211_key *key; in ieee80211_key_replay() local
1460 key = container_of(keyconf, struct ieee80211_key, conf); in ieee80211_key_replay()
1462 switch (key->conf.cipher) { in ieee80211_key_replay()
1465 key->u.ccmp.replays++; in ieee80211_key_replay()
1469 key->u.aes_cmac.replays++; in ieee80211_key_replay()
1473 key->u.aes_gmac.replays++; in ieee80211_key_replay()
1477 key->u.gcmp.replays++; in ieee80211_key_replay()
1487 struct ieee80211_key *key; in ieee80211_key_switch_links() local
1490 list_for_each_entry(key, &sdata->key_list, list) { in ieee80211_key_switch_links()
1491 if (key->conf.link_id < 0 || in ieee80211_key_switch_links()
1492 !(del_links_mask & BIT(key->conf.link_id))) in ieee80211_key_switch_links()
1496 WARN_ON(key->sta); in ieee80211_key_switch_links()
1498 ieee80211_key_disable_hw_accel(key); in ieee80211_key_switch_links()
1501 list_for_each_entry(key, &sdata->key_list, list) { in ieee80211_key_switch_links()
1502 if (key->conf.link_id < 0 || in ieee80211_key_switch_links()
1503 !(add_links_mask & BIT(key->conf.link_id))) in ieee80211_key_switch_links()
1507 WARN_ON(key->sta); in ieee80211_key_switch_links()
1509 ret = ieee80211_key_enable_hw_accel(key); in ieee80211_key_switch_links()