blob: b510721e3b3d78d55153d8cb217693403d59054b [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>
Johannes Berg1f5a7e42007-07-27 15:43:23 +020018#include <net/mac80211.h>
19#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020020#include "driver-ops.h"
Johannes Berg1f5a7e42007-07-27 15:43:23 +020021#include "debugfs_key.h"
22#include "aes_ccm.h"
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +020023#include "aes_cmac.h"
Johannes Berg1f5a7e42007-07-27 15:43:23 +020024
Johannes Berg11a843b2007-08-28 17:01:55 -040025
Johannes Bergdbbea672008-02-26 14:34:06 +010026/**
27 * DOC: Key handling basics
Johannes Berg11a843b2007-08-28 17:01:55 -040028 *
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 *
Johannes Bergb5c34f62011-01-03 19:51:09 +010033 * Hardware acceleration is done on a best-effort basis for algorithms
34 * that are implemented in software, for each key the hardware is asked
35 * to enable that key for offloading but if it cannot do that the key is
36 * simply kept for software encryption (unless it is for an algorithm
37 * that isn't implemented in software).
38 * There is currently no way of knowing whether a key is handled in SW
39 * or HW except by looking into debugfs.
Johannes Berg11a843b2007-08-28 17:01:55 -040040 *
Johannes Bergb5c34f62011-01-03 19:51:09 +010041 * All key management is internally protected by a mutex. Within all
42 * other parts of mac80211, key references are, just as STA structure
43 * references, protected by RCU. Note, however, that some things are
44 * unprotected, namely the key->sta dereferences within the hardware
45 * acceleration functions. This means that sta_info_destroy() must
46 * remove the key which waits for an RCU grace period.
Johannes Berg11a843b2007-08-28 17:01:55 -040047 */
48
49static const u8 bcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
Johannes Berg11a843b2007-08-28 17:01:55 -040050
Johannes Bergad0e2b52010-06-01 10:19:19 +020051static void assert_key_lock(struct ieee80211_local *local)
Johannes Berg3b967662008-04-08 17:56:52 +020052{
Johannes Berg46a5eba2010-09-15 13:28:15 +020053 lockdep_assert_held(&local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +020054}
55
Johannes Bergdc822b52008-12-29 12:55:09 +010056static struct ieee80211_sta *get_sta_for_key(struct ieee80211_key *key)
Johannes Berg11a843b2007-08-28 17:01:55 -040057{
Johannes Berg11a843b2007-08-28 17:01:55 -040058 if (key->sta)
Johannes Bergdc822b52008-12-29 12:55:09 +010059 return &key->sta->sta;
Johannes Berg11a843b2007-08-28 17:01:55 -040060
Johannes Bergdc822b52008-12-29 12:55:09 +010061 return NULL;
Johannes Berg11a843b2007-08-28 17:01:55 -040062}
63
Johannes Berg3ffc2a92010-08-27 14:26:52 +030064static int ieee80211_key_enable_hw_accel(struct ieee80211_key *key)
Johannes Berg11a843b2007-08-28 17:01:55 -040065{
Johannes Bergdc822b52008-12-29 12:55:09 +010066 struct ieee80211_sub_if_data *sdata;
67 struct ieee80211_sta *sta;
Johannes Berg11a843b2007-08-28 17:01:55 -040068 int ret;
69
Johannes Berg3b967662008-04-08 17:56:52 +020070 might_sleep();
71
Johannes Berge31b8212010-10-05 19:39:30 +020072 if (!key->local->ops->set_key)
Johannes Berg3ffc2a92010-08-27 14:26:52 +030073 goto out_unsupported;
Johannes Berg11a843b2007-08-28 17:01:55 -040074
Johannes Bergad0e2b52010-06-01 10:19:19 +020075 assert_key_lock(key->local);
76
Johannes Bergdc822b52008-12-29 12:55:09 +010077 sta = get_sta_for_key(key);
78
Johannes Berge31b8212010-10-05 19:39:30 +020079 /*
80 * If this is a per-STA GTK, check if it
81 * is supported; if not, return.
82 */
83 if (sta && !(key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE) &&
84 !(key->local->hw.flags & IEEE80211_HW_SUPPORTS_PER_STA_GTK))
85 goto out_unsupported;
86
Johannes Bergdc822b52008-12-29 12:55:09 +010087 sdata = key->sdata;
Helmut Schaa18890d42010-11-19 08:11:01 +010088 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
89 /*
90 * The driver doesn't know anything about VLAN interfaces.
91 * Hence, don't send GTKs for VLAN interfaces to the driver.
92 */
93 if (!(key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE))
94 goto out_unsupported;
Johannes Bergdc822b52008-12-29 12:55:09 +010095 sdata = container_of(sdata->bss,
96 struct ieee80211_sub_if_data,
97 u.ap);
Helmut Schaa18890d42010-11-19 08:11:01 +010098 }
Johannes Berg11a843b2007-08-28 17:01:55 -040099
Johannes Berg12375ef2009-11-25 20:30:31 +0100100 ret = drv_set_key(key->local, SET_KEY, sdata, sta, &key->conf);
Johannes Berg11a843b2007-08-28 17:01:55 -0400101
Johannes Berge31b8212010-10-05 19:39:30 +0200102 if (!ret) {
Johannes Berg11a843b2007-08-28 17:01:55 -0400103 key->flags |= KEY_FLAG_UPLOADED_TO_HARDWARE;
Yogesh Ashok Powaraac6af52011-04-27 18:40:29 +0530104
Mohammed Shafi Shajakhaneaef6a92011-05-05 10:59:24 +0530105 if (!((key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC) ||
106 (key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV)))
Yogesh Ashok Powaraac6af52011-04-27 18:40:29 +0530107 key->local->crypto_tx_tailroom_needed_cnt--;
108
Johannes Berge31b8212010-10-05 19:39:30 +0200109 return 0;
110 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400111
Johannes Berge31b8212010-10-05 19:39:30 +0200112 if (ret != -ENOSPC && ret != -EOPNOTSUPP)
Joe Perches0fb9a9e2010-08-20 16:25:38 -0700113 wiphy_err(key->local->hw.wiphy,
114 "failed to set key (%d, %pM) to hardware (%d)\n",
115 key->conf.keyidx, sta ? sta->addr : bcast_addr, ret);
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300116
Johannes Berge31b8212010-10-05 19:39:30 +0200117 out_unsupported:
118 switch (key->conf.cipher) {
119 case WLAN_CIPHER_SUITE_WEP40:
120 case WLAN_CIPHER_SUITE_WEP104:
121 case WLAN_CIPHER_SUITE_TKIP:
122 case WLAN_CIPHER_SUITE_CCMP:
123 case WLAN_CIPHER_SUITE_AES_CMAC:
124 /* all of these we can do in software */
125 return 0;
126 default:
127 return -EINVAL;
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300128 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400129}
130
131static void ieee80211_key_disable_hw_accel(struct ieee80211_key *key)
132{
Johannes Bergdc822b52008-12-29 12:55:09 +0100133 struct ieee80211_sub_if_data *sdata;
134 struct ieee80211_sta *sta;
Johannes Berg11a843b2007-08-28 17:01:55 -0400135 int ret;
136
Johannes Berg3b967662008-04-08 17:56:52 +0200137 might_sleep();
138
Johannes Bergdb4d1162008-02-25 16:27:45 +0100139 if (!key || !key->local->ops->set_key)
Johannes Berg11a843b2007-08-28 17:01:55 -0400140 return;
141
Johannes Bergad0e2b52010-06-01 10:19:19 +0200142 assert_key_lock(key->local);
143
144 if (!(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
Johannes Berg11a843b2007-08-28 17:01:55 -0400145 return;
146
Johannes Bergdc822b52008-12-29 12:55:09 +0100147 sta = get_sta_for_key(key);
148 sdata = key->sdata;
149
150 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
151 sdata = container_of(sdata->bss,
152 struct ieee80211_sub_if_data,
153 u.ap);
Johannes Berg11a843b2007-08-28 17:01:55 -0400154
Johannes Berg12375ef2009-11-25 20:30:31 +0100155 ret = drv_set_key(key->local, DISABLE_KEY, sdata,
Johannes Berg24487982009-04-23 18:52:52 +0200156 sta, &key->conf);
Johannes Berg11a843b2007-08-28 17:01:55 -0400157
158 if (ret)
Joe Perches0fb9a9e2010-08-20 16:25:38 -0700159 wiphy_err(key->local->hw.wiphy,
160 "failed to remove key (%d, %pM) from hardware (%d)\n",
161 key->conf.keyidx, sta ? sta->addr : bcast_addr, ret);
Johannes Berg11a843b2007-08-28 17:01:55 -0400162
Johannes Berg3b967662008-04-08 17:56:52 +0200163 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
Yogesh Ashok Powaraac6af52011-04-27 18:40:29 +0530164
Mohammed Shafi Shajakhaneaef6a92011-05-05 10:59:24 +0530165 if (!((key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC) ||
166 (key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV)))
Yogesh Ashok Powaraac6af52011-04-27 18:40:29 +0530167 key->local->crypto_tx_tailroom_needed_cnt++;
Johannes Berg3b967662008-04-08 17:56:52 +0200168}
169
Johannes Berge31b8212010-10-05 19:39:30 +0200170void ieee80211_key_removed(struct ieee80211_key_conf *key_conf)
171{
172 struct ieee80211_key *key;
173
174 key = container_of(key_conf, struct ieee80211_key, conf);
175
176 might_sleep();
177 assert_key_lock(key->local);
178
179 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
180
181 /*
182 * Flush TX path to avoid attempts to use this key
183 * after this function returns. Until then, drivers
184 * must be prepared to handle the key.
185 */
186 synchronize_rcu();
187}
188EXPORT_SYMBOL_GPL(ieee80211_key_removed);
189
Johannes Berg3b967662008-04-08 17:56:52 +0200190static void __ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata,
Johannes Bergf7e01042010-12-09 19:49:02 +0100191 int idx, bool uni, bool multi)
Johannes Berg3b967662008-04-08 17:56:52 +0200192{
193 struct ieee80211_key *key = NULL;
194
Johannes Bergad0e2b52010-06-01 10:19:19 +0200195 assert_key_lock(sdata->local);
196
Johannes Berg3b967662008-04-08 17:56:52 +0200197 if (idx >= 0 && idx < NUM_DEFAULT_KEYS)
198 key = sdata->keys[idx];
199
Johannes Bergf7e01042010-12-09 19:49:02 +0100200 if (uni)
201 rcu_assign_pointer(sdata->default_unicast_key, key);
202 if (multi)
203 rcu_assign_pointer(sdata->default_multicast_key, key);
Johannes Berg3b967662008-04-08 17:56:52 +0200204
Johannes Bergf7e01042010-12-09 19:49:02 +0100205 ieee80211_debugfs_key_update_default(sdata);
Johannes Berg3b967662008-04-08 17:56:52 +0200206}
207
Johannes Bergf7e01042010-12-09 19:49:02 +0100208void ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata, int idx,
209 bool uni, bool multi)
Johannes Berg3b967662008-04-08 17:56:52 +0200210{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200211 mutex_lock(&sdata->local->key_mtx);
Johannes Bergf7e01042010-12-09 19:49:02 +0100212 __ieee80211_set_default_key(sdata, idx, uni, multi);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200213 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200214}
215
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +0200216static void
217__ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata, int idx)
218{
219 struct ieee80211_key *key = NULL;
220
Johannes Bergad0e2b52010-06-01 10:19:19 +0200221 assert_key_lock(sdata->local);
222
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +0200223 if (idx >= NUM_DEFAULT_KEYS &&
224 idx < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
225 key = sdata->keys[idx];
226
227 rcu_assign_pointer(sdata->default_mgmt_key, key);
228
Johannes Bergf7e01042010-12-09 19:49:02 +0100229 ieee80211_debugfs_key_update_default(sdata);
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +0200230}
231
232void ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata,
233 int idx)
234{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200235 mutex_lock(&sdata->local->key_mtx);
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +0200236 __ieee80211_set_default_mgmt_key(sdata, idx);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200237 mutex_unlock(&sdata->local->key_mtx);
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +0200238}
239
Johannes Berg3b967662008-04-08 17:56:52 +0200240
241static void __ieee80211_key_replace(struct ieee80211_sub_if_data *sdata,
242 struct sta_info *sta,
Johannes Berge31b8212010-10-05 19:39:30 +0200243 bool pairwise,
Johannes Berg3b967662008-04-08 17:56:52 +0200244 struct ieee80211_key *old,
245 struct ieee80211_key *new)
246{
Johannes Bergf7e01042010-12-09 19:49:02 +0100247 int idx;
248 bool defunikey, defmultikey, defmgmtkey;
Johannes Berg3b967662008-04-08 17:56:52 +0200249
250 if (new)
251 list_add(&new->list, &sdata->key_list);
252
Johannes Berge31b8212010-10-05 19:39:30 +0200253 if (sta && pairwise) {
254 rcu_assign_pointer(sta->ptk, new);
255 } else if (sta) {
256 if (old)
257 idx = old->conf.keyidx;
258 else
259 idx = new->conf.keyidx;
260 rcu_assign_pointer(sta->gtk[idx], new);
Johannes Berg3b967662008-04-08 17:56:52 +0200261 } else {
262 WARN_ON(new && old && new->conf.keyidx != old->conf.keyidx);
263
264 if (old)
265 idx = old->conf.keyidx;
266 else
267 idx = new->conf.keyidx;
268
Johannes Bergf7e01042010-12-09 19:49:02 +0100269 defunikey = old && sdata->default_unicast_key == old;
270 defmultikey = old && sdata->default_multicast_key == old;
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +0200271 defmgmtkey = old && sdata->default_mgmt_key == old;
Johannes Berg3b967662008-04-08 17:56:52 +0200272
Johannes Bergf7e01042010-12-09 19:49:02 +0100273 if (defunikey && !new)
274 __ieee80211_set_default_key(sdata, -1, true, false);
275 if (defmultikey && !new)
276 __ieee80211_set_default_key(sdata, -1, false, true);
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +0200277 if (defmgmtkey && !new)
278 __ieee80211_set_default_mgmt_key(sdata, -1);
Johannes Berg3b967662008-04-08 17:56:52 +0200279
280 rcu_assign_pointer(sdata->keys[idx], new);
Johannes Bergf7e01042010-12-09 19:49:02 +0100281 if (defunikey && new)
282 __ieee80211_set_default_key(sdata, new->conf.keyidx,
283 true, false);
284 if (defmultikey && new)
285 __ieee80211_set_default_key(sdata, new->conf.keyidx,
286 false, true);
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +0200287 if (defmgmtkey && new)
288 __ieee80211_set_default_mgmt_key(sdata,
289 new->conf.keyidx);
Johannes Berg3b967662008-04-08 17:56:52 +0200290 }
291
Johannes Bergb5c34f62011-01-03 19:51:09 +0100292 if (old)
293 list_del(&old->list);
Johannes Berg11a843b2007-08-28 17:01:55 -0400294}
295
Johannes Berg97359d12010-08-10 09:46:38 +0200296struct ieee80211_key *ieee80211_key_alloc(u32 cipher, int idx, size_t key_len,
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300297 const u8 *key_data,
298 size_t seq_len, const u8 *seq)
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200299{
300 struct ieee80211_key *key;
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100301 int i, j, err;
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200302
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +0200303 BUG_ON(idx < 0 || idx >= NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS);
Johannes Berg11a843b2007-08-28 17:01:55 -0400304
305 key = kzalloc(sizeof(struct ieee80211_key) + key_len, GFP_KERNEL);
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200306 if (!key)
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100307 return ERR_PTR(-ENOMEM);
Johannes Berg11a843b2007-08-28 17:01:55 -0400308
309 /*
310 * Default to software encryption; we'll later upload the
311 * key to the hardware if possible.
312 */
Johannes Berg11a843b2007-08-28 17:01:55 -0400313 key->conf.flags = 0;
314 key->flags = 0;
315
Johannes Berg97359d12010-08-10 09:46:38 +0200316 key->conf.cipher = cipher;
Johannes Berg11a843b2007-08-28 17:01:55 -0400317 key->conf.keyidx = idx;
318 key->conf.keylen = key_len;
Johannes Berg97359d12010-08-10 09:46:38 +0200319 switch (cipher) {
320 case WLAN_CIPHER_SUITE_WEP40:
321 case WLAN_CIPHER_SUITE_WEP104:
Felix Fietkau76708de2008-10-05 18:02:48 +0200322 key->conf.iv_len = WEP_IV_LEN;
323 key->conf.icv_len = WEP_ICV_LEN;
324 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200325 case WLAN_CIPHER_SUITE_TKIP:
Felix Fietkau76708de2008-10-05 18:02:48 +0200326 key->conf.iv_len = TKIP_IV_LEN;
327 key->conf.icv_len = TKIP_ICV_LEN;
Jouni Malinen9f26a952009-05-15 12:38:32 +0300328 if (seq) {
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300329 for (i = 0; i < NUM_RX_DATA_QUEUES; i++) {
330 key->u.tkip.rx[i].iv32 =
331 get_unaligned_le32(&seq[2]);
332 key->u.tkip.rx[i].iv16 =
333 get_unaligned_le16(seq);
334 }
335 }
Felix Fietkau76708de2008-10-05 18:02:48 +0200336 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200337 case WLAN_CIPHER_SUITE_CCMP:
Felix Fietkau76708de2008-10-05 18:02:48 +0200338 key->conf.iv_len = CCMP_HDR_LEN;
339 key->conf.icv_len = CCMP_MIC_LEN;
Jouni Malinen9f26a952009-05-15 12:38:32 +0300340 if (seq) {
Jouni Malinen91902522010-06-11 10:27:33 -0700341 for (i = 0; i < NUM_RX_DATA_QUEUES + 1; i++)
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300342 for (j = 0; j < CCMP_PN_LEN; j++)
343 key->u.ccmp.rx_pn[i][j] =
344 seq[CCMP_PN_LEN - j - 1];
345 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400346 /*
347 * Initialize AES key state here as an optimization so that
348 * it does not need to be initialized for every packet.
349 */
350 key->u.ccmp.tfm = ieee80211_aes_key_setup_encrypt(key_data);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100351 if (IS_ERR(key->u.ccmp.tfm)) {
352 err = PTR_ERR(key->u.ccmp.tfm);
Johannes Berg3b967662008-04-08 17:56:52 +0200353 kfree(key);
Petr Å tetiar1f951a72011-03-27 13:31:26 +0200354 return ERR_PTR(err);
Johannes Berg11a843b2007-08-28 17:01:55 -0400355 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200356 break;
357 case WLAN_CIPHER_SUITE_AES_CMAC:
358 key->conf.iv_len = 0;
359 key->conf.icv_len = sizeof(struct ieee80211_mmie);
360 if (seq)
361 for (j = 0; j < 6; j++)
362 key->u.aes_cmac.rx_pn[j] = seq[6 - j - 1];
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +0200363 /*
364 * Initialize AES key state here as an optimization so that
365 * it does not need to be initialized for every packet.
366 */
367 key->u.aes_cmac.tfm =
368 ieee80211_aes_cmac_key_setup(key_data);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100369 if (IS_ERR(key->u.aes_cmac.tfm)) {
370 err = PTR_ERR(key->u.aes_cmac.tfm);
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +0200371 kfree(key);
Petr Å tetiar1f951a72011-03-27 13:31:26 +0200372 return ERR_PTR(err);
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +0200373 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200374 break;
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +0200375 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200376 memcpy(key->conf.key, key_data, key_len);
377 INIT_LIST_HEAD(&key->list);
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +0200378
Johannes Bergdb4d1162008-02-25 16:27:45 +0100379 return key;
380}
Johannes Berg11a843b2007-08-28 17:01:55 -0400381
Johannes Bergad0e2b52010-06-01 10:19:19 +0200382static void __ieee80211_key_destroy(struct ieee80211_key *key)
383{
384 if (!key)
385 return;
386
Johannes Bergd2460f42011-01-03 19:42:24 +0100387 /*
388 * Synchronize so the TX path can no longer be using
389 * this key before we free/remove it.
390 */
391 synchronize_rcu();
392
Jouni Malinen32162a42010-07-26 15:52:03 -0700393 if (key->local)
394 ieee80211_key_disable_hw_accel(key);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200395
Johannes Berg97359d12010-08-10 09:46:38 +0200396 if (key->conf.cipher == WLAN_CIPHER_SUITE_CCMP)
Johannes Bergad0e2b52010-06-01 10:19:19 +0200397 ieee80211_aes_key_free(key->u.ccmp.tfm);
Johannes Berg97359d12010-08-10 09:46:38 +0200398 if (key->conf.cipher == WLAN_CIPHER_SUITE_AES_CMAC)
Johannes Bergad0e2b52010-06-01 10:19:19 +0200399 ieee80211_aes_cmac_key_free(key->u.aes_cmac.tfm);
Yogesh Ashok Powaraac6af52011-04-27 18:40:29 +0530400 if (key->local) {
Jouni Malinen32162a42010-07-26 15:52:03 -0700401 ieee80211_debugfs_key_remove(key);
Yogesh Ashok Powaraac6af52011-04-27 18:40:29 +0530402 key->local->crypto_tx_tailroom_needed_cnt--;
403 }
Johannes Bergad0e2b52010-06-01 10:19:19 +0200404
405 kfree(key);
406}
407
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300408int ieee80211_key_link(struct ieee80211_key *key,
409 struct ieee80211_sub_if_data *sdata,
410 struct sta_info *sta)
Johannes Bergdb4d1162008-02-25 16:27:45 +0100411{
412 struct ieee80211_key *old_key;
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300413 int idx, ret;
Mariusz Kozlowski67aa0302011-03-26 18:58:51 +0100414 bool pairwise;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100415
Johannes Bergdb4d1162008-02-25 16:27:45 +0100416 BUG_ON(!sdata);
417 BUG_ON(!key);
418
Mariusz Kozlowski67aa0302011-03-26 18:58:51 +0100419 pairwise = key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100420 idx = key->conf.keyidx;
421 key->local = sdata->local;
422 key->sdata = sdata;
423 key->sta = sta;
424
Johannes Berg11a843b2007-08-28 17:01:55 -0400425 if (sta) {
Johannes Berg11a843b2007-08-28 17:01:55 -0400426 /*
427 * some hardware cannot handle TKIP with QoS, so
428 * we indicate whether QoS could be in use.
429 */
Johannes Berg07346f812008-05-03 01:02:02 +0200430 if (test_sta_flags(sta, WLAN_STA_WME))
Johannes Berg11a843b2007-08-28 17:01:55 -0400431 key->conf.flags |= IEEE80211_KEY_FLAG_WMM_STA;
432 } else {
Johannes Berg05c914f2008-09-11 00:01:58 +0200433 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
Johannes Berg11a843b2007-08-28 17:01:55 -0400434 struct sta_info *ap;
435
Johannes Berg3b967662008-04-08 17:56:52 +0200436 /*
Johannes Bergb5c34f62011-01-03 19:51:09 +0100437 * We're getting a sta pointer in, so must be under
438 * appropriate locking for sta_info_get().
Johannes Berg3b967662008-04-08 17:56:52 +0200439 */
Johannes Bergd0709a62008-02-25 16:27:46 +0100440
Johannes Berg11a843b2007-08-28 17:01:55 -0400441 /* same here, the AP could be using QoS */
Johannes Bergabe60632009-11-25 17:46:18 +0100442 ap = sta_info_get(key->sdata, key->sdata->u.mgd.bssid);
Johannes Berg11a843b2007-08-28 17:01:55 -0400443 if (ap) {
Johannes Berg07346f812008-05-03 01:02:02 +0200444 if (test_sta_flags(ap, WLAN_STA_WME))
Johannes Berg11a843b2007-08-28 17:01:55 -0400445 key->conf.flags |=
446 IEEE80211_KEY_FLAG_WMM_STA;
Johannes Berg11a843b2007-08-28 17:01:55 -0400447 }
448 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400449 }
450
Johannes Bergad0e2b52010-06-01 10:19:19 +0200451 mutex_lock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200452
Johannes Berge31b8212010-10-05 19:39:30 +0200453 if (sta && pairwise)
454 old_key = sta->ptk;
455 else if (sta)
456 old_key = sta->gtk[idx];
Johannes Bergd4e46a32007-09-14 11:10:24 -0400457 else
Johannes Bergdb4d1162008-02-25 16:27:45 +0100458 old_key = sdata->keys[idx];
459
Johannes Berge31b8212010-10-05 19:39:30 +0200460 __ieee80211_key_replace(sdata, sta, pairwise, old_key, key);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200461 __ieee80211_key_destroy(old_key);
Johannes Bergd4e46a32007-09-14 11:10:24 -0400462
Johannes Bergad0e2b52010-06-01 10:19:19 +0200463 ieee80211_debugfs_key_add(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200464
Yogesh Ashok Powaraac6af52011-04-27 18:40:29 +0530465 key->local->crypto_tx_tailroom_needed_cnt++;
466
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300467 ret = ieee80211_key_enable_hw_accel(key);
Johannes Berg523d2f62009-07-01 21:26:43 +0200468
Johannes Bergad0e2b52010-06-01 10:19:19 +0200469 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300470
471 return ret;
Johannes Berg3a245762008-04-09 16:45:37 +0200472}
473
474static void __ieee80211_key_free(struct ieee80211_key *key)
475{
476 /*
477 * Replace key with nothingness if it was ever used.
478 */
479 if (key->sdata)
480 __ieee80211_key_replace(key->sdata, key->sta,
Johannes Berge31b8212010-10-05 19:39:30 +0200481 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE,
482 key, NULL);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200483 __ieee80211_key_destroy(key);
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200484}
485
Jouni Malinen32162a42010-07-26 15:52:03 -0700486void ieee80211_key_free(struct ieee80211_local *local,
487 struct ieee80211_key *key)
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200488{
Johannes Berg8f371712007-08-28 17:01:54 -0400489 if (!key)
490 return;
491
Johannes Bergad0e2b52010-06-01 10:19:19 +0200492 mutex_lock(&local->key_mtx);
Johannes Berg3a245762008-04-09 16:45:37 +0200493 __ieee80211_key_free(key);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200494 mutex_unlock(&local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200495}
496
497void ieee80211_enable_keys(struct ieee80211_sub_if_data *sdata)
498{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200499 struct ieee80211_key *key;
500
Johannes Berg3a245762008-04-09 16:45:37 +0200501 ASSERT_RTNL();
Johannes Berg3b967662008-04-08 17:56:52 +0200502
Johannes Berg9607e6b2009-12-23 13:15:31 +0100503 if (WARN_ON(!ieee80211_sdata_running(sdata)))
Johannes Berg3b967662008-04-08 17:56:52 +0200504 return;
505
Johannes Bergad0e2b52010-06-01 10:19:19 +0200506 mutex_lock(&sdata->local->key_mtx);
507
Yogesh Ashok Powaraac6af52011-04-27 18:40:29 +0530508 sdata->local->crypto_tx_tailroom_needed_cnt = 0;
509
510 list_for_each_entry(key, &sdata->key_list, list) {
511 sdata->local->crypto_tx_tailroom_needed_cnt++;
Johannes Bergad0e2b52010-06-01 10:19:19 +0200512 ieee80211_key_enable_hw_accel(key);
Yogesh Ashok Powaraac6af52011-04-27 18:40:29 +0530513 }
Johannes Bergad0e2b52010-06-01 10:19:19 +0200514
515 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200516}
517
518void ieee80211_disable_keys(struct ieee80211_sub_if_data *sdata)
519{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200520 struct ieee80211_key *key;
521
Johannes Berg3a245762008-04-09 16:45:37 +0200522 ASSERT_RTNL();
Johannes Berg3b967662008-04-08 17:56:52 +0200523
Johannes Bergad0e2b52010-06-01 10:19:19 +0200524 mutex_lock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200525
Johannes Bergad0e2b52010-06-01 10:19:19 +0200526 list_for_each_entry(key, &sdata->key_list, list)
527 ieee80211_key_disable_hw_accel(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200528
Johannes Bergad0e2b52010-06-01 10:19:19 +0200529 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg11a843b2007-08-28 17:01:55 -0400530}
531
532void ieee80211_free_keys(struct ieee80211_sub_if_data *sdata)
533{
534 struct ieee80211_key *key, *tmp;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100535
Johannes Bergad0e2b52010-06-01 10:19:19 +0200536 mutex_lock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200537
Jouni Malinen3cfcf6a2009-01-08 13:32:02 +0200538 ieee80211_debugfs_key_remove_mgmt_default(sdata);
Johannes Berg11a843b2007-08-28 17:01:55 -0400539
540 list_for_each_entry_safe(key, tmp, &sdata->key_list, list)
Johannes Berg3a245762008-04-09 16:45:37 +0200541 __ieee80211_key_free(key);
Johannes Berg11a843b2007-08-28 17:01:55 -0400542
Johannes Bergf7e01042010-12-09 19:49:02 +0100543 ieee80211_debugfs_key_update_default(sdata);
544
Johannes Bergad0e2b52010-06-01 10:19:19 +0200545 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg11a843b2007-08-28 17:01:55 -0400546}