mac80211: Don't squash error codes in key setup functions
[deliverable/linux.git] / net / mac80211 / key.c
CommitLineData
1f5a7e47
JB
1/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
3b96766f 5 * Copyright 2007-2008 Johannes Berg <johannes@sipsolutions.net>
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
48static const u8 bcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
11a843b7 49
ad0e2b5a 50static 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 55static 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
63static void ieee80211_key_enable_hw_accel(struct ieee80211_key *key)
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
11a843b7
JB
71 if (!key->local->ops->set_key)
72 return;
73
ad0e2b5a
JB
74 assert_key_lock(key->local);
75
dc822b5d
JB
76 sta = get_sta_for_key(key);
77
78 sdata = key->sdata;
79 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
80 sdata = container_of(sdata->bss,
81 struct ieee80211_sub_if_data,
82 u.ap);
11a843b7 83
12375ef9 84 ret = drv_set_key(key->local, SET_KEY, sdata, sta, &key->conf);
11a843b7 85
ad0e2b5a 86 if (!ret)
11a843b7
JB
87 key->flags |= KEY_FLAG_UPLOADED_TO_HARDWARE;
88
89 if (ret && ret != -ENOSPC && ret != -EOPNOTSUPP)
90 printk(KERN_ERR "mac80211-%s: failed to set key "
0c68ae26 91 "(%d, %pM) to hardware (%d)\n",
11a843b7 92 wiphy_name(key->local->hw.wiphy),
dc822b5d 93 key->conf.keyidx, sta ? sta->addr : bcast_addr, ret);
11a843b7
JB
94}
95
96static void ieee80211_key_disable_hw_accel(struct ieee80211_key *key)
97{
dc822b5d
JB
98 struct ieee80211_sub_if_data *sdata;
99 struct ieee80211_sta *sta;
11a843b7
JB
100 int ret;
101
3b96766f
JB
102 might_sleep();
103
db4d1169 104 if (!key || !key->local->ops->set_key)
11a843b7
JB
105 return;
106
ad0e2b5a
JB
107 assert_key_lock(key->local);
108
109 if (!(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
11a843b7
JB
110 return;
111
dc822b5d
JB
112 sta = get_sta_for_key(key);
113 sdata = key->sdata;
114
115 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
116 sdata = container_of(sdata->bss,
117 struct ieee80211_sub_if_data,
118 u.ap);
11a843b7 119
12375ef9 120 ret = drv_set_key(key->local, DISABLE_KEY, sdata,
24487981 121 sta, &key->conf);
11a843b7
JB
122
123 if (ret)
124 printk(KERN_ERR "mac80211-%s: failed to remove key "
0c68ae26 125 "(%d, %pM) from hardware (%d)\n",
11a843b7 126 wiphy_name(key->local->hw.wiphy),
dc822b5d 127 key->conf.keyidx, sta ? sta->addr : bcast_addr, ret);
11a843b7 128
3b96766f 129 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
3b96766f
JB
130}
131
132static void __ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata,
133 int idx)
134{
135 struct ieee80211_key *key = NULL;
136
ad0e2b5a
JB
137 assert_key_lock(sdata->local);
138
3b96766f
JB
139 if (idx >= 0 && idx < NUM_DEFAULT_KEYS)
140 key = sdata->keys[idx];
141
142 rcu_assign_pointer(sdata->default_key, key);
143
ad0e2b5a
JB
144 if (key) {
145 ieee80211_debugfs_key_remove_default(key->sdata);
146 ieee80211_debugfs_key_add_default(key->sdata);
147 }
3b96766f
JB
148}
149
150void ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata, int idx)
151{
ad0e2b5a 152 mutex_lock(&sdata->local->key_mtx);
3b96766f 153 __ieee80211_set_default_key(sdata, idx);
ad0e2b5a 154 mutex_unlock(&sdata->local->key_mtx);
3b96766f
JB
155}
156
3cfcf6ac
JM
157static void
158__ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata, int idx)
159{
160 struct ieee80211_key *key = NULL;
161
ad0e2b5a
JB
162 assert_key_lock(sdata->local);
163
3cfcf6ac
JM
164 if (idx >= NUM_DEFAULT_KEYS &&
165 idx < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
166 key = sdata->keys[idx];
167
168 rcu_assign_pointer(sdata->default_mgmt_key, key);
169
ad0e2b5a
JB
170 if (key) {
171 ieee80211_debugfs_key_remove_mgmt_default(key->sdata);
172 ieee80211_debugfs_key_add_mgmt_default(key->sdata);
173 }
3cfcf6ac
JM
174}
175
176void ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata,
177 int idx)
178{
ad0e2b5a 179 mutex_lock(&sdata->local->key_mtx);
3cfcf6ac 180 __ieee80211_set_default_mgmt_key(sdata, idx);
ad0e2b5a 181 mutex_unlock(&sdata->local->key_mtx);
3cfcf6ac
JM
182}
183
3b96766f
JB
184
185static void __ieee80211_key_replace(struct ieee80211_sub_if_data *sdata,
186 struct sta_info *sta,
187 struct ieee80211_key *old,
188 struct ieee80211_key *new)
189{
3cfcf6ac 190 int idx, defkey, defmgmtkey;
3b96766f
JB
191
192 if (new)
193 list_add(&new->list, &sdata->key_list);
194
195 if (sta) {
196 rcu_assign_pointer(sta->key, new);
197 } else {
198 WARN_ON(new && old && new->conf.keyidx != old->conf.keyidx);
199
200 if (old)
201 idx = old->conf.keyidx;
202 else
203 idx = new->conf.keyidx;
204
205 defkey = old && sdata->default_key == old;
3cfcf6ac 206 defmgmtkey = old && sdata->default_mgmt_key == old;
3b96766f
JB
207
208 if (defkey && !new)
209 __ieee80211_set_default_key(sdata, -1);
3cfcf6ac
JM
210 if (defmgmtkey && !new)
211 __ieee80211_set_default_mgmt_key(sdata, -1);
3b96766f
JB
212
213 rcu_assign_pointer(sdata->keys[idx], new);
214 if (defkey && new)
215 __ieee80211_set_default_key(sdata, new->conf.keyidx);
3cfcf6ac
JM
216 if (defmgmtkey && new)
217 __ieee80211_set_default_mgmt_key(sdata,
218 new->conf.keyidx);
3b96766f
JB
219 }
220
221 if (old) {
222 /*
223 * We'll use an empty list to indicate that the key
224 * has already been removed.
225 */
226 list_del_init(&old->list);
227 }
11a843b7
JB
228}
229
db4d1169 230struct ieee80211_key *ieee80211_key_alloc(enum ieee80211_key_alg alg,
11a843b7
JB
231 int idx,
232 size_t key_len,
faa8fdc8
JM
233 const u8 *key_data,
234 size_t seq_len, const u8 *seq)
1f5a7e47
JB
235{
236 struct ieee80211_key *key;
1ac62ba7 237 int i, j, err;
1f5a7e47 238
3cfcf6ac 239 BUG_ON(idx < 0 || idx >= NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS);
11a843b7
JB
240
241 key = kzalloc(sizeof(struct ieee80211_key) + key_len, GFP_KERNEL);
1f5a7e47 242 if (!key)
1ac62ba7 243 return ERR_PTR(-ENOMEM);
11a843b7
JB
244
245 /*
246 * Default to software encryption; we'll later upload the
247 * key to the hardware if possible.
248 */
11a843b7
JB
249 key->conf.flags = 0;
250 key->flags = 0;
251
252 key->conf.alg = alg;
253 key->conf.keyidx = idx;
254 key->conf.keylen = key_len;
76708dee
FF
255 switch (alg) {
256 case ALG_WEP:
257 key->conf.iv_len = WEP_IV_LEN;
258 key->conf.icv_len = WEP_ICV_LEN;
259 break;
260 case ALG_TKIP:
261 key->conf.iv_len = TKIP_IV_LEN;
262 key->conf.icv_len = TKIP_ICV_LEN;
9f26a952 263 if (seq) {
faa8fdc8
JM
264 for (i = 0; i < NUM_RX_DATA_QUEUES; i++) {
265 key->u.tkip.rx[i].iv32 =
266 get_unaligned_le32(&seq[2]);
267 key->u.tkip.rx[i].iv16 =
268 get_unaligned_le16(seq);
269 }
270 }
76708dee
FF
271 break;
272 case ALG_CCMP:
273 key->conf.iv_len = CCMP_HDR_LEN;
274 key->conf.icv_len = CCMP_MIC_LEN;
9f26a952 275 if (seq) {
9190252c 276 for (i = 0; i < NUM_RX_DATA_QUEUES + 1; i++)
faa8fdc8
JM
277 for (j = 0; j < CCMP_PN_LEN; j++)
278 key->u.ccmp.rx_pn[i][j] =
279 seq[CCMP_PN_LEN - j - 1];
280 }
76708dee 281 break;
3cfcf6ac
JM
282 case ALG_AES_CMAC:
283 key->conf.iv_len = 0;
284 key->conf.icv_len = sizeof(struct ieee80211_mmie);
9f26a952 285 if (seq)
faa8fdc8
JM
286 for (j = 0; j < 6; j++)
287 key->u.aes_cmac.rx_pn[j] = seq[6 - j - 1];
3cfcf6ac 288 break;
76708dee 289 }
11a843b7 290 memcpy(key->conf.key, key_data, key_len);
e4861829 291 INIT_LIST_HEAD(&key->list);
11a843b7 292
11a843b7
JB
293 if (alg == ALG_CCMP) {
294 /*
295 * Initialize AES key state here as an optimization so that
296 * it does not need to be initialized for every packet.
297 */
298 key->u.ccmp.tfm = ieee80211_aes_key_setup_encrypt(key_data);
1ac62ba7
BH
299 if (IS_ERR(key->u.ccmp.tfm)) {
300 err = PTR_ERR(key->u.ccmp.tfm);
3b96766f 301 kfree(key);
1ac62ba7 302 key = ERR_PTR(err);
11a843b7
JB
303 }
304 }
305
3cfcf6ac
JM
306 if (alg == ALG_AES_CMAC) {
307 /*
308 * Initialize AES key state here as an optimization so that
309 * it does not need to be initialized for every packet.
310 */
311 key->u.aes_cmac.tfm =
312 ieee80211_aes_cmac_key_setup(key_data);
1ac62ba7
BH
313 if (IS_ERR(key->u.aes_cmac.tfm)) {
314 err = PTR_ERR(key->u.aes_cmac.tfm);
3cfcf6ac 315 kfree(key);
1ac62ba7 316 key = ERR_PTR(err);
3cfcf6ac
JM
317 }
318 }
319
db4d1169
JB
320 return key;
321}
11a843b7 322
ad0e2b5a
JB
323static void __ieee80211_key_destroy(struct ieee80211_key *key)
324{
325 if (!key)
326 return;
327
32162a4d
JM
328 if (key->local)
329 ieee80211_key_disable_hw_accel(key);
ad0e2b5a
JB
330
331 if (key->conf.alg == ALG_CCMP)
332 ieee80211_aes_key_free(key->u.ccmp.tfm);
333 if (key->conf.alg == ALG_AES_CMAC)
334 ieee80211_aes_cmac_key_free(key->u.aes_cmac.tfm);
32162a4d
JM
335 if (key->local)
336 ieee80211_debugfs_key_remove(key);
ad0e2b5a
JB
337
338 kfree(key);
339}
340
db4d1169
JB
341void ieee80211_key_link(struct ieee80211_key *key,
342 struct ieee80211_sub_if_data *sdata,
343 struct sta_info *sta)
344{
345 struct ieee80211_key *old_key;
346 int idx;
347
db4d1169
JB
348 BUG_ON(!sdata);
349 BUG_ON(!key);
350
351 idx = key->conf.keyidx;
352 key->local = sdata->local;
353 key->sdata = sdata;
354 key->sta = sta;
355
11a843b7 356 if (sta) {
11a843b7
JB
357 /*
358 * some hardware cannot handle TKIP with QoS, so
359 * we indicate whether QoS could be in use.
360 */
07346f81 361 if (test_sta_flags(sta, WLAN_STA_WME))
11a843b7 362 key->conf.flags |= IEEE80211_KEY_FLAG_WMM_STA;
c6adbd21
ID
363
364 /*
365 * This key is for a specific sta interface,
366 * inform the driver that it should try to store
367 * this key as pairwise key.
368 */
369 key->conf.flags |= IEEE80211_KEY_FLAG_PAIRWISE;
11a843b7 370 } else {
05c914fe 371 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
11a843b7
JB
372 struct sta_info *ap;
373
3b96766f
JB
374 /*
375 * We're getting a sta pointer in,
376 * so must be under RCU read lock.
377 */
d0709a65 378
11a843b7 379 /* same here, the AP could be using QoS */
abe60632 380 ap = sta_info_get(key->sdata, key->sdata->u.mgd.bssid);
11a843b7 381 if (ap) {
07346f81 382 if (test_sta_flags(ap, WLAN_STA_WME))
11a843b7
JB
383 key->conf.flags |=
384 IEEE80211_KEY_FLAG_WMM_STA;
11a843b7
JB
385 }
386 }
11a843b7
JB
387 }
388
ad0e2b5a 389 mutex_lock(&sdata->local->key_mtx);
3b96766f 390
d4e46a3d 391 if (sta)
db4d1169 392 old_key = sta->key;
d4e46a3d 393 else
db4d1169
JB
394 old_key = sdata->keys[idx];
395
396 __ieee80211_key_replace(sdata, sta, old_key, key);
ad0e2b5a 397 __ieee80211_key_destroy(old_key);
d4e46a3d 398
ad0e2b5a 399 ieee80211_debugfs_key_add(key);
db4d1169 400
ad0e2b5a 401 ieee80211_key_enable_hw_accel(key);
523d2f69 402
ad0e2b5a 403 mutex_unlock(&sdata->local->key_mtx);
1f5a7e47
JB
404}
405
3a245766 406static void __ieee80211_key_free(struct ieee80211_key *key)
1f5a7e47 407{
3b96766f
JB
408 /*
409 * Replace key with nothingness if it was ever used.
410 */
3a245766 411 if (key->sdata)
3b96766f
JB
412 __ieee80211_key_replace(key->sdata, key->sta,
413 key, NULL);
ad0e2b5a 414 __ieee80211_key_destroy(key);
3b96766f 415}
d4e46a3d 416
32162a4d
JM
417void ieee80211_key_free(struct ieee80211_local *local,
418 struct ieee80211_key *key)
3b96766f 419{
3a245766 420 if (!key)
3b96766f
JB
421 return;
422
ad0e2b5a 423 mutex_lock(&local->key_mtx);
3a245766 424 __ieee80211_key_free(key);
ad0e2b5a 425 mutex_unlock(&local->key_mtx);
3a245766
JB
426}
427
ad0e2b5a 428void ieee80211_enable_keys(struct ieee80211_sub_if_data *sdata)
3a245766
JB
429{
430 struct ieee80211_key *key;
11a843b7 431
3a245766 432 ASSERT_RTNL();
11a843b7 433
9607e6b6 434 if (WARN_ON(!ieee80211_sdata_running(sdata)))
3a245766 435 return;
11a843b7 436
ad0e2b5a 437 mutex_lock(&sdata->local->key_mtx);
11a843b7 438
ad0e2b5a
JB
439 list_for_each_entry(key, &sdata->key_list, list)
440 ieee80211_key_enable_hw_accel(key);
3b96766f 441
ad0e2b5a 442 mutex_unlock(&sdata->local->key_mtx);
11a843b7
JB
443}
444
ad0e2b5a 445void ieee80211_disable_keys(struct ieee80211_sub_if_data *sdata)
11a843b7
JB
446{
447 struct ieee80211_key *key;
448
ad0e2b5a 449 ASSERT_RTNL();
db4d1169 450
ad0e2b5a 451 mutex_lock(&sdata->local->key_mtx);
11a843b7 452
ad0e2b5a
JB
453 list_for_each_entry(key, &sdata->key_list, list)
454 ieee80211_key_disable_hw_accel(key);
11a843b7 455
ad0e2b5a 456 mutex_unlock(&sdata->local->key_mtx);
3b96766f 457}
11a843b7 458
3b96766f
JB
459void ieee80211_free_keys(struct ieee80211_sub_if_data *sdata)
460{
461 struct ieee80211_key *key, *tmp;
db4d1169 462
ad0e2b5a 463 mutex_lock(&sdata->local->key_mtx);
3b96766f
JB
464
465 ieee80211_debugfs_key_remove_default(sdata);
3cfcf6ac 466 ieee80211_debugfs_key_remove_mgmt_default(sdata);
3b96766f
JB
467
468 list_for_each_entry_safe(key, tmp, &sdata->key_list, list)
3a245766 469 __ieee80211_key_free(key);
3b96766f 470
ad0e2b5a 471 mutex_unlock(&sdata->local->key_mtx);
11a843b7 472}
This page took 0.309236 seconds and 5 git commands to generate.