blob: 6d5076fbf87a413b42cd3dcf202607f1605751bc [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * mac80211 configuration hooks for cfg80211
3 *
Jouni Malinen026331c2010-02-15 12:53:10 +02004 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
Johannes Bergd98ad832014-09-03 15:24:57 +03005 * Copyright 2013-2014 Intel Mobile Communications GmbH
Jiri Bencf0706e82007-05-05 11:45:53 -07006 *
7 * This file is GPLv2 as found in COPYING.
8 */
9
Johannes Berge8cbb4c2007-12-19 02:03:30 +010010#include <linux/ieee80211.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070011#include <linux/nl80211.h>
12#include <linux/rtnetlink.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070014#include <net/net_namespace.h>
Johannes Berg5dfdaf52007-12-19 02:03:33 +010015#include <linux/rcupdate.h>
Arik Nemtsovdfe018b2011-09-28 14:12:52 +030016#include <linux/if_ether.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070017#include <net/cfg80211.h>
18#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020019#include "driver-ops.h"
Michael Wue0eb6852007-09-18 17:29:21 -040020#include "cfg.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040021#include "rate.h"
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +010022#include "mesh.h"
Johannes Berg02219b32014-10-07 10:38:50 +030023#include "wme.h"
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +010024
Johannes Berg552bff02012-09-19 09:26:06 +020025static struct wireless_dev *ieee80211_add_iface(struct wiphy *wiphy,
26 const char *name,
Johannes Berg84efbb82012-06-16 00:00:26 +020027 enum nl80211_iftype type,
28 u32 *flags,
29 struct vif_params *params)
Jiri Bencf0706e82007-05-05 11:45:53 -070030{
31 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg84efbb82012-06-16 00:00:26 +020032 struct wireless_dev *wdev;
Michael Wu8cc9a732008-01-31 19:48:23 +010033 struct ieee80211_sub_if_data *sdata;
34 int err;
Jiri Bencf0706e82007-05-05 11:45:53 -070035
Johannes Berg84efbb82012-06-16 00:00:26 +020036 err = ieee80211_if_add(local, name, &wdev, type, params);
Johannes Bergf9e10ce2010-12-03 09:20:42 +010037 if (err)
38 return ERR_PTR(err);
Michael Wu8cc9a732008-01-31 19:48:23 +010039
Johannes Bergf9e10ce2010-12-03 09:20:42 +010040 if (type == NL80211_IFTYPE_MONITOR && flags) {
Johannes Berg84efbb82012-06-16 00:00:26 +020041 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Bergf9e10ce2010-12-03 09:20:42 +010042 sdata->u.mntr_flags = *flags;
43 }
44
Johannes Berg84efbb82012-06-16 00:00:26 +020045 return wdev;
Jiri Bencf0706e82007-05-05 11:45:53 -070046}
47
Johannes Berg84efbb82012-06-16 00:00:26 +020048static int ieee80211_del_iface(struct wiphy *wiphy, struct wireless_dev *wdev)
Jiri Bencf0706e82007-05-05 11:45:53 -070049{
Johannes Berg84efbb82012-06-16 00:00:26 +020050 ieee80211_if_remove(IEEE80211_WDEV_TO_SUB_IF(wdev));
Jiri Bencf0706e82007-05-05 11:45:53 -070051
Johannes Berg75636522008-07-09 14:40:35 +020052 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -070053}
54
Johannes Berge36d56b2009-06-09 21:04:43 +020055static int ieee80211_change_iface(struct wiphy *wiphy,
56 struct net_device *dev,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +010057 enum nl80211_iftype type, u32 *flags,
58 struct vif_params *params)
Johannes Berg42613db2007-09-28 21:52:27 +020059{
Johannes Berg9607e6b2009-12-23 13:15:31 +010060 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Bergf3947e22008-07-09 14:40:36 +020061 int ret;
Johannes Berg42613db2007-09-28 21:52:27 +020062
Johannes Berg05c914f2008-09-11 00:01:58 +020063 ret = ieee80211_if_change_type(sdata, type);
Johannes Bergf3947e22008-07-09 14:40:36 +020064 if (ret)
65 return ret;
Johannes Berg42613db2007-09-28 21:52:27 +020066
Johannes Berg9bc383d2009-11-19 11:55:19 +010067 if (type == NL80211_IFTYPE_AP_VLAN &&
68 params && params->use_4addr == 0)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +000069 RCU_INIT_POINTER(sdata->u.vlan.sta, NULL);
Johannes Berg9bc383d2009-11-19 11:55:19 +010070 else if (type == NL80211_IFTYPE_STATION &&
71 params && params->use_4addr >= 0)
72 sdata->u.mgd.use_4addr = params->use_4addr;
73
Christian Lamparter85416a42010-10-02 13:17:07 +020074 if (sdata->vif.type == NL80211_IFTYPE_MONITOR && flags) {
75 struct ieee80211_local *local = sdata->local;
76
77 if (ieee80211_sdata_running(sdata)) {
Felix Fietkau31eba5b2013-05-28 13:01:53 +020078 u32 mask = MONITOR_FLAG_COOK_FRAMES |
79 MONITOR_FLAG_ACTIVE;
80
Christian Lamparter85416a42010-10-02 13:17:07 +020081 /*
Felix Fietkau31eba5b2013-05-28 13:01:53 +020082 * Prohibit MONITOR_FLAG_COOK_FRAMES and
83 * MONITOR_FLAG_ACTIVE to be changed while the
84 * interface is up.
Christian Lamparter85416a42010-10-02 13:17:07 +020085 * Else we would need to add a lot of cruft
86 * to update everything:
87 * cooked_mntrs, monitor and all fif_* counters
88 * reconfigure hardware
89 */
Felix Fietkau31eba5b2013-05-28 13:01:53 +020090 if ((*flags & mask) != (sdata->u.mntr_flags & mask))
Christian Lamparter85416a42010-10-02 13:17:07 +020091 return -EBUSY;
92
93 ieee80211_adjust_monitor_flags(sdata, -1);
94 sdata->u.mntr_flags = *flags;
95 ieee80211_adjust_monitor_flags(sdata, 1);
96
97 ieee80211_configure_filter(local);
98 } else {
99 /*
100 * Because the interface is down, ieee80211_do_stop
101 * and ieee80211_do_open take care of "everything"
102 * mentioned in the comment above.
103 */
104 sdata->u.mntr_flags = *flags;
105 }
106 }
Felix Fietkauf7917af2010-04-27 00:26:34 +0200107
Johannes Berg42613db2007-09-28 21:52:27 +0200108 return 0;
109}
110
Johannes Bergf142c6b2012-06-18 20:07:15 +0200111static int ieee80211_start_p2p_device(struct wiphy *wiphy,
112 struct wireless_dev *wdev)
113{
Luciano Coelhob6a55012014-02-27 11:07:21 +0200114 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
115 int ret;
116
117 mutex_lock(&sdata->local->chanctx_mtx);
118 ret = ieee80211_check_combinations(sdata, NULL, 0, 0);
119 mutex_unlock(&sdata->local->chanctx_mtx);
120 if (ret < 0)
121 return ret;
122
Johannes Bergf142c6b2012-06-18 20:07:15 +0200123 return ieee80211_do_open(wdev, true);
124}
125
126static void ieee80211_stop_p2p_device(struct wiphy *wiphy,
127 struct wireless_dev *wdev)
128{
129 ieee80211_sdata_stop(IEEE80211_WDEV_TO_SUB_IF(wdev));
130}
131
Simon Wunderlichb53be792011-11-18 14:20:44 +0100132static int ieee80211_set_noack_map(struct wiphy *wiphy,
133 struct net_device *dev,
134 u16 noack_map)
135{
136 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
137
138 sdata->noack_map = noack_map;
139 return 0;
140}
141
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100142static int ieee80211_add_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berge31b8212010-10-05 19:39:30 +0200143 u8 key_idx, bool pairwise, const u8 *mac_addr,
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100144 struct key_params *params)
145{
Johannes Berg26a58452010-08-27 12:35:55 +0200146 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200147 struct ieee80211_local *local = sdata->local;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100148 struct sta_info *sta = NULL;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200149 const struct ieee80211_cipher_scheme *cs = NULL;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100150 struct ieee80211_key *key;
Johannes Berg3b967662008-04-08 17:56:52 +0200151 int err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100152
Johannes Berg26a58452010-08-27 12:35:55 +0200153 if (!ieee80211_sdata_running(sdata))
Johannes Bergad0e2b52010-06-01 10:19:19 +0200154 return -ENETDOWN;
155
Johannes Berg97359d12010-08-10 09:46:38 +0200156 /* reject WEP and TKIP keys if WEP failed to initialize */
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100157 switch (params->cipher) {
158 case WLAN_CIPHER_SUITE_WEP40:
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100159 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berg97359d12010-08-10 09:46:38 +0200160 case WLAN_CIPHER_SUITE_WEP104:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200161 if (IS_ERR(local->wep_tx_tfm))
Johannes Berg97359d12010-08-10 09:46:38 +0200162 return -EINVAL;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200163 break;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200164 case WLAN_CIPHER_SUITE_CCMP:
165 case WLAN_CIPHER_SUITE_AES_CMAC:
166 case WLAN_CIPHER_SUITE_GCMP:
167 break;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100168 default:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200169 cs = ieee80211_cs_get(local, params->cipher, sdata->vif.type);
Johannes Berg97359d12010-08-10 09:46:38 +0200170 break;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100171 }
172
Johannes Berg97359d12010-08-10 09:46:38 +0200173 key = ieee80211_key_alloc(params->cipher, key_idx, params->key_len,
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200174 params->key, params->seq_len, params->seq,
175 cs);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100176 if (IS_ERR(key))
177 return PTR_ERR(key);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100178
Johannes Berge31b8212010-10-05 19:39:30 +0200179 if (pairwise)
180 key->conf.flags |= IEEE80211_KEY_FLAG_PAIRWISE;
181
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200182 mutex_lock(&local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200183
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100184 if (mac_addr) {
Thomas Pedersenff973af2011-05-03 16:57:12 -0700185 if (ieee80211_vif_is_mesh(&sdata->vif))
186 sta = sta_info_get(sdata, mac_addr);
187 else
188 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berg1626e0f2013-01-11 14:34:25 +0100189 /*
190 * The ASSOC test makes sure the driver is ready to
191 * receive the key. When wpa_supplicant has roamed
192 * using FT, it attempts to set the key before
193 * association has completed, this rejects that attempt
Stephen Hemmingerd070f912014-10-29 22:55:58 -0700194 * so it will set the key again after association.
Johannes Berg1626e0f2013-01-11 14:34:25 +0100195 *
196 * TODO: accept the key if we have a station entry and
197 * add it to the device after the station.
198 */
199 if (!sta || !test_sta_flag(sta, WLAN_STA_ASSOC)) {
Johannes Berg79cf2df2013-03-06 22:53:52 +0100200 ieee80211_key_free_unused(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200201 err = -ENOENT;
202 goto out_unlock;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100203 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100204 }
205
Johannes Berge548c492012-09-04 17:08:23 +0200206 switch (sdata->vif.type) {
207 case NL80211_IFTYPE_STATION:
208 if (sdata->u.mgd.mfp != IEEE80211_MFP_DISABLED)
209 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
210 break;
211 case NL80211_IFTYPE_AP:
212 case NL80211_IFTYPE_AP_VLAN:
213 /* Keys without a station are used for TX only */
214 if (key->sta && test_sta_flag(key->sta, WLAN_STA_MFP))
215 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
216 break;
217 case NL80211_IFTYPE_ADHOC:
218 /* no MFP (yet) */
219 break;
220 case NL80211_IFTYPE_MESH_POINT:
221#ifdef CONFIG_MAC80211_MESH
222 if (sdata->u.mesh.security != IEEE80211_MESH_SEC_NONE)
223 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
224 break;
225#endif
226 case NL80211_IFTYPE_WDS:
227 case NL80211_IFTYPE_MONITOR:
228 case NL80211_IFTYPE_P2P_DEVICE:
229 case NL80211_IFTYPE_UNSPECIFIED:
230 case NUM_NL80211_IFTYPES:
231 case NL80211_IFTYPE_P2P_CLIENT:
232 case NL80211_IFTYPE_P2P_GO:
Rostislav Lisovy6e0bd6c2014-11-03 10:33:18 +0100233 case NL80211_IFTYPE_OCB:
Johannes Berge548c492012-09-04 17:08:23 +0200234 /* shouldn't happen */
235 WARN_ON_ONCE(1);
236 break;
237 }
238
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200239 if (sta)
240 sta->cipher_scheme = cs;
241
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300242 err = ieee80211_key_link(key, sdata, sta);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100243
Johannes Berg3b967662008-04-08 17:56:52 +0200244 out_unlock:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200245 mutex_unlock(&local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200246
247 return err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100248}
249
250static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berge31b8212010-10-05 19:39:30 +0200251 u8 key_idx, bool pairwise, const u8 *mac_addr)
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100252{
Johannes Berg5c0c3642011-05-12 14:31:49 +0200253 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
254 struct ieee80211_local *local = sdata->local;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100255 struct sta_info *sta;
Johannes Berg5c0c3642011-05-12 14:31:49 +0200256 struct ieee80211_key *key = NULL;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100257 int ret;
258
Johannes Berg5c0c3642011-05-12 14:31:49 +0200259 mutex_lock(&local->sta_mtx);
260 mutex_lock(&local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200261
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100262 if (mac_addr) {
Johannes Berg3b967662008-04-08 17:56:52 +0200263 ret = -ENOENT;
264
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100265 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100266 if (!sta)
Johannes Berg3b967662008-04-08 17:56:52 +0200267 goto out_unlock;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100268
Johannes Berg5c0c3642011-05-12 14:31:49 +0200269 if (pairwise)
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200270 key = key_mtx_dereference(local, sta->ptk[key_idx]);
Johannes Berg5c0c3642011-05-12 14:31:49 +0200271 else
Johannes Berg40b275b2011-05-13 14:15:49 +0200272 key = key_mtx_dereference(local, sta->gtk[key_idx]);
Johannes Berg5c0c3642011-05-12 14:31:49 +0200273 } else
Johannes Berg40b275b2011-05-13 14:15:49 +0200274 key = key_mtx_dereference(local, sdata->keys[key_idx]);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100275
Johannes Berg5c0c3642011-05-12 14:31:49 +0200276 if (!key) {
Johannes Berg3b967662008-04-08 17:56:52 +0200277 ret = -ENOENT;
278 goto out_unlock;
279 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100280
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100281 ieee80211_key_free(key, true);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100282
Johannes Berg3b967662008-04-08 17:56:52 +0200283 ret = 0;
284 out_unlock:
Johannes Berg5c0c3642011-05-12 14:31:49 +0200285 mutex_unlock(&local->key_mtx);
286 mutex_unlock(&local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200287
288 return ret;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100289}
290
Johannes Berg62da92f2007-12-19 02:03:31 +0100291static int ieee80211_get_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berge31b8212010-10-05 19:39:30 +0200292 u8 key_idx, bool pairwise, const u8 *mac_addr,
293 void *cookie,
Johannes Berg62da92f2007-12-19 02:03:31 +0100294 void (*callback)(void *cookie,
295 struct key_params *params))
296{
Johannes Berg14db74b2008-07-29 13:22:52 +0200297 struct ieee80211_sub_if_data *sdata;
Johannes Berg62da92f2007-12-19 02:03:31 +0100298 struct sta_info *sta = NULL;
299 u8 seq[6] = {0};
300 struct key_params params;
Johannes Berge31b8212010-10-05 19:39:30 +0200301 struct ieee80211_key *key = NULL;
Johannes Bergaba83a0b2011-07-06 21:59:39 +0200302 u64 pn64;
Johannes Berg62da92f2007-12-19 02:03:31 +0100303 u32 iv32;
304 u16 iv16;
305 int err = -ENOENT;
306
Johannes Berg14db74b2008-07-29 13:22:52 +0200307 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
308
Johannes Berg3b967662008-04-08 17:56:52 +0200309 rcu_read_lock();
310
Johannes Berg62da92f2007-12-19 02:03:31 +0100311 if (mac_addr) {
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100312 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berg62da92f2007-12-19 02:03:31 +0100313 if (!sta)
314 goto out;
315
Max Stepanov354e1592013-12-08 13:30:52 +0200316 if (pairwise && key_idx < NUM_DEFAULT_KEYS)
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200317 key = rcu_dereference(sta->ptk[key_idx]);
Max Stepanov31f1f4e2013-12-08 13:31:29 +0200318 else if (!pairwise &&
319 key_idx < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
Johannes Berga3836e02011-05-12 15:11:37 +0200320 key = rcu_dereference(sta->gtk[key_idx]);
Johannes Berg62da92f2007-12-19 02:03:31 +0100321 } else
Johannes Berga3836e02011-05-12 15:11:37 +0200322 key = rcu_dereference(sdata->keys[key_idx]);
Johannes Berg62da92f2007-12-19 02:03:31 +0100323
324 if (!key)
325 goto out;
326
327 memset(&params, 0, sizeof(params));
328
Johannes Berg97359d12010-08-10 09:46:38 +0200329 params.cipher = key->conf.cipher;
Johannes Berg62da92f2007-12-19 02:03:31 +0100330
Johannes Berg97359d12010-08-10 09:46:38 +0200331 switch (key->conf.cipher) {
332 case WLAN_CIPHER_SUITE_TKIP:
Harvey Harrisonb0f76b32008-05-14 16:26:19 -0700333 iv32 = key->u.tkip.tx.iv32;
334 iv16 = key->u.tkip.tx.iv16;
Johannes Berg62da92f2007-12-19 02:03:31 +0100335
Johannes Berg24487982009-04-23 18:52:52 +0200336 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
337 drv_get_tkip_seq(sdata->local,
338 key->conf.hw_key_idx,
339 &iv32, &iv16);
Johannes Berg62da92f2007-12-19 02:03:31 +0100340
341 seq[0] = iv16 & 0xff;
342 seq[1] = (iv16 >> 8) & 0xff;
343 seq[2] = iv32 & 0xff;
344 seq[3] = (iv32 >> 8) & 0xff;
345 seq[4] = (iv32 >> 16) & 0xff;
346 seq[5] = (iv32 >> 24) & 0xff;
347 params.seq = seq;
348 params.seq_len = 6;
349 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200350 case WLAN_CIPHER_SUITE_CCMP:
Johannes Bergaba83a0b2011-07-06 21:59:39 +0200351 pn64 = atomic64_read(&key->u.ccmp.tx_pn);
352 seq[0] = pn64;
353 seq[1] = pn64 >> 8;
354 seq[2] = pn64 >> 16;
355 seq[3] = pn64 >> 24;
356 seq[4] = pn64 >> 32;
357 seq[5] = pn64 >> 40;
Johannes Berg62da92f2007-12-19 02:03:31 +0100358 params.seq = seq;
359 params.seq_len = 6;
360 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200361 case WLAN_CIPHER_SUITE_AES_CMAC:
Johannes Berg75396ae2011-07-06 22:00:35 +0200362 pn64 = atomic64_read(&key->u.aes_cmac.tx_pn);
363 seq[0] = pn64;
364 seq[1] = pn64 >> 8;
365 seq[2] = pn64 >> 16;
366 seq[3] = pn64 >> 24;
367 seq[4] = pn64 >> 32;
368 seq[5] = pn64 >> 40;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200369 params.seq = seq;
370 params.seq_len = 6;
371 break;
Johannes Berg62da92f2007-12-19 02:03:31 +0100372 }
373
374 params.key = key->conf.key;
375 params.key_len = key->conf.keylen;
376
377 callback(cookie, &params);
378 err = 0;
379
380 out:
Johannes Berg3b967662008-04-08 17:56:52 +0200381 rcu_read_unlock();
Johannes Berg62da92f2007-12-19 02:03:31 +0100382 return err;
383}
384
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100385static int ieee80211_config_default_key(struct wiphy *wiphy,
386 struct net_device *dev,
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100387 u8 key_idx, bool uni,
388 bool multi)
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100389{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200390 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100391
Johannes Bergf7e01042010-12-09 19:49:02 +0100392 ieee80211_set_default_key(sdata, key_idx, uni, multi);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100393
394 return 0;
395}
396
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200397static int ieee80211_config_default_mgmt_key(struct wiphy *wiphy,
398 struct net_device *dev,
399 u8 key_idx)
400{
Johannes Berg66c52422010-07-22 13:58:51 +0200401 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200402
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200403 ieee80211_set_default_mgmt_key(sdata, key_idx);
404
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200405 return 0;
406}
407
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800408void sta_set_rate_info_tx(struct sta_info *sta,
409 const struct ieee80211_tx_rate *rate,
410 struct rate_info *rinfo)
411{
412 rinfo->flags = 0;
Johannes Berg8bc83c22012-11-09 18:38:32 +0100413 if (rate->flags & IEEE80211_TX_RC_MCS) {
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800414 rinfo->flags |= RATE_INFO_FLAGS_MCS;
Johannes Berg8bc83c22012-11-09 18:38:32 +0100415 rinfo->mcs = rate->idx;
416 } else if (rate->flags & IEEE80211_TX_RC_VHT_MCS) {
417 rinfo->flags |= RATE_INFO_FLAGS_VHT_MCS;
418 rinfo->mcs = ieee80211_rate_get_vht_mcs(rate);
419 rinfo->nss = ieee80211_rate_get_vht_nss(rate);
420 } else {
421 struct ieee80211_supported_band *sband;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200422 int shift = ieee80211_vif_get_shift(&sta->sdata->vif);
423 u16 brate;
424
Johannes Berg8bc83c22012-11-09 18:38:32 +0100425 sband = sta->local->hw.wiphy->bands[
426 ieee80211_get_sdata_band(sta->sdata)];
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200427 brate = sband->bitrates[rate->idx].bitrate;
428 rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift);
Johannes Berg8bc83c22012-11-09 18:38:32 +0100429 }
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800430 if (rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
431 rinfo->flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
Johannes Berg8bc83c22012-11-09 18:38:32 +0100432 if (rate->flags & IEEE80211_TX_RC_80_MHZ_WIDTH)
433 rinfo->flags |= RATE_INFO_FLAGS_80_MHZ_WIDTH;
434 if (rate->flags & IEEE80211_TX_RC_160_MHZ_WIDTH)
435 rinfo->flags |= RATE_INFO_FLAGS_160_MHZ_WIDTH;
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800436 if (rate->flags & IEEE80211_TX_RC_SHORT_GI)
437 rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800438}
439
Saravana003e6762012-11-28 18:29:38 +0530440void sta_set_rate_info_rx(struct sta_info *sta, struct rate_info *rinfo)
441{
442 rinfo->flags = 0;
443
444 if (sta->last_rx_rate_flag & RX_FLAG_HT) {
445 rinfo->flags |= RATE_INFO_FLAGS_MCS;
446 rinfo->mcs = sta->last_rx_rate_idx;
447 } else if (sta->last_rx_rate_flag & RX_FLAG_VHT) {
448 rinfo->flags |= RATE_INFO_FLAGS_VHT_MCS;
449 rinfo->nss = sta->last_rx_rate_vht_nss;
450 rinfo->mcs = sta->last_rx_rate_idx;
451 } else {
452 struct ieee80211_supported_band *sband;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200453 int shift = ieee80211_vif_get_shift(&sta->sdata->vif);
454 u16 brate;
Saravana003e6762012-11-28 18:29:38 +0530455
456 sband = sta->local->hw.wiphy->bands[
457 ieee80211_get_sdata_band(sta->sdata)];
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200458 brate = sband->bitrates[sta->last_rx_rate_idx].bitrate;
459 rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift);
Saravana003e6762012-11-28 18:29:38 +0530460 }
461
462 if (sta->last_rx_rate_flag & RX_FLAG_40MHZ)
463 rinfo->flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
464 if (sta->last_rx_rate_flag & RX_FLAG_SHORT_GI)
465 rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
Emmanuel Grumbach1b8d2422014-02-05 16:37:11 +0200466 if (sta->last_rx_rate_vht_flag & RX_VHT_FLAG_80MHZ)
Saravana003e6762012-11-28 18:29:38 +0530467 rinfo->flags |= RATE_INFO_FLAGS_80_MHZ_WIDTH;
Emmanuel Grumbach1b8d2422014-02-05 16:37:11 +0200468 if (sta->last_rx_rate_vht_flag & RX_VHT_FLAG_160MHZ)
Saravana003e6762012-11-28 18:29:38 +0530469 rinfo->flags |= RATE_INFO_FLAGS_160_MHZ_WIDTH;
470}
471
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100472static int ieee80211_dump_station(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +0200473 int idx, u8 *mac, struct station_info *sinfo)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100474{
Johannes Berg3b53fde82009-11-16 12:00:37 +0100475 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300476 struct ieee80211_local *local = sdata->local;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100477 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100478 int ret = -ENOENT;
479
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300480 mutex_lock(&local->sta_mtx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100481
Johannes Berg3b53fde82009-11-16 12:00:37 +0100482 sta = sta_info_get_by_idx(sdata, idx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100483 if (sta) {
484 ret = 0;
Johannes Berg17741cd2008-09-11 00:02:02 +0200485 memcpy(mac, sta->sta.addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100486 sta_set_sinfo(sta, sinfo);
487 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100488
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300489 mutex_unlock(&local->sta_mtx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100490
Johannes Bergd0709a62008-02-25 16:27:46 +0100491 return ret;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100492}
493
Holger Schurig12897232010-04-19 10:23:57 +0200494static int ieee80211_dump_survey(struct wiphy *wiphy, struct net_device *dev,
495 int idx, struct survey_info *survey)
496{
497 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
498
Holger Schurig12897232010-04-19 10:23:57 +0200499 return drv_get_survey(local, idx, survey);
500}
501
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100502static int ieee80211_get_station(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +0200503 const u8 *mac, struct station_info *sinfo)
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100504{
Johannes Bergabe60632009-11-25 17:46:18 +0100505 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300506 struct ieee80211_local *local = sdata->local;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100507 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100508 int ret = -ENOENT;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100509
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300510 mutex_lock(&local->sta_mtx);
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100511
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100512 sta = sta_info_get_bss(sdata, mac);
Johannes Bergd0709a62008-02-25 16:27:46 +0100513 if (sta) {
514 ret = 0;
515 sta_set_sinfo(sta, sinfo);
516 }
517
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300518 mutex_unlock(&local->sta_mtx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100519
520 return ret;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100521}
522
Johannes Berge8c9bd52012-06-06 08:18:22 +0200523static int ieee80211_set_monitor_channel(struct wiphy *wiphy,
Johannes Berg683b6d32012-11-08 21:25:48 +0100524 struct cfg80211_chan_def *chandef)
Johannes Berge8c9bd52012-06-06 08:18:22 +0200525{
Johannes Berg55de9082012-07-26 17:24:39 +0200526 struct ieee80211_local *local = wiphy_priv(wiphy);
527 struct ieee80211_sub_if_data *sdata;
528 int ret = 0;
529
Johannes Berg4bf88532012-11-09 11:39:59 +0100530 if (cfg80211_chandef_identical(&local->monitor_chandef, chandef))
Johannes Berg55de9082012-07-26 17:24:39 +0200531 return 0;
532
Johannes Berg34a37402013-12-18 09:43:33 +0100533 mutex_lock(&local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +0200534 mutex_lock(&local->iflist_mtx);
535 if (local->use_chanctx) {
536 sdata = rcu_dereference_protected(
537 local->monitor_sdata,
538 lockdep_is_held(&local->iflist_mtx));
539 if (sdata) {
540 ieee80211_vif_release_channel(sdata);
Johannes Berg4bf88532012-11-09 11:39:59 +0100541 ret = ieee80211_vif_use_channel(sdata, chandef,
Johannes Berg55de9082012-07-26 17:24:39 +0200542 IEEE80211_CHANCTX_EXCLUSIVE);
543 }
544 } else if (local->open_count == local->monitors) {
Karl Beldan675a0b02013-03-25 16:26:57 +0100545 local->_oper_chandef = *chandef;
Johannes Berg55de9082012-07-26 17:24:39 +0200546 ieee80211_hw_config(local, 0);
547 }
548
Johannes Berg4bf88532012-11-09 11:39:59 +0100549 if (ret == 0)
550 local->monitor_chandef = *chandef;
Johannes Berg55de9082012-07-26 17:24:39 +0200551 mutex_unlock(&local->iflist_mtx);
Johannes Berg34a37402013-12-18 09:43:33 +0100552 mutex_unlock(&local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +0200553
554 return ret;
Johannes Berge8c9bd52012-06-06 08:18:22 +0200555}
556
Arik Nemtsov02945822011-11-10 11:28:57 +0200557static int ieee80211_set_probe_resp(struct ieee80211_sub_if_data *sdata,
Michal Kazioraf296bd2014-06-05 14:21:36 +0200558 const u8 *resp, size_t resp_len,
559 const struct ieee80211_csa_settings *csa)
Arik Nemtsov02945822011-11-10 11:28:57 +0200560{
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300561 struct probe_resp *new, *old;
Arik Nemtsov02945822011-11-10 11:28:57 +0200562
563 if (!resp || !resp_len)
Sujith Manoharanaba4e6f2012-08-22 14:21:07 +0530564 return 1;
Arik Nemtsov02945822011-11-10 11:28:57 +0200565
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100566 old = sdata_dereference(sdata->u.ap.probe_resp, sdata);
Arik Nemtsov02945822011-11-10 11:28:57 +0200567
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300568 new = kzalloc(sizeof(struct probe_resp) + resp_len, GFP_KERNEL);
Arik Nemtsov02945822011-11-10 11:28:57 +0200569 if (!new)
570 return -ENOMEM;
571
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300572 new->len = resp_len;
573 memcpy(new->data, resp, resp_len);
Arik Nemtsov02945822011-11-10 11:28:57 +0200574
Michal Kazioraf296bd2014-06-05 14:21:36 +0200575 if (csa)
576 memcpy(new->csa_counter_offsets, csa->counter_offsets_presp,
577 csa->n_counter_offsets_presp *
578 sizeof(new->csa_counter_offsets[0]));
579
Arik Nemtsov02945822011-11-10 11:28:57 +0200580 rcu_assign_pointer(sdata->u.ap.probe_resp, new);
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300581 if (old)
582 kfree_rcu(old, rcu_head);
Arik Nemtsov02945822011-11-10 11:28:57 +0200583
584 return 0;
585}
586
Luciano Coelho0ae07962013-12-08 09:42:25 +0200587static int ieee80211_assign_beacon(struct ieee80211_sub_if_data *sdata,
Michal Kazioraf296bd2014-06-05 14:21:36 +0200588 struct cfg80211_beacon_data *params,
589 const struct ieee80211_csa_settings *csa)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100590{
591 struct beacon_data *new, *old;
592 int new_head_len, new_tail_len;
Johannes Berg88600202012-02-13 15:17:18 +0100593 int size, err;
594 u32 changed = BSS_CHANGED_BEACON;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100595
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100596 old = sdata_dereference(sdata->u.ap.beacon, sdata);
597
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100598
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100599 /* Need to have a beacon head if we don't have one yet */
600 if (!params->head && !old)
Johannes Berg88600202012-02-13 15:17:18 +0100601 return -EINVAL;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100602
603 /* new or old head? */
604 if (params->head)
605 new_head_len = params->head_len;
606 else
607 new_head_len = old->head_len;
608
609 /* new or old tail? */
610 if (params->tail || !old)
611 /* params->tail_len will be zero for !params->tail */
612 new_tail_len = params->tail_len;
613 else
614 new_tail_len = old->tail_len;
615
616 size = sizeof(*new) + new_head_len + new_tail_len;
617
618 new = kzalloc(size, GFP_KERNEL);
619 if (!new)
620 return -ENOMEM;
621
622 /* start filling the new info now */
623
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100624 /*
625 * pointers go into the block we allocated,
626 * memory is | beacon_data | head | tail |
627 */
628 new->head = ((u8 *) new) + sizeof(*new);
629 new->tail = new->head + new_head_len;
630 new->head_len = new_head_len;
631 new->tail_len = new_tail_len;
632
Michal Kazioraf296bd2014-06-05 14:21:36 +0200633 if (csa) {
634 new->csa_current_counter = csa->count;
635 memcpy(new->csa_counter_offsets, csa->counter_offsets_beacon,
636 csa->n_counter_offsets_beacon *
637 sizeof(new->csa_counter_offsets[0]));
638 }
639
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100640 /* copy in head */
641 if (params->head)
642 memcpy(new->head, params->head, new_head_len);
643 else
644 memcpy(new->head, old->head, new_head_len);
645
646 /* copy in optional tail */
647 if (params->tail)
648 memcpy(new->tail, params->tail, new_tail_len);
649 else
650 if (old)
651 memcpy(new->tail, old->tail, new_tail_len);
652
Johannes Berg88600202012-02-13 15:17:18 +0100653 err = ieee80211_set_probe_resp(sdata, params->probe_resp,
Michal Kazioraf296bd2014-06-05 14:21:36 +0200654 params->probe_resp_len, csa);
Johannes Berg88600202012-02-13 15:17:18 +0100655 if (err < 0)
656 return err;
657 if (err == 0)
658 changed |= BSS_CHANGED_AP_PROBE_RESP;
Johannes Berg19885c42010-02-05 11:45:06 +0100659
Eric Dumazetcf778b02012-01-12 04:41:32 +0000660 rcu_assign_pointer(sdata->u.ap.beacon, new);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100661
Johannes Berg88600202012-02-13 15:17:18 +0100662 if (old)
663 kfree_rcu(old, rcu_head);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100664
Johannes Berg88600202012-02-13 15:17:18 +0100665 return changed;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100666}
667
Johannes Berg88600202012-02-13 15:17:18 +0100668static int ieee80211_start_ap(struct wiphy *wiphy, struct net_device *dev,
669 struct cfg80211_ap_settings *params)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100670{
Johannes Berg88600202012-02-13 15:17:18 +0100671 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg34a37402013-12-18 09:43:33 +0100672 struct ieee80211_local *local = sdata->local;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100673 struct beacon_data *old;
Johannes Berg665c93a2011-11-04 11:18:11 +0100674 struct ieee80211_sub_if_data *vlan;
Johannes Berg88600202012-02-13 15:17:18 +0100675 u32 changed = BSS_CHANGED_BEACON_INT |
676 BSS_CHANGED_BEACON_ENABLED |
677 BSS_CHANGED_BEACON |
Johannes Berg339afbf2012-11-14 15:21:17 +0100678 BSS_CHANGED_SSID |
Johannes Berg4bcc56b2014-11-13 11:23:53 +0100679 BSS_CHANGED_P2P_PS |
680 BSS_CHANGED_TXPOWER;
Johannes Berg88600202012-02-13 15:17:18 +0100681 int err;
Johannes Berg14db74b2008-07-29 13:22:52 +0200682
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100683 old = sdata_dereference(sdata->u.ap.beacon, sdata);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100684 if (old)
685 return -EALREADY;
686
Eliad Pellerf6993172014-09-10 14:07:35 +0300687 switch (params->smps_mode) {
688 case NL80211_SMPS_OFF:
689 sdata->smps_mode = IEEE80211_SMPS_OFF;
690 break;
691 case NL80211_SMPS_STATIC:
692 sdata->smps_mode = IEEE80211_SMPS_STATIC;
693 break;
694 case NL80211_SMPS_DYNAMIC:
695 sdata->smps_mode = IEEE80211_SMPS_DYNAMIC;
696 break;
697 default:
698 return -EINVAL;
699 }
Johannes Berg04ecd252012-09-11 14:34:12 +0200700 sdata->needed_rx_chains = sdata->local->rx_chains;
701
Johannes Berg34a37402013-12-18 09:43:33 +0100702 mutex_lock(&local->mtx);
Johannes Berg4bf88532012-11-09 11:39:59 +0100703 err = ieee80211_vif_use_channel(sdata, &params->chandef,
Johannes Berg55de9082012-07-26 17:24:39 +0200704 IEEE80211_CHANCTX_SHARED);
Michal Kazior4e141da2014-03-05 13:14:08 +0100705 if (!err)
706 ieee80211_vif_copy_chanctx_to_vlans(sdata, false);
Johannes Berg34a37402013-12-18 09:43:33 +0100707 mutex_unlock(&local->mtx);
Johannes Bergaa430da2012-05-16 23:50:18 +0200708 if (err)
709 return err;
710
Johannes Berg665c93a2011-11-04 11:18:11 +0100711 /*
712 * Apply control port protocol, this allows us to
713 * not encrypt dynamic WEP control frames.
714 */
715 sdata->control_port_protocol = params->crypto.control_port_ethertype;
716 sdata->control_port_no_encrypt = params->crypto.control_port_no_encrypt;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200717 sdata->encrypt_headroom = ieee80211_cs_headroom(sdata->local,
718 &params->crypto,
719 sdata->vif.type);
720
Johannes Berg665c93a2011-11-04 11:18:11 +0100721 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list) {
722 vlan->control_port_protocol =
723 params->crypto.control_port_ethertype;
724 vlan->control_port_no_encrypt =
725 params->crypto.control_port_no_encrypt;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200726 vlan->encrypt_headroom =
727 ieee80211_cs_headroom(sdata->local,
728 &params->crypto,
729 vlan->vif.type);
Johannes Berg665c93a2011-11-04 11:18:11 +0100730 }
731
Johannes Berg88600202012-02-13 15:17:18 +0100732 sdata->vif.bss_conf.beacon_int = params->beacon_interval;
733 sdata->vif.bss_conf.dtim_period = params->dtim_period;
Johannes Bergd6a83222012-12-14 14:06:28 +0100734 sdata->vif.bss_conf.enable_beacon = true;
Johannes Berg88600202012-02-13 15:17:18 +0100735
736 sdata->vif.bss_conf.ssid_len = params->ssid_len;
737 if (params->ssid_len)
738 memcpy(sdata->vif.bss_conf.ssid, params->ssid,
739 params->ssid_len);
740 sdata->vif.bss_conf.hidden_ssid =
741 (params->hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE);
742
Janusz Dziedzic67baf662013-03-21 15:47:56 +0100743 memset(&sdata->vif.bss_conf.p2p_noa_attr, 0,
744 sizeof(sdata->vif.bss_conf.p2p_noa_attr));
745 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow =
746 params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
747 if (params->p2p_opp_ps)
748 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
749 IEEE80211_P2P_OPPPS_ENABLE_BIT;
Johannes Berg339afbf2012-11-14 15:21:17 +0100750
Michal Kazioraf296bd2014-06-05 14:21:36 +0200751 err = ieee80211_assign_beacon(sdata, &params->beacon, NULL);
Emmanuel Grumbach0297ea12014-01-27 11:07:42 +0200752 if (err < 0) {
753 ieee80211_vif_release_channel(sdata);
Johannes Berg88600202012-02-13 15:17:18 +0100754 return err;
Emmanuel Grumbach0297ea12014-01-27 11:07:42 +0200755 }
Johannes Berg88600202012-02-13 15:17:18 +0100756 changed |= err;
757
Johannes Berg10416382012-10-19 15:44:42 +0200758 err = drv_start_ap(sdata->local, sdata);
759 if (err) {
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100760 old = sdata_dereference(sdata->u.ap.beacon, sdata);
761
Johannes Berg10416382012-10-19 15:44:42 +0200762 if (old)
763 kfree_rcu(old, rcu_head);
764 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
Emmanuel Grumbach0297ea12014-01-27 11:07:42 +0200765 ieee80211_vif_release_channel(sdata);
Johannes Berg10416382012-10-19 15:44:42 +0200766 return err;
767 }
768
Thomas Pedersen057d5f42013-12-19 10:25:15 -0800769 ieee80211_recalc_dtim(local, sdata);
Johannes Berg88600202012-02-13 15:17:18 +0100770 ieee80211_bss_info_change_notify(sdata, changed);
771
Johannes Berg3edaf3e2012-04-03 10:24:00 +0200772 netif_carrier_on(dev);
773 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
774 netif_carrier_on(vlan->dev);
775
Johannes Berg665c93a2011-11-04 11:18:11 +0100776 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100777}
778
Johannes Berg88600202012-02-13 15:17:18 +0100779static int ieee80211_change_beacon(struct wiphy *wiphy, struct net_device *dev,
780 struct cfg80211_beacon_data *params)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100781{
Johannes Berg14db74b2008-07-29 13:22:52 +0200782 struct ieee80211_sub_if_data *sdata;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100783 struct beacon_data *old;
Johannes Berg88600202012-02-13 15:17:18 +0100784 int err;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100785
Johannes Berg14db74b2008-07-29 13:22:52 +0200786 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Michal Kaziordbd72852014-01-29 07:56:21 +0100787 sdata_assert_lock(sdata);
Johannes Berg14db74b2008-07-29 13:22:52 +0200788
Simon Wunderlich73da7d52013-07-11 16:09:06 +0200789 /* don't allow changing the beacon while CSA is in place - offset
790 * of channel switch counter may change
791 */
792 if (sdata->vif.csa_active)
793 return -EBUSY;
794
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100795 old = sdata_dereference(sdata->u.ap.beacon, sdata);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100796 if (!old)
797 return -ENOENT;
798
Michal Kazioraf296bd2014-06-05 14:21:36 +0200799 err = ieee80211_assign_beacon(sdata, params, NULL);
Johannes Berg88600202012-02-13 15:17:18 +0100800 if (err < 0)
801 return err;
802 ieee80211_bss_info_change_notify(sdata, err);
803 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100804}
805
Johannes Berg88600202012-02-13 15:17:18 +0100806static int ieee80211_stop_ap(struct wiphy *wiphy, struct net_device *dev)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100807{
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200808 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
809 struct ieee80211_sub_if_data *vlan;
810 struct ieee80211_local *local = sdata->local;
811 struct beacon_data *old_beacon;
812 struct probe_resp *old_probe_resp;
Janusz Dziedzicd2859df2013-11-06 13:55:51 +0100813 struct cfg80211_chan_def chandef;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100814
Michal Kaziordbd72852014-01-29 07:56:21 +0100815 sdata_assert_lock(sdata);
816
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100817 old_beacon = sdata_dereference(sdata->u.ap.beacon, sdata);
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200818 if (!old_beacon)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100819 return -ENOENT;
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100820 old_probe_resp = sdata_dereference(sdata->u.ap.probe_resp, sdata);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100821
Simon Wunderlich73da7d52013-07-11 16:09:06 +0200822 /* abort any running channel switch */
Michal Kazior59af6922014-04-09 15:10:59 +0200823 mutex_lock(&local->mtx);
Simon Wunderlich73da7d52013-07-11 16:09:06 +0200824 sdata->vif.csa_active = false;
Luciano Coelhoa46992b2014-06-13 16:30:07 +0300825 if (sdata->csa_block_tx) {
826 ieee80211_wake_vif_queues(local, sdata,
827 IEEE80211_QUEUE_STOP_REASON_CSA);
828 sdata->csa_block_tx = false;
829 }
830
Michal Kazior59af6922014-04-09 15:10:59 +0200831 mutex_unlock(&local->mtx);
832
Simon Wunderlich1f3b8a22013-11-21 18:19:53 +0100833 kfree(sdata->u.ap.next_beacon);
834 sdata->u.ap.next_beacon = NULL;
835
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200836 /* turn off carrier for this interface and dependent VLANs */
Johannes Berg3edaf3e2012-04-03 10:24:00 +0200837 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
838 netif_carrier_off(vlan->dev);
839 netif_carrier_off(dev);
840
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200841 /* remove beacon and probe response */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000842 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200843 RCU_INIT_POINTER(sdata->u.ap.probe_resp, NULL);
844 kfree_rcu(old_beacon, rcu_head);
845 if (old_probe_resp)
846 kfree_rcu(old_probe_resp, rcu_head);
Emmanuel Grumbach8ffcc702014-01-23 14:28:16 +0200847 sdata->u.ap.driver_smps_mode = IEEE80211_SMPS_OFF;
Johannes Berg88600202012-02-13 15:17:18 +0100848
Johannes Berge7162512013-12-04 23:18:37 +0100849 __sta_info_flush(sdata, true);
Johannes Berg7907c7d2013-12-04 23:47:09 +0100850 ieee80211_free_keys(sdata, true);
Johannes Berg75de9112012-12-14 14:56:03 +0100851
Johannes Bergd6a83222012-12-14 14:06:28 +0100852 sdata->vif.bss_conf.enable_beacon = false;
Marek Puzyniak0eabccd2013-04-10 13:47:45 +0200853 sdata->vif.bss_conf.ssid_len = 0;
Johannes Bergd6a83222012-12-14 14:06:28 +0100854 clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED, &sdata->state);
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200855 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
Johannes Berg88600202012-02-13 15:17:18 +0100856
Simon Wunderlicha6b368f2013-06-11 10:44:39 +0200857 if (sdata->wdev.cac_started) {
Janusz Dziedzicd2859df2013-11-06 13:55:51 +0100858 chandef = sdata->vif.bss_conf.chandef;
Simon Wunderlicha6b368f2013-06-11 10:44:39 +0200859 cancel_delayed_work_sync(&sdata->dfs_cac_timer_work);
Janusz Dziedzicd2859df2013-11-06 13:55:51 +0100860 cfg80211_cac_event(sdata->dev, &chandef,
861 NL80211_RADAR_CAC_ABORTED,
Simon Wunderlicha6b368f2013-06-11 10:44:39 +0200862 GFP_KERNEL);
863 }
864
Johannes Berg10416382012-10-19 15:44:42 +0200865 drv_stop_ap(sdata->local, sdata);
866
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200867 /* free all potentially still buffered bcast frames */
868 local->total_ps_buffered -= skb_queue_len(&sdata->u.ap.ps.bc_buf);
869 skb_queue_purge(&sdata->u.ap.ps.bc_buf);
870
Johannes Berg34a37402013-12-18 09:43:33 +0100871 mutex_lock(&local->mtx);
Michal Kazior4e141da2014-03-05 13:14:08 +0100872 ieee80211_vif_copy_chanctx_to_vlans(sdata, true);
Johannes Berg55de9082012-07-26 17:24:39 +0200873 ieee80211_vif_release_channel(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +0100874 mutex_unlock(&local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +0200875
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200876 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100877}
878
Johannes Berg4fd69312007-12-19 02:03:35 +0100879/* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */
880struct iapp_layer2_update {
881 u8 da[ETH_ALEN]; /* broadcast */
882 u8 sa[ETH_ALEN]; /* STA addr */
883 __be16 len; /* 6 */
884 u8 dsap; /* 0 */
885 u8 ssap; /* 0 */
886 u8 control;
887 u8 xid_info[3];
Eric Dumazetbc105022010-06-03 03:21:52 -0700888} __packed;
Johannes Berg4fd69312007-12-19 02:03:35 +0100889
890static void ieee80211_send_layer2_update(struct sta_info *sta)
891{
892 struct iapp_layer2_update *msg;
893 struct sk_buff *skb;
894
895 /* Send Level 2 Update Frame to update forwarding tables in layer 2
896 * bridge devices */
897
898 skb = dev_alloc_skb(sizeof(*msg));
899 if (!skb)
900 return;
901 msg = (struct iapp_layer2_update *)skb_put(skb, sizeof(*msg));
902
903 /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID)
904 * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */
905
Johannes Berge83e6542012-07-13 16:23:07 +0200906 eth_broadcast_addr(msg->da);
Johannes Berg17741cd2008-09-11 00:02:02 +0200907 memcpy(msg->sa, sta->sta.addr, ETH_ALEN);
Johannes Berg4fd69312007-12-19 02:03:35 +0100908 msg->len = htons(6);
909 msg->dsap = 0;
910 msg->ssap = 0x01; /* NULL LSAP, CR Bit: Response */
911 msg->control = 0xaf; /* XID response lsb.1111F101.
912 * F=0 (no poll command; unsolicited frame) */
913 msg->xid_info[0] = 0x81; /* XID format identifier */
914 msg->xid_info[1] = 1; /* LLC types/classes: Type 1 LLC */
915 msg->xid_info[2] = 0; /* XID sender's receive window size (RW) */
916
Johannes Bergd0709a62008-02-25 16:27:46 +0100917 skb->dev = sta->sdata->dev;
918 skb->protocol = eth_type_trans(skb, sta->sdata->dev);
Johannes Berg4fd69312007-12-19 02:03:35 +0100919 memset(skb->cb, 0, sizeof(skb->cb));
John W. Linville06ee1c22010-07-19 11:52:59 -0400920 netif_rx_ni(skb);
Johannes Berg4fd69312007-12-19 02:03:35 +0100921}
922
Johannes Bergd582cff2012-10-26 17:53:44 +0200923static int sta_apply_auth_flags(struct ieee80211_local *local,
924 struct sta_info *sta,
925 u32 mask, u32 set)
926{
927 int ret;
928
929 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
930 set & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
931 !test_sta_flag(sta, WLAN_STA_AUTH)) {
932 ret = sta_info_move_state(sta, IEEE80211_STA_AUTH);
933 if (ret)
934 return ret;
935 }
936
937 if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
938 set & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
939 !test_sta_flag(sta, WLAN_STA_ASSOC)) {
940 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
941 if (ret)
942 return ret;
943 }
944
945 if (mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
946 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED))
947 ret = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
948 else if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
949 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
950 else
951 ret = 0;
952 if (ret)
953 return ret;
954 }
955
956 if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
957 !(set & BIT(NL80211_STA_FLAG_ASSOCIATED)) &&
958 test_sta_flag(sta, WLAN_STA_ASSOC)) {
959 ret = sta_info_move_state(sta, IEEE80211_STA_AUTH);
960 if (ret)
961 return ret;
962 }
963
964 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
965 !(set & BIT(NL80211_STA_FLAG_AUTHENTICATED)) &&
966 test_sta_flag(sta, WLAN_STA_AUTH)) {
967 ret = sta_info_move_state(sta, IEEE80211_STA_NONE);
968 if (ret)
969 return ret;
970 }
971
972 return 0;
973}
974
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100975static int sta_apply_parameters(struct ieee80211_local *local,
976 struct sta_info *sta,
977 struct station_parameters *params)
Johannes Berg4fd69312007-12-19 02:03:35 +0100978{
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100979 int ret = 0;
Johannes Berg8318d782008-01-24 19:38:38 +0100980 struct ieee80211_supported_band *sband;
Johannes Bergd0709a62008-02-25 16:27:46 +0100981 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berg55de9082012-07-26 17:24:39 +0200982 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
Johannes Bergeccb8e82009-05-11 21:57:56 +0300983 u32 mask, set;
Johannes Berg4fd69312007-12-19 02:03:35 +0100984
Johannes Berg55de9082012-07-26 17:24:39 +0200985 sband = local->hw.wiphy->bands[band];
Johannes Bergae5eb022008-10-14 16:58:37 +0200986
Johannes Bergeccb8e82009-05-11 21:57:56 +0300987 mask = params->sta_flags_mask;
988 set = params->sta_flags_set;
Johannes Berg73651ee2008-02-25 16:27:47 +0100989
Johannes Bergd582cff2012-10-26 17:53:44 +0200990 if (ieee80211_vif_is_mesh(&sdata->vif)) {
991 /*
992 * In mesh mode, ASSOCIATED isn't part of the nl80211
993 * API but must follow AUTHENTICATED for driver state.
994 */
995 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED))
996 mask |= BIT(NL80211_STA_FLAG_ASSOCIATED);
997 if (set & BIT(NL80211_STA_FLAG_AUTHENTICATED))
998 set |= BIT(NL80211_STA_FLAG_ASSOCIATED);
Johannes Berg77ee7c82013-02-15 00:48:33 +0100999 } else if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1000 /*
1001 * TDLS -- everything follows authorized, but
1002 * only becoming authorized is possible, not
1003 * going back
1004 */
1005 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
1006 set |= BIT(NL80211_STA_FLAG_AUTHENTICATED) |
1007 BIT(NL80211_STA_FLAG_ASSOCIATED);
1008 mask |= BIT(NL80211_STA_FLAG_AUTHENTICATED) |
1009 BIT(NL80211_STA_FLAG_ASSOCIATED);
1010 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001011 }
1012
Arik Nemtsov68885a52014-06-11 17:18:19 +03001013 /* auth flags will be set later for TDLS stations */
1014 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1015 ret = sta_apply_auth_flags(local, sta, mask, set);
1016 if (ret)
1017 return ret;
1018 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001019
Johannes Bergeccb8e82009-05-11 21:57:56 +03001020 if (mask & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) {
Johannes Bergeccb8e82009-05-11 21:57:56 +03001021 if (set & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001022 set_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
1023 else
1024 clear_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001025 }
1026
Johannes Berga74a8c82014-07-22 14:50:47 +02001027 if (mask & BIT(NL80211_STA_FLAG_WME))
1028 sta->sta.wme = set & BIT(NL80211_STA_FLAG_WME);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001029
1030 if (mask & BIT(NL80211_STA_FLAG_MFP)) {
Johannes Bergeccb8e82009-05-11 21:57:56 +03001031 if (set & BIT(NL80211_STA_FLAG_MFP))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001032 set_sta_flag(sta, WLAN_STA_MFP);
1033 else
1034 clear_sta_flag(sta, WLAN_STA_MFP);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001035 }
Javier Cardonab39c48f2011-04-07 15:08:30 -07001036
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001037 if (mask & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001038 if (set & BIT(NL80211_STA_FLAG_TDLS_PEER))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001039 set_sta_flag(sta, WLAN_STA_TDLS_PEER);
1040 else
1041 clear_sta_flag(sta, WLAN_STA_TDLS_PEER);
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001042 }
Johannes Bergeccb8e82009-05-11 21:57:56 +03001043
Arik Nemtsov9041c1f2014-11-09 18:50:15 +02001044 /* mark TDLS channel switch support, if the AP allows it */
1045 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER) &&
1046 !sdata->u.mgd.tdls_chan_switch_prohibited &&
1047 params->ext_capab_len >= 4 &&
1048 params->ext_capab[3] & WLAN_EXT_CAPA4_TDLS_CHAN_SWITCH)
1049 set_sta_flag(sta, WLAN_STA_TDLS_CHAN_SWITCH);
1050
Johannes Berg3b9ce802011-09-27 20:56:12 +02001051 if (params->sta_modify_mask & STATION_PARAM_APPLY_UAPSD) {
1052 sta->sta.uapsd_queues = params->uapsd_queues;
1053 sta->sta.max_sp = params->max_sp;
1054 }
Eliad Peller9533b4a2011-08-23 14:37:47 +03001055
Johannes Berg73651ee2008-02-25 16:27:47 +01001056 /*
Johannes Berg51b50fb2009-05-24 16:42:30 +02001057 * cfg80211 validates this (1-2007) and allows setting the AID
1058 * only when creating a new station entry
1059 */
1060 if (params->aid)
1061 sta->sta.aid = params->aid;
1062
1063 /*
Johannes Bergba23d202012-12-27 17:32:09 +01001064 * Some of the following updates would be racy if called on an
1065 * existing station, via ieee80211_change_station(). However,
1066 * all such changes are rejected by cfg80211 except for updates
1067 * changing the supported rates on an existing but not yet used
1068 * TDLS peer.
Johannes Berg73651ee2008-02-25 16:27:47 +01001069 */
1070
Johannes Berg4fd69312007-12-19 02:03:35 +01001071 if (params->listen_interval >= 0)
1072 sta->listen_interval = params->listen_interval;
1073
1074 if (params->supported_rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001075 ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef,
1076 sband, params->supported_rates,
1077 params->supported_rates_len,
1078 &sta->sta.supp_rates[band]);
Johannes Berg4fd69312007-12-19 02:03:35 +01001079 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001080
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001081 if (params->ht_capa)
Ben Greearef96a8422011-11-18 11:32:00 -08001082 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
Johannes Berge1a0c6b2013-02-07 11:47:44 +01001083 params->ht_capa, sta);
Jouni Malinen36aedc902008-08-25 11:58:58 +03001084
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +00001085 if (params->vht_capa)
1086 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
Johannes Berg4a342152013-02-07 11:58:58 +01001087 params->vht_capa, sta);
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +00001088
Marek Kwaczynskib1bce142014-02-03 14:44:44 +01001089 if (params->opmode_notif_used) {
Marek Kwaczynskib1bce142014-02-03 14:44:44 +01001090 /* returned value is only needed for rc update, but the
1091 * rc isn't initialized here yet, so ignore it
1092 */
1093 __ieee80211_vht_handle_opmode(sdata, sta,
1094 params->opmode_notif,
1095 band, false);
1096 }
1097
Javier Cardona9c3990a2011-05-03 16:57:11 -07001098 if (ieee80211_vif_is_mesh(&sdata->vif)) {
Yogesh Ashok Powar4daf50f2011-05-12 09:32:17 -04001099#ifdef CONFIG_MAC80211_MESH
Thomas Pedersen39886b62013-02-13 12:14:19 -08001100 u32 changed = 0;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001101
1102 if (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE) {
Javier Cardona9c3990a2011-05-03 16:57:11 -07001103 switch (params->plink_state) {
Javier Cardona57cf8042011-05-13 10:45:43 -07001104 case NL80211_PLINK_ESTAB:
Marco Porsch1617bab2013-01-07 16:04:49 +01001105 if (sta->plink_state != NL80211_PLINK_ESTAB)
1106 changed = mesh_plink_inc_estab_count(
1107 sdata);
1108 sta->plink_state = params->plink_state;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001109
1110 ieee80211_mps_sta_status_update(sta);
Thomas Pedersen39886b62013-02-13 12:14:19 -08001111 changed |= ieee80211_mps_set_sta_local_pm(sta,
1112 sdata->u.mesh.mshcfg.power_mode);
Marco Porsch1617bab2013-01-07 16:04:49 +01001113 break;
1114 case NL80211_PLINK_LISTEN:
Javier Cardona57cf8042011-05-13 10:45:43 -07001115 case NL80211_PLINK_BLOCKED:
Marco Porsch1617bab2013-01-07 16:04:49 +01001116 case NL80211_PLINK_OPN_SNT:
1117 case NL80211_PLINK_OPN_RCVD:
1118 case NL80211_PLINK_CNF_RCVD:
1119 case NL80211_PLINK_HOLDING:
1120 if (sta->plink_state == NL80211_PLINK_ESTAB)
1121 changed = mesh_plink_dec_estab_count(
1122 sdata);
Javier Cardona9c3990a2011-05-03 16:57:11 -07001123 sta->plink_state = params->plink_state;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001124
1125 ieee80211_mps_sta_status_update(sta);
Marco Porsch446075d2013-10-15 12:29:24 +02001126 changed |= ieee80211_mps_set_sta_local_pm(sta,
1127 NL80211_MESH_POWER_UNKNOWN);
Javier Cardona9c3990a2011-05-03 16:57:11 -07001128 break;
1129 default:
1130 /* nothing */
1131 break;
1132 }
Johannes Berg77ee7c82013-02-15 00:48:33 +01001133 }
1134
1135 switch (params->plink_action) {
1136 case NL80211_PLINK_ACTION_NO_ACTION:
1137 /* nothing */
1138 break;
1139 case NL80211_PLINK_ACTION_OPEN:
1140 changed |= mesh_plink_open(sta);
1141 break;
1142 case NL80211_PLINK_ACTION_BLOCK:
1143 changed |= mesh_plink_block(sta);
1144 break;
Marco Porsch1617bab2013-01-07 16:04:49 +01001145 }
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001146
1147 if (params->local_pm)
Thomas Pedersen39886b62013-02-13 12:14:19 -08001148 changed |=
1149 ieee80211_mps_set_sta_local_pm(sta,
1150 params->local_pm);
Javier Lopez6c751ef2013-11-06 10:04:29 -08001151 ieee80211_mbss_info_change_notify(sdata, changed);
Yogesh Ashok Powar4daf50f2011-05-12 09:32:17 -04001152#endif
Johannes Berg902acc72008-02-23 15:17:19 +01001153 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001154
Arik Nemtsov68885a52014-06-11 17:18:19 +03001155 /* set the STA state after all sta info from usermode has been set */
1156 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1157 ret = sta_apply_auth_flags(local, sta, mask, set);
1158 if (ret)
1159 return ret;
1160 }
1161
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001162 return 0;
Johannes Berg4fd69312007-12-19 02:03:35 +01001163}
1164
1165static int ieee80211_add_station(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001166 const u8 *mac,
1167 struct station_parameters *params)
Johannes Berg4fd69312007-12-19 02:03:35 +01001168{
Johannes Berg14db74b2008-07-29 13:22:52 +02001169 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +01001170 struct sta_info *sta;
1171 struct ieee80211_sub_if_data *sdata;
Johannes Berg73651ee2008-02-25 16:27:47 +01001172 int err;
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001173 int layer2_update;
Johannes Berg4fd69312007-12-19 02:03:35 +01001174
Johannes Berg4fd69312007-12-19 02:03:35 +01001175 if (params->vlan) {
1176 sdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1177
Johannes Berg05c914f2008-09-11 00:01:58 +02001178 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
1179 sdata->vif.type != NL80211_IFTYPE_AP)
Johannes Berg4fd69312007-12-19 02:03:35 +01001180 return -EINVAL;
1181 } else
1182 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1183
Joe Perchesb203ca32012-05-08 18:56:52 +00001184 if (ether_addr_equal(mac, sdata->vif.addr))
Johannes Berg03e44972008-02-27 09:56:40 +01001185 return -EINVAL;
1186
1187 if (is_multicast_ether_addr(mac))
1188 return -EINVAL;
1189
1190 sta = sta_info_alloc(sdata, mac, GFP_KERNEL);
Johannes Berg73651ee2008-02-25 16:27:47 +01001191 if (!sta)
1192 return -ENOMEM;
Johannes Berg4fd69312007-12-19 02:03:35 +01001193
Johannes Bergd582cff2012-10-26 17:53:44 +02001194 /*
1195 * defaults -- if userspace wants something else we'll
1196 * change it accordingly in sta_apply_parameters()
1197 */
Johannes Berg77ee7c82013-02-15 00:48:33 +01001198 if (!(params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER))) {
1199 sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
1200 sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC);
Arik Nemtsov0c4972c2014-05-01 10:17:27 +03001201 } else {
1202 sta->sta.tdls = true;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001203 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001204
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001205 err = sta_apply_parameters(local, sta, params);
1206 if (err) {
1207 sta_info_free(local, sta);
1208 return err;
1209 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001210
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001211 /*
Johannes Berg77ee7c82013-02-15 00:48:33 +01001212 * for TDLS, rate control should be initialized only when
1213 * rates are known and station is marked authorized
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001214 */
1215 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER))
1216 rate_control_rate_init(sta);
Johannes Berg4fd69312007-12-19 02:03:35 +01001217
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001218 layer2_update = sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1219 sdata->vif.type == NL80211_IFTYPE_AP;
1220
Johannes Berg34e89502010-02-03 13:59:58 +01001221 err = sta_info_insert_rcu(sta);
Johannes Berg73651ee2008-02-25 16:27:47 +01001222 if (err) {
Johannes Berg73651ee2008-02-25 16:27:47 +01001223 rcu_read_unlock();
1224 return err;
1225 }
1226
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001227 if (layer2_update)
Johannes Berg73651ee2008-02-25 16:27:47 +01001228 ieee80211_send_layer2_update(sta);
1229
1230 rcu_read_unlock();
1231
Johannes Berg4fd69312007-12-19 02:03:35 +01001232 return 0;
1233}
1234
1235static int ieee80211_del_station(struct wiphy *wiphy, struct net_device *dev,
Jouni Malinen89c771e2014-10-10 20:52:40 +03001236 struct station_del_parameters *params)
Johannes Berg4fd69312007-12-19 02:03:35 +01001237{
Johannes Berg14db74b2008-07-29 13:22:52 +02001238 struct ieee80211_sub_if_data *sdata;
Johannes Berg4fd69312007-12-19 02:03:35 +01001239
Johannes Berg14db74b2008-07-29 13:22:52 +02001240 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1241
Jouni Malinen89c771e2014-10-10 20:52:40 +03001242 if (params->mac)
1243 return sta_info_destroy_addr_bss(sdata, params->mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001244
Johannes Bergb998e8b2012-12-13 23:07:46 +01001245 sta_info_flush(sdata);
Johannes Berg4fd69312007-12-19 02:03:35 +01001246 return 0;
1247}
1248
1249static int ieee80211_change_station(struct wiphy *wiphy,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001250 struct net_device *dev, const u8 *mac,
Johannes Berg4fd69312007-12-19 02:03:35 +01001251 struct station_parameters *params)
1252{
Johannes Bergabe60632009-11-25 17:46:18 +01001253 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg14db74b2008-07-29 13:22:52 +02001254 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +01001255 struct sta_info *sta;
1256 struct ieee80211_sub_if_data *vlansdata;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001257 enum cfg80211_station_type statype;
Eliad Peller35b88622011-12-29 14:41:39 +02001258 int err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001259
Johannes Berg87be1e12011-12-14 12:20:29 +01001260 mutex_lock(&local->sta_mtx);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001261
Felix Fietkau0e5ded52010-01-08 18:10:58 +01001262 sta = sta_info_get_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001263 if (!sta) {
Johannes Berg77ee7c82013-02-15 00:48:33 +01001264 err = -ENOENT;
1265 goto out_err;
Johannes Berg98dd6a52008-04-10 15:36:09 +02001266 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001267
Johannes Berg77ee7c82013-02-15 00:48:33 +01001268 switch (sdata->vif.type) {
1269 case NL80211_IFTYPE_MESH_POINT:
Thomas Pedersena6dad6a2013-03-04 13:06:12 -08001270 if (sdata->u.mesh.user_mpm)
Thomas Pederseneef941e2013-03-04 13:06:11 -08001271 statype = CFG80211_STA_MESH_PEER_USER;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001272 else
Thomas Pederseneef941e2013-03-04 13:06:11 -08001273 statype = CFG80211_STA_MESH_PEER_KERNEL;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001274 break;
1275 case NL80211_IFTYPE_ADHOC:
1276 statype = CFG80211_STA_IBSS;
1277 break;
1278 case NL80211_IFTYPE_STATION:
1279 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1280 statype = CFG80211_STA_AP_STA;
1281 break;
1282 }
1283 if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
1284 statype = CFG80211_STA_TDLS_PEER_ACTIVE;
1285 else
1286 statype = CFG80211_STA_TDLS_PEER_SETUP;
1287 break;
1288 case NL80211_IFTYPE_AP:
1289 case NL80211_IFTYPE_AP_VLAN:
1290 statype = CFG80211_STA_AP_CLIENT;
1291 break;
1292 default:
1293 err = -EOPNOTSUPP;
1294 goto out_err;
Johannes Bergbdd90d52011-12-14 12:20:27 +01001295 }
1296
Johannes Berg77ee7c82013-02-15 00:48:33 +01001297 err = cfg80211_check_station_change(wiphy, params, statype);
1298 if (err)
1299 goto out_err;
1300
Johannes Bergd0709a62008-02-25 16:27:46 +01001301 if (params->vlan && params->vlan != sta->sdata->dev) {
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001302 bool prev_4addr = false;
1303 bool new_4addr = false;
1304
Johannes Berg4fd69312007-12-19 02:03:35 +01001305 vlansdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1306
Johannes Berg9bc383d2009-11-19 11:55:19 +01001307 if (params->vlan->ieee80211_ptr->use_4addr) {
Johannes Berg33054432009-11-20 10:09:14 +01001308 if (vlansdata->u.vlan.sta) {
Johannes Berg77ee7c82013-02-15 00:48:33 +01001309 err = -EBUSY;
1310 goto out_err;
Johannes Berg33054432009-11-20 10:09:14 +01001311 }
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001312
Eric Dumazetcf778b02012-01-12 04:41:32 +00001313 rcu_assign_pointer(vlansdata->u.vlan.sta, sta);
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001314 new_4addr = true;
1315 }
1316
1317 if (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1318 sta->sdata->u.vlan.sta) {
Monam Agarwal0c2bef462014-03-24 00:51:43 +05301319 RCU_INIT_POINTER(sta->sdata->u.vlan.sta, NULL);
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001320 prev_4addr = true;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001321 }
1322
Johannes Berg14db74b2008-07-29 13:22:52 +02001323 sta->sdata = vlansdata;
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001324
1325 if (sta->sta_state == IEEE80211_STA_AUTHORIZED &&
1326 prev_4addr != new_4addr) {
1327 if (new_4addr)
1328 atomic_dec(&sta->sdata->bss->num_mcast_sta);
1329 else
1330 atomic_inc(&sta->sdata->bss->num_mcast_sta);
1331 }
1332
Johannes Berg4fd69312007-12-19 02:03:35 +01001333 ieee80211_send_layer2_update(sta);
1334 }
1335
Eliad Peller35b88622011-12-29 14:41:39 +02001336 err = sta_apply_parameters(local, sta, params);
Johannes Berg77ee7c82013-02-15 00:48:33 +01001337 if (err)
1338 goto out_err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001339
Johannes Berg77ee7c82013-02-15 00:48:33 +01001340 /* When peer becomes authorized, init rate control as well */
1341 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER) &&
1342 test_sta_flag(sta, WLAN_STA_AUTHORIZED))
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001343 rate_control_rate_init(sta);
1344
Johannes Berg87be1e12011-12-14 12:20:29 +01001345 mutex_unlock(&local->sta_mtx);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001346
Emmanuel Grumbach687da132013-10-01 16:45:43 +03001347 if ((sdata->vif.type == NL80211_IFTYPE_AP ||
1348 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
1349 sta->known_smps_mode != sta->sdata->bss->req_smps &&
1350 test_sta_flag(sta, WLAN_STA_AUTHORIZED) &&
1351 sta_info_tx_streams(sta) != 1) {
1352 ht_dbg(sta->sdata,
1353 "%pM just authorized and MIMO capable - update SMPS\n",
1354 sta->sta.addr);
1355 ieee80211_send_smps_action(sta->sdata,
1356 sta->sdata->bss->req_smps,
1357 sta->sta.addr,
1358 sta->sdata->vif.bss_conf.bssid);
1359 }
1360
Jason Young808118c2011-03-10 16:43:19 -08001361 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
Eliad Pellerab095872012-07-27 12:33:22 +03001362 params->sta_flags_mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
Jason Young808118c2011-03-10 16:43:19 -08001363 ieee80211_recalc_ps(local, -1);
Eliad Pellerab095872012-07-27 12:33:22 +03001364 ieee80211_recalc_ps_vif(sdata);
1365 }
Johannes Berg77ee7c82013-02-15 00:48:33 +01001366
Johannes Berg4fd69312007-12-19 02:03:35 +01001367 return 0;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001368out_err:
1369 mutex_unlock(&local->sta_mtx);
1370 return err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001371}
1372
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001373#ifdef CONFIG_MAC80211_MESH
1374static int ieee80211_add_mpath(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001375 const u8 *dst, const u8 *next_hop)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001376{
Johannes Berg14db74b2008-07-29 13:22:52 +02001377 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001378 struct mesh_path *mpath;
1379 struct sta_info *sta;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001380
Johannes Berg14db74b2008-07-29 13:22:52 +02001381 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1382
Johannes Bergd0709a62008-02-25 16:27:46 +01001383 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +01001384 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +01001385 if (!sta) {
1386 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001387 return -ENOENT;
Johannes Bergd0709a62008-02-25 16:27:46 +01001388 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001389
Bob Copelandae76eef2013-03-29 09:38:39 -04001390 mpath = mesh_path_add(sdata, dst);
1391 if (IS_ERR(mpath)) {
Johannes Bergd0709a62008-02-25 16:27:46 +01001392 rcu_read_unlock();
Bob Copelandae76eef2013-03-29 09:38:39 -04001393 return PTR_ERR(mpath);
Johannes Bergd0709a62008-02-25 16:27:46 +01001394 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001395
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001396 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +01001397
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001398 rcu_read_unlock();
1399 return 0;
1400}
1401
1402static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001403 const u8 *dst)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001404{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001405 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001406
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001407 if (dst)
Johannes Bergbf7cd942013-02-15 14:40:31 +01001408 return mesh_path_del(sdata, dst);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001409
Javier Cardonaece1a2e2011-08-29 13:23:04 -07001410 mesh_path_flush_by_iface(sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001411 return 0;
1412}
1413
Johannes Berg3b3a0162014-05-19 17:19:31 +02001414static int ieee80211_change_mpath(struct wiphy *wiphy, struct net_device *dev,
1415 const u8 *dst, const u8 *next_hop)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001416{
Johannes Berg14db74b2008-07-29 13:22:52 +02001417 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001418 struct mesh_path *mpath;
1419 struct sta_info *sta;
1420
Johannes Berg14db74b2008-07-29 13:22:52 +02001421 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1422
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001423 rcu_read_lock();
Johannes Bergd0709a62008-02-25 16:27:46 +01001424
Johannes Bergabe60632009-11-25 17:46:18 +01001425 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +01001426 if (!sta) {
1427 rcu_read_unlock();
1428 return -ENOENT;
1429 }
1430
Johannes Bergbf7cd942013-02-15 14:40:31 +01001431 mpath = mesh_path_lookup(sdata, dst);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001432 if (!mpath) {
1433 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001434 return -ENOENT;
1435 }
1436
1437 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +01001438
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001439 rcu_read_unlock();
1440 return 0;
1441}
1442
1443static void mpath_set_pinfo(struct mesh_path *mpath, u8 *next_hop,
1444 struct mpath_info *pinfo)
1445{
Johannes Berga3836e02011-05-12 15:11:37 +02001446 struct sta_info *next_hop_sta = rcu_dereference(mpath->next_hop);
1447
1448 if (next_hop_sta)
1449 memcpy(next_hop, next_hop_sta->sta.addr, ETH_ALEN);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001450 else
1451 memset(next_hop, 0, ETH_ALEN);
1452
LEO Airwarosu Yoichi Shinoda7ce8c7a2012-08-27 22:28:16 +09001453 memset(pinfo, 0, sizeof(*pinfo));
1454
Johannes Bergf5ea9122009-08-07 16:17:38 +02001455 pinfo->generation = mesh_paths_generation;
1456
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001457 pinfo->filled = MPATH_INFO_FRAME_QLEN |
Rui Paulod19b3bf2009-11-09 23:46:55 +00001458 MPATH_INFO_SN |
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001459 MPATH_INFO_METRIC |
1460 MPATH_INFO_EXPTIME |
1461 MPATH_INFO_DISCOVERY_TIMEOUT |
1462 MPATH_INFO_DISCOVERY_RETRIES |
1463 MPATH_INFO_FLAGS;
1464
1465 pinfo->frame_qlen = mpath->frame_queue.qlen;
Rui Paulod19b3bf2009-11-09 23:46:55 +00001466 pinfo->sn = mpath->sn;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001467 pinfo->metric = mpath->metric;
1468 if (time_before(jiffies, mpath->exp_time))
1469 pinfo->exptime = jiffies_to_msecs(mpath->exp_time - jiffies);
1470 pinfo->discovery_timeout =
1471 jiffies_to_msecs(mpath->discovery_timeout);
1472 pinfo->discovery_retries = mpath->discovery_retries;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001473 if (mpath->flags & MESH_PATH_ACTIVE)
1474 pinfo->flags |= NL80211_MPATH_FLAG_ACTIVE;
1475 if (mpath->flags & MESH_PATH_RESOLVING)
1476 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
Rui Paulod19b3bf2009-11-09 23:46:55 +00001477 if (mpath->flags & MESH_PATH_SN_VALID)
1478 pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001479 if (mpath->flags & MESH_PATH_FIXED)
1480 pinfo->flags |= NL80211_MPATH_FLAG_FIXED;
LEO Airwarosu Yoichi Shinoda7ce8c7a2012-08-27 22:28:16 +09001481 if (mpath->flags & MESH_PATH_RESOLVED)
1482 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVED;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001483}
1484
1485static int ieee80211_get_mpath(struct wiphy *wiphy, struct net_device *dev,
1486 u8 *dst, u8 *next_hop, struct mpath_info *pinfo)
1487
1488{
Johannes Berg14db74b2008-07-29 13:22:52 +02001489 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001490 struct mesh_path *mpath;
1491
Johannes Berg14db74b2008-07-29 13:22:52 +02001492 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1493
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001494 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01001495 mpath = mesh_path_lookup(sdata, dst);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001496 if (!mpath) {
1497 rcu_read_unlock();
1498 return -ENOENT;
1499 }
1500 memcpy(dst, mpath->dst, ETH_ALEN);
1501 mpath_set_pinfo(mpath, next_hop, pinfo);
1502 rcu_read_unlock();
1503 return 0;
1504}
1505
1506static int ieee80211_dump_mpath(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001507 int idx, u8 *dst, u8 *next_hop,
1508 struct mpath_info *pinfo)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001509{
Johannes Berg14db74b2008-07-29 13:22:52 +02001510 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001511 struct mesh_path *mpath;
1512
Johannes Berg14db74b2008-07-29 13:22:52 +02001513 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1514
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001515 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01001516 mpath = mesh_path_lookup_by_idx(sdata, idx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001517 if (!mpath) {
1518 rcu_read_unlock();
1519 return -ENOENT;
1520 }
1521 memcpy(dst, mpath->dst, ETH_ALEN);
1522 mpath_set_pinfo(mpath, next_hop, pinfo);
1523 rcu_read_unlock();
1524 return 0;
1525}
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001526
Henning Roggea2db2ed2014-09-12 08:58:50 +02001527static void mpp_set_pinfo(struct mesh_path *mpath, u8 *mpp,
1528 struct mpath_info *pinfo)
1529{
1530 memset(pinfo, 0, sizeof(*pinfo));
1531 memcpy(mpp, mpath->mpp, ETH_ALEN);
1532
1533 pinfo->generation = mpp_paths_generation;
1534}
1535
1536static int ieee80211_get_mpp(struct wiphy *wiphy, struct net_device *dev,
1537 u8 *dst, u8 *mpp, struct mpath_info *pinfo)
1538
1539{
1540 struct ieee80211_sub_if_data *sdata;
1541 struct mesh_path *mpath;
1542
1543 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1544
1545 rcu_read_lock();
1546 mpath = mpp_path_lookup(sdata, dst);
1547 if (!mpath) {
1548 rcu_read_unlock();
1549 return -ENOENT;
1550 }
1551 memcpy(dst, mpath->dst, ETH_ALEN);
1552 mpp_set_pinfo(mpath, mpp, pinfo);
1553 rcu_read_unlock();
1554 return 0;
1555}
1556
1557static int ieee80211_dump_mpp(struct wiphy *wiphy, struct net_device *dev,
1558 int idx, u8 *dst, u8 *mpp,
1559 struct mpath_info *pinfo)
1560{
1561 struct ieee80211_sub_if_data *sdata;
1562 struct mesh_path *mpath;
1563
1564 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1565
1566 rcu_read_lock();
1567 mpath = mpp_path_lookup_by_idx(sdata, idx);
1568 if (!mpath) {
1569 rcu_read_unlock();
1570 return -ENOENT;
1571 }
1572 memcpy(dst, mpath->dst, ETH_ALEN);
1573 mpp_set_pinfo(mpath, mpp, pinfo);
1574 rcu_read_unlock();
1575 return 0;
1576}
1577
Javier Cardona24bdd9f2010-12-16 17:37:48 -08001578static int ieee80211_get_mesh_config(struct wiphy *wiphy,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001579 struct net_device *dev,
1580 struct mesh_config *conf)
1581{
1582 struct ieee80211_sub_if_data *sdata;
1583 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1584
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001585 memcpy(conf, &(sdata->u.mesh.mshcfg), sizeof(struct mesh_config));
1586 return 0;
1587}
1588
1589static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm, u32 mask)
1590{
1591 return (mask >> (parm-1)) & 0x1;
1592}
1593
Javier Cardonac80d5452010-12-16 17:37:49 -08001594static int copy_mesh_setup(struct ieee80211_if_mesh *ifmsh,
1595 const struct mesh_setup *setup)
1596{
1597 u8 *new_ie;
1598 const u8 *old_ie;
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001599 struct ieee80211_sub_if_data *sdata = container_of(ifmsh,
1600 struct ieee80211_sub_if_data, u.mesh);
Javier Cardonac80d5452010-12-16 17:37:49 -08001601
Javier Cardona581a8b02011-04-07 15:08:27 -07001602 /* allocate information elements */
Javier Cardonac80d5452010-12-16 17:37:49 -08001603 new_ie = NULL;
Javier Cardona581a8b02011-04-07 15:08:27 -07001604 old_ie = ifmsh->ie;
Javier Cardonac80d5452010-12-16 17:37:49 -08001605
Javier Cardona581a8b02011-04-07 15:08:27 -07001606 if (setup->ie_len) {
1607 new_ie = kmemdup(setup->ie, setup->ie_len,
Javier Cardonac80d5452010-12-16 17:37:49 -08001608 GFP_KERNEL);
1609 if (!new_ie)
1610 return -ENOMEM;
1611 }
Javier Cardona581a8b02011-04-07 15:08:27 -07001612 ifmsh->ie_len = setup->ie_len;
1613 ifmsh->ie = new_ie;
1614 kfree(old_ie);
Javier Cardonac80d5452010-12-16 17:37:49 -08001615
1616 /* now copy the rest of the setup parameters */
1617 ifmsh->mesh_id_len = setup->mesh_id_len;
1618 memcpy(ifmsh->mesh_id, setup->mesh_id, ifmsh->mesh_id_len);
Javier Cardonad299a1f2012-03-31 11:31:33 -07001619 ifmsh->mesh_sp_id = setup->sync_method;
Javier Cardonac80d5452010-12-16 17:37:49 -08001620 ifmsh->mesh_pp_id = setup->path_sel_proto;
1621 ifmsh->mesh_pm_id = setup->path_metric;
Thomas Pedersena6dad6a2013-03-04 13:06:12 -08001622 ifmsh->user_mpm = setup->user_mpm;
Colleen Twitty0d4261a2013-05-08 11:46:00 -07001623 ifmsh->mesh_auth_id = setup->auth_id;
Javier Cardonab130e5c2011-05-03 16:57:07 -07001624 ifmsh->security = IEEE80211_MESH_SEC_NONE;
1625 if (setup->is_authenticated)
1626 ifmsh->security |= IEEE80211_MESH_SEC_AUTHED;
1627 if (setup->is_secure)
1628 ifmsh->security |= IEEE80211_MESH_SEC_SECURED;
Javier Cardonac80d5452010-12-16 17:37:49 -08001629
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001630 /* mcast rate setting in Mesh Node */
1631 memcpy(sdata->vif.bss_conf.mcast_rate, setup->mcast_rate,
1632 sizeof(setup->mcast_rate));
Ashok Nagarajanffb3cf32013-06-03 10:33:36 -07001633 sdata->vif.bss_conf.basic_rates = setup->basic_rates;
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001634
Marco Porsch9bdbf042013-01-07 16:04:51 +01001635 sdata->vif.bss_conf.beacon_int = setup->beacon_interval;
1636 sdata->vif.bss_conf.dtim_period = setup->dtim_period;
1637
Javier Cardonac80d5452010-12-16 17:37:49 -08001638 return 0;
1639}
1640
Javier Cardona24bdd9f2010-12-16 17:37:48 -08001641static int ieee80211_update_mesh_config(struct wiphy *wiphy,
Johannes Berg29cbe682010-12-03 09:20:44 +01001642 struct net_device *dev, u32 mask,
1643 const struct mesh_config *nconf)
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001644{
1645 struct mesh_config *conf;
1646 struct ieee80211_sub_if_data *sdata;
Rui Paulo63c57232009-11-09 23:46:57 +00001647 struct ieee80211_if_mesh *ifmsh;
1648
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001649 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Rui Paulo63c57232009-11-09 23:46:57 +00001650 ifmsh = &sdata->u.mesh;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001651
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001652 /* Set the config options which we are interested in setting */
1653 conf = &(sdata->u.mesh.mshcfg);
1654 if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT, mask))
1655 conf->dot11MeshRetryTimeout = nconf->dot11MeshRetryTimeout;
1656 if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT, mask))
1657 conf->dot11MeshConfirmTimeout = nconf->dot11MeshConfirmTimeout;
1658 if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT, mask))
1659 conf->dot11MeshHoldingTimeout = nconf->dot11MeshHoldingTimeout;
1660 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS, mask))
1661 conf->dot11MeshMaxPeerLinks = nconf->dot11MeshMaxPeerLinks;
1662 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES, mask))
1663 conf->dot11MeshMaxRetries = nconf->dot11MeshMaxRetries;
1664 if (_chg_mesh_attr(NL80211_MESHCONF_TTL, mask))
1665 conf->dot11MeshTTL = nconf->dot11MeshTTL;
Javier Cardona45904f22010-12-03 09:20:40 +01001666 if (_chg_mesh_attr(NL80211_MESHCONF_ELEMENT_TTL, mask))
Chun-Yeow Yeoh58886a92012-06-15 00:23:53 +08001667 conf->element_ttl = nconf->element_ttl;
Thomas Pedersen146bb482013-03-04 13:06:14 -08001668 if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS, mask)) {
1669 if (ifmsh->user_mpm)
1670 return -EBUSY;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001671 conf->auto_open_plinks = nconf->auto_open_plinks;
Thomas Pedersen146bb482013-03-04 13:06:14 -08001672 }
Javier Cardonad299a1f2012-03-31 11:31:33 -07001673 if (_chg_mesh_attr(NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR, mask))
1674 conf->dot11MeshNbrOffsetMaxNeighbor =
1675 nconf->dot11MeshNbrOffsetMaxNeighbor;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001676 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, mask))
1677 conf->dot11MeshHWMPmaxPREQretries =
1678 nconf->dot11MeshHWMPmaxPREQretries;
1679 if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME, mask))
1680 conf->path_refresh_time = nconf->path_refresh_time;
1681 if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, mask))
1682 conf->min_discovery_timeout = nconf->min_discovery_timeout;
1683 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, mask))
1684 conf->dot11MeshHWMPactivePathTimeout =
1685 nconf->dot11MeshHWMPactivePathTimeout;
1686 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, mask))
1687 conf->dot11MeshHWMPpreqMinInterval =
1688 nconf->dot11MeshHWMPpreqMinInterval;
Thomas Pedersendca7e942011-11-24 17:15:24 -08001689 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL, mask))
1690 conf->dot11MeshHWMPperrMinInterval =
1691 nconf->dot11MeshHWMPperrMinInterval;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001692 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
1693 mask))
1694 conf->dot11MeshHWMPnetDiameterTraversalTime =
1695 nconf->dot11MeshHWMPnetDiameterTraversalTime;
Rui Paulo63c57232009-11-09 23:46:57 +00001696 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask)) {
1697 conf->dot11MeshHWMPRootMode = nconf->dot11MeshHWMPRootMode;
1698 ieee80211_mesh_root_setup(ifmsh);
1699 }
Javier Cardona16dd7262011-08-09 16:45:11 -07001700 if (_chg_mesh_attr(NL80211_MESHCONF_GATE_ANNOUNCEMENTS, mask)) {
Thomas Pedersenc61336612011-08-25 10:36:14 -07001701 /* our current gate announcement implementation rides on root
1702 * announcements, so require this ifmsh to also be a root node
1703 * */
1704 if (nconf->dot11MeshGateAnnouncementProtocol &&
Chun-Yeow Yeohdbb912c2012-06-14 02:06:09 +08001705 !(conf->dot11MeshHWMPRootMode > IEEE80211_ROOTMODE_ROOT)) {
1706 conf->dot11MeshHWMPRootMode = IEEE80211_PROACTIVE_RANN;
Thomas Pedersenc61336612011-08-25 10:36:14 -07001707 ieee80211_mesh_root_setup(ifmsh);
1708 }
Javier Cardona16dd7262011-08-09 16:45:11 -07001709 conf->dot11MeshGateAnnouncementProtocol =
1710 nconf->dot11MeshGateAnnouncementProtocol;
1711 }
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08001712 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_RANN_INTERVAL, mask))
Javier Cardona0507e152011-08-09 16:45:10 -07001713 conf->dot11MeshHWMPRannInterval =
1714 nconf->dot11MeshHWMPRannInterval;
Chun-Yeow Yeoh94f90652012-01-21 01:02:16 +08001715 if (_chg_mesh_attr(NL80211_MESHCONF_FORWARDING, mask))
1716 conf->dot11MeshForwarding = nconf->dot11MeshForwarding;
Ashok Nagarajan55335132012-02-28 17:04:08 -08001717 if (_chg_mesh_attr(NL80211_MESHCONF_RSSI_THRESHOLD, mask)) {
1718 /* our RSSI threshold implementation is supported only for
1719 * devices that report signal in dBm.
1720 */
1721 if (!(sdata->local->hw.flags & IEEE80211_HW_SIGNAL_DBM))
1722 return -ENOTSUPP;
1723 conf->rssi_threshold = nconf->rssi_threshold;
1724 }
Ashok Nagarajan70c33ea2012-04-30 14:20:32 -07001725 if (_chg_mesh_attr(NL80211_MESHCONF_HT_OPMODE, mask)) {
1726 conf->ht_opmode = nconf->ht_opmode;
1727 sdata->vif.bss_conf.ht_operation_mode = nconf->ht_opmode;
1728 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_HT);
1729 }
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08001730 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT, mask))
1731 conf->dot11MeshHWMPactivePathToRootTimeout =
1732 nconf->dot11MeshHWMPactivePathToRootTimeout;
1733 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOT_INTERVAL, mask))
1734 conf->dot11MeshHWMProotInterval =
1735 nconf->dot11MeshHWMProotInterval;
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08001736 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL, mask))
1737 conf->dot11MeshHWMPconfirmationInterval =
1738 nconf->dot11MeshHWMPconfirmationInterval;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001739 if (_chg_mesh_attr(NL80211_MESHCONF_POWER_MODE, mask)) {
1740 conf->power_mode = nconf->power_mode;
1741 ieee80211_mps_local_status_update(sdata);
1742 }
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001743 if (_chg_mesh_attr(NL80211_MESHCONF_AWAKE_WINDOW, mask))
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001744 conf->dot11MeshAwakeWindowDuration =
1745 nconf->dot11MeshAwakeWindowDuration;
Colleen Twitty66de6712013-06-03 09:53:40 -07001746 if (_chg_mesh_attr(NL80211_MESHCONF_PLINK_TIMEOUT, mask))
1747 conf->plink_timeout = nconf->plink_timeout;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001748 ieee80211_mbss_info_change_notify(sdata, BSS_CHANGED_BEACON);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001749 return 0;
1750}
1751
Johannes Berg29cbe682010-12-03 09:20:44 +01001752static int ieee80211_join_mesh(struct wiphy *wiphy, struct net_device *dev,
1753 const struct mesh_config *conf,
1754 const struct mesh_setup *setup)
1755{
1756 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1757 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Javier Cardonac80d5452010-12-16 17:37:49 -08001758 int err;
Johannes Berg29cbe682010-12-03 09:20:44 +01001759
Javier Cardonac80d5452010-12-16 17:37:49 -08001760 memcpy(&ifmsh->mshcfg, conf, sizeof(struct mesh_config));
1761 err = copy_mesh_setup(ifmsh, setup);
1762 if (err)
1763 return err;
Johannes Bergcc1d2802012-05-16 23:50:20 +02001764
Johannes Berg04ecd252012-09-11 14:34:12 +02001765 /* can mesh use other SMPS modes? */
1766 sdata->smps_mode = IEEE80211_SMPS_OFF;
1767 sdata->needed_rx_chains = sdata->local->rx_chains;
1768
Johannes Berg34a37402013-12-18 09:43:33 +01001769 mutex_lock(&sdata->local->mtx);
Johannes Berg4bf88532012-11-09 11:39:59 +01001770 err = ieee80211_vif_use_channel(sdata, &setup->chandef,
Johannes Berg55de9082012-07-26 17:24:39 +02001771 IEEE80211_CHANCTX_SHARED);
Johannes Berg34a37402013-12-18 09:43:33 +01001772 mutex_unlock(&sdata->local->mtx);
Johannes Bergcc1d2802012-05-16 23:50:20 +02001773 if (err)
1774 return err;
1775
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001776 return ieee80211_start_mesh(sdata);
Johannes Berg29cbe682010-12-03 09:20:44 +01001777}
1778
1779static int ieee80211_leave_mesh(struct wiphy *wiphy, struct net_device *dev)
1780{
1781 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1782
1783 ieee80211_stop_mesh(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +01001784 mutex_lock(&sdata->local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001785 ieee80211_vif_release_channel(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +01001786 mutex_unlock(&sdata->local->mtx);
Johannes Berg29cbe682010-12-03 09:20:44 +01001787
1788 return 0;
1789}
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001790#endif
1791
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001792static int ieee80211_change_bss(struct wiphy *wiphy,
1793 struct net_device *dev,
1794 struct bss_parameters *params)
1795{
Johannes Berg55de9082012-07-26 17:24:39 +02001796 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1797 enum ieee80211_band band;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001798 u32 changed = 0;
1799
Simon Wunderlich7ca133b2013-11-21 18:19:50 +01001800 if (!sdata_dereference(sdata->u.ap.beacon, sdata))
Johannes Berg55de9082012-07-26 17:24:39 +02001801 return -ENOENT;
1802
1803 band = ieee80211_get_sdata_band(sdata);
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001804
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001805 if (params->use_cts_prot >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001806 sdata->vif.bss_conf.use_cts_prot = params->use_cts_prot;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001807 changed |= BSS_CHANGED_ERP_CTS_PROT;
1808 }
1809 if (params->use_short_preamble >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001810 sdata->vif.bss_conf.use_short_preamble =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001811 params->use_short_preamble;
1812 changed |= BSS_CHANGED_ERP_PREAMBLE;
1813 }
Felix Fietkau43d35342010-01-15 03:00:48 +01001814
1815 if (!sdata->vif.bss_conf.use_short_slot &&
Johannes Berg55de9082012-07-26 17:24:39 +02001816 band == IEEE80211_BAND_5GHZ) {
Felix Fietkau43d35342010-01-15 03:00:48 +01001817 sdata->vif.bss_conf.use_short_slot = true;
1818 changed |= BSS_CHANGED_ERP_SLOT;
1819 }
1820
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001821 if (params->use_short_slot_time >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001822 sdata->vif.bss_conf.use_short_slot =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001823 params->use_short_slot_time;
1824 changed |= BSS_CHANGED_ERP_SLOT;
1825 }
1826
Jouni Malinen90c97a02008-10-30 16:59:22 +02001827 if (params->basic_rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001828 ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef,
1829 wiphy->bands[band],
1830 params->basic_rates,
1831 params->basic_rates_len,
1832 &sdata->vif.bss_conf.basic_rates);
Jouni Malinen90c97a02008-10-30 16:59:22 +02001833 changed |= BSS_CHANGED_BASIC_RATES;
1834 }
1835
Felix Fietkau7b7b5e52010-04-27 01:23:36 +02001836 if (params->ap_isolate >= 0) {
1837 if (params->ap_isolate)
1838 sdata->flags |= IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1839 else
1840 sdata->flags &= ~IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1841 }
1842
Helmut Schaa80d7e402010-11-19 12:40:26 +01001843 if (params->ht_opmode >= 0) {
1844 sdata->vif.bss_conf.ht_operation_mode =
1845 (u16) params->ht_opmode;
1846 changed |= BSS_CHANGED_HT;
1847 }
1848
Johannes Berg339afbf2012-11-14 15:21:17 +01001849 if (params->p2p_ctwindow >= 0) {
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001850 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &=
1851 ~IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
1852 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
1853 params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
Johannes Berg339afbf2012-11-14 15:21:17 +01001854 changed |= BSS_CHANGED_P2P_PS;
1855 }
1856
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001857 if (params->p2p_opp_ps > 0) {
1858 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
1859 IEEE80211_P2P_OPPPS_ENABLE_BIT;
1860 changed |= BSS_CHANGED_P2P_PS;
1861 } else if (params->p2p_opp_ps == 0) {
1862 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &=
1863 ~IEEE80211_P2P_OPPPS_ENABLE_BIT;
Johannes Berg339afbf2012-11-14 15:21:17 +01001864 changed |= BSS_CHANGED_P2P_PS;
1865 }
1866
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001867 ieee80211_bss_info_change_notify(sdata, changed);
1868
1869 return 0;
1870}
1871
Jouni Malinen31888482008-10-30 16:59:24 +02001872static int ieee80211_set_txq_params(struct wiphy *wiphy,
Eliad Pellerf70f01c2011-09-25 20:06:53 +03001873 struct net_device *dev,
Jouni Malinen31888482008-10-30 16:59:24 +02001874 struct ieee80211_txq_params *params)
1875{
1876 struct ieee80211_local *local = wiphy_priv(wiphy);
Eliad Pellerf6f3def2011-09-25 20:06:54 +03001877 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Jouni Malinen31888482008-10-30 16:59:24 +02001878 struct ieee80211_tx_queue_params p;
1879
1880 if (!local->ops->conf_tx)
1881 return -EOPNOTSUPP;
1882
Johannes Berg54bcbc62012-03-28 11:04:25 +02001883 if (local->hw.queues < IEEE80211_NUM_ACS)
1884 return -EOPNOTSUPP;
1885
Jouni Malinen31888482008-10-30 16:59:24 +02001886 memset(&p, 0, sizeof(p));
1887 p.aifs = params->aifs;
1888 p.cw_max = params->cwmax;
1889 p.cw_min = params->cwmin;
1890 p.txop = params->txop;
Kalle Valoab133152010-01-12 10:42:31 +02001891
1892 /*
1893 * Setting tx queue params disables u-apsd because it's only
1894 * called in master mode.
1895 */
1896 p.uapsd = false;
1897
Johannes Berga3304b02012-03-28 11:04:24 +02001898 sdata->tx_conf[params->ac] = p;
1899 if (drv_conf_tx(local, sdata, params->ac, &p)) {
Joe Perches0fb9a9e2010-08-20 16:25:38 -07001900 wiphy_debug(local->hw.wiphy,
Johannes Berga3304b02012-03-28 11:04:24 +02001901 "failed to set TX queue parameters for AC %d\n",
1902 params->ac);
Jouni Malinen31888482008-10-30 16:59:24 +02001903 return -EINVAL;
1904 }
1905
Johannes Berg7d257452012-07-06 17:37:43 +02001906 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_QOS);
1907
Jouni Malinen31888482008-10-30 16:59:24 +02001908 return 0;
1909}
1910
Bob Copeland665af4f2009-01-19 11:20:53 -05001911#ifdef CONFIG_PM
Johannes Bergff1b6e62011-05-04 15:37:28 +02001912static int ieee80211_suspend(struct wiphy *wiphy,
1913 struct cfg80211_wowlan *wowlan)
Bob Copeland665af4f2009-01-19 11:20:53 -05001914{
Johannes Bergeecc4802011-05-04 15:37:29 +02001915 return __ieee80211_suspend(wiphy_priv(wiphy), wowlan);
Bob Copeland665af4f2009-01-19 11:20:53 -05001916}
1917
1918static int ieee80211_resume(struct wiphy *wiphy)
1919{
1920 return __ieee80211_resume(wiphy_priv(wiphy));
1921}
1922#else
1923#define ieee80211_suspend NULL
1924#define ieee80211_resume NULL
1925#endif
1926
Johannes Berg2a519312009-02-10 21:25:55 +01001927static int ieee80211_scan(struct wiphy *wiphy,
Johannes Berg2a519312009-02-10 21:25:55 +01001928 struct cfg80211_scan_request *req)
1929{
Johannes Bergfd014282012-06-18 19:17:03 +02001930 struct ieee80211_sub_if_data *sdata;
1931
1932 sdata = IEEE80211_WDEV_TO_SUB_IF(req->wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01001933
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001934 switch (ieee80211_vif_type_p2p(&sdata->vif)) {
1935 case NL80211_IFTYPE_STATION:
1936 case NL80211_IFTYPE_ADHOC:
1937 case NL80211_IFTYPE_MESH_POINT:
1938 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Bergf142c6b2012-06-18 20:07:15 +02001939 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001940 break;
1941 case NL80211_IFTYPE_P2P_GO:
1942 if (sdata->local->ops->hw_scan)
1943 break;
Johannes Berge9d77322011-02-01 15:35:36 +01001944 /*
1945 * FIXME: implement NoA while scanning in software,
1946 * for now fall through to allow scanning only when
1947 * beaconing hasn't been configured yet
1948 */
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001949 case NL80211_IFTYPE_AP:
Antonio Quartulli5c95b942012-10-16 08:39:22 +02001950 /*
1951 * If the scan has been forced (and the driver supports
1952 * forcing), don't care about being beaconing already.
1953 * This will create problems to the attached stations (e.g. all
1954 * the frames sent while scanning on other channel will be
1955 * lost)
1956 */
1957 if (sdata->u.ap.beacon &&
1958 (!(wiphy->features & NL80211_FEATURE_AP_SCAN) ||
1959 !(req->flags & NL80211_SCAN_FLAG_AP)))
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001960 return -EOPNOTSUPP;
1961 break;
1962 default:
1963 return -EOPNOTSUPP;
1964 }
Johannes Berg2a519312009-02-10 21:25:55 +01001965
1966 return ieee80211_request_scan(sdata, req);
1967}
1968
Luciano Coelho79f460c2011-05-11 17:09:36 +03001969static int
1970ieee80211_sched_scan_start(struct wiphy *wiphy,
1971 struct net_device *dev,
1972 struct cfg80211_sched_scan_request *req)
1973{
1974 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1975
1976 if (!sdata->local->ops->sched_scan_start)
1977 return -EOPNOTSUPP;
1978
1979 return ieee80211_request_sched_scan_start(sdata, req);
1980}
1981
1982static int
Luciano Coelho85a99942011-05-12 16:28:29 +03001983ieee80211_sched_scan_stop(struct wiphy *wiphy, struct net_device *dev)
Luciano Coelho79f460c2011-05-11 17:09:36 +03001984{
1985 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1986
1987 if (!sdata->local->ops->sched_scan_stop)
1988 return -EOPNOTSUPP;
1989
Luciano Coelho85a99942011-05-12 16:28:29 +03001990 return ieee80211_request_sched_scan_stop(sdata);
Luciano Coelho79f460c2011-05-11 17:09:36 +03001991}
1992
Jouni Malinen636a5d32009-03-19 13:39:22 +02001993static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev,
1994 struct cfg80211_auth_request *req)
1995{
Johannes Berg77fdaa12009-07-07 03:45:17 +02001996 return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001997}
1998
1999static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev,
2000 struct cfg80211_assoc_request *req)
2001{
Johannes Berg77fdaa12009-07-07 03:45:17 +02002002 return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002003}
2004
2005static int ieee80211_deauth(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002006 struct cfg80211_deauth_request *req)
Jouni Malinen636a5d32009-03-19 13:39:22 +02002007{
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002008 return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002009}
2010
2011static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002012 struct cfg80211_disassoc_request *req)
Jouni Malinen636a5d32009-03-19 13:39:22 +02002013{
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002014 return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002015}
2016
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002017static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
2018 struct cfg80211_ibss_params *params)
2019{
Johannes Berg55de9082012-07-26 17:24:39 +02002020 return ieee80211_ibss_join(IEEE80211_DEV_TO_SUB_IF(dev), params);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002021}
2022
2023static int ieee80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev)
2024{
Johannes Berg55de9082012-07-26 17:24:39 +02002025 return ieee80211_ibss_leave(IEEE80211_DEV_TO_SUB_IF(dev));
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002026}
2027
Rostislav Lisovy239281f2014-11-03 10:33:19 +01002028static int ieee80211_join_ocb(struct wiphy *wiphy, struct net_device *dev,
2029 struct ocb_setup *setup)
2030{
2031 return ieee80211_ocb_join(IEEE80211_DEV_TO_SUB_IF(dev), setup);
2032}
2033
2034static int ieee80211_leave_ocb(struct wiphy *wiphy, struct net_device *dev)
2035{
2036 return ieee80211_ocb_leave(IEEE80211_DEV_TO_SUB_IF(dev));
2037}
2038
Antonio Quartulli391e53e2012-11-02 13:27:49 +01002039static int ieee80211_set_mcast_rate(struct wiphy *wiphy, struct net_device *dev,
2040 int rate[IEEE80211_NUM_BANDS])
2041{
2042 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2043
Cong Ding9887dbf2013-02-06 17:23:45 +01002044 memcpy(sdata->vif.bss_conf.mcast_rate, rate,
2045 sizeof(int) * IEEE80211_NUM_BANDS);
Antonio Quartulli391e53e2012-11-02 13:27:49 +01002046
2047 return 0;
2048}
2049
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002050static int ieee80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
2051{
2052 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg24487982009-04-23 18:52:52 +02002053 int err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002054
Arik Nemtsovf23a4782010-11-08 11:51:06 +02002055 if (changed & WIPHY_PARAM_FRAG_THRESHOLD) {
2056 err = drv_set_frag_threshold(local, wiphy->frag_threshold);
2057
2058 if (err)
2059 return err;
2060 }
2061
Lorenzo Bianconia4bcaf52014-09-04 23:57:41 +02002062 if ((changed & WIPHY_PARAM_COVERAGE_CLASS) ||
2063 (changed & WIPHY_PARAM_DYN_ACK)) {
2064 s16 coverage_class;
2065
2066 coverage_class = changed & WIPHY_PARAM_COVERAGE_CLASS ?
2067 wiphy->coverage_class : -1;
2068 err = drv_set_coverage_class(local, coverage_class);
Lukáš Turek310bc672009-12-21 22:50:48 +01002069
2070 if (err)
2071 return err;
2072 }
2073
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002074 if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
Johannes Berg24487982009-04-23 18:52:52 +02002075 err = drv_set_rts_threshold(local, wiphy->rts_threshold);
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002076
Johannes Berg24487982009-04-23 18:52:52 +02002077 if (err)
2078 return err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002079 }
2080
Johannes Berg8bc83c22012-11-09 18:38:32 +01002081 if (changed & WIPHY_PARAM_RETRY_SHORT) {
2082 if (wiphy->retry_short > IEEE80211_MAX_TX_RETRY)
2083 return -EINVAL;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002084 local->hw.conf.short_frame_max_tx_count = wiphy->retry_short;
Johannes Berg8bc83c22012-11-09 18:38:32 +01002085 }
2086 if (changed & WIPHY_PARAM_RETRY_LONG) {
2087 if (wiphy->retry_long > IEEE80211_MAX_TX_RETRY)
2088 return -EINVAL;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002089 local->hw.conf.long_frame_max_tx_count = wiphy->retry_long;
Johannes Berg8bc83c22012-11-09 18:38:32 +01002090 }
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002091 if (changed &
2092 (WIPHY_PARAM_RETRY_SHORT | WIPHY_PARAM_RETRY_LONG))
2093 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
2094
2095 return 0;
2096}
2097
Johannes Berg7643a2c2009-06-02 13:01:39 +02002098static int ieee80211_set_tx_power(struct wiphy *wiphy,
Johannes Bergc8442112012-10-24 10:17:18 +02002099 struct wireless_dev *wdev,
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002100 enum nl80211_tx_power_setting type, int mbm)
Johannes Berg7643a2c2009-06-02 13:01:39 +02002101{
2102 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002103 struct ieee80211_sub_if_data *sdata;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002104
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002105 if (wdev) {
2106 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2107
2108 switch (type) {
2109 case NL80211_TX_POWER_AUTOMATIC:
2110 sdata->user_power_level = IEEE80211_UNSET_POWER_LEVEL;
2111 break;
2112 case NL80211_TX_POWER_LIMITED:
2113 case NL80211_TX_POWER_FIXED:
2114 if (mbm < 0 || (mbm % 100))
2115 return -EOPNOTSUPP;
2116 sdata->user_power_level = MBM_TO_DBM(mbm);
2117 break;
2118 }
2119
2120 ieee80211_recalc_txpower(sdata);
2121
2122 return 0;
2123 }
Johannes Berg55de9082012-07-26 17:24:39 +02002124
Johannes Berg7643a2c2009-06-02 13:01:39 +02002125 switch (type) {
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002126 case NL80211_TX_POWER_AUTOMATIC:
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002127 local->user_power_level = IEEE80211_UNSET_POWER_LEVEL;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002128 break;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002129 case NL80211_TX_POWER_LIMITED:
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002130 case NL80211_TX_POWER_FIXED:
2131 if (mbm < 0 || (mbm % 100))
2132 return -EOPNOTSUPP;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002133 local->user_power_level = MBM_TO_DBM(mbm);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002134 break;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002135 }
2136
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002137 mutex_lock(&local->iflist_mtx);
2138 list_for_each_entry(sdata, &local->interfaces, list)
2139 sdata->user_power_level = local->user_power_level;
2140 list_for_each_entry(sdata, &local->interfaces, list)
2141 ieee80211_recalc_txpower(sdata);
2142 mutex_unlock(&local->iflist_mtx);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002143
2144 return 0;
2145}
2146
Johannes Bergc8442112012-10-24 10:17:18 +02002147static int ieee80211_get_tx_power(struct wiphy *wiphy,
2148 struct wireless_dev *wdev,
2149 int *dbm)
Johannes Berg7643a2c2009-06-02 13:01:39 +02002150{
2151 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002152 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002153
Felix Fietkau5b3dc422014-10-26 00:32:53 +02002154 if (local->ops->get_txpower)
2155 return drv_get_txpower(local, sdata, dbm);
2156
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002157 if (!local->use_chanctx)
2158 *dbm = local->hw.conf.power_level;
2159 else
2160 *dbm = sdata->vif.bss_conf.txpower;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002161
Johannes Berg7643a2c2009-06-02 13:01:39 +02002162 return 0;
2163}
2164
Johannes Bergab737a42009-07-01 21:26:58 +02002165static int ieee80211_set_wds_peer(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg388ac772010-10-07 13:11:09 +02002166 const u8 *addr)
Johannes Bergab737a42009-07-01 21:26:58 +02002167{
2168 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2169
2170 memcpy(&sdata->u.wds.remote_addr, addr, ETH_ALEN);
2171
2172 return 0;
2173}
2174
Johannes Berg1f87f7d2009-06-02 13:01:41 +02002175static void ieee80211_rfkill_poll(struct wiphy *wiphy)
2176{
2177 struct ieee80211_local *local = wiphy_priv(wiphy);
2178
2179 drv_rfkill_poll(local);
2180}
2181
Johannes Bergaff89a92009-07-01 21:26:51 +02002182#ifdef CONFIG_NL80211_TESTMODE
David Spinadelfc73f112013-07-31 18:04:15 +03002183static int ieee80211_testmode_cmd(struct wiphy *wiphy,
2184 struct wireless_dev *wdev,
2185 void *data, int len)
Johannes Bergaff89a92009-07-01 21:26:51 +02002186{
2187 struct ieee80211_local *local = wiphy_priv(wiphy);
David Spinadel52981cd2013-07-31 18:06:22 +03002188 struct ieee80211_vif *vif = NULL;
Johannes Bergaff89a92009-07-01 21:26:51 +02002189
2190 if (!local->ops->testmode_cmd)
2191 return -EOPNOTSUPP;
2192
David Spinadel52981cd2013-07-31 18:06:22 +03002193 if (wdev) {
2194 struct ieee80211_sub_if_data *sdata;
2195
2196 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2197 if (sdata->flags & IEEE80211_SDATA_IN_DRIVER)
2198 vif = &sdata->vif;
2199 }
2200
2201 return local->ops->testmode_cmd(&local->hw, vif, data, len);
Johannes Bergaff89a92009-07-01 21:26:51 +02002202}
Wey-Yi Guy71063f02011-05-20 09:05:54 -07002203
2204static int ieee80211_testmode_dump(struct wiphy *wiphy,
2205 struct sk_buff *skb,
2206 struct netlink_callback *cb,
2207 void *data, int len)
2208{
2209 struct ieee80211_local *local = wiphy_priv(wiphy);
2210
2211 if (!local->ops->testmode_dump)
2212 return -EOPNOTSUPP;
2213
2214 return local->ops->testmode_dump(&local->hw, skb, cb, data, len);
2215}
Johannes Bergaff89a92009-07-01 21:26:51 +02002216#endif
2217
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002218int __ieee80211_request_smps_ap(struct ieee80211_sub_if_data *sdata,
2219 enum ieee80211_smps_mode smps_mode)
2220{
2221 struct sta_info *sta;
2222 enum ieee80211_smps_mode old_req;
2223 int i;
2224
2225 if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_AP))
2226 return -EINVAL;
2227
2228 if (sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT)
2229 return 0;
2230
2231 old_req = sdata->u.ap.req_smps;
2232 sdata->u.ap.req_smps = smps_mode;
2233
2234 /* AUTOMATIC doesn't mean much for AP - don't allow it */
2235 if (old_req == smps_mode ||
2236 smps_mode == IEEE80211_SMPS_AUTOMATIC)
2237 return 0;
2238
2239 /* If no associated stations, there's no need to do anything */
2240 if (!atomic_read(&sdata->u.ap.num_mcast_sta)) {
2241 sdata->smps_mode = smps_mode;
2242 ieee80211_queue_work(&sdata->local->hw, &sdata->recalc_smps);
2243 return 0;
2244 }
2245
2246 ht_dbg(sdata,
2247 "SMSP %d requested in AP mode, sending Action frame to %d stations\n",
2248 smps_mode, atomic_read(&sdata->u.ap.num_mcast_sta));
2249
2250 mutex_lock(&sdata->local->sta_mtx);
2251 for (i = 0; i < STA_HASH_SIZE; i++) {
2252 for (sta = rcu_dereference_protected(sdata->local->sta_hash[i],
2253 lockdep_is_held(&sdata->local->sta_mtx));
2254 sta;
2255 sta = rcu_dereference_protected(sta->hnext,
2256 lockdep_is_held(&sdata->local->sta_mtx))) {
2257 /*
2258 * Only stations associated to our AP and
2259 * associated VLANs
2260 */
2261 if (sta->sdata->bss != &sdata->u.ap)
2262 continue;
2263
2264 /* This station doesn't support MIMO - skip it */
2265 if (sta_info_tx_streams(sta) == 1)
2266 continue;
2267
2268 /*
2269 * Don't wake up a STA just to send the action frame
2270 * unless we are getting more restrictive.
2271 */
2272 if (test_sta_flag(sta, WLAN_STA_PS_STA) &&
2273 !ieee80211_smps_is_restrictive(sta->known_smps_mode,
2274 smps_mode)) {
2275 ht_dbg(sdata,
2276 "Won't send SMPS to sleeping STA %pM\n",
2277 sta->sta.addr);
2278 continue;
2279 }
2280
2281 /*
2282 * If the STA is not authorized, wait until it gets
2283 * authorized and the action frame will be sent then.
2284 */
2285 if (!test_sta_flag(sta, WLAN_STA_AUTHORIZED))
2286 continue;
2287
2288 ht_dbg(sdata, "Sending SMPS to %pM\n", sta->sta.addr);
2289 ieee80211_send_smps_action(sdata, smps_mode,
2290 sta->sta.addr,
2291 sdata->vif.bss_conf.bssid);
2292 }
2293 }
2294 mutex_unlock(&sdata->local->sta_mtx);
2295
2296 sdata->smps_mode = smps_mode;
2297 ieee80211_queue_work(&sdata->local->hw, &sdata->recalc_smps);
2298
2299 return 0;
2300}
2301
2302int __ieee80211_request_smps_mgd(struct ieee80211_sub_if_data *sdata,
2303 enum ieee80211_smps_mode smps_mode)
Johannes Berg0f782312009-12-01 13:37:02 +01002304{
2305 const u8 *ap;
2306 enum ieee80211_smps_mode old_req;
2307 int err;
2308
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002309 lockdep_assert_held(&sdata->wdev.mtx);
Johannes Berg243e6df2011-04-19 20:44:04 +02002310
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002311 if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_STATION))
2312 return -EINVAL;
2313
Johannes Berg0f782312009-12-01 13:37:02 +01002314 old_req = sdata->u.mgd.req_smps;
2315 sdata->u.mgd.req_smps = smps_mode;
2316
2317 if (old_req == smps_mode &&
2318 smps_mode != IEEE80211_SMPS_AUTOMATIC)
2319 return 0;
2320
2321 /*
2322 * If not associated, or current association is not an HT
Johannes Berg04ecd252012-09-11 14:34:12 +02002323 * association, there's no need to do anything, just store
2324 * the new value until we associate.
Johannes Berg0f782312009-12-01 13:37:02 +01002325 */
2326 if (!sdata->u.mgd.associated ||
Johannes Berg4bf88532012-11-09 11:39:59 +01002327 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT)
Johannes Berg0f782312009-12-01 13:37:02 +01002328 return 0;
Johannes Berg0f782312009-12-01 13:37:02 +01002329
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002330 ap = sdata->u.mgd.associated->bssid;
Johannes Berg0f782312009-12-01 13:37:02 +01002331
2332 if (smps_mode == IEEE80211_SMPS_AUTOMATIC) {
2333 if (sdata->u.mgd.powersave)
2334 smps_mode = IEEE80211_SMPS_DYNAMIC;
2335 else
2336 smps_mode = IEEE80211_SMPS_OFF;
2337 }
2338
2339 /* send SM PS frame to AP */
2340 err = ieee80211_send_smps_action(sdata, smps_mode,
2341 ap, ap);
2342 if (err)
2343 sdata->u.mgd.req_smps = old_req;
2344
2345 return err;
2346}
2347
Johannes Bergbc92afd2009-07-01 21:26:57 +02002348static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev,
2349 bool enabled, int timeout)
2350{
2351 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2352 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Bergbc92afd2009-07-01 21:26:57 +02002353
Bob Copeland2d3db212013-10-29 18:11:59 -04002354 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Benoit Papillaulte5de30c2010-01-15 12:21:37 +01002355 return -EOPNOTSUPP;
2356
Johannes Bergbc92afd2009-07-01 21:26:57 +02002357 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
2358 return -EOPNOTSUPP;
2359
2360 if (enabled == sdata->u.mgd.powersave &&
Juuso Oikarinenff616382010-06-09 09:51:52 +03002361 timeout == local->dynamic_ps_forced_timeout)
Johannes Bergbc92afd2009-07-01 21:26:57 +02002362 return 0;
2363
2364 sdata->u.mgd.powersave = enabled;
Juuso Oikarinenff616382010-06-09 09:51:52 +03002365 local->dynamic_ps_forced_timeout = timeout;
Johannes Bergbc92afd2009-07-01 21:26:57 +02002366
Johannes Berg0f782312009-12-01 13:37:02 +01002367 /* no change, but if automatic follow powersave */
Johannes Berged405be2013-06-03 13:51:59 +02002368 sdata_lock(sdata);
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002369 __ieee80211_request_smps_mgd(sdata, sdata->u.mgd.req_smps);
Johannes Berged405be2013-06-03 13:51:59 +02002370 sdata_unlock(sdata);
Johannes Berg0f782312009-12-01 13:37:02 +01002371
Johannes Bergbc92afd2009-07-01 21:26:57 +02002372 if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
2373 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2374
2375 ieee80211_recalc_ps(local, -1);
Eliad Pellerab095872012-07-27 12:33:22 +03002376 ieee80211_recalc_ps_vif(sdata);
Johannes Bergbc92afd2009-07-01 21:26:57 +02002377
2378 return 0;
2379}
2380
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002381static int ieee80211_set_cqm_rssi_config(struct wiphy *wiphy,
2382 struct net_device *dev,
2383 s32 rssi_thold, u32 rssi_hyst)
2384{
2385 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002386 struct ieee80211_vif *vif = &sdata->vif;
2387 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
2388
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002389 if (rssi_thold == bss_conf->cqm_rssi_thold &&
2390 rssi_hyst == bss_conf->cqm_rssi_hyst)
2391 return 0;
2392
2393 bss_conf->cqm_rssi_thold = rssi_thold;
2394 bss_conf->cqm_rssi_hyst = rssi_hyst;
2395
2396 /* tell the driver upon association, unless already associated */
Johannes Bergea086352012-01-19 09:29:58 +01002397 if (sdata->u.mgd.associated &&
2398 sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002399 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_CQM);
2400
2401 return 0;
2402}
2403
Johannes Berg99303802009-07-01 21:26:59 +02002404static int ieee80211_set_bitrate_mask(struct wiphy *wiphy,
2405 struct net_device *dev,
2406 const u8 *addr,
2407 const struct cfg80211_bitrate_mask *mask)
2408{
2409 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2410 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +05302411 int i, ret;
Johannes Berg99303802009-07-01 21:26:59 +02002412
Eliad Peller554a43d2012-06-12 12:41:15 +03002413 if (!ieee80211_sdata_running(sdata))
2414 return -ENETDOWN;
2415
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +05302416 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL) {
2417 ret = drv_set_bitrate_mask(local, sdata, mask);
2418 if (ret)
2419 return ret;
2420 }
Johannes Berg99303802009-07-01 21:26:59 +02002421
Simon Wunderlich19468412012-01-28 17:25:33 +01002422 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
Felix Fietkau2ffbe6d2013-04-16 13:38:42 +02002423 struct ieee80211_supported_band *sband = wiphy->bands[i];
2424 int j;
2425
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002426 sdata->rc_rateidx_mask[i] = mask->control[i].legacy;
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01002427 memcpy(sdata->rc_rateidx_mcs_mask[i], mask->control[i].ht_mcs,
2428 sizeof(mask->control[i].ht_mcs));
Felix Fietkau2ffbe6d2013-04-16 13:38:42 +02002429
2430 sdata->rc_has_mcs_mask[i] = false;
2431 if (!sband)
2432 continue;
2433
2434 for (j = 0; j < IEEE80211_HT_MCS_MASK_LEN; j++)
2435 if (~sdata->rc_rateidx_mcs_mask[i][j]) {
2436 sdata->rc_has_mcs_mask[i] = true;
2437 break;
2438 }
Simon Wunderlich19468412012-01-28 17:25:33 +01002439 }
Johannes Berg99303802009-07-01 21:26:59 +02002440
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002441 return 0;
Johannes Berg99303802009-07-01 21:26:59 +02002442}
2443
Eliad Pellereaa336b2014-09-03 15:25:06 +03002444static bool ieee80211_coalesce_started_roc(struct ieee80211_local *local,
2445 struct ieee80211_roc_work *new_roc,
2446 struct ieee80211_roc_work *cur_roc)
2447{
2448 unsigned long j = jiffies;
2449 unsigned long cur_roc_end = cur_roc->hw_start_time +
2450 msecs_to_jiffies(cur_roc->duration);
2451 struct ieee80211_roc_work *next_roc;
2452 int new_dur;
2453
2454 if (WARN_ON(!cur_roc->started || !cur_roc->hw_begun))
2455 return false;
2456
2457 if (time_after(j + IEEE80211_ROC_MIN_LEFT, cur_roc_end))
2458 return false;
2459
2460 ieee80211_handle_roc_started(new_roc);
2461
2462 new_dur = new_roc->duration - jiffies_to_msecs(cur_roc_end - j);
2463
2464 /* cur_roc is long enough - add new_roc to the dependents list. */
2465 if (new_dur <= 0) {
2466 list_add_tail(&new_roc->list, &cur_roc->dependents);
2467 return true;
2468 }
2469
2470 new_roc->duration = new_dur;
2471
2472 /*
2473 * if cur_roc was already coalesced before, we might
2474 * want to extend the next roc instead of adding
2475 * a new one.
2476 */
2477 next_roc = list_entry(cur_roc->list.next,
2478 struct ieee80211_roc_work, list);
2479 if (&next_roc->list != &local->roc_list &&
2480 next_roc->chan == new_roc->chan &&
2481 next_roc->sdata == new_roc->sdata &&
2482 !WARN_ON(next_roc->started)) {
2483 list_add_tail(&new_roc->list, &next_roc->dependents);
2484 next_roc->duration = max(next_roc->duration,
2485 new_roc->duration);
2486 next_roc->type = max(next_roc->type, new_roc->type);
2487 return true;
2488 }
2489
2490 /* add right after cur_roc */
2491 list_add(&new_roc->list, &cur_roc->list);
2492
2493 return true;
2494}
2495
Johannes Berg2eb278e2012-06-05 14:28:42 +02002496static int ieee80211_start_roc_work(struct ieee80211_local *local,
2497 struct ieee80211_sub_if_data *sdata,
2498 struct ieee80211_channel *channel,
Johannes Berg2eb278e2012-06-05 14:28:42 +02002499 unsigned int duration, u64 *cookie,
Ilan Peerd339d5c2013-02-12 09:34:13 +02002500 struct sk_buff *txskb,
2501 enum ieee80211_roc_type type)
Johannes Berg21f83582010-12-18 17:20:47 +01002502{
Johannes Berg2eb278e2012-06-05 14:28:42 +02002503 struct ieee80211_roc_work *roc, *tmp;
2504 bool queued = false;
Johannes Berg21f83582010-12-18 17:20:47 +01002505 int ret;
Johannes Berg21f83582010-12-18 17:20:47 +01002506
2507 lockdep_assert_held(&local->mtx);
2508
Johannes Bergfe57d9f2012-07-26 14:55:08 +02002509 if (local->use_chanctx && !local->ops->remain_on_channel)
2510 return -EOPNOTSUPP;
2511
Johannes Berg2eb278e2012-06-05 14:28:42 +02002512 roc = kzalloc(sizeof(*roc), GFP_KERNEL);
2513 if (!roc)
2514 return -ENOMEM;
Johannes Berg21f83582010-12-18 17:20:47 +01002515
Ilan Peer2fae0622013-12-19 13:25:29 +02002516 /*
2517 * If the duration is zero, then the driver
2518 * wouldn't actually do anything. Set it to
2519 * 10 for now.
2520 *
2521 * TODO: cancel the off-channel operation
2522 * when we get the SKB's TX status and
2523 * the wait time was zero before.
2524 */
2525 if (!duration)
2526 duration = 10;
2527
Johannes Berg2eb278e2012-06-05 14:28:42 +02002528 roc->chan = channel;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002529 roc->duration = duration;
2530 roc->req_duration = duration;
2531 roc->frame = txskb;
Ilan Peerd339d5c2013-02-12 09:34:13 +02002532 roc->type = type;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002533 roc->mgmt_tx_cookie = (unsigned long)txskb;
2534 roc->sdata = sdata;
2535 INIT_DELAYED_WORK(&roc->work, ieee80211_sw_roc_work);
2536 INIT_LIST_HEAD(&roc->dependents);
2537
Eliad Peller2f617432014-01-12 11:06:37 +02002538 /*
2539 * cookie is either the roc cookie (for normal roc)
2540 * or the SKB (for mgmt TX)
2541 */
2542 if (!txskb) {
2543 /* local->mtx protects this */
2544 local->roc_cookie_counter++;
2545 roc->cookie = local->roc_cookie_counter;
2546 /* wow, you wrapped 64 bits ... more likely a bug */
2547 if (WARN_ON(roc->cookie == 0)) {
2548 roc->cookie = 1;
2549 local->roc_cookie_counter++;
2550 }
2551 *cookie = roc->cookie;
2552 } else {
2553 *cookie = (unsigned long)txskb;
2554 }
2555
Johannes Berg2eb278e2012-06-05 14:28:42 +02002556 /* if there's one pending or we're scanning, queue this one */
Simon Wunderlich164eb022013-02-08 18:16:20 +01002557 if (!list_empty(&local->roc_list) ||
Eliad Peller5cbc95a2015-01-07 17:50:09 +02002558 local->scanning || ieee80211_is_radar_required(local))
Johannes Berg2eb278e2012-06-05 14:28:42 +02002559 goto out_check_combine;
2560
2561 /* if not HW assist, just queue & schedule work */
2562 if (!local->ops->remain_on_channel) {
2563 ieee80211_queue_delayed_work(&local->hw, &roc->work, 0);
2564 goto out_queue;
Johannes Berg21f83582010-12-18 17:20:47 +01002565 }
2566
Johannes Berg2eb278e2012-06-05 14:28:42 +02002567 /* otherwise actually kick it off here (for error handling) */
2568
Ilan Peerd339d5c2013-02-12 09:34:13 +02002569 ret = drv_remain_on_channel(local, sdata, channel, duration, type);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002570 if (ret) {
2571 kfree(roc);
2572 return ret;
2573 }
2574
2575 roc->started = true;
2576 goto out_queue;
2577
2578 out_check_combine:
2579 list_for_each_entry(tmp, &local->roc_list, list) {
Johannes Berg42d97a52012-11-08 18:31:02 +01002580 if (tmp->chan != channel || tmp->sdata != sdata)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002581 continue;
2582
2583 /*
2584 * Extend this ROC if possible:
2585 *
2586 * If it hasn't started yet, just increase the duration
2587 * and add the new one to the list of dependents.
Ilan Peerd339d5c2013-02-12 09:34:13 +02002588 * If the type of the new ROC has higher priority, modify the
2589 * type of the previous one to match that of the new one.
Johannes Berg2eb278e2012-06-05 14:28:42 +02002590 */
2591 if (!tmp->started) {
2592 list_add_tail(&roc->list, &tmp->dependents);
2593 tmp->duration = max(tmp->duration, roc->duration);
Ilan Peerd339d5c2013-02-12 09:34:13 +02002594 tmp->type = max(tmp->type, roc->type);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002595 queued = true;
2596 break;
2597 }
2598
2599 /* If it has already started, it's more difficult ... */
2600 if (local->ops->remain_on_channel) {
Johannes Berg2eb278e2012-06-05 14:28:42 +02002601 /*
2602 * In the offloaded ROC case, if it hasn't begun, add
2603 * this new one to the dependent list to be handled
Ilan Peerd339d5c2013-02-12 09:34:13 +02002604 * when the master one begins. If it has begun,
Johannes Berg2eb278e2012-06-05 14:28:42 +02002605 * check that there's still a minimum time left and
2606 * if so, start this one, transmitting the frame, but
Ilan Peerd339d5c2013-02-12 09:34:13 +02002607 * add it to the list directly after this one with
Johannes Berg2eb278e2012-06-05 14:28:42 +02002608 * a reduced time so we'll ask the driver to execute
2609 * it right after finishing the previous one, in the
2610 * hope that it'll also be executed right afterwards,
2611 * effectively extending the old one.
2612 * If there's no minimum time left, just add it to the
2613 * normal list.
Ilan Peerd339d5c2013-02-12 09:34:13 +02002614 * TODO: the ROC type is ignored here, assuming that it
2615 * is better to immediately use the current ROC.
Johannes Berg2eb278e2012-06-05 14:28:42 +02002616 */
2617 if (!tmp->hw_begun) {
2618 list_add_tail(&roc->list, &tmp->dependents);
2619 queued = true;
2620 break;
2621 }
2622
Eliad Pellereaa336b2014-09-03 15:25:06 +03002623 if (ieee80211_coalesce_started_roc(local, roc, tmp))
Johannes Berg2eb278e2012-06-05 14:28:42 +02002624 queued = true;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002625 } else if (del_timer_sync(&tmp->work.timer)) {
2626 unsigned long new_end;
2627
2628 /*
2629 * In the software ROC case, cancel the timer, if
2630 * that fails then the finish work is already
2631 * queued/pending and thus we queue the new ROC
2632 * normally, if that succeeds then we can extend
2633 * the timer duration and TX the frame (if any.)
2634 */
2635
2636 list_add_tail(&roc->list, &tmp->dependents);
2637 queued = true;
2638
2639 new_end = jiffies + msecs_to_jiffies(roc->duration);
2640
2641 /* ok, it was started & we canceled timer */
2642 if (time_after(new_end, tmp->work.timer.expires))
2643 mod_timer(&tmp->work.timer, new_end);
2644 else
2645 add_timer(&tmp->work.timer);
2646
2647 ieee80211_handle_roc_started(roc);
2648 }
2649 break;
2650 }
2651
2652 out_queue:
2653 if (!queued)
2654 list_add_tail(&roc->list, &local->roc_list);
2655
Johannes Berg2eb278e2012-06-05 14:28:42 +02002656 return 0;
Johannes Berg21f83582010-12-18 17:20:47 +01002657}
2658
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002659static int ieee80211_remain_on_channel(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02002660 struct wireless_dev *wdev,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002661 struct ieee80211_channel *chan,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002662 unsigned int duration,
2663 u64 *cookie)
2664{
Johannes Berg71bbc992012-06-15 15:30:18 +02002665 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg21f83582010-12-18 17:20:47 +01002666 struct ieee80211_local *local = sdata->local;
Johannes Berg21f83582010-12-18 17:20:47 +01002667 int ret;
2668
Johannes Berg2eb278e2012-06-05 14:28:42 +02002669 mutex_lock(&local->mtx);
Johannes Berg42d97a52012-11-08 18:31:02 +01002670 ret = ieee80211_start_roc_work(local, sdata, chan,
Ilan Peerd339d5c2013-02-12 09:34:13 +02002671 duration, cookie, NULL,
2672 IEEE80211_ROC_TYPE_NORMAL);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002673 mutex_unlock(&local->mtx);
Johannes Berg21f83582010-12-18 17:20:47 +01002674
Johannes Berg2eb278e2012-06-05 14:28:42 +02002675 return ret;
2676}
2677
2678static int ieee80211_cancel_roc(struct ieee80211_local *local,
2679 u64 cookie, bool mgmt_tx)
2680{
2681 struct ieee80211_roc_work *roc, *tmp, *found = NULL;
2682 int ret;
2683
2684 mutex_lock(&local->mtx);
2685 list_for_each_entry_safe(roc, tmp, &local->roc_list, list) {
Johannes Berge979e332012-06-11 17:09:41 +02002686 struct ieee80211_roc_work *dep, *tmp2;
2687
2688 list_for_each_entry_safe(dep, tmp2, &roc->dependents, list) {
Johannes Berg50febf62012-10-26 16:13:06 +02002689 if (!mgmt_tx && dep->cookie != cookie)
Johannes Berge979e332012-06-11 17:09:41 +02002690 continue;
2691 else if (mgmt_tx && dep->mgmt_tx_cookie != cookie)
2692 continue;
2693 /* found dependent item -- just remove it */
2694 list_del(&dep->list);
2695 mutex_unlock(&local->mtx);
2696
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002697 ieee80211_roc_notify_destroy(dep, true);
Johannes Berge979e332012-06-11 17:09:41 +02002698 return 0;
2699 }
2700
Johannes Berg50febf62012-10-26 16:13:06 +02002701 if (!mgmt_tx && roc->cookie != cookie)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002702 continue;
2703 else if (mgmt_tx && roc->mgmt_tx_cookie != cookie)
2704 continue;
2705
2706 found = roc;
2707 break;
2708 }
2709
2710 if (!found) {
2711 mutex_unlock(&local->mtx);
Johannes Berg21f83582010-12-18 17:20:47 +01002712 return -ENOENT;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002713 }
Johannes Berg21f83582010-12-18 17:20:47 +01002714
Johannes Berge979e332012-06-11 17:09:41 +02002715 /*
2716 * We found the item to cancel, so do that. Note that it
2717 * may have dependents, which we also cancel (and send
2718 * the expired signal for.) Not doing so would be quite
2719 * tricky here, but we may need to fix it later.
2720 */
2721
Johannes Berg2eb278e2012-06-05 14:28:42 +02002722 if (local->ops->remain_on_channel) {
2723 if (found->started) {
2724 ret = drv_cancel_remain_on_channel(local);
2725 if (WARN_ON_ONCE(ret)) {
2726 mutex_unlock(&local->mtx);
2727 return ret;
2728 }
2729 }
Johannes Berg21f83582010-12-18 17:20:47 +01002730
Johannes Berg2eb278e2012-06-05 14:28:42 +02002731 list_del(&found->list);
2732
Johannes Berg0f6b3f52012-06-20 20:11:33 +02002733 if (found->started)
2734 ieee80211_start_next_roc(local);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002735 mutex_unlock(&local->mtx);
2736
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002737 ieee80211_roc_notify_destroy(found, true);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002738 } else {
2739 /* work may be pending so use it all the time */
2740 found->abort = true;
2741 ieee80211_queue_delayed_work(&local->hw, &found->work, 0);
2742
2743 mutex_unlock(&local->mtx);
2744
2745 /* work will clean up etc */
2746 flush_delayed_work(&found->work);
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002747 WARN_ON(!found->to_be_freed);
2748 kfree(found);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002749 }
Johannes Berg21f83582010-12-18 17:20:47 +01002750
Johannes Berg21f83582010-12-18 17:20:47 +01002751 return 0;
2752}
2753
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002754static int ieee80211_cancel_remain_on_channel(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02002755 struct wireless_dev *wdev,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002756 u64 cookie)
2757{
Johannes Berg71bbc992012-06-15 15:30:18 +02002758 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg21f83582010-12-18 17:20:47 +01002759 struct ieee80211_local *local = sdata->local;
2760
Johannes Berg2eb278e2012-06-05 14:28:42 +02002761 return ieee80211_cancel_roc(local, cookie, false);
Johannes Bergf30221e2010-11-25 10:02:30 +01002762}
2763
Simon Wunderlich164eb022013-02-08 18:16:20 +01002764static int ieee80211_start_radar_detection(struct wiphy *wiphy,
2765 struct net_device *dev,
Janusz Dziedzic31559f32014-02-21 19:46:13 +01002766 struct cfg80211_chan_def *chandef,
2767 u32 cac_time_ms)
Simon Wunderlich164eb022013-02-08 18:16:20 +01002768{
2769 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2770 struct ieee80211_local *local = sdata->local;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002771 int err;
2772
Johannes Berg34a37402013-12-18 09:43:33 +01002773 mutex_lock(&local->mtx);
2774 if (!list_empty(&local->roc_list) || local->scanning) {
2775 err = -EBUSY;
2776 goto out_unlock;
2777 }
Simon Wunderlich164eb022013-02-08 18:16:20 +01002778
2779 /* whatever, but channel contexts should not complain about that one */
2780 sdata->smps_mode = IEEE80211_SMPS_OFF;
2781 sdata->needed_rx_chains = local->rx_chains;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002782
Simon Wunderlich164eb022013-02-08 18:16:20 +01002783 err = ieee80211_vif_use_channel(sdata, chandef,
2784 IEEE80211_CHANCTX_SHARED);
Simon Wunderlich164eb022013-02-08 18:16:20 +01002785 if (err)
Johannes Berg34a37402013-12-18 09:43:33 +01002786 goto out_unlock;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002787
Simon Wunderlich164eb022013-02-08 18:16:20 +01002788 ieee80211_queue_delayed_work(&sdata->local->hw,
Janusz Dziedzic31559f32014-02-21 19:46:13 +01002789 &sdata->dfs_cac_timer_work,
2790 msecs_to_jiffies(cac_time_ms));
Simon Wunderlich164eb022013-02-08 18:16:20 +01002791
Johannes Berg34a37402013-12-18 09:43:33 +01002792 out_unlock:
2793 mutex_unlock(&local->mtx);
2794 return err;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002795}
2796
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002797static struct cfg80211_beacon_data *
2798cfg80211_beacon_dup(struct cfg80211_beacon_data *beacon)
2799{
2800 struct cfg80211_beacon_data *new_beacon;
2801 u8 *pos;
2802 int len;
2803
2804 len = beacon->head_len + beacon->tail_len + beacon->beacon_ies_len +
2805 beacon->proberesp_ies_len + beacon->assocresp_ies_len +
2806 beacon->probe_resp_len;
2807
2808 new_beacon = kzalloc(sizeof(*new_beacon) + len, GFP_KERNEL);
2809 if (!new_beacon)
2810 return NULL;
2811
2812 pos = (u8 *)(new_beacon + 1);
2813 if (beacon->head_len) {
2814 new_beacon->head_len = beacon->head_len;
2815 new_beacon->head = pos;
2816 memcpy(pos, beacon->head, beacon->head_len);
2817 pos += beacon->head_len;
2818 }
2819 if (beacon->tail_len) {
2820 new_beacon->tail_len = beacon->tail_len;
2821 new_beacon->tail = pos;
2822 memcpy(pos, beacon->tail, beacon->tail_len);
2823 pos += beacon->tail_len;
2824 }
2825 if (beacon->beacon_ies_len) {
2826 new_beacon->beacon_ies_len = beacon->beacon_ies_len;
2827 new_beacon->beacon_ies = pos;
2828 memcpy(pos, beacon->beacon_ies, beacon->beacon_ies_len);
2829 pos += beacon->beacon_ies_len;
2830 }
2831 if (beacon->proberesp_ies_len) {
2832 new_beacon->proberesp_ies_len = beacon->proberesp_ies_len;
2833 new_beacon->proberesp_ies = pos;
2834 memcpy(pos, beacon->proberesp_ies, beacon->proberesp_ies_len);
2835 pos += beacon->proberesp_ies_len;
2836 }
2837 if (beacon->assocresp_ies_len) {
2838 new_beacon->assocresp_ies_len = beacon->assocresp_ies_len;
2839 new_beacon->assocresp_ies = pos;
2840 memcpy(pos, beacon->assocresp_ies, beacon->assocresp_ies_len);
2841 pos += beacon->assocresp_ies_len;
2842 }
2843 if (beacon->probe_resp_len) {
2844 new_beacon->probe_resp_len = beacon->probe_resp_len;
2845 beacon->probe_resp = pos;
2846 memcpy(pos, beacon->probe_resp, beacon->probe_resp_len);
2847 pos += beacon->probe_resp_len;
2848 }
2849
2850 return new_beacon;
2851}
2852
Luciano Coelho66e01cf2014-01-13 19:43:00 +02002853void ieee80211_csa_finish(struct ieee80211_vif *vif)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002854{
Luciano Coelho66e01cf2014-01-13 19:43:00 +02002855 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2856
2857 ieee80211_queue_work(&sdata->local->hw,
2858 &sdata->csa_finalize_work);
2859}
2860EXPORT_SYMBOL(ieee80211_csa_finish);
2861
Michal Kazior66199502014-04-09 15:11:00 +02002862static int ieee80211_set_after_csa_beacon(struct ieee80211_sub_if_data *sdata,
2863 u32 *changed)
2864{
2865 int err;
2866
2867 switch (sdata->vif.type) {
2868 case NL80211_IFTYPE_AP:
Michal Kazioraf296bd2014-06-05 14:21:36 +02002869 err = ieee80211_assign_beacon(sdata, sdata->u.ap.next_beacon,
2870 NULL);
Michal Kazior66199502014-04-09 15:11:00 +02002871 kfree(sdata->u.ap.next_beacon);
2872 sdata->u.ap.next_beacon = NULL;
2873
2874 if (err < 0)
2875 return err;
2876 *changed |= err;
2877 break;
2878 case NL80211_IFTYPE_ADHOC:
2879 err = ieee80211_ibss_finish_csa(sdata);
2880 if (err < 0)
2881 return err;
2882 *changed |= err;
2883 break;
2884#ifdef CONFIG_MAC80211_MESH
2885 case NL80211_IFTYPE_MESH_POINT:
2886 err = ieee80211_mesh_finish_csa(sdata);
2887 if (err < 0)
2888 return err;
2889 *changed |= err;
2890 break;
2891#endif
2892 default:
2893 WARN_ON(1);
2894 return -EINVAL;
2895 }
2896
2897 return 0;
2898}
2899
Michal Kaziorcf8767d2014-05-08 09:10:02 +02002900static int __ieee80211_csa_finalize(struct ieee80211_sub_if_data *sdata)
Luciano Coelho66e01cf2014-01-13 19:43:00 +02002901{
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002902 struct ieee80211_local *local = sdata->local;
Michal Kazior66199502014-04-09 15:11:00 +02002903 u32 changed = 0;
2904 int err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002905
Michal Kaziordbd72852014-01-29 07:56:21 +01002906 sdata_assert_lock(sdata);
Michal Kazior59af6922014-04-09 15:10:59 +02002907 lockdep_assert_held(&local->mtx);
Michal Kazior03078de2014-06-25 12:35:08 +02002908 lockdep_assert_held(&local->chanctx_mtx);
Michal Kaziordbd72852014-01-29 07:56:21 +01002909
Michal Kazior03078de2014-06-25 12:35:08 +02002910 /*
2911 * using reservation isn't immediate as it may be deferred until later
2912 * with multi-vif. once reservation is complete it will re-schedule the
2913 * work with no reserved_chanctx so verify chandef to check if it
2914 * completed successfully
2915 */
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002916
Michal Kazior03078de2014-06-25 12:35:08 +02002917 if (sdata->reserved_chanctx) {
2918 /*
2919 * with multi-vif csa driver may call ieee80211_csa_finish()
2920 * many times while waiting for other interfaces to use their
2921 * reservations
2922 */
2923 if (sdata->reserved_ready)
2924 return 0;
2925
Fabian Frederick408b18a2014-10-09 20:36:22 +02002926 return ieee80211_vif_use_reserved_context(sdata);
Arik Nemtsov7578d572013-09-01 17:15:51 +03002927 }
2928
Michal Kazior03078de2014-06-25 12:35:08 +02002929 if (!cfg80211_chandef_identical(&sdata->vif.bss_conf.chandef,
2930 &sdata->csa_chandef))
2931 return -EINVAL;
2932
Simon Wunderliche487eae2013-11-21 18:19:51 +01002933 sdata->vif.csa_active = false;
Michal Kazior97518af2014-01-29 07:56:18 +01002934
Michal Kazior66199502014-04-09 15:11:00 +02002935 err = ieee80211_set_after_csa_beacon(sdata, &changed);
2936 if (err)
Michal Kaziorcf8767d2014-05-08 09:10:02 +02002937 return err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002938
Michal Kaziorfaf046e2014-01-29 07:56:17 +01002939 ieee80211_bss_info_change_notify(sdata, changed);
Michal Kazior59af6922014-04-09 15:10:59 +02002940
Luciano Coelhoa46992b2014-06-13 16:30:07 +03002941 if (sdata->csa_block_tx) {
2942 ieee80211_wake_vif_queues(local, sdata,
2943 IEEE80211_QUEUE_STOP_REASON_CSA);
2944 sdata->csa_block_tx = false;
2945 }
Michal Kaziorcf8767d2014-05-08 09:10:02 +02002946
Luciano Coelhof1d65582014-10-08 09:48:38 +03002947 err = drv_post_channel_switch(sdata);
2948 if (err)
2949 return err;
2950
2951 cfg80211_ch_switch_notify(sdata->dev, &sdata->csa_chandef);
2952
Michal Kaziorcf8767d2014-05-08 09:10:02 +02002953 return 0;
2954}
2955
2956static void ieee80211_csa_finalize(struct ieee80211_sub_if_data *sdata)
2957{
2958 if (__ieee80211_csa_finalize(sdata)) {
2959 sdata_info(sdata, "failed to finalize CSA, disconnecting\n");
2960 cfg80211_stop_iface(sdata->local->hw.wiphy, &sdata->wdev,
2961 GFP_KERNEL);
2962 }
Luciano Coelho66e01cf2014-01-13 19:43:00 +02002963}
2964
2965void ieee80211_csa_finalize_work(struct work_struct *work)
2966{
2967 struct ieee80211_sub_if_data *sdata =
2968 container_of(work, struct ieee80211_sub_if_data,
2969 csa_finalize_work);
Michal Kazior59af6922014-04-09 15:10:59 +02002970 struct ieee80211_local *local = sdata->local;
Luciano Coelho66e01cf2014-01-13 19:43:00 +02002971
2972 sdata_lock(sdata);
Michal Kazior59af6922014-04-09 15:10:59 +02002973 mutex_lock(&local->mtx);
Michal Kazior03078de2014-06-25 12:35:08 +02002974 mutex_lock(&local->chanctx_mtx);
Michal Kazior59af6922014-04-09 15:10:59 +02002975
Luciano Coelho66e01cf2014-01-13 19:43:00 +02002976 /* AP might have been stopped while waiting for the lock. */
2977 if (!sdata->vif.csa_active)
2978 goto unlock;
2979
2980 if (!ieee80211_sdata_running(sdata))
2981 goto unlock;
2982
2983 ieee80211_csa_finalize(sdata);
Simon Wunderliche487eae2013-11-21 18:19:51 +01002984
2985unlock:
Michal Kazior03078de2014-06-25 12:35:08 +02002986 mutex_unlock(&local->chanctx_mtx);
Michal Kazior59af6922014-04-09 15:10:59 +02002987 mutex_unlock(&local->mtx);
Simon Wunderliche487eae2013-11-21 18:19:51 +01002988 sdata_unlock(sdata);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002989}
2990
Michal Kazior37fa2bd2014-02-28 15:59:06 +01002991static int ieee80211_set_csa_beacon(struct ieee80211_sub_if_data *sdata,
2992 struct cfg80211_csa_settings *params,
2993 u32 *changed)
2994{
Michal Kazioraf296bd2014-06-05 14:21:36 +02002995 struct ieee80211_csa_settings csa = {};
Michal Kazior37fa2bd2014-02-28 15:59:06 +01002996 int err;
2997
2998 switch (sdata->vif.type) {
2999 case NL80211_IFTYPE_AP:
3000 sdata->u.ap.next_beacon =
3001 cfg80211_beacon_dup(&params->beacon_after);
3002 if (!sdata->u.ap.next_beacon)
3003 return -ENOMEM;
3004
3005 /*
3006 * With a count of 0, we don't have to wait for any
3007 * TBTT before switching, so complete the CSA
3008 * immediately. In theory, with a count == 1 we
3009 * should delay the switch until just before the next
3010 * TBTT, but that would complicate things so we switch
3011 * immediately too. If we would delay the switch
3012 * until the next TBTT, we would have to set the probe
3013 * response here.
3014 *
3015 * TODO: A channel switch with count <= 1 without
3016 * sending a CSA action frame is kind of useless,
3017 * because the clients won't know we're changing
3018 * channels. The action frame must be implemented
3019 * either here or in the userspace.
3020 */
3021 if (params->count <= 1)
3022 break;
3023
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03003024 if ((params->n_counter_offsets_beacon >
3025 IEEE80211_MAX_CSA_COUNTERS_NUM) ||
3026 (params->n_counter_offsets_presp >
3027 IEEE80211_MAX_CSA_COUNTERS_NUM))
3028 return -EINVAL;
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03003029
Michal Kazioraf296bd2014-06-05 14:21:36 +02003030 csa.counter_offsets_beacon = params->counter_offsets_beacon;
3031 csa.counter_offsets_presp = params->counter_offsets_presp;
3032 csa.n_counter_offsets_beacon = params->n_counter_offsets_beacon;
3033 csa.n_counter_offsets_presp = params->n_counter_offsets_presp;
3034 csa.count = params->count;
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03003035
Michal Kazioraf296bd2014-06-05 14:21:36 +02003036 err = ieee80211_assign_beacon(sdata, &params->beacon_csa, &csa);
Michal Kazior37fa2bd2014-02-28 15:59:06 +01003037 if (err < 0) {
3038 kfree(sdata->u.ap.next_beacon);
3039 return err;
3040 }
3041 *changed |= err;
3042
3043 break;
3044 case NL80211_IFTYPE_ADHOC:
3045 if (!sdata->vif.bss_conf.ibss_joined)
3046 return -EINVAL;
3047
3048 if (params->chandef.width != sdata->u.ibss.chandef.width)
3049 return -EINVAL;
3050
3051 switch (params->chandef.width) {
3052 case NL80211_CHAN_WIDTH_40:
3053 if (cfg80211_get_chandef_type(&params->chandef) !=
3054 cfg80211_get_chandef_type(&sdata->u.ibss.chandef))
3055 return -EINVAL;
3056 case NL80211_CHAN_WIDTH_5:
3057 case NL80211_CHAN_WIDTH_10:
3058 case NL80211_CHAN_WIDTH_20_NOHT:
3059 case NL80211_CHAN_WIDTH_20:
3060 break;
3061 default:
3062 return -EINVAL;
3063 }
3064
3065 /* changes into another band are not supported */
3066 if (sdata->u.ibss.chandef.chan->band !=
3067 params->chandef.chan->band)
3068 return -EINVAL;
3069
3070 /* see comments in the NL80211_IFTYPE_AP block */
3071 if (params->count > 1) {
3072 err = ieee80211_ibss_csa_beacon(sdata, params);
3073 if (err < 0)
3074 return err;
3075 *changed |= err;
3076 }
3077
3078 ieee80211_send_action_csa(sdata, params);
3079
3080 break;
3081#ifdef CONFIG_MAC80211_MESH
3082 case NL80211_IFTYPE_MESH_POINT: {
3083 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
3084
3085 if (params->chandef.width != sdata->vif.bss_conf.chandef.width)
3086 return -EINVAL;
3087
3088 /* changes into another band are not supported */
3089 if (sdata->vif.bss_conf.chandef.chan->band !=
3090 params->chandef.chan->band)
3091 return -EINVAL;
3092
3093 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_NONE) {
3094 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_INIT;
3095 if (!ifmsh->pre_value)
3096 ifmsh->pre_value = 1;
3097 else
3098 ifmsh->pre_value++;
3099 }
3100
3101 /* see comments in the NL80211_IFTYPE_AP block */
3102 if (params->count > 1) {
3103 err = ieee80211_mesh_csa_beacon(sdata, params);
3104 if (err < 0) {
3105 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_NONE;
3106 return err;
3107 }
3108 *changed |= err;
3109 }
3110
3111 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_INIT)
3112 ieee80211_send_action_csa(sdata, params);
3113
3114 break;
3115 }
3116#endif
3117 default:
3118 return -EOPNOTSUPP;
3119 }
3120
3121 return 0;
3122}
3123
Luciano Coelhof29f58a2014-05-07 20:05:12 +03003124static int
3125__ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev,
3126 struct cfg80211_csa_settings *params)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003127{
3128 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3129 struct ieee80211_local *local = sdata->local;
Luciano Coelho6d027bc2014-10-08 09:48:37 +03003130 struct ieee80211_channel_switch ch_switch;
Michal Kazior2b327132014-04-09 15:29:32 +02003131 struct ieee80211_chanctx_conf *conf;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003132 struct ieee80211_chanctx *chanctx;
Johannes Bergb08cc242014-10-20 21:36:04 +02003133 u32 changed = 0;
3134 int err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003135
Michal Kaziordbd72852014-01-29 07:56:21 +01003136 sdata_assert_lock(sdata);
Michal Kazior59af6922014-04-09 15:10:59 +02003137 lockdep_assert_held(&local->mtx);
Simon Wunderlich7ca133b2013-11-21 18:19:50 +01003138
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003139 if (!list_empty(&local->roc_list) || local->scanning)
3140 return -EBUSY;
3141
3142 if (sdata->wdev.cac_started)
3143 return -EBUSY;
3144
3145 if (cfg80211_chandef_identical(&params->chandef,
3146 &sdata->vif.bss_conf.chandef))
3147 return -EINVAL;
3148
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003149 /* don't allow another channel switch if one is already active. */
3150 if (sdata->vif.csa_active)
3151 return -EBUSY;
3152
Michal Kazior03078de2014-06-25 12:35:08 +02003153 mutex_lock(&local->chanctx_mtx);
3154 conf = rcu_dereference_protected(sdata->vif.chanctx_conf,
3155 lockdep_is_held(&local->chanctx_mtx));
3156 if (!conf) {
3157 err = -EBUSY;
3158 goto out;
3159 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003160
Michal Kazior03078de2014-06-25 12:35:08 +02003161 chanctx = container_of(conf, struct ieee80211_chanctx, conf);
3162 if (!chanctx) {
3163 err = -EBUSY;
3164 goto out;
3165 }
3166
Luciano Coelho000baa52014-11-07 15:28:33 +02003167 ch_switch.timestamp = 0;
3168 ch_switch.device_timestamp = 0;
3169 ch_switch.block_tx = params->block_tx;
3170 ch_switch.chandef = params->chandef;
3171 ch_switch.count = params->count;
3172
Luciano Coelho6d027bc2014-10-08 09:48:37 +03003173 err = drv_pre_channel_switch(sdata, &ch_switch);
3174 if (err)
3175 goto out;
3176
Michal Kazior03078de2014-06-25 12:35:08 +02003177 err = ieee80211_vif_reserve_chanctx(sdata, &params->chandef,
3178 chanctx->mode,
3179 params->radar_required);
3180 if (err)
3181 goto out;
3182
3183 /* if reservation is invalid then this will fail */
3184 err = ieee80211_check_combinations(sdata, NULL, chanctx->mode, 0);
3185 if (err) {
3186 ieee80211_vif_unreserve_chanctx(sdata);
3187 goto out;
3188 }
3189
3190 err = ieee80211_set_csa_beacon(sdata, params, &changed);
3191 if (err) {
3192 ieee80211_vif_unreserve_chanctx(sdata);
3193 goto out;
3194 }
3195
Luciano Coelho33787fc2013-11-11 20:34:54 +02003196 sdata->csa_chandef = params->chandef;
Michal Kazior59af6922014-04-09 15:10:59 +02003197 sdata->csa_block_tx = params->block_tx;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003198 sdata->vif.csa_active = true;
3199
Michal Kazior59af6922014-04-09 15:10:59 +02003200 if (sdata->csa_block_tx)
Luciano Coelhoa46992b2014-06-13 16:30:07 +03003201 ieee80211_stop_vif_queues(local, sdata,
3202 IEEE80211_QUEUE_STOP_REASON_CSA);
Michal Kazior59af6922014-04-09 15:10:59 +02003203
Luciano Coelho2f457292014-11-07 14:31:36 +02003204 cfg80211_ch_switch_started_notify(sdata->dev, &sdata->csa_chandef,
3205 params->count);
3206
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003207 if (changed) {
3208 ieee80211_bss_info_change_notify(sdata, changed);
3209 drv_channel_switch_beacon(sdata, &params->chandef);
3210 } else {
3211 /* if the beacon didn't change, we can finalize immediately */
3212 ieee80211_csa_finalize(sdata);
3213 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003214
Michal Kazior03078de2014-06-25 12:35:08 +02003215out:
3216 mutex_unlock(&local->chanctx_mtx);
3217 return err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003218}
3219
Michal Kazior59af6922014-04-09 15:10:59 +02003220int ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev,
3221 struct cfg80211_csa_settings *params)
3222{
3223 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3224 struct ieee80211_local *local = sdata->local;
3225 int err;
3226
3227 mutex_lock(&local->mtx);
3228 err = __ieee80211_channel_switch(wiphy, dev, params);
3229 mutex_unlock(&local->mtx);
3230
3231 return err;
3232}
3233
Johannes Berg71bbc992012-06-15 15:30:18 +02003234static int ieee80211_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003235 struct cfg80211_mgmt_tx_params *params,
3236 u64 *cookie)
Jouni Malinen026331c2010-02-15 12:53:10 +02003237{
Johannes Berg71bbc992012-06-15 15:30:18 +02003238 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg9d38d852010-06-09 17:20:33 +02003239 struct ieee80211_local *local = sdata->local;
3240 struct sk_buff *skb;
3241 struct sta_info *sta;
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003242 const struct ieee80211_mgmt *mgmt = (void *)params->buf;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003243 bool need_offchan = false;
Johannes Berge247bd902011-11-04 11:18:21 +01003244 u32 flags;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003245 int ret;
Andrei Otcheretianski387910c2014-05-09 14:11:45 +03003246 u8 *data;
Johannes Bergf7ca38d2010-11-25 10:02:29 +01003247
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003248 if (params->dont_wait_for_ack)
Johannes Berge247bd902011-11-04 11:18:21 +01003249 flags = IEEE80211_TX_CTL_NO_ACK;
3250 else
3251 flags = IEEE80211_TX_INTFL_NL80211_FRAME_TX |
3252 IEEE80211_TX_CTL_REQ_TX_STATUS;
3253
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003254 if (params->no_cck)
Rajkumar Manoharanaad14ce2011-09-25 14:53:31 +05303255 flags |= IEEE80211_TX_CTL_NO_CCK_RATE;
3256
Johannes Berg9d38d852010-06-09 17:20:33 +02003257 switch (sdata->vif.type) {
3258 case NL80211_IFTYPE_ADHOC:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003259 if (!sdata->vif.bss_conf.ibss_joined)
3260 need_offchan = true;
3261 /* fall through */
3262#ifdef CONFIG_MAC80211_MESH
3263 case NL80211_IFTYPE_MESH_POINT:
3264 if (ieee80211_vif_is_mesh(&sdata->vif) &&
3265 !sdata->u.mesh.mesh_id_len)
3266 need_offchan = true;
3267 /* fall through */
3268#endif
Johannes Berg663fcaf2010-09-30 21:06:09 +02003269 case NL80211_IFTYPE_AP:
3270 case NL80211_IFTYPE_AP_VLAN:
3271 case NL80211_IFTYPE_P2P_GO:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003272 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
3273 !ieee80211_vif_is_mesh(&sdata->vif) &&
3274 !rcu_access_pointer(sdata->bss->beacon))
3275 need_offchan = true;
Johannes Berg663fcaf2010-09-30 21:06:09 +02003276 if (!ieee80211_is_action(mgmt->frame_control) ||
Thomas Pedersenac49e1a2013-06-20 23:50:58 -07003277 mgmt->u.action.category == WLAN_CATEGORY_PUBLIC ||
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003278 mgmt->u.action.category == WLAN_CATEGORY_SELF_PROTECTED ||
3279 mgmt->u.action.category == WLAN_CATEGORY_SPECTRUM_MGMT)
Johannes Berg9d38d852010-06-09 17:20:33 +02003280 break;
3281 rcu_read_lock();
3282 sta = sta_info_get(sdata, mgmt->da);
3283 rcu_read_unlock();
3284 if (!sta)
3285 return -ENOLINK;
3286 break;
3287 case NL80211_IFTYPE_STATION:
Johannes Berg663fcaf2010-09-30 21:06:09 +02003288 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003289 if (!sdata->u.mgd.associated)
3290 need_offchan = true;
Johannes Berg9d38d852010-06-09 17:20:33 +02003291 break;
Johannes Bergf142c6b2012-06-18 20:07:15 +02003292 case NL80211_IFTYPE_P2P_DEVICE:
3293 need_offchan = true;
3294 break;
Johannes Berg9d38d852010-06-09 17:20:33 +02003295 default:
3296 return -EOPNOTSUPP;
3297 }
3298
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003299 /* configurations requiring offchan cannot work if no channel has been
3300 * specified
3301 */
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003302 if (need_offchan && !params->chan)
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003303 return -EINVAL;
3304
Johannes Berg2eb278e2012-06-05 14:28:42 +02003305 mutex_lock(&local->mtx);
3306
3307 /* Check if the operating channel is the requested channel */
3308 if (!need_offchan) {
Johannes Berg55de9082012-07-26 17:24:39 +02003309 struct ieee80211_chanctx_conf *chanctx_conf;
3310
3311 rcu_read_lock();
3312 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3313
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003314 if (chanctx_conf) {
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003315 need_offchan = params->chan &&
3316 (params->chan !=
3317 chanctx_conf->def.chan);
3318 } else if (!params->chan) {
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003319 ret = -EINVAL;
3320 rcu_read_unlock();
3321 goto out_unlock;
3322 } else {
Johannes Berg2eb278e2012-06-05 14:28:42 +02003323 need_offchan = true;
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003324 }
Johannes Berg55de9082012-07-26 17:24:39 +02003325 rcu_read_unlock();
Johannes Berg2eb278e2012-06-05 14:28:42 +02003326 }
3327
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003328 if (need_offchan && !params->offchan) {
Johannes Berg2eb278e2012-06-05 14:28:42 +02003329 ret = -EBUSY;
3330 goto out_unlock;
3331 }
3332
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003333 skb = dev_alloc_skb(local->hw.extra_tx_headroom + params->len);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003334 if (!skb) {
3335 ret = -ENOMEM;
3336 goto out_unlock;
3337 }
Johannes Berg9d38d852010-06-09 17:20:33 +02003338 skb_reserve(skb, local->hw.extra_tx_headroom);
3339
Andrei Otcheretianski387910c2014-05-09 14:11:45 +03003340 data = skb_put(skb, params->len);
3341 memcpy(data, params->buf, params->len);
3342
3343 /* Update CSA counters */
3344 if (sdata->vif.csa_active &&
3345 (sdata->vif.type == NL80211_IFTYPE_AP ||
3346 sdata->vif.type == NL80211_IFTYPE_ADHOC) &&
3347 params->n_csa_offsets) {
3348 int i;
Michal Kazioraf296bd2014-06-05 14:21:36 +02003349 struct beacon_data *beacon = NULL;
Andrei Otcheretianski387910c2014-05-09 14:11:45 +03003350
Michal Kazioraf296bd2014-06-05 14:21:36 +02003351 rcu_read_lock();
3352
3353 if (sdata->vif.type == NL80211_IFTYPE_AP)
3354 beacon = rcu_dereference(sdata->u.ap.beacon);
3355 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
3356 beacon = rcu_dereference(sdata->u.ibss.presp);
3357 else if (ieee80211_vif_is_mesh(&sdata->vif))
3358 beacon = rcu_dereference(sdata->u.mesh.beacon);
3359
3360 if (beacon)
3361 for (i = 0; i < params->n_csa_offsets; i++)
3362 data[params->csa_offsets[i]] =
3363 beacon->csa_current_counter;
3364
3365 rcu_read_unlock();
Andrei Otcheretianski387910c2014-05-09 14:11:45 +03003366 }
Johannes Berg9d38d852010-06-09 17:20:33 +02003367
3368 IEEE80211_SKB_CB(skb)->flags = flags;
3369
Johannes Berg2eb278e2012-06-05 14:28:42 +02003370 skb->dev = sdata->dev;
3371
3372 if (!need_offchan) {
Nicolas Cavallari7f9f78a2012-07-16 18:36:52 +02003373 *cookie = (unsigned long) skb;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003374 ieee80211_tx_skb(sdata, skb);
3375 ret = 0;
3376 goto out_unlock;
3377 }
3378
Seth Forshee6c17b772013-02-11 11:21:07 -06003379 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_TX_OFFCHAN |
3380 IEEE80211_TX_INTFL_OFFCHAN_TX_OK;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003381 if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)
Johannes Berg3a25a8c2012-04-03 16:28:50 +02003382 IEEE80211_SKB_CB(skb)->hw_queue =
3383 local->hw.offchannel_tx_hw_queue;
3384
Johannes Berg2eb278e2012-06-05 14:28:42 +02003385 /* This will handle all kinds of coalescing and immediate TX */
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003386 ret = ieee80211_start_roc_work(local, sdata, params->chan,
3387 params->wait, cookie, skb,
Ilan Peerd339d5c2013-02-12 09:34:13 +02003388 IEEE80211_ROC_TYPE_MGMT_TX);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003389 if (ret)
Johannes Bergf30221e2010-11-25 10:02:30 +01003390 kfree_skb(skb);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003391 out_unlock:
3392 mutex_unlock(&local->mtx);
3393 return ret;
Jouni Malinen026331c2010-02-15 12:53:10 +02003394}
3395
Johannes Bergf30221e2010-11-25 10:02:30 +01003396static int ieee80211_mgmt_tx_cancel_wait(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02003397 struct wireless_dev *wdev,
Johannes Bergf30221e2010-11-25 10:02:30 +01003398 u64 cookie)
3399{
Johannes Berg71bbc992012-06-15 15:30:18 +02003400 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Bergf30221e2010-11-25 10:02:30 +01003401
Johannes Berg2eb278e2012-06-05 14:28:42 +02003402 return ieee80211_cancel_roc(local, cookie, true);
Johannes Bergf30221e2010-11-25 10:02:30 +01003403}
3404
Johannes Berg7be50862010-10-13 12:06:24 +02003405static void ieee80211_mgmt_frame_register(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02003406 struct wireless_dev *wdev,
Johannes Berg7be50862010-10-13 12:06:24 +02003407 u16 frame_type, bool reg)
3408{
3409 struct ieee80211_local *local = wiphy_priv(wiphy);
3410
Will Hawkins6abe0562012-06-20 11:51:14 -04003411 switch (frame_type) {
Will Hawkins6abe0562012-06-20 11:51:14 -04003412 case IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_PROBE_REQ:
3413 if (reg)
3414 local->probe_req_reg++;
3415 else
3416 local->probe_req_reg--;
Johannes Berg7be50862010-10-13 12:06:24 +02003417
Felix Fietkau35f51492012-10-31 15:50:34 +01003418 if (!local->open_count)
3419 break;
3420
Will Hawkins6abe0562012-06-20 11:51:14 -04003421 ieee80211_queue_work(&local->hw, &local->reconfig_filter);
3422 break;
3423 default:
3424 break;
3425 }
Johannes Berg7be50862010-10-13 12:06:24 +02003426}
3427
Bruno Randolf15d96752010-11-10 12:50:56 +09003428static int ieee80211_set_antenna(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant)
3429{
3430 struct ieee80211_local *local = wiphy_priv(wiphy);
3431
3432 if (local->started)
3433 return -EOPNOTSUPP;
3434
3435 return drv_set_antenna(local, tx_ant, rx_ant);
3436}
3437
3438static int ieee80211_get_antenna(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant)
3439{
3440 struct ieee80211_local *local = wiphy_priv(wiphy);
3441
3442 return drv_get_antenna(local, tx_ant, rx_ant);
3443}
3444
Johannes Bergc68f4b82011-07-05 16:35:41 +02003445static int ieee80211_set_rekey_data(struct wiphy *wiphy,
3446 struct net_device *dev,
3447 struct cfg80211_gtk_rekey_data *data)
3448{
3449 struct ieee80211_local *local = wiphy_priv(wiphy);
3450 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3451
3452 if (!local->ops->set_rekey_data)
3453 return -EOPNOTSUPP;
3454
3455 drv_set_rekey_data(local, sdata, data);
3456
3457 return 0;
3458}
3459
Johannes Berg06500732011-11-04 11:18:16 +01003460static int ieee80211_probe_client(struct wiphy *wiphy, struct net_device *dev,
3461 const u8 *peer, u64 *cookie)
3462{
3463 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3464 struct ieee80211_local *local = sdata->local;
3465 struct ieee80211_qos_hdr *nullfunc;
3466 struct sk_buff *skb;
3467 int size = sizeof(*nullfunc);
3468 __le16 fc;
3469 bool qos;
3470 struct ieee80211_tx_info *info;
3471 struct sta_info *sta;
Johannes Berg55de9082012-07-26 17:24:39 +02003472 struct ieee80211_chanctx_conf *chanctx_conf;
3473 enum ieee80211_band band;
Johannes Berg06500732011-11-04 11:18:16 +01003474
3475 rcu_read_lock();
Johannes Berg55de9082012-07-26 17:24:39 +02003476 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3477 if (WARN_ON(!chanctx_conf)) {
3478 rcu_read_unlock();
3479 return -EINVAL;
3480 }
Johannes Berg4bf88532012-11-09 11:39:59 +01003481 band = chanctx_conf->def.chan->band;
Felix Fietkau03bb7f42013-09-29 21:39:33 +02003482 sta = sta_info_get_bss(sdata, peer);
Johannes Bergb4487c22011-11-11 20:22:30 +01003483 if (sta) {
Johannes Berga74a8c82014-07-22 14:50:47 +02003484 qos = sta->sta.wme;
Johannes Bergb4487c22011-11-11 20:22:30 +01003485 } else {
3486 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003487 return -ENOLINK;
Johannes Bergb4487c22011-11-11 20:22:30 +01003488 }
Johannes Berg06500732011-11-04 11:18:16 +01003489
3490 if (qos) {
3491 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3492 IEEE80211_STYPE_QOS_NULLFUNC |
3493 IEEE80211_FCTL_FROMDS);
3494 } else {
3495 size -= 2;
3496 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3497 IEEE80211_STYPE_NULLFUNC |
3498 IEEE80211_FCTL_FROMDS);
3499 }
3500
3501 skb = dev_alloc_skb(local->hw.extra_tx_headroom + size);
Johannes Berg55de9082012-07-26 17:24:39 +02003502 if (!skb) {
3503 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003504 return -ENOMEM;
Johannes Berg55de9082012-07-26 17:24:39 +02003505 }
Johannes Berg06500732011-11-04 11:18:16 +01003506
3507 skb->dev = dev;
3508
3509 skb_reserve(skb, local->hw.extra_tx_headroom);
3510
3511 nullfunc = (void *) skb_put(skb, size);
3512 nullfunc->frame_control = fc;
3513 nullfunc->duration_id = 0;
3514 memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN);
3515 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
3516 memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);
3517 nullfunc->seq_ctrl = 0;
3518
3519 info = IEEE80211_SKB_CB(skb);
3520
3521 info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
3522 IEEE80211_TX_INTFL_NL80211_FRAME_TX;
Johannes Berg73c4e192014-11-09 18:50:09 +02003523 info->band = band;
Johannes Berg06500732011-11-04 11:18:16 +01003524
3525 skb_set_queue_mapping(skb, IEEE80211_AC_VO);
3526 skb->priority = 7;
3527 if (qos)
3528 nullfunc->qos_ctrl = cpu_to_le16(7);
3529
3530 local_bh_disable();
Johannes Berg73c4e192014-11-09 18:50:09 +02003531 ieee80211_xmit(sdata, skb);
Johannes Berg06500732011-11-04 11:18:16 +01003532 local_bh_enable();
Johannes Berg55de9082012-07-26 17:24:39 +02003533 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003534
3535 *cookie = (unsigned long) skb;
3536 return 0;
3537}
3538
Johannes Berg683b6d32012-11-08 21:25:48 +01003539static int ieee80211_cfg_get_channel(struct wiphy *wiphy,
3540 struct wireless_dev *wdev,
3541 struct cfg80211_chan_def *chandef)
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003542{
Johannes Berg55de9082012-07-26 17:24:39 +02003543 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Felix Fietkaucb601ff2013-02-23 19:02:14 +01003544 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg55de9082012-07-26 17:24:39 +02003545 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Berg683b6d32012-11-08 21:25:48 +01003546 int ret = -ENODATA;
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003547
Johannes Berg55de9082012-07-26 17:24:39 +02003548 rcu_read_lock();
Johannes Bergfeda3022013-02-28 09:59:22 +01003549 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3550 if (chanctx_conf) {
Luciano Coelhoc12bc482014-09-30 07:08:02 +03003551 *chandef = sdata->vif.bss_conf.chandef;
Johannes Bergfeda3022013-02-28 09:59:22 +01003552 ret = 0;
3553 } else if (local->open_count > 0 &&
3554 local->open_count == local->monitors &&
3555 sdata->vif.type == NL80211_IFTYPE_MONITOR) {
3556 if (local->use_chanctx)
3557 *chandef = local->monitor_chandef;
3558 else
Karl Beldan675a0b02013-03-25 16:26:57 +01003559 *chandef = local->_oper_chandef;
Johannes Berg683b6d32012-11-08 21:25:48 +01003560 ret = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02003561 }
3562 rcu_read_unlock();
3563
Johannes Berg683b6d32012-11-08 21:25:48 +01003564 return ret;
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003565}
3566
Johannes Berg6d525632012-04-04 15:05:25 +02003567#ifdef CONFIG_PM
3568static void ieee80211_set_wakeup(struct wiphy *wiphy, bool enabled)
3569{
3570 drv_set_wakeup(wiphy_priv(wiphy), enabled);
3571}
3572#endif
3573
Kyeyoon Park32db6b52013-12-16 23:04:43 -08003574static int ieee80211_set_qos_map(struct wiphy *wiphy,
3575 struct net_device *dev,
3576 struct cfg80211_qos_map *qos_map)
3577{
3578 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3579 struct mac80211_qos_map *new_qos_map, *old_qos_map;
3580
3581 if (qos_map) {
3582 new_qos_map = kzalloc(sizeof(*new_qos_map), GFP_KERNEL);
3583 if (!new_qos_map)
3584 return -ENOMEM;
3585 memcpy(&new_qos_map->qos_map, qos_map, sizeof(*qos_map));
3586 } else {
3587 /* A NULL qos_map was passed to disable QoS mapping */
3588 new_qos_map = NULL;
3589 }
3590
Johannes Berg194ff522013-12-30 23:12:37 +01003591 old_qos_map = sdata_dereference(sdata->qos_map, sdata);
Kyeyoon Park32db6b52013-12-16 23:04:43 -08003592 rcu_assign_pointer(sdata->qos_map, new_qos_map);
3593 if (old_qos_map)
3594 kfree_rcu(old_qos_map, rcu_head);
3595
3596 return 0;
3597}
3598
Jouni Malinen3b1700b2014-04-28 11:22:25 +03003599static int ieee80211_set_ap_chanwidth(struct wiphy *wiphy,
3600 struct net_device *dev,
3601 struct cfg80211_chan_def *chandef)
3602{
3603 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3604 int ret;
3605 u32 changed = 0;
3606
3607 ret = ieee80211_vif_change_bandwidth(sdata, chandef, &changed);
3608 if (ret == 0)
3609 ieee80211_bss_info_change_notify(sdata, changed);
3610
3611 return ret;
3612}
3613
Johannes Berg02219b32014-10-07 10:38:50 +03003614static int ieee80211_add_tx_ts(struct wiphy *wiphy, struct net_device *dev,
3615 u8 tsid, const u8 *peer, u8 up,
3616 u16 admitted_time)
3617{
3618 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3619 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3620 int ac = ieee802_1d_to_ac[up];
3621
3622 if (sdata->vif.type != NL80211_IFTYPE_STATION)
3623 return -EOPNOTSUPP;
3624
3625 if (!(sdata->wmm_acm & BIT(up)))
3626 return -EINVAL;
3627
3628 if (ifmgd->tx_tspec[ac].admitted_time)
3629 return -EBUSY;
3630
3631 if (admitted_time) {
3632 ifmgd->tx_tspec[ac].admitted_time = 32 * admitted_time;
3633 ifmgd->tx_tspec[ac].tsid = tsid;
3634 ifmgd->tx_tspec[ac].up = up;
3635 }
3636
3637 return 0;
3638}
3639
3640static int ieee80211_del_tx_ts(struct wiphy *wiphy, struct net_device *dev,
3641 u8 tsid, const u8 *peer)
3642{
3643 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3644 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3645 struct ieee80211_local *local = wiphy_priv(wiphy);
3646 int ac;
3647
3648 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
3649 struct ieee80211_sta_tx_tspec *tx_tspec = &ifmgd->tx_tspec[ac];
3650
3651 /* skip unused entries */
3652 if (!tx_tspec->admitted_time)
3653 continue;
3654
3655 if (tx_tspec->tsid != tsid)
3656 continue;
3657
3658 /* due to this new packets will be reassigned to non-ACM ACs */
3659 tx_tspec->up = -1;
3660
3661 /* Make sure that all packets have been sent to avoid to
3662 * restore the QoS params on packets that are still on the
3663 * queues.
3664 */
3665 synchronize_net();
Emmanuel Grumbach3b24f4c2015-01-07 15:42:39 +02003666 ieee80211_flush_queues(local, sdata, false);
Johannes Berg02219b32014-10-07 10:38:50 +03003667
3668 /* restore the normal QoS parameters
3669 * (unconditionally to avoid races)
3670 */
3671 tx_tspec->action = TX_TSPEC_ACTION_STOP_DOWNGRADE;
3672 tx_tspec->downgraded = false;
3673 ieee80211_sta_handle_tspec_ac_params(sdata);
3674
3675 /* finally clear all the data */
3676 memset(tx_tspec, 0, sizeof(*tx_tspec));
3677
3678 return 0;
3679 }
3680
3681 return -ENOENT;
3682}
3683
Johannes Berg8a47cea2014-01-20 23:55:44 +01003684const struct cfg80211_ops mac80211_config_ops = {
Jiri Bencf0706e82007-05-05 11:45:53 -07003685 .add_virtual_intf = ieee80211_add_iface,
3686 .del_virtual_intf = ieee80211_del_iface,
Johannes Berg42613db2007-09-28 21:52:27 +02003687 .change_virtual_intf = ieee80211_change_iface,
Johannes Bergf142c6b2012-06-18 20:07:15 +02003688 .start_p2p_device = ieee80211_start_p2p_device,
3689 .stop_p2p_device = ieee80211_stop_p2p_device,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01003690 .add_key = ieee80211_add_key,
3691 .del_key = ieee80211_del_key,
Johannes Berg62da92f2007-12-19 02:03:31 +01003692 .get_key = ieee80211_get_key,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01003693 .set_default_key = ieee80211_config_default_key,
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02003694 .set_default_mgmt_key = ieee80211_config_default_mgmt_key,
Johannes Berg88600202012-02-13 15:17:18 +01003695 .start_ap = ieee80211_start_ap,
3696 .change_beacon = ieee80211_change_beacon,
3697 .stop_ap = ieee80211_stop_ap,
Johannes Berg4fd69312007-12-19 02:03:35 +01003698 .add_station = ieee80211_add_station,
3699 .del_station = ieee80211_del_station,
3700 .change_station = ieee80211_change_station,
Johannes Berg7bbdd2d2007-12-19 02:03:37 +01003701 .get_station = ieee80211_get_station,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003702 .dump_station = ieee80211_dump_station,
Holger Schurig12897232010-04-19 10:23:57 +02003703 .dump_survey = ieee80211_dump_survey,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003704#ifdef CONFIG_MAC80211_MESH
3705 .add_mpath = ieee80211_add_mpath,
3706 .del_mpath = ieee80211_del_mpath,
3707 .change_mpath = ieee80211_change_mpath,
3708 .get_mpath = ieee80211_get_mpath,
3709 .dump_mpath = ieee80211_dump_mpath,
Henning Roggea2db2ed2014-09-12 08:58:50 +02003710 .get_mpp = ieee80211_get_mpp,
3711 .dump_mpp = ieee80211_dump_mpp,
Javier Cardona24bdd9f2010-12-16 17:37:48 -08003712 .update_mesh_config = ieee80211_update_mesh_config,
3713 .get_mesh_config = ieee80211_get_mesh_config,
Johannes Berg29cbe682010-12-03 09:20:44 +01003714 .join_mesh = ieee80211_join_mesh,
3715 .leave_mesh = ieee80211_leave_mesh,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003716#endif
Rostislav Lisovy239281f2014-11-03 10:33:19 +01003717 .join_ocb = ieee80211_join_ocb,
3718 .leave_ocb = ieee80211_leave_ocb,
Jouni Malinen9f1ba902008-08-07 20:07:01 +03003719 .change_bss = ieee80211_change_bss,
Jouni Malinen31888482008-10-30 16:59:24 +02003720 .set_txq_params = ieee80211_set_txq_params,
Johannes Berge8c9bd52012-06-06 08:18:22 +02003721 .set_monitor_channel = ieee80211_set_monitor_channel,
Bob Copeland665af4f2009-01-19 11:20:53 -05003722 .suspend = ieee80211_suspend,
3723 .resume = ieee80211_resume,
Johannes Berg2a519312009-02-10 21:25:55 +01003724 .scan = ieee80211_scan,
Luciano Coelho79f460c2011-05-11 17:09:36 +03003725 .sched_scan_start = ieee80211_sched_scan_start,
3726 .sched_scan_stop = ieee80211_sched_scan_stop,
Jouni Malinen636a5d32009-03-19 13:39:22 +02003727 .auth = ieee80211_auth,
3728 .assoc = ieee80211_assoc,
3729 .deauth = ieee80211_deauth,
3730 .disassoc = ieee80211_disassoc,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02003731 .join_ibss = ieee80211_join_ibss,
3732 .leave_ibss = ieee80211_leave_ibss,
Antonio Quartulli391e53e2012-11-02 13:27:49 +01003733 .set_mcast_rate = ieee80211_set_mcast_rate,
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02003734 .set_wiphy_params = ieee80211_set_wiphy_params,
Johannes Berg7643a2c2009-06-02 13:01:39 +02003735 .set_tx_power = ieee80211_set_tx_power,
3736 .get_tx_power = ieee80211_get_tx_power,
Johannes Bergab737a42009-07-01 21:26:58 +02003737 .set_wds_peer = ieee80211_set_wds_peer,
Johannes Berg1f87f7d2009-06-02 13:01:41 +02003738 .rfkill_poll = ieee80211_rfkill_poll,
Johannes Bergaff89a92009-07-01 21:26:51 +02003739 CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd)
Wey-Yi Guy71063f02011-05-20 09:05:54 -07003740 CFG80211_TESTMODE_DUMP(ieee80211_testmode_dump)
Johannes Bergbc92afd2009-07-01 21:26:57 +02003741 .set_power_mgmt = ieee80211_set_power_mgmt,
Johannes Berg99303802009-07-01 21:26:59 +02003742 .set_bitrate_mask = ieee80211_set_bitrate_mask,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01003743 .remain_on_channel = ieee80211_remain_on_channel,
3744 .cancel_remain_on_channel = ieee80211_cancel_remain_on_channel,
Johannes Berg2e161f72010-08-12 15:38:38 +02003745 .mgmt_tx = ieee80211_mgmt_tx,
Johannes Bergf30221e2010-11-25 10:02:30 +01003746 .mgmt_tx_cancel_wait = ieee80211_mgmt_tx_cancel_wait,
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02003747 .set_cqm_rssi_config = ieee80211_set_cqm_rssi_config,
Johannes Berg7be50862010-10-13 12:06:24 +02003748 .mgmt_frame_register = ieee80211_mgmt_frame_register,
Bruno Randolf15d96752010-11-10 12:50:56 +09003749 .set_antenna = ieee80211_set_antenna,
3750 .get_antenna = ieee80211_get_antenna,
Johannes Bergc68f4b82011-07-05 16:35:41 +02003751 .set_rekey_data = ieee80211_set_rekey_data,
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003752 .tdls_oper = ieee80211_tdls_oper,
3753 .tdls_mgmt = ieee80211_tdls_mgmt,
Arik Nemtsova7a6bdd2014-11-09 18:50:19 +02003754 .tdls_channel_switch = ieee80211_tdls_channel_switch,
3755 .tdls_cancel_channel_switch = ieee80211_tdls_cancel_channel_switch,
Johannes Berg06500732011-11-04 11:18:16 +01003756 .probe_client = ieee80211_probe_client,
Simon Wunderlichb53be792011-11-18 14:20:44 +01003757 .set_noack_map = ieee80211_set_noack_map,
Johannes Berg6d525632012-04-04 15:05:25 +02003758#ifdef CONFIG_PM
3759 .set_wakeup = ieee80211_set_wakeup,
3760#endif
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003761 .get_channel = ieee80211_cfg_get_channel,
Simon Wunderlich164eb022013-02-08 18:16:20 +01003762 .start_radar_detection = ieee80211_start_radar_detection,
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003763 .channel_switch = ieee80211_channel_switch,
Kyeyoon Park32db6b52013-12-16 23:04:43 -08003764 .set_qos_map = ieee80211_set_qos_map,
Jouni Malinen3b1700b2014-04-28 11:22:25 +03003765 .set_ap_chanwidth = ieee80211_set_ap_chanwidth,
Johannes Berg02219b32014-10-07 10:38:50 +03003766 .add_tx_ts = ieee80211_add_tx_ts,
3767 .del_tx_ts = ieee80211_del_tx_ts,
Jiri Bencf0706e82007-05-05 11:45:53 -07003768};