blob: e01cea3b9043e6bfca6e7bb8b4015db2c35e2523 [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:
Jouni Malinen8ade5382015-01-24 19:52:09 +0200168 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
169 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200170 case WLAN_CIPHER_SUITE_GCMP:
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200171 case WLAN_CIPHER_SUITE_GCMP_256:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200172 break;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100173 default:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200174 cs = ieee80211_cs_get(local, params->cipher, sdata->vif.type);
Johannes Berg97359d12010-08-10 09:46:38 +0200175 break;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100176 }
177
Johannes Berg97359d12010-08-10 09:46:38 +0200178 key = ieee80211_key_alloc(params->cipher, key_idx, params->key_len,
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200179 params->key, params->seq_len, params->seq,
180 cs);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100181 if (IS_ERR(key))
182 return PTR_ERR(key);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100183
Johannes Berge31b8212010-10-05 19:39:30 +0200184 if (pairwise)
185 key->conf.flags |= IEEE80211_KEY_FLAG_PAIRWISE;
186
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200187 mutex_lock(&local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200188
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100189 if (mac_addr) {
Thomas Pedersenff973af2011-05-03 16:57:12 -0700190 if (ieee80211_vif_is_mesh(&sdata->vif))
191 sta = sta_info_get(sdata, mac_addr);
192 else
193 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berg1626e0f2013-01-11 14:34:25 +0100194 /*
195 * The ASSOC test makes sure the driver is ready to
196 * receive the key. When wpa_supplicant has roamed
197 * using FT, it attempts to set the key before
198 * association has completed, this rejects that attempt
Stephen Hemmingerd070f912014-10-29 22:55:58 -0700199 * so it will set the key again after association.
Johannes Berg1626e0f2013-01-11 14:34:25 +0100200 *
201 * TODO: accept the key if we have a station entry and
202 * add it to the device after the station.
203 */
204 if (!sta || !test_sta_flag(sta, WLAN_STA_ASSOC)) {
Johannes Berg79cf2df2013-03-06 22:53:52 +0100205 ieee80211_key_free_unused(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200206 err = -ENOENT;
207 goto out_unlock;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100208 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100209 }
210
Johannes Berge548c492012-09-04 17:08:23 +0200211 switch (sdata->vif.type) {
212 case NL80211_IFTYPE_STATION:
213 if (sdata->u.mgd.mfp != IEEE80211_MFP_DISABLED)
214 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
215 break;
216 case NL80211_IFTYPE_AP:
217 case NL80211_IFTYPE_AP_VLAN:
218 /* Keys without a station are used for TX only */
219 if (key->sta && test_sta_flag(key->sta, WLAN_STA_MFP))
220 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
221 break;
222 case NL80211_IFTYPE_ADHOC:
223 /* no MFP (yet) */
224 break;
225 case NL80211_IFTYPE_MESH_POINT:
226#ifdef CONFIG_MAC80211_MESH
227 if (sdata->u.mesh.security != IEEE80211_MESH_SEC_NONE)
228 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
229 break;
230#endif
231 case NL80211_IFTYPE_WDS:
232 case NL80211_IFTYPE_MONITOR:
233 case NL80211_IFTYPE_P2P_DEVICE:
234 case NL80211_IFTYPE_UNSPECIFIED:
235 case NUM_NL80211_IFTYPES:
236 case NL80211_IFTYPE_P2P_CLIENT:
237 case NL80211_IFTYPE_P2P_GO:
Rostislav Lisovy6e0bd6c2014-11-03 10:33:18 +0100238 case NL80211_IFTYPE_OCB:
Johannes Berge548c492012-09-04 17:08:23 +0200239 /* shouldn't happen */
240 WARN_ON_ONCE(1);
241 break;
242 }
243
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200244 if (sta)
245 sta->cipher_scheme = cs;
246
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300247 err = ieee80211_key_link(key, sdata, sta);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100248
Johannes Berg3b967662008-04-08 17:56:52 +0200249 out_unlock:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200250 mutex_unlock(&local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200251
252 return err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100253}
254
255static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berge31b8212010-10-05 19:39:30 +0200256 u8 key_idx, bool pairwise, const u8 *mac_addr)
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100257{
Johannes Berg5c0c3642011-05-12 14:31:49 +0200258 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
259 struct ieee80211_local *local = sdata->local;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100260 struct sta_info *sta;
Johannes Berg5c0c3642011-05-12 14:31:49 +0200261 struct ieee80211_key *key = NULL;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100262 int ret;
263
Johannes Berg5c0c3642011-05-12 14:31:49 +0200264 mutex_lock(&local->sta_mtx);
265 mutex_lock(&local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200266
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100267 if (mac_addr) {
Johannes Berg3b967662008-04-08 17:56:52 +0200268 ret = -ENOENT;
269
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100270 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100271 if (!sta)
Johannes Berg3b967662008-04-08 17:56:52 +0200272 goto out_unlock;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100273
Johannes Berg5c0c3642011-05-12 14:31:49 +0200274 if (pairwise)
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200275 key = key_mtx_dereference(local, sta->ptk[key_idx]);
Johannes Berg5c0c3642011-05-12 14:31:49 +0200276 else
Johannes Berg40b275b2011-05-13 14:15:49 +0200277 key = key_mtx_dereference(local, sta->gtk[key_idx]);
Johannes Berg5c0c3642011-05-12 14:31:49 +0200278 } else
Johannes Berg40b275b2011-05-13 14:15:49 +0200279 key = key_mtx_dereference(local, sdata->keys[key_idx]);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100280
Johannes Berg5c0c3642011-05-12 14:31:49 +0200281 if (!key) {
Johannes Berg3b967662008-04-08 17:56:52 +0200282 ret = -ENOENT;
283 goto out_unlock;
284 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100285
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100286 ieee80211_key_free(key, true);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100287
Johannes Berg3b967662008-04-08 17:56:52 +0200288 ret = 0;
289 out_unlock:
Johannes Berg5c0c3642011-05-12 14:31:49 +0200290 mutex_unlock(&local->key_mtx);
291 mutex_unlock(&local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200292
293 return ret;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100294}
295
Johannes Berg62da92f2007-12-19 02:03:31 +0100296static int ieee80211_get_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berge31b8212010-10-05 19:39:30 +0200297 u8 key_idx, bool pairwise, const u8 *mac_addr,
298 void *cookie,
Johannes Berg62da92f2007-12-19 02:03:31 +0100299 void (*callback)(void *cookie,
300 struct key_params *params))
301{
Johannes Berg14db74b2008-07-29 13:22:52 +0200302 struct ieee80211_sub_if_data *sdata;
Johannes Berg62da92f2007-12-19 02:03:31 +0100303 struct sta_info *sta = NULL;
304 u8 seq[6] = {0};
305 struct key_params params;
Johannes Berge31b8212010-10-05 19:39:30 +0200306 struct ieee80211_key *key = NULL;
Johannes Bergaba83a0b2011-07-06 21:59:39 +0200307 u64 pn64;
Johannes Berg62da92f2007-12-19 02:03:31 +0100308 u32 iv32;
309 u16 iv16;
310 int err = -ENOENT;
311
Johannes Berg14db74b2008-07-29 13:22:52 +0200312 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
313
Johannes Berg3b967662008-04-08 17:56:52 +0200314 rcu_read_lock();
315
Johannes Berg62da92f2007-12-19 02:03:31 +0100316 if (mac_addr) {
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100317 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berg62da92f2007-12-19 02:03:31 +0100318 if (!sta)
319 goto out;
320
Max Stepanov354e1592013-12-08 13:30:52 +0200321 if (pairwise && key_idx < NUM_DEFAULT_KEYS)
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200322 key = rcu_dereference(sta->ptk[key_idx]);
Max Stepanov31f1f4e2013-12-08 13:31:29 +0200323 else if (!pairwise &&
324 key_idx < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
Johannes Berga3836e02011-05-12 15:11:37 +0200325 key = rcu_dereference(sta->gtk[key_idx]);
Johannes Berg62da92f2007-12-19 02:03:31 +0100326 } else
Johannes Berga3836e02011-05-12 15:11:37 +0200327 key = rcu_dereference(sdata->keys[key_idx]);
Johannes Berg62da92f2007-12-19 02:03:31 +0100328
329 if (!key)
330 goto out;
331
332 memset(&params, 0, sizeof(params));
333
Johannes Berg97359d12010-08-10 09:46:38 +0200334 params.cipher = key->conf.cipher;
Johannes Berg62da92f2007-12-19 02:03:31 +0100335
Johannes Berg97359d12010-08-10 09:46:38 +0200336 switch (key->conf.cipher) {
337 case WLAN_CIPHER_SUITE_TKIP:
Harvey Harrisonb0f76b32008-05-14 16:26:19 -0700338 iv32 = key->u.tkip.tx.iv32;
339 iv16 = key->u.tkip.tx.iv16;
Johannes Berg62da92f2007-12-19 02:03:31 +0100340
Johannes Berg24487982009-04-23 18:52:52 +0200341 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
342 drv_get_tkip_seq(sdata->local,
343 key->conf.hw_key_idx,
344 &iv32, &iv16);
Johannes Berg62da92f2007-12-19 02:03:31 +0100345
346 seq[0] = iv16 & 0xff;
347 seq[1] = (iv16 >> 8) & 0xff;
348 seq[2] = iv32 & 0xff;
349 seq[3] = (iv32 >> 8) & 0xff;
350 seq[4] = (iv32 >> 16) & 0xff;
351 seq[5] = (iv32 >> 24) & 0xff;
352 params.seq = seq;
353 params.seq_len = 6;
354 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200355 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200356 case WLAN_CIPHER_SUITE_CCMP_256:
Johannes Bergaba83a0b2011-07-06 21:59:39 +0200357 pn64 = atomic64_read(&key->u.ccmp.tx_pn);
358 seq[0] = pn64;
359 seq[1] = pn64 >> 8;
360 seq[2] = pn64 >> 16;
361 seq[3] = pn64 >> 24;
362 seq[4] = pn64 >> 32;
363 seq[5] = pn64 >> 40;
Johannes Berg62da92f2007-12-19 02:03:31 +0100364 params.seq = seq;
365 params.seq_len = 6;
366 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200367 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +0200368 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Johannes Berg75396ae2011-07-06 22:00:35 +0200369 pn64 = atomic64_read(&key->u.aes_cmac.tx_pn);
370 seq[0] = pn64;
371 seq[1] = pn64 >> 8;
372 seq[2] = pn64 >> 16;
373 seq[3] = pn64 >> 24;
374 seq[4] = pn64 >> 32;
375 seq[5] = pn64 >> 40;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200376 params.seq = seq;
377 params.seq_len = 6;
378 break;
Jouni Malinen8ade5382015-01-24 19:52:09 +0200379 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
380 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
381 pn64 = atomic64_read(&key->u.aes_gmac.tx_pn);
382 seq[0] = pn64;
383 seq[1] = pn64 >> 8;
384 seq[2] = pn64 >> 16;
385 seq[3] = pn64 >> 24;
386 seq[4] = pn64 >> 32;
387 seq[5] = pn64 >> 40;
388 params.seq = seq;
389 params.seq_len = 6;
390 break;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200391 case WLAN_CIPHER_SUITE_GCMP:
392 case WLAN_CIPHER_SUITE_GCMP_256:
393 pn64 = atomic64_read(&key->u.gcmp.tx_pn);
394 seq[0] = pn64;
395 seq[1] = pn64 >> 8;
396 seq[2] = pn64 >> 16;
397 seq[3] = pn64 >> 24;
398 seq[4] = pn64 >> 32;
399 seq[5] = pn64 >> 40;
400 params.seq = seq;
401 params.seq_len = 6;
402 break;
Johannes Berg62da92f2007-12-19 02:03:31 +0100403 }
404
405 params.key = key->conf.key;
406 params.key_len = key->conf.keylen;
407
408 callback(cookie, &params);
409 err = 0;
410
411 out:
Johannes Berg3b967662008-04-08 17:56:52 +0200412 rcu_read_unlock();
Johannes Berg62da92f2007-12-19 02:03:31 +0100413 return err;
414}
415
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100416static int ieee80211_config_default_key(struct wiphy *wiphy,
417 struct net_device *dev,
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100418 u8 key_idx, bool uni,
419 bool multi)
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100420{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200421 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100422
Johannes Bergf7e01042010-12-09 19:49:02 +0100423 ieee80211_set_default_key(sdata, key_idx, uni, multi);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100424
425 return 0;
426}
427
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200428static int ieee80211_config_default_mgmt_key(struct wiphy *wiphy,
429 struct net_device *dev,
430 u8 key_idx)
431{
Johannes Berg66c52422010-07-22 13:58:51 +0200432 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200433
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200434 ieee80211_set_default_mgmt_key(sdata, key_idx);
435
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200436 return 0;
437}
438
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800439void sta_set_rate_info_tx(struct sta_info *sta,
440 const struct ieee80211_tx_rate *rate,
441 struct rate_info *rinfo)
442{
443 rinfo->flags = 0;
Johannes Berg8bc83c22012-11-09 18:38:32 +0100444 if (rate->flags & IEEE80211_TX_RC_MCS) {
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800445 rinfo->flags |= RATE_INFO_FLAGS_MCS;
Johannes Berg8bc83c22012-11-09 18:38:32 +0100446 rinfo->mcs = rate->idx;
447 } else if (rate->flags & IEEE80211_TX_RC_VHT_MCS) {
448 rinfo->flags |= RATE_INFO_FLAGS_VHT_MCS;
449 rinfo->mcs = ieee80211_rate_get_vht_mcs(rate);
450 rinfo->nss = ieee80211_rate_get_vht_nss(rate);
451 } else {
452 struct ieee80211_supported_band *sband;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200453 int shift = ieee80211_vif_get_shift(&sta->sdata->vif);
454 u16 brate;
455
Johannes Berg8bc83c22012-11-09 18:38:32 +0100456 sband = sta->local->hw.wiphy->bands[
457 ieee80211_get_sdata_band(sta->sdata)];
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200458 brate = sband->bitrates[rate->idx].bitrate;
459 rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift);
Johannes Berg8bc83c22012-11-09 18:38:32 +0100460 }
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800461 if (rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
Johannes Bergb51f3be2015-01-15 16:14:02 +0100462 rinfo->bw = RATE_INFO_BW_40;
463 else if (rate->flags & IEEE80211_TX_RC_80_MHZ_WIDTH)
464 rinfo->bw = RATE_INFO_BW_80;
465 else if (rate->flags & IEEE80211_TX_RC_160_MHZ_WIDTH)
466 rinfo->bw = RATE_INFO_BW_160;
467 else
468 rinfo->bw = RATE_INFO_BW_20;
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800469 if (rate->flags & IEEE80211_TX_RC_SHORT_GI)
470 rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800471}
472
Saravana003e6762012-11-28 18:29:38 +0530473void sta_set_rate_info_rx(struct sta_info *sta, struct rate_info *rinfo)
474{
475 rinfo->flags = 0;
476
477 if (sta->last_rx_rate_flag & RX_FLAG_HT) {
478 rinfo->flags |= RATE_INFO_FLAGS_MCS;
479 rinfo->mcs = sta->last_rx_rate_idx;
480 } else if (sta->last_rx_rate_flag & RX_FLAG_VHT) {
481 rinfo->flags |= RATE_INFO_FLAGS_VHT_MCS;
482 rinfo->nss = sta->last_rx_rate_vht_nss;
483 rinfo->mcs = sta->last_rx_rate_idx;
484 } else {
485 struct ieee80211_supported_band *sband;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200486 int shift = ieee80211_vif_get_shift(&sta->sdata->vif);
487 u16 brate;
Saravana003e6762012-11-28 18:29:38 +0530488
489 sband = sta->local->hw.wiphy->bands[
490 ieee80211_get_sdata_band(sta->sdata)];
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200491 brate = sband->bitrates[sta->last_rx_rate_idx].bitrate;
492 rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift);
Saravana003e6762012-11-28 18:29:38 +0530493 }
494
Saravana003e6762012-11-28 18:29:38 +0530495 if (sta->last_rx_rate_flag & RX_FLAG_SHORT_GI)
496 rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
Johannes Bergb51f3be2015-01-15 16:14:02 +0100497
498 if (sta->last_rx_rate_flag & RX_FLAG_5MHZ)
499 rinfo->bw = RATE_INFO_BW_5;
500 else if (sta->last_rx_rate_flag & RX_FLAG_10MHZ)
501 rinfo->bw = RATE_INFO_BW_10;
502 else if (sta->last_rx_rate_flag & RX_FLAG_40MHZ)
503 rinfo->bw = RATE_INFO_BW_40;
504 else if (sta->last_rx_rate_vht_flag & RX_VHT_FLAG_80MHZ)
505 rinfo->bw = RATE_INFO_BW_80;
506 else if (sta->last_rx_rate_vht_flag & RX_VHT_FLAG_160MHZ)
507 rinfo->bw = RATE_INFO_BW_160;
508 else
509 rinfo->bw = RATE_INFO_BW_20;
Saravana003e6762012-11-28 18:29:38 +0530510}
511
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100512static int ieee80211_dump_station(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +0200513 int idx, u8 *mac, struct station_info *sinfo)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100514{
Johannes Berg3b53fde82009-11-16 12:00:37 +0100515 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300516 struct ieee80211_local *local = sdata->local;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100517 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100518 int ret = -ENOENT;
519
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300520 mutex_lock(&local->sta_mtx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100521
Johannes Berg3b53fde82009-11-16 12:00:37 +0100522 sta = sta_info_get_by_idx(sdata, idx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100523 if (sta) {
524 ret = 0;
Johannes Berg17741cd2008-09-11 00:02:02 +0200525 memcpy(mac, sta->sta.addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100526 sta_set_sinfo(sta, sinfo);
527 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100528
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300529 mutex_unlock(&local->sta_mtx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100530
Johannes Bergd0709a62008-02-25 16:27:46 +0100531 return ret;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100532}
533
Holger Schurig12897232010-04-19 10:23:57 +0200534static int ieee80211_dump_survey(struct wiphy *wiphy, struct net_device *dev,
535 int idx, struct survey_info *survey)
536{
537 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
538
Holger Schurig12897232010-04-19 10:23:57 +0200539 return drv_get_survey(local, idx, survey);
540}
541
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100542static int ieee80211_get_station(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +0200543 const u8 *mac, struct station_info *sinfo)
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100544{
Johannes Bergabe60632009-11-25 17:46:18 +0100545 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300546 struct ieee80211_local *local = sdata->local;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100547 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100548 int ret = -ENOENT;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100549
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300550 mutex_lock(&local->sta_mtx);
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100551
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100552 sta = sta_info_get_bss(sdata, mac);
Johannes Bergd0709a62008-02-25 16:27:46 +0100553 if (sta) {
554 ret = 0;
555 sta_set_sinfo(sta, sinfo);
556 }
557
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300558 mutex_unlock(&local->sta_mtx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100559
560 return ret;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100561}
562
Johannes Berge8c9bd52012-06-06 08:18:22 +0200563static int ieee80211_set_monitor_channel(struct wiphy *wiphy,
Johannes Berg683b6d32012-11-08 21:25:48 +0100564 struct cfg80211_chan_def *chandef)
Johannes Berge8c9bd52012-06-06 08:18:22 +0200565{
Johannes Berg55de9082012-07-26 17:24:39 +0200566 struct ieee80211_local *local = wiphy_priv(wiphy);
567 struct ieee80211_sub_if_data *sdata;
568 int ret = 0;
569
Johannes Berg4bf88532012-11-09 11:39:59 +0100570 if (cfg80211_chandef_identical(&local->monitor_chandef, chandef))
Johannes Berg55de9082012-07-26 17:24:39 +0200571 return 0;
572
Johannes Berg34a37402013-12-18 09:43:33 +0100573 mutex_lock(&local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +0200574 mutex_lock(&local->iflist_mtx);
575 if (local->use_chanctx) {
576 sdata = rcu_dereference_protected(
577 local->monitor_sdata,
578 lockdep_is_held(&local->iflist_mtx));
579 if (sdata) {
580 ieee80211_vif_release_channel(sdata);
Johannes Berg4bf88532012-11-09 11:39:59 +0100581 ret = ieee80211_vif_use_channel(sdata, chandef,
Johannes Berg55de9082012-07-26 17:24:39 +0200582 IEEE80211_CHANCTX_EXCLUSIVE);
583 }
584 } else if (local->open_count == local->monitors) {
Karl Beldan675a0b02013-03-25 16:26:57 +0100585 local->_oper_chandef = *chandef;
Johannes Berg55de9082012-07-26 17:24:39 +0200586 ieee80211_hw_config(local, 0);
587 }
588
Johannes Berg4bf88532012-11-09 11:39:59 +0100589 if (ret == 0)
590 local->monitor_chandef = *chandef;
Johannes Berg55de9082012-07-26 17:24:39 +0200591 mutex_unlock(&local->iflist_mtx);
Johannes Berg34a37402013-12-18 09:43:33 +0100592 mutex_unlock(&local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +0200593
594 return ret;
Johannes Berge8c9bd52012-06-06 08:18:22 +0200595}
596
Arik Nemtsov02945822011-11-10 11:28:57 +0200597static int ieee80211_set_probe_resp(struct ieee80211_sub_if_data *sdata,
Michal Kazioraf296bd2014-06-05 14:21:36 +0200598 const u8 *resp, size_t resp_len,
599 const struct ieee80211_csa_settings *csa)
Arik Nemtsov02945822011-11-10 11:28:57 +0200600{
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300601 struct probe_resp *new, *old;
Arik Nemtsov02945822011-11-10 11:28:57 +0200602
603 if (!resp || !resp_len)
Sujith Manoharanaba4e6f2012-08-22 14:21:07 +0530604 return 1;
Arik Nemtsov02945822011-11-10 11:28:57 +0200605
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100606 old = sdata_dereference(sdata->u.ap.probe_resp, sdata);
Arik Nemtsov02945822011-11-10 11:28:57 +0200607
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300608 new = kzalloc(sizeof(struct probe_resp) + resp_len, GFP_KERNEL);
Arik Nemtsov02945822011-11-10 11:28:57 +0200609 if (!new)
610 return -ENOMEM;
611
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300612 new->len = resp_len;
613 memcpy(new->data, resp, resp_len);
Arik Nemtsov02945822011-11-10 11:28:57 +0200614
Michal Kazioraf296bd2014-06-05 14:21:36 +0200615 if (csa)
616 memcpy(new->csa_counter_offsets, csa->counter_offsets_presp,
617 csa->n_counter_offsets_presp *
618 sizeof(new->csa_counter_offsets[0]));
619
Arik Nemtsov02945822011-11-10 11:28:57 +0200620 rcu_assign_pointer(sdata->u.ap.probe_resp, new);
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300621 if (old)
622 kfree_rcu(old, rcu_head);
Arik Nemtsov02945822011-11-10 11:28:57 +0200623
624 return 0;
625}
626
Luciano Coelho0ae07962013-12-08 09:42:25 +0200627static int ieee80211_assign_beacon(struct ieee80211_sub_if_data *sdata,
Michal Kazioraf296bd2014-06-05 14:21:36 +0200628 struct cfg80211_beacon_data *params,
629 const struct ieee80211_csa_settings *csa)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100630{
631 struct beacon_data *new, *old;
632 int new_head_len, new_tail_len;
Johannes Berg88600202012-02-13 15:17:18 +0100633 int size, err;
634 u32 changed = BSS_CHANGED_BEACON;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100635
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100636 old = sdata_dereference(sdata->u.ap.beacon, sdata);
637
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100638
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100639 /* Need to have a beacon head if we don't have one yet */
640 if (!params->head && !old)
Johannes Berg88600202012-02-13 15:17:18 +0100641 return -EINVAL;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100642
643 /* new or old head? */
644 if (params->head)
645 new_head_len = params->head_len;
646 else
647 new_head_len = old->head_len;
648
649 /* new or old tail? */
650 if (params->tail || !old)
651 /* params->tail_len will be zero for !params->tail */
652 new_tail_len = params->tail_len;
653 else
654 new_tail_len = old->tail_len;
655
656 size = sizeof(*new) + new_head_len + new_tail_len;
657
658 new = kzalloc(size, GFP_KERNEL);
659 if (!new)
660 return -ENOMEM;
661
662 /* start filling the new info now */
663
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100664 /*
665 * pointers go into the block we allocated,
666 * memory is | beacon_data | head | tail |
667 */
668 new->head = ((u8 *) new) + sizeof(*new);
669 new->tail = new->head + new_head_len;
670 new->head_len = new_head_len;
671 new->tail_len = new_tail_len;
672
Michal Kazioraf296bd2014-06-05 14:21:36 +0200673 if (csa) {
674 new->csa_current_counter = csa->count;
675 memcpy(new->csa_counter_offsets, csa->counter_offsets_beacon,
676 csa->n_counter_offsets_beacon *
677 sizeof(new->csa_counter_offsets[0]));
678 }
679
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100680 /* copy in head */
681 if (params->head)
682 memcpy(new->head, params->head, new_head_len);
683 else
684 memcpy(new->head, old->head, new_head_len);
685
686 /* copy in optional tail */
687 if (params->tail)
688 memcpy(new->tail, params->tail, new_tail_len);
689 else
690 if (old)
691 memcpy(new->tail, old->tail, new_tail_len);
692
Johannes Berg88600202012-02-13 15:17:18 +0100693 err = ieee80211_set_probe_resp(sdata, params->probe_resp,
Michal Kazioraf296bd2014-06-05 14:21:36 +0200694 params->probe_resp_len, csa);
Johannes Berg88600202012-02-13 15:17:18 +0100695 if (err < 0)
696 return err;
697 if (err == 0)
698 changed |= BSS_CHANGED_AP_PROBE_RESP;
Johannes Berg19885c42010-02-05 11:45:06 +0100699
Eric Dumazetcf778b02012-01-12 04:41:32 +0000700 rcu_assign_pointer(sdata->u.ap.beacon, new);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100701
Johannes Berg88600202012-02-13 15:17:18 +0100702 if (old)
703 kfree_rcu(old, rcu_head);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100704
Johannes Berg88600202012-02-13 15:17:18 +0100705 return changed;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100706}
707
Johannes Berg88600202012-02-13 15:17:18 +0100708static int ieee80211_start_ap(struct wiphy *wiphy, struct net_device *dev,
709 struct cfg80211_ap_settings *params)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100710{
Johannes Berg88600202012-02-13 15:17:18 +0100711 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg34a37402013-12-18 09:43:33 +0100712 struct ieee80211_local *local = sdata->local;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100713 struct beacon_data *old;
Johannes Berg665c93a2011-11-04 11:18:11 +0100714 struct ieee80211_sub_if_data *vlan;
Johannes Berg88600202012-02-13 15:17:18 +0100715 u32 changed = BSS_CHANGED_BEACON_INT |
716 BSS_CHANGED_BEACON_ENABLED |
717 BSS_CHANGED_BEACON |
Johannes Berg339afbf2012-11-14 15:21:17 +0100718 BSS_CHANGED_SSID |
Johannes Berg4bcc56b2014-11-13 11:23:53 +0100719 BSS_CHANGED_P2P_PS |
720 BSS_CHANGED_TXPOWER;
Johannes Berg88600202012-02-13 15:17:18 +0100721 int err;
Johannes Berg14db74b2008-07-29 13:22:52 +0200722
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100723 old = sdata_dereference(sdata->u.ap.beacon, sdata);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100724 if (old)
725 return -EALREADY;
726
Eliad Pellerf6993172014-09-10 14:07:35 +0300727 switch (params->smps_mode) {
728 case NL80211_SMPS_OFF:
729 sdata->smps_mode = IEEE80211_SMPS_OFF;
730 break;
731 case NL80211_SMPS_STATIC:
732 sdata->smps_mode = IEEE80211_SMPS_STATIC;
733 break;
734 case NL80211_SMPS_DYNAMIC:
735 sdata->smps_mode = IEEE80211_SMPS_DYNAMIC;
736 break;
737 default:
738 return -EINVAL;
739 }
Johannes Berg04ecd252012-09-11 14:34:12 +0200740 sdata->needed_rx_chains = sdata->local->rx_chains;
741
Johannes Berg34a37402013-12-18 09:43:33 +0100742 mutex_lock(&local->mtx);
Johannes Berg4bf88532012-11-09 11:39:59 +0100743 err = ieee80211_vif_use_channel(sdata, &params->chandef,
Johannes Berg55de9082012-07-26 17:24:39 +0200744 IEEE80211_CHANCTX_SHARED);
Michal Kazior4e141da2014-03-05 13:14:08 +0100745 if (!err)
746 ieee80211_vif_copy_chanctx_to_vlans(sdata, false);
Johannes Berg34a37402013-12-18 09:43:33 +0100747 mutex_unlock(&local->mtx);
Johannes Bergaa430da2012-05-16 23:50:18 +0200748 if (err)
749 return err;
750
Johannes Berg665c93a2011-11-04 11:18:11 +0100751 /*
752 * Apply control port protocol, this allows us to
753 * not encrypt dynamic WEP control frames.
754 */
755 sdata->control_port_protocol = params->crypto.control_port_ethertype;
756 sdata->control_port_no_encrypt = params->crypto.control_port_no_encrypt;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200757 sdata->encrypt_headroom = ieee80211_cs_headroom(sdata->local,
758 &params->crypto,
759 sdata->vif.type);
760
Johannes Berg665c93a2011-11-04 11:18:11 +0100761 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list) {
762 vlan->control_port_protocol =
763 params->crypto.control_port_ethertype;
764 vlan->control_port_no_encrypt =
765 params->crypto.control_port_no_encrypt;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200766 vlan->encrypt_headroom =
767 ieee80211_cs_headroom(sdata->local,
768 &params->crypto,
769 vlan->vif.type);
Johannes Berg665c93a2011-11-04 11:18:11 +0100770 }
771
Johannes Berg88600202012-02-13 15:17:18 +0100772 sdata->vif.bss_conf.beacon_int = params->beacon_interval;
773 sdata->vif.bss_conf.dtim_period = params->dtim_period;
Johannes Bergd6a83222012-12-14 14:06:28 +0100774 sdata->vif.bss_conf.enable_beacon = true;
Johannes Berg88600202012-02-13 15:17:18 +0100775
776 sdata->vif.bss_conf.ssid_len = params->ssid_len;
777 if (params->ssid_len)
778 memcpy(sdata->vif.bss_conf.ssid, params->ssid,
779 params->ssid_len);
780 sdata->vif.bss_conf.hidden_ssid =
781 (params->hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE);
782
Janusz Dziedzic67baf662013-03-21 15:47:56 +0100783 memset(&sdata->vif.bss_conf.p2p_noa_attr, 0,
784 sizeof(sdata->vif.bss_conf.p2p_noa_attr));
785 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow =
786 params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
787 if (params->p2p_opp_ps)
788 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
789 IEEE80211_P2P_OPPPS_ENABLE_BIT;
Johannes Berg339afbf2012-11-14 15:21:17 +0100790
Michal Kazioraf296bd2014-06-05 14:21:36 +0200791 err = ieee80211_assign_beacon(sdata, &params->beacon, NULL);
Emmanuel Grumbach0297ea12014-01-27 11:07:42 +0200792 if (err < 0) {
793 ieee80211_vif_release_channel(sdata);
Johannes Berg88600202012-02-13 15:17:18 +0100794 return err;
Emmanuel Grumbach0297ea12014-01-27 11:07:42 +0200795 }
Johannes Berg88600202012-02-13 15:17:18 +0100796 changed |= err;
797
Johannes Berg10416382012-10-19 15:44:42 +0200798 err = drv_start_ap(sdata->local, sdata);
799 if (err) {
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100800 old = sdata_dereference(sdata->u.ap.beacon, sdata);
801
Johannes Berg10416382012-10-19 15:44:42 +0200802 if (old)
803 kfree_rcu(old, rcu_head);
804 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
Emmanuel Grumbach0297ea12014-01-27 11:07:42 +0200805 ieee80211_vif_release_channel(sdata);
Johannes Berg10416382012-10-19 15:44:42 +0200806 return err;
807 }
808
Thomas Pedersen057d5f42013-12-19 10:25:15 -0800809 ieee80211_recalc_dtim(local, sdata);
Johannes Berg88600202012-02-13 15:17:18 +0100810 ieee80211_bss_info_change_notify(sdata, changed);
811
Johannes Berg3edaf3e2012-04-03 10:24:00 +0200812 netif_carrier_on(dev);
813 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
814 netif_carrier_on(vlan->dev);
815
Johannes Berg665c93a2011-11-04 11:18:11 +0100816 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100817}
818
Johannes Berg88600202012-02-13 15:17:18 +0100819static int ieee80211_change_beacon(struct wiphy *wiphy, struct net_device *dev,
820 struct cfg80211_beacon_data *params)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100821{
Johannes Berg14db74b2008-07-29 13:22:52 +0200822 struct ieee80211_sub_if_data *sdata;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100823 struct beacon_data *old;
Johannes Berg88600202012-02-13 15:17:18 +0100824 int err;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100825
Johannes Berg14db74b2008-07-29 13:22:52 +0200826 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Michal Kaziordbd72852014-01-29 07:56:21 +0100827 sdata_assert_lock(sdata);
Johannes Berg14db74b2008-07-29 13:22:52 +0200828
Simon Wunderlich73da7d52013-07-11 16:09:06 +0200829 /* don't allow changing the beacon while CSA is in place - offset
830 * of channel switch counter may change
831 */
832 if (sdata->vif.csa_active)
833 return -EBUSY;
834
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100835 old = sdata_dereference(sdata->u.ap.beacon, sdata);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100836 if (!old)
837 return -ENOENT;
838
Michal Kazioraf296bd2014-06-05 14:21:36 +0200839 err = ieee80211_assign_beacon(sdata, params, NULL);
Johannes Berg88600202012-02-13 15:17:18 +0100840 if (err < 0)
841 return err;
842 ieee80211_bss_info_change_notify(sdata, err);
843 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100844}
845
Johannes Berg88600202012-02-13 15:17:18 +0100846static int ieee80211_stop_ap(struct wiphy *wiphy, struct net_device *dev)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100847{
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200848 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
849 struct ieee80211_sub_if_data *vlan;
850 struct ieee80211_local *local = sdata->local;
851 struct beacon_data *old_beacon;
852 struct probe_resp *old_probe_resp;
Janusz Dziedzicd2859df2013-11-06 13:55:51 +0100853 struct cfg80211_chan_def chandef;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100854
Michal Kaziordbd72852014-01-29 07:56:21 +0100855 sdata_assert_lock(sdata);
856
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100857 old_beacon = sdata_dereference(sdata->u.ap.beacon, sdata);
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200858 if (!old_beacon)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100859 return -ENOENT;
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100860 old_probe_resp = sdata_dereference(sdata->u.ap.probe_resp, sdata);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100861
Simon Wunderlich73da7d52013-07-11 16:09:06 +0200862 /* abort any running channel switch */
Michal Kazior59af6922014-04-09 15:10:59 +0200863 mutex_lock(&local->mtx);
Simon Wunderlich73da7d52013-07-11 16:09:06 +0200864 sdata->vif.csa_active = false;
Luciano Coelhoa46992b2014-06-13 16:30:07 +0300865 if (sdata->csa_block_tx) {
866 ieee80211_wake_vif_queues(local, sdata,
867 IEEE80211_QUEUE_STOP_REASON_CSA);
868 sdata->csa_block_tx = false;
869 }
870
Michal Kazior59af6922014-04-09 15:10:59 +0200871 mutex_unlock(&local->mtx);
872
Simon Wunderlich1f3b8a22013-11-21 18:19:53 +0100873 kfree(sdata->u.ap.next_beacon);
874 sdata->u.ap.next_beacon = NULL;
875
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200876 /* turn off carrier for this interface and dependent VLANs */
Johannes Berg3edaf3e2012-04-03 10:24:00 +0200877 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
878 netif_carrier_off(vlan->dev);
879 netif_carrier_off(dev);
880
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200881 /* remove beacon and probe response */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000882 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200883 RCU_INIT_POINTER(sdata->u.ap.probe_resp, NULL);
884 kfree_rcu(old_beacon, rcu_head);
885 if (old_probe_resp)
886 kfree_rcu(old_probe_resp, rcu_head);
Emmanuel Grumbach8ffcc702014-01-23 14:28:16 +0200887 sdata->u.ap.driver_smps_mode = IEEE80211_SMPS_OFF;
Johannes Berg88600202012-02-13 15:17:18 +0100888
Johannes Berge7162512013-12-04 23:18:37 +0100889 __sta_info_flush(sdata, true);
Johannes Berg7907c7d2013-12-04 23:47:09 +0100890 ieee80211_free_keys(sdata, true);
Johannes Berg75de9112012-12-14 14:56:03 +0100891
Johannes Bergd6a83222012-12-14 14:06:28 +0100892 sdata->vif.bss_conf.enable_beacon = false;
Marek Puzyniak0eabccd2013-04-10 13:47:45 +0200893 sdata->vif.bss_conf.ssid_len = 0;
Johannes Bergd6a83222012-12-14 14:06:28 +0100894 clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED, &sdata->state);
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200895 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
Johannes Berg88600202012-02-13 15:17:18 +0100896
Simon Wunderlicha6b368f2013-06-11 10:44:39 +0200897 if (sdata->wdev.cac_started) {
Janusz Dziedzicd2859df2013-11-06 13:55:51 +0100898 chandef = sdata->vif.bss_conf.chandef;
Simon Wunderlicha6b368f2013-06-11 10:44:39 +0200899 cancel_delayed_work_sync(&sdata->dfs_cac_timer_work);
Janusz Dziedzicd2859df2013-11-06 13:55:51 +0100900 cfg80211_cac_event(sdata->dev, &chandef,
901 NL80211_RADAR_CAC_ABORTED,
Simon Wunderlicha6b368f2013-06-11 10:44:39 +0200902 GFP_KERNEL);
903 }
904
Johannes Berg10416382012-10-19 15:44:42 +0200905 drv_stop_ap(sdata->local, sdata);
906
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200907 /* free all potentially still buffered bcast frames */
908 local->total_ps_buffered -= skb_queue_len(&sdata->u.ap.ps.bc_buf);
909 skb_queue_purge(&sdata->u.ap.ps.bc_buf);
910
Johannes Berg34a37402013-12-18 09:43:33 +0100911 mutex_lock(&local->mtx);
Michal Kazior4e141da2014-03-05 13:14:08 +0100912 ieee80211_vif_copy_chanctx_to_vlans(sdata, true);
Johannes Berg55de9082012-07-26 17:24:39 +0200913 ieee80211_vif_release_channel(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +0100914 mutex_unlock(&local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +0200915
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200916 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100917}
918
Johannes Berg4fd69312007-12-19 02:03:35 +0100919/* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */
920struct iapp_layer2_update {
921 u8 da[ETH_ALEN]; /* broadcast */
922 u8 sa[ETH_ALEN]; /* STA addr */
923 __be16 len; /* 6 */
924 u8 dsap; /* 0 */
925 u8 ssap; /* 0 */
926 u8 control;
927 u8 xid_info[3];
Eric Dumazetbc105022010-06-03 03:21:52 -0700928} __packed;
Johannes Berg4fd69312007-12-19 02:03:35 +0100929
930static void ieee80211_send_layer2_update(struct sta_info *sta)
931{
932 struct iapp_layer2_update *msg;
933 struct sk_buff *skb;
934
935 /* Send Level 2 Update Frame to update forwarding tables in layer 2
936 * bridge devices */
937
938 skb = dev_alloc_skb(sizeof(*msg));
939 if (!skb)
940 return;
941 msg = (struct iapp_layer2_update *)skb_put(skb, sizeof(*msg));
942
943 /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID)
944 * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */
945
Johannes Berge83e6542012-07-13 16:23:07 +0200946 eth_broadcast_addr(msg->da);
Johannes Berg17741cd2008-09-11 00:02:02 +0200947 memcpy(msg->sa, sta->sta.addr, ETH_ALEN);
Johannes Berg4fd69312007-12-19 02:03:35 +0100948 msg->len = htons(6);
949 msg->dsap = 0;
950 msg->ssap = 0x01; /* NULL LSAP, CR Bit: Response */
951 msg->control = 0xaf; /* XID response lsb.1111F101.
952 * F=0 (no poll command; unsolicited frame) */
953 msg->xid_info[0] = 0x81; /* XID format identifier */
954 msg->xid_info[1] = 1; /* LLC types/classes: Type 1 LLC */
955 msg->xid_info[2] = 0; /* XID sender's receive window size (RW) */
956
Johannes Bergd0709a62008-02-25 16:27:46 +0100957 skb->dev = sta->sdata->dev;
958 skb->protocol = eth_type_trans(skb, sta->sdata->dev);
Johannes Berg4fd69312007-12-19 02:03:35 +0100959 memset(skb->cb, 0, sizeof(skb->cb));
John W. Linville06ee1c22010-07-19 11:52:59 -0400960 netif_rx_ni(skb);
Johannes Berg4fd69312007-12-19 02:03:35 +0100961}
962
Johannes Bergd582cff2012-10-26 17:53:44 +0200963static int sta_apply_auth_flags(struct ieee80211_local *local,
964 struct sta_info *sta,
965 u32 mask, u32 set)
966{
967 int ret;
968
969 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
970 set & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
971 !test_sta_flag(sta, WLAN_STA_AUTH)) {
972 ret = sta_info_move_state(sta, IEEE80211_STA_AUTH);
973 if (ret)
974 return ret;
975 }
976
977 if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
978 set & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
979 !test_sta_flag(sta, WLAN_STA_ASSOC)) {
Marek Puzyniakc23e31c2015-03-08 18:04:22 +0200980 /*
981 * When peer becomes associated, init rate control as
982 * well. Some drivers require rate control initialized
983 * before drv_sta_state() is called.
984 */
985 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER))
986 rate_control_rate_init(sta);
987
Johannes Bergd582cff2012-10-26 17:53:44 +0200988 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
989 if (ret)
990 return ret;
991 }
992
993 if (mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
994 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED))
995 ret = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
996 else if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
997 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
998 else
999 ret = 0;
1000 if (ret)
1001 return ret;
1002 }
1003
1004 if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
1005 !(set & BIT(NL80211_STA_FLAG_ASSOCIATED)) &&
1006 test_sta_flag(sta, WLAN_STA_ASSOC)) {
1007 ret = sta_info_move_state(sta, IEEE80211_STA_AUTH);
1008 if (ret)
1009 return ret;
1010 }
1011
1012 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
1013 !(set & BIT(NL80211_STA_FLAG_AUTHENTICATED)) &&
1014 test_sta_flag(sta, WLAN_STA_AUTH)) {
1015 ret = sta_info_move_state(sta, IEEE80211_STA_NONE);
1016 if (ret)
1017 return ret;
1018 }
1019
1020 return 0;
1021}
1022
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001023static int sta_apply_parameters(struct ieee80211_local *local,
1024 struct sta_info *sta,
1025 struct station_parameters *params)
Johannes Berg4fd69312007-12-19 02:03:35 +01001026{
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001027 int ret = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01001028 struct ieee80211_supported_band *sband;
Johannes Bergd0709a62008-02-25 16:27:46 +01001029 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berg55de9082012-07-26 17:24:39 +02001030 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001031 u32 mask, set;
Johannes Berg4fd69312007-12-19 02:03:35 +01001032
Johannes Berg55de9082012-07-26 17:24:39 +02001033 sband = local->hw.wiphy->bands[band];
Johannes Bergae5eb022008-10-14 16:58:37 +02001034
Johannes Bergeccb8e82009-05-11 21:57:56 +03001035 mask = params->sta_flags_mask;
1036 set = params->sta_flags_set;
Johannes Berg73651ee2008-02-25 16:27:47 +01001037
Johannes Bergd582cff2012-10-26 17:53:44 +02001038 if (ieee80211_vif_is_mesh(&sdata->vif)) {
1039 /*
1040 * In mesh mode, ASSOCIATED isn't part of the nl80211
1041 * API but must follow AUTHENTICATED for driver state.
1042 */
1043 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED))
1044 mask |= BIT(NL80211_STA_FLAG_ASSOCIATED);
1045 if (set & BIT(NL80211_STA_FLAG_AUTHENTICATED))
1046 set |= BIT(NL80211_STA_FLAG_ASSOCIATED);
Johannes Berg77ee7c82013-02-15 00:48:33 +01001047 } else if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1048 /*
1049 * TDLS -- everything follows authorized, but
1050 * only becoming authorized is possible, not
1051 * going back
1052 */
1053 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
1054 set |= BIT(NL80211_STA_FLAG_AUTHENTICATED) |
1055 BIT(NL80211_STA_FLAG_ASSOCIATED);
1056 mask |= BIT(NL80211_STA_FLAG_AUTHENTICATED) |
1057 BIT(NL80211_STA_FLAG_ASSOCIATED);
1058 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001059 }
1060
Arik Nemtsov68885a52014-06-11 17:18:19 +03001061 /* auth flags will be set later for TDLS stations */
1062 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1063 ret = sta_apply_auth_flags(local, sta, mask, set);
1064 if (ret)
1065 return ret;
1066 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001067
Johannes Bergeccb8e82009-05-11 21:57:56 +03001068 if (mask & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) {
Johannes Bergeccb8e82009-05-11 21:57:56 +03001069 if (set & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001070 set_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
1071 else
1072 clear_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001073 }
1074
Johannes Berga74a8c82014-07-22 14:50:47 +02001075 if (mask & BIT(NL80211_STA_FLAG_WME))
1076 sta->sta.wme = set & BIT(NL80211_STA_FLAG_WME);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001077
1078 if (mask & BIT(NL80211_STA_FLAG_MFP)) {
SenthilKumar Jegadeesan64a8cef2015-03-02 13:29:40 +05301079 sta->sta.mfp = !!(set & BIT(NL80211_STA_FLAG_MFP));
Johannes Bergeccb8e82009-05-11 21:57:56 +03001080 if (set & BIT(NL80211_STA_FLAG_MFP))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001081 set_sta_flag(sta, WLAN_STA_MFP);
1082 else
1083 clear_sta_flag(sta, WLAN_STA_MFP);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001084 }
Javier Cardonab39c48f2011-04-07 15:08:30 -07001085
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001086 if (mask & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001087 if (set & BIT(NL80211_STA_FLAG_TDLS_PEER))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001088 set_sta_flag(sta, WLAN_STA_TDLS_PEER);
1089 else
1090 clear_sta_flag(sta, WLAN_STA_TDLS_PEER);
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001091 }
Johannes Bergeccb8e82009-05-11 21:57:56 +03001092
Arik Nemtsov9041c1f2014-11-09 18:50:15 +02001093 /* mark TDLS channel switch support, if the AP allows it */
1094 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER) &&
1095 !sdata->u.mgd.tdls_chan_switch_prohibited &&
1096 params->ext_capab_len >= 4 &&
1097 params->ext_capab[3] & WLAN_EXT_CAPA4_TDLS_CHAN_SWITCH)
1098 set_sta_flag(sta, WLAN_STA_TDLS_CHAN_SWITCH);
1099
Johannes Berg3b9ce802011-09-27 20:56:12 +02001100 if (params->sta_modify_mask & STATION_PARAM_APPLY_UAPSD) {
1101 sta->sta.uapsd_queues = params->uapsd_queues;
1102 sta->sta.max_sp = params->max_sp;
1103 }
Eliad Peller9533b4a2011-08-23 14:37:47 +03001104
Johannes Berg73651ee2008-02-25 16:27:47 +01001105 /*
Johannes Berg51b50fb2009-05-24 16:42:30 +02001106 * cfg80211 validates this (1-2007) and allows setting the AID
1107 * only when creating a new station entry
1108 */
1109 if (params->aid)
1110 sta->sta.aid = params->aid;
1111
1112 /*
Johannes Bergba23d202012-12-27 17:32:09 +01001113 * Some of the following updates would be racy if called on an
1114 * existing station, via ieee80211_change_station(). However,
1115 * all such changes are rejected by cfg80211 except for updates
1116 * changing the supported rates on an existing but not yet used
1117 * TDLS peer.
Johannes Berg73651ee2008-02-25 16:27:47 +01001118 */
1119
Johannes Berg4fd69312007-12-19 02:03:35 +01001120 if (params->listen_interval >= 0)
1121 sta->listen_interval = params->listen_interval;
1122
1123 if (params->supported_rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001124 ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef,
1125 sband, params->supported_rates,
1126 params->supported_rates_len,
1127 &sta->sta.supp_rates[band]);
Johannes Berg4fd69312007-12-19 02:03:35 +01001128 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001129
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001130 if (params->ht_capa)
Ben Greearef96a8422011-11-18 11:32:00 -08001131 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
Johannes Berge1a0c6b2013-02-07 11:47:44 +01001132 params->ht_capa, sta);
Jouni Malinen36aedc902008-08-25 11:58:58 +03001133
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +00001134 if (params->vht_capa)
1135 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
Johannes Berg4a342152013-02-07 11:58:58 +01001136 params->vht_capa, sta);
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +00001137
Marek Kwaczynskib1bce142014-02-03 14:44:44 +01001138 if (params->opmode_notif_used) {
Marek Kwaczynskib1bce142014-02-03 14:44:44 +01001139 /* returned value is only needed for rc update, but the
1140 * rc isn't initialized here yet, so ignore it
1141 */
1142 __ieee80211_vht_handle_opmode(sdata, sta,
1143 params->opmode_notif,
1144 band, false);
1145 }
1146
Javier Cardona9c3990a2011-05-03 16:57:11 -07001147 if (ieee80211_vif_is_mesh(&sdata->vif)) {
Yogesh Ashok Powar4daf50f2011-05-12 09:32:17 -04001148#ifdef CONFIG_MAC80211_MESH
Thomas Pedersen39886b62013-02-13 12:14:19 -08001149 u32 changed = 0;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001150
1151 if (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE) {
Javier Cardona9c3990a2011-05-03 16:57:11 -07001152 switch (params->plink_state) {
Javier Cardona57cf8042011-05-13 10:45:43 -07001153 case NL80211_PLINK_ESTAB:
Marco Porsch1617bab2013-01-07 16:04:49 +01001154 if (sta->plink_state != NL80211_PLINK_ESTAB)
1155 changed = mesh_plink_inc_estab_count(
1156 sdata);
1157 sta->plink_state = params->plink_state;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001158
1159 ieee80211_mps_sta_status_update(sta);
Thomas Pedersen39886b62013-02-13 12:14:19 -08001160 changed |= ieee80211_mps_set_sta_local_pm(sta,
1161 sdata->u.mesh.mshcfg.power_mode);
Marco Porsch1617bab2013-01-07 16:04:49 +01001162 break;
1163 case NL80211_PLINK_LISTEN:
Javier Cardona57cf8042011-05-13 10:45:43 -07001164 case NL80211_PLINK_BLOCKED:
Marco Porsch1617bab2013-01-07 16:04:49 +01001165 case NL80211_PLINK_OPN_SNT:
1166 case NL80211_PLINK_OPN_RCVD:
1167 case NL80211_PLINK_CNF_RCVD:
1168 case NL80211_PLINK_HOLDING:
1169 if (sta->plink_state == NL80211_PLINK_ESTAB)
1170 changed = mesh_plink_dec_estab_count(
1171 sdata);
Javier Cardona9c3990a2011-05-03 16:57:11 -07001172 sta->plink_state = params->plink_state;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001173
1174 ieee80211_mps_sta_status_update(sta);
Marco Porsch446075d2013-10-15 12:29:24 +02001175 changed |= ieee80211_mps_set_sta_local_pm(sta,
1176 NL80211_MESH_POWER_UNKNOWN);
Javier Cardona9c3990a2011-05-03 16:57:11 -07001177 break;
1178 default:
1179 /* nothing */
1180 break;
1181 }
Johannes Berg77ee7c82013-02-15 00:48:33 +01001182 }
1183
1184 switch (params->plink_action) {
1185 case NL80211_PLINK_ACTION_NO_ACTION:
1186 /* nothing */
1187 break;
1188 case NL80211_PLINK_ACTION_OPEN:
1189 changed |= mesh_plink_open(sta);
1190 break;
1191 case NL80211_PLINK_ACTION_BLOCK:
1192 changed |= mesh_plink_block(sta);
1193 break;
Marco Porsch1617bab2013-01-07 16:04:49 +01001194 }
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001195
1196 if (params->local_pm)
Thomas Pedersen39886b62013-02-13 12:14:19 -08001197 changed |=
1198 ieee80211_mps_set_sta_local_pm(sta,
1199 params->local_pm);
Javier Lopez6c751ef2013-11-06 10:04:29 -08001200 ieee80211_mbss_info_change_notify(sdata, changed);
Yogesh Ashok Powar4daf50f2011-05-12 09:32:17 -04001201#endif
Johannes Berg902acc72008-02-23 15:17:19 +01001202 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001203
Arik Nemtsov68885a52014-06-11 17:18:19 +03001204 /* set the STA state after all sta info from usermode has been set */
1205 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1206 ret = sta_apply_auth_flags(local, sta, mask, set);
1207 if (ret)
1208 return ret;
1209 }
1210
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001211 return 0;
Johannes Berg4fd69312007-12-19 02:03:35 +01001212}
1213
1214static int ieee80211_add_station(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001215 const u8 *mac,
1216 struct station_parameters *params)
Johannes Berg4fd69312007-12-19 02:03:35 +01001217{
Johannes Berg14db74b2008-07-29 13:22:52 +02001218 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +01001219 struct sta_info *sta;
1220 struct ieee80211_sub_if_data *sdata;
Johannes Berg73651ee2008-02-25 16:27:47 +01001221 int err;
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001222 int layer2_update;
Johannes Berg4fd69312007-12-19 02:03:35 +01001223
Johannes Berg4fd69312007-12-19 02:03:35 +01001224 if (params->vlan) {
1225 sdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1226
Johannes Berg05c914f2008-09-11 00:01:58 +02001227 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
1228 sdata->vif.type != NL80211_IFTYPE_AP)
Johannes Berg4fd69312007-12-19 02:03:35 +01001229 return -EINVAL;
1230 } else
1231 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1232
Joe Perchesb203ca32012-05-08 18:56:52 +00001233 if (ether_addr_equal(mac, sdata->vif.addr))
Johannes Berg03e44972008-02-27 09:56:40 +01001234 return -EINVAL;
1235
1236 if (is_multicast_ether_addr(mac))
1237 return -EINVAL;
1238
1239 sta = sta_info_alloc(sdata, mac, GFP_KERNEL);
Johannes Berg73651ee2008-02-25 16:27:47 +01001240 if (!sta)
1241 return -ENOMEM;
Johannes Berg4fd69312007-12-19 02:03:35 +01001242
Johannes Bergd582cff2012-10-26 17:53:44 +02001243 /*
1244 * defaults -- if userspace wants something else we'll
1245 * change it accordingly in sta_apply_parameters()
1246 */
Johannes Berg77ee7c82013-02-15 00:48:33 +01001247 if (!(params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER))) {
1248 sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
1249 sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC);
Arik Nemtsov0c4972c2014-05-01 10:17:27 +03001250 } else {
1251 sta->sta.tdls = true;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001252 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001253
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001254 err = sta_apply_parameters(local, sta, params);
1255 if (err) {
1256 sta_info_free(local, sta);
1257 return err;
1258 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001259
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001260 /*
Johannes Berg77ee7c82013-02-15 00:48:33 +01001261 * for TDLS, rate control should be initialized only when
1262 * rates are known and station is marked authorized
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001263 */
1264 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER))
1265 rate_control_rate_init(sta);
Johannes Berg4fd69312007-12-19 02:03:35 +01001266
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001267 layer2_update = sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1268 sdata->vif.type == NL80211_IFTYPE_AP;
1269
Johannes Berg34e89502010-02-03 13:59:58 +01001270 err = sta_info_insert_rcu(sta);
Johannes Berg73651ee2008-02-25 16:27:47 +01001271 if (err) {
Johannes Berg73651ee2008-02-25 16:27:47 +01001272 rcu_read_unlock();
1273 return err;
1274 }
1275
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001276 if (layer2_update)
Johannes Berg73651ee2008-02-25 16:27:47 +01001277 ieee80211_send_layer2_update(sta);
1278
1279 rcu_read_unlock();
1280
Johannes Berg4fd69312007-12-19 02:03:35 +01001281 return 0;
1282}
1283
1284static int ieee80211_del_station(struct wiphy *wiphy, struct net_device *dev,
Jouni Malinen89c771e2014-10-10 20:52:40 +03001285 struct station_del_parameters *params)
Johannes Berg4fd69312007-12-19 02:03:35 +01001286{
Johannes Berg14db74b2008-07-29 13:22:52 +02001287 struct ieee80211_sub_if_data *sdata;
Johannes Berg4fd69312007-12-19 02:03:35 +01001288
Johannes Berg14db74b2008-07-29 13:22:52 +02001289 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1290
Jouni Malinen89c771e2014-10-10 20:52:40 +03001291 if (params->mac)
1292 return sta_info_destroy_addr_bss(sdata, params->mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001293
Johannes Bergb998e8b2012-12-13 23:07:46 +01001294 sta_info_flush(sdata);
Johannes Berg4fd69312007-12-19 02:03:35 +01001295 return 0;
1296}
1297
1298static int ieee80211_change_station(struct wiphy *wiphy,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001299 struct net_device *dev, const u8 *mac,
Johannes Berg4fd69312007-12-19 02:03:35 +01001300 struct station_parameters *params)
1301{
Johannes Bergabe60632009-11-25 17:46:18 +01001302 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg14db74b2008-07-29 13:22:52 +02001303 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +01001304 struct sta_info *sta;
1305 struct ieee80211_sub_if_data *vlansdata;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001306 enum cfg80211_station_type statype;
Eliad Peller35b88622011-12-29 14:41:39 +02001307 int err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001308
Johannes Berg87be1e12011-12-14 12:20:29 +01001309 mutex_lock(&local->sta_mtx);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001310
Felix Fietkau0e5ded52010-01-08 18:10:58 +01001311 sta = sta_info_get_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001312 if (!sta) {
Johannes Berg77ee7c82013-02-15 00:48:33 +01001313 err = -ENOENT;
1314 goto out_err;
Johannes Berg98dd6a52008-04-10 15:36:09 +02001315 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001316
Johannes Berg77ee7c82013-02-15 00:48:33 +01001317 switch (sdata->vif.type) {
1318 case NL80211_IFTYPE_MESH_POINT:
Thomas Pedersena6dad6a2013-03-04 13:06:12 -08001319 if (sdata->u.mesh.user_mpm)
Thomas Pederseneef941e2013-03-04 13:06:11 -08001320 statype = CFG80211_STA_MESH_PEER_USER;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001321 else
Thomas Pederseneef941e2013-03-04 13:06:11 -08001322 statype = CFG80211_STA_MESH_PEER_KERNEL;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001323 break;
1324 case NL80211_IFTYPE_ADHOC:
1325 statype = CFG80211_STA_IBSS;
1326 break;
1327 case NL80211_IFTYPE_STATION:
1328 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1329 statype = CFG80211_STA_AP_STA;
1330 break;
1331 }
1332 if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
1333 statype = CFG80211_STA_TDLS_PEER_ACTIVE;
1334 else
1335 statype = CFG80211_STA_TDLS_PEER_SETUP;
1336 break;
1337 case NL80211_IFTYPE_AP:
1338 case NL80211_IFTYPE_AP_VLAN:
1339 statype = CFG80211_STA_AP_CLIENT;
1340 break;
1341 default:
1342 err = -EOPNOTSUPP;
1343 goto out_err;
Johannes Bergbdd90d52011-12-14 12:20:27 +01001344 }
1345
Johannes Berg77ee7c82013-02-15 00:48:33 +01001346 err = cfg80211_check_station_change(wiphy, params, statype);
1347 if (err)
1348 goto out_err;
1349
Johannes Bergd0709a62008-02-25 16:27:46 +01001350 if (params->vlan && params->vlan != sta->sdata->dev) {
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001351 bool prev_4addr = false;
1352 bool new_4addr = false;
1353
Johannes Berg4fd69312007-12-19 02:03:35 +01001354 vlansdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1355
Johannes Berg9bc383d2009-11-19 11:55:19 +01001356 if (params->vlan->ieee80211_ptr->use_4addr) {
Johannes Berg33054432009-11-20 10:09:14 +01001357 if (vlansdata->u.vlan.sta) {
Johannes Berg77ee7c82013-02-15 00:48:33 +01001358 err = -EBUSY;
1359 goto out_err;
Johannes Berg33054432009-11-20 10:09:14 +01001360 }
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001361
Eric Dumazetcf778b02012-01-12 04:41:32 +00001362 rcu_assign_pointer(vlansdata->u.vlan.sta, sta);
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001363 new_4addr = true;
1364 }
1365
1366 if (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1367 sta->sdata->u.vlan.sta) {
Monam Agarwal0c2bef462014-03-24 00:51:43 +05301368 RCU_INIT_POINTER(sta->sdata->u.vlan.sta, NULL);
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001369 prev_4addr = true;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001370 }
1371
Johannes Berg14db74b2008-07-29 13:22:52 +02001372 sta->sdata = vlansdata;
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001373
1374 if (sta->sta_state == IEEE80211_STA_AUTHORIZED &&
1375 prev_4addr != new_4addr) {
1376 if (new_4addr)
1377 atomic_dec(&sta->sdata->bss->num_mcast_sta);
1378 else
1379 atomic_inc(&sta->sdata->bss->num_mcast_sta);
1380 }
1381
Johannes Berg4fd69312007-12-19 02:03:35 +01001382 ieee80211_send_layer2_update(sta);
1383 }
1384
Eliad Peller35b88622011-12-29 14:41:39 +02001385 err = sta_apply_parameters(local, sta, params);
Johannes Berg77ee7c82013-02-15 00:48:33 +01001386 if (err)
1387 goto out_err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001388
Johannes Berg87be1e12011-12-14 12:20:29 +01001389 mutex_unlock(&local->sta_mtx);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001390
Emmanuel Grumbach687da132013-10-01 16:45:43 +03001391 if ((sdata->vif.type == NL80211_IFTYPE_AP ||
1392 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
1393 sta->known_smps_mode != sta->sdata->bss->req_smps &&
1394 test_sta_flag(sta, WLAN_STA_AUTHORIZED) &&
1395 sta_info_tx_streams(sta) != 1) {
1396 ht_dbg(sta->sdata,
1397 "%pM just authorized and MIMO capable - update SMPS\n",
1398 sta->sta.addr);
1399 ieee80211_send_smps_action(sta->sdata,
1400 sta->sdata->bss->req_smps,
1401 sta->sta.addr,
1402 sta->sdata->vif.bss_conf.bssid);
1403 }
1404
Jason Young808118c2011-03-10 16:43:19 -08001405 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
Eliad Pellerab095872012-07-27 12:33:22 +03001406 params->sta_flags_mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
Jason Young808118c2011-03-10 16:43:19 -08001407 ieee80211_recalc_ps(local, -1);
Eliad Pellerab095872012-07-27 12:33:22 +03001408 ieee80211_recalc_ps_vif(sdata);
1409 }
Johannes Berg77ee7c82013-02-15 00:48:33 +01001410
Johannes Berg4fd69312007-12-19 02:03:35 +01001411 return 0;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001412out_err:
1413 mutex_unlock(&local->sta_mtx);
1414 return err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001415}
1416
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001417#ifdef CONFIG_MAC80211_MESH
1418static int ieee80211_add_mpath(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001419 const u8 *dst, const u8 *next_hop)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001420{
Johannes Berg14db74b2008-07-29 13:22:52 +02001421 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001422 struct mesh_path *mpath;
1423 struct sta_info *sta;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001424
Johannes Berg14db74b2008-07-29 13:22:52 +02001425 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1426
Johannes Bergd0709a62008-02-25 16:27:46 +01001427 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +01001428 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +01001429 if (!sta) {
1430 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001431 return -ENOENT;
Johannes Bergd0709a62008-02-25 16:27:46 +01001432 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001433
Bob Copelandae76eef2013-03-29 09:38:39 -04001434 mpath = mesh_path_add(sdata, dst);
1435 if (IS_ERR(mpath)) {
Johannes Bergd0709a62008-02-25 16:27:46 +01001436 rcu_read_unlock();
Bob Copelandae76eef2013-03-29 09:38:39 -04001437 return PTR_ERR(mpath);
Johannes Bergd0709a62008-02-25 16:27:46 +01001438 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001439
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001440 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +01001441
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001442 rcu_read_unlock();
1443 return 0;
1444}
1445
1446static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001447 const u8 *dst)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001448{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001449 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001450
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001451 if (dst)
Johannes Bergbf7cd942013-02-15 14:40:31 +01001452 return mesh_path_del(sdata, dst);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001453
Javier Cardonaece1a2e2011-08-29 13:23:04 -07001454 mesh_path_flush_by_iface(sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001455 return 0;
1456}
1457
Johannes Berg3b3a0162014-05-19 17:19:31 +02001458static int ieee80211_change_mpath(struct wiphy *wiphy, struct net_device *dev,
1459 const u8 *dst, const u8 *next_hop)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001460{
Johannes Berg14db74b2008-07-29 13:22:52 +02001461 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001462 struct mesh_path *mpath;
1463 struct sta_info *sta;
1464
Johannes Berg14db74b2008-07-29 13:22:52 +02001465 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1466
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001467 rcu_read_lock();
Johannes Bergd0709a62008-02-25 16:27:46 +01001468
Johannes Bergabe60632009-11-25 17:46:18 +01001469 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +01001470 if (!sta) {
1471 rcu_read_unlock();
1472 return -ENOENT;
1473 }
1474
Johannes Bergbf7cd942013-02-15 14:40:31 +01001475 mpath = mesh_path_lookup(sdata, dst);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001476 if (!mpath) {
1477 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001478 return -ENOENT;
1479 }
1480
1481 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +01001482
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001483 rcu_read_unlock();
1484 return 0;
1485}
1486
1487static void mpath_set_pinfo(struct mesh_path *mpath, u8 *next_hop,
1488 struct mpath_info *pinfo)
1489{
Johannes Berga3836e02011-05-12 15:11:37 +02001490 struct sta_info *next_hop_sta = rcu_dereference(mpath->next_hop);
1491
1492 if (next_hop_sta)
1493 memcpy(next_hop, next_hop_sta->sta.addr, ETH_ALEN);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001494 else
1495 memset(next_hop, 0, ETH_ALEN);
1496
LEO Airwarosu Yoichi Shinoda7ce8c7a2012-08-27 22:28:16 +09001497 memset(pinfo, 0, sizeof(*pinfo));
1498
Johannes Bergf5ea9122009-08-07 16:17:38 +02001499 pinfo->generation = mesh_paths_generation;
1500
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001501 pinfo->filled = MPATH_INFO_FRAME_QLEN |
Rui Paulod19b3bf2009-11-09 23:46:55 +00001502 MPATH_INFO_SN |
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001503 MPATH_INFO_METRIC |
1504 MPATH_INFO_EXPTIME |
1505 MPATH_INFO_DISCOVERY_TIMEOUT |
1506 MPATH_INFO_DISCOVERY_RETRIES |
1507 MPATH_INFO_FLAGS;
1508
1509 pinfo->frame_qlen = mpath->frame_queue.qlen;
Rui Paulod19b3bf2009-11-09 23:46:55 +00001510 pinfo->sn = mpath->sn;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001511 pinfo->metric = mpath->metric;
1512 if (time_before(jiffies, mpath->exp_time))
1513 pinfo->exptime = jiffies_to_msecs(mpath->exp_time - jiffies);
1514 pinfo->discovery_timeout =
1515 jiffies_to_msecs(mpath->discovery_timeout);
1516 pinfo->discovery_retries = mpath->discovery_retries;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001517 if (mpath->flags & MESH_PATH_ACTIVE)
1518 pinfo->flags |= NL80211_MPATH_FLAG_ACTIVE;
1519 if (mpath->flags & MESH_PATH_RESOLVING)
1520 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
Rui Paulod19b3bf2009-11-09 23:46:55 +00001521 if (mpath->flags & MESH_PATH_SN_VALID)
1522 pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001523 if (mpath->flags & MESH_PATH_FIXED)
1524 pinfo->flags |= NL80211_MPATH_FLAG_FIXED;
LEO Airwarosu Yoichi Shinoda7ce8c7a2012-08-27 22:28:16 +09001525 if (mpath->flags & MESH_PATH_RESOLVED)
1526 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVED;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001527}
1528
1529static int ieee80211_get_mpath(struct wiphy *wiphy, struct net_device *dev,
1530 u8 *dst, u8 *next_hop, struct mpath_info *pinfo)
1531
1532{
Johannes Berg14db74b2008-07-29 13:22:52 +02001533 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001534 struct mesh_path *mpath;
1535
Johannes Berg14db74b2008-07-29 13:22:52 +02001536 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1537
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001538 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01001539 mpath = mesh_path_lookup(sdata, dst);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001540 if (!mpath) {
1541 rcu_read_unlock();
1542 return -ENOENT;
1543 }
1544 memcpy(dst, mpath->dst, ETH_ALEN);
1545 mpath_set_pinfo(mpath, next_hop, pinfo);
1546 rcu_read_unlock();
1547 return 0;
1548}
1549
1550static int ieee80211_dump_mpath(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001551 int idx, u8 *dst, u8 *next_hop,
1552 struct mpath_info *pinfo)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001553{
Johannes Berg14db74b2008-07-29 13:22:52 +02001554 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001555 struct mesh_path *mpath;
1556
Johannes Berg14db74b2008-07-29 13:22:52 +02001557 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1558
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001559 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01001560 mpath = mesh_path_lookup_by_idx(sdata, idx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001561 if (!mpath) {
1562 rcu_read_unlock();
1563 return -ENOENT;
1564 }
1565 memcpy(dst, mpath->dst, ETH_ALEN);
1566 mpath_set_pinfo(mpath, next_hop, pinfo);
1567 rcu_read_unlock();
1568 return 0;
1569}
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001570
Henning Roggea2db2ed2014-09-12 08:58:50 +02001571static void mpp_set_pinfo(struct mesh_path *mpath, u8 *mpp,
1572 struct mpath_info *pinfo)
1573{
1574 memset(pinfo, 0, sizeof(*pinfo));
1575 memcpy(mpp, mpath->mpp, ETH_ALEN);
1576
1577 pinfo->generation = mpp_paths_generation;
1578}
1579
1580static int ieee80211_get_mpp(struct wiphy *wiphy, struct net_device *dev,
1581 u8 *dst, u8 *mpp, struct mpath_info *pinfo)
1582
1583{
1584 struct ieee80211_sub_if_data *sdata;
1585 struct mesh_path *mpath;
1586
1587 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1588
1589 rcu_read_lock();
1590 mpath = mpp_path_lookup(sdata, dst);
1591 if (!mpath) {
1592 rcu_read_unlock();
1593 return -ENOENT;
1594 }
1595 memcpy(dst, mpath->dst, ETH_ALEN);
1596 mpp_set_pinfo(mpath, mpp, pinfo);
1597 rcu_read_unlock();
1598 return 0;
1599}
1600
1601static int ieee80211_dump_mpp(struct wiphy *wiphy, struct net_device *dev,
1602 int idx, u8 *dst, u8 *mpp,
1603 struct mpath_info *pinfo)
1604{
1605 struct ieee80211_sub_if_data *sdata;
1606 struct mesh_path *mpath;
1607
1608 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1609
1610 rcu_read_lock();
1611 mpath = mpp_path_lookup_by_idx(sdata, idx);
1612 if (!mpath) {
1613 rcu_read_unlock();
1614 return -ENOENT;
1615 }
1616 memcpy(dst, mpath->dst, ETH_ALEN);
1617 mpp_set_pinfo(mpath, mpp, pinfo);
1618 rcu_read_unlock();
1619 return 0;
1620}
1621
Javier Cardona24bdd9f2010-12-16 17:37:48 -08001622static int ieee80211_get_mesh_config(struct wiphy *wiphy,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001623 struct net_device *dev,
1624 struct mesh_config *conf)
1625{
1626 struct ieee80211_sub_if_data *sdata;
1627 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1628
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001629 memcpy(conf, &(sdata->u.mesh.mshcfg), sizeof(struct mesh_config));
1630 return 0;
1631}
1632
1633static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm, u32 mask)
1634{
1635 return (mask >> (parm-1)) & 0x1;
1636}
1637
Javier Cardonac80d5452010-12-16 17:37:49 -08001638static int copy_mesh_setup(struct ieee80211_if_mesh *ifmsh,
1639 const struct mesh_setup *setup)
1640{
1641 u8 *new_ie;
1642 const u8 *old_ie;
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001643 struct ieee80211_sub_if_data *sdata = container_of(ifmsh,
1644 struct ieee80211_sub_if_data, u.mesh);
Javier Cardonac80d5452010-12-16 17:37:49 -08001645
Javier Cardona581a8b02011-04-07 15:08:27 -07001646 /* allocate information elements */
Javier Cardonac80d5452010-12-16 17:37:49 -08001647 new_ie = NULL;
Javier Cardona581a8b02011-04-07 15:08:27 -07001648 old_ie = ifmsh->ie;
Javier Cardonac80d5452010-12-16 17:37:49 -08001649
Javier Cardona581a8b02011-04-07 15:08:27 -07001650 if (setup->ie_len) {
1651 new_ie = kmemdup(setup->ie, setup->ie_len,
Javier Cardonac80d5452010-12-16 17:37:49 -08001652 GFP_KERNEL);
1653 if (!new_ie)
1654 return -ENOMEM;
1655 }
Javier Cardona581a8b02011-04-07 15:08:27 -07001656 ifmsh->ie_len = setup->ie_len;
1657 ifmsh->ie = new_ie;
1658 kfree(old_ie);
Javier Cardonac80d5452010-12-16 17:37:49 -08001659
1660 /* now copy the rest of the setup parameters */
1661 ifmsh->mesh_id_len = setup->mesh_id_len;
1662 memcpy(ifmsh->mesh_id, setup->mesh_id, ifmsh->mesh_id_len);
Javier Cardonad299a1f2012-03-31 11:31:33 -07001663 ifmsh->mesh_sp_id = setup->sync_method;
Javier Cardonac80d5452010-12-16 17:37:49 -08001664 ifmsh->mesh_pp_id = setup->path_sel_proto;
1665 ifmsh->mesh_pm_id = setup->path_metric;
Thomas Pedersena6dad6a2013-03-04 13:06:12 -08001666 ifmsh->user_mpm = setup->user_mpm;
Colleen Twitty0d4261a2013-05-08 11:46:00 -07001667 ifmsh->mesh_auth_id = setup->auth_id;
Javier Cardonab130e5c2011-05-03 16:57:07 -07001668 ifmsh->security = IEEE80211_MESH_SEC_NONE;
1669 if (setup->is_authenticated)
1670 ifmsh->security |= IEEE80211_MESH_SEC_AUTHED;
1671 if (setup->is_secure)
1672 ifmsh->security |= IEEE80211_MESH_SEC_SECURED;
Javier Cardonac80d5452010-12-16 17:37:49 -08001673
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001674 /* mcast rate setting in Mesh Node */
1675 memcpy(sdata->vif.bss_conf.mcast_rate, setup->mcast_rate,
1676 sizeof(setup->mcast_rate));
Ashok Nagarajanffb3cf32013-06-03 10:33:36 -07001677 sdata->vif.bss_conf.basic_rates = setup->basic_rates;
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001678
Marco Porsch9bdbf042013-01-07 16:04:51 +01001679 sdata->vif.bss_conf.beacon_int = setup->beacon_interval;
1680 sdata->vif.bss_conf.dtim_period = setup->dtim_period;
1681
Javier Cardonac80d5452010-12-16 17:37:49 -08001682 return 0;
1683}
1684
Javier Cardona24bdd9f2010-12-16 17:37:48 -08001685static int ieee80211_update_mesh_config(struct wiphy *wiphy,
Johannes Berg29cbe682010-12-03 09:20:44 +01001686 struct net_device *dev, u32 mask,
1687 const struct mesh_config *nconf)
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001688{
1689 struct mesh_config *conf;
1690 struct ieee80211_sub_if_data *sdata;
Rui Paulo63c57232009-11-09 23:46:57 +00001691 struct ieee80211_if_mesh *ifmsh;
1692
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001693 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Rui Paulo63c57232009-11-09 23:46:57 +00001694 ifmsh = &sdata->u.mesh;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001695
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001696 /* Set the config options which we are interested in setting */
1697 conf = &(sdata->u.mesh.mshcfg);
1698 if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT, mask))
1699 conf->dot11MeshRetryTimeout = nconf->dot11MeshRetryTimeout;
1700 if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT, mask))
1701 conf->dot11MeshConfirmTimeout = nconf->dot11MeshConfirmTimeout;
1702 if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT, mask))
1703 conf->dot11MeshHoldingTimeout = nconf->dot11MeshHoldingTimeout;
1704 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS, mask))
1705 conf->dot11MeshMaxPeerLinks = nconf->dot11MeshMaxPeerLinks;
1706 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES, mask))
1707 conf->dot11MeshMaxRetries = nconf->dot11MeshMaxRetries;
1708 if (_chg_mesh_attr(NL80211_MESHCONF_TTL, mask))
1709 conf->dot11MeshTTL = nconf->dot11MeshTTL;
Javier Cardona45904f22010-12-03 09:20:40 +01001710 if (_chg_mesh_attr(NL80211_MESHCONF_ELEMENT_TTL, mask))
Chun-Yeow Yeoh58886a92012-06-15 00:23:53 +08001711 conf->element_ttl = nconf->element_ttl;
Thomas Pedersen146bb482013-03-04 13:06:14 -08001712 if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS, mask)) {
1713 if (ifmsh->user_mpm)
1714 return -EBUSY;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001715 conf->auto_open_plinks = nconf->auto_open_plinks;
Thomas Pedersen146bb482013-03-04 13:06:14 -08001716 }
Javier Cardonad299a1f2012-03-31 11:31:33 -07001717 if (_chg_mesh_attr(NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR, mask))
1718 conf->dot11MeshNbrOffsetMaxNeighbor =
1719 nconf->dot11MeshNbrOffsetMaxNeighbor;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001720 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, mask))
1721 conf->dot11MeshHWMPmaxPREQretries =
1722 nconf->dot11MeshHWMPmaxPREQretries;
1723 if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME, mask))
1724 conf->path_refresh_time = nconf->path_refresh_time;
1725 if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, mask))
1726 conf->min_discovery_timeout = nconf->min_discovery_timeout;
1727 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, mask))
1728 conf->dot11MeshHWMPactivePathTimeout =
1729 nconf->dot11MeshHWMPactivePathTimeout;
1730 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, mask))
1731 conf->dot11MeshHWMPpreqMinInterval =
1732 nconf->dot11MeshHWMPpreqMinInterval;
Thomas Pedersendca7e942011-11-24 17:15:24 -08001733 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL, mask))
1734 conf->dot11MeshHWMPperrMinInterval =
1735 nconf->dot11MeshHWMPperrMinInterval;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001736 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
1737 mask))
1738 conf->dot11MeshHWMPnetDiameterTraversalTime =
1739 nconf->dot11MeshHWMPnetDiameterTraversalTime;
Rui Paulo63c57232009-11-09 23:46:57 +00001740 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask)) {
1741 conf->dot11MeshHWMPRootMode = nconf->dot11MeshHWMPRootMode;
1742 ieee80211_mesh_root_setup(ifmsh);
1743 }
Javier Cardona16dd7262011-08-09 16:45:11 -07001744 if (_chg_mesh_attr(NL80211_MESHCONF_GATE_ANNOUNCEMENTS, mask)) {
Thomas Pedersenc61336612011-08-25 10:36:14 -07001745 /* our current gate announcement implementation rides on root
1746 * announcements, so require this ifmsh to also be a root node
1747 * */
1748 if (nconf->dot11MeshGateAnnouncementProtocol &&
Chun-Yeow Yeohdbb912c2012-06-14 02:06:09 +08001749 !(conf->dot11MeshHWMPRootMode > IEEE80211_ROOTMODE_ROOT)) {
1750 conf->dot11MeshHWMPRootMode = IEEE80211_PROACTIVE_RANN;
Thomas Pedersenc61336612011-08-25 10:36:14 -07001751 ieee80211_mesh_root_setup(ifmsh);
1752 }
Javier Cardona16dd7262011-08-09 16:45:11 -07001753 conf->dot11MeshGateAnnouncementProtocol =
1754 nconf->dot11MeshGateAnnouncementProtocol;
1755 }
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08001756 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_RANN_INTERVAL, mask))
Javier Cardona0507e152011-08-09 16:45:10 -07001757 conf->dot11MeshHWMPRannInterval =
1758 nconf->dot11MeshHWMPRannInterval;
Chun-Yeow Yeoh94f90652012-01-21 01:02:16 +08001759 if (_chg_mesh_attr(NL80211_MESHCONF_FORWARDING, mask))
1760 conf->dot11MeshForwarding = nconf->dot11MeshForwarding;
Ashok Nagarajan55335132012-02-28 17:04:08 -08001761 if (_chg_mesh_attr(NL80211_MESHCONF_RSSI_THRESHOLD, mask)) {
1762 /* our RSSI threshold implementation is supported only for
1763 * devices that report signal in dBm.
1764 */
1765 if (!(sdata->local->hw.flags & IEEE80211_HW_SIGNAL_DBM))
1766 return -ENOTSUPP;
1767 conf->rssi_threshold = nconf->rssi_threshold;
1768 }
Ashok Nagarajan70c33ea2012-04-30 14:20:32 -07001769 if (_chg_mesh_attr(NL80211_MESHCONF_HT_OPMODE, mask)) {
1770 conf->ht_opmode = nconf->ht_opmode;
1771 sdata->vif.bss_conf.ht_operation_mode = nconf->ht_opmode;
1772 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_HT);
1773 }
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08001774 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT, mask))
1775 conf->dot11MeshHWMPactivePathToRootTimeout =
1776 nconf->dot11MeshHWMPactivePathToRootTimeout;
1777 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOT_INTERVAL, mask))
1778 conf->dot11MeshHWMProotInterval =
1779 nconf->dot11MeshHWMProotInterval;
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08001780 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL, mask))
1781 conf->dot11MeshHWMPconfirmationInterval =
1782 nconf->dot11MeshHWMPconfirmationInterval;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001783 if (_chg_mesh_attr(NL80211_MESHCONF_POWER_MODE, mask)) {
1784 conf->power_mode = nconf->power_mode;
1785 ieee80211_mps_local_status_update(sdata);
1786 }
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001787 if (_chg_mesh_attr(NL80211_MESHCONF_AWAKE_WINDOW, mask))
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001788 conf->dot11MeshAwakeWindowDuration =
1789 nconf->dot11MeshAwakeWindowDuration;
Colleen Twitty66de6712013-06-03 09:53:40 -07001790 if (_chg_mesh_attr(NL80211_MESHCONF_PLINK_TIMEOUT, mask))
1791 conf->plink_timeout = nconf->plink_timeout;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001792 ieee80211_mbss_info_change_notify(sdata, BSS_CHANGED_BEACON);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001793 return 0;
1794}
1795
Johannes Berg29cbe682010-12-03 09:20:44 +01001796static int ieee80211_join_mesh(struct wiphy *wiphy, struct net_device *dev,
1797 const struct mesh_config *conf,
1798 const struct mesh_setup *setup)
1799{
1800 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1801 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Javier Cardonac80d5452010-12-16 17:37:49 -08001802 int err;
Johannes Berg29cbe682010-12-03 09:20:44 +01001803
Javier Cardonac80d5452010-12-16 17:37:49 -08001804 memcpy(&ifmsh->mshcfg, conf, sizeof(struct mesh_config));
1805 err = copy_mesh_setup(ifmsh, setup);
1806 if (err)
1807 return err;
Johannes Bergcc1d2802012-05-16 23:50:20 +02001808
Johannes Berg04ecd252012-09-11 14:34:12 +02001809 /* can mesh use other SMPS modes? */
1810 sdata->smps_mode = IEEE80211_SMPS_OFF;
1811 sdata->needed_rx_chains = sdata->local->rx_chains;
1812
Johannes Berg34a37402013-12-18 09:43:33 +01001813 mutex_lock(&sdata->local->mtx);
Johannes Berg4bf88532012-11-09 11:39:59 +01001814 err = ieee80211_vif_use_channel(sdata, &setup->chandef,
Johannes Berg55de9082012-07-26 17:24:39 +02001815 IEEE80211_CHANCTX_SHARED);
Johannes Berg34a37402013-12-18 09:43:33 +01001816 mutex_unlock(&sdata->local->mtx);
Johannes Bergcc1d2802012-05-16 23:50:20 +02001817 if (err)
1818 return err;
1819
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001820 return ieee80211_start_mesh(sdata);
Johannes Berg29cbe682010-12-03 09:20:44 +01001821}
1822
1823static int ieee80211_leave_mesh(struct wiphy *wiphy, struct net_device *dev)
1824{
1825 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1826
1827 ieee80211_stop_mesh(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +01001828 mutex_lock(&sdata->local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001829 ieee80211_vif_release_channel(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +01001830 mutex_unlock(&sdata->local->mtx);
Johannes Berg29cbe682010-12-03 09:20:44 +01001831
1832 return 0;
1833}
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001834#endif
1835
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001836static int ieee80211_change_bss(struct wiphy *wiphy,
1837 struct net_device *dev,
1838 struct bss_parameters *params)
1839{
Johannes Berg55de9082012-07-26 17:24:39 +02001840 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1841 enum ieee80211_band band;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001842 u32 changed = 0;
1843
Simon Wunderlich7ca133b2013-11-21 18:19:50 +01001844 if (!sdata_dereference(sdata->u.ap.beacon, sdata))
Johannes Berg55de9082012-07-26 17:24:39 +02001845 return -ENOENT;
1846
1847 band = ieee80211_get_sdata_band(sdata);
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001848
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001849 if (params->use_cts_prot >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001850 sdata->vif.bss_conf.use_cts_prot = params->use_cts_prot;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001851 changed |= BSS_CHANGED_ERP_CTS_PROT;
1852 }
1853 if (params->use_short_preamble >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001854 sdata->vif.bss_conf.use_short_preamble =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001855 params->use_short_preamble;
1856 changed |= BSS_CHANGED_ERP_PREAMBLE;
1857 }
Felix Fietkau43d35342010-01-15 03:00:48 +01001858
1859 if (!sdata->vif.bss_conf.use_short_slot &&
Johannes Berg55de9082012-07-26 17:24:39 +02001860 band == IEEE80211_BAND_5GHZ) {
Felix Fietkau43d35342010-01-15 03:00:48 +01001861 sdata->vif.bss_conf.use_short_slot = true;
1862 changed |= BSS_CHANGED_ERP_SLOT;
1863 }
1864
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001865 if (params->use_short_slot_time >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001866 sdata->vif.bss_conf.use_short_slot =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001867 params->use_short_slot_time;
1868 changed |= BSS_CHANGED_ERP_SLOT;
1869 }
1870
Jouni Malinen90c97a02008-10-30 16:59:22 +02001871 if (params->basic_rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001872 ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef,
1873 wiphy->bands[band],
1874 params->basic_rates,
1875 params->basic_rates_len,
1876 &sdata->vif.bss_conf.basic_rates);
Jouni Malinen90c97a02008-10-30 16:59:22 +02001877 changed |= BSS_CHANGED_BASIC_RATES;
1878 }
1879
Felix Fietkau7b7b5e52010-04-27 01:23:36 +02001880 if (params->ap_isolate >= 0) {
1881 if (params->ap_isolate)
1882 sdata->flags |= IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1883 else
1884 sdata->flags &= ~IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1885 }
1886
Helmut Schaa80d7e402010-11-19 12:40:26 +01001887 if (params->ht_opmode >= 0) {
1888 sdata->vif.bss_conf.ht_operation_mode =
1889 (u16) params->ht_opmode;
1890 changed |= BSS_CHANGED_HT;
1891 }
1892
Johannes Berg339afbf2012-11-14 15:21:17 +01001893 if (params->p2p_ctwindow >= 0) {
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001894 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &=
1895 ~IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
1896 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
1897 params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
Johannes Berg339afbf2012-11-14 15:21:17 +01001898 changed |= BSS_CHANGED_P2P_PS;
1899 }
1900
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001901 if (params->p2p_opp_ps > 0) {
1902 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
1903 IEEE80211_P2P_OPPPS_ENABLE_BIT;
1904 changed |= BSS_CHANGED_P2P_PS;
1905 } else if (params->p2p_opp_ps == 0) {
1906 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &=
1907 ~IEEE80211_P2P_OPPPS_ENABLE_BIT;
Johannes Berg339afbf2012-11-14 15:21:17 +01001908 changed |= BSS_CHANGED_P2P_PS;
1909 }
1910
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001911 ieee80211_bss_info_change_notify(sdata, changed);
1912
1913 return 0;
1914}
1915
Jouni Malinen31888482008-10-30 16:59:24 +02001916static int ieee80211_set_txq_params(struct wiphy *wiphy,
Eliad Pellerf70f01c2011-09-25 20:06:53 +03001917 struct net_device *dev,
Jouni Malinen31888482008-10-30 16:59:24 +02001918 struct ieee80211_txq_params *params)
1919{
1920 struct ieee80211_local *local = wiphy_priv(wiphy);
Eliad Pellerf6f3def2011-09-25 20:06:54 +03001921 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Jouni Malinen31888482008-10-30 16:59:24 +02001922 struct ieee80211_tx_queue_params p;
1923
1924 if (!local->ops->conf_tx)
1925 return -EOPNOTSUPP;
1926
Johannes Berg54bcbc62012-03-28 11:04:25 +02001927 if (local->hw.queues < IEEE80211_NUM_ACS)
1928 return -EOPNOTSUPP;
1929
Jouni Malinen31888482008-10-30 16:59:24 +02001930 memset(&p, 0, sizeof(p));
1931 p.aifs = params->aifs;
1932 p.cw_max = params->cwmax;
1933 p.cw_min = params->cwmin;
1934 p.txop = params->txop;
Kalle Valoab133152010-01-12 10:42:31 +02001935
1936 /*
1937 * Setting tx queue params disables u-apsd because it's only
1938 * called in master mode.
1939 */
1940 p.uapsd = false;
1941
Johannes Berga3304b02012-03-28 11:04:24 +02001942 sdata->tx_conf[params->ac] = p;
1943 if (drv_conf_tx(local, sdata, params->ac, &p)) {
Joe Perches0fb9a9e2010-08-20 16:25:38 -07001944 wiphy_debug(local->hw.wiphy,
Johannes Berga3304b02012-03-28 11:04:24 +02001945 "failed to set TX queue parameters for AC %d\n",
1946 params->ac);
Jouni Malinen31888482008-10-30 16:59:24 +02001947 return -EINVAL;
1948 }
1949
Johannes Berg7d257452012-07-06 17:37:43 +02001950 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_QOS);
1951
Jouni Malinen31888482008-10-30 16:59:24 +02001952 return 0;
1953}
1954
Bob Copeland665af4f2009-01-19 11:20:53 -05001955#ifdef CONFIG_PM
Johannes Bergff1b6e62011-05-04 15:37:28 +02001956static int ieee80211_suspend(struct wiphy *wiphy,
1957 struct cfg80211_wowlan *wowlan)
Bob Copeland665af4f2009-01-19 11:20:53 -05001958{
Johannes Bergeecc4802011-05-04 15:37:29 +02001959 return __ieee80211_suspend(wiphy_priv(wiphy), wowlan);
Bob Copeland665af4f2009-01-19 11:20:53 -05001960}
1961
1962static int ieee80211_resume(struct wiphy *wiphy)
1963{
1964 return __ieee80211_resume(wiphy_priv(wiphy));
1965}
1966#else
1967#define ieee80211_suspend NULL
1968#define ieee80211_resume NULL
1969#endif
1970
Johannes Berg2a519312009-02-10 21:25:55 +01001971static int ieee80211_scan(struct wiphy *wiphy,
Johannes Berg2a519312009-02-10 21:25:55 +01001972 struct cfg80211_scan_request *req)
1973{
Johannes Bergfd014282012-06-18 19:17:03 +02001974 struct ieee80211_sub_if_data *sdata;
1975
1976 sdata = IEEE80211_WDEV_TO_SUB_IF(req->wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01001977
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001978 switch (ieee80211_vif_type_p2p(&sdata->vif)) {
1979 case NL80211_IFTYPE_STATION:
1980 case NL80211_IFTYPE_ADHOC:
1981 case NL80211_IFTYPE_MESH_POINT:
1982 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Bergf142c6b2012-06-18 20:07:15 +02001983 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001984 break;
1985 case NL80211_IFTYPE_P2P_GO:
1986 if (sdata->local->ops->hw_scan)
1987 break;
Johannes Berge9d77322011-02-01 15:35:36 +01001988 /*
1989 * FIXME: implement NoA while scanning in software,
1990 * for now fall through to allow scanning only when
1991 * beaconing hasn't been configured yet
1992 */
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001993 case NL80211_IFTYPE_AP:
Antonio Quartulli5c95b942012-10-16 08:39:22 +02001994 /*
1995 * If the scan has been forced (and the driver supports
1996 * forcing), don't care about being beaconing already.
1997 * This will create problems to the attached stations (e.g. all
1998 * the frames sent while scanning on other channel will be
1999 * lost)
2000 */
2001 if (sdata->u.ap.beacon &&
2002 (!(wiphy->features & NL80211_FEATURE_AP_SCAN) ||
2003 !(req->flags & NL80211_SCAN_FLAG_AP)))
Johannes Berg2ca27bc2010-09-16 14:58:23 +02002004 return -EOPNOTSUPP;
2005 break;
2006 default:
2007 return -EOPNOTSUPP;
2008 }
Johannes Berg2a519312009-02-10 21:25:55 +01002009
2010 return ieee80211_request_scan(sdata, req);
2011}
2012
Luciano Coelho79f460c2011-05-11 17:09:36 +03002013static int
2014ieee80211_sched_scan_start(struct wiphy *wiphy,
2015 struct net_device *dev,
2016 struct cfg80211_sched_scan_request *req)
2017{
2018 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2019
2020 if (!sdata->local->ops->sched_scan_start)
2021 return -EOPNOTSUPP;
2022
2023 return ieee80211_request_sched_scan_start(sdata, req);
2024}
2025
2026static int
Luciano Coelho85a99942011-05-12 16:28:29 +03002027ieee80211_sched_scan_stop(struct wiphy *wiphy, struct net_device *dev)
Luciano Coelho79f460c2011-05-11 17:09:36 +03002028{
2029 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2030
2031 if (!sdata->local->ops->sched_scan_stop)
2032 return -EOPNOTSUPP;
2033
Luciano Coelho85a99942011-05-12 16:28:29 +03002034 return ieee80211_request_sched_scan_stop(sdata);
Luciano Coelho79f460c2011-05-11 17:09:36 +03002035}
2036
Jouni Malinen636a5d32009-03-19 13:39:22 +02002037static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev,
2038 struct cfg80211_auth_request *req)
2039{
Johannes Berg77fdaa12009-07-07 03:45:17 +02002040 return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002041}
2042
2043static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev,
2044 struct cfg80211_assoc_request *req)
2045{
Johannes Berg77fdaa12009-07-07 03:45:17 +02002046 return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002047}
2048
2049static int ieee80211_deauth(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002050 struct cfg80211_deauth_request *req)
Jouni Malinen636a5d32009-03-19 13:39:22 +02002051{
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002052 return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002053}
2054
2055static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002056 struct cfg80211_disassoc_request *req)
Jouni Malinen636a5d32009-03-19 13:39:22 +02002057{
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002058 return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002059}
2060
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002061static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
2062 struct cfg80211_ibss_params *params)
2063{
Johannes Berg55de9082012-07-26 17:24:39 +02002064 return ieee80211_ibss_join(IEEE80211_DEV_TO_SUB_IF(dev), params);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002065}
2066
2067static int ieee80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev)
2068{
Johannes Berg55de9082012-07-26 17:24:39 +02002069 return ieee80211_ibss_leave(IEEE80211_DEV_TO_SUB_IF(dev));
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002070}
2071
Rostislav Lisovy239281f2014-11-03 10:33:19 +01002072static int ieee80211_join_ocb(struct wiphy *wiphy, struct net_device *dev,
2073 struct ocb_setup *setup)
2074{
2075 return ieee80211_ocb_join(IEEE80211_DEV_TO_SUB_IF(dev), setup);
2076}
2077
2078static int ieee80211_leave_ocb(struct wiphy *wiphy, struct net_device *dev)
2079{
2080 return ieee80211_ocb_leave(IEEE80211_DEV_TO_SUB_IF(dev));
2081}
2082
Antonio Quartulli391e53e2012-11-02 13:27:49 +01002083static int ieee80211_set_mcast_rate(struct wiphy *wiphy, struct net_device *dev,
2084 int rate[IEEE80211_NUM_BANDS])
2085{
2086 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2087
Cong Ding9887dbf2013-02-06 17:23:45 +01002088 memcpy(sdata->vif.bss_conf.mcast_rate, rate,
2089 sizeof(int) * IEEE80211_NUM_BANDS);
Antonio Quartulli391e53e2012-11-02 13:27:49 +01002090
2091 return 0;
2092}
2093
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002094static int ieee80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
2095{
2096 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg24487982009-04-23 18:52:52 +02002097 int err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002098
Arik Nemtsovf23a4782010-11-08 11:51:06 +02002099 if (changed & WIPHY_PARAM_FRAG_THRESHOLD) {
2100 err = drv_set_frag_threshold(local, wiphy->frag_threshold);
2101
2102 if (err)
2103 return err;
2104 }
2105
Lorenzo Bianconia4bcaf52014-09-04 23:57:41 +02002106 if ((changed & WIPHY_PARAM_COVERAGE_CLASS) ||
2107 (changed & WIPHY_PARAM_DYN_ACK)) {
2108 s16 coverage_class;
2109
2110 coverage_class = changed & WIPHY_PARAM_COVERAGE_CLASS ?
2111 wiphy->coverage_class : -1;
2112 err = drv_set_coverage_class(local, coverage_class);
Lukáš Turek310bc672009-12-21 22:50:48 +01002113
2114 if (err)
2115 return err;
2116 }
2117
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002118 if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
Johannes Berg24487982009-04-23 18:52:52 +02002119 err = drv_set_rts_threshold(local, wiphy->rts_threshold);
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002120
Johannes Berg24487982009-04-23 18:52:52 +02002121 if (err)
2122 return err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002123 }
2124
Johannes Berg8bc83c22012-11-09 18:38:32 +01002125 if (changed & WIPHY_PARAM_RETRY_SHORT) {
2126 if (wiphy->retry_short > IEEE80211_MAX_TX_RETRY)
2127 return -EINVAL;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002128 local->hw.conf.short_frame_max_tx_count = wiphy->retry_short;
Johannes Berg8bc83c22012-11-09 18:38:32 +01002129 }
2130 if (changed & WIPHY_PARAM_RETRY_LONG) {
2131 if (wiphy->retry_long > IEEE80211_MAX_TX_RETRY)
2132 return -EINVAL;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002133 local->hw.conf.long_frame_max_tx_count = wiphy->retry_long;
Johannes Berg8bc83c22012-11-09 18:38:32 +01002134 }
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002135 if (changed &
2136 (WIPHY_PARAM_RETRY_SHORT | WIPHY_PARAM_RETRY_LONG))
2137 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
2138
2139 return 0;
2140}
2141
Johannes Berg7643a2c2009-06-02 13:01:39 +02002142static int ieee80211_set_tx_power(struct wiphy *wiphy,
Johannes Bergc8442112012-10-24 10:17:18 +02002143 struct wireless_dev *wdev,
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002144 enum nl80211_tx_power_setting type, int mbm)
Johannes Berg7643a2c2009-06-02 13:01:39 +02002145{
2146 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002147 struct ieee80211_sub_if_data *sdata;
Lorenzo Bianconidb82d8a2015-01-14 12:55:08 +01002148 enum nl80211_tx_power_setting txp_type = type;
2149 bool update_txp_type = false;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002150
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002151 if (wdev) {
2152 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2153
2154 switch (type) {
2155 case NL80211_TX_POWER_AUTOMATIC:
2156 sdata->user_power_level = IEEE80211_UNSET_POWER_LEVEL;
Lorenzo Bianconidb82d8a2015-01-14 12:55:08 +01002157 txp_type = NL80211_TX_POWER_LIMITED;
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002158 break;
2159 case NL80211_TX_POWER_LIMITED:
2160 case NL80211_TX_POWER_FIXED:
2161 if (mbm < 0 || (mbm % 100))
2162 return -EOPNOTSUPP;
2163 sdata->user_power_level = MBM_TO_DBM(mbm);
2164 break;
2165 }
2166
Lorenzo Bianconidb82d8a2015-01-14 12:55:08 +01002167 if (txp_type != sdata->vif.bss_conf.txpower_type) {
2168 update_txp_type = true;
2169 sdata->vif.bss_conf.txpower_type = txp_type;
2170 }
2171
2172 ieee80211_recalc_txpower(sdata, update_txp_type);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002173
2174 return 0;
2175 }
Johannes Berg55de9082012-07-26 17:24:39 +02002176
Johannes Berg7643a2c2009-06-02 13:01:39 +02002177 switch (type) {
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002178 case NL80211_TX_POWER_AUTOMATIC:
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002179 local->user_power_level = IEEE80211_UNSET_POWER_LEVEL;
Lorenzo Bianconidb82d8a2015-01-14 12:55:08 +01002180 txp_type = NL80211_TX_POWER_LIMITED;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002181 break;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002182 case NL80211_TX_POWER_LIMITED:
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002183 case NL80211_TX_POWER_FIXED:
2184 if (mbm < 0 || (mbm % 100))
2185 return -EOPNOTSUPP;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002186 local->user_power_level = MBM_TO_DBM(mbm);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002187 break;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002188 }
2189
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002190 mutex_lock(&local->iflist_mtx);
Lorenzo Bianconidb82d8a2015-01-14 12:55:08 +01002191 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002192 sdata->user_power_level = local->user_power_level;
Lorenzo Bianconidb82d8a2015-01-14 12:55:08 +01002193 if (txp_type != sdata->vif.bss_conf.txpower_type)
2194 update_txp_type = true;
2195 sdata->vif.bss_conf.txpower_type = txp_type;
2196 }
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002197 list_for_each_entry(sdata, &local->interfaces, list)
Lorenzo Bianconidb82d8a2015-01-14 12:55:08 +01002198 ieee80211_recalc_txpower(sdata, update_txp_type);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002199 mutex_unlock(&local->iflist_mtx);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002200
2201 return 0;
2202}
2203
Johannes Bergc8442112012-10-24 10:17:18 +02002204static int ieee80211_get_tx_power(struct wiphy *wiphy,
2205 struct wireless_dev *wdev,
2206 int *dbm)
Johannes Berg7643a2c2009-06-02 13:01:39 +02002207{
2208 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002209 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002210
Felix Fietkau5b3dc422014-10-26 00:32:53 +02002211 if (local->ops->get_txpower)
2212 return drv_get_txpower(local, sdata, dbm);
2213
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002214 if (!local->use_chanctx)
2215 *dbm = local->hw.conf.power_level;
2216 else
2217 *dbm = sdata->vif.bss_conf.txpower;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002218
Johannes Berg7643a2c2009-06-02 13:01:39 +02002219 return 0;
2220}
2221
Johannes Bergab737a42009-07-01 21:26:58 +02002222static int ieee80211_set_wds_peer(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg388ac772010-10-07 13:11:09 +02002223 const u8 *addr)
Johannes Bergab737a42009-07-01 21:26:58 +02002224{
2225 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2226
2227 memcpy(&sdata->u.wds.remote_addr, addr, ETH_ALEN);
2228
2229 return 0;
2230}
2231
Johannes Berg1f87f7d2009-06-02 13:01:41 +02002232static void ieee80211_rfkill_poll(struct wiphy *wiphy)
2233{
2234 struct ieee80211_local *local = wiphy_priv(wiphy);
2235
2236 drv_rfkill_poll(local);
2237}
2238
Johannes Bergaff89a92009-07-01 21:26:51 +02002239#ifdef CONFIG_NL80211_TESTMODE
David Spinadelfc73f112013-07-31 18:04:15 +03002240static int ieee80211_testmode_cmd(struct wiphy *wiphy,
2241 struct wireless_dev *wdev,
2242 void *data, int len)
Johannes Bergaff89a92009-07-01 21:26:51 +02002243{
2244 struct ieee80211_local *local = wiphy_priv(wiphy);
David Spinadel52981cd2013-07-31 18:06:22 +03002245 struct ieee80211_vif *vif = NULL;
Johannes Bergaff89a92009-07-01 21:26:51 +02002246
2247 if (!local->ops->testmode_cmd)
2248 return -EOPNOTSUPP;
2249
David Spinadel52981cd2013-07-31 18:06:22 +03002250 if (wdev) {
2251 struct ieee80211_sub_if_data *sdata;
2252
2253 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2254 if (sdata->flags & IEEE80211_SDATA_IN_DRIVER)
2255 vif = &sdata->vif;
2256 }
2257
2258 return local->ops->testmode_cmd(&local->hw, vif, data, len);
Johannes Bergaff89a92009-07-01 21:26:51 +02002259}
Wey-Yi Guy71063f02011-05-20 09:05:54 -07002260
2261static int ieee80211_testmode_dump(struct wiphy *wiphy,
2262 struct sk_buff *skb,
2263 struct netlink_callback *cb,
2264 void *data, int len)
2265{
2266 struct ieee80211_local *local = wiphy_priv(wiphy);
2267
2268 if (!local->ops->testmode_dump)
2269 return -EOPNOTSUPP;
2270
2271 return local->ops->testmode_dump(&local->hw, skb, cb, data, len);
2272}
Johannes Bergaff89a92009-07-01 21:26:51 +02002273#endif
2274
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002275int __ieee80211_request_smps_ap(struct ieee80211_sub_if_data *sdata,
2276 enum ieee80211_smps_mode smps_mode)
2277{
2278 struct sta_info *sta;
2279 enum ieee80211_smps_mode old_req;
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002280
2281 if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_AP))
2282 return -EINVAL;
2283
2284 if (sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT)
2285 return 0;
2286
2287 old_req = sdata->u.ap.req_smps;
2288 sdata->u.ap.req_smps = smps_mode;
2289
2290 /* AUTOMATIC doesn't mean much for AP - don't allow it */
2291 if (old_req == smps_mode ||
2292 smps_mode == IEEE80211_SMPS_AUTOMATIC)
2293 return 0;
2294
2295 /* If no associated stations, there's no need to do anything */
2296 if (!atomic_read(&sdata->u.ap.num_mcast_sta)) {
2297 sdata->smps_mode = smps_mode;
2298 ieee80211_queue_work(&sdata->local->hw, &sdata->recalc_smps);
2299 return 0;
2300 }
2301
2302 ht_dbg(sdata,
Michael Braun6a8b4ad2015-03-18 07:17:37 +01002303 "SMPS %d requested in AP mode, sending Action frame to %d stations\n",
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002304 smps_mode, atomic_read(&sdata->u.ap.num_mcast_sta));
2305
2306 mutex_lock(&sdata->local->sta_mtx);
Johannes Berg7d9bb2f2015-02-13 21:31:07 +01002307 list_for_each_entry(sta, &sdata->local->sta_list, list) {
2308 /*
2309 * Only stations associated to our AP and
2310 * associated VLANs
2311 */
2312 if (sta->sdata->bss != &sdata->u.ap)
2313 continue;
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002314
Johannes Berg7d9bb2f2015-02-13 21:31:07 +01002315 /* This station doesn't support MIMO - skip it */
2316 if (sta_info_tx_streams(sta) == 1)
2317 continue;
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002318
Johannes Berg7d9bb2f2015-02-13 21:31:07 +01002319 /*
2320 * Don't wake up a STA just to send the action frame
2321 * unless we are getting more restrictive.
2322 */
2323 if (test_sta_flag(sta, WLAN_STA_PS_STA) &&
2324 !ieee80211_smps_is_restrictive(sta->known_smps_mode,
2325 smps_mode)) {
2326 ht_dbg(sdata, "Won't send SMPS to sleeping STA %pM\n",
2327 sta->sta.addr);
2328 continue;
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002329 }
Johannes Berg7d9bb2f2015-02-13 21:31:07 +01002330
2331 /*
2332 * If the STA is not authorized, wait until it gets
2333 * authorized and the action frame will be sent then.
2334 */
2335 if (!test_sta_flag(sta, WLAN_STA_AUTHORIZED))
2336 continue;
2337
2338 ht_dbg(sdata, "Sending SMPS to %pM\n", sta->sta.addr);
2339 ieee80211_send_smps_action(sdata, smps_mode, sta->sta.addr,
2340 sdata->vif.bss_conf.bssid);
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002341 }
2342 mutex_unlock(&sdata->local->sta_mtx);
2343
2344 sdata->smps_mode = smps_mode;
2345 ieee80211_queue_work(&sdata->local->hw, &sdata->recalc_smps);
2346
2347 return 0;
2348}
2349
2350int __ieee80211_request_smps_mgd(struct ieee80211_sub_if_data *sdata,
2351 enum ieee80211_smps_mode smps_mode)
Johannes Berg0f782312009-12-01 13:37:02 +01002352{
2353 const u8 *ap;
2354 enum ieee80211_smps_mode old_req;
2355 int err;
2356
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002357 lockdep_assert_held(&sdata->wdev.mtx);
Johannes Berg243e6df2011-04-19 20:44:04 +02002358
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002359 if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_STATION))
2360 return -EINVAL;
2361
Johannes Berg0f782312009-12-01 13:37:02 +01002362 old_req = sdata->u.mgd.req_smps;
2363 sdata->u.mgd.req_smps = smps_mode;
2364
2365 if (old_req == smps_mode &&
2366 smps_mode != IEEE80211_SMPS_AUTOMATIC)
2367 return 0;
2368
2369 /*
2370 * If not associated, or current association is not an HT
Johannes Berg04ecd252012-09-11 14:34:12 +02002371 * association, there's no need to do anything, just store
2372 * the new value until we associate.
Johannes Berg0f782312009-12-01 13:37:02 +01002373 */
2374 if (!sdata->u.mgd.associated ||
Johannes Berg4bf88532012-11-09 11:39:59 +01002375 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT)
Johannes Berg0f782312009-12-01 13:37:02 +01002376 return 0;
Johannes Berg0f782312009-12-01 13:37:02 +01002377
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002378 ap = sdata->u.mgd.associated->bssid;
Johannes Berg0f782312009-12-01 13:37:02 +01002379
2380 if (smps_mode == IEEE80211_SMPS_AUTOMATIC) {
2381 if (sdata->u.mgd.powersave)
2382 smps_mode = IEEE80211_SMPS_DYNAMIC;
2383 else
2384 smps_mode = IEEE80211_SMPS_OFF;
2385 }
2386
2387 /* send SM PS frame to AP */
2388 err = ieee80211_send_smps_action(sdata, smps_mode,
2389 ap, ap);
2390 if (err)
2391 sdata->u.mgd.req_smps = old_req;
2392
2393 return err;
2394}
2395
Johannes Bergbc92afd2009-07-01 21:26:57 +02002396static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev,
2397 bool enabled, int timeout)
2398{
2399 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2400 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Bergbc92afd2009-07-01 21:26:57 +02002401
Bob Copeland2d3db212013-10-29 18:11:59 -04002402 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Benoit Papillaulte5de30c2010-01-15 12:21:37 +01002403 return -EOPNOTSUPP;
2404
Johannes Bergbc92afd2009-07-01 21:26:57 +02002405 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
2406 return -EOPNOTSUPP;
2407
2408 if (enabled == sdata->u.mgd.powersave &&
Juuso Oikarinenff616382010-06-09 09:51:52 +03002409 timeout == local->dynamic_ps_forced_timeout)
Johannes Bergbc92afd2009-07-01 21:26:57 +02002410 return 0;
2411
2412 sdata->u.mgd.powersave = enabled;
Juuso Oikarinenff616382010-06-09 09:51:52 +03002413 local->dynamic_ps_forced_timeout = timeout;
Johannes Bergbc92afd2009-07-01 21:26:57 +02002414
Johannes Berg0f782312009-12-01 13:37:02 +01002415 /* no change, but if automatic follow powersave */
Johannes Berged405be2013-06-03 13:51:59 +02002416 sdata_lock(sdata);
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002417 __ieee80211_request_smps_mgd(sdata, sdata->u.mgd.req_smps);
Johannes Berged405be2013-06-03 13:51:59 +02002418 sdata_unlock(sdata);
Johannes Berg0f782312009-12-01 13:37:02 +01002419
Johannes Bergbc92afd2009-07-01 21:26:57 +02002420 if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
2421 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2422
2423 ieee80211_recalc_ps(local, -1);
Eliad Pellerab095872012-07-27 12:33:22 +03002424 ieee80211_recalc_ps_vif(sdata);
Johannes Bergbc92afd2009-07-01 21:26:57 +02002425
2426 return 0;
2427}
2428
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002429static int ieee80211_set_cqm_rssi_config(struct wiphy *wiphy,
2430 struct net_device *dev,
2431 s32 rssi_thold, u32 rssi_hyst)
2432{
2433 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002434 struct ieee80211_vif *vif = &sdata->vif;
2435 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
2436
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002437 if (rssi_thold == bss_conf->cqm_rssi_thold &&
2438 rssi_hyst == bss_conf->cqm_rssi_hyst)
2439 return 0;
2440
2441 bss_conf->cqm_rssi_thold = rssi_thold;
2442 bss_conf->cqm_rssi_hyst = rssi_hyst;
2443
2444 /* tell the driver upon association, unless already associated */
Johannes Bergea086352012-01-19 09:29:58 +01002445 if (sdata->u.mgd.associated &&
2446 sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002447 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_CQM);
2448
2449 return 0;
2450}
2451
Johannes Berg99303802009-07-01 21:26:59 +02002452static int ieee80211_set_bitrate_mask(struct wiphy *wiphy,
2453 struct net_device *dev,
2454 const u8 *addr,
2455 const struct cfg80211_bitrate_mask *mask)
2456{
2457 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2458 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +05302459 int i, ret;
Johannes Berg99303802009-07-01 21:26:59 +02002460
Eliad Peller554a43d2012-06-12 12:41:15 +03002461 if (!ieee80211_sdata_running(sdata))
2462 return -ENETDOWN;
2463
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +05302464 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL) {
2465 ret = drv_set_bitrate_mask(local, sdata, mask);
2466 if (ret)
2467 return ret;
2468 }
Johannes Berg99303802009-07-01 21:26:59 +02002469
Simon Wunderlich19468412012-01-28 17:25:33 +01002470 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
Felix Fietkau2ffbe6d2013-04-16 13:38:42 +02002471 struct ieee80211_supported_band *sband = wiphy->bands[i];
2472 int j;
2473
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002474 sdata->rc_rateidx_mask[i] = mask->control[i].legacy;
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01002475 memcpy(sdata->rc_rateidx_mcs_mask[i], mask->control[i].ht_mcs,
2476 sizeof(mask->control[i].ht_mcs));
Felix Fietkau2ffbe6d2013-04-16 13:38:42 +02002477
2478 sdata->rc_has_mcs_mask[i] = false;
2479 if (!sband)
2480 continue;
2481
2482 for (j = 0; j < IEEE80211_HT_MCS_MASK_LEN; j++)
2483 if (~sdata->rc_rateidx_mcs_mask[i][j]) {
2484 sdata->rc_has_mcs_mask[i] = true;
2485 break;
2486 }
Simon Wunderlich19468412012-01-28 17:25:33 +01002487 }
Johannes Berg99303802009-07-01 21:26:59 +02002488
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002489 return 0;
Johannes Berg99303802009-07-01 21:26:59 +02002490}
2491
Eliad Pellereaa336b2014-09-03 15:25:06 +03002492static bool ieee80211_coalesce_started_roc(struct ieee80211_local *local,
2493 struct ieee80211_roc_work *new_roc,
2494 struct ieee80211_roc_work *cur_roc)
2495{
2496 unsigned long j = jiffies;
2497 unsigned long cur_roc_end = cur_roc->hw_start_time +
2498 msecs_to_jiffies(cur_roc->duration);
2499 struct ieee80211_roc_work *next_roc;
2500 int new_dur;
2501
2502 if (WARN_ON(!cur_roc->started || !cur_roc->hw_begun))
2503 return false;
2504
2505 if (time_after(j + IEEE80211_ROC_MIN_LEFT, cur_roc_end))
2506 return false;
2507
2508 ieee80211_handle_roc_started(new_roc);
2509
2510 new_dur = new_roc->duration - jiffies_to_msecs(cur_roc_end - j);
2511
2512 /* cur_roc is long enough - add new_roc to the dependents list. */
2513 if (new_dur <= 0) {
2514 list_add_tail(&new_roc->list, &cur_roc->dependents);
2515 return true;
2516 }
2517
2518 new_roc->duration = new_dur;
2519
2520 /*
2521 * if cur_roc was already coalesced before, we might
2522 * want to extend the next roc instead of adding
2523 * a new one.
2524 */
2525 next_roc = list_entry(cur_roc->list.next,
2526 struct ieee80211_roc_work, list);
2527 if (&next_roc->list != &local->roc_list &&
2528 next_roc->chan == new_roc->chan &&
2529 next_roc->sdata == new_roc->sdata &&
2530 !WARN_ON(next_roc->started)) {
2531 list_add_tail(&new_roc->list, &next_roc->dependents);
2532 next_roc->duration = max(next_roc->duration,
2533 new_roc->duration);
2534 next_roc->type = max(next_roc->type, new_roc->type);
2535 return true;
2536 }
2537
2538 /* add right after cur_roc */
2539 list_add(&new_roc->list, &cur_roc->list);
2540
2541 return true;
2542}
2543
Johannes Berg2eb278e2012-06-05 14:28:42 +02002544static int ieee80211_start_roc_work(struct ieee80211_local *local,
2545 struct ieee80211_sub_if_data *sdata,
2546 struct ieee80211_channel *channel,
Johannes Berg2eb278e2012-06-05 14:28:42 +02002547 unsigned int duration, u64 *cookie,
Ilan Peerd339d5c2013-02-12 09:34:13 +02002548 struct sk_buff *txskb,
2549 enum ieee80211_roc_type type)
Johannes Berg21f83582010-12-18 17:20:47 +01002550{
Johannes Berg2eb278e2012-06-05 14:28:42 +02002551 struct ieee80211_roc_work *roc, *tmp;
2552 bool queued = false;
Johannes Berg21f83582010-12-18 17:20:47 +01002553 int ret;
Johannes Berg21f83582010-12-18 17:20:47 +01002554
2555 lockdep_assert_held(&local->mtx);
2556
Johannes Bergfe57d9f2012-07-26 14:55:08 +02002557 if (local->use_chanctx && !local->ops->remain_on_channel)
2558 return -EOPNOTSUPP;
2559
Johannes Berg2eb278e2012-06-05 14:28:42 +02002560 roc = kzalloc(sizeof(*roc), GFP_KERNEL);
2561 if (!roc)
2562 return -ENOMEM;
Johannes Berg21f83582010-12-18 17:20:47 +01002563
Ilan Peer2fae0622013-12-19 13:25:29 +02002564 /*
2565 * If the duration is zero, then the driver
2566 * wouldn't actually do anything. Set it to
2567 * 10 for now.
2568 *
2569 * TODO: cancel the off-channel operation
2570 * when we get the SKB's TX status and
2571 * the wait time was zero before.
2572 */
2573 if (!duration)
2574 duration = 10;
2575
Johannes Berg2eb278e2012-06-05 14:28:42 +02002576 roc->chan = channel;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002577 roc->duration = duration;
2578 roc->req_duration = duration;
2579 roc->frame = txskb;
Ilan Peerd339d5c2013-02-12 09:34:13 +02002580 roc->type = type;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002581 roc->mgmt_tx_cookie = (unsigned long)txskb;
2582 roc->sdata = sdata;
2583 INIT_DELAYED_WORK(&roc->work, ieee80211_sw_roc_work);
2584 INIT_LIST_HEAD(&roc->dependents);
2585
Eliad Peller2f617432014-01-12 11:06:37 +02002586 /*
2587 * cookie is either the roc cookie (for normal roc)
2588 * or the SKB (for mgmt TX)
2589 */
2590 if (!txskb) {
2591 /* local->mtx protects this */
2592 local->roc_cookie_counter++;
2593 roc->cookie = local->roc_cookie_counter;
2594 /* wow, you wrapped 64 bits ... more likely a bug */
2595 if (WARN_ON(roc->cookie == 0)) {
2596 roc->cookie = 1;
2597 local->roc_cookie_counter++;
2598 }
2599 *cookie = roc->cookie;
2600 } else {
2601 *cookie = (unsigned long)txskb;
2602 }
2603
Johannes Berg2eb278e2012-06-05 14:28:42 +02002604 /* if there's one pending or we're scanning, queue this one */
Simon Wunderlich164eb022013-02-08 18:16:20 +01002605 if (!list_empty(&local->roc_list) ||
Eliad Peller5cbc95a2015-01-07 17:50:09 +02002606 local->scanning || ieee80211_is_radar_required(local))
Johannes Berg2eb278e2012-06-05 14:28:42 +02002607 goto out_check_combine;
2608
2609 /* if not HW assist, just queue & schedule work */
2610 if (!local->ops->remain_on_channel) {
2611 ieee80211_queue_delayed_work(&local->hw, &roc->work, 0);
2612 goto out_queue;
Johannes Berg21f83582010-12-18 17:20:47 +01002613 }
2614
Johannes Berg2eb278e2012-06-05 14:28:42 +02002615 /* otherwise actually kick it off here (for error handling) */
2616
Ilan Peerd339d5c2013-02-12 09:34:13 +02002617 ret = drv_remain_on_channel(local, sdata, channel, duration, type);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002618 if (ret) {
2619 kfree(roc);
2620 return ret;
2621 }
2622
2623 roc->started = true;
2624 goto out_queue;
2625
2626 out_check_combine:
2627 list_for_each_entry(tmp, &local->roc_list, list) {
Johannes Berg42d97a52012-11-08 18:31:02 +01002628 if (tmp->chan != channel || tmp->sdata != sdata)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002629 continue;
2630
2631 /*
2632 * Extend this ROC if possible:
2633 *
2634 * If it hasn't started yet, just increase the duration
2635 * and add the new one to the list of dependents.
Ilan Peerd339d5c2013-02-12 09:34:13 +02002636 * If the type of the new ROC has higher priority, modify the
2637 * type of the previous one to match that of the new one.
Johannes Berg2eb278e2012-06-05 14:28:42 +02002638 */
2639 if (!tmp->started) {
2640 list_add_tail(&roc->list, &tmp->dependents);
2641 tmp->duration = max(tmp->duration, roc->duration);
Ilan Peerd339d5c2013-02-12 09:34:13 +02002642 tmp->type = max(tmp->type, roc->type);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002643 queued = true;
2644 break;
2645 }
2646
2647 /* If it has already started, it's more difficult ... */
2648 if (local->ops->remain_on_channel) {
Johannes Berg2eb278e2012-06-05 14:28:42 +02002649 /*
2650 * In the offloaded ROC case, if it hasn't begun, add
2651 * this new one to the dependent list to be handled
Ilan Peerd339d5c2013-02-12 09:34:13 +02002652 * when the master one begins. If it has begun,
Johannes Berg2eb278e2012-06-05 14:28:42 +02002653 * check that there's still a minimum time left and
2654 * if so, start this one, transmitting the frame, but
Ilan Peerd339d5c2013-02-12 09:34:13 +02002655 * add it to the list directly after this one with
Johannes Berg2eb278e2012-06-05 14:28:42 +02002656 * a reduced time so we'll ask the driver to execute
2657 * it right after finishing the previous one, in the
2658 * hope that it'll also be executed right afterwards,
2659 * effectively extending the old one.
2660 * If there's no minimum time left, just add it to the
2661 * normal list.
Ilan Peerd339d5c2013-02-12 09:34:13 +02002662 * TODO: the ROC type is ignored here, assuming that it
2663 * is better to immediately use the current ROC.
Johannes Berg2eb278e2012-06-05 14:28:42 +02002664 */
2665 if (!tmp->hw_begun) {
2666 list_add_tail(&roc->list, &tmp->dependents);
2667 queued = true;
2668 break;
2669 }
2670
Eliad Pellereaa336b2014-09-03 15:25:06 +03002671 if (ieee80211_coalesce_started_roc(local, roc, tmp))
Johannes Berg2eb278e2012-06-05 14:28:42 +02002672 queued = true;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002673 } else if (del_timer_sync(&tmp->work.timer)) {
2674 unsigned long new_end;
2675
2676 /*
2677 * In the software ROC case, cancel the timer, if
2678 * that fails then the finish work is already
2679 * queued/pending and thus we queue the new ROC
2680 * normally, if that succeeds then we can extend
2681 * the timer duration and TX the frame (if any.)
2682 */
2683
2684 list_add_tail(&roc->list, &tmp->dependents);
2685 queued = true;
2686
2687 new_end = jiffies + msecs_to_jiffies(roc->duration);
2688
2689 /* ok, it was started & we canceled timer */
2690 if (time_after(new_end, tmp->work.timer.expires))
2691 mod_timer(&tmp->work.timer, new_end);
2692 else
2693 add_timer(&tmp->work.timer);
2694
2695 ieee80211_handle_roc_started(roc);
2696 }
2697 break;
2698 }
2699
2700 out_queue:
2701 if (!queued)
2702 list_add_tail(&roc->list, &local->roc_list);
2703
Johannes Berg2eb278e2012-06-05 14:28:42 +02002704 return 0;
Johannes Berg21f83582010-12-18 17:20:47 +01002705}
2706
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002707static int ieee80211_remain_on_channel(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02002708 struct wireless_dev *wdev,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002709 struct ieee80211_channel *chan,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002710 unsigned int duration,
2711 u64 *cookie)
2712{
Johannes Berg71bbc992012-06-15 15:30:18 +02002713 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg21f83582010-12-18 17:20:47 +01002714 struct ieee80211_local *local = sdata->local;
Johannes Berg21f83582010-12-18 17:20:47 +01002715 int ret;
2716
Johannes Berg2eb278e2012-06-05 14:28:42 +02002717 mutex_lock(&local->mtx);
Johannes Berg42d97a52012-11-08 18:31:02 +01002718 ret = ieee80211_start_roc_work(local, sdata, chan,
Ilan Peerd339d5c2013-02-12 09:34:13 +02002719 duration, cookie, NULL,
2720 IEEE80211_ROC_TYPE_NORMAL);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002721 mutex_unlock(&local->mtx);
Johannes Berg21f83582010-12-18 17:20:47 +01002722
Johannes Berg2eb278e2012-06-05 14:28:42 +02002723 return ret;
2724}
2725
2726static int ieee80211_cancel_roc(struct ieee80211_local *local,
2727 u64 cookie, bool mgmt_tx)
2728{
2729 struct ieee80211_roc_work *roc, *tmp, *found = NULL;
2730 int ret;
2731
2732 mutex_lock(&local->mtx);
2733 list_for_each_entry_safe(roc, tmp, &local->roc_list, list) {
Johannes Berge979e332012-06-11 17:09:41 +02002734 struct ieee80211_roc_work *dep, *tmp2;
2735
2736 list_for_each_entry_safe(dep, tmp2, &roc->dependents, list) {
Johannes Berg50febf62012-10-26 16:13:06 +02002737 if (!mgmt_tx && dep->cookie != cookie)
Johannes Berge979e332012-06-11 17:09:41 +02002738 continue;
2739 else if (mgmt_tx && dep->mgmt_tx_cookie != cookie)
2740 continue;
2741 /* found dependent item -- just remove it */
2742 list_del(&dep->list);
2743 mutex_unlock(&local->mtx);
2744
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002745 ieee80211_roc_notify_destroy(dep, true);
Johannes Berge979e332012-06-11 17:09:41 +02002746 return 0;
2747 }
2748
Johannes Berg50febf62012-10-26 16:13:06 +02002749 if (!mgmt_tx && roc->cookie != cookie)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002750 continue;
2751 else if (mgmt_tx && roc->mgmt_tx_cookie != cookie)
2752 continue;
2753
2754 found = roc;
2755 break;
2756 }
2757
2758 if (!found) {
2759 mutex_unlock(&local->mtx);
Johannes Berg21f83582010-12-18 17:20:47 +01002760 return -ENOENT;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002761 }
Johannes Berg21f83582010-12-18 17:20:47 +01002762
Johannes Berge979e332012-06-11 17:09:41 +02002763 /*
2764 * We found the item to cancel, so do that. Note that it
2765 * may have dependents, which we also cancel (and send
2766 * the expired signal for.) Not doing so would be quite
2767 * tricky here, but we may need to fix it later.
2768 */
2769
Johannes Berg2eb278e2012-06-05 14:28:42 +02002770 if (local->ops->remain_on_channel) {
2771 if (found->started) {
2772 ret = drv_cancel_remain_on_channel(local);
2773 if (WARN_ON_ONCE(ret)) {
2774 mutex_unlock(&local->mtx);
2775 return ret;
2776 }
2777 }
Johannes Berg21f83582010-12-18 17:20:47 +01002778
Johannes Berg2eb278e2012-06-05 14:28:42 +02002779 list_del(&found->list);
2780
Johannes Berg0f6b3f52012-06-20 20:11:33 +02002781 if (found->started)
2782 ieee80211_start_next_roc(local);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002783 mutex_unlock(&local->mtx);
2784
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002785 ieee80211_roc_notify_destroy(found, true);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002786 } else {
2787 /* work may be pending so use it all the time */
2788 found->abort = true;
2789 ieee80211_queue_delayed_work(&local->hw, &found->work, 0);
2790
2791 mutex_unlock(&local->mtx);
2792
2793 /* work will clean up etc */
2794 flush_delayed_work(&found->work);
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002795 WARN_ON(!found->to_be_freed);
2796 kfree(found);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002797 }
Johannes Berg21f83582010-12-18 17:20:47 +01002798
Johannes Berg21f83582010-12-18 17:20:47 +01002799 return 0;
2800}
2801
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002802static int ieee80211_cancel_remain_on_channel(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02002803 struct wireless_dev *wdev,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002804 u64 cookie)
2805{
Johannes Berg71bbc992012-06-15 15:30:18 +02002806 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg21f83582010-12-18 17:20:47 +01002807 struct ieee80211_local *local = sdata->local;
2808
Johannes Berg2eb278e2012-06-05 14:28:42 +02002809 return ieee80211_cancel_roc(local, cookie, false);
Johannes Bergf30221e2010-11-25 10:02:30 +01002810}
2811
Simon Wunderlich164eb022013-02-08 18:16:20 +01002812static int ieee80211_start_radar_detection(struct wiphy *wiphy,
2813 struct net_device *dev,
Janusz Dziedzic31559f32014-02-21 19:46:13 +01002814 struct cfg80211_chan_def *chandef,
2815 u32 cac_time_ms)
Simon Wunderlich164eb022013-02-08 18:16:20 +01002816{
2817 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2818 struct ieee80211_local *local = sdata->local;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002819 int err;
2820
Johannes Berg34a37402013-12-18 09:43:33 +01002821 mutex_lock(&local->mtx);
2822 if (!list_empty(&local->roc_list) || local->scanning) {
2823 err = -EBUSY;
2824 goto out_unlock;
2825 }
Simon Wunderlich164eb022013-02-08 18:16:20 +01002826
2827 /* whatever, but channel contexts should not complain about that one */
2828 sdata->smps_mode = IEEE80211_SMPS_OFF;
2829 sdata->needed_rx_chains = local->rx_chains;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002830
Simon Wunderlich164eb022013-02-08 18:16:20 +01002831 err = ieee80211_vif_use_channel(sdata, chandef,
2832 IEEE80211_CHANCTX_SHARED);
Simon Wunderlich164eb022013-02-08 18:16:20 +01002833 if (err)
Johannes Berg34a37402013-12-18 09:43:33 +01002834 goto out_unlock;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002835
Simon Wunderlich164eb022013-02-08 18:16:20 +01002836 ieee80211_queue_delayed_work(&sdata->local->hw,
Janusz Dziedzic31559f32014-02-21 19:46:13 +01002837 &sdata->dfs_cac_timer_work,
2838 msecs_to_jiffies(cac_time_ms));
Simon Wunderlich164eb022013-02-08 18:16:20 +01002839
Johannes Berg34a37402013-12-18 09:43:33 +01002840 out_unlock:
2841 mutex_unlock(&local->mtx);
2842 return err;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002843}
2844
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002845static struct cfg80211_beacon_data *
2846cfg80211_beacon_dup(struct cfg80211_beacon_data *beacon)
2847{
2848 struct cfg80211_beacon_data *new_beacon;
2849 u8 *pos;
2850 int len;
2851
2852 len = beacon->head_len + beacon->tail_len + beacon->beacon_ies_len +
2853 beacon->proberesp_ies_len + beacon->assocresp_ies_len +
2854 beacon->probe_resp_len;
2855
2856 new_beacon = kzalloc(sizeof(*new_beacon) + len, GFP_KERNEL);
2857 if (!new_beacon)
2858 return NULL;
2859
2860 pos = (u8 *)(new_beacon + 1);
2861 if (beacon->head_len) {
2862 new_beacon->head_len = beacon->head_len;
2863 new_beacon->head = pos;
2864 memcpy(pos, beacon->head, beacon->head_len);
2865 pos += beacon->head_len;
2866 }
2867 if (beacon->tail_len) {
2868 new_beacon->tail_len = beacon->tail_len;
2869 new_beacon->tail = pos;
2870 memcpy(pos, beacon->tail, beacon->tail_len);
2871 pos += beacon->tail_len;
2872 }
2873 if (beacon->beacon_ies_len) {
2874 new_beacon->beacon_ies_len = beacon->beacon_ies_len;
2875 new_beacon->beacon_ies = pos;
2876 memcpy(pos, beacon->beacon_ies, beacon->beacon_ies_len);
2877 pos += beacon->beacon_ies_len;
2878 }
2879 if (beacon->proberesp_ies_len) {
2880 new_beacon->proberesp_ies_len = beacon->proberesp_ies_len;
2881 new_beacon->proberesp_ies = pos;
2882 memcpy(pos, beacon->proberesp_ies, beacon->proberesp_ies_len);
2883 pos += beacon->proberesp_ies_len;
2884 }
2885 if (beacon->assocresp_ies_len) {
2886 new_beacon->assocresp_ies_len = beacon->assocresp_ies_len;
2887 new_beacon->assocresp_ies = pos;
2888 memcpy(pos, beacon->assocresp_ies, beacon->assocresp_ies_len);
2889 pos += beacon->assocresp_ies_len;
2890 }
2891 if (beacon->probe_resp_len) {
2892 new_beacon->probe_resp_len = beacon->probe_resp_len;
2893 beacon->probe_resp = pos;
2894 memcpy(pos, beacon->probe_resp, beacon->probe_resp_len);
2895 pos += beacon->probe_resp_len;
2896 }
2897
2898 return new_beacon;
2899}
2900
Luciano Coelho66e01cf2014-01-13 19:43:00 +02002901void ieee80211_csa_finish(struct ieee80211_vif *vif)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002902{
Luciano Coelho66e01cf2014-01-13 19:43:00 +02002903 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2904
2905 ieee80211_queue_work(&sdata->local->hw,
2906 &sdata->csa_finalize_work);
2907}
2908EXPORT_SYMBOL(ieee80211_csa_finish);
2909
Michal Kazior66199502014-04-09 15:11:00 +02002910static int ieee80211_set_after_csa_beacon(struct ieee80211_sub_if_data *sdata,
2911 u32 *changed)
2912{
2913 int err;
2914
2915 switch (sdata->vif.type) {
2916 case NL80211_IFTYPE_AP:
Michal Kazioraf296bd2014-06-05 14:21:36 +02002917 err = ieee80211_assign_beacon(sdata, sdata->u.ap.next_beacon,
2918 NULL);
Michal Kazior66199502014-04-09 15:11:00 +02002919 kfree(sdata->u.ap.next_beacon);
2920 sdata->u.ap.next_beacon = NULL;
2921
2922 if (err < 0)
2923 return err;
2924 *changed |= err;
2925 break;
2926 case NL80211_IFTYPE_ADHOC:
2927 err = ieee80211_ibss_finish_csa(sdata);
2928 if (err < 0)
2929 return err;
2930 *changed |= err;
2931 break;
2932#ifdef CONFIG_MAC80211_MESH
2933 case NL80211_IFTYPE_MESH_POINT:
2934 err = ieee80211_mesh_finish_csa(sdata);
2935 if (err < 0)
2936 return err;
2937 *changed |= err;
2938 break;
2939#endif
2940 default:
2941 WARN_ON(1);
2942 return -EINVAL;
2943 }
2944
2945 return 0;
2946}
2947
Michal Kaziorcf8767d2014-05-08 09:10:02 +02002948static int __ieee80211_csa_finalize(struct ieee80211_sub_if_data *sdata)
Luciano Coelho66e01cf2014-01-13 19:43:00 +02002949{
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002950 struct ieee80211_local *local = sdata->local;
Michal Kazior66199502014-04-09 15:11:00 +02002951 u32 changed = 0;
2952 int err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002953
Michal Kaziordbd72852014-01-29 07:56:21 +01002954 sdata_assert_lock(sdata);
Michal Kazior59af6922014-04-09 15:10:59 +02002955 lockdep_assert_held(&local->mtx);
Michal Kazior03078de2014-06-25 12:35:08 +02002956 lockdep_assert_held(&local->chanctx_mtx);
Michal Kaziordbd72852014-01-29 07:56:21 +01002957
Michal Kazior03078de2014-06-25 12:35:08 +02002958 /*
2959 * using reservation isn't immediate as it may be deferred until later
2960 * with multi-vif. once reservation is complete it will re-schedule the
2961 * work with no reserved_chanctx so verify chandef to check if it
2962 * completed successfully
2963 */
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002964
Michal Kazior03078de2014-06-25 12:35:08 +02002965 if (sdata->reserved_chanctx) {
2966 /*
2967 * with multi-vif csa driver may call ieee80211_csa_finish()
2968 * many times while waiting for other interfaces to use their
2969 * reservations
2970 */
2971 if (sdata->reserved_ready)
2972 return 0;
2973
Fabian Frederick408b18a2014-10-09 20:36:22 +02002974 return ieee80211_vif_use_reserved_context(sdata);
Arik Nemtsov7578d572013-09-01 17:15:51 +03002975 }
2976
Michal Kazior03078de2014-06-25 12:35:08 +02002977 if (!cfg80211_chandef_identical(&sdata->vif.bss_conf.chandef,
2978 &sdata->csa_chandef))
2979 return -EINVAL;
2980
Simon Wunderliche487eae2013-11-21 18:19:51 +01002981 sdata->vif.csa_active = false;
Michal Kazior97518af2014-01-29 07:56:18 +01002982
Michal Kazior66199502014-04-09 15:11:00 +02002983 err = ieee80211_set_after_csa_beacon(sdata, &changed);
2984 if (err)
Michal Kaziorcf8767d2014-05-08 09:10:02 +02002985 return err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002986
Michal Kaziorfaf046e2014-01-29 07:56:17 +01002987 ieee80211_bss_info_change_notify(sdata, changed);
Michal Kazior59af6922014-04-09 15:10:59 +02002988
Luciano Coelhoa46992b2014-06-13 16:30:07 +03002989 if (sdata->csa_block_tx) {
2990 ieee80211_wake_vif_queues(local, sdata,
2991 IEEE80211_QUEUE_STOP_REASON_CSA);
2992 sdata->csa_block_tx = false;
2993 }
Michal Kaziorcf8767d2014-05-08 09:10:02 +02002994
Luciano Coelhof1d65582014-10-08 09:48:38 +03002995 err = drv_post_channel_switch(sdata);
2996 if (err)
2997 return err;
2998
2999 cfg80211_ch_switch_notify(sdata->dev, &sdata->csa_chandef);
3000
Michal Kaziorcf8767d2014-05-08 09:10:02 +02003001 return 0;
3002}
3003
3004static void ieee80211_csa_finalize(struct ieee80211_sub_if_data *sdata)
3005{
3006 if (__ieee80211_csa_finalize(sdata)) {
3007 sdata_info(sdata, "failed to finalize CSA, disconnecting\n");
3008 cfg80211_stop_iface(sdata->local->hw.wiphy, &sdata->wdev,
3009 GFP_KERNEL);
3010 }
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003011}
3012
3013void ieee80211_csa_finalize_work(struct work_struct *work)
3014{
3015 struct ieee80211_sub_if_data *sdata =
3016 container_of(work, struct ieee80211_sub_if_data,
3017 csa_finalize_work);
Michal Kazior59af6922014-04-09 15:10:59 +02003018 struct ieee80211_local *local = sdata->local;
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003019
3020 sdata_lock(sdata);
Michal Kazior59af6922014-04-09 15:10:59 +02003021 mutex_lock(&local->mtx);
Michal Kazior03078de2014-06-25 12:35:08 +02003022 mutex_lock(&local->chanctx_mtx);
Michal Kazior59af6922014-04-09 15:10:59 +02003023
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003024 /* AP might have been stopped while waiting for the lock. */
3025 if (!sdata->vif.csa_active)
3026 goto unlock;
3027
3028 if (!ieee80211_sdata_running(sdata))
3029 goto unlock;
3030
3031 ieee80211_csa_finalize(sdata);
Simon Wunderliche487eae2013-11-21 18:19:51 +01003032
3033unlock:
Michal Kazior03078de2014-06-25 12:35:08 +02003034 mutex_unlock(&local->chanctx_mtx);
Michal Kazior59af6922014-04-09 15:10:59 +02003035 mutex_unlock(&local->mtx);
Simon Wunderliche487eae2013-11-21 18:19:51 +01003036 sdata_unlock(sdata);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003037}
3038
Michal Kazior37fa2bd2014-02-28 15:59:06 +01003039static int ieee80211_set_csa_beacon(struct ieee80211_sub_if_data *sdata,
3040 struct cfg80211_csa_settings *params,
3041 u32 *changed)
3042{
Michal Kazioraf296bd2014-06-05 14:21:36 +02003043 struct ieee80211_csa_settings csa = {};
Michal Kazior37fa2bd2014-02-28 15:59:06 +01003044 int err;
3045
3046 switch (sdata->vif.type) {
3047 case NL80211_IFTYPE_AP:
3048 sdata->u.ap.next_beacon =
3049 cfg80211_beacon_dup(&params->beacon_after);
3050 if (!sdata->u.ap.next_beacon)
3051 return -ENOMEM;
3052
3053 /*
3054 * With a count of 0, we don't have to wait for any
3055 * TBTT before switching, so complete the CSA
3056 * immediately. In theory, with a count == 1 we
3057 * should delay the switch until just before the next
3058 * TBTT, but that would complicate things so we switch
3059 * immediately too. If we would delay the switch
3060 * until the next TBTT, we would have to set the probe
3061 * response here.
3062 *
3063 * TODO: A channel switch with count <= 1 without
3064 * sending a CSA action frame is kind of useless,
3065 * because the clients won't know we're changing
3066 * channels. The action frame must be implemented
3067 * either here or in the userspace.
3068 */
3069 if (params->count <= 1)
3070 break;
3071
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03003072 if ((params->n_counter_offsets_beacon >
3073 IEEE80211_MAX_CSA_COUNTERS_NUM) ||
3074 (params->n_counter_offsets_presp >
3075 IEEE80211_MAX_CSA_COUNTERS_NUM))
3076 return -EINVAL;
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03003077
Michal Kazioraf296bd2014-06-05 14:21:36 +02003078 csa.counter_offsets_beacon = params->counter_offsets_beacon;
3079 csa.counter_offsets_presp = params->counter_offsets_presp;
3080 csa.n_counter_offsets_beacon = params->n_counter_offsets_beacon;
3081 csa.n_counter_offsets_presp = params->n_counter_offsets_presp;
3082 csa.count = params->count;
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03003083
Michal Kazioraf296bd2014-06-05 14:21:36 +02003084 err = ieee80211_assign_beacon(sdata, &params->beacon_csa, &csa);
Michal Kazior37fa2bd2014-02-28 15:59:06 +01003085 if (err < 0) {
3086 kfree(sdata->u.ap.next_beacon);
3087 return err;
3088 }
3089 *changed |= err;
3090
3091 break;
3092 case NL80211_IFTYPE_ADHOC:
3093 if (!sdata->vif.bss_conf.ibss_joined)
3094 return -EINVAL;
3095
3096 if (params->chandef.width != sdata->u.ibss.chandef.width)
3097 return -EINVAL;
3098
3099 switch (params->chandef.width) {
3100 case NL80211_CHAN_WIDTH_40:
3101 if (cfg80211_get_chandef_type(&params->chandef) !=
3102 cfg80211_get_chandef_type(&sdata->u.ibss.chandef))
3103 return -EINVAL;
3104 case NL80211_CHAN_WIDTH_5:
3105 case NL80211_CHAN_WIDTH_10:
3106 case NL80211_CHAN_WIDTH_20_NOHT:
3107 case NL80211_CHAN_WIDTH_20:
3108 break;
3109 default:
3110 return -EINVAL;
3111 }
3112
3113 /* changes into another band are not supported */
3114 if (sdata->u.ibss.chandef.chan->band !=
3115 params->chandef.chan->band)
3116 return -EINVAL;
3117
3118 /* see comments in the NL80211_IFTYPE_AP block */
3119 if (params->count > 1) {
3120 err = ieee80211_ibss_csa_beacon(sdata, params);
3121 if (err < 0)
3122 return err;
3123 *changed |= err;
3124 }
3125
3126 ieee80211_send_action_csa(sdata, params);
3127
3128 break;
3129#ifdef CONFIG_MAC80211_MESH
3130 case NL80211_IFTYPE_MESH_POINT: {
3131 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
3132
3133 if (params->chandef.width != sdata->vif.bss_conf.chandef.width)
3134 return -EINVAL;
3135
3136 /* changes into another band are not supported */
3137 if (sdata->vif.bss_conf.chandef.chan->band !=
3138 params->chandef.chan->band)
3139 return -EINVAL;
3140
3141 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_NONE) {
3142 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_INIT;
3143 if (!ifmsh->pre_value)
3144 ifmsh->pre_value = 1;
3145 else
3146 ifmsh->pre_value++;
3147 }
3148
3149 /* see comments in the NL80211_IFTYPE_AP block */
3150 if (params->count > 1) {
3151 err = ieee80211_mesh_csa_beacon(sdata, params);
3152 if (err < 0) {
3153 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_NONE;
3154 return err;
3155 }
3156 *changed |= err;
3157 }
3158
3159 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_INIT)
3160 ieee80211_send_action_csa(sdata, params);
3161
3162 break;
3163 }
3164#endif
3165 default:
3166 return -EOPNOTSUPP;
3167 }
3168
3169 return 0;
3170}
3171
Luciano Coelhof29f58a2014-05-07 20:05:12 +03003172static int
3173__ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev,
3174 struct cfg80211_csa_settings *params)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003175{
3176 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3177 struct ieee80211_local *local = sdata->local;
Luciano Coelho6d027bc2014-10-08 09:48:37 +03003178 struct ieee80211_channel_switch ch_switch;
Michal Kazior2b327132014-04-09 15:29:32 +02003179 struct ieee80211_chanctx_conf *conf;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003180 struct ieee80211_chanctx *chanctx;
Johannes Bergb08cc242014-10-20 21:36:04 +02003181 u32 changed = 0;
3182 int err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003183
Michal Kaziordbd72852014-01-29 07:56:21 +01003184 sdata_assert_lock(sdata);
Michal Kazior59af6922014-04-09 15:10:59 +02003185 lockdep_assert_held(&local->mtx);
Simon Wunderlich7ca133b2013-11-21 18:19:50 +01003186
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003187 if (!list_empty(&local->roc_list) || local->scanning)
3188 return -EBUSY;
3189
3190 if (sdata->wdev.cac_started)
3191 return -EBUSY;
3192
3193 if (cfg80211_chandef_identical(&params->chandef,
3194 &sdata->vif.bss_conf.chandef))
3195 return -EINVAL;
3196
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003197 /* don't allow another channel switch if one is already active. */
3198 if (sdata->vif.csa_active)
3199 return -EBUSY;
3200
Michal Kazior03078de2014-06-25 12:35:08 +02003201 mutex_lock(&local->chanctx_mtx);
3202 conf = rcu_dereference_protected(sdata->vif.chanctx_conf,
3203 lockdep_is_held(&local->chanctx_mtx));
3204 if (!conf) {
3205 err = -EBUSY;
3206 goto out;
3207 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003208
Michal Kazior03078de2014-06-25 12:35:08 +02003209 chanctx = container_of(conf, struct ieee80211_chanctx, conf);
3210 if (!chanctx) {
3211 err = -EBUSY;
3212 goto out;
3213 }
3214
Luciano Coelho000baa52014-11-07 15:28:33 +02003215 ch_switch.timestamp = 0;
3216 ch_switch.device_timestamp = 0;
3217 ch_switch.block_tx = params->block_tx;
3218 ch_switch.chandef = params->chandef;
3219 ch_switch.count = params->count;
3220
Luciano Coelho6d027bc2014-10-08 09:48:37 +03003221 err = drv_pre_channel_switch(sdata, &ch_switch);
3222 if (err)
3223 goto out;
3224
Michal Kazior03078de2014-06-25 12:35:08 +02003225 err = ieee80211_vif_reserve_chanctx(sdata, &params->chandef,
3226 chanctx->mode,
3227 params->radar_required);
3228 if (err)
3229 goto out;
3230
3231 /* if reservation is invalid then this will fail */
3232 err = ieee80211_check_combinations(sdata, NULL, chanctx->mode, 0);
3233 if (err) {
3234 ieee80211_vif_unreserve_chanctx(sdata);
3235 goto out;
3236 }
3237
3238 err = ieee80211_set_csa_beacon(sdata, params, &changed);
3239 if (err) {
3240 ieee80211_vif_unreserve_chanctx(sdata);
3241 goto out;
3242 }
3243
Luciano Coelho33787fc2013-11-11 20:34:54 +02003244 sdata->csa_chandef = params->chandef;
Michal Kazior59af6922014-04-09 15:10:59 +02003245 sdata->csa_block_tx = params->block_tx;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003246 sdata->vif.csa_active = true;
3247
Michal Kazior59af6922014-04-09 15:10:59 +02003248 if (sdata->csa_block_tx)
Luciano Coelhoa46992b2014-06-13 16:30:07 +03003249 ieee80211_stop_vif_queues(local, sdata,
3250 IEEE80211_QUEUE_STOP_REASON_CSA);
Michal Kazior59af6922014-04-09 15:10:59 +02003251
Luciano Coelho2f457292014-11-07 14:31:36 +02003252 cfg80211_ch_switch_started_notify(sdata->dev, &sdata->csa_chandef,
3253 params->count);
3254
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003255 if (changed) {
3256 ieee80211_bss_info_change_notify(sdata, changed);
3257 drv_channel_switch_beacon(sdata, &params->chandef);
3258 } else {
3259 /* if the beacon didn't change, we can finalize immediately */
3260 ieee80211_csa_finalize(sdata);
3261 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003262
Michal Kazior03078de2014-06-25 12:35:08 +02003263out:
3264 mutex_unlock(&local->chanctx_mtx);
3265 return err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003266}
3267
Michal Kazior59af6922014-04-09 15:10:59 +02003268int ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev,
3269 struct cfg80211_csa_settings *params)
3270{
3271 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3272 struct ieee80211_local *local = sdata->local;
3273 int err;
3274
3275 mutex_lock(&local->mtx);
3276 err = __ieee80211_channel_switch(wiphy, dev, params);
3277 mutex_unlock(&local->mtx);
3278
3279 return err;
3280}
3281
Johannes Berg71bbc992012-06-15 15:30:18 +02003282static int ieee80211_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003283 struct cfg80211_mgmt_tx_params *params,
3284 u64 *cookie)
Jouni Malinen026331c2010-02-15 12:53:10 +02003285{
Johannes Berg71bbc992012-06-15 15:30:18 +02003286 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg9d38d852010-06-09 17:20:33 +02003287 struct ieee80211_local *local = sdata->local;
3288 struct sk_buff *skb;
3289 struct sta_info *sta;
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003290 const struct ieee80211_mgmt *mgmt = (void *)params->buf;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003291 bool need_offchan = false;
Johannes Berge247bd902011-11-04 11:18:21 +01003292 u32 flags;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003293 int ret;
Andrei Otcheretianski387910c2014-05-09 14:11:45 +03003294 u8 *data;
Johannes Bergf7ca38d2010-11-25 10:02:29 +01003295
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003296 if (params->dont_wait_for_ack)
Johannes Berge247bd902011-11-04 11:18:21 +01003297 flags = IEEE80211_TX_CTL_NO_ACK;
3298 else
3299 flags = IEEE80211_TX_INTFL_NL80211_FRAME_TX |
3300 IEEE80211_TX_CTL_REQ_TX_STATUS;
3301
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003302 if (params->no_cck)
Rajkumar Manoharanaad14ce2011-09-25 14:53:31 +05303303 flags |= IEEE80211_TX_CTL_NO_CCK_RATE;
3304
Johannes Berg9d38d852010-06-09 17:20:33 +02003305 switch (sdata->vif.type) {
3306 case NL80211_IFTYPE_ADHOC:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003307 if (!sdata->vif.bss_conf.ibss_joined)
3308 need_offchan = true;
3309 /* fall through */
3310#ifdef CONFIG_MAC80211_MESH
3311 case NL80211_IFTYPE_MESH_POINT:
3312 if (ieee80211_vif_is_mesh(&sdata->vif) &&
3313 !sdata->u.mesh.mesh_id_len)
3314 need_offchan = true;
3315 /* fall through */
3316#endif
Johannes Berg663fcaf2010-09-30 21:06:09 +02003317 case NL80211_IFTYPE_AP:
3318 case NL80211_IFTYPE_AP_VLAN:
3319 case NL80211_IFTYPE_P2P_GO:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003320 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
3321 !ieee80211_vif_is_mesh(&sdata->vif) &&
3322 !rcu_access_pointer(sdata->bss->beacon))
3323 need_offchan = true;
Johannes Berg663fcaf2010-09-30 21:06:09 +02003324 if (!ieee80211_is_action(mgmt->frame_control) ||
Thomas Pedersenac49e1a2013-06-20 23:50:58 -07003325 mgmt->u.action.category == WLAN_CATEGORY_PUBLIC ||
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003326 mgmt->u.action.category == WLAN_CATEGORY_SELF_PROTECTED ||
3327 mgmt->u.action.category == WLAN_CATEGORY_SPECTRUM_MGMT)
Johannes Berg9d38d852010-06-09 17:20:33 +02003328 break;
3329 rcu_read_lock();
3330 sta = sta_info_get(sdata, mgmt->da);
3331 rcu_read_unlock();
3332 if (!sta)
3333 return -ENOLINK;
3334 break;
3335 case NL80211_IFTYPE_STATION:
Johannes Berg663fcaf2010-09-30 21:06:09 +02003336 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003337 if (!sdata->u.mgd.associated)
3338 need_offchan = true;
Johannes Berg9d38d852010-06-09 17:20:33 +02003339 break;
Johannes Bergf142c6b2012-06-18 20:07:15 +02003340 case NL80211_IFTYPE_P2P_DEVICE:
3341 need_offchan = true;
3342 break;
Johannes Berg9d38d852010-06-09 17:20:33 +02003343 default:
3344 return -EOPNOTSUPP;
3345 }
3346
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003347 /* configurations requiring offchan cannot work if no channel has been
3348 * specified
3349 */
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003350 if (need_offchan && !params->chan)
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003351 return -EINVAL;
3352
Johannes Berg2eb278e2012-06-05 14:28:42 +02003353 mutex_lock(&local->mtx);
3354
3355 /* Check if the operating channel is the requested channel */
3356 if (!need_offchan) {
Johannes Berg55de9082012-07-26 17:24:39 +02003357 struct ieee80211_chanctx_conf *chanctx_conf;
3358
3359 rcu_read_lock();
3360 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3361
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003362 if (chanctx_conf) {
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003363 need_offchan = params->chan &&
3364 (params->chan !=
3365 chanctx_conf->def.chan);
3366 } else if (!params->chan) {
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003367 ret = -EINVAL;
3368 rcu_read_unlock();
3369 goto out_unlock;
3370 } else {
Johannes Berg2eb278e2012-06-05 14:28:42 +02003371 need_offchan = true;
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003372 }
Johannes Berg55de9082012-07-26 17:24:39 +02003373 rcu_read_unlock();
Johannes Berg2eb278e2012-06-05 14:28:42 +02003374 }
3375
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003376 if (need_offchan && !params->offchan) {
Johannes Berg2eb278e2012-06-05 14:28:42 +02003377 ret = -EBUSY;
3378 goto out_unlock;
3379 }
3380
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003381 skb = dev_alloc_skb(local->hw.extra_tx_headroom + params->len);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003382 if (!skb) {
3383 ret = -ENOMEM;
3384 goto out_unlock;
3385 }
Johannes Berg9d38d852010-06-09 17:20:33 +02003386 skb_reserve(skb, local->hw.extra_tx_headroom);
3387
Andrei Otcheretianski387910c2014-05-09 14:11:45 +03003388 data = skb_put(skb, params->len);
3389 memcpy(data, params->buf, params->len);
3390
3391 /* Update CSA counters */
3392 if (sdata->vif.csa_active &&
3393 (sdata->vif.type == NL80211_IFTYPE_AP ||
3394 sdata->vif.type == NL80211_IFTYPE_ADHOC) &&
3395 params->n_csa_offsets) {
3396 int i;
Michal Kazioraf296bd2014-06-05 14:21:36 +02003397 struct beacon_data *beacon = NULL;
Andrei Otcheretianski387910c2014-05-09 14:11:45 +03003398
Michal Kazioraf296bd2014-06-05 14:21:36 +02003399 rcu_read_lock();
3400
3401 if (sdata->vif.type == NL80211_IFTYPE_AP)
3402 beacon = rcu_dereference(sdata->u.ap.beacon);
3403 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
3404 beacon = rcu_dereference(sdata->u.ibss.presp);
3405 else if (ieee80211_vif_is_mesh(&sdata->vif))
3406 beacon = rcu_dereference(sdata->u.mesh.beacon);
3407
3408 if (beacon)
3409 for (i = 0; i < params->n_csa_offsets; i++)
3410 data[params->csa_offsets[i]] =
3411 beacon->csa_current_counter;
3412
3413 rcu_read_unlock();
Andrei Otcheretianski387910c2014-05-09 14:11:45 +03003414 }
Johannes Berg9d38d852010-06-09 17:20:33 +02003415
3416 IEEE80211_SKB_CB(skb)->flags = flags;
3417
Johannes Berg2eb278e2012-06-05 14:28:42 +02003418 skb->dev = sdata->dev;
3419
3420 if (!need_offchan) {
Nicolas Cavallari7f9f78a2012-07-16 18:36:52 +02003421 *cookie = (unsigned long) skb;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003422 ieee80211_tx_skb(sdata, skb);
3423 ret = 0;
3424 goto out_unlock;
3425 }
3426
Seth Forshee6c17b772013-02-11 11:21:07 -06003427 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_TX_OFFCHAN |
3428 IEEE80211_TX_INTFL_OFFCHAN_TX_OK;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003429 if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)
Johannes Berg3a25a8c2012-04-03 16:28:50 +02003430 IEEE80211_SKB_CB(skb)->hw_queue =
3431 local->hw.offchannel_tx_hw_queue;
3432
Johannes Berg2eb278e2012-06-05 14:28:42 +02003433 /* This will handle all kinds of coalescing and immediate TX */
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003434 ret = ieee80211_start_roc_work(local, sdata, params->chan,
3435 params->wait, cookie, skb,
Ilan Peerd339d5c2013-02-12 09:34:13 +02003436 IEEE80211_ROC_TYPE_MGMT_TX);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003437 if (ret)
Johannes Bergf30221e2010-11-25 10:02:30 +01003438 kfree_skb(skb);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003439 out_unlock:
3440 mutex_unlock(&local->mtx);
3441 return ret;
Jouni Malinen026331c2010-02-15 12:53:10 +02003442}
3443
Johannes Bergf30221e2010-11-25 10:02:30 +01003444static int ieee80211_mgmt_tx_cancel_wait(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02003445 struct wireless_dev *wdev,
Johannes Bergf30221e2010-11-25 10:02:30 +01003446 u64 cookie)
3447{
Johannes Berg71bbc992012-06-15 15:30:18 +02003448 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Bergf30221e2010-11-25 10:02:30 +01003449
Johannes Berg2eb278e2012-06-05 14:28:42 +02003450 return ieee80211_cancel_roc(local, cookie, true);
Johannes Bergf30221e2010-11-25 10:02:30 +01003451}
3452
Johannes Berg7be50862010-10-13 12:06:24 +02003453static void ieee80211_mgmt_frame_register(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02003454 struct wireless_dev *wdev,
Johannes Berg7be50862010-10-13 12:06:24 +02003455 u16 frame_type, bool reg)
3456{
3457 struct ieee80211_local *local = wiphy_priv(wiphy);
3458
Will Hawkins6abe0562012-06-20 11:51:14 -04003459 switch (frame_type) {
Will Hawkins6abe0562012-06-20 11:51:14 -04003460 case IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_PROBE_REQ:
3461 if (reg)
3462 local->probe_req_reg++;
3463 else
3464 local->probe_req_reg--;
Johannes Berg7be50862010-10-13 12:06:24 +02003465
Felix Fietkau35f51492012-10-31 15:50:34 +01003466 if (!local->open_count)
3467 break;
3468
Will Hawkins6abe0562012-06-20 11:51:14 -04003469 ieee80211_queue_work(&local->hw, &local->reconfig_filter);
3470 break;
3471 default:
3472 break;
3473 }
Johannes Berg7be50862010-10-13 12:06:24 +02003474}
3475
Bruno Randolf15d96752010-11-10 12:50:56 +09003476static int ieee80211_set_antenna(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant)
3477{
3478 struct ieee80211_local *local = wiphy_priv(wiphy);
3479
3480 if (local->started)
3481 return -EOPNOTSUPP;
3482
3483 return drv_set_antenna(local, tx_ant, rx_ant);
3484}
3485
3486static int ieee80211_get_antenna(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant)
3487{
3488 struct ieee80211_local *local = wiphy_priv(wiphy);
3489
3490 return drv_get_antenna(local, tx_ant, rx_ant);
3491}
3492
Johannes Bergc68f4b82011-07-05 16:35:41 +02003493static int ieee80211_set_rekey_data(struct wiphy *wiphy,
3494 struct net_device *dev,
3495 struct cfg80211_gtk_rekey_data *data)
3496{
3497 struct ieee80211_local *local = wiphy_priv(wiphy);
3498 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3499
3500 if (!local->ops->set_rekey_data)
3501 return -EOPNOTSUPP;
3502
3503 drv_set_rekey_data(local, sdata, data);
3504
3505 return 0;
3506}
3507
Johannes Berg06500732011-11-04 11:18:16 +01003508static int ieee80211_probe_client(struct wiphy *wiphy, struct net_device *dev,
3509 const u8 *peer, u64 *cookie)
3510{
3511 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3512 struct ieee80211_local *local = sdata->local;
3513 struct ieee80211_qos_hdr *nullfunc;
3514 struct sk_buff *skb;
3515 int size = sizeof(*nullfunc);
3516 __le16 fc;
3517 bool qos;
3518 struct ieee80211_tx_info *info;
3519 struct sta_info *sta;
Johannes Berg55de9082012-07-26 17:24:39 +02003520 struct ieee80211_chanctx_conf *chanctx_conf;
3521 enum ieee80211_band band;
Johannes Berg06500732011-11-04 11:18:16 +01003522
3523 rcu_read_lock();
Johannes Berg55de9082012-07-26 17:24:39 +02003524 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3525 if (WARN_ON(!chanctx_conf)) {
3526 rcu_read_unlock();
3527 return -EINVAL;
3528 }
Johannes Berg4bf88532012-11-09 11:39:59 +01003529 band = chanctx_conf->def.chan->band;
Felix Fietkau03bb7f42013-09-29 21:39:33 +02003530 sta = sta_info_get_bss(sdata, peer);
Johannes Bergb4487c22011-11-11 20:22:30 +01003531 if (sta) {
Johannes Berga74a8c82014-07-22 14:50:47 +02003532 qos = sta->sta.wme;
Johannes Bergb4487c22011-11-11 20:22:30 +01003533 } else {
3534 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003535 return -ENOLINK;
Johannes Bergb4487c22011-11-11 20:22:30 +01003536 }
Johannes Berg06500732011-11-04 11:18:16 +01003537
3538 if (qos) {
3539 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3540 IEEE80211_STYPE_QOS_NULLFUNC |
3541 IEEE80211_FCTL_FROMDS);
3542 } else {
3543 size -= 2;
3544 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3545 IEEE80211_STYPE_NULLFUNC |
3546 IEEE80211_FCTL_FROMDS);
3547 }
3548
3549 skb = dev_alloc_skb(local->hw.extra_tx_headroom + size);
Johannes Berg55de9082012-07-26 17:24:39 +02003550 if (!skb) {
3551 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003552 return -ENOMEM;
Johannes Berg55de9082012-07-26 17:24:39 +02003553 }
Johannes Berg06500732011-11-04 11:18:16 +01003554
3555 skb->dev = dev;
3556
3557 skb_reserve(skb, local->hw.extra_tx_headroom);
3558
3559 nullfunc = (void *) skb_put(skb, size);
3560 nullfunc->frame_control = fc;
3561 nullfunc->duration_id = 0;
3562 memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN);
3563 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
3564 memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);
3565 nullfunc->seq_ctrl = 0;
3566
3567 info = IEEE80211_SKB_CB(skb);
3568
3569 info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
3570 IEEE80211_TX_INTFL_NL80211_FRAME_TX;
Johannes Berg73c4e192014-11-09 18:50:09 +02003571 info->band = band;
Johannes Berg06500732011-11-04 11:18:16 +01003572
3573 skb_set_queue_mapping(skb, IEEE80211_AC_VO);
3574 skb->priority = 7;
3575 if (qos)
3576 nullfunc->qos_ctrl = cpu_to_le16(7);
3577
3578 local_bh_disable();
Johannes Berg7c107702015-03-20 14:18:27 +01003579 ieee80211_xmit(sdata, sta, skb);
Johannes Berg06500732011-11-04 11:18:16 +01003580 local_bh_enable();
Johannes Berg55de9082012-07-26 17:24:39 +02003581 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003582
3583 *cookie = (unsigned long) skb;
3584 return 0;
3585}
3586
Johannes Berg683b6d32012-11-08 21:25:48 +01003587static int ieee80211_cfg_get_channel(struct wiphy *wiphy,
3588 struct wireless_dev *wdev,
3589 struct cfg80211_chan_def *chandef)
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003590{
Johannes Berg55de9082012-07-26 17:24:39 +02003591 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Felix Fietkaucb601ff2013-02-23 19:02:14 +01003592 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg55de9082012-07-26 17:24:39 +02003593 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Berg683b6d32012-11-08 21:25:48 +01003594 int ret = -ENODATA;
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003595
Johannes Berg55de9082012-07-26 17:24:39 +02003596 rcu_read_lock();
Johannes Bergfeda3022013-02-28 09:59:22 +01003597 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3598 if (chanctx_conf) {
Luciano Coelhoc12bc482014-09-30 07:08:02 +03003599 *chandef = sdata->vif.bss_conf.chandef;
Johannes Bergfeda3022013-02-28 09:59:22 +01003600 ret = 0;
3601 } else if (local->open_count > 0 &&
3602 local->open_count == local->monitors &&
3603 sdata->vif.type == NL80211_IFTYPE_MONITOR) {
3604 if (local->use_chanctx)
3605 *chandef = local->monitor_chandef;
3606 else
Karl Beldan675a0b02013-03-25 16:26:57 +01003607 *chandef = local->_oper_chandef;
Johannes Berg683b6d32012-11-08 21:25:48 +01003608 ret = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02003609 }
3610 rcu_read_unlock();
3611
Johannes Berg683b6d32012-11-08 21:25:48 +01003612 return ret;
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003613}
3614
Johannes Berg6d525632012-04-04 15:05:25 +02003615#ifdef CONFIG_PM
3616static void ieee80211_set_wakeup(struct wiphy *wiphy, bool enabled)
3617{
3618 drv_set_wakeup(wiphy_priv(wiphy), enabled);
3619}
3620#endif
3621
Kyeyoon Park32db6b52013-12-16 23:04:43 -08003622static int ieee80211_set_qos_map(struct wiphy *wiphy,
3623 struct net_device *dev,
3624 struct cfg80211_qos_map *qos_map)
3625{
3626 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3627 struct mac80211_qos_map *new_qos_map, *old_qos_map;
3628
3629 if (qos_map) {
3630 new_qos_map = kzalloc(sizeof(*new_qos_map), GFP_KERNEL);
3631 if (!new_qos_map)
3632 return -ENOMEM;
3633 memcpy(&new_qos_map->qos_map, qos_map, sizeof(*qos_map));
3634 } else {
3635 /* A NULL qos_map was passed to disable QoS mapping */
3636 new_qos_map = NULL;
3637 }
3638
Johannes Berg194ff522013-12-30 23:12:37 +01003639 old_qos_map = sdata_dereference(sdata->qos_map, sdata);
Kyeyoon Park32db6b52013-12-16 23:04:43 -08003640 rcu_assign_pointer(sdata->qos_map, new_qos_map);
3641 if (old_qos_map)
3642 kfree_rcu(old_qos_map, rcu_head);
3643
3644 return 0;
3645}
3646
Jouni Malinen3b1700b2014-04-28 11:22:25 +03003647static int ieee80211_set_ap_chanwidth(struct wiphy *wiphy,
3648 struct net_device *dev,
3649 struct cfg80211_chan_def *chandef)
3650{
3651 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3652 int ret;
3653 u32 changed = 0;
3654
3655 ret = ieee80211_vif_change_bandwidth(sdata, chandef, &changed);
3656 if (ret == 0)
3657 ieee80211_bss_info_change_notify(sdata, changed);
3658
3659 return ret;
3660}
3661
Johannes Berg02219b32014-10-07 10:38:50 +03003662static int ieee80211_add_tx_ts(struct wiphy *wiphy, struct net_device *dev,
3663 u8 tsid, const u8 *peer, u8 up,
3664 u16 admitted_time)
3665{
3666 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3667 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3668 int ac = ieee802_1d_to_ac[up];
3669
3670 if (sdata->vif.type != NL80211_IFTYPE_STATION)
3671 return -EOPNOTSUPP;
3672
3673 if (!(sdata->wmm_acm & BIT(up)))
3674 return -EINVAL;
3675
3676 if (ifmgd->tx_tspec[ac].admitted_time)
3677 return -EBUSY;
3678
3679 if (admitted_time) {
3680 ifmgd->tx_tspec[ac].admitted_time = 32 * admitted_time;
3681 ifmgd->tx_tspec[ac].tsid = tsid;
3682 ifmgd->tx_tspec[ac].up = up;
3683 }
3684
3685 return 0;
3686}
3687
3688static int ieee80211_del_tx_ts(struct wiphy *wiphy, struct net_device *dev,
3689 u8 tsid, const u8 *peer)
3690{
3691 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3692 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3693 struct ieee80211_local *local = wiphy_priv(wiphy);
3694 int ac;
3695
3696 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
3697 struct ieee80211_sta_tx_tspec *tx_tspec = &ifmgd->tx_tspec[ac];
3698
3699 /* skip unused entries */
3700 if (!tx_tspec->admitted_time)
3701 continue;
3702
3703 if (tx_tspec->tsid != tsid)
3704 continue;
3705
3706 /* due to this new packets will be reassigned to non-ACM ACs */
3707 tx_tspec->up = -1;
3708
3709 /* Make sure that all packets have been sent to avoid to
3710 * restore the QoS params on packets that are still on the
3711 * queues.
3712 */
3713 synchronize_net();
Emmanuel Grumbach3b24f4c2015-01-07 15:42:39 +02003714 ieee80211_flush_queues(local, sdata, false);
Johannes Berg02219b32014-10-07 10:38:50 +03003715
3716 /* restore the normal QoS parameters
3717 * (unconditionally to avoid races)
3718 */
3719 tx_tspec->action = TX_TSPEC_ACTION_STOP_DOWNGRADE;
3720 tx_tspec->downgraded = false;
3721 ieee80211_sta_handle_tspec_ac_params(sdata);
3722
3723 /* finally clear all the data */
3724 memset(tx_tspec, 0, sizeof(*tx_tspec));
3725
3726 return 0;
3727 }
3728
3729 return -ENOENT;
3730}
3731
Johannes Berg8a47cea2014-01-20 23:55:44 +01003732const struct cfg80211_ops mac80211_config_ops = {
Jiri Bencf0706e82007-05-05 11:45:53 -07003733 .add_virtual_intf = ieee80211_add_iface,
3734 .del_virtual_intf = ieee80211_del_iface,
Johannes Berg42613db2007-09-28 21:52:27 +02003735 .change_virtual_intf = ieee80211_change_iface,
Johannes Bergf142c6b2012-06-18 20:07:15 +02003736 .start_p2p_device = ieee80211_start_p2p_device,
3737 .stop_p2p_device = ieee80211_stop_p2p_device,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01003738 .add_key = ieee80211_add_key,
3739 .del_key = ieee80211_del_key,
Johannes Berg62da92f2007-12-19 02:03:31 +01003740 .get_key = ieee80211_get_key,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01003741 .set_default_key = ieee80211_config_default_key,
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02003742 .set_default_mgmt_key = ieee80211_config_default_mgmt_key,
Johannes Berg88600202012-02-13 15:17:18 +01003743 .start_ap = ieee80211_start_ap,
3744 .change_beacon = ieee80211_change_beacon,
3745 .stop_ap = ieee80211_stop_ap,
Johannes Berg4fd69312007-12-19 02:03:35 +01003746 .add_station = ieee80211_add_station,
3747 .del_station = ieee80211_del_station,
3748 .change_station = ieee80211_change_station,
Johannes Berg7bbdd2d2007-12-19 02:03:37 +01003749 .get_station = ieee80211_get_station,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003750 .dump_station = ieee80211_dump_station,
Holger Schurig12897232010-04-19 10:23:57 +02003751 .dump_survey = ieee80211_dump_survey,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003752#ifdef CONFIG_MAC80211_MESH
3753 .add_mpath = ieee80211_add_mpath,
3754 .del_mpath = ieee80211_del_mpath,
3755 .change_mpath = ieee80211_change_mpath,
3756 .get_mpath = ieee80211_get_mpath,
3757 .dump_mpath = ieee80211_dump_mpath,
Henning Roggea2db2ed2014-09-12 08:58:50 +02003758 .get_mpp = ieee80211_get_mpp,
3759 .dump_mpp = ieee80211_dump_mpp,
Javier Cardona24bdd9f2010-12-16 17:37:48 -08003760 .update_mesh_config = ieee80211_update_mesh_config,
3761 .get_mesh_config = ieee80211_get_mesh_config,
Johannes Berg29cbe682010-12-03 09:20:44 +01003762 .join_mesh = ieee80211_join_mesh,
3763 .leave_mesh = ieee80211_leave_mesh,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003764#endif
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003765 .join_ocb = ieee80211_join_ocb,
3766 .leave_ocb = ieee80211_leave_ocb,
Jouni Malinen9f1ba902008-08-07 20:07:01 +03003767 .change_bss = ieee80211_change_bss,
Jouni Malinen31888482008-10-30 16:59:24 +02003768 .set_txq_params = ieee80211_set_txq_params,
Johannes Berge8c9bd52012-06-06 08:18:22 +02003769 .set_monitor_channel = ieee80211_set_monitor_channel,
Bob Copeland665af4f2009-01-19 11:20:53 -05003770 .suspend = ieee80211_suspend,
3771 .resume = ieee80211_resume,
Johannes Berg2a519312009-02-10 21:25:55 +01003772 .scan = ieee80211_scan,
Luciano Coelho79f460c2011-05-11 17:09:36 +03003773 .sched_scan_start = ieee80211_sched_scan_start,
3774 .sched_scan_stop = ieee80211_sched_scan_stop,
Jouni Malinen636a5d32009-03-19 13:39:22 +02003775 .auth = ieee80211_auth,
3776 .assoc = ieee80211_assoc,
3777 .deauth = ieee80211_deauth,
3778 .disassoc = ieee80211_disassoc,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02003779 .join_ibss = ieee80211_join_ibss,
3780 .leave_ibss = ieee80211_leave_ibss,
Antonio Quartulli391e53e2012-11-02 13:27:49 +01003781 .set_mcast_rate = ieee80211_set_mcast_rate,
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02003782 .set_wiphy_params = ieee80211_set_wiphy_params,
Johannes Berg7643a2c2009-06-02 13:01:39 +02003783 .set_tx_power = ieee80211_set_tx_power,
3784 .get_tx_power = ieee80211_get_tx_power,
Johannes Bergab737a42009-07-01 21:26:58 +02003785 .set_wds_peer = ieee80211_set_wds_peer,
Johannes Berg1f87f7d2009-06-02 13:01:41 +02003786 .rfkill_poll = ieee80211_rfkill_poll,
Johannes Bergaff89a92009-07-01 21:26:51 +02003787 CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd)
Wey-Yi Guy71063f02011-05-20 09:05:54 -07003788 CFG80211_TESTMODE_DUMP(ieee80211_testmode_dump)
Johannes Bergbc92afd2009-07-01 21:26:57 +02003789 .set_power_mgmt = ieee80211_set_power_mgmt,
Johannes Berg99303802009-07-01 21:26:59 +02003790 .set_bitrate_mask = ieee80211_set_bitrate_mask,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01003791 .remain_on_channel = ieee80211_remain_on_channel,
3792 .cancel_remain_on_channel = ieee80211_cancel_remain_on_channel,
Johannes Berg2e161f72010-08-12 15:38:38 +02003793 .mgmt_tx = ieee80211_mgmt_tx,
Johannes Bergf30221e2010-11-25 10:02:30 +01003794 .mgmt_tx_cancel_wait = ieee80211_mgmt_tx_cancel_wait,
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02003795 .set_cqm_rssi_config = ieee80211_set_cqm_rssi_config,
Johannes Berg7be50862010-10-13 12:06:24 +02003796 .mgmt_frame_register = ieee80211_mgmt_frame_register,
Bruno Randolf15d96752010-11-10 12:50:56 +09003797 .set_antenna = ieee80211_set_antenna,
3798 .get_antenna = ieee80211_get_antenna,
Johannes Bergc68f4b82011-07-05 16:35:41 +02003799 .set_rekey_data = ieee80211_set_rekey_data,
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003800 .tdls_oper = ieee80211_tdls_oper,
3801 .tdls_mgmt = ieee80211_tdls_mgmt,
Arik Nemtsova7a6bdd2014-11-09 18:50:19 +02003802 .tdls_channel_switch = ieee80211_tdls_channel_switch,
3803 .tdls_cancel_channel_switch = ieee80211_tdls_cancel_channel_switch,
Johannes Berg06500732011-11-04 11:18:16 +01003804 .probe_client = ieee80211_probe_client,
Simon Wunderlichb53be792011-11-18 14:20:44 +01003805 .set_noack_map = ieee80211_set_noack_map,
Johannes Berg6d525632012-04-04 15:05:25 +02003806#ifdef CONFIG_PM
3807 .set_wakeup = ieee80211_set_wakeup,
3808#endif
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003809 .get_channel = ieee80211_cfg_get_channel,
Simon Wunderlich164eb022013-02-08 18:16:20 +01003810 .start_radar_detection = ieee80211_start_radar_detection,
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003811 .channel_switch = ieee80211_channel_switch,
Kyeyoon Park32db6b52013-12-16 23:04:43 -08003812 .set_qos_map = ieee80211_set_qos_map,
Jouni Malinen3b1700b2014-04-28 11:22:25 +03003813 .set_ap_chanwidth = ieee80211_set_ap_chanwidth,
Johannes Berg02219b32014-10-07 10:38:50 +03003814 .add_tx_ts = ieee80211_add_tx_ts,
3815 .del_tx_ts = ieee80211_del_tx_ts,
Jiri Bencf0706e82007-05-05 11:45:53 -07003816};