blob: 72df1ca7299bed40c91c1ea98e01f4c45f83f708 [file] [log] [blame]
Johannes Berg1f5a7e42007-07-27 15:43:23 +02001/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
Johannes Berg3b967662008-04-08 17:56:52 +02005 * Copyright 2007-2008 Johannes Berg <johannes@sipsolutions.net>
Johannes Berg1f5a7e42007-07-27 15:43:23 +02006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
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>
Johannes Berg1f5a7e42007-07-27 15:43:23 +020018#include <net/mac80211.h>
19#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020020#include "driver-ops.h"
Johannes Berg1f5a7e42007-07-27 15:43:23 +020021#include "debugfs_key.h"
22#include "aes_ccm.h"
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +020023#include "aes_cmac.h"
Johannes Berg1f5a7e42007-07-27 15:43:23 +020024
Johannes Berg11a843b2007-08-28 17:01:55 -040025
Johannes Bergdbbea672008-02-26 14:34:06 +010026/**
27 * DOC: Key handling basics
Johannes Berg11a843b2007-08-28 17:01:55 -040028 *
29 * Key handling in mac80211 is done based on per-interface (sub_if_data)
30 * keys and per-station keys. Since each station belongs to an interface,
31 * each station key also belongs to that interface.
32 *
33 * Hardware acceleration is done on a best-effort basis, for each key
34 * that is eligible the hardware is asked to enable that key but if
35 * it cannot do that they key is simply kept for software encryption.
36 * There is currently no way of knowing this except by looking into
37 * debugfs.
38 *
Johannes Bergad0e2b52010-06-01 10:19:19 +020039 * All key operations are protected internally.
Johannes Bergdb4d1162008-02-25 16:27:45 +010040 *
Johannes Berg3b967662008-04-08 17:56:52 +020041 * Within mac80211, key references are, just as STA structure references,
42 * protected by RCU. Note, however, that some things are unprotected,
43 * namely the key->sta dereferences within the hardware acceleration
Johannes Bergad0e2b52010-06-01 10:19:19 +020044 * functions. This means that sta_info_destroy() must remove the key
45 * which waits for an RCU grace period.
Johannes Berg11a843b2007-08-28 17:01:55 -040046 */
47
48static const u8 bcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
Johannes Berg11a843b2007-08-28 17:01:55 -040049
Johannes Bergad0e2b52010-06-01 10:19:19 +020050static void assert_key_lock(struct ieee80211_local *local)
Johannes Berg3b967662008-04-08 17:56:52 +020051{
Johannes Berg46a5eba2010-09-15 13:28:15 +020052 lockdep_assert_held(&local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +020053}
54
Johannes Bergdc822b52008-12-29 12:55:09 +010055static struct ieee80211_sta *get_sta_for_key(struct ieee80211_key *key)
Johannes Berg11a843b2007-08-28 17:01:55 -040056{
Johannes Berg11a843b2007-08-28 17:01:55 -040057 if (key->sta)
Johannes Bergdc822b52008-12-29 12:55:09 +010058 return &key->sta->sta;
Johannes Berg11a843b2007-08-28 17:01:55 -040059
Johannes Bergdc822b52008-12-29 12:55:09 +010060 return NULL;
Johannes Berg11a843b2007-08-28 17:01:55 -040061}
62
Johannes Berg3ffc2a92010-08-27 14:26:52 +030063static int ieee80211_key_enable_hw_accel(struct ieee80211_key *key)
Johannes Berg11a843b2007-08-28 17:01:55 -040064{
Johannes Bergdc822b52008-12-29 12:55:09 +010065 struct ieee80211_sub_if_data *sdata;
66 struct ieee80211_sta *sta;
Johannes Berg11a843b2007-08-28 17:01:55 -040067 int ret;
68
Johannes Berg3b967662008-04-08 17:56:52 +020069 might_sleep();
70
Johannes Berge31b8212010-10-05 19:39:30 +020071 if (!key->local->ops->set_key)
Johannes Berg3ffc2a92010-08-27 14:26:52 +030072 goto out_unsupported;
Johannes Berg11a843b2007-08-28 17:01:55 -040073
Johannes Bergad0e2b52010-06-01 10:19:19 +020074 assert_key_lock(key->local);
75
Johannes Bergdc822b52008-12-29 12:55:09 +010076 sta = get_sta_for_key(key);
77
Johannes Berge31b8212010-10-05 19:39:30 +020078 /*
79 * If this is a per-STA GTK, check if it
80 * is supported; if not, return.
81 */
82 if (sta && !(key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE) &&
83 !(key->local->hw.flags & IEEE80211_HW_SUPPORTS_PER_STA_GTK))
84 goto out_unsupported;
85
Johannes Bergdc822b52008-12-29 12:55:09 +010086 sdata = key->sdata;
Helmut Schaa18890d42010-11-19 08:11:01 +010087 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
88 /*
89 * The driver doesn't know anything about VLAN interfaces.
90 * Hence, don't send GTKs for VLAN interfaces to the driver.
91 */
92 if (!(key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE))
93 goto out_unsupported;
Johannes Bergdc822b52008-12-29 12:55:09 +010094 sdata = container_of(sdata->bss,
95 struct ieee80211_sub_if_data,
96 u.ap);
Helmut Schaa18890d42010-11-19 08:11:01 +010097 }
Johannes Berg11a843b2007-08-28 17:01:55 -040098
Johannes Berg12375ef2009-11-25 20:30:31 +010099 ret = drv_set_key(key->local, SET_KEY, sdata, sta, &key->conf);
Johannes Berg11a843b2007-08-28 17:01:55 -0400100
Johannes Berge31b8212010-10-05 19:39:30 +0200101 if (!ret) {
Johannes Berg11a843b2007-08-28 17:01:55 -0400102 key->flags |= KEY_FLAG_UPLOADED_TO_HARDWARE;
Johannes Berge31b8212010-10-05 19:39:30 +0200103 return 0;
104 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400105
Johannes Berge31b8212010-10-05 19:39:30 +0200106 if (ret != -ENOSPC && ret != -EOPNOTSUPP)
Joe Perches0fb9a9e2010-08-20 16:25:38 -0700107 wiphy_err(key->local->hw.wiphy,
108 "failed to set key (%d, %pM) to hardware (%d)\n",
109 key->conf.keyidx, sta ? sta->addr : bcast_addr, ret);
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300110
Johannes Berge31b8212010-10-05 19:39:30 +0200111 out_unsupported:
112 switch (key->conf.cipher) {
113 case WLAN_CIPHER_SUITE_WEP40:
114 case WLAN_CIPHER_SUITE_WEP104:
115 case WLAN_CIPHER_SUITE_TKIP:
116 case WLAN_CIPHER_SUITE_CCMP:
117 case WLAN_CIPHER_SUITE_AES_CMAC:
118 /* all of these we can do in software */
119 return 0;
120 default:
121 return -EINVAL;
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300122 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400123}
124
125static void ieee80211_key_disable_hw_accel(struct ieee80211_key *key)
126{
Johannes Bergdc822b52008-12-29 12:55:09 +0100127 struct ieee80211_sub_if_data *sdata;
128 struct ieee80211_sta *sta;
Johannes Berg11a843b2007-08-28 17:01:55 -0400129 int ret;
130
Johannes Berg3b967662008-04-08 17:56:52 +0200131 might_sleep();
132
Johannes Bergdb4d1162008-02-25 16:27:45 +0100133 if (!key || !key->local->ops->set_key)
Johannes Berg11a843b2007-08-28 17:01:55 -0400134 return;
135
Johannes Bergad0e2b52010-06-01 10:19:19 +0200136 assert_key_lock(key->local);
137
138 if (!(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
Johannes Berg11a843b2007-08-28 17:01:55 -0400139 return;
140
Johannes Bergdc822b52008-12-29 12:55:09 +0100141 sta = get_sta_for_key(key);
142 sdata = key->sdata;
143
144 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
145 sdata = container_of(sdata->bss,
146 struct ieee80211_sub_if_data,
147 u.ap);
Johannes Berg11a843b2007-08-28 17:01:55 -0400148
Johannes Berg12375ef2009-11-25 20:30:31 +0100149 ret = drv_set_key(key->local, DISABLE_KEY, sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200150 sta, &key->conf);
Johannes Berg11a843b2007-08-28 17:01:55 -0400151
152 if (ret)
Joe Perches0fb9a9e2010-08-20 16:25:38 -0700153 wiphy_err(key->local->hw.wiphy,
154 "failed to remove key (%d, %pM) from hardware (%d)\n",
155 key->conf.keyidx, sta ? sta->addr : bcast_addr, ret);
Johannes Berg11a843b2007-08-28 17:01:55 -0400156
Johannes Berg3b967662008-04-08 17:56:52 +0200157 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
Johannes Berg3b967662008-04-08 17:56:52 +0200158}
159
Johannes Berge31b8212010-10-05 19:39:30 +0200160void ieee80211_key_removed(struct ieee80211_key_conf *key_conf)
161{
162 struct ieee80211_key *key;
163
164 key = container_of(key_conf, struct ieee80211_key, conf);
165
166 might_sleep();
167 assert_key_lock(key->local);
168
169 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
170
171 /*
172 * Flush TX path to avoid attempts to use this key
173 * after this function returns. Until then, drivers
174 * must be prepared to handle the key.
175 */
176 synchronize_rcu();
177}
178EXPORT_SYMBOL_GPL(ieee80211_key_removed);
179
Johannes Berg3b967662008-04-08 17:56:52 +0200180static void __ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata,
181 int idx)
182{
183 struct ieee80211_key *key = NULL;
184
Johannes Bergad0e2b52010-06-01 10:19:19 +0200185 assert_key_lock(sdata->local);
186
Johannes Berg3b967662008-04-08 17:56:52 +0200187 if (idx >= 0 && idx < NUM_DEFAULT_KEYS)
188 key = sdata->keys[idx];
189
190 rcu_assign_pointer(sdata->default_key, key);
191
Johannes Bergad0e2b52010-06-01 10:19:19 +0200192 if (key) {
193 ieee80211_debugfs_key_remove_default(key->sdata);
194 ieee80211_debugfs_key_add_default(key->sdata);
195 }
Johannes Berg3b967662008-04-08 17:56:52 +0200196}
197
198void ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata, int idx)
199{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200200 mutex_lock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200201 __ieee80211_set_default_key(sdata, idx);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200202 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200203}
204
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200205static void
206__ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata, int idx)
207{
208 struct ieee80211_key *key = NULL;
209
Johannes Bergad0e2b52010-06-01 10:19:19 +0200210 assert_key_lock(sdata->local);
211
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200212 if (idx >= NUM_DEFAULT_KEYS &&
213 idx < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
214 key = sdata->keys[idx];
215
216 rcu_assign_pointer(sdata->default_mgmt_key, key);
217
Johannes Bergad0e2b52010-06-01 10:19:19 +0200218 if (key) {
219 ieee80211_debugfs_key_remove_mgmt_default(key->sdata);
220 ieee80211_debugfs_key_add_mgmt_default(key->sdata);
221 }
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200222}
223
224void ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata,
225 int idx)
226{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200227 mutex_lock(&sdata->local->key_mtx);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200228 __ieee80211_set_default_mgmt_key(sdata, idx);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200229 mutex_unlock(&sdata->local->key_mtx);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200230}
231
Johannes Berg3b967662008-04-08 17:56:52 +0200232
233static void __ieee80211_key_replace(struct ieee80211_sub_if_data *sdata,
234 struct sta_info *sta,
Johannes Berge31b8212010-10-05 19:39:30 +0200235 bool pairwise,
Johannes Berg3b967662008-04-08 17:56:52 +0200236 struct ieee80211_key *old,
237 struct ieee80211_key *new)
238{
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200239 int idx, defkey, defmgmtkey;
Johannes Berg3b967662008-04-08 17:56:52 +0200240
241 if (new)
242 list_add(&new->list, &sdata->key_list);
243
Johannes Berge31b8212010-10-05 19:39:30 +0200244 if (sta && pairwise) {
245 rcu_assign_pointer(sta->ptk, new);
246 } else if (sta) {
247 if (old)
248 idx = old->conf.keyidx;
249 else
250 idx = new->conf.keyidx;
251 rcu_assign_pointer(sta->gtk[idx], new);
Johannes Berg3b967662008-04-08 17:56:52 +0200252 } else {
253 WARN_ON(new && old && new->conf.keyidx != old->conf.keyidx);
254
255 if (old)
256 idx = old->conf.keyidx;
257 else
258 idx = new->conf.keyidx;
259
260 defkey = old && sdata->default_key == old;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200261 defmgmtkey = old && sdata->default_mgmt_key == old;
Johannes Berg3b967662008-04-08 17:56:52 +0200262
263 if (defkey && !new)
264 __ieee80211_set_default_key(sdata, -1);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200265 if (defmgmtkey && !new)
266 __ieee80211_set_default_mgmt_key(sdata, -1);
Johannes Berg3b967662008-04-08 17:56:52 +0200267
268 rcu_assign_pointer(sdata->keys[idx], new);
269 if (defkey && new)
270 __ieee80211_set_default_key(sdata, new->conf.keyidx);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200271 if (defmgmtkey && new)
272 __ieee80211_set_default_mgmt_key(sdata,
273 new->conf.keyidx);
Johannes Berg3b967662008-04-08 17:56:52 +0200274 }
275
276 if (old) {
277 /*
278 * We'll use an empty list to indicate that the key
279 * has already been removed.
280 */
281 list_del_init(&old->list);
282 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400283}
284
Johannes Berg97359d12010-08-10 09:46:38 +0200285struct ieee80211_key *ieee80211_key_alloc(u32 cipher, int idx, size_t key_len,
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300286 const u8 *key_data,
287 size_t seq_len, const u8 *seq)
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200288{
289 struct ieee80211_key *key;
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100290 int i, j, err;
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200291
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200292 BUG_ON(idx < 0 || idx >= NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS);
Johannes Berg11a843b2007-08-28 17:01:55 -0400293
294 key = kzalloc(sizeof(struct ieee80211_key) + key_len, GFP_KERNEL);
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200295 if (!key)
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100296 return ERR_PTR(-ENOMEM);
Johannes Berg11a843b2007-08-28 17:01:55 -0400297
298 /*
299 * Default to software encryption; we'll later upload the
300 * key to the hardware if possible.
301 */
Johannes Berg11a843b2007-08-28 17:01:55 -0400302 key->conf.flags = 0;
303 key->flags = 0;
304
Johannes Berg97359d12010-08-10 09:46:38 +0200305 key->conf.cipher = cipher;
Johannes Berg11a843b2007-08-28 17:01:55 -0400306 key->conf.keyidx = idx;
307 key->conf.keylen = key_len;
Johannes Berg97359d12010-08-10 09:46:38 +0200308 switch (cipher) {
309 case WLAN_CIPHER_SUITE_WEP40:
310 case WLAN_CIPHER_SUITE_WEP104:
Felix Fietkau76708de2008-10-05 18:02:48 +0200311 key->conf.iv_len = WEP_IV_LEN;
312 key->conf.icv_len = WEP_ICV_LEN;
313 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200314 case WLAN_CIPHER_SUITE_TKIP:
Felix Fietkau76708de2008-10-05 18:02:48 +0200315 key->conf.iv_len = TKIP_IV_LEN;
316 key->conf.icv_len = TKIP_ICV_LEN;
Jouni Malinen9f26a952009-05-15 12:38:32 +0300317 if (seq) {
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300318 for (i = 0; i < NUM_RX_DATA_QUEUES; i++) {
319 key->u.tkip.rx[i].iv32 =
320 get_unaligned_le32(&seq[2]);
321 key->u.tkip.rx[i].iv16 =
322 get_unaligned_le16(seq);
323 }
324 }
Felix Fietkau76708de2008-10-05 18:02:48 +0200325 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200326 case WLAN_CIPHER_SUITE_CCMP:
Felix Fietkau76708de2008-10-05 18:02:48 +0200327 key->conf.iv_len = CCMP_HDR_LEN;
328 key->conf.icv_len = CCMP_MIC_LEN;
Jouni Malinen9f26a952009-05-15 12:38:32 +0300329 if (seq) {
Jouni Malinen91902522010-06-11 10:27:33 -0700330 for (i = 0; i < NUM_RX_DATA_QUEUES + 1; i++)
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300331 for (j = 0; j < CCMP_PN_LEN; j++)
332 key->u.ccmp.rx_pn[i][j] =
333 seq[CCMP_PN_LEN - j - 1];
334 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400335 /*
336 * Initialize AES key state here as an optimization so that
337 * it does not need to be initialized for every packet.
338 */
339 key->u.ccmp.tfm = ieee80211_aes_key_setup_encrypt(key_data);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100340 if (IS_ERR(key->u.ccmp.tfm)) {
341 err = PTR_ERR(key->u.ccmp.tfm);
Johannes Berg3b967662008-04-08 17:56:52 +0200342 kfree(key);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100343 key = ERR_PTR(err);
Johannes Berg11a843b2007-08-28 17:01:55 -0400344 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200345 break;
346 case WLAN_CIPHER_SUITE_AES_CMAC:
347 key->conf.iv_len = 0;
348 key->conf.icv_len = sizeof(struct ieee80211_mmie);
349 if (seq)
350 for (j = 0; j < 6; j++)
351 key->u.aes_cmac.rx_pn[j] = seq[6 - j - 1];
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200352 /*
353 * Initialize AES key state here as an optimization so that
354 * it does not need to be initialized for every packet.
355 */
356 key->u.aes_cmac.tfm =
357 ieee80211_aes_cmac_key_setup(key_data);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100358 if (IS_ERR(key->u.aes_cmac.tfm)) {
359 err = PTR_ERR(key->u.aes_cmac.tfm);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200360 kfree(key);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100361 key = ERR_PTR(err);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200362 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200363 break;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200364 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200365 memcpy(key->conf.key, key_data, key_len);
366 INIT_LIST_HEAD(&key->list);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200367
Johannes Bergdb4d1162008-02-25 16:27:45 +0100368 return key;
369}
Johannes Berg11a843b2007-08-28 17:01:55 -0400370
Johannes Bergad0e2b52010-06-01 10:19:19 +0200371static void __ieee80211_key_destroy(struct ieee80211_key *key)
372{
373 if (!key)
374 return;
375
Jouni Malinen32162a42010-07-26 15:52:03 -0700376 if (key->local)
377 ieee80211_key_disable_hw_accel(key);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200378
Johannes Berg97359d12010-08-10 09:46:38 +0200379 if (key->conf.cipher == WLAN_CIPHER_SUITE_CCMP)
Johannes Bergad0e2b52010-06-01 10:19:19 +0200380 ieee80211_aes_key_free(key->u.ccmp.tfm);
Johannes Berg97359d12010-08-10 09:46:38 +0200381 if (key->conf.cipher == WLAN_CIPHER_SUITE_AES_CMAC)
Johannes Bergad0e2b52010-06-01 10:19:19 +0200382 ieee80211_aes_cmac_key_free(key->u.aes_cmac.tfm);
Jouni Malinen32162a42010-07-26 15:52:03 -0700383 if (key->local)
384 ieee80211_debugfs_key_remove(key);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200385
386 kfree(key);
387}
388
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300389int ieee80211_key_link(struct ieee80211_key *key,
390 struct ieee80211_sub_if_data *sdata,
391 struct sta_info *sta)
Johannes Bergdb4d1162008-02-25 16:27:45 +0100392{
393 struct ieee80211_key *old_key;
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300394 int idx, ret;
Johannes Berge31b8212010-10-05 19:39:30 +0200395 bool pairwise = key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100396
Johannes Bergdb4d1162008-02-25 16:27:45 +0100397 BUG_ON(!sdata);
398 BUG_ON(!key);
399
400 idx = key->conf.keyidx;
401 key->local = sdata->local;
402 key->sdata = sdata;
403 key->sta = sta;
404
Johannes Berg11a843b2007-08-28 17:01:55 -0400405 if (sta) {
Johannes Berg11a843b2007-08-28 17:01:55 -0400406 /*
407 * some hardware cannot handle TKIP with QoS, so
408 * we indicate whether QoS could be in use.
409 */
Johannes Berg07346f812008-05-03 01:02:02 +0200410 if (test_sta_flags(sta, WLAN_STA_WME))
Johannes Berg11a843b2007-08-28 17:01:55 -0400411 key->conf.flags |= IEEE80211_KEY_FLAG_WMM_STA;
412 } else {
Johannes Berg05c914f2008-09-11 00:01:58 +0200413 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Johannes Berg11a843b2007-08-28 17:01:55 -0400414 struct sta_info *ap;
415
Johannes Berg3b967662008-04-08 17:56:52 +0200416 /*
417 * We're getting a sta pointer in,
418 * so must be under RCU read lock.
419 */
Johannes Bergd0709a62008-02-25 16:27:46 +0100420
Johannes Berg11a843b2007-08-28 17:01:55 -0400421 /* same here, the AP could be using QoS */
Johannes Bergabe60632009-11-25 17:46:18 +0100422 ap = sta_info_get(key->sdata, key->sdata->u.mgd.bssid);
Johannes Berg11a843b2007-08-28 17:01:55 -0400423 if (ap) {
Johannes Berg07346f812008-05-03 01:02:02 +0200424 if (test_sta_flags(ap, WLAN_STA_WME))
Johannes Berg11a843b2007-08-28 17:01:55 -0400425 key->conf.flags |=
426 IEEE80211_KEY_FLAG_WMM_STA;
Johannes Berg11a843b2007-08-28 17:01:55 -0400427 }
428 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400429 }
430
Johannes Bergad0e2b52010-06-01 10:19:19 +0200431 mutex_lock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200432
Johannes Berge31b8212010-10-05 19:39:30 +0200433 if (sta && pairwise)
434 old_key = sta->ptk;
435 else if (sta)
436 old_key = sta->gtk[idx];
Johannes Bergd4e46a32007-09-14 11:10:24 -0400437 else
Johannes Bergdb4d1162008-02-25 16:27:45 +0100438 old_key = sdata->keys[idx];
439
Johannes Berge31b8212010-10-05 19:39:30 +0200440 __ieee80211_key_replace(sdata, sta, pairwise, old_key, key);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200441 __ieee80211_key_destroy(old_key);
Johannes Bergd4e46a32007-09-14 11:10:24 -0400442
Johannes Bergad0e2b52010-06-01 10:19:19 +0200443 ieee80211_debugfs_key_add(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200444
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300445 ret = ieee80211_key_enable_hw_accel(key);
Johannes Berg523d2f62009-07-01 21:26:43 +0200446
Johannes Bergad0e2b52010-06-01 10:19:19 +0200447 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300448
449 return ret;
Johannes Berg3a245762008-04-09 16:45:37 +0200450}
451
452static void __ieee80211_key_free(struct ieee80211_key *key)
453{
454 /*
455 * Replace key with nothingness if it was ever used.
456 */
457 if (key->sdata)
458 __ieee80211_key_replace(key->sdata, key->sta,
Johannes Berge31b8212010-10-05 19:39:30 +0200459 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE,
460 key, NULL);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200461 __ieee80211_key_destroy(key);
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200462}
463
Jouni Malinen32162a42010-07-26 15:52:03 -0700464void ieee80211_key_free(struct ieee80211_local *local,
465 struct ieee80211_key *key)
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200466{
Johannes Berg8f371712007-08-28 17:01:54 -0400467 if (!key)
468 return;
469
Johannes Bergad0e2b52010-06-01 10:19:19 +0200470 mutex_lock(&local->key_mtx);
Johannes Berg3a245762008-04-09 16:45:37 +0200471 __ieee80211_key_free(key);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200472 mutex_unlock(&local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200473}
474
475void ieee80211_enable_keys(struct ieee80211_sub_if_data *sdata)
476{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200477 struct ieee80211_key *key;
478
Johannes Berg3a245762008-04-09 16:45:37 +0200479 ASSERT_RTNL();
Johannes Berg3b967662008-04-08 17:56:52 +0200480
Johannes Berg9607e6b2009-12-23 13:15:31 +0100481 if (WARN_ON(!ieee80211_sdata_running(sdata)))
Johannes Berg3b967662008-04-08 17:56:52 +0200482 return;
483
Johannes Bergad0e2b52010-06-01 10:19:19 +0200484 mutex_lock(&sdata->local->key_mtx);
485
486 list_for_each_entry(key, &sdata->key_list, list)
487 ieee80211_key_enable_hw_accel(key);
488
489 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200490}
491
492void ieee80211_disable_keys(struct ieee80211_sub_if_data *sdata)
493{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200494 struct ieee80211_key *key;
495
Johannes Berg3a245762008-04-09 16:45:37 +0200496 ASSERT_RTNL();
Johannes Berg3b967662008-04-08 17:56:52 +0200497
Johannes Bergad0e2b52010-06-01 10:19:19 +0200498 mutex_lock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200499
Johannes Bergad0e2b52010-06-01 10:19:19 +0200500 list_for_each_entry(key, &sdata->key_list, list)
501 ieee80211_key_disable_hw_accel(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200502
Johannes Bergad0e2b52010-06-01 10:19:19 +0200503 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg11a843b2007-08-28 17:01:55 -0400504}
505
506void ieee80211_free_keys(struct ieee80211_sub_if_data *sdata)
507{
508 struct ieee80211_key *key, *tmp;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100509
Johannes Bergad0e2b52010-06-01 10:19:19 +0200510 mutex_lock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200511
512 ieee80211_debugfs_key_remove_default(sdata);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200513 ieee80211_debugfs_key_remove_mgmt_default(sdata);
Johannes Berg11a843b2007-08-28 17:01:55 -0400514
515 list_for_each_entry_safe(key, tmp, &sdata->key_list, list)
Johannes Berg3a245762008-04-09 16:45:37 +0200516 __ieee80211_key_free(key);
Johannes Berg11a843b2007-08-28 17:01:55 -0400517
Johannes Bergad0e2b52010-06-01 10:19:19 +0200518 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg11a843b2007-08-28 17:01:55 -0400519}