blob: 87a89741432dce811cdb31168036788146f5721b [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
Johannes Bergdc822b52008-12-29 12:55:09 +010057static struct ieee80211_sta *get_sta_for_key(struct ieee80211_key *key)
Johannes Berg11a843b2007-08-28 17:01:55 -040058{
Johannes Berg11a843b2007-08-28 17:01:55 -040059 if (key->sta)
Johannes Bergdc822b52008-12-29 12:55:09 +010060 return &key->sta->sta;
Johannes Berg11a843b2007-08-28 17:01:55 -040061
Johannes Bergdc822b52008-12-29 12:55:09 +010062 return NULL;
Johannes Berg11a843b2007-08-28 17:01:55 -040063}
64
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +053065static void increment_tailroom_need_count(struct ieee80211_sub_if_data *sdata)
66{
67 /*
68 * When this count is zero, SKB resizing for allocating tailroom
69 * for IV or MMIC is skipped. But, this check has created two race
70 * cases in xmit path while transiting from zero count to one:
71 *
72 * 1. SKB resize was skipped because no key was added but just before
73 * the xmit key is added and SW encryption kicks off.
74 *
75 * 2. SKB resize was skipped because all the keys were hw planted but
76 * just before xmit one of the key is deleted and SW encryption kicks
77 * off.
78 *
79 * In both the above case SW encryption will find not enough space for
80 * tailroom and exits with WARN_ON. (See WARN_ONs at wpa.c)
81 *
82 * Solution has been explained at
83 * http://mid.gmane.org/1308590980.4322.19.camel@jlt3.sipsolutions.net
84 */
85
86 if (!sdata->crypto_tx_tailroom_needed_cnt++) {
87 /*
88 * Flush all XMIT packets currently using HW encryption or no
89 * encryption at all if the count transition is from 0 -> 1.
90 */
91 synchronize_net();
92 }
93}
94
Johannes Berg3ffc2a92010-08-27 14:26:52 +030095static int ieee80211_key_enable_hw_accel(struct ieee80211_key *key)
Johannes Berg11a843b2007-08-28 17:01:55 -040096{
Johannes Bergdc822b52008-12-29 12:55:09 +010097 struct ieee80211_sub_if_data *sdata;
98 struct ieee80211_sta *sta;
Johannes Berg11a843b2007-08-28 17:01:55 -040099 int ret;
100
Johannes Berg3b967662008-04-08 17:56:52 +0200101 might_sleep();
102
Johannes Berge31b8212010-10-05 19:39:30 +0200103 if (!key->local->ops->set_key)
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300104 goto out_unsupported;
Johannes Berg11a843b2007-08-28 17:01:55 -0400105
Johannes Bergad0e2b52010-06-01 10:19:19 +0200106 assert_key_lock(key->local);
107
Johannes Bergdc822b52008-12-29 12:55:09 +0100108 sta = get_sta_for_key(key);
109
Johannes Berge31b8212010-10-05 19:39:30 +0200110 /*
111 * If this is a per-STA GTK, check if it
112 * is supported; if not, return.
113 */
114 if (sta && !(key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE) &&
115 !(key->local->hw.flags & IEEE80211_HW_SUPPORTS_PER_STA_GTK))
116 goto out_unsupported;
117
Johannes Bergdc822b52008-12-29 12:55:09 +0100118 sdata = key->sdata;
Helmut Schaa18890d42010-11-19 08:11:01 +0100119 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
120 /*
121 * The driver doesn't know anything about VLAN interfaces.
122 * Hence, don't send GTKs for VLAN interfaces to the driver.
123 */
124 if (!(key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE))
125 goto out_unsupported;
Johannes Bergdc822b52008-12-29 12:55:09 +0100126 sdata = container_of(sdata->bss,
127 struct ieee80211_sub_if_data,
128 u.ap);
Helmut Schaa18890d42010-11-19 08:11:01 +0100129 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400130
Johannes Berg12375ef2009-11-25 20:30:31 +0100131 ret = drv_set_key(key->local, SET_KEY, sdata, sta, &key->conf);
Johannes Berg11a843b2007-08-28 17:01:55 -0400132
Johannes Berge31b8212010-10-05 19:39:30 +0200133 if (!ret) {
Johannes Berg11a843b2007-08-28 17:01:55 -0400134 key->flags |= KEY_FLAG_UPLOADED_TO_HARDWARE;
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530135
136 if (!((key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC) ||
Arik Nemtsov077a9152011-10-23 08:21:41 +0200137 (key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV) ||
138 (key->conf.flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE)))
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530139 sdata->crypto_tx_tailroom_needed_cnt--;
140
Arik Nemtsov077a9152011-10-23 08:21:41 +0200141 WARN_ON((key->conf.flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE) &&
142 (key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV));
143
Johannes Berge31b8212010-10-05 19:39:30 +0200144 return 0;
145 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400146
Johannes Berge31b8212010-10-05 19:39:30 +0200147 if (ret != -ENOSPC && ret != -EOPNOTSUPP)
Joe Perches0fb9a9e2010-08-20 16:25:38 -0700148 wiphy_err(key->local->hw.wiphy,
149 "failed to set key (%d, %pM) to hardware (%d)\n",
150 key->conf.keyidx, sta ? sta->addr : bcast_addr, ret);
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300151
Johannes Berge31b8212010-10-05 19:39:30 +0200152 out_unsupported:
153 switch (key->conf.cipher) {
154 case WLAN_CIPHER_SUITE_WEP40:
155 case WLAN_CIPHER_SUITE_WEP104:
156 case WLAN_CIPHER_SUITE_TKIP:
157 case WLAN_CIPHER_SUITE_CCMP:
158 case WLAN_CIPHER_SUITE_AES_CMAC:
159 /* all of these we can do in software */
160 return 0;
161 default:
162 return -EINVAL;
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300163 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400164}
165
166static void ieee80211_key_disable_hw_accel(struct ieee80211_key *key)
167{
Johannes Bergdc822b52008-12-29 12:55:09 +0100168 struct ieee80211_sub_if_data *sdata;
169 struct ieee80211_sta *sta;
Johannes Berg11a843b2007-08-28 17:01:55 -0400170 int ret;
171
Johannes Berg3b967662008-04-08 17:56:52 +0200172 might_sleep();
173
Johannes Bergdb4d1162008-02-25 16:27:45 +0100174 if (!key || !key->local->ops->set_key)
Johannes Berg11a843b2007-08-28 17:01:55 -0400175 return;
176
Johannes Bergad0e2b52010-06-01 10:19:19 +0200177 assert_key_lock(key->local);
178
179 if (!(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
Johannes Berg11a843b2007-08-28 17:01:55 -0400180 return;
181
Johannes Bergdc822b52008-12-29 12:55:09 +0100182 sta = get_sta_for_key(key);
183 sdata = key->sdata;
184
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530185 if (!((key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC) ||
Arik Nemtsov077a9152011-10-23 08:21:41 +0200186 (key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV) ||
187 (key->conf.flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE)))
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530188 increment_tailroom_need_count(sdata);
189
Johannes Bergdc822b52008-12-29 12:55:09 +0100190 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
191 sdata = container_of(sdata->bss,
192 struct ieee80211_sub_if_data,
193 u.ap);
Johannes Berg11a843b2007-08-28 17:01:55 -0400194
Johannes Berg12375ef2009-11-25 20:30:31 +0100195 ret = drv_set_key(key->local, DISABLE_KEY, sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200196 sta, &key->conf);
Johannes Berg11a843b2007-08-28 17:01:55 -0400197
198 if (ret)
Joe Perches0fb9a9e2010-08-20 16:25:38 -0700199 wiphy_err(key->local->hw.wiphy,
200 "failed to remove key (%d, %pM) from hardware (%d)\n",
201 key->conf.keyidx, sta ? sta->addr : bcast_addr, ret);
Johannes Berg11a843b2007-08-28 17:01:55 -0400202
Johannes Berg3b967662008-04-08 17:56:52 +0200203 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
Johannes Berg3b967662008-04-08 17:56:52 +0200204}
205
Johannes Berge31b8212010-10-05 19:39:30 +0200206void ieee80211_key_removed(struct ieee80211_key_conf *key_conf)
207{
208 struct ieee80211_key *key;
209
210 key = container_of(key_conf, struct ieee80211_key, conf);
211
212 might_sleep();
213 assert_key_lock(key->local);
214
215 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
216
217 /*
218 * Flush TX path to avoid attempts to use this key
219 * after this function returns. Until then, drivers
220 * must be prepared to handle the key.
221 */
222 synchronize_rcu();
223}
224EXPORT_SYMBOL_GPL(ieee80211_key_removed);
225
Johannes Berg3b967662008-04-08 17:56:52 +0200226static void __ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata,
Johannes Bergf7e01042010-12-09 19:49:02 +0100227 int idx, bool uni, bool multi)
Johannes Berg3b967662008-04-08 17:56:52 +0200228{
229 struct ieee80211_key *key = NULL;
230
Johannes Bergad0e2b52010-06-01 10:19:19 +0200231 assert_key_lock(sdata->local);
232
Johannes Berg3b967662008-04-08 17:56:52 +0200233 if (idx >= 0 && idx < NUM_DEFAULT_KEYS)
Johannes Berg40b275b2011-05-13 14:15:49 +0200234 key = key_mtx_dereference(sdata->local, sdata->keys[idx]);
Johannes Berg3b967662008-04-08 17:56:52 +0200235
Johannes Bergf7e01042010-12-09 19:49:02 +0100236 if (uni)
237 rcu_assign_pointer(sdata->default_unicast_key, key);
238 if (multi)
239 rcu_assign_pointer(sdata->default_multicast_key, key);
Johannes Berg3b967662008-04-08 17:56:52 +0200240
Johannes Bergf7e01042010-12-09 19:49:02 +0100241 ieee80211_debugfs_key_update_default(sdata);
Johannes Berg3b967662008-04-08 17:56:52 +0200242}
243
Johannes Bergf7e01042010-12-09 19:49:02 +0100244void ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata, int idx,
245 bool uni, bool multi)
Johannes Berg3b967662008-04-08 17:56:52 +0200246{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200247 mutex_lock(&sdata->local->key_mtx);
Johannes Bergf7e01042010-12-09 19:49:02 +0100248 __ieee80211_set_default_key(sdata, idx, uni, multi);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200249 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200250}
251
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200252static void
253__ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata, int idx)
254{
255 struct ieee80211_key *key = NULL;
256
Johannes Bergad0e2b52010-06-01 10:19:19 +0200257 assert_key_lock(sdata->local);
258
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200259 if (idx >= NUM_DEFAULT_KEYS &&
260 idx < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
Johannes Berg40b275b2011-05-13 14:15:49 +0200261 key = key_mtx_dereference(sdata->local, sdata->keys[idx]);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200262
263 rcu_assign_pointer(sdata->default_mgmt_key, key);
264
Johannes Bergf7e01042010-12-09 19:49:02 +0100265 ieee80211_debugfs_key_update_default(sdata);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200266}
267
268void ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata,
269 int idx)
270{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200271 mutex_lock(&sdata->local->key_mtx);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200272 __ieee80211_set_default_mgmt_key(sdata, idx);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200273 mutex_unlock(&sdata->local->key_mtx);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200274}
275
Johannes Berg3b967662008-04-08 17:56:52 +0200276
277static void __ieee80211_key_replace(struct ieee80211_sub_if_data *sdata,
278 struct sta_info *sta,
Johannes Berge31b8212010-10-05 19:39:30 +0200279 bool pairwise,
Johannes Berg3b967662008-04-08 17:56:52 +0200280 struct ieee80211_key *old,
281 struct ieee80211_key *new)
282{
Johannes Bergf7e01042010-12-09 19:49:02 +0100283 int idx;
284 bool defunikey, defmultikey, defmgmtkey;
Johannes Berg3b967662008-04-08 17:56:52 +0200285
286 if (new)
Johannes Bergf850e002011-07-13 19:50:53 +0200287 list_add_tail(&new->list, &sdata->key_list);
Johannes Berg3b967662008-04-08 17:56:52 +0200288
Johannes Berge31b8212010-10-05 19:39:30 +0200289 if (sta && pairwise) {
290 rcu_assign_pointer(sta->ptk, new);
291 } else if (sta) {
292 if (old)
293 idx = old->conf.keyidx;
294 else
295 idx = new->conf.keyidx;
296 rcu_assign_pointer(sta->gtk[idx], new);
Johannes Berg3b967662008-04-08 17:56:52 +0200297 } else {
298 WARN_ON(new && old && new->conf.keyidx != old->conf.keyidx);
299
300 if (old)
301 idx = old->conf.keyidx;
302 else
303 idx = new->conf.keyidx;
304
Johannes Berg40b275b2011-05-13 14:15:49 +0200305 defunikey = old &&
306 old == key_mtx_dereference(sdata->local,
307 sdata->default_unicast_key);
308 defmultikey = old &&
309 old == key_mtx_dereference(sdata->local,
310 sdata->default_multicast_key);
311 defmgmtkey = old &&
312 old == key_mtx_dereference(sdata->local,
313 sdata->default_mgmt_key);
Johannes Berg3b967662008-04-08 17:56:52 +0200314
Johannes Bergf7e01042010-12-09 19:49:02 +0100315 if (defunikey && !new)
316 __ieee80211_set_default_key(sdata, -1, true, false);
317 if (defmultikey && !new)
318 __ieee80211_set_default_key(sdata, -1, false, true);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200319 if (defmgmtkey && !new)
320 __ieee80211_set_default_mgmt_key(sdata, -1);
Johannes Berg3b967662008-04-08 17:56:52 +0200321
322 rcu_assign_pointer(sdata->keys[idx], new);
Johannes Bergf7e01042010-12-09 19:49:02 +0100323 if (defunikey && new)
324 __ieee80211_set_default_key(sdata, new->conf.keyidx,
325 true, false);
326 if (defmultikey && new)
327 __ieee80211_set_default_key(sdata, new->conf.keyidx,
328 false, true);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200329 if (defmgmtkey && new)
330 __ieee80211_set_default_mgmt_key(sdata,
331 new->conf.keyidx);
Johannes Berg3b967662008-04-08 17:56:52 +0200332 }
333
Johannes Bergb5c34f62011-01-03 19:51:09 +0100334 if (old)
335 list_del(&old->list);
Johannes Berg11a843b2007-08-28 17:01:55 -0400336}
337
Johannes Berg97359d12010-08-10 09:46:38 +0200338struct ieee80211_key *ieee80211_key_alloc(u32 cipher, int idx, size_t key_len,
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300339 const u8 *key_data,
340 size_t seq_len, const u8 *seq)
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200341{
342 struct ieee80211_key *key;
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100343 int i, j, err;
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200344
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200345 BUG_ON(idx < 0 || idx >= NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS);
Johannes Berg11a843b2007-08-28 17:01:55 -0400346
347 key = kzalloc(sizeof(struct ieee80211_key) + key_len, GFP_KERNEL);
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200348 if (!key)
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100349 return ERR_PTR(-ENOMEM);
Johannes Berg11a843b2007-08-28 17:01:55 -0400350
351 /*
352 * Default to software encryption; we'll later upload the
353 * key to the hardware if possible.
354 */
Johannes Berg11a843b2007-08-28 17:01:55 -0400355 key->conf.flags = 0;
356 key->flags = 0;
357
Johannes Berg97359d12010-08-10 09:46:38 +0200358 key->conf.cipher = cipher;
Johannes Berg11a843b2007-08-28 17:01:55 -0400359 key->conf.keyidx = idx;
360 key->conf.keylen = key_len;
Johannes Berg97359d12010-08-10 09:46:38 +0200361 switch (cipher) {
362 case WLAN_CIPHER_SUITE_WEP40:
363 case WLAN_CIPHER_SUITE_WEP104:
Felix Fietkau76708de2008-10-05 18:02:48 +0200364 key->conf.iv_len = WEP_IV_LEN;
365 key->conf.icv_len = WEP_ICV_LEN;
366 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200367 case WLAN_CIPHER_SUITE_TKIP:
Felix Fietkau76708de2008-10-05 18:02:48 +0200368 key->conf.iv_len = TKIP_IV_LEN;
369 key->conf.icv_len = TKIP_ICV_LEN;
Jouni Malinen9f26a952009-05-15 12:38:32 +0300370 if (seq) {
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300371 for (i = 0; i < NUM_RX_DATA_QUEUES; i++) {
372 key->u.tkip.rx[i].iv32 =
373 get_unaligned_le32(&seq[2]);
374 key->u.tkip.rx[i].iv16 =
375 get_unaligned_le16(seq);
376 }
377 }
Johannes Berg523b02e2011-07-07 22:28:01 +0200378 spin_lock_init(&key->u.tkip.txlock);
Felix Fietkau76708de2008-10-05 18:02:48 +0200379 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200380 case WLAN_CIPHER_SUITE_CCMP:
Felix Fietkau76708de2008-10-05 18:02:48 +0200381 key->conf.iv_len = CCMP_HDR_LEN;
382 key->conf.icv_len = CCMP_MIC_LEN;
Jouni Malinen9f26a952009-05-15 12:38:32 +0300383 if (seq) {
Jouni Malinen91902522010-06-11 10:27:33 -0700384 for (i = 0; i < NUM_RX_DATA_QUEUES + 1; i++)
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300385 for (j = 0; j < CCMP_PN_LEN; j++)
386 key->u.ccmp.rx_pn[i][j] =
387 seq[CCMP_PN_LEN - j - 1];
388 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400389 /*
390 * Initialize AES key state here as an optimization so that
391 * it does not need to be initialized for every packet.
392 */
393 key->u.ccmp.tfm = ieee80211_aes_key_setup_encrypt(key_data);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100394 if (IS_ERR(key->u.ccmp.tfm)) {
395 err = PTR_ERR(key->u.ccmp.tfm);
Johannes Berg3b967662008-04-08 17:56:52 +0200396 kfree(key);
Petr Å tetiar1f951a72011-03-27 13:31:26 +0200397 return ERR_PTR(err);
Johannes Berg11a843b2007-08-28 17:01:55 -0400398 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200399 break;
400 case WLAN_CIPHER_SUITE_AES_CMAC:
401 key->conf.iv_len = 0;
402 key->conf.icv_len = sizeof(struct ieee80211_mmie);
403 if (seq)
404 for (j = 0; j < 6; j++)
405 key->u.aes_cmac.rx_pn[j] = seq[6 - j - 1];
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200406 /*
407 * Initialize AES key state here as an optimization so that
408 * it does not need to be initialized for every packet.
409 */
410 key->u.aes_cmac.tfm =
411 ieee80211_aes_cmac_key_setup(key_data);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100412 if (IS_ERR(key->u.aes_cmac.tfm)) {
413 err = PTR_ERR(key->u.aes_cmac.tfm);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200414 kfree(key);
Petr Å tetiar1f951a72011-03-27 13:31:26 +0200415 return ERR_PTR(err);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200416 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200417 break;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200418 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200419 memcpy(key->conf.key, key_data, key_len);
420 INIT_LIST_HEAD(&key->list);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200421
Johannes Bergdb4d1162008-02-25 16:27:45 +0100422 return key;
423}
Johannes Berg11a843b2007-08-28 17:01:55 -0400424
Johannes Bergad0e2b52010-06-01 10:19:19 +0200425static void __ieee80211_key_destroy(struct ieee80211_key *key)
426{
427 if (!key)
428 return;
429
Johannes Bergd2460f42011-01-03 19:42:24 +0100430 /*
431 * Synchronize so the TX path can no longer be using
432 * this key before we free/remove it.
433 */
434 synchronize_rcu();
435
Jouni Malinen32162a42010-07-26 15:52:03 -0700436 if (key->local)
437 ieee80211_key_disable_hw_accel(key);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200438
Johannes Berg97359d12010-08-10 09:46:38 +0200439 if (key->conf.cipher == WLAN_CIPHER_SUITE_CCMP)
Johannes Bergad0e2b52010-06-01 10:19:19 +0200440 ieee80211_aes_key_free(key->u.ccmp.tfm);
Johannes Berg97359d12010-08-10 09:46:38 +0200441 if (key->conf.cipher == WLAN_CIPHER_SUITE_AES_CMAC)
Johannes Bergad0e2b52010-06-01 10:19:19 +0200442 ieee80211_aes_cmac_key_free(key->u.aes_cmac.tfm);
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530443 if (key->local) {
Jouni Malinen32162a42010-07-26 15:52:03 -0700444 ieee80211_debugfs_key_remove(key);
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530445 key->sdata->crypto_tx_tailroom_needed_cnt--;
446 }
Johannes Bergad0e2b52010-06-01 10:19:19 +0200447
448 kfree(key);
449}
450
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300451int ieee80211_key_link(struct ieee80211_key *key,
452 struct ieee80211_sub_if_data *sdata,
453 struct sta_info *sta)
Johannes Bergdb4d1162008-02-25 16:27:45 +0100454{
455 struct ieee80211_key *old_key;
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300456 int idx, ret;
Mariusz Kozlowski67aa0302011-03-26 18:58:51 +0100457 bool pairwise;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100458
Johannes Bergdb4d1162008-02-25 16:27:45 +0100459 BUG_ON(!sdata);
460 BUG_ON(!key);
461
Mariusz Kozlowski67aa0302011-03-26 18:58:51 +0100462 pairwise = key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100463 idx = key->conf.keyidx;
464 key->local = sdata->local;
465 key->sdata = sdata;
466 key->sta = sta;
467
Johannes Berg11a843b2007-08-28 17:01:55 -0400468 if (sta) {
Johannes Berg11a843b2007-08-28 17:01:55 -0400469 /*
470 * some hardware cannot handle TKIP with QoS, so
471 * we indicate whether QoS could be in use.
472 */
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200473 if (test_sta_flag(sta, WLAN_STA_WME))
Johannes Berg11a843b2007-08-28 17:01:55 -0400474 key->conf.flags |= IEEE80211_KEY_FLAG_WMM_STA;
475 } else {
Johannes Berg05c914f2008-09-11 00:01:58 +0200476 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Johannes Berg11a843b2007-08-28 17:01:55 -0400477 struct sta_info *ap;
478
Johannes Berg3b967662008-04-08 17:56:52 +0200479 /*
Johannes Bergb5c34f62011-01-03 19:51:09 +0100480 * We're getting a sta pointer in, so must be under
481 * appropriate locking for sta_info_get().
Johannes Berg3b967662008-04-08 17:56:52 +0200482 */
Johannes Bergd0709a62008-02-25 16:27:46 +0100483
Johannes Berg11a843b2007-08-28 17:01:55 -0400484 /* same here, the AP could be using QoS */
Johannes Bergabe60632009-11-25 17:46:18 +0100485 ap = sta_info_get(key->sdata, key->sdata->u.mgd.bssid);
Johannes Berg11a843b2007-08-28 17:01:55 -0400486 if (ap) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +0200487 if (test_sta_flag(ap, WLAN_STA_WME))
Johannes Berg11a843b2007-08-28 17:01:55 -0400488 key->conf.flags |=
489 IEEE80211_KEY_FLAG_WMM_STA;
Johannes Berg11a843b2007-08-28 17:01:55 -0400490 }
491 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400492 }
493
Johannes Bergad0e2b52010-06-01 10:19:19 +0200494 mutex_lock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200495
Johannes Berge31b8212010-10-05 19:39:30 +0200496 if (sta && pairwise)
Johannes Berg40b275b2011-05-13 14:15:49 +0200497 old_key = key_mtx_dereference(sdata->local, sta->ptk);
Johannes Berge31b8212010-10-05 19:39:30 +0200498 else if (sta)
Johannes Berg40b275b2011-05-13 14:15:49 +0200499 old_key = key_mtx_dereference(sdata->local, sta->gtk[idx]);
Johannes Bergd4e46a32007-09-14 11:10:24 -0400500 else
Johannes Berg40b275b2011-05-13 14:15:49 +0200501 old_key = key_mtx_dereference(sdata->local, sdata->keys[idx]);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100502
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530503 increment_tailroom_need_count(sdata);
504
Johannes Berge31b8212010-10-05 19:39:30 +0200505 __ieee80211_key_replace(sdata, sta, pairwise, old_key, key);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200506 __ieee80211_key_destroy(old_key);
Johannes Bergd4e46a32007-09-14 11:10:24 -0400507
Johannes Bergad0e2b52010-06-01 10:19:19 +0200508 ieee80211_debugfs_key_add(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200509
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300510 ret = ieee80211_key_enable_hw_accel(key);
Johannes Berg523d2f62009-07-01 21:26:43 +0200511
Johannes Bergad0e2b52010-06-01 10:19:19 +0200512 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300513
514 return ret;
Johannes Berg3a245762008-04-09 16:45:37 +0200515}
516
Johannes Berg5c0c3642011-05-12 14:31:49 +0200517void __ieee80211_key_free(struct ieee80211_key *key)
Johannes Berg3a245762008-04-09 16:45:37 +0200518{
Johannes Berg5c0c3642011-05-12 14:31:49 +0200519 if (!key)
520 return;
521
Johannes Berg3a245762008-04-09 16:45:37 +0200522 /*
523 * Replace key with nothingness if it was ever used.
524 */
525 if (key->sdata)
526 __ieee80211_key_replace(key->sdata, key->sta,
Johannes Berge31b8212010-10-05 19:39:30 +0200527 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE,
528 key, NULL);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200529 __ieee80211_key_destroy(key);
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200530}
531
Jouni Malinen32162a42010-07-26 15:52:03 -0700532void ieee80211_key_free(struct ieee80211_local *local,
533 struct ieee80211_key *key)
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200534{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200535 mutex_lock(&local->key_mtx);
Johannes Berg3a245762008-04-09 16:45:37 +0200536 __ieee80211_key_free(key);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200537 mutex_unlock(&local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200538}
539
540void ieee80211_enable_keys(struct ieee80211_sub_if_data *sdata)
541{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200542 struct ieee80211_key *key;
543
Johannes Berg3a245762008-04-09 16:45:37 +0200544 ASSERT_RTNL();
Johannes Berg3b967662008-04-08 17:56:52 +0200545
Johannes Berg9607e6b2009-12-23 13:15:31 +0100546 if (WARN_ON(!ieee80211_sdata_running(sdata)))
Johannes Berg3b967662008-04-08 17:56:52 +0200547 return;
548
Johannes Bergad0e2b52010-06-01 10:19:19 +0200549 mutex_lock(&sdata->local->key_mtx);
550
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530551 sdata->crypto_tx_tailroom_needed_cnt = 0;
552
553 list_for_each_entry(key, &sdata->key_list, list) {
554 increment_tailroom_need_count(sdata);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200555 ieee80211_key_enable_hw_accel(key);
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530556 }
Johannes Bergad0e2b52010-06-01 10:19:19 +0200557
558 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200559}
560
Johannes Berg830af022011-07-05 16:35:39 +0200561void ieee80211_iter_keys(struct ieee80211_hw *hw,
562 struct ieee80211_vif *vif,
563 void (*iter)(struct ieee80211_hw *hw,
564 struct ieee80211_vif *vif,
565 struct ieee80211_sta *sta,
566 struct ieee80211_key_conf *key,
567 void *data),
568 void *iter_data)
569{
570 struct ieee80211_local *local = hw_to_local(hw);
571 struct ieee80211_key *key;
572 struct ieee80211_sub_if_data *sdata;
573
574 ASSERT_RTNL();
575
576 mutex_lock(&local->key_mtx);
577 if (vif) {
578 sdata = vif_to_sdata(vif);
579 list_for_each_entry(key, &sdata->key_list, list)
580 iter(hw, &sdata->vif,
581 key->sta ? &key->sta->sta : NULL,
582 &key->conf, iter_data);
583 } else {
584 list_for_each_entry(sdata, &local->interfaces, list)
585 list_for_each_entry(key, &sdata->key_list, list)
586 iter(hw, &sdata->vif,
587 key->sta ? &key->sta->sta : NULL,
588 &key->conf, iter_data);
589 }
590 mutex_unlock(&local->key_mtx);
591}
592EXPORT_SYMBOL(ieee80211_iter_keys);
593
Johannes Berg3b967662008-04-08 17:56:52 +0200594void ieee80211_disable_keys(struct ieee80211_sub_if_data *sdata)
595{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200596 struct ieee80211_key *key;
597
Johannes Berg3a245762008-04-09 16:45:37 +0200598 ASSERT_RTNL();
Johannes Berg3b967662008-04-08 17:56:52 +0200599
Johannes Bergad0e2b52010-06-01 10:19:19 +0200600 mutex_lock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200601
Johannes Bergad0e2b52010-06-01 10:19:19 +0200602 list_for_each_entry(key, &sdata->key_list, list)
603 ieee80211_key_disable_hw_accel(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200604
Johannes Bergad0e2b52010-06-01 10:19:19 +0200605 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg11a843b2007-08-28 17:01:55 -0400606}
607
608void ieee80211_free_keys(struct ieee80211_sub_if_data *sdata)
609{
610 struct ieee80211_key *key, *tmp;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100611
Johannes Bergad0e2b52010-06-01 10:19:19 +0200612 mutex_lock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200613
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200614 ieee80211_debugfs_key_remove_mgmt_default(sdata);
Johannes Berg11a843b2007-08-28 17:01:55 -0400615
616 list_for_each_entry_safe(key, tmp, &sdata->key_list, list)
Johannes Berg3a245762008-04-09 16:45:37 +0200617 __ieee80211_key_free(key);
Johannes Berg11a843b2007-08-28 17:01:55 -0400618
Johannes Bergf7e01042010-12-09 19:49:02 +0100619 ieee80211_debugfs_key_update_default(sdata);
620
Johannes Bergad0e2b52010-06-01 10:19:19 +0200621 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg11a843b2007-08-28 17:01:55 -0400622}
Johannes Bergc68f4b82011-07-05 16:35:41 +0200623
624
625void ieee80211_gtk_rekey_notify(struct ieee80211_vif *vif, const u8 *bssid,
626 const u8 *replay_ctr, gfp_t gfp)
627{
628 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
629
630 trace_api_gtk_rekey_notify(sdata, bssid, replay_ctr);
631
632 cfg80211_gtk_rekey_notify(sdata->dev, bssid, replay_ctr, gfp);
633}
634EXPORT_SYMBOL_GPL(ieee80211_gtk_rekey_notify);
Johannes Berg3ea542d2011-07-07 18:58:00 +0200635
636void ieee80211_get_key_tx_seq(struct ieee80211_key_conf *keyconf,
637 struct ieee80211_key_seq *seq)
638{
639 struct ieee80211_key *key;
640 u64 pn64;
641
642 if (WARN_ON(!(keyconf->flags & IEEE80211_KEY_FLAG_GENERATE_IV)))
643 return;
644
645 key = container_of(keyconf, struct ieee80211_key, conf);
646
647 switch (key->conf.cipher) {
648 case WLAN_CIPHER_SUITE_TKIP:
649 seq->tkip.iv32 = key->u.tkip.tx.iv32;
650 seq->tkip.iv16 = key->u.tkip.tx.iv16;
651 break;
652 case WLAN_CIPHER_SUITE_CCMP:
653 pn64 = atomic64_read(&key->u.ccmp.tx_pn);
654 seq->ccmp.pn[5] = pn64;
655 seq->ccmp.pn[4] = pn64 >> 8;
656 seq->ccmp.pn[3] = pn64 >> 16;
657 seq->ccmp.pn[2] = pn64 >> 24;
658 seq->ccmp.pn[1] = pn64 >> 32;
659 seq->ccmp.pn[0] = pn64 >> 40;
660 break;
661 case WLAN_CIPHER_SUITE_AES_CMAC:
662 pn64 = atomic64_read(&key->u.aes_cmac.tx_pn);
663 seq->ccmp.pn[5] = pn64;
664 seq->ccmp.pn[4] = pn64 >> 8;
665 seq->ccmp.pn[3] = pn64 >> 16;
666 seq->ccmp.pn[2] = pn64 >> 24;
667 seq->ccmp.pn[1] = pn64 >> 32;
668 seq->ccmp.pn[0] = pn64 >> 40;
669 break;
670 default:
671 WARN_ON(1);
672 }
673}
674EXPORT_SYMBOL(ieee80211_get_key_tx_seq);
675
676void ieee80211_get_key_rx_seq(struct ieee80211_key_conf *keyconf,
677 int tid, struct ieee80211_key_seq *seq)
678{
679 struct ieee80211_key *key;
680 const u8 *pn;
681
682 key = container_of(keyconf, struct ieee80211_key, conf);
683
684 switch (key->conf.cipher) {
685 case WLAN_CIPHER_SUITE_TKIP:
686 if (WARN_ON(tid < 0 || tid >= NUM_RX_DATA_QUEUES))
687 return;
688 seq->tkip.iv32 = key->u.tkip.rx[tid].iv32;
689 seq->tkip.iv16 = key->u.tkip.rx[tid].iv16;
690 break;
691 case WLAN_CIPHER_SUITE_CCMP:
692 if (WARN_ON(tid < -1 || tid >= NUM_RX_DATA_QUEUES))
693 return;
694 if (tid < 0)
695 pn = key->u.ccmp.rx_pn[NUM_RX_DATA_QUEUES];
696 else
697 pn = key->u.ccmp.rx_pn[tid];
698 memcpy(seq->ccmp.pn, pn, CCMP_PN_LEN);
699 break;
700 case WLAN_CIPHER_SUITE_AES_CMAC:
701 if (WARN_ON(tid != 0))
702 return;
703 pn = key->u.aes_cmac.rx_pn;
704 memcpy(seq->aes_cmac.pn, pn, CMAC_PN_LEN);
705 break;
706 }
707}
708EXPORT_SYMBOL(ieee80211_get_key_rx_seq);