blob: b98711dcdc54ec5cef69036862902f9087a0ae1b [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>
Johannes Berg1f5a7e42007-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;
77 /* only add if not already added */
78 if (list_empty(&key->todo))
79 list_add(&key->todo, &todo_list);
80 schedule_work(&todo_work);
81 spin_unlock(&todo_lock);
82}
83
84/**
85 * ieee80211_key_lock - lock the mac80211 key operation lock
86 *
87 * This locks the (global) mac80211 key operation lock, all
88 * key operations must be done under this lock.
89 */
90static void ieee80211_key_lock(void)
91{
92 mutex_lock(&key_mutex);
93}
94
95/**
96 * ieee80211_key_unlock - unlock the mac80211 key operation lock
97 */
98static void ieee80211_key_unlock(void)
99{
100 mutex_unlock(&key_mutex);
101}
102
103static void assert_key_lock(void)
104{
105 WARN_ON(!mutex_is_locked(&key_mutex));
106}
107
Johannes Berg11a843b2007-08-28 17:01:55 -0400108static const u8 *get_mac_for_key(struct ieee80211_key *key)
109{
110 const u8 *addr = bcast_addr;
111
112 /*
113 * If we're an AP we won't ever receive frames with a non-WEP
114 * group key so we tell the driver that by using the zero MAC
115 * address to indicate a transmit-only key.
116 */
117 if (key->conf.alg != ALG_WEP &&
Johannes Berg51fb61e2007-12-19 01:31:27 +0100118 (key->sdata->vif.type == IEEE80211_IF_TYPE_AP ||
119 key->sdata->vif.type == IEEE80211_IF_TYPE_VLAN))
Johannes Berg11a843b2007-08-28 17:01:55 -0400120 addr = zero_addr;
121
122 if (key->sta)
123 addr = key->sta->addr;
124
125 return addr;
126}
127
128static void ieee80211_key_enable_hw_accel(struct ieee80211_key *key)
129{
130 const u8 *addr;
131 int ret;
Joe Perches0795af52007-10-03 17:59:30 -0700132 DECLARE_MAC_BUF(mac);
Johannes Berg11a843b2007-08-28 17:01:55 -0400133
Johannes Berg3b967662008-04-08 17:56:52 +0200134 assert_key_lock();
135 might_sleep();
136
Johannes Berg11a843b2007-08-28 17:01:55 -0400137 if (!key->local->ops->set_key)
138 return;
139
140 addr = get_mac_for_key(key);
141
142 ret = key->local->ops->set_key(local_to_hw(key->local), SET_KEY,
143 key->sdata->dev->dev_addr, addr,
144 &key->conf);
145
Johannes Berg3b967662008-04-08 17:56:52 +0200146 if (!ret) {
147 spin_lock(&todo_lock);
Johannes Berg11a843b2007-08-28 17:01:55 -0400148 key->flags |= KEY_FLAG_UPLOADED_TO_HARDWARE;
Johannes Berg3b967662008-04-08 17:56:52 +0200149 spin_unlock(&todo_lock);
150 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400151
152 if (ret && ret != -ENOSPC && ret != -EOPNOTSUPP)
153 printk(KERN_ERR "mac80211-%s: failed to set key "
Joe Perches0795af52007-10-03 17:59:30 -0700154 "(%d, %s) to hardware (%d)\n",
Johannes Berg11a843b2007-08-28 17:01:55 -0400155 wiphy_name(key->local->hw.wiphy),
Joe Perches0795af52007-10-03 17:59:30 -0700156 key->conf.keyidx, print_mac(mac, addr), ret);
Johannes Berg11a843b2007-08-28 17:01:55 -0400157}
158
159static void ieee80211_key_disable_hw_accel(struct ieee80211_key *key)
160{
161 const u8 *addr;
162 int ret;
Joe Perches0795af52007-10-03 17:59:30 -0700163 DECLARE_MAC_BUF(mac);
Johannes Berg11a843b2007-08-28 17:01:55 -0400164
Johannes Berg3b967662008-04-08 17:56:52 +0200165 assert_key_lock();
166 might_sleep();
167
Johannes Bergdb4d1162008-02-25 16:27:45 +0100168 if (!key || !key->local->ops->set_key)
Johannes Berg11a843b2007-08-28 17:01:55 -0400169 return;
170
Johannes Berg3b967662008-04-08 17:56:52 +0200171 spin_lock(&todo_lock);
172 if (!(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)) {
173 spin_unlock(&todo_lock);
Johannes Berg11a843b2007-08-28 17:01:55 -0400174 return;
Johannes Berg3b967662008-04-08 17:56:52 +0200175 }
176 spin_unlock(&todo_lock);
Johannes Berg11a843b2007-08-28 17:01:55 -0400177
178 addr = get_mac_for_key(key);
179
180 ret = key->local->ops->set_key(local_to_hw(key->local), DISABLE_KEY,
181 key->sdata->dev->dev_addr, addr,
182 &key->conf);
183
184 if (ret)
185 printk(KERN_ERR "mac80211-%s: failed to remove key "
Joe Perches0795af52007-10-03 17:59:30 -0700186 "(%d, %s) from hardware (%d)\n",
Johannes Berg11a843b2007-08-28 17:01:55 -0400187 wiphy_name(key->local->hw.wiphy),
Joe Perches0795af52007-10-03 17:59:30 -0700188 key->conf.keyidx, print_mac(mac, addr), ret);
Johannes Berg11a843b2007-08-28 17:01:55 -0400189
Johannes Berg3b967662008-04-08 17:56:52 +0200190 spin_lock(&todo_lock);
191 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
192 spin_unlock(&todo_lock);
193}
194
195static void __ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata,
196 int idx)
197{
198 struct ieee80211_key *key = NULL;
199
200 if (idx >= 0 && idx < NUM_DEFAULT_KEYS)
201 key = sdata->keys[idx];
202
203 rcu_assign_pointer(sdata->default_key, key);
204
205 if (key)
206 add_todo(key, KEY_FLAG_TODO_DEFKEY);
207}
208
209void ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata, int idx)
210{
211 unsigned long flags;
212
Johannes Bergb16bd152008-04-11 21:40:35 +0200213 spin_lock_irqsave(&sdata->local->key_lock, flags);
Johannes Berg3b967662008-04-08 17:56:52 +0200214 __ieee80211_set_default_key(sdata, idx);
Johannes Bergb16bd152008-04-11 21:40:35 +0200215 spin_unlock_irqrestore(&sdata->local->key_lock, flags);
Johannes Berg3b967662008-04-08 17:56:52 +0200216}
217
218
219static void __ieee80211_key_replace(struct ieee80211_sub_if_data *sdata,
220 struct sta_info *sta,
221 struct ieee80211_key *old,
222 struct ieee80211_key *new)
223{
224 int idx, defkey;
225
226 if (new)
227 list_add(&new->list, &sdata->key_list);
228
229 if (sta) {
230 rcu_assign_pointer(sta->key, new);
231 } else {
232 WARN_ON(new && old && new->conf.keyidx != old->conf.keyidx);
233
234 if (old)
235 idx = old->conf.keyidx;
236 else
237 idx = new->conf.keyidx;
238
239 defkey = old && sdata->default_key == old;
240
241 if (defkey && !new)
242 __ieee80211_set_default_key(sdata, -1);
243
244 rcu_assign_pointer(sdata->keys[idx], new);
245 if (defkey && new)
246 __ieee80211_set_default_key(sdata, new->conf.keyidx);
247 }
248
249 if (old) {
250 /*
251 * We'll use an empty list to indicate that the key
252 * has already been removed.
253 */
254 list_del_init(&old->list);
255 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400256}
257
Johannes Bergdb4d1162008-02-25 16:27:45 +0100258struct ieee80211_key *ieee80211_key_alloc(enum ieee80211_key_alg alg,
Johannes Berg11a843b2007-08-28 17:01:55 -0400259 int idx,
260 size_t key_len,
261 const u8 *key_data)
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200262{
263 struct ieee80211_key *key;
264
Johannes Bergd4e46a32007-09-14 11:10:24 -0400265 BUG_ON(idx < 0 || idx >= NUM_DEFAULT_KEYS);
Johannes Berg11a843b2007-08-28 17:01:55 -0400266
267 key = kzalloc(sizeof(struct ieee80211_key) + key_len, GFP_KERNEL);
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200268 if (!key)
269 return NULL;
Johannes Berg11a843b2007-08-28 17:01:55 -0400270
271 /*
272 * Default to software encryption; we'll later upload the
273 * key to the hardware if possible.
274 */
Johannes Berg11a843b2007-08-28 17:01:55 -0400275 key->conf.flags = 0;
276 key->flags = 0;
277
278 key->conf.alg = alg;
279 key->conf.keyidx = idx;
280 key->conf.keylen = key_len;
281 memcpy(key->conf.key, key_data, key_len);
Johannes Berge48618292008-02-27 13:39:00 +0100282 INIT_LIST_HEAD(&key->list);
Johannes Berg3b967662008-04-08 17:56:52 +0200283 INIT_LIST_HEAD(&key->todo);
Johannes Berg11a843b2007-08-28 17:01:55 -0400284
Johannes Berg11a843b2007-08-28 17:01:55 -0400285 if (alg == ALG_CCMP) {
286 /*
287 * Initialize AES key state here as an optimization so that
288 * it does not need to be initialized for every packet.
289 */
290 key->u.ccmp.tfm = ieee80211_aes_key_setup_encrypt(key_data);
291 if (!key->u.ccmp.tfm) {
Johannes Berg3b967662008-04-08 17:56:52 +0200292 kfree(key);
Johannes Berg11a843b2007-08-28 17:01:55 -0400293 return NULL;
294 }
295 }
296
Johannes Bergdb4d1162008-02-25 16:27:45 +0100297 return key;
298}
Johannes Berg11a843b2007-08-28 17:01:55 -0400299
Johannes Bergdb4d1162008-02-25 16:27:45 +0100300void ieee80211_key_link(struct ieee80211_key *key,
301 struct ieee80211_sub_if_data *sdata,
302 struct sta_info *sta)
303{
304 struct ieee80211_key *old_key;
Johannes Berg3b967662008-04-08 17:56:52 +0200305 unsigned long flags;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100306 int idx;
307
Johannes Bergdb4d1162008-02-25 16:27:45 +0100308 BUG_ON(!sdata);
309 BUG_ON(!key);
310
311 idx = key->conf.keyidx;
312 key->local = sdata->local;
313 key->sdata = sdata;
314 key->sta = sta;
315
Johannes Berg11a843b2007-08-28 17:01:55 -0400316 if (sta) {
Johannes Berg11a843b2007-08-28 17:01:55 -0400317 /*
318 * some hardware cannot handle TKIP with QoS, so
319 * we indicate whether QoS could be in use.
320 */
321 if (sta->flags & WLAN_STA_WME)
322 key->conf.flags |= IEEE80211_KEY_FLAG_WMM_STA;
323 } else {
Johannes Berg51fb61e2007-12-19 01:31:27 +0100324 if (sdata->vif.type == IEEE80211_IF_TYPE_STA) {
Johannes Berg11a843b2007-08-28 17:01:55 -0400325 struct sta_info *ap;
326
Johannes Berg3b967662008-04-08 17:56:52 +0200327 /*
328 * We're getting a sta pointer in,
329 * so must be under RCU read lock.
330 */
Johannes Bergd0709a62008-02-25 16:27:46 +0100331
Johannes Berg11a843b2007-08-28 17:01:55 -0400332 /* same here, the AP could be using QoS */
333 ap = sta_info_get(key->local, key->sdata->u.sta.bssid);
334 if (ap) {
335 if (ap->flags & WLAN_STA_WME)
336 key->conf.flags |=
337 IEEE80211_KEY_FLAG_WMM_STA;
Johannes Berg11a843b2007-08-28 17:01:55 -0400338 }
339 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400340 }
341
Johannes Bergb16bd152008-04-11 21:40:35 +0200342 spin_lock_irqsave(&sdata->local->key_lock, flags);
Johannes Berg3b967662008-04-08 17:56:52 +0200343
Johannes Bergd4e46a32007-09-14 11:10:24 -0400344 if (sta)
Johannes Bergdb4d1162008-02-25 16:27:45 +0100345 old_key = sta->key;
Johannes Bergd4e46a32007-09-14 11:10:24 -0400346 else
Johannes Bergdb4d1162008-02-25 16:27:45 +0100347 old_key = sdata->keys[idx];
348
349 __ieee80211_key_replace(sdata, sta, old_key, key);
Johannes Bergd4e46a32007-09-14 11:10:24 -0400350
Johannes Bergb16bd152008-04-11 21:40:35 +0200351 spin_unlock_irqrestore(&sdata->local->key_lock, flags);
Johannes Bergd4e46a32007-09-14 11:10:24 -0400352
Johannes Berg3b967662008-04-08 17:56:52 +0200353 /* free old key later */
354 add_todo(old_key, KEY_FLAG_TODO_DELETE);
355
356 add_todo(key, KEY_FLAG_TODO_ADD_DEBUGFS);
Johannes Berge48618292008-02-27 13:39:00 +0100357 if (netif_running(sdata->dev))
Johannes Berg3a245762008-04-09 16:45:37 +0200358 add_todo(key, KEY_FLAG_TODO_HWACCEL_ADD);
359}
360
361static void __ieee80211_key_free(struct ieee80211_key *key)
362{
363 /*
364 * Replace key with nothingness if it was ever used.
365 */
366 if (key->sdata)
367 __ieee80211_key_replace(key->sdata, key->sta,
368 key, NULL);
369
370 add_todo(key, KEY_FLAG_TODO_DELETE);
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200371}
372
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200373void ieee80211_key_free(struct ieee80211_key *key)
374{
Johannes Berg3b967662008-04-08 17:56:52 +0200375 unsigned long flags;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100376
Johannes Berg8f371712007-08-28 17:01:54 -0400377 if (!key)
378 return;
379
Johannes Bergb16bd152008-04-11 21:40:35 +0200380 spin_lock_irqsave(&key->sdata->local->key_lock, flags);
Johannes Berg3a245762008-04-09 16:45:37 +0200381 __ieee80211_key_free(key);
Johannes Bergb16bd152008-04-11 21:40:35 +0200382 spin_unlock_irqrestore(&key->sdata->local->key_lock, flags);
Johannes Berg3a245762008-04-09 16:45:37 +0200383}
Johannes Berg11a843b2007-08-28 17:01:55 -0400384
Johannes Berg3a245762008-04-09 16:45:37 +0200385/*
386 * To be safe against concurrent manipulations of the list (which shouldn't
387 * actually happen) we need to hold the spinlock. But under the spinlock we
388 * can't actually do much, so we defer processing to the todo list. Then run
389 * the todo list to be sure the operation and possibly previously pending
390 * operations are completed.
391 */
392static void ieee80211_todo_for_each_key(struct ieee80211_sub_if_data *sdata,
393 u32 todo_flags)
394{
395 struct ieee80211_key *key;
396 unsigned long flags;
397
398 might_sleep();
399
Johannes Bergb16bd152008-04-11 21:40:35 +0200400 spin_lock_irqsave(&sdata->local->key_lock, flags);
Johannes Berg3a245762008-04-09 16:45:37 +0200401 list_for_each_entry(key, &sdata->key_list, list)
402 add_todo(key, todo_flags);
Johannes Bergb16bd152008-04-11 21:40:35 +0200403 spin_unlock_irqrestore(&sdata->local->key_lock, flags);
Johannes Berg3a245762008-04-09 16:45:37 +0200404
405 ieee80211_key_todo();
Johannes Berg3b967662008-04-08 17:56:52 +0200406}
407
408void ieee80211_enable_keys(struct ieee80211_sub_if_data *sdata)
409{
Johannes Berg3a245762008-04-09 16:45:37 +0200410 ASSERT_RTNL();
Johannes Berg3b967662008-04-08 17:56:52 +0200411
412 if (WARN_ON(!netif_running(sdata->dev)))
413 return;
414
Johannes Berg3a245762008-04-09 16:45:37 +0200415 ieee80211_todo_for_each_key(sdata, KEY_FLAG_TODO_HWACCEL_ADD);
Johannes Berg3b967662008-04-08 17:56:52 +0200416}
417
418void ieee80211_disable_keys(struct ieee80211_sub_if_data *sdata)
419{
Johannes Berg3a245762008-04-09 16:45:37 +0200420 ASSERT_RTNL();
Johannes Berg3b967662008-04-08 17:56:52 +0200421
Johannes Berg3a245762008-04-09 16:45:37 +0200422 ieee80211_todo_for_each_key(sdata, KEY_FLAG_TODO_HWACCEL_REMOVE);
Johannes Berg3b967662008-04-08 17:56:52 +0200423}
424
Johannes Berg3a245762008-04-09 16:45:37 +0200425static void __ieee80211_key_destroy(struct ieee80211_key *key)
Johannes Berg3b967662008-04-08 17:56:52 +0200426{
427 if (!key)
428 return;
429
430 ieee80211_key_disable_hw_accel(key);
431
Johannes Berg8f371712007-08-28 17:01:54 -0400432 if (key->conf.alg == ALG_CCMP)
433 ieee80211_aes_key_free(key->u.ccmp.tfm);
434 ieee80211_debugfs_key_remove(key);
Johannes Berg11a843b2007-08-28 17:01:55 -0400435
Johannes Berg8f371712007-08-28 17:01:54 -0400436 kfree(key);
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200437}
Johannes Berg11a843b2007-08-28 17:01:55 -0400438
Johannes Berg3b967662008-04-08 17:56:52 +0200439static void __ieee80211_key_todo(void)
Johannes Berg11a843b2007-08-28 17:01:55 -0400440{
Johannes Berg3b967662008-04-08 17:56:52 +0200441 struct ieee80211_key *key;
442 bool work_done;
443 u32 todoflags;
Johannes Berg11a843b2007-08-28 17:01:55 -0400444
Johannes Berg3b967662008-04-08 17:56:52 +0200445 /*
446 * NB: sta_info_destroy relies on this!
447 */
448 synchronize_rcu();
Johannes Berg11a843b2007-08-28 17:01:55 -0400449
Johannes Berg3b967662008-04-08 17:56:52 +0200450 spin_lock(&todo_lock);
451 while (!list_empty(&todo_list)) {
452 key = list_first_entry(&todo_list, struct ieee80211_key, todo);
453 list_del_init(&key->todo);
454 todoflags = key->flags & (KEY_FLAG_TODO_ADD_DEBUGFS |
455 KEY_FLAG_TODO_DEFKEY |
Johannes Berg3a245762008-04-09 16:45:37 +0200456 KEY_FLAG_TODO_HWACCEL_ADD |
457 KEY_FLAG_TODO_HWACCEL_REMOVE |
Johannes Berg3b967662008-04-08 17:56:52 +0200458 KEY_FLAG_TODO_DELETE);
459 key->flags &= ~todoflags;
460 spin_unlock(&todo_lock);
Johannes Berg11a843b2007-08-28 17:01:55 -0400461
Johannes Berg3b967662008-04-08 17:56:52 +0200462 work_done = false;
Johannes Berg11a843b2007-08-28 17:01:55 -0400463
Johannes Berg3b967662008-04-08 17:56:52 +0200464 if (todoflags & KEY_FLAG_TODO_ADD_DEBUGFS) {
465 ieee80211_debugfs_key_add(key);
466 work_done = true;
467 }
468 if (todoflags & KEY_FLAG_TODO_DEFKEY) {
469 ieee80211_debugfs_key_remove_default(key->sdata);
470 ieee80211_debugfs_key_add_default(key->sdata);
471 work_done = true;
472 }
Johannes Berg3a245762008-04-09 16:45:37 +0200473 if (todoflags & KEY_FLAG_TODO_HWACCEL_ADD) {
Johannes Berg3b967662008-04-08 17:56:52 +0200474 ieee80211_key_enable_hw_accel(key);
475 work_done = true;
476 }
Johannes Berg3a245762008-04-09 16:45:37 +0200477 if (todoflags & KEY_FLAG_TODO_HWACCEL_REMOVE) {
478 ieee80211_key_disable_hw_accel(key);
479 work_done = true;
480 }
Johannes Berg3b967662008-04-08 17:56:52 +0200481 if (todoflags & KEY_FLAG_TODO_DELETE) {
Johannes Berg3a245762008-04-09 16:45:37 +0200482 __ieee80211_key_destroy(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200483 work_done = true;
484 }
485
486 WARN_ON(!work_done);
487
488 spin_lock(&todo_lock);
Johannes Berg11a843b2007-08-28 17:01:55 -0400489 }
Johannes Berg3b967662008-04-08 17:56:52 +0200490 spin_unlock(&todo_lock);
491}
492
493void ieee80211_key_todo(void)
494{
495 ieee80211_key_lock();
496 __ieee80211_key_todo();
497 ieee80211_key_unlock();
Johannes Berg11a843b2007-08-28 17:01:55 -0400498}
499
500void ieee80211_free_keys(struct ieee80211_sub_if_data *sdata)
501{
502 struct ieee80211_key *key, *tmp;
Johannes Berg3a245762008-04-09 16:45:37 +0200503 unsigned long flags;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100504
Johannes Berg3b967662008-04-08 17:56:52 +0200505 ieee80211_key_lock();
506
507 ieee80211_debugfs_key_remove_default(sdata);
Johannes Berg11a843b2007-08-28 17:01:55 -0400508
Johannes Bergb16bd152008-04-11 21:40:35 +0200509 spin_lock_irqsave(&sdata->local->key_lock, flags);
Johannes Berg11a843b2007-08-28 17:01:55 -0400510 list_for_each_entry_safe(key, tmp, &sdata->key_list, list)
Johannes Berg3a245762008-04-09 16:45:37 +0200511 __ieee80211_key_free(key);
Johannes Bergb16bd152008-04-11 21:40:35 +0200512 spin_unlock_irqrestore(&sdata->local->key_lock, flags);
Johannes Berg11a843b2007-08-28 17:01:55 -0400513
Johannes Berg3b967662008-04-08 17:56:52 +0200514 __ieee80211_key_todo();
Johannes Berg11a843b2007-08-28 17:01:55 -0400515
Johannes Berg3b967662008-04-08 17:56:52 +0200516 ieee80211_key_unlock();
Johannes Berg11a843b2007-08-28 17:01:55 -0400517}