blob: b7e528bbeccef7ec889e0b17668e664732ed5d1d [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * mac80211 configuration hooks for cfg80211
3 *
Jouni Malinen026331c2010-02-15 12:53:10 +02004 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
Johannes Bergd98ad832014-09-03 15:24:57 +03005 * Copyright 2013-2014 Intel Mobile Communications GmbH
Jiri Bencf0706e82007-05-05 11:45:53 -07006 *
7 * This file is GPLv2 as found in COPYING.
8 */
9
Johannes Berge8cbb4c2007-12-19 02:03:30 +010010#include <linux/ieee80211.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070011#include <linux/nl80211.h>
12#include <linux/rtnetlink.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070014#include <net/net_namespace.h>
Johannes Berg5dfdaf52007-12-19 02:03:33 +010015#include <linux/rcupdate.h>
Arik Nemtsovdfe018b2011-09-28 14:12:52 +030016#include <linux/if_ether.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070017#include <net/cfg80211.h>
18#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020019#include "driver-ops.h"
Michael Wue0eb6852007-09-18 17:29:21 -040020#include "cfg.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040021#include "rate.h"
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +010022#include "mesh.h"
Johannes Berg02219b32014-10-07 10:38:50 +030023#include "wme.h"
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +010024
Johannes Berg552bff02012-09-19 09:26:06 +020025static struct wireless_dev *ieee80211_add_iface(struct wiphy *wiphy,
26 const char *name,
Johannes Berg84efbb82012-06-16 00:00:26 +020027 enum nl80211_iftype type,
28 u32 *flags,
29 struct vif_params *params)
Jiri Bencf0706e82007-05-05 11:45:53 -070030{
31 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg84efbb82012-06-16 00:00:26 +020032 struct wireless_dev *wdev;
Michael Wu8cc9a732008-01-31 19:48:23 +010033 struct ieee80211_sub_if_data *sdata;
34 int err;
Jiri Bencf0706e82007-05-05 11:45:53 -070035
Johannes Berg84efbb82012-06-16 00:00:26 +020036 err = ieee80211_if_add(local, name, &wdev, type, params);
Johannes Bergf9e10ce2010-12-03 09:20:42 +010037 if (err)
38 return ERR_PTR(err);
Michael Wu8cc9a732008-01-31 19:48:23 +010039
Johannes Bergf9e10ce2010-12-03 09:20:42 +010040 if (type == NL80211_IFTYPE_MONITOR && flags) {
Johannes Berg84efbb82012-06-16 00:00:26 +020041 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Bergf9e10ce2010-12-03 09:20:42 +010042 sdata->u.mntr_flags = *flags;
43 }
44
Johannes Berg84efbb82012-06-16 00:00:26 +020045 return wdev;
Jiri Bencf0706e82007-05-05 11:45:53 -070046}
47
Johannes Berg84efbb82012-06-16 00:00:26 +020048static int ieee80211_del_iface(struct wiphy *wiphy, struct wireless_dev *wdev)
Jiri Bencf0706e82007-05-05 11:45:53 -070049{
Johannes Berg84efbb82012-06-16 00:00:26 +020050 ieee80211_if_remove(IEEE80211_WDEV_TO_SUB_IF(wdev));
Jiri Bencf0706e82007-05-05 11:45:53 -070051
Johannes Berg75636522008-07-09 14:40:35 +020052 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -070053}
54
Johannes Berge36d56b2009-06-09 21:04:43 +020055static int ieee80211_change_iface(struct wiphy *wiphy,
56 struct net_device *dev,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +010057 enum nl80211_iftype type, u32 *flags,
58 struct vif_params *params)
Johannes Berg42613db2007-09-28 21:52:27 +020059{
Johannes Berg9607e6b2009-12-23 13:15:31 +010060 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Bergf3947e22008-07-09 14:40:36 +020061 int ret;
Johannes Berg42613db2007-09-28 21:52:27 +020062
Johannes Berg05c914f2008-09-11 00:01:58 +020063 ret = ieee80211_if_change_type(sdata, type);
Johannes Bergf3947e22008-07-09 14:40:36 +020064 if (ret)
65 return ret;
Johannes Berg42613db2007-09-28 21:52:27 +020066
Johannes Berg9bc383d2009-11-19 11:55:19 +010067 if (type == NL80211_IFTYPE_AP_VLAN &&
68 params && params->use_4addr == 0)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +000069 RCU_INIT_POINTER(sdata->u.vlan.sta, NULL);
Johannes Berg9bc383d2009-11-19 11:55:19 +010070 else if (type == NL80211_IFTYPE_STATION &&
71 params && params->use_4addr >= 0)
72 sdata->u.mgd.use_4addr = params->use_4addr;
73
Christian Lamparter85416a42010-10-02 13:17:07 +020074 if (sdata->vif.type == NL80211_IFTYPE_MONITOR && flags) {
75 struct ieee80211_local *local = sdata->local;
76
77 if (ieee80211_sdata_running(sdata)) {
Felix Fietkau31eba5b2013-05-28 13:01:53 +020078 u32 mask = MONITOR_FLAG_COOK_FRAMES |
79 MONITOR_FLAG_ACTIVE;
80
Christian Lamparter85416a42010-10-02 13:17:07 +020081 /*
Felix Fietkau31eba5b2013-05-28 13:01:53 +020082 * Prohibit MONITOR_FLAG_COOK_FRAMES and
83 * MONITOR_FLAG_ACTIVE to be changed while the
84 * interface is up.
Christian Lamparter85416a42010-10-02 13:17:07 +020085 * Else we would need to add a lot of cruft
86 * to update everything:
87 * cooked_mntrs, monitor and all fif_* counters
88 * reconfigure hardware
89 */
Felix Fietkau31eba5b2013-05-28 13:01:53 +020090 if ((*flags & mask) != (sdata->u.mntr_flags & mask))
Christian Lamparter85416a42010-10-02 13:17:07 +020091 return -EBUSY;
92
93 ieee80211_adjust_monitor_flags(sdata, -1);
94 sdata->u.mntr_flags = *flags;
95 ieee80211_adjust_monitor_flags(sdata, 1);
96
97 ieee80211_configure_filter(local);
98 } else {
99 /*
100 * Because the interface is down, ieee80211_do_stop
101 * and ieee80211_do_open take care of "everything"
102 * mentioned in the comment above.
103 */
104 sdata->u.mntr_flags = *flags;
105 }
106 }
Felix Fietkauf7917af2010-04-27 00:26:34 +0200107
Johannes Berg42613db2007-09-28 21:52:27 +0200108 return 0;
109}
110
Johannes Bergf142c6b2012-06-18 20:07:15 +0200111static int ieee80211_start_p2p_device(struct wiphy *wiphy,
112 struct wireless_dev *wdev)
113{
Luciano Coelhob6a55012014-02-27 11:07:21 +0200114 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
115 int ret;
116
117 mutex_lock(&sdata->local->chanctx_mtx);
118 ret = ieee80211_check_combinations(sdata, NULL, 0, 0);
119 mutex_unlock(&sdata->local->chanctx_mtx);
120 if (ret < 0)
121 return ret;
122
Johannes Bergf142c6b2012-06-18 20:07:15 +0200123 return ieee80211_do_open(wdev, true);
124}
125
126static void ieee80211_stop_p2p_device(struct wiphy *wiphy,
127 struct wireless_dev *wdev)
128{
129 ieee80211_sdata_stop(IEEE80211_WDEV_TO_SUB_IF(wdev));
130}
131
Simon Wunderlichb53be792011-11-18 14:20:44 +0100132static int ieee80211_set_noack_map(struct wiphy *wiphy,
133 struct net_device *dev,
134 u16 noack_map)
135{
136 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
137
138 sdata->noack_map = noack_map;
139 return 0;
140}
141
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100142static int ieee80211_add_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berge31b8212010-10-05 19:39:30 +0200143 u8 key_idx, bool pairwise, const u8 *mac_addr,
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100144 struct key_params *params)
145{
Johannes Berg26a58452010-08-27 12:35:55 +0200146 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200147 struct ieee80211_local *local = sdata->local;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100148 struct sta_info *sta = NULL;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200149 const struct ieee80211_cipher_scheme *cs = NULL;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100150 struct ieee80211_key *key;
Johannes Berg3b967662008-04-08 17:56:52 +0200151 int err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100152
Johannes Berg26a58452010-08-27 12:35:55 +0200153 if (!ieee80211_sdata_running(sdata))
Johannes Bergad0e2b52010-06-01 10:19:19 +0200154 return -ENETDOWN;
155
Johannes Berg97359d12010-08-10 09:46:38 +0200156 /* reject WEP and TKIP keys if WEP failed to initialize */
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100157 switch (params->cipher) {
158 case WLAN_CIPHER_SUITE_WEP40:
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100159 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berg97359d12010-08-10 09:46:38 +0200160 case WLAN_CIPHER_SUITE_WEP104:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200161 if (IS_ERR(local->wep_tx_tfm))
Johannes Berg97359d12010-08-10 09:46:38 +0200162 return -EINVAL;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200163 break;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200164 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200165 case WLAN_CIPHER_SUITE_CCMP_256:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200166 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +0200167 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200168 case WLAN_CIPHER_SUITE_GCMP:
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200169 case WLAN_CIPHER_SUITE_GCMP_256:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200170 break;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100171 default:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200172 cs = ieee80211_cs_get(local, params->cipher, sdata->vif.type);
Johannes Berg97359d12010-08-10 09:46:38 +0200173 break;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100174 }
175
Johannes Berg97359d12010-08-10 09:46:38 +0200176 key = ieee80211_key_alloc(params->cipher, key_idx, params->key_len,
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200177 params->key, params->seq_len, params->seq,
178 cs);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100179 if (IS_ERR(key))
180 return PTR_ERR(key);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100181
Johannes Berge31b8212010-10-05 19:39:30 +0200182 if (pairwise)
183 key->conf.flags |= IEEE80211_KEY_FLAG_PAIRWISE;
184
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200185 mutex_lock(&local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200186
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100187 if (mac_addr) {
Thomas Pedersenff973af2011-05-03 16:57:12 -0700188 if (ieee80211_vif_is_mesh(&sdata->vif))
189 sta = sta_info_get(sdata, mac_addr);
190 else
191 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berg1626e0f2013-01-11 14:34:25 +0100192 /*
193 * The ASSOC test makes sure the driver is ready to
194 * receive the key. When wpa_supplicant has roamed
195 * using FT, it attempts to set the key before
196 * association has completed, this rejects that attempt
Stephen Hemmingerd070f912014-10-29 22:55:58 -0700197 * so it will set the key again after association.
Johannes Berg1626e0f2013-01-11 14:34:25 +0100198 *
199 * TODO: accept the key if we have a station entry and
200 * add it to the device after the station.
201 */
202 if (!sta || !test_sta_flag(sta, WLAN_STA_ASSOC)) {
Johannes Berg79cf2df2013-03-06 22:53:52 +0100203 ieee80211_key_free_unused(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200204 err = -ENOENT;
205 goto out_unlock;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100206 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100207 }
208
Johannes Berge548c492012-09-04 17:08:23 +0200209 switch (sdata->vif.type) {
210 case NL80211_IFTYPE_STATION:
211 if (sdata->u.mgd.mfp != IEEE80211_MFP_DISABLED)
212 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
213 break;
214 case NL80211_IFTYPE_AP:
215 case NL80211_IFTYPE_AP_VLAN:
216 /* Keys without a station are used for TX only */
217 if (key->sta && test_sta_flag(key->sta, WLAN_STA_MFP))
218 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
219 break;
220 case NL80211_IFTYPE_ADHOC:
221 /* no MFP (yet) */
222 break;
223 case NL80211_IFTYPE_MESH_POINT:
224#ifdef CONFIG_MAC80211_MESH
225 if (sdata->u.mesh.security != IEEE80211_MESH_SEC_NONE)
226 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
227 break;
228#endif
229 case NL80211_IFTYPE_WDS:
230 case NL80211_IFTYPE_MONITOR:
231 case NL80211_IFTYPE_P2P_DEVICE:
232 case NL80211_IFTYPE_UNSPECIFIED:
233 case NUM_NL80211_IFTYPES:
234 case NL80211_IFTYPE_P2P_CLIENT:
235 case NL80211_IFTYPE_P2P_GO:
Rostislav Lisovy6e0bd6c2014-11-03 10:33:18 +0100236 case NL80211_IFTYPE_OCB:
Johannes Berge548c492012-09-04 17:08:23 +0200237 /* shouldn't happen */
238 WARN_ON_ONCE(1);
239 break;
240 }
241
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200242 if (sta)
243 sta->cipher_scheme = cs;
244
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300245 err = ieee80211_key_link(key, sdata, sta);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100246
Johannes Berg3b967662008-04-08 17:56:52 +0200247 out_unlock:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200248 mutex_unlock(&local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200249
250 return err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100251}
252
253static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berge31b8212010-10-05 19:39:30 +0200254 u8 key_idx, bool pairwise, const u8 *mac_addr)
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100255{
Johannes Berg5c0c3642011-05-12 14:31:49 +0200256 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
257 struct ieee80211_local *local = sdata->local;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100258 struct sta_info *sta;
Johannes Berg5c0c3642011-05-12 14:31:49 +0200259 struct ieee80211_key *key = NULL;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100260 int ret;
261
Johannes Berg5c0c3642011-05-12 14:31:49 +0200262 mutex_lock(&local->sta_mtx);
263 mutex_lock(&local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200264
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100265 if (mac_addr) {
Johannes Berg3b967662008-04-08 17:56:52 +0200266 ret = -ENOENT;
267
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100268 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100269 if (!sta)
Johannes Berg3b967662008-04-08 17:56:52 +0200270 goto out_unlock;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100271
Johannes Berg5c0c3642011-05-12 14:31:49 +0200272 if (pairwise)
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200273 key = key_mtx_dereference(local, sta->ptk[key_idx]);
Johannes Berg5c0c3642011-05-12 14:31:49 +0200274 else
Johannes Berg40b275b2011-05-13 14:15:49 +0200275 key = key_mtx_dereference(local, sta->gtk[key_idx]);
Johannes Berg5c0c3642011-05-12 14:31:49 +0200276 } else
Johannes Berg40b275b2011-05-13 14:15:49 +0200277 key = key_mtx_dereference(local, sdata->keys[key_idx]);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100278
Johannes Berg5c0c3642011-05-12 14:31:49 +0200279 if (!key) {
Johannes Berg3b967662008-04-08 17:56:52 +0200280 ret = -ENOENT;
281 goto out_unlock;
282 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100283
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100284 ieee80211_key_free(key, true);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100285
Johannes Berg3b967662008-04-08 17:56:52 +0200286 ret = 0;
287 out_unlock:
Johannes Berg5c0c3642011-05-12 14:31:49 +0200288 mutex_unlock(&local->key_mtx);
289 mutex_unlock(&local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200290
291 return ret;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100292}
293
Johannes Berg62da92f2007-12-19 02:03:31 +0100294static int ieee80211_get_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berge31b8212010-10-05 19:39:30 +0200295 u8 key_idx, bool pairwise, const u8 *mac_addr,
296 void *cookie,
Johannes Berg62da92f2007-12-19 02:03:31 +0100297 void (*callback)(void *cookie,
298 struct key_params *params))
299{
Johannes Berg14db74b2008-07-29 13:22:52 +0200300 struct ieee80211_sub_if_data *sdata;
Johannes Berg62da92f2007-12-19 02:03:31 +0100301 struct sta_info *sta = NULL;
302 u8 seq[6] = {0};
303 struct key_params params;
Johannes Berge31b8212010-10-05 19:39:30 +0200304 struct ieee80211_key *key = NULL;
Johannes Bergaba83a0b2011-07-06 21:59:39 +0200305 u64 pn64;
Johannes Berg62da92f2007-12-19 02:03:31 +0100306 u32 iv32;
307 u16 iv16;
308 int err = -ENOENT;
309
Johannes Berg14db74b2008-07-29 13:22:52 +0200310 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
311
Johannes Berg3b967662008-04-08 17:56:52 +0200312 rcu_read_lock();
313
Johannes Berg62da92f2007-12-19 02:03:31 +0100314 if (mac_addr) {
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100315 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berg62da92f2007-12-19 02:03:31 +0100316 if (!sta)
317 goto out;
318
Max Stepanov354e1592013-12-08 13:30:52 +0200319 if (pairwise && key_idx < NUM_DEFAULT_KEYS)
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200320 key = rcu_dereference(sta->ptk[key_idx]);
Max Stepanov31f1f4e2013-12-08 13:31:29 +0200321 else if (!pairwise &&
322 key_idx < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
Johannes Berga3836e02011-05-12 15:11:37 +0200323 key = rcu_dereference(sta->gtk[key_idx]);
Johannes Berg62da92f2007-12-19 02:03:31 +0100324 } else
Johannes Berga3836e02011-05-12 15:11:37 +0200325 key = rcu_dereference(sdata->keys[key_idx]);
Johannes Berg62da92f2007-12-19 02:03:31 +0100326
327 if (!key)
328 goto out;
329
330 memset(&params, 0, sizeof(params));
331
Johannes Berg97359d12010-08-10 09:46:38 +0200332 params.cipher = key->conf.cipher;
Johannes Berg62da92f2007-12-19 02:03:31 +0100333
Johannes Berg97359d12010-08-10 09:46:38 +0200334 switch (key->conf.cipher) {
335 case WLAN_CIPHER_SUITE_TKIP:
Harvey Harrisonb0f76b32008-05-14 16:26:19 -0700336 iv32 = key->u.tkip.tx.iv32;
337 iv16 = key->u.tkip.tx.iv16;
Johannes Berg62da92f2007-12-19 02:03:31 +0100338
Johannes Berg24487982009-04-23 18:52:52 +0200339 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
340 drv_get_tkip_seq(sdata->local,
341 key->conf.hw_key_idx,
342 &iv32, &iv16);
Johannes Berg62da92f2007-12-19 02:03:31 +0100343
344 seq[0] = iv16 & 0xff;
345 seq[1] = (iv16 >> 8) & 0xff;
346 seq[2] = iv32 & 0xff;
347 seq[3] = (iv32 >> 8) & 0xff;
348 seq[4] = (iv32 >> 16) & 0xff;
349 seq[5] = (iv32 >> 24) & 0xff;
350 params.seq = seq;
351 params.seq_len = 6;
352 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200353 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200354 case WLAN_CIPHER_SUITE_CCMP_256:
Johannes Bergaba83a0b2011-07-06 21:59:39 +0200355 pn64 = atomic64_read(&key->u.ccmp.tx_pn);
356 seq[0] = pn64;
357 seq[1] = pn64 >> 8;
358 seq[2] = pn64 >> 16;
359 seq[3] = pn64 >> 24;
360 seq[4] = pn64 >> 32;
361 seq[5] = pn64 >> 40;
Johannes Berg62da92f2007-12-19 02:03:31 +0100362 params.seq = seq;
363 params.seq_len = 6;
364 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200365 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +0200366 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Johannes Berg75396ae2011-07-06 22:00:35 +0200367 pn64 = atomic64_read(&key->u.aes_cmac.tx_pn);
368 seq[0] = pn64;
369 seq[1] = pn64 >> 8;
370 seq[2] = pn64 >> 16;
371 seq[3] = pn64 >> 24;
372 seq[4] = pn64 >> 32;
373 seq[5] = pn64 >> 40;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200374 params.seq = seq;
375 params.seq_len = 6;
376 break;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200377 case WLAN_CIPHER_SUITE_GCMP:
378 case WLAN_CIPHER_SUITE_GCMP_256:
379 pn64 = atomic64_read(&key->u.gcmp.tx_pn);
380 seq[0] = pn64;
381 seq[1] = pn64 >> 8;
382 seq[2] = pn64 >> 16;
383 seq[3] = pn64 >> 24;
384 seq[4] = pn64 >> 32;
385 seq[5] = pn64 >> 40;
386 params.seq = seq;
387 params.seq_len = 6;
388 break;
Johannes Berg62da92f2007-12-19 02:03:31 +0100389 }
390
391 params.key = key->conf.key;
392 params.key_len = key->conf.keylen;
393
394 callback(cookie, &params);
395 err = 0;
396
397 out:
Johannes Berg3b967662008-04-08 17:56:52 +0200398 rcu_read_unlock();
Johannes Berg62da92f2007-12-19 02:03:31 +0100399 return err;
400}
401
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100402static int ieee80211_config_default_key(struct wiphy *wiphy,
403 struct net_device *dev,
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100404 u8 key_idx, bool uni,
405 bool multi)
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100406{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200407 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100408
Johannes Bergf7e01042010-12-09 19:49:02 +0100409 ieee80211_set_default_key(sdata, key_idx, uni, multi);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100410
411 return 0;
412}
413
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200414static int ieee80211_config_default_mgmt_key(struct wiphy *wiphy,
415 struct net_device *dev,
416 u8 key_idx)
417{
Johannes Berg66c52422010-07-22 13:58:51 +0200418 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200419
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200420 ieee80211_set_default_mgmt_key(sdata, key_idx);
421
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200422 return 0;
423}
424
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800425void sta_set_rate_info_tx(struct sta_info *sta,
426 const struct ieee80211_tx_rate *rate,
427 struct rate_info *rinfo)
428{
429 rinfo->flags = 0;
Johannes Berg8bc83c22012-11-09 18:38:32 +0100430 if (rate->flags & IEEE80211_TX_RC_MCS) {
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800431 rinfo->flags |= RATE_INFO_FLAGS_MCS;
Johannes Berg8bc83c22012-11-09 18:38:32 +0100432 rinfo->mcs = rate->idx;
433 } else if (rate->flags & IEEE80211_TX_RC_VHT_MCS) {
434 rinfo->flags |= RATE_INFO_FLAGS_VHT_MCS;
435 rinfo->mcs = ieee80211_rate_get_vht_mcs(rate);
436 rinfo->nss = ieee80211_rate_get_vht_nss(rate);
437 } else {
438 struct ieee80211_supported_band *sband;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200439 int shift = ieee80211_vif_get_shift(&sta->sdata->vif);
440 u16 brate;
441
Johannes Berg8bc83c22012-11-09 18:38:32 +0100442 sband = sta->local->hw.wiphy->bands[
443 ieee80211_get_sdata_band(sta->sdata)];
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200444 brate = sband->bitrates[rate->idx].bitrate;
445 rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift);
Johannes Berg8bc83c22012-11-09 18:38:32 +0100446 }
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800447 if (rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
Johannes Bergb51f3be2015-01-15 16:14:02 +0100448 rinfo->bw = RATE_INFO_BW_40;
449 else if (rate->flags & IEEE80211_TX_RC_80_MHZ_WIDTH)
450 rinfo->bw = RATE_INFO_BW_80;
451 else if (rate->flags & IEEE80211_TX_RC_160_MHZ_WIDTH)
452 rinfo->bw = RATE_INFO_BW_160;
453 else
454 rinfo->bw = RATE_INFO_BW_20;
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800455 if (rate->flags & IEEE80211_TX_RC_SHORT_GI)
456 rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800457}
458
Saravana003e6762012-11-28 18:29:38 +0530459void sta_set_rate_info_rx(struct sta_info *sta, struct rate_info *rinfo)
460{
461 rinfo->flags = 0;
462
463 if (sta->last_rx_rate_flag & RX_FLAG_HT) {
464 rinfo->flags |= RATE_INFO_FLAGS_MCS;
465 rinfo->mcs = sta->last_rx_rate_idx;
466 } else if (sta->last_rx_rate_flag & RX_FLAG_VHT) {
467 rinfo->flags |= RATE_INFO_FLAGS_VHT_MCS;
468 rinfo->nss = sta->last_rx_rate_vht_nss;
469 rinfo->mcs = sta->last_rx_rate_idx;
470 } else {
471 struct ieee80211_supported_band *sband;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200472 int shift = ieee80211_vif_get_shift(&sta->sdata->vif);
473 u16 brate;
Saravana003e6762012-11-28 18:29:38 +0530474
475 sband = sta->local->hw.wiphy->bands[
476 ieee80211_get_sdata_band(sta->sdata)];
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200477 brate = sband->bitrates[sta->last_rx_rate_idx].bitrate;
478 rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift);
Saravana003e6762012-11-28 18:29:38 +0530479 }
480
Saravana003e6762012-11-28 18:29:38 +0530481 if (sta->last_rx_rate_flag & RX_FLAG_SHORT_GI)
482 rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
Johannes Bergb51f3be2015-01-15 16:14:02 +0100483
484 if (sta->last_rx_rate_flag & RX_FLAG_5MHZ)
485 rinfo->bw = RATE_INFO_BW_5;
486 else if (sta->last_rx_rate_flag & RX_FLAG_10MHZ)
487 rinfo->bw = RATE_INFO_BW_10;
488 else if (sta->last_rx_rate_flag & RX_FLAG_40MHZ)
489 rinfo->bw = RATE_INFO_BW_40;
490 else if (sta->last_rx_rate_vht_flag & RX_VHT_FLAG_80MHZ)
491 rinfo->bw = RATE_INFO_BW_80;
492 else if (sta->last_rx_rate_vht_flag & RX_VHT_FLAG_160MHZ)
493 rinfo->bw = RATE_INFO_BW_160;
494 else
495 rinfo->bw = RATE_INFO_BW_20;
Saravana003e6762012-11-28 18:29:38 +0530496}
497
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100498static int ieee80211_dump_station(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +0200499 int idx, u8 *mac, struct station_info *sinfo)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100500{
Johannes Berg3b53fde82009-11-16 12:00:37 +0100501 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300502 struct ieee80211_local *local = sdata->local;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100503 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100504 int ret = -ENOENT;
505
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300506 mutex_lock(&local->sta_mtx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100507
Johannes Berg3b53fde82009-11-16 12:00:37 +0100508 sta = sta_info_get_by_idx(sdata, idx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100509 if (sta) {
510 ret = 0;
Johannes Berg17741cd2008-09-11 00:02:02 +0200511 memcpy(mac, sta->sta.addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100512 sta_set_sinfo(sta, sinfo);
513 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100514
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300515 mutex_unlock(&local->sta_mtx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100516
Johannes Bergd0709a62008-02-25 16:27:46 +0100517 return ret;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100518}
519
Holger Schurig12897232010-04-19 10:23:57 +0200520static int ieee80211_dump_survey(struct wiphy *wiphy, struct net_device *dev,
521 int idx, struct survey_info *survey)
522{
523 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
524
Holger Schurig12897232010-04-19 10:23:57 +0200525 return drv_get_survey(local, idx, survey);
526}
527
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100528static int ieee80211_get_station(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +0200529 const u8 *mac, struct station_info *sinfo)
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100530{
Johannes Bergabe60632009-11-25 17:46:18 +0100531 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300532 struct ieee80211_local *local = sdata->local;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100533 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100534 int ret = -ENOENT;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100535
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300536 mutex_lock(&local->sta_mtx);
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100537
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100538 sta = sta_info_get_bss(sdata, mac);
Johannes Bergd0709a62008-02-25 16:27:46 +0100539 if (sta) {
540 ret = 0;
541 sta_set_sinfo(sta, sinfo);
542 }
543
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300544 mutex_unlock(&local->sta_mtx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100545
546 return ret;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100547}
548
Johannes Berge8c9bd52012-06-06 08:18:22 +0200549static int ieee80211_set_monitor_channel(struct wiphy *wiphy,
Johannes Berg683b6d32012-11-08 21:25:48 +0100550 struct cfg80211_chan_def *chandef)
Johannes Berge8c9bd52012-06-06 08:18:22 +0200551{
Johannes Berg55de9082012-07-26 17:24:39 +0200552 struct ieee80211_local *local = wiphy_priv(wiphy);
553 struct ieee80211_sub_if_data *sdata;
554 int ret = 0;
555
Johannes Berg4bf88532012-11-09 11:39:59 +0100556 if (cfg80211_chandef_identical(&local->monitor_chandef, chandef))
Johannes Berg55de9082012-07-26 17:24:39 +0200557 return 0;
558
Johannes Berg34a37402013-12-18 09:43:33 +0100559 mutex_lock(&local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +0200560 mutex_lock(&local->iflist_mtx);
561 if (local->use_chanctx) {
562 sdata = rcu_dereference_protected(
563 local->monitor_sdata,
564 lockdep_is_held(&local->iflist_mtx));
565 if (sdata) {
566 ieee80211_vif_release_channel(sdata);
Johannes Berg4bf88532012-11-09 11:39:59 +0100567 ret = ieee80211_vif_use_channel(sdata, chandef,
Johannes Berg55de9082012-07-26 17:24:39 +0200568 IEEE80211_CHANCTX_EXCLUSIVE);
569 }
570 } else if (local->open_count == local->monitors) {
Karl Beldan675a0b02013-03-25 16:26:57 +0100571 local->_oper_chandef = *chandef;
Johannes Berg55de9082012-07-26 17:24:39 +0200572 ieee80211_hw_config(local, 0);
573 }
574
Johannes Berg4bf88532012-11-09 11:39:59 +0100575 if (ret == 0)
576 local->monitor_chandef = *chandef;
Johannes Berg55de9082012-07-26 17:24:39 +0200577 mutex_unlock(&local->iflist_mtx);
Johannes Berg34a37402013-12-18 09:43:33 +0100578 mutex_unlock(&local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +0200579
580 return ret;
Johannes Berge8c9bd52012-06-06 08:18:22 +0200581}
582
Arik Nemtsov02945822011-11-10 11:28:57 +0200583static int ieee80211_set_probe_resp(struct ieee80211_sub_if_data *sdata,
Michal Kazioraf296bd2014-06-05 14:21:36 +0200584 const u8 *resp, size_t resp_len,
585 const struct ieee80211_csa_settings *csa)
Arik Nemtsov02945822011-11-10 11:28:57 +0200586{
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300587 struct probe_resp *new, *old;
Arik Nemtsov02945822011-11-10 11:28:57 +0200588
589 if (!resp || !resp_len)
Sujith Manoharanaba4e6f2012-08-22 14:21:07 +0530590 return 1;
Arik Nemtsov02945822011-11-10 11:28:57 +0200591
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100592 old = sdata_dereference(sdata->u.ap.probe_resp, sdata);
Arik Nemtsov02945822011-11-10 11:28:57 +0200593
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300594 new = kzalloc(sizeof(struct probe_resp) + resp_len, GFP_KERNEL);
Arik Nemtsov02945822011-11-10 11:28:57 +0200595 if (!new)
596 return -ENOMEM;
597
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300598 new->len = resp_len;
599 memcpy(new->data, resp, resp_len);
Arik Nemtsov02945822011-11-10 11:28:57 +0200600
Michal Kazioraf296bd2014-06-05 14:21:36 +0200601 if (csa)
602 memcpy(new->csa_counter_offsets, csa->counter_offsets_presp,
603 csa->n_counter_offsets_presp *
604 sizeof(new->csa_counter_offsets[0]));
605
Arik Nemtsov02945822011-11-10 11:28:57 +0200606 rcu_assign_pointer(sdata->u.ap.probe_resp, new);
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300607 if (old)
608 kfree_rcu(old, rcu_head);
Arik Nemtsov02945822011-11-10 11:28:57 +0200609
610 return 0;
611}
612
Luciano Coelho0ae07962013-12-08 09:42:25 +0200613static int ieee80211_assign_beacon(struct ieee80211_sub_if_data *sdata,
Michal Kazioraf296bd2014-06-05 14:21:36 +0200614 struct cfg80211_beacon_data *params,
615 const struct ieee80211_csa_settings *csa)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100616{
617 struct beacon_data *new, *old;
618 int new_head_len, new_tail_len;
Johannes Berg88600202012-02-13 15:17:18 +0100619 int size, err;
620 u32 changed = BSS_CHANGED_BEACON;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100621
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100622 old = sdata_dereference(sdata->u.ap.beacon, sdata);
623
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100624
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100625 /* Need to have a beacon head if we don't have one yet */
626 if (!params->head && !old)
Johannes Berg88600202012-02-13 15:17:18 +0100627 return -EINVAL;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100628
629 /* new or old head? */
630 if (params->head)
631 new_head_len = params->head_len;
632 else
633 new_head_len = old->head_len;
634
635 /* new or old tail? */
636 if (params->tail || !old)
637 /* params->tail_len will be zero for !params->tail */
638 new_tail_len = params->tail_len;
639 else
640 new_tail_len = old->tail_len;
641
642 size = sizeof(*new) + new_head_len + new_tail_len;
643
644 new = kzalloc(size, GFP_KERNEL);
645 if (!new)
646 return -ENOMEM;
647
648 /* start filling the new info now */
649
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100650 /*
651 * pointers go into the block we allocated,
652 * memory is | beacon_data | head | tail |
653 */
654 new->head = ((u8 *) new) + sizeof(*new);
655 new->tail = new->head + new_head_len;
656 new->head_len = new_head_len;
657 new->tail_len = new_tail_len;
658
Michal Kazioraf296bd2014-06-05 14:21:36 +0200659 if (csa) {
660 new->csa_current_counter = csa->count;
661 memcpy(new->csa_counter_offsets, csa->counter_offsets_beacon,
662 csa->n_counter_offsets_beacon *
663 sizeof(new->csa_counter_offsets[0]));
664 }
665
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100666 /* copy in head */
667 if (params->head)
668 memcpy(new->head, params->head, new_head_len);
669 else
670 memcpy(new->head, old->head, new_head_len);
671
672 /* copy in optional tail */
673 if (params->tail)
674 memcpy(new->tail, params->tail, new_tail_len);
675 else
676 if (old)
677 memcpy(new->tail, old->tail, new_tail_len);
678
Johannes Berg88600202012-02-13 15:17:18 +0100679 err = ieee80211_set_probe_resp(sdata, params->probe_resp,
Michal Kazioraf296bd2014-06-05 14:21:36 +0200680 params->probe_resp_len, csa);
Johannes Berg88600202012-02-13 15:17:18 +0100681 if (err < 0)
682 return err;
683 if (err == 0)
684 changed |= BSS_CHANGED_AP_PROBE_RESP;
Johannes Berg19885c42010-02-05 11:45:06 +0100685
Eric Dumazetcf778b02012-01-12 04:41:32 +0000686 rcu_assign_pointer(sdata->u.ap.beacon, new);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100687
Johannes Berg88600202012-02-13 15:17:18 +0100688 if (old)
689 kfree_rcu(old, rcu_head);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100690
Johannes Berg88600202012-02-13 15:17:18 +0100691 return changed;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100692}
693
Johannes Berg88600202012-02-13 15:17:18 +0100694static int ieee80211_start_ap(struct wiphy *wiphy, struct net_device *dev,
695 struct cfg80211_ap_settings *params)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100696{
Johannes Berg88600202012-02-13 15:17:18 +0100697 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg34a37402013-12-18 09:43:33 +0100698 struct ieee80211_local *local = sdata->local;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100699 struct beacon_data *old;
Johannes Berg665c93a2011-11-04 11:18:11 +0100700 struct ieee80211_sub_if_data *vlan;
Johannes Berg88600202012-02-13 15:17:18 +0100701 u32 changed = BSS_CHANGED_BEACON_INT |
702 BSS_CHANGED_BEACON_ENABLED |
703 BSS_CHANGED_BEACON |
Johannes Berg339afbf2012-11-14 15:21:17 +0100704 BSS_CHANGED_SSID |
Johannes Berg4bcc56b2014-11-13 11:23:53 +0100705 BSS_CHANGED_P2P_PS |
706 BSS_CHANGED_TXPOWER;
Johannes Berg88600202012-02-13 15:17:18 +0100707 int err;
Johannes Berg14db74b2008-07-29 13:22:52 +0200708
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100709 old = sdata_dereference(sdata->u.ap.beacon, sdata);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100710 if (old)
711 return -EALREADY;
712
Eliad Pellerf6993172014-09-10 14:07:35 +0300713 switch (params->smps_mode) {
714 case NL80211_SMPS_OFF:
715 sdata->smps_mode = IEEE80211_SMPS_OFF;
716 break;
717 case NL80211_SMPS_STATIC:
718 sdata->smps_mode = IEEE80211_SMPS_STATIC;
719 break;
720 case NL80211_SMPS_DYNAMIC:
721 sdata->smps_mode = IEEE80211_SMPS_DYNAMIC;
722 break;
723 default:
724 return -EINVAL;
725 }
Johannes Berg04ecd252012-09-11 14:34:12 +0200726 sdata->needed_rx_chains = sdata->local->rx_chains;
727
Johannes Berg34a37402013-12-18 09:43:33 +0100728 mutex_lock(&local->mtx);
Johannes Berg4bf88532012-11-09 11:39:59 +0100729 err = ieee80211_vif_use_channel(sdata, &params->chandef,
Johannes Berg55de9082012-07-26 17:24:39 +0200730 IEEE80211_CHANCTX_SHARED);
Michal Kazior4e141da2014-03-05 13:14:08 +0100731 if (!err)
732 ieee80211_vif_copy_chanctx_to_vlans(sdata, false);
Johannes Berg34a37402013-12-18 09:43:33 +0100733 mutex_unlock(&local->mtx);
Johannes Bergaa430da2012-05-16 23:50:18 +0200734 if (err)
735 return err;
736
Johannes Berg665c93a2011-11-04 11:18:11 +0100737 /*
738 * Apply control port protocol, this allows us to
739 * not encrypt dynamic WEP control frames.
740 */
741 sdata->control_port_protocol = params->crypto.control_port_ethertype;
742 sdata->control_port_no_encrypt = params->crypto.control_port_no_encrypt;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200743 sdata->encrypt_headroom = ieee80211_cs_headroom(sdata->local,
744 &params->crypto,
745 sdata->vif.type);
746
Johannes Berg665c93a2011-11-04 11:18:11 +0100747 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list) {
748 vlan->control_port_protocol =
749 params->crypto.control_port_ethertype;
750 vlan->control_port_no_encrypt =
751 params->crypto.control_port_no_encrypt;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200752 vlan->encrypt_headroom =
753 ieee80211_cs_headroom(sdata->local,
754 &params->crypto,
755 vlan->vif.type);
Johannes Berg665c93a2011-11-04 11:18:11 +0100756 }
757
Johannes Berg88600202012-02-13 15:17:18 +0100758 sdata->vif.bss_conf.beacon_int = params->beacon_interval;
759 sdata->vif.bss_conf.dtim_period = params->dtim_period;
Johannes Bergd6a83222012-12-14 14:06:28 +0100760 sdata->vif.bss_conf.enable_beacon = true;
Johannes Berg88600202012-02-13 15:17:18 +0100761
762 sdata->vif.bss_conf.ssid_len = params->ssid_len;
763 if (params->ssid_len)
764 memcpy(sdata->vif.bss_conf.ssid, params->ssid,
765 params->ssid_len);
766 sdata->vif.bss_conf.hidden_ssid =
767 (params->hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE);
768
Janusz Dziedzic67baf662013-03-21 15:47:56 +0100769 memset(&sdata->vif.bss_conf.p2p_noa_attr, 0,
770 sizeof(sdata->vif.bss_conf.p2p_noa_attr));
771 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow =
772 params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
773 if (params->p2p_opp_ps)
774 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
775 IEEE80211_P2P_OPPPS_ENABLE_BIT;
Johannes Berg339afbf2012-11-14 15:21:17 +0100776
Michal Kazioraf296bd2014-06-05 14:21:36 +0200777 err = ieee80211_assign_beacon(sdata, &params->beacon, NULL);
Emmanuel Grumbach0297ea12014-01-27 11:07:42 +0200778 if (err < 0) {
779 ieee80211_vif_release_channel(sdata);
Johannes Berg88600202012-02-13 15:17:18 +0100780 return err;
Emmanuel Grumbach0297ea12014-01-27 11:07:42 +0200781 }
Johannes Berg88600202012-02-13 15:17:18 +0100782 changed |= err;
783
Johannes Berg10416382012-10-19 15:44:42 +0200784 err = drv_start_ap(sdata->local, sdata);
785 if (err) {
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100786 old = sdata_dereference(sdata->u.ap.beacon, sdata);
787
Johannes Berg10416382012-10-19 15:44:42 +0200788 if (old)
789 kfree_rcu(old, rcu_head);
790 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
Emmanuel Grumbach0297ea12014-01-27 11:07:42 +0200791 ieee80211_vif_release_channel(sdata);
Johannes Berg10416382012-10-19 15:44:42 +0200792 return err;
793 }
794
Thomas Pedersen057d5f42013-12-19 10:25:15 -0800795 ieee80211_recalc_dtim(local, sdata);
Johannes Berg88600202012-02-13 15:17:18 +0100796 ieee80211_bss_info_change_notify(sdata, changed);
797
Johannes Berg3edaf3e2012-04-03 10:24:00 +0200798 netif_carrier_on(dev);
799 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
800 netif_carrier_on(vlan->dev);
801
Johannes Berg665c93a2011-11-04 11:18:11 +0100802 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100803}
804
Johannes Berg88600202012-02-13 15:17:18 +0100805static int ieee80211_change_beacon(struct wiphy *wiphy, struct net_device *dev,
806 struct cfg80211_beacon_data *params)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100807{
Johannes Berg14db74b2008-07-29 13:22:52 +0200808 struct ieee80211_sub_if_data *sdata;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100809 struct beacon_data *old;
Johannes Berg88600202012-02-13 15:17:18 +0100810 int err;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100811
Johannes Berg14db74b2008-07-29 13:22:52 +0200812 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Michal Kaziordbd72852014-01-29 07:56:21 +0100813 sdata_assert_lock(sdata);
Johannes Berg14db74b2008-07-29 13:22:52 +0200814
Simon Wunderlich73da7d52013-07-11 16:09:06 +0200815 /* don't allow changing the beacon while CSA is in place - offset
816 * of channel switch counter may change
817 */
818 if (sdata->vif.csa_active)
819 return -EBUSY;
820
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100821 old = sdata_dereference(sdata->u.ap.beacon, sdata);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100822 if (!old)
823 return -ENOENT;
824
Michal Kazioraf296bd2014-06-05 14:21:36 +0200825 err = ieee80211_assign_beacon(sdata, params, NULL);
Johannes Berg88600202012-02-13 15:17:18 +0100826 if (err < 0)
827 return err;
828 ieee80211_bss_info_change_notify(sdata, err);
829 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100830}
831
Johannes Berg88600202012-02-13 15:17:18 +0100832static int ieee80211_stop_ap(struct wiphy *wiphy, struct net_device *dev)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100833{
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200834 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
835 struct ieee80211_sub_if_data *vlan;
836 struct ieee80211_local *local = sdata->local;
837 struct beacon_data *old_beacon;
838 struct probe_resp *old_probe_resp;
Janusz Dziedzicd2859df2013-11-06 13:55:51 +0100839 struct cfg80211_chan_def chandef;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100840
Michal Kaziordbd72852014-01-29 07:56:21 +0100841 sdata_assert_lock(sdata);
842
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100843 old_beacon = sdata_dereference(sdata->u.ap.beacon, sdata);
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200844 if (!old_beacon)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100845 return -ENOENT;
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100846 old_probe_resp = sdata_dereference(sdata->u.ap.probe_resp, sdata);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100847
Simon Wunderlich73da7d52013-07-11 16:09:06 +0200848 /* abort any running channel switch */
Michal Kazior59af6922014-04-09 15:10:59 +0200849 mutex_lock(&local->mtx);
Simon Wunderlich73da7d52013-07-11 16:09:06 +0200850 sdata->vif.csa_active = false;
Luciano Coelhoa46992b2014-06-13 16:30:07 +0300851 if (sdata->csa_block_tx) {
852 ieee80211_wake_vif_queues(local, sdata,
853 IEEE80211_QUEUE_STOP_REASON_CSA);
854 sdata->csa_block_tx = false;
855 }
856
Michal Kazior59af6922014-04-09 15:10:59 +0200857 mutex_unlock(&local->mtx);
858
Simon Wunderlich1f3b8a22013-11-21 18:19:53 +0100859 kfree(sdata->u.ap.next_beacon);
860 sdata->u.ap.next_beacon = NULL;
861
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200862 /* turn off carrier for this interface and dependent VLANs */
Johannes Berg3edaf3e2012-04-03 10:24:00 +0200863 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
864 netif_carrier_off(vlan->dev);
865 netif_carrier_off(dev);
866
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200867 /* remove beacon and probe response */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000868 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200869 RCU_INIT_POINTER(sdata->u.ap.probe_resp, NULL);
870 kfree_rcu(old_beacon, rcu_head);
871 if (old_probe_resp)
872 kfree_rcu(old_probe_resp, rcu_head);
Emmanuel Grumbach8ffcc702014-01-23 14:28:16 +0200873 sdata->u.ap.driver_smps_mode = IEEE80211_SMPS_OFF;
Johannes Berg88600202012-02-13 15:17:18 +0100874
Johannes Berge7162512013-12-04 23:18:37 +0100875 __sta_info_flush(sdata, true);
Johannes Berg7907c7d2013-12-04 23:47:09 +0100876 ieee80211_free_keys(sdata, true);
Johannes Berg75de9112012-12-14 14:56:03 +0100877
Johannes Bergd6a83222012-12-14 14:06:28 +0100878 sdata->vif.bss_conf.enable_beacon = false;
Marek Puzyniak0eabccd2013-04-10 13:47:45 +0200879 sdata->vif.bss_conf.ssid_len = 0;
Johannes Bergd6a83222012-12-14 14:06:28 +0100880 clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED, &sdata->state);
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200881 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
Johannes Berg88600202012-02-13 15:17:18 +0100882
Simon Wunderlicha6b368f2013-06-11 10:44:39 +0200883 if (sdata->wdev.cac_started) {
Janusz Dziedzicd2859df2013-11-06 13:55:51 +0100884 chandef = sdata->vif.bss_conf.chandef;
Simon Wunderlicha6b368f2013-06-11 10:44:39 +0200885 cancel_delayed_work_sync(&sdata->dfs_cac_timer_work);
Janusz Dziedzicd2859df2013-11-06 13:55:51 +0100886 cfg80211_cac_event(sdata->dev, &chandef,
887 NL80211_RADAR_CAC_ABORTED,
Simon Wunderlicha6b368f2013-06-11 10:44:39 +0200888 GFP_KERNEL);
889 }
890
Johannes Berg10416382012-10-19 15:44:42 +0200891 drv_stop_ap(sdata->local, sdata);
892
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200893 /* free all potentially still buffered bcast frames */
894 local->total_ps_buffered -= skb_queue_len(&sdata->u.ap.ps.bc_buf);
895 skb_queue_purge(&sdata->u.ap.ps.bc_buf);
896
Johannes Berg34a37402013-12-18 09:43:33 +0100897 mutex_lock(&local->mtx);
Michal Kazior4e141da2014-03-05 13:14:08 +0100898 ieee80211_vif_copy_chanctx_to_vlans(sdata, true);
Johannes Berg55de9082012-07-26 17:24:39 +0200899 ieee80211_vif_release_channel(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +0100900 mutex_unlock(&local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +0200901
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200902 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100903}
904
Johannes Berg4fd69312007-12-19 02:03:35 +0100905/* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */
906struct iapp_layer2_update {
907 u8 da[ETH_ALEN]; /* broadcast */
908 u8 sa[ETH_ALEN]; /* STA addr */
909 __be16 len; /* 6 */
910 u8 dsap; /* 0 */
911 u8 ssap; /* 0 */
912 u8 control;
913 u8 xid_info[3];
Eric Dumazetbc105022010-06-03 03:21:52 -0700914} __packed;
Johannes Berg4fd69312007-12-19 02:03:35 +0100915
916static void ieee80211_send_layer2_update(struct sta_info *sta)
917{
918 struct iapp_layer2_update *msg;
919 struct sk_buff *skb;
920
921 /* Send Level 2 Update Frame to update forwarding tables in layer 2
922 * bridge devices */
923
924 skb = dev_alloc_skb(sizeof(*msg));
925 if (!skb)
926 return;
927 msg = (struct iapp_layer2_update *)skb_put(skb, sizeof(*msg));
928
929 /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID)
930 * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */
931
Johannes Berge83e6542012-07-13 16:23:07 +0200932 eth_broadcast_addr(msg->da);
Johannes Berg17741cd2008-09-11 00:02:02 +0200933 memcpy(msg->sa, sta->sta.addr, ETH_ALEN);
Johannes Berg4fd69312007-12-19 02:03:35 +0100934 msg->len = htons(6);
935 msg->dsap = 0;
936 msg->ssap = 0x01; /* NULL LSAP, CR Bit: Response */
937 msg->control = 0xaf; /* XID response lsb.1111F101.
938 * F=0 (no poll command; unsolicited frame) */
939 msg->xid_info[0] = 0x81; /* XID format identifier */
940 msg->xid_info[1] = 1; /* LLC types/classes: Type 1 LLC */
941 msg->xid_info[2] = 0; /* XID sender's receive window size (RW) */
942
Johannes Bergd0709a62008-02-25 16:27:46 +0100943 skb->dev = sta->sdata->dev;
944 skb->protocol = eth_type_trans(skb, sta->sdata->dev);
Johannes Berg4fd69312007-12-19 02:03:35 +0100945 memset(skb->cb, 0, sizeof(skb->cb));
John W. Linville06ee1c22010-07-19 11:52:59 -0400946 netif_rx_ni(skb);
Johannes Berg4fd69312007-12-19 02:03:35 +0100947}
948
Johannes Bergd582cff2012-10-26 17:53:44 +0200949static int sta_apply_auth_flags(struct ieee80211_local *local,
950 struct sta_info *sta,
951 u32 mask, u32 set)
952{
953 int ret;
954
955 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
956 set & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
957 !test_sta_flag(sta, WLAN_STA_AUTH)) {
958 ret = sta_info_move_state(sta, IEEE80211_STA_AUTH);
959 if (ret)
960 return ret;
961 }
962
963 if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
964 set & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
965 !test_sta_flag(sta, WLAN_STA_ASSOC)) {
966 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
967 if (ret)
968 return ret;
969 }
970
971 if (mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
972 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED))
973 ret = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
974 else if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
975 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
976 else
977 ret = 0;
978 if (ret)
979 return ret;
980 }
981
982 if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
983 !(set & BIT(NL80211_STA_FLAG_ASSOCIATED)) &&
984 test_sta_flag(sta, WLAN_STA_ASSOC)) {
985 ret = sta_info_move_state(sta, IEEE80211_STA_AUTH);
986 if (ret)
987 return ret;
988 }
989
990 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
991 !(set & BIT(NL80211_STA_FLAG_AUTHENTICATED)) &&
992 test_sta_flag(sta, WLAN_STA_AUTH)) {
993 ret = sta_info_move_state(sta, IEEE80211_STA_NONE);
994 if (ret)
995 return ret;
996 }
997
998 return 0;
999}
1000
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001001static int sta_apply_parameters(struct ieee80211_local *local,
1002 struct sta_info *sta,
1003 struct station_parameters *params)
Johannes Berg4fd69312007-12-19 02:03:35 +01001004{
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001005 int ret = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01001006 struct ieee80211_supported_band *sband;
Johannes Bergd0709a62008-02-25 16:27:46 +01001007 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berg55de9082012-07-26 17:24:39 +02001008 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001009 u32 mask, set;
Johannes Berg4fd69312007-12-19 02:03:35 +01001010
Johannes Berg55de9082012-07-26 17:24:39 +02001011 sband = local->hw.wiphy->bands[band];
Johannes Bergae5eb022008-10-14 16:58:37 +02001012
Johannes Bergeccb8e82009-05-11 21:57:56 +03001013 mask = params->sta_flags_mask;
1014 set = params->sta_flags_set;
Johannes Berg73651ee2008-02-25 16:27:47 +01001015
Johannes Bergd582cff2012-10-26 17:53:44 +02001016 if (ieee80211_vif_is_mesh(&sdata->vif)) {
1017 /*
1018 * In mesh mode, ASSOCIATED isn't part of the nl80211
1019 * API but must follow AUTHENTICATED for driver state.
1020 */
1021 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED))
1022 mask |= BIT(NL80211_STA_FLAG_ASSOCIATED);
1023 if (set & BIT(NL80211_STA_FLAG_AUTHENTICATED))
1024 set |= BIT(NL80211_STA_FLAG_ASSOCIATED);
Johannes Berg77ee7c82013-02-15 00:48:33 +01001025 } else if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1026 /*
1027 * TDLS -- everything follows authorized, but
1028 * only becoming authorized is possible, not
1029 * going back
1030 */
1031 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
1032 set |= BIT(NL80211_STA_FLAG_AUTHENTICATED) |
1033 BIT(NL80211_STA_FLAG_ASSOCIATED);
1034 mask |= BIT(NL80211_STA_FLAG_AUTHENTICATED) |
1035 BIT(NL80211_STA_FLAG_ASSOCIATED);
1036 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001037 }
1038
Arik Nemtsov68885a52014-06-11 17:18:19 +03001039 /* auth flags will be set later for TDLS stations */
1040 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1041 ret = sta_apply_auth_flags(local, sta, mask, set);
1042 if (ret)
1043 return ret;
1044 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001045
Johannes Bergeccb8e82009-05-11 21:57:56 +03001046 if (mask & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) {
Johannes Bergeccb8e82009-05-11 21:57:56 +03001047 if (set & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001048 set_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
1049 else
1050 clear_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001051 }
1052
Johannes Berga74a8c82014-07-22 14:50:47 +02001053 if (mask & BIT(NL80211_STA_FLAG_WME))
1054 sta->sta.wme = set & BIT(NL80211_STA_FLAG_WME);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001055
1056 if (mask & BIT(NL80211_STA_FLAG_MFP)) {
Johannes Bergeccb8e82009-05-11 21:57:56 +03001057 if (set & BIT(NL80211_STA_FLAG_MFP))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001058 set_sta_flag(sta, WLAN_STA_MFP);
1059 else
1060 clear_sta_flag(sta, WLAN_STA_MFP);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001061 }
Javier Cardonab39c48f2011-04-07 15:08:30 -07001062
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001063 if (mask & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001064 if (set & BIT(NL80211_STA_FLAG_TDLS_PEER))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001065 set_sta_flag(sta, WLAN_STA_TDLS_PEER);
1066 else
1067 clear_sta_flag(sta, WLAN_STA_TDLS_PEER);
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001068 }
Johannes Bergeccb8e82009-05-11 21:57:56 +03001069
Arik Nemtsov9041c1f2014-11-09 18:50:15 +02001070 /* mark TDLS channel switch support, if the AP allows it */
1071 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER) &&
1072 !sdata->u.mgd.tdls_chan_switch_prohibited &&
1073 params->ext_capab_len >= 4 &&
1074 params->ext_capab[3] & WLAN_EXT_CAPA4_TDLS_CHAN_SWITCH)
1075 set_sta_flag(sta, WLAN_STA_TDLS_CHAN_SWITCH);
1076
Johannes Berg3b9ce802011-09-27 20:56:12 +02001077 if (params->sta_modify_mask & STATION_PARAM_APPLY_UAPSD) {
1078 sta->sta.uapsd_queues = params->uapsd_queues;
1079 sta->sta.max_sp = params->max_sp;
1080 }
Eliad Peller9533b4a2011-08-23 14:37:47 +03001081
Johannes Berg73651ee2008-02-25 16:27:47 +01001082 /*
Johannes Berg51b50fb2009-05-24 16:42:30 +02001083 * cfg80211 validates this (1-2007) and allows setting the AID
1084 * only when creating a new station entry
1085 */
1086 if (params->aid)
1087 sta->sta.aid = params->aid;
1088
1089 /*
Johannes Bergba23d202012-12-27 17:32:09 +01001090 * Some of the following updates would be racy if called on an
1091 * existing station, via ieee80211_change_station(). However,
1092 * all such changes are rejected by cfg80211 except for updates
1093 * changing the supported rates on an existing but not yet used
1094 * TDLS peer.
Johannes Berg73651ee2008-02-25 16:27:47 +01001095 */
1096
Johannes Berg4fd69312007-12-19 02:03:35 +01001097 if (params->listen_interval >= 0)
1098 sta->listen_interval = params->listen_interval;
1099
1100 if (params->supported_rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001101 ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef,
1102 sband, params->supported_rates,
1103 params->supported_rates_len,
1104 &sta->sta.supp_rates[band]);
Johannes Berg4fd69312007-12-19 02:03:35 +01001105 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001106
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001107 if (params->ht_capa)
Ben Greearef96a8422011-11-18 11:32:00 -08001108 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
Johannes Berge1a0c6b2013-02-07 11:47:44 +01001109 params->ht_capa, sta);
Jouni Malinen36aedc902008-08-25 11:58:58 +03001110
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +00001111 if (params->vht_capa)
1112 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
Johannes Berg4a342152013-02-07 11:58:58 +01001113 params->vht_capa, sta);
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +00001114
Marek Kwaczynskib1bce142014-02-03 14:44:44 +01001115 if (params->opmode_notif_used) {
Marek Kwaczynskib1bce142014-02-03 14:44:44 +01001116 /* returned value is only needed for rc update, but the
1117 * rc isn't initialized here yet, so ignore it
1118 */
1119 __ieee80211_vht_handle_opmode(sdata, sta,
1120 params->opmode_notif,
1121 band, false);
1122 }
1123
Javier Cardona9c3990a2011-05-03 16:57:11 -07001124 if (ieee80211_vif_is_mesh(&sdata->vif)) {
Yogesh Ashok Powar4daf50f2011-05-12 09:32:17 -04001125#ifdef CONFIG_MAC80211_MESH
Thomas Pedersen39886b62013-02-13 12:14:19 -08001126 u32 changed = 0;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001127
1128 if (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE) {
Javier Cardona9c3990a2011-05-03 16:57:11 -07001129 switch (params->plink_state) {
Javier Cardona57cf8042011-05-13 10:45:43 -07001130 case NL80211_PLINK_ESTAB:
Marco Porsch1617bab2013-01-07 16:04:49 +01001131 if (sta->plink_state != NL80211_PLINK_ESTAB)
1132 changed = mesh_plink_inc_estab_count(
1133 sdata);
1134 sta->plink_state = params->plink_state;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001135
1136 ieee80211_mps_sta_status_update(sta);
Thomas Pedersen39886b62013-02-13 12:14:19 -08001137 changed |= ieee80211_mps_set_sta_local_pm(sta,
1138 sdata->u.mesh.mshcfg.power_mode);
Marco Porsch1617bab2013-01-07 16:04:49 +01001139 break;
1140 case NL80211_PLINK_LISTEN:
Javier Cardona57cf8042011-05-13 10:45:43 -07001141 case NL80211_PLINK_BLOCKED:
Marco Porsch1617bab2013-01-07 16:04:49 +01001142 case NL80211_PLINK_OPN_SNT:
1143 case NL80211_PLINK_OPN_RCVD:
1144 case NL80211_PLINK_CNF_RCVD:
1145 case NL80211_PLINK_HOLDING:
1146 if (sta->plink_state == NL80211_PLINK_ESTAB)
1147 changed = mesh_plink_dec_estab_count(
1148 sdata);
Javier Cardona9c3990a2011-05-03 16:57:11 -07001149 sta->plink_state = params->plink_state;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001150
1151 ieee80211_mps_sta_status_update(sta);
Marco Porsch446075d2013-10-15 12:29:24 +02001152 changed |= ieee80211_mps_set_sta_local_pm(sta,
1153 NL80211_MESH_POWER_UNKNOWN);
Javier Cardona9c3990a2011-05-03 16:57:11 -07001154 break;
1155 default:
1156 /* nothing */
1157 break;
1158 }
Johannes Berg77ee7c82013-02-15 00:48:33 +01001159 }
1160
1161 switch (params->plink_action) {
1162 case NL80211_PLINK_ACTION_NO_ACTION:
1163 /* nothing */
1164 break;
1165 case NL80211_PLINK_ACTION_OPEN:
1166 changed |= mesh_plink_open(sta);
1167 break;
1168 case NL80211_PLINK_ACTION_BLOCK:
1169 changed |= mesh_plink_block(sta);
1170 break;
Marco Porsch1617bab2013-01-07 16:04:49 +01001171 }
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001172
1173 if (params->local_pm)
Thomas Pedersen39886b62013-02-13 12:14:19 -08001174 changed |=
1175 ieee80211_mps_set_sta_local_pm(sta,
1176 params->local_pm);
Javier Lopez6c751ef2013-11-06 10:04:29 -08001177 ieee80211_mbss_info_change_notify(sdata, changed);
Yogesh Ashok Powar4daf50f2011-05-12 09:32:17 -04001178#endif
Johannes Berg902acc72008-02-23 15:17:19 +01001179 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001180
Arik Nemtsov68885a52014-06-11 17:18:19 +03001181 /* set the STA state after all sta info from usermode has been set */
1182 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1183 ret = sta_apply_auth_flags(local, sta, mask, set);
1184 if (ret)
1185 return ret;
1186 }
1187
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001188 return 0;
Johannes Berg4fd69312007-12-19 02:03:35 +01001189}
1190
1191static int ieee80211_add_station(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001192 const u8 *mac,
1193 struct station_parameters *params)
Johannes Berg4fd69312007-12-19 02:03:35 +01001194{
Johannes Berg14db74b2008-07-29 13:22:52 +02001195 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +01001196 struct sta_info *sta;
1197 struct ieee80211_sub_if_data *sdata;
Johannes Berg73651ee2008-02-25 16:27:47 +01001198 int err;
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001199 int layer2_update;
Johannes Berg4fd69312007-12-19 02:03:35 +01001200
Johannes Berg4fd69312007-12-19 02:03:35 +01001201 if (params->vlan) {
1202 sdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1203
Johannes Berg05c914f2008-09-11 00:01:58 +02001204 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
1205 sdata->vif.type != NL80211_IFTYPE_AP)
Johannes Berg4fd69312007-12-19 02:03:35 +01001206 return -EINVAL;
1207 } else
1208 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1209
Joe Perchesb203ca32012-05-08 18:56:52 +00001210 if (ether_addr_equal(mac, sdata->vif.addr))
Johannes Berg03e44972008-02-27 09:56:40 +01001211 return -EINVAL;
1212
1213 if (is_multicast_ether_addr(mac))
1214 return -EINVAL;
1215
1216 sta = sta_info_alloc(sdata, mac, GFP_KERNEL);
Johannes Berg73651ee2008-02-25 16:27:47 +01001217 if (!sta)
1218 return -ENOMEM;
Johannes Berg4fd69312007-12-19 02:03:35 +01001219
Johannes Bergd582cff2012-10-26 17:53:44 +02001220 /*
1221 * defaults -- if userspace wants something else we'll
1222 * change it accordingly in sta_apply_parameters()
1223 */
Johannes Berg77ee7c82013-02-15 00:48:33 +01001224 if (!(params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER))) {
1225 sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
1226 sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC);
Arik Nemtsov0c4972c2014-05-01 10:17:27 +03001227 } else {
1228 sta->sta.tdls = true;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001229 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001230
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001231 err = sta_apply_parameters(local, sta, params);
1232 if (err) {
1233 sta_info_free(local, sta);
1234 return err;
1235 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001236
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001237 /*
Johannes Berg77ee7c82013-02-15 00:48:33 +01001238 * for TDLS, rate control should be initialized only when
1239 * rates are known and station is marked authorized
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001240 */
1241 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER))
1242 rate_control_rate_init(sta);
Johannes Berg4fd69312007-12-19 02:03:35 +01001243
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001244 layer2_update = sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1245 sdata->vif.type == NL80211_IFTYPE_AP;
1246
Johannes Berg34e89502010-02-03 13:59:58 +01001247 err = sta_info_insert_rcu(sta);
Johannes Berg73651ee2008-02-25 16:27:47 +01001248 if (err) {
Johannes Berg73651ee2008-02-25 16:27:47 +01001249 rcu_read_unlock();
1250 return err;
1251 }
1252
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001253 if (layer2_update)
Johannes Berg73651ee2008-02-25 16:27:47 +01001254 ieee80211_send_layer2_update(sta);
1255
1256 rcu_read_unlock();
1257
Johannes Berg4fd69312007-12-19 02:03:35 +01001258 return 0;
1259}
1260
1261static int ieee80211_del_station(struct wiphy *wiphy, struct net_device *dev,
Jouni Malinen89c771e2014-10-10 20:52:40 +03001262 struct station_del_parameters *params)
Johannes Berg4fd69312007-12-19 02:03:35 +01001263{
Johannes Berg14db74b2008-07-29 13:22:52 +02001264 struct ieee80211_sub_if_data *sdata;
Johannes Berg4fd69312007-12-19 02:03:35 +01001265
Johannes Berg14db74b2008-07-29 13:22:52 +02001266 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1267
Jouni Malinen89c771e2014-10-10 20:52:40 +03001268 if (params->mac)
1269 return sta_info_destroy_addr_bss(sdata, params->mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001270
Johannes Bergb998e8b2012-12-13 23:07:46 +01001271 sta_info_flush(sdata);
Johannes Berg4fd69312007-12-19 02:03:35 +01001272 return 0;
1273}
1274
1275static int ieee80211_change_station(struct wiphy *wiphy,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001276 struct net_device *dev, const u8 *mac,
Johannes Berg4fd69312007-12-19 02:03:35 +01001277 struct station_parameters *params)
1278{
Johannes Bergabe60632009-11-25 17:46:18 +01001279 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg14db74b2008-07-29 13:22:52 +02001280 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +01001281 struct sta_info *sta;
1282 struct ieee80211_sub_if_data *vlansdata;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001283 enum cfg80211_station_type statype;
Eliad Peller35b88622011-12-29 14:41:39 +02001284 int err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001285
Johannes Berg87be1e12011-12-14 12:20:29 +01001286 mutex_lock(&local->sta_mtx);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001287
Felix Fietkau0e5ded52010-01-08 18:10:58 +01001288 sta = sta_info_get_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001289 if (!sta) {
Johannes Berg77ee7c82013-02-15 00:48:33 +01001290 err = -ENOENT;
1291 goto out_err;
Johannes Berg98dd6a52008-04-10 15:36:09 +02001292 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001293
Johannes Berg77ee7c82013-02-15 00:48:33 +01001294 switch (sdata->vif.type) {
1295 case NL80211_IFTYPE_MESH_POINT:
Thomas Pedersena6dad6a2013-03-04 13:06:12 -08001296 if (sdata->u.mesh.user_mpm)
Thomas Pederseneef941e2013-03-04 13:06:11 -08001297 statype = CFG80211_STA_MESH_PEER_USER;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001298 else
Thomas Pederseneef941e2013-03-04 13:06:11 -08001299 statype = CFG80211_STA_MESH_PEER_KERNEL;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001300 break;
1301 case NL80211_IFTYPE_ADHOC:
1302 statype = CFG80211_STA_IBSS;
1303 break;
1304 case NL80211_IFTYPE_STATION:
1305 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1306 statype = CFG80211_STA_AP_STA;
1307 break;
1308 }
1309 if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
1310 statype = CFG80211_STA_TDLS_PEER_ACTIVE;
1311 else
1312 statype = CFG80211_STA_TDLS_PEER_SETUP;
1313 break;
1314 case NL80211_IFTYPE_AP:
1315 case NL80211_IFTYPE_AP_VLAN:
1316 statype = CFG80211_STA_AP_CLIENT;
1317 break;
1318 default:
1319 err = -EOPNOTSUPP;
1320 goto out_err;
Johannes Bergbdd90d52011-12-14 12:20:27 +01001321 }
1322
Johannes Berg77ee7c82013-02-15 00:48:33 +01001323 err = cfg80211_check_station_change(wiphy, params, statype);
1324 if (err)
1325 goto out_err;
1326
Johannes Bergd0709a62008-02-25 16:27:46 +01001327 if (params->vlan && params->vlan != sta->sdata->dev) {
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001328 bool prev_4addr = false;
1329 bool new_4addr = false;
1330
Johannes Berg4fd69312007-12-19 02:03:35 +01001331 vlansdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1332
Johannes Berg9bc383d2009-11-19 11:55:19 +01001333 if (params->vlan->ieee80211_ptr->use_4addr) {
Johannes Berg33054432009-11-20 10:09:14 +01001334 if (vlansdata->u.vlan.sta) {
Johannes Berg77ee7c82013-02-15 00:48:33 +01001335 err = -EBUSY;
1336 goto out_err;
Johannes Berg33054432009-11-20 10:09:14 +01001337 }
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001338
Eric Dumazetcf778b02012-01-12 04:41:32 +00001339 rcu_assign_pointer(vlansdata->u.vlan.sta, sta);
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001340 new_4addr = true;
1341 }
1342
1343 if (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1344 sta->sdata->u.vlan.sta) {
Monam Agarwal0c2bef462014-03-24 00:51:43 +05301345 RCU_INIT_POINTER(sta->sdata->u.vlan.sta, NULL);
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001346 prev_4addr = true;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001347 }
1348
Johannes Berg14db74b2008-07-29 13:22:52 +02001349 sta->sdata = vlansdata;
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001350
1351 if (sta->sta_state == IEEE80211_STA_AUTHORIZED &&
1352 prev_4addr != new_4addr) {
1353 if (new_4addr)
1354 atomic_dec(&sta->sdata->bss->num_mcast_sta);
1355 else
1356 atomic_inc(&sta->sdata->bss->num_mcast_sta);
1357 }
1358
Johannes Berg4fd69312007-12-19 02:03:35 +01001359 ieee80211_send_layer2_update(sta);
1360 }
1361
Eliad Peller35b88622011-12-29 14:41:39 +02001362 err = sta_apply_parameters(local, sta, params);
Johannes Berg77ee7c82013-02-15 00:48:33 +01001363 if (err)
1364 goto out_err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001365
Johannes Berg77ee7c82013-02-15 00:48:33 +01001366 /* When peer becomes authorized, init rate control as well */
1367 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER) &&
1368 test_sta_flag(sta, WLAN_STA_AUTHORIZED))
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001369 rate_control_rate_init(sta);
1370
Johannes Berg87be1e12011-12-14 12:20:29 +01001371 mutex_unlock(&local->sta_mtx);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001372
Emmanuel Grumbach687da132013-10-01 16:45:43 +03001373 if ((sdata->vif.type == NL80211_IFTYPE_AP ||
1374 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
1375 sta->known_smps_mode != sta->sdata->bss->req_smps &&
1376 test_sta_flag(sta, WLAN_STA_AUTHORIZED) &&
1377 sta_info_tx_streams(sta) != 1) {
1378 ht_dbg(sta->sdata,
1379 "%pM just authorized and MIMO capable - update SMPS\n",
1380 sta->sta.addr);
1381 ieee80211_send_smps_action(sta->sdata,
1382 sta->sdata->bss->req_smps,
1383 sta->sta.addr,
1384 sta->sdata->vif.bss_conf.bssid);
1385 }
1386
Jason Young808118c2011-03-10 16:43:19 -08001387 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
Eliad Pellerab095872012-07-27 12:33:22 +03001388 params->sta_flags_mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
Jason Young808118c2011-03-10 16:43:19 -08001389 ieee80211_recalc_ps(local, -1);
Eliad Pellerab095872012-07-27 12:33:22 +03001390 ieee80211_recalc_ps_vif(sdata);
1391 }
Johannes Berg77ee7c82013-02-15 00:48:33 +01001392
Johannes Berg4fd69312007-12-19 02:03:35 +01001393 return 0;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001394out_err:
1395 mutex_unlock(&local->sta_mtx);
1396 return err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001397}
1398
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001399#ifdef CONFIG_MAC80211_MESH
1400static int ieee80211_add_mpath(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001401 const u8 *dst, const u8 *next_hop)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001402{
Johannes Berg14db74b2008-07-29 13:22:52 +02001403 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001404 struct mesh_path *mpath;
1405 struct sta_info *sta;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001406
Johannes Berg14db74b2008-07-29 13:22:52 +02001407 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1408
Johannes Bergd0709a62008-02-25 16:27:46 +01001409 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +01001410 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +01001411 if (!sta) {
1412 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001413 return -ENOENT;
Johannes Bergd0709a62008-02-25 16:27:46 +01001414 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001415
Bob Copelandae76eef2013-03-29 09:38:39 -04001416 mpath = mesh_path_add(sdata, dst);
1417 if (IS_ERR(mpath)) {
Johannes Bergd0709a62008-02-25 16:27:46 +01001418 rcu_read_unlock();
Bob Copelandae76eef2013-03-29 09:38:39 -04001419 return PTR_ERR(mpath);
Johannes Bergd0709a62008-02-25 16:27:46 +01001420 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001421
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001422 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +01001423
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001424 rcu_read_unlock();
1425 return 0;
1426}
1427
1428static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001429 const u8 *dst)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001430{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001431 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001432
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001433 if (dst)
Johannes Bergbf7cd942013-02-15 14:40:31 +01001434 return mesh_path_del(sdata, dst);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001435
Javier Cardonaece1a2e2011-08-29 13:23:04 -07001436 mesh_path_flush_by_iface(sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001437 return 0;
1438}
1439
Johannes Berg3b3a0162014-05-19 17:19:31 +02001440static int ieee80211_change_mpath(struct wiphy *wiphy, struct net_device *dev,
1441 const u8 *dst, const u8 *next_hop)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001442{
Johannes Berg14db74b2008-07-29 13:22:52 +02001443 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001444 struct mesh_path *mpath;
1445 struct sta_info *sta;
1446
Johannes Berg14db74b2008-07-29 13:22:52 +02001447 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1448
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001449 rcu_read_lock();
Johannes Bergd0709a62008-02-25 16:27:46 +01001450
Johannes Bergabe60632009-11-25 17:46:18 +01001451 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +01001452 if (!sta) {
1453 rcu_read_unlock();
1454 return -ENOENT;
1455 }
1456
Johannes Bergbf7cd942013-02-15 14:40:31 +01001457 mpath = mesh_path_lookup(sdata, dst);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001458 if (!mpath) {
1459 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001460 return -ENOENT;
1461 }
1462
1463 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +01001464
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001465 rcu_read_unlock();
1466 return 0;
1467}
1468
1469static void mpath_set_pinfo(struct mesh_path *mpath, u8 *next_hop,
1470 struct mpath_info *pinfo)
1471{
Johannes Berga3836e02011-05-12 15:11:37 +02001472 struct sta_info *next_hop_sta = rcu_dereference(mpath->next_hop);
1473
1474 if (next_hop_sta)
1475 memcpy(next_hop, next_hop_sta->sta.addr, ETH_ALEN);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001476 else
1477 memset(next_hop, 0, ETH_ALEN);
1478
LEO Airwarosu Yoichi Shinoda7ce8c7a2012-08-27 22:28:16 +09001479 memset(pinfo, 0, sizeof(*pinfo));
1480
Johannes Bergf5ea9122009-08-07 16:17:38 +02001481 pinfo->generation = mesh_paths_generation;
1482
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001483 pinfo->filled = MPATH_INFO_FRAME_QLEN |
Rui Paulod19b3bf2009-11-09 23:46:55 +00001484 MPATH_INFO_SN |
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001485 MPATH_INFO_METRIC |
1486 MPATH_INFO_EXPTIME |
1487 MPATH_INFO_DISCOVERY_TIMEOUT |
1488 MPATH_INFO_DISCOVERY_RETRIES |
1489 MPATH_INFO_FLAGS;
1490
1491 pinfo->frame_qlen = mpath->frame_queue.qlen;
Rui Paulod19b3bf2009-11-09 23:46:55 +00001492 pinfo->sn = mpath->sn;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001493 pinfo->metric = mpath->metric;
1494 if (time_before(jiffies, mpath->exp_time))
1495 pinfo->exptime = jiffies_to_msecs(mpath->exp_time - jiffies);
1496 pinfo->discovery_timeout =
1497 jiffies_to_msecs(mpath->discovery_timeout);
1498 pinfo->discovery_retries = mpath->discovery_retries;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001499 if (mpath->flags & MESH_PATH_ACTIVE)
1500 pinfo->flags |= NL80211_MPATH_FLAG_ACTIVE;
1501 if (mpath->flags & MESH_PATH_RESOLVING)
1502 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
Rui Paulod19b3bf2009-11-09 23:46:55 +00001503 if (mpath->flags & MESH_PATH_SN_VALID)
1504 pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001505 if (mpath->flags & MESH_PATH_FIXED)
1506 pinfo->flags |= NL80211_MPATH_FLAG_FIXED;
LEO Airwarosu Yoichi Shinoda7ce8c7a2012-08-27 22:28:16 +09001507 if (mpath->flags & MESH_PATH_RESOLVED)
1508 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVED;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001509}
1510
1511static int ieee80211_get_mpath(struct wiphy *wiphy, struct net_device *dev,
1512 u8 *dst, u8 *next_hop, struct mpath_info *pinfo)
1513
1514{
Johannes Berg14db74b2008-07-29 13:22:52 +02001515 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001516 struct mesh_path *mpath;
1517
Johannes Berg14db74b2008-07-29 13:22:52 +02001518 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1519
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001520 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01001521 mpath = mesh_path_lookup(sdata, dst);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001522 if (!mpath) {
1523 rcu_read_unlock();
1524 return -ENOENT;
1525 }
1526 memcpy(dst, mpath->dst, ETH_ALEN);
1527 mpath_set_pinfo(mpath, next_hop, pinfo);
1528 rcu_read_unlock();
1529 return 0;
1530}
1531
1532static int ieee80211_dump_mpath(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001533 int idx, u8 *dst, u8 *next_hop,
1534 struct mpath_info *pinfo)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001535{
Johannes Berg14db74b2008-07-29 13:22:52 +02001536 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001537 struct mesh_path *mpath;
1538
Johannes Berg14db74b2008-07-29 13:22:52 +02001539 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1540
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001541 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01001542 mpath = mesh_path_lookup_by_idx(sdata, idx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001543 if (!mpath) {
1544 rcu_read_unlock();
1545 return -ENOENT;
1546 }
1547 memcpy(dst, mpath->dst, ETH_ALEN);
1548 mpath_set_pinfo(mpath, next_hop, pinfo);
1549 rcu_read_unlock();
1550 return 0;
1551}
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001552
Henning Roggea2db2ed2014-09-12 08:58:50 +02001553static void mpp_set_pinfo(struct mesh_path *mpath, u8 *mpp,
1554 struct mpath_info *pinfo)
1555{
1556 memset(pinfo, 0, sizeof(*pinfo));
1557 memcpy(mpp, mpath->mpp, ETH_ALEN);
1558
1559 pinfo->generation = mpp_paths_generation;
1560}
1561
1562static int ieee80211_get_mpp(struct wiphy *wiphy, struct net_device *dev,
1563 u8 *dst, u8 *mpp, struct mpath_info *pinfo)
1564
1565{
1566 struct ieee80211_sub_if_data *sdata;
1567 struct mesh_path *mpath;
1568
1569 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1570
1571 rcu_read_lock();
1572 mpath = mpp_path_lookup(sdata, dst);
1573 if (!mpath) {
1574 rcu_read_unlock();
1575 return -ENOENT;
1576 }
1577 memcpy(dst, mpath->dst, ETH_ALEN);
1578 mpp_set_pinfo(mpath, mpp, pinfo);
1579 rcu_read_unlock();
1580 return 0;
1581}
1582
1583static int ieee80211_dump_mpp(struct wiphy *wiphy, struct net_device *dev,
1584 int idx, u8 *dst, u8 *mpp,
1585 struct mpath_info *pinfo)
1586{
1587 struct ieee80211_sub_if_data *sdata;
1588 struct mesh_path *mpath;
1589
1590 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1591
1592 rcu_read_lock();
1593 mpath = mpp_path_lookup_by_idx(sdata, idx);
1594 if (!mpath) {
1595 rcu_read_unlock();
1596 return -ENOENT;
1597 }
1598 memcpy(dst, mpath->dst, ETH_ALEN);
1599 mpp_set_pinfo(mpath, mpp, pinfo);
1600 rcu_read_unlock();
1601 return 0;
1602}
1603
Javier Cardona24bdd9f2010-12-16 17:37:48 -08001604static int ieee80211_get_mesh_config(struct wiphy *wiphy,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001605 struct net_device *dev,
1606 struct mesh_config *conf)
1607{
1608 struct ieee80211_sub_if_data *sdata;
1609 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1610
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001611 memcpy(conf, &(sdata->u.mesh.mshcfg), sizeof(struct mesh_config));
1612 return 0;
1613}
1614
1615static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm, u32 mask)
1616{
1617 return (mask >> (parm-1)) & 0x1;
1618}
1619
Javier Cardonac80d5452010-12-16 17:37:49 -08001620static int copy_mesh_setup(struct ieee80211_if_mesh *ifmsh,
1621 const struct mesh_setup *setup)
1622{
1623 u8 *new_ie;
1624 const u8 *old_ie;
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001625 struct ieee80211_sub_if_data *sdata = container_of(ifmsh,
1626 struct ieee80211_sub_if_data, u.mesh);
Javier Cardonac80d5452010-12-16 17:37:49 -08001627
Javier Cardona581a8b02011-04-07 15:08:27 -07001628 /* allocate information elements */
Javier Cardonac80d5452010-12-16 17:37:49 -08001629 new_ie = NULL;
Javier Cardona581a8b02011-04-07 15:08:27 -07001630 old_ie = ifmsh->ie;
Javier Cardonac80d5452010-12-16 17:37:49 -08001631
Javier Cardona581a8b02011-04-07 15:08:27 -07001632 if (setup->ie_len) {
1633 new_ie = kmemdup(setup->ie, setup->ie_len,
Javier Cardonac80d5452010-12-16 17:37:49 -08001634 GFP_KERNEL);
1635 if (!new_ie)
1636 return -ENOMEM;
1637 }
Javier Cardona581a8b02011-04-07 15:08:27 -07001638 ifmsh->ie_len = setup->ie_len;
1639 ifmsh->ie = new_ie;
1640 kfree(old_ie);
Javier Cardonac80d5452010-12-16 17:37:49 -08001641
1642 /* now copy the rest of the setup parameters */
1643 ifmsh->mesh_id_len = setup->mesh_id_len;
1644 memcpy(ifmsh->mesh_id, setup->mesh_id, ifmsh->mesh_id_len);
Javier Cardonad299a1f2012-03-31 11:31:33 -07001645 ifmsh->mesh_sp_id = setup->sync_method;
Javier Cardonac80d5452010-12-16 17:37:49 -08001646 ifmsh->mesh_pp_id = setup->path_sel_proto;
1647 ifmsh->mesh_pm_id = setup->path_metric;
Thomas Pedersena6dad6a2013-03-04 13:06:12 -08001648 ifmsh->user_mpm = setup->user_mpm;
Colleen Twitty0d4261a2013-05-08 11:46:00 -07001649 ifmsh->mesh_auth_id = setup->auth_id;
Javier Cardonab130e5c2011-05-03 16:57:07 -07001650 ifmsh->security = IEEE80211_MESH_SEC_NONE;
1651 if (setup->is_authenticated)
1652 ifmsh->security |= IEEE80211_MESH_SEC_AUTHED;
1653 if (setup->is_secure)
1654 ifmsh->security |= IEEE80211_MESH_SEC_SECURED;
Javier Cardonac80d5452010-12-16 17:37:49 -08001655
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001656 /* mcast rate setting in Mesh Node */
1657 memcpy(sdata->vif.bss_conf.mcast_rate, setup->mcast_rate,
1658 sizeof(setup->mcast_rate));
Ashok Nagarajanffb3cf32013-06-03 10:33:36 -07001659 sdata->vif.bss_conf.basic_rates = setup->basic_rates;
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001660
Marco Porsch9bdbf042013-01-07 16:04:51 +01001661 sdata->vif.bss_conf.beacon_int = setup->beacon_interval;
1662 sdata->vif.bss_conf.dtim_period = setup->dtim_period;
1663
Javier Cardonac80d5452010-12-16 17:37:49 -08001664 return 0;
1665}
1666
Javier Cardona24bdd9f2010-12-16 17:37:48 -08001667static int ieee80211_update_mesh_config(struct wiphy *wiphy,
Johannes Berg29cbe682010-12-03 09:20:44 +01001668 struct net_device *dev, u32 mask,
1669 const struct mesh_config *nconf)
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001670{
1671 struct mesh_config *conf;
1672 struct ieee80211_sub_if_data *sdata;
Rui Paulo63c57232009-11-09 23:46:57 +00001673 struct ieee80211_if_mesh *ifmsh;
1674
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001675 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Rui Paulo63c57232009-11-09 23:46:57 +00001676 ifmsh = &sdata->u.mesh;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001677
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001678 /* Set the config options which we are interested in setting */
1679 conf = &(sdata->u.mesh.mshcfg);
1680 if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT, mask))
1681 conf->dot11MeshRetryTimeout = nconf->dot11MeshRetryTimeout;
1682 if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT, mask))
1683 conf->dot11MeshConfirmTimeout = nconf->dot11MeshConfirmTimeout;
1684 if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT, mask))
1685 conf->dot11MeshHoldingTimeout = nconf->dot11MeshHoldingTimeout;
1686 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS, mask))
1687 conf->dot11MeshMaxPeerLinks = nconf->dot11MeshMaxPeerLinks;
1688 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES, mask))
1689 conf->dot11MeshMaxRetries = nconf->dot11MeshMaxRetries;
1690 if (_chg_mesh_attr(NL80211_MESHCONF_TTL, mask))
1691 conf->dot11MeshTTL = nconf->dot11MeshTTL;
Javier Cardona45904f22010-12-03 09:20:40 +01001692 if (_chg_mesh_attr(NL80211_MESHCONF_ELEMENT_TTL, mask))
Chun-Yeow Yeoh58886a92012-06-15 00:23:53 +08001693 conf->element_ttl = nconf->element_ttl;
Thomas Pedersen146bb482013-03-04 13:06:14 -08001694 if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS, mask)) {
1695 if (ifmsh->user_mpm)
1696 return -EBUSY;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001697 conf->auto_open_plinks = nconf->auto_open_plinks;
Thomas Pedersen146bb482013-03-04 13:06:14 -08001698 }
Javier Cardonad299a1f2012-03-31 11:31:33 -07001699 if (_chg_mesh_attr(NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR, mask))
1700 conf->dot11MeshNbrOffsetMaxNeighbor =
1701 nconf->dot11MeshNbrOffsetMaxNeighbor;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001702 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, mask))
1703 conf->dot11MeshHWMPmaxPREQretries =
1704 nconf->dot11MeshHWMPmaxPREQretries;
1705 if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME, mask))
1706 conf->path_refresh_time = nconf->path_refresh_time;
1707 if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, mask))
1708 conf->min_discovery_timeout = nconf->min_discovery_timeout;
1709 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, mask))
1710 conf->dot11MeshHWMPactivePathTimeout =
1711 nconf->dot11MeshHWMPactivePathTimeout;
1712 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, mask))
1713 conf->dot11MeshHWMPpreqMinInterval =
1714 nconf->dot11MeshHWMPpreqMinInterval;
Thomas Pedersendca7e942011-11-24 17:15:24 -08001715 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL, mask))
1716 conf->dot11MeshHWMPperrMinInterval =
1717 nconf->dot11MeshHWMPperrMinInterval;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001718 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
1719 mask))
1720 conf->dot11MeshHWMPnetDiameterTraversalTime =
1721 nconf->dot11MeshHWMPnetDiameterTraversalTime;
Rui Paulo63c57232009-11-09 23:46:57 +00001722 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask)) {
1723 conf->dot11MeshHWMPRootMode = nconf->dot11MeshHWMPRootMode;
1724 ieee80211_mesh_root_setup(ifmsh);
1725 }
Javier Cardona16dd7262011-08-09 16:45:11 -07001726 if (_chg_mesh_attr(NL80211_MESHCONF_GATE_ANNOUNCEMENTS, mask)) {
Thomas Pedersenc61336612011-08-25 10:36:14 -07001727 /* our current gate announcement implementation rides on root
1728 * announcements, so require this ifmsh to also be a root node
1729 * */
1730 if (nconf->dot11MeshGateAnnouncementProtocol &&
Chun-Yeow Yeohdbb912c2012-06-14 02:06:09 +08001731 !(conf->dot11MeshHWMPRootMode > IEEE80211_ROOTMODE_ROOT)) {
1732 conf->dot11MeshHWMPRootMode = IEEE80211_PROACTIVE_RANN;
Thomas Pedersenc61336612011-08-25 10:36:14 -07001733 ieee80211_mesh_root_setup(ifmsh);
1734 }
Javier Cardona16dd7262011-08-09 16:45:11 -07001735 conf->dot11MeshGateAnnouncementProtocol =
1736 nconf->dot11MeshGateAnnouncementProtocol;
1737 }
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08001738 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_RANN_INTERVAL, mask))
Javier Cardona0507e152011-08-09 16:45:10 -07001739 conf->dot11MeshHWMPRannInterval =
1740 nconf->dot11MeshHWMPRannInterval;
Chun-Yeow Yeoh94f90652012-01-21 01:02:16 +08001741 if (_chg_mesh_attr(NL80211_MESHCONF_FORWARDING, mask))
1742 conf->dot11MeshForwarding = nconf->dot11MeshForwarding;
Ashok Nagarajan55335132012-02-28 17:04:08 -08001743 if (_chg_mesh_attr(NL80211_MESHCONF_RSSI_THRESHOLD, mask)) {
1744 /* our RSSI threshold implementation is supported only for
1745 * devices that report signal in dBm.
1746 */
1747 if (!(sdata->local->hw.flags & IEEE80211_HW_SIGNAL_DBM))
1748 return -ENOTSUPP;
1749 conf->rssi_threshold = nconf->rssi_threshold;
1750 }
Ashok Nagarajan70c33ea2012-04-30 14:20:32 -07001751 if (_chg_mesh_attr(NL80211_MESHCONF_HT_OPMODE, mask)) {
1752 conf->ht_opmode = nconf->ht_opmode;
1753 sdata->vif.bss_conf.ht_operation_mode = nconf->ht_opmode;
1754 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_HT);
1755 }
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08001756 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT, mask))
1757 conf->dot11MeshHWMPactivePathToRootTimeout =
1758 nconf->dot11MeshHWMPactivePathToRootTimeout;
1759 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOT_INTERVAL, mask))
1760 conf->dot11MeshHWMProotInterval =
1761 nconf->dot11MeshHWMProotInterval;
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08001762 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL, mask))
1763 conf->dot11MeshHWMPconfirmationInterval =
1764 nconf->dot11MeshHWMPconfirmationInterval;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001765 if (_chg_mesh_attr(NL80211_MESHCONF_POWER_MODE, mask)) {
1766 conf->power_mode = nconf->power_mode;
1767 ieee80211_mps_local_status_update(sdata);
1768 }
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001769 if (_chg_mesh_attr(NL80211_MESHCONF_AWAKE_WINDOW, mask))
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001770 conf->dot11MeshAwakeWindowDuration =
1771 nconf->dot11MeshAwakeWindowDuration;
Colleen Twitty66de6712013-06-03 09:53:40 -07001772 if (_chg_mesh_attr(NL80211_MESHCONF_PLINK_TIMEOUT, mask))
1773 conf->plink_timeout = nconf->plink_timeout;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001774 ieee80211_mbss_info_change_notify(sdata, BSS_CHANGED_BEACON);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001775 return 0;
1776}
1777
Johannes Berg29cbe682010-12-03 09:20:44 +01001778static int ieee80211_join_mesh(struct wiphy *wiphy, struct net_device *dev,
1779 const struct mesh_config *conf,
1780 const struct mesh_setup *setup)
1781{
1782 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1783 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Javier Cardonac80d5452010-12-16 17:37:49 -08001784 int err;
Johannes Berg29cbe682010-12-03 09:20:44 +01001785
Javier Cardonac80d5452010-12-16 17:37:49 -08001786 memcpy(&ifmsh->mshcfg, conf, sizeof(struct mesh_config));
1787 err = copy_mesh_setup(ifmsh, setup);
1788 if (err)
1789 return err;
Johannes Bergcc1d2802012-05-16 23:50:20 +02001790
Johannes Berg04ecd252012-09-11 14:34:12 +02001791 /* can mesh use other SMPS modes? */
1792 sdata->smps_mode = IEEE80211_SMPS_OFF;
1793 sdata->needed_rx_chains = sdata->local->rx_chains;
1794
Johannes Berg34a37402013-12-18 09:43:33 +01001795 mutex_lock(&sdata->local->mtx);
Johannes Berg4bf88532012-11-09 11:39:59 +01001796 err = ieee80211_vif_use_channel(sdata, &setup->chandef,
Johannes Berg55de9082012-07-26 17:24:39 +02001797 IEEE80211_CHANCTX_SHARED);
Johannes Berg34a37402013-12-18 09:43:33 +01001798 mutex_unlock(&sdata->local->mtx);
Johannes Bergcc1d2802012-05-16 23:50:20 +02001799 if (err)
1800 return err;
1801
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001802 return ieee80211_start_mesh(sdata);
Johannes Berg29cbe682010-12-03 09:20:44 +01001803}
1804
1805static int ieee80211_leave_mesh(struct wiphy *wiphy, struct net_device *dev)
1806{
1807 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1808
1809 ieee80211_stop_mesh(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +01001810 mutex_lock(&sdata->local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001811 ieee80211_vif_release_channel(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +01001812 mutex_unlock(&sdata->local->mtx);
Johannes Berg29cbe682010-12-03 09:20:44 +01001813
1814 return 0;
1815}
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001816#endif
1817
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001818static int ieee80211_change_bss(struct wiphy *wiphy,
1819 struct net_device *dev,
1820 struct bss_parameters *params)
1821{
Johannes Berg55de9082012-07-26 17:24:39 +02001822 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1823 enum ieee80211_band band;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001824 u32 changed = 0;
1825
Simon Wunderlich7ca133b2013-11-21 18:19:50 +01001826 if (!sdata_dereference(sdata->u.ap.beacon, sdata))
Johannes Berg55de9082012-07-26 17:24:39 +02001827 return -ENOENT;
1828
1829 band = ieee80211_get_sdata_band(sdata);
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001830
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001831 if (params->use_cts_prot >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001832 sdata->vif.bss_conf.use_cts_prot = params->use_cts_prot;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001833 changed |= BSS_CHANGED_ERP_CTS_PROT;
1834 }
1835 if (params->use_short_preamble >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001836 sdata->vif.bss_conf.use_short_preamble =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001837 params->use_short_preamble;
1838 changed |= BSS_CHANGED_ERP_PREAMBLE;
1839 }
Felix Fietkau43d35342010-01-15 03:00:48 +01001840
1841 if (!sdata->vif.bss_conf.use_short_slot &&
Johannes Berg55de9082012-07-26 17:24:39 +02001842 band == IEEE80211_BAND_5GHZ) {
Felix Fietkau43d35342010-01-15 03:00:48 +01001843 sdata->vif.bss_conf.use_short_slot = true;
1844 changed |= BSS_CHANGED_ERP_SLOT;
1845 }
1846
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001847 if (params->use_short_slot_time >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001848 sdata->vif.bss_conf.use_short_slot =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001849 params->use_short_slot_time;
1850 changed |= BSS_CHANGED_ERP_SLOT;
1851 }
1852
Jouni Malinen90c97a02008-10-30 16:59:22 +02001853 if (params->basic_rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001854 ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef,
1855 wiphy->bands[band],
1856 params->basic_rates,
1857 params->basic_rates_len,
1858 &sdata->vif.bss_conf.basic_rates);
Jouni Malinen90c97a02008-10-30 16:59:22 +02001859 changed |= BSS_CHANGED_BASIC_RATES;
1860 }
1861
Felix Fietkau7b7b5e52010-04-27 01:23:36 +02001862 if (params->ap_isolate >= 0) {
1863 if (params->ap_isolate)
1864 sdata->flags |= IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1865 else
1866 sdata->flags &= ~IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1867 }
1868
Helmut Schaa80d7e402010-11-19 12:40:26 +01001869 if (params->ht_opmode >= 0) {
1870 sdata->vif.bss_conf.ht_operation_mode =
1871 (u16) params->ht_opmode;
1872 changed |= BSS_CHANGED_HT;
1873 }
1874
Johannes Berg339afbf2012-11-14 15:21:17 +01001875 if (params->p2p_ctwindow >= 0) {
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001876 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &=
1877 ~IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
1878 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
1879 params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
Johannes Berg339afbf2012-11-14 15:21:17 +01001880 changed |= BSS_CHANGED_P2P_PS;
1881 }
1882
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001883 if (params->p2p_opp_ps > 0) {
1884 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
1885 IEEE80211_P2P_OPPPS_ENABLE_BIT;
1886 changed |= BSS_CHANGED_P2P_PS;
1887 } else if (params->p2p_opp_ps == 0) {
1888 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &=
1889 ~IEEE80211_P2P_OPPPS_ENABLE_BIT;
Johannes Berg339afbf2012-11-14 15:21:17 +01001890 changed |= BSS_CHANGED_P2P_PS;
1891 }
1892
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001893 ieee80211_bss_info_change_notify(sdata, changed);
1894
1895 return 0;
1896}
1897
Jouni Malinen31888482008-10-30 16:59:24 +02001898static int ieee80211_set_txq_params(struct wiphy *wiphy,
Eliad Pellerf70f01c2011-09-25 20:06:53 +03001899 struct net_device *dev,
Jouni Malinen31888482008-10-30 16:59:24 +02001900 struct ieee80211_txq_params *params)
1901{
1902 struct ieee80211_local *local = wiphy_priv(wiphy);
Eliad Pellerf6f3def2011-09-25 20:06:54 +03001903 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Jouni Malinen31888482008-10-30 16:59:24 +02001904 struct ieee80211_tx_queue_params p;
1905
1906 if (!local->ops->conf_tx)
1907 return -EOPNOTSUPP;
1908
Johannes Berg54bcbc62012-03-28 11:04:25 +02001909 if (local->hw.queues < IEEE80211_NUM_ACS)
1910 return -EOPNOTSUPP;
1911
Jouni Malinen31888482008-10-30 16:59:24 +02001912 memset(&p, 0, sizeof(p));
1913 p.aifs = params->aifs;
1914 p.cw_max = params->cwmax;
1915 p.cw_min = params->cwmin;
1916 p.txop = params->txop;
Kalle Valoab133152010-01-12 10:42:31 +02001917
1918 /*
1919 * Setting tx queue params disables u-apsd because it's only
1920 * called in master mode.
1921 */
1922 p.uapsd = false;
1923
Johannes Berga3304b02012-03-28 11:04:24 +02001924 sdata->tx_conf[params->ac] = p;
1925 if (drv_conf_tx(local, sdata, params->ac, &p)) {
Joe Perches0fb9a9e2010-08-20 16:25:38 -07001926 wiphy_debug(local->hw.wiphy,
Johannes Berga3304b02012-03-28 11:04:24 +02001927 "failed to set TX queue parameters for AC %d\n",
1928 params->ac);
Jouni Malinen31888482008-10-30 16:59:24 +02001929 return -EINVAL;
1930 }
1931
Johannes Berg7d257452012-07-06 17:37:43 +02001932 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_QOS);
1933
Jouni Malinen31888482008-10-30 16:59:24 +02001934 return 0;
1935}
1936
Bob Copeland665af4f2009-01-19 11:20:53 -05001937#ifdef CONFIG_PM
Johannes Bergff1b6e62011-05-04 15:37:28 +02001938static int ieee80211_suspend(struct wiphy *wiphy,
1939 struct cfg80211_wowlan *wowlan)
Bob Copeland665af4f2009-01-19 11:20:53 -05001940{
Johannes Bergeecc4802011-05-04 15:37:29 +02001941 return __ieee80211_suspend(wiphy_priv(wiphy), wowlan);
Bob Copeland665af4f2009-01-19 11:20:53 -05001942}
1943
1944static int ieee80211_resume(struct wiphy *wiphy)
1945{
1946 return __ieee80211_resume(wiphy_priv(wiphy));
1947}
1948#else
1949#define ieee80211_suspend NULL
1950#define ieee80211_resume NULL
1951#endif
1952
Johannes Berg2a519312009-02-10 21:25:55 +01001953static int ieee80211_scan(struct wiphy *wiphy,
Johannes Berg2a519312009-02-10 21:25:55 +01001954 struct cfg80211_scan_request *req)
1955{
Johannes Bergfd014282012-06-18 19:17:03 +02001956 struct ieee80211_sub_if_data *sdata;
1957
1958 sdata = IEEE80211_WDEV_TO_SUB_IF(req->wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01001959
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001960 switch (ieee80211_vif_type_p2p(&sdata->vif)) {
1961 case NL80211_IFTYPE_STATION:
1962 case NL80211_IFTYPE_ADHOC:
1963 case NL80211_IFTYPE_MESH_POINT:
1964 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Bergf142c6b2012-06-18 20:07:15 +02001965 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001966 break;
1967 case NL80211_IFTYPE_P2P_GO:
1968 if (sdata->local->ops->hw_scan)
1969 break;
Johannes Berge9d77322011-02-01 15:35:36 +01001970 /*
1971 * FIXME: implement NoA while scanning in software,
1972 * for now fall through to allow scanning only when
1973 * beaconing hasn't been configured yet
1974 */
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001975 case NL80211_IFTYPE_AP:
Antonio Quartulli5c95b942012-10-16 08:39:22 +02001976 /*
1977 * If the scan has been forced (and the driver supports
1978 * forcing), don't care about being beaconing already.
1979 * This will create problems to the attached stations (e.g. all
1980 * the frames sent while scanning on other channel will be
1981 * lost)
1982 */
1983 if (sdata->u.ap.beacon &&
1984 (!(wiphy->features & NL80211_FEATURE_AP_SCAN) ||
1985 !(req->flags & NL80211_SCAN_FLAG_AP)))
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001986 return -EOPNOTSUPP;
1987 break;
1988 default:
1989 return -EOPNOTSUPP;
1990 }
Johannes Berg2a519312009-02-10 21:25:55 +01001991
1992 return ieee80211_request_scan(sdata, req);
1993}
1994
Luciano Coelho79f460c2011-05-11 17:09:36 +03001995static int
1996ieee80211_sched_scan_start(struct wiphy *wiphy,
1997 struct net_device *dev,
1998 struct cfg80211_sched_scan_request *req)
1999{
2000 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2001
2002 if (!sdata->local->ops->sched_scan_start)
2003 return -EOPNOTSUPP;
2004
2005 return ieee80211_request_sched_scan_start(sdata, req);
2006}
2007
2008static int
Luciano Coelho85a99942011-05-12 16:28:29 +03002009ieee80211_sched_scan_stop(struct wiphy *wiphy, struct net_device *dev)
Luciano Coelho79f460c2011-05-11 17:09:36 +03002010{
2011 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2012
2013 if (!sdata->local->ops->sched_scan_stop)
2014 return -EOPNOTSUPP;
2015
Luciano Coelho85a99942011-05-12 16:28:29 +03002016 return ieee80211_request_sched_scan_stop(sdata);
Luciano Coelho79f460c2011-05-11 17:09:36 +03002017}
2018
Jouni Malinen636a5d32009-03-19 13:39:22 +02002019static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev,
2020 struct cfg80211_auth_request *req)
2021{
Johannes Berg77fdaa12009-07-07 03:45:17 +02002022 return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002023}
2024
2025static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev,
2026 struct cfg80211_assoc_request *req)
2027{
Johannes Berg77fdaa12009-07-07 03:45:17 +02002028 return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002029}
2030
2031static int ieee80211_deauth(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002032 struct cfg80211_deauth_request *req)
Jouni Malinen636a5d32009-03-19 13:39:22 +02002033{
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002034 return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002035}
2036
2037static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002038 struct cfg80211_disassoc_request *req)
Jouni Malinen636a5d32009-03-19 13:39:22 +02002039{
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002040 return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002041}
2042
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002043static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
2044 struct cfg80211_ibss_params *params)
2045{
Johannes Berg55de9082012-07-26 17:24:39 +02002046 return ieee80211_ibss_join(IEEE80211_DEV_TO_SUB_IF(dev), params);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002047}
2048
2049static int ieee80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev)
2050{
Johannes Berg55de9082012-07-26 17:24:39 +02002051 return ieee80211_ibss_leave(IEEE80211_DEV_TO_SUB_IF(dev));
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002052}
2053
Rostislav Lisovy239281f2014-11-03 10:33:19 +01002054static int ieee80211_join_ocb(struct wiphy *wiphy, struct net_device *dev,
2055 struct ocb_setup *setup)
2056{
2057 return ieee80211_ocb_join(IEEE80211_DEV_TO_SUB_IF(dev), setup);
2058}
2059
2060static int ieee80211_leave_ocb(struct wiphy *wiphy, struct net_device *dev)
2061{
2062 return ieee80211_ocb_leave(IEEE80211_DEV_TO_SUB_IF(dev));
2063}
2064
Antonio Quartulli391e53e2012-11-02 13:27:49 +01002065static int ieee80211_set_mcast_rate(struct wiphy *wiphy, struct net_device *dev,
2066 int rate[IEEE80211_NUM_BANDS])
2067{
2068 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2069
Cong Ding9887dbf2013-02-06 17:23:45 +01002070 memcpy(sdata->vif.bss_conf.mcast_rate, rate,
2071 sizeof(int) * IEEE80211_NUM_BANDS);
Antonio Quartulli391e53e2012-11-02 13:27:49 +01002072
2073 return 0;
2074}
2075
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002076static int ieee80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
2077{
2078 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg24487982009-04-23 18:52:52 +02002079 int err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002080
Arik Nemtsovf23a4782010-11-08 11:51:06 +02002081 if (changed & WIPHY_PARAM_FRAG_THRESHOLD) {
2082 err = drv_set_frag_threshold(local, wiphy->frag_threshold);
2083
2084 if (err)
2085 return err;
2086 }
2087
Lorenzo Bianconia4bcaf52014-09-04 23:57:41 +02002088 if ((changed & WIPHY_PARAM_COVERAGE_CLASS) ||
2089 (changed & WIPHY_PARAM_DYN_ACK)) {
2090 s16 coverage_class;
2091
2092 coverage_class = changed & WIPHY_PARAM_COVERAGE_CLASS ?
2093 wiphy->coverage_class : -1;
2094 err = drv_set_coverage_class(local, coverage_class);
Lukáš Turek310bc672009-12-21 22:50:48 +01002095
2096 if (err)
2097 return err;
2098 }
2099
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002100 if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
Johannes Berg24487982009-04-23 18:52:52 +02002101 err = drv_set_rts_threshold(local, wiphy->rts_threshold);
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002102
Johannes Berg24487982009-04-23 18:52:52 +02002103 if (err)
2104 return err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002105 }
2106
Johannes Berg8bc83c22012-11-09 18:38:32 +01002107 if (changed & WIPHY_PARAM_RETRY_SHORT) {
2108 if (wiphy->retry_short > IEEE80211_MAX_TX_RETRY)
2109 return -EINVAL;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002110 local->hw.conf.short_frame_max_tx_count = wiphy->retry_short;
Johannes Berg8bc83c22012-11-09 18:38:32 +01002111 }
2112 if (changed & WIPHY_PARAM_RETRY_LONG) {
2113 if (wiphy->retry_long > IEEE80211_MAX_TX_RETRY)
2114 return -EINVAL;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002115 local->hw.conf.long_frame_max_tx_count = wiphy->retry_long;
Johannes Berg8bc83c22012-11-09 18:38:32 +01002116 }
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002117 if (changed &
2118 (WIPHY_PARAM_RETRY_SHORT | WIPHY_PARAM_RETRY_LONG))
2119 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
2120
2121 return 0;
2122}
2123
Johannes Berg7643a2c2009-06-02 13:01:39 +02002124static int ieee80211_set_tx_power(struct wiphy *wiphy,
Johannes Bergc8442112012-10-24 10:17:18 +02002125 struct wireless_dev *wdev,
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002126 enum nl80211_tx_power_setting type, int mbm)
Johannes Berg7643a2c2009-06-02 13:01:39 +02002127{
2128 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002129 struct ieee80211_sub_if_data *sdata;
Lorenzo Bianconidb82d8a2015-01-14 12:55:08 +01002130 enum nl80211_tx_power_setting txp_type = type;
2131 bool update_txp_type = false;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002132
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002133 if (wdev) {
2134 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2135
2136 switch (type) {
2137 case NL80211_TX_POWER_AUTOMATIC:
2138 sdata->user_power_level = IEEE80211_UNSET_POWER_LEVEL;
Lorenzo Bianconidb82d8a2015-01-14 12:55:08 +01002139 txp_type = NL80211_TX_POWER_LIMITED;
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002140 break;
2141 case NL80211_TX_POWER_LIMITED:
2142 case NL80211_TX_POWER_FIXED:
2143 if (mbm < 0 || (mbm % 100))
2144 return -EOPNOTSUPP;
2145 sdata->user_power_level = MBM_TO_DBM(mbm);
2146 break;
2147 }
2148
Lorenzo Bianconidb82d8a2015-01-14 12:55:08 +01002149 if (txp_type != sdata->vif.bss_conf.txpower_type) {
2150 update_txp_type = true;
2151 sdata->vif.bss_conf.txpower_type = txp_type;
2152 }
2153
2154 ieee80211_recalc_txpower(sdata, update_txp_type);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002155
2156 return 0;
2157 }
Johannes Berg55de9082012-07-26 17:24:39 +02002158
Johannes Berg7643a2c2009-06-02 13:01:39 +02002159 switch (type) {
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002160 case NL80211_TX_POWER_AUTOMATIC:
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002161 local->user_power_level = IEEE80211_UNSET_POWER_LEVEL;
Lorenzo Bianconidb82d8a2015-01-14 12:55:08 +01002162 txp_type = NL80211_TX_POWER_LIMITED;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002163 break;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002164 case NL80211_TX_POWER_LIMITED:
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002165 case NL80211_TX_POWER_FIXED:
2166 if (mbm < 0 || (mbm % 100))
2167 return -EOPNOTSUPP;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002168 local->user_power_level = MBM_TO_DBM(mbm);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002169 break;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002170 }
2171
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002172 mutex_lock(&local->iflist_mtx);
Lorenzo Bianconidb82d8a2015-01-14 12:55:08 +01002173 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002174 sdata->user_power_level = local->user_power_level;
Lorenzo Bianconidb82d8a2015-01-14 12:55:08 +01002175 if (txp_type != sdata->vif.bss_conf.txpower_type)
2176 update_txp_type = true;
2177 sdata->vif.bss_conf.txpower_type = txp_type;
2178 }
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002179 list_for_each_entry(sdata, &local->interfaces, list)
Lorenzo Bianconidb82d8a2015-01-14 12:55:08 +01002180 ieee80211_recalc_txpower(sdata, update_txp_type);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002181 mutex_unlock(&local->iflist_mtx);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002182
2183 return 0;
2184}
2185
Johannes Bergc8442112012-10-24 10:17:18 +02002186static int ieee80211_get_tx_power(struct wiphy *wiphy,
2187 struct wireless_dev *wdev,
2188 int *dbm)
Johannes Berg7643a2c2009-06-02 13:01:39 +02002189{
2190 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002191 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002192
Felix Fietkau5b3dc422014-10-26 00:32:53 +02002193 if (local->ops->get_txpower)
2194 return drv_get_txpower(local, sdata, dbm);
2195
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002196 if (!local->use_chanctx)
2197 *dbm = local->hw.conf.power_level;
2198 else
2199 *dbm = sdata->vif.bss_conf.txpower;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002200
Johannes Berg7643a2c2009-06-02 13:01:39 +02002201 return 0;
2202}
2203
Johannes Bergab737a42009-07-01 21:26:58 +02002204static int ieee80211_set_wds_peer(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg388ac772010-10-07 13:11:09 +02002205 const u8 *addr)
Johannes Bergab737a42009-07-01 21:26:58 +02002206{
2207 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2208
2209 memcpy(&sdata->u.wds.remote_addr, addr, ETH_ALEN);
2210
2211 return 0;
2212}
2213
Johannes Berg1f87f7d2009-06-02 13:01:41 +02002214static void ieee80211_rfkill_poll(struct wiphy *wiphy)
2215{
2216 struct ieee80211_local *local = wiphy_priv(wiphy);
2217
2218 drv_rfkill_poll(local);
2219}
2220
Johannes Bergaff89a92009-07-01 21:26:51 +02002221#ifdef CONFIG_NL80211_TESTMODE
David Spinadelfc73f112013-07-31 18:04:15 +03002222static int ieee80211_testmode_cmd(struct wiphy *wiphy,
2223 struct wireless_dev *wdev,
2224 void *data, int len)
Johannes Bergaff89a92009-07-01 21:26:51 +02002225{
2226 struct ieee80211_local *local = wiphy_priv(wiphy);
David Spinadel52981cd2013-07-31 18:06:22 +03002227 struct ieee80211_vif *vif = NULL;
Johannes Bergaff89a92009-07-01 21:26:51 +02002228
2229 if (!local->ops->testmode_cmd)
2230 return -EOPNOTSUPP;
2231
David Spinadel52981cd2013-07-31 18:06:22 +03002232 if (wdev) {
2233 struct ieee80211_sub_if_data *sdata;
2234
2235 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2236 if (sdata->flags & IEEE80211_SDATA_IN_DRIVER)
2237 vif = &sdata->vif;
2238 }
2239
2240 return local->ops->testmode_cmd(&local->hw, vif, data, len);
Johannes Bergaff89a92009-07-01 21:26:51 +02002241}
Wey-Yi Guy71063f02011-05-20 09:05:54 -07002242
2243static int ieee80211_testmode_dump(struct wiphy *wiphy,
2244 struct sk_buff *skb,
2245 struct netlink_callback *cb,
2246 void *data, int len)
2247{
2248 struct ieee80211_local *local = wiphy_priv(wiphy);
2249
2250 if (!local->ops->testmode_dump)
2251 return -EOPNOTSUPP;
2252
2253 return local->ops->testmode_dump(&local->hw, skb, cb, data, len);
2254}
Johannes Bergaff89a92009-07-01 21:26:51 +02002255#endif
2256
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002257int __ieee80211_request_smps_ap(struct ieee80211_sub_if_data *sdata,
2258 enum ieee80211_smps_mode smps_mode)
2259{
2260 struct sta_info *sta;
2261 enum ieee80211_smps_mode old_req;
2262 int i;
2263
2264 if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_AP))
2265 return -EINVAL;
2266
2267 if (sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT)
2268 return 0;
2269
2270 old_req = sdata->u.ap.req_smps;
2271 sdata->u.ap.req_smps = smps_mode;
2272
2273 /* AUTOMATIC doesn't mean much for AP - don't allow it */
2274 if (old_req == smps_mode ||
2275 smps_mode == IEEE80211_SMPS_AUTOMATIC)
2276 return 0;
2277
2278 /* If no associated stations, there's no need to do anything */
2279 if (!atomic_read(&sdata->u.ap.num_mcast_sta)) {
2280 sdata->smps_mode = smps_mode;
2281 ieee80211_queue_work(&sdata->local->hw, &sdata->recalc_smps);
2282 return 0;
2283 }
2284
2285 ht_dbg(sdata,
2286 "SMSP %d requested in AP mode, sending Action frame to %d stations\n",
2287 smps_mode, atomic_read(&sdata->u.ap.num_mcast_sta));
2288
2289 mutex_lock(&sdata->local->sta_mtx);
2290 for (i = 0; i < STA_HASH_SIZE; i++) {
2291 for (sta = rcu_dereference_protected(sdata->local->sta_hash[i],
2292 lockdep_is_held(&sdata->local->sta_mtx));
2293 sta;
2294 sta = rcu_dereference_protected(sta->hnext,
2295 lockdep_is_held(&sdata->local->sta_mtx))) {
2296 /*
2297 * Only stations associated to our AP and
2298 * associated VLANs
2299 */
2300 if (sta->sdata->bss != &sdata->u.ap)
2301 continue;
2302
2303 /* This station doesn't support MIMO - skip it */
2304 if (sta_info_tx_streams(sta) == 1)
2305 continue;
2306
2307 /*
2308 * Don't wake up a STA just to send the action frame
2309 * unless we are getting more restrictive.
2310 */
2311 if (test_sta_flag(sta, WLAN_STA_PS_STA) &&
2312 !ieee80211_smps_is_restrictive(sta->known_smps_mode,
2313 smps_mode)) {
2314 ht_dbg(sdata,
2315 "Won't send SMPS to sleeping STA %pM\n",
2316 sta->sta.addr);
2317 continue;
2318 }
2319
2320 /*
2321 * If the STA is not authorized, wait until it gets
2322 * authorized and the action frame will be sent then.
2323 */
2324 if (!test_sta_flag(sta, WLAN_STA_AUTHORIZED))
2325 continue;
2326
2327 ht_dbg(sdata, "Sending SMPS to %pM\n", sta->sta.addr);
2328 ieee80211_send_smps_action(sdata, smps_mode,
2329 sta->sta.addr,
2330 sdata->vif.bss_conf.bssid);
2331 }
2332 }
2333 mutex_unlock(&sdata->local->sta_mtx);
2334
2335 sdata->smps_mode = smps_mode;
2336 ieee80211_queue_work(&sdata->local->hw, &sdata->recalc_smps);
2337
2338 return 0;
2339}
2340
2341int __ieee80211_request_smps_mgd(struct ieee80211_sub_if_data *sdata,
2342 enum ieee80211_smps_mode smps_mode)
Johannes Berg0f782312009-12-01 13:37:02 +01002343{
2344 const u8 *ap;
2345 enum ieee80211_smps_mode old_req;
2346 int err;
2347
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002348 lockdep_assert_held(&sdata->wdev.mtx);
Johannes Berg243e6df2011-04-19 20:44:04 +02002349
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002350 if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_STATION))
2351 return -EINVAL;
2352
Johannes Berg0f782312009-12-01 13:37:02 +01002353 old_req = sdata->u.mgd.req_smps;
2354 sdata->u.mgd.req_smps = smps_mode;
2355
2356 if (old_req == smps_mode &&
2357 smps_mode != IEEE80211_SMPS_AUTOMATIC)
2358 return 0;
2359
2360 /*
2361 * If not associated, or current association is not an HT
Johannes Berg04ecd252012-09-11 14:34:12 +02002362 * association, there's no need to do anything, just store
2363 * the new value until we associate.
Johannes Berg0f782312009-12-01 13:37:02 +01002364 */
2365 if (!sdata->u.mgd.associated ||
Johannes Berg4bf88532012-11-09 11:39:59 +01002366 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT)
Johannes Berg0f782312009-12-01 13:37:02 +01002367 return 0;
Johannes Berg0f782312009-12-01 13:37:02 +01002368
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002369 ap = sdata->u.mgd.associated->bssid;
Johannes Berg0f782312009-12-01 13:37:02 +01002370
2371 if (smps_mode == IEEE80211_SMPS_AUTOMATIC) {
2372 if (sdata->u.mgd.powersave)
2373 smps_mode = IEEE80211_SMPS_DYNAMIC;
2374 else
2375 smps_mode = IEEE80211_SMPS_OFF;
2376 }
2377
2378 /* send SM PS frame to AP */
2379 err = ieee80211_send_smps_action(sdata, smps_mode,
2380 ap, ap);
2381 if (err)
2382 sdata->u.mgd.req_smps = old_req;
2383
2384 return err;
2385}
2386
Johannes Bergbc92afd2009-07-01 21:26:57 +02002387static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev,
2388 bool enabled, int timeout)
2389{
2390 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2391 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Bergbc92afd2009-07-01 21:26:57 +02002392
Bob Copeland2d3db212013-10-29 18:11:59 -04002393 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Benoit Papillaulte5de30c2010-01-15 12:21:37 +01002394 return -EOPNOTSUPP;
2395
Johannes Bergbc92afd2009-07-01 21:26:57 +02002396 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
2397 return -EOPNOTSUPP;
2398
2399 if (enabled == sdata->u.mgd.powersave &&
Juuso Oikarinenff616382010-06-09 09:51:52 +03002400 timeout == local->dynamic_ps_forced_timeout)
Johannes Bergbc92afd2009-07-01 21:26:57 +02002401 return 0;
2402
2403 sdata->u.mgd.powersave = enabled;
Juuso Oikarinenff616382010-06-09 09:51:52 +03002404 local->dynamic_ps_forced_timeout = timeout;
Johannes Bergbc92afd2009-07-01 21:26:57 +02002405
Johannes Berg0f782312009-12-01 13:37:02 +01002406 /* no change, but if automatic follow powersave */
Johannes Berged405be2013-06-03 13:51:59 +02002407 sdata_lock(sdata);
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002408 __ieee80211_request_smps_mgd(sdata, sdata->u.mgd.req_smps);
Johannes Berged405be2013-06-03 13:51:59 +02002409 sdata_unlock(sdata);
Johannes Berg0f782312009-12-01 13:37:02 +01002410
Johannes Bergbc92afd2009-07-01 21:26:57 +02002411 if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
2412 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2413
2414 ieee80211_recalc_ps(local, -1);
Eliad Pellerab095872012-07-27 12:33:22 +03002415 ieee80211_recalc_ps_vif(sdata);
Johannes Bergbc92afd2009-07-01 21:26:57 +02002416
2417 return 0;
2418}
2419
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002420static int ieee80211_set_cqm_rssi_config(struct wiphy *wiphy,
2421 struct net_device *dev,
2422 s32 rssi_thold, u32 rssi_hyst)
2423{
2424 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002425 struct ieee80211_vif *vif = &sdata->vif;
2426 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
2427
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002428 if (rssi_thold == bss_conf->cqm_rssi_thold &&
2429 rssi_hyst == bss_conf->cqm_rssi_hyst)
2430 return 0;
2431
2432 bss_conf->cqm_rssi_thold = rssi_thold;
2433 bss_conf->cqm_rssi_hyst = rssi_hyst;
2434
2435 /* tell the driver upon association, unless already associated */
Johannes Bergea086352012-01-19 09:29:58 +01002436 if (sdata->u.mgd.associated &&
2437 sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002438 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_CQM);
2439
2440 return 0;
2441}
2442
Johannes Berg99303802009-07-01 21:26:59 +02002443static int ieee80211_set_bitrate_mask(struct wiphy *wiphy,
2444 struct net_device *dev,
2445 const u8 *addr,
2446 const struct cfg80211_bitrate_mask *mask)
2447{
2448 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2449 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +05302450 int i, ret;
Johannes Berg99303802009-07-01 21:26:59 +02002451
Eliad Peller554a43d2012-06-12 12:41:15 +03002452 if (!ieee80211_sdata_running(sdata))
2453 return -ENETDOWN;
2454
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +05302455 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL) {
2456 ret = drv_set_bitrate_mask(local, sdata, mask);
2457 if (ret)
2458 return ret;
2459 }
Johannes Berg99303802009-07-01 21:26:59 +02002460
Simon Wunderlich19468412012-01-28 17:25:33 +01002461 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
Felix Fietkau2ffbe6d2013-04-16 13:38:42 +02002462 struct ieee80211_supported_band *sband = wiphy->bands[i];
2463 int j;
2464
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002465 sdata->rc_rateidx_mask[i] = mask->control[i].legacy;
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01002466 memcpy(sdata->rc_rateidx_mcs_mask[i], mask->control[i].ht_mcs,
2467 sizeof(mask->control[i].ht_mcs));
Felix Fietkau2ffbe6d2013-04-16 13:38:42 +02002468
2469 sdata->rc_has_mcs_mask[i] = false;
2470 if (!sband)
2471 continue;
2472
2473 for (j = 0; j < IEEE80211_HT_MCS_MASK_LEN; j++)
2474 if (~sdata->rc_rateidx_mcs_mask[i][j]) {
2475 sdata->rc_has_mcs_mask[i] = true;
2476 break;
2477 }
Simon Wunderlich19468412012-01-28 17:25:33 +01002478 }
Johannes Berg99303802009-07-01 21:26:59 +02002479
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002480 return 0;
Johannes Berg99303802009-07-01 21:26:59 +02002481}
2482
Eliad Pellereaa336b2014-09-03 15:25:06 +03002483static bool ieee80211_coalesce_started_roc(struct ieee80211_local *local,
2484 struct ieee80211_roc_work *new_roc,
2485 struct ieee80211_roc_work *cur_roc)
2486{
2487 unsigned long j = jiffies;
2488 unsigned long cur_roc_end = cur_roc->hw_start_time +
2489 msecs_to_jiffies(cur_roc->duration);
2490 struct ieee80211_roc_work *next_roc;
2491 int new_dur;
2492
2493 if (WARN_ON(!cur_roc->started || !cur_roc->hw_begun))
2494 return false;
2495
2496 if (time_after(j + IEEE80211_ROC_MIN_LEFT, cur_roc_end))
2497 return false;
2498
2499 ieee80211_handle_roc_started(new_roc);
2500
2501 new_dur = new_roc->duration - jiffies_to_msecs(cur_roc_end - j);
2502
2503 /* cur_roc is long enough - add new_roc to the dependents list. */
2504 if (new_dur <= 0) {
2505 list_add_tail(&new_roc->list, &cur_roc->dependents);
2506 return true;
2507 }
2508
2509 new_roc->duration = new_dur;
2510
2511 /*
2512 * if cur_roc was already coalesced before, we might
2513 * want to extend the next roc instead of adding
2514 * a new one.
2515 */
2516 next_roc = list_entry(cur_roc->list.next,
2517 struct ieee80211_roc_work, list);
2518 if (&next_roc->list != &local->roc_list &&
2519 next_roc->chan == new_roc->chan &&
2520 next_roc->sdata == new_roc->sdata &&
2521 !WARN_ON(next_roc->started)) {
2522 list_add_tail(&new_roc->list, &next_roc->dependents);
2523 next_roc->duration = max(next_roc->duration,
2524 new_roc->duration);
2525 next_roc->type = max(next_roc->type, new_roc->type);
2526 return true;
2527 }
2528
2529 /* add right after cur_roc */
2530 list_add(&new_roc->list, &cur_roc->list);
2531
2532 return true;
2533}
2534
Johannes Berg2eb278e2012-06-05 14:28:42 +02002535static int ieee80211_start_roc_work(struct ieee80211_local *local,
2536 struct ieee80211_sub_if_data *sdata,
2537 struct ieee80211_channel *channel,
Johannes Berg2eb278e2012-06-05 14:28:42 +02002538 unsigned int duration, u64 *cookie,
Ilan Peerd339d5c2013-02-12 09:34:13 +02002539 struct sk_buff *txskb,
2540 enum ieee80211_roc_type type)
Johannes Berg21f83582010-12-18 17:20:47 +01002541{
Johannes Berg2eb278e2012-06-05 14:28:42 +02002542 struct ieee80211_roc_work *roc, *tmp;
2543 bool queued = false;
Johannes Berg21f83582010-12-18 17:20:47 +01002544 int ret;
Johannes Berg21f83582010-12-18 17:20:47 +01002545
2546 lockdep_assert_held(&local->mtx);
2547
Johannes Bergfe57d9f2012-07-26 14:55:08 +02002548 if (local->use_chanctx && !local->ops->remain_on_channel)
2549 return -EOPNOTSUPP;
2550
Johannes Berg2eb278e2012-06-05 14:28:42 +02002551 roc = kzalloc(sizeof(*roc), GFP_KERNEL);
2552 if (!roc)
2553 return -ENOMEM;
Johannes Berg21f83582010-12-18 17:20:47 +01002554
Ilan Peer2fae0622013-12-19 13:25:29 +02002555 /*
2556 * If the duration is zero, then the driver
2557 * wouldn't actually do anything. Set it to
2558 * 10 for now.
2559 *
2560 * TODO: cancel the off-channel operation
2561 * when we get the SKB's TX status and
2562 * the wait time was zero before.
2563 */
2564 if (!duration)
2565 duration = 10;
2566
Johannes Berg2eb278e2012-06-05 14:28:42 +02002567 roc->chan = channel;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002568 roc->duration = duration;
2569 roc->req_duration = duration;
2570 roc->frame = txskb;
Ilan Peerd339d5c2013-02-12 09:34:13 +02002571 roc->type = type;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002572 roc->mgmt_tx_cookie = (unsigned long)txskb;
2573 roc->sdata = sdata;
2574 INIT_DELAYED_WORK(&roc->work, ieee80211_sw_roc_work);
2575 INIT_LIST_HEAD(&roc->dependents);
2576
Eliad Peller2f617432014-01-12 11:06:37 +02002577 /*
2578 * cookie is either the roc cookie (for normal roc)
2579 * or the SKB (for mgmt TX)
2580 */
2581 if (!txskb) {
2582 /* local->mtx protects this */
2583 local->roc_cookie_counter++;
2584 roc->cookie = local->roc_cookie_counter;
2585 /* wow, you wrapped 64 bits ... more likely a bug */
2586 if (WARN_ON(roc->cookie == 0)) {
2587 roc->cookie = 1;
2588 local->roc_cookie_counter++;
2589 }
2590 *cookie = roc->cookie;
2591 } else {
2592 *cookie = (unsigned long)txskb;
2593 }
2594
Johannes Berg2eb278e2012-06-05 14:28:42 +02002595 /* if there's one pending or we're scanning, queue this one */
Simon Wunderlich164eb022013-02-08 18:16:20 +01002596 if (!list_empty(&local->roc_list) ||
Eliad Peller5cbc95a2015-01-07 17:50:09 +02002597 local->scanning || ieee80211_is_radar_required(local))
Johannes Berg2eb278e2012-06-05 14:28:42 +02002598 goto out_check_combine;
2599
2600 /* if not HW assist, just queue & schedule work */
2601 if (!local->ops->remain_on_channel) {
2602 ieee80211_queue_delayed_work(&local->hw, &roc->work, 0);
2603 goto out_queue;
Johannes Berg21f83582010-12-18 17:20:47 +01002604 }
2605
Johannes Berg2eb278e2012-06-05 14:28:42 +02002606 /* otherwise actually kick it off here (for error handling) */
2607
Ilan Peerd339d5c2013-02-12 09:34:13 +02002608 ret = drv_remain_on_channel(local, sdata, channel, duration, type);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002609 if (ret) {
2610 kfree(roc);
2611 return ret;
2612 }
2613
2614 roc->started = true;
2615 goto out_queue;
2616
2617 out_check_combine:
2618 list_for_each_entry(tmp, &local->roc_list, list) {
Johannes Berg42d97a52012-11-08 18:31:02 +01002619 if (tmp->chan != channel || tmp->sdata != sdata)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002620 continue;
2621
2622 /*
2623 * Extend this ROC if possible:
2624 *
2625 * If it hasn't started yet, just increase the duration
2626 * and add the new one to the list of dependents.
Ilan Peerd339d5c2013-02-12 09:34:13 +02002627 * If the type of the new ROC has higher priority, modify the
2628 * type of the previous one to match that of the new one.
Johannes Berg2eb278e2012-06-05 14:28:42 +02002629 */
2630 if (!tmp->started) {
2631 list_add_tail(&roc->list, &tmp->dependents);
2632 tmp->duration = max(tmp->duration, roc->duration);
Ilan Peerd339d5c2013-02-12 09:34:13 +02002633 tmp->type = max(tmp->type, roc->type);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002634 queued = true;
2635 break;
2636 }
2637
2638 /* If it has already started, it's more difficult ... */
2639 if (local->ops->remain_on_channel) {
Johannes Berg2eb278e2012-06-05 14:28:42 +02002640 /*
2641 * In the offloaded ROC case, if it hasn't begun, add
2642 * this new one to the dependent list to be handled
Ilan Peerd339d5c2013-02-12 09:34:13 +02002643 * when the master one begins. If it has begun,
Johannes Berg2eb278e2012-06-05 14:28:42 +02002644 * check that there's still a minimum time left and
2645 * if so, start this one, transmitting the frame, but
Ilan Peerd339d5c2013-02-12 09:34:13 +02002646 * add it to the list directly after this one with
Johannes Berg2eb278e2012-06-05 14:28:42 +02002647 * a reduced time so we'll ask the driver to execute
2648 * it right after finishing the previous one, in the
2649 * hope that it'll also be executed right afterwards,
2650 * effectively extending the old one.
2651 * If there's no minimum time left, just add it to the
2652 * normal list.
Ilan Peerd339d5c2013-02-12 09:34:13 +02002653 * TODO: the ROC type is ignored here, assuming that it
2654 * is better to immediately use the current ROC.
Johannes Berg2eb278e2012-06-05 14:28:42 +02002655 */
2656 if (!tmp->hw_begun) {
2657 list_add_tail(&roc->list, &tmp->dependents);
2658 queued = true;
2659 break;
2660 }
2661
Eliad Pellereaa336b2014-09-03 15:25:06 +03002662 if (ieee80211_coalesce_started_roc(local, roc, tmp))
Johannes Berg2eb278e2012-06-05 14:28:42 +02002663 queued = true;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002664 } else if (del_timer_sync(&tmp->work.timer)) {
2665 unsigned long new_end;
2666
2667 /*
2668 * In the software ROC case, cancel the timer, if
2669 * that fails then the finish work is already
2670 * queued/pending and thus we queue the new ROC
2671 * normally, if that succeeds then we can extend
2672 * the timer duration and TX the frame (if any.)
2673 */
2674
2675 list_add_tail(&roc->list, &tmp->dependents);
2676 queued = true;
2677
2678 new_end = jiffies + msecs_to_jiffies(roc->duration);
2679
2680 /* ok, it was started & we canceled timer */
2681 if (time_after(new_end, tmp->work.timer.expires))
2682 mod_timer(&tmp->work.timer, new_end);
2683 else
2684 add_timer(&tmp->work.timer);
2685
2686 ieee80211_handle_roc_started(roc);
2687 }
2688 break;
2689 }
2690
2691 out_queue:
2692 if (!queued)
2693 list_add_tail(&roc->list, &local->roc_list);
2694
Johannes Berg2eb278e2012-06-05 14:28:42 +02002695 return 0;
Johannes Berg21f83582010-12-18 17:20:47 +01002696}
2697
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002698static int ieee80211_remain_on_channel(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02002699 struct wireless_dev *wdev,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002700 struct ieee80211_channel *chan,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002701 unsigned int duration,
2702 u64 *cookie)
2703{
Johannes Berg71bbc992012-06-15 15:30:18 +02002704 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg21f83582010-12-18 17:20:47 +01002705 struct ieee80211_local *local = sdata->local;
Johannes Berg21f83582010-12-18 17:20:47 +01002706 int ret;
2707
Johannes Berg2eb278e2012-06-05 14:28:42 +02002708 mutex_lock(&local->mtx);
Johannes Berg42d97a52012-11-08 18:31:02 +01002709 ret = ieee80211_start_roc_work(local, sdata, chan,
Ilan Peerd339d5c2013-02-12 09:34:13 +02002710 duration, cookie, NULL,
2711 IEEE80211_ROC_TYPE_NORMAL);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002712 mutex_unlock(&local->mtx);
Johannes Berg21f83582010-12-18 17:20:47 +01002713
Johannes Berg2eb278e2012-06-05 14:28:42 +02002714 return ret;
2715}
2716
2717static int ieee80211_cancel_roc(struct ieee80211_local *local,
2718 u64 cookie, bool mgmt_tx)
2719{
2720 struct ieee80211_roc_work *roc, *tmp, *found = NULL;
2721 int ret;
2722
2723 mutex_lock(&local->mtx);
2724 list_for_each_entry_safe(roc, tmp, &local->roc_list, list) {
Johannes Berge979e332012-06-11 17:09:41 +02002725 struct ieee80211_roc_work *dep, *tmp2;
2726
2727 list_for_each_entry_safe(dep, tmp2, &roc->dependents, list) {
Johannes Berg50febf62012-10-26 16:13:06 +02002728 if (!mgmt_tx && dep->cookie != cookie)
Johannes Berge979e332012-06-11 17:09:41 +02002729 continue;
2730 else if (mgmt_tx && dep->mgmt_tx_cookie != cookie)
2731 continue;
2732 /* found dependent item -- just remove it */
2733 list_del(&dep->list);
2734 mutex_unlock(&local->mtx);
2735
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002736 ieee80211_roc_notify_destroy(dep, true);
Johannes Berge979e332012-06-11 17:09:41 +02002737 return 0;
2738 }
2739
Johannes Berg50febf62012-10-26 16:13:06 +02002740 if (!mgmt_tx && roc->cookie != cookie)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002741 continue;
2742 else if (mgmt_tx && roc->mgmt_tx_cookie != cookie)
2743 continue;
2744
2745 found = roc;
2746 break;
2747 }
2748
2749 if (!found) {
2750 mutex_unlock(&local->mtx);
Johannes Berg21f83582010-12-18 17:20:47 +01002751 return -ENOENT;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002752 }
Johannes Berg21f83582010-12-18 17:20:47 +01002753
Johannes Berge979e332012-06-11 17:09:41 +02002754 /*
2755 * We found the item to cancel, so do that. Note that it
2756 * may have dependents, which we also cancel (and send
2757 * the expired signal for.) Not doing so would be quite
2758 * tricky here, but we may need to fix it later.
2759 */
2760
Johannes Berg2eb278e2012-06-05 14:28:42 +02002761 if (local->ops->remain_on_channel) {
2762 if (found->started) {
2763 ret = drv_cancel_remain_on_channel(local);
2764 if (WARN_ON_ONCE(ret)) {
2765 mutex_unlock(&local->mtx);
2766 return ret;
2767 }
2768 }
Johannes Berg21f83582010-12-18 17:20:47 +01002769
Johannes Berg2eb278e2012-06-05 14:28:42 +02002770 list_del(&found->list);
2771
Johannes Berg0f6b3f52012-06-20 20:11:33 +02002772 if (found->started)
2773 ieee80211_start_next_roc(local);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002774 mutex_unlock(&local->mtx);
2775
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002776 ieee80211_roc_notify_destroy(found, true);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002777 } else {
2778 /* work may be pending so use it all the time */
2779 found->abort = true;
2780 ieee80211_queue_delayed_work(&local->hw, &found->work, 0);
2781
2782 mutex_unlock(&local->mtx);
2783
2784 /* work will clean up etc */
2785 flush_delayed_work(&found->work);
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002786 WARN_ON(!found->to_be_freed);
2787 kfree(found);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002788 }
Johannes Berg21f83582010-12-18 17:20:47 +01002789
Johannes Berg21f83582010-12-18 17:20:47 +01002790 return 0;
2791}
2792
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002793static int ieee80211_cancel_remain_on_channel(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02002794 struct wireless_dev *wdev,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002795 u64 cookie)
2796{
Johannes Berg71bbc992012-06-15 15:30:18 +02002797 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg21f83582010-12-18 17:20:47 +01002798 struct ieee80211_local *local = sdata->local;
2799
Johannes Berg2eb278e2012-06-05 14:28:42 +02002800 return ieee80211_cancel_roc(local, cookie, false);
Johannes Bergf30221e2010-11-25 10:02:30 +01002801}
2802
Simon Wunderlich164eb022013-02-08 18:16:20 +01002803static int ieee80211_start_radar_detection(struct wiphy *wiphy,
2804 struct net_device *dev,
Janusz Dziedzic31559f32014-02-21 19:46:13 +01002805 struct cfg80211_chan_def *chandef,
2806 u32 cac_time_ms)
Simon Wunderlich164eb022013-02-08 18:16:20 +01002807{
2808 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2809 struct ieee80211_local *local = sdata->local;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002810 int err;
2811
Johannes Berg34a37402013-12-18 09:43:33 +01002812 mutex_lock(&local->mtx);
2813 if (!list_empty(&local->roc_list) || local->scanning) {
2814 err = -EBUSY;
2815 goto out_unlock;
2816 }
Simon Wunderlich164eb022013-02-08 18:16:20 +01002817
2818 /* whatever, but channel contexts should not complain about that one */
2819 sdata->smps_mode = IEEE80211_SMPS_OFF;
2820 sdata->needed_rx_chains = local->rx_chains;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002821
Simon Wunderlich164eb022013-02-08 18:16:20 +01002822 err = ieee80211_vif_use_channel(sdata, chandef,
2823 IEEE80211_CHANCTX_SHARED);
Simon Wunderlich164eb022013-02-08 18:16:20 +01002824 if (err)
Johannes Berg34a37402013-12-18 09:43:33 +01002825 goto out_unlock;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002826
Simon Wunderlich164eb022013-02-08 18:16:20 +01002827 ieee80211_queue_delayed_work(&sdata->local->hw,
Janusz Dziedzic31559f32014-02-21 19:46:13 +01002828 &sdata->dfs_cac_timer_work,
2829 msecs_to_jiffies(cac_time_ms));
Simon Wunderlich164eb022013-02-08 18:16:20 +01002830
Johannes Berg34a37402013-12-18 09:43:33 +01002831 out_unlock:
2832 mutex_unlock(&local->mtx);
2833 return err;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002834}
2835
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002836static struct cfg80211_beacon_data *
2837cfg80211_beacon_dup(struct cfg80211_beacon_data *beacon)
2838{
2839 struct cfg80211_beacon_data *new_beacon;
2840 u8 *pos;
2841 int len;
2842
2843 len = beacon->head_len + beacon->tail_len + beacon->beacon_ies_len +
2844 beacon->proberesp_ies_len + beacon->assocresp_ies_len +
2845 beacon->probe_resp_len;
2846
2847 new_beacon = kzalloc(sizeof(*new_beacon) + len, GFP_KERNEL);
2848 if (!new_beacon)
2849 return NULL;
2850
2851 pos = (u8 *)(new_beacon + 1);
2852 if (beacon->head_len) {
2853 new_beacon->head_len = beacon->head_len;
2854 new_beacon->head = pos;
2855 memcpy(pos, beacon->head, beacon->head_len);
2856 pos += beacon->head_len;
2857 }
2858 if (beacon->tail_len) {
2859 new_beacon->tail_len = beacon->tail_len;
2860 new_beacon->tail = pos;
2861 memcpy(pos, beacon->tail, beacon->tail_len);
2862 pos += beacon->tail_len;
2863 }
2864 if (beacon->beacon_ies_len) {
2865 new_beacon->beacon_ies_len = beacon->beacon_ies_len;
2866 new_beacon->beacon_ies = pos;
2867 memcpy(pos, beacon->beacon_ies, beacon->beacon_ies_len);
2868 pos += beacon->beacon_ies_len;
2869 }
2870 if (beacon->proberesp_ies_len) {
2871 new_beacon->proberesp_ies_len = beacon->proberesp_ies_len;
2872 new_beacon->proberesp_ies = pos;
2873 memcpy(pos, beacon->proberesp_ies, beacon->proberesp_ies_len);
2874 pos += beacon->proberesp_ies_len;
2875 }
2876 if (beacon->assocresp_ies_len) {
2877 new_beacon->assocresp_ies_len = beacon->assocresp_ies_len;
2878 new_beacon->assocresp_ies = pos;
2879 memcpy(pos, beacon->assocresp_ies, beacon->assocresp_ies_len);
2880 pos += beacon->assocresp_ies_len;
2881 }
2882 if (beacon->probe_resp_len) {
2883 new_beacon->probe_resp_len = beacon->probe_resp_len;
2884 beacon->probe_resp = pos;
2885 memcpy(pos, beacon->probe_resp, beacon->probe_resp_len);
2886 pos += beacon->probe_resp_len;
2887 }
2888
2889 return new_beacon;
2890}
2891
Luciano Coelho66e01cf2014-01-13 19:43:00 +02002892void ieee80211_csa_finish(struct ieee80211_vif *vif)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002893{
Luciano Coelho66e01cf2014-01-13 19:43:00 +02002894 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2895
2896 ieee80211_queue_work(&sdata->local->hw,
2897 &sdata->csa_finalize_work);
2898}
2899EXPORT_SYMBOL(ieee80211_csa_finish);
2900
Michal Kazior66199502014-04-09 15:11:00 +02002901static int ieee80211_set_after_csa_beacon(struct ieee80211_sub_if_data *sdata,
2902 u32 *changed)
2903{
2904 int err;
2905
2906 switch (sdata->vif.type) {
2907 case NL80211_IFTYPE_AP:
Michal Kazioraf296bd2014-06-05 14:21:36 +02002908 err = ieee80211_assign_beacon(sdata, sdata->u.ap.next_beacon,
2909 NULL);
Michal Kazior66199502014-04-09 15:11:00 +02002910 kfree(sdata->u.ap.next_beacon);
2911 sdata->u.ap.next_beacon = NULL;
2912
2913 if (err < 0)
2914 return err;
2915 *changed |= err;
2916 break;
2917 case NL80211_IFTYPE_ADHOC:
2918 err = ieee80211_ibss_finish_csa(sdata);
2919 if (err < 0)
2920 return err;
2921 *changed |= err;
2922 break;
2923#ifdef CONFIG_MAC80211_MESH
2924 case NL80211_IFTYPE_MESH_POINT:
2925 err = ieee80211_mesh_finish_csa(sdata);
2926 if (err < 0)
2927 return err;
2928 *changed |= err;
2929 break;
2930#endif
2931 default:
2932 WARN_ON(1);
2933 return -EINVAL;
2934 }
2935
2936 return 0;
2937}
2938
Michal Kaziorcf8767d2014-05-08 09:10:02 +02002939static int __ieee80211_csa_finalize(struct ieee80211_sub_if_data *sdata)
Luciano Coelho66e01cf2014-01-13 19:43:00 +02002940{
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002941 struct ieee80211_local *local = sdata->local;
Michal Kazior66199502014-04-09 15:11:00 +02002942 u32 changed = 0;
2943 int err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002944
Michal Kaziordbd72852014-01-29 07:56:21 +01002945 sdata_assert_lock(sdata);
Michal Kazior59af6922014-04-09 15:10:59 +02002946 lockdep_assert_held(&local->mtx);
Michal Kazior03078de2014-06-25 12:35:08 +02002947 lockdep_assert_held(&local->chanctx_mtx);
Michal Kaziordbd72852014-01-29 07:56:21 +01002948
Michal Kazior03078de2014-06-25 12:35:08 +02002949 /*
2950 * using reservation isn't immediate as it may be deferred until later
2951 * with multi-vif. once reservation is complete it will re-schedule the
2952 * work with no reserved_chanctx so verify chandef to check if it
2953 * completed successfully
2954 */
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002955
Michal Kazior03078de2014-06-25 12:35:08 +02002956 if (sdata->reserved_chanctx) {
2957 /*
2958 * with multi-vif csa driver may call ieee80211_csa_finish()
2959 * many times while waiting for other interfaces to use their
2960 * reservations
2961 */
2962 if (sdata->reserved_ready)
2963 return 0;
2964
Fabian Frederick408b18a2014-10-09 20:36:22 +02002965 return ieee80211_vif_use_reserved_context(sdata);
Arik Nemtsov7578d572013-09-01 17:15:51 +03002966 }
2967
Michal Kazior03078de2014-06-25 12:35:08 +02002968 if (!cfg80211_chandef_identical(&sdata->vif.bss_conf.chandef,
2969 &sdata->csa_chandef))
2970 return -EINVAL;
2971
Simon Wunderliche487eae2013-11-21 18:19:51 +01002972 sdata->vif.csa_active = false;
Michal Kazior97518af2014-01-29 07:56:18 +01002973
Michal Kazior66199502014-04-09 15:11:00 +02002974 err = ieee80211_set_after_csa_beacon(sdata, &changed);
2975 if (err)
Michal Kaziorcf8767d2014-05-08 09:10:02 +02002976 return err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002977
Michal Kaziorfaf046e2014-01-29 07:56:17 +01002978 ieee80211_bss_info_change_notify(sdata, changed);
Michal Kazior59af6922014-04-09 15:10:59 +02002979
Luciano Coelhoa46992b2014-06-13 16:30:07 +03002980 if (sdata->csa_block_tx) {
2981 ieee80211_wake_vif_queues(local, sdata,
2982 IEEE80211_QUEUE_STOP_REASON_CSA);
2983 sdata->csa_block_tx = false;
2984 }
Michal Kaziorcf8767d2014-05-08 09:10:02 +02002985
Luciano Coelhof1d65582014-10-08 09:48:38 +03002986 err = drv_post_channel_switch(sdata);
2987 if (err)
2988 return err;
2989
2990 cfg80211_ch_switch_notify(sdata->dev, &sdata->csa_chandef);
2991
Michal Kaziorcf8767d2014-05-08 09:10:02 +02002992 return 0;
2993}
2994
2995static void ieee80211_csa_finalize(struct ieee80211_sub_if_data *sdata)
2996{
2997 if (__ieee80211_csa_finalize(sdata)) {
2998 sdata_info(sdata, "failed to finalize CSA, disconnecting\n");
2999 cfg80211_stop_iface(sdata->local->hw.wiphy, &sdata->wdev,
3000 GFP_KERNEL);
3001 }
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003002}
3003
3004void ieee80211_csa_finalize_work(struct work_struct *work)
3005{
3006 struct ieee80211_sub_if_data *sdata =
3007 container_of(work, struct ieee80211_sub_if_data,
3008 csa_finalize_work);
Michal Kazior59af6922014-04-09 15:10:59 +02003009 struct ieee80211_local *local = sdata->local;
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003010
3011 sdata_lock(sdata);
Michal Kazior59af6922014-04-09 15:10:59 +02003012 mutex_lock(&local->mtx);
Michal Kazior03078de2014-06-25 12:35:08 +02003013 mutex_lock(&local->chanctx_mtx);
Michal Kazior59af6922014-04-09 15:10:59 +02003014
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003015 /* AP might have been stopped while waiting for the lock. */
3016 if (!sdata->vif.csa_active)
3017 goto unlock;
3018
3019 if (!ieee80211_sdata_running(sdata))
3020 goto unlock;
3021
3022 ieee80211_csa_finalize(sdata);
Simon Wunderliche487eae2013-11-21 18:19:51 +01003023
3024unlock:
Michal Kazior03078de2014-06-25 12:35:08 +02003025 mutex_unlock(&local->chanctx_mtx);
Michal Kazior59af6922014-04-09 15:10:59 +02003026 mutex_unlock(&local->mtx);
Simon Wunderliche487eae2013-11-21 18:19:51 +01003027 sdata_unlock(sdata);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003028}
3029
Michal Kazior37fa2bd2014-02-28 15:59:06 +01003030static int ieee80211_set_csa_beacon(struct ieee80211_sub_if_data *sdata,
3031 struct cfg80211_csa_settings *params,
3032 u32 *changed)
3033{
Michal Kazioraf296bd2014-06-05 14:21:36 +02003034 struct ieee80211_csa_settings csa = {};
Michal Kazior37fa2bd2014-02-28 15:59:06 +01003035 int err;
3036
3037 switch (sdata->vif.type) {
3038 case NL80211_IFTYPE_AP:
3039 sdata->u.ap.next_beacon =
3040 cfg80211_beacon_dup(&params->beacon_after);
3041 if (!sdata->u.ap.next_beacon)
3042 return -ENOMEM;
3043
3044 /*
3045 * With a count of 0, we don't have to wait for any
3046 * TBTT before switching, so complete the CSA
3047 * immediately. In theory, with a count == 1 we
3048 * should delay the switch until just before the next
3049 * TBTT, but that would complicate things so we switch
3050 * immediately too. If we would delay the switch
3051 * until the next TBTT, we would have to set the probe
3052 * response here.
3053 *
3054 * TODO: A channel switch with count <= 1 without
3055 * sending a CSA action frame is kind of useless,
3056 * because the clients won't know we're changing
3057 * channels. The action frame must be implemented
3058 * either here or in the userspace.
3059 */
3060 if (params->count <= 1)
3061 break;
3062
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03003063 if ((params->n_counter_offsets_beacon >
3064 IEEE80211_MAX_CSA_COUNTERS_NUM) ||
3065 (params->n_counter_offsets_presp >
3066 IEEE80211_MAX_CSA_COUNTERS_NUM))
3067 return -EINVAL;
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03003068
Michal Kazioraf296bd2014-06-05 14:21:36 +02003069 csa.counter_offsets_beacon = params->counter_offsets_beacon;
3070 csa.counter_offsets_presp = params->counter_offsets_presp;
3071 csa.n_counter_offsets_beacon = params->n_counter_offsets_beacon;
3072 csa.n_counter_offsets_presp = params->n_counter_offsets_presp;
3073 csa.count = params->count;
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03003074
Michal Kazioraf296bd2014-06-05 14:21:36 +02003075 err = ieee80211_assign_beacon(sdata, &params->beacon_csa, &csa);
Michal Kazior37fa2bd2014-02-28 15:59:06 +01003076 if (err < 0) {
3077 kfree(sdata->u.ap.next_beacon);
3078 return err;
3079 }
3080 *changed |= err;
3081
3082 break;
3083 case NL80211_IFTYPE_ADHOC:
3084 if (!sdata->vif.bss_conf.ibss_joined)
3085 return -EINVAL;
3086
3087 if (params->chandef.width != sdata->u.ibss.chandef.width)
3088 return -EINVAL;
3089
3090 switch (params->chandef.width) {
3091 case NL80211_CHAN_WIDTH_40:
3092 if (cfg80211_get_chandef_type(&params->chandef) !=
3093 cfg80211_get_chandef_type(&sdata->u.ibss.chandef))
3094 return -EINVAL;
3095 case NL80211_CHAN_WIDTH_5:
3096 case NL80211_CHAN_WIDTH_10:
3097 case NL80211_CHAN_WIDTH_20_NOHT:
3098 case NL80211_CHAN_WIDTH_20:
3099 break;
3100 default:
3101 return -EINVAL;
3102 }
3103
3104 /* changes into another band are not supported */
3105 if (sdata->u.ibss.chandef.chan->band !=
3106 params->chandef.chan->band)
3107 return -EINVAL;
3108
3109 /* see comments in the NL80211_IFTYPE_AP block */
3110 if (params->count > 1) {
3111 err = ieee80211_ibss_csa_beacon(sdata, params);
3112 if (err < 0)
3113 return err;
3114 *changed |= err;
3115 }
3116
3117 ieee80211_send_action_csa(sdata, params);
3118
3119 break;
3120#ifdef CONFIG_MAC80211_MESH
3121 case NL80211_IFTYPE_MESH_POINT: {
3122 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
3123
3124 if (params->chandef.width != sdata->vif.bss_conf.chandef.width)
3125 return -EINVAL;
3126
3127 /* changes into another band are not supported */
3128 if (sdata->vif.bss_conf.chandef.chan->band !=
3129 params->chandef.chan->band)
3130 return -EINVAL;
3131
3132 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_NONE) {
3133 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_INIT;
3134 if (!ifmsh->pre_value)
3135 ifmsh->pre_value = 1;
3136 else
3137 ifmsh->pre_value++;
3138 }
3139
3140 /* see comments in the NL80211_IFTYPE_AP block */
3141 if (params->count > 1) {
3142 err = ieee80211_mesh_csa_beacon(sdata, params);
3143 if (err < 0) {
3144 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_NONE;
3145 return err;
3146 }
3147 *changed |= err;
3148 }
3149
3150 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_INIT)
3151 ieee80211_send_action_csa(sdata, params);
3152
3153 break;
3154 }
3155#endif
3156 default:
3157 return -EOPNOTSUPP;
3158 }
3159
3160 return 0;
3161}
3162
Luciano Coelhof29f58a2014-05-07 20:05:12 +03003163static int
3164__ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev,
3165 struct cfg80211_csa_settings *params)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003166{
3167 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3168 struct ieee80211_local *local = sdata->local;
Luciano Coelho6d027bc2014-10-08 09:48:37 +03003169 struct ieee80211_channel_switch ch_switch;
Michal Kazior2b327132014-04-09 15:29:32 +02003170 struct ieee80211_chanctx_conf *conf;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003171 struct ieee80211_chanctx *chanctx;
Johannes Bergb08cc242014-10-20 21:36:04 +02003172 u32 changed = 0;
3173 int err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003174
Michal Kaziordbd72852014-01-29 07:56:21 +01003175 sdata_assert_lock(sdata);
Michal Kazior59af6922014-04-09 15:10:59 +02003176 lockdep_assert_held(&local->mtx);
Simon Wunderlich7ca133b2013-11-21 18:19:50 +01003177
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003178 if (!list_empty(&local->roc_list) || local->scanning)
3179 return -EBUSY;
3180
3181 if (sdata->wdev.cac_started)
3182 return -EBUSY;
3183
3184 if (cfg80211_chandef_identical(&params->chandef,
3185 &sdata->vif.bss_conf.chandef))
3186 return -EINVAL;
3187
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003188 /* don't allow another channel switch if one is already active. */
3189 if (sdata->vif.csa_active)
3190 return -EBUSY;
3191
Michal Kazior03078de2014-06-25 12:35:08 +02003192 mutex_lock(&local->chanctx_mtx);
3193 conf = rcu_dereference_protected(sdata->vif.chanctx_conf,
3194 lockdep_is_held(&local->chanctx_mtx));
3195 if (!conf) {
3196 err = -EBUSY;
3197 goto out;
3198 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003199
Michal Kazior03078de2014-06-25 12:35:08 +02003200 chanctx = container_of(conf, struct ieee80211_chanctx, conf);
3201 if (!chanctx) {
3202 err = -EBUSY;
3203 goto out;
3204 }
3205
Luciano Coelho000baa52014-11-07 15:28:33 +02003206 ch_switch.timestamp = 0;
3207 ch_switch.device_timestamp = 0;
3208 ch_switch.block_tx = params->block_tx;
3209 ch_switch.chandef = params->chandef;
3210 ch_switch.count = params->count;
3211
Luciano Coelho6d027bc2014-10-08 09:48:37 +03003212 err = drv_pre_channel_switch(sdata, &ch_switch);
3213 if (err)
3214 goto out;
3215
Michal Kazior03078de2014-06-25 12:35:08 +02003216 err = ieee80211_vif_reserve_chanctx(sdata, &params->chandef,
3217 chanctx->mode,
3218 params->radar_required);
3219 if (err)
3220 goto out;
3221
3222 /* if reservation is invalid then this will fail */
3223 err = ieee80211_check_combinations(sdata, NULL, chanctx->mode, 0);
3224 if (err) {
3225 ieee80211_vif_unreserve_chanctx(sdata);
3226 goto out;
3227 }
3228
3229 err = ieee80211_set_csa_beacon(sdata, params, &changed);
3230 if (err) {
3231 ieee80211_vif_unreserve_chanctx(sdata);
3232 goto out;
3233 }
3234
Luciano Coelho33787fc2013-11-11 20:34:54 +02003235 sdata->csa_chandef = params->chandef;
Michal Kazior59af6922014-04-09 15:10:59 +02003236 sdata->csa_block_tx = params->block_tx;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003237 sdata->vif.csa_active = true;
3238
Michal Kazior59af6922014-04-09 15:10:59 +02003239 if (sdata->csa_block_tx)
Luciano Coelhoa46992b2014-06-13 16:30:07 +03003240 ieee80211_stop_vif_queues(local, sdata,
3241 IEEE80211_QUEUE_STOP_REASON_CSA);
Michal Kazior59af6922014-04-09 15:10:59 +02003242
Luciano Coelho2f457292014-11-07 14:31:36 +02003243 cfg80211_ch_switch_started_notify(sdata->dev, &sdata->csa_chandef,
3244 params->count);
3245
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003246 if (changed) {
3247 ieee80211_bss_info_change_notify(sdata, changed);
3248 drv_channel_switch_beacon(sdata, &params->chandef);
3249 } else {
3250 /* if the beacon didn't change, we can finalize immediately */
3251 ieee80211_csa_finalize(sdata);
3252 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003253
Michal Kazior03078de2014-06-25 12:35:08 +02003254out:
3255 mutex_unlock(&local->chanctx_mtx);
3256 return err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003257}
3258
Michal Kazior59af6922014-04-09 15:10:59 +02003259int ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev,
3260 struct cfg80211_csa_settings *params)
3261{
3262 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3263 struct ieee80211_local *local = sdata->local;
3264 int err;
3265
3266 mutex_lock(&local->mtx);
3267 err = __ieee80211_channel_switch(wiphy, dev, params);
3268 mutex_unlock(&local->mtx);
3269
3270 return err;
3271}
3272
Johannes Berg71bbc992012-06-15 15:30:18 +02003273static int ieee80211_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003274 struct cfg80211_mgmt_tx_params *params,
3275 u64 *cookie)
Jouni Malinen026331c2010-02-15 12:53:10 +02003276{
Johannes Berg71bbc992012-06-15 15:30:18 +02003277 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg9d38d852010-06-09 17:20:33 +02003278 struct ieee80211_local *local = sdata->local;
3279 struct sk_buff *skb;
3280 struct sta_info *sta;
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003281 const struct ieee80211_mgmt *mgmt = (void *)params->buf;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003282 bool need_offchan = false;
Johannes Berge247bd902011-11-04 11:18:21 +01003283 u32 flags;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003284 int ret;
Andrei Otcheretianski387910c2014-05-09 14:11:45 +03003285 u8 *data;
Johannes Bergf7ca38d2010-11-25 10:02:29 +01003286
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003287 if (params->dont_wait_for_ack)
Johannes Berge247bd902011-11-04 11:18:21 +01003288 flags = IEEE80211_TX_CTL_NO_ACK;
3289 else
3290 flags = IEEE80211_TX_INTFL_NL80211_FRAME_TX |
3291 IEEE80211_TX_CTL_REQ_TX_STATUS;
3292
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003293 if (params->no_cck)
Rajkumar Manoharanaad14ce2011-09-25 14:53:31 +05303294 flags |= IEEE80211_TX_CTL_NO_CCK_RATE;
3295
Johannes Berg9d38d852010-06-09 17:20:33 +02003296 switch (sdata->vif.type) {
3297 case NL80211_IFTYPE_ADHOC:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003298 if (!sdata->vif.bss_conf.ibss_joined)
3299 need_offchan = true;
3300 /* fall through */
3301#ifdef CONFIG_MAC80211_MESH
3302 case NL80211_IFTYPE_MESH_POINT:
3303 if (ieee80211_vif_is_mesh(&sdata->vif) &&
3304 !sdata->u.mesh.mesh_id_len)
3305 need_offchan = true;
3306 /* fall through */
3307#endif
Johannes Berg663fcaf2010-09-30 21:06:09 +02003308 case NL80211_IFTYPE_AP:
3309 case NL80211_IFTYPE_AP_VLAN:
3310 case NL80211_IFTYPE_P2P_GO:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003311 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
3312 !ieee80211_vif_is_mesh(&sdata->vif) &&
3313 !rcu_access_pointer(sdata->bss->beacon))
3314 need_offchan = true;
Johannes Berg663fcaf2010-09-30 21:06:09 +02003315 if (!ieee80211_is_action(mgmt->frame_control) ||
Thomas Pedersenac49e1a2013-06-20 23:50:58 -07003316 mgmt->u.action.category == WLAN_CATEGORY_PUBLIC ||
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003317 mgmt->u.action.category == WLAN_CATEGORY_SELF_PROTECTED ||
3318 mgmt->u.action.category == WLAN_CATEGORY_SPECTRUM_MGMT)
Johannes Berg9d38d852010-06-09 17:20:33 +02003319 break;
3320 rcu_read_lock();
3321 sta = sta_info_get(sdata, mgmt->da);
3322 rcu_read_unlock();
3323 if (!sta)
3324 return -ENOLINK;
3325 break;
3326 case NL80211_IFTYPE_STATION:
Johannes Berg663fcaf2010-09-30 21:06:09 +02003327 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003328 if (!sdata->u.mgd.associated)
3329 need_offchan = true;
Johannes Berg9d38d852010-06-09 17:20:33 +02003330 break;
Johannes Bergf142c6b2012-06-18 20:07:15 +02003331 case NL80211_IFTYPE_P2P_DEVICE:
3332 need_offchan = true;
3333 break;
Johannes Berg9d38d852010-06-09 17:20:33 +02003334 default:
3335 return -EOPNOTSUPP;
3336 }
3337
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003338 /* configurations requiring offchan cannot work if no channel has been
3339 * specified
3340 */
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003341 if (need_offchan && !params->chan)
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003342 return -EINVAL;
3343
Johannes Berg2eb278e2012-06-05 14:28:42 +02003344 mutex_lock(&local->mtx);
3345
3346 /* Check if the operating channel is the requested channel */
3347 if (!need_offchan) {
Johannes Berg55de9082012-07-26 17:24:39 +02003348 struct ieee80211_chanctx_conf *chanctx_conf;
3349
3350 rcu_read_lock();
3351 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3352
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003353 if (chanctx_conf) {
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003354 need_offchan = params->chan &&
3355 (params->chan !=
3356 chanctx_conf->def.chan);
3357 } else if (!params->chan) {
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003358 ret = -EINVAL;
3359 rcu_read_unlock();
3360 goto out_unlock;
3361 } else {
Johannes Berg2eb278e2012-06-05 14:28:42 +02003362 need_offchan = true;
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003363 }
Johannes Berg55de9082012-07-26 17:24:39 +02003364 rcu_read_unlock();
Johannes Berg2eb278e2012-06-05 14:28:42 +02003365 }
3366
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003367 if (need_offchan && !params->offchan) {
Johannes Berg2eb278e2012-06-05 14:28:42 +02003368 ret = -EBUSY;
3369 goto out_unlock;
3370 }
3371
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003372 skb = dev_alloc_skb(local->hw.extra_tx_headroom + params->len);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003373 if (!skb) {
3374 ret = -ENOMEM;
3375 goto out_unlock;
3376 }
Johannes Berg9d38d852010-06-09 17:20:33 +02003377 skb_reserve(skb, local->hw.extra_tx_headroom);
3378
Andrei Otcheretianski387910c2014-05-09 14:11:45 +03003379 data = skb_put(skb, params->len);
3380 memcpy(data, params->buf, params->len);
3381
3382 /* Update CSA counters */
3383 if (sdata->vif.csa_active &&
3384 (sdata->vif.type == NL80211_IFTYPE_AP ||
3385 sdata->vif.type == NL80211_IFTYPE_ADHOC) &&
3386 params->n_csa_offsets) {
3387 int i;
Michal Kazioraf296bd2014-06-05 14:21:36 +02003388 struct beacon_data *beacon = NULL;
Andrei Otcheretianski387910c2014-05-09 14:11:45 +03003389
Michal Kazioraf296bd2014-06-05 14:21:36 +02003390 rcu_read_lock();
3391
3392 if (sdata->vif.type == NL80211_IFTYPE_AP)
3393 beacon = rcu_dereference(sdata->u.ap.beacon);
3394 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
3395 beacon = rcu_dereference(sdata->u.ibss.presp);
3396 else if (ieee80211_vif_is_mesh(&sdata->vif))
3397 beacon = rcu_dereference(sdata->u.mesh.beacon);
3398
3399 if (beacon)
3400 for (i = 0; i < params->n_csa_offsets; i++)
3401 data[params->csa_offsets[i]] =
3402 beacon->csa_current_counter;
3403
3404 rcu_read_unlock();
Andrei Otcheretianski387910c2014-05-09 14:11:45 +03003405 }
Johannes Berg9d38d852010-06-09 17:20:33 +02003406
3407 IEEE80211_SKB_CB(skb)->flags = flags;
3408
Johannes Berg2eb278e2012-06-05 14:28:42 +02003409 skb->dev = sdata->dev;
3410
3411 if (!need_offchan) {
Nicolas Cavallari7f9f78a2012-07-16 18:36:52 +02003412 *cookie = (unsigned long) skb;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003413 ieee80211_tx_skb(sdata, skb);
3414 ret = 0;
3415 goto out_unlock;
3416 }
3417
Seth Forshee6c17b772013-02-11 11:21:07 -06003418 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_TX_OFFCHAN |
3419 IEEE80211_TX_INTFL_OFFCHAN_TX_OK;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003420 if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)
Johannes Berg3a25a8c2012-04-03 16:28:50 +02003421 IEEE80211_SKB_CB(skb)->hw_queue =
3422 local->hw.offchannel_tx_hw_queue;
3423
Johannes Berg2eb278e2012-06-05 14:28:42 +02003424 /* This will handle all kinds of coalescing and immediate TX */
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003425 ret = ieee80211_start_roc_work(local, sdata, params->chan,
3426 params->wait, cookie, skb,
Ilan Peerd339d5c2013-02-12 09:34:13 +02003427 IEEE80211_ROC_TYPE_MGMT_TX);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003428 if (ret)
Johannes Bergf30221e2010-11-25 10:02:30 +01003429 kfree_skb(skb);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003430 out_unlock:
3431 mutex_unlock(&local->mtx);
3432 return ret;
Jouni Malinen026331c2010-02-15 12:53:10 +02003433}
3434
Johannes Bergf30221e2010-11-25 10:02:30 +01003435static int ieee80211_mgmt_tx_cancel_wait(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02003436 struct wireless_dev *wdev,
Johannes Bergf30221e2010-11-25 10:02:30 +01003437 u64 cookie)
3438{
Johannes Berg71bbc992012-06-15 15:30:18 +02003439 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Bergf30221e2010-11-25 10:02:30 +01003440
Johannes Berg2eb278e2012-06-05 14:28:42 +02003441 return ieee80211_cancel_roc(local, cookie, true);
Johannes Bergf30221e2010-11-25 10:02:30 +01003442}
3443
Johannes Berg7be50862010-10-13 12:06:24 +02003444static void ieee80211_mgmt_frame_register(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02003445 struct wireless_dev *wdev,
Johannes Berg7be50862010-10-13 12:06:24 +02003446 u16 frame_type, bool reg)
3447{
3448 struct ieee80211_local *local = wiphy_priv(wiphy);
3449
Will Hawkins6abe0562012-06-20 11:51:14 -04003450 switch (frame_type) {
Will Hawkins6abe0562012-06-20 11:51:14 -04003451 case IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_PROBE_REQ:
3452 if (reg)
3453 local->probe_req_reg++;
3454 else
3455 local->probe_req_reg--;
Johannes Berg7be50862010-10-13 12:06:24 +02003456
Felix Fietkau35f51492012-10-31 15:50:34 +01003457 if (!local->open_count)
3458 break;
3459
Will Hawkins6abe0562012-06-20 11:51:14 -04003460 ieee80211_queue_work(&local->hw, &local->reconfig_filter);
3461 break;
3462 default:
3463 break;
3464 }
Johannes Berg7be50862010-10-13 12:06:24 +02003465}
3466
Bruno Randolf15d96752010-11-10 12:50:56 +09003467static int ieee80211_set_antenna(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant)
3468{
3469 struct ieee80211_local *local = wiphy_priv(wiphy);
3470
3471 if (local->started)
3472 return -EOPNOTSUPP;
3473
3474 return drv_set_antenna(local, tx_ant, rx_ant);
3475}
3476
3477static int ieee80211_get_antenna(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant)
3478{
3479 struct ieee80211_local *local = wiphy_priv(wiphy);
3480
3481 return drv_get_antenna(local, tx_ant, rx_ant);
3482}
3483
Johannes Bergc68f4b82011-07-05 16:35:41 +02003484static int ieee80211_set_rekey_data(struct wiphy *wiphy,
3485 struct net_device *dev,
3486 struct cfg80211_gtk_rekey_data *data)
3487{
3488 struct ieee80211_local *local = wiphy_priv(wiphy);
3489 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3490
3491 if (!local->ops->set_rekey_data)
3492 return -EOPNOTSUPP;
3493
3494 drv_set_rekey_data(local, sdata, data);
3495
3496 return 0;
3497}
3498
Johannes Berg06500732011-11-04 11:18:16 +01003499static int ieee80211_probe_client(struct wiphy *wiphy, struct net_device *dev,
3500 const u8 *peer, u64 *cookie)
3501{
3502 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3503 struct ieee80211_local *local = sdata->local;
3504 struct ieee80211_qos_hdr *nullfunc;
3505 struct sk_buff *skb;
3506 int size = sizeof(*nullfunc);
3507 __le16 fc;
3508 bool qos;
3509 struct ieee80211_tx_info *info;
3510 struct sta_info *sta;
Johannes Berg55de9082012-07-26 17:24:39 +02003511 struct ieee80211_chanctx_conf *chanctx_conf;
3512 enum ieee80211_band band;
Johannes Berg06500732011-11-04 11:18:16 +01003513
3514 rcu_read_lock();
Johannes Berg55de9082012-07-26 17:24:39 +02003515 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3516 if (WARN_ON(!chanctx_conf)) {
3517 rcu_read_unlock();
3518 return -EINVAL;
3519 }
Johannes Berg4bf88532012-11-09 11:39:59 +01003520 band = chanctx_conf->def.chan->band;
Felix Fietkau03bb7f42013-09-29 21:39:33 +02003521 sta = sta_info_get_bss(sdata, peer);
Johannes Bergb4487c22011-11-11 20:22:30 +01003522 if (sta) {
Johannes Berga74a8c82014-07-22 14:50:47 +02003523 qos = sta->sta.wme;
Johannes Bergb4487c22011-11-11 20:22:30 +01003524 } else {
3525 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003526 return -ENOLINK;
Johannes Bergb4487c22011-11-11 20:22:30 +01003527 }
Johannes Berg06500732011-11-04 11:18:16 +01003528
3529 if (qos) {
3530 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3531 IEEE80211_STYPE_QOS_NULLFUNC |
3532 IEEE80211_FCTL_FROMDS);
3533 } else {
3534 size -= 2;
3535 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3536 IEEE80211_STYPE_NULLFUNC |
3537 IEEE80211_FCTL_FROMDS);
3538 }
3539
3540 skb = dev_alloc_skb(local->hw.extra_tx_headroom + size);
Johannes Berg55de9082012-07-26 17:24:39 +02003541 if (!skb) {
3542 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003543 return -ENOMEM;
Johannes Berg55de9082012-07-26 17:24:39 +02003544 }
Johannes Berg06500732011-11-04 11:18:16 +01003545
3546 skb->dev = dev;
3547
3548 skb_reserve(skb, local->hw.extra_tx_headroom);
3549
3550 nullfunc = (void *) skb_put(skb, size);
3551 nullfunc->frame_control = fc;
3552 nullfunc->duration_id = 0;
3553 memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN);
3554 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
3555 memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);
3556 nullfunc->seq_ctrl = 0;
3557
3558 info = IEEE80211_SKB_CB(skb);
3559
3560 info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
3561 IEEE80211_TX_INTFL_NL80211_FRAME_TX;
Johannes Berg73c4e192014-11-09 18:50:09 +02003562 info->band = band;
Johannes Berg06500732011-11-04 11:18:16 +01003563
3564 skb_set_queue_mapping(skb, IEEE80211_AC_VO);
3565 skb->priority = 7;
3566 if (qos)
3567 nullfunc->qos_ctrl = cpu_to_le16(7);
3568
3569 local_bh_disable();
Johannes Berg73c4e192014-11-09 18:50:09 +02003570 ieee80211_xmit(sdata, skb);
Johannes Berg06500732011-11-04 11:18:16 +01003571 local_bh_enable();
Johannes Berg55de9082012-07-26 17:24:39 +02003572 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003573
3574 *cookie = (unsigned long) skb;
3575 return 0;
3576}
3577
Johannes Berg683b6d32012-11-08 21:25:48 +01003578static int ieee80211_cfg_get_channel(struct wiphy *wiphy,
3579 struct wireless_dev *wdev,
3580 struct cfg80211_chan_def *chandef)
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003581{
Johannes Berg55de9082012-07-26 17:24:39 +02003582 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Felix Fietkaucb601ff2013-02-23 19:02:14 +01003583 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg55de9082012-07-26 17:24:39 +02003584 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Berg683b6d32012-11-08 21:25:48 +01003585 int ret = -ENODATA;
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003586
Johannes Berg55de9082012-07-26 17:24:39 +02003587 rcu_read_lock();
Johannes Bergfeda3022013-02-28 09:59:22 +01003588 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3589 if (chanctx_conf) {
Luciano Coelhoc12bc482014-09-30 07:08:02 +03003590 *chandef = sdata->vif.bss_conf.chandef;
Johannes Bergfeda3022013-02-28 09:59:22 +01003591 ret = 0;
3592 } else if (local->open_count > 0 &&
3593 local->open_count == local->monitors &&
3594 sdata->vif.type == NL80211_IFTYPE_MONITOR) {
3595 if (local->use_chanctx)
3596 *chandef = local->monitor_chandef;
3597 else
Karl Beldan675a0b02013-03-25 16:26:57 +01003598 *chandef = local->_oper_chandef;
Johannes Berg683b6d32012-11-08 21:25:48 +01003599 ret = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02003600 }
3601 rcu_read_unlock();
3602
Johannes Berg683b6d32012-11-08 21:25:48 +01003603 return ret;
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003604}
3605
Johannes Berg6d525632012-04-04 15:05:25 +02003606#ifdef CONFIG_PM
3607static void ieee80211_set_wakeup(struct wiphy *wiphy, bool enabled)
3608{
3609 drv_set_wakeup(wiphy_priv(wiphy), enabled);
3610}
3611#endif
3612
Kyeyoon Park32db6b52013-12-16 23:04:43 -08003613static int ieee80211_set_qos_map(struct wiphy *wiphy,
3614 struct net_device *dev,
3615 struct cfg80211_qos_map *qos_map)
3616{
3617 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3618 struct mac80211_qos_map *new_qos_map, *old_qos_map;
3619
3620 if (qos_map) {
3621 new_qos_map = kzalloc(sizeof(*new_qos_map), GFP_KERNEL);
3622 if (!new_qos_map)
3623 return -ENOMEM;
3624 memcpy(&new_qos_map->qos_map, qos_map, sizeof(*qos_map));
3625 } else {
3626 /* A NULL qos_map was passed to disable QoS mapping */
3627 new_qos_map = NULL;
3628 }
3629
Johannes Berg194ff522013-12-30 23:12:37 +01003630 old_qos_map = sdata_dereference(sdata->qos_map, sdata);
Kyeyoon Park32db6b52013-12-16 23:04:43 -08003631 rcu_assign_pointer(sdata->qos_map, new_qos_map);
3632 if (old_qos_map)
3633 kfree_rcu(old_qos_map, rcu_head);
3634
3635 return 0;
3636}
3637
Jouni Malinen3b1700b2014-04-28 11:22:25 +03003638static int ieee80211_set_ap_chanwidth(struct wiphy *wiphy,
3639 struct net_device *dev,
3640 struct cfg80211_chan_def *chandef)
3641{
3642 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3643 int ret;
3644 u32 changed = 0;
3645
3646 ret = ieee80211_vif_change_bandwidth(sdata, chandef, &changed);
3647 if (ret == 0)
3648 ieee80211_bss_info_change_notify(sdata, changed);
3649
3650 return ret;
3651}
3652
Johannes Berg02219b32014-10-07 10:38:50 +03003653static int ieee80211_add_tx_ts(struct wiphy *wiphy, struct net_device *dev,
3654 u8 tsid, const u8 *peer, u8 up,
3655 u16 admitted_time)
3656{
3657 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3658 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3659 int ac = ieee802_1d_to_ac[up];
3660
3661 if (sdata->vif.type != NL80211_IFTYPE_STATION)
3662 return -EOPNOTSUPP;
3663
3664 if (!(sdata->wmm_acm & BIT(up)))
3665 return -EINVAL;
3666
3667 if (ifmgd->tx_tspec[ac].admitted_time)
3668 return -EBUSY;
3669
3670 if (admitted_time) {
3671 ifmgd->tx_tspec[ac].admitted_time = 32 * admitted_time;
3672 ifmgd->tx_tspec[ac].tsid = tsid;
3673 ifmgd->tx_tspec[ac].up = up;
3674 }
3675
3676 return 0;
3677}
3678
3679static int ieee80211_del_tx_ts(struct wiphy *wiphy, struct net_device *dev,
3680 u8 tsid, const u8 *peer)
3681{
3682 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3683 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3684 struct ieee80211_local *local = wiphy_priv(wiphy);
3685 int ac;
3686
3687 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
3688 struct ieee80211_sta_tx_tspec *tx_tspec = &ifmgd->tx_tspec[ac];
3689
3690 /* skip unused entries */
3691 if (!tx_tspec->admitted_time)
3692 continue;
3693
3694 if (tx_tspec->tsid != tsid)
3695 continue;
3696
3697 /* due to this new packets will be reassigned to non-ACM ACs */
3698 tx_tspec->up = -1;
3699
3700 /* Make sure that all packets have been sent to avoid to
3701 * restore the QoS params on packets that are still on the
3702 * queues.
3703 */
3704 synchronize_net();
Emmanuel Grumbach3b24f4c2015-01-07 15:42:39 +02003705 ieee80211_flush_queues(local, sdata, false);
Johannes Berg02219b32014-10-07 10:38:50 +03003706
3707 /* restore the normal QoS parameters
3708 * (unconditionally to avoid races)
3709 */
3710 tx_tspec->action = TX_TSPEC_ACTION_STOP_DOWNGRADE;
3711 tx_tspec->downgraded = false;
3712 ieee80211_sta_handle_tspec_ac_params(sdata);
3713
3714 /* finally clear all the data */
3715 memset(tx_tspec, 0, sizeof(*tx_tspec));
3716
3717 return 0;
3718 }
3719
3720 return -ENOENT;
3721}
3722
Johannes Berg8a47cea2014-01-20 23:55:44 +01003723const struct cfg80211_ops mac80211_config_ops = {
Jiri Bencf0706e82007-05-05 11:45:53 -07003724 .add_virtual_intf = ieee80211_add_iface,
3725 .del_virtual_intf = ieee80211_del_iface,
Johannes Berg42613db2007-09-28 21:52:27 +02003726 .change_virtual_intf = ieee80211_change_iface,
Johannes Bergf142c6b2012-06-18 20:07:15 +02003727 .start_p2p_device = ieee80211_start_p2p_device,
3728 .stop_p2p_device = ieee80211_stop_p2p_device,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01003729 .add_key = ieee80211_add_key,
3730 .del_key = ieee80211_del_key,
Johannes Berg62da92f2007-12-19 02:03:31 +01003731 .get_key = ieee80211_get_key,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01003732 .set_default_key = ieee80211_config_default_key,
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02003733 .set_default_mgmt_key = ieee80211_config_default_mgmt_key,
Johannes Berg88600202012-02-13 15:17:18 +01003734 .start_ap = ieee80211_start_ap,
3735 .change_beacon = ieee80211_change_beacon,
3736 .stop_ap = ieee80211_stop_ap,
Johannes Berg4fd69312007-12-19 02:03:35 +01003737 .add_station = ieee80211_add_station,
3738 .del_station = ieee80211_del_station,
3739 .change_station = ieee80211_change_station,
Johannes Berg7bbdd2d2007-12-19 02:03:37 +01003740 .get_station = ieee80211_get_station,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003741 .dump_station = ieee80211_dump_station,
Holger Schurig12897232010-04-19 10:23:57 +02003742 .dump_survey = ieee80211_dump_survey,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003743#ifdef CONFIG_MAC80211_MESH
3744 .add_mpath = ieee80211_add_mpath,
3745 .del_mpath = ieee80211_del_mpath,
3746 .change_mpath = ieee80211_change_mpath,
3747 .get_mpath = ieee80211_get_mpath,
3748 .dump_mpath = ieee80211_dump_mpath,
Henning Roggea2db2ed2014-09-12 08:58:50 +02003749 .get_mpp = ieee80211_get_mpp,
3750 .dump_mpp = ieee80211_dump_mpp,
Javier Cardona24bdd9f2010-12-16 17:37:48 -08003751 .update_mesh_config = ieee80211_update_mesh_config,
3752 .get_mesh_config = ieee80211_get_mesh_config,
Johannes Berg29cbe682010-12-03 09:20:44 +01003753 .join_mesh = ieee80211_join_mesh,
3754 .leave_mesh = ieee80211_leave_mesh,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003755#endif
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003756 .join_ocb = ieee80211_join_ocb,
3757 .leave_ocb = ieee80211_leave_ocb,
Jouni Malinen9f1ba902008-08-07 20:07:01 +03003758 .change_bss = ieee80211_change_bss,
Jouni Malinen31888482008-10-30 16:59:24 +02003759 .set_txq_params = ieee80211_set_txq_params,
Johannes Berge8c9bd52012-06-06 08:18:22 +02003760 .set_monitor_channel = ieee80211_set_monitor_channel,
Bob Copeland665af4f2009-01-19 11:20:53 -05003761 .suspend = ieee80211_suspend,
3762 .resume = ieee80211_resume,
Johannes Berg2a519312009-02-10 21:25:55 +01003763 .scan = ieee80211_scan,
Luciano Coelho79f460c2011-05-11 17:09:36 +03003764 .sched_scan_start = ieee80211_sched_scan_start,
3765 .sched_scan_stop = ieee80211_sched_scan_stop,
Jouni Malinen636a5d32009-03-19 13:39:22 +02003766 .auth = ieee80211_auth,
3767 .assoc = ieee80211_assoc,
3768 .deauth = ieee80211_deauth,
3769 .disassoc = ieee80211_disassoc,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02003770 .join_ibss = ieee80211_join_ibss,
3771 .leave_ibss = ieee80211_leave_ibss,
Antonio Quartulli391e53e2012-11-02 13:27:49 +01003772 .set_mcast_rate = ieee80211_set_mcast_rate,
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02003773 .set_wiphy_params = ieee80211_set_wiphy_params,
Johannes Berg7643a2c2009-06-02 13:01:39 +02003774 .set_tx_power = ieee80211_set_tx_power,
3775 .get_tx_power = ieee80211_get_tx_power,
Johannes Bergab737a42009-07-01 21:26:58 +02003776 .set_wds_peer = ieee80211_set_wds_peer,
Johannes Berg1f87f7d2009-06-02 13:01:41 +02003777 .rfkill_poll = ieee80211_rfkill_poll,
Johannes Bergaff89a92009-07-01 21:26:51 +02003778 CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd)
Wey-Yi Guy71063f02011-05-20 09:05:54 -07003779 CFG80211_TESTMODE_DUMP(ieee80211_testmode_dump)
Johannes Bergbc92afd2009-07-01 21:26:57 +02003780 .set_power_mgmt = ieee80211_set_power_mgmt,
Johannes Berg99303802009-07-01 21:26:59 +02003781 .set_bitrate_mask = ieee80211_set_bitrate_mask,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01003782 .remain_on_channel = ieee80211_remain_on_channel,
3783 .cancel_remain_on_channel = ieee80211_cancel_remain_on_channel,
Johannes Berg2e161f72010-08-12 15:38:38 +02003784 .mgmt_tx = ieee80211_mgmt_tx,
Johannes Bergf30221e2010-11-25 10:02:30 +01003785 .mgmt_tx_cancel_wait = ieee80211_mgmt_tx_cancel_wait,
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02003786 .set_cqm_rssi_config = ieee80211_set_cqm_rssi_config,
Johannes Berg7be50862010-10-13 12:06:24 +02003787 .mgmt_frame_register = ieee80211_mgmt_frame_register,
Bruno Randolf15d96752010-11-10 12:50:56 +09003788 .set_antenna = ieee80211_set_antenna,
3789 .get_antenna = ieee80211_get_antenna,
Johannes Bergc68f4b82011-07-05 16:35:41 +02003790 .set_rekey_data = ieee80211_set_rekey_data,
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003791 .tdls_oper = ieee80211_tdls_oper,
3792 .tdls_mgmt = ieee80211_tdls_mgmt,
Arik Nemtsova7a6bdd2014-11-09 18:50:19 +02003793 .tdls_channel_switch = ieee80211_tdls_channel_switch,
3794 .tdls_cancel_channel_switch = ieee80211_tdls_cancel_channel_switch,
Johannes Berg06500732011-11-04 11:18:16 +01003795 .probe_client = ieee80211_probe_client,
Simon Wunderlichb53be792011-11-18 14:20:44 +01003796 .set_noack_map = ieee80211_set_noack_map,
Johannes Berg6d525632012-04-04 15:05:25 +02003797#ifdef CONFIG_PM
3798 .set_wakeup = ieee80211_set_wakeup,
3799#endif
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003800 .get_channel = ieee80211_cfg_get_channel,
Simon Wunderlich164eb022013-02-08 18:16:20 +01003801 .start_radar_detection = ieee80211_start_radar_detection,
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003802 .channel_switch = ieee80211_channel_switch,
Kyeyoon Park32db6b52013-12-16 23:04:43 -08003803 .set_qos_map = ieee80211_set_qos_map,
Jouni Malinen3b1700b2014-04-28 11:22:25 +03003804 .set_ap_chanwidth = ieee80211_set_ap_chanwidth,
Johannes Berg02219b32014-10-07 10:38:50 +03003805 .add_tx_ts = ieee80211_add_tx_ts,
3806 .del_tx_ts = ieee80211_del_tx_ts,
Jiri Bencf0706e82007-05-05 11:45:53 -07003807};