]>
Commit | Line | Data |
---|---|---|
1f5a7e47 JB |
1 | /* |
2 | * Copyright 2002-2005, Instant802 Networks, Inc. | |
3 | * Copyright 2005-2006, Devicescape Software, Inc. | |
4 | * Copyright 2006-2007 Jiri Benc <[email protected]> | |
3b96766f | 5 | * Copyright 2007-2008 Johannes Berg <[email protected]> |
1f5a7e47 JB |
6 | * |
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 | ||
11a843b7 JB |
12 | #include <linux/if_ether.h> |
13 | #include <linux/etherdevice.h> | |
14 | #include <linux/list.h> | |
d4e46a3d | 15 | #include <linux/rcupdate.h> |
db4d1169 | 16 | #include <linux/rtnetlink.h> |
5a0e3ad6 | 17 | #include <linux/slab.h> |
1f5a7e47 JB |
18 | #include <net/mac80211.h> |
19 | #include "ieee80211_i.h" | |
24487981 | 20 | #include "driver-ops.h" |
1f5a7e47 JB |
21 | #include "debugfs_key.h" |
22 | #include "aes_ccm.h" | |
3cfcf6ac | 23 | #include "aes_cmac.h" |
1f5a7e47 | 24 | |
11a843b7 | 25 | |
dbbea671 JB |
26 | /** |
27 | * DOC: Key handling basics | |
11a843b7 JB |
28 | * |
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 | * | |
ad0e2b5a | 39 | * All key operations are protected internally. |
db4d1169 | 40 | * |
3b96766f JB |
41 | * 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 | |
ad0e2b5a JB |
44 | * functions. This means that sta_info_destroy() must remove the key |
45 | * which waits for an RCU grace period. | |
11a843b7 JB |
46 | */ |
47 | ||
48 | static const u8 bcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }; | |
11a843b7 | 49 | |
ad0e2b5a | 50 | static void assert_key_lock(struct ieee80211_local *local) |
3b96766f | 51 | { |
ad0e2b5a | 52 | WARN_ON(!mutex_is_locked(&local->key_mtx)); |
3b96766f JB |
53 | } |
54 | ||
dc822b5d | 55 | static struct ieee80211_sta *get_sta_for_key(struct ieee80211_key *key) |
11a843b7 | 56 | { |
11a843b7 | 57 | if (key->sta) |
dc822b5d | 58 | return &key->sta->sta; |
11a843b7 | 59 | |
dc822b5d | 60 | return NULL; |
11a843b7 JB |
61 | } |
62 | ||
3ffc2a90 | 63 | static int ieee80211_key_enable_hw_accel(struct ieee80211_key *key) |
11a843b7 | 64 | { |
dc822b5d JB |
65 | struct ieee80211_sub_if_data *sdata; |
66 | struct ieee80211_sta *sta; | |
11a843b7 JB |
67 | int ret; |
68 | ||
3b96766f JB |
69 | might_sleep(); |
70 | ||
3ffc2a90 JB |
71 | if (!key->local->ops->set_key) { |
72 | ret = -EOPNOTSUPP; | |
73 | goto out_unsupported; | |
74 | } | |
11a843b7 | 75 | |
ad0e2b5a JB |
76 | assert_key_lock(key->local); |
77 | ||
dc822b5d JB |
78 | 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); | |
11a843b7 | 85 | |
12375ef9 | 86 | ret = drv_set_key(key->local, SET_KEY, sdata, sta, &key->conf); |
11a843b7 | 87 | |
ad0e2b5a | 88 | if (!ret) |
11a843b7 JB |
89 | key->flags |= KEY_FLAG_UPLOADED_TO_HARDWARE; |
90 | ||
91 | if (ret && ret != -ENOSPC && ret != -EOPNOTSUPP) | |
0fb9a9ec JP |
92 | 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); | |
3ffc2a90 JB |
95 | |
96 | out_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; | |
11a843b7 JB |
113 | } |
114 | ||
115 | static void ieee80211_key_disable_hw_accel(struct ieee80211_key *key) | |
116 | { | |
dc822b5d JB |
117 | struct ieee80211_sub_if_data *sdata; |
118 | struct ieee80211_sta *sta; | |
11a843b7 JB |
119 | int ret; |
120 | ||
3b96766f JB |
121 | might_sleep(); |
122 | ||
db4d1169 | 123 | if (!key || !key->local->ops->set_key) |
11a843b7 JB |
124 | return; |
125 | ||
ad0e2b5a JB |
126 | assert_key_lock(key->local); |
127 | ||
128 | if (!(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)) | |
11a843b7 JB |
129 | return; |
130 | ||
dc822b5d JB |
131 | 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); | |
11a843b7 | 138 | |
12375ef9 | 139 | ret = drv_set_key(key->local, DISABLE_KEY, sdata, |
24487981 | 140 | sta, &key->conf); |
11a843b7 JB |
141 | |
142 | if (ret) | |
0fb9a9ec JP |
143 | 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); | |
11a843b7 | 146 | |
3b96766f | 147 | key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE; |
3b96766f JB |
148 | } |
149 | ||
150 | static void __ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata, | |
151 | int idx) | |
152 | { | |
153 | struct ieee80211_key *key = NULL; | |
154 | ||
ad0e2b5a JB |
155 | assert_key_lock(sdata->local); |
156 | ||
3b96766f JB |
157 | if (idx >= 0 && idx < NUM_DEFAULT_KEYS) |
158 | key = sdata->keys[idx]; | |
159 | ||
160 | rcu_assign_pointer(sdata->default_key, key); | |
161 | ||
ad0e2b5a JB |
162 | if (key) { |
163 | ieee80211_debugfs_key_remove_default(key->sdata); | |
164 | ieee80211_debugfs_key_add_default(key->sdata); | |
165 | } | |
3b96766f JB |
166 | } |
167 | ||
168 | void ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata, int idx) | |
169 | { | |
ad0e2b5a | 170 | mutex_lock(&sdata->local->key_mtx); |
3b96766f | 171 | __ieee80211_set_default_key(sdata, idx); |
ad0e2b5a | 172 | mutex_unlock(&sdata->local->key_mtx); |
3b96766f JB |
173 | } |
174 | ||
3cfcf6ac JM |
175 | static void |
176 | __ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata, int idx) | |
177 | { | |
178 | struct ieee80211_key *key = NULL; | |
179 | ||
ad0e2b5a JB |
180 | assert_key_lock(sdata->local); |
181 | ||
3cfcf6ac JM |
182 | 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 | ||
ad0e2b5a JB |
188 | if (key) { |
189 | ieee80211_debugfs_key_remove_mgmt_default(key->sdata); | |
190 | ieee80211_debugfs_key_add_mgmt_default(key->sdata); | |
191 | } | |
3cfcf6ac JM |
192 | } |
193 | ||
194 | void ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata, | |
195 | int idx) | |
196 | { | |
ad0e2b5a | 197 | mutex_lock(&sdata->local->key_mtx); |
3cfcf6ac | 198 | __ieee80211_set_default_mgmt_key(sdata, idx); |
ad0e2b5a | 199 | mutex_unlock(&sdata->local->key_mtx); |
3cfcf6ac JM |
200 | } |
201 | ||
3b96766f JB |
202 | |
203 | static 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 | { | |
3cfcf6ac | 208 | int idx, defkey, defmgmtkey; |
3b96766f JB |
209 | |
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; | |
3cfcf6ac | 224 | defmgmtkey = old && sdata->default_mgmt_key == old; |
3b96766f JB |
225 | |
226 | if (defkey && !new) | |
227 | __ieee80211_set_default_key(sdata, -1); | |
3cfcf6ac JM |
228 | if (defmgmtkey && !new) |
229 | __ieee80211_set_default_mgmt_key(sdata, -1); | |
3b96766f JB |
230 | |
231 | rcu_assign_pointer(sdata->keys[idx], new); | |
232 | if (defkey && new) | |
233 | __ieee80211_set_default_key(sdata, new->conf.keyidx); | |
3cfcf6ac JM |
234 | if (defmgmtkey && new) |
235 | __ieee80211_set_default_mgmt_key(sdata, | |
236 | new->conf.keyidx); | |
3b96766f JB |
237 | } |
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 | } | |
11a843b7 JB |
246 | } |
247 | ||
97359d12 | 248 | struct ieee80211_key *ieee80211_key_alloc(u32 cipher, int idx, size_t key_len, |
faa8fdc8 JM |
249 | const u8 *key_data, |
250 | size_t seq_len, const u8 *seq) | |
1f5a7e47 JB |
251 | { |
252 | struct ieee80211_key *key; | |
1ac62ba7 | 253 | int i, j, err; |
1f5a7e47 | 254 | |
3cfcf6ac | 255 | BUG_ON(idx < 0 || idx >= NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS); |
11a843b7 JB |
256 | |
257 | key = kzalloc(sizeof(struct ieee80211_key) + key_len, GFP_KERNEL); | |
1f5a7e47 | 258 | if (!key) |
1ac62ba7 | 259 | return ERR_PTR(-ENOMEM); |
11a843b7 JB |
260 | |
261 | /* | |
262 | * Default to software encryption; we'll later upload the | |
263 | * key to the hardware if possible. | |
264 | */ | |
11a843b7 JB |
265 | key->conf.flags = 0; |
266 | key->flags = 0; | |
267 | ||
97359d12 | 268 | key->conf.cipher = cipher; |
11a843b7 JB |
269 | key->conf.keyidx = idx; |
270 | key->conf.keylen = key_len; | |
97359d12 JB |
271 | switch (cipher) { |
272 | case WLAN_CIPHER_SUITE_WEP40: | |
273 | case WLAN_CIPHER_SUITE_WEP104: | |
76708dee FF |
274 | key->conf.iv_len = WEP_IV_LEN; |
275 | key->conf.icv_len = WEP_ICV_LEN; | |
276 | break; | |
97359d12 | 277 | case WLAN_CIPHER_SUITE_TKIP: |
76708dee FF |
278 | key->conf.iv_len = TKIP_IV_LEN; |
279 | key->conf.icv_len = TKIP_ICV_LEN; | |
9f26a952 | 280 | if (seq) { |
faa8fdc8 JM |
281 | 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 | } | |
76708dee | 288 | break; |
97359d12 | 289 | case WLAN_CIPHER_SUITE_CCMP: |
76708dee FF |
290 | key->conf.iv_len = CCMP_HDR_LEN; |
291 | key->conf.icv_len = CCMP_MIC_LEN; | |
9f26a952 | 292 | if (seq) { |
9190252c | 293 | for (i = 0; i < NUM_RX_DATA_QUEUES + 1; i++) |
faa8fdc8 JM |
294 | for (j = 0; j < CCMP_PN_LEN; j++) |
295 | key->u.ccmp.rx_pn[i][j] = | |
296 | seq[CCMP_PN_LEN - j - 1]; | |
297 | } | |
11a843b7 JB |
298 | /* |
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); | |
1ac62ba7 BH |
303 | if (IS_ERR(key->u.ccmp.tfm)) { |
304 | err = PTR_ERR(key->u.ccmp.tfm); | |
3b96766f | 305 | kfree(key); |
1ac62ba7 | 306 | key = ERR_PTR(err); |
11a843b7 | 307 | } |
60ae0f20 JB |
308 | 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]; | |
3cfcf6ac JM |
315 | /* |
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); | |
1ac62ba7 BH |
321 | if (IS_ERR(key->u.aes_cmac.tfm)) { |
322 | err = PTR_ERR(key->u.aes_cmac.tfm); | |
3cfcf6ac | 323 | kfree(key); |
1ac62ba7 | 324 | key = ERR_PTR(err); |
3cfcf6ac | 325 | } |
60ae0f20 | 326 | break; |
3cfcf6ac | 327 | } |
60ae0f20 JB |
328 | memcpy(key->conf.key, key_data, key_len); |
329 | INIT_LIST_HEAD(&key->list); | |
3cfcf6ac | 330 | |
db4d1169 JB |
331 | return key; |
332 | } | |
11a843b7 | 333 | |
ad0e2b5a JB |
334 | static void __ieee80211_key_destroy(struct ieee80211_key *key) |
335 | { | |
336 | if (!key) | |
337 | return; | |
338 | ||
32162a4d JM |
339 | if (key->local) |
340 | ieee80211_key_disable_hw_accel(key); | |
ad0e2b5a | 341 | |
97359d12 | 342 | if (key->conf.cipher == WLAN_CIPHER_SUITE_CCMP) |
ad0e2b5a | 343 | ieee80211_aes_key_free(key->u.ccmp.tfm); |
97359d12 | 344 | if (key->conf.cipher == WLAN_CIPHER_SUITE_AES_CMAC) |
ad0e2b5a | 345 | ieee80211_aes_cmac_key_free(key->u.aes_cmac.tfm); |
32162a4d JM |
346 | if (key->local) |
347 | ieee80211_debugfs_key_remove(key); | |
ad0e2b5a JB |
348 | |
349 | kfree(key); | |
350 | } | |
351 | ||
3ffc2a90 JB |
352 | int ieee80211_key_link(struct ieee80211_key *key, |
353 | struct ieee80211_sub_if_data *sdata, | |
354 | struct sta_info *sta) | |
db4d1169 JB |
355 | { |
356 | struct ieee80211_key *old_key; | |
3ffc2a90 | 357 | int idx, ret; |
db4d1169 | 358 | |
db4d1169 JB |
359 | 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 | ||
11a843b7 | 367 | if (sta) { |
11a843b7 JB |
368 | /* |
369 | * some hardware cannot handle TKIP with QoS, so | |
370 | * we indicate whether QoS could be in use. | |
371 | */ | |
07346f81 | 372 | if (test_sta_flags(sta, WLAN_STA_WME)) |
11a843b7 | 373 | key->conf.flags |= IEEE80211_KEY_FLAG_WMM_STA; |
c6adbd21 ID |
374 | |
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; | |
11a843b7 | 381 | } else { |
05c914fe | 382 | if (sdata->vif.type == NL80211_IFTYPE_STATION) { |
11a843b7 JB |
383 | struct sta_info *ap; |
384 | ||
3b96766f JB |
385 | /* |
386 | * We're getting a sta pointer in, | |
387 | * so must be under RCU read lock. | |
388 | */ | |
d0709a65 | 389 | |
11a843b7 | 390 | /* same here, the AP could be using QoS */ |
abe60632 | 391 | ap = sta_info_get(key->sdata, key->sdata->u.mgd.bssid); |
11a843b7 | 392 | if (ap) { |
07346f81 | 393 | if (test_sta_flags(ap, WLAN_STA_WME)) |
11a843b7 JB |
394 | key->conf.flags |= |
395 | IEEE80211_KEY_FLAG_WMM_STA; | |
11a843b7 JB |
396 | } |
397 | } | |
11a843b7 JB |
398 | } |
399 | ||
ad0e2b5a | 400 | mutex_lock(&sdata->local->key_mtx); |
3b96766f | 401 | |
d4e46a3d | 402 | if (sta) |
db4d1169 | 403 | old_key = sta->key; |
d4e46a3d | 404 | else |
db4d1169 JB |
405 | old_key = sdata->keys[idx]; |
406 | ||
407 | __ieee80211_key_replace(sdata, sta, old_key, key); | |
ad0e2b5a | 408 | __ieee80211_key_destroy(old_key); |
d4e46a3d | 409 | |
ad0e2b5a | 410 | ieee80211_debugfs_key_add(key); |
db4d1169 | 411 | |
3ffc2a90 | 412 | ret = ieee80211_key_enable_hw_accel(key); |
523d2f69 | 413 | |
ad0e2b5a | 414 | mutex_unlock(&sdata->local->key_mtx); |
3ffc2a90 JB |
415 | |
416 | return ret; | |
1f5a7e47 JB |
417 | } |
418 | ||
3a245766 | 419 | static void __ieee80211_key_free(struct ieee80211_key *key) |
1f5a7e47 | 420 | { |
3b96766f JB |
421 | /* |
422 | * Replace key with nothingness if it was ever used. | |
423 | */ | |
3a245766 | 424 | if (key->sdata) |
3b96766f JB |
425 | __ieee80211_key_replace(key->sdata, key->sta, |
426 | key, NULL); | |
ad0e2b5a | 427 | __ieee80211_key_destroy(key); |
3b96766f | 428 | } |
d4e46a3d | 429 | |
32162a4d JM |
430 | void ieee80211_key_free(struct ieee80211_local *local, |
431 | struct ieee80211_key *key) | |
3b96766f | 432 | { |
3a245766 | 433 | if (!key) |
3b96766f JB |
434 | return; |
435 | ||
ad0e2b5a | 436 | mutex_lock(&local->key_mtx); |
3a245766 | 437 | __ieee80211_key_free(key); |
ad0e2b5a | 438 | mutex_unlock(&local->key_mtx); |
3a245766 JB |
439 | } |
440 | ||
ad0e2b5a | 441 | void ieee80211_enable_keys(struct ieee80211_sub_if_data *sdata) |
3a245766 JB |
442 | { |
443 | struct ieee80211_key *key; | |
11a843b7 | 444 | |
3a245766 | 445 | ASSERT_RTNL(); |
11a843b7 | 446 | |
9607e6b6 | 447 | if (WARN_ON(!ieee80211_sdata_running(sdata))) |
3a245766 | 448 | return; |
11a843b7 | 449 | |
ad0e2b5a | 450 | mutex_lock(&sdata->local->key_mtx); |
11a843b7 | 451 | |
ad0e2b5a JB |
452 | list_for_each_entry(key, &sdata->key_list, list) |
453 | ieee80211_key_enable_hw_accel(key); | |
3b96766f | 454 | |
ad0e2b5a | 455 | mutex_unlock(&sdata->local->key_mtx); |
11a843b7 JB |
456 | } |
457 | ||
ad0e2b5a | 458 | void ieee80211_disable_keys(struct ieee80211_sub_if_data *sdata) |
11a843b7 JB |
459 | { |
460 | struct ieee80211_key *key; | |
461 | ||
ad0e2b5a | 462 | ASSERT_RTNL(); |
db4d1169 | 463 | |
ad0e2b5a | 464 | mutex_lock(&sdata->local->key_mtx); |
11a843b7 | 465 | |
ad0e2b5a JB |
466 | list_for_each_entry(key, &sdata->key_list, list) |
467 | ieee80211_key_disable_hw_accel(key); | |
11a843b7 | 468 | |
ad0e2b5a | 469 | mutex_unlock(&sdata->local->key_mtx); |
3b96766f | 470 | } |
11a843b7 | 471 | |
3b96766f JB |
472 | void ieee80211_free_keys(struct ieee80211_sub_if_data *sdata) |
473 | { | |
474 | struct ieee80211_key *key, *tmp; | |
db4d1169 | 475 | |
ad0e2b5a | 476 | mutex_lock(&sdata->local->key_mtx); |
3b96766f JB |
477 | |
478 | ieee80211_debugfs_key_remove_default(sdata); | |
3cfcf6ac | 479 | ieee80211_debugfs_key_remove_mgmt_default(sdata); |
3b96766f JB |
480 | |
481 | list_for_each_entry_safe(key, tmp, &sdata->key_list, list) | |
3a245766 | 482 | __ieee80211_key_free(key); |
3b96766f | 483 | |
ad0e2b5a | 484 | mutex_unlock(&sdata->local->key_mtx); |
11a843b7 | 485 | } |