blob: 49401238ac39804090d9e9acb0f257e4fbd564ad [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,
Tom Gundersen6bab2e192015-03-18 11:13:39 +010027 unsigned char name_assign_type,
Johannes Berg84efbb82012-06-16 00:00:26 +020028 enum nl80211_iftype type,
29 u32 *flags,
30 struct vif_params *params)
Jiri Bencf0706e82007-05-05 11:45:53 -070031{
32 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg84efbb82012-06-16 00:00:26 +020033 struct wireless_dev *wdev;
Michael Wu8cc9a732008-01-31 19:48:23 +010034 struct ieee80211_sub_if_data *sdata;
35 int err;
Jiri Bencf0706e82007-05-05 11:45:53 -070036
Tom Gundersen6bab2e192015-03-18 11:13:39 +010037 err = ieee80211_if_add(local, name, name_assign_type, &wdev, type, params);
Johannes Bergf9e10ce2010-12-03 09:20:42 +010038 if (err)
39 return ERR_PTR(err);
Michael Wu8cc9a732008-01-31 19:48:23 +010040
Johannes Bergf9e10ce2010-12-03 09:20:42 +010041 if (type == NL80211_IFTYPE_MONITOR && flags) {
Johannes Berg84efbb82012-06-16 00:00:26 +020042 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Bergf9e10ce2010-12-03 09:20:42 +010043 sdata->u.mntr_flags = *flags;
44 }
45
Johannes Berg84efbb82012-06-16 00:00:26 +020046 return wdev;
Jiri Bencf0706e82007-05-05 11:45:53 -070047}
48
Johannes Berg84efbb82012-06-16 00:00:26 +020049static int ieee80211_del_iface(struct wiphy *wiphy, struct wireless_dev *wdev)
Jiri Bencf0706e82007-05-05 11:45:53 -070050{
Johannes Berg84efbb82012-06-16 00:00:26 +020051 ieee80211_if_remove(IEEE80211_WDEV_TO_SUB_IF(wdev));
Jiri Bencf0706e82007-05-05 11:45:53 -070052
Johannes Berg75636522008-07-09 14:40:35 +020053 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -070054}
55
Johannes Berge36d56b2009-06-09 21:04:43 +020056static int ieee80211_change_iface(struct wiphy *wiphy,
57 struct net_device *dev,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +010058 enum nl80211_iftype type, u32 *flags,
59 struct vif_params *params)
Johannes Berg42613db2007-09-28 21:52:27 +020060{
Johannes Berg9607e6b2009-12-23 13:15:31 +010061 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Bergf3947e22008-07-09 14:40:36 +020062 int ret;
Johannes Berg42613db2007-09-28 21:52:27 +020063
Johannes Berg05c914f2008-09-11 00:01:58 +020064 ret = ieee80211_if_change_type(sdata, type);
Johannes Bergf3947e22008-07-09 14:40:36 +020065 if (ret)
66 return ret;
Johannes Berg42613db2007-09-28 21:52:27 +020067
Johannes Berg9bc383d2009-11-19 11:55:19 +010068 if (type == NL80211_IFTYPE_AP_VLAN &&
69 params && params->use_4addr == 0)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +000070 RCU_INIT_POINTER(sdata->u.vlan.sta, NULL);
Johannes Berg9bc383d2009-11-19 11:55:19 +010071 else if (type == NL80211_IFTYPE_STATION &&
72 params && params->use_4addr >= 0)
73 sdata->u.mgd.use_4addr = params->use_4addr;
74
Christian Lamparter85416a42010-10-02 13:17:07 +020075 if (sdata->vif.type == NL80211_IFTYPE_MONITOR && flags) {
76 struct ieee80211_local *local = sdata->local;
77
78 if (ieee80211_sdata_running(sdata)) {
Felix Fietkau31eba5b2013-05-28 13:01:53 +020079 u32 mask = MONITOR_FLAG_COOK_FRAMES |
80 MONITOR_FLAG_ACTIVE;
81
Christian Lamparter85416a42010-10-02 13:17:07 +020082 /*
Felix Fietkau31eba5b2013-05-28 13:01:53 +020083 * Prohibit MONITOR_FLAG_COOK_FRAMES and
84 * MONITOR_FLAG_ACTIVE to be changed while the
85 * interface is up.
Christian Lamparter85416a42010-10-02 13:17:07 +020086 * Else we would need to add a lot of cruft
87 * to update everything:
88 * cooked_mntrs, monitor and all fif_* counters
89 * reconfigure hardware
90 */
Felix Fietkau31eba5b2013-05-28 13:01:53 +020091 if ((*flags & mask) != (sdata->u.mntr_flags & mask))
Christian Lamparter85416a42010-10-02 13:17:07 +020092 return -EBUSY;
93
94 ieee80211_adjust_monitor_flags(sdata, -1);
95 sdata->u.mntr_flags = *flags;
96 ieee80211_adjust_monitor_flags(sdata, 1);
97
98 ieee80211_configure_filter(local);
99 } else {
100 /*
101 * Because the interface is down, ieee80211_do_stop
102 * and ieee80211_do_open take care of "everything"
103 * mentioned in the comment above.
104 */
105 sdata->u.mntr_flags = *flags;
106 }
107 }
Felix Fietkauf7917af2010-04-27 00:26:34 +0200108
Johannes Berg42613db2007-09-28 21:52:27 +0200109 return 0;
110}
111
Johannes Bergf142c6b2012-06-18 20:07:15 +0200112static int ieee80211_start_p2p_device(struct wiphy *wiphy,
113 struct wireless_dev *wdev)
114{
Luciano Coelhob6a55012014-02-27 11:07:21 +0200115 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
116 int ret;
117
118 mutex_lock(&sdata->local->chanctx_mtx);
119 ret = ieee80211_check_combinations(sdata, NULL, 0, 0);
120 mutex_unlock(&sdata->local->chanctx_mtx);
121 if (ret < 0)
122 return ret;
123
Johannes Bergf142c6b2012-06-18 20:07:15 +0200124 return ieee80211_do_open(wdev, true);
125}
126
127static void ieee80211_stop_p2p_device(struct wiphy *wiphy,
128 struct wireless_dev *wdev)
129{
130 ieee80211_sdata_stop(IEEE80211_WDEV_TO_SUB_IF(wdev));
131}
132
Simon Wunderlichb53be792011-11-18 14:20:44 +0100133static int ieee80211_set_noack_map(struct wiphy *wiphy,
134 struct net_device *dev,
135 u16 noack_map)
136{
137 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
138
139 sdata->noack_map = noack_map;
140 return 0;
141}
142
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100143static int ieee80211_add_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berge31b8212010-10-05 19:39:30 +0200144 u8 key_idx, bool pairwise, const u8 *mac_addr,
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100145 struct key_params *params)
146{
Johannes Berg26a58452010-08-27 12:35:55 +0200147 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200148 struct ieee80211_local *local = sdata->local;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100149 struct sta_info *sta = NULL;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200150 const struct ieee80211_cipher_scheme *cs = NULL;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100151 struct ieee80211_key *key;
Johannes Berg3b967662008-04-08 17:56:52 +0200152 int err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100153
Johannes Berg26a58452010-08-27 12:35:55 +0200154 if (!ieee80211_sdata_running(sdata))
Johannes Bergad0e2b52010-06-01 10:19:19 +0200155 return -ENETDOWN;
156
Johannes Berg97359d12010-08-10 09:46:38 +0200157 /* reject WEP and TKIP keys if WEP failed to initialize */
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100158 switch (params->cipher) {
159 case WLAN_CIPHER_SUITE_WEP40:
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100160 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berg97359d12010-08-10 09:46:38 +0200161 case WLAN_CIPHER_SUITE_WEP104:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200162 if (IS_ERR(local->wep_tx_tfm))
Johannes Berg97359d12010-08-10 09:46:38 +0200163 return -EINVAL;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200164 break;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200165 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200166 case WLAN_CIPHER_SUITE_CCMP_256:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200167 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +0200168 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Jouni Malinen8ade5382015-01-24 19:52:09 +0200169 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
170 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200171 case WLAN_CIPHER_SUITE_GCMP:
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200172 case WLAN_CIPHER_SUITE_GCMP_256:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200173 break;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100174 default:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200175 cs = ieee80211_cs_get(local, params->cipher, sdata->vif.type);
Johannes Berg97359d12010-08-10 09:46:38 +0200176 break;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100177 }
178
Johannes Berg97359d12010-08-10 09:46:38 +0200179 key = ieee80211_key_alloc(params->cipher, key_idx, params->key_len,
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200180 params->key, params->seq_len, params->seq,
181 cs);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100182 if (IS_ERR(key))
183 return PTR_ERR(key);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100184
Johannes Berge31b8212010-10-05 19:39:30 +0200185 if (pairwise)
186 key->conf.flags |= IEEE80211_KEY_FLAG_PAIRWISE;
187
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200188 mutex_lock(&local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200189
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100190 if (mac_addr) {
Thomas Pedersenff973af2011-05-03 16:57:12 -0700191 if (ieee80211_vif_is_mesh(&sdata->vif))
192 sta = sta_info_get(sdata, mac_addr);
193 else
194 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berg1626e0f2013-01-11 14:34:25 +0100195 /*
196 * The ASSOC test makes sure the driver is ready to
197 * receive the key. When wpa_supplicant has roamed
198 * using FT, it attempts to set the key before
199 * association has completed, this rejects that attempt
Stephen Hemmingerd070f912014-10-29 22:55:58 -0700200 * so it will set the key again after association.
Johannes Berg1626e0f2013-01-11 14:34:25 +0100201 *
202 * TODO: accept the key if we have a station entry and
203 * add it to the device after the station.
204 */
205 if (!sta || !test_sta_flag(sta, WLAN_STA_ASSOC)) {
Johannes Berg79cf2df2013-03-06 22:53:52 +0100206 ieee80211_key_free_unused(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200207 err = -ENOENT;
208 goto out_unlock;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100209 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100210 }
211
Johannes Berge548c492012-09-04 17:08:23 +0200212 switch (sdata->vif.type) {
213 case NL80211_IFTYPE_STATION:
214 if (sdata->u.mgd.mfp != IEEE80211_MFP_DISABLED)
215 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
216 break;
217 case NL80211_IFTYPE_AP:
218 case NL80211_IFTYPE_AP_VLAN:
219 /* Keys without a station are used for TX only */
220 if (key->sta && test_sta_flag(key->sta, WLAN_STA_MFP))
221 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
222 break;
223 case NL80211_IFTYPE_ADHOC:
224 /* no MFP (yet) */
225 break;
226 case NL80211_IFTYPE_MESH_POINT:
227#ifdef CONFIG_MAC80211_MESH
228 if (sdata->u.mesh.security != IEEE80211_MESH_SEC_NONE)
229 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
230 break;
231#endif
232 case NL80211_IFTYPE_WDS:
233 case NL80211_IFTYPE_MONITOR:
234 case NL80211_IFTYPE_P2P_DEVICE:
235 case NL80211_IFTYPE_UNSPECIFIED:
236 case NUM_NL80211_IFTYPES:
237 case NL80211_IFTYPE_P2P_CLIENT:
238 case NL80211_IFTYPE_P2P_GO:
Rostislav Lisovy6e0bd6c2014-11-03 10:33:18 +0100239 case NL80211_IFTYPE_OCB:
Johannes Berge548c492012-09-04 17:08:23 +0200240 /* shouldn't happen */
241 WARN_ON_ONCE(1);
242 break;
243 }
244
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200245 if (sta)
246 sta->cipher_scheme = cs;
247
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300248 err = ieee80211_key_link(key, sdata, sta);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100249
Johannes Berg3b967662008-04-08 17:56:52 +0200250 out_unlock:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200251 mutex_unlock(&local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200252
253 return err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100254}
255
256static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berge31b8212010-10-05 19:39:30 +0200257 u8 key_idx, bool pairwise, const u8 *mac_addr)
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100258{
Johannes Berg5c0c3642011-05-12 14:31:49 +0200259 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
260 struct ieee80211_local *local = sdata->local;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100261 struct sta_info *sta;
Johannes Berg5c0c3642011-05-12 14:31:49 +0200262 struct ieee80211_key *key = NULL;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100263 int ret;
264
Johannes Berg5c0c3642011-05-12 14:31:49 +0200265 mutex_lock(&local->sta_mtx);
266 mutex_lock(&local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200267
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100268 if (mac_addr) {
Johannes Berg3b967662008-04-08 17:56:52 +0200269 ret = -ENOENT;
270
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100271 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100272 if (!sta)
Johannes Berg3b967662008-04-08 17:56:52 +0200273 goto out_unlock;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100274
Johannes Berg5c0c3642011-05-12 14:31:49 +0200275 if (pairwise)
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200276 key = key_mtx_dereference(local, sta->ptk[key_idx]);
Johannes Berg5c0c3642011-05-12 14:31:49 +0200277 else
Johannes Berg40b275b2011-05-13 14:15:49 +0200278 key = key_mtx_dereference(local, sta->gtk[key_idx]);
Johannes Berg5c0c3642011-05-12 14:31:49 +0200279 } else
Johannes Berg40b275b2011-05-13 14:15:49 +0200280 key = key_mtx_dereference(local, sdata->keys[key_idx]);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100281
Johannes Berg5c0c3642011-05-12 14:31:49 +0200282 if (!key) {
Johannes Berg3b967662008-04-08 17:56:52 +0200283 ret = -ENOENT;
284 goto out_unlock;
285 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100286
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100287 ieee80211_key_free(key, true);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100288
Johannes Berg3b967662008-04-08 17:56:52 +0200289 ret = 0;
290 out_unlock:
Johannes Berg5c0c3642011-05-12 14:31:49 +0200291 mutex_unlock(&local->key_mtx);
292 mutex_unlock(&local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200293
294 return ret;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100295}
296
Johannes Berg62da92f2007-12-19 02:03:31 +0100297static int ieee80211_get_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berge31b8212010-10-05 19:39:30 +0200298 u8 key_idx, bool pairwise, const u8 *mac_addr,
299 void *cookie,
Johannes Berg62da92f2007-12-19 02:03:31 +0100300 void (*callback)(void *cookie,
301 struct key_params *params))
302{
Johannes Berg14db74b2008-07-29 13:22:52 +0200303 struct ieee80211_sub_if_data *sdata;
Johannes Berg62da92f2007-12-19 02:03:31 +0100304 struct sta_info *sta = NULL;
305 u8 seq[6] = {0};
306 struct key_params params;
Johannes Berge31b8212010-10-05 19:39:30 +0200307 struct ieee80211_key *key = NULL;
Johannes Bergaba83a0b2011-07-06 21:59:39 +0200308 u64 pn64;
Johannes Berg62da92f2007-12-19 02:03:31 +0100309 u32 iv32;
310 u16 iv16;
311 int err = -ENOENT;
312
Johannes Berg14db74b2008-07-29 13:22:52 +0200313 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
314
Johannes Berg3b967662008-04-08 17:56:52 +0200315 rcu_read_lock();
316
Johannes Berg62da92f2007-12-19 02:03:31 +0100317 if (mac_addr) {
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100318 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berg62da92f2007-12-19 02:03:31 +0100319 if (!sta)
320 goto out;
321
Max Stepanov354e1592013-12-08 13:30:52 +0200322 if (pairwise && key_idx < NUM_DEFAULT_KEYS)
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200323 key = rcu_dereference(sta->ptk[key_idx]);
Max Stepanov31f1f4e2013-12-08 13:31:29 +0200324 else if (!pairwise &&
325 key_idx < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
Johannes Berga3836e02011-05-12 15:11:37 +0200326 key = rcu_dereference(sta->gtk[key_idx]);
Johannes Berg62da92f2007-12-19 02:03:31 +0100327 } else
Johannes Berga3836e02011-05-12 15:11:37 +0200328 key = rcu_dereference(sdata->keys[key_idx]);
Johannes Berg62da92f2007-12-19 02:03:31 +0100329
330 if (!key)
331 goto out;
332
333 memset(&params, 0, sizeof(params));
334
Johannes Berg97359d12010-08-10 09:46:38 +0200335 params.cipher = key->conf.cipher;
Johannes Berg62da92f2007-12-19 02:03:31 +0100336
Johannes Berg97359d12010-08-10 09:46:38 +0200337 switch (key->conf.cipher) {
338 case WLAN_CIPHER_SUITE_TKIP:
Harvey Harrisonb0f76b32008-05-14 16:26:19 -0700339 iv32 = key->u.tkip.tx.iv32;
340 iv16 = key->u.tkip.tx.iv16;
Johannes Berg62da92f2007-12-19 02:03:31 +0100341
Johannes Berg24487982009-04-23 18:52:52 +0200342 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
343 drv_get_tkip_seq(sdata->local,
344 key->conf.hw_key_idx,
345 &iv32, &iv16);
Johannes Berg62da92f2007-12-19 02:03:31 +0100346
347 seq[0] = iv16 & 0xff;
348 seq[1] = (iv16 >> 8) & 0xff;
349 seq[2] = iv32 & 0xff;
350 seq[3] = (iv32 >> 8) & 0xff;
351 seq[4] = (iv32 >> 16) & 0xff;
352 seq[5] = (iv32 >> 24) & 0xff;
353 params.seq = seq;
354 params.seq_len = 6;
355 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200356 case WLAN_CIPHER_SUITE_CCMP:
Jouni Malinen2b2ba0d2015-01-24 19:52:07 +0200357 case WLAN_CIPHER_SUITE_CCMP_256:
Johannes Bergaba83a0b2011-07-06 21:59:39 +0200358 pn64 = atomic64_read(&key->u.ccmp.tx_pn);
359 seq[0] = pn64;
360 seq[1] = pn64 >> 8;
361 seq[2] = pn64 >> 16;
362 seq[3] = pn64 >> 24;
363 seq[4] = pn64 >> 32;
364 seq[5] = pn64 >> 40;
Johannes Berg62da92f2007-12-19 02:03:31 +0100365 params.seq = seq;
366 params.seq_len = 6;
367 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200368 case WLAN_CIPHER_SUITE_AES_CMAC:
Jouni Malinen56c52da2015-01-24 19:52:08 +0200369 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
Johannes Berg75396ae2011-07-06 22:00:35 +0200370 pn64 = atomic64_read(&key->u.aes_cmac.tx_pn);
371 seq[0] = pn64;
372 seq[1] = pn64 >> 8;
373 seq[2] = pn64 >> 16;
374 seq[3] = pn64 >> 24;
375 seq[4] = pn64 >> 32;
376 seq[5] = pn64 >> 40;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200377 params.seq = seq;
378 params.seq_len = 6;
379 break;
Jouni Malinen8ade5382015-01-24 19:52:09 +0200380 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
381 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
382 pn64 = atomic64_read(&key->u.aes_gmac.tx_pn);
383 seq[0] = pn64;
384 seq[1] = pn64 >> 8;
385 seq[2] = pn64 >> 16;
386 seq[3] = pn64 >> 24;
387 seq[4] = pn64 >> 32;
388 seq[5] = pn64 >> 40;
389 params.seq = seq;
390 params.seq_len = 6;
391 break;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200392 case WLAN_CIPHER_SUITE_GCMP:
393 case WLAN_CIPHER_SUITE_GCMP_256:
394 pn64 = atomic64_read(&key->u.gcmp.tx_pn);
395 seq[0] = pn64;
396 seq[1] = pn64 >> 8;
397 seq[2] = pn64 >> 16;
398 seq[3] = pn64 >> 24;
399 seq[4] = pn64 >> 32;
400 seq[5] = pn64 >> 40;
401 params.seq = seq;
402 params.seq_len = 6;
403 break;
Johannes Berg62da92f2007-12-19 02:03:31 +0100404 }
405
406 params.key = key->conf.key;
407 params.key_len = key->conf.keylen;
408
409 callback(cookie, &params);
410 err = 0;
411
412 out:
Johannes Berg3b967662008-04-08 17:56:52 +0200413 rcu_read_unlock();
Johannes Berg62da92f2007-12-19 02:03:31 +0100414 return err;
415}
416
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100417static int ieee80211_config_default_key(struct wiphy *wiphy,
418 struct net_device *dev,
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100419 u8 key_idx, bool uni,
420 bool multi)
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100421{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200422 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100423
Johannes Bergf7e01042010-12-09 19:49:02 +0100424 ieee80211_set_default_key(sdata, key_idx, uni, multi);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100425
426 return 0;
427}
428
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200429static int ieee80211_config_default_mgmt_key(struct wiphy *wiphy,
430 struct net_device *dev,
431 u8 key_idx)
432{
Johannes Berg66c52422010-07-22 13:58:51 +0200433 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200434
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200435 ieee80211_set_default_mgmt_key(sdata, key_idx);
436
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200437 return 0;
438}
439
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800440void sta_set_rate_info_tx(struct sta_info *sta,
441 const struct ieee80211_tx_rate *rate,
442 struct rate_info *rinfo)
443{
444 rinfo->flags = 0;
Johannes Berg8bc83c22012-11-09 18:38:32 +0100445 if (rate->flags & IEEE80211_TX_RC_MCS) {
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800446 rinfo->flags |= RATE_INFO_FLAGS_MCS;
Johannes Berg8bc83c22012-11-09 18:38:32 +0100447 rinfo->mcs = rate->idx;
448 } else if (rate->flags & IEEE80211_TX_RC_VHT_MCS) {
449 rinfo->flags |= RATE_INFO_FLAGS_VHT_MCS;
450 rinfo->mcs = ieee80211_rate_get_vht_mcs(rate);
451 rinfo->nss = ieee80211_rate_get_vht_nss(rate);
452 } else {
453 struct ieee80211_supported_band *sband;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200454 int shift = ieee80211_vif_get_shift(&sta->sdata->vif);
455 u16 brate;
456
Johannes Berg8bc83c22012-11-09 18:38:32 +0100457 sband = sta->local->hw.wiphy->bands[
458 ieee80211_get_sdata_band(sta->sdata)];
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200459 brate = sband->bitrates[rate->idx].bitrate;
460 rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift);
Johannes Berg8bc83c22012-11-09 18:38:32 +0100461 }
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800462 if (rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
Johannes Bergb51f3be2015-01-15 16:14:02 +0100463 rinfo->bw = RATE_INFO_BW_40;
464 else if (rate->flags & IEEE80211_TX_RC_80_MHZ_WIDTH)
465 rinfo->bw = RATE_INFO_BW_80;
466 else if (rate->flags & IEEE80211_TX_RC_160_MHZ_WIDTH)
467 rinfo->bw = RATE_INFO_BW_160;
468 else
469 rinfo->bw = RATE_INFO_BW_20;
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800470 if (rate->flags & IEEE80211_TX_RC_SHORT_GI)
471 rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800472}
473
Saravana003e6762012-11-28 18:29:38 +0530474void sta_set_rate_info_rx(struct sta_info *sta, struct rate_info *rinfo)
475{
476 rinfo->flags = 0;
477
478 if (sta->last_rx_rate_flag & RX_FLAG_HT) {
479 rinfo->flags |= RATE_INFO_FLAGS_MCS;
480 rinfo->mcs = sta->last_rx_rate_idx;
481 } else if (sta->last_rx_rate_flag & RX_FLAG_VHT) {
482 rinfo->flags |= RATE_INFO_FLAGS_VHT_MCS;
483 rinfo->nss = sta->last_rx_rate_vht_nss;
484 rinfo->mcs = sta->last_rx_rate_idx;
485 } else {
486 struct ieee80211_supported_band *sband;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200487 int shift = ieee80211_vif_get_shift(&sta->sdata->vif);
488 u16 brate;
Saravana003e6762012-11-28 18:29:38 +0530489
490 sband = sta->local->hw.wiphy->bands[
491 ieee80211_get_sdata_band(sta->sdata)];
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200492 brate = sband->bitrates[sta->last_rx_rate_idx].bitrate;
493 rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift);
Saravana003e6762012-11-28 18:29:38 +0530494 }
495
Saravana003e6762012-11-28 18:29:38 +0530496 if (sta->last_rx_rate_flag & RX_FLAG_SHORT_GI)
497 rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
Johannes Bergb51f3be2015-01-15 16:14:02 +0100498
499 if (sta->last_rx_rate_flag & RX_FLAG_5MHZ)
500 rinfo->bw = RATE_INFO_BW_5;
501 else if (sta->last_rx_rate_flag & RX_FLAG_10MHZ)
502 rinfo->bw = RATE_INFO_BW_10;
503 else if (sta->last_rx_rate_flag & RX_FLAG_40MHZ)
504 rinfo->bw = RATE_INFO_BW_40;
505 else if (sta->last_rx_rate_vht_flag & RX_VHT_FLAG_80MHZ)
506 rinfo->bw = RATE_INFO_BW_80;
507 else if (sta->last_rx_rate_vht_flag & RX_VHT_FLAG_160MHZ)
508 rinfo->bw = RATE_INFO_BW_160;
509 else
510 rinfo->bw = RATE_INFO_BW_20;
Saravana003e6762012-11-28 18:29:38 +0530511}
512
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100513static int ieee80211_dump_station(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +0200514 int idx, u8 *mac, struct station_info *sinfo)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100515{
Johannes Berg3b53fde82009-11-16 12:00:37 +0100516 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300517 struct ieee80211_local *local = sdata->local;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100518 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100519 int ret = -ENOENT;
520
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300521 mutex_lock(&local->sta_mtx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100522
Johannes Berg3b53fde82009-11-16 12:00:37 +0100523 sta = sta_info_get_by_idx(sdata, idx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100524 if (sta) {
525 ret = 0;
Johannes Berg17741cd2008-09-11 00:02:02 +0200526 memcpy(mac, sta->sta.addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100527 sta_set_sinfo(sta, sinfo);
528 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100529
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300530 mutex_unlock(&local->sta_mtx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100531
Johannes Bergd0709a62008-02-25 16:27:46 +0100532 return ret;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100533}
534
Holger Schurig12897232010-04-19 10:23:57 +0200535static int ieee80211_dump_survey(struct wiphy *wiphy, struct net_device *dev,
536 int idx, struct survey_info *survey)
537{
538 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
539
Holger Schurig12897232010-04-19 10:23:57 +0200540 return drv_get_survey(local, idx, survey);
541}
542
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100543static int ieee80211_get_station(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +0200544 const u8 *mac, struct station_info *sinfo)
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100545{
Johannes Bergabe60632009-11-25 17:46:18 +0100546 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300547 struct ieee80211_local *local = sdata->local;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100548 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100549 int ret = -ENOENT;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100550
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300551 mutex_lock(&local->sta_mtx);
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100552
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100553 sta = sta_info_get_bss(sdata, mac);
Johannes Bergd0709a62008-02-25 16:27:46 +0100554 if (sta) {
555 ret = 0;
556 sta_set_sinfo(sta, sinfo);
557 }
558
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300559 mutex_unlock(&local->sta_mtx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100560
561 return ret;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100562}
563
Johannes Berge8c9bd52012-06-06 08:18:22 +0200564static int ieee80211_set_monitor_channel(struct wiphy *wiphy,
Johannes Berg683b6d32012-11-08 21:25:48 +0100565 struct cfg80211_chan_def *chandef)
Johannes Berge8c9bd52012-06-06 08:18:22 +0200566{
Johannes Berg55de9082012-07-26 17:24:39 +0200567 struct ieee80211_local *local = wiphy_priv(wiphy);
568 struct ieee80211_sub_if_data *sdata;
569 int ret = 0;
570
Johannes Berg4bf88532012-11-09 11:39:59 +0100571 if (cfg80211_chandef_identical(&local->monitor_chandef, chandef))
Johannes Berg55de9082012-07-26 17:24:39 +0200572 return 0;
573
Johannes Berg34a37402013-12-18 09:43:33 +0100574 mutex_lock(&local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +0200575 mutex_lock(&local->iflist_mtx);
576 if (local->use_chanctx) {
577 sdata = rcu_dereference_protected(
578 local->monitor_sdata,
579 lockdep_is_held(&local->iflist_mtx));
580 if (sdata) {
581 ieee80211_vif_release_channel(sdata);
Johannes Berg4bf88532012-11-09 11:39:59 +0100582 ret = ieee80211_vif_use_channel(sdata, chandef,
Johannes Berg55de9082012-07-26 17:24:39 +0200583 IEEE80211_CHANCTX_EXCLUSIVE);
584 }
585 } else if (local->open_count == local->monitors) {
Karl Beldan675a0b02013-03-25 16:26:57 +0100586 local->_oper_chandef = *chandef;
Johannes Berg55de9082012-07-26 17:24:39 +0200587 ieee80211_hw_config(local, 0);
588 }
589
Johannes Berg4bf88532012-11-09 11:39:59 +0100590 if (ret == 0)
591 local->monitor_chandef = *chandef;
Johannes Berg55de9082012-07-26 17:24:39 +0200592 mutex_unlock(&local->iflist_mtx);
Johannes Berg34a37402013-12-18 09:43:33 +0100593 mutex_unlock(&local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +0200594
595 return ret;
Johannes Berge8c9bd52012-06-06 08:18:22 +0200596}
597
Arik Nemtsov02945822011-11-10 11:28:57 +0200598static int ieee80211_set_probe_resp(struct ieee80211_sub_if_data *sdata,
Michal Kazioraf296bd2014-06-05 14:21:36 +0200599 const u8 *resp, size_t resp_len,
600 const struct ieee80211_csa_settings *csa)
Arik Nemtsov02945822011-11-10 11:28:57 +0200601{
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300602 struct probe_resp *new, *old;
Arik Nemtsov02945822011-11-10 11:28:57 +0200603
604 if (!resp || !resp_len)
Sujith Manoharanaba4e6f2012-08-22 14:21:07 +0530605 return 1;
Arik Nemtsov02945822011-11-10 11:28:57 +0200606
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100607 old = sdata_dereference(sdata->u.ap.probe_resp, sdata);
Arik Nemtsov02945822011-11-10 11:28:57 +0200608
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300609 new = kzalloc(sizeof(struct probe_resp) + resp_len, GFP_KERNEL);
Arik Nemtsov02945822011-11-10 11:28:57 +0200610 if (!new)
611 return -ENOMEM;
612
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300613 new->len = resp_len;
614 memcpy(new->data, resp, resp_len);
Arik Nemtsov02945822011-11-10 11:28:57 +0200615
Michal Kazioraf296bd2014-06-05 14:21:36 +0200616 if (csa)
617 memcpy(new->csa_counter_offsets, csa->counter_offsets_presp,
618 csa->n_counter_offsets_presp *
619 sizeof(new->csa_counter_offsets[0]));
620
Arik Nemtsov02945822011-11-10 11:28:57 +0200621 rcu_assign_pointer(sdata->u.ap.probe_resp, new);
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300622 if (old)
623 kfree_rcu(old, rcu_head);
Arik Nemtsov02945822011-11-10 11:28:57 +0200624
625 return 0;
626}
627
Luciano Coelho0ae07962013-12-08 09:42:25 +0200628static int ieee80211_assign_beacon(struct ieee80211_sub_if_data *sdata,
Michal Kazioraf296bd2014-06-05 14:21:36 +0200629 struct cfg80211_beacon_data *params,
630 const struct ieee80211_csa_settings *csa)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100631{
632 struct beacon_data *new, *old;
633 int new_head_len, new_tail_len;
Johannes Berg88600202012-02-13 15:17:18 +0100634 int size, err;
635 u32 changed = BSS_CHANGED_BEACON;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100636
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100637 old = sdata_dereference(sdata->u.ap.beacon, sdata);
638
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100639
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100640 /* Need to have a beacon head if we don't have one yet */
641 if (!params->head && !old)
Johannes Berg88600202012-02-13 15:17:18 +0100642 return -EINVAL;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100643
644 /* new or old head? */
645 if (params->head)
646 new_head_len = params->head_len;
647 else
648 new_head_len = old->head_len;
649
650 /* new or old tail? */
651 if (params->tail || !old)
652 /* params->tail_len will be zero for !params->tail */
653 new_tail_len = params->tail_len;
654 else
655 new_tail_len = old->tail_len;
656
657 size = sizeof(*new) + new_head_len + new_tail_len;
658
659 new = kzalloc(size, GFP_KERNEL);
660 if (!new)
661 return -ENOMEM;
662
663 /* start filling the new info now */
664
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100665 /*
666 * pointers go into the block we allocated,
667 * memory is | beacon_data | head | tail |
668 */
669 new->head = ((u8 *) new) + sizeof(*new);
670 new->tail = new->head + new_head_len;
671 new->head_len = new_head_len;
672 new->tail_len = new_tail_len;
673
Michal Kazioraf296bd2014-06-05 14:21:36 +0200674 if (csa) {
675 new->csa_current_counter = csa->count;
676 memcpy(new->csa_counter_offsets, csa->counter_offsets_beacon,
677 csa->n_counter_offsets_beacon *
678 sizeof(new->csa_counter_offsets[0]));
679 }
680
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100681 /* copy in head */
682 if (params->head)
683 memcpy(new->head, params->head, new_head_len);
684 else
685 memcpy(new->head, old->head, new_head_len);
686
687 /* copy in optional tail */
688 if (params->tail)
689 memcpy(new->tail, params->tail, new_tail_len);
690 else
691 if (old)
692 memcpy(new->tail, old->tail, new_tail_len);
693
Johannes Berg88600202012-02-13 15:17:18 +0100694 err = ieee80211_set_probe_resp(sdata, params->probe_resp,
Michal Kazioraf296bd2014-06-05 14:21:36 +0200695 params->probe_resp_len, csa);
Johannes Berg88600202012-02-13 15:17:18 +0100696 if (err < 0)
697 return err;
698 if (err == 0)
699 changed |= BSS_CHANGED_AP_PROBE_RESP;
Johannes Berg19885c42010-02-05 11:45:06 +0100700
Eric Dumazetcf778b02012-01-12 04:41:32 +0000701 rcu_assign_pointer(sdata->u.ap.beacon, new);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100702
Johannes Berg88600202012-02-13 15:17:18 +0100703 if (old)
704 kfree_rcu(old, rcu_head);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100705
Johannes Berg88600202012-02-13 15:17:18 +0100706 return changed;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100707}
708
Johannes Berg88600202012-02-13 15:17:18 +0100709static int ieee80211_start_ap(struct wiphy *wiphy, struct net_device *dev,
710 struct cfg80211_ap_settings *params)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100711{
Johannes Berg88600202012-02-13 15:17:18 +0100712 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg34a37402013-12-18 09:43:33 +0100713 struct ieee80211_local *local = sdata->local;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100714 struct beacon_data *old;
Johannes Berg665c93a2011-11-04 11:18:11 +0100715 struct ieee80211_sub_if_data *vlan;
Johannes Berg88600202012-02-13 15:17:18 +0100716 u32 changed = BSS_CHANGED_BEACON_INT |
717 BSS_CHANGED_BEACON_ENABLED |
718 BSS_CHANGED_BEACON |
Johannes Berg339afbf2012-11-14 15:21:17 +0100719 BSS_CHANGED_SSID |
Johannes Berg4bcc56b2014-11-13 11:23:53 +0100720 BSS_CHANGED_P2P_PS |
721 BSS_CHANGED_TXPOWER;
Johannes Berg88600202012-02-13 15:17:18 +0100722 int err;
Johannes Berg14db74b2008-07-29 13:22:52 +0200723
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100724 old = sdata_dereference(sdata->u.ap.beacon, sdata);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100725 if (old)
726 return -EALREADY;
727
Eliad Pellerf6993172014-09-10 14:07:35 +0300728 switch (params->smps_mode) {
729 case NL80211_SMPS_OFF:
730 sdata->smps_mode = IEEE80211_SMPS_OFF;
731 break;
732 case NL80211_SMPS_STATIC:
733 sdata->smps_mode = IEEE80211_SMPS_STATIC;
734 break;
735 case NL80211_SMPS_DYNAMIC:
736 sdata->smps_mode = IEEE80211_SMPS_DYNAMIC;
737 break;
738 default:
739 return -EINVAL;
740 }
Johannes Berg04ecd252012-09-11 14:34:12 +0200741 sdata->needed_rx_chains = sdata->local->rx_chains;
742
Johannes Berg34a37402013-12-18 09:43:33 +0100743 mutex_lock(&local->mtx);
Johannes Berg4bf88532012-11-09 11:39:59 +0100744 err = ieee80211_vif_use_channel(sdata, &params->chandef,
Johannes Berg55de9082012-07-26 17:24:39 +0200745 IEEE80211_CHANCTX_SHARED);
Michal Kazior4e141da2014-03-05 13:14:08 +0100746 if (!err)
747 ieee80211_vif_copy_chanctx_to_vlans(sdata, false);
Johannes Berg34a37402013-12-18 09:43:33 +0100748 mutex_unlock(&local->mtx);
Johannes Bergaa430da2012-05-16 23:50:18 +0200749 if (err)
750 return err;
751
Johannes Berg665c93a2011-11-04 11:18:11 +0100752 /*
753 * Apply control port protocol, this allows us to
754 * not encrypt dynamic WEP control frames.
755 */
756 sdata->control_port_protocol = params->crypto.control_port_ethertype;
757 sdata->control_port_no_encrypt = params->crypto.control_port_no_encrypt;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200758 sdata->encrypt_headroom = ieee80211_cs_headroom(sdata->local,
759 &params->crypto,
760 sdata->vif.type);
761
Johannes Berg665c93a2011-11-04 11:18:11 +0100762 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list) {
763 vlan->control_port_protocol =
764 params->crypto.control_port_ethertype;
765 vlan->control_port_no_encrypt =
766 params->crypto.control_port_no_encrypt;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200767 vlan->encrypt_headroom =
768 ieee80211_cs_headroom(sdata->local,
769 &params->crypto,
770 vlan->vif.type);
Johannes Berg665c93a2011-11-04 11:18:11 +0100771 }
772
Johannes Berg88600202012-02-13 15:17:18 +0100773 sdata->vif.bss_conf.beacon_int = params->beacon_interval;
774 sdata->vif.bss_conf.dtim_period = params->dtim_period;
Johannes Bergd6a83222012-12-14 14:06:28 +0100775 sdata->vif.bss_conf.enable_beacon = true;
Johannes Berg88600202012-02-13 15:17:18 +0100776
777 sdata->vif.bss_conf.ssid_len = params->ssid_len;
778 if (params->ssid_len)
779 memcpy(sdata->vif.bss_conf.ssid, params->ssid,
780 params->ssid_len);
781 sdata->vif.bss_conf.hidden_ssid =
782 (params->hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE);
783
Janusz Dziedzic67baf662013-03-21 15:47:56 +0100784 memset(&sdata->vif.bss_conf.p2p_noa_attr, 0,
785 sizeof(sdata->vif.bss_conf.p2p_noa_attr));
786 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow =
787 params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
788 if (params->p2p_opp_ps)
789 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
790 IEEE80211_P2P_OPPPS_ENABLE_BIT;
Johannes Berg339afbf2012-11-14 15:21:17 +0100791
Michal Kazioraf296bd2014-06-05 14:21:36 +0200792 err = ieee80211_assign_beacon(sdata, &params->beacon, NULL);
Emmanuel Grumbach0297ea12014-01-27 11:07:42 +0200793 if (err < 0) {
794 ieee80211_vif_release_channel(sdata);
Johannes Berg88600202012-02-13 15:17:18 +0100795 return err;
Emmanuel Grumbach0297ea12014-01-27 11:07:42 +0200796 }
Johannes Berg88600202012-02-13 15:17:18 +0100797 changed |= err;
798
Johannes Berg10416382012-10-19 15:44:42 +0200799 err = drv_start_ap(sdata->local, sdata);
800 if (err) {
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100801 old = sdata_dereference(sdata->u.ap.beacon, sdata);
802
Johannes Berg10416382012-10-19 15:44:42 +0200803 if (old)
804 kfree_rcu(old, rcu_head);
805 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
Emmanuel Grumbach0297ea12014-01-27 11:07:42 +0200806 ieee80211_vif_release_channel(sdata);
Johannes Berg10416382012-10-19 15:44:42 +0200807 return err;
808 }
809
Thomas Pedersen057d5f42013-12-19 10:25:15 -0800810 ieee80211_recalc_dtim(local, sdata);
Johannes Berg88600202012-02-13 15:17:18 +0100811 ieee80211_bss_info_change_notify(sdata, changed);
812
Johannes Berg3edaf3e2012-04-03 10:24:00 +0200813 netif_carrier_on(dev);
814 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
815 netif_carrier_on(vlan->dev);
816
Johannes Berg665c93a2011-11-04 11:18:11 +0100817 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100818}
819
Johannes Berg88600202012-02-13 15:17:18 +0100820static int ieee80211_change_beacon(struct wiphy *wiphy, struct net_device *dev,
821 struct cfg80211_beacon_data *params)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100822{
Johannes Berg14db74b2008-07-29 13:22:52 +0200823 struct ieee80211_sub_if_data *sdata;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100824 struct beacon_data *old;
Johannes Berg88600202012-02-13 15:17:18 +0100825 int err;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100826
Johannes Berg14db74b2008-07-29 13:22:52 +0200827 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Michal Kaziordbd72852014-01-29 07:56:21 +0100828 sdata_assert_lock(sdata);
Johannes Berg14db74b2008-07-29 13:22:52 +0200829
Simon Wunderlich73da7d52013-07-11 16:09:06 +0200830 /* don't allow changing the beacon while CSA is in place - offset
831 * of channel switch counter may change
832 */
833 if (sdata->vif.csa_active)
834 return -EBUSY;
835
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100836 old = sdata_dereference(sdata->u.ap.beacon, sdata);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100837 if (!old)
838 return -ENOENT;
839
Michal Kazioraf296bd2014-06-05 14:21:36 +0200840 err = ieee80211_assign_beacon(sdata, params, NULL);
Johannes Berg88600202012-02-13 15:17:18 +0100841 if (err < 0)
842 return err;
843 ieee80211_bss_info_change_notify(sdata, err);
844 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100845}
846
Johannes Berg88600202012-02-13 15:17:18 +0100847static int ieee80211_stop_ap(struct wiphy *wiphy, struct net_device *dev)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100848{
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200849 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
850 struct ieee80211_sub_if_data *vlan;
851 struct ieee80211_local *local = sdata->local;
852 struct beacon_data *old_beacon;
853 struct probe_resp *old_probe_resp;
Janusz Dziedzicd2859df2013-11-06 13:55:51 +0100854 struct cfg80211_chan_def chandef;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100855
Michal Kaziordbd72852014-01-29 07:56:21 +0100856 sdata_assert_lock(sdata);
857
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100858 old_beacon = sdata_dereference(sdata->u.ap.beacon, sdata);
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200859 if (!old_beacon)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100860 return -ENOENT;
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100861 old_probe_resp = sdata_dereference(sdata->u.ap.probe_resp, sdata);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100862
Simon Wunderlich73da7d52013-07-11 16:09:06 +0200863 /* abort any running channel switch */
Michal Kazior59af6922014-04-09 15:10:59 +0200864 mutex_lock(&local->mtx);
Simon Wunderlich73da7d52013-07-11 16:09:06 +0200865 sdata->vif.csa_active = false;
Luciano Coelhoa46992b2014-06-13 16:30:07 +0300866 if (sdata->csa_block_tx) {
867 ieee80211_wake_vif_queues(local, sdata,
868 IEEE80211_QUEUE_STOP_REASON_CSA);
869 sdata->csa_block_tx = false;
870 }
871
Michal Kazior59af6922014-04-09 15:10:59 +0200872 mutex_unlock(&local->mtx);
873
Simon Wunderlich1f3b8a22013-11-21 18:19:53 +0100874 kfree(sdata->u.ap.next_beacon);
875 sdata->u.ap.next_beacon = NULL;
876
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200877 /* turn off carrier for this interface and dependent VLANs */
Johannes Berg3edaf3e2012-04-03 10:24:00 +0200878 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
879 netif_carrier_off(vlan->dev);
880 netif_carrier_off(dev);
881
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200882 /* remove beacon and probe response */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000883 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200884 RCU_INIT_POINTER(sdata->u.ap.probe_resp, NULL);
885 kfree_rcu(old_beacon, rcu_head);
886 if (old_probe_resp)
887 kfree_rcu(old_probe_resp, rcu_head);
Emmanuel Grumbach8ffcc702014-01-23 14:28:16 +0200888 sdata->u.ap.driver_smps_mode = IEEE80211_SMPS_OFF;
Johannes Berg88600202012-02-13 15:17:18 +0100889
Johannes Berge7162512013-12-04 23:18:37 +0100890 __sta_info_flush(sdata, true);
Johannes Berg7907c7d2013-12-04 23:47:09 +0100891 ieee80211_free_keys(sdata, true);
Johannes Berg75de9112012-12-14 14:56:03 +0100892
Johannes Bergd6a83222012-12-14 14:06:28 +0100893 sdata->vif.bss_conf.enable_beacon = false;
Marek Puzyniak0eabccd2013-04-10 13:47:45 +0200894 sdata->vif.bss_conf.ssid_len = 0;
Johannes Bergd6a83222012-12-14 14:06:28 +0100895 clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED, &sdata->state);
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200896 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
Johannes Berg88600202012-02-13 15:17:18 +0100897
Simon Wunderlicha6b368f2013-06-11 10:44:39 +0200898 if (sdata->wdev.cac_started) {
Janusz Dziedzicd2859df2013-11-06 13:55:51 +0100899 chandef = sdata->vif.bss_conf.chandef;
Simon Wunderlicha6b368f2013-06-11 10:44:39 +0200900 cancel_delayed_work_sync(&sdata->dfs_cac_timer_work);
Janusz Dziedzicd2859df2013-11-06 13:55:51 +0100901 cfg80211_cac_event(sdata->dev, &chandef,
902 NL80211_RADAR_CAC_ABORTED,
Simon Wunderlicha6b368f2013-06-11 10:44:39 +0200903 GFP_KERNEL);
904 }
905
Johannes Berg10416382012-10-19 15:44:42 +0200906 drv_stop_ap(sdata->local, sdata);
907
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200908 /* free all potentially still buffered bcast frames */
909 local->total_ps_buffered -= skb_queue_len(&sdata->u.ap.ps.bc_buf);
910 skb_queue_purge(&sdata->u.ap.ps.bc_buf);
911
Johannes Berg34a37402013-12-18 09:43:33 +0100912 mutex_lock(&local->mtx);
Michal Kazior4e141da2014-03-05 13:14:08 +0100913 ieee80211_vif_copy_chanctx_to_vlans(sdata, true);
Johannes Berg55de9082012-07-26 17:24:39 +0200914 ieee80211_vif_release_channel(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +0100915 mutex_unlock(&local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +0200916
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200917 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100918}
919
Johannes Berg4fd69312007-12-19 02:03:35 +0100920/* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */
921struct iapp_layer2_update {
922 u8 da[ETH_ALEN]; /* broadcast */
923 u8 sa[ETH_ALEN]; /* STA addr */
924 __be16 len; /* 6 */
925 u8 dsap; /* 0 */
926 u8 ssap; /* 0 */
927 u8 control;
928 u8 xid_info[3];
Eric Dumazetbc105022010-06-03 03:21:52 -0700929} __packed;
Johannes Berg4fd69312007-12-19 02:03:35 +0100930
931static void ieee80211_send_layer2_update(struct sta_info *sta)
932{
933 struct iapp_layer2_update *msg;
934 struct sk_buff *skb;
935
936 /* Send Level 2 Update Frame to update forwarding tables in layer 2
937 * bridge devices */
938
939 skb = dev_alloc_skb(sizeof(*msg));
940 if (!skb)
941 return;
942 msg = (struct iapp_layer2_update *)skb_put(skb, sizeof(*msg));
943
944 /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID)
945 * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */
946
Johannes Berge83e6542012-07-13 16:23:07 +0200947 eth_broadcast_addr(msg->da);
Johannes Berg17741cd2008-09-11 00:02:02 +0200948 memcpy(msg->sa, sta->sta.addr, ETH_ALEN);
Johannes Berg4fd69312007-12-19 02:03:35 +0100949 msg->len = htons(6);
950 msg->dsap = 0;
951 msg->ssap = 0x01; /* NULL LSAP, CR Bit: Response */
952 msg->control = 0xaf; /* XID response lsb.1111F101.
953 * F=0 (no poll command; unsolicited frame) */
954 msg->xid_info[0] = 0x81; /* XID format identifier */
955 msg->xid_info[1] = 1; /* LLC types/classes: Type 1 LLC */
956 msg->xid_info[2] = 0; /* XID sender's receive window size (RW) */
957
Johannes Bergd0709a62008-02-25 16:27:46 +0100958 skb->dev = sta->sdata->dev;
959 skb->protocol = eth_type_trans(skb, sta->sdata->dev);
Johannes Berg4fd69312007-12-19 02:03:35 +0100960 memset(skb->cb, 0, sizeof(skb->cb));
John W. Linville06ee1c22010-07-19 11:52:59 -0400961 netif_rx_ni(skb);
Johannes Berg4fd69312007-12-19 02:03:35 +0100962}
963
Johannes Bergd582cff2012-10-26 17:53:44 +0200964static int sta_apply_auth_flags(struct ieee80211_local *local,
965 struct sta_info *sta,
966 u32 mask, u32 set)
967{
968 int ret;
969
970 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
971 set & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
972 !test_sta_flag(sta, WLAN_STA_AUTH)) {
973 ret = sta_info_move_state(sta, IEEE80211_STA_AUTH);
974 if (ret)
975 return ret;
976 }
977
978 if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
979 set & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
980 !test_sta_flag(sta, WLAN_STA_ASSOC)) {
Marek Puzyniakc23e31c2015-03-08 18:04:22 +0200981 /*
982 * When peer becomes associated, init rate control as
983 * well. Some drivers require rate control initialized
984 * before drv_sta_state() is called.
985 */
986 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER))
987 rate_control_rate_init(sta);
988
Johannes Bergd582cff2012-10-26 17:53:44 +0200989 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
990 if (ret)
991 return ret;
992 }
993
994 if (mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
995 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED))
996 ret = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
997 else if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
998 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
999 else
1000 ret = 0;
1001 if (ret)
1002 return ret;
1003 }
1004
1005 if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
1006 !(set & BIT(NL80211_STA_FLAG_ASSOCIATED)) &&
1007 test_sta_flag(sta, WLAN_STA_ASSOC)) {
1008 ret = sta_info_move_state(sta, IEEE80211_STA_AUTH);
1009 if (ret)
1010 return ret;
1011 }
1012
1013 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
1014 !(set & BIT(NL80211_STA_FLAG_AUTHENTICATED)) &&
1015 test_sta_flag(sta, WLAN_STA_AUTH)) {
1016 ret = sta_info_move_state(sta, IEEE80211_STA_NONE);
1017 if (ret)
1018 return ret;
1019 }
1020
1021 return 0;
1022}
1023
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001024static int sta_apply_parameters(struct ieee80211_local *local,
1025 struct sta_info *sta,
1026 struct station_parameters *params)
Johannes Berg4fd69312007-12-19 02:03:35 +01001027{
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001028 int ret = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01001029 struct ieee80211_supported_band *sband;
Johannes Bergd0709a62008-02-25 16:27:46 +01001030 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berg55de9082012-07-26 17:24:39 +02001031 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001032 u32 mask, set;
Johannes Berg4fd69312007-12-19 02:03:35 +01001033
Johannes Berg55de9082012-07-26 17:24:39 +02001034 sband = local->hw.wiphy->bands[band];
Johannes Bergae5eb022008-10-14 16:58:37 +02001035
Johannes Bergeccb8e82009-05-11 21:57:56 +03001036 mask = params->sta_flags_mask;
1037 set = params->sta_flags_set;
Johannes Berg73651ee2008-02-25 16:27:47 +01001038
Johannes Bergd582cff2012-10-26 17:53:44 +02001039 if (ieee80211_vif_is_mesh(&sdata->vif)) {
1040 /*
1041 * In mesh mode, ASSOCIATED isn't part of the nl80211
1042 * API but must follow AUTHENTICATED for driver state.
1043 */
1044 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED))
1045 mask |= BIT(NL80211_STA_FLAG_ASSOCIATED);
1046 if (set & BIT(NL80211_STA_FLAG_AUTHENTICATED))
1047 set |= BIT(NL80211_STA_FLAG_ASSOCIATED);
Johannes Berg77ee7c82013-02-15 00:48:33 +01001048 } else if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1049 /*
1050 * TDLS -- everything follows authorized, but
1051 * only becoming authorized is possible, not
1052 * going back
1053 */
1054 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
1055 set |= BIT(NL80211_STA_FLAG_AUTHENTICATED) |
1056 BIT(NL80211_STA_FLAG_ASSOCIATED);
1057 mask |= BIT(NL80211_STA_FLAG_AUTHENTICATED) |
1058 BIT(NL80211_STA_FLAG_ASSOCIATED);
1059 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001060 }
1061
Arik Nemtsov68885a52014-06-11 17:18:19 +03001062 /* auth flags will be set later for TDLS stations */
1063 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1064 ret = sta_apply_auth_flags(local, sta, mask, set);
1065 if (ret)
1066 return ret;
1067 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001068
Johannes Bergeccb8e82009-05-11 21:57:56 +03001069 if (mask & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) {
Johannes Bergeccb8e82009-05-11 21:57:56 +03001070 if (set & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001071 set_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
1072 else
1073 clear_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001074 }
1075
Johannes Berga74a8c82014-07-22 14:50:47 +02001076 if (mask & BIT(NL80211_STA_FLAG_WME))
1077 sta->sta.wme = set & BIT(NL80211_STA_FLAG_WME);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001078
1079 if (mask & BIT(NL80211_STA_FLAG_MFP)) {
SenthilKumar Jegadeesan64a8cef2015-03-02 13:29:40 +05301080 sta->sta.mfp = !!(set & BIT(NL80211_STA_FLAG_MFP));
Johannes Bergeccb8e82009-05-11 21:57:56 +03001081 if (set & BIT(NL80211_STA_FLAG_MFP))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001082 set_sta_flag(sta, WLAN_STA_MFP);
1083 else
1084 clear_sta_flag(sta, WLAN_STA_MFP);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001085 }
Javier Cardonab39c48f2011-04-07 15:08:30 -07001086
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001087 if (mask & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001088 if (set & BIT(NL80211_STA_FLAG_TDLS_PEER))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001089 set_sta_flag(sta, WLAN_STA_TDLS_PEER);
1090 else
1091 clear_sta_flag(sta, WLAN_STA_TDLS_PEER);
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001092 }
Johannes Bergeccb8e82009-05-11 21:57:56 +03001093
Arik Nemtsov9041c1f2014-11-09 18:50:15 +02001094 /* mark TDLS channel switch support, if the AP allows it */
1095 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER) &&
1096 !sdata->u.mgd.tdls_chan_switch_prohibited &&
1097 params->ext_capab_len >= 4 &&
1098 params->ext_capab[3] & WLAN_EXT_CAPA4_TDLS_CHAN_SWITCH)
1099 set_sta_flag(sta, WLAN_STA_TDLS_CHAN_SWITCH);
1100
Johannes Berg3b9ce802011-09-27 20:56:12 +02001101 if (params->sta_modify_mask & STATION_PARAM_APPLY_UAPSD) {
1102 sta->sta.uapsd_queues = params->uapsd_queues;
1103 sta->sta.max_sp = params->max_sp;
1104 }
Eliad Peller9533b4a2011-08-23 14:37:47 +03001105
Johannes Berg73651ee2008-02-25 16:27:47 +01001106 /*
Johannes Berg51b50fb2009-05-24 16:42:30 +02001107 * cfg80211 validates this (1-2007) and allows setting the AID
1108 * only when creating a new station entry
1109 */
1110 if (params->aid)
1111 sta->sta.aid = params->aid;
1112
1113 /*
Johannes Bergba23d202012-12-27 17:32:09 +01001114 * Some of the following updates would be racy if called on an
1115 * existing station, via ieee80211_change_station(). However,
1116 * all such changes are rejected by cfg80211 except for updates
1117 * changing the supported rates on an existing but not yet used
1118 * TDLS peer.
Johannes Berg73651ee2008-02-25 16:27:47 +01001119 */
1120
Johannes Berg4fd69312007-12-19 02:03:35 +01001121 if (params->listen_interval >= 0)
1122 sta->listen_interval = params->listen_interval;
1123
1124 if (params->supported_rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001125 ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef,
1126 sband, params->supported_rates,
1127 params->supported_rates_len,
1128 &sta->sta.supp_rates[band]);
Johannes Berg4fd69312007-12-19 02:03:35 +01001129 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001130
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001131 if (params->ht_capa)
Ben Greearef96a8422011-11-18 11:32:00 -08001132 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
Johannes Berge1a0c6b2013-02-07 11:47:44 +01001133 params->ht_capa, sta);
Jouni Malinen36aedc902008-08-25 11:58:58 +03001134
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +00001135 if (params->vht_capa)
1136 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
Johannes Berg4a342152013-02-07 11:58:58 +01001137 params->vht_capa, sta);
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +00001138
Marek Kwaczynskib1bce142014-02-03 14:44:44 +01001139 if (params->opmode_notif_used) {
Marek Kwaczynskib1bce142014-02-03 14:44:44 +01001140 /* returned value is only needed for rc update, but the
1141 * rc isn't initialized here yet, so ignore it
1142 */
1143 __ieee80211_vht_handle_opmode(sdata, sta,
1144 params->opmode_notif,
1145 band, false);
1146 }
1147
Javier Cardona9c3990a2011-05-03 16:57:11 -07001148 if (ieee80211_vif_is_mesh(&sdata->vif)) {
Yogesh Ashok Powar4daf50f2011-05-12 09:32:17 -04001149#ifdef CONFIG_MAC80211_MESH
Thomas Pedersen39886b62013-02-13 12:14:19 -08001150 u32 changed = 0;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001151
1152 if (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE) {
Javier Cardona9c3990a2011-05-03 16:57:11 -07001153 switch (params->plink_state) {
Javier Cardona57cf8042011-05-13 10:45:43 -07001154 case NL80211_PLINK_ESTAB:
Marco Porsch1617bab2013-01-07 16:04:49 +01001155 if (sta->plink_state != NL80211_PLINK_ESTAB)
1156 changed = mesh_plink_inc_estab_count(
1157 sdata);
1158 sta->plink_state = params->plink_state;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001159
1160 ieee80211_mps_sta_status_update(sta);
Thomas Pedersen39886b62013-02-13 12:14:19 -08001161 changed |= ieee80211_mps_set_sta_local_pm(sta,
1162 sdata->u.mesh.mshcfg.power_mode);
Marco Porsch1617bab2013-01-07 16:04:49 +01001163 break;
1164 case NL80211_PLINK_LISTEN:
Javier Cardona57cf8042011-05-13 10:45:43 -07001165 case NL80211_PLINK_BLOCKED:
Marco Porsch1617bab2013-01-07 16:04:49 +01001166 case NL80211_PLINK_OPN_SNT:
1167 case NL80211_PLINK_OPN_RCVD:
1168 case NL80211_PLINK_CNF_RCVD:
1169 case NL80211_PLINK_HOLDING:
1170 if (sta->plink_state == NL80211_PLINK_ESTAB)
1171 changed = mesh_plink_dec_estab_count(
1172 sdata);
Javier Cardona9c3990a2011-05-03 16:57:11 -07001173 sta->plink_state = params->plink_state;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001174
1175 ieee80211_mps_sta_status_update(sta);
Marco Porsch446075d2013-10-15 12:29:24 +02001176 changed |= ieee80211_mps_set_sta_local_pm(sta,
1177 NL80211_MESH_POWER_UNKNOWN);
Javier Cardona9c3990a2011-05-03 16:57:11 -07001178 break;
1179 default:
1180 /* nothing */
1181 break;
1182 }
Johannes Berg77ee7c82013-02-15 00:48:33 +01001183 }
1184
1185 switch (params->plink_action) {
1186 case NL80211_PLINK_ACTION_NO_ACTION:
1187 /* nothing */
1188 break;
1189 case NL80211_PLINK_ACTION_OPEN:
1190 changed |= mesh_plink_open(sta);
1191 break;
1192 case NL80211_PLINK_ACTION_BLOCK:
1193 changed |= mesh_plink_block(sta);
1194 break;
Marco Porsch1617bab2013-01-07 16:04:49 +01001195 }
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001196
1197 if (params->local_pm)
Thomas Pedersen39886b62013-02-13 12:14:19 -08001198 changed |=
1199 ieee80211_mps_set_sta_local_pm(sta,
1200 params->local_pm);
Javier Lopez6c751ef2013-11-06 10:04:29 -08001201 ieee80211_mbss_info_change_notify(sdata, changed);
Yogesh Ashok Powar4daf50f2011-05-12 09:32:17 -04001202#endif
Johannes Berg902acc72008-02-23 15:17:19 +01001203 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001204
Arik Nemtsov68885a52014-06-11 17:18:19 +03001205 /* set the STA state after all sta info from usermode has been set */
1206 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1207 ret = sta_apply_auth_flags(local, sta, mask, set);
1208 if (ret)
1209 return ret;
1210 }
1211
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001212 return 0;
Johannes Berg4fd69312007-12-19 02:03:35 +01001213}
1214
1215static int ieee80211_add_station(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001216 const u8 *mac,
1217 struct station_parameters *params)
Johannes Berg4fd69312007-12-19 02:03:35 +01001218{
Johannes Berg14db74b2008-07-29 13:22:52 +02001219 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +01001220 struct sta_info *sta;
1221 struct ieee80211_sub_if_data *sdata;
Johannes Berg73651ee2008-02-25 16:27:47 +01001222 int err;
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001223 int layer2_update;
Johannes Berg4fd69312007-12-19 02:03:35 +01001224
Johannes Berg4fd69312007-12-19 02:03:35 +01001225 if (params->vlan) {
1226 sdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1227
Johannes Berg05c914f2008-09-11 00:01:58 +02001228 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
1229 sdata->vif.type != NL80211_IFTYPE_AP)
Johannes Berg4fd69312007-12-19 02:03:35 +01001230 return -EINVAL;
1231 } else
1232 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1233
Joe Perchesb203ca32012-05-08 18:56:52 +00001234 if (ether_addr_equal(mac, sdata->vif.addr))
Johannes Berg03e44972008-02-27 09:56:40 +01001235 return -EINVAL;
1236
1237 if (is_multicast_ether_addr(mac))
1238 return -EINVAL;
1239
1240 sta = sta_info_alloc(sdata, mac, GFP_KERNEL);
Johannes Berg73651ee2008-02-25 16:27:47 +01001241 if (!sta)
1242 return -ENOMEM;
Johannes Berg4fd69312007-12-19 02:03:35 +01001243
Johannes Bergd582cff2012-10-26 17:53:44 +02001244 /*
1245 * defaults -- if userspace wants something else we'll
1246 * change it accordingly in sta_apply_parameters()
1247 */
Johannes Berg77ee7c82013-02-15 00:48:33 +01001248 if (!(params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER))) {
1249 sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
1250 sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC);
Arik Nemtsov0c4972c2014-05-01 10:17:27 +03001251 } else {
1252 sta->sta.tdls = true;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001253 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001254
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001255 err = sta_apply_parameters(local, sta, params);
1256 if (err) {
1257 sta_info_free(local, sta);
1258 return err;
1259 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001260
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001261 /*
Johannes Berg77ee7c82013-02-15 00:48:33 +01001262 * for TDLS, rate control should be initialized only when
1263 * rates are known and station is marked authorized
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001264 */
1265 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER))
1266 rate_control_rate_init(sta);
Johannes Berg4fd69312007-12-19 02:03:35 +01001267
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001268 layer2_update = sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1269 sdata->vif.type == NL80211_IFTYPE_AP;
1270
Johannes Berg34e89502010-02-03 13:59:58 +01001271 err = sta_info_insert_rcu(sta);
Johannes Berg73651ee2008-02-25 16:27:47 +01001272 if (err) {
Johannes Berg73651ee2008-02-25 16:27:47 +01001273 rcu_read_unlock();
1274 return err;
1275 }
1276
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001277 if (layer2_update)
Johannes Berg73651ee2008-02-25 16:27:47 +01001278 ieee80211_send_layer2_update(sta);
1279
1280 rcu_read_unlock();
1281
Johannes Berg4fd69312007-12-19 02:03:35 +01001282 return 0;
1283}
1284
1285static int ieee80211_del_station(struct wiphy *wiphy, struct net_device *dev,
Jouni Malinen89c771e2014-10-10 20:52:40 +03001286 struct station_del_parameters *params)
Johannes Berg4fd69312007-12-19 02:03:35 +01001287{
Johannes Berg14db74b2008-07-29 13:22:52 +02001288 struct ieee80211_sub_if_data *sdata;
Johannes Berg4fd69312007-12-19 02:03:35 +01001289
Johannes Berg14db74b2008-07-29 13:22:52 +02001290 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1291
Jouni Malinen89c771e2014-10-10 20:52:40 +03001292 if (params->mac)
1293 return sta_info_destroy_addr_bss(sdata, params->mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001294
Johannes Bergb998e8b2012-12-13 23:07:46 +01001295 sta_info_flush(sdata);
Johannes Berg4fd69312007-12-19 02:03:35 +01001296 return 0;
1297}
1298
1299static int ieee80211_change_station(struct wiphy *wiphy,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001300 struct net_device *dev, const u8 *mac,
Johannes Berg4fd69312007-12-19 02:03:35 +01001301 struct station_parameters *params)
1302{
Johannes Bergabe60632009-11-25 17:46:18 +01001303 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg14db74b2008-07-29 13:22:52 +02001304 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +01001305 struct sta_info *sta;
1306 struct ieee80211_sub_if_data *vlansdata;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001307 enum cfg80211_station_type statype;
Eliad Peller35b88622011-12-29 14:41:39 +02001308 int err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001309
Johannes Berg87be1e12011-12-14 12:20:29 +01001310 mutex_lock(&local->sta_mtx);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001311
Felix Fietkau0e5ded52010-01-08 18:10:58 +01001312 sta = sta_info_get_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001313 if (!sta) {
Johannes Berg77ee7c82013-02-15 00:48:33 +01001314 err = -ENOENT;
1315 goto out_err;
Johannes Berg98dd6a52008-04-10 15:36:09 +02001316 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001317
Johannes Berg77ee7c82013-02-15 00:48:33 +01001318 switch (sdata->vif.type) {
1319 case NL80211_IFTYPE_MESH_POINT:
Thomas Pedersena6dad6a2013-03-04 13:06:12 -08001320 if (sdata->u.mesh.user_mpm)
Thomas Pederseneef941e2013-03-04 13:06:11 -08001321 statype = CFG80211_STA_MESH_PEER_USER;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001322 else
Thomas Pederseneef941e2013-03-04 13:06:11 -08001323 statype = CFG80211_STA_MESH_PEER_KERNEL;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001324 break;
1325 case NL80211_IFTYPE_ADHOC:
1326 statype = CFG80211_STA_IBSS;
1327 break;
1328 case NL80211_IFTYPE_STATION:
1329 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1330 statype = CFG80211_STA_AP_STA;
1331 break;
1332 }
1333 if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
1334 statype = CFG80211_STA_TDLS_PEER_ACTIVE;
1335 else
1336 statype = CFG80211_STA_TDLS_PEER_SETUP;
1337 break;
1338 case NL80211_IFTYPE_AP:
1339 case NL80211_IFTYPE_AP_VLAN:
1340 statype = CFG80211_STA_AP_CLIENT;
1341 break;
1342 default:
1343 err = -EOPNOTSUPP;
1344 goto out_err;
Johannes Bergbdd90d52011-12-14 12:20:27 +01001345 }
1346
Johannes Berg77ee7c82013-02-15 00:48:33 +01001347 err = cfg80211_check_station_change(wiphy, params, statype);
1348 if (err)
1349 goto out_err;
1350
Johannes Bergd0709a62008-02-25 16:27:46 +01001351 if (params->vlan && params->vlan != sta->sdata->dev) {
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001352 bool prev_4addr = false;
1353 bool new_4addr = false;
1354
Johannes Berg4fd69312007-12-19 02:03:35 +01001355 vlansdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1356
Johannes Berg9bc383d2009-11-19 11:55:19 +01001357 if (params->vlan->ieee80211_ptr->use_4addr) {
Johannes Berg33054432009-11-20 10:09:14 +01001358 if (vlansdata->u.vlan.sta) {
Johannes Berg77ee7c82013-02-15 00:48:33 +01001359 err = -EBUSY;
1360 goto out_err;
Johannes Berg33054432009-11-20 10:09:14 +01001361 }
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001362
Eric Dumazetcf778b02012-01-12 04:41:32 +00001363 rcu_assign_pointer(vlansdata->u.vlan.sta, sta);
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001364 new_4addr = true;
1365 }
1366
1367 if (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1368 sta->sdata->u.vlan.sta) {
Monam Agarwal0c2bef462014-03-24 00:51:43 +05301369 RCU_INIT_POINTER(sta->sdata->u.vlan.sta, NULL);
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001370 prev_4addr = true;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001371 }
1372
Johannes Berg14db74b2008-07-29 13:22:52 +02001373 sta->sdata = vlansdata;
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001374
1375 if (sta->sta_state == IEEE80211_STA_AUTHORIZED &&
1376 prev_4addr != new_4addr) {
1377 if (new_4addr)
1378 atomic_dec(&sta->sdata->bss->num_mcast_sta);
1379 else
1380 atomic_inc(&sta->sdata->bss->num_mcast_sta);
1381 }
1382
Johannes Berg4fd69312007-12-19 02:03:35 +01001383 ieee80211_send_layer2_update(sta);
1384 }
1385
Eliad Peller35b88622011-12-29 14:41:39 +02001386 err = sta_apply_parameters(local, sta, params);
Johannes Berg77ee7c82013-02-15 00:48:33 +01001387 if (err)
1388 goto out_err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001389
Johannes Berg87be1e12011-12-14 12:20:29 +01001390 mutex_unlock(&local->sta_mtx);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001391
Emmanuel Grumbach687da132013-10-01 16:45:43 +03001392 if ((sdata->vif.type == NL80211_IFTYPE_AP ||
1393 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
1394 sta->known_smps_mode != sta->sdata->bss->req_smps &&
1395 test_sta_flag(sta, WLAN_STA_AUTHORIZED) &&
1396 sta_info_tx_streams(sta) != 1) {
1397 ht_dbg(sta->sdata,
1398 "%pM just authorized and MIMO capable - update SMPS\n",
1399 sta->sta.addr);
1400 ieee80211_send_smps_action(sta->sdata,
1401 sta->sdata->bss->req_smps,
1402 sta->sta.addr,
1403 sta->sdata->vif.bss_conf.bssid);
1404 }
1405
Jason Young808118c2011-03-10 16:43:19 -08001406 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
Eliad Pellerab095872012-07-27 12:33:22 +03001407 params->sta_flags_mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
Jason Young808118c2011-03-10 16:43:19 -08001408 ieee80211_recalc_ps(local, -1);
Eliad Pellerab095872012-07-27 12:33:22 +03001409 ieee80211_recalc_ps_vif(sdata);
1410 }
Johannes Berg77ee7c82013-02-15 00:48:33 +01001411
Johannes Berg4fd69312007-12-19 02:03:35 +01001412 return 0;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001413out_err:
1414 mutex_unlock(&local->sta_mtx);
1415 return err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001416}
1417
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001418#ifdef CONFIG_MAC80211_MESH
1419static int ieee80211_add_mpath(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001420 const u8 *dst, const u8 *next_hop)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001421{
Johannes Berg14db74b2008-07-29 13:22:52 +02001422 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001423 struct mesh_path *mpath;
1424 struct sta_info *sta;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001425
Johannes Berg14db74b2008-07-29 13:22:52 +02001426 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1427
Johannes Bergd0709a62008-02-25 16:27:46 +01001428 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +01001429 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +01001430 if (!sta) {
1431 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001432 return -ENOENT;
Johannes Bergd0709a62008-02-25 16:27:46 +01001433 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001434
Bob Copelandae76eef2013-03-29 09:38:39 -04001435 mpath = mesh_path_add(sdata, dst);
1436 if (IS_ERR(mpath)) {
Johannes Bergd0709a62008-02-25 16:27:46 +01001437 rcu_read_unlock();
Bob Copelandae76eef2013-03-29 09:38:39 -04001438 return PTR_ERR(mpath);
Johannes Bergd0709a62008-02-25 16:27:46 +01001439 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001440
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001441 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +01001442
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001443 rcu_read_unlock();
1444 return 0;
1445}
1446
1447static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001448 const u8 *dst)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001449{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001450 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001451
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001452 if (dst)
Johannes Bergbf7cd942013-02-15 14:40:31 +01001453 return mesh_path_del(sdata, dst);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001454
Javier Cardonaece1a2e2011-08-29 13:23:04 -07001455 mesh_path_flush_by_iface(sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001456 return 0;
1457}
1458
Johannes Berg3b3a0162014-05-19 17:19:31 +02001459static int ieee80211_change_mpath(struct wiphy *wiphy, struct net_device *dev,
1460 const u8 *dst, const u8 *next_hop)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001461{
Johannes Berg14db74b2008-07-29 13:22:52 +02001462 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001463 struct mesh_path *mpath;
1464 struct sta_info *sta;
1465
Johannes Berg14db74b2008-07-29 13:22:52 +02001466 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1467
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001468 rcu_read_lock();
Johannes Bergd0709a62008-02-25 16:27:46 +01001469
Johannes Bergabe60632009-11-25 17:46:18 +01001470 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +01001471 if (!sta) {
1472 rcu_read_unlock();
1473 return -ENOENT;
1474 }
1475
Johannes Bergbf7cd942013-02-15 14:40:31 +01001476 mpath = mesh_path_lookup(sdata, dst);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001477 if (!mpath) {
1478 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001479 return -ENOENT;
1480 }
1481
1482 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +01001483
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001484 rcu_read_unlock();
1485 return 0;
1486}
1487
1488static void mpath_set_pinfo(struct mesh_path *mpath, u8 *next_hop,
1489 struct mpath_info *pinfo)
1490{
Johannes Berga3836e02011-05-12 15:11:37 +02001491 struct sta_info *next_hop_sta = rcu_dereference(mpath->next_hop);
1492
1493 if (next_hop_sta)
1494 memcpy(next_hop, next_hop_sta->sta.addr, ETH_ALEN);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001495 else
1496 memset(next_hop, 0, ETH_ALEN);
1497
LEO Airwarosu Yoichi Shinoda7ce8c7a2012-08-27 22:28:16 +09001498 memset(pinfo, 0, sizeof(*pinfo));
1499
Johannes Bergf5ea9122009-08-07 16:17:38 +02001500 pinfo->generation = mesh_paths_generation;
1501
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001502 pinfo->filled = MPATH_INFO_FRAME_QLEN |
Rui Paulod19b3bf2009-11-09 23:46:55 +00001503 MPATH_INFO_SN |
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001504 MPATH_INFO_METRIC |
1505 MPATH_INFO_EXPTIME |
1506 MPATH_INFO_DISCOVERY_TIMEOUT |
1507 MPATH_INFO_DISCOVERY_RETRIES |
1508 MPATH_INFO_FLAGS;
1509
1510 pinfo->frame_qlen = mpath->frame_queue.qlen;
Rui Paulod19b3bf2009-11-09 23:46:55 +00001511 pinfo->sn = mpath->sn;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001512 pinfo->metric = mpath->metric;
1513 if (time_before(jiffies, mpath->exp_time))
1514 pinfo->exptime = jiffies_to_msecs(mpath->exp_time - jiffies);
1515 pinfo->discovery_timeout =
1516 jiffies_to_msecs(mpath->discovery_timeout);
1517 pinfo->discovery_retries = mpath->discovery_retries;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001518 if (mpath->flags & MESH_PATH_ACTIVE)
1519 pinfo->flags |= NL80211_MPATH_FLAG_ACTIVE;
1520 if (mpath->flags & MESH_PATH_RESOLVING)
1521 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
Rui Paulod19b3bf2009-11-09 23:46:55 +00001522 if (mpath->flags & MESH_PATH_SN_VALID)
1523 pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001524 if (mpath->flags & MESH_PATH_FIXED)
1525 pinfo->flags |= NL80211_MPATH_FLAG_FIXED;
LEO Airwarosu Yoichi Shinoda7ce8c7a2012-08-27 22:28:16 +09001526 if (mpath->flags & MESH_PATH_RESOLVED)
1527 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVED;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001528}
1529
1530static int ieee80211_get_mpath(struct wiphy *wiphy, struct net_device *dev,
1531 u8 *dst, u8 *next_hop, struct mpath_info *pinfo)
1532
1533{
Johannes Berg14db74b2008-07-29 13:22:52 +02001534 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001535 struct mesh_path *mpath;
1536
Johannes Berg14db74b2008-07-29 13:22:52 +02001537 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1538
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001539 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01001540 mpath = mesh_path_lookup(sdata, dst);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001541 if (!mpath) {
1542 rcu_read_unlock();
1543 return -ENOENT;
1544 }
1545 memcpy(dst, mpath->dst, ETH_ALEN);
1546 mpath_set_pinfo(mpath, next_hop, pinfo);
1547 rcu_read_unlock();
1548 return 0;
1549}
1550
1551static int ieee80211_dump_mpath(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001552 int idx, u8 *dst, u8 *next_hop,
1553 struct mpath_info *pinfo)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001554{
Johannes Berg14db74b2008-07-29 13:22:52 +02001555 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001556 struct mesh_path *mpath;
1557
Johannes Berg14db74b2008-07-29 13:22:52 +02001558 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1559
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001560 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01001561 mpath = mesh_path_lookup_by_idx(sdata, idx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001562 if (!mpath) {
1563 rcu_read_unlock();
1564 return -ENOENT;
1565 }
1566 memcpy(dst, mpath->dst, ETH_ALEN);
1567 mpath_set_pinfo(mpath, next_hop, pinfo);
1568 rcu_read_unlock();
1569 return 0;
1570}
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001571
Henning Roggea2db2ed2014-09-12 08:58:50 +02001572static void mpp_set_pinfo(struct mesh_path *mpath, u8 *mpp,
1573 struct mpath_info *pinfo)
1574{
1575 memset(pinfo, 0, sizeof(*pinfo));
1576 memcpy(mpp, mpath->mpp, ETH_ALEN);
1577
1578 pinfo->generation = mpp_paths_generation;
1579}
1580
1581static int ieee80211_get_mpp(struct wiphy *wiphy, struct net_device *dev,
1582 u8 *dst, u8 *mpp, struct mpath_info *pinfo)
1583
1584{
1585 struct ieee80211_sub_if_data *sdata;
1586 struct mesh_path *mpath;
1587
1588 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1589
1590 rcu_read_lock();
1591 mpath = mpp_path_lookup(sdata, dst);
1592 if (!mpath) {
1593 rcu_read_unlock();
1594 return -ENOENT;
1595 }
1596 memcpy(dst, mpath->dst, ETH_ALEN);
1597 mpp_set_pinfo(mpath, mpp, pinfo);
1598 rcu_read_unlock();
1599 return 0;
1600}
1601
1602static int ieee80211_dump_mpp(struct wiphy *wiphy, struct net_device *dev,
1603 int idx, u8 *dst, u8 *mpp,
1604 struct mpath_info *pinfo)
1605{
1606 struct ieee80211_sub_if_data *sdata;
1607 struct mesh_path *mpath;
1608
1609 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1610
1611 rcu_read_lock();
1612 mpath = mpp_path_lookup_by_idx(sdata, idx);
1613 if (!mpath) {
1614 rcu_read_unlock();
1615 return -ENOENT;
1616 }
1617 memcpy(dst, mpath->dst, ETH_ALEN);
1618 mpp_set_pinfo(mpath, mpp, pinfo);
1619 rcu_read_unlock();
1620 return 0;
1621}
1622
Javier Cardona24bdd9f2010-12-16 17:37:48 -08001623static int ieee80211_get_mesh_config(struct wiphy *wiphy,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001624 struct net_device *dev,
1625 struct mesh_config *conf)
1626{
1627 struct ieee80211_sub_if_data *sdata;
1628 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1629
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001630 memcpy(conf, &(sdata->u.mesh.mshcfg), sizeof(struct mesh_config));
1631 return 0;
1632}
1633
1634static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm, u32 mask)
1635{
1636 return (mask >> (parm-1)) & 0x1;
1637}
1638
Javier Cardonac80d5452010-12-16 17:37:49 -08001639static int copy_mesh_setup(struct ieee80211_if_mesh *ifmsh,
1640 const struct mesh_setup *setup)
1641{
1642 u8 *new_ie;
1643 const u8 *old_ie;
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001644 struct ieee80211_sub_if_data *sdata = container_of(ifmsh,
1645 struct ieee80211_sub_if_data, u.mesh);
Javier Cardonac80d5452010-12-16 17:37:49 -08001646
Javier Cardona581a8b02011-04-07 15:08:27 -07001647 /* allocate information elements */
Javier Cardonac80d5452010-12-16 17:37:49 -08001648 new_ie = NULL;
Javier Cardona581a8b02011-04-07 15:08:27 -07001649 old_ie = ifmsh->ie;
Javier Cardonac80d5452010-12-16 17:37:49 -08001650
Javier Cardona581a8b02011-04-07 15:08:27 -07001651 if (setup->ie_len) {
1652 new_ie = kmemdup(setup->ie, setup->ie_len,
Javier Cardonac80d5452010-12-16 17:37:49 -08001653 GFP_KERNEL);
1654 if (!new_ie)
1655 return -ENOMEM;
1656 }
Javier Cardona581a8b02011-04-07 15:08:27 -07001657 ifmsh->ie_len = setup->ie_len;
1658 ifmsh->ie = new_ie;
1659 kfree(old_ie);
Javier Cardonac80d5452010-12-16 17:37:49 -08001660
1661 /* now copy the rest of the setup parameters */
1662 ifmsh->mesh_id_len = setup->mesh_id_len;
1663 memcpy(ifmsh->mesh_id, setup->mesh_id, ifmsh->mesh_id_len);
Javier Cardonad299a1f2012-03-31 11:31:33 -07001664 ifmsh->mesh_sp_id = setup->sync_method;
Javier Cardonac80d5452010-12-16 17:37:49 -08001665 ifmsh->mesh_pp_id = setup->path_sel_proto;
1666 ifmsh->mesh_pm_id = setup->path_metric;
Thomas Pedersena6dad6a2013-03-04 13:06:12 -08001667 ifmsh->user_mpm = setup->user_mpm;
Colleen Twitty0d4261a2013-05-08 11:46:00 -07001668 ifmsh->mesh_auth_id = setup->auth_id;
Javier Cardonab130e5c2011-05-03 16:57:07 -07001669 ifmsh->security = IEEE80211_MESH_SEC_NONE;
1670 if (setup->is_authenticated)
1671 ifmsh->security |= IEEE80211_MESH_SEC_AUTHED;
1672 if (setup->is_secure)
1673 ifmsh->security |= IEEE80211_MESH_SEC_SECURED;
Javier Cardonac80d5452010-12-16 17:37:49 -08001674
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001675 /* mcast rate setting in Mesh Node */
1676 memcpy(sdata->vif.bss_conf.mcast_rate, setup->mcast_rate,
1677 sizeof(setup->mcast_rate));
Ashok Nagarajanffb3cf32013-06-03 10:33:36 -07001678 sdata->vif.bss_conf.basic_rates = setup->basic_rates;
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001679
Marco Porsch9bdbf042013-01-07 16:04:51 +01001680 sdata->vif.bss_conf.beacon_int = setup->beacon_interval;
1681 sdata->vif.bss_conf.dtim_period = setup->dtim_period;
1682
Javier Cardonac80d5452010-12-16 17:37:49 -08001683 return 0;
1684}
1685
Javier Cardona24bdd9f2010-12-16 17:37:48 -08001686static int ieee80211_update_mesh_config(struct wiphy *wiphy,
Johannes Berg29cbe682010-12-03 09:20:44 +01001687 struct net_device *dev, u32 mask,
1688 const struct mesh_config *nconf)
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001689{
1690 struct mesh_config *conf;
1691 struct ieee80211_sub_if_data *sdata;
Rui Paulo63c57232009-11-09 23:46:57 +00001692 struct ieee80211_if_mesh *ifmsh;
1693
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001694 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Rui Paulo63c57232009-11-09 23:46:57 +00001695 ifmsh = &sdata->u.mesh;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001696
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001697 /* Set the config options which we are interested in setting */
1698 conf = &(sdata->u.mesh.mshcfg);
1699 if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT, mask))
1700 conf->dot11MeshRetryTimeout = nconf->dot11MeshRetryTimeout;
1701 if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT, mask))
1702 conf->dot11MeshConfirmTimeout = nconf->dot11MeshConfirmTimeout;
1703 if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT, mask))
1704 conf->dot11MeshHoldingTimeout = nconf->dot11MeshHoldingTimeout;
1705 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS, mask))
1706 conf->dot11MeshMaxPeerLinks = nconf->dot11MeshMaxPeerLinks;
1707 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES, mask))
1708 conf->dot11MeshMaxRetries = nconf->dot11MeshMaxRetries;
1709 if (_chg_mesh_attr(NL80211_MESHCONF_TTL, mask))
1710 conf->dot11MeshTTL = nconf->dot11MeshTTL;
Javier Cardona45904f22010-12-03 09:20:40 +01001711 if (_chg_mesh_attr(NL80211_MESHCONF_ELEMENT_TTL, mask))
Chun-Yeow Yeoh58886a92012-06-15 00:23:53 +08001712 conf->element_ttl = nconf->element_ttl;
Thomas Pedersen146bb482013-03-04 13:06:14 -08001713 if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS, mask)) {
1714 if (ifmsh->user_mpm)
1715 return -EBUSY;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001716 conf->auto_open_plinks = nconf->auto_open_plinks;
Thomas Pedersen146bb482013-03-04 13:06:14 -08001717 }
Javier Cardonad299a1f2012-03-31 11:31:33 -07001718 if (_chg_mesh_attr(NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR, mask))
1719 conf->dot11MeshNbrOffsetMaxNeighbor =
1720 nconf->dot11MeshNbrOffsetMaxNeighbor;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001721 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, mask))
1722 conf->dot11MeshHWMPmaxPREQretries =
1723 nconf->dot11MeshHWMPmaxPREQretries;
1724 if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME, mask))
1725 conf->path_refresh_time = nconf->path_refresh_time;
1726 if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, mask))
1727 conf->min_discovery_timeout = nconf->min_discovery_timeout;
1728 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, mask))
1729 conf->dot11MeshHWMPactivePathTimeout =
1730 nconf->dot11MeshHWMPactivePathTimeout;
1731 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, mask))
1732 conf->dot11MeshHWMPpreqMinInterval =
1733 nconf->dot11MeshHWMPpreqMinInterval;
Thomas Pedersendca7e942011-11-24 17:15:24 -08001734 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL, mask))
1735 conf->dot11MeshHWMPperrMinInterval =
1736 nconf->dot11MeshHWMPperrMinInterval;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001737 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
1738 mask))
1739 conf->dot11MeshHWMPnetDiameterTraversalTime =
1740 nconf->dot11MeshHWMPnetDiameterTraversalTime;
Rui Paulo63c57232009-11-09 23:46:57 +00001741 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask)) {
1742 conf->dot11MeshHWMPRootMode = nconf->dot11MeshHWMPRootMode;
1743 ieee80211_mesh_root_setup(ifmsh);
1744 }
Javier Cardona16dd7262011-08-09 16:45:11 -07001745 if (_chg_mesh_attr(NL80211_MESHCONF_GATE_ANNOUNCEMENTS, mask)) {
Thomas Pedersenc61336612011-08-25 10:36:14 -07001746 /* our current gate announcement implementation rides on root
1747 * announcements, so require this ifmsh to also be a root node
1748 * */
1749 if (nconf->dot11MeshGateAnnouncementProtocol &&
Chun-Yeow Yeohdbb912c2012-06-14 02:06:09 +08001750 !(conf->dot11MeshHWMPRootMode > IEEE80211_ROOTMODE_ROOT)) {
1751 conf->dot11MeshHWMPRootMode = IEEE80211_PROACTIVE_RANN;
Thomas Pedersenc61336612011-08-25 10:36:14 -07001752 ieee80211_mesh_root_setup(ifmsh);
1753 }
Javier Cardona16dd7262011-08-09 16:45:11 -07001754 conf->dot11MeshGateAnnouncementProtocol =
1755 nconf->dot11MeshGateAnnouncementProtocol;
1756 }
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08001757 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_RANN_INTERVAL, mask))
Javier Cardona0507e152011-08-09 16:45:10 -07001758 conf->dot11MeshHWMPRannInterval =
1759 nconf->dot11MeshHWMPRannInterval;
Chun-Yeow Yeoh94f90652012-01-21 01:02:16 +08001760 if (_chg_mesh_attr(NL80211_MESHCONF_FORWARDING, mask))
1761 conf->dot11MeshForwarding = nconf->dot11MeshForwarding;
Ashok Nagarajan55335132012-02-28 17:04:08 -08001762 if (_chg_mesh_attr(NL80211_MESHCONF_RSSI_THRESHOLD, mask)) {
1763 /* our RSSI threshold implementation is supported only for
1764 * devices that report signal in dBm.
1765 */
1766 if (!(sdata->local->hw.flags & IEEE80211_HW_SIGNAL_DBM))
1767 return -ENOTSUPP;
1768 conf->rssi_threshold = nconf->rssi_threshold;
1769 }
Ashok Nagarajan70c33ea2012-04-30 14:20:32 -07001770 if (_chg_mesh_attr(NL80211_MESHCONF_HT_OPMODE, mask)) {
1771 conf->ht_opmode = nconf->ht_opmode;
1772 sdata->vif.bss_conf.ht_operation_mode = nconf->ht_opmode;
1773 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_HT);
1774 }
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08001775 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT, mask))
1776 conf->dot11MeshHWMPactivePathToRootTimeout =
1777 nconf->dot11MeshHWMPactivePathToRootTimeout;
1778 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOT_INTERVAL, mask))
1779 conf->dot11MeshHWMProotInterval =
1780 nconf->dot11MeshHWMProotInterval;
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08001781 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL, mask))
1782 conf->dot11MeshHWMPconfirmationInterval =
1783 nconf->dot11MeshHWMPconfirmationInterval;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001784 if (_chg_mesh_attr(NL80211_MESHCONF_POWER_MODE, mask)) {
1785 conf->power_mode = nconf->power_mode;
1786 ieee80211_mps_local_status_update(sdata);
1787 }
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001788 if (_chg_mesh_attr(NL80211_MESHCONF_AWAKE_WINDOW, mask))
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001789 conf->dot11MeshAwakeWindowDuration =
1790 nconf->dot11MeshAwakeWindowDuration;
Colleen Twitty66de6712013-06-03 09:53:40 -07001791 if (_chg_mesh_attr(NL80211_MESHCONF_PLINK_TIMEOUT, mask))
1792 conf->plink_timeout = nconf->plink_timeout;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001793 ieee80211_mbss_info_change_notify(sdata, BSS_CHANGED_BEACON);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001794 return 0;
1795}
1796
Johannes Berg29cbe682010-12-03 09:20:44 +01001797static int ieee80211_join_mesh(struct wiphy *wiphy, struct net_device *dev,
1798 const struct mesh_config *conf,
1799 const struct mesh_setup *setup)
1800{
1801 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1802 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Javier Cardonac80d5452010-12-16 17:37:49 -08001803 int err;
Johannes Berg29cbe682010-12-03 09:20:44 +01001804
Javier Cardonac80d5452010-12-16 17:37:49 -08001805 memcpy(&ifmsh->mshcfg, conf, sizeof(struct mesh_config));
1806 err = copy_mesh_setup(ifmsh, setup);
1807 if (err)
1808 return err;
Johannes Bergcc1d2802012-05-16 23:50:20 +02001809
Johannes Berg04ecd252012-09-11 14:34:12 +02001810 /* can mesh use other SMPS modes? */
1811 sdata->smps_mode = IEEE80211_SMPS_OFF;
1812 sdata->needed_rx_chains = sdata->local->rx_chains;
1813
Johannes Berg34a37402013-12-18 09:43:33 +01001814 mutex_lock(&sdata->local->mtx);
Johannes Berg4bf88532012-11-09 11:39:59 +01001815 err = ieee80211_vif_use_channel(sdata, &setup->chandef,
Johannes Berg55de9082012-07-26 17:24:39 +02001816 IEEE80211_CHANCTX_SHARED);
Johannes Berg34a37402013-12-18 09:43:33 +01001817 mutex_unlock(&sdata->local->mtx);
Johannes Bergcc1d2802012-05-16 23:50:20 +02001818 if (err)
1819 return err;
1820
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001821 return ieee80211_start_mesh(sdata);
Johannes Berg29cbe682010-12-03 09:20:44 +01001822}
1823
1824static int ieee80211_leave_mesh(struct wiphy *wiphy, struct net_device *dev)
1825{
1826 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1827
1828 ieee80211_stop_mesh(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +01001829 mutex_lock(&sdata->local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001830 ieee80211_vif_release_channel(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +01001831 mutex_unlock(&sdata->local->mtx);
Johannes Berg29cbe682010-12-03 09:20:44 +01001832
1833 return 0;
1834}
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001835#endif
1836
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001837static int ieee80211_change_bss(struct wiphy *wiphy,
1838 struct net_device *dev,
1839 struct bss_parameters *params)
1840{
Johannes Berg55de9082012-07-26 17:24:39 +02001841 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1842 enum ieee80211_band band;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001843 u32 changed = 0;
1844
Simon Wunderlich7ca133b2013-11-21 18:19:50 +01001845 if (!sdata_dereference(sdata->u.ap.beacon, sdata))
Johannes Berg55de9082012-07-26 17:24:39 +02001846 return -ENOENT;
1847
1848 band = ieee80211_get_sdata_band(sdata);
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001849
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001850 if (params->use_cts_prot >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001851 sdata->vif.bss_conf.use_cts_prot = params->use_cts_prot;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001852 changed |= BSS_CHANGED_ERP_CTS_PROT;
1853 }
1854 if (params->use_short_preamble >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001855 sdata->vif.bss_conf.use_short_preamble =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001856 params->use_short_preamble;
1857 changed |= BSS_CHANGED_ERP_PREAMBLE;
1858 }
Felix Fietkau43d35342010-01-15 03:00:48 +01001859
1860 if (!sdata->vif.bss_conf.use_short_slot &&
Johannes Berg55de9082012-07-26 17:24:39 +02001861 band == IEEE80211_BAND_5GHZ) {
Felix Fietkau43d35342010-01-15 03:00:48 +01001862 sdata->vif.bss_conf.use_short_slot = true;
1863 changed |= BSS_CHANGED_ERP_SLOT;
1864 }
1865
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001866 if (params->use_short_slot_time >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001867 sdata->vif.bss_conf.use_short_slot =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001868 params->use_short_slot_time;
1869 changed |= BSS_CHANGED_ERP_SLOT;
1870 }
1871
Jouni Malinen90c97a02008-10-30 16:59:22 +02001872 if (params->basic_rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001873 ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef,
1874 wiphy->bands[band],
1875 params->basic_rates,
1876 params->basic_rates_len,
1877 &sdata->vif.bss_conf.basic_rates);
Jouni Malinen90c97a02008-10-30 16:59:22 +02001878 changed |= BSS_CHANGED_BASIC_RATES;
1879 }
1880
Felix Fietkau7b7b5e52010-04-27 01:23:36 +02001881 if (params->ap_isolate >= 0) {
1882 if (params->ap_isolate)
1883 sdata->flags |= IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1884 else
1885 sdata->flags &= ~IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1886 }
1887
Helmut Schaa80d7e402010-11-19 12:40:26 +01001888 if (params->ht_opmode >= 0) {
1889 sdata->vif.bss_conf.ht_operation_mode =
1890 (u16) params->ht_opmode;
1891 changed |= BSS_CHANGED_HT;
1892 }
1893
Johannes Berg339afbf2012-11-14 15:21:17 +01001894 if (params->p2p_ctwindow >= 0) {
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001895 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &=
1896 ~IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
1897 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
1898 params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
Johannes Berg339afbf2012-11-14 15:21:17 +01001899 changed |= BSS_CHANGED_P2P_PS;
1900 }
1901
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001902 if (params->p2p_opp_ps > 0) {
1903 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
1904 IEEE80211_P2P_OPPPS_ENABLE_BIT;
1905 changed |= BSS_CHANGED_P2P_PS;
1906 } else if (params->p2p_opp_ps == 0) {
1907 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &=
1908 ~IEEE80211_P2P_OPPPS_ENABLE_BIT;
Johannes Berg339afbf2012-11-14 15:21:17 +01001909 changed |= BSS_CHANGED_P2P_PS;
1910 }
1911
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001912 ieee80211_bss_info_change_notify(sdata, changed);
1913
1914 return 0;
1915}
1916
Jouni Malinen31888482008-10-30 16:59:24 +02001917static int ieee80211_set_txq_params(struct wiphy *wiphy,
Eliad Pellerf70f01c2011-09-25 20:06:53 +03001918 struct net_device *dev,
Jouni Malinen31888482008-10-30 16:59:24 +02001919 struct ieee80211_txq_params *params)
1920{
1921 struct ieee80211_local *local = wiphy_priv(wiphy);
Eliad Pellerf6f3def2011-09-25 20:06:54 +03001922 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Jouni Malinen31888482008-10-30 16:59:24 +02001923 struct ieee80211_tx_queue_params p;
1924
1925 if (!local->ops->conf_tx)
1926 return -EOPNOTSUPP;
1927
Johannes Berg54bcbc62012-03-28 11:04:25 +02001928 if (local->hw.queues < IEEE80211_NUM_ACS)
1929 return -EOPNOTSUPP;
1930
Jouni Malinen31888482008-10-30 16:59:24 +02001931 memset(&p, 0, sizeof(p));
1932 p.aifs = params->aifs;
1933 p.cw_max = params->cwmax;
1934 p.cw_min = params->cwmin;
1935 p.txop = params->txop;
Kalle Valoab133152010-01-12 10:42:31 +02001936
1937 /*
1938 * Setting tx queue params disables u-apsd because it's only
1939 * called in master mode.
1940 */
1941 p.uapsd = false;
1942
Johannes Berga3304b02012-03-28 11:04:24 +02001943 sdata->tx_conf[params->ac] = p;
1944 if (drv_conf_tx(local, sdata, params->ac, &p)) {
Joe Perches0fb9a9e2010-08-20 16:25:38 -07001945 wiphy_debug(local->hw.wiphy,
Johannes Berga3304b02012-03-28 11:04:24 +02001946 "failed to set TX queue parameters for AC %d\n",
1947 params->ac);
Jouni Malinen31888482008-10-30 16:59:24 +02001948 return -EINVAL;
1949 }
1950
Johannes Berg7d257452012-07-06 17:37:43 +02001951 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_QOS);
1952
Jouni Malinen31888482008-10-30 16:59:24 +02001953 return 0;
1954}
1955
Bob Copeland665af4f2009-01-19 11:20:53 -05001956#ifdef CONFIG_PM
Johannes Bergff1b6e62011-05-04 15:37:28 +02001957static int ieee80211_suspend(struct wiphy *wiphy,
1958 struct cfg80211_wowlan *wowlan)
Bob Copeland665af4f2009-01-19 11:20:53 -05001959{
Johannes Bergeecc4802011-05-04 15:37:29 +02001960 return __ieee80211_suspend(wiphy_priv(wiphy), wowlan);
Bob Copeland665af4f2009-01-19 11:20:53 -05001961}
1962
1963static int ieee80211_resume(struct wiphy *wiphy)
1964{
1965 return __ieee80211_resume(wiphy_priv(wiphy));
1966}
1967#else
1968#define ieee80211_suspend NULL
1969#define ieee80211_resume NULL
1970#endif
1971
Johannes Berg2a519312009-02-10 21:25:55 +01001972static int ieee80211_scan(struct wiphy *wiphy,
Johannes Berg2a519312009-02-10 21:25:55 +01001973 struct cfg80211_scan_request *req)
1974{
Johannes Bergfd014282012-06-18 19:17:03 +02001975 struct ieee80211_sub_if_data *sdata;
1976
1977 sdata = IEEE80211_WDEV_TO_SUB_IF(req->wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01001978
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001979 switch (ieee80211_vif_type_p2p(&sdata->vif)) {
1980 case NL80211_IFTYPE_STATION:
1981 case NL80211_IFTYPE_ADHOC:
1982 case NL80211_IFTYPE_MESH_POINT:
1983 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Bergf142c6b2012-06-18 20:07:15 +02001984 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001985 break;
1986 case NL80211_IFTYPE_P2P_GO:
1987 if (sdata->local->ops->hw_scan)
1988 break;
Johannes Berge9d77322011-02-01 15:35:36 +01001989 /*
1990 * FIXME: implement NoA while scanning in software,
1991 * for now fall through to allow scanning only when
1992 * beaconing hasn't been configured yet
1993 */
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001994 case NL80211_IFTYPE_AP:
Antonio Quartulli5c95b942012-10-16 08:39:22 +02001995 /*
1996 * If the scan has been forced (and the driver supports
1997 * forcing), don't care about being beaconing already.
1998 * This will create problems to the attached stations (e.g. all
1999 * the frames sent while scanning on other channel will be
2000 * lost)
2001 */
2002 if (sdata->u.ap.beacon &&
2003 (!(wiphy->features & NL80211_FEATURE_AP_SCAN) ||
2004 !(req->flags & NL80211_SCAN_FLAG_AP)))
Johannes Berg2ca27bc2010-09-16 14:58:23 +02002005 return -EOPNOTSUPP;
2006 break;
2007 default:
2008 return -EOPNOTSUPP;
2009 }
Johannes Berg2a519312009-02-10 21:25:55 +01002010
2011 return ieee80211_request_scan(sdata, req);
2012}
2013
Luciano Coelho79f460c2011-05-11 17:09:36 +03002014static int
2015ieee80211_sched_scan_start(struct wiphy *wiphy,
2016 struct net_device *dev,
2017 struct cfg80211_sched_scan_request *req)
2018{
2019 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2020
2021 if (!sdata->local->ops->sched_scan_start)
2022 return -EOPNOTSUPP;
2023
2024 return ieee80211_request_sched_scan_start(sdata, req);
2025}
2026
2027static int
Luciano Coelho85a99942011-05-12 16:28:29 +03002028ieee80211_sched_scan_stop(struct wiphy *wiphy, struct net_device *dev)
Luciano Coelho79f460c2011-05-11 17:09:36 +03002029{
2030 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2031
2032 if (!sdata->local->ops->sched_scan_stop)
2033 return -EOPNOTSUPP;
2034
Luciano Coelho85a99942011-05-12 16:28:29 +03002035 return ieee80211_request_sched_scan_stop(sdata);
Luciano Coelho79f460c2011-05-11 17:09:36 +03002036}
2037
Jouni Malinen636a5d32009-03-19 13:39:22 +02002038static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev,
2039 struct cfg80211_auth_request *req)
2040{
Johannes Berg77fdaa12009-07-07 03:45:17 +02002041 return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002042}
2043
2044static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev,
2045 struct cfg80211_assoc_request *req)
2046{
Johannes Berg77fdaa12009-07-07 03:45:17 +02002047 return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002048}
2049
2050static int ieee80211_deauth(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002051 struct cfg80211_deauth_request *req)
Jouni Malinen636a5d32009-03-19 13:39:22 +02002052{
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002053 return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002054}
2055
2056static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002057 struct cfg80211_disassoc_request *req)
Jouni Malinen636a5d32009-03-19 13:39:22 +02002058{
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002059 return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002060}
2061
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002062static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
2063 struct cfg80211_ibss_params *params)
2064{
Johannes Berg55de9082012-07-26 17:24:39 +02002065 return ieee80211_ibss_join(IEEE80211_DEV_TO_SUB_IF(dev), params);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002066}
2067
2068static int ieee80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev)
2069{
Johannes Berg55de9082012-07-26 17:24:39 +02002070 return ieee80211_ibss_leave(IEEE80211_DEV_TO_SUB_IF(dev));
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002071}
2072
Rostislav Lisovy239281f2014-11-03 10:33:19 +01002073static int ieee80211_join_ocb(struct wiphy *wiphy, struct net_device *dev,
2074 struct ocb_setup *setup)
2075{
2076 return ieee80211_ocb_join(IEEE80211_DEV_TO_SUB_IF(dev), setup);
2077}
2078
2079static int ieee80211_leave_ocb(struct wiphy *wiphy, struct net_device *dev)
2080{
2081 return ieee80211_ocb_leave(IEEE80211_DEV_TO_SUB_IF(dev));
2082}
2083
Antonio Quartulli391e53e2012-11-02 13:27:49 +01002084static int ieee80211_set_mcast_rate(struct wiphy *wiphy, struct net_device *dev,
2085 int rate[IEEE80211_NUM_BANDS])
2086{
2087 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2088
Cong Ding9887dbf2013-02-06 17:23:45 +01002089 memcpy(sdata->vif.bss_conf.mcast_rate, rate,
2090 sizeof(int) * IEEE80211_NUM_BANDS);
Antonio Quartulli391e53e2012-11-02 13:27:49 +01002091
2092 return 0;
2093}
2094
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002095static int ieee80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
2096{
2097 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg24487982009-04-23 18:52:52 +02002098 int err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002099
Arik Nemtsovf23a4782010-11-08 11:51:06 +02002100 if (changed & WIPHY_PARAM_FRAG_THRESHOLD) {
2101 err = drv_set_frag_threshold(local, wiphy->frag_threshold);
2102
2103 if (err)
2104 return err;
2105 }
2106
Lorenzo Bianconia4bcaf52014-09-04 23:57:41 +02002107 if ((changed & WIPHY_PARAM_COVERAGE_CLASS) ||
2108 (changed & WIPHY_PARAM_DYN_ACK)) {
2109 s16 coverage_class;
2110
2111 coverage_class = changed & WIPHY_PARAM_COVERAGE_CLASS ?
2112 wiphy->coverage_class : -1;
2113 err = drv_set_coverage_class(local, coverage_class);
Lukáš Turek310bc672009-12-21 22:50:48 +01002114
2115 if (err)
2116 return err;
2117 }
2118
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002119 if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
Johannes Berg24487982009-04-23 18:52:52 +02002120 err = drv_set_rts_threshold(local, wiphy->rts_threshold);
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002121
Johannes Berg24487982009-04-23 18:52:52 +02002122 if (err)
2123 return err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002124 }
2125
Johannes Berg8bc83c22012-11-09 18:38:32 +01002126 if (changed & WIPHY_PARAM_RETRY_SHORT) {
2127 if (wiphy->retry_short > IEEE80211_MAX_TX_RETRY)
2128 return -EINVAL;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002129 local->hw.conf.short_frame_max_tx_count = wiphy->retry_short;
Johannes Berg8bc83c22012-11-09 18:38:32 +01002130 }
2131 if (changed & WIPHY_PARAM_RETRY_LONG) {
2132 if (wiphy->retry_long > IEEE80211_MAX_TX_RETRY)
2133 return -EINVAL;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002134 local->hw.conf.long_frame_max_tx_count = wiphy->retry_long;
Johannes Berg8bc83c22012-11-09 18:38:32 +01002135 }
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002136 if (changed &
2137 (WIPHY_PARAM_RETRY_SHORT | WIPHY_PARAM_RETRY_LONG))
2138 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
2139
2140 return 0;
2141}
2142
Johannes Berg7643a2c2009-06-02 13:01:39 +02002143static int ieee80211_set_tx_power(struct wiphy *wiphy,
Johannes Bergc8442112012-10-24 10:17:18 +02002144 struct wireless_dev *wdev,
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002145 enum nl80211_tx_power_setting type, int mbm)
Johannes Berg7643a2c2009-06-02 13:01:39 +02002146{
2147 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002148 struct ieee80211_sub_if_data *sdata;
Lorenzo Bianconidb82d8a2015-01-14 12:55:08 +01002149 enum nl80211_tx_power_setting txp_type = type;
2150 bool update_txp_type = false;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002151
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002152 if (wdev) {
2153 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2154
2155 switch (type) {
2156 case NL80211_TX_POWER_AUTOMATIC:
2157 sdata->user_power_level = IEEE80211_UNSET_POWER_LEVEL;
Lorenzo Bianconidb82d8a2015-01-14 12:55:08 +01002158 txp_type = NL80211_TX_POWER_LIMITED;
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002159 break;
2160 case NL80211_TX_POWER_LIMITED:
2161 case NL80211_TX_POWER_FIXED:
2162 if (mbm < 0 || (mbm % 100))
2163 return -EOPNOTSUPP;
2164 sdata->user_power_level = MBM_TO_DBM(mbm);
2165 break;
2166 }
2167
Lorenzo Bianconidb82d8a2015-01-14 12:55:08 +01002168 if (txp_type != sdata->vif.bss_conf.txpower_type) {
2169 update_txp_type = true;
2170 sdata->vif.bss_conf.txpower_type = txp_type;
2171 }
2172
2173 ieee80211_recalc_txpower(sdata, update_txp_type);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002174
2175 return 0;
2176 }
Johannes Berg55de9082012-07-26 17:24:39 +02002177
Johannes Berg7643a2c2009-06-02 13:01:39 +02002178 switch (type) {
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002179 case NL80211_TX_POWER_AUTOMATIC:
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002180 local->user_power_level = IEEE80211_UNSET_POWER_LEVEL;
Lorenzo Bianconidb82d8a2015-01-14 12:55:08 +01002181 txp_type = NL80211_TX_POWER_LIMITED;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002182 break;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002183 case NL80211_TX_POWER_LIMITED:
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002184 case NL80211_TX_POWER_FIXED:
2185 if (mbm < 0 || (mbm % 100))
2186 return -EOPNOTSUPP;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002187 local->user_power_level = MBM_TO_DBM(mbm);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002188 break;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002189 }
2190
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002191 mutex_lock(&local->iflist_mtx);
Lorenzo Bianconidb82d8a2015-01-14 12:55:08 +01002192 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002193 sdata->user_power_level = local->user_power_level;
Lorenzo Bianconidb82d8a2015-01-14 12:55:08 +01002194 if (txp_type != sdata->vif.bss_conf.txpower_type)
2195 update_txp_type = true;
2196 sdata->vif.bss_conf.txpower_type = txp_type;
2197 }
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002198 list_for_each_entry(sdata, &local->interfaces, list)
Lorenzo Bianconidb82d8a2015-01-14 12:55:08 +01002199 ieee80211_recalc_txpower(sdata, update_txp_type);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002200 mutex_unlock(&local->iflist_mtx);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002201
2202 return 0;
2203}
2204
Johannes Bergc8442112012-10-24 10:17:18 +02002205static int ieee80211_get_tx_power(struct wiphy *wiphy,
2206 struct wireless_dev *wdev,
2207 int *dbm)
Johannes Berg7643a2c2009-06-02 13:01:39 +02002208{
2209 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002210 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002211
Felix Fietkau5b3dc422014-10-26 00:32:53 +02002212 if (local->ops->get_txpower)
2213 return drv_get_txpower(local, sdata, dbm);
2214
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002215 if (!local->use_chanctx)
2216 *dbm = local->hw.conf.power_level;
2217 else
2218 *dbm = sdata->vif.bss_conf.txpower;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002219
Johannes Berg7643a2c2009-06-02 13:01:39 +02002220 return 0;
2221}
2222
Johannes Bergab737a42009-07-01 21:26:58 +02002223static int ieee80211_set_wds_peer(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg388ac772010-10-07 13:11:09 +02002224 const u8 *addr)
Johannes Bergab737a42009-07-01 21:26:58 +02002225{
2226 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2227
2228 memcpy(&sdata->u.wds.remote_addr, addr, ETH_ALEN);
2229
2230 return 0;
2231}
2232
Johannes Berg1f87f7d2009-06-02 13:01:41 +02002233static void ieee80211_rfkill_poll(struct wiphy *wiphy)
2234{
2235 struct ieee80211_local *local = wiphy_priv(wiphy);
2236
2237 drv_rfkill_poll(local);
2238}
2239
Johannes Bergaff89a92009-07-01 21:26:51 +02002240#ifdef CONFIG_NL80211_TESTMODE
David Spinadelfc73f112013-07-31 18:04:15 +03002241static int ieee80211_testmode_cmd(struct wiphy *wiphy,
2242 struct wireless_dev *wdev,
2243 void *data, int len)
Johannes Bergaff89a92009-07-01 21:26:51 +02002244{
2245 struct ieee80211_local *local = wiphy_priv(wiphy);
David Spinadel52981cd2013-07-31 18:06:22 +03002246 struct ieee80211_vif *vif = NULL;
Johannes Bergaff89a92009-07-01 21:26:51 +02002247
2248 if (!local->ops->testmode_cmd)
2249 return -EOPNOTSUPP;
2250
David Spinadel52981cd2013-07-31 18:06:22 +03002251 if (wdev) {
2252 struct ieee80211_sub_if_data *sdata;
2253
2254 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2255 if (sdata->flags & IEEE80211_SDATA_IN_DRIVER)
2256 vif = &sdata->vif;
2257 }
2258
2259 return local->ops->testmode_cmd(&local->hw, vif, data, len);
Johannes Bergaff89a92009-07-01 21:26:51 +02002260}
Wey-Yi Guy71063f02011-05-20 09:05:54 -07002261
2262static int ieee80211_testmode_dump(struct wiphy *wiphy,
2263 struct sk_buff *skb,
2264 struct netlink_callback *cb,
2265 void *data, int len)
2266{
2267 struct ieee80211_local *local = wiphy_priv(wiphy);
2268
2269 if (!local->ops->testmode_dump)
2270 return -EOPNOTSUPP;
2271
2272 return local->ops->testmode_dump(&local->hw, skb, cb, data, len);
2273}
Johannes Bergaff89a92009-07-01 21:26:51 +02002274#endif
2275
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002276int __ieee80211_request_smps_ap(struct ieee80211_sub_if_data *sdata,
2277 enum ieee80211_smps_mode smps_mode)
2278{
2279 struct sta_info *sta;
2280 enum ieee80211_smps_mode old_req;
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002281
2282 if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_AP))
2283 return -EINVAL;
2284
2285 if (sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT)
2286 return 0;
2287
2288 old_req = sdata->u.ap.req_smps;
2289 sdata->u.ap.req_smps = smps_mode;
2290
2291 /* AUTOMATIC doesn't mean much for AP - don't allow it */
2292 if (old_req == smps_mode ||
2293 smps_mode == IEEE80211_SMPS_AUTOMATIC)
2294 return 0;
2295
2296 /* If no associated stations, there's no need to do anything */
2297 if (!atomic_read(&sdata->u.ap.num_mcast_sta)) {
2298 sdata->smps_mode = smps_mode;
2299 ieee80211_queue_work(&sdata->local->hw, &sdata->recalc_smps);
2300 return 0;
2301 }
2302
2303 ht_dbg(sdata,
Michael Braun6a8b4ad2015-03-18 07:17:37 +01002304 "SMPS %d requested in AP mode, sending Action frame to %d stations\n",
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002305 smps_mode, atomic_read(&sdata->u.ap.num_mcast_sta));
2306
2307 mutex_lock(&sdata->local->sta_mtx);
Johannes Berg7d9bb2f2015-02-13 21:31:07 +01002308 list_for_each_entry(sta, &sdata->local->sta_list, list) {
2309 /*
2310 * Only stations associated to our AP and
2311 * associated VLANs
2312 */
2313 if (sta->sdata->bss != &sdata->u.ap)
2314 continue;
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002315
Johannes Berg7d9bb2f2015-02-13 21:31:07 +01002316 /* This station doesn't support MIMO - skip it */
2317 if (sta_info_tx_streams(sta) == 1)
2318 continue;
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002319
Johannes Berg7d9bb2f2015-02-13 21:31:07 +01002320 /*
2321 * Don't wake up a STA just to send the action frame
2322 * unless we are getting more restrictive.
2323 */
2324 if (test_sta_flag(sta, WLAN_STA_PS_STA) &&
2325 !ieee80211_smps_is_restrictive(sta->known_smps_mode,
2326 smps_mode)) {
2327 ht_dbg(sdata, "Won't send SMPS to sleeping STA %pM\n",
2328 sta->sta.addr);
2329 continue;
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002330 }
Johannes Berg7d9bb2f2015-02-13 21:31:07 +01002331
2332 /*
2333 * If the STA is not authorized, wait until it gets
2334 * authorized and the action frame will be sent then.
2335 */
2336 if (!test_sta_flag(sta, WLAN_STA_AUTHORIZED))
2337 continue;
2338
2339 ht_dbg(sdata, "Sending SMPS to %pM\n", sta->sta.addr);
2340 ieee80211_send_smps_action(sdata, smps_mode, sta->sta.addr,
2341 sdata->vif.bss_conf.bssid);
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002342 }
2343 mutex_unlock(&sdata->local->sta_mtx);
2344
2345 sdata->smps_mode = smps_mode;
2346 ieee80211_queue_work(&sdata->local->hw, &sdata->recalc_smps);
2347
2348 return 0;
2349}
2350
2351int __ieee80211_request_smps_mgd(struct ieee80211_sub_if_data *sdata,
2352 enum ieee80211_smps_mode smps_mode)
Johannes Berg0f782312009-12-01 13:37:02 +01002353{
2354 const u8 *ap;
2355 enum ieee80211_smps_mode old_req;
2356 int err;
2357
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002358 lockdep_assert_held(&sdata->wdev.mtx);
Johannes Berg243e6df2011-04-19 20:44:04 +02002359
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002360 if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_STATION))
2361 return -EINVAL;
2362
Johannes Berg0f782312009-12-01 13:37:02 +01002363 old_req = sdata->u.mgd.req_smps;
2364 sdata->u.mgd.req_smps = smps_mode;
2365
2366 if (old_req == smps_mode &&
2367 smps_mode != IEEE80211_SMPS_AUTOMATIC)
2368 return 0;
2369
2370 /*
2371 * If not associated, or current association is not an HT
Johannes Berg04ecd252012-09-11 14:34:12 +02002372 * association, there's no need to do anything, just store
2373 * the new value until we associate.
Johannes Berg0f782312009-12-01 13:37:02 +01002374 */
2375 if (!sdata->u.mgd.associated ||
Johannes Berg4bf88532012-11-09 11:39:59 +01002376 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT)
Johannes Berg0f782312009-12-01 13:37:02 +01002377 return 0;
Johannes Berg0f782312009-12-01 13:37:02 +01002378
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002379 ap = sdata->u.mgd.associated->bssid;
Johannes Berg0f782312009-12-01 13:37:02 +01002380
2381 if (smps_mode == IEEE80211_SMPS_AUTOMATIC) {
2382 if (sdata->u.mgd.powersave)
2383 smps_mode = IEEE80211_SMPS_DYNAMIC;
2384 else
2385 smps_mode = IEEE80211_SMPS_OFF;
2386 }
2387
2388 /* send SM PS frame to AP */
2389 err = ieee80211_send_smps_action(sdata, smps_mode,
2390 ap, ap);
2391 if (err)
2392 sdata->u.mgd.req_smps = old_req;
2393
2394 return err;
2395}
2396
Johannes Bergbc92afd2009-07-01 21:26:57 +02002397static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev,
2398 bool enabled, int timeout)
2399{
2400 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2401 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Bergbc92afd2009-07-01 21:26:57 +02002402
Bob Copeland2d3db212013-10-29 18:11:59 -04002403 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Benoit Papillaulte5de30c2010-01-15 12:21:37 +01002404 return -EOPNOTSUPP;
2405
Johannes Bergbc92afd2009-07-01 21:26:57 +02002406 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
2407 return -EOPNOTSUPP;
2408
2409 if (enabled == sdata->u.mgd.powersave &&
Juuso Oikarinenff616382010-06-09 09:51:52 +03002410 timeout == local->dynamic_ps_forced_timeout)
Johannes Bergbc92afd2009-07-01 21:26:57 +02002411 return 0;
2412
2413 sdata->u.mgd.powersave = enabled;
Juuso Oikarinenff616382010-06-09 09:51:52 +03002414 local->dynamic_ps_forced_timeout = timeout;
Johannes Bergbc92afd2009-07-01 21:26:57 +02002415
Johannes Berg0f782312009-12-01 13:37:02 +01002416 /* no change, but if automatic follow powersave */
Johannes Berged405be2013-06-03 13:51:59 +02002417 sdata_lock(sdata);
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002418 __ieee80211_request_smps_mgd(sdata, sdata->u.mgd.req_smps);
Johannes Berged405be2013-06-03 13:51:59 +02002419 sdata_unlock(sdata);
Johannes Berg0f782312009-12-01 13:37:02 +01002420
Johannes Bergbc92afd2009-07-01 21:26:57 +02002421 if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
2422 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2423
2424 ieee80211_recalc_ps(local, -1);
Eliad Pellerab095872012-07-27 12:33:22 +03002425 ieee80211_recalc_ps_vif(sdata);
Johannes Bergbc92afd2009-07-01 21:26:57 +02002426
2427 return 0;
2428}
2429
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002430static int ieee80211_set_cqm_rssi_config(struct wiphy *wiphy,
2431 struct net_device *dev,
2432 s32 rssi_thold, u32 rssi_hyst)
2433{
2434 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002435 struct ieee80211_vif *vif = &sdata->vif;
2436 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
2437
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002438 if (rssi_thold == bss_conf->cqm_rssi_thold &&
2439 rssi_hyst == bss_conf->cqm_rssi_hyst)
2440 return 0;
2441
2442 bss_conf->cqm_rssi_thold = rssi_thold;
2443 bss_conf->cqm_rssi_hyst = rssi_hyst;
2444
2445 /* tell the driver upon association, unless already associated */
Johannes Bergea086352012-01-19 09:29:58 +01002446 if (sdata->u.mgd.associated &&
2447 sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002448 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_CQM);
2449
2450 return 0;
2451}
2452
Johannes Berg99303802009-07-01 21:26:59 +02002453static int ieee80211_set_bitrate_mask(struct wiphy *wiphy,
2454 struct net_device *dev,
2455 const u8 *addr,
2456 const struct cfg80211_bitrate_mask *mask)
2457{
2458 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2459 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +05302460 int i, ret;
Johannes Berg99303802009-07-01 21:26:59 +02002461
Eliad Peller554a43d2012-06-12 12:41:15 +03002462 if (!ieee80211_sdata_running(sdata))
2463 return -ENETDOWN;
2464
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +05302465 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL) {
2466 ret = drv_set_bitrate_mask(local, sdata, mask);
2467 if (ret)
2468 return ret;
2469 }
Johannes Berg99303802009-07-01 21:26:59 +02002470
Simon Wunderlich19468412012-01-28 17:25:33 +01002471 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
Felix Fietkau2ffbe6d2013-04-16 13:38:42 +02002472 struct ieee80211_supported_band *sband = wiphy->bands[i];
2473 int j;
2474
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002475 sdata->rc_rateidx_mask[i] = mask->control[i].legacy;
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01002476 memcpy(sdata->rc_rateidx_mcs_mask[i], mask->control[i].ht_mcs,
2477 sizeof(mask->control[i].ht_mcs));
Felix Fietkau2ffbe6d2013-04-16 13:38:42 +02002478
2479 sdata->rc_has_mcs_mask[i] = false;
2480 if (!sband)
2481 continue;
2482
2483 for (j = 0; j < IEEE80211_HT_MCS_MASK_LEN; j++)
2484 if (~sdata->rc_rateidx_mcs_mask[i][j]) {
2485 sdata->rc_has_mcs_mask[i] = true;
2486 break;
2487 }
Simon Wunderlich19468412012-01-28 17:25:33 +01002488 }
Johannes Berg99303802009-07-01 21:26:59 +02002489
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002490 return 0;
Johannes Berg99303802009-07-01 21:26:59 +02002491}
2492
Eliad Pellereaa336b2014-09-03 15:25:06 +03002493static bool ieee80211_coalesce_started_roc(struct ieee80211_local *local,
2494 struct ieee80211_roc_work *new_roc,
2495 struct ieee80211_roc_work *cur_roc)
2496{
2497 unsigned long j = jiffies;
2498 unsigned long cur_roc_end = cur_roc->hw_start_time +
2499 msecs_to_jiffies(cur_roc->duration);
2500 struct ieee80211_roc_work *next_roc;
2501 int new_dur;
2502
2503 if (WARN_ON(!cur_roc->started || !cur_roc->hw_begun))
2504 return false;
2505
2506 if (time_after(j + IEEE80211_ROC_MIN_LEFT, cur_roc_end))
2507 return false;
2508
2509 ieee80211_handle_roc_started(new_roc);
2510
2511 new_dur = new_roc->duration - jiffies_to_msecs(cur_roc_end - j);
2512
2513 /* cur_roc is long enough - add new_roc to the dependents list. */
2514 if (new_dur <= 0) {
2515 list_add_tail(&new_roc->list, &cur_roc->dependents);
2516 return true;
2517 }
2518
2519 new_roc->duration = new_dur;
2520
2521 /*
2522 * if cur_roc was already coalesced before, we might
2523 * want to extend the next roc instead of adding
2524 * a new one.
2525 */
2526 next_roc = list_entry(cur_roc->list.next,
2527 struct ieee80211_roc_work, list);
2528 if (&next_roc->list != &local->roc_list &&
2529 next_roc->chan == new_roc->chan &&
2530 next_roc->sdata == new_roc->sdata &&
2531 !WARN_ON(next_roc->started)) {
2532 list_add_tail(&new_roc->list, &next_roc->dependents);
2533 next_roc->duration = max(next_roc->duration,
2534 new_roc->duration);
2535 next_roc->type = max(next_roc->type, new_roc->type);
2536 return true;
2537 }
2538
2539 /* add right after cur_roc */
2540 list_add(&new_roc->list, &cur_roc->list);
2541
2542 return true;
2543}
2544
Johannes Berg2eb278e2012-06-05 14:28:42 +02002545static int ieee80211_start_roc_work(struct ieee80211_local *local,
2546 struct ieee80211_sub_if_data *sdata,
2547 struct ieee80211_channel *channel,
Johannes Berg2eb278e2012-06-05 14:28:42 +02002548 unsigned int duration, u64 *cookie,
Ilan Peerd339d5c2013-02-12 09:34:13 +02002549 struct sk_buff *txskb,
2550 enum ieee80211_roc_type type)
Johannes Berg21f83582010-12-18 17:20:47 +01002551{
Johannes Berg2eb278e2012-06-05 14:28:42 +02002552 struct ieee80211_roc_work *roc, *tmp;
2553 bool queued = false;
Johannes Berg21f83582010-12-18 17:20:47 +01002554 int ret;
Johannes Berg21f83582010-12-18 17:20:47 +01002555
2556 lockdep_assert_held(&local->mtx);
2557
Johannes Bergfe57d9f2012-07-26 14:55:08 +02002558 if (local->use_chanctx && !local->ops->remain_on_channel)
2559 return -EOPNOTSUPP;
2560
Johannes Berg2eb278e2012-06-05 14:28:42 +02002561 roc = kzalloc(sizeof(*roc), GFP_KERNEL);
2562 if (!roc)
2563 return -ENOMEM;
Johannes Berg21f83582010-12-18 17:20:47 +01002564
Ilan Peer2fae0622013-12-19 13:25:29 +02002565 /*
2566 * If the duration is zero, then the driver
2567 * wouldn't actually do anything. Set it to
2568 * 10 for now.
2569 *
2570 * TODO: cancel the off-channel operation
2571 * when we get the SKB's TX status and
2572 * the wait time was zero before.
2573 */
2574 if (!duration)
2575 duration = 10;
2576
Johannes Berg2eb278e2012-06-05 14:28:42 +02002577 roc->chan = channel;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002578 roc->duration = duration;
2579 roc->req_duration = duration;
2580 roc->frame = txskb;
Ilan Peerd339d5c2013-02-12 09:34:13 +02002581 roc->type = type;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002582 roc->mgmt_tx_cookie = (unsigned long)txskb;
2583 roc->sdata = sdata;
2584 INIT_DELAYED_WORK(&roc->work, ieee80211_sw_roc_work);
2585 INIT_LIST_HEAD(&roc->dependents);
2586
Eliad Peller2f617432014-01-12 11:06:37 +02002587 /*
2588 * cookie is either the roc cookie (for normal roc)
2589 * or the SKB (for mgmt TX)
2590 */
2591 if (!txskb) {
2592 /* local->mtx protects this */
2593 local->roc_cookie_counter++;
2594 roc->cookie = local->roc_cookie_counter;
2595 /* wow, you wrapped 64 bits ... more likely a bug */
2596 if (WARN_ON(roc->cookie == 0)) {
2597 roc->cookie = 1;
2598 local->roc_cookie_counter++;
2599 }
2600 *cookie = roc->cookie;
2601 } else {
2602 *cookie = (unsigned long)txskb;
2603 }
2604
Johannes Berg2eb278e2012-06-05 14:28:42 +02002605 /* if there's one pending or we're scanning, queue this one */
Simon Wunderlich164eb022013-02-08 18:16:20 +01002606 if (!list_empty(&local->roc_list) ||
Eliad Peller5cbc95a2015-01-07 17:50:09 +02002607 local->scanning || ieee80211_is_radar_required(local))
Johannes Berg2eb278e2012-06-05 14:28:42 +02002608 goto out_check_combine;
2609
2610 /* if not HW assist, just queue & schedule work */
2611 if (!local->ops->remain_on_channel) {
2612 ieee80211_queue_delayed_work(&local->hw, &roc->work, 0);
2613 goto out_queue;
Johannes Berg21f83582010-12-18 17:20:47 +01002614 }
2615
Johannes Berg2eb278e2012-06-05 14:28:42 +02002616 /* otherwise actually kick it off here (for error handling) */
2617
Ilan Peerd339d5c2013-02-12 09:34:13 +02002618 ret = drv_remain_on_channel(local, sdata, channel, duration, type);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002619 if (ret) {
2620 kfree(roc);
2621 return ret;
2622 }
2623
2624 roc->started = true;
2625 goto out_queue;
2626
2627 out_check_combine:
2628 list_for_each_entry(tmp, &local->roc_list, list) {
Johannes Berg42d97a52012-11-08 18:31:02 +01002629 if (tmp->chan != channel || tmp->sdata != sdata)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002630 continue;
2631
2632 /*
2633 * Extend this ROC if possible:
2634 *
2635 * If it hasn't started yet, just increase the duration
2636 * and add the new one to the list of dependents.
Ilan Peerd339d5c2013-02-12 09:34:13 +02002637 * If the type of the new ROC has higher priority, modify the
2638 * type of the previous one to match that of the new one.
Johannes Berg2eb278e2012-06-05 14:28:42 +02002639 */
2640 if (!tmp->started) {
2641 list_add_tail(&roc->list, &tmp->dependents);
2642 tmp->duration = max(tmp->duration, roc->duration);
Ilan Peerd339d5c2013-02-12 09:34:13 +02002643 tmp->type = max(tmp->type, roc->type);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002644 queued = true;
2645 break;
2646 }
2647
2648 /* If it has already started, it's more difficult ... */
2649 if (local->ops->remain_on_channel) {
Johannes Berg2eb278e2012-06-05 14:28:42 +02002650 /*
2651 * In the offloaded ROC case, if it hasn't begun, add
2652 * this new one to the dependent list to be handled
Ilan Peerd339d5c2013-02-12 09:34:13 +02002653 * when the master one begins. If it has begun,
Johannes Berg2eb278e2012-06-05 14:28:42 +02002654 * check that there's still a minimum time left and
2655 * if so, start this one, transmitting the frame, but
Ilan Peerd339d5c2013-02-12 09:34:13 +02002656 * add it to the list directly after this one with
Johannes Berg2eb278e2012-06-05 14:28:42 +02002657 * a reduced time so we'll ask the driver to execute
2658 * it right after finishing the previous one, in the
2659 * hope that it'll also be executed right afterwards,
2660 * effectively extending the old one.
2661 * If there's no minimum time left, just add it to the
2662 * normal list.
Ilan Peerd339d5c2013-02-12 09:34:13 +02002663 * TODO: the ROC type is ignored here, assuming that it
2664 * is better to immediately use the current ROC.
Johannes Berg2eb278e2012-06-05 14:28:42 +02002665 */
2666 if (!tmp->hw_begun) {
2667 list_add_tail(&roc->list, &tmp->dependents);
2668 queued = true;
2669 break;
2670 }
2671
Eliad Pellereaa336b2014-09-03 15:25:06 +03002672 if (ieee80211_coalesce_started_roc(local, roc, tmp))
Johannes Berg2eb278e2012-06-05 14:28:42 +02002673 queued = true;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002674 } else if (del_timer_sync(&tmp->work.timer)) {
2675 unsigned long new_end;
2676
2677 /*
2678 * In the software ROC case, cancel the timer, if
2679 * that fails then the finish work is already
2680 * queued/pending and thus we queue the new ROC
2681 * normally, if that succeeds then we can extend
2682 * the timer duration and TX the frame (if any.)
2683 */
2684
2685 list_add_tail(&roc->list, &tmp->dependents);
2686 queued = true;
2687
2688 new_end = jiffies + msecs_to_jiffies(roc->duration);
2689
2690 /* ok, it was started & we canceled timer */
2691 if (time_after(new_end, tmp->work.timer.expires))
2692 mod_timer(&tmp->work.timer, new_end);
2693 else
2694 add_timer(&tmp->work.timer);
2695
2696 ieee80211_handle_roc_started(roc);
2697 }
2698 break;
2699 }
2700
2701 out_queue:
2702 if (!queued)
2703 list_add_tail(&roc->list, &local->roc_list);
2704
Johannes Berg2eb278e2012-06-05 14:28:42 +02002705 return 0;
Johannes Berg21f83582010-12-18 17:20:47 +01002706}
2707
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002708static int ieee80211_remain_on_channel(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02002709 struct wireless_dev *wdev,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002710 struct ieee80211_channel *chan,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002711 unsigned int duration,
2712 u64 *cookie)
2713{
Johannes Berg71bbc992012-06-15 15:30:18 +02002714 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg21f83582010-12-18 17:20:47 +01002715 struct ieee80211_local *local = sdata->local;
Johannes Berg21f83582010-12-18 17:20:47 +01002716 int ret;
2717
Johannes Berg2eb278e2012-06-05 14:28:42 +02002718 mutex_lock(&local->mtx);
Johannes Berg42d97a52012-11-08 18:31:02 +01002719 ret = ieee80211_start_roc_work(local, sdata, chan,
Ilan Peerd339d5c2013-02-12 09:34:13 +02002720 duration, cookie, NULL,
2721 IEEE80211_ROC_TYPE_NORMAL);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002722 mutex_unlock(&local->mtx);
Johannes Berg21f83582010-12-18 17:20:47 +01002723
Johannes Berg2eb278e2012-06-05 14:28:42 +02002724 return ret;
2725}
2726
2727static int ieee80211_cancel_roc(struct ieee80211_local *local,
2728 u64 cookie, bool mgmt_tx)
2729{
2730 struct ieee80211_roc_work *roc, *tmp, *found = NULL;
2731 int ret;
2732
2733 mutex_lock(&local->mtx);
2734 list_for_each_entry_safe(roc, tmp, &local->roc_list, list) {
Johannes Berge979e332012-06-11 17:09:41 +02002735 struct ieee80211_roc_work *dep, *tmp2;
2736
2737 list_for_each_entry_safe(dep, tmp2, &roc->dependents, list) {
Johannes Berg50febf62012-10-26 16:13:06 +02002738 if (!mgmt_tx && dep->cookie != cookie)
Johannes Berge979e332012-06-11 17:09:41 +02002739 continue;
2740 else if (mgmt_tx && dep->mgmt_tx_cookie != cookie)
2741 continue;
2742 /* found dependent item -- just remove it */
2743 list_del(&dep->list);
2744 mutex_unlock(&local->mtx);
2745
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002746 ieee80211_roc_notify_destroy(dep, true);
Johannes Berge979e332012-06-11 17:09:41 +02002747 return 0;
2748 }
2749
Johannes Berg50febf62012-10-26 16:13:06 +02002750 if (!mgmt_tx && roc->cookie != cookie)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002751 continue;
2752 else if (mgmt_tx && roc->mgmt_tx_cookie != cookie)
2753 continue;
2754
2755 found = roc;
2756 break;
2757 }
2758
2759 if (!found) {
2760 mutex_unlock(&local->mtx);
Johannes Berg21f83582010-12-18 17:20:47 +01002761 return -ENOENT;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002762 }
Johannes Berg21f83582010-12-18 17:20:47 +01002763
Johannes Berge979e332012-06-11 17:09:41 +02002764 /*
2765 * We found the item to cancel, so do that. Note that it
2766 * may have dependents, which we also cancel (and send
2767 * the expired signal for.) Not doing so would be quite
2768 * tricky here, but we may need to fix it later.
2769 */
2770
Johannes Berg2eb278e2012-06-05 14:28:42 +02002771 if (local->ops->remain_on_channel) {
2772 if (found->started) {
2773 ret = drv_cancel_remain_on_channel(local);
2774 if (WARN_ON_ONCE(ret)) {
2775 mutex_unlock(&local->mtx);
2776 return ret;
2777 }
2778 }
Johannes Berg21f83582010-12-18 17:20:47 +01002779
Johannes Berg2eb278e2012-06-05 14:28:42 +02002780 list_del(&found->list);
2781
Johannes Berg0f6b3f52012-06-20 20:11:33 +02002782 if (found->started)
2783 ieee80211_start_next_roc(local);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002784 mutex_unlock(&local->mtx);
2785
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002786 ieee80211_roc_notify_destroy(found, true);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002787 } else {
2788 /* work may be pending so use it all the time */
2789 found->abort = true;
2790 ieee80211_queue_delayed_work(&local->hw, &found->work, 0);
2791
2792 mutex_unlock(&local->mtx);
2793
2794 /* work will clean up etc */
2795 flush_delayed_work(&found->work);
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002796 WARN_ON(!found->to_be_freed);
2797 kfree(found);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002798 }
Johannes Berg21f83582010-12-18 17:20:47 +01002799
Johannes Berg21f83582010-12-18 17:20:47 +01002800 return 0;
2801}
2802
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002803static int ieee80211_cancel_remain_on_channel(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02002804 struct wireless_dev *wdev,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002805 u64 cookie)
2806{
Johannes Berg71bbc992012-06-15 15:30:18 +02002807 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg21f83582010-12-18 17:20:47 +01002808 struct ieee80211_local *local = sdata->local;
2809
Johannes Berg2eb278e2012-06-05 14:28:42 +02002810 return ieee80211_cancel_roc(local, cookie, false);
Johannes Bergf30221e2010-11-25 10:02:30 +01002811}
2812
Simon Wunderlich164eb022013-02-08 18:16:20 +01002813static int ieee80211_start_radar_detection(struct wiphy *wiphy,
2814 struct net_device *dev,
Janusz Dziedzic31559f32014-02-21 19:46:13 +01002815 struct cfg80211_chan_def *chandef,
2816 u32 cac_time_ms)
Simon Wunderlich164eb022013-02-08 18:16:20 +01002817{
2818 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2819 struct ieee80211_local *local = sdata->local;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002820 int err;
2821
Johannes Berg34a37402013-12-18 09:43:33 +01002822 mutex_lock(&local->mtx);
2823 if (!list_empty(&local->roc_list) || local->scanning) {
2824 err = -EBUSY;
2825 goto out_unlock;
2826 }
Simon Wunderlich164eb022013-02-08 18:16:20 +01002827
2828 /* whatever, but channel contexts should not complain about that one */
2829 sdata->smps_mode = IEEE80211_SMPS_OFF;
2830 sdata->needed_rx_chains = local->rx_chains;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002831
Simon Wunderlich164eb022013-02-08 18:16:20 +01002832 err = ieee80211_vif_use_channel(sdata, chandef,
2833 IEEE80211_CHANCTX_SHARED);
Simon Wunderlich164eb022013-02-08 18:16:20 +01002834 if (err)
Johannes Berg34a37402013-12-18 09:43:33 +01002835 goto out_unlock;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002836
Simon Wunderlich164eb022013-02-08 18:16:20 +01002837 ieee80211_queue_delayed_work(&sdata->local->hw,
Janusz Dziedzic31559f32014-02-21 19:46:13 +01002838 &sdata->dfs_cac_timer_work,
2839 msecs_to_jiffies(cac_time_ms));
Simon Wunderlich164eb022013-02-08 18:16:20 +01002840
Johannes Berg34a37402013-12-18 09:43:33 +01002841 out_unlock:
2842 mutex_unlock(&local->mtx);
2843 return err;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002844}
2845
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002846static struct cfg80211_beacon_data *
2847cfg80211_beacon_dup(struct cfg80211_beacon_data *beacon)
2848{
2849 struct cfg80211_beacon_data *new_beacon;
2850 u8 *pos;
2851 int len;
2852
2853 len = beacon->head_len + beacon->tail_len + beacon->beacon_ies_len +
2854 beacon->proberesp_ies_len + beacon->assocresp_ies_len +
2855 beacon->probe_resp_len;
2856
2857 new_beacon = kzalloc(sizeof(*new_beacon) + len, GFP_KERNEL);
2858 if (!new_beacon)
2859 return NULL;
2860
2861 pos = (u8 *)(new_beacon + 1);
2862 if (beacon->head_len) {
2863 new_beacon->head_len = beacon->head_len;
2864 new_beacon->head = pos;
2865 memcpy(pos, beacon->head, beacon->head_len);
2866 pos += beacon->head_len;
2867 }
2868 if (beacon->tail_len) {
2869 new_beacon->tail_len = beacon->tail_len;
2870 new_beacon->tail = pos;
2871 memcpy(pos, beacon->tail, beacon->tail_len);
2872 pos += beacon->tail_len;
2873 }
2874 if (beacon->beacon_ies_len) {
2875 new_beacon->beacon_ies_len = beacon->beacon_ies_len;
2876 new_beacon->beacon_ies = pos;
2877 memcpy(pos, beacon->beacon_ies, beacon->beacon_ies_len);
2878 pos += beacon->beacon_ies_len;
2879 }
2880 if (beacon->proberesp_ies_len) {
2881 new_beacon->proberesp_ies_len = beacon->proberesp_ies_len;
2882 new_beacon->proberesp_ies = pos;
2883 memcpy(pos, beacon->proberesp_ies, beacon->proberesp_ies_len);
2884 pos += beacon->proberesp_ies_len;
2885 }
2886 if (beacon->assocresp_ies_len) {
2887 new_beacon->assocresp_ies_len = beacon->assocresp_ies_len;
2888 new_beacon->assocresp_ies = pos;
2889 memcpy(pos, beacon->assocresp_ies, beacon->assocresp_ies_len);
2890 pos += beacon->assocresp_ies_len;
2891 }
2892 if (beacon->probe_resp_len) {
2893 new_beacon->probe_resp_len = beacon->probe_resp_len;
2894 beacon->probe_resp = pos;
2895 memcpy(pos, beacon->probe_resp, beacon->probe_resp_len);
2896 pos += beacon->probe_resp_len;
2897 }
2898
2899 return new_beacon;
2900}
2901
Luciano Coelho66e01cf2014-01-13 19:43:00 +02002902void ieee80211_csa_finish(struct ieee80211_vif *vif)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002903{
Luciano Coelho66e01cf2014-01-13 19:43:00 +02002904 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2905
2906 ieee80211_queue_work(&sdata->local->hw,
2907 &sdata->csa_finalize_work);
2908}
2909EXPORT_SYMBOL(ieee80211_csa_finish);
2910
Michal Kazior66199502014-04-09 15:11:00 +02002911static int ieee80211_set_after_csa_beacon(struct ieee80211_sub_if_data *sdata,
2912 u32 *changed)
2913{
2914 int err;
2915
2916 switch (sdata->vif.type) {
2917 case NL80211_IFTYPE_AP:
Michal Kazioraf296bd2014-06-05 14:21:36 +02002918 err = ieee80211_assign_beacon(sdata, sdata->u.ap.next_beacon,
2919 NULL);
Michal Kazior66199502014-04-09 15:11:00 +02002920 kfree(sdata->u.ap.next_beacon);
2921 sdata->u.ap.next_beacon = NULL;
2922
2923 if (err < 0)
2924 return err;
2925 *changed |= err;
2926 break;
2927 case NL80211_IFTYPE_ADHOC:
2928 err = ieee80211_ibss_finish_csa(sdata);
2929 if (err < 0)
2930 return err;
2931 *changed |= err;
2932 break;
2933#ifdef CONFIG_MAC80211_MESH
2934 case NL80211_IFTYPE_MESH_POINT:
2935 err = ieee80211_mesh_finish_csa(sdata);
2936 if (err < 0)
2937 return err;
2938 *changed |= err;
2939 break;
2940#endif
2941 default:
2942 WARN_ON(1);
2943 return -EINVAL;
2944 }
2945
2946 return 0;
2947}
2948
Michal Kaziorcf8767d2014-05-08 09:10:02 +02002949static int __ieee80211_csa_finalize(struct ieee80211_sub_if_data *sdata)
Luciano Coelho66e01cf2014-01-13 19:43:00 +02002950{
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002951 struct ieee80211_local *local = sdata->local;
Michal Kazior66199502014-04-09 15:11:00 +02002952 u32 changed = 0;
2953 int err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002954
Michal Kaziordbd72852014-01-29 07:56:21 +01002955 sdata_assert_lock(sdata);
Michal Kazior59af6922014-04-09 15:10:59 +02002956 lockdep_assert_held(&local->mtx);
Michal Kazior03078de2014-06-25 12:35:08 +02002957 lockdep_assert_held(&local->chanctx_mtx);
Michal Kaziordbd72852014-01-29 07:56:21 +01002958
Michal Kazior03078de2014-06-25 12:35:08 +02002959 /*
2960 * using reservation isn't immediate as it may be deferred until later
2961 * with multi-vif. once reservation is complete it will re-schedule the
2962 * work with no reserved_chanctx so verify chandef to check if it
2963 * completed successfully
2964 */
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002965
Michal Kazior03078de2014-06-25 12:35:08 +02002966 if (sdata->reserved_chanctx) {
2967 /*
2968 * with multi-vif csa driver may call ieee80211_csa_finish()
2969 * many times while waiting for other interfaces to use their
2970 * reservations
2971 */
2972 if (sdata->reserved_ready)
2973 return 0;
2974
Fabian Frederick408b18a2014-10-09 20:36:22 +02002975 return ieee80211_vif_use_reserved_context(sdata);
Arik Nemtsov7578d572013-09-01 17:15:51 +03002976 }
2977
Michal Kazior03078de2014-06-25 12:35:08 +02002978 if (!cfg80211_chandef_identical(&sdata->vif.bss_conf.chandef,
2979 &sdata->csa_chandef))
2980 return -EINVAL;
2981
Simon Wunderliche487eae2013-11-21 18:19:51 +01002982 sdata->vif.csa_active = false;
Michal Kazior97518af2014-01-29 07:56:18 +01002983
Michal Kazior66199502014-04-09 15:11:00 +02002984 err = ieee80211_set_after_csa_beacon(sdata, &changed);
2985 if (err)
Michal Kaziorcf8767d2014-05-08 09:10:02 +02002986 return err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002987
Michal Kaziorfaf046e2014-01-29 07:56:17 +01002988 ieee80211_bss_info_change_notify(sdata, changed);
Michal Kazior59af6922014-04-09 15:10:59 +02002989
Luciano Coelhoa46992b2014-06-13 16:30:07 +03002990 if (sdata->csa_block_tx) {
2991 ieee80211_wake_vif_queues(local, sdata,
2992 IEEE80211_QUEUE_STOP_REASON_CSA);
2993 sdata->csa_block_tx = false;
2994 }
Michal Kaziorcf8767d2014-05-08 09:10:02 +02002995
Luciano Coelhof1d65582014-10-08 09:48:38 +03002996 err = drv_post_channel_switch(sdata);
2997 if (err)
2998 return err;
2999
3000 cfg80211_ch_switch_notify(sdata->dev, &sdata->csa_chandef);
3001
Michal Kaziorcf8767d2014-05-08 09:10:02 +02003002 return 0;
3003}
3004
3005static void ieee80211_csa_finalize(struct ieee80211_sub_if_data *sdata)
3006{
3007 if (__ieee80211_csa_finalize(sdata)) {
3008 sdata_info(sdata, "failed to finalize CSA, disconnecting\n");
3009 cfg80211_stop_iface(sdata->local->hw.wiphy, &sdata->wdev,
3010 GFP_KERNEL);
3011 }
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003012}
3013
3014void ieee80211_csa_finalize_work(struct work_struct *work)
3015{
3016 struct ieee80211_sub_if_data *sdata =
3017 container_of(work, struct ieee80211_sub_if_data,
3018 csa_finalize_work);
Michal Kazior59af6922014-04-09 15:10:59 +02003019 struct ieee80211_local *local = sdata->local;
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003020
3021 sdata_lock(sdata);
Michal Kazior59af6922014-04-09 15:10:59 +02003022 mutex_lock(&local->mtx);
Michal Kazior03078de2014-06-25 12:35:08 +02003023 mutex_lock(&local->chanctx_mtx);
Michal Kazior59af6922014-04-09 15:10:59 +02003024
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003025 /* AP might have been stopped while waiting for the lock. */
3026 if (!sdata->vif.csa_active)
3027 goto unlock;
3028
3029 if (!ieee80211_sdata_running(sdata))
3030 goto unlock;
3031
3032 ieee80211_csa_finalize(sdata);
Simon Wunderliche487eae2013-11-21 18:19:51 +01003033
3034unlock:
Michal Kazior03078de2014-06-25 12:35:08 +02003035 mutex_unlock(&local->chanctx_mtx);
Michal Kazior59af6922014-04-09 15:10:59 +02003036 mutex_unlock(&local->mtx);
Simon Wunderliche487eae2013-11-21 18:19:51 +01003037 sdata_unlock(sdata);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003038}
3039
Michal Kazior37fa2bd2014-02-28 15:59:06 +01003040static int ieee80211_set_csa_beacon(struct ieee80211_sub_if_data *sdata,
3041 struct cfg80211_csa_settings *params,
3042 u32 *changed)
3043{
Michal Kazioraf296bd2014-06-05 14:21:36 +02003044 struct ieee80211_csa_settings csa = {};
Michal Kazior37fa2bd2014-02-28 15:59:06 +01003045 int err;
3046
3047 switch (sdata->vif.type) {
3048 case NL80211_IFTYPE_AP:
3049 sdata->u.ap.next_beacon =
3050 cfg80211_beacon_dup(&params->beacon_after);
3051 if (!sdata->u.ap.next_beacon)
3052 return -ENOMEM;
3053
3054 /*
3055 * With a count of 0, we don't have to wait for any
3056 * TBTT before switching, so complete the CSA
3057 * immediately. In theory, with a count == 1 we
3058 * should delay the switch until just before the next
3059 * TBTT, but that would complicate things so we switch
3060 * immediately too. If we would delay the switch
3061 * until the next TBTT, we would have to set the probe
3062 * response here.
3063 *
3064 * TODO: A channel switch with count <= 1 without
3065 * sending a CSA action frame is kind of useless,
3066 * because the clients won't know we're changing
3067 * channels. The action frame must be implemented
3068 * either here or in the userspace.
3069 */
3070 if (params->count <= 1)
3071 break;
3072
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03003073 if ((params->n_counter_offsets_beacon >
3074 IEEE80211_MAX_CSA_COUNTERS_NUM) ||
3075 (params->n_counter_offsets_presp >
3076 IEEE80211_MAX_CSA_COUNTERS_NUM))
3077 return -EINVAL;
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03003078
Michal Kazioraf296bd2014-06-05 14:21:36 +02003079 csa.counter_offsets_beacon = params->counter_offsets_beacon;
3080 csa.counter_offsets_presp = params->counter_offsets_presp;
3081 csa.n_counter_offsets_beacon = params->n_counter_offsets_beacon;
3082 csa.n_counter_offsets_presp = params->n_counter_offsets_presp;
3083 csa.count = params->count;
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03003084
Michal Kazioraf296bd2014-06-05 14:21:36 +02003085 err = ieee80211_assign_beacon(sdata, &params->beacon_csa, &csa);
Michal Kazior37fa2bd2014-02-28 15:59:06 +01003086 if (err < 0) {
3087 kfree(sdata->u.ap.next_beacon);
3088 return err;
3089 }
3090 *changed |= err;
3091
3092 break;
3093 case NL80211_IFTYPE_ADHOC:
3094 if (!sdata->vif.bss_conf.ibss_joined)
3095 return -EINVAL;
3096
3097 if (params->chandef.width != sdata->u.ibss.chandef.width)
3098 return -EINVAL;
3099
3100 switch (params->chandef.width) {
3101 case NL80211_CHAN_WIDTH_40:
3102 if (cfg80211_get_chandef_type(&params->chandef) !=
3103 cfg80211_get_chandef_type(&sdata->u.ibss.chandef))
3104 return -EINVAL;
3105 case NL80211_CHAN_WIDTH_5:
3106 case NL80211_CHAN_WIDTH_10:
3107 case NL80211_CHAN_WIDTH_20_NOHT:
3108 case NL80211_CHAN_WIDTH_20:
3109 break;
3110 default:
3111 return -EINVAL;
3112 }
3113
3114 /* changes into another band are not supported */
3115 if (sdata->u.ibss.chandef.chan->band !=
3116 params->chandef.chan->band)
3117 return -EINVAL;
3118
3119 /* see comments in the NL80211_IFTYPE_AP block */
3120 if (params->count > 1) {
3121 err = ieee80211_ibss_csa_beacon(sdata, params);
3122 if (err < 0)
3123 return err;
3124 *changed |= err;
3125 }
3126
3127 ieee80211_send_action_csa(sdata, params);
3128
3129 break;
3130#ifdef CONFIG_MAC80211_MESH
3131 case NL80211_IFTYPE_MESH_POINT: {
3132 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
3133
3134 if (params->chandef.width != sdata->vif.bss_conf.chandef.width)
3135 return -EINVAL;
3136
3137 /* changes into another band are not supported */
3138 if (sdata->vif.bss_conf.chandef.chan->band !=
3139 params->chandef.chan->band)
3140 return -EINVAL;
3141
3142 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_NONE) {
3143 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_INIT;
3144 if (!ifmsh->pre_value)
3145 ifmsh->pre_value = 1;
3146 else
3147 ifmsh->pre_value++;
3148 }
3149
3150 /* see comments in the NL80211_IFTYPE_AP block */
3151 if (params->count > 1) {
3152 err = ieee80211_mesh_csa_beacon(sdata, params);
3153 if (err < 0) {
3154 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_NONE;
3155 return err;
3156 }
3157 *changed |= err;
3158 }
3159
3160 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_INIT)
3161 ieee80211_send_action_csa(sdata, params);
3162
3163 break;
3164 }
3165#endif
3166 default:
3167 return -EOPNOTSUPP;
3168 }
3169
3170 return 0;
3171}
3172
Luciano Coelhof29f58a2014-05-07 20:05:12 +03003173static int
3174__ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev,
3175 struct cfg80211_csa_settings *params)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003176{
3177 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3178 struct ieee80211_local *local = sdata->local;
Luciano Coelho6d027bc2014-10-08 09:48:37 +03003179 struct ieee80211_channel_switch ch_switch;
Michal Kazior2b327132014-04-09 15:29:32 +02003180 struct ieee80211_chanctx_conf *conf;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003181 struct ieee80211_chanctx *chanctx;
Johannes Bergb08cc242014-10-20 21:36:04 +02003182 u32 changed = 0;
3183 int err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003184
Michal Kaziordbd72852014-01-29 07:56:21 +01003185 sdata_assert_lock(sdata);
Michal Kazior59af6922014-04-09 15:10:59 +02003186 lockdep_assert_held(&local->mtx);
Simon Wunderlich7ca133b2013-11-21 18:19:50 +01003187
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003188 if (!list_empty(&local->roc_list) || local->scanning)
3189 return -EBUSY;
3190
3191 if (sdata->wdev.cac_started)
3192 return -EBUSY;
3193
3194 if (cfg80211_chandef_identical(&params->chandef,
3195 &sdata->vif.bss_conf.chandef))
3196 return -EINVAL;
3197
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003198 /* don't allow another channel switch if one is already active. */
3199 if (sdata->vif.csa_active)
3200 return -EBUSY;
3201
Michal Kazior03078de2014-06-25 12:35:08 +02003202 mutex_lock(&local->chanctx_mtx);
3203 conf = rcu_dereference_protected(sdata->vif.chanctx_conf,
3204 lockdep_is_held(&local->chanctx_mtx));
3205 if (!conf) {
3206 err = -EBUSY;
3207 goto out;
3208 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003209
Michal Kazior03078de2014-06-25 12:35:08 +02003210 chanctx = container_of(conf, struct ieee80211_chanctx, conf);
3211 if (!chanctx) {
3212 err = -EBUSY;
3213 goto out;
3214 }
3215
Luciano Coelho000baa52014-11-07 15:28:33 +02003216 ch_switch.timestamp = 0;
3217 ch_switch.device_timestamp = 0;
3218 ch_switch.block_tx = params->block_tx;
3219 ch_switch.chandef = params->chandef;
3220 ch_switch.count = params->count;
3221
Luciano Coelho6d027bc2014-10-08 09:48:37 +03003222 err = drv_pre_channel_switch(sdata, &ch_switch);
3223 if (err)
3224 goto out;
3225
Michal Kazior03078de2014-06-25 12:35:08 +02003226 err = ieee80211_vif_reserve_chanctx(sdata, &params->chandef,
3227 chanctx->mode,
3228 params->radar_required);
3229 if (err)
3230 goto out;
3231
3232 /* if reservation is invalid then this will fail */
3233 err = ieee80211_check_combinations(sdata, NULL, chanctx->mode, 0);
3234 if (err) {
3235 ieee80211_vif_unreserve_chanctx(sdata);
3236 goto out;
3237 }
3238
3239 err = ieee80211_set_csa_beacon(sdata, params, &changed);
3240 if (err) {
3241 ieee80211_vif_unreserve_chanctx(sdata);
3242 goto out;
3243 }
3244
Luciano Coelho33787fc2013-11-11 20:34:54 +02003245 sdata->csa_chandef = params->chandef;
Michal Kazior59af6922014-04-09 15:10:59 +02003246 sdata->csa_block_tx = params->block_tx;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003247 sdata->vif.csa_active = true;
3248
Michal Kazior59af6922014-04-09 15:10:59 +02003249 if (sdata->csa_block_tx)
Luciano Coelhoa46992b2014-06-13 16:30:07 +03003250 ieee80211_stop_vif_queues(local, sdata,
3251 IEEE80211_QUEUE_STOP_REASON_CSA);
Michal Kazior59af6922014-04-09 15:10:59 +02003252
Luciano Coelho2f457292014-11-07 14:31:36 +02003253 cfg80211_ch_switch_started_notify(sdata->dev, &sdata->csa_chandef,
3254 params->count);
3255
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003256 if (changed) {
3257 ieee80211_bss_info_change_notify(sdata, changed);
3258 drv_channel_switch_beacon(sdata, &params->chandef);
3259 } else {
3260 /* if the beacon didn't change, we can finalize immediately */
3261 ieee80211_csa_finalize(sdata);
3262 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003263
Michal Kazior03078de2014-06-25 12:35:08 +02003264out:
3265 mutex_unlock(&local->chanctx_mtx);
3266 return err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003267}
3268
Michal Kazior59af6922014-04-09 15:10:59 +02003269int ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev,
3270 struct cfg80211_csa_settings *params)
3271{
3272 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3273 struct ieee80211_local *local = sdata->local;
3274 int err;
3275
3276 mutex_lock(&local->mtx);
3277 err = __ieee80211_channel_switch(wiphy, dev, params);
3278 mutex_unlock(&local->mtx);
3279
3280 return err;
3281}
3282
Johannes Berg71bbc992012-06-15 15:30:18 +02003283static int ieee80211_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003284 struct cfg80211_mgmt_tx_params *params,
3285 u64 *cookie)
Jouni Malinen026331c2010-02-15 12:53:10 +02003286{
Johannes Berg71bbc992012-06-15 15:30:18 +02003287 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg9d38d852010-06-09 17:20:33 +02003288 struct ieee80211_local *local = sdata->local;
3289 struct sk_buff *skb;
3290 struct sta_info *sta;
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003291 const struct ieee80211_mgmt *mgmt = (void *)params->buf;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003292 bool need_offchan = false;
Johannes Berge247bd902011-11-04 11:18:21 +01003293 u32 flags;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003294 int ret;
Andrei Otcheretianski387910c2014-05-09 14:11:45 +03003295 u8 *data;
Johannes Bergf7ca38d2010-11-25 10:02:29 +01003296
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003297 if (params->dont_wait_for_ack)
Johannes Berge247bd902011-11-04 11:18:21 +01003298 flags = IEEE80211_TX_CTL_NO_ACK;
3299 else
3300 flags = IEEE80211_TX_INTFL_NL80211_FRAME_TX |
3301 IEEE80211_TX_CTL_REQ_TX_STATUS;
3302
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003303 if (params->no_cck)
Rajkumar Manoharanaad14ce2011-09-25 14:53:31 +05303304 flags |= IEEE80211_TX_CTL_NO_CCK_RATE;
3305
Johannes Berg9d38d852010-06-09 17:20:33 +02003306 switch (sdata->vif.type) {
3307 case NL80211_IFTYPE_ADHOC:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003308 if (!sdata->vif.bss_conf.ibss_joined)
3309 need_offchan = true;
3310 /* fall through */
3311#ifdef CONFIG_MAC80211_MESH
3312 case NL80211_IFTYPE_MESH_POINT:
3313 if (ieee80211_vif_is_mesh(&sdata->vif) &&
3314 !sdata->u.mesh.mesh_id_len)
3315 need_offchan = true;
3316 /* fall through */
3317#endif
Johannes Berg663fcaf2010-09-30 21:06:09 +02003318 case NL80211_IFTYPE_AP:
3319 case NL80211_IFTYPE_AP_VLAN:
3320 case NL80211_IFTYPE_P2P_GO:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003321 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
3322 !ieee80211_vif_is_mesh(&sdata->vif) &&
3323 !rcu_access_pointer(sdata->bss->beacon))
3324 need_offchan = true;
Johannes Berg663fcaf2010-09-30 21:06:09 +02003325 if (!ieee80211_is_action(mgmt->frame_control) ||
Thomas Pedersenac49e1a2013-06-20 23:50:58 -07003326 mgmt->u.action.category == WLAN_CATEGORY_PUBLIC ||
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003327 mgmt->u.action.category == WLAN_CATEGORY_SELF_PROTECTED ||
3328 mgmt->u.action.category == WLAN_CATEGORY_SPECTRUM_MGMT)
Johannes Berg9d38d852010-06-09 17:20:33 +02003329 break;
3330 rcu_read_lock();
3331 sta = sta_info_get(sdata, mgmt->da);
3332 rcu_read_unlock();
3333 if (!sta)
3334 return -ENOLINK;
3335 break;
3336 case NL80211_IFTYPE_STATION:
Johannes Berg663fcaf2010-09-30 21:06:09 +02003337 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003338 if (!sdata->u.mgd.associated)
3339 need_offchan = true;
Johannes Berg9d38d852010-06-09 17:20:33 +02003340 break;
Johannes Bergf142c6b2012-06-18 20:07:15 +02003341 case NL80211_IFTYPE_P2P_DEVICE:
3342 need_offchan = true;
3343 break;
Johannes Berg9d38d852010-06-09 17:20:33 +02003344 default:
3345 return -EOPNOTSUPP;
3346 }
3347
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003348 /* configurations requiring offchan cannot work if no channel has been
3349 * specified
3350 */
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003351 if (need_offchan && !params->chan)
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003352 return -EINVAL;
3353
Johannes Berg2eb278e2012-06-05 14:28:42 +02003354 mutex_lock(&local->mtx);
3355
3356 /* Check if the operating channel is the requested channel */
3357 if (!need_offchan) {
Johannes Berg55de9082012-07-26 17:24:39 +02003358 struct ieee80211_chanctx_conf *chanctx_conf;
3359
3360 rcu_read_lock();
3361 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3362
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003363 if (chanctx_conf) {
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003364 need_offchan = params->chan &&
3365 (params->chan !=
3366 chanctx_conf->def.chan);
3367 } else if (!params->chan) {
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003368 ret = -EINVAL;
3369 rcu_read_unlock();
3370 goto out_unlock;
3371 } else {
Johannes Berg2eb278e2012-06-05 14:28:42 +02003372 need_offchan = true;
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003373 }
Johannes Berg55de9082012-07-26 17:24:39 +02003374 rcu_read_unlock();
Johannes Berg2eb278e2012-06-05 14:28:42 +02003375 }
3376
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003377 if (need_offchan && !params->offchan) {
Johannes Berg2eb278e2012-06-05 14:28:42 +02003378 ret = -EBUSY;
3379 goto out_unlock;
3380 }
3381
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003382 skb = dev_alloc_skb(local->hw.extra_tx_headroom + params->len);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003383 if (!skb) {
3384 ret = -ENOMEM;
3385 goto out_unlock;
3386 }
Johannes Berg9d38d852010-06-09 17:20:33 +02003387 skb_reserve(skb, local->hw.extra_tx_headroom);
3388
Andrei Otcheretianski387910c2014-05-09 14:11:45 +03003389 data = skb_put(skb, params->len);
3390 memcpy(data, params->buf, params->len);
3391
3392 /* Update CSA counters */
3393 if (sdata->vif.csa_active &&
3394 (sdata->vif.type == NL80211_IFTYPE_AP ||
3395 sdata->vif.type == NL80211_IFTYPE_ADHOC) &&
3396 params->n_csa_offsets) {
3397 int i;
Michal Kazioraf296bd2014-06-05 14:21:36 +02003398 struct beacon_data *beacon = NULL;
Andrei Otcheretianski387910c2014-05-09 14:11:45 +03003399
Michal Kazioraf296bd2014-06-05 14:21:36 +02003400 rcu_read_lock();
3401
3402 if (sdata->vif.type == NL80211_IFTYPE_AP)
3403 beacon = rcu_dereference(sdata->u.ap.beacon);
3404 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
3405 beacon = rcu_dereference(sdata->u.ibss.presp);
3406 else if (ieee80211_vif_is_mesh(&sdata->vif))
3407 beacon = rcu_dereference(sdata->u.mesh.beacon);
3408
3409 if (beacon)
3410 for (i = 0; i < params->n_csa_offsets; i++)
3411 data[params->csa_offsets[i]] =
3412 beacon->csa_current_counter;
3413
3414 rcu_read_unlock();
Andrei Otcheretianski387910c2014-05-09 14:11:45 +03003415 }
Johannes Berg9d38d852010-06-09 17:20:33 +02003416
3417 IEEE80211_SKB_CB(skb)->flags = flags;
3418
Johannes Berg2eb278e2012-06-05 14:28:42 +02003419 skb->dev = sdata->dev;
3420
3421 if (!need_offchan) {
Nicolas Cavallari7f9f78a2012-07-16 18:36:52 +02003422 *cookie = (unsigned long) skb;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003423 ieee80211_tx_skb(sdata, skb);
3424 ret = 0;
3425 goto out_unlock;
3426 }
3427
Seth Forshee6c17b772013-02-11 11:21:07 -06003428 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_TX_OFFCHAN |
3429 IEEE80211_TX_INTFL_OFFCHAN_TX_OK;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003430 if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)
Johannes Berg3a25a8c2012-04-03 16:28:50 +02003431 IEEE80211_SKB_CB(skb)->hw_queue =
3432 local->hw.offchannel_tx_hw_queue;
3433
Johannes Berg2eb278e2012-06-05 14:28:42 +02003434 /* This will handle all kinds of coalescing and immediate TX */
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003435 ret = ieee80211_start_roc_work(local, sdata, params->chan,
3436 params->wait, cookie, skb,
Ilan Peerd339d5c2013-02-12 09:34:13 +02003437 IEEE80211_ROC_TYPE_MGMT_TX);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003438 if (ret)
Johannes Bergf30221e2010-11-25 10:02:30 +01003439 kfree_skb(skb);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003440 out_unlock:
3441 mutex_unlock(&local->mtx);
3442 return ret;
Jouni Malinen026331c2010-02-15 12:53:10 +02003443}
3444
Johannes Bergf30221e2010-11-25 10:02:30 +01003445static int ieee80211_mgmt_tx_cancel_wait(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02003446 struct wireless_dev *wdev,
Johannes Bergf30221e2010-11-25 10:02:30 +01003447 u64 cookie)
3448{
Johannes Berg71bbc992012-06-15 15:30:18 +02003449 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Bergf30221e2010-11-25 10:02:30 +01003450
Johannes Berg2eb278e2012-06-05 14:28:42 +02003451 return ieee80211_cancel_roc(local, cookie, true);
Johannes Bergf30221e2010-11-25 10:02:30 +01003452}
3453
Johannes Berg7be50862010-10-13 12:06:24 +02003454static void ieee80211_mgmt_frame_register(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02003455 struct wireless_dev *wdev,
Johannes Berg7be50862010-10-13 12:06:24 +02003456 u16 frame_type, bool reg)
3457{
3458 struct ieee80211_local *local = wiphy_priv(wiphy);
3459
Will Hawkins6abe0562012-06-20 11:51:14 -04003460 switch (frame_type) {
Will Hawkins6abe0562012-06-20 11:51:14 -04003461 case IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_PROBE_REQ:
3462 if (reg)
3463 local->probe_req_reg++;
3464 else
3465 local->probe_req_reg--;
Johannes Berg7be50862010-10-13 12:06:24 +02003466
Felix Fietkau35f51492012-10-31 15:50:34 +01003467 if (!local->open_count)
3468 break;
3469
Will Hawkins6abe0562012-06-20 11:51:14 -04003470 ieee80211_queue_work(&local->hw, &local->reconfig_filter);
3471 break;
3472 default:
3473 break;
3474 }
Johannes Berg7be50862010-10-13 12:06:24 +02003475}
3476
Bruno Randolf15d96752010-11-10 12:50:56 +09003477static int ieee80211_set_antenna(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant)
3478{
3479 struct ieee80211_local *local = wiphy_priv(wiphy);
3480
3481 if (local->started)
3482 return -EOPNOTSUPP;
3483
3484 return drv_set_antenna(local, tx_ant, rx_ant);
3485}
3486
3487static int ieee80211_get_antenna(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant)
3488{
3489 struct ieee80211_local *local = wiphy_priv(wiphy);
3490
3491 return drv_get_antenna(local, tx_ant, rx_ant);
3492}
3493
Johannes Bergc68f4b82011-07-05 16:35:41 +02003494static int ieee80211_set_rekey_data(struct wiphy *wiphy,
3495 struct net_device *dev,
3496 struct cfg80211_gtk_rekey_data *data)
3497{
3498 struct ieee80211_local *local = wiphy_priv(wiphy);
3499 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3500
3501 if (!local->ops->set_rekey_data)
3502 return -EOPNOTSUPP;
3503
3504 drv_set_rekey_data(local, sdata, data);
3505
3506 return 0;
3507}
3508
Johannes Berg06500732011-11-04 11:18:16 +01003509static int ieee80211_probe_client(struct wiphy *wiphy, struct net_device *dev,
3510 const u8 *peer, u64 *cookie)
3511{
3512 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3513 struct ieee80211_local *local = sdata->local;
3514 struct ieee80211_qos_hdr *nullfunc;
3515 struct sk_buff *skb;
3516 int size = sizeof(*nullfunc);
3517 __le16 fc;
3518 bool qos;
3519 struct ieee80211_tx_info *info;
3520 struct sta_info *sta;
Johannes Berg55de9082012-07-26 17:24:39 +02003521 struct ieee80211_chanctx_conf *chanctx_conf;
3522 enum ieee80211_band band;
Johannes Berg06500732011-11-04 11:18:16 +01003523
3524 rcu_read_lock();
Johannes Berg55de9082012-07-26 17:24:39 +02003525 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3526 if (WARN_ON(!chanctx_conf)) {
3527 rcu_read_unlock();
3528 return -EINVAL;
3529 }
Johannes Berg4bf88532012-11-09 11:39:59 +01003530 band = chanctx_conf->def.chan->band;
Felix Fietkau03bb7f42013-09-29 21:39:33 +02003531 sta = sta_info_get_bss(sdata, peer);
Johannes Bergb4487c22011-11-11 20:22:30 +01003532 if (sta) {
Johannes Berga74a8c82014-07-22 14:50:47 +02003533 qos = sta->sta.wme;
Johannes Bergb4487c22011-11-11 20:22:30 +01003534 } else {
3535 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003536 return -ENOLINK;
Johannes Bergb4487c22011-11-11 20:22:30 +01003537 }
Johannes Berg06500732011-11-04 11:18:16 +01003538
3539 if (qos) {
3540 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3541 IEEE80211_STYPE_QOS_NULLFUNC |
3542 IEEE80211_FCTL_FROMDS);
3543 } else {
3544 size -= 2;
3545 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3546 IEEE80211_STYPE_NULLFUNC |
3547 IEEE80211_FCTL_FROMDS);
3548 }
3549
3550 skb = dev_alloc_skb(local->hw.extra_tx_headroom + size);
Johannes Berg55de9082012-07-26 17:24:39 +02003551 if (!skb) {
3552 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003553 return -ENOMEM;
Johannes Berg55de9082012-07-26 17:24:39 +02003554 }
Johannes Berg06500732011-11-04 11:18:16 +01003555
3556 skb->dev = dev;
3557
3558 skb_reserve(skb, local->hw.extra_tx_headroom);
3559
3560 nullfunc = (void *) skb_put(skb, size);
3561 nullfunc->frame_control = fc;
3562 nullfunc->duration_id = 0;
3563 memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN);
3564 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
3565 memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);
3566 nullfunc->seq_ctrl = 0;
3567
3568 info = IEEE80211_SKB_CB(skb);
3569
3570 info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
3571 IEEE80211_TX_INTFL_NL80211_FRAME_TX;
Johannes Berg73c4e192014-11-09 18:50:09 +02003572 info->band = band;
Johannes Berg06500732011-11-04 11:18:16 +01003573
3574 skb_set_queue_mapping(skb, IEEE80211_AC_VO);
3575 skb->priority = 7;
3576 if (qos)
3577 nullfunc->qos_ctrl = cpu_to_le16(7);
3578
3579 local_bh_disable();
Johannes Berg7c107702015-03-20 14:18:27 +01003580 ieee80211_xmit(sdata, sta, skb);
Johannes Berg06500732011-11-04 11:18:16 +01003581 local_bh_enable();
Johannes Berg55de9082012-07-26 17:24:39 +02003582 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003583
3584 *cookie = (unsigned long) skb;
3585 return 0;
3586}
3587
Johannes Berg683b6d32012-11-08 21:25:48 +01003588static int ieee80211_cfg_get_channel(struct wiphy *wiphy,
3589 struct wireless_dev *wdev,
3590 struct cfg80211_chan_def *chandef)
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003591{
Johannes Berg55de9082012-07-26 17:24:39 +02003592 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Felix Fietkaucb601ff2013-02-23 19:02:14 +01003593 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg55de9082012-07-26 17:24:39 +02003594 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Berg683b6d32012-11-08 21:25:48 +01003595 int ret = -ENODATA;
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003596
Johannes Berg55de9082012-07-26 17:24:39 +02003597 rcu_read_lock();
Johannes Bergfeda3022013-02-28 09:59:22 +01003598 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3599 if (chanctx_conf) {
Luciano Coelhoc12bc482014-09-30 07:08:02 +03003600 *chandef = sdata->vif.bss_conf.chandef;
Johannes Bergfeda3022013-02-28 09:59:22 +01003601 ret = 0;
3602 } else if (local->open_count > 0 &&
3603 local->open_count == local->monitors &&
3604 sdata->vif.type == NL80211_IFTYPE_MONITOR) {
3605 if (local->use_chanctx)
3606 *chandef = local->monitor_chandef;
3607 else
Karl Beldan675a0b02013-03-25 16:26:57 +01003608 *chandef = local->_oper_chandef;
Johannes Berg683b6d32012-11-08 21:25:48 +01003609 ret = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02003610 }
3611 rcu_read_unlock();
3612
Johannes Berg683b6d32012-11-08 21:25:48 +01003613 return ret;
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003614}
3615
Johannes Berg6d525632012-04-04 15:05:25 +02003616#ifdef CONFIG_PM
3617static void ieee80211_set_wakeup(struct wiphy *wiphy, bool enabled)
3618{
3619 drv_set_wakeup(wiphy_priv(wiphy), enabled);
3620}
3621#endif
3622
Kyeyoon Park32db6b52013-12-16 23:04:43 -08003623static int ieee80211_set_qos_map(struct wiphy *wiphy,
3624 struct net_device *dev,
3625 struct cfg80211_qos_map *qos_map)
3626{
3627 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3628 struct mac80211_qos_map *new_qos_map, *old_qos_map;
3629
3630 if (qos_map) {
3631 new_qos_map = kzalloc(sizeof(*new_qos_map), GFP_KERNEL);
3632 if (!new_qos_map)
3633 return -ENOMEM;
3634 memcpy(&new_qos_map->qos_map, qos_map, sizeof(*qos_map));
3635 } else {
3636 /* A NULL qos_map was passed to disable QoS mapping */
3637 new_qos_map = NULL;
3638 }
3639
Johannes Berg194ff522013-12-30 23:12:37 +01003640 old_qos_map = sdata_dereference(sdata->qos_map, sdata);
Kyeyoon Park32db6b52013-12-16 23:04:43 -08003641 rcu_assign_pointer(sdata->qos_map, new_qos_map);
3642 if (old_qos_map)
3643 kfree_rcu(old_qos_map, rcu_head);
3644
3645 return 0;
3646}
3647
Jouni Malinen3b1700b2014-04-28 11:22:25 +03003648static int ieee80211_set_ap_chanwidth(struct wiphy *wiphy,
3649 struct net_device *dev,
3650 struct cfg80211_chan_def *chandef)
3651{
3652 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3653 int ret;
3654 u32 changed = 0;
3655
3656 ret = ieee80211_vif_change_bandwidth(sdata, chandef, &changed);
3657 if (ret == 0)
3658 ieee80211_bss_info_change_notify(sdata, changed);
3659
3660 return ret;
3661}
3662
Johannes Berg02219b32014-10-07 10:38:50 +03003663static int ieee80211_add_tx_ts(struct wiphy *wiphy, struct net_device *dev,
3664 u8 tsid, const u8 *peer, u8 up,
3665 u16 admitted_time)
3666{
3667 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3668 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3669 int ac = ieee802_1d_to_ac[up];
3670
3671 if (sdata->vif.type != NL80211_IFTYPE_STATION)
3672 return -EOPNOTSUPP;
3673
3674 if (!(sdata->wmm_acm & BIT(up)))
3675 return -EINVAL;
3676
3677 if (ifmgd->tx_tspec[ac].admitted_time)
3678 return -EBUSY;
3679
3680 if (admitted_time) {
3681 ifmgd->tx_tspec[ac].admitted_time = 32 * admitted_time;
3682 ifmgd->tx_tspec[ac].tsid = tsid;
3683 ifmgd->tx_tspec[ac].up = up;
3684 }
3685
3686 return 0;
3687}
3688
3689static int ieee80211_del_tx_ts(struct wiphy *wiphy, struct net_device *dev,
3690 u8 tsid, const u8 *peer)
3691{
3692 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3693 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3694 struct ieee80211_local *local = wiphy_priv(wiphy);
3695 int ac;
3696
3697 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
3698 struct ieee80211_sta_tx_tspec *tx_tspec = &ifmgd->tx_tspec[ac];
3699
3700 /* skip unused entries */
3701 if (!tx_tspec->admitted_time)
3702 continue;
3703
3704 if (tx_tspec->tsid != tsid)
3705 continue;
3706
3707 /* due to this new packets will be reassigned to non-ACM ACs */
3708 tx_tspec->up = -1;
3709
3710 /* Make sure that all packets have been sent to avoid to
3711 * restore the QoS params on packets that are still on the
3712 * queues.
3713 */
3714 synchronize_net();
Emmanuel Grumbach3b24f4c2015-01-07 15:42:39 +02003715 ieee80211_flush_queues(local, sdata, false);
Johannes Berg02219b32014-10-07 10:38:50 +03003716
3717 /* restore the normal QoS parameters
3718 * (unconditionally to avoid races)
3719 */
3720 tx_tspec->action = TX_TSPEC_ACTION_STOP_DOWNGRADE;
3721 tx_tspec->downgraded = false;
3722 ieee80211_sta_handle_tspec_ac_params(sdata);
3723
3724 /* finally clear all the data */
3725 memset(tx_tspec, 0, sizeof(*tx_tspec));
3726
3727 return 0;
3728 }
3729
3730 return -ENOENT;
3731}
3732
Johannes Berg8a47cea2014-01-20 23:55:44 +01003733const struct cfg80211_ops mac80211_config_ops = {
Jiri Bencf0706e82007-05-05 11:45:53 -07003734 .add_virtual_intf = ieee80211_add_iface,
3735 .del_virtual_intf = ieee80211_del_iface,
Johannes Berg42613db2007-09-28 21:52:27 +02003736 .change_virtual_intf = ieee80211_change_iface,
Johannes Bergf142c6b2012-06-18 20:07:15 +02003737 .start_p2p_device = ieee80211_start_p2p_device,
3738 .stop_p2p_device = ieee80211_stop_p2p_device,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01003739 .add_key = ieee80211_add_key,
3740 .del_key = ieee80211_del_key,
Johannes Berg62da92f2007-12-19 02:03:31 +01003741 .get_key = ieee80211_get_key,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01003742 .set_default_key = ieee80211_config_default_key,
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02003743 .set_default_mgmt_key = ieee80211_config_default_mgmt_key,
Johannes Berg88600202012-02-13 15:17:18 +01003744 .start_ap = ieee80211_start_ap,
3745 .change_beacon = ieee80211_change_beacon,
3746 .stop_ap = ieee80211_stop_ap,
Johannes Berg4fd69312007-12-19 02:03:35 +01003747 .add_station = ieee80211_add_station,
3748 .del_station = ieee80211_del_station,
3749 .change_station = ieee80211_change_station,
Johannes Berg7bbdd2d2007-12-19 02:03:37 +01003750 .get_station = ieee80211_get_station,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003751 .dump_station = ieee80211_dump_station,
Holger Schurig12897232010-04-19 10:23:57 +02003752 .dump_survey = ieee80211_dump_survey,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003753#ifdef CONFIG_MAC80211_MESH
3754 .add_mpath = ieee80211_add_mpath,
3755 .del_mpath = ieee80211_del_mpath,
3756 .change_mpath = ieee80211_change_mpath,
3757 .get_mpath = ieee80211_get_mpath,
3758 .dump_mpath = ieee80211_dump_mpath,
Henning Roggea2db2ed2014-09-12 08:58:50 +02003759 .get_mpp = ieee80211_get_mpp,
3760 .dump_mpp = ieee80211_dump_mpp,
Javier Cardona24bdd9f2010-12-16 17:37:48 -08003761 .update_mesh_config = ieee80211_update_mesh_config,
3762 .get_mesh_config = ieee80211_get_mesh_config,
Johannes Berg29cbe682010-12-03 09:20:44 +01003763 .join_mesh = ieee80211_join_mesh,
3764 .leave_mesh = ieee80211_leave_mesh,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003765#endif
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003766 .join_ocb = ieee80211_join_ocb,
3767 .leave_ocb = ieee80211_leave_ocb,
Jouni Malinen9f1ba902008-08-07 20:07:01 +03003768 .change_bss = ieee80211_change_bss,
Jouni Malinen31888482008-10-30 16:59:24 +02003769 .set_txq_params = ieee80211_set_txq_params,
Johannes Berge8c9bd52012-06-06 08:18:22 +02003770 .set_monitor_channel = ieee80211_set_monitor_channel,
Bob Copeland665af4f2009-01-19 11:20:53 -05003771 .suspend = ieee80211_suspend,
3772 .resume = ieee80211_resume,
Johannes Berg2a519312009-02-10 21:25:55 +01003773 .scan = ieee80211_scan,
Luciano Coelho79f460c2011-05-11 17:09:36 +03003774 .sched_scan_start = ieee80211_sched_scan_start,
3775 .sched_scan_stop = ieee80211_sched_scan_stop,
Jouni Malinen636a5d32009-03-19 13:39:22 +02003776 .auth = ieee80211_auth,
3777 .assoc = ieee80211_assoc,
3778 .deauth = ieee80211_deauth,
3779 .disassoc = ieee80211_disassoc,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02003780 .join_ibss = ieee80211_join_ibss,
3781 .leave_ibss = ieee80211_leave_ibss,
Antonio Quartulli391e53e2012-11-02 13:27:49 +01003782 .set_mcast_rate = ieee80211_set_mcast_rate,
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02003783 .set_wiphy_params = ieee80211_set_wiphy_params,
Johannes Berg7643a2c2009-06-02 13:01:39 +02003784 .set_tx_power = ieee80211_set_tx_power,
3785 .get_tx_power = ieee80211_get_tx_power,
Johannes Bergab737a42009-07-01 21:26:58 +02003786 .set_wds_peer = ieee80211_set_wds_peer,
Johannes Berg1f87f7d2009-06-02 13:01:41 +02003787 .rfkill_poll = ieee80211_rfkill_poll,
Johannes Bergaff89a92009-07-01 21:26:51 +02003788 CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd)
Wey-Yi Guy71063f02011-05-20 09:05:54 -07003789 CFG80211_TESTMODE_DUMP(ieee80211_testmode_dump)
Johannes Bergbc92afd2009-07-01 21:26:57 +02003790 .set_power_mgmt = ieee80211_set_power_mgmt,
Johannes Berg99303802009-07-01 21:26:59 +02003791 .set_bitrate_mask = ieee80211_set_bitrate_mask,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01003792 .remain_on_channel = ieee80211_remain_on_channel,
3793 .cancel_remain_on_channel = ieee80211_cancel_remain_on_channel,
Johannes Berg2e161f72010-08-12 15:38:38 +02003794 .mgmt_tx = ieee80211_mgmt_tx,
Johannes Bergf30221e2010-11-25 10:02:30 +01003795 .mgmt_tx_cancel_wait = ieee80211_mgmt_tx_cancel_wait,
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02003796 .set_cqm_rssi_config = ieee80211_set_cqm_rssi_config,
Johannes Berg7be50862010-10-13 12:06:24 +02003797 .mgmt_frame_register = ieee80211_mgmt_frame_register,
Bruno Randolf15d96752010-11-10 12:50:56 +09003798 .set_antenna = ieee80211_set_antenna,
3799 .get_antenna = ieee80211_get_antenna,
Johannes Bergc68f4b82011-07-05 16:35:41 +02003800 .set_rekey_data = ieee80211_set_rekey_data,
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003801 .tdls_oper = ieee80211_tdls_oper,
3802 .tdls_mgmt = ieee80211_tdls_mgmt,
Arik Nemtsova7a6bdd2014-11-09 18:50:19 +02003803 .tdls_channel_switch = ieee80211_tdls_channel_switch,
3804 .tdls_cancel_channel_switch = ieee80211_tdls_cancel_channel_switch,
Johannes Berg06500732011-11-04 11:18:16 +01003805 .probe_client = ieee80211_probe_client,
Simon Wunderlichb53be792011-11-18 14:20:44 +01003806 .set_noack_map = ieee80211_set_noack_map,
Johannes Berg6d525632012-04-04 15:05:25 +02003807#ifdef CONFIG_PM
3808 .set_wakeup = ieee80211_set_wakeup,
3809#endif
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003810 .get_channel = ieee80211_cfg_get_channel,
Simon Wunderlich164eb022013-02-08 18:16:20 +01003811 .start_radar_detection = ieee80211_start_radar_detection,
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003812 .channel_switch = ieee80211_channel_switch,
Kyeyoon Park32db6b52013-12-16 23:04:43 -08003813 .set_qos_map = ieee80211_set_qos_map,
Jouni Malinen3b1700b2014-04-28 11:22:25 +03003814 .set_ap_chanwidth = ieee80211_set_ap_chanwidth,
Johannes Berg02219b32014-10-07 10:38:50 +03003815 .add_tx_ts = ieee80211_add_tx_ts,
3816 .del_tx_ts = ieee80211_del_tx_ts,
Jiri Bencf0706e82007-05-05 11:45:53 -07003817};