blob: d5b95748db2a1769470418a1e39b0586899f0ba8 [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>
Johannes Berg1f5a7e472007-07-27 15:43:23 +020017#include <net/mac80211.h>
18#include "ieee80211_i.h"
19#include "debugfs_key.h"
20#include "aes_ccm.h"
21
Johannes Berg11a843b2007-08-28 17:01:55 -040022
Johannes Bergdbbea672008-02-26 14:34:06 +010023/**
24 * DOC: Key handling basics
Johannes Berg11a843b2007-08-28 17:01:55 -040025 *
26 * Key handling in mac80211 is done based on per-interface (sub_if_data)
27 * keys and per-station keys. Since each station belongs to an interface,
28 * each station key also belongs to that interface.
29 *
30 * Hardware acceleration is done on a best-effort basis, for each key
31 * that is eligible the hardware is asked to enable that key but if
32 * it cannot do that they key is simply kept for software encryption.
33 * There is currently no way of knowing this except by looking into
34 * debugfs.
35 *
Johannes Berg3b967662008-04-08 17:56:52 +020036 * All key operations are protected internally so you can call them at
37 * any time.
Johannes Bergdb4d1162008-02-25 16:27:45 +010038 *
Johannes Berg3b967662008-04-08 17:56:52 +020039 * Within mac80211, key references are, just as STA structure references,
40 * protected by RCU. Note, however, that some things are unprotected,
41 * namely the key->sta dereferences within the hardware acceleration
42 * functions. This means that sta_info_destroy() must flush the key todo
43 * list.
44 *
45 * All the direct key list manipulation functions must not sleep because
46 * they can operate on STA info structs that are protected by RCU.
Johannes Berg11a843b2007-08-28 17:01:55 -040047 */
48
49static const u8 bcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
50static const u8 zero_addr[ETH_ALEN];
51
Johannes Berg3b967662008-04-08 17:56:52 +020052/* key mutex: used to synchronise todo runners */
53static DEFINE_MUTEX(key_mutex);
54static DEFINE_SPINLOCK(todo_lock);
55static LIST_HEAD(todo_list);
56
57static void key_todo(struct work_struct *work)
58{
59 ieee80211_key_todo();
60}
61
62static DECLARE_WORK(todo_work, key_todo);
63
64/**
65 * add_todo - add todo item for a key
66 *
67 * @key: key to add to do item for
68 * @flag: todo flag(s)
69 */
70static void add_todo(struct ieee80211_key *key, u32 flag)
71{
72 if (!key)
73 return;
74
75 spin_lock(&todo_lock);
76 key->flags |= flag;
Johannes Berg245cbe72008-04-13 10:43:50 +020077 /*
78 * Remove again if already on the list so that we move it to the end.
79 */
80 if (!list_empty(&key->todo))
81 list_del(&key->todo);
82 list_add_tail(&key->todo, &todo_list);
Johannes Berg3b967662008-04-08 17:56:52 +020083 schedule_work(&todo_work);
84 spin_unlock(&todo_lock);
85}
86
87/**
88 * ieee80211_key_lock - lock the mac80211 key operation lock
89 *
90 * This locks the (global) mac80211 key operation lock, all
91 * key operations must be done under this lock.
92 */
93static void ieee80211_key_lock(void)
94{
95 mutex_lock(&key_mutex);
96}
97
98/**
99 * ieee80211_key_unlock - unlock the mac80211 key operation lock
100 */
101static void ieee80211_key_unlock(void)
102{
103 mutex_unlock(&key_mutex);
104}
105
106static void assert_key_lock(void)
107{
108 WARN_ON(!mutex_is_locked(&key_mutex));
109}
110
Johannes Berg11a843b2007-08-28 17:01:55 -0400111static const u8 *get_mac_for_key(struct ieee80211_key *key)
112{
113 const u8 *addr = bcast_addr;
114
115 /*
116 * If we're an AP we won't ever receive frames with a non-WEP
117 * group key so we tell the driver that by using the zero MAC
118 * address to indicate a transmit-only key.
119 */
120 if (key->conf.alg != ALG_WEP &&
Johannes Berg05c914f2008-09-11 00:01:58 +0200121 (key->sdata->vif.type == NL80211_IFTYPE_AP ||
122 key->sdata->vif.type == NL80211_IFTYPE_AP_VLAN))
Johannes Berg11a843b2007-08-28 17:01:55 -0400123 addr = zero_addr;
124
125 if (key->sta)
126 addr = key->sta->addr;
127
128 return addr;
129}
130
131static void ieee80211_key_enable_hw_accel(struct ieee80211_key *key)
132{
133 const u8 *addr;
134 int ret;
Joe Perches0795af52007-10-03 17:59:30 -0700135 DECLARE_MAC_BUF(mac);
Johannes Berg11a843b2007-08-28 17:01:55 -0400136
Johannes Berg3b967662008-04-08 17:56:52 +0200137 assert_key_lock();
138 might_sleep();
139
Johannes Berg11a843b2007-08-28 17:01:55 -0400140 if (!key->local->ops->set_key)
141 return;
142
143 addr = get_mac_for_key(key);
144
145 ret = key->local->ops->set_key(local_to_hw(key->local), SET_KEY,
146 key->sdata->dev->dev_addr, addr,
147 &key->conf);
148
Johannes Berg3b967662008-04-08 17:56:52 +0200149 if (!ret) {
150 spin_lock(&todo_lock);
Johannes Berg11a843b2007-08-28 17:01:55 -0400151 key->flags |= KEY_FLAG_UPLOADED_TO_HARDWARE;
Johannes Berg3b967662008-04-08 17:56:52 +0200152 spin_unlock(&todo_lock);
153 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400154
155 if (ret && ret != -ENOSPC && ret != -EOPNOTSUPP)
156 printk(KERN_ERR "mac80211-%s: failed to set key "
Joe Perches0795af52007-10-03 17:59:30 -0700157 "(%d, %s) to hardware (%d)\n",
Johannes Berg11a843b2007-08-28 17:01:55 -0400158 wiphy_name(key->local->hw.wiphy),
Joe Perches0795af52007-10-03 17:59:30 -0700159 key->conf.keyidx, print_mac(mac, addr), ret);
Johannes Berg11a843b2007-08-28 17:01:55 -0400160}
161
162static void ieee80211_key_disable_hw_accel(struct ieee80211_key *key)
163{
164 const u8 *addr;
165 int ret;
Joe Perches0795af52007-10-03 17:59:30 -0700166 DECLARE_MAC_BUF(mac);
Johannes Berg11a843b2007-08-28 17:01:55 -0400167
Johannes Berg3b967662008-04-08 17:56:52 +0200168 assert_key_lock();
169 might_sleep();
170
Johannes Bergdb4d1162008-02-25 16:27:45 +0100171 if (!key || !key->local->ops->set_key)
Johannes Berg11a843b2007-08-28 17:01:55 -0400172 return;
173
Johannes Berg3b967662008-04-08 17:56:52 +0200174 spin_lock(&todo_lock);
175 if (!(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)) {
176 spin_unlock(&todo_lock);
Johannes Berg11a843b2007-08-28 17:01:55 -0400177 return;
Johannes Berg3b967662008-04-08 17:56:52 +0200178 }
179 spin_unlock(&todo_lock);
Johannes Berg11a843b2007-08-28 17:01:55 -0400180
181 addr = get_mac_for_key(key);
182
183 ret = key->local->ops->set_key(local_to_hw(key->local), DISABLE_KEY,
184 key->sdata->dev->dev_addr, addr,
185 &key->conf);
186
187 if (ret)
188 printk(KERN_ERR "mac80211-%s: failed to remove key "
Joe Perches0795af52007-10-03 17:59:30 -0700189 "(%d, %s) from hardware (%d)\n",
Johannes Berg11a843b2007-08-28 17:01:55 -0400190 wiphy_name(key->local->hw.wiphy),
Joe Perches0795af52007-10-03 17:59:30 -0700191 key->conf.keyidx, print_mac(mac, addr), ret);
Johannes Berg11a843b2007-08-28 17:01:55 -0400192
Johannes Berg3b967662008-04-08 17:56:52 +0200193 spin_lock(&todo_lock);
194 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
195 spin_unlock(&todo_lock);
196}
197
198static void __ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata,
199 int idx)
200{
201 struct ieee80211_key *key = NULL;
202
203 if (idx >= 0 && idx < NUM_DEFAULT_KEYS)
204 key = sdata->keys[idx];
205
206 rcu_assign_pointer(sdata->default_key, key);
207
208 if (key)
209 add_todo(key, KEY_FLAG_TODO_DEFKEY);
210}
211
212void ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata, int idx)
213{
214 unsigned long flags;
215
Johannes Bergb16bd152008-04-11 21:40:35 +0200216 spin_lock_irqsave(&sdata->local->key_lock, flags);
Johannes Berg3b967662008-04-08 17:56:52 +0200217 __ieee80211_set_default_key(sdata, idx);
Johannes Bergb16bd152008-04-11 21:40:35 +0200218 spin_unlock_irqrestore(&sdata->local->key_lock, flags);
Johannes Berg3b967662008-04-08 17:56:52 +0200219}
220
221
222static void __ieee80211_key_replace(struct ieee80211_sub_if_data *sdata,
223 struct sta_info *sta,
224 struct ieee80211_key *old,
225 struct ieee80211_key *new)
226{
227 int idx, defkey;
228
229 if (new)
230 list_add(&new->list, &sdata->key_list);
231
232 if (sta) {
233 rcu_assign_pointer(sta->key, new);
234 } else {
235 WARN_ON(new && old && new->conf.keyidx != old->conf.keyidx);
236
237 if (old)
238 idx = old->conf.keyidx;
239 else
240 idx = new->conf.keyidx;
241
242 defkey = old && sdata->default_key == old;
243
244 if (defkey && !new)
245 __ieee80211_set_default_key(sdata, -1);
246
247 rcu_assign_pointer(sdata->keys[idx], new);
248 if (defkey && new)
249 __ieee80211_set_default_key(sdata, new->conf.keyidx);
250 }
251
252 if (old) {
253 /*
254 * We'll use an empty list to indicate that the key
255 * has already been removed.
256 */
257 list_del_init(&old->list);
258 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400259}
260
Johannes Bergdb4d1162008-02-25 16:27:45 +0100261struct ieee80211_key *ieee80211_key_alloc(enum ieee80211_key_alg alg,
Johannes Berg11a843b2007-08-28 17:01:55 -0400262 int idx,
263 size_t key_len,
264 const u8 *key_data)
Johannes Berg1f5a7e472007-07-27 15:43:23 +0200265{
266 struct ieee80211_key *key;
267
Johannes Bergd4e46a32007-09-14 11:10:24 -0400268 BUG_ON(idx < 0 || idx >= NUM_DEFAULT_KEYS);
Johannes Berg11a843b2007-08-28 17:01:55 -0400269
270 key = kzalloc(sizeof(struct ieee80211_key) + key_len, GFP_KERNEL);
Johannes Berg1f5a7e472007-07-27 15:43:23 +0200271 if (!key)
272 return NULL;
Johannes Berg11a843b2007-08-28 17:01:55 -0400273
274 /*
275 * Default to software encryption; we'll later upload the
276 * key to the hardware if possible.
277 */
Johannes Berg11a843b2007-08-28 17:01:55 -0400278 key->conf.flags = 0;
279 key->flags = 0;
280
281 key->conf.alg = alg;
282 key->conf.keyidx = idx;
283 key->conf.keylen = key_len;
284 memcpy(key->conf.key, key_data, key_len);
Johannes Berge48618292008-02-27 13:39:00 +0100285 INIT_LIST_HEAD(&key->list);
Johannes Berg3b967662008-04-08 17:56:52 +0200286 INIT_LIST_HEAD(&key->todo);
Johannes Berg11a843b2007-08-28 17:01:55 -0400287
Johannes Berg11a843b2007-08-28 17:01:55 -0400288 if (alg == ALG_CCMP) {
289 /*
290 * Initialize AES key state here as an optimization so that
291 * it does not need to be initialized for every packet.
292 */
293 key->u.ccmp.tfm = ieee80211_aes_key_setup_encrypt(key_data);
294 if (!key->u.ccmp.tfm) {
Johannes Berg3b967662008-04-08 17:56:52 +0200295 kfree(key);
Johannes Berg11a843b2007-08-28 17:01:55 -0400296 return NULL;
297 }
298 }
299
Johannes Bergdb4d1162008-02-25 16:27:45 +0100300 return key;
301}
Johannes Berg11a843b2007-08-28 17:01:55 -0400302
Johannes Bergdb4d1162008-02-25 16:27:45 +0100303void ieee80211_key_link(struct ieee80211_key *key,
304 struct ieee80211_sub_if_data *sdata,
305 struct sta_info *sta)
306{
307 struct ieee80211_key *old_key;
Johannes Berg3b967662008-04-08 17:56:52 +0200308 unsigned long flags;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100309 int idx;
310
Johannes Bergdb4d1162008-02-25 16:27:45 +0100311 BUG_ON(!sdata);
312 BUG_ON(!key);
313
314 idx = key->conf.keyidx;
315 key->local = sdata->local;
316 key->sdata = sdata;
317 key->sta = sta;
318
Johannes Berg11a843b2007-08-28 17:01:55 -0400319 if (sta) {
Johannes Berg11a843b2007-08-28 17:01:55 -0400320 /*
321 * some hardware cannot handle TKIP with QoS, so
322 * we indicate whether QoS could be in use.
323 */
Johannes Berg07346f812008-05-03 01:02:02 +0200324 if (test_sta_flags(sta, WLAN_STA_WME))
Johannes Berg11a843b2007-08-28 17:01:55 -0400325 key->conf.flags |= IEEE80211_KEY_FLAG_WMM_STA;
Ivo van Doornc6adbd22008-04-17 21:11:18 +0200326
327 /*
328 * This key is for a specific sta interface,
329 * inform the driver that it should try to store
330 * this key as pairwise key.
331 */
332 key->conf.flags |= IEEE80211_KEY_FLAG_PAIRWISE;
Johannes Berg11a843b2007-08-28 17:01:55 -0400333 } else {
Johannes Berg05c914f2008-09-11 00:01:58 +0200334 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Johannes Berg11a843b2007-08-28 17:01:55 -0400335 struct sta_info *ap;
336
Johannes Berg3b967662008-04-08 17:56:52 +0200337 /*
338 * We're getting a sta pointer in,
339 * so must be under RCU read lock.
340 */
Johannes Bergd0709a62008-02-25 16:27:46 +0100341
Johannes Berg11a843b2007-08-28 17:01:55 -0400342 /* same here, the AP could be using QoS */
343 ap = sta_info_get(key->local, key->sdata->u.sta.bssid);
344 if (ap) {
Johannes Berg07346f812008-05-03 01:02:02 +0200345 if (test_sta_flags(ap, WLAN_STA_WME))
Johannes Berg11a843b2007-08-28 17:01:55 -0400346 key->conf.flags |=
347 IEEE80211_KEY_FLAG_WMM_STA;
Johannes Berg11a843b2007-08-28 17:01:55 -0400348 }
349 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400350 }
351
Johannes Bergb16bd152008-04-11 21:40:35 +0200352 spin_lock_irqsave(&sdata->local->key_lock, flags);
Johannes Berg3b967662008-04-08 17:56:52 +0200353
Johannes Bergd4e46a32007-09-14 11:10:24 -0400354 if (sta)
Johannes Bergdb4d1162008-02-25 16:27:45 +0100355 old_key = sta->key;
Johannes Bergd4e46a32007-09-14 11:10:24 -0400356 else
Johannes Bergdb4d1162008-02-25 16:27:45 +0100357 old_key = sdata->keys[idx];
358
359 __ieee80211_key_replace(sdata, sta, old_key, key);
Johannes Bergd4e46a32007-09-14 11:10:24 -0400360
Johannes Bergb16bd152008-04-11 21:40:35 +0200361 spin_unlock_irqrestore(&sdata->local->key_lock, flags);
Johannes Bergd4e46a32007-09-14 11:10:24 -0400362
Johannes Berg3b967662008-04-08 17:56:52 +0200363 /* free old key later */
364 add_todo(old_key, KEY_FLAG_TODO_DELETE);
365
366 add_todo(key, KEY_FLAG_TODO_ADD_DEBUGFS);
Johannes Berge48618292008-02-27 13:39:00 +0100367 if (netif_running(sdata->dev))
Johannes Berg3a245762008-04-09 16:45:37 +0200368 add_todo(key, KEY_FLAG_TODO_HWACCEL_ADD);
369}
370
371static void __ieee80211_key_free(struct ieee80211_key *key)
372{
373 /*
374 * Replace key with nothingness if it was ever used.
375 */
376 if (key->sdata)
377 __ieee80211_key_replace(key->sdata, key->sta,
378 key, NULL);
379
380 add_todo(key, KEY_FLAG_TODO_DELETE);
Johannes Berg1f5a7e472007-07-27 15:43:23 +0200381}
382
Johannes Berg1f5a7e472007-07-27 15:43:23 +0200383void ieee80211_key_free(struct ieee80211_key *key)
384{
Johannes Berg3b967662008-04-08 17:56:52 +0200385 unsigned long flags;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100386
Johannes Berg8f371712007-08-28 17:01:54 -0400387 if (!key)
388 return;
389
Emmanuel Grumbach00eb7fe2008-06-26 12:13:46 +0300390 if (!key->sdata) {
391 /* The key has not been linked yet, simply free it
392 * and don't Oops */
393 if (key->conf.alg == ALG_CCMP)
394 ieee80211_aes_key_free(key->u.ccmp.tfm);
395 kfree(key);
396 return;
397 }
398
Johannes Bergb16bd152008-04-11 21:40:35 +0200399 spin_lock_irqsave(&key->sdata->local->key_lock, flags);
Johannes Berg3a245762008-04-09 16:45:37 +0200400 __ieee80211_key_free(key);
Johannes Bergb16bd152008-04-11 21:40:35 +0200401 spin_unlock_irqrestore(&key->sdata->local->key_lock, flags);
Johannes Berg3a245762008-04-09 16:45:37 +0200402}
Johannes Berg11a843b2007-08-28 17:01:55 -0400403
Johannes Berg3a245762008-04-09 16:45:37 +0200404/*
405 * To be safe against concurrent manipulations of the list (which shouldn't
406 * actually happen) we need to hold the spinlock. But under the spinlock we
407 * can't actually do much, so we defer processing to the todo list. Then run
408 * the todo list to be sure the operation and possibly previously pending
409 * operations are completed.
410 */
411static void ieee80211_todo_for_each_key(struct ieee80211_sub_if_data *sdata,
412 u32 todo_flags)
413{
414 struct ieee80211_key *key;
415 unsigned long flags;
416
417 might_sleep();
418
Johannes Bergb16bd152008-04-11 21:40:35 +0200419 spin_lock_irqsave(&sdata->local->key_lock, flags);
Johannes Berg3a245762008-04-09 16:45:37 +0200420 list_for_each_entry(key, &sdata->key_list, list)
421 add_todo(key, todo_flags);
Johannes Bergb16bd152008-04-11 21:40:35 +0200422 spin_unlock_irqrestore(&sdata->local->key_lock, flags);
Johannes Berg3a245762008-04-09 16:45:37 +0200423
424 ieee80211_key_todo();
Johannes Berg3b967662008-04-08 17:56:52 +0200425}
426
427void ieee80211_enable_keys(struct ieee80211_sub_if_data *sdata)
428{
Johannes Berg3a245762008-04-09 16:45:37 +0200429 ASSERT_RTNL();
Johannes Berg3b967662008-04-08 17:56:52 +0200430
431 if (WARN_ON(!netif_running(sdata->dev)))
432 return;
433
Johannes Berg3a245762008-04-09 16:45:37 +0200434 ieee80211_todo_for_each_key(sdata, KEY_FLAG_TODO_HWACCEL_ADD);
Johannes Berg3b967662008-04-08 17:56:52 +0200435}
436
437void ieee80211_disable_keys(struct ieee80211_sub_if_data *sdata)
438{
Johannes Berg3a245762008-04-09 16:45:37 +0200439 ASSERT_RTNL();
Johannes Berg3b967662008-04-08 17:56:52 +0200440
Johannes Berg3a245762008-04-09 16:45:37 +0200441 ieee80211_todo_for_each_key(sdata, KEY_FLAG_TODO_HWACCEL_REMOVE);
Johannes Berg3b967662008-04-08 17:56:52 +0200442}
443
Johannes Berg3a245762008-04-09 16:45:37 +0200444static void __ieee80211_key_destroy(struct ieee80211_key *key)
Johannes Berg3b967662008-04-08 17:56:52 +0200445{
446 if (!key)
447 return;
448
449 ieee80211_key_disable_hw_accel(key);
450
Johannes Berg8f371712007-08-28 17:01:54 -0400451 if (key->conf.alg == ALG_CCMP)
452 ieee80211_aes_key_free(key->u.ccmp.tfm);
453 ieee80211_debugfs_key_remove(key);
Johannes Berg11a843b2007-08-28 17:01:55 -0400454
Johannes Berg8f371712007-08-28 17:01:54 -0400455 kfree(key);
Johannes Berg1f5a7e472007-07-27 15:43:23 +0200456}
Johannes Berg11a843b2007-08-28 17:01:55 -0400457
Johannes Berg3b967662008-04-08 17:56:52 +0200458static void __ieee80211_key_todo(void)
Johannes Berg11a843b2007-08-28 17:01:55 -0400459{
Johannes Berg3b967662008-04-08 17:56:52 +0200460 struct ieee80211_key *key;
461 bool work_done;
462 u32 todoflags;
Johannes Berg11a843b2007-08-28 17:01:55 -0400463
Johannes Berg3b967662008-04-08 17:56:52 +0200464 /*
465 * NB: sta_info_destroy relies on this!
466 */
467 synchronize_rcu();
Johannes Berg11a843b2007-08-28 17:01:55 -0400468
Johannes Berg3b967662008-04-08 17:56:52 +0200469 spin_lock(&todo_lock);
470 while (!list_empty(&todo_list)) {
471 key = list_first_entry(&todo_list, struct ieee80211_key, todo);
472 list_del_init(&key->todo);
473 todoflags = key->flags & (KEY_FLAG_TODO_ADD_DEBUGFS |
474 KEY_FLAG_TODO_DEFKEY |
Johannes Berg3a245762008-04-09 16:45:37 +0200475 KEY_FLAG_TODO_HWACCEL_ADD |
476 KEY_FLAG_TODO_HWACCEL_REMOVE |
Johannes Berg3b967662008-04-08 17:56:52 +0200477 KEY_FLAG_TODO_DELETE);
478 key->flags &= ~todoflags;
479 spin_unlock(&todo_lock);
Johannes Berg11a843b2007-08-28 17:01:55 -0400480
Johannes Berg3b967662008-04-08 17:56:52 +0200481 work_done = false;
Johannes Berg11a843b2007-08-28 17:01:55 -0400482
Johannes Berg3b967662008-04-08 17:56:52 +0200483 if (todoflags & KEY_FLAG_TODO_ADD_DEBUGFS) {
484 ieee80211_debugfs_key_add(key);
485 work_done = true;
486 }
487 if (todoflags & KEY_FLAG_TODO_DEFKEY) {
488 ieee80211_debugfs_key_remove_default(key->sdata);
489 ieee80211_debugfs_key_add_default(key->sdata);
490 work_done = true;
491 }
Johannes Berg3a245762008-04-09 16:45:37 +0200492 if (todoflags & KEY_FLAG_TODO_HWACCEL_ADD) {
Johannes Berg3b967662008-04-08 17:56:52 +0200493 ieee80211_key_enable_hw_accel(key);
494 work_done = true;
495 }
Johannes Berg3a245762008-04-09 16:45:37 +0200496 if (todoflags & KEY_FLAG_TODO_HWACCEL_REMOVE) {
497 ieee80211_key_disable_hw_accel(key);
498 work_done = true;
499 }
Johannes Berg3b967662008-04-08 17:56:52 +0200500 if (todoflags & KEY_FLAG_TODO_DELETE) {
Johannes Berg3a245762008-04-09 16:45:37 +0200501 __ieee80211_key_destroy(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200502 work_done = true;
503 }
504
505 WARN_ON(!work_done);
506
507 spin_lock(&todo_lock);
Johannes Berg11a843b2007-08-28 17:01:55 -0400508 }
Johannes Berg3b967662008-04-08 17:56:52 +0200509 spin_unlock(&todo_lock);
510}
511
512void ieee80211_key_todo(void)
513{
514 ieee80211_key_lock();
515 __ieee80211_key_todo();
516 ieee80211_key_unlock();
Johannes Berg11a843b2007-08-28 17:01:55 -0400517}
518
519void ieee80211_free_keys(struct ieee80211_sub_if_data *sdata)
520{
521 struct ieee80211_key *key, *tmp;
Johannes Berg3a245762008-04-09 16:45:37 +0200522 unsigned long flags;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100523
Johannes Berg3b967662008-04-08 17:56:52 +0200524 ieee80211_key_lock();
525
526 ieee80211_debugfs_key_remove_default(sdata);
Johannes Berg11a843b2007-08-28 17:01:55 -0400527
Johannes Bergb16bd152008-04-11 21:40:35 +0200528 spin_lock_irqsave(&sdata->local->key_lock, flags);
Johannes Berg11a843b2007-08-28 17:01:55 -0400529 list_for_each_entry_safe(key, tmp, &sdata->key_list, list)
Johannes Berg3a245762008-04-09 16:45:37 +0200530 __ieee80211_key_free(key);
Johannes Bergb16bd152008-04-11 21:40:35 +0200531 spin_unlock_irqrestore(&sdata->local->key_lock, flags);
Johannes Berg11a843b2007-08-28 17:01:55 -0400532
Johannes Berg3b967662008-04-08 17:56:52 +0200533 __ieee80211_key_todo();
Johannes Berg11a843b2007-08-28 17:01:55 -0400534
Johannes Berg3b967662008-04-08 17:56:52 +0200535 ieee80211_key_unlock();
Johannes Berg11a843b2007-08-28 17:01:55 -0400536}