blob: a4817aa4b17133430f612911e213ac96a313407b [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Johannes Berg1f5a7e42007-07-27 15:43:23 +02002/*
3 * Copyright 2002-2005, Instant802 Networks, Inc.
4 * Copyright 2005-2006, Devicescape Software, Inc.
5 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
Johannes Berg3b967662008-04-08 17:56:52 +02006 * Copyright 2007-2008 Johannes Berg <johannes@sipsolutions.net>
Johannes Bergd98ad832014-09-03 15:24:57 +03007 * Copyright 2013-2014 Intel Mobile Communications GmbH
Johannes Bergfdf7cb42017-09-05 14:54:54 +02008 * Copyright 2015-2017 Intel Deutschland GmbH
Johannes Berga0761a32020-03-26 15:09:42 +02009 * Copyright 2018-2020 Intel Corporation
Johannes Berg1f5a7e42007-07-27 15:43:23 +020010 */
11
Johannes Berg11a843b2007-08-28 17:01:55 -040012#include <linux/if_ether.h>
13#include <linux/etherdevice.h>
14#include <linux/list.h>
Johannes Bergd4e46a32007-09-14 11:10:24 -040015#include <linux/rcupdate.h>
Johannes Bergdb4d1162008-02-25 16:27:45 +010016#include <linux/rtnetlink.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040018#include <linux/export.h>
Johannes Berg1f5a7e42007-07-27 15:43:23 +020019#include <net/mac80211.h>
Jason A. Donenfeld2bdd7132017-10-17 20:32:07 +020020#include <crypto/algapi.h>
Johannes Bergd26ad372012-02-20 11:38:41 +010021#include <asm/unaligned.h>
Johannes Berg1f5a7e42007-07-27 15:43:23 +020022#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020023#include "driver-ops.h"
Johannes Berg1f5a7e42007-07-27 15:43:23 +020024#include "debugfs_key.h"
25#include "aes_ccm.h"
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +020026#include "aes_cmac.h"
Jouni Malinen8ade5382015-01-24 19:52:09 +020027#include "aes_gmac.h"
Jouni Malinen00b9cfa2015-01-24 19:52:06 +020028#include "aes_gcm.h"
Johannes Berg1f5a7e42007-07-27 15:43:23 +020029
Johannes Berg11a843b2007-08-28 17:01:55 -040030
Johannes Bergdbbea672008-02-26 14:34:06 +010031/**
32 * DOC: Key handling basics
Johannes Berg11a843b2007-08-28 17:01:55 -040033 *
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.
37 *
Johannes Bergb5c34f62011-01-03 19:51:09 +010038 * 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.
Johannes Berg11a843b2007-08-28 17:01:55 -040045 *
Johannes Bergb5c34f62011-01-03 19:51:09 +010046 * 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.
Johannes Berg11a843b2007-08-28 17:01:55 -040052 */
53
54static const u8 bcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
Johannes Berg11a843b2007-08-28 17:01:55 -040055
Johannes Bergad0e2b52010-06-01 10:19:19 +020056static void assert_key_lock(struct ieee80211_local *local)
Johannes Berg3b967662008-04-08 17:56:52 +020057{
Johannes Berg46a5eba2010-09-15 13:28:15 +020058 lockdep_assert_held(&local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +020059}
60
Michal Kaziorf9dca802015-05-13 09:16:48 +000061static void
62update_vlan_tailroom_need_count(struct ieee80211_sub_if_data *sdata, int delta)
63{
64 struct ieee80211_sub_if_data *vlan;
65
66 if (sdata->vif.type != NL80211_IFTYPE_AP)
67 return;
68
Johannes Berg51f458d2015-06-17 13:54:54 +020069 /* crypto_tx_tailroom_needed_cnt is protected by this */
70 assert_key_lock(sdata->local);
Michal Kaziorf9dca802015-05-13 09:16:48 +000071
Johannes Berg51f458d2015-06-17 13:54:54 +020072 rcu_read_lock();
73
74 list_for_each_entry_rcu(vlan, &sdata->u.ap.vlans, u.vlan.list)
Michal Kaziorf9dca802015-05-13 09:16:48 +000075 vlan->crypto_tx_tailroom_needed_cnt += delta;
76
Johannes Berg51f458d2015-06-17 13:54:54 +020077 rcu_read_unlock();
Michal Kaziorf9dca802015-05-13 09:16:48 +000078}
79
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +053080static void increment_tailroom_need_count(struct ieee80211_sub_if_data *sdata)
81{
82 /*
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:
86 *
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.
89 *
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
92 * off.
93 *
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)
96 *
97 * Solution has been explained at
98 * http://mid.gmane.org/1308590980.4322.19.camel@jlt3.sipsolutions.net
99 */
100
Johannes Berg51f458d2015-06-17 13:54:54 +0200101 assert_key_lock(sdata->local);
102
Michal Kaziorf9dca802015-05-13 09:16:48 +0000103 update_vlan_tailroom_need_count(sdata, 1);
104
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530105 if (!sdata->crypto_tx_tailroom_needed_cnt++) {
106 /*
107 * Flush all XMIT packets currently using HW encryption or no
108 * encryption at all if the count transition is from 0 -> 1.
109 */
110 synchronize_net();
111 }
112}
113
Michal Kaziorf9dca802015-05-13 09:16:48 +0000114static void decrease_tailroom_need_count(struct ieee80211_sub_if_data *sdata,
115 int delta)
116{
Johannes Berg51f458d2015-06-17 13:54:54 +0200117 assert_key_lock(sdata->local);
118
Michal Kaziorf9dca802015-05-13 09:16:48 +0000119 WARN_ON_ONCE(sdata->crypto_tx_tailroom_needed_cnt < delta);
120
121 update_vlan_tailroom_need_count(sdata, -delta);
122 sdata->crypto_tx_tailroom_needed_cnt -= delta;
123}
124
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300125static int ieee80211_key_enable_hw_accel(struct ieee80211_key *key)
Johannes Berg11a843b2007-08-28 17:01:55 -0400126{
Manikanta Pubbisettydb3bdcb2018-03-28 18:34:19 +0530127 struct ieee80211_sub_if_data *sdata = key->sdata;
Johannes Berg89c91ca2012-01-20 13:55:19 +0100128 struct sta_info *sta;
Johannes Bergfa7e1fb2015-01-22 18:44:19 +0100129 int ret = -EOPNOTSUPP;
Johannes Berg11a843b2007-08-28 17:01:55 -0400130
Johannes Berg3b967662008-04-08 17:56:52 +0200131 might_sleep();
132
Johannes Berg46191942014-10-13 13:43:29 +0200133 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
139 * it again later.
140 */
Alexander Wetzel092c4092019-03-16 21:44:43 +0100141 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE &&
142 !(key->conf.flags & (IEEE80211_KEY_FLAG_GENERATE_MMIC |
143 IEEE80211_KEY_FLAG_PUT_MIC_SPACE |
144 IEEE80211_KEY_FLAG_RESERVE_TAILROOM)))
145 increment_tailroom_need_count(sdata);
146
Johannes Berg46191942014-10-13 13:43:29 +0200147 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
Johannes Berg27b3eb92013-08-07 20:11:55 +0200148 return -EINVAL;
Johannes Berg46191942014-10-13 13:43:29 +0200149 }
Johannes Berg27b3eb92013-08-07 20:11:55 +0200150
Johannes Berge31b8212010-10-05 19:39:30 +0200151 if (!key->local->ops->set_key)
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300152 goto out_unsupported;
Johannes Berg11a843b2007-08-28 17:01:55 -0400153
Johannes Bergad0e2b52010-06-01 10:19:19 +0200154 assert_key_lock(key->local);
155
Johannes Berg89c91ca2012-01-20 13:55:19 +0100156 sta = key->sta;
Johannes Bergdc822b52008-12-29 12:55:09 +0100157
Johannes Berge31b8212010-10-05 19:39:30 +0200158 /*
159 * If this is a per-STA GTK, check if it
160 * is supported; if not, return.
161 */
162 if (sta && !(key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE) &&
Johannes Berg30686bf2015-06-02 21:39:54 +0200163 !ieee80211_hw_check(&key->local->hw, SUPPORTS_PER_STA_GTK))
Johannes Berge31b8212010-10-05 19:39:30 +0200164 goto out_unsupported;
165
Johannes Berg89c91ca2012-01-20 13:55:19 +0100166 if (sta && !sta->uploaded)
167 goto out_unsupported;
168
Helmut Schaa18890d42010-11-19 08:11:01 +0100169 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
170 /*
171 * The driver doesn't know anything about VLAN interfaces.
172 * Hence, don't send GTKs for VLAN interfaces to the driver.
173 */
Alexander Wetzel78ad2342019-02-09 15:01:38 +0100174 if (!(key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
175 ret = 1;
Helmut Schaa18890d42010-11-19 08:11:01 +0100176 goto out_unsupported;
Alexander Wetzel78ad2342019-02-09 15:01:38 +0100177 }
Helmut Schaa18890d42010-11-19 08:11:01 +0100178 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400179
Johannes Berg89c91ca2012-01-20 13:55:19 +0100180 ret = drv_set_key(key->local, SET_KEY, sdata,
181 sta ? &sta->sta : NULL, &key->conf);
Johannes Berg11a843b2007-08-28 17:01:55 -0400182
Johannes Berge31b8212010-10-05 19:39:30 +0200183 if (!ret) {
Johannes Berg11a843b2007-08-28 17:01:55 -0400184 key->flags |= KEY_FLAG_UPLOADED_TO_HARDWARE;
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530185
Alexander Wetzel092c4092019-03-16 21:44:43 +0100186 if (!(key->conf.flags & (IEEE80211_KEY_FLAG_GENERATE_MMIC |
187 IEEE80211_KEY_FLAG_PUT_MIC_SPACE |
188 IEEE80211_KEY_FLAG_RESERVE_TAILROOM)))
Michal Kaziorf9dca802015-05-13 09:16:48 +0000189 decrease_tailroom_need_count(sdata, 1);
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530190
Arik Nemtsov077a9152011-10-23 08:21:41 +0200191 WARN_ON((key->conf.flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE) &&
192 (key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV));
193
David Spinadel9de18d82017-12-01 13:50:52 +0200194 WARN_ON((key->conf.flags & IEEE80211_KEY_FLAG_PUT_MIC_SPACE) &&
195 (key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC));
196
Johannes Berge31b8212010-10-05 19:39:30 +0200197 return 0;
198 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400199
Johannes Bergfa7e1fb2015-01-22 18:44:19 +0100200 if (ret != -ENOSPC && ret != -EOPNOTSUPP && ret != 1)
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200201 sdata_err(sdata,
Joe Perches0fb9a9e2010-08-20 16:25:38 -0700202 "failed to set key (%d, %pM) to hardware (%d)\n",
Johannes Berg89c91ca2012-01-20 13:55:19 +0100203 key->conf.keyidx,
204 sta ? sta->sta.addr : bcast_addr, ret);
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300205
Johannes Berge31b8212010-10-05 19:39:30 +0200206 out_unsupported:
207 switch (key->conf.cipher) {
208 case WLAN_CIPHER_SUITE_WEP40:
209 case WLAN_CIPHER_SUITE_WEP104:
210 case WLAN_CIPHER_SUITE_TKIP:
211 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200212 case WLAN_CIPHER_SUITE_CCMP_256:
John Crispin3c706b92020-02-03 13:28:12 +0100213 case WLAN_CIPHER_SUITE_GCMP:
214 case WLAN_CIPHER_SUITE_GCMP_256:
Johannes Berge31b8212010-10-05 19:39:30 +0200215 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +0200216 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Jouni Malinen8ade5382015-01-24 19:52:09 +0200217 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
218 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
Johannes Bergfa7e1fb2015-01-22 18:44:19 +0100219 /* all of these we can do in software - if driver can */
220 if (ret == 1)
221 return 0;
Alexander Wetzel78ad2342019-02-09 15:01:38 +0100222 if (ieee80211_hw_check(&key->local->hw, SW_CRYPTO_CONTROL))
Johannes Bergfa7e1fb2015-01-22 18:44:19 +0100223 return -EINVAL;
Johannes Berge31b8212010-10-05 19:39:30 +0200224 return 0;
225 default:
226 return -EINVAL;
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300227 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400228}
229
230static void ieee80211_key_disable_hw_accel(struct ieee80211_key *key)
231{
Johannes Bergdc822b52008-12-29 12:55:09 +0100232 struct ieee80211_sub_if_data *sdata;
Johannes Berg89c91ca2012-01-20 13:55:19 +0100233 struct sta_info *sta;
Johannes Berg11a843b2007-08-28 17:01:55 -0400234 int ret;
235
Johannes Berg3b967662008-04-08 17:56:52 +0200236 might_sleep();
237
Johannes Bergdb4d1162008-02-25 16:27:45 +0100238 if (!key || !key->local->ops->set_key)
Johannes Berg11a843b2007-08-28 17:01:55 -0400239 return;
240
Johannes Bergad0e2b52010-06-01 10:19:19 +0200241 assert_key_lock(key->local);
242
243 if (!(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
Johannes Berg11a843b2007-08-28 17:01:55 -0400244 return;
245
Johannes Berg89c91ca2012-01-20 13:55:19 +0100246 sta = key->sta;
Johannes Bergdc822b52008-12-29 12:55:09 +0100247 sdata = key->sdata;
248
Alexander Wetzel092c4092019-03-16 21:44:43 +0100249 if (!(key->conf.flags & (IEEE80211_KEY_FLAG_GENERATE_MMIC |
250 IEEE80211_KEY_FLAG_PUT_MIC_SPACE |
251 IEEE80211_KEY_FLAG_RESERVE_TAILROOM)))
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530252 increment_tailroom_need_count(sdata);
253
Alexander Wetzel62872a92018-08-31 15:00:38 +0200254 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
Johannes Berg12375ef2009-11-25 20:30:31 +0100255 ret = drv_set_key(key->local, DISABLE_KEY, sdata,
Johannes Berg89c91ca2012-01-20 13:55:19 +0100256 sta ? &sta->sta : NULL, &key->conf);
Johannes Berg11a843b2007-08-28 17:01:55 -0400257
258 if (ret)
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200259 sdata_err(sdata,
Joe Perches0fb9a9e2010-08-20 16:25:38 -0700260 "failed to remove key (%d, %pM) from hardware (%d)\n",
Johannes Berg89c91ca2012-01-20 13:55:19 +0100261 key->conf.keyidx,
262 sta ? sta->sta.addr : bcast_addr, ret);
Alexander Wetzel62872a92018-08-31 15:00:38 +0200263}
Johannes Berg11a843b2007-08-28 17:01:55 -0400264
Johannes Berga0761a32020-03-26 15:09:42 +0200265static int _ieee80211_set_tx_key(struct ieee80211_key *key, bool force)
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +0100266{
267 struct sta_info *sta = key->sta;
268 struct ieee80211_local *local = key->local;
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +0100269
270 assert_key_lock(local);
271
Johannes Berga0761a32020-03-26 15:09:42 +0200272 set_sta_flag(sta, WLAN_STA_USES_ENCRYPTION);
273
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +0100274 sta->ptk_idx = key->conf.keyidx;
Alexander Wetzel90cc4bd2019-05-06 21:01:48 +0200275
Johannes Berga0761a32020-03-26 15:09:42 +0200276 if (force || !ieee80211_hw_check(&local->hw, AMPDU_KEYBORDER_SUPPORT))
Alexander Wetzeldc3998e2019-06-29 21:50:14 +0200277 clear_sta_flag(sta, WLAN_STA_BLOCK_BA);
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +0100278 ieee80211_check_fast_xmit(sta);
279
280 return 0;
281}
282
Johannes Berga0761a32020-03-26 15:09:42 +0200283int ieee80211_set_tx_key(struct ieee80211_key *key)
284{
285 return _ieee80211_set_tx_key(key, false);
286}
287
Alexander Wetzel90cc4bd2019-05-06 21:01:48 +0200288static void ieee80211_pairwise_rekey(struct ieee80211_key *old,
289 struct ieee80211_key *new)
Alexander Wetzel62872a92018-08-31 15:00:38 +0200290{
Alexander Wetzel90cc4bd2019-05-06 21:01:48 +0200291 struct ieee80211_local *local = new->local;
292 struct sta_info *sta = new->sta;
293 int i;
Alexander Wetzel62872a92018-08-31 15:00:38 +0200294
Alexander Wetzel90cc4bd2019-05-06 21:01:48 +0200295 assert_key_lock(local);
Alexander Wetzel62872a92018-08-31 15:00:38 +0200296
Alexander Wetzel90cc4bd2019-05-06 21:01:48 +0200297 if (new->conf.flags & IEEE80211_KEY_FLAG_NO_AUTO_TX) {
298 /* Extended Key ID key install, initial one or rekey */
Alexander Wetzel62872a92018-08-31 15:00:38 +0200299
Alexander Wetzeldc3998e2019-06-29 21:50:14 +0200300 if (sta->ptk_idx != INVALID_PTK_KEYIDX &&
301 !ieee80211_hw_check(&local->hw, AMPDU_KEYBORDER_SUPPORT)) {
Alexander Wetzel90cc4bd2019-05-06 21:01:48 +0200302 /* Aggregation Sessions with Extended Key ID must not
303 * mix MPDUs with different keyIDs within one A-MPDU.
Alexander Wetzel3e47bf12019-06-29 21:50:13 +0200304 * Tear down running Tx aggregation sessions and block
305 * new Rx/Tx aggregation requests during rekey to
Alexander Wetzeldc3998e2019-06-29 21:50:14 +0200306 * ensure there are no A-MPDUs when the driver is not
307 * supporting A-MPDU key borders. (Blocking Tx only
308 * would be sufficient but WLAN_STA_BLOCK_BA gets the
309 * job done for the few ms we need it.)
Alexander Wetzel90cc4bd2019-05-06 21:01:48 +0200310 */
311 set_sta_flag(sta, WLAN_STA_BLOCK_BA);
312 mutex_lock(&sta->ampdu_mlme.mtx);
313 for (i = 0; i < IEEE80211_NUM_TIDS; i++)
314 ___ieee80211_stop_tx_ba_session(sta, i,
315 AGG_STOP_LOCAL_REQUEST);
316 mutex_unlock(&sta->ampdu_mlme.mtx);
317 }
318 } else if (old) {
319 /* Rekey without Extended Key ID.
320 * Aggregation sessions are OK when running on SW crypto.
321 * A broken remote STA may cause issues not observed with HW
322 * crypto, though.
Alexander Wetzel62872a92018-08-31 15:00:38 +0200323 */
Alexander Wetzel90cc4bd2019-05-06 21:01:48 +0200324 if (!(old->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
325 return;
326
327 /* Stop Tx till we are on the new key */
328 old->flags |= KEY_FLAG_TAINTED;
329 ieee80211_clear_fast_xmit(sta);
Alexander Wetzel62872a92018-08-31 15:00:38 +0200330 if (ieee80211_hw_check(&local->hw, AMPDU_AGGREGATION)) {
331 set_sta_flag(sta, WLAN_STA_BLOCK_BA);
332 ieee80211_sta_tear_down_BA_sessions(sta,
333 AGG_STOP_LOCAL_REQUEST);
334 }
Alexander Wetzel62872a92018-08-31 15:00:38 +0200335 if (!wiphy_ext_feature_isset(local->hw.wiphy,
336 NL80211_EXT_FEATURE_CAN_REPLACE_PTK0)) {
337 pr_warn_ratelimited("Rekeying PTK for STA %pM but driver can't safely do that.",
338 sta->sta.addr);
339 /* Flushing the driver queues *may* help prevent
340 * the clear text leaks and freezes.
341 */
Alexander Wetzel90cc4bd2019-05-06 21:01:48 +0200342 ieee80211_flush_queues(local, old->sdata, false);
Alexander Wetzel62872a92018-08-31 15:00:38 +0200343 }
344 }
Johannes Berg3b967662008-04-08 17:56:52 +0200345}
346
347static void __ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata,
Johannes Bergf7e01042010-12-09 19:49:02 +0100348 int idx, bool uni, bool multi)
Johannes Berg3b967662008-04-08 17:56:52 +0200349{
350 struct ieee80211_key *key = NULL;
351
Johannes Bergad0e2b52010-06-01 10:19:19 +0200352 assert_key_lock(sdata->local);
353
Johannes Berg3b967662008-04-08 17:56:52 +0200354 if (idx >= 0 && idx < NUM_DEFAULT_KEYS)
Johannes Berg40b275b2011-05-13 14:15:49 +0200355 key = key_mtx_dereference(sdata->local, sdata->keys[idx]);
Johannes Berg3b967662008-04-08 17:56:52 +0200356
Yoni Divinskyde5fad82012-05-30 11:36:39 +0300357 if (uni) {
Johannes Bergf7e01042010-12-09 19:49:02 +0100358 rcu_assign_pointer(sdata->default_unicast_key, key);
Johannes Berg17c18bf2015-03-21 15:25:43 +0100359 ieee80211_check_fast_xmit_iface(sdata);
Johannes Bergec4efc42016-12-13 09:39:18 +0100360 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN)
361 drv_set_default_unicast_key(sdata->local, sdata, idx);
Yoni Divinskyde5fad82012-05-30 11:36:39 +0300362 }
363
Johannes Bergf7e01042010-12-09 19:49:02 +0100364 if (multi)
365 rcu_assign_pointer(sdata->default_multicast_key, key);
Johannes Berg3b967662008-04-08 17:56:52 +0200366
Johannes Bergf7e01042010-12-09 19:49:02 +0100367 ieee80211_debugfs_key_update_default(sdata);
Johannes Berg3b967662008-04-08 17:56:52 +0200368}
369
Johannes Bergf7e01042010-12-09 19:49:02 +0100370void ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata, int idx,
371 bool uni, bool multi)
Johannes Berg3b967662008-04-08 17:56:52 +0200372{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200373 mutex_lock(&sdata->local->key_mtx);
Johannes Bergf7e01042010-12-09 19:49:02 +0100374 __ieee80211_set_default_key(sdata, idx, uni, multi);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200375 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200376}
377
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200378static void
379__ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata, int idx)
380{
381 struct ieee80211_key *key = NULL;
382
Johannes Bergad0e2b52010-06-01 10:19:19 +0200383 assert_key_lock(sdata->local);
384
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200385 if (idx >= NUM_DEFAULT_KEYS &&
386 idx < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
Johannes Berg40b275b2011-05-13 14:15:49 +0200387 key = key_mtx_dereference(sdata->local, sdata->keys[idx]);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200388
389 rcu_assign_pointer(sdata->default_mgmt_key, key);
390
Johannes Bergf7e01042010-12-09 19:49:02 +0100391 ieee80211_debugfs_key_update_default(sdata);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200392}
393
394void ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata,
395 int idx)
396{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200397 mutex_lock(&sdata->local->key_mtx);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200398 __ieee80211_set_default_mgmt_key(sdata, idx);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200399 mutex_unlock(&sdata->local->key_mtx);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200400}
401
Jouni Malinene5473e82020-02-22 15:25:44 +0200402static void
403__ieee80211_set_default_beacon_key(struct ieee80211_sub_if_data *sdata, int idx)
404{
405 struct ieee80211_key *key = NULL;
406
407 assert_key_lock(sdata->local);
408
409 if (idx >= NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS &&
410 idx < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS +
411 NUM_DEFAULT_BEACON_KEYS)
412 key = key_mtx_dereference(sdata->local, sdata->keys[idx]);
413
414 rcu_assign_pointer(sdata->default_beacon_key, key);
415
416 ieee80211_debugfs_key_update_default(sdata);
417}
418
419void ieee80211_set_default_beacon_key(struct ieee80211_sub_if_data *sdata,
420 int idx)
421{
422 mutex_lock(&sdata->local->key_mtx);
423 __ieee80211_set_default_beacon_key(sdata, idx);
424 mutex_unlock(&sdata->local->key_mtx);
425}
426
Alexander Wetzel62872a92018-08-31 15:00:38 +0200427static int ieee80211_key_replace(struct ieee80211_sub_if_data *sdata,
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100428 struct sta_info *sta,
429 bool pairwise,
430 struct ieee80211_key *old,
431 struct ieee80211_key *new)
Johannes Berg3b967662008-04-08 17:56:52 +0200432{
Johannes Bergf7e01042010-12-09 19:49:02 +0100433 int idx;
Alexander Wetzel90cc4bd2019-05-06 21:01:48 +0200434 int ret = 0;
Jouni Malinene5473e82020-02-22 15:25:44 +0200435 bool defunikey, defmultikey, defmgmtkey, defbeaconkey;
Johannes Berg3b967662008-04-08 17:56:52 +0200436
Johannes Berg5282c3b2013-10-29 10:00:08 +0100437 /* caller must provide at least one old/new */
438 if (WARN_ON(!new && !old))
Alexander Wetzel62872a92018-08-31 15:00:38 +0200439 return 0;
Johannes Berg5282c3b2013-10-29 10:00:08 +0100440
Johannes Berg3b967662008-04-08 17:56:52 +0200441 if (new)
Eliad Pelleref044762015-11-17 10:24:37 +0200442 list_add_tail_rcu(&new->list, &sdata->key_list);
Johannes Berg3b967662008-04-08 17:56:52 +0200443
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200444 WARN_ON(new && old && new->conf.keyidx != old->conf.keyidx);
445
Alexander Wetzel90cc4bd2019-05-06 21:01:48 +0200446 if (new && sta && pairwise) {
447 /* Unicast rekey needs special handling. With Extended Key ID
448 * old is still NULL for the first rekey.
449 */
450 ieee80211_pairwise_rekey(old, new);
451 }
452
Alexander Wetzel62872a92018-08-31 15:00:38 +0200453 if (old) {
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200454 idx = old->conf.keyidx;
Alexander Wetzel90cc4bd2019-05-06 21:01:48 +0200455
456 if (old->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) {
457 ieee80211_key_disable_hw_accel(old);
458
459 if (new)
460 ret = ieee80211_key_enable_hw_accel(new);
461 }
Alexander Wetzel62872a92018-08-31 15:00:38 +0200462 } else {
Gustavo A. R. Silva40b5a0f2018-09-04 08:20:01 -0500463 /* new must be provided in case old is not */
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200464 idx = new->conf.keyidx;
Gustavo A. R. Silva40b5a0f2018-09-04 08:20:01 -0500465 if (!new->local->wowlan)
Alexander Wetzel62872a92018-08-31 15:00:38 +0200466 ret = ieee80211_key_enable_hw_accel(new);
Alexander Wetzel62872a92018-08-31 15:00:38 +0200467 }
468
469 if (ret)
470 return ret;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200471
472 if (sta) {
473 if (pairwise) {
474 rcu_assign_pointer(sta->ptk[idx], new);
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +0100475 if (new &&
Johannes Berga0761a32020-03-26 15:09:42 +0200476 !(new->conf.flags & IEEE80211_KEY_FLAG_NO_AUTO_TX))
477 _ieee80211_set_tx_key(new, true);
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200478 } else {
479 rcu_assign_pointer(sta->gtk[idx], new);
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200480 }
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +0100481 /* Only needed for transition from no key -> key.
482 * Still triggers unnecessary when using Extended Key ID
483 * and installing the second key ID the first time.
484 */
485 if (new && !old)
Alexander Wetzel62872a92018-08-31 15:00:38 +0200486 ieee80211_check_fast_rx(sta);
Johannes Berg3b967662008-04-08 17:56:52 +0200487 } else {
Johannes Berg40b275b2011-05-13 14:15:49 +0200488 defunikey = old &&
489 old == key_mtx_dereference(sdata->local,
490 sdata->default_unicast_key);
491 defmultikey = old &&
492 old == key_mtx_dereference(sdata->local,
493 sdata->default_multicast_key);
494 defmgmtkey = old &&
495 old == key_mtx_dereference(sdata->local,
496 sdata->default_mgmt_key);
Jouni Malinene5473e82020-02-22 15:25:44 +0200497 defbeaconkey = old &&
498 old == key_mtx_dereference(sdata->local,
499 sdata->default_beacon_key);
Johannes Berg3b967662008-04-08 17:56:52 +0200500
Johannes Bergf7e01042010-12-09 19:49:02 +0100501 if (defunikey && !new)
502 __ieee80211_set_default_key(sdata, -1, true, false);
503 if (defmultikey && !new)
504 __ieee80211_set_default_key(sdata, -1, false, true);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200505 if (defmgmtkey && !new)
506 __ieee80211_set_default_mgmt_key(sdata, -1);
Jouni Malinene5473e82020-02-22 15:25:44 +0200507 if (defbeaconkey && !new)
508 __ieee80211_set_default_beacon_key(sdata, -1);
Johannes Berg3b967662008-04-08 17:56:52 +0200509
510 rcu_assign_pointer(sdata->keys[idx], new);
Johannes Bergf7e01042010-12-09 19:49:02 +0100511 if (defunikey && new)
512 __ieee80211_set_default_key(sdata, new->conf.keyidx,
513 true, false);
514 if (defmultikey && new)
515 __ieee80211_set_default_key(sdata, new->conf.keyidx,
516 false, true);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200517 if (defmgmtkey && new)
518 __ieee80211_set_default_mgmt_key(sdata,
519 new->conf.keyidx);
Jouni Malinene5473e82020-02-22 15:25:44 +0200520 if (defbeaconkey && new)
521 __ieee80211_set_default_beacon_key(sdata,
522 new->conf.keyidx);
Johannes Berg3b967662008-04-08 17:56:52 +0200523 }
524
Johannes Bergb5c34f62011-01-03 19:51:09 +0100525 if (old)
Eliad Pelleref044762015-11-17 10:24:37 +0200526 list_del_rcu(&old->list);
Alexander Wetzel62872a92018-08-31 15:00:38 +0200527
528 return 0;
Johannes Berg11a843b2007-08-28 17:01:55 -0400529}
530
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200531struct ieee80211_key *
532ieee80211_key_alloc(u32 cipher, int idx, size_t key_len,
533 const u8 *key_data,
534 size_t seq_len, const u8 *seq,
535 const struct ieee80211_cipher_scheme *cs)
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200536{
537 struct ieee80211_key *key;
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100538 int i, j, err;
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200539
Jouni Malinene5473e82020-02-22 15:25:44 +0200540 if (WARN_ON(idx < 0 ||
541 idx >= NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS +
542 NUM_DEFAULT_BEACON_KEYS))
Johannes Berg8c5bb1f2014-04-29 17:55:26 +0200543 return ERR_PTR(-EINVAL);
Johannes Berg11a843b2007-08-28 17:01:55 -0400544
545 key = kzalloc(sizeof(struct ieee80211_key) + key_len, GFP_KERNEL);
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200546 if (!key)
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100547 return ERR_PTR(-ENOMEM);
Johannes Berg11a843b2007-08-28 17:01:55 -0400548
549 /*
550 * Default to software encryption; we'll later upload the
551 * key to the hardware if possible.
552 */
Johannes Berg11a843b2007-08-28 17:01:55 -0400553 key->conf.flags = 0;
554 key->flags = 0;
555
Johannes Berg97359d12010-08-10 09:46:38 +0200556 key->conf.cipher = cipher;
Johannes Berg11a843b2007-08-28 17:01:55 -0400557 key->conf.keyidx = idx;
558 key->conf.keylen = key_len;
Johannes Berg97359d12010-08-10 09:46:38 +0200559 switch (cipher) {
560 case WLAN_CIPHER_SUITE_WEP40:
561 case WLAN_CIPHER_SUITE_WEP104:
Johannes Berg4325f6c2013-05-08 13:09:08 +0200562 key->conf.iv_len = IEEE80211_WEP_IV_LEN;
563 key->conf.icv_len = IEEE80211_WEP_ICV_LEN;
Felix Fietkau76708de2008-10-05 18:02:48 +0200564 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200565 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berg4325f6c2013-05-08 13:09:08 +0200566 key->conf.iv_len = IEEE80211_TKIP_IV_LEN;
567 key->conf.icv_len = IEEE80211_TKIP_ICV_LEN;
Jouni Malinen9f26a952009-05-15 12:38:32 +0300568 if (seq) {
Johannes Berg5a306f52012-11-14 23:22:21 +0100569 for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300570 key->u.tkip.rx[i].iv32 =
571 get_unaligned_le32(&seq[2]);
572 key->u.tkip.rx[i].iv16 =
573 get_unaligned_le16(seq);
574 }
575 }
Johannes Berg523b02e2011-07-07 22:28:01 +0200576 spin_lock_init(&key->u.tkip.txlock);
Felix Fietkau76708de2008-10-05 18:02:48 +0200577 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200578 case WLAN_CIPHER_SUITE_CCMP:
Johannes Berg4325f6c2013-05-08 13:09:08 +0200579 key->conf.iv_len = IEEE80211_CCMP_HDR_LEN;
580 key->conf.icv_len = IEEE80211_CCMP_MIC_LEN;
Jouni Malinen9f26a952009-05-15 12:38:32 +0300581 if (seq) {
Johannes Berg5a306f52012-11-14 23:22:21 +0100582 for (i = 0; i < IEEE80211_NUM_TIDS + 1; i++)
Johannes Berg4325f6c2013-05-08 13:09:08 +0200583 for (j = 0; j < IEEE80211_CCMP_PN_LEN; j++)
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300584 key->u.ccmp.rx_pn[i][j] =
Johannes Berg4325f6c2013-05-08 13:09:08 +0200585 seq[IEEE80211_CCMP_PN_LEN - j - 1];
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300586 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400587 /*
588 * Initialize AES key state here as an optimization so that
589 * it does not need to be initialized for every packet.
590 */
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200591 key->u.ccmp.tfm = ieee80211_aes_key_setup_encrypt(
592 key_data, key_len, IEEE80211_CCMP_MIC_LEN);
593 if (IS_ERR(key->u.ccmp.tfm)) {
594 err = PTR_ERR(key->u.ccmp.tfm);
595 kfree(key);
596 return ERR_PTR(err);
597 }
598 break;
599 case WLAN_CIPHER_SUITE_CCMP_256:
600 key->conf.iv_len = IEEE80211_CCMP_256_HDR_LEN;
601 key->conf.icv_len = IEEE80211_CCMP_256_MIC_LEN;
602 for (i = 0; seq && i < IEEE80211_NUM_TIDS + 1; i++)
603 for (j = 0; j < IEEE80211_CCMP_256_PN_LEN; j++)
604 key->u.ccmp.rx_pn[i][j] =
605 seq[IEEE80211_CCMP_256_PN_LEN - j - 1];
606 /* Initialize AES key state here as an optimization so that
607 * it does not need to be initialized for every packet.
608 */
609 key->u.ccmp.tfm = ieee80211_aes_key_setup_encrypt(
610 key_data, key_len, IEEE80211_CCMP_256_MIC_LEN);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100611 if (IS_ERR(key->u.ccmp.tfm)) {
612 err = PTR_ERR(key->u.ccmp.tfm);
Johannes Berg3b967662008-04-08 17:56:52 +0200613 kfree(key);
Petr Å tetiar1f951a72011-03-27 13:31:26 +0200614 return ERR_PTR(err);
Johannes Berg11a843b2007-08-28 17:01:55 -0400615 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200616 break;
617 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +0200618 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Johannes Berg60ae0f22010-08-10 09:46:39 +0200619 key->conf.iv_len = 0;
Jouni Malinen56c52da2015-01-24 19:52:08 +0200620 if (cipher == WLAN_CIPHER_SUITE_AES_CMAC)
621 key->conf.icv_len = sizeof(struct ieee80211_mmie);
622 else
623 key->conf.icv_len = sizeof(struct ieee80211_mmie_16);
Johannes Berg60ae0f22010-08-10 09:46:39 +0200624 if (seq)
Johannes Berg4325f6c2013-05-08 13:09:08 +0200625 for (j = 0; j < IEEE80211_CMAC_PN_LEN; j++)
Johannes Berg0f927322012-11-14 23:15:11 +0100626 key->u.aes_cmac.rx_pn[j] =
Johannes Berg4325f6c2013-05-08 13:09:08 +0200627 seq[IEEE80211_CMAC_PN_LEN - j - 1];
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200628 /*
629 * Initialize AES key state here as an optimization so that
630 * it does not need to be initialized for every packet.
631 */
632 key->u.aes_cmac.tfm =
Jouni Malinen56c52da2015-01-24 19:52:08 +0200633 ieee80211_aes_cmac_key_setup(key_data, key_len);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100634 if (IS_ERR(key->u.aes_cmac.tfm)) {
635 err = PTR_ERR(key->u.aes_cmac.tfm);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200636 kfree(key);
Petr Å tetiar1f951a72011-03-27 13:31:26 +0200637 return ERR_PTR(err);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200638 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200639 break;
Jouni Malinen8ade5382015-01-24 19:52:09 +0200640 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
641 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
642 key->conf.iv_len = 0;
643 key->conf.icv_len = sizeof(struct ieee80211_mmie_16);
644 if (seq)
645 for (j = 0; j < IEEE80211_GMAC_PN_LEN; j++)
646 key->u.aes_gmac.rx_pn[j] =
647 seq[IEEE80211_GMAC_PN_LEN - j - 1];
648 /* Initialize AES key state here as an optimization so that
649 * it does not need to be initialized for every packet.
650 */
651 key->u.aes_gmac.tfm =
652 ieee80211_aes_gmac_key_setup(key_data, key_len);
653 if (IS_ERR(key->u.aes_gmac.tfm)) {
654 err = PTR_ERR(key->u.aes_gmac.tfm);
655 kfree(key);
656 return ERR_PTR(err);
657 }
658 break;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200659 case WLAN_CIPHER_SUITE_GCMP:
660 case WLAN_CIPHER_SUITE_GCMP_256:
661 key->conf.iv_len = IEEE80211_GCMP_HDR_LEN;
662 key->conf.icv_len = IEEE80211_GCMP_MIC_LEN;
663 for (i = 0; seq && i < IEEE80211_NUM_TIDS + 1; i++)
664 for (j = 0; j < IEEE80211_GCMP_PN_LEN; j++)
665 key->u.gcmp.rx_pn[i][j] =
666 seq[IEEE80211_GCMP_PN_LEN - j - 1];
667 /* Initialize AES key state here as an optimization so that
668 * it does not need to be initialized for every packet.
669 */
670 key->u.gcmp.tfm = ieee80211_aes_gcm_key_setup_encrypt(key_data,
671 key_len);
672 if (IS_ERR(key->u.gcmp.tfm)) {
673 err = PTR_ERR(key->u.gcmp.tfm);
674 kfree(key);
675 return ERR_PTR(err);
676 }
677 break;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200678 default:
679 if (cs) {
Johannes Berge3a55b52015-05-05 16:32:29 +0200680 if (seq_len && seq_len != cs->pn_len) {
681 kfree(key);
682 return ERR_PTR(-EINVAL);
683 }
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200684
685 key->conf.iv_len = cs->hdr_len;
686 key->conf.icv_len = cs->mic_len;
687 for (i = 0; i < IEEE80211_NUM_TIDS + 1; i++)
Johannes Berge3a55b52015-05-05 16:32:29 +0200688 for (j = 0; j < seq_len; j++)
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200689 key->u.gen.rx_pn[i][j] =
Johannes Berge3a55b52015-05-05 16:32:29 +0200690 seq[seq_len - j - 1];
Cedric Izoardc7ef38e2015-03-17 10:47:33 +0000691 key->flags |= KEY_FLAG_CIPHER_SCHEME;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200692 }
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200693 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200694 memcpy(key->conf.key, key_data, key_len);
695 INIT_LIST_HEAD(&key->list);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200696
Johannes Bergdb4d1162008-02-25 16:27:45 +0100697 return key;
698}
Johannes Berg11a843b2007-08-28 17:01:55 -0400699
Johannes Berg79cf2df2013-03-06 22:53:52 +0100700static void ieee80211_key_free_common(struct ieee80211_key *key)
701{
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200702 switch (key->conf.cipher) {
703 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200704 case WLAN_CIPHER_SUITE_CCMP_256:
Johannes Berg79cf2df2013-03-06 22:53:52 +0100705 ieee80211_aes_key_free(key->u.ccmp.tfm);
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200706 break;
707 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +0200708 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Johannes Berg79cf2df2013-03-06 22:53:52 +0100709 ieee80211_aes_cmac_key_free(key->u.aes_cmac.tfm);
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200710 break;
Jouni Malinen8ade5382015-01-24 19:52:09 +0200711 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
712 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
713 ieee80211_aes_gmac_key_free(key->u.aes_gmac.tfm);
714 break;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200715 case WLAN_CIPHER_SUITE_GCMP:
716 case WLAN_CIPHER_SUITE_GCMP_256:
717 ieee80211_aes_gcm_key_free(key->u.gcmp.tfm);
718 break;
719 }
Waiman Long453431a2020-08-06 23:18:13 -0700720 kfree_sensitive(key);
Johannes Berg79cf2df2013-03-06 22:53:52 +0100721}
722
Johannes Berg6d10e462013-03-06 23:09:11 +0100723static void __ieee80211_key_destroy(struct ieee80211_key *key,
724 bool delay_tailroom)
Johannes Bergad0e2b52010-06-01 10:19:19 +0200725{
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530726 if (key->local) {
Johannes Berg8d1f7ec2013-02-23 00:59:03 +0100727 struct ieee80211_sub_if_data *sdata = key->sdata;
728
Jouni Malinen32162a42010-07-26 15:52:03 -0700729 ieee80211_debugfs_key_remove(key);
Johannes Berg8d1f7ec2013-02-23 00:59:03 +0100730
731 if (delay_tailroom) {
732 /* see ieee80211_delayed_tailroom_dec */
733 sdata->crypto_tx_tailroom_pending_dec++;
734 schedule_delayed_work(&sdata->dec_tailroom_needed_wk,
735 HZ/2);
736 } else {
Michal Kaziorf9dca802015-05-13 09:16:48 +0000737 decrease_tailroom_need_count(sdata, 1);
Johannes Berg8d1f7ec2013-02-23 00:59:03 +0100738 }
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530739 }
Johannes Bergad0e2b52010-06-01 10:19:19 +0200740
Johannes Berg79cf2df2013-03-06 22:53:52 +0100741 ieee80211_key_free_common(key);
742}
743
Johannes Berg6d10e462013-03-06 23:09:11 +0100744static void ieee80211_key_destroy(struct ieee80211_key *key,
745 bool delay_tailroom)
746{
747 if (!key)
748 return;
749
750 /*
Eliad Pelleref044762015-11-17 10:24:37 +0200751 * Synchronize so the TX path and rcu key iterators
752 * can no longer be using this key before we free/remove it.
Johannes Berg6d10e462013-03-06 23:09:11 +0100753 */
754 synchronize_net();
755
756 __ieee80211_key_destroy(key, delay_tailroom);
757}
758
Johannes Berg79cf2df2013-03-06 22:53:52 +0100759void ieee80211_key_free_unused(struct ieee80211_key *key)
760{
761 WARN_ON(key->sdata || key->local);
762 ieee80211_key_free_common(key);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200763}
764
Johannes Bergcfbb0d92017-10-24 21:12:13 +0200765static bool ieee80211_key_identical(struct ieee80211_sub_if_data *sdata,
766 struct ieee80211_key *old,
767 struct ieee80211_key *new)
768{
769 u8 tkip_old[WLAN_KEY_LEN_TKIP], tkip_new[WLAN_KEY_LEN_TKIP];
770 u8 *tk_old, *tk_new;
771
772 if (!old || new->conf.keylen != old->conf.keylen)
773 return false;
774
775 tk_old = old->conf.key;
776 tk_new = new->conf.key;
777
778 /*
779 * In station mode, don't compare the TX MIC key, as it's never used
780 * and offloaded rekeying may not care to send it to the host. This
781 * is the case in iwlwifi, for example.
782 */
783 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
784 new->conf.cipher == WLAN_CIPHER_SUITE_TKIP &&
785 new->conf.keylen == WLAN_KEY_LEN_TKIP &&
786 !(new->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE)) {
787 memcpy(tkip_old, tk_old, WLAN_KEY_LEN_TKIP);
788 memcpy(tkip_new, tk_new, WLAN_KEY_LEN_TKIP);
789 memset(tkip_old + NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY, 0, 8);
790 memset(tkip_new + NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY, 0, 8);
791 tk_old = tkip_old;
792 tk_new = tkip_new;
793 }
794
795 return !crypto_memneq(tk_old, tk_new, new->conf.keylen);
796}
797
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300798int ieee80211_key_link(struct ieee80211_key *key,
799 struct ieee80211_sub_if_data *sdata,
800 struct sta_info *sta)
Johannes Bergdb4d1162008-02-25 16:27:45 +0100801{
802 struct ieee80211_key *old_key;
Manikanta Pubbisetty133bf902018-07-10 16:48:27 +0530803 int idx = key->conf.keyidx;
804 bool pairwise = key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE;
805 /*
806 * We want to delay tailroom updates only for station - in that
807 * case it helps roaming speed, but in other cases it hurts and
808 * can cause warnings to appear.
809 */
810 bool delay_tailroom = sdata->vif.type == NL80211_IFTYPE_STATION;
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +0100811 int ret = -EOPNOTSUPP;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100812
Johannes Bergad0e2b52010-06-01 10:19:19 +0200813 mutex_lock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200814
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +0100815 if (sta && pairwise) {
816 struct ieee80211_key *alt_key;
817
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200818 old_key = key_mtx_dereference(sdata->local, sta->ptk[idx]);
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +0100819 alt_key = key_mtx_dereference(sdata->local, sta->ptk[idx ^ 1]);
820
821 /* The rekey code assumes that the old and new key are using
822 * the same cipher. Enforce the assumption for pairwise keys.
823 */
Johannes Berg1c955972019-08-30 14:24:48 +0300824 if ((alt_key && alt_key->conf.cipher != key->conf.cipher) ||
825 (old_key && old_key->conf.cipher != key->conf.cipher))
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +0100826 goto out;
827 } else if (sta) {
Johannes Berg40b275b2011-05-13 14:15:49 +0200828 old_key = key_mtx_dereference(sdata->local, sta->gtk[idx]);
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +0100829 } else {
Johannes Berg40b275b2011-05-13 14:15:49 +0200830 old_key = key_mtx_dereference(sdata->local, sdata->keys[idx]);
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +0100831 }
832
833 /* Non-pairwise keys must also not switch the cipher on rekey */
834 if (!pairwise) {
Luca Coelho753a9a72019-08-30 14:24:50 +0300835 if (old_key && old_key->conf.cipher != key->conf.cipher)
Alexander Wetzel96fc6ef2019-03-19 21:34:08 +0100836 goto out;
837 }
Johannes Bergdb4d1162008-02-25 16:27:45 +0100838
Johannes Bergfdf7cb42017-09-05 14:54:54 +0200839 /*
840 * Silently accept key re-installation without really installing the
841 * new version of the key to avoid nonce reuse or replay issues.
842 */
Johannes Bergcfbb0d92017-10-24 21:12:13 +0200843 if (ieee80211_key_identical(sdata, old_key, key)) {
Johannes Bergfdf7cb42017-09-05 14:54:54 +0200844 ieee80211_key_free_unused(key);
845 ret = 0;
846 goto out;
847 }
848
849 key->local = sdata->local;
850 key->sdata = sdata;
851 key->sta = sta;
852
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530853 increment_tailroom_need_count(sdata);
854
Alexander Wetzel62872a92018-08-31 15:00:38 +0200855 ret = ieee80211_key_replace(sdata, sta, pairwise, old_key, key);
Johannes Bergd4e46a32007-09-14 11:10:24 -0400856
Alexander Wetzel62872a92018-08-31 15:00:38 +0200857 if (!ret) {
858 ieee80211_debugfs_key_add(key);
859 ieee80211_key_destroy(old_key, delay_tailroom);
Johannes Berg27b3eb92013-08-07 20:11:55 +0200860 } else {
Alexander Wetzel62872a92018-08-31 15:00:38 +0200861 ieee80211_key_free(key, delay_tailroom);
Johannes Berg27b3eb92013-08-07 20:11:55 +0200862 }
Johannes Berg79cf2df2013-03-06 22:53:52 +0100863
Johannes Bergfdf7cb42017-09-05 14:54:54 +0200864 out:
Johannes Bergad0e2b52010-06-01 10:19:19 +0200865 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300866
867 return ret;
Johannes Berg3a245762008-04-09 16:45:37 +0200868}
869
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100870void ieee80211_key_free(struct ieee80211_key *key, bool delay_tailroom)
Johannes Berg3a245762008-04-09 16:45:37 +0200871{
Johannes Berg5c0c3642011-05-12 14:31:49 +0200872 if (!key)
873 return;
874
Johannes Berg3a245762008-04-09 16:45:37 +0200875 /*
876 * Replace key with nothingness if it was ever used.
877 */
878 if (key->sdata)
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100879 ieee80211_key_replace(key->sdata, key->sta,
Johannes Berge31b8212010-10-05 19:39:30 +0200880 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE,
881 key, NULL);
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100882 ieee80211_key_destroy(key, delay_tailroom);
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200883}
884
Lior Cohen624ff4b2019-08-30 14:24:49 +0300885void ieee80211_reenable_keys(struct ieee80211_sub_if_data *sdata)
Johannes Berg3b967662008-04-08 17:56:52 +0200886{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200887 struct ieee80211_key *key;
Michal Kaziorf9dca802015-05-13 09:16:48 +0000888 struct ieee80211_sub_if_data *vlan;
Johannes Bergad0e2b52010-06-01 10:19:19 +0200889
Johannes Berg3a245762008-04-09 16:45:37 +0200890 ASSERT_RTNL();
Johannes Berg3b967662008-04-08 17:56:52 +0200891
Michal Kaziorf9dca802015-05-13 09:16:48 +0000892 mutex_lock(&sdata->local->key_mtx);
893
894 sdata->crypto_tx_tailroom_needed_cnt = 0;
Lior Cohen624ff4b2019-08-30 14:24:49 +0300895 sdata->crypto_tx_tailroom_pending_dec = 0;
Michal Kaziorf9dca802015-05-13 09:16:48 +0000896
897 if (sdata->vif.type == NL80211_IFTYPE_AP) {
Lior Cohen624ff4b2019-08-30 14:24:49 +0300898 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list) {
Michal Kaziorf9dca802015-05-13 09:16:48 +0000899 vlan->crypto_tx_tailroom_needed_cnt = 0;
Lior Cohen624ff4b2019-08-30 14:24:49 +0300900 vlan->crypto_tx_tailroom_pending_dec = 0;
901 }
902 }
903
904 if (ieee80211_sdata_running(sdata)) {
905 list_for_each_entry(key, &sdata->key_list, list) {
906 increment_tailroom_need_count(sdata);
907 ieee80211_key_enable_hw_accel(key);
908 }
Michal Kaziorf9dca802015-05-13 09:16:48 +0000909 }
910
911 mutex_unlock(&sdata->local->key_mtx);
912}
913
Johannes Berg830af022011-07-05 16:35:39 +0200914void ieee80211_iter_keys(struct ieee80211_hw *hw,
915 struct ieee80211_vif *vif,
916 void (*iter)(struct ieee80211_hw *hw,
917 struct ieee80211_vif *vif,
918 struct ieee80211_sta *sta,
919 struct ieee80211_key_conf *key,
920 void *data),
921 void *iter_data)
922{
923 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berg27b3eb92013-08-07 20:11:55 +0200924 struct ieee80211_key *key, *tmp;
Johannes Berg830af022011-07-05 16:35:39 +0200925 struct ieee80211_sub_if_data *sdata;
926
927 ASSERT_RTNL();
928
929 mutex_lock(&local->key_mtx);
930 if (vif) {
931 sdata = vif_to_sdata(vif);
Johannes Berg27b3eb92013-08-07 20:11:55 +0200932 list_for_each_entry_safe(key, tmp, &sdata->key_list, list)
Johannes Berg830af022011-07-05 16:35:39 +0200933 iter(hw, &sdata->vif,
934 key->sta ? &key->sta->sta : NULL,
935 &key->conf, iter_data);
936 } else {
937 list_for_each_entry(sdata, &local->interfaces, list)
Johannes Berg27b3eb92013-08-07 20:11:55 +0200938 list_for_each_entry_safe(key, tmp,
939 &sdata->key_list, list)
Johannes Berg830af022011-07-05 16:35:39 +0200940 iter(hw, &sdata->vif,
941 key->sta ? &key->sta->sta : NULL,
942 &key->conf, iter_data);
943 }
944 mutex_unlock(&local->key_mtx);
945}
946EXPORT_SYMBOL(ieee80211_iter_keys);
947
Eliad Pelleref044762015-11-17 10:24:37 +0200948static void
949_ieee80211_iter_keys_rcu(struct ieee80211_hw *hw,
950 struct ieee80211_sub_if_data *sdata,
951 void (*iter)(struct ieee80211_hw *hw,
952 struct ieee80211_vif *vif,
953 struct ieee80211_sta *sta,
954 struct ieee80211_key_conf *key,
955 void *data),
956 void *iter_data)
957{
958 struct ieee80211_key *key;
959
960 list_for_each_entry_rcu(key, &sdata->key_list, list) {
961 /* skip keys of station in removal process */
962 if (key->sta && key->sta->removed)
963 continue;
964 if (!(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
965 continue;
966
967 iter(hw, &sdata->vif,
968 key->sta ? &key->sta->sta : NULL,
969 &key->conf, iter_data);
970 }
971}
972
973void ieee80211_iter_keys_rcu(struct ieee80211_hw *hw,
974 struct ieee80211_vif *vif,
975 void (*iter)(struct ieee80211_hw *hw,
976 struct ieee80211_vif *vif,
977 struct ieee80211_sta *sta,
978 struct ieee80211_key_conf *key,
979 void *data),
980 void *iter_data)
981{
982 struct ieee80211_local *local = hw_to_local(hw);
983 struct ieee80211_sub_if_data *sdata;
984
985 if (vif) {
986 sdata = vif_to_sdata(vif);
987 _ieee80211_iter_keys_rcu(hw, sdata, iter, iter_data);
988 } else {
989 list_for_each_entry_rcu(sdata, &local->interfaces, list)
990 _ieee80211_iter_keys_rcu(hw, sdata, iter, iter_data);
991 }
992}
993EXPORT_SYMBOL(ieee80211_iter_keys_rcu);
994
Johannes Berg7907c7d2013-12-04 23:47:09 +0100995static void ieee80211_free_keys_iface(struct ieee80211_sub_if_data *sdata,
996 struct list_head *keys)
Johannes Berg11a843b2007-08-28 17:01:55 -0400997{
998 struct ieee80211_key *key, *tmp;
Johannes Berg3b967662008-04-08 17:56:52 +0200999
Michal Kaziorf9dca802015-05-13 09:16:48 +00001000 decrease_tailroom_need_count(sdata,
1001 sdata->crypto_tx_tailroom_pending_dec);
Johannes Berg8d1f7ec2013-02-23 00:59:03 +01001002 sdata->crypto_tx_tailroom_pending_dec = 0;
1003
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02001004 ieee80211_debugfs_key_remove_mgmt_default(sdata);
Jouni Malinene5473e82020-02-22 15:25:44 +02001005 ieee80211_debugfs_key_remove_beacon_default(sdata);
Johannes Berg11a843b2007-08-28 17:01:55 -04001006
Johannes Berg6d10e462013-03-06 23:09:11 +01001007 list_for_each_entry_safe(key, tmp, &sdata->key_list, list) {
1008 ieee80211_key_replace(key->sdata, key->sta,
1009 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE,
1010 key, NULL);
Johannes Berg7907c7d2013-12-04 23:47:09 +01001011 list_add_tail(&key->list, keys);
Johannes Berg6d10e462013-03-06 23:09:11 +01001012 }
Johannes Berg11a843b2007-08-28 17:01:55 -04001013
Johannes Bergf7e01042010-12-09 19:49:02 +01001014 ieee80211_debugfs_key_update_default(sdata);
Johannes Berg7907c7d2013-12-04 23:47:09 +01001015}
Johannes Bergf7e01042010-12-09 19:49:02 +01001016
Johannes Berg7907c7d2013-12-04 23:47:09 +01001017void ieee80211_free_keys(struct ieee80211_sub_if_data *sdata,
1018 bool force_synchronize)
1019{
1020 struct ieee80211_local *local = sdata->local;
1021 struct ieee80211_sub_if_data *vlan;
Michal Kaziorf9dca802015-05-13 09:16:48 +00001022 struct ieee80211_sub_if_data *master;
Johannes Berg7907c7d2013-12-04 23:47:09 +01001023 struct ieee80211_key *key, *tmp;
1024 LIST_HEAD(keys);
1025
1026 cancel_delayed_work_sync(&sdata->dec_tailroom_needed_wk);
1027
1028 mutex_lock(&local->key_mtx);
1029
1030 ieee80211_free_keys_iface(sdata, &keys);
1031
1032 if (sdata->vif.type == NL80211_IFTYPE_AP) {
1033 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
1034 ieee80211_free_keys_iface(vlan, &keys);
Johannes Berg6d10e462013-03-06 23:09:11 +01001035 }
1036
Johannes Berg7907c7d2013-12-04 23:47:09 +01001037 if (!list_empty(&keys) || force_synchronize)
1038 synchronize_net();
1039 list_for_each_entry_safe(key, tmp, &keys, list)
1040 __ieee80211_key_destroy(key, false);
1041
Michal Kaziorf9dca802015-05-13 09:16:48 +00001042 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
1043 if (sdata->bss) {
1044 master = container_of(sdata->bss,
1045 struct ieee80211_sub_if_data,
1046 u.ap);
1047
1048 WARN_ON_ONCE(sdata->crypto_tx_tailroom_needed_cnt !=
1049 master->crypto_tx_tailroom_needed_cnt);
1050 }
1051 } else {
1052 WARN_ON_ONCE(sdata->crypto_tx_tailroom_needed_cnt ||
1053 sdata->crypto_tx_tailroom_pending_dec);
1054 }
1055
Johannes Berg7907c7d2013-12-04 23:47:09 +01001056 if (sdata->vif.type == NL80211_IFTYPE_AP) {
1057 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
1058 WARN_ON_ONCE(vlan->crypto_tx_tailroom_needed_cnt ||
1059 vlan->crypto_tx_tailroom_pending_dec);
1060 }
Johannes Berg8d1f7ec2013-02-23 00:59:03 +01001061
Johannes Berg7907c7d2013-12-04 23:47:09 +01001062 mutex_unlock(&local->key_mtx);
Johannes Berg11a843b2007-08-28 17:01:55 -04001063}
Johannes Bergc68f4b82011-07-05 16:35:41 +02001064
Johannes Berg6d10e462013-03-06 23:09:11 +01001065void ieee80211_free_sta_keys(struct ieee80211_local *local,
1066 struct sta_info *sta)
1067{
Johannes Bergc8782072013-12-04 23:05:45 +01001068 struct ieee80211_key *key;
Johannes Berg6d10e462013-03-06 23:09:11 +01001069 int i;
1070
1071 mutex_lock(&local->key_mtx);
Johannes Berg28a9bc62014-12-17 13:55:49 +01001072 for (i = 0; i < ARRAY_SIZE(sta->gtk); i++) {
Johannes Berg6d10e462013-03-06 23:09:11 +01001073 key = key_mtx_dereference(local, sta->gtk[i]);
1074 if (!key)
1075 continue;
1076 ieee80211_key_replace(key->sdata, key->sta,
1077 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE,
1078 key, NULL);
Manikanta Pubbisetty133bf902018-07-10 16:48:27 +05301079 __ieee80211_key_destroy(key, key->sdata->vif.type ==
1080 NL80211_IFTYPE_STATION);
Johannes Berg6d10e462013-03-06 23:09:11 +01001081 }
1082
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001083 for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
1084 key = key_mtx_dereference(local, sta->ptk[i]);
1085 if (!key)
1086 continue;
Johannes Berg6d10e462013-03-06 23:09:11 +01001087 ieee80211_key_replace(key->sdata, key->sta,
1088 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE,
1089 key, NULL);
Manikanta Pubbisetty133bf902018-07-10 16:48:27 +05301090 __ieee80211_key_destroy(key, key->sdata->vif.type ==
1091 NL80211_IFTYPE_STATION);
Johannes Bergc8782072013-12-04 23:05:45 +01001092 }
Johannes Berg6d10e462013-03-06 23:09:11 +01001093
1094 mutex_unlock(&local->key_mtx);
1095}
1096
Johannes Berg8d1f7ec2013-02-23 00:59:03 +01001097void ieee80211_delayed_tailroom_dec(struct work_struct *wk)
1098{
1099 struct ieee80211_sub_if_data *sdata;
1100
1101 sdata = container_of(wk, struct ieee80211_sub_if_data,
1102 dec_tailroom_needed_wk.work);
1103
1104 /*
1105 * The reason for the delayed tailroom needed decrementing is to
1106 * make roaming faster: during roaming, all keys are first deleted
1107 * and then new keys are installed. The first new key causes the
1108 * crypto_tx_tailroom_needed_cnt to go from 0 to 1, which invokes
1109 * the cost of synchronize_net() (which can be slow). Avoid this
1110 * by deferring the crypto_tx_tailroom_needed_cnt decrementing on
1111 * key removal for a while, so if we roam the value is larger than
1112 * zero and no 0->1 transition happens.
1113 *
1114 * The cost is that if the AP switching was from an AP with keys
1115 * to one without, we still allocate tailroom while it would no
1116 * longer be needed. However, in the typical (fast) roaming case
1117 * within an ESS this usually won't happen.
1118 */
1119
1120 mutex_lock(&sdata->local->key_mtx);
Michal Kaziorf9dca802015-05-13 09:16:48 +00001121 decrease_tailroom_need_count(sdata,
1122 sdata->crypto_tx_tailroom_pending_dec);
Johannes Berg8d1f7ec2013-02-23 00:59:03 +01001123 sdata->crypto_tx_tailroom_pending_dec = 0;
1124 mutex_unlock(&sdata->local->key_mtx);
1125}
Johannes Bergc68f4b82011-07-05 16:35:41 +02001126
1127void ieee80211_gtk_rekey_notify(struct ieee80211_vif *vif, const u8 *bssid,
1128 const u8 *replay_ctr, gfp_t gfp)
1129{
1130 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1131
1132 trace_api_gtk_rekey_notify(sdata, bssid, replay_ctr);
1133
1134 cfg80211_gtk_rekey_notify(sdata->dev, bssid, replay_ctr, gfp);
1135}
1136EXPORT_SYMBOL_GPL(ieee80211_gtk_rekey_notify);
Johannes Berg3ea542d2011-07-07 18:58:00 +02001137
Johannes Berg3ea542d2011-07-07 18:58:00 +02001138void ieee80211_get_key_rx_seq(struct ieee80211_key_conf *keyconf,
1139 int tid, struct ieee80211_key_seq *seq)
1140{
1141 struct ieee80211_key *key;
1142 const u8 *pn;
1143
1144 key = container_of(keyconf, struct ieee80211_key, conf);
1145
1146 switch (key->conf.cipher) {
1147 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berg5a306f52012-11-14 23:22:21 +01001148 if (WARN_ON(tid < 0 || tid >= IEEE80211_NUM_TIDS))
Johannes Berg3ea542d2011-07-07 18:58:00 +02001149 return;
1150 seq->tkip.iv32 = key->u.tkip.rx[tid].iv32;
1151 seq->tkip.iv16 = key->u.tkip.rx[tid].iv16;
1152 break;
1153 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +02001154 case WLAN_CIPHER_SUITE_CCMP_256:
Johannes Berg5a306f52012-11-14 23:22:21 +01001155 if (WARN_ON(tid < -1 || tid >= IEEE80211_NUM_TIDS))
Johannes Berg3ea542d2011-07-07 18:58:00 +02001156 return;
1157 if (tid < 0)
Johannes Berg5a306f52012-11-14 23:22:21 +01001158 pn = key->u.ccmp.rx_pn[IEEE80211_NUM_TIDS];
Johannes Berg3ea542d2011-07-07 18:58:00 +02001159 else
1160 pn = key->u.ccmp.rx_pn[tid];
Johannes Berg4325f6c2013-05-08 13:09:08 +02001161 memcpy(seq->ccmp.pn, pn, IEEE80211_CCMP_PN_LEN);
Johannes Berg3ea542d2011-07-07 18:58:00 +02001162 break;
1163 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +02001164 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Johannes Berg3ea542d2011-07-07 18:58:00 +02001165 if (WARN_ON(tid != 0))
1166 return;
1167 pn = key->u.aes_cmac.rx_pn;
Johannes Berg4325f6c2013-05-08 13:09:08 +02001168 memcpy(seq->aes_cmac.pn, pn, IEEE80211_CMAC_PN_LEN);
Johannes Berg3ea542d2011-07-07 18:58:00 +02001169 break;
Jouni Malinen8ade5382015-01-24 19:52:09 +02001170 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
1171 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
1172 if (WARN_ON(tid != 0))
1173 return;
1174 pn = key->u.aes_gmac.rx_pn;
1175 memcpy(seq->aes_gmac.pn, pn, IEEE80211_GMAC_PN_LEN);
1176 break;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +02001177 case WLAN_CIPHER_SUITE_GCMP:
1178 case WLAN_CIPHER_SUITE_GCMP_256:
1179 if (WARN_ON(tid < -1 || tid >= IEEE80211_NUM_TIDS))
1180 return;
1181 if (tid < 0)
1182 pn = key->u.gcmp.rx_pn[IEEE80211_NUM_TIDS];
1183 else
1184 pn = key->u.gcmp.rx_pn[tid];
1185 memcpy(seq->gcmp.pn, pn, IEEE80211_GCMP_PN_LEN);
1186 break;
Johannes Berg3ea542d2011-07-07 18:58:00 +02001187 }
1188}
1189EXPORT_SYMBOL(ieee80211_get_key_rx_seq);
Johannes Berg27b3eb92013-08-07 20:11:55 +02001190
Johannes Berg27b3eb92013-08-07 20:11:55 +02001191void ieee80211_set_key_rx_seq(struct ieee80211_key_conf *keyconf,
1192 int tid, struct ieee80211_key_seq *seq)
1193{
1194 struct ieee80211_key *key;
1195 u8 *pn;
1196
1197 key = container_of(keyconf, struct ieee80211_key, conf);
1198
1199 switch (key->conf.cipher) {
1200 case WLAN_CIPHER_SUITE_TKIP:
1201 if (WARN_ON(tid < 0 || tid >= IEEE80211_NUM_TIDS))
1202 return;
1203 key->u.tkip.rx[tid].iv32 = seq->tkip.iv32;
1204 key->u.tkip.rx[tid].iv16 = seq->tkip.iv16;
1205 break;
1206 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +02001207 case WLAN_CIPHER_SUITE_CCMP_256:
Johannes Berg27b3eb92013-08-07 20:11:55 +02001208 if (WARN_ON(tid < -1 || tid >= IEEE80211_NUM_TIDS))
1209 return;
1210 if (tid < 0)
1211 pn = key->u.ccmp.rx_pn[IEEE80211_NUM_TIDS];
1212 else
1213 pn = key->u.ccmp.rx_pn[tid];
1214 memcpy(pn, seq->ccmp.pn, IEEE80211_CCMP_PN_LEN);
1215 break;
1216 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +02001217 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Johannes Berg27b3eb92013-08-07 20:11:55 +02001218 if (WARN_ON(tid != 0))
1219 return;
1220 pn = key->u.aes_cmac.rx_pn;
1221 memcpy(pn, seq->aes_cmac.pn, IEEE80211_CMAC_PN_LEN);
1222 break;
Jouni Malinen8ade5382015-01-24 19:52:09 +02001223 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
1224 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
1225 if (WARN_ON(tid != 0))
1226 return;
1227 pn = key->u.aes_gmac.rx_pn;
1228 memcpy(pn, seq->aes_gmac.pn, IEEE80211_GMAC_PN_LEN);
1229 break;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +02001230 case WLAN_CIPHER_SUITE_GCMP:
1231 case WLAN_CIPHER_SUITE_GCMP_256:
1232 if (WARN_ON(tid < -1 || tid >= IEEE80211_NUM_TIDS))
1233 return;
1234 if (tid < 0)
1235 pn = key->u.gcmp.rx_pn[IEEE80211_NUM_TIDS];
1236 else
1237 pn = key->u.gcmp.rx_pn[tid];
1238 memcpy(pn, seq->gcmp.pn, IEEE80211_GCMP_PN_LEN);
1239 break;
Johannes Berg27b3eb92013-08-07 20:11:55 +02001240 default:
1241 WARN_ON(1);
1242 break;
1243 }
1244}
1245EXPORT_SYMBOL_GPL(ieee80211_set_key_rx_seq);
1246
1247void ieee80211_remove_key(struct ieee80211_key_conf *keyconf)
1248{
1249 struct ieee80211_key *key;
1250
1251 key = container_of(keyconf, struct ieee80211_key, conf);
1252
1253 assert_key_lock(key->local);
1254
1255 /*
1256 * if key was uploaded, we assume the driver will/has remove(d)
1257 * it, so adjust bookkeeping accordingly
1258 */
1259 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) {
1260 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
1261
Alexander Wetzel092c4092019-03-16 21:44:43 +01001262 if (!(key->conf.flags & (IEEE80211_KEY_FLAG_GENERATE_MMIC |
1263 IEEE80211_KEY_FLAG_PUT_MIC_SPACE |
1264 IEEE80211_KEY_FLAG_RESERVE_TAILROOM)))
Johannes Berg27b3eb92013-08-07 20:11:55 +02001265 increment_tailroom_need_count(key->sdata);
1266 }
1267
1268 ieee80211_key_free(key, false);
1269}
1270EXPORT_SYMBOL_GPL(ieee80211_remove_key);
1271
1272struct ieee80211_key_conf *
1273ieee80211_gtk_rekey_add(struct ieee80211_vif *vif,
1274 struct ieee80211_key_conf *keyconf)
1275{
1276 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1277 struct ieee80211_local *local = sdata->local;
1278 struct ieee80211_key *key;
1279 int err;
1280
1281 if (WARN_ON(!local->wowlan))
1282 return ERR_PTR(-EINVAL);
1283
1284 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
1285 return ERR_PTR(-EINVAL);
1286
1287 key = ieee80211_key_alloc(keyconf->cipher, keyconf->keyidx,
1288 keyconf->keylen, keyconf->key,
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001289 0, NULL, NULL);
Johannes Berg27b3eb92013-08-07 20:11:55 +02001290 if (IS_ERR(key))
Johannes Bergc5dc1642013-08-28 19:03:36 +02001291 return ERR_CAST(key);
Johannes Berg27b3eb92013-08-07 20:11:55 +02001292
1293 if (sdata->u.mgd.mfp != IEEE80211_MFP_DISABLED)
1294 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
1295
1296 err = ieee80211_key_link(key, sdata, NULL);
1297 if (err)
1298 return ERR_PTR(err);
1299
1300 return &key->conf;
1301}
1302EXPORT_SYMBOL_GPL(ieee80211_gtk_rekey_add);
Johannes Berg4271d4b2020-11-29 17:30:45 +02001303
1304void ieee80211_key_mic_failure(struct ieee80211_key_conf *keyconf)
1305{
1306 struct ieee80211_key *key;
1307
1308 key = container_of(keyconf, struct ieee80211_key, conf);
1309
1310 switch (key->conf.cipher) {
1311 case WLAN_CIPHER_SUITE_AES_CMAC:
1312 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
1313 key->u.aes_cmac.icverrors++;
1314 break;
1315 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
1316 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
1317 key->u.aes_gmac.icverrors++;
1318 break;
1319 default:
1320 /* ignore the others for now, we don't keep counters now */
1321 break;
1322 }
1323}
1324EXPORT_SYMBOL_GPL(ieee80211_key_mic_failure);
1325
1326void ieee80211_key_replay(struct ieee80211_key_conf *keyconf)
1327{
1328 struct ieee80211_key *key;
1329
1330 key = container_of(keyconf, struct ieee80211_key, conf);
1331
1332 switch (key->conf.cipher) {
1333 case WLAN_CIPHER_SUITE_CCMP:
1334 case WLAN_CIPHER_SUITE_CCMP_256:
1335 key->u.ccmp.replays++;
1336 break;
1337 case WLAN_CIPHER_SUITE_AES_CMAC:
1338 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
1339 key->u.aes_cmac.replays++;
1340 break;
1341 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
1342 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
1343 key->u.aes_gmac.replays++;
1344 break;
1345 case WLAN_CIPHER_SUITE_GCMP:
1346 case WLAN_CIPHER_SUITE_GCMP_256:
1347 key->u.gcmp.replays++;
1348 break;
1349 }
1350}
1351EXPORT_SYMBOL_GPL(ieee80211_key_replay);