blob: 3e0b814f4db3d27828dff5fd38af17987447b6bf [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 Bergd98ad832014-09-03 15:24:57 +03006 * Copyright 2013-2014 Intel Mobile Communications GmbH
Johannes Berg1f5a7e42007-07-27 15:43:23 +02007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
Johannes Berg11a843b2007-08-28 17:01:55 -040013#include <linux/if_ether.h>
14#include <linux/etherdevice.h>
15#include <linux/list.h>
Johannes Bergd4e46a32007-09-14 11:10:24 -040016#include <linux/rcupdate.h>
Johannes Bergdb4d1162008-02-25 16:27:45 +010017#include <linux/rtnetlink.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040019#include <linux/export.h>
Johannes Berg1f5a7e42007-07-27 15:43:23 +020020#include <net/mac80211.h>
Johannes Bergd26ad372012-02-20 11:38:41 +010021#include <asm/unaligned.h>
Johannes Berg1f5a7e42007-07-27 15:43:23 +020022#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020023#include "driver-ops.h"
Johannes Berg1f5a7e42007-07-27 15:43:23 +020024#include "debugfs_key.h"
25#include "aes_ccm.h"
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +020026#include "aes_cmac.h"
Jouni Malinen8ade5382015-01-24 19:52:09 +020027#include "aes_gmac.h"
Jouni Malinen00b9cfa2015-01-24 19:52:06 +020028#include "aes_gcm.h"
Johannes Berg1f5a7e42007-07-27 15:43:23 +020029
Johannes Berg11a843b2007-08-28 17:01:55 -040030
Johannes Bergdbbea672008-02-26 14:34:06 +010031/**
32 * DOC: Key handling basics
Johannes Berg11a843b2007-08-28 17:01:55 -040033 *
34 * Key handling in mac80211 is done based on per-interface (sub_if_data)
35 * keys and per-station keys. Since each station belongs to an interface,
36 * each station key also belongs to that interface.
37 *
Johannes Bergb5c34f62011-01-03 19:51:09 +010038 * Hardware acceleration is done on a best-effort basis for algorithms
39 * that are implemented in software, for each key the hardware is asked
40 * to enable that key for offloading but if it cannot do that the key is
41 * simply kept for software encryption (unless it is for an algorithm
42 * that isn't implemented in software).
43 * There is currently no way of knowing whether a key is handled in SW
44 * or HW except by looking into debugfs.
Johannes Berg11a843b2007-08-28 17:01:55 -040045 *
Johannes Bergb5c34f62011-01-03 19:51:09 +010046 * All key management is internally protected by a mutex. Within all
47 * other parts of mac80211, key references are, just as STA structure
48 * references, protected by RCU. Note, however, that some things are
49 * unprotected, namely the key->sta dereferences within the hardware
50 * acceleration functions. This means that sta_info_destroy() must
51 * remove the key which waits for an RCU grace period.
Johannes Berg11a843b2007-08-28 17:01:55 -040052 */
53
54static const u8 bcast_addr[ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
Johannes Berg11a843b2007-08-28 17:01:55 -040055
Johannes Bergad0e2b52010-06-01 10:19:19 +020056static void assert_key_lock(struct ieee80211_local *local)
Johannes Berg3b967662008-04-08 17:56:52 +020057{
Johannes Berg46a5eba2010-09-15 13:28:15 +020058 lockdep_assert_held(&local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +020059}
60
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +053061static void increment_tailroom_need_count(struct ieee80211_sub_if_data *sdata)
62{
63 /*
64 * When this count is zero, SKB resizing for allocating tailroom
65 * for IV or MMIC is skipped. But, this check has created two race
66 * cases in xmit path while transiting from zero count to one:
67 *
68 * 1. SKB resize was skipped because no key was added but just before
69 * the xmit key is added and SW encryption kicks off.
70 *
71 * 2. SKB resize was skipped because all the keys were hw planted but
72 * just before xmit one of the key is deleted and SW encryption kicks
73 * off.
74 *
75 * In both the above case SW encryption will find not enough space for
76 * tailroom and exits with WARN_ON. (See WARN_ONs at wpa.c)
77 *
78 * Solution has been explained at
79 * http://mid.gmane.org/1308590980.4322.19.camel@jlt3.sipsolutions.net
80 */
81
82 if (!sdata->crypto_tx_tailroom_needed_cnt++) {
83 /*
84 * Flush all XMIT packets currently using HW encryption or no
85 * encryption at all if the count transition is from 0 -> 1.
86 */
87 synchronize_net();
88 }
89}
90
Johannes Berg3ffc2a92010-08-27 14:26:52 +030091static int ieee80211_key_enable_hw_accel(struct ieee80211_key *key)
Johannes Berg11a843b2007-08-28 17:01:55 -040092{
Johannes Bergdc822b52008-12-29 12:55:09 +010093 struct ieee80211_sub_if_data *sdata;
Johannes Berg89c91ca2012-01-20 13:55:19 +010094 struct sta_info *sta;
Johannes Bergfa7e1fb2015-01-22 18:44:19 +010095 int ret = -EOPNOTSUPP;
Johannes Berg11a843b2007-08-28 17:01:55 -040096
Johannes Berg3b967662008-04-08 17:56:52 +020097 might_sleep();
98
Johannes Berg46191942014-10-13 13:43:29 +020099 if (key->flags & KEY_FLAG_TAINTED) {
100 /* If we get here, it's during resume and the key is
101 * tainted so shouldn't be used/programmed any more.
102 * However, its flags may still indicate that it was
103 * programmed into the device (since we're in resume)
104 * so clear that flag now to avoid trying to remove
105 * it again later.
106 */
107 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
Johannes Berg27b3eb92013-08-07 20:11:55 +0200108 return -EINVAL;
Johannes Berg46191942014-10-13 13:43:29 +0200109 }
Johannes Berg27b3eb92013-08-07 20:11:55 +0200110
Johannes Berge31b8212010-10-05 19:39:30 +0200111 if (!key->local->ops->set_key)
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300112 goto out_unsupported;
Johannes Berg11a843b2007-08-28 17:01:55 -0400113
Johannes Bergad0e2b52010-06-01 10:19:19 +0200114 assert_key_lock(key->local);
115
Johannes Berg89c91ca2012-01-20 13:55:19 +0100116 sta = key->sta;
Johannes Bergdc822b52008-12-29 12:55:09 +0100117
Johannes Berge31b8212010-10-05 19:39:30 +0200118 /*
119 * If this is a per-STA GTK, check if it
120 * is supported; if not, return.
121 */
122 if (sta && !(key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE) &&
123 !(key->local->hw.flags & IEEE80211_HW_SUPPORTS_PER_STA_GTK))
124 goto out_unsupported;
125
Johannes Berg89c91ca2012-01-20 13:55:19 +0100126 if (sta && !sta->uploaded)
127 goto out_unsupported;
128
Johannes Bergdc822b52008-12-29 12:55:09 +0100129 sdata = key->sdata;
Helmut Schaa18890d42010-11-19 08:11:01 +0100130 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
131 /*
132 * The driver doesn't know anything about VLAN interfaces.
133 * Hence, don't send GTKs for VLAN interfaces to the driver.
134 */
135 if (!(key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE))
136 goto out_unsupported;
Helmut Schaa18890d42010-11-19 08:11:01 +0100137 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400138
Johannes Berg89c91ca2012-01-20 13:55:19 +0100139 ret = drv_set_key(key->local, SET_KEY, sdata,
140 sta ? &sta->sta : NULL, &key->conf);
Johannes Berg11a843b2007-08-28 17:01:55 -0400141
Johannes Berge31b8212010-10-05 19:39:30 +0200142 if (!ret) {
Johannes Berg11a843b2007-08-28 17:01:55 -0400143 key->flags |= KEY_FLAG_UPLOADED_TO_HARDWARE;
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530144
Johannes Berg1e359a52015-01-05 10:28:49 +0100145 if (!((key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC) ||
Ido Yarivdb128472015-01-06 08:39:02 -0500146 (key->conf.flags & IEEE80211_KEY_FLAG_RESERVE_TAILROOM)))
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530147 sdata->crypto_tx_tailroom_needed_cnt--;
148
Arik Nemtsov077a9152011-10-23 08:21:41 +0200149 WARN_ON((key->conf.flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE) &&
150 (key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV));
151
Johannes Berge31b8212010-10-05 19:39:30 +0200152 return 0;
153 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400154
Johannes Bergfa7e1fb2015-01-22 18:44:19 +0100155 if (ret != -ENOSPC && ret != -EOPNOTSUPP && ret != 1)
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200156 sdata_err(sdata,
Joe Perches0fb9a9e2010-08-20 16:25:38 -0700157 "failed to set key (%d, %pM) to hardware (%d)\n",
Johannes Berg89c91ca2012-01-20 13:55:19 +0100158 key->conf.keyidx,
159 sta ? sta->sta.addr : bcast_addr, ret);
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300160
Johannes Berge31b8212010-10-05 19:39:30 +0200161 out_unsupported:
162 switch (key->conf.cipher) {
163 case WLAN_CIPHER_SUITE_WEP40:
164 case WLAN_CIPHER_SUITE_WEP104:
165 case WLAN_CIPHER_SUITE_TKIP:
166 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200167 case WLAN_CIPHER_SUITE_CCMP_256:
Johannes Berge31b8212010-10-05 19:39:30 +0200168 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +0200169 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Jouni Malinen8ade5382015-01-24 19:52:09 +0200170 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
171 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200172 case WLAN_CIPHER_SUITE_GCMP:
173 case WLAN_CIPHER_SUITE_GCMP_256:
Johannes Bergfa7e1fb2015-01-22 18:44:19 +0100174 /* all of these we can do in software - if driver can */
175 if (ret == 1)
176 return 0;
177 if (key->local->hw.flags & IEEE80211_HW_SW_CRYPTO_CONTROL)
178 return -EINVAL;
Johannes Berge31b8212010-10-05 19:39:30 +0200179 return 0;
180 default:
181 return -EINVAL;
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300182 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400183}
184
185static void ieee80211_key_disable_hw_accel(struct ieee80211_key *key)
186{
Johannes Bergdc822b52008-12-29 12:55:09 +0100187 struct ieee80211_sub_if_data *sdata;
Johannes Berg89c91ca2012-01-20 13:55:19 +0100188 struct sta_info *sta;
Johannes Berg11a843b2007-08-28 17:01:55 -0400189 int ret;
190
Johannes Berg3b967662008-04-08 17:56:52 +0200191 might_sleep();
192
Johannes Bergdb4d1162008-02-25 16:27:45 +0100193 if (!key || !key->local->ops->set_key)
Johannes Berg11a843b2007-08-28 17:01:55 -0400194 return;
195
Johannes Bergad0e2b52010-06-01 10:19:19 +0200196 assert_key_lock(key->local);
197
198 if (!(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
Johannes Berg11a843b2007-08-28 17:01:55 -0400199 return;
200
Johannes Berg89c91ca2012-01-20 13:55:19 +0100201 sta = key->sta;
Johannes Bergdc822b52008-12-29 12:55:09 +0100202 sdata = key->sdata;
203
Johannes Berg1e359a52015-01-05 10:28:49 +0100204 if (!((key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC) ||
Ido Yarivdb128472015-01-06 08:39:02 -0500205 (key->conf.flags & IEEE80211_KEY_FLAG_RESERVE_TAILROOM)))
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530206 increment_tailroom_need_count(sdata);
207
Johannes Berg12375ef2009-11-25 20:30:31 +0100208 ret = drv_set_key(key->local, DISABLE_KEY, sdata,
Johannes Berg89c91ca2012-01-20 13:55:19 +0100209 sta ? &sta->sta : NULL, &key->conf);
Johannes Berg11a843b2007-08-28 17:01:55 -0400210
211 if (ret)
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200212 sdata_err(sdata,
Joe Perches0fb9a9e2010-08-20 16:25:38 -0700213 "failed to remove key (%d, %pM) from hardware (%d)\n",
Johannes Berg89c91ca2012-01-20 13:55:19 +0100214 key->conf.keyidx,
215 sta ? sta->sta.addr : bcast_addr, ret);
Johannes Berg11a843b2007-08-28 17:01:55 -0400216
Johannes Berg3b967662008-04-08 17:56:52 +0200217 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
Johannes Berg3b967662008-04-08 17:56:52 +0200218}
219
220static void __ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata,
Johannes Bergf7e01042010-12-09 19:49:02 +0100221 int idx, bool uni, bool multi)
Johannes Berg3b967662008-04-08 17:56:52 +0200222{
223 struct ieee80211_key *key = NULL;
224
Johannes Bergad0e2b52010-06-01 10:19:19 +0200225 assert_key_lock(sdata->local);
226
Johannes Berg3b967662008-04-08 17:56:52 +0200227 if (idx >= 0 && idx < NUM_DEFAULT_KEYS)
Johannes Berg40b275b2011-05-13 14:15:49 +0200228 key = key_mtx_dereference(sdata->local, sdata->keys[idx]);
Johannes Berg3b967662008-04-08 17:56:52 +0200229
Yoni Divinskyde5fad82012-05-30 11:36:39 +0300230 if (uni) {
Johannes Bergf7e01042010-12-09 19:49:02 +0100231 rcu_assign_pointer(sdata->default_unicast_key, key);
Johannes Berg17c18bf2015-03-21 15:25:43 +0100232 ieee80211_check_fast_xmit_iface(sdata);
Yoni Divinskyde5fad82012-05-30 11:36:39 +0300233 drv_set_default_unicast_key(sdata->local, sdata, idx);
234 }
235
Johannes Bergf7e01042010-12-09 19:49:02 +0100236 if (multi)
237 rcu_assign_pointer(sdata->default_multicast_key, key);
Johannes Berg3b967662008-04-08 17:56:52 +0200238
Johannes Bergf7e01042010-12-09 19:49:02 +0100239 ieee80211_debugfs_key_update_default(sdata);
Johannes Berg3b967662008-04-08 17:56:52 +0200240}
241
Johannes Bergf7e01042010-12-09 19:49:02 +0100242void ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata, int idx,
243 bool uni, bool multi)
Johannes Berg3b967662008-04-08 17:56:52 +0200244{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200245 mutex_lock(&sdata->local->key_mtx);
Johannes Bergf7e01042010-12-09 19:49:02 +0100246 __ieee80211_set_default_key(sdata, idx, uni, multi);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200247 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200248}
249
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200250static void
251__ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata, int idx)
252{
253 struct ieee80211_key *key = NULL;
254
Johannes Bergad0e2b52010-06-01 10:19:19 +0200255 assert_key_lock(sdata->local);
256
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200257 if (idx >= NUM_DEFAULT_KEYS &&
258 idx < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
Johannes Berg40b275b2011-05-13 14:15:49 +0200259 key = key_mtx_dereference(sdata->local, sdata->keys[idx]);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200260
261 rcu_assign_pointer(sdata->default_mgmt_key, key);
262
Johannes Bergf7e01042010-12-09 19:49:02 +0100263 ieee80211_debugfs_key_update_default(sdata);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200264}
265
266void ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata,
267 int idx)
268{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200269 mutex_lock(&sdata->local->key_mtx);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200270 __ieee80211_set_default_mgmt_key(sdata, idx);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200271 mutex_unlock(&sdata->local->key_mtx);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200272}
273
Johannes Berg3b967662008-04-08 17:56:52 +0200274
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100275static void ieee80211_key_replace(struct ieee80211_sub_if_data *sdata,
276 struct sta_info *sta,
277 bool pairwise,
278 struct ieee80211_key *old,
279 struct ieee80211_key *new)
Johannes Berg3b967662008-04-08 17:56:52 +0200280{
Johannes Bergf7e01042010-12-09 19:49:02 +0100281 int idx;
282 bool defunikey, defmultikey, defmgmtkey;
Johannes Berg3b967662008-04-08 17:56:52 +0200283
Johannes Berg5282c3b2013-10-29 10:00:08 +0100284 /* caller must provide at least one old/new */
285 if (WARN_ON(!new && !old))
286 return;
287
Johannes Berg3b967662008-04-08 17:56:52 +0200288 if (new)
Johannes Bergf850e002011-07-13 19:50:53 +0200289 list_add_tail(&new->list, &sdata->key_list);
Johannes Berg3b967662008-04-08 17:56:52 +0200290
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200291 WARN_ON(new && old && new->conf.keyidx != old->conf.keyidx);
292
293 if (old)
294 idx = old->conf.keyidx;
295 else
296 idx = new->conf.keyidx;
297
298 if (sta) {
299 if (pairwise) {
300 rcu_assign_pointer(sta->ptk[idx], new);
301 sta->ptk_idx = idx;
Johannes Berg17c18bf2015-03-21 15:25:43 +0100302 ieee80211_check_fast_xmit(sta);
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200303 } else {
304 rcu_assign_pointer(sta->gtk[idx], new);
305 sta->gtk_idx = idx;
306 }
Johannes Berg3b967662008-04-08 17:56:52 +0200307 } else {
Johannes Berg40b275b2011-05-13 14:15:49 +0200308 defunikey = old &&
309 old == key_mtx_dereference(sdata->local,
310 sdata->default_unicast_key);
311 defmultikey = old &&
312 old == key_mtx_dereference(sdata->local,
313 sdata->default_multicast_key);
314 defmgmtkey = old &&
315 old == key_mtx_dereference(sdata->local,
316 sdata->default_mgmt_key);
Johannes Berg3b967662008-04-08 17:56:52 +0200317
Johannes Bergf7e01042010-12-09 19:49:02 +0100318 if (defunikey && !new)
319 __ieee80211_set_default_key(sdata, -1, true, false);
320 if (defmultikey && !new)
321 __ieee80211_set_default_key(sdata, -1, false, true);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200322 if (defmgmtkey && !new)
323 __ieee80211_set_default_mgmt_key(sdata, -1);
Johannes Berg3b967662008-04-08 17:56:52 +0200324
325 rcu_assign_pointer(sdata->keys[idx], new);
Johannes Bergf7e01042010-12-09 19:49:02 +0100326 if (defunikey && new)
327 __ieee80211_set_default_key(sdata, new->conf.keyidx,
328 true, false);
329 if (defmultikey && new)
330 __ieee80211_set_default_key(sdata, new->conf.keyidx,
331 false, true);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200332 if (defmgmtkey && new)
333 __ieee80211_set_default_mgmt_key(sdata,
334 new->conf.keyidx);
Johannes Berg3b967662008-04-08 17:56:52 +0200335 }
336
Johannes Bergb5c34f62011-01-03 19:51:09 +0100337 if (old)
338 list_del(&old->list);
Johannes Berg11a843b2007-08-28 17:01:55 -0400339}
340
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200341struct ieee80211_key *
342ieee80211_key_alloc(u32 cipher, int idx, size_t key_len,
343 const u8 *key_data,
344 size_t seq_len, const u8 *seq,
345 const struct ieee80211_cipher_scheme *cs)
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200346{
347 struct ieee80211_key *key;
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100348 int i, j, err;
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200349
Johannes Berg8c5bb1f2014-04-29 17:55:26 +0200350 if (WARN_ON(idx < 0 || idx >= NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS))
351 return ERR_PTR(-EINVAL);
Johannes Berg11a843b2007-08-28 17:01:55 -0400352
353 key = kzalloc(sizeof(struct ieee80211_key) + key_len, GFP_KERNEL);
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200354 if (!key)
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100355 return ERR_PTR(-ENOMEM);
Johannes Berg11a843b2007-08-28 17:01:55 -0400356
357 /*
358 * Default to software encryption; we'll later upload the
359 * key to the hardware if possible.
360 */
Johannes Berg11a843b2007-08-28 17:01:55 -0400361 key->conf.flags = 0;
362 key->flags = 0;
363
Johannes Berg97359d12010-08-10 09:46:38 +0200364 key->conf.cipher = cipher;
Johannes Berg11a843b2007-08-28 17:01:55 -0400365 key->conf.keyidx = idx;
366 key->conf.keylen = key_len;
Johannes Berg97359d12010-08-10 09:46:38 +0200367 switch (cipher) {
368 case WLAN_CIPHER_SUITE_WEP40:
369 case WLAN_CIPHER_SUITE_WEP104:
Johannes Berg4325f6c2013-05-08 13:09:08 +0200370 key->conf.iv_len = IEEE80211_WEP_IV_LEN;
371 key->conf.icv_len = IEEE80211_WEP_ICV_LEN;
Felix Fietkau76708de2008-10-05 18:02:48 +0200372 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200373 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berg4325f6c2013-05-08 13:09:08 +0200374 key->conf.iv_len = IEEE80211_TKIP_IV_LEN;
375 key->conf.icv_len = IEEE80211_TKIP_ICV_LEN;
Jouni Malinen9f26a952009-05-15 12:38:32 +0300376 if (seq) {
Johannes Berg5a306f52012-11-14 23:22:21 +0100377 for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300378 key->u.tkip.rx[i].iv32 =
379 get_unaligned_le32(&seq[2]);
380 key->u.tkip.rx[i].iv16 =
381 get_unaligned_le16(seq);
382 }
383 }
Johannes Berg523b02e2011-07-07 22:28:01 +0200384 spin_lock_init(&key->u.tkip.txlock);
Felix Fietkau76708de2008-10-05 18:02:48 +0200385 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200386 case WLAN_CIPHER_SUITE_CCMP:
Johannes Berg4325f6c2013-05-08 13:09:08 +0200387 key->conf.iv_len = IEEE80211_CCMP_HDR_LEN;
388 key->conf.icv_len = IEEE80211_CCMP_MIC_LEN;
Jouni Malinen9f26a952009-05-15 12:38:32 +0300389 if (seq) {
Johannes Berg5a306f52012-11-14 23:22:21 +0100390 for (i = 0; i < IEEE80211_NUM_TIDS + 1; i++)
Johannes Berg4325f6c2013-05-08 13:09:08 +0200391 for (j = 0; j < IEEE80211_CCMP_PN_LEN; j++)
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300392 key->u.ccmp.rx_pn[i][j] =
Johannes Berg4325f6c2013-05-08 13:09:08 +0200393 seq[IEEE80211_CCMP_PN_LEN - j - 1];
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300394 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400395 /*
396 * Initialize AES key state here as an optimization so that
397 * it does not need to be initialized for every packet.
398 */
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200399 key->u.ccmp.tfm = ieee80211_aes_key_setup_encrypt(
400 key_data, key_len, IEEE80211_CCMP_MIC_LEN);
401 if (IS_ERR(key->u.ccmp.tfm)) {
402 err = PTR_ERR(key->u.ccmp.tfm);
403 kfree(key);
404 return ERR_PTR(err);
405 }
406 break;
407 case WLAN_CIPHER_SUITE_CCMP_256:
408 key->conf.iv_len = IEEE80211_CCMP_256_HDR_LEN;
409 key->conf.icv_len = IEEE80211_CCMP_256_MIC_LEN;
410 for (i = 0; seq && i < IEEE80211_NUM_TIDS + 1; i++)
411 for (j = 0; j < IEEE80211_CCMP_256_PN_LEN; j++)
412 key->u.ccmp.rx_pn[i][j] =
413 seq[IEEE80211_CCMP_256_PN_LEN - j - 1];
414 /* Initialize AES key state here as an optimization so that
415 * it does not need to be initialized for every packet.
416 */
417 key->u.ccmp.tfm = ieee80211_aes_key_setup_encrypt(
418 key_data, key_len, IEEE80211_CCMP_256_MIC_LEN);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100419 if (IS_ERR(key->u.ccmp.tfm)) {
420 err = PTR_ERR(key->u.ccmp.tfm);
Johannes Berg3b967662008-04-08 17:56:52 +0200421 kfree(key);
Petr Å tetiar1f951a72011-03-27 13:31:26 +0200422 return ERR_PTR(err);
Johannes Berg11a843b2007-08-28 17:01:55 -0400423 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200424 break;
425 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +0200426 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Johannes Berg60ae0f22010-08-10 09:46:39 +0200427 key->conf.iv_len = 0;
Jouni Malinen56c52da2015-01-24 19:52:08 +0200428 if (cipher == WLAN_CIPHER_SUITE_AES_CMAC)
429 key->conf.icv_len = sizeof(struct ieee80211_mmie);
430 else
431 key->conf.icv_len = sizeof(struct ieee80211_mmie_16);
Johannes Berg60ae0f22010-08-10 09:46:39 +0200432 if (seq)
Johannes Berg4325f6c2013-05-08 13:09:08 +0200433 for (j = 0; j < IEEE80211_CMAC_PN_LEN; j++)
Johannes Berg0f927322012-11-14 23:15:11 +0100434 key->u.aes_cmac.rx_pn[j] =
Johannes Berg4325f6c2013-05-08 13:09:08 +0200435 seq[IEEE80211_CMAC_PN_LEN - j - 1];
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200436 /*
437 * Initialize AES key state here as an optimization so that
438 * it does not need to be initialized for every packet.
439 */
440 key->u.aes_cmac.tfm =
Jouni Malinen56c52da2015-01-24 19:52:08 +0200441 ieee80211_aes_cmac_key_setup(key_data, key_len);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100442 if (IS_ERR(key->u.aes_cmac.tfm)) {
443 err = PTR_ERR(key->u.aes_cmac.tfm);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200444 kfree(key);
Petr Å tetiar1f951a72011-03-27 13:31:26 +0200445 return ERR_PTR(err);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200446 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200447 break;
Jouni Malinen8ade5382015-01-24 19:52:09 +0200448 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
449 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
450 key->conf.iv_len = 0;
451 key->conf.icv_len = sizeof(struct ieee80211_mmie_16);
452 if (seq)
453 for (j = 0; j < IEEE80211_GMAC_PN_LEN; j++)
454 key->u.aes_gmac.rx_pn[j] =
455 seq[IEEE80211_GMAC_PN_LEN - j - 1];
456 /* Initialize AES key state here as an optimization so that
457 * it does not need to be initialized for every packet.
458 */
459 key->u.aes_gmac.tfm =
460 ieee80211_aes_gmac_key_setup(key_data, key_len);
461 if (IS_ERR(key->u.aes_gmac.tfm)) {
462 err = PTR_ERR(key->u.aes_gmac.tfm);
463 kfree(key);
464 return ERR_PTR(err);
465 }
466 break;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200467 case WLAN_CIPHER_SUITE_GCMP:
468 case WLAN_CIPHER_SUITE_GCMP_256:
469 key->conf.iv_len = IEEE80211_GCMP_HDR_LEN;
470 key->conf.icv_len = IEEE80211_GCMP_MIC_LEN;
471 for (i = 0; seq && i < IEEE80211_NUM_TIDS + 1; i++)
472 for (j = 0; j < IEEE80211_GCMP_PN_LEN; j++)
473 key->u.gcmp.rx_pn[i][j] =
474 seq[IEEE80211_GCMP_PN_LEN - j - 1];
475 /* Initialize AES key state here as an optimization so that
476 * it does not need to be initialized for every packet.
477 */
478 key->u.gcmp.tfm = ieee80211_aes_gcm_key_setup_encrypt(key_data,
479 key_len);
480 if (IS_ERR(key->u.gcmp.tfm)) {
481 err = PTR_ERR(key->u.gcmp.tfm);
482 kfree(key);
483 return ERR_PTR(err);
484 }
485 break;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200486 default:
487 if (cs) {
488 size_t len = (seq_len > MAX_PN_LEN) ?
489 MAX_PN_LEN : seq_len;
490
491 key->conf.iv_len = cs->hdr_len;
492 key->conf.icv_len = cs->mic_len;
493 for (i = 0; i < IEEE80211_NUM_TIDS + 1; i++)
494 for (j = 0; j < len; j++)
495 key->u.gen.rx_pn[i][j] =
496 seq[len - j - 1];
Cedric Izoardc7ef38e2015-03-17 10:47:33 +0000497 key->flags |= KEY_FLAG_CIPHER_SCHEME;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200498 }
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200499 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200500 memcpy(key->conf.key, key_data, key_len);
501 INIT_LIST_HEAD(&key->list);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200502
Johannes Bergdb4d1162008-02-25 16:27:45 +0100503 return key;
504}
Johannes Berg11a843b2007-08-28 17:01:55 -0400505
Johannes Berg79cf2df2013-03-06 22:53:52 +0100506static void ieee80211_key_free_common(struct ieee80211_key *key)
507{
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200508 switch (key->conf.cipher) {
509 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200510 case WLAN_CIPHER_SUITE_CCMP_256:
Johannes Berg79cf2df2013-03-06 22:53:52 +0100511 ieee80211_aes_key_free(key->u.ccmp.tfm);
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200512 break;
513 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +0200514 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Johannes Berg79cf2df2013-03-06 22:53:52 +0100515 ieee80211_aes_cmac_key_free(key->u.aes_cmac.tfm);
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200516 break;
Jouni Malinen8ade5382015-01-24 19:52:09 +0200517 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
518 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
519 ieee80211_aes_gmac_key_free(key->u.aes_gmac.tfm);
520 break;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200521 case WLAN_CIPHER_SUITE_GCMP:
522 case WLAN_CIPHER_SUITE_GCMP_256:
523 ieee80211_aes_gcm_key_free(key->u.gcmp.tfm);
524 break;
525 }
Johannes Berg29c3f9c2014-09-10 13:39:55 +0300526 kzfree(key);
Johannes Berg79cf2df2013-03-06 22:53:52 +0100527}
528
Johannes Berg6d10e462013-03-06 23:09:11 +0100529static void __ieee80211_key_destroy(struct ieee80211_key *key,
530 bool delay_tailroom)
Johannes Bergad0e2b52010-06-01 10:19:19 +0200531{
Jouni Malinen32162a42010-07-26 15:52:03 -0700532 if (key->local)
533 ieee80211_key_disable_hw_accel(key);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200534
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530535 if (key->local) {
Johannes Berg8d1f7ec2013-02-23 00:59:03 +0100536 struct ieee80211_sub_if_data *sdata = key->sdata;
537
Jouni Malinen32162a42010-07-26 15:52:03 -0700538 ieee80211_debugfs_key_remove(key);
Johannes Berg8d1f7ec2013-02-23 00:59:03 +0100539
540 if (delay_tailroom) {
541 /* see ieee80211_delayed_tailroom_dec */
542 sdata->crypto_tx_tailroom_pending_dec++;
543 schedule_delayed_work(&sdata->dec_tailroom_needed_wk,
544 HZ/2);
545 } else {
546 sdata->crypto_tx_tailroom_needed_cnt--;
547 }
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530548 }
Johannes Bergad0e2b52010-06-01 10:19:19 +0200549
Johannes Berg79cf2df2013-03-06 22:53:52 +0100550 ieee80211_key_free_common(key);
551}
552
Johannes Berg6d10e462013-03-06 23:09:11 +0100553static void ieee80211_key_destroy(struct ieee80211_key *key,
554 bool delay_tailroom)
555{
556 if (!key)
557 return;
558
559 /*
560 * Synchronize so the TX path can no longer be using
561 * this key before we free/remove it.
562 */
563 synchronize_net();
564
565 __ieee80211_key_destroy(key, delay_tailroom);
566}
567
Johannes Berg79cf2df2013-03-06 22:53:52 +0100568void ieee80211_key_free_unused(struct ieee80211_key *key)
569{
570 WARN_ON(key->sdata || key->local);
571 ieee80211_key_free_common(key);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200572}
573
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300574int ieee80211_key_link(struct ieee80211_key *key,
575 struct ieee80211_sub_if_data *sdata,
576 struct sta_info *sta)
Johannes Bergdb4d1162008-02-25 16:27:45 +0100577{
Johannes Berg27b3eb92013-08-07 20:11:55 +0200578 struct ieee80211_local *local = sdata->local;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100579 struct ieee80211_key *old_key;
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300580 int idx, ret;
Mariusz Kozlowski67aa0302011-03-26 18:58:51 +0100581 bool pairwise;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100582
Mariusz Kozlowski67aa0302011-03-26 18:58:51 +0100583 pairwise = key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100584 idx = key->conf.keyidx;
585 key->local = sdata->local;
586 key->sdata = sdata;
587 key->sta = sta;
588
Johannes Bergad0e2b52010-06-01 10:19:19 +0200589 mutex_lock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200590
Johannes Berge31b8212010-10-05 19:39:30 +0200591 if (sta && pairwise)
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200592 old_key = key_mtx_dereference(sdata->local, sta->ptk[idx]);
Johannes Berge31b8212010-10-05 19:39:30 +0200593 else if (sta)
Johannes Berg40b275b2011-05-13 14:15:49 +0200594 old_key = key_mtx_dereference(sdata->local, sta->gtk[idx]);
Johannes Bergd4e46a32007-09-14 11:10:24 -0400595 else
Johannes Berg40b275b2011-05-13 14:15:49 +0200596 old_key = key_mtx_dereference(sdata->local, sdata->keys[idx]);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100597
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530598 increment_tailroom_need_count(sdata);
599
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100600 ieee80211_key_replace(sdata, sta, pairwise, old_key, key);
601 ieee80211_key_destroy(old_key, true);
Johannes Bergd4e46a32007-09-14 11:10:24 -0400602
Johannes Bergad0e2b52010-06-01 10:19:19 +0200603 ieee80211_debugfs_key_add(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200604
Johannes Berg27b3eb92013-08-07 20:11:55 +0200605 if (!local->wowlan) {
606 ret = ieee80211_key_enable_hw_accel(key);
607 if (ret)
608 ieee80211_key_free(key, true);
609 } else {
610 ret = 0;
611 }
Johannes Berg79cf2df2013-03-06 22:53:52 +0100612
Johannes Bergad0e2b52010-06-01 10:19:19 +0200613 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300614
615 return ret;
Johannes Berg3a245762008-04-09 16:45:37 +0200616}
617
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100618void ieee80211_key_free(struct ieee80211_key *key, bool delay_tailroom)
Johannes Berg3a245762008-04-09 16:45:37 +0200619{
Johannes Berg5c0c3642011-05-12 14:31:49 +0200620 if (!key)
621 return;
622
Johannes Berg3a245762008-04-09 16:45:37 +0200623 /*
624 * Replace key with nothingness if it was ever used.
625 */
626 if (key->sdata)
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100627 ieee80211_key_replace(key->sdata, key->sta,
Johannes Berge31b8212010-10-05 19:39:30 +0200628 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE,
629 key, NULL);
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100630 ieee80211_key_destroy(key, delay_tailroom);
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200631}
632
Johannes Berg3b967662008-04-08 17:56:52 +0200633void ieee80211_enable_keys(struct ieee80211_sub_if_data *sdata)
634{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200635 struct ieee80211_key *key;
636
Johannes Berg3a245762008-04-09 16:45:37 +0200637 ASSERT_RTNL();
Johannes Berg3b967662008-04-08 17:56:52 +0200638
Johannes Berg9607e6b662009-12-23 13:15:31 +0100639 if (WARN_ON(!ieee80211_sdata_running(sdata)))
Johannes Berg3b967662008-04-08 17:56:52 +0200640 return;
641
Johannes Bergad0e2b52010-06-01 10:19:19 +0200642 mutex_lock(&sdata->local->key_mtx);
643
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530644 sdata->crypto_tx_tailroom_needed_cnt = 0;
645
646 list_for_each_entry(key, &sdata->key_list, list) {
647 increment_tailroom_need_count(sdata);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200648 ieee80211_key_enable_hw_accel(key);
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530649 }
Johannes Bergad0e2b52010-06-01 10:19:19 +0200650
651 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200652}
653
Johannes Berg830af022011-07-05 16:35:39 +0200654void ieee80211_iter_keys(struct ieee80211_hw *hw,
655 struct ieee80211_vif *vif,
656 void (*iter)(struct ieee80211_hw *hw,
657 struct ieee80211_vif *vif,
658 struct ieee80211_sta *sta,
659 struct ieee80211_key_conf *key,
660 void *data),
661 void *iter_data)
662{
663 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berg27b3eb92013-08-07 20:11:55 +0200664 struct ieee80211_key *key, *tmp;
Johannes Berg830af022011-07-05 16:35:39 +0200665 struct ieee80211_sub_if_data *sdata;
666
667 ASSERT_RTNL();
668
669 mutex_lock(&local->key_mtx);
670 if (vif) {
671 sdata = vif_to_sdata(vif);
Johannes Berg27b3eb92013-08-07 20:11:55 +0200672 list_for_each_entry_safe(key, tmp, &sdata->key_list, list)
Johannes Berg830af022011-07-05 16:35:39 +0200673 iter(hw, &sdata->vif,
674 key->sta ? &key->sta->sta : NULL,
675 &key->conf, iter_data);
676 } else {
677 list_for_each_entry(sdata, &local->interfaces, list)
Johannes Berg27b3eb92013-08-07 20:11:55 +0200678 list_for_each_entry_safe(key, tmp,
679 &sdata->key_list, list)
Johannes Berg830af022011-07-05 16:35:39 +0200680 iter(hw, &sdata->vif,
681 key->sta ? &key->sta->sta : NULL,
682 &key->conf, iter_data);
683 }
684 mutex_unlock(&local->key_mtx);
685}
686EXPORT_SYMBOL(ieee80211_iter_keys);
687
Johannes Berg7907c7d2013-12-04 23:47:09 +0100688static void ieee80211_free_keys_iface(struct ieee80211_sub_if_data *sdata,
689 struct list_head *keys)
Johannes Berg11a843b2007-08-28 17:01:55 -0400690{
691 struct ieee80211_key *key, *tmp;
Johannes Berg3b967662008-04-08 17:56:52 +0200692
Johannes Berg8d1f7ec2013-02-23 00:59:03 +0100693 sdata->crypto_tx_tailroom_needed_cnt -=
694 sdata->crypto_tx_tailroom_pending_dec;
695 sdata->crypto_tx_tailroom_pending_dec = 0;
696
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200697 ieee80211_debugfs_key_remove_mgmt_default(sdata);
Johannes Berg11a843b2007-08-28 17:01:55 -0400698
Johannes Berg6d10e462013-03-06 23:09:11 +0100699 list_for_each_entry_safe(key, tmp, &sdata->key_list, list) {
700 ieee80211_key_replace(key->sdata, key->sta,
701 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE,
702 key, NULL);
Johannes Berg7907c7d2013-12-04 23:47:09 +0100703 list_add_tail(&key->list, keys);
Johannes Berg6d10e462013-03-06 23:09:11 +0100704 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400705
Johannes Bergf7e01042010-12-09 19:49:02 +0100706 ieee80211_debugfs_key_update_default(sdata);
Johannes Berg7907c7d2013-12-04 23:47:09 +0100707}
Johannes Bergf7e01042010-12-09 19:49:02 +0100708
Johannes Berg7907c7d2013-12-04 23:47:09 +0100709void ieee80211_free_keys(struct ieee80211_sub_if_data *sdata,
710 bool force_synchronize)
711{
712 struct ieee80211_local *local = sdata->local;
713 struct ieee80211_sub_if_data *vlan;
714 struct ieee80211_key *key, *tmp;
715 LIST_HEAD(keys);
716
717 cancel_delayed_work_sync(&sdata->dec_tailroom_needed_wk);
718
719 mutex_lock(&local->key_mtx);
720
721 ieee80211_free_keys_iface(sdata, &keys);
722
723 if (sdata->vif.type == NL80211_IFTYPE_AP) {
724 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
725 ieee80211_free_keys_iface(vlan, &keys);
Johannes Berg6d10e462013-03-06 23:09:11 +0100726 }
727
Johannes Berg7907c7d2013-12-04 23:47:09 +0100728 if (!list_empty(&keys) || force_synchronize)
729 synchronize_net();
730 list_for_each_entry_safe(key, tmp, &keys, list)
731 __ieee80211_key_destroy(key, false);
732
Johannes Berg8d1f7ec2013-02-23 00:59:03 +0100733 WARN_ON_ONCE(sdata->crypto_tx_tailroom_needed_cnt ||
734 sdata->crypto_tx_tailroom_pending_dec);
Johannes Berg7907c7d2013-12-04 23:47:09 +0100735 if (sdata->vif.type == NL80211_IFTYPE_AP) {
736 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
737 WARN_ON_ONCE(vlan->crypto_tx_tailroom_needed_cnt ||
738 vlan->crypto_tx_tailroom_pending_dec);
739 }
Johannes Berg8d1f7ec2013-02-23 00:59:03 +0100740
Johannes Berg7907c7d2013-12-04 23:47:09 +0100741 mutex_unlock(&local->key_mtx);
Johannes Berg11a843b2007-08-28 17:01:55 -0400742}
Johannes Bergc68f4b82011-07-05 16:35:41 +0200743
Johannes Berg6d10e462013-03-06 23:09:11 +0100744void ieee80211_free_sta_keys(struct ieee80211_local *local,
745 struct sta_info *sta)
746{
Johannes Bergc8782072013-12-04 23:05:45 +0100747 struct ieee80211_key *key;
Johannes Berg6d10e462013-03-06 23:09:11 +0100748 int i;
749
750 mutex_lock(&local->key_mtx);
Johannes Berg28a9bc62014-12-17 13:55:49 +0100751 for (i = 0; i < ARRAY_SIZE(sta->gtk); i++) {
Johannes Berg6d10e462013-03-06 23:09:11 +0100752 key = key_mtx_dereference(local, sta->gtk[i]);
753 if (!key)
754 continue;
755 ieee80211_key_replace(key->sdata, key->sta,
756 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE,
757 key, NULL);
Johannes Bergc8782072013-12-04 23:05:45 +0100758 __ieee80211_key_destroy(key, true);
Johannes Berg6d10e462013-03-06 23:09:11 +0100759 }
760
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200761 for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
762 key = key_mtx_dereference(local, sta->ptk[i]);
763 if (!key)
764 continue;
Johannes Berg6d10e462013-03-06 23:09:11 +0100765 ieee80211_key_replace(key->sdata, key->sta,
766 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE,
767 key, NULL);
Johannes Berg6d10e462013-03-06 23:09:11 +0100768 __ieee80211_key_destroy(key, true);
Johannes Bergc8782072013-12-04 23:05:45 +0100769 }
Johannes Berg6d10e462013-03-06 23:09:11 +0100770
771 mutex_unlock(&local->key_mtx);
772}
773
Johannes Berg8d1f7ec2013-02-23 00:59:03 +0100774void ieee80211_delayed_tailroom_dec(struct work_struct *wk)
775{
776 struct ieee80211_sub_if_data *sdata;
777
778 sdata = container_of(wk, struct ieee80211_sub_if_data,
779 dec_tailroom_needed_wk.work);
780
781 /*
782 * The reason for the delayed tailroom needed decrementing is to
783 * make roaming faster: during roaming, all keys are first deleted
784 * and then new keys are installed. The first new key causes the
785 * crypto_tx_tailroom_needed_cnt to go from 0 to 1, which invokes
786 * the cost of synchronize_net() (which can be slow). Avoid this
787 * by deferring the crypto_tx_tailroom_needed_cnt decrementing on
788 * key removal for a while, so if we roam the value is larger than
789 * zero and no 0->1 transition happens.
790 *
791 * The cost is that if the AP switching was from an AP with keys
792 * to one without, we still allocate tailroom while it would no
793 * longer be needed. However, in the typical (fast) roaming case
794 * within an ESS this usually won't happen.
795 */
796
797 mutex_lock(&sdata->local->key_mtx);
798 sdata->crypto_tx_tailroom_needed_cnt -=
799 sdata->crypto_tx_tailroom_pending_dec;
800 sdata->crypto_tx_tailroom_pending_dec = 0;
801 mutex_unlock(&sdata->local->key_mtx);
802}
Johannes Bergc68f4b82011-07-05 16:35:41 +0200803
804void ieee80211_gtk_rekey_notify(struct ieee80211_vif *vif, const u8 *bssid,
805 const u8 *replay_ctr, gfp_t gfp)
806{
807 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
808
809 trace_api_gtk_rekey_notify(sdata, bssid, replay_ctr);
810
811 cfg80211_gtk_rekey_notify(sdata->dev, bssid, replay_ctr, gfp);
812}
813EXPORT_SYMBOL_GPL(ieee80211_gtk_rekey_notify);
Johannes Berg3ea542d2011-07-07 18:58:00 +0200814
815void ieee80211_get_key_tx_seq(struct ieee80211_key_conf *keyconf,
816 struct ieee80211_key_seq *seq)
817{
818 struct ieee80211_key *key;
819 u64 pn64;
820
821 if (WARN_ON(!(keyconf->flags & IEEE80211_KEY_FLAG_GENERATE_IV)))
822 return;
823
824 key = container_of(keyconf, struct ieee80211_key, conf);
825
826 switch (key->conf.cipher) {
827 case WLAN_CIPHER_SUITE_TKIP:
828 seq->tkip.iv32 = key->u.tkip.tx.iv32;
829 seq->tkip.iv16 = key->u.tkip.tx.iv16;
830 break;
831 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200832 case WLAN_CIPHER_SUITE_CCMP_256:
Johannes Berg3ea542d2011-07-07 18:58:00 +0200833 pn64 = atomic64_read(&key->u.ccmp.tx_pn);
834 seq->ccmp.pn[5] = pn64;
835 seq->ccmp.pn[4] = pn64 >> 8;
836 seq->ccmp.pn[3] = pn64 >> 16;
837 seq->ccmp.pn[2] = pn64 >> 24;
838 seq->ccmp.pn[1] = pn64 >> 32;
839 seq->ccmp.pn[0] = pn64 >> 40;
840 break;
841 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +0200842 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Johannes Berg3ea542d2011-07-07 18:58:00 +0200843 pn64 = atomic64_read(&key->u.aes_cmac.tx_pn);
844 seq->ccmp.pn[5] = pn64;
845 seq->ccmp.pn[4] = pn64 >> 8;
846 seq->ccmp.pn[3] = pn64 >> 16;
847 seq->ccmp.pn[2] = pn64 >> 24;
848 seq->ccmp.pn[1] = pn64 >> 32;
849 seq->ccmp.pn[0] = pn64 >> 40;
850 break;
Jouni Malinen8ade5382015-01-24 19:52:09 +0200851 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
852 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
853 pn64 = atomic64_read(&key->u.aes_gmac.tx_pn);
854 seq->ccmp.pn[5] = pn64;
855 seq->ccmp.pn[4] = pn64 >> 8;
856 seq->ccmp.pn[3] = pn64 >> 16;
857 seq->ccmp.pn[2] = pn64 >> 24;
858 seq->ccmp.pn[1] = pn64 >> 32;
859 seq->ccmp.pn[0] = pn64 >> 40;
860 break;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200861 case WLAN_CIPHER_SUITE_GCMP:
862 case WLAN_CIPHER_SUITE_GCMP_256:
863 pn64 = atomic64_read(&key->u.gcmp.tx_pn);
864 seq->gcmp.pn[5] = pn64;
865 seq->gcmp.pn[4] = pn64 >> 8;
866 seq->gcmp.pn[3] = pn64 >> 16;
867 seq->gcmp.pn[2] = pn64 >> 24;
868 seq->gcmp.pn[1] = pn64 >> 32;
869 seq->gcmp.pn[0] = pn64 >> 40;
870 break;
Johannes Berg3ea542d2011-07-07 18:58:00 +0200871 default:
872 WARN_ON(1);
873 }
874}
875EXPORT_SYMBOL(ieee80211_get_key_tx_seq);
876
877void ieee80211_get_key_rx_seq(struct ieee80211_key_conf *keyconf,
878 int tid, struct ieee80211_key_seq *seq)
879{
880 struct ieee80211_key *key;
881 const u8 *pn;
882
883 key = container_of(keyconf, struct ieee80211_key, conf);
884
885 switch (key->conf.cipher) {
886 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berg5a306f52012-11-14 23:22:21 +0100887 if (WARN_ON(tid < 0 || tid >= IEEE80211_NUM_TIDS))
Johannes Berg3ea542d2011-07-07 18:58:00 +0200888 return;
889 seq->tkip.iv32 = key->u.tkip.rx[tid].iv32;
890 seq->tkip.iv16 = key->u.tkip.rx[tid].iv16;
891 break;
892 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200893 case WLAN_CIPHER_SUITE_CCMP_256:
Johannes Berg5a306f52012-11-14 23:22:21 +0100894 if (WARN_ON(tid < -1 || tid >= IEEE80211_NUM_TIDS))
Johannes Berg3ea542d2011-07-07 18:58:00 +0200895 return;
896 if (tid < 0)
Johannes Berg5a306f52012-11-14 23:22:21 +0100897 pn = key->u.ccmp.rx_pn[IEEE80211_NUM_TIDS];
Johannes Berg3ea542d2011-07-07 18:58:00 +0200898 else
899 pn = key->u.ccmp.rx_pn[tid];
Johannes Berg4325f6c2013-05-08 13:09:08 +0200900 memcpy(seq->ccmp.pn, pn, IEEE80211_CCMP_PN_LEN);
Johannes Berg3ea542d2011-07-07 18:58:00 +0200901 break;
902 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +0200903 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Johannes Berg3ea542d2011-07-07 18:58:00 +0200904 if (WARN_ON(tid != 0))
905 return;
906 pn = key->u.aes_cmac.rx_pn;
Johannes Berg4325f6c2013-05-08 13:09:08 +0200907 memcpy(seq->aes_cmac.pn, pn, IEEE80211_CMAC_PN_LEN);
Johannes Berg3ea542d2011-07-07 18:58:00 +0200908 break;
Jouni Malinen8ade5382015-01-24 19:52:09 +0200909 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
910 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
911 if (WARN_ON(tid != 0))
912 return;
913 pn = key->u.aes_gmac.rx_pn;
914 memcpy(seq->aes_gmac.pn, pn, IEEE80211_GMAC_PN_LEN);
915 break;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200916 case WLAN_CIPHER_SUITE_GCMP:
917 case WLAN_CIPHER_SUITE_GCMP_256:
918 if (WARN_ON(tid < -1 || tid >= IEEE80211_NUM_TIDS))
919 return;
920 if (tid < 0)
921 pn = key->u.gcmp.rx_pn[IEEE80211_NUM_TIDS];
922 else
923 pn = key->u.gcmp.rx_pn[tid];
924 memcpy(seq->gcmp.pn, pn, IEEE80211_GCMP_PN_LEN);
925 break;
Johannes Berg3ea542d2011-07-07 18:58:00 +0200926 }
927}
928EXPORT_SYMBOL(ieee80211_get_key_rx_seq);
Johannes Berg27b3eb92013-08-07 20:11:55 +0200929
930void ieee80211_set_key_tx_seq(struct ieee80211_key_conf *keyconf,
931 struct ieee80211_key_seq *seq)
932{
933 struct ieee80211_key *key;
934 u64 pn64;
935
936 key = container_of(keyconf, struct ieee80211_key, conf);
937
938 switch (key->conf.cipher) {
939 case WLAN_CIPHER_SUITE_TKIP:
940 key->u.tkip.tx.iv32 = seq->tkip.iv32;
941 key->u.tkip.tx.iv16 = seq->tkip.iv16;
942 break;
943 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200944 case WLAN_CIPHER_SUITE_CCMP_256:
Johannes Berg27b3eb92013-08-07 20:11:55 +0200945 pn64 = (u64)seq->ccmp.pn[5] |
946 ((u64)seq->ccmp.pn[4] << 8) |
947 ((u64)seq->ccmp.pn[3] << 16) |
948 ((u64)seq->ccmp.pn[2] << 24) |
949 ((u64)seq->ccmp.pn[1] << 32) |
950 ((u64)seq->ccmp.pn[0] << 40);
951 atomic64_set(&key->u.ccmp.tx_pn, pn64);
952 break;
953 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +0200954 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Johannes Berg27b3eb92013-08-07 20:11:55 +0200955 pn64 = (u64)seq->aes_cmac.pn[5] |
956 ((u64)seq->aes_cmac.pn[4] << 8) |
957 ((u64)seq->aes_cmac.pn[3] << 16) |
958 ((u64)seq->aes_cmac.pn[2] << 24) |
959 ((u64)seq->aes_cmac.pn[1] << 32) |
960 ((u64)seq->aes_cmac.pn[0] << 40);
961 atomic64_set(&key->u.aes_cmac.tx_pn, pn64);
962 break;
Jouni Malinen8ade5382015-01-24 19:52:09 +0200963 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
964 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
965 pn64 = (u64)seq->aes_gmac.pn[5] |
966 ((u64)seq->aes_gmac.pn[4] << 8) |
967 ((u64)seq->aes_gmac.pn[3] << 16) |
968 ((u64)seq->aes_gmac.pn[2] << 24) |
969 ((u64)seq->aes_gmac.pn[1] << 32) |
970 ((u64)seq->aes_gmac.pn[0] << 40);
971 atomic64_set(&key->u.aes_gmac.tx_pn, pn64);
972 break;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200973 case WLAN_CIPHER_SUITE_GCMP:
974 case WLAN_CIPHER_SUITE_GCMP_256:
975 pn64 = (u64)seq->gcmp.pn[5] |
976 ((u64)seq->gcmp.pn[4] << 8) |
977 ((u64)seq->gcmp.pn[3] << 16) |
978 ((u64)seq->gcmp.pn[2] << 24) |
979 ((u64)seq->gcmp.pn[1] << 32) |
980 ((u64)seq->gcmp.pn[0] << 40);
981 atomic64_set(&key->u.gcmp.tx_pn, pn64);
982 break;
Johannes Berg27b3eb92013-08-07 20:11:55 +0200983 default:
984 WARN_ON(1);
985 break;
986 }
987}
988EXPORT_SYMBOL_GPL(ieee80211_set_key_tx_seq);
989
990void ieee80211_set_key_rx_seq(struct ieee80211_key_conf *keyconf,
991 int tid, struct ieee80211_key_seq *seq)
992{
993 struct ieee80211_key *key;
994 u8 *pn;
995
996 key = container_of(keyconf, struct ieee80211_key, conf);
997
998 switch (key->conf.cipher) {
999 case WLAN_CIPHER_SUITE_TKIP:
1000 if (WARN_ON(tid < 0 || tid >= IEEE80211_NUM_TIDS))
1001 return;
1002 key->u.tkip.rx[tid].iv32 = seq->tkip.iv32;
1003 key->u.tkip.rx[tid].iv16 = seq->tkip.iv16;
1004 break;
1005 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +02001006 case WLAN_CIPHER_SUITE_CCMP_256:
Johannes Berg27b3eb92013-08-07 20:11:55 +02001007 if (WARN_ON(tid < -1 || tid >= IEEE80211_NUM_TIDS))
1008 return;
1009 if (tid < 0)
1010 pn = key->u.ccmp.rx_pn[IEEE80211_NUM_TIDS];
1011 else
1012 pn = key->u.ccmp.rx_pn[tid];
1013 memcpy(pn, seq->ccmp.pn, IEEE80211_CCMP_PN_LEN);
1014 break;
1015 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +02001016 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Johannes Berg27b3eb92013-08-07 20:11:55 +02001017 if (WARN_ON(tid != 0))
1018 return;
1019 pn = key->u.aes_cmac.rx_pn;
1020 memcpy(pn, seq->aes_cmac.pn, IEEE80211_CMAC_PN_LEN);
1021 break;
Jouni Malinen8ade5382015-01-24 19:52:09 +02001022 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
1023 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
1024 if (WARN_ON(tid != 0))
1025 return;
1026 pn = key->u.aes_gmac.rx_pn;
1027 memcpy(pn, seq->aes_gmac.pn, IEEE80211_GMAC_PN_LEN);
1028 break;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +02001029 case WLAN_CIPHER_SUITE_GCMP:
1030 case WLAN_CIPHER_SUITE_GCMP_256:
1031 if (WARN_ON(tid < -1 || tid >= IEEE80211_NUM_TIDS))
1032 return;
1033 if (tid < 0)
1034 pn = key->u.gcmp.rx_pn[IEEE80211_NUM_TIDS];
1035 else
1036 pn = key->u.gcmp.rx_pn[tid];
1037 memcpy(pn, seq->gcmp.pn, IEEE80211_GCMP_PN_LEN);
1038 break;
Johannes Berg27b3eb92013-08-07 20:11:55 +02001039 default:
1040 WARN_ON(1);
1041 break;
1042 }
1043}
1044EXPORT_SYMBOL_GPL(ieee80211_set_key_rx_seq);
1045
1046void ieee80211_remove_key(struct ieee80211_key_conf *keyconf)
1047{
1048 struct ieee80211_key *key;
1049
1050 key = container_of(keyconf, struct ieee80211_key, conf);
1051
1052 assert_key_lock(key->local);
1053
1054 /*
1055 * if key was uploaded, we assume the driver will/has remove(d)
1056 * it, so adjust bookkeeping accordingly
1057 */
1058 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) {
1059 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
1060
Johannes Berg1e359a52015-01-05 10:28:49 +01001061 if (!((key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC) ||
Ido Yarivdb128472015-01-06 08:39:02 -05001062 (key->conf.flags & IEEE80211_KEY_FLAG_RESERVE_TAILROOM)))
Johannes Berg27b3eb92013-08-07 20:11:55 +02001063 increment_tailroom_need_count(key->sdata);
1064 }
1065
1066 ieee80211_key_free(key, false);
1067}
1068EXPORT_SYMBOL_GPL(ieee80211_remove_key);
1069
1070struct ieee80211_key_conf *
1071ieee80211_gtk_rekey_add(struct ieee80211_vif *vif,
1072 struct ieee80211_key_conf *keyconf)
1073{
1074 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1075 struct ieee80211_local *local = sdata->local;
1076 struct ieee80211_key *key;
1077 int err;
1078
1079 if (WARN_ON(!local->wowlan))
1080 return ERR_PTR(-EINVAL);
1081
1082 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
1083 return ERR_PTR(-EINVAL);
1084
1085 key = ieee80211_key_alloc(keyconf->cipher, keyconf->keyidx,
1086 keyconf->keylen, keyconf->key,
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001087 0, NULL, NULL);
Johannes Berg27b3eb92013-08-07 20:11:55 +02001088 if (IS_ERR(key))
Johannes Bergc5dc1642013-08-28 19:03:36 +02001089 return ERR_CAST(key);
Johannes Berg27b3eb92013-08-07 20:11:55 +02001090
1091 if (sdata->u.mgd.mfp != IEEE80211_MFP_DISABLED)
1092 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
1093
1094 err = ieee80211_key_link(key, sdata, NULL);
1095 if (err)
1096 return ERR_PTR(err);
1097
1098 return &key->conf;
1099}
1100EXPORT_SYMBOL_GPL(ieee80211_gtk_rekey_add);