blob: ab8468047200530ca02322baec9f0189af4f2b34 [file] [log] [blame]
Johannes Berg1f5a7e472007-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 Berg1f5a7e472007-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 Berg1f5a7e472007-07-27 15:43:23 +020019#include <net/mac80211.h>
Johannes Bergd26ad372012-02-20 11:38:41 +010020#include <asm/unaligned.h>
Johannes Berg1f5a7e472007-07-27 15:43:23 +020021#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020022#include "driver-ops.h"
Johannes Berg1f5a7e472007-07-27 15:43:23 +020023#include "debugfs_key.h"
24#include "aes_ccm.h"
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +020025#include "aes_cmac.h"
Johannes Berg1f5a7e472007-07-27 15:43:23 +020026
Johannes Berg11a843b2007-08-28 17:01:55 -040027
Johannes Bergdbbea672008-02-26 14:34:06 +010028/**
29 * DOC: Key handling basics
Johannes Berg11a843b2007-08-28 17:01:55 -040030 *
31 * Key handling in mac80211 is done based on per-interface (sub_if_data)
32 * keys and per-station keys. Since each station belongs to an interface,
33 * each station key also belongs to that interface.
34 *
Johannes Bergb5c34f62011-01-03 19:51:09 +010035 * Hardware acceleration is done on a best-effort basis for algorithms
36 * that are implemented in software, for each key the hardware is asked
37 * to enable that key for offloading but if it cannot do that the key is
38 * simply kept for software encryption (unless it is for an algorithm
39 * that isn't implemented in software).
40 * There is currently no way of knowing whether a key is handled in SW
41 * or HW except by looking into debugfs.
Johannes Berg11a843b2007-08-28 17:01:55 -040042 *
Johannes Bergb5c34f62011-01-03 19:51:09 +010043 * All key management is internally protected by a mutex. Within all
44 * other parts of mac80211, key references are, just as STA structure
45 * references, protected by RCU. Note, however, that some things are
46 * unprotected, namely the key->sta dereferences within the hardware
47 * acceleration functions. This means that sta_info_destroy() must
48 * remove the key which waits for an RCU grace period.
Johannes Berg11a843b2007-08-28 17:01:55 -040049 */
50
51static const u8 bcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
Johannes Berg11a843b2007-08-28 17:01:55 -040052
Johannes Bergad0e2b52010-06-01 10:19:19 +020053static void assert_key_lock(struct ieee80211_local *local)
Johannes Berg3b967662008-04-08 17:56:52 +020054{
Johannes Berg46a5eba2010-09-15 13:28:15 +020055 lockdep_assert_held(&local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +020056}
57
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +053058static void increment_tailroom_need_count(struct ieee80211_sub_if_data *sdata)
59{
60 /*
61 * When this count is zero, SKB resizing for allocating tailroom
62 * for IV or MMIC is skipped. But, this check has created two race
63 * cases in xmit path while transiting from zero count to one:
64 *
65 * 1. SKB resize was skipped because no key was added but just before
66 * the xmit key is added and SW encryption kicks off.
67 *
68 * 2. SKB resize was skipped because all the keys were hw planted but
69 * just before xmit one of the key is deleted and SW encryption kicks
70 * off.
71 *
72 * In both the above case SW encryption will find not enough space for
73 * tailroom and exits with WARN_ON. (See WARN_ONs at wpa.c)
74 *
75 * Solution has been explained at
76 * http://mid.gmane.org/1308590980.4322.19.camel@jlt3.sipsolutions.net
77 */
78
79 if (!sdata->crypto_tx_tailroom_needed_cnt++) {
80 /*
81 * Flush all XMIT packets currently using HW encryption or no
82 * encryption at all if the count transition is from 0 -> 1.
83 */
84 synchronize_net();
85 }
86}
87
Johannes Berg3ffc2a92010-08-27 14:26:52 +030088static int ieee80211_key_enable_hw_accel(struct ieee80211_key *key)
Johannes Berg11a843b2007-08-28 17:01:55 -040089{
Johannes Bergdc822b52008-12-29 12:55:09 +010090 struct ieee80211_sub_if_data *sdata;
Johannes Berg89c91ca2012-01-20 13:55:19 +010091 struct sta_info *sta;
Johannes Berg11a843b2007-08-28 17:01:55 -040092 int ret;
93
Johannes Berg3b967662008-04-08 17:56:52 +020094 might_sleep();
95
Johannes Berg27b3eb92013-08-07 20:11:55 +020096 if (key->flags & KEY_FLAG_TAINTED)
97 return -EINVAL;
98
Johannes Berge31b8212010-10-05 19:39:30 +020099 if (!key->local->ops->set_key)
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300100 goto out_unsupported;
Johannes Berg11a843b2007-08-28 17:01:55 -0400101
Johannes Bergad0e2b52010-06-01 10:19:19 +0200102 assert_key_lock(key->local);
103
Johannes Berg89c91ca2012-01-20 13:55:19 +0100104 sta = key->sta;
Johannes Bergdc822b52008-12-29 12:55:09 +0100105
Johannes Berge31b8212010-10-05 19:39:30 +0200106 /*
107 * If this is a per-STA GTK, check if it
108 * is supported; if not, return.
109 */
110 if (sta && !(key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE) &&
111 !(key->local->hw.flags & IEEE80211_HW_SUPPORTS_PER_STA_GTK))
112 goto out_unsupported;
113
Johannes Berg89c91ca2012-01-20 13:55:19 +0100114 if (sta && !sta->uploaded)
115 goto out_unsupported;
116
Johannes Bergdc822b52008-12-29 12:55:09 +0100117 sdata = key->sdata;
Helmut Schaa18890d42010-11-19 08:11:01 +0100118 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
119 /*
120 * The driver doesn't know anything about VLAN interfaces.
121 * Hence, don't send GTKs for VLAN interfaces to the driver.
122 */
123 if (!(key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE))
124 goto out_unsupported;
Helmut Schaa18890d42010-11-19 08:11:01 +0100125 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400126
Johannes Berg89c91ca2012-01-20 13:55:19 +0100127 ret = drv_set_key(key->local, SET_KEY, sdata,
128 sta ? &sta->sta : NULL, &key->conf);
Johannes Berg11a843b2007-08-28 17:01:55 -0400129
Johannes Berge31b8212010-10-05 19:39:30 +0200130 if (!ret) {
Johannes Berg11a843b2007-08-28 17:01:55 -0400131 key->flags |= KEY_FLAG_UPLOADED_TO_HARDWARE;
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530132
133 if (!((key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC) ||
Arik Nemtsov077a9152011-10-23 08:21:41 +0200134 (key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV) ||
135 (key->conf.flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE)))
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530136 sdata->crypto_tx_tailroom_needed_cnt--;
137
Arik Nemtsov077a9152011-10-23 08:21:41 +0200138 WARN_ON((key->conf.flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE) &&
139 (key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV));
140
Johannes Berge31b8212010-10-05 19:39:30 +0200141 return 0;
142 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400143
Johannes Berge31b8212010-10-05 19:39:30 +0200144 if (ret != -ENOSPC && ret != -EOPNOTSUPP)
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200145 sdata_err(sdata,
Joe Perches0fb9a9e2010-08-20 16:25:38 -0700146 "failed to set key (%d, %pM) to hardware (%d)\n",
Johannes Berg89c91ca2012-01-20 13:55:19 +0100147 key->conf.keyidx,
148 sta ? sta->sta.addr : bcast_addr, ret);
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300149
Johannes Berge31b8212010-10-05 19:39:30 +0200150 out_unsupported:
151 switch (key->conf.cipher) {
152 case WLAN_CIPHER_SUITE_WEP40:
153 case WLAN_CIPHER_SUITE_WEP104:
154 case WLAN_CIPHER_SUITE_TKIP:
155 case WLAN_CIPHER_SUITE_CCMP:
156 case WLAN_CIPHER_SUITE_AES_CMAC:
157 /* all of these we can do in software */
158 return 0;
159 default:
160 return -EINVAL;
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300161 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400162}
163
164static void ieee80211_key_disable_hw_accel(struct ieee80211_key *key)
165{
Johannes Bergdc822b52008-12-29 12:55:09 +0100166 struct ieee80211_sub_if_data *sdata;
Johannes Berg89c91ca2012-01-20 13:55:19 +0100167 struct sta_info *sta;
Johannes Berg11a843b2007-08-28 17:01:55 -0400168 int ret;
169
Johannes Berg3b967662008-04-08 17:56:52 +0200170 might_sleep();
171
Johannes Bergdb4d1162008-02-25 16:27:45 +0100172 if (!key || !key->local->ops->set_key)
Johannes Berg11a843b2007-08-28 17:01:55 -0400173 return;
174
Johannes Bergad0e2b52010-06-01 10:19:19 +0200175 assert_key_lock(key->local);
176
177 if (!(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
Johannes Berg11a843b2007-08-28 17:01:55 -0400178 return;
179
Johannes Berg89c91ca2012-01-20 13:55:19 +0100180 sta = key->sta;
Johannes Bergdc822b52008-12-29 12:55:09 +0100181 sdata = key->sdata;
182
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530183 if (!((key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC) ||
Arik Nemtsov077a9152011-10-23 08:21:41 +0200184 (key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV) ||
185 (key->conf.flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE)))
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530186 increment_tailroom_need_count(sdata);
187
Johannes Berg12375ef2009-11-25 20:30:31 +0100188 ret = drv_set_key(key->local, DISABLE_KEY, sdata,
Johannes Berg89c91ca2012-01-20 13:55:19 +0100189 sta ? &sta->sta : NULL, &key->conf);
Johannes Berg11a843b2007-08-28 17:01:55 -0400190
191 if (ret)
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200192 sdata_err(sdata,
Joe Perches0fb9a9e2010-08-20 16:25:38 -0700193 "failed to remove key (%d, %pM) from hardware (%d)\n",
Johannes Berg89c91ca2012-01-20 13:55:19 +0100194 key->conf.keyidx,
195 sta ? sta->sta.addr : bcast_addr, ret);
Johannes Berg11a843b2007-08-28 17:01:55 -0400196
Johannes Berg3b967662008-04-08 17:56:52 +0200197 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
Johannes Berg3b967662008-04-08 17:56:52 +0200198}
199
200static void __ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata,
Johannes Bergf7e01042010-12-09 19:49:02 +0100201 int idx, bool uni, bool multi)
Johannes Berg3b967662008-04-08 17:56:52 +0200202{
203 struct ieee80211_key *key = NULL;
204
Johannes Bergad0e2b52010-06-01 10:19:19 +0200205 assert_key_lock(sdata->local);
206
Johannes Berg3b967662008-04-08 17:56:52 +0200207 if (idx >= 0 && idx < NUM_DEFAULT_KEYS)
Johannes Berg40b275b2011-05-13 14:15:49 +0200208 key = key_mtx_dereference(sdata->local, sdata->keys[idx]);
Johannes Berg3b967662008-04-08 17:56:52 +0200209
Yoni Divinskyde5fad82012-05-30 11:36:39 +0300210 if (uni) {
Johannes Bergf7e01042010-12-09 19:49:02 +0100211 rcu_assign_pointer(sdata->default_unicast_key, key);
Yoni Divinskyde5fad82012-05-30 11:36:39 +0300212 drv_set_default_unicast_key(sdata->local, sdata, idx);
213 }
214
Johannes Bergf7e01042010-12-09 19:49:02 +0100215 if (multi)
216 rcu_assign_pointer(sdata->default_multicast_key, key);
Johannes Berg3b967662008-04-08 17:56:52 +0200217
Johannes Bergf7e01042010-12-09 19:49:02 +0100218 ieee80211_debugfs_key_update_default(sdata);
Johannes Berg3b967662008-04-08 17:56:52 +0200219}
220
Johannes Bergf7e01042010-12-09 19:49:02 +0100221void ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata, int idx,
222 bool uni, bool multi)
Johannes Berg3b967662008-04-08 17:56:52 +0200223{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200224 mutex_lock(&sdata->local->key_mtx);
Johannes Bergf7e01042010-12-09 19:49:02 +0100225 __ieee80211_set_default_key(sdata, idx, uni, multi);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200226 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200227}
228
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200229static void
230__ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata, int idx)
231{
232 struct ieee80211_key *key = NULL;
233
Johannes Bergad0e2b52010-06-01 10:19:19 +0200234 assert_key_lock(sdata->local);
235
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200236 if (idx >= NUM_DEFAULT_KEYS &&
237 idx < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
Johannes Berg40b275b2011-05-13 14:15:49 +0200238 key = key_mtx_dereference(sdata->local, sdata->keys[idx]);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200239
240 rcu_assign_pointer(sdata->default_mgmt_key, key);
241
Johannes Bergf7e01042010-12-09 19:49:02 +0100242 ieee80211_debugfs_key_update_default(sdata);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200243}
244
245void ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata,
246 int idx)
247{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200248 mutex_lock(&sdata->local->key_mtx);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200249 __ieee80211_set_default_mgmt_key(sdata, idx);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200250 mutex_unlock(&sdata->local->key_mtx);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200251}
252
Johannes Berg3b967662008-04-08 17:56:52 +0200253
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100254static void ieee80211_key_replace(struct ieee80211_sub_if_data *sdata,
255 struct sta_info *sta,
256 bool pairwise,
257 struct ieee80211_key *old,
258 struct ieee80211_key *new)
Johannes Berg3b967662008-04-08 17:56:52 +0200259{
Johannes Bergf7e01042010-12-09 19:49:02 +0100260 int idx;
261 bool defunikey, defmultikey, defmgmtkey;
Johannes Berg3b967662008-04-08 17:56:52 +0200262
Johannes Berg5282c3b2013-10-29 10:00:08 +0100263 /* caller must provide at least one old/new */
264 if (WARN_ON(!new && !old))
265 return;
266
Johannes Berg3b967662008-04-08 17:56:52 +0200267 if (new)
Johannes Bergf850e002011-07-13 19:50:53 +0200268 list_add_tail(&new->list, &sdata->key_list);
Johannes Berg3b967662008-04-08 17:56:52 +0200269
Johannes Berge31b8212010-10-05 19:39:30 +0200270 if (sta && pairwise) {
271 rcu_assign_pointer(sta->ptk, new);
272 } else if (sta) {
273 if (old)
274 idx = old->conf.keyidx;
275 else
276 idx = new->conf.keyidx;
277 rcu_assign_pointer(sta->gtk[idx], new);
Johannes Berg3b967662008-04-08 17:56:52 +0200278 } else {
279 WARN_ON(new && old && new->conf.keyidx != old->conf.keyidx);
280
281 if (old)
282 idx = old->conf.keyidx;
283 else
284 idx = new->conf.keyidx;
285
Johannes Berg40b275b2011-05-13 14:15:49 +0200286 defunikey = old &&
287 old == key_mtx_dereference(sdata->local,
288 sdata->default_unicast_key);
289 defmultikey = old &&
290 old == key_mtx_dereference(sdata->local,
291 sdata->default_multicast_key);
292 defmgmtkey = old &&
293 old == key_mtx_dereference(sdata->local,
294 sdata->default_mgmt_key);
Johannes Berg3b967662008-04-08 17:56:52 +0200295
Johannes Bergf7e01042010-12-09 19:49:02 +0100296 if (defunikey && !new)
297 __ieee80211_set_default_key(sdata, -1, true, false);
298 if (defmultikey && !new)
299 __ieee80211_set_default_key(sdata, -1, false, true);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200300 if (defmgmtkey && !new)
301 __ieee80211_set_default_mgmt_key(sdata, -1);
Johannes Berg3b967662008-04-08 17:56:52 +0200302
303 rcu_assign_pointer(sdata->keys[idx], new);
Johannes Bergf7e01042010-12-09 19:49:02 +0100304 if (defunikey && new)
305 __ieee80211_set_default_key(sdata, new->conf.keyidx,
306 true, false);
307 if (defmultikey && new)
308 __ieee80211_set_default_key(sdata, new->conf.keyidx,
309 false, true);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200310 if (defmgmtkey && new)
311 __ieee80211_set_default_mgmt_key(sdata,
312 new->conf.keyidx);
Johannes Berg3b967662008-04-08 17:56:52 +0200313 }
314
Johannes Bergb5c34f62011-01-03 19:51:09 +0100315 if (old)
316 list_del(&old->list);
Johannes Berg11a843b2007-08-28 17:01:55 -0400317}
318
Johannes Berg97359d12010-08-10 09:46:38 +0200319struct ieee80211_key *ieee80211_key_alloc(u32 cipher, int idx, size_t key_len,
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300320 const u8 *key_data,
321 size_t seq_len, const u8 *seq)
Johannes Berg1f5a7e472007-07-27 15:43:23 +0200322{
323 struct ieee80211_key *key;
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100324 int i, j, err;
Johannes Berg1f5a7e472007-07-27 15:43:23 +0200325
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200326 BUG_ON(idx < 0 || idx >= NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS);
Johannes Berg11a843b2007-08-28 17:01:55 -0400327
328 key = kzalloc(sizeof(struct ieee80211_key) + key_len, GFP_KERNEL);
Johannes Berg1f5a7e472007-07-27 15:43:23 +0200329 if (!key)
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100330 return ERR_PTR(-ENOMEM);
Johannes Berg11a843b2007-08-28 17:01:55 -0400331
332 /*
333 * Default to software encryption; we'll later upload the
334 * key to the hardware if possible.
335 */
Johannes Berg11a843b2007-08-28 17:01:55 -0400336 key->conf.flags = 0;
337 key->flags = 0;
338
Johannes Berg97359d12010-08-10 09:46:38 +0200339 key->conf.cipher = cipher;
Johannes Berg11a843b2007-08-28 17:01:55 -0400340 key->conf.keyidx = idx;
341 key->conf.keylen = key_len;
Johannes Berg97359d12010-08-10 09:46:38 +0200342 switch (cipher) {
343 case WLAN_CIPHER_SUITE_WEP40:
344 case WLAN_CIPHER_SUITE_WEP104:
Johannes Berg4325f6c2013-05-08 13:09:08 +0200345 key->conf.iv_len = IEEE80211_WEP_IV_LEN;
346 key->conf.icv_len = IEEE80211_WEP_ICV_LEN;
Felix Fietkau76708de2008-10-05 18:02:48 +0200347 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200348 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berg4325f6c2013-05-08 13:09:08 +0200349 key->conf.iv_len = IEEE80211_TKIP_IV_LEN;
350 key->conf.icv_len = IEEE80211_TKIP_ICV_LEN;
Jouni Malinen9f26a952009-05-15 12:38:32 +0300351 if (seq) {
Johannes Berg5a306f52012-11-14 23:22:21 +0100352 for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300353 key->u.tkip.rx[i].iv32 =
354 get_unaligned_le32(&seq[2]);
355 key->u.tkip.rx[i].iv16 =
356 get_unaligned_le16(seq);
357 }
358 }
Johannes Berg523b02e2011-07-07 22:28:01 +0200359 spin_lock_init(&key->u.tkip.txlock);
Felix Fietkau76708de2008-10-05 18:02:48 +0200360 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200361 case WLAN_CIPHER_SUITE_CCMP:
Johannes Berg4325f6c2013-05-08 13:09:08 +0200362 key->conf.iv_len = IEEE80211_CCMP_HDR_LEN;
363 key->conf.icv_len = IEEE80211_CCMP_MIC_LEN;
Jouni Malinen9f26a952009-05-15 12:38:32 +0300364 if (seq) {
Johannes Berg5a306f52012-11-14 23:22:21 +0100365 for (i = 0; i < IEEE80211_NUM_TIDS + 1; i++)
Johannes Berg4325f6c2013-05-08 13:09:08 +0200366 for (j = 0; j < IEEE80211_CCMP_PN_LEN; j++)
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300367 key->u.ccmp.rx_pn[i][j] =
Johannes Berg4325f6c2013-05-08 13:09:08 +0200368 seq[IEEE80211_CCMP_PN_LEN - j - 1];
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300369 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400370 /*
371 * Initialize AES key state here as an optimization so that
372 * it does not need to be initialized for every packet.
373 */
374 key->u.ccmp.tfm = ieee80211_aes_key_setup_encrypt(key_data);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100375 if (IS_ERR(key->u.ccmp.tfm)) {
376 err = PTR_ERR(key->u.ccmp.tfm);
Johannes Berg3b967662008-04-08 17:56:52 +0200377 kfree(key);
Petr Å tetiar1f951a72011-03-27 13:31:26 +0200378 return ERR_PTR(err);
Johannes Berg11a843b2007-08-28 17:01:55 -0400379 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200380 break;
381 case WLAN_CIPHER_SUITE_AES_CMAC:
382 key->conf.iv_len = 0;
383 key->conf.icv_len = sizeof(struct ieee80211_mmie);
384 if (seq)
Johannes Berg4325f6c2013-05-08 13:09:08 +0200385 for (j = 0; j < IEEE80211_CMAC_PN_LEN; j++)
Johannes Berg0f927322012-11-14 23:15:11 +0100386 key->u.aes_cmac.rx_pn[j] =
Johannes Berg4325f6c2013-05-08 13:09:08 +0200387 seq[IEEE80211_CMAC_PN_LEN - j - 1];
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200388 /*
389 * Initialize AES key state here as an optimization so that
390 * it does not need to be initialized for every packet.
391 */
392 key->u.aes_cmac.tfm =
393 ieee80211_aes_cmac_key_setup(key_data);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100394 if (IS_ERR(key->u.aes_cmac.tfm)) {
395 err = PTR_ERR(key->u.aes_cmac.tfm);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200396 kfree(key);
Petr Å tetiar1f951a72011-03-27 13:31:26 +0200397 return ERR_PTR(err);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200398 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200399 break;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200400 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200401 memcpy(key->conf.key, key_data, key_len);
402 INIT_LIST_HEAD(&key->list);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200403
Johannes Bergdb4d1162008-02-25 16:27:45 +0100404 return key;
405}
Johannes Berg11a843b2007-08-28 17:01:55 -0400406
Johannes Berg79cf2df2013-03-06 22:53:52 +0100407static void ieee80211_key_free_common(struct ieee80211_key *key)
408{
409 if (key->conf.cipher == WLAN_CIPHER_SUITE_CCMP)
410 ieee80211_aes_key_free(key->u.ccmp.tfm);
411 if (key->conf.cipher == WLAN_CIPHER_SUITE_AES_CMAC)
412 ieee80211_aes_cmac_key_free(key->u.aes_cmac.tfm);
413 kfree(key);
414}
415
Johannes Berg6d10e462013-03-06 23:09:11 +0100416static void __ieee80211_key_destroy(struct ieee80211_key *key,
417 bool delay_tailroom)
Johannes Bergad0e2b52010-06-01 10:19:19 +0200418{
Jouni Malinen32162a42010-07-26 15:52:03 -0700419 if (key->local)
420 ieee80211_key_disable_hw_accel(key);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200421
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530422 if (key->local) {
Johannes Berg8d1f7ec2013-02-23 00:59:03 +0100423 struct ieee80211_sub_if_data *sdata = key->sdata;
424
Jouni Malinen32162a42010-07-26 15:52:03 -0700425 ieee80211_debugfs_key_remove(key);
Johannes Berg8d1f7ec2013-02-23 00:59:03 +0100426
427 if (delay_tailroom) {
428 /* see ieee80211_delayed_tailroom_dec */
429 sdata->crypto_tx_tailroom_pending_dec++;
430 schedule_delayed_work(&sdata->dec_tailroom_needed_wk,
431 HZ/2);
432 } else {
433 sdata->crypto_tx_tailroom_needed_cnt--;
434 }
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530435 }
Johannes Bergad0e2b52010-06-01 10:19:19 +0200436
Johannes Berg79cf2df2013-03-06 22:53:52 +0100437 ieee80211_key_free_common(key);
438}
439
Johannes Berg6d10e462013-03-06 23:09:11 +0100440static void ieee80211_key_destroy(struct ieee80211_key *key,
441 bool delay_tailroom)
442{
443 if (!key)
444 return;
445
446 /*
447 * Synchronize so the TX path can no longer be using
448 * this key before we free/remove it.
449 */
450 synchronize_net();
451
452 __ieee80211_key_destroy(key, delay_tailroom);
453}
454
Johannes Berg79cf2df2013-03-06 22:53:52 +0100455void ieee80211_key_free_unused(struct ieee80211_key *key)
456{
457 WARN_ON(key->sdata || key->local);
458 ieee80211_key_free_common(key);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200459}
460
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300461int ieee80211_key_link(struct ieee80211_key *key,
462 struct ieee80211_sub_if_data *sdata,
463 struct sta_info *sta)
Johannes Bergdb4d1162008-02-25 16:27:45 +0100464{
Johannes Berg27b3eb92013-08-07 20:11:55 +0200465 struct ieee80211_local *local = sdata->local;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100466 struct ieee80211_key *old_key;
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300467 int idx, ret;
Mariusz Kozlowski67aa0302011-03-26 18:58:51 +0100468 bool pairwise;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100469
Johannes Bergdb4d1162008-02-25 16:27:45 +0100470 BUG_ON(!sdata);
471 BUG_ON(!key);
472
Mariusz Kozlowski67aa0302011-03-26 18:58:51 +0100473 pairwise = key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100474 idx = key->conf.keyidx;
475 key->local = sdata->local;
476 key->sdata = sdata;
477 key->sta = sta;
478
Johannes Bergad0e2b52010-06-01 10:19:19 +0200479 mutex_lock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200480
Johannes Berge31b8212010-10-05 19:39:30 +0200481 if (sta && pairwise)
Johannes Berg40b275b2011-05-13 14:15:49 +0200482 old_key = key_mtx_dereference(sdata->local, sta->ptk);
Johannes Berge31b8212010-10-05 19:39:30 +0200483 else if (sta)
Johannes Berg40b275b2011-05-13 14:15:49 +0200484 old_key = key_mtx_dereference(sdata->local, sta->gtk[idx]);
Johannes Bergd4e46a32007-09-14 11:10:24 -0400485 else
Johannes Berg40b275b2011-05-13 14:15:49 +0200486 old_key = key_mtx_dereference(sdata->local, sdata->keys[idx]);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100487
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530488 increment_tailroom_need_count(sdata);
489
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100490 ieee80211_key_replace(sdata, sta, pairwise, old_key, key);
491 ieee80211_key_destroy(old_key, true);
Johannes Bergd4e46a32007-09-14 11:10:24 -0400492
Johannes Bergad0e2b52010-06-01 10:19:19 +0200493 ieee80211_debugfs_key_add(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200494
Johannes Berg27b3eb92013-08-07 20:11:55 +0200495 if (!local->wowlan) {
496 ret = ieee80211_key_enable_hw_accel(key);
497 if (ret)
498 ieee80211_key_free(key, true);
499 } else {
500 ret = 0;
501 }
Johannes Berg79cf2df2013-03-06 22:53:52 +0100502
Johannes Bergad0e2b52010-06-01 10:19:19 +0200503 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300504
505 return ret;
Johannes Berg3a245762008-04-09 16:45:37 +0200506}
507
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100508void ieee80211_key_free(struct ieee80211_key *key, bool delay_tailroom)
Johannes Berg3a245762008-04-09 16:45:37 +0200509{
Johannes Berg5c0c3642011-05-12 14:31:49 +0200510 if (!key)
511 return;
512
Johannes Berg3a245762008-04-09 16:45:37 +0200513 /*
514 * Replace key with nothingness if it was ever used.
515 */
516 if (key->sdata)
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100517 ieee80211_key_replace(key->sdata, key->sta,
Johannes Berge31b8212010-10-05 19:39:30 +0200518 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE,
519 key, NULL);
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100520 ieee80211_key_destroy(key, delay_tailroom);
Johannes Berg1f5a7e472007-07-27 15:43:23 +0200521}
522
Johannes Berg3b967662008-04-08 17:56:52 +0200523void ieee80211_enable_keys(struct ieee80211_sub_if_data *sdata)
524{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200525 struct ieee80211_key *key;
526
Johannes Berg3a245762008-04-09 16:45:37 +0200527 ASSERT_RTNL();
Johannes Berg3b967662008-04-08 17:56:52 +0200528
Johannes Berg9607e6b2009-12-23 13:15:31 +0100529 if (WARN_ON(!ieee80211_sdata_running(sdata)))
Johannes Berg3b967662008-04-08 17:56:52 +0200530 return;
531
Johannes Bergad0e2b52010-06-01 10:19:19 +0200532 mutex_lock(&sdata->local->key_mtx);
533
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530534 sdata->crypto_tx_tailroom_needed_cnt = 0;
535
536 list_for_each_entry(key, &sdata->key_list, list) {
537 increment_tailroom_need_count(sdata);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200538 ieee80211_key_enable_hw_accel(key);
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530539 }
Johannes Bergad0e2b52010-06-01 10:19:19 +0200540
541 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200542}
543
Johannes Berg830af022011-07-05 16:35:39 +0200544void ieee80211_iter_keys(struct ieee80211_hw *hw,
545 struct ieee80211_vif *vif,
546 void (*iter)(struct ieee80211_hw *hw,
547 struct ieee80211_vif *vif,
548 struct ieee80211_sta *sta,
549 struct ieee80211_key_conf *key,
550 void *data),
551 void *iter_data)
552{
553 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berg27b3eb92013-08-07 20:11:55 +0200554 struct ieee80211_key *key, *tmp;
Johannes Berg830af022011-07-05 16:35:39 +0200555 struct ieee80211_sub_if_data *sdata;
556
557 ASSERT_RTNL();
558
559 mutex_lock(&local->key_mtx);
560 if (vif) {
561 sdata = vif_to_sdata(vif);
Johannes Berg27b3eb92013-08-07 20:11:55 +0200562 list_for_each_entry_safe(key, tmp, &sdata->key_list, list)
Johannes Berg830af022011-07-05 16:35:39 +0200563 iter(hw, &sdata->vif,
564 key->sta ? &key->sta->sta : NULL,
565 &key->conf, iter_data);
566 } else {
567 list_for_each_entry(sdata, &local->interfaces, list)
Johannes Berg27b3eb92013-08-07 20:11:55 +0200568 list_for_each_entry_safe(key, tmp,
569 &sdata->key_list, list)
Johannes Berg830af022011-07-05 16:35:39 +0200570 iter(hw, &sdata->vif,
571 key->sta ? &key->sta->sta : NULL,
572 &key->conf, iter_data);
573 }
574 mutex_unlock(&local->key_mtx);
575}
576EXPORT_SYMBOL(ieee80211_iter_keys);
577
Johannes Berg11a843b2007-08-28 17:01:55 -0400578void ieee80211_free_keys(struct ieee80211_sub_if_data *sdata)
579{
580 struct ieee80211_key *key, *tmp;
Johannes Berg6d10e462013-03-06 23:09:11 +0100581 LIST_HEAD(keys);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100582
Johannes Berg8d1f7ec2013-02-23 00:59:03 +0100583 cancel_delayed_work_sync(&sdata->dec_tailroom_needed_wk);
584
Johannes Bergad0e2b52010-06-01 10:19:19 +0200585 mutex_lock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200586
Johannes Berg8d1f7ec2013-02-23 00:59:03 +0100587 sdata->crypto_tx_tailroom_needed_cnt -=
588 sdata->crypto_tx_tailroom_pending_dec;
589 sdata->crypto_tx_tailroom_pending_dec = 0;
590
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200591 ieee80211_debugfs_key_remove_mgmt_default(sdata);
Johannes Berg11a843b2007-08-28 17:01:55 -0400592
Johannes Berg6d10e462013-03-06 23:09:11 +0100593 list_for_each_entry_safe(key, tmp, &sdata->key_list, list) {
594 ieee80211_key_replace(key->sdata, key->sta,
595 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE,
596 key, NULL);
597 list_add_tail(&key->list, &keys);
598 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400599
Johannes Bergf7e01042010-12-09 19:49:02 +0100600 ieee80211_debugfs_key_update_default(sdata);
601
Johannes Berg6d10e462013-03-06 23:09:11 +0100602 if (!list_empty(&keys)) {
603 synchronize_net();
604 list_for_each_entry_safe(key, tmp, &keys, list)
605 __ieee80211_key_destroy(key, false);
606 }
607
Johannes Berg8d1f7ec2013-02-23 00:59:03 +0100608 WARN_ON_ONCE(sdata->crypto_tx_tailroom_needed_cnt ||
609 sdata->crypto_tx_tailroom_pending_dec);
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
Johannes Berg6d10e462013-03-06 23:09:11 +0100614void ieee80211_free_sta_keys(struct ieee80211_local *local,
615 struct sta_info *sta)
616{
617 struct ieee80211_key *key, *tmp;
618 LIST_HEAD(keys);
619 int i;
620
621 mutex_lock(&local->key_mtx);
622 for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
623 key = key_mtx_dereference(local, sta->gtk[i]);
624 if (!key)
625 continue;
626 ieee80211_key_replace(key->sdata, key->sta,
627 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE,
628 key, NULL);
629 list_add(&key->list, &keys);
630 }
631
632 key = key_mtx_dereference(local, sta->ptk);
633 if (key) {
634 ieee80211_key_replace(key->sdata, key->sta,
635 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE,
636 key, NULL);
637 list_add(&key->list, &keys);
638 }
639
640 /*
641 * NB: the station code relies on this being
642 * done even if there aren't any keys
643 */
644 synchronize_net();
645
646 list_for_each_entry_safe(key, tmp, &keys, list)
647 __ieee80211_key_destroy(key, true);
648
649 mutex_unlock(&local->key_mtx);
650}
651
Johannes Berg8d1f7ec2013-02-23 00:59:03 +0100652void ieee80211_delayed_tailroom_dec(struct work_struct *wk)
653{
654 struct ieee80211_sub_if_data *sdata;
655
656 sdata = container_of(wk, struct ieee80211_sub_if_data,
657 dec_tailroom_needed_wk.work);
658
659 /*
660 * The reason for the delayed tailroom needed decrementing is to
661 * make roaming faster: during roaming, all keys are first deleted
662 * and then new keys are installed. The first new key causes the
663 * crypto_tx_tailroom_needed_cnt to go from 0 to 1, which invokes
664 * the cost of synchronize_net() (which can be slow). Avoid this
665 * by deferring the crypto_tx_tailroom_needed_cnt decrementing on
666 * key removal for a while, so if we roam the value is larger than
667 * zero and no 0->1 transition happens.
668 *
669 * The cost is that if the AP switching was from an AP with keys
670 * to one without, we still allocate tailroom while it would no
671 * longer be needed. However, in the typical (fast) roaming case
672 * within an ESS this usually won't happen.
673 */
674
675 mutex_lock(&sdata->local->key_mtx);
676 sdata->crypto_tx_tailroom_needed_cnt -=
677 sdata->crypto_tx_tailroom_pending_dec;
678 sdata->crypto_tx_tailroom_pending_dec = 0;
679 mutex_unlock(&sdata->local->key_mtx);
680}
Johannes Bergc68f4b82011-07-05 16:35:41 +0200681
682void ieee80211_gtk_rekey_notify(struct ieee80211_vif *vif, const u8 *bssid,
683 const u8 *replay_ctr, gfp_t gfp)
684{
685 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
686
687 trace_api_gtk_rekey_notify(sdata, bssid, replay_ctr);
688
689 cfg80211_gtk_rekey_notify(sdata->dev, bssid, replay_ctr, gfp);
690}
691EXPORT_SYMBOL_GPL(ieee80211_gtk_rekey_notify);
Johannes Berg3ea542d2011-07-07 18:58:00 +0200692
693void ieee80211_get_key_tx_seq(struct ieee80211_key_conf *keyconf,
694 struct ieee80211_key_seq *seq)
695{
696 struct ieee80211_key *key;
697 u64 pn64;
698
699 if (WARN_ON(!(keyconf->flags & IEEE80211_KEY_FLAG_GENERATE_IV)))
700 return;
701
702 key = container_of(keyconf, struct ieee80211_key, conf);
703
704 switch (key->conf.cipher) {
705 case WLAN_CIPHER_SUITE_TKIP:
706 seq->tkip.iv32 = key->u.tkip.tx.iv32;
707 seq->tkip.iv16 = key->u.tkip.tx.iv16;
708 break;
709 case WLAN_CIPHER_SUITE_CCMP:
710 pn64 = atomic64_read(&key->u.ccmp.tx_pn);
711 seq->ccmp.pn[5] = pn64;
712 seq->ccmp.pn[4] = pn64 >> 8;
713 seq->ccmp.pn[3] = pn64 >> 16;
714 seq->ccmp.pn[2] = pn64 >> 24;
715 seq->ccmp.pn[1] = pn64 >> 32;
716 seq->ccmp.pn[0] = pn64 >> 40;
717 break;
718 case WLAN_CIPHER_SUITE_AES_CMAC:
719 pn64 = atomic64_read(&key->u.aes_cmac.tx_pn);
720 seq->ccmp.pn[5] = pn64;
721 seq->ccmp.pn[4] = pn64 >> 8;
722 seq->ccmp.pn[3] = pn64 >> 16;
723 seq->ccmp.pn[2] = pn64 >> 24;
724 seq->ccmp.pn[1] = pn64 >> 32;
725 seq->ccmp.pn[0] = pn64 >> 40;
726 break;
727 default:
728 WARN_ON(1);
729 }
730}
731EXPORT_SYMBOL(ieee80211_get_key_tx_seq);
732
733void ieee80211_get_key_rx_seq(struct ieee80211_key_conf *keyconf,
734 int tid, struct ieee80211_key_seq *seq)
735{
736 struct ieee80211_key *key;
737 const u8 *pn;
738
739 key = container_of(keyconf, struct ieee80211_key, conf);
740
741 switch (key->conf.cipher) {
742 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berg5a306f52012-11-14 23:22:21 +0100743 if (WARN_ON(tid < 0 || tid >= IEEE80211_NUM_TIDS))
Johannes Berg3ea542d2011-07-07 18:58:00 +0200744 return;
745 seq->tkip.iv32 = key->u.tkip.rx[tid].iv32;
746 seq->tkip.iv16 = key->u.tkip.rx[tid].iv16;
747 break;
748 case WLAN_CIPHER_SUITE_CCMP:
Johannes Berg5a306f52012-11-14 23:22:21 +0100749 if (WARN_ON(tid < -1 || tid >= IEEE80211_NUM_TIDS))
Johannes Berg3ea542d2011-07-07 18:58:00 +0200750 return;
751 if (tid < 0)
Johannes Berg5a306f52012-11-14 23:22:21 +0100752 pn = key->u.ccmp.rx_pn[IEEE80211_NUM_TIDS];
Johannes Berg3ea542d2011-07-07 18:58:00 +0200753 else
754 pn = key->u.ccmp.rx_pn[tid];
Johannes Berg4325f6c2013-05-08 13:09:08 +0200755 memcpy(seq->ccmp.pn, pn, IEEE80211_CCMP_PN_LEN);
Johannes Berg3ea542d2011-07-07 18:58:00 +0200756 break;
757 case WLAN_CIPHER_SUITE_AES_CMAC:
758 if (WARN_ON(tid != 0))
759 return;
760 pn = key->u.aes_cmac.rx_pn;
Johannes Berg4325f6c2013-05-08 13:09:08 +0200761 memcpy(seq->aes_cmac.pn, pn, IEEE80211_CMAC_PN_LEN);
Johannes Berg3ea542d2011-07-07 18:58:00 +0200762 break;
763 }
764}
765EXPORT_SYMBOL(ieee80211_get_key_rx_seq);
Johannes Berg27b3eb92013-08-07 20:11:55 +0200766
767void ieee80211_set_key_tx_seq(struct ieee80211_key_conf *keyconf,
768 struct ieee80211_key_seq *seq)
769{
770 struct ieee80211_key *key;
771 u64 pn64;
772
773 key = container_of(keyconf, struct ieee80211_key, conf);
774
775 switch (key->conf.cipher) {
776 case WLAN_CIPHER_SUITE_TKIP:
777 key->u.tkip.tx.iv32 = seq->tkip.iv32;
778 key->u.tkip.tx.iv16 = seq->tkip.iv16;
779 break;
780 case WLAN_CIPHER_SUITE_CCMP:
781 pn64 = (u64)seq->ccmp.pn[5] |
782 ((u64)seq->ccmp.pn[4] << 8) |
783 ((u64)seq->ccmp.pn[3] << 16) |
784 ((u64)seq->ccmp.pn[2] << 24) |
785 ((u64)seq->ccmp.pn[1] << 32) |
786 ((u64)seq->ccmp.pn[0] << 40);
787 atomic64_set(&key->u.ccmp.tx_pn, pn64);
788 break;
789 case WLAN_CIPHER_SUITE_AES_CMAC:
790 pn64 = (u64)seq->aes_cmac.pn[5] |
791 ((u64)seq->aes_cmac.pn[4] << 8) |
792 ((u64)seq->aes_cmac.pn[3] << 16) |
793 ((u64)seq->aes_cmac.pn[2] << 24) |
794 ((u64)seq->aes_cmac.pn[1] << 32) |
795 ((u64)seq->aes_cmac.pn[0] << 40);
796 atomic64_set(&key->u.aes_cmac.tx_pn, pn64);
797 break;
798 default:
799 WARN_ON(1);
800 break;
801 }
802}
803EXPORT_SYMBOL_GPL(ieee80211_set_key_tx_seq);
804
805void ieee80211_set_key_rx_seq(struct ieee80211_key_conf *keyconf,
806 int tid, struct ieee80211_key_seq *seq)
807{
808 struct ieee80211_key *key;
809 u8 *pn;
810
811 key = container_of(keyconf, struct ieee80211_key, conf);
812
813 switch (key->conf.cipher) {
814 case WLAN_CIPHER_SUITE_TKIP:
815 if (WARN_ON(tid < 0 || tid >= IEEE80211_NUM_TIDS))
816 return;
817 key->u.tkip.rx[tid].iv32 = seq->tkip.iv32;
818 key->u.tkip.rx[tid].iv16 = seq->tkip.iv16;
819 break;
820 case WLAN_CIPHER_SUITE_CCMP:
821 if (WARN_ON(tid < -1 || tid >= IEEE80211_NUM_TIDS))
822 return;
823 if (tid < 0)
824 pn = key->u.ccmp.rx_pn[IEEE80211_NUM_TIDS];
825 else
826 pn = key->u.ccmp.rx_pn[tid];
827 memcpy(pn, seq->ccmp.pn, IEEE80211_CCMP_PN_LEN);
828 break;
829 case WLAN_CIPHER_SUITE_AES_CMAC:
830 if (WARN_ON(tid != 0))
831 return;
832 pn = key->u.aes_cmac.rx_pn;
833 memcpy(pn, seq->aes_cmac.pn, IEEE80211_CMAC_PN_LEN);
834 break;
835 default:
836 WARN_ON(1);
837 break;
838 }
839}
840EXPORT_SYMBOL_GPL(ieee80211_set_key_rx_seq);
841
842void ieee80211_remove_key(struct ieee80211_key_conf *keyconf)
843{
844 struct ieee80211_key *key;
845
846 key = container_of(keyconf, struct ieee80211_key, conf);
847
848 assert_key_lock(key->local);
849
850 /*
851 * if key was uploaded, we assume the driver will/has remove(d)
852 * it, so adjust bookkeeping accordingly
853 */
854 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) {
855 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
856
857 if (!((key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC) ||
858 (key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV) ||
859 (key->conf.flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE)))
860 increment_tailroom_need_count(key->sdata);
861 }
862
863 ieee80211_key_free(key, false);
864}
865EXPORT_SYMBOL_GPL(ieee80211_remove_key);
866
867struct ieee80211_key_conf *
868ieee80211_gtk_rekey_add(struct ieee80211_vif *vif,
869 struct ieee80211_key_conf *keyconf)
870{
871 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
872 struct ieee80211_local *local = sdata->local;
873 struct ieee80211_key *key;
874 int err;
875
876 if (WARN_ON(!local->wowlan))
877 return ERR_PTR(-EINVAL);
878
879 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
880 return ERR_PTR(-EINVAL);
881
882 key = ieee80211_key_alloc(keyconf->cipher, keyconf->keyidx,
883 keyconf->keylen, keyconf->key,
884 0, NULL);
885 if (IS_ERR(key))
Johannes Bergc5dc1642013-08-28 19:03:36 +0200886 return ERR_CAST(key);
Johannes Berg27b3eb92013-08-07 20:11:55 +0200887
888 if (sdata->u.mgd.mfp != IEEE80211_MFP_DISABLED)
889 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
890
891 err = ieee80211_key_link(key, sdata, NULL);
892 if (err)
893 return ERR_PTR(err);
894
895 return &key->conf;
896}
897EXPORT_SYMBOL_GPL(ieee80211_gtk_rekey_add);