blob: 81e9785f38bc2df75a2dcbe21b0d1941868f0096 [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
Michal Kaziorf9dca802015-05-13 09:16:48 +000061static void
62update_vlan_tailroom_need_count(struct ieee80211_sub_if_data *sdata, int delta)
63{
64 struct ieee80211_sub_if_data *vlan;
65
66 if (sdata->vif.type != NL80211_IFTYPE_AP)
67 return;
68
Johannes Berg80b856d2015-06-17 13:54:54 +020069 /* crypto_tx_tailroom_needed_cnt is protected by this */
70 assert_key_lock(sdata->local);
Michal Kaziorf9dca802015-05-13 09:16:48 +000071
Johannes Berg80b856d2015-06-17 13:54:54 +020072 rcu_read_lock();
73
74 list_for_each_entry_rcu(vlan, &sdata->u.ap.vlans, u.vlan.list)
Michal Kaziorf9dca802015-05-13 09:16:48 +000075 vlan->crypto_tx_tailroom_needed_cnt += delta;
76
Johannes Berg80b856d2015-06-17 13:54:54 +020077 rcu_read_unlock();
Michal Kaziorf9dca802015-05-13 09:16:48 +000078}
79
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +053080static void increment_tailroom_need_count(struct ieee80211_sub_if_data *sdata)
81{
82 /*
83 * When this count is zero, SKB resizing for allocating tailroom
84 * for IV or MMIC is skipped. But, this check has created two race
85 * cases in xmit path while transiting from zero count to one:
86 *
87 * 1. SKB resize was skipped because no key was added but just before
88 * the xmit key is added and SW encryption kicks off.
89 *
90 * 2. SKB resize was skipped because all the keys were hw planted but
91 * just before xmit one of the key is deleted and SW encryption kicks
92 * off.
93 *
94 * In both the above case SW encryption will find not enough space for
95 * tailroom and exits with WARN_ON. (See WARN_ONs at wpa.c)
96 *
97 * Solution has been explained at
98 * http://mid.gmane.org/1308590980.4322.19.camel@jlt3.sipsolutions.net
99 */
100
Johannes Berg80b856d2015-06-17 13:54:54 +0200101 assert_key_lock(sdata->local);
102
Michal Kaziorf9dca802015-05-13 09:16:48 +0000103 update_vlan_tailroom_need_count(sdata, 1);
104
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530105 if (!sdata->crypto_tx_tailroom_needed_cnt++) {
106 /*
107 * Flush all XMIT packets currently using HW encryption or no
108 * encryption at all if the count transition is from 0 -> 1.
109 */
110 synchronize_net();
111 }
112}
113
Michal Kaziorf9dca802015-05-13 09:16:48 +0000114static void decrease_tailroom_need_count(struct ieee80211_sub_if_data *sdata,
115 int delta)
116{
Johannes Berg80b856d2015-06-17 13:54:54 +0200117 assert_key_lock(sdata->local);
118
Michal Kaziorf9dca802015-05-13 09:16:48 +0000119 WARN_ON_ONCE(sdata->crypto_tx_tailroom_needed_cnt < delta);
120
121 update_vlan_tailroom_need_count(sdata, -delta);
122 sdata->crypto_tx_tailroom_needed_cnt -= delta;
123}
124
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300125static int ieee80211_key_enable_hw_accel(struct ieee80211_key *key)
Johannes Berg11a843b2007-08-28 17:01:55 -0400126{
Johannes Bergdc822b52008-12-29 12:55:09 +0100127 struct ieee80211_sub_if_data *sdata;
Johannes Berg89c91ca2012-01-20 13:55:19 +0100128 struct sta_info *sta;
Johannes Bergfa7e1fb2015-01-22 18:44:19 +0100129 int ret = -EOPNOTSUPP;
Johannes Berg11a843b2007-08-28 17:01:55 -0400130
Johannes Berg3b967662008-04-08 17:56:52 +0200131 might_sleep();
132
Johannes Berg46191942014-10-13 13:43:29 +0200133 if (key->flags & KEY_FLAG_TAINTED) {
134 /* If we get here, it's during resume and the key is
135 * tainted so shouldn't be used/programmed any more.
136 * However, its flags may still indicate that it was
137 * programmed into the device (since we're in resume)
138 * so clear that flag now to avoid trying to remove
139 * it again later.
140 */
141 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
Johannes Berg27b3eb92013-08-07 20:11:55 +0200142 return -EINVAL;
Johannes Berg46191942014-10-13 13:43:29 +0200143 }
Johannes Berg27b3eb92013-08-07 20:11:55 +0200144
Johannes Berge31b8212010-10-05 19:39:30 +0200145 if (!key->local->ops->set_key)
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300146 goto out_unsupported;
Johannes Berg11a843b2007-08-28 17:01:55 -0400147
Johannes Bergad0e2b52010-06-01 10:19:19 +0200148 assert_key_lock(key->local);
149
Johannes Berg89c91ca2012-01-20 13:55:19 +0100150 sta = key->sta;
Johannes Bergdc822b52008-12-29 12:55:09 +0100151
Johannes Berge31b8212010-10-05 19:39:30 +0200152 /*
153 * If this is a per-STA GTK, check if it
154 * is supported; if not, return.
155 */
156 if (sta && !(key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE) &&
157 !(key->local->hw.flags & IEEE80211_HW_SUPPORTS_PER_STA_GTK))
158 goto out_unsupported;
159
Johannes Berg89c91ca2012-01-20 13:55:19 +0100160 if (sta && !sta->uploaded)
161 goto out_unsupported;
162
Johannes Bergdc822b52008-12-29 12:55:09 +0100163 sdata = key->sdata;
Helmut Schaa18890d42010-11-19 08:11:01 +0100164 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
165 /*
166 * The driver doesn't know anything about VLAN interfaces.
167 * Hence, don't send GTKs for VLAN interfaces to the driver.
168 */
169 if (!(key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE))
170 goto out_unsupported;
Helmut Schaa18890d42010-11-19 08:11:01 +0100171 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400172
Johannes Berg89c91ca2012-01-20 13:55:19 +0100173 ret = drv_set_key(key->local, SET_KEY, sdata,
174 sta ? &sta->sta : NULL, &key->conf);
Johannes Berg11a843b2007-08-28 17:01:55 -0400175
Johannes Berge31b8212010-10-05 19:39:30 +0200176 if (!ret) {
Johannes Berg11a843b2007-08-28 17:01:55 -0400177 key->flags |= KEY_FLAG_UPLOADED_TO_HARDWARE;
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530178
Johannes Berg1e359a52015-01-05 10:28:49 +0100179 if (!((key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC) ||
Ido Yarivdb128472015-01-06 08:39:02 -0500180 (key->conf.flags & IEEE80211_KEY_FLAG_RESERVE_TAILROOM)))
Michal Kaziorf9dca802015-05-13 09:16:48 +0000181 decrease_tailroom_need_count(sdata, 1);
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530182
Arik Nemtsov077a9152011-10-23 08:21:41 +0200183 WARN_ON((key->conf.flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE) &&
184 (key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV));
185
Johannes Berge31b8212010-10-05 19:39:30 +0200186 return 0;
187 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400188
Johannes Bergfa7e1fb2015-01-22 18:44:19 +0100189 if (ret != -ENOSPC && ret != -EOPNOTSUPP && ret != 1)
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200190 sdata_err(sdata,
Joe Perches0fb9a9e2010-08-20 16:25:38 -0700191 "failed to set key (%d, %pM) to hardware (%d)\n",
Johannes Berg89c91ca2012-01-20 13:55:19 +0100192 key->conf.keyidx,
193 sta ? sta->sta.addr : bcast_addr, ret);
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300194
Johannes Berge31b8212010-10-05 19:39:30 +0200195 out_unsupported:
196 switch (key->conf.cipher) {
197 case WLAN_CIPHER_SUITE_WEP40:
198 case WLAN_CIPHER_SUITE_WEP104:
199 case WLAN_CIPHER_SUITE_TKIP:
200 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200201 case WLAN_CIPHER_SUITE_CCMP_256:
Johannes Berge31b8212010-10-05 19:39:30 +0200202 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +0200203 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Jouni Malinen8ade5382015-01-24 19:52:09 +0200204 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
205 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200206 case WLAN_CIPHER_SUITE_GCMP:
207 case WLAN_CIPHER_SUITE_GCMP_256:
Johannes Bergfa7e1fb2015-01-22 18:44:19 +0100208 /* all of these we can do in software - if driver can */
209 if (ret == 1)
210 return 0;
211 if (key->local->hw.flags & IEEE80211_HW_SW_CRYPTO_CONTROL)
212 return -EINVAL;
Johannes Berge31b8212010-10-05 19:39:30 +0200213 return 0;
214 default:
215 return -EINVAL;
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300216 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400217}
218
219static void ieee80211_key_disable_hw_accel(struct ieee80211_key *key)
220{
Johannes Bergdc822b52008-12-29 12:55:09 +0100221 struct ieee80211_sub_if_data *sdata;
Johannes Berg89c91ca2012-01-20 13:55:19 +0100222 struct sta_info *sta;
Johannes Berg11a843b2007-08-28 17:01:55 -0400223 int ret;
224
Johannes Berg3b967662008-04-08 17:56:52 +0200225 might_sleep();
226
Johannes Bergdb4d1162008-02-25 16:27:45 +0100227 if (!key || !key->local->ops->set_key)
Johannes Berg11a843b2007-08-28 17:01:55 -0400228 return;
229
Johannes Bergad0e2b52010-06-01 10:19:19 +0200230 assert_key_lock(key->local);
231
232 if (!(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
Johannes Berg11a843b2007-08-28 17:01:55 -0400233 return;
234
Johannes Berg89c91ca2012-01-20 13:55:19 +0100235 sta = key->sta;
Johannes Bergdc822b52008-12-29 12:55:09 +0100236 sdata = key->sdata;
237
Johannes Berg1e359a52015-01-05 10:28:49 +0100238 if (!((key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC) ||
Ido Yarivdb128472015-01-06 08:39:02 -0500239 (key->conf.flags & IEEE80211_KEY_FLAG_RESERVE_TAILROOM)))
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530240 increment_tailroom_need_count(sdata);
241
Johannes Berg12375ef2009-11-25 20:30:31 +0100242 ret = drv_set_key(key->local, DISABLE_KEY, sdata,
Johannes Berg89c91ca2012-01-20 13:55:19 +0100243 sta ? &sta->sta : NULL, &key->conf);
Johannes Berg11a843b2007-08-28 17:01:55 -0400244
245 if (ret)
Johannes Bergbdcbd8e2012-06-22 11:29:50 +0200246 sdata_err(sdata,
Joe Perches0fb9a9e2010-08-20 16:25:38 -0700247 "failed to remove key (%d, %pM) from hardware (%d)\n",
Johannes Berg89c91ca2012-01-20 13:55:19 +0100248 key->conf.keyidx,
249 sta ? sta->sta.addr : bcast_addr, ret);
Johannes Berg11a843b2007-08-28 17:01:55 -0400250
Johannes Berg3b967662008-04-08 17:56:52 +0200251 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
Johannes Berg3b967662008-04-08 17:56:52 +0200252}
253
254static void __ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata,
Johannes Bergf7e01042010-12-09 19:49:02 +0100255 int idx, bool uni, bool multi)
Johannes Berg3b967662008-04-08 17:56:52 +0200256{
257 struct ieee80211_key *key = NULL;
258
Johannes Bergad0e2b52010-06-01 10:19:19 +0200259 assert_key_lock(sdata->local);
260
Johannes Berg3b967662008-04-08 17:56:52 +0200261 if (idx >= 0 && idx < NUM_DEFAULT_KEYS)
Johannes Berg40b275b2011-05-13 14:15:49 +0200262 key = key_mtx_dereference(sdata->local, sdata->keys[idx]);
Johannes Berg3b967662008-04-08 17:56:52 +0200263
Yoni Divinskyde5fad82012-05-30 11:36:39 +0300264 if (uni) {
Johannes Bergf7e01042010-12-09 19:49:02 +0100265 rcu_assign_pointer(sdata->default_unicast_key, key);
Yoni Divinskyde5fad82012-05-30 11:36:39 +0300266 drv_set_default_unicast_key(sdata->local, sdata, idx);
267 }
268
Johannes Bergf7e01042010-12-09 19:49:02 +0100269 if (multi)
270 rcu_assign_pointer(sdata->default_multicast_key, key);
Johannes Berg3b967662008-04-08 17:56:52 +0200271
Johannes Bergf7e01042010-12-09 19:49:02 +0100272 ieee80211_debugfs_key_update_default(sdata);
Johannes Berg3b967662008-04-08 17:56:52 +0200273}
274
Johannes Bergf7e01042010-12-09 19:49:02 +0100275void ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata, int idx,
276 bool uni, bool multi)
Johannes Berg3b967662008-04-08 17:56:52 +0200277{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200278 mutex_lock(&sdata->local->key_mtx);
Johannes Bergf7e01042010-12-09 19:49:02 +0100279 __ieee80211_set_default_key(sdata, idx, uni, multi);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200280 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200281}
282
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200283static void
284__ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata, int idx)
285{
286 struct ieee80211_key *key = NULL;
287
Johannes Bergad0e2b52010-06-01 10:19:19 +0200288 assert_key_lock(sdata->local);
289
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200290 if (idx >= NUM_DEFAULT_KEYS &&
291 idx < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
Johannes Berg40b275b2011-05-13 14:15:49 +0200292 key = key_mtx_dereference(sdata->local, sdata->keys[idx]);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200293
294 rcu_assign_pointer(sdata->default_mgmt_key, key);
295
Johannes Bergf7e01042010-12-09 19:49:02 +0100296 ieee80211_debugfs_key_update_default(sdata);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200297}
298
299void ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata,
300 int idx)
301{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200302 mutex_lock(&sdata->local->key_mtx);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200303 __ieee80211_set_default_mgmt_key(sdata, idx);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200304 mutex_unlock(&sdata->local->key_mtx);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200305}
306
Johannes Berg3b967662008-04-08 17:56:52 +0200307
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100308static void ieee80211_key_replace(struct ieee80211_sub_if_data *sdata,
309 struct sta_info *sta,
310 bool pairwise,
311 struct ieee80211_key *old,
312 struct ieee80211_key *new)
Johannes Berg3b967662008-04-08 17:56:52 +0200313{
Johannes Bergf7e01042010-12-09 19:49:02 +0100314 int idx;
315 bool defunikey, defmultikey, defmgmtkey;
Johannes Berg3b967662008-04-08 17:56:52 +0200316
Johannes Berg5282c3b2013-10-29 10:00:08 +0100317 /* caller must provide at least one old/new */
318 if (WARN_ON(!new && !old))
319 return;
320
Johannes Berg3b967662008-04-08 17:56:52 +0200321 if (new)
Johannes Bergf850e002011-07-13 19:50:53 +0200322 list_add_tail(&new->list, &sdata->key_list);
Johannes Berg3b967662008-04-08 17:56:52 +0200323
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200324 WARN_ON(new && old && new->conf.keyidx != old->conf.keyidx);
325
326 if (old)
327 idx = old->conf.keyidx;
328 else
329 idx = new->conf.keyidx;
330
331 if (sta) {
332 if (pairwise) {
333 rcu_assign_pointer(sta->ptk[idx], new);
334 sta->ptk_idx = idx;
335 } else {
336 rcu_assign_pointer(sta->gtk[idx], new);
337 sta->gtk_idx = idx;
338 }
Johannes Berg3b967662008-04-08 17:56:52 +0200339 } else {
Johannes Berg40b275b2011-05-13 14:15:49 +0200340 defunikey = old &&
341 old == key_mtx_dereference(sdata->local,
342 sdata->default_unicast_key);
343 defmultikey = old &&
344 old == key_mtx_dereference(sdata->local,
345 sdata->default_multicast_key);
346 defmgmtkey = old &&
347 old == key_mtx_dereference(sdata->local,
348 sdata->default_mgmt_key);
Johannes Berg3b967662008-04-08 17:56:52 +0200349
Johannes Bergf7e01042010-12-09 19:49:02 +0100350 if (defunikey && !new)
351 __ieee80211_set_default_key(sdata, -1, true, false);
352 if (defmultikey && !new)
353 __ieee80211_set_default_key(sdata, -1, false, true);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200354 if (defmgmtkey && !new)
355 __ieee80211_set_default_mgmt_key(sdata, -1);
Johannes Berg3b967662008-04-08 17:56:52 +0200356
357 rcu_assign_pointer(sdata->keys[idx], new);
Johannes Bergf7e01042010-12-09 19:49:02 +0100358 if (defunikey && new)
359 __ieee80211_set_default_key(sdata, new->conf.keyidx,
360 true, false);
361 if (defmultikey && new)
362 __ieee80211_set_default_key(sdata, new->conf.keyidx,
363 false, true);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200364 if (defmgmtkey && new)
365 __ieee80211_set_default_mgmt_key(sdata,
366 new->conf.keyidx);
Johannes Berg3b967662008-04-08 17:56:52 +0200367 }
368
Johannes Bergb5c34f62011-01-03 19:51:09 +0100369 if (old)
370 list_del(&old->list);
Johannes Berg11a843b2007-08-28 17:01:55 -0400371}
372
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200373struct ieee80211_key *
374ieee80211_key_alloc(u32 cipher, int idx, size_t key_len,
375 const u8 *key_data,
376 size_t seq_len, const u8 *seq,
377 const struct ieee80211_cipher_scheme *cs)
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200378{
379 struct ieee80211_key *key;
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100380 int i, j, err;
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200381
Johannes Berg8c5bb1f2014-04-29 17:55:26 +0200382 if (WARN_ON(idx < 0 || idx >= NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS))
383 return ERR_PTR(-EINVAL);
Johannes Berg11a843b2007-08-28 17:01:55 -0400384
385 key = kzalloc(sizeof(struct ieee80211_key) + key_len, GFP_KERNEL);
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200386 if (!key)
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100387 return ERR_PTR(-ENOMEM);
Johannes Berg11a843b2007-08-28 17:01:55 -0400388
389 /*
390 * Default to software encryption; we'll later upload the
391 * key to the hardware if possible.
392 */
Johannes Berg11a843b2007-08-28 17:01:55 -0400393 key->conf.flags = 0;
394 key->flags = 0;
395
Johannes Berg97359d12010-08-10 09:46:38 +0200396 key->conf.cipher = cipher;
Johannes Berg11a843b2007-08-28 17:01:55 -0400397 key->conf.keyidx = idx;
398 key->conf.keylen = key_len;
Johannes Berg97359d12010-08-10 09:46:38 +0200399 switch (cipher) {
400 case WLAN_CIPHER_SUITE_WEP40:
401 case WLAN_CIPHER_SUITE_WEP104:
Johannes Berg4325f6c2013-05-08 13:09:08 +0200402 key->conf.iv_len = IEEE80211_WEP_IV_LEN;
403 key->conf.icv_len = IEEE80211_WEP_ICV_LEN;
Felix Fietkau76708de2008-10-05 18:02:48 +0200404 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200405 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berg4325f6c2013-05-08 13:09:08 +0200406 key->conf.iv_len = IEEE80211_TKIP_IV_LEN;
407 key->conf.icv_len = IEEE80211_TKIP_ICV_LEN;
Jouni Malinen9f26a952009-05-15 12:38:32 +0300408 if (seq) {
Johannes Berg5a306f52012-11-14 23:22:21 +0100409 for (i = 0; i < IEEE80211_NUM_TIDS; i++) {
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300410 key->u.tkip.rx[i].iv32 =
411 get_unaligned_le32(&seq[2]);
412 key->u.tkip.rx[i].iv16 =
413 get_unaligned_le16(seq);
414 }
415 }
Johannes Berg523b02e2011-07-07 22:28:01 +0200416 spin_lock_init(&key->u.tkip.txlock);
Felix Fietkau76708de2008-10-05 18:02:48 +0200417 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200418 case WLAN_CIPHER_SUITE_CCMP:
Johannes Berg4325f6c2013-05-08 13:09:08 +0200419 key->conf.iv_len = IEEE80211_CCMP_HDR_LEN;
420 key->conf.icv_len = IEEE80211_CCMP_MIC_LEN;
Jouni Malinen9f26a952009-05-15 12:38:32 +0300421 if (seq) {
Johannes Berg5a306f52012-11-14 23:22:21 +0100422 for (i = 0; i < IEEE80211_NUM_TIDS + 1; i++)
Johannes Berg4325f6c2013-05-08 13:09:08 +0200423 for (j = 0; j < IEEE80211_CCMP_PN_LEN; j++)
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300424 key->u.ccmp.rx_pn[i][j] =
Johannes Berg4325f6c2013-05-08 13:09:08 +0200425 seq[IEEE80211_CCMP_PN_LEN - j - 1];
Jouni Malinenfaa8fdc2009-05-11 21:57:58 +0300426 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400427 /*
428 * Initialize AES key state here as an optimization so that
429 * it does not need to be initialized for every packet.
430 */
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200431 key->u.ccmp.tfm = ieee80211_aes_key_setup_encrypt(
432 key_data, key_len, IEEE80211_CCMP_MIC_LEN);
433 if (IS_ERR(key->u.ccmp.tfm)) {
434 err = PTR_ERR(key->u.ccmp.tfm);
435 kfree(key);
436 return ERR_PTR(err);
437 }
438 break;
439 case WLAN_CIPHER_SUITE_CCMP_256:
440 key->conf.iv_len = IEEE80211_CCMP_256_HDR_LEN;
441 key->conf.icv_len = IEEE80211_CCMP_256_MIC_LEN;
442 for (i = 0; seq && i < IEEE80211_NUM_TIDS + 1; i++)
443 for (j = 0; j < IEEE80211_CCMP_256_PN_LEN; j++)
444 key->u.ccmp.rx_pn[i][j] =
445 seq[IEEE80211_CCMP_256_PN_LEN - j - 1];
446 /* Initialize AES key state here as an optimization so that
447 * it does not need to be initialized for every packet.
448 */
449 key->u.ccmp.tfm = ieee80211_aes_key_setup_encrypt(
450 key_data, key_len, IEEE80211_CCMP_256_MIC_LEN);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100451 if (IS_ERR(key->u.ccmp.tfm)) {
452 err = PTR_ERR(key->u.ccmp.tfm);
Johannes Berg3b967662008-04-08 17:56:52 +0200453 kfree(key);
Petr Å tetiar1f951a72011-03-27 13:31:26 +0200454 return ERR_PTR(err);
Johannes Berg11a843b2007-08-28 17:01:55 -0400455 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200456 break;
457 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +0200458 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Johannes Berg60ae0f22010-08-10 09:46:39 +0200459 key->conf.iv_len = 0;
Jouni Malinen56c52da2015-01-24 19:52:08 +0200460 if (cipher == WLAN_CIPHER_SUITE_AES_CMAC)
461 key->conf.icv_len = sizeof(struct ieee80211_mmie);
462 else
463 key->conf.icv_len = sizeof(struct ieee80211_mmie_16);
Johannes Berg60ae0f22010-08-10 09:46:39 +0200464 if (seq)
Johannes Berg4325f6c2013-05-08 13:09:08 +0200465 for (j = 0; j < IEEE80211_CMAC_PN_LEN; j++)
Johannes Berg0f927322012-11-14 23:15:11 +0100466 key->u.aes_cmac.rx_pn[j] =
Johannes Berg4325f6c2013-05-08 13:09:08 +0200467 seq[IEEE80211_CMAC_PN_LEN - j - 1];
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200468 /*
469 * Initialize AES key state here as an optimization so that
470 * it does not need to be initialized for every packet.
471 */
472 key->u.aes_cmac.tfm =
Jouni Malinen56c52da2015-01-24 19:52:08 +0200473 ieee80211_aes_cmac_key_setup(key_data, key_len);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100474 if (IS_ERR(key->u.aes_cmac.tfm)) {
475 err = PTR_ERR(key->u.aes_cmac.tfm);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200476 kfree(key);
Petr Å tetiar1f951a72011-03-27 13:31:26 +0200477 return ERR_PTR(err);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200478 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200479 break;
Jouni Malinen8ade5382015-01-24 19:52:09 +0200480 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
481 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
482 key->conf.iv_len = 0;
483 key->conf.icv_len = sizeof(struct ieee80211_mmie_16);
484 if (seq)
485 for (j = 0; j < IEEE80211_GMAC_PN_LEN; j++)
486 key->u.aes_gmac.rx_pn[j] =
487 seq[IEEE80211_GMAC_PN_LEN - j - 1];
488 /* Initialize AES key state here as an optimization so that
489 * it does not need to be initialized for every packet.
490 */
491 key->u.aes_gmac.tfm =
492 ieee80211_aes_gmac_key_setup(key_data, key_len);
493 if (IS_ERR(key->u.aes_gmac.tfm)) {
494 err = PTR_ERR(key->u.aes_gmac.tfm);
495 kfree(key);
496 return ERR_PTR(err);
497 }
498 break;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200499 case WLAN_CIPHER_SUITE_GCMP:
500 case WLAN_CIPHER_SUITE_GCMP_256:
501 key->conf.iv_len = IEEE80211_GCMP_HDR_LEN;
502 key->conf.icv_len = IEEE80211_GCMP_MIC_LEN;
503 for (i = 0; seq && i < IEEE80211_NUM_TIDS + 1; i++)
504 for (j = 0; j < IEEE80211_GCMP_PN_LEN; j++)
505 key->u.gcmp.rx_pn[i][j] =
506 seq[IEEE80211_GCMP_PN_LEN - j - 1];
507 /* Initialize AES key state here as an optimization so that
508 * it does not need to be initialized for every packet.
509 */
510 key->u.gcmp.tfm = ieee80211_aes_gcm_key_setup_encrypt(key_data,
511 key_len);
512 if (IS_ERR(key->u.gcmp.tfm)) {
513 err = PTR_ERR(key->u.gcmp.tfm);
514 kfree(key);
515 return ERR_PTR(err);
516 }
517 break;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200518 default:
519 if (cs) {
520 size_t len = (seq_len > MAX_PN_LEN) ?
521 MAX_PN_LEN : seq_len;
522
523 key->conf.iv_len = cs->hdr_len;
524 key->conf.icv_len = cs->mic_len;
525 for (i = 0; i < IEEE80211_NUM_TIDS + 1; i++)
526 for (j = 0; j < len; j++)
527 key->u.gen.rx_pn[i][j] =
528 seq[len - j - 1];
Cedric Izoardc7ef38e2015-03-17 10:47:33 +0000529 key->flags |= KEY_FLAG_CIPHER_SCHEME;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200530 }
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200531 }
Johannes Berg60ae0f22010-08-10 09:46:39 +0200532 memcpy(key->conf.key, key_data, key_len);
533 INIT_LIST_HEAD(&key->list);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200534
Johannes Bergdb4d1162008-02-25 16:27:45 +0100535 return key;
536}
Johannes Berg11a843b2007-08-28 17:01:55 -0400537
Johannes Berg79cf2df2013-03-06 22:53:52 +0100538static void ieee80211_key_free_common(struct ieee80211_key *key)
539{
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200540 switch (key->conf.cipher) {
541 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200542 case WLAN_CIPHER_SUITE_CCMP_256:
Johannes Berg79cf2df2013-03-06 22:53:52 +0100543 ieee80211_aes_key_free(key->u.ccmp.tfm);
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200544 break;
545 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +0200546 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Johannes Berg79cf2df2013-03-06 22:53:52 +0100547 ieee80211_aes_cmac_key_free(key->u.aes_cmac.tfm);
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200548 break;
Jouni Malinen8ade5382015-01-24 19:52:09 +0200549 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
550 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
551 ieee80211_aes_gmac_key_free(key->u.aes_gmac.tfm);
552 break;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200553 case WLAN_CIPHER_SUITE_GCMP:
554 case WLAN_CIPHER_SUITE_GCMP_256:
555 ieee80211_aes_gcm_key_free(key->u.gcmp.tfm);
556 break;
557 }
Johannes Berg29c3f9c2014-09-10 13:39:55 +0300558 kzfree(key);
Johannes Berg79cf2df2013-03-06 22:53:52 +0100559}
560
Johannes Berg6d10e462013-03-06 23:09:11 +0100561static void __ieee80211_key_destroy(struct ieee80211_key *key,
562 bool delay_tailroom)
Johannes Bergad0e2b52010-06-01 10:19:19 +0200563{
Jouni Malinen32162a42010-07-26 15:52:03 -0700564 if (key->local)
565 ieee80211_key_disable_hw_accel(key);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200566
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530567 if (key->local) {
Johannes Berg8d1f7ec2013-02-23 00:59:03 +0100568 struct ieee80211_sub_if_data *sdata = key->sdata;
569
Jouni Malinen32162a42010-07-26 15:52:03 -0700570 ieee80211_debugfs_key_remove(key);
Johannes Berg8d1f7ec2013-02-23 00:59:03 +0100571
572 if (delay_tailroom) {
573 /* see ieee80211_delayed_tailroom_dec */
574 sdata->crypto_tx_tailroom_pending_dec++;
575 schedule_delayed_work(&sdata->dec_tailroom_needed_wk,
576 HZ/2);
577 } else {
Michal Kaziorf9dca802015-05-13 09:16:48 +0000578 decrease_tailroom_need_count(sdata, 1);
Johannes Berg8d1f7ec2013-02-23 00:59:03 +0100579 }
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530580 }
Johannes Bergad0e2b52010-06-01 10:19:19 +0200581
Johannes Berg79cf2df2013-03-06 22:53:52 +0100582 ieee80211_key_free_common(key);
583}
584
Johannes Berg6d10e462013-03-06 23:09:11 +0100585static void ieee80211_key_destroy(struct ieee80211_key *key,
586 bool delay_tailroom)
587{
588 if (!key)
589 return;
590
591 /*
592 * Synchronize so the TX path can no longer be using
593 * this key before we free/remove it.
594 */
595 synchronize_net();
596
597 __ieee80211_key_destroy(key, delay_tailroom);
598}
599
Johannes Berg79cf2df2013-03-06 22:53:52 +0100600void ieee80211_key_free_unused(struct ieee80211_key *key)
601{
602 WARN_ON(key->sdata || key->local);
603 ieee80211_key_free_common(key);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200604}
605
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300606int ieee80211_key_link(struct ieee80211_key *key,
607 struct ieee80211_sub_if_data *sdata,
608 struct sta_info *sta)
Johannes Bergdb4d1162008-02-25 16:27:45 +0100609{
Johannes Berg27b3eb92013-08-07 20:11:55 +0200610 struct ieee80211_local *local = sdata->local;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100611 struct ieee80211_key *old_key;
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300612 int idx, ret;
Mariusz Kozlowski67aa0302011-03-26 18:58:51 +0100613 bool pairwise;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100614
Mariusz Kozlowski67aa0302011-03-26 18:58:51 +0100615 pairwise = key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100616 idx = key->conf.keyidx;
617 key->local = sdata->local;
618 key->sdata = sdata;
619 key->sta = sta;
620
Johannes Bergad0e2b52010-06-01 10:19:19 +0200621 mutex_lock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200622
Johannes Berge31b8212010-10-05 19:39:30 +0200623 if (sta && pairwise)
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200624 old_key = key_mtx_dereference(sdata->local, sta->ptk[idx]);
Johannes Berge31b8212010-10-05 19:39:30 +0200625 else if (sta)
Johannes Berg40b275b2011-05-13 14:15:49 +0200626 old_key = key_mtx_dereference(sdata->local, sta->gtk[idx]);
Johannes Bergd4e46a32007-09-14 11:10:24 -0400627 else
Johannes Berg40b275b2011-05-13 14:15:49 +0200628 old_key = key_mtx_dereference(sdata->local, sdata->keys[idx]);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100629
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530630 increment_tailroom_need_count(sdata);
631
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100632 ieee80211_key_replace(sdata, sta, pairwise, old_key, key);
633 ieee80211_key_destroy(old_key, true);
Johannes Bergd4e46a32007-09-14 11:10:24 -0400634
Johannes Bergad0e2b52010-06-01 10:19:19 +0200635 ieee80211_debugfs_key_add(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200636
Johannes Berg27b3eb92013-08-07 20:11:55 +0200637 if (!local->wowlan) {
638 ret = ieee80211_key_enable_hw_accel(key);
639 if (ret)
640 ieee80211_key_free(key, true);
641 } else {
642 ret = 0;
643 }
Johannes Berg79cf2df2013-03-06 22:53:52 +0100644
Johannes Bergad0e2b52010-06-01 10:19:19 +0200645 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300646
647 return ret;
Johannes Berg3a245762008-04-09 16:45:37 +0200648}
649
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100650void ieee80211_key_free(struct ieee80211_key *key, bool delay_tailroom)
Johannes Berg3a245762008-04-09 16:45:37 +0200651{
Johannes Berg5c0c3642011-05-12 14:31:49 +0200652 if (!key)
653 return;
654
Johannes Berg3a245762008-04-09 16:45:37 +0200655 /*
656 * Replace key with nothingness if it was ever used.
657 */
658 if (key->sdata)
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100659 ieee80211_key_replace(key->sdata, key->sta,
Johannes Berge31b8212010-10-05 19:39:30 +0200660 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE,
661 key, NULL);
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100662 ieee80211_key_destroy(key, delay_tailroom);
Johannes Berg1f5a7e42007-07-27 15:43:23 +0200663}
664
Johannes Berg3b967662008-04-08 17:56:52 +0200665void ieee80211_enable_keys(struct ieee80211_sub_if_data *sdata)
666{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200667 struct ieee80211_key *key;
Michal Kaziorf9dca802015-05-13 09:16:48 +0000668 struct ieee80211_sub_if_data *vlan;
Johannes Bergad0e2b52010-06-01 10:19:19 +0200669
Johannes Berg3a245762008-04-09 16:45:37 +0200670 ASSERT_RTNL();
Johannes Berg3b967662008-04-08 17:56:52 +0200671
Johannes Berg9607e6b2009-12-23 13:15:31 +0100672 if (WARN_ON(!ieee80211_sdata_running(sdata)))
Johannes Berg3b967662008-04-08 17:56:52 +0200673 return;
674
Johannes Bergad0e2b52010-06-01 10:19:19 +0200675 mutex_lock(&sdata->local->key_mtx);
676
Michal Kaziorf9dca802015-05-13 09:16:48 +0000677 WARN_ON_ONCE(sdata->crypto_tx_tailroom_needed_cnt ||
678 sdata->crypto_tx_tailroom_pending_dec);
679
680 if (sdata->vif.type == NL80211_IFTYPE_AP) {
681 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
682 WARN_ON_ONCE(vlan->crypto_tx_tailroom_needed_cnt ||
683 vlan->crypto_tx_tailroom_pending_dec);
684 }
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530685
686 list_for_each_entry(key, &sdata->key_list, list) {
687 increment_tailroom_need_count(sdata);
Johannes Bergad0e2b52010-06-01 10:19:19 +0200688 ieee80211_key_enable_hw_accel(key);
Yogesh Ashok Powar3bff1862011-06-28 18:41:37 +0530689 }
Johannes Bergad0e2b52010-06-01 10:19:19 +0200690
691 mutex_unlock(&sdata->local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200692}
693
Michal Kaziorf9dca802015-05-13 09:16:48 +0000694void ieee80211_reset_crypto_tx_tailroom(struct ieee80211_sub_if_data *sdata)
695{
696 struct ieee80211_sub_if_data *vlan;
697
698 mutex_lock(&sdata->local->key_mtx);
699
700 sdata->crypto_tx_tailroom_needed_cnt = 0;
701
702 if (sdata->vif.type == NL80211_IFTYPE_AP) {
703 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
704 vlan->crypto_tx_tailroom_needed_cnt = 0;
705 }
706
707 mutex_unlock(&sdata->local->key_mtx);
708}
709
Johannes Berg830af022011-07-05 16:35:39 +0200710void ieee80211_iter_keys(struct ieee80211_hw *hw,
711 struct ieee80211_vif *vif,
712 void (*iter)(struct ieee80211_hw *hw,
713 struct ieee80211_vif *vif,
714 struct ieee80211_sta *sta,
715 struct ieee80211_key_conf *key,
716 void *data),
717 void *iter_data)
718{
719 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berg27b3eb92013-08-07 20:11:55 +0200720 struct ieee80211_key *key, *tmp;
Johannes Berg830af022011-07-05 16:35:39 +0200721 struct ieee80211_sub_if_data *sdata;
722
723 ASSERT_RTNL();
724
725 mutex_lock(&local->key_mtx);
726 if (vif) {
727 sdata = vif_to_sdata(vif);
Johannes Berg27b3eb92013-08-07 20:11:55 +0200728 list_for_each_entry_safe(key, tmp, &sdata->key_list, list)
Johannes Berg830af022011-07-05 16:35:39 +0200729 iter(hw, &sdata->vif,
730 key->sta ? &key->sta->sta : NULL,
731 &key->conf, iter_data);
732 } else {
733 list_for_each_entry(sdata, &local->interfaces, list)
Johannes Berg27b3eb92013-08-07 20:11:55 +0200734 list_for_each_entry_safe(key, tmp,
735 &sdata->key_list, list)
Johannes Berg830af022011-07-05 16:35:39 +0200736 iter(hw, &sdata->vif,
737 key->sta ? &key->sta->sta : NULL,
738 &key->conf, iter_data);
739 }
740 mutex_unlock(&local->key_mtx);
741}
742EXPORT_SYMBOL(ieee80211_iter_keys);
743
Johannes Berg7907c7d2013-12-04 23:47:09 +0100744static void ieee80211_free_keys_iface(struct ieee80211_sub_if_data *sdata,
745 struct list_head *keys)
Johannes Berg11a843b2007-08-28 17:01:55 -0400746{
747 struct ieee80211_key *key, *tmp;
Johannes Berg3b967662008-04-08 17:56:52 +0200748
Michal Kaziorf9dca802015-05-13 09:16:48 +0000749 decrease_tailroom_need_count(sdata,
750 sdata->crypto_tx_tailroom_pending_dec);
Johannes Berg8d1f7ec2013-02-23 00:59:03 +0100751 sdata->crypto_tx_tailroom_pending_dec = 0;
752
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200753 ieee80211_debugfs_key_remove_mgmt_default(sdata);
Johannes Berg11a843b2007-08-28 17:01:55 -0400754
Johannes Berg6d10e462013-03-06 23:09:11 +0100755 list_for_each_entry_safe(key, tmp, &sdata->key_list, list) {
756 ieee80211_key_replace(key->sdata, key->sta,
757 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE,
758 key, NULL);
Johannes Berg7907c7d2013-12-04 23:47:09 +0100759 list_add_tail(&key->list, keys);
Johannes Berg6d10e462013-03-06 23:09:11 +0100760 }
Johannes Berg11a843b2007-08-28 17:01:55 -0400761
Johannes Bergf7e01042010-12-09 19:49:02 +0100762 ieee80211_debugfs_key_update_default(sdata);
Johannes Berg7907c7d2013-12-04 23:47:09 +0100763}
Johannes Bergf7e01042010-12-09 19:49:02 +0100764
Johannes Berg7907c7d2013-12-04 23:47:09 +0100765void ieee80211_free_keys(struct ieee80211_sub_if_data *sdata,
766 bool force_synchronize)
767{
768 struct ieee80211_local *local = sdata->local;
769 struct ieee80211_sub_if_data *vlan;
Michal Kaziorf9dca802015-05-13 09:16:48 +0000770 struct ieee80211_sub_if_data *master;
Johannes Berg7907c7d2013-12-04 23:47:09 +0100771 struct ieee80211_key *key, *tmp;
772 LIST_HEAD(keys);
773
774 cancel_delayed_work_sync(&sdata->dec_tailroom_needed_wk);
775
776 mutex_lock(&local->key_mtx);
777
778 ieee80211_free_keys_iface(sdata, &keys);
779
780 if (sdata->vif.type == NL80211_IFTYPE_AP) {
781 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
782 ieee80211_free_keys_iface(vlan, &keys);
Johannes Berg6d10e462013-03-06 23:09:11 +0100783 }
784
Johannes Berg7907c7d2013-12-04 23:47:09 +0100785 if (!list_empty(&keys) || force_synchronize)
786 synchronize_net();
787 list_for_each_entry_safe(key, tmp, &keys, list)
788 __ieee80211_key_destroy(key, false);
789
Michal Kaziorf9dca802015-05-13 09:16:48 +0000790 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
791 if (sdata->bss) {
792 master = container_of(sdata->bss,
793 struct ieee80211_sub_if_data,
794 u.ap);
795
796 WARN_ON_ONCE(sdata->crypto_tx_tailroom_needed_cnt !=
797 master->crypto_tx_tailroom_needed_cnt);
798 }
799 } else {
800 WARN_ON_ONCE(sdata->crypto_tx_tailroom_needed_cnt ||
801 sdata->crypto_tx_tailroom_pending_dec);
802 }
803
Johannes Berg7907c7d2013-12-04 23:47:09 +0100804 if (sdata->vif.type == NL80211_IFTYPE_AP) {
805 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
806 WARN_ON_ONCE(vlan->crypto_tx_tailroom_needed_cnt ||
807 vlan->crypto_tx_tailroom_pending_dec);
808 }
Johannes Berg8d1f7ec2013-02-23 00:59:03 +0100809
Johannes Berg7907c7d2013-12-04 23:47:09 +0100810 mutex_unlock(&local->key_mtx);
Johannes Berg11a843b2007-08-28 17:01:55 -0400811}
Johannes Bergc68f4b82011-07-05 16:35:41 +0200812
Johannes Berg6d10e462013-03-06 23:09:11 +0100813void ieee80211_free_sta_keys(struct ieee80211_local *local,
814 struct sta_info *sta)
815{
Johannes Bergc8782072013-12-04 23:05:45 +0100816 struct ieee80211_key *key;
Johannes Berg6d10e462013-03-06 23:09:11 +0100817 int i;
818
819 mutex_lock(&local->key_mtx);
Johannes Berg28a9bc62014-12-17 13:55:49 +0100820 for (i = 0; i < ARRAY_SIZE(sta->gtk); i++) {
Johannes Berg6d10e462013-03-06 23:09:11 +0100821 key = key_mtx_dereference(local, sta->gtk[i]);
822 if (!key)
823 continue;
824 ieee80211_key_replace(key->sdata, key->sta,
825 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE,
826 key, NULL);
Johannes Bergc8782072013-12-04 23:05:45 +0100827 __ieee80211_key_destroy(key, true);
Johannes Berg6d10e462013-03-06 23:09:11 +0100828 }
829
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200830 for (i = 0; i < NUM_DEFAULT_KEYS; i++) {
831 key = key_mtx_dereference(local, sta->ptk[i]);
832 if (!key)
833 continue;
Johannes Berg6d10e462013-03-06 23:09:11 +0100834 ieee80211_key_replace(key->sdata, key->sta,
835 key->conf.flags & IEEE80211_KEY_FLAG_PAIRWISE,
836 key, NULL);
Johannes Berg6d10e462013-03-06 23:09:11 +0100837 __ieee80211_key_destroy(key, true);
Johannes Bergc8782072013-12-04 23:05:45 +0100838 }
Johannes Berg6d10e462013-03-06 23:09:11 +0100839
840 mutex_unlock(&local->key_mtx);
841}
842
Johannes Berg8d1f7ec2013-02-23 00:59:03 +0100843void ieee80211_delayed_tailroom_dec(struct work_struct *wk)
844{
845 struct ieee80211_sub_if_data *sdata;
846
847 sdata = container_of(wk, struct ieee80211_sub_if_data,
848 dec_tailroom_needed_wk.work);
849
850 /*
851 * The reason for the delayed tailroom needed decrementing is to
852 * make roaming faster: during roaming, all keys are first deleted
853 * and then new keys are installed. The first new key causes the
854 * crypto_tx_tailroom_needed_cnt to go from 0 to 1, which invokes
855 * the cost of synchronize_net() (which can be slow). Avoid this
856 * by deferring the crypto_tx_tailroom_needed_cnt decrementing on
857 * key removal for a while, so if we roam the value is larger than
858 * zero and no 0->1 transition happens.
859 *
860 * The cost is that if the AP switching was from an AP with keys
861 * to one without, we still allocate tailroom while it would no
862 * longer be needed. However, in the typical (fast) roaming case
863 * within an ESS this usually won't happen.
864 */
865
866 mutex_lock(&sdata->local->key_mtx);
Michal Kaziorf9dca802015-05-13 09:16:48 +0000867 decrease_tailroom_need_count(sdata,
868 sdata->crypto_tx_tailroom_pending_dec);
Johannes Berg8d1f7ec2013-02-23 00:59:03 +0100869 sdata->crypto_tx_tailroom_pending_dec = 0;
870 mutex_unlock(&sdata->local->key_mtx);
871}
Johannes Bergc68f4b82011-07-05 16:35:41 +0200872
873void ieee80211_gtk_rekey_notify(struct ieee80211_vif *vif, const u8 *bssid,
874 const u8 *replay_ctr, gfp_t gfp)
875{
876 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
877
878 trace_api_gtk_rekey_notify(sdata, bssid, replay_ctr);
879
880 cfg80211_gtk_rekey_notify(sdata->dev, bssid, replay_ctr, gfp);
881}
882EXPORT_SYMBOL_GPL(ieee80211_gtk_rekey_notify);
Johannes Berg3ea542d2011-07-07 18:58:00 +0200883
884void ieee80211_get_key_tx_seq(struct ieee80211_key_conf *keyconf,
885 struct ieee80211_key_seq *seq)
886{
887 struct ieee80211_key *key;
888 u64 pn64;
889
890 if (WARN_ON(!(keyconf->flags & IEEE80211_KEY_FLAG_GENERATE_IV)))
891 return;
892
893 key = container_of(keyconf, struct ieee80211_key, conf);
894
895 switch (key->conf.cipher) {
896 case WLAN_CIPHER_SUITE_TKIP:
897 seq->tkip.iv32 = key->u.tkip.tx.iv32;
898 seq->tkip.iv16 = key->u.tkip.tx.iv16;
899 break;
900 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200901 case WLAN_CIPHER_SUITE_CCMP_256:
Johannes Berg3ea542d2011-07-07 18:58:00 +0200902 pn64 = atomic64_read(&key->u.ccmp.tx_pn);
903 seq->ccmp.pn[5] = pn64;
904 seq->ccmp.pn[4] = pn64 >> 8;
905 seq->ccmp.pn[3] = pn64 >> 16;
906 seq->ccmp.pn[2] = pn64 >> 24;
907 seq->ccmp.pn[1] = pn64 >> 32;
908 seq->ccmp.pn[0] = pn64 >> 40;
909 break;
910 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +0200911 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Johannes Berg3ea542d2011-07-07 18:58:00 +0200912 pn64 = atomic64_read(&key->u.aes_cmac.tx_pn);
913 seq->ccmp.pn[5] = pn64;
914 seq->ccmp.pn[4] = pn64 >> 8;
915 seq->ccmp.pn[3] = pn64 >> 16;
916 seq->ccmp.pn[2] = pn64 >> 24;
917 seq->ccmp.pn[1] = pn64 >> 32;
918 seq->ccmp.pn[0] = pn64 >> 40;
919 break;
Jouni Malinen8ade5382015-01-24 19:52:09 +0200920 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
921 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
922 pn64 = atomic64_read(&key->u.aes_gmac.tx_pn);
923 seq->ccmp.pn[5] = pn64;
924 seq->ccmp.pn[4] = pn64 >> 8;
925 seq->ccmp.pn[3] = pn64 >> 16;
926 seq->ccmp.pn[2] = pn64 >> 24;
927 seq->ccmp.pn[1] = pn64 >> 32;
928 seq->ccmp.pn[0] = pn64 >> 40;
929 break;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200930 case WLAN_CIPHER_SUITE_GCMP:
931 case WLAN_CIPHER_SUITE_GCMP_256:
932 pn64 = atomic64_read(&key->u.gcmp.tx_pn);
933 seq->gcmp.pn[5] = pn64;
934 seq->gcmp.pn[4] = pn64 >> 8;
935 seq->gcmp.pn[3] = pn64 >> 16;
936 seq->gcmp.pn[2] = pn64 >> 24;
937 seq->gcmp.pn[1] = pn64 >> 32;
938 seq->gcmp.pn[0] = pn64 >> 40;
939 break;
Johannes Berg3ea542d2011-07-07 18:58:00 +0200940 default:
941 WARN_ON(1);
942 }
943}
944EXPORT_SYMBOL(ieee80211_get_key_tx_seq);
945
946void ieee80211_get_key_rx_seq(struct ieee80211_key_conf *keyconf,
947 int tid, struct ieee80211_key_seq *seq)
948{
949 struct ieee80211_key *key;
950 const u8 *pn;
951
952 key = container_of(keyconf, struct ieee80211_key, conf);
953
954 switch (key->conf.cipher) {
955 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berg5a306f52012-11-14 23:22:21 +0100956 if (WARN_ON(tid < 0 || tid >= IEEE80211_NUM_TIDS))
Johannes Berg3ea542d2011-07-07 18:58:00 +0200957 return;
958 seq->tkip.iv32 = key->u.tkip.rx[tid].iv32;
959 seq->tkip.iv16 = key->u.tkip.rx[tid].iv16;
960 break;
961 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200962 case WLAN_CIPHER_SUITE_CCMP_256:
Johannes Berg5a306f52012-11-14 23:22:21 +0100963 if (WARN_ON(tid < -1 || tid >= IEEE80211_NUM_TIDS))
Johannes Berg3ea542d2011-07-07 18:58:00 +0200964 return;
965 if (tid < 0)
Johannes Berg5a306f52012-11-14 23:22:21 +0100966 pn = key->u.ccmp.rx_pn[IEEE80211_NUM_TIDS];
Johannes Berg3ea542d2011-07-07 18:58:00 +0200967 else
968 pn = key->u.ccmp.rx_pn[tid];
Johannes Berg4325f6c2013-05-08 13:09:08 +0200969 memcpy(seq->ccmp.pn, pn, IEEE80211_CCMP_PN_LEN);
Johannes Berg3ea542d2011-07-07 18:58:00 +0200970 break;
971 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +0200972 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Johannes Berg3ea542d2011-07-07 18:58:00 +0200973 if (WARN_ON(tid != 0))
974 return;
975 pn = key->u.aes_cmac.rx_pn;
Johannes Berg4325f6c2013-05-08 13:09:08 +0200976 memcpy(seq->aes_cmac.pn, pn, IEEE80211_CMAC_PN_LEN);
Johannes Berg3ea542d2011-07-07 18:58:00 +0200977 break;
Jouni Malinen8ade5382015-01-24 19:52:09 +0200978 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
979 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
980 if (WARN_ON(tid != 0))
981 return;
982 pn = key->u.aes_gmac.rx_pn;
983 memcpy(seq->aes_gmac.pn, pn, IEEE80211_GMAC_PN_LEN);
984 break;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200985 case WLAN_CIPHER_SUITE_GCMP:
986 case WLAN_CIPHER_SUITE_GCMP_256:
987 if (WARN_ON(tid < -1 || tid >= IEEE80211_NUM_TIDS))
988 return;
989 if (tid < 0)
990 pn = key->u.gcmp.rx_pn[IEEE80211_NUM_TIDS];
991 else
992 pn = key->u.gcmp.rx_pn[tid];
993 memcpy(seq->gcmp.pn, pn, IEEE80211_GCMP_PN_LEN);
994 break;
Johannes Berg3ea542d2011-07-07 18:58:00 +0200995 }
996}
997EXPORT_SYMBOL(ieee80211_get_key_rx_seq);
Johannes Berg27b3eb92013-08-07 20:11:55 +0200998
999void ieee80211_set_key_tx_seq(struct ieee80211_key_conf *keyconf,
1000 struct ieee80211_key_seq *seq)
1001{
1002 struct ieee80211_key *key;
1003 u64 pn64;
1004
1005 key = container_of(keyconf, struct ieee80211_key, conf);
1006
1007 switch (key->conf.cipher) {
1008 case WLAN_CIPHER_SUITE_TKIP:
1009 key->u.tkip.tx.iv32 = seq->tkip.iv32;
1010 key->u.tkip.tx.iv16 = seq->tkip.iv16;
1011 break;
1012 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +02001013 case WLAN_CIPHER_SUITE_CCMP_256:
Johannes Berg27b3eb92013-08-07 20:11:55 +02001014 pn64 = (u64)seq->ccmp.pn[5] |
1015 ((u64)seq->ccmp.pn[4] << 8) |
1016 ((u64)seq->ccmp.pn[3] << 16) |
1017 ((u64)seq->ccmp.pn[2] << 24) |
1018 ((u64)seq->ccmp.pn[1] << 32) |
1019 ((u64)seq->ccmp.pn[0] << 40);
1020 atomic64_set(&key->u.ccmp.tx_pn, pn64);
1021 break;
1022 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +02001023 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Johannes Berg27b3eb92013-08-07 20:11:55 +02001024 pn64 = (u64)seq->aes_cmac.pn[5] |
1025 ((u64)seq->aes_cmac.pn[4] << 8) |
1026 ((u64)seq->aes_cmac.pn[3] << 16) |
1027 ((u64)seq->aes_cmac.pn[2] << 24) |
1028 ((u64)seq->aes_cmac.pn[1] << 32) |
1029 ((u64)seq->aes_cmac.pn[0] << 40);
1030 atomic64_set(&key->u.aes_cmac.tx_pn, pn64);
1031 break;
Jouni Malinen8ade5382015-01-24 19:52:09 +02001032 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
1033 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
1034 pn64 = (u64)seq->aes_gmac.pn[5] |
1035 ((u64)seq->aes_gmac.pn[4] << 8) |
1036 ((u64)seq->aes_gmac.pn[3] << 16) |
1037 ((u64)seq->aes_gmac.pn[2] << 24) |
1038 ((u64)seq->aes_gmac.pn[1] << 32) |
1039 ((u64)seq->aes_gmac.pn[0] << 40);
1040 atomic64_set(&key->u.aes_gmac.tx_pn, pn64);
1041 break;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +02001042 case WLAN_CIPHER_SUITE_GCMP:
1043 case WLAN_CIPHER_SUITE_GCMP_256:
1044 pn64 = (u64)seq->gcmp.pn[5] |
1045 ((u64)seq->gcmp.pn[4] << 8) |
1046 ((u64)seq->gcmp.pn[3] << 16) |
1047 ((u64)seq->gcmp.pn[2] << 24) |
1048 ((u64)seq->gcmp.pn[1] << 32) |
1049 ((u64)seq->gcmp.pn[0] << 40);
1050 atomic64_set(&key->u.gcmp.tx_pn, pn64);
1051 break;
Johannes Berg27b3eb92013-08-07 20:11:55 +02001052 default:
1053 WARN_ON(1);
1054 break;
1055 }
1056}
1057EXPORT_SYMBOL_GPL(ieee80211_set_key_tx_seq);
1058
1059void ieee80211_set_key_rx_seq(struct ieee80211_key_conf *keyconf,
1060 int tid, struct ieee80211_key_seq *seq)
1061{
1062 struct ieee80211_key *key;
1063 u8 *pn;
1064
1065 key = container_of(keyconf, struct ieee80211_key, conf);
1066
1067 switch (key->conf.cipher) {
1068 case WLAN_CIPHER_SUITE_TKIP:
1069 if (WARN_ON(tid < 0 || tid >= IEEE80211_NUM_TIDS))
1070 return;
1071 key->u.tkip.rx[tid].iv32 = seq->tkip.iv32;
1072 key->u.tkip.rx[tid].iv16 = seq->tkip.iv16;
1073 break;
1074 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +02001075 case WLAN_CIPHER_SUITE_CCMP_256:
Johannes Berg27b3eb92013-08-07 20:11:55 +02001076 if (WARN_ON(tid < -1 || tid >= IEEE80211_NUM_TIDS))
1077 return;
1078 if (tid < 0)
1079 pn = key->u.ccmp.rx_pn[IEEE80211_NUM_TIDS];
1080 else
1081 pn = key->u.ccmp.rx_pn[tid];
1082 memcpy(pn, seq->ccmp.pn, IEEE80211_CCMP_PN_LEN);
1083 break;
1084 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +02001085 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Johannes Berg27b3eb92013-08-07 20:11:55 +02001086 if (WARN_ON(tid != 0))
1087 return;
1088 pn = key->u.aes_cmac.rx_pn;
1089 memcpy(pn, seq->aes_cmac.pn, IEEE80211_CMAC_PN_LEN);
1090 break;
Jouni Malinen8ade5382015-01-24 19:52:09 +02001091 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
1092 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
1093 if (WARN_ON(tid != 0))
1094 return;
1095 pn = key->u.aes_gmac.rx_pn;
1096 memcpy(pn, seq->aes_gmac.pn, IEEE80211_GMAC_PN_LEN);
1097 break;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +02001098 case WLAN_CIPHER_SUITE_GCMP:
1099 case WLAN_CIPHER_SUITE_GCMP_256:
1100 if (WARN_ON(tid < -1 || tid >= IEEE80211_NUM_TIDS))
1101 return;
1102 if (tid < 0)
1103 pn = key->u.gcmp.rx_pn[IEEE80211_NUM_TIDS];
1104 else
1105 pn = key->u.gcmp.rx_pn[tid];
1106 memcpy(pn, seq->gcmp.pn, IEEE80211_GCMP_PN_LEN);
1107 break;
Johannes Berg27b3eb92013-08-07 20:11:55 +02001108 default:
1109 WARN_ON(1);
1110 break;
1111 }
1112}
1113EXPORT_SYMBOL_GPL(ieee80211_set_key_rx_seq);
1114
1115void ieee80211_remove_key(struct ieee80211_key_conf *keyconf)
1116{
1117 struct ieee80211_key *key;
1118
1119 key = container_of(keyconf, struct ieee80211_key, conf);
1120
1121 assert_key_lock(key->local);
1122
1123 /*
1124 * if key was uploaded, we assume the driver will/has remove(d)
1125 * it, so adjust bookkeeping accordingly
1126 */
1127 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE) {
1128 key->flags &= ~KEY_FLAG_UPLOADED_TO_HARDWARE;
1129
Johannes Berg1e359a52015-01-05 10:28:49 +01001130 if (!((key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC) ||
Ido Yarivdb128472015-01-06 08:39:02 -05001131 (key->conf.flags & IEEE80211_KEY_FLAG_RESERVE_TAILROOM)))
Johannes Berg27b3eb92013-08-07 20:11:55 +02001132 increment_tailroom_need_count(key->sdata);
1133 }
1134
1135 ieee80211_key_free(key, false);
1136}
1137EXPORT_SYMBOL_GPL(ieee80211_remove_key);
1138
1139struct ieee80211_key_conf *
1140ieee80211_gtk_rekey_add(struct ieee80211_vif *vif,
1141 struct ieee80211_key_conf *keyconf)
1142{
1143 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
1144 struct ieee80211_local *local = sdata->local;
1145 struct ieee80211_key *key;
1146 int err;
1147
1148 if (WARN_ON(!local->wowlan))
1149 return ERR_PTR(-EINVAL);
1150
1151 if (WARN_ON(vif->type != NL80211_IFTYPE_STATION))
1152 return ERR_PTR(-EINVAL);
1153
1154 key = ieee80211_key_alloc(keyconf->cipher, keyconf->keyidx,
1155 keyconf->keylen, keyconf->key,
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001156 0, NULL, NULL);
Johannes Berg27b3eb92013-08-07 20:11:55 +02001157 if (IS_ERR(key))
Johannes Bergc5dc1642013-08-28 19:03:36 +02001158 return ERR_CAST(key);
Johannes Berg27b3eb92013-08-07 20:11:55 +02001159
1160 if (sdata->u.mgd.mfp != IEEE80211_MFP_DISABLED)
1161 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
1162
1163 err = ieee80211_key_link(key, sdata, NULL);
1164 if (err)
1165 return ERR_PTR(err);
1166
1167 return &key->conf;
1168}
1169EXPORT_SYMBOL_GPL(ieee80211_gtk_rekey_add);