blob: e8616b3ff636e8175dbf3e16cd31ce22a22ef954 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040018#include <linux/export.h>
Johannes Berg1f5a7e42007-07-27 15:43:23 +020019#include <net/mac80211.h>
20#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020021#include "driver-ops.h"
Johannes Berg1f5a7e42007-07-27 15:43:23 +020022#include "debugfs_key.h"
23#include "aes_ccm.h"
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +020024#include "aes_cmac.h"
Johannes Berg1f5a7e42007-07-27 15:43:23 +020025
Johannes Berg11a843b2007-08-28 17:01:55 -040026
Johannes Bergdbbea672008-02-26 14:34:06 +010027/**
28 * DOC: Key handling basics
Johannes Berg11a843b2007-08-28 17:01:55 -040029 *
30 * Key handling in mac80211 is done based on per-interface (sub_if_data)
31 * keys and per-station keys. Since each station belongs to an interface,
32 * each station key also belongs to that interface.
33 *
Johannes Bergb5c34f62011-01-03 19:51:09 +010034 * Hardware acceleration is done on a best-effort basis for algorithms
35 * that are implemented in software, for each key the hardware is asked
36 * to enable that key for offloading but if it cannot do that the key is
37 * simply kept for software encryption (unless it is for an algorithm
38 * that isn't implemented in software).
39 * There is currently no way of knowing whether a key is handled in SW
40 * or HW except by looking into debugfs.
Johannes Berg11a843b2007-08-28 17:01:55 -040041 *
Johannes Bergb5c34f62011-01-03 19:51:09 +010042 * All key management is internally protected by a mutex. Within all
43 * other parts of mac80211, key references are, just as STA structure
44 * references, protected by RCU. Note, however, that some things are
45 * unprotected, namely the key->sta dereferences within the hardware
46 * acceleration functions. This means that sta_info_destroy() must
47 * remove the key which waits for an RCU grace period.
Johannes Berg11a843b2007-08-28 17:01:55 -040048 */
49
50static const u8 bcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
Johannes Berg11a843b2007-08-28 17:01:55 -040051
Johannes Bergad0e2b52010-06-01 10:19:19 +020052static void assert_key_lock(struct ieee80211_local *local)
Johannes Berg3b967662008-04-08 17:56:52 +020053{
Johannes Berg46a5eba2010-09-15 13:28:15 +020054 lockdep_assert_held(&local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +020055}
56
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +053057static void increment_tailroom_need_count(struct ieee80211_sub_if_data *sdata)
58{
59 /*
60 * When this count is zero, SKB resizing for allocating tailroom
61 * for IV or MMIC is skipped. But, this check has created two race
62 * cases in xmit path while transiting from zero count to one:
63 *
64 * 1. SKB resize was skipped because no key was added but just before
65 * the xmit key is added and SW encryption kicks off.
66 *
67 * 2. SKB resize was skipped because all the keys were hw planted but
68 * just before xmit one of the key is deleted and SW encryption kicks
69 * off.
70 *
71 * In both the above case SW encryption will find not enough space for
72 * tailroom and exits with WARN_ON. (See WARN_ONs at wpa.c)
73 *
74 * Solution has been explained at
75 * http://mid.gmane.org/1308590980.4322.19.camel@jlt3.sipsolutions.net
76 */
77
78 if (!sdata->crypto_tx_tailroom_needed_cnt++) {
79 /*
80 * Flush all XMIT packets currently using HW encryption or no
81 * encryption at all if the count transition is from 0 -> 1.
82 */
83 synchronize_net();
84 }
85}
86
Johannes Berg3ffc2a92010-08-27 14:26:52 +030087static int ieee80211_key_enable_hw_accel(struct ieee80211_key *key)
Johannes Berg11a843b2007-08-28 17:01:55 -040088{
Johannes Bergdc822b52008-12-29 12:55:09 +010089 struct ieee80211_sub_if_data *sdata;
Johannes Berg89c91ca2012-01-20 13:55:19 +010090 struct sta_info *sta;
Johannes Berg11a843b2007-08-28 17:01:55 -040091 int ret;
92
Johannes Berg3b967662008-04-08 17:56:52 +020093 might_sleep();
94
Johannes Berge31b8212010-10-05 19:39:30 +020095 if (!key->local->ops->set_key)
Johannes Berg3ffc2a92010-08-27 14:26:52 +030096 goto out_unsupported;
Johannes Berg11a843b2007-08-28 17:01:55 -040097
Johannes Bergad0e2b52010-06-01 10:19:19 +020098 assert_key_lock(key->local);
99
Johannes Berg89c91ca2012-01-20 13:55:19 +0100100 sta = key->sta;
Johannes Bergdc822b52008-12-29 12:55:09 +0100101
Johannes Berge31b8212010-10-05 19:39:30 +0200102 /*
103 * If this is a per-STA GTK, check if it
104 * is supported; if not, return.
105 */
106 if (sta && !(key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE) &&
107 !(key->local->hw.flags & IEEE80211_HW_SUPPORTS_PER_STA_GTK))
108 goto out_unsupported;
109
Johannes Berg89c91ca2012-01-20 13:55:19 +0100110 if (sta && !sta->uploaded)
111 goto out_unsupported;
112
Johannes Bergdc822b52008-12-29 12:55:09 +0100113 sdata = key->sdata;
Helmut Schaa18890d42010-11-19 08:11:01 +0100114 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
115 /*
116 * The driver doesn't know anything about VLAN interfaces.
117 * Hence, don't send GTKs for VLAN interfaces to the driver.
118 */
119 if (!(key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE))
120 goto out_unsupported;
Helmut Schaa18890d42010-11-19 08:11:01 +0100121 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400122
Johannes Berg89c91ca2012-01-20 13:55:19 +0100123 ret = drv_set_key(key->local, SET_KEY, sdata,
124 sta ? &sta->sta : NULL, &key->conf);
Johannes Berg11a843b2007-08-28 17:01:55 -0400125
Johannes Berge31b8212010-10-05 19:39:30 +0200126 if (!ret) {
Johannes Berg11a843b2007-08-28 17:01:55 -0400127 key->flags |= KEY_FLAG_UPLOADED_TO_HARDWARE;
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530128
129 if (!((key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC) ||
Arik Nemtsov077a9152011-10-23 08:21:41 +0200130 (key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV) ||
131 (key->conf.flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE)))
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530132 sdata->crypto_tx_tailroom_needed_cnt--;
133
Arik Nemtsov077a9152011-10-23 08:21:41 +0200134 WARN_ON((key->conf.flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE) &&
135 (key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV));
136
Johannes Berge31b8212010-10-05 19:39:30 +0200137 return 0;
138 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400139
Johannes Berge31b8212010-10-05 19:39:30 +0200140 if (ret != -ENOSPC && ret != -EOPNOTSUPP)
Joe Perches0fb9a9e2010-08-20 16:25:38 -0700141 wiphy_err(key->local->hw.wiphy,
142 "failed to set key (%d, %pM) to hardware (%d)\n",
Johannes Berg89c91ca2012-01-20 13:55:19 +0100143 key->conf.keyidx,
144 sta ? sta->sta.addr : bcast_addr, ret);
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300145
Johannes Berge31b8212010-10-05 19:39:30 +0200146 out_unsupported:
147 switch (key->conf.cipher) {
148 case WLAN_CIPHER_SUITE_WEP40:
149 case WLAN_CIPHER_SUITE_WEP104:
150 case WLAN_CIPHER_SUITE_TKIP:
151 case WLAN_CIPHER_SUITE_CCMP:
152 case WLAN_CIPHER_SUITE_AES_CMAC:
153 /* all of these we can do in software */
154 return 0;
155 default:
156 return -EINVAL;
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300157 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400158}
159
160static void ieee80211_key_disable_hw_accel(struct ieee80211_key *key)
161{
Johannes Bergdc822b52008-12-29 12:55:09 +0100162 struct ieee80211_sub_if_data *sdata;
Johannes Berg89c91ca2012-01-20 13:55:19 +0100163 struct sta_info *sta;
Johannes Berg11a843b2007-08-28 17:01:55 -0400164 int ret;
165
Johannes Berg3b967662008-04-08 17:56:52 +0200166 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 Bergad0e2b52010-06-01 10:19:19 +0200171 assert_key_lock(key->local);
172
173 if (!(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
Johannes Berg11a843b2007-08-28 17:01:55 -0400174 return;
175
Johannes Berg89c91ca2012-01-20 13:55:19 +0100176 sta = key->sta;
Johannes Bergdc822b52008-12-29 12:55:09 +0100177 sdata = key->sdata;
178
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530179 if (!((key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC) ||
Arik Nemtsov077a9152011-10-23 08:21:41 +0200180 (key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV) ||
181 (key->conf.flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE)))
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530182 increment_tailroom_need_count(sdata);
183
Johannes Berg12375ef2009-11-25 20:30:31 +0100184 ret = drv_set_key(key->local, DISABLE_KEY, sdata,
Johannes Berg89c91ca2012-01-20 13:55:19 +0100185 sta ? &sta->sta : NULL, &key->conf);
Johannes Berg11a843b2007-08-28 17:01:55 -0400186
187 if (ret)
Joe Perches0fb9a9e2010-08-20 16:25:38 -0700188 wiphy_err(key->local->hw.wiphy,
189 "failed to remove key (%d, %pM) from hardware (%d)\n",
Johannes Berg89c91ca2012-01-20 13:55:19 +0100190 key->conf.keyidx,
191 sta ? sta->sta.addr : bcast_addr, ret);
Johannes Berg11a843b2007-08-28 17:01:55 -0400192
Johannes Berg3b967662008-04-08 17:56:52 +0200193 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
Johannes Berg3b967662008-04-08 17:56:52 +0200194}
195
Johannes Berge31b8212010-10-05 19:39:30 +0200196void ieee80211_key_removed(struct ieee80211_key_conf *key_conf)
197{
198 struct ieee80211_key *key;
199
200 key = container_of(key_conf, struct ieee80211_key, conf);
201
202 might_sleep();
203 assert_key_lock(key->local);
204
205 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
206
207 /*
208 * Flush TX path to avoid attempts to use this key
209 * after this function returns. Until then, drivers
210 * must be prepared to handle the key.
211 */
212 synchronize_rcu();
213}
214EXPORT_SYMBOL_GPL(ieee80211_key_removed);
215
Johannes Berg3b967662008-04-08 17:56:52 +0200216static void __ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata,
Johannes Bergf7e01042010-12-09 19:49:02 +0100217 int idx, bool uni, bool multi)
Johannes Berg3b967662008-04-08 17:56:52 +0200218{
219 struct ieee80211_key *key = NULL;
220
Johannes Bergad0e2b52010-06-01 10:19:19 +0200221 assert_key_lock(sdata->local);
222
Johannes Berg3b967662008-04-08 17:56:52 +0200223 if (idx >= 0 && idx < NUM_DEFAULT_KEYS)
Johannes Berg40b275b2011-05-13 14:15:49 +0200224 key = key_mtx_dereference(sdata->local, sdata->keys[idx]);
Johannes Berg3b967662008-04-08 17:56:52 +0200225
Johannes Bergf7e01042010-12-09 19:49:02 +0100226 if (uni)
227 rcu_assign_pointer(sdata->default_unicast_key, key);
228 if (multi)
229 rcu_assign_pointer(sdata->default_multicast_key, key);
Johannes Berg3b967662008-04-08 17:56:52 +0200230
Johannes Bergf7e01042010-12-09 19:49:02 +0100231 ieee80211_debugfs_key_update_default(sdata);
Johannes Berg3b967662008-04-08 17:56:52 +0200232}
233
Johannes Bergf7e01042010-12-09 19:49:02 +0100234void ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata, int idx,
235 bool uni, bool multi)
Johannes Berg3b967662008-04-08 17:56:52 +0200236{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200237 mutex_lock(&sdata->local->key_mtx);
Johannes Bergf7e01042010-12-09 19:49:02 +0100238 __ieee80211_set_default_key(sdata, idx, uni, multi);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200239 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200240}
241
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200242static void
243__ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata, int idx)
244{
245 struct ieee80211_key *key = NULL;
246
Johannes Bergad0e2b52010-06-01 10:19:19 +0200247 assert_key_lock(sdata->local);
248
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200249 if (idx >= NUM_DEFAULT_KEYS &&
250 idx < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
Johannes Berg40b275b2011-05-13 14:15:49 +0200251 key = key_mtx_dereference(sdata->local, sdata->keys[idx]);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200252
253 rcu_assign_pointer(sdata->default_mgmt_key, key);
254
Johannes Bergf7e01042010-12-09 19:49:02 +0100255 ieee80211_debugfs_key_update_default(sdata);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200256}
257
258void ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata,
259 int idx)
260{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200261 mutex_lock(&sdata->local->key_mtx);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200262 __ieee80211_set_default_mgmt_key(sdata, idx);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200263 mutex_unlock(&sdata->local->key_mtx);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200264}
265
Johannes Berg3b967662008-04-08 17:56:52 +0200266
267static void __ieee80211_key_replace(struct ieee80211_sub_if_data *sdata,
268 struct sta_info *sta,
Johannes Berge31b8212010-10-05 19:39:30 +0200269 bool pairwise,
Johannes Berg3b967662008-04-08 17:56:52 +0200270 struct ieee80211_key *old,
271 struct ieee80211_key *new)
272{
Johannes Bergf7e01042010-12-09 19:49:02 +0100273 int idx;
274 bool defunikey, defmultikey, defmgmtkey;
Johannes Berg3b967662008-04-08 17:56:52 +0200275
276 if (new)
Johannes Bergf850e002011-07-13 19:50:53 +0200277 list_add_tail(&new->list, &sdata->key_list);
Johannes Berg3b967662008-04-08 17:56:52 +0200278
Johannes Berge31b8212010-10-05 19:39:30 +0200279 if (sta && pairwise) {
280 rcu_assign_pointer(sta->ptk, new);
281 } else if (sta) {
282 if (old)
283 idx = old->conf.keyidx;
284 else
285 idx = new->conf.keyidx;
286 rcu_assign_pointer(sta->gtk[idx], new);
Johannes Berg3b967662008-04-08 17:56:52 +0200287 } else {
288 WARN_ON(new && old && new->conf.keyidx != old->conf.keyidx);
289
290 if (old)
291 idx = old->conf.keyidx;
292 else
293 idx = new->conf.keyidx;
294
Johannes Berg40b275b2011-05-13 14:15:49 +0200295 defunikey = old &&
296 old == key_mtx_dereference(sdata->local,
297 sdata->default_unicast_key);
298 defmultikey = old &&
299 old == key_mtx_dereference(sdata->local,
300 sdata->default_multicast_key);
301 defmgmtkey = old &&
302 old == key_mtx_dereference(sdata->local,
303 sdata->default_mgmt_key);
Johannes Berg3b967662008-04-08 17:56:52 +0200304
Johannes Bergf7e01042010-12-09 19:49:02 +0100305 if (defunikey && !new)
306 __ieee80211_set_default_key(sdata, -1, true, false);
307 if (defmultikey && !new)
308 __ieee80211_set_default_key(sdata, -1, false, true);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200309 if (defmgmtkey && !new)
310 __ieee80211_set_default_mgmt_key(sdata, -1);
Johannes Berg3b967662008-04-08 17:56:52 +0200311
312 rcu_assign_pointer(sdata->keys[idx], new);
Johannes Bergf7e01042010-12-09 19:49:02 +0100313 if (defunikey && new)
314 __ieee80211_set_default_key(sdata, new->conf.keyidx,
315 true, false);
316 if (defmultikey && new)
317 __ieee80211_set_default_key(sdata, new->conf.keyidx,
318 false, true);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200319 if (defmgmtkey && new)
320 __ieee80211_set_default_mgmt_key(sdata,
321 new->conf.keyidx);
Johannes Berg3b967662008-04-08 17:56:52 +0200322 }
323
Johannes Bergb5c34f62011-01-03 19:51:09 +0100324 if (old)
325 list_del(&old->list);
Johannes Berg11a843b2007-08-28 17:01:55 -0400326}
327
Johannes Berg97359d12010-08-10 09:46:38 +0200328struct ieee80211_key *ieee80211_key_alloc(u32 cipher, int idx, size_t key_len,
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300329 const u8 *key_data,
330 size_t seq_len, const u8 *seq)
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200331{
332 struct ieee80211_key *key;
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100333 int i, j, err;
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200334
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200335 BUG_ON(idx < 0 || idx >= NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS);
Johannes Berg11a843b2007-08-28 17:01:55 -0400336
337 key = kzalloc(sizeof(struct ieee80211_key) + key_len, GFP_KERNEL);
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200338 if (!key)
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100339 return ERR_PTR(-ENOMEM);
Johannes Berg11a843b2007-08-28 17:01:55 -0400340
341 /*
342 * Default to software encryption; we'll later upload the
343 * key to the hardware if possible.
344 */
Johannes Berg11a843b2007-08-28 17:01:55 -0400345 key->conf.flags = 0;
346 key->flags = 0;
347
Johannes Berg97359d12010-08-10 09:46:38 +0200348 key->conf.cipher = cipher;
Johannes Berg11a843b2007-08-28 17:01:55 -0400349 key->conf.keyidx = idx;
350 key->conf.keylen = key_len;
Johannes Berg97359d12010-08-10 09:46:38 +0200351 switch (cipher) {
352 case WLAN_CIPHER_SUITE_WEP40:
353 case WLAN_CIPHER_SUITE_WEP104:
Felix Fietkau76708de2008-10-05 18:02:48 +0200354 key->conf.iv_len = WEP_IV_LEN;
355 key->conf.icv_len = WEP_ICV_LEN;
356 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200357 case WLAN_CIPHER_SUITE_TKIP:
Felix Fietkau76708de2008-10-05 18:02:48 +0200358 key->conf.iv_len = TKIP_IV_LEN;
359 key->conf.icv_len = TKIP_ICV_LEN;
Jouni Malinen9f26a952009-05-15 12:38:32 +0300360 if (seq) {
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300361 for (i = 0; i < NUM_RX_DATA_QUEUES; i++) {
362 key->u.tkip.rx[i].iv32 =
363 get_unaligned_le32(&seq[2]);
364 key->u.tkip.rx[i].iv16 =
365 get_unaligned_le16(seq);
366 }
367 }
Johannes Berg523b02e2011-07-07 22:28:01 +0200368 spin_lock_init(&key->u.tkip.txlock);
Felix Fietkau76708de2008-10-05 18:02:48 +0200369 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200370 case WLAN_CIPHER_SUITE_CCMP:
Felix Fietkau76708de2008-10-05 18:02:48 +0200371 key->conf.iv_len = CCMP_HDR_LEN;
372 key->conf.icv_len = CCMP_MIC_LEN;
Jouni Malinen9f26a952009-05-15 12:38:32 +0300373 if (seq) {
Jouni Malinen91902522010-06-11 10:27:33 -0700374 for (i = 0; i < NUM_RX_DATA_QUEUES + 1; i++)
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300375 for (j = 0; j < CCMP_PN_LEN; j++)
376 key->u.ccmp.rx_pn[i][j] =
377 seq[CCMP_PN_LEN - j - 1];
378 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400379 /*
380 * Initialize AES key state here as an optimization so that
381 * it does not need to be initialized for every packet.
382 */
383 key->u.ccmp.tfm = ieee80211_aes_key_setup_encrypt(key_data);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100384 if (IS_ERR(key->u.ccmp.tfm)) {
385 err = PTR_ERR(key->u.ccmp.tfm);
Johannes Berg3b967662008-04-08 17:56:52 +0200386 kfree(key);
Petr Å tetiar1f951a72011-03-27 13:31:26 +0200387 return ERR_PTR(err);
Johannes Berg11a843b2007-08-28 17:01:55 -0400388 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200389 break;
390 case WLAN_CIPHER_SUITE_AES_CMAC:
391 key->conf.iv_len = 0;
392 key->conf.icv_len = sizeof(struct ieee80211_mmie);
393 if (seq)
394 for (j = 0; j < 6; j++)
395 key->u.aes_cmac.rx_pn[j] = seq[6 - j - 1];
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200396 /*
397 * Initialize AES key state here as an optimization so that
398 * it does not need to be initialized for every packet.
399 */
400 key->u.aes_cmac.tfm =
401 ieee80211_aes_cmac_key_setup(key_data);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100402 if (IS_ERR(key->u.aes_cmac.tfm)) {
403 err = PTR_ERR(key->u.aes_cmac.tfm);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200404 kfree(key);
Petr Å tetiar1f951a72011-03-27 13:31:26 +0200405 return ERR_PTR(err);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200406 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200407 break;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200408 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200409 memcpy(key->conf.key, key_data, key_len);
410 INIT_LIST_HEAD(&key->list);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200411
Johannes Bergdb4d1162008-02-25 16:27:45 +0100412 return key;
413}
Johannes Berg11a843b2007-08-28 17:01:55 -0400414
Johannes Bergad0e2b52010-06-01 10:19:19 +0200415static void __ieee80211_key_destroy(struct ieee80211_key *key)
416{
417 if (!key)
418 return;
419
Johannes Bergd2460f42011-01-03 19:42:24 +0100420 /*
421 * Synchronize so the TX path can no longer be using
422 * this key before we free/remove it.
423 */
424 synchronize_rcu();
425
Jouni Malinen32162a42010-07-26 15:52:03 -0700426 if (key->local)
427 ieee80211_key_disable_hw_accel(key);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200428
Johannes Berg97359d12010-08-10 09:46:38 +0200429 if (key->conf.cipher == WLAN_CIPHER_SUITE_CCMP)
Johannes Bergad0e2b52010-06-01 10:19:19 +0200430 ieee80211_aes_key_free(key->u.ccmp.tfm);
Johannes Berg97359d12010-08-10 09:46:38 +0200431 if (key->conf.cipher == WLAN_CIPHER_SUITE_AES_CMAC)
Johannes Bergad0e2b52010-06-01 10:19:19 +0200432 ieee80211_aes_cmac_key_free(key->u.aes_cmac.tfm);
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530433 if (key->local) {
Jouni Malinen32162a42010-07-26 15:52:03 -0700434 ieee80211_debugfs_key_remove(key);
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530435 key->sdata->crypto_tx_tailroom_needed_cnt--;
436 }
Johannes Bergad0e2b52010-06-01 10:19:19 +0200437
438 kfree(key);
439}
440
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300441int ieee80211_key_link(struct ieee80211_key *key,
442 struct ieee80211_sub_if_data *sdata,
443 struct sta_info *sta)
Johannes Bergdb4d1162008-02-25 16:27:45 +0100444{
445 struct ieee80211_key *old_key;
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300446 int idx, ret;
Mariusz Kozlowski67aa0302011-03-26 18:58:51 +0100447 bool pairwise;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100448
Johannes Bergdb4d1162008-02-25 16:27:45 +0100449 BUG_ON(!sdata);
450 BUG_ON(!key);
451
Mariusz Kozlowski67aa0302011-03-26 18:58:51 +0100452 pairwise = key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100453 idx = key->conf.keyidx;
454 key->local = sdata->local;
455 key->sdata = sdata;
456 key->sta = sta;
457
Johannes Berg11a843b2007-08-28 17:01:55 -0400458 if (sta) {
Johannes Berg11a843b2007-08-28 17:01:55 -0400459 /*
460 * some hardware cannot handle TKIP with QoS, so
461 * we indicate whether QoS could be in use.
462 */
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200463 if (test_sta_flag(sta, WLAN_STA_WME))
Johannes Berg11a843b2007-08-28 17:01:55 -0400464 key->conf.flags |= IEEE80211_KEY_FLAG_WMM_STA;
465 } else {
Johannes Berg05c914f2008-09-11 00:01:58 +0200466 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Johannes Berg11a843b2007-08-28 17:01:55 -0400467 struct sta_info *ap;
468
Johannes Berg3b967662008-04-08 17:56:52 +0200469 /*
Johannes Bergb5c34f62011-01-03 19:51:09 +0100470 * We're getting a sta pointer in, so must be under
471 * appropriate locking for sta_info_get().
Johannes Berg3b967662008-04-08 17:56:52 +0200472 */
Johannes Bergd0709a62008-02-25 16:27:46 +0100473
Johannes Berg11a843b2007-08-28 17:01:55 -0400474 /* same here, the AP could be using QoS */
Johannes Bergabe60632009-11-25 17:46:18 +0100475 ap = sta_info_get(key->sdata, key->sdata->u.mgd.bssid);
Johannes Berg11a843b2007-08-28 17:01:55 -0400476 if (ap) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200477 if (test_sta_flag(ap, WLAN_STA_WME))
Johannes Berg11a843b2007-08-28 17:01:55 -0400478 key->conf.flags |=
479 IEEE80211_KEY_FLAG_WMM_STA;
Johannes Berg11a843b2007-08-28 17:01:55 -0400480 }
481 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400482 }
483
Johannes Bergad0e2b52010-06-01 10:19:19 +0200484 mutex_lock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200485
Johannes Berge31b8212010-10-05 19:39:30 +0200486 if (sta && pairwise)
Johannes Berg40b275b2011-05-13 14:15:49 +0200487 old_key = key_mtx_dereference(sdata->local, sta->ptk);
Johannes Berge31b8212010-10-05 19:39:30 +0200488 else if (sta)
Johannes Berg40b275b2011-05-13 14:15:49 +0200489 old_key = key_mtx_dereference(sdata->local, sta->gtk[idx]);
Johannes Bergd4e46a32007-09-14 11:10:24 -0400490 else
Johannes Berg40b275b2011-05-13 14:15:49 +0200491 old_key = key_mtx_dereference(sdata->local, sdata->keys[idx]);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100492
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530493 increment_tailroom_need_count(sdata);
494
Johannes Berge31b8212010-10-05 19:39:30 +0200495 __ieee80211_key_replace(sdata, sta, pairwise, old_key, key);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200496 __ieee80211_key_destroy(old_key);
Johannes Bergd4e46a32007-09-14 11:10:24 -0400497
Johannes Bergad0e2b52010-06-01 10:19:19 +0200498 ieee80211_debugfs_key_add(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200499
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300500 ret = ieee80211_key_enable_hw_accel(key);
Johannes Berg523d2f62009-07-01 21:26:43 +0200501
Johannes Bergad0e2b52010-06-01 10:19:19 +0200502 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300503
504 return ret;
Johannes Berg3a245762008-04-09 16:45:37 +0200505}
506
Johannes Berg5c0c3642011-05-12 14:31:49 +0200507void __ieee80211_key_free(struct ieee80211_key *key)
Johannes Berg3a245762008-04-09 16:45:37 +0200508{
Johannes Berg5c0c3642011-05-12 14:31:49 +0200509 if (!key)
510 return;
511
Johannes Berg3a245762008-04-09 16:45:37 +0200512 /*
513 * Replace key with nothingness if it was ever used.
514 */
515 if (key->sdata)
516 __ieee80211_key_replace(key->sdata, key->sta,
Johannes Berge31b8212010-10-05 19:39:30 +0200517 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE,
518 key, NULL);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200519 __ieee80211_key_destroy(key);
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200520}
521
Jouni Malinen32162a42010-07-26 15:52:03 -0700522void ieee80211_key_free(struct ieee80211_local *local,
523 struct ieee80211_key *key)
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200524{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200525 mutex_lock(&local->key_mtx);
Johannes Berg3a245762008-04-09 16:45:37 +0200526 __ieee80211_key_free(key);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200527 mutex_unlock(&local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200528}
529
530void ieee80211_enable_keys(struct ieee80211_sub_if_data *sdata)
531{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200532 struct ieee80211_key *key;
533
Johannes Berg3a245762008-04-09 16:45:37 +0200534 ASSERT_RTNL();
Johannes Berg3b967662008-04-08 17:56:52 +0200535
Johannes Berg9607e6b2009-12-23 13:15:31 +0100536 if (WARN_ON(!ieee80211_sdata_running(sdata)))
Johannes Berg3b967662008-04-08 17:56:52 +0200537 return;
538
Johannes Bergad0e2b52010-06-01 10:19:19 +0200539 mutex_lock(&sdata->local->key_mtx);
540
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530541 sdata->crypto_tx_tailroom_needed_cnt = 0;
542
543 list_for_each_entry(key, &sdata->key_list, list) {
544 increment_tailroom_need_count(sdata);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200545 ieee80211_key_enable_hw_accel(key);
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530546 }
Johannes Bergad0e2b52010-06-01 10:19:19 +0200547
548 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200549}
550
Johannes Berg830af022011-07-05 16:35:39 +0200551void ieee80211_iter_keys(struct ieee80211_hw *hw,
552 struct ieee80211_vif *vif,
553 void (*iter)(struct ieee80211_hw *hw,
554 struct ieee80211_vif *vif,
555 struct ieee80211_sta *sta,
556 struct ieee80211_key_conf *key,
557 void *data),
558 void *iter_data)
559{
560 struct ieee80211_local *local = hw_to_local(hw);
561 struct ieee80211_key *key;
562 struct ieee80211_sub_if_data *sdata;
563
564 ASSERT_RTNL();
565
566 mutex_lock(&local->key_mtx);
567 if (vif) {
568 sdata = vif_to_sdata(vif);
569 list_for_each_entry(key, &sdata->key_list, list)
570 iter(hw, &sdata->vif,
571 key->sta ? &key->sta->sta : NULL,
572 &key->conf, iter_data);
573 } else {
574 list_for_each_entry(sdata, &local->interfaces, list)
575 list_for_each_entry(key, &sdata->key_list, list)
576 iter(hw, &sdata->vif,
577 key->sta ? &key->sta->sta : NULL,
578 &key->conf, iter_data);
579 }
580 mutex_unlock(&local->key_mtx);
581}
582EXPORT_SYMBOL(ieee80211_iter_keys);
583
Johannes Berg3b967662008-04-08 17:56:52 +0200584void ieee80211_disable_keys(struct ieee80211_sub_if_data *sdata)
585{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200586 struct ieee80211_key *key;
587
Johannes Berg3a245762008-04-09 16:45:37 +0200588 ASSERT_RTNL();
Johannes Berg3b967662008-04-08 17:56:52 +0200589
Johannes Bergad0e2b52010-06-01 10:19:19 +0200590 mutex_lock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200591
Johannes Bergad0e2b52010-06-01 10:19:19 +0200592 list_for_each_entry(key, &sdata->key_list, list)
593 ieee80211_key_disable_hw_accel(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200594
Johannes Bergad0e2b52010-06-01 10:19:19 +0200595 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg11a843b2007-08-28 17:01:55 -0400596}
597
598void ieee80211_free_keys(struct ieee80211_sub_if_data *sdata)
599{
600 struct ieee80211_key *key, *tmp;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100601
Johannes Bergad0e2b52010-06-01 10:19:19 +0200602 mutex_lock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200603
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200604 ieee80211_debugfs_key_remove_mgmt_default(sdata);
Johannes Berg11a843b2007-08-28 17:01:55 -0400605
606 list_for_each_entry_safe(key, tmp, &sdata->key_list, list)
Johannes Berg3a245762008-04-09 16:45:37 +0200607 __ieee80211_key_free(key);
Johannes Berg11a843b2007-08-28 17:01:55 -0400608
Johannes Bergf7e01042010-12-09 19:49:02 +0100609 ieee80211_debugfs_key_update_default(sdata);
610
Johannes Bergad0e2b52010-06-01 10:19:19 +0200611 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg11a843b2007-08-28 17:01:55 -0400612}
Johannes Bergc68f4b82011-07-05 16:35:41 +0200613
614
615void ieee80211_gtk_rekey_notify(struct ieee80211_vif *vif, const u8 *bssid,
616 const u8 *replay_ctr, gfp_t gfp)
617{
618 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
619
620 trace_api_gtk_rekey_notify(sdata, bssid, replay_ctr);
621
622 cfg80211_gtk_rekey_notify(sdata->dev, bssid, replay_ctr, gfp);
623}
624EXPORT_SYMBOL_GPL(ieee80211_gtk_rekey_notify);
Johannes Berg3ea542d2011-07-07 18:58:00 +0200625
626void ieee80211_get_key_tx_seq(struct ieee80211_key_conf *keyconf,
627 struct ieee80211_key_seq *seq)
628{
629 struct ieee80211_key *key;
630 u64 pn64;
631
632 if (WARN_ON(!(keyconf->flags & IEEE80211_KEY_FLAG_GENERATE_IV)))
633 return;
634
635 key = container_of(keyconf, struct ieee80211_key, conf);
636
637 switch (key->conf.cipher) {
638 case WLAN_CIPHER_SUITE_TKIP:
639 seq->tkip.iv32 = key->u.tkip.tx.iv32;
640 seq->tkip.iv16 = key->u.tkip.tx.iv16;
641 break;
642 case WLAN_CIPHER_SUITE_CCMP:
643 pn64 = atomic64_read(&key->u.ccmp.tx_pn);
644 seq->ccmp.pn[5] = pn64;
645 seq->ccmp.pn[4] = pn64 >> 8;
646 seq->ccmp.pn[3] = pn64 >> 16;
647 seq->ccmp.pn[2] = pn64 >> 24;
648 seq->ccmp.pn[1] = pn64 >> 32;
649 seq->ccmp.pn[0] = pn64 >> 40;
650 break;
651 case WLAN_CIPHER_SUITE_AES_CMAC:
652 pn64 = atomic64_read(&key->u.aes_cmac.tx_pn);
653 seq->ccmp.pn[5] = pn64;
654 seq->ccmp.pn[4] = pn64 >> 8;
655 seq->ccmp.pn[3] = pn64 >> 16;
656 seq->ccmp.pn[2] = pn64 >> 24;
657 seq->ccmp.pn[1] = pn64 >> 32;
658 seq->ccmp.pn[0] = pn64 >> 40;
659 break;
660 default:
661 WARN_ON(1);
662 }
663}
664EXPORT_SYMBOL(ieee80211_get_key_tx_seq);
665
666void ieee80211_get_key_rx_seq(struct ieee80211_key_conf *keyconf,
667 int tid, struct ieee80211_key_seq *seq)
668{
669 struct ieee80211_key *key;
670 const u8 *pn;
671
672 key = container_of(keyconf, struct ieee80211_key, conf);
673
674 switch (key->conf.cipher) {
675 case WLAN_CIPHER_SUITE_TKIP:
676 if (WARN_ON(tid < 0 || tid >= NUM_RX_DATA_QUEUES))
677 return;
678 seq->tkip.iv32 = key->u.tkip.rx[tid].iv32;
679 seq->tkip.iv16 = key->u.tkip.rx[tid].iv16;
680 break;
681 case WLAN_CIPHER_SUITE_CCMP:
682 if (WARN_ON(tid < -1 || tid >= NUM_RX_DATA_QUEUES))
683 return;
684 if (tid < 0)
685 pn = key->u.ccmp.rx_pn[NUM_RX_DATA_QUEUES];
686 else
687 pn = key->u.ccmp.rx_pn[tid];
688 memcpy(seq->ccmp.pn, pn, CCMP_PN_LEN);
689 break;
690 case WLAN_CIPHER_SUITE_AES_CMAC:
691 if (WARN_ON(tid != 0))
692 return;
693 pn = key->u.aes_cmac.rx_pn;
694 memcpy(seq->aes_cmac.pn, pn, CMAC_PN_LEN);
695 break;
696 }
697}
698EXPORT_SYMBOL(ieee80211_get_key_rx_seq);