blob: 3570f8c2bb401d3d4d20cbac6dbc0fddfb395235 [file] [log] [blame]
Johannes Berg1f5a7e472007-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 Berg1f5a7e472007-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 Berg1f5a7e472007-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 Berg1f5a7e472007-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 Berg1f5a7e472007-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 Bergad0e2b52010-06-01 10:19:19 +020052 WARN_ON(!mutex_is_locked(&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 Berg3ffc2a92010-08-27 14:26:52 +030071 if (!key->local->ops->set_key) {
72 ret = -EOPNOTSUPP;
73 goto out_unsupported;
74 }
Johannes Berg11a843b2007-08-28 17:01:55 -040075
Johannes Bergad0e2b52010-06-01 10:19:19 +020076 assert_key_lock(key->local);
77
Johannes Bergdc822b52008-12-29 12:55:09 +010078 sta = get_sta_for_key(key);
79
80 sdata = key->sdata;
81 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
82 sdata = container_of(sdata->bss,
83 struct ieee80211_sub_if_data,
84 u.ap);
Johannes Berg11a843b2007-08-28 17:01:55 -040085
Johannes Berg12375ef2009-11-25 20:30:31 +010086 ret = drv_set_key(key->local, SET_KEY, sdata, sta, &key->conf);
Johannes Berg11a843b2007-08-28 17:01:55 -040087
Johannes Bergad0e2b52010-06-01 10:19:19 +020088 if (!ret)
Johannes Berg11a843b2007-08-28 17:01:55 -040089 key->flags |= KEY_FLAG_UPLOADED_TO_HARDWARE;
90
91 if (ret && ret != -ENOSPC && ret != -EOPNOTSUPP)
Joe Perches0fb9a9e2010-08-20 16:25:38 -070092 wiphy_err(key->local->hw.wiphy,
93 "failed to set key (%d, %pM) to hardware (%d)\n",
94 key->conf.keyidx, sta ? sta->addr : bcast_addr, ret);
Johannes Berg3ffc2a92010-08-27 14:26:52 +030095
96out_unsupported:
97 if (ret) {
98 switch (key->conf.cipher) {
99 case WLAN_CIPHER_SUITE_WEP40:
100 case WLAN_CIPHER_SUITE_WEP104:
101 case WLAN_CIPHER_SUITE_TKIP:
102 case WLAN_CIPHER_SUITE_CCMP:
103 case WLAN_CIPHER_SUITE_AES_CMAC:
104 /* all of these we can do in software */
105 ret = 0;
106 break;
107 default:
108 ret = -EINVAL;
109 }
110 }
111
112 return ret;
Johannes Berg11a843b2007-08-28 17:01:55 -0400113}
114
115static void ieee80211_key_disable_hw_accel(struct ieee80211_key *key)
116{
Johannes Bergdc822b52008-12-29 12:55:09 +0100117 struct ieee80211_sub_if_data *sdata;
118 struct ieee80211_sta *sta;
Johannes Berg11a843b2007-08-28 17:01:55 -0400119 int ret;
120
Johannes Berg3b967662008-04-08 17:56:52 +0200121 might_sleep();
122
Johannes Bergdb4d1162008-02-25 16:27:45 +0100123 if (!key || !key->local->ops->set_key)
Johannes Berg11a843b2007-08-28 17:01:55 -0400124 return;
125
Johannes Bergad0e2b52010-06-01 10:19:19 +0200126 assert_key_lock(key->local);
127
128 if (!(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
Johannes Berg11a843b2007-08-28 17:01:55 -0400129 return;
130
Johannes Bergdc822b52008-12-29 12:55:09 +0100131 sta = get_sta_for_key(key);
132 sdata = key->sdata;
133
134 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
135 sdata = container_of(sdata->bss,
136 struct ieee80211_sub_if_data,
137 u.ap);
Johannes Berg11a843b2007-08-28 17:01:55 -0400138
Johannes Berg12375ef2009-11-25 20:30:31 +0100139 ret = drv_set_key(key->local, DISABLE_KEY, sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200140 sta, &key->conf);
Johannes Berg11a843b2007-08-28 17:01:55 -0400141
142 if (ret)
Joe Perches0fb9a9e2010-08-20 16:25:38 -0700143 wiphy_err(key->local->hw.wiphy,
144 "failed to remove key (%d, %pM) from hardware (%d)\n",
145 key->conf.keyidx, sta ? sta->addr : bcast_addr, ret);
Johannes Berg11a843b2007-08-28 17:01:55 -0400146
Johannes Berg3b967662008-04-08 17:56:52 +0200147 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
Johannes Berg3b967662008-04-08 17:56:52 +0200148}
149
150static void __ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata,
151 int idx)
152{
153 struct ieee80211_key *key = NULL;
154
Johannes Bergad0e2b52010-06-01 10:19:19 +0200155 assert_key_lock(sdata->local);
156
Johannes Berg3b967662008-04-08 17:56:52 +0200157 if (idx >= 0 && idx < NUM_DEFAULT_KEYS)
158 key = sdata->keys[idx];
159
160 rcu_assign_pointer(sdata->default_key, key);
161
Johannes Bergad0e2b52010-06-01 10:19:19 +0200162 if (key) {
163 ieee80211_debugfs_key_remove_default(key->sdata);
164 ieee80211_debugfs_key_add_default(key->sdata);
165 }
Johannes Berg3b967662008-04-08 17:56:52 +0200166}
167
168void ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata, int idx)
169{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200170 mutex_lock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200171 __ieee80211_set_default_key(sdata, idx);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200172 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200173}
174
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200175static void
176__ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata, int idx)
177{
178 struct ieee80211_key *key = NULL;
179
Johannes Bergad0e2b52010-06-01 10:19:19 +0200180 assert_key_lock(sdata->local);
181
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200182 if (idx >= NUM_DEFAULT_KEYS &&
183 idx < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
184 key = sdata->keys[idx];
185
186 rcu_assign_pointer(sdata->default_mgmt_key, key);
187
Johannes Bergad0e2b52010-06-01 10:19:19 +0200188 if (key) {
189 ieee80211_debugfs_key_remove_mgmt_default(key->sdata);
190 ieee80211_debugfs_key_add_mgmt_default(key->sdata);
191 }
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200192}
193
194void ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata,
195 int idx)
196{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200197 mutex_lock(&sdata->local->key_mtx);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200198 __ieee80211_set_default_mgmt_key(sdata, idx);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200199 mutex_unlock(&sdata->local->key_mtx);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200200}
201
Johannes Berg3b967662008-04-08 17:56:52 +0200202
203static void __ieee80211_key_replace(struct ieee80211_sub_if_data *sdata,
204 struct sta_info *sta,
205 struct ieee80211_key *old,
206 struct ieee80211_key *new)
207{
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200208 int idx, defkey, defmgmtkey;
Johannes Berg3b967662008-04-08 17:56:52 +0200209
210 if (new)
211 list_add(&new->list, &sdata->key_list);
212
213 if (sta) {
214 rcu_assign_pointer(sta->key, new);
215 } else {
216 WARN_ON(new && old && new->conf.keyidx != old->conf.keyidx);
217
218 if (old)
219 idx = old->conf.keyidx;
220 else
221 idx = new->conf.keyidx;
222
223 defkey = old && sdata->default_key == old;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200224 defmgmtkey = old && sdata->default_mgmt_key == old;
Johannes Berg3b967662008-04-08 17:56:52 +0200225
226 if (defkey && !new)
227 __ieee80211_set_default_key(sdata, -1);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200228 if (defmgmtkey && !new)
229 __ieee80211_set_default_mgmt_key(sdata, -1);
Johannes Berg3b967662008-04-08 17:56:52 +0200230
231 rcu_assign_pointer(sdata->keys[idx], new);
232 if (defkey && new)
233 __ieee80211_set_default_key(sdata, new->conf.keyidx);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200234 if (defmgmtkey && new)
235 __ieee80211_set_default_mgmt_key(sdata,
236 new->conf.keyidx);
Johannes Berg3b967662008-04-08 17:56:52 +0200237 }
238
239 if (old) {
240 /*
241 * We'll use an empty list to indicate that the key
242 * has already been removed.
243 */
244 list_del_init(&old->list);
245 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400246}
247
Johannes Berg97359d12010-08-10 09:46:38 +0200248struct ieee80211_key *ieee80211_key_alloc(u32 cipher, int idx, size_t key_len,
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300249 const u8 *key_data,
250 size_t seq_len, const u8 *seq)
Johannes Berg1f5a7e472007-07-27 15:43:23 +0200251{
252 struct ieee80211_key *key;
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100253 int i, j, err;
Johannes Berg1f5a7e472007-07-27 15:43:23 +0200254
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200255 BUG_ON(idx < 0 || idx >= NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS);
Johannes Berg11a843b2007-08-28 17:01:55 -0400256
257 key = kzalloc(sizeof(struct ieee80211_key) + key_len, GFP_KERNEL);
Johannes Berg1f5a7e472007-07-27 15:43:23 +0200258 if (!key)
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100259 return ERR_PTR(-ENOMEM);
Johannes Berg11a843b2007-08-28 17:01:55 -0400260
261 /*
262 * Default to software encryption; we'll later upload the
263 * key to the hardware if possible.
264 */
Johannes Berg11a843b2007-08-28 17:01:55 -0400265 key->conf.flags = 0;
266 key->flags = 0;
267
Johannes Berg97359d12010-08-10 09:46:38 +0200268 key->conf.cipher = cipher;
Johannes Berg11a843b2007-08-28 17:01:55 -0400269 key->conf.keyidx = idx;
270 key->conf.keylen = key_len;
Johannes Berg97359d12010-08-10 09:46:38 +0200271 switch (cipher) {
272 case WLAN_CIPHER_SUITE_WEP40:
273 case WLAN_CIPHER_SUITE_WEP104:
Felix Fietkau76708de2008-10-05 18:02:48 +0200274 key->conf.iv_len = WEP_IV_LEN;
275 key->conf.icv_len = WEP_ICV_LEN;
276 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200277 case WLAN_CIPHER_SUITE_TKIP:
Felix Fietkau76708de2008-10-05 18:02:48 +0200278 key->conf.iv_len = TKIP_IV_LEN;
279 key->conf.icv_len = TKIP_ICV_LEN;
Jouni Malinen9f26a952009-05-15 12:38:32 +0300280 if (seq) {
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300281 for (i = 0; i < NUM_RX_DATA_QUEUES; i++) {
282 key->u.tkip.rx[i].iv32 =
283 get_unaligned_le32(&seq[2]);
284 key->u.tkip.rx[i].iv16 =
285 get_unaligned_le16(seq);
286 }
287 }
Felix Fietkau76708de2008-10-05 18:02:48 +0200288 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200289 case WLAN_CIPHER_SUITE_CCMP:
Felix Fietkau76708de2008-10-05 18:02:48 +0200290 key->conf.iv_len = CCMP_HDR_LEN;
291 key->conf.icv_len = CCMP_MIC_LEN;
Jouni Malinen9f26a952009-05-15 12:38:32 +0300292 if (seq) {
Jouni Malinen91902522010-06-11 10:27:33 -0700293 for (i = 0; i < NUM_RX_DATA_QUEUES + 1; i++)
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300294 for (j = 0; j < CCMP_PN_LEN; j++)
295 key->u.ccmp.rx_pn[i][j] =
296 seq[CCMP_PN_LEN - j - 1];
297 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400298 /*
299 * Initialize AES key state here as an optimization so that
300 * it does not need to be initialized for every packet.
301 */
302 key->u.ccmp.tfm = ieee80211_aes_key_setup_encrypt(key_data);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100303 if (IS_ERR(key->u.ccmp.tfm)) {
304 err = PTR_ERR(key->u.ccmp.tfm);
Johannes Berg3b967662008-04-08 17:56:52 +0200305 kfree(key);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100306 key = ERR_PTR(err);
Johannes Berg11a843b2007-08-28 17:01:55 -0400307 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200308 break;
309 case WLAN_CIPHER_SUITE_AES_CMAC:
310 key->conf.iv_len = 0;
311 key->conf.icv_len = sizeof(struct ieee80211_mmie);
312 if (seq)
313 for (j = 0; j < 6; j++)
314 key->u.aes_cmac.rx_pn[j] = seq[6 - j - 1];
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200315 /*
316 * Initialize AES key state here as an optimization so that
317 * it does not need to be initialized for every packet.
318 */
319 key->u.aes_cmac.tfm =
320 ieee80211_aes_cmac_key_setup(key_data);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100321 if (IS_ERR(key->u.aes_cmac.tfm)) {
322 err = PTR_ERR(key->u.aes_cmac.tfm);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200323 kfree(key);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100324 key = ERR_PTR(err);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200325 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200326 break;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200327 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200328 memcpy(key->conf.key, key_data, key_len);
329 INIT_LIST_HEAD(&key->list);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200330
Johannes Bergdb4d1162008-02-25 16:27:45 +0100331 return key;
332}
Johannes Berg11a843b2007-08-28 17:01:55 -0400333
Johannes Bergad0e2b52010-06-01 10:19:19 +0200334static void __ieee80211_key_destroy(struct ieee80211_key *key)
335{
336 if (!key)
337 return;
338
Jouni Malinen32162a42010-07-26 15:52:03 -0700339 if (key->local)
340 ieee80211_key_disable_hw_accel(key);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200341
Johannes Berg97359d12010-08-10 09:46:38 +0200342 if (key->conf.cipher == WLAN_CIPHER_SUITE_CCMP)
Johannes Bergad0e2b52010-06-01 10:19:19 +0200343 ieee80211_aes_key_free(key->u.ccmp.tfm);
Johannes Berg97359d12010-08-10 09:46:38 +0200344 if (key->conf.cipher == WLAN_CIPHER_SUITE_AES_CMAC)
Johannes Bergad0e2b52010-06-01 10:19:19 +0200345 ieee80211_aes_cmac_key_free(key->u.aes_cmac.tfm);
Jouni Malinen32162a42010-07-26 15:52:03 -0700346 if (key->local)
347 ieee80211_debugfs_key_remove(key);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200348
349 kfree(key);
350}
351
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300352int ieee80211_key_link(struct ieee80211_key *key,
353 struct ieee80211_sub_if_data *sdata,
354 struct sta_info *sta)
Johannes Bergdb4d1162008-02-25 16:27:45 +0100355{
356 struct ieee80211_key *old_key;
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300357 int idx, ret;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100358
Johannes Bergdb4d1162008-02-25 16:27:45 +0100359 BUG_ON(!sdata);
360 BUG_ON(!key);
361
362 idx = key->conf.keyidx;
363 key->local = sdata->local;
364 key->sdata = sdata;
365 key->sta = sta;
366
Johannes Berg11a843b2007-08-28 17:01:55 -0400367 if (sta) {
Johannes Berg11a843b2007-08-28 17:01:55 -0400368 /*
369 * some hardware cannot handle TKIP with QoS, so
370 * we indicate whether QoS could be in use.
371 */
Johannes Berg07346f812008-05-03 01:02:02 +0200372 if (test_sta_flags(sta, WLAN_STA_WME))
Johannes Berg11a843b2007-08-28 17:01:55 -0400373 key->conf.flags |= IEEE80211_KEY_FLAG_WMM_STA;
Ivo van Doornc6adbd22008-04-17 21:11:18 +0200374
375 /*
376 * This key is for a specific sta interface,
377 * inform the driver that it should try to store
378 * this key as pairwise key.
379 */
380 key->conf.flags |= IEEE80211_KEY_FLAG_PAIRWISE;
Johannes Berg11a843b2007-08-28 17:01:55 -0400381 } else {
Johannes Berg05c914f2008-09-11 00:01:58 +0200382 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Johannes Berg11a843b2007-08-28 17:01:55 -0400383 struct sta_info *ap;
384
Johannes Berg3b967662008-04-08 17:56:52 +0200385 /*
386 * We're getting a sta pointer in,
387 * so must be under RCU read lock.
388 */
Johannes Bergd0709a62008-02-25 16:27:46 +0100389
Johannes Berg11a843b2007-08-28 17:01:55 -0400390 /* same here, the AP could be using QoS */
Johannes Bergabe60632009-11-25 17:46:18 +0100391 ap = sta_info_get(key->sdata, key->sdata->u.mgd.bssid);
Johannes Berg11a843b2007-08-28 17:01:55 -0400392 if (ap) {
Johannes Berg07346f812008-05-03 01:02:02 +0200393 if (test_sta_flags(ap, WLAN_STA_WME))
Johannes Berg11a843b2007-08-28 17:01:55 -0400394 key->conf.flags |=
395 IEEE80211_KEY_FLAG_WMM_STA;
Johannes Berg11a843b2007-08-28 17:01:55 -0400396 }
397 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400398 }
399
Johannes Bergad0e2b52010-06-01 10:19:19 +0200400 mutex_lock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200401
Johannes Bergd4e46a32007-09-14 11:10:24 -0400402 if (sta)
Johannes Bergdb4d1162008-02-25 16:27:45 +0100403 old_key = sta->key;
Johannes Bergd4e46a32007-09-14 11:10:24 -0400404 else
Johannes Bergdb4d1162008-02-25 16:27:45 +0100405 old_key = sdata->keys[idx];
406
407 __ieee80211_key_replace(sdata, sta, old_key, key);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200408 __ieee80211_key_destroy(old_key);
Johannes Bergd4e46a32007-09-14 11:10:24 -0400409
Johannes Bergad0e2b52010-06-01 10:19:19 +0200410 ieee80211_debugfs_key_add(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200411
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300412 ret = ieee80211_key_enable_hw_accel(key);
Johannes Berg523d2f62009-07-01 21:26:43 +0200413
Johannes Bergad0e2b52010-06-01 10:19:19 +0200414 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300415
416 return ret;
Johannes Berg3a245762008-04-09 16:45:37 +0200417}
418
419static void __ieee80211_key_free(struct ieee80211_key *key)
420{
421 /*
422 * Replace key with nothingness if it was ever used.
423 */
424 if (key->sdata)
425 __ieee80211_key_replace(key->sdata, key->sta,
426 key, NULL);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200427 __ieee80211_key_destroy(key);
Johannes Berg1f5a7e472007-07-27 15:43:23 +0200428}
429
Jouni Malinen32162a42010-07-26 15:52:03 -0700430void ieee80211_key_free(struct ieee80211_local *local,
431 struct ieee80211_key *key)
Johannes Berg1f5a7e472007-07-27 15:43:23 +0200432{
Johannes Berg8f371712007-08-28 17:01:54 -0400433 if (!key)
434 return;
435
Johannes Bergad0e2b52010-06-01 10:19:19 +0200436 mutex_lock(&local->key_mtx);
Johannes Berg3a245762008-04-09 16:45:37 +0200437 __ieee80211_key_free(key);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200438 mutex_unlock(&local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200439}
440
441void ieee80211_enable_keys(struct ieee80211_sub_if_data *sdata)
442{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200443 struct ieee80211_key *key;
444
Johannes Berg3a245762008-04-09 16:45:37 +0200445 ASSERT_RTNL();
Johannes Berg3b967662008-04-08 17:56:52 +0200446
Johannes Berg9607e6b2009-12-23 13:15:31 +0100447 if (WARN_ON(!ieee80211_sdata_running(sdata)))
Johannes Berg3b967662008-04-08 17:56:52 +0200448 return;
449
Johannes Bergad0e2b52010-06-01 10:19:19 +0200450 mutex_lock(&sdata->local->key_mtx);
451
452 list_for_each_entry(key, &sdata->key_list, list)
453 ieee80211_key_enable_hw_accel(key);
454
455 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200456}
457
458void ieee80211_disable_keys(struct ieee80211_sub_if_data *sdata)
459{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200460 struct ieee80211_key *key;
461
Johannes Berg3a245762008-04-09 16:45:37 +0200462 ASSERT_RTNL();
Johannes Berg3b967662008-04-08 17:56:52 +0200463
Johannes Bergad0e2b52010-06-01 10:19:19 +0200464 mutex_lock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200465
Johannes Bergad0e2b52010-06-01 10:19:19 +0200466 list_for_each_entry(key, &sdata->key_list, list)
467 ieee80211_key_disable_hw_accel(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200468
Johannes Bergad0e2b52010-06-01 10:19:19 +0200469 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg11a843b2007-08-28 17:01:55 -0400470}
471
472void ieee80211_free_keys(struct ieee80211_sub_if_data *sdata)
473{
474 struct ieee80211_key *key, *tmp;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100475
Johannes Bergad0e2b52010-06-01 10:19:19 +0200476 mutex_lock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200477
478 ieee80211_debugfs_key_remove_default(sdata);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200479 ieee80211_debugfs_key_remove_mgmt_default(sdata);
Johannes Berg11a843b2007-08-28 17:01:55 -0400480
481 list_for_each_entry_safe(key, tmp, &sdata->key_list, list)
Johannes Berg3a245762008-04-09 16:45:37 +0200482 __ieee80211_key_free(key);
Johannes Berg11a843b2007-08-28 17:01:55 -0400483
Johannes Bergad0e2b52010-06-01 10:19:19 +0200484 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg11a843b2007-08-28 17:01:55 -0400485}