blob: 6973ccdd230b88942ba71ceae911fb4d58424279 [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>
Jiri Bencf0706e82007-05-05 11:45:53 -07005 *
6 * This file is GPLv2 as found in COPYING.
7 */
8
Johannes Berge8cbb4c2007-12-19 02:03:30 +01009#include <linux/ieee80211.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070010#include <linux/nl80211.h>
11#include <linux/rtnetlink.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070013#include <net/net_namespace.h>
Johannes Berg5dfdaf52007-12-19 02:03:33 +010014#include <linux/rcupdate.h>
Arik Nemtsovdfe018b2011-09-28 14:12:52 +030015#include <linux/if_ether.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070016#include <net/cfg80211.h>
17#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020018#include "driver-ops.h"
Michael Wue0eb6852007-09-18 17:29:21 -040019#include "cfg.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040020#include "rate.h"
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +010021#include "mesh.h"
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +010022
Johannes Berg552bff02012-09-19 09:26:06 +020023static struct wireless_dev *ieee80211_add_iface(struct wiphy *wiphy,
24 const char *name,
Johannes Berg84efbb82012-06-16 00:00:26 +020025 enum nl80211_iftype type,
26 u32 *flags,
27 struct vif_params *params)
Jiri Bencf0706e82007-05-05 11:45:53 -070028{
29 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg84efbb82012-06-16 00:00:26 +020030 struct wireless_dev *wdev;
Michael Wu8cc9a732008-01-31 19:48:23 +010031 struct ieee80211_sub_if_data *sdata;
32 int err;
Jiri Bencf0706e82007-05-05 11:45:53 -070033
Johannes Berg84efbb82012-06-16 00:00:26 +020034 err = ieee80211_if_add(local, name, &wdev, type, params);
Johannes Bergf9e10ce2010-12-03 09:20:42 +010035 if (err)
36 return ERR_PTR(err);
Michael Wu8cc9a732008-01-31 19:48:23 +010037
Johannes Bergf9e10ce2010-12-03 09:20:42 +010038 if (type == NL80211_IFTYPE_MONITOR && flags) {
Johannes Berg84efbb82012-06-16 00:00:26 +020039 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Bergf9e10ce2010-12-03 09:20:42 +010040 sdata->u.mntr_flags = *flags;
41 }
42
Johannes Berg84efbb82012-06-16 00:00:26 +020043 return wdev;
Jiri Bencf0706e82007-05-05 11:45:53 -070044}
45
Johannes Berg84efbb82012-06-16 00:00:26 +020046static int ieee80211_del_iface(struct wiphy *wiphy, struct wireless_dev *wdev)
Jiri Bencf0706e82007-05-05 11:45:53 -070047{
Johannes Berg84efbb82012-06-16 00:00:26 +020048 ieee80211_if_remove(IEEE80211_WDEV_TO_SUB_IF(wdev));
Jiri Bencf0706e82007-05-05 11:45:53 -070049
Johannes Berg75636522008-07-09 14:40:35 +020050 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -070051}
52
Johannes Berge36d56b2009-06-09 21:04:43 +020053static int ieee80211_change_iface(struct wiphy *wiphy,
54 struct net_device *dev,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +010055 enum nl80211_iftype type, u32 *flags,
56 struct vif_params *params)
Johannes Berg42613db2007-09-28 21:52:27 +020057{
Johannes Berg9607e6b662009-12-23 13:15:31 +010058 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Bergf3947e22008-07-09 14:40:36 +020059 int ret;
Johannes Berg42613db2007-09-28 21:52:27 +020060
Johannes Berg05c914f2008-09-11 00:01:58 +020061 ret = ieee80211_if_change_type(sdata, type);
Johannes Bergf3947e22008-07-09 14:40:36 +020062 if (ret)
63 return ret;
Johannes Berg42613db2007-09-28 21:52:27 +020064
Johannes Berg9bc383d2009-11-19 11:55:19 +010065 if (type == NL80211_IFTYPE_AP_VLAN &&
66 params && params->use_4addr == 0)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +000067 RCU_INIT_POINTER(sdata->u.vlan.sta, NULL);
Johannes Berg9bc383d2009-11-19 11:55:19 +010068 else if (type == NL80211_IFTYPE_STATION &&
69 params && params->use_4addr >= 0)
70 sdata->u.mgd.use_4addr = params->use_4addr;
71
Christian Lamparter85416a42010-10-02 13:17:07 +020072 if (sdata->vif.type == NL80211_IFTYPE_MONITOR && flags) {
73 struct ieee80211_local *local = sdata->local;
74
75 if (ieee80211_sdata_running(sdata)) {
Felix Fietkau31eba5b2013-05-28 13:01:53 +020076 u32 mask = MONITOR_FLAG_COOK_FRAMES |
77 MONITOR_FLAG_ACTIVE;
78
Christian Lamparter85416a42010-10-02 13:17:07 +020079 /*
Felix Fietkau31eba5b2013-05-28 13:01:53 +020080 * Prohibit MONITOR_FLAG_COOK_FRAMES and
81 * MONITOR_FLAG_ACTIVE to be changed while the
82 * interface is up.
Christian Lamparter85416a42010-10-02 13:17:07 +020083 * Else we would need to add a lot of cruft
84 * to update everything:
85 * cooked_mntrs, monitor and all fif_* counters
86 * reconfigure hardware
87 */
Felix Fietkau31eba5b2013-05-28 13:01:53 +020088 if ((*flags & mask) != (sdata->u.mntr_flags & mask))
Christian Lamparter85416a42010-10-02 13:17:07 +020089 return -EBUSY;
90
91 ieee80211_adjust_monitor_flags(sdata, -1);
92 sdata->u.mntr_flags = *flags;
93 ieee80211_adjust_monitor_flags(sdata, 1);
94
95 ieee80211_configure_filter(local);
96 } else {
97 /*
98 * Because the interface is down, ieee80211_do_stop
99 * and ieee80211_do_open take care of "everything"
100 * mentioned in the comment above.
101 */
102 sdata->u.mntr_flags = *flags;
103 }
104 }
Felix Fietkauf7917af2010-04-27 00:26:34 +0200105
Johannes Berg42613db2007-09-28 21:52:27 +0200106 return 0;
107}
108
Johannes Bergf142c6b2012-06-18 20:07:15 +0200109static int ieee80211_start_p2p_device(struct wiphy *wiphy,
110 struct wireless_dev *wdev)
111{
112 return ieee80211_do_open(wdev, true);
113}
114
115static void ieee80211_stop_p2p_device(struct wiphy *wiphy,
116 struct wireless_dev *wdev)
117{
118 ieee80211_sdata_stop(IEEE80211_WDEV_TO_SUB_IF(wdev));
119}
120
Simon Wunderlichb53be792011-11-18 14:20:44 +0100121static int ieee80211_set_noack_map(struct wiphy *wiphy,
122 struct net_device *dev,
123 u16 noack_map)
124{
125 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
126
127 sdata->noack_map = noack_map;
128 return 0;
129}
130
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100131static int ieee80211_add_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berge31b8212010-10-05 19:39:30 +0200132 u8 key_idx, bool pairwise, const u8 *mac_addr,
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100133 struct key_params *params)
134{
Johannes Berg26a58452010-08-27 12:35:55 +0200135 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200136 struct ieee80211_local *local = sdata->local;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100137 struct sta_info *sta = NULL;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200138 const struct ieee80211_cipher_scheme *cs = NULL;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100139 struct ieee80211_key *key;
Johannes Berg3b967662008-04-08 17:56:52 +0200140 int err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100141
Johannes Berg26a58452010-08-27 12:35:55 +0200142 if (!ieee80211_sdata_running(sdata))
Johannes Bergad0e2b52010-06-01 10:19:19 +0200143 return -ENETDOWN;
144
Johannes Berg97359d12010-08-10 09:46:38 +0200145 /* reject WEP and TKIP keys if WEP failed to initialize */
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100146 switch (params->cipher) {
147 case WLAN_CIPHER_SUITE_WEP40:
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100148 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berg97359d12010-08-10 09:46:38 +0200149 case WLAN_CIPHER_SUITE_WEP104:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200150 if (IS_ERR(local->wep_tx_tfm))
Johannes Berg97359d12010-08-10 09:46:38 +0200151 return -EINVAL;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200152 break;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200153 case WLAN_CIPHER_SUITE_CCMP:
154 case WLAN_CIPHER_SUITE_AES_CMAC:
155 case WLAN_CIPHER_SUITE_GCMP:
156 break;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100157 default:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200158 cs = ieee80211_cs_get(local, params->cipher, sdata->vif.type);
Johannes Berg97359d12010-08-10 09:46:38 +0200159 break;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100160 }
161
Johannes Berg97359d12010-08-10 09:46:38 +0200162 key = ieee80211_key_alloc(params->cipher, key_idx, params->key_len,
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200163 params->key, params->seq_len, params->seq,
164 cs);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100165 if (IS_ERR(key))
166 return PTR_ERR(key);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100167
Johannes Berge31b8212010-10-05 19:39:30 +0200168 if (pairwise)
169 key->conf.flags |= IEEE80211_KEY_FLAG_PAIRWISE;
170
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200171 mutex_lock(&local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200172
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100173 if (mac_addr) {
Thomas Pedersenff973af2011-05-03 16:57:12 -0700174 if (ieee80211_vif_is_mesh(&sdata->vif))
175 sta = sta_info_get(sdata, mac_addr);
176 else
177 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berg1626e0f2013-01-11 14:34:25 +0100178 /*
179 * The ASSOC test makes sure the driver is ready to
180 * receive the key. When wpa_supplicant has roamed
181 * using FT, it attempts to set the key before
182 * association has completed, this rejects that attempt
183 * so it will set the key again after assocation.
184 *
185 * TODO: accept the key if we have a station entry and
186 * add it to the device after the station.
187 */
188 if (!sta || !test_sta_flag(sta, WLAN_STA_ASSOC)) {
Johannes Berg79cf2df2013-03-06 22:53:52 +0100189 ieee80211_key_free_unused(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200190 err = -ENOENT;
191 goto out_unlock;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100192 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100193 }
194
Johannes Berge548c492012-09-04 17:08:23 +0200195 switch (sdata->vif.type) {
196 case NL80211_IFTYPE_STATION:
197 if (sdata->u.mgd.mfp != IEEE80211_MFP_DISABLED)
198 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
199 break;
200 case NL80211_IFTYPE_AP:
201 case NL80211_IFTYPE_AP_VLAN:
202 /* Keys without a station are used for TX only */
203 if (key->sta && test_sta_flag(key->sta, WLAN_STA_MFP))
204 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
205 break;
206 case NL80211_IFTYPE_ADHOC:
207 /* no MFP (yet) */
208 break;
209 case NL80211_IFTYPE_MESH_POINT:
210#ifdef CONFIG_MAC80211_MESH
211 if (sdata->u.mesh.security != IEEE80211_MESH_SEC_NONE)
212 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
213 break;
214#endif
215 case NL80211_IFTYPE_WDS:
216 case NL80211_IFTYPE_MONITOR:
217 case NL80211_IFTYPE_P2P_DEVICE:
218 case NL80211_IFTYPE_UNSPECIFIED:
219 case NUM_NL80211_IFTYPES:
220 case NL80211_IFTYPE_P2P_CLIENT:
221 case NL80211_IFTYPE_P2P_GO:
222 /* shouldn't happen */
223 WARN_ON_ONCE(1);
224 break;
225 }
226
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200227 if (sta)
228 sta->cipher_scheme = cs;
229
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300230 err = ieee80211_key_link(key, sdata, sta);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100231
Johannes Berg3b967662008-04-08 17:56:52 +0200232 out_unlock:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200233 mutex_unlock(&local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200234
235 return err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100236}
237
238static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berge31b8212010-10-05 19:39:30 +0200239 u8 key_idx, bool pairwise, const u8 *mac_addr)
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100240{
Johannes Berg5c0c3642011-05-12 14:31:49 +0200241 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
242 struct ieee80211_local *local = sdata->local;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100243 struct sta_info *sta;
Johannes Berg5c0c3642011-05-12 14:31:49 +0200244 struct ieee80211_key *key = NULL;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100245 int ret;
246
Johannes Berg5c0c3642011-05-12 14:31:49 +0200247 mutex_lock(&local->sta_mtx);
248 mutex_lock(&local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200249
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100250 if (mac_addr) {
Johannes Berg3b967662008-04-08 17:56:52 +0200251 ret = -ENOENT;
252
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100253 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100254 if (!sta)
Johannes Berg3b967662008-04-08 17:56:52 +0200255 goto out_unlock;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100256
Johannes Berg5c0c3642011-05-12 14:31:49 +0200257 if (pairwise)
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200258 key = key_mtx_dereference(local, sta->ptk[key_idx]);
Johannes Berg5c0c3642011-05-12 14:31:49 +0200259 else
Johannes Berg40b275b2011-05-13 14:15:49 +0200260 key = key_mtx_dereference(local, sta->gtk[key_idx]);
Johannes Berg5c0c3642011-05-12 14:31:49 +0200261 } else
Johannes Berg40b275b2011-05-13 14:15:49 +0200262 key = key_mtx_dereference(local, sdata->keys[key_idx]);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100263
Johannes Berg5c0c3642011-05-12 14:31:49 +0200264 if (!key) {
Johannes Berg3b967662008-04-08 17:56:52 +0200265 ret = -ENOENT;
266 goto out_unlock;
267 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100268
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100269 ieee80211_key_free(key, true);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100270
Johannes Berg3b967662008-04-08 17:56:52 +0200271 ret = 0;
272 out_unlock:
Johannes Berg5c0c3642011-05-12 14:31:49 +0200273 mutex_unlock(&local->key_mtx);
274 mutex_unlock(&local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200275
276 return ret;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100277}
278
Johannes Berg62da92f2007-12-19 02:03:31 +0100279static int ieee80211_get_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berge31b8212010-10-05 19:39:30 +0200280 u8 key_idx, bool pairwise, const u8 *mac_addr,
281 void *cookie,
Johannes Berg62da92f2007-12-19 02:03:31 +0100282 void (*callback)(void *cookie,
283 struct key_params *params))
284{
Johannes Berg14db74b2008-07-29 13:22:52 +0200285 struct ieee80211_sub_if_data *sdata;
Johannes Berg62da92f2007-12-19 02:03:31 +0100286 struct sta_info *sta = NULL;
287 u8 seq[6] = {0};
288 struct key_params params;
Johannes Berge31b8212010-10-05 19:39:30 +0200289 struct ieee80211_key *key = NULL;
Johannes Bergaba83a0b2011-07-06 21:59:39 +0200290 u64 pn64;
Johannes Berg62da92f2007-12-19 02:03:31 +0100291 u32 iv32;
292 u16 iv16;
293 int err = -ENOENT;
294
Johannes Berg14db74b2008-07-29 13:22:52 +0200295 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
296
Johannes Berg3b967662008-04-08 17:56:52 +0200297 rcu_read_lock();
298
Johannes Berg62da92f2007-12-19 02:03:31 +0100299 if (mac_addr) {
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100300 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berg62da92f2007-12-19 02:03:31 +0100301 if (!sta)
302 goto out;
303
Max Stepanov354e1592013-12-08 13:30:52 +0200304 if (pairwise && key_idx < NUM_DEFAULT_KEYS)
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200305 key = rcu_dereference(sta->ptk[key_idx]);
Max Stepanov31f1f4e2013-12-08 13:31:29 +0200306 else if (!pairwise &&
307 key_idx < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
Johannes Berga3836e02011-05-12 15:11:37 +0200308 key = rcu_dereference(sta->gtk[key_idx]);
Johannes Berg62da92f2007-12-19 02:03:31 +0100309 } else
Johannes Berga3836e02011-05-12 15:11:37 +0200310 key = rcu_dereference(sdata->keys[key_idx]);
Johannes Berg62da92f2007-12-19 02:03:31 +0100311
312 if (!key)
313 goto out;
314
315 memset(&params, 0, sizeof(params));
316
Johannes Berg97359d12010-08-10 09:46:38 +0200317 params.cipher = key->conf.cipher;
Johannes Berg62da92f2007-12-19 02:03:31 +0100318
Johannes Berg97359d12010-08-10 09:46:38 +0200319 switch (key->conf.cipher) {
320 case WLAN_CIPHER_SUITE_TKIP:
Harvey Harrisonb0f76b32008-05-14 16:26:19 -0700321 iv32 = key->u.tkip.tx.iv32;
322 iv16 = key->u.tkip.tx.iv16;
Johannes Berg62da92f2007-12-19 02:03:31 +0100323
Johannes Berg24487982009-04-23 18:52:52 +0200324 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
325 drv_get_tkip_seq(sdata->local,
326 key->conf.hw_key_idx,
327 &iv32, &iv16);
Johannes Berg62da92f2007-12-19 02:03:31 +0100328
329 seq[0] = iv16 & 0xff;
330 seq[1] = (iv16 >> 8) & 0xff;
331 seq[2] = iv32 & 0xff;
332 seq[3] = (iv32 >> 8) & 0xff;
333 seq[4] = (iv32 >> 16) & 0xff;
334 seq[5] = (iv32 >> 24) & 0xff;
335 params.seq = seq;
336 params.seq_len = 6;
337 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200338 case WLAN_CIPHER_SUITE_CCMP:
Johannes Bergaba83a0b2011-07-06 21:59:39 +0200339 pn64 = atomic64_read(&key->u.ccmp.tx_pn);
340 seq[0] = pn64;
341 seq[1] = pn64 >> 8;
342 seq[2] = pn64 >> 16;
343 seq[3] = pn64 >> 24;
344 seq[4] = pn64 >> 32;
345 seq[5] = pn64 >> 40;
Johannes Berg62da92f2007-12-19 02:03:31 +0100346 params.seq = seq;
347 params.seq_len = 6;
348 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200349 case WLAN_CIPHER_SUITE_AES_CMAC:
Johannes Berg75396ae2011-07-06 22:00:35 +0200350 pn64 = atomic64_read(&key->u.aes_cmac.tx_pn);
351 seq[0] = pn64;
352 seq[1] = pn64 >> 8;
353 seq[2] = pn64 >> 16;
354 seq[3] = pn64 >> 24;
355 seq[4] = pn64 >> 32;
356 seq[5] = pn64 >> 40;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200357 params.seq = seq;
358 params.seq_len = 6;
359 break;
Johannes Berg62da92f2007-12-19 02:03:31 +0100360 }
361
362 params.key = key->conf.key;
363 params.key_len = key->conf.keylen;
364
365 callback(cookie, &params);
366 err = 0;
367
368 out:
Johannes Berg3b967662008-04-08 17:56:52 +0200369 rcu_read_unlock();
Johannes Berg62da92f2007-12-19 02:03:31 +0100370 return err;
371}
372
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100373static int ieee80211_config_default_key(struct wiphy *wiphy,
374 struct net_device *dev,
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100375 u8 key_idx, bool uni,
376 bool multi)
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100377{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200378 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100379
Johannes Bergf7e01042010-12-09 19:49:02 +0100380 ieee80211_set_default_key(sdata, key_idx, uni, multi);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100381
382 return 0;
383}
384
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200385static int ieee80211_config_default_mgmt_key(struct wiphy *wiphy,
386 struct net_device *dev,
387 u8 key_idx)
388{
Johannes Berg66c52422010-07-22 13:58:51 +0200389 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200390
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200391 ieee80211_set_default_mgmt_key(sdata, key_idx);
392
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200393 return 0;
394}
395
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800396void sta_set_rate_info_tx(struct sta_info *sta,
397 const struct ieee80211_tx_rate *rate,
398 struct rate_info *rinfo)
399{
400 rinfo->flags = 0;
Johannes Berg8bc83c22012-11-09 18:38:32 +0100401 if (rate->flags & IEEE80211_TX_RC_MCS) {
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800402 rinfo->flags |= RATE_INFO_FLAGS_MCS;
Johannes Berg8bc83c22012-11-09 18:38:32 +0100403 rinfo->mcs = rate->idx;
404 } else if (rate->flags & IEEE80211_TX_RC_VHT_MCS) {
405 rinfo->flags |= RATE_INFO_FLAGS_VHT_MCS;
406 rinfo->mcs = ieee80211_rate_get_vht_mcs(rate);
407 rinfo->nss = ieee80211_rate_get_vht_nss(rate);
408 } else {
409 struct ieee80211_supported_band *sband;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200410 int shift = ieee80211_vif_get_shift(&sta->sdata->vif);
411 u16 brate;
412
Johannes Berg8bc83c22012-11-09 18:38:32 +0100413 sband = sta->local->hw.wiphy->bands[
414 ieee80211_get_sdata_band(sta->sdata)];
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200415 brate = sband->bitrates[rate->idx].bitrate;
416 rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift);
Johannes Berg8bc83c22012-11-09 18:38:32 +0100417 }
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800418 if (rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
419 rinfo->flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
Johannes Berg8bc83c22012-11-09 18:38:32 +0100420 if (rate->flags & IEEE80211_TX_RC_80_MHZ_WIDTH)
421 rinfo->flags |= RATE_INFO_FLAGS_80_MHZ_WIDTH;
422 if (rate->flags & IEEE80211_TX_RC_160_MHZ_WIDTH)
423 rinfo->flags |= RATE_INFO_FLAGS_160_MHZ_WIDTH;
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800424 if (rate->flags & IEEE80211_TX_RC_SHORT_GI)
425 rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800426}
427
Saravana003e6762012-11-28 18:29:38 +0530428void sta_set_rate_info_rx(struct sta_info *sta, struct rate_info *rinfo)
429{
430 rinfo->flags = 0;
431
432 if (sta->last_rx_rate_flag & RX_FLAG_HT) {
433 rinfo->flags |= RATE_INFO_FLAGS_MCS;
434 rinfo->mcs = sta->last_rx_rate_idx;
435 } else if (sta->last_rx_rate_flag & RX_FLAG_VHT) {
436 rinfo->flags |= RATE_INFO_FLAGS_VHT_MCS;
437 rinfo->nss = sta->last_rx_rate_vht_nss;
438 rinfo->mcs = sta->last_rx_rate_idx;
439 } else {
440 struct ieee80211_supported_band *sband;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200441 int shift = ieee80211_vif_get_shift(&sta->sdata->vif);
442 u16 brate;
Saravana003e6762012-11-28 18:29:38 +0530443
444 sband = sta->local->hw.wiphy->bands[
445 ieee80211_get_sdata_band(sta->sdata)];
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200446 brate = sband->bitrates[sta->last_rx_rate_idx].bitrate;
447 rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift);
Saravana003e6762012-11-28 18:29:38 +0530448 }
449
450 if (sta->last_rx_rate_flag & RX_FLAG_40MHZ)
451 rinfo->flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
452 if (sta->last_rx_rate_flag & RX_FLAG_SHORT_GI)
453 rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
Emmanuel Grumbach1b8d2422014-02-05 16:37:11 +0200454 if (sta->last_rx_rate_vht_flag & RX_VHT_FLAG_80MHZ)
Saravana003e6762012-11-28 18:29:38 +0530455 rinfo->flags |= RATE_INFO_FLAGS_80_MHZ_WIDTH;
Emmanuel Grumbach1b8d2422014-02-05 16:37:11 +0200456 if (sta->last_rx_rate_vht_flag & RX_VHT_FLAG_80P80MHZ)
Saravana003e6762012-11-28 18:29:38 +0530457 rinfo->flags |= RATE_INFO_FLAGS_80P80_MHZ_WIDTH;
Emmanuel Grumbach1b8d2422014-02-05 16:37:11 +0200458 if (sta->last_rx_rate_vht_flag & RX_VHT_FLAG_160MHZ)
Saravana003e6762012-11-28 18:29:38 +0530459 rinfo->flags |= RATE_INFO_FLAGS_160_MHZ_WIDTH;
460}
461
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100462static void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo)
463{
Johannes Bergd0709a62008-02-25 16:27:46 +0100464 struct ieee80211_sub_if_data *sdata = sta->sdata;
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300465 struct ieee80211_local *local = sdata->local;
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530466 struct timespec uptime;
Johannes Berg560d2682013-02-05 10:55:21 +0100467 u64 packets = 0;
Felix Fietkauef0621e2013-04-22 16:29:31 +0200468 int i, ac;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100469
Johannes Bergf5ea9122009-08-07 16:17:38 +0200470 sinfo->generation = sdata->local->sta_generation;
471
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100472 sinfo->filled = STATION_INFO_INACTIVE_TIME |
Johannes Berg560d2682013-02-05 10:55:21 +0100473 STATION_INFO_RX_BYTES64 |
474 STATION_INFO_TX_BYTES64 |
Jouni Malinen98c8a60a2009-02-17 13:24:57 +0200475 STATION_INFO_RX_PACKETS |
476 STATION_INFO_TX_PACKETS |
Bruno Randolfb206b4ef2010-10-06 18:34:12 +0900477 STATION_INFO_TX_RETRIES |
478 STATION_INFO_TX_FAILED |
Ben Greear5a5c7312010-10-07 16:39:20 -0700479 STATION_INFO_TX_BITRATE |
Felix Fietkau3af63342011-02-27 22:08:01 +0100480 STATION_INFO_RX_BITRATE |
Paul Stewartf4263c92011-03-31 09:25:41 -0700481 STATION_INFO_RX_DROP_MISC |
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530482 STATION_INFO_BSS_PARAM |
Helmut Schaa7a724762011-10-13 16:30:40 +0200483 STATION_INFO_CONNECTED_TIME |
Paul Stewarta85e1d52011-12-09 11:01:49 -0800484 STATION_INFO_STA_FLAGS |
485 STATION_INFO_BEACON_LOSS_COUNT;
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530486
487 do_posix_clock_monotonic_gettime(&uptime);
488 sinfo->connected_time = uptime.tv_sec - sta->last_connected;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100489
490 sinfo->inactive_time = jiffies_to_msecs(jiffies - sta->last_rx);
Johannes Berg560d2682013-02-05 10:55:21 +0100491 sinfo->tx_bytes = 0;
492 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
493 sinfo->tx_bytes += sta->tx_bytes[ac];
494 packets += sta->tx_packets[ac];
495 }
496 sinfo->tx_packets = packets;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100497 sinfo->rx_bytes = sta->rx_bytes;
Jouni Malinen98c8a60a2009-02-17 13:24:57 +0200498 sinfo->rx_packets = sta->rx_packets;
Bruno Randolfb206b4ef2010-10-06 18:34:12 +0900499 sinfo->tx_retries = sta->tx_retry_count;
500 sinfo->tx_failed = sta->tx_retry_failed;
Ben Greear5a5c7312010-10-07 16:39:20 -0700501 sinfo->rx_dropped_misc = sta->rx_dropped;
Paul Stewarta85e1d52011-12-09 11:01:49 -0800502 sinfo->beacon_loss_count = sta->beacon_loss_count;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100503
John W. Linville19deffb2009-12-08 17:10:13 -0500504 if ((sta->local->hw.flags & IEEE80211_HW_SIGNAL_DBM) ||
505 (sta->local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC)) {
Bruno Randolf541a45a2010-12-02 19:12:43 +0900506 sinfo->filled |= STATION_INFO_SIGNAL | STATION_INFO_SIGNAL_AVG;
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300507 if (!local->ops->get_rssi ||
508 drv_get_rssi(local, sdata, &sta->sta, &sinfo->signal))
509 sinfo->signal = (s8)sta->last_signal;
Bruno Randolf541a45a2010-12-02 19:12:43 +0900510 sinfo->signal_avg = (s8) -ewma_read(&sta->avg_signal);
Henning Rogge420e7fa2008-12-11 22:04:19 +0100511 }
Felix Fietkauef0621e2013-04-22 16:29:31 +0200512 if (sta->chains) {
513 sinfo->filled |= STATION_INFO_CHAIN_SIGNAL |
514 STATION_INFO_CHAIN_SIGNAL_AVG;
515
516 sinfo->chains = sta->chains;
517 for (i = 0; i < ARRAY_SIZE(sinfo->chain_signal); i++) {
518 sinfo->chain_signal[i] = sta->chain_signal_last[i];
519 sinfo->chain_signal_avg[i] =
520 (s8) -ewma_read(&sta->chain_signal_avg[i]);
521 }
522 }
Henning Rogge420e7fa2008-12-11 22:04:19 +0100523
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800524 sta_set_rate_info_tx(sta, &sta->last_tx_rate, &sinfo->txrate);
Saravana003e6762012-11-28 18:29:38 +0530525 sta_set_rate_info_rx(sta, &sinfo->rxrate);
Henning Rogge420e7fa2008-12-11 22:04:19 +0100526
Johannes Berg902acc72008-02-23 15:17:19 +0100527 if (ieee80211_vif_is_mesh(&sdata->vif)) {
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100528#ifdef CONFIG_MAC80211_MESH
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100529 sinfo->filled |= STATION_INFO_LLID |
530 STATION_INFO_PLID |
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100531 STATION_INFO_PLINK_STATE |
532 STATION_INFO_LOCAL_PM |
533 STATION_INFO_PEER_PM |
534 STATION_INFO_NONPEER_PM;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100535
Chun-Yeow Yeoh6f101ef2013-11-13 15:43:03 +0800536 sinfo->llid = sta->llid;
537 sinfo->plid = sta->plid;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100538 sinfo->plink_state = sta->plink_state;
Javier Cardonad299a1f2012-03-31 11:31:33 -0700539 if (test_sta_flag(sta, WLAN_STA_TOFFSET_KNOWN)) {
540 sinfo->filled |= STATION_INFO_T_OFFSET;
541 sinfo->t_offset = sta->t_offset;
542 }
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100543 sinfo->local_pm = sta->local_pm;
544 sinfo->peer_pm = sta->peer_pm;
545 sinfo->nonpeer_pm = sta->nonpeer_pm;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100546#endif
Johannes Berg902acc72008-02-23 15:17:19 +0100547 }
Paul Stewartf4263c92011-03-31 09:25:41 -0700548
549 sinfo->bss_param.flags = 0;
550 if (sdata->vif.bss_conf.use_cts_prot)
551 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_CTS_PROT;
552 if (sdata->vif.bss_conf.use_short_preamble)
553 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_PREAMBLE;
554 if (sdata->vif.bss_conf.use_short_slot)
555 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_SLOT_TIME;
556 sinfo->bss_param.dtim_period = sdata->local->hw.conf.ps_dtim_period;
557 sinfo->bss_param.beacon_interval = sdata->vif.bss_conf.beacon_int;
Helmut Schaa7a724762011-10-13 16:30:40 +0200558
559 sinfo->sta_flags.set = 0;
560 sinfo->sta_flags.mask = BIT(NL80211_STA_FLAG_AUTHORIZED) |
561 BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) |
562 BIT(NL80211_STA_FLAG_WME) |
563 BIT(NL80211_STA_FLAG_MFP) |
Helmut Schaae4121562011-11-05 14:15:24 +0100564 BIT(NL80211_STA_FLAG_AUTHENTICATED) |
Johannes Bergd582cff2012-10-26 17:53:44 +0200565 BIT(NL80211_STA_FLAG_ASSOCIATED) |
Helmut Schaae4121562011-11-05 14:15:24 +0100566 BIT(NL80211_STA_FLAG_TDLS_PEER);
Helmut Schaa7a724762011-10-13 16:30:40 +0200567 if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
568 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_AUTHORIZED);
569 if (test_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE))
570 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_SHORT_PREAMBLE);
571 if (test_sta_flag(sta, WLAN_STA_WME))
572 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_WME);
573 if (test_sta_flag(sta, WLAN_STA_MFP))
574 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_MFP);
575 if (test_sta_flag(sta, WLAN_STA_AUTH))
576 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_AUTHENTICATED);
Johannes Bergd582cff2012-10-26 17:53:44 +0200577 if (test_sta_flag(sta, WLAN_STA_ASSOC))
578 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_ASSOCIATED);
Helmut Schaae4121562011-11-05 14:15:24 +0100579 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER))
580 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_TDLS_PEER);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100581}
582
Ben Greearb1ab7922012-04-23 12:50:30 -0700583static const char ieee80211_gstrings_sta_stats[][ETH_GSTRING_LEN] = {
584 "rx_packets", "rx_bytes", "wep_weak_iv_count",
585 "rx_duplicates", "rx_fragments", "rx_dropped",
586 "tx_packets", "tx_bytes", "tx_fragments",
587 "tx_filtered", "tx_retry_failed", "tx_retries",
Ben Greear3073a7c2012-04-23 12:50:32 -0700588 "beacon_loss", "sta_state", "txrate", "rxrate", "signal",
589 "channel", "noise", "ch_time", "ch_time_busy",
590 "ch_time_ext_busy", "ch_time_rx", "ch_time_tx"
Ben Greearb1ab7922012-04-23 12:50:30 -0700591};
592#define STA_STATS_LEN ARRAY_SIZE(ieee80211_gstrings_sta_stats)
593
594static int ieee80211_get_et_sset_count(struct wiphy *wiphy,
595 struct net_device *dev,
596 int sset)
597{
Ben Greeare3521142012-04-23 12:50:31 -0700598 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
599 int rv = 0;
Ben Greearb1ab7922012-04-23 12:50:30 -0700600
Ben Greeare3521142012-04-23 12:50:31 -0700601 if (sset == ETH_SS_STATS)
602 rv += STA_STATS_LEN;
603
604 rv += drv_get_et_sset_count(sdata, sset);
605
606 if (rv == 0)
607 return -EOPNOTSUPP;
608 return rv;
Ben Greearb1ab7922012-04-23 12:50:30 -0700609}
610
611static void ieee80211_get_et_stats(struct wiphy *wiphy,
612 struct net_device *dev,
613 struct ethtool_stats *stats,
614 u64 *data)
615{
616 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg55de9082012-07-26 17:24:39 +0200617 struct ieee80211_chanctx_conf *chanctx_conf;
618 struct ieee80211_channel *channel;
Ben Greearb1ab7922012-04-23 12:50:30 -0700619 struct sta_info *sta;
620 struct ieee80211_local *local = sdata->local;
Ben Greear3073a7c2012-04-23 12:50:32 -0700621 struct station_info sinfo;
622 struct survey_info survey;
623 int i, q;
624#define STA_STATS_SURVEY_LEN 7
Ben Greearb1ab7922012-04-23 12:50:30 -0700625
626 memset(data, 0, sizeof(u64) * STA_STATS_LEN);
627
628#define ADD_STA_STATS(sta) \
629 do { \
630 data[i++] += sta->rx_packets; \
631 data[i++] += sta->rx_bytes; \
632 data[i++] += sta->wep_weak_iv_count; \
633 data[i++] += sta->num_duplicates; \
634 data[i++] += sta->rx_fragments; \
635 data[i++] += sta->rx_dropped; \
636 \
Johannes Berg560d2682013-02-05 10:55:21 +0100637 data[i++] += sinfo.tx_packets; \
638 data[i++] += sinfo.tx_bytes; \
Ben Greearb1ab7922012-04-23 12:50:30 -0700639 data[i++] += sta->tx_fragments; \
640 data[i++] += sta->tx_filtered_count; \
641 data[i++] += sta->tx_retry_failed; \
642 data[i++] += sta->tx_retry_count; \
643 data[i++] += sta->beacon_loss_count; \
644 } while (0)
645
646 /* For Managed stations, find the single station based on BSSID
647 * and use that. For interface types, iterate through all available
648 * stations and add stats for any station that is assigned to this
649 * network device.
650 */
651
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300652 mutex_lock(&local->sta_mtx);
Ben Greearb1ab7922012-04-23 12:50:30 -0700653
654 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
655 sta = sta_info_get_bss(sdata, sdata->u.mgd.bssid);
Ben Greear3073a7c2012-04-23 12:50:32 -0700656
657 if (!(sta && !WARN_ON(sta->sdata->dev != dev)))
658 goto do_survey;
659
Johannes Berg560d2682013-02-05 10:55:21 +0100660 sinfo.filled = 0;
661 sta_set_sinfo(sta, &sinfo);
662
Ben Greear3073a7c2012-04-23 12:50:32 -0700663 i = 0;
664 ADD_STA_STATS(sta);
665
666 data[i++] = sta->sta_state;
667
Ben Greear3073a7c2012-04-23 12:50:32 -0700668
Joe Perches52042672012-05-30 13:25:54 -0700669 if (sinfo.filled & STATION_INFO_TX_BITRATE)
Ben Greear3073a7c2012-04-23 12:50:32 -0700670 data[i] = 100000 *
671 cfg80211_calculate_bitrate(&sinfo.txrate);
672 i++;
Joe Perches52042672012-05-30 13:25:54 -0700673 if (sinfo.filled & STATION_INFO_RX_BITRATE)
Ben Greear3073a7c2012-04-23 12:50:32 -0700674 data[i] = 100000 *
675 cfg80211_calculate_bitrate(&sinfo.rxrate);
676 i++;
677
Joe Perches52042672012-05-30 13:25:54 -0700678 if (sinfo.filled & STATION_INFO_SIGNAL_AVG)
Ben Greear3073a7c2012-04-23 12:50:32 -0700679 data[i] = (u8)sinfo.signal_avg;
680 i++;
Ben Greearb1ab7922012-04-23 12:50:30 -0700681 } else {
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300682 list_for_each_entry(sta, &local->sta_list, list) {
Ben Greearb1ab7922012-04-23 12:50:30 -0700683 /* Make sure this station belongs to the proper dev */
684 if (sta->sdata->dev != dev)
685 continue;
686
Johannes Berge13bae42013-07-08 10:43:31 +0200687 sinfo.filled = 0;
688 sta_set_sinfo(sta, &sinfo);
Ben Greearb1ab7922012-04-23 12:50:30 -0700689 i = 0;
690 ADD_STA_STATS(sta);
Ben Greearb1ab7922012-04-23 12:50:30 -0700691 }
692 }
693
Ben Greear3073a7c2012-04-23 12:50:32 -0700694do_survey:
695 i = STA_STATS_LEN - STA_STATS_SURVEY_LEN;
696 /* Get survey stats for current channel */
Johannes Berg55de9082012-07-26 17:24:39 +0200697 survey.filled = 0;
Ben Greear3073a7c2012-04-23 12:50:32 -0700698
Johannes Berg55de9082012-07-26 17:24:39 +0200699 rcu_read_lock();
700 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
701 if (chanctx_conf)
Johannes Berg4bf88532012-11-09 11:39:59 +0100702 channel = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +0200703 else
704 channel = NULL;
705 rcu_read_unlock();
706
707 if (channel) {
708 q = 0;
709 do {
710 survey.filled = 0;
711 if (drv_get_survey(local, q, &survey) != 0) {
712 survey.filled = 0;
713 break;
714 }
715 q++;
716 } while (channel != survey.channel);
Ben Greear3073a7c2012-04-23 12:50:32 -0700717 }
718
719 if (survey.filled)
720 data[i++] = survey.channel->center_freq;
721 else
722 data[i++] = 0;
723 if (survey.filled & SURVEY_INFO_NOISE_DBM)
724 data[i++] = (u8)survey.noise;
725 else
726 data[i++] = -1LL;
727 if (survey.filled & SURVEY_INFO_CHANNEL_TIME)
728 data[i++] = survey.channel_time;
729 else
730 data[i++] = -1LL;
731 if (survey.filled & SURVEY_INFO_CHANNEL_TIME_BUSY)
732 data[i++] = survey.channel_time_busy;
733 else
734 data[i++] = -1LL;
735 if (survey.filled & SURVEY_INFO_CHANNEL_TIME_EXT_BUSY)
736 data[i++] = survey.channel_time_ext_busy;
737 else
738 data[i++] = -1LL;
739 if (survey.filled & SURVEY_INFO_CHANNEL_TIME_RX)
740 data[i++] = survey.channel_time_rx;
741 else
742 data[i++] = -1LL;
743 if (survey.filled & SURVEY_INFO_CHANNEL_TIME_TX)
744 data[i++] = survey.channel_time_tx;
745 else
746 data[i++] = -1LL;
747
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300748 mutex_unlock(&local->sta_mtx);
Ben Greeare3521142012-04-23 12:50:31 -0700749
Ben Greear3073a7c2012-04-23 12:50:32 -0700750 if (WARN_ON(i != STA_STATS_LEN))
751 return;
752
Ben Greeare3521142012-04-23 12:50:31 -0700753 drv_get_et_stats(sdata, stats, &(data[STA_STATS_LEN]));
Ben Greearb1ab7922012-04-23 12:50:30 -0700754}
755
756static void ieee80211_get_et_strings(struct wiphy *wiphy,
757 struct net_device *dev,
758 u32 sset, u8 *data)
759{
Ben Greeare3521142012-04-23 12:50:31 -0700760 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
761 int sz_sta_stats = 0;
762
Ben Greearb1ab7922012-04-23 12:50:30 -0700763 if (sset == ETH_SS_STATS) {
Ben Greeare3521142012-04-23 12:50:31 -0700764 sz_sta_stats = sizeof(ieee80211_gstrings_sta_stats);
Johannes Bergbd500af2013-05-06 21:09:46 +0200765 memcpy(data, ieee80211_gstrings_sta_stats, sz_sta_stats);
Ben Greearb1ab7922012-04-23 12:50:30 -0700766 }
Ben Greeare3521142012-04-23 12:50:31 -0700767 drv_get_et_strings(sdata, sset, &(data[sz_sta_stats]));
Ben Greearb1ab7922012-04-23 12:50:30 -0700768}
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100769
770static int ieee80211_dump_station(struct wiphy *wiphy, struct net_device *dev,
771 int idx, u8 *mac, struct station_info *sinfo)
772{
Johannes Berg3b53fde82009-11-16 12:00:37 +0100773 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300774 struct ieee80211_local *local = sdata->local;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100775 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100776 int ret = -ENOENT;
777
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300778 mutex_lock(&local->sta_mtx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100779
Johannes Berg3b53fde82009-11-16 12:00:37 +0100780 sta = sta_info_get_by_idx(sdata, idx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100781 if (sta) {
782 ret = 0;
Johannes Berg17741cd2008-09-11 00:02:02 +0200783 memcpy(mac, sta->sta.addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100784 sta_set_sinfo(sta, sinfo);
785 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100786
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300787 mutex_unlock(&local->sta_mtx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100788
Johannes Bergd0709a62008-02-25 16:27:46 +0100789 return ret;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100790}
791
Holger Schurig12897232010-04-19 10:23:57 +0200792static int ieee80211_dump_survey(struct wiphy *wiphy, struct net_device *dev,
793 int idx, struct survey_info *survey)
794{
795 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
796
Holger Schurig12897232010-04-19 10:23:57 +0200797 return drv_get_survey(local, idx, survey);
798}
799
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100800static int ieee80211_get_station(struct wiphy *wiphy, struct net_device *dev,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100801 u8 *mac, struct station_info *sinfo)
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100802{
Johannes Bergabe60632009-11-25 17:46:18 +0100803 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300804 struct ieee80211_local *local = sdata->local;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100805 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100806 int ret = -ENOENT;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100807
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300808 mutex_lock(&local->sta_mtx);
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100809
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100810 sta = sta_info_get_bss(sdata, mac);
Johannes Bergd0709a62008-02-25 16:27:46 +0100811 if (sta) {
812 ret = 0;
813 sta_set_sinfo(sta, sinfo);
814 }
815
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300816 mutex_unlock(&local->sta_mtx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100817
818 return ret;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100819}
820
Johannes Berge8c9bd52012-06-06 08:18:22 +0200821static int ieee80211_set_monitor_channel(struct wiphy *wiphy,
Johannes Berg683b6d32012-11-08 21:25:48 +0100822 struct cfg80211_chan_def *chandef)
Johannes Berge8c9bd52012-06-06 08:18:22 +0200823{
Johannes Berg55de9082012-07-26 17:24:39 +0200824 struct ieee80211_local *local = wiphy_priv(wiphy);
825 struct ieee80211_sub_if_data *sdata;
826 int ret = 0;
827
Johannes Berg4bf88532012-11-09 11:39:59 +0100828 if (cfg80211_chandef_identical(&local->monitor_chandef, chandef))
Johannes Berg55de9082012-07-26 17:24:39 +0200829 return 0;
830
Johannes Berg34a37402013-12-18 09:43:33 +0100831 mutex_lock(&local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +0200832 mutex_lock(&local->iflist_mtx);
833 if (local->use_chanctx) {
834 sdata = rcu_dereference_protected(
835 local->monitor_sdata,
836 lockdep_is_held(&local->iflist_mtx));
837 if (sdata) {
838 ieee80211_vif_release_channel(sdata);
Johannes Berg4bf88532012-11-09 11:39:59 +0100839 ret = ieee80211_vif_use_channel(sdata, chandef,
Johannes Berg55de9082012-07-26 17:24:39 +0200840 IEEE80211_CHANCTX_EXCLUSIVE);
841 }
842 } else if (local->open_count == local->monitors) {
Karl Beldan675a0b02013-03-25 16:26:57 +0100843 local->_oper_chandef = *chandef;
Johannes Berg55de9082012-07-26 17:24:39 +0200844 ieee80211_hw_config(local, 0);
845 }
846
Johannes Berg4bf88532012-11-09 11:39:59 +0100847 if (ret == 0)
848 local->monitor_chandef = *chandef;
Johannes Berg55de9082012-07-26 17:24:39 +0200849 mutex_unlock(&local->iflist_mtx);
Johannes Berg34a37402013-12-18 09:43:33 +0100850 mutex_unlock(&local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +0200851
852 return ret;
Johannes Berge8c9bd52012-06-06 08:18:22 +0200853}
854
Arik Nemtsov02945822011-11-10 11:28:57 +0200855static int ieee80211_set_probe_resp(struct ieee80211_sub_if_data *sdata,
Johannes Berg88600202012-02-13 15:17:18 +0100856 const u8 *resp, size_t resp_len)
Arik Nemtsov02945822011-11-10 11:28:57 +0200857{
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300858 struct probe_resp *new, *old;
Arik Nemtsov02945822011-11-10 11:28:57 +0200859
860 if (!resp || !resp_len)
Sujith Manoharanaba4e6f2012-08-22 14:21:07 +0530861 return 1;
Arik Nemtsov02945822011-11-10 11:28:57 +0200862
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100863 old = sdata_dereference(sdata->u.ap.probe_resp, sdata);
Arik Nemtsov02945822011-11-10 11:28:57 +0200864
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300865 new = kzalloc(sizeof(struct probe_resp) + resp_len, GFP_KERNEL);
Arik Nemtsov02945822011-11-10 11:28:57 +0200866 if (!new)
867 return -ENOMEM;
868
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300869 new->len = resp_len;
870 memcpy(new->data, resp, resp_len);
Arik Nemtsov02945822011-11-10 11:28:57 +0200871
872 rcu_assign_pointer(sdata->u.ap.probe_resp, new);
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300873 if (old)
874 kfree_rcu(old, rcu_head);
Arik Nemtsov02945822011-11-10 11:28:57 +0200875
876 return 0;
877}
878
Luciano Coelho0ae07962013-12-08 09:42:25 +0200879static int ieee80211_assign_beacon(struct ieee80211_sub_if_data *sdata,
880 struct cfg80211_beacon_data *params)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100881{
882 struct beacon_data *new, *old;
883 int new_head_len, new_tail_len;
Johannes Berg88600202012-02-13 15:17:18 +0100884 int size, err;
885 u32 changed = BSS_CHANGED_BEACON;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100886
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100887 old = sdata_dereference(sdata->u.ap.beacon, sdata);
888
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100889
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100890 /* Need to have a beacon head if we don't have one yet */
891 if (!params->head && !old)
Johannes Berg88600202012-02-13 15:17:18 +0100892 return -EINVAL;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100893
894 /* new or old head? */
895 if (params->head)
896 new_head_len = params->head_len;
897 else
898 new_head_len = old->head_len;
899
900 /* new or old tail? */
901 if (params->tail || !old)
902 /* params->tail_len will be zero for !params->tail */
903 new_tail_len = params->tail_len;
904 else
905 new_tail_len = old->tail_len;
906
907 size = sizeof(*new) + new_head_len + new_tail_len;
908
909 new = kzalloc(size, GFP_KERNEL);
910 if (!new)
911 return -ENOMEM;
912
913 /* start filling the new info now */
914
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100915 /*
916 * pointers go into the block we allocated,
917 * memory is | beacon_data | head | tail |
918 */
919 new->head = ((u8 *) new) + sizeof(*new);
920 new->tail = new->head + new_head_len;
921 new->head_len = new_head_len;
922 new->tail_len = new_tail_len;
923
924 /* copy in head */
925 if (params->head)
926 memcpy(new->head, params->head, new_head_len);
927 else
928 memcpy(new->head, old->head, new_head_len);
929
930 /* copy in optional tail */
931 if (params->tail)
932 memcpy(new->tail, params->tail, new_tail_len);
933 else
934 if (old)
935 memcpy(new->tail, old->tail, new_tail_len);
936
Johannes Berg88600202012-02-13 15:17:18 +0100937 err = ieee80211_set_probe_resp(sdata, params->probe_resp,
938 params->probe_resp_len);
939 if (err < 0)
940 return err;
941 if (err == 0)
942 changed |= BSS_CHANGED_AP_PROBE_RESP;
Johannes Berg19885c42010-02-05 11:45:06 +0100943
Eric Dumazetcf778b02012-01-12 04:41:32 +0000944 rcu_assign_pointer(sdata->u.ap.beacon, new);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100945
Johannes Berg88600202012-02-13 15:17:18 +0100946 if (old)
947 kfree_rcu(old, rcu_head);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100948
Johannes Berg88600202012-02-13 15:17:18 +0100949 return changed;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100950}
951
Johannes Berg88600202012-02-13 15:17:18 +0100952static int ieee80211_start_ap(struct wiphy *wiphy, struct net_device *dev,
953 struct cfg80211_ap_settings *params)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100954{
Johannes Berg88600202012-02-13 15:17:18 +0100955 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg34a37402013-12-18 09:43:33 +0100956 struct ieee80211_local *local = sdata->local;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100957 struct beacon_data *old;
Johannes Berg665c93a2011-11-04 11:18:11 +0100958 struct ieee80211_sub_if_data *vlan;
Johannes Berg88600202012-02-13 15:17:18 +0100959 u32 changed = BSS_CHANGED_BEACON_INT |
960 BSS_CHANGED_BEACON_ENABLED |
961 BSS_CHANGED_BEACON |
Johannes Berg339afbf2012-11-14 15:21:17 +0100962 BSS_CHANGED_SSID |
963 BSS_CHANGED_P2P_PS;
Johannes Berg88600202012-02-13 15:17:18 +0100964 int err;
Johannes Berg14db74b2008-07-29 13:22:52 +0200965
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100966 old = sdata_dereference(sdata->u.ap.beacon, sdata);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100967 if (old)
968 return -EALREADY;
969
Johannes Berg04ecd252012-09-11 14:34:12 +0200970 /* TODO: make hostapd tell us what it wants */
971 sdata->smps_mode = IEEE80211_SMPS_OFF;
972 sdata->needed_rx_chains = sdata->local->rx_chains;
973
Johannes Berg34a37402013-12-18 09:43:33 +0100974 mutex_lock(&local->mtx);
Michal Kaziorcc901de2014-01-29 07:56:20 +0100975 sdata->radar_required = params->radar_required;
Johannes Berg4bf88532012-11-09 11:39:59 +0100976 err = ieee80211_vif_use_channel(sdata, &params->chandef,
Johannes Berg55de9082012-07-26 17:24:39 +0200977 IEEE80211_CHANCTX_SHARED);
Johannes Berg34a37402013-12-18 09:43:33 +0100978 mutex_unlock(&local->mtx);
Johannes Bergaa430da2012-05-16 23:50:18 +0200979 if (err)
980 return err;
Johannes Berg1f4ac5a2013-02-08 12:07:44 +0100981 ieee80211_vif_copy_chanctx_to_vlans(sdata, false);
Johannes Bergaa430da2012-05-16 23:50:18 +0200982
Johannes Berg665c93a2011-11-04 11:18:11 +0100983 /*
984 * Apply control port protocol, this allows us to
985 * not encrypt dynamic WEP control frames.
986 */
987 sdata->control_port_protocol = params->crypto.control_port_ethertype;
988 sdata->control_port_no_encrypt = params->crypto.control_port_no_encrypt;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200989 sdata->encrypt_headroom = ieee80211_cs_headroom(sdata->local,
990 &params->crypto,
991 sdata->vif.type);
992
Johannes Berg665c93a2011-11-04 11:18:11 +0100993 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list) {
994 vlan->control_port_protocol =
995 params->crypto.control_port_ethertype;
996 vlan->control_port_no_encrypt =
997 params->crypto.control_port_no_encrypt;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200998 vlan->encrypt_headroom =
999 ieee80211_cs_headroom(sdata->local,
1000 &params->crypto,
1001 vlan->vif.type);
Johannes Berg665c93a2011-11-04 11:18:11 +01001002 }
1003
Johannes Berg88600202012-02-13 15:17:18 +01001004 sdata->vif.bss_conf.beacon_int = params->beacon_interval;
1005 sdata->vif.bss_conf.dtim_period = params->dtim_period;
Johannes Bergd6a83222012-12-14 14:06:28 +01001006 sdata->vif.bss_conf.enable_beacon = true;
Johannes Berg88600202012-02-13 15:17:18 +01001007
1008 sdata->vif.bss_conf.ssid_len = params->ssid_len;
1009 if (params->ssid_len)
1010 memcpy(sdata->vif.bss_conf.ssid, params->ssid,
1011 params->ssid_len);
1012 sdata->vif.bss_conf.hidden_ssid =
1013 (params->hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE);
1014
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001015 memset(&sdata->vif.bss_conf.p2p_noa_attr, 0,
1016 sizeof(sdata->vif.bss_conf.p2p_noa_attr));
1017 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow =
1018 params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
1019 if (params->p2p_opp_ps)
1020 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
1021 IEEE80211_P2P_OPPPS_ENABLE_BIT;
Johannes Berg339afbf2012-11-14 15:21:17 +01001022
Johannes Berg88600202012-02-13 15:17:18 +01001023 err = ieee80211_assign_beacon(sdata, &params->beacon);
1024 if (err < 0)
1025 return err;
1026 changed |= err;
1027
Johannes Berg10416382012-10-19 15:44:42 +02001028 err = drv_start_ap(sdata->local, sdata);
1029 if (err) {
Simon Wunderlich7ca133b2013-11-21 18:19:50 +01001030 old = sdata_dereference(sdata->u.ap.beacon, sdata);
1031
Johannes Berg10416382012-10-19 15:44:42 +02001032 if (old)
1033 kfree_rcu(old, rcu_head);
1034 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
1035 return err;
1036 }
1037
Thomas Pedersen057d5f42013-12-19 10:25:15 -08001038 ieee80211_recalc_dtim(local, sdata);
Johannes Berg88600202012-02-13 15:17:18 +01001039 ieee80211_bss_info_change_notify(sdata, changed);
1040
Johannes Berg3edaf3e2012-04-03 10:24:00 +02001041 netif_carrier_on(dev);
1042 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
1043 netif_carrier_on(vlan->dev);
1044
Johannes Berg665c93a2011-11-04 11:18:11 +01001045 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001046}
1047
Johannes Berg88600202012-02-13 15:17:18 +01001048static int ieee80211_change_beacon(struct wiphy *wiphy, struct net_device *dev,
1049 struct cfg80211_beacon_data *params)
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001050{
Johannes Berg14db74b2008-07-29 13:22:52 +02001051 struct ieee80211_sub_if_data *sdata;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001052 struct beacon_data *old;
Johannes Berg88600202012-02-13 15:17:18 +01001053 int err;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001054
Johannes Berg14db74b2008-07-29 13:22:52 +02001055 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Michal Kaziordbd72852014-01-29 07:56:21 +01001056 sdata_assert_lock(sdata);
Johannes Berg14db74b2008-07-29 13:22:52 +02001057
Simon Wunderlich73da7d52013-07-11 16:09:06 +02001058 /* don't allow changing the beacon while CSA is in place - offset
1059 * of channel switch counter may change
1060 */
1061 if (sdata->vif.csa_active)
1062 return -EBUSY;
1063
Simon Wunderlich7ca133b2013-11-21 18:19:50 +01001064 old = sdata_dereference(sdata->u.ap.beacon, sdata);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001065 if (!old)
1066 return -ENOENT;
1067
Johannes Berg88600202012-02-13 15:17:18 +01001068 err = ieee80211_assign_beacon(sdata, params);
1069 if (err < 0)
1070 return err;
1071 ieee80211_bss_info_change_notify(sdata, err);
1072 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001073}
1074
Johannes Berg88600202012-02-13 15:17:18 +01001075static int ieee80211_stop_ap(struct wiphy *wiphy, struct net_device *dev)
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001076{
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001077 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1078 struct ieee80211_sub_if_data *vlan;
1079 struct ieee80211_local *local = sdata->local;
1080 struct beacon_data *old_beacon;
1081 struct probe_resp *old_probe_resp;
Janusz Dziedzicd2859df2013-11-06 13:55:51 +01001082 struct cfg80211_chan_def chandef;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001083
Michal Kaziordbd72852014-01-29 07:56:21 +01001084 sdata_assert_lock(sdata);
1085
Simon Wunderlich7ca133b2013-11-21 18:19:50 +01001086 old_beacon = sdata_dereference(sdata->u.ap.beacon, sdata);
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001087 if (!old_beacon)
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001088 return -ENOENT;
Simon Wunderlich7ca133b2013-11-21 18:19:50 +01001089 old_probe_resp = sdata_dereference(sdata->u.ap.probe_resp, sdata);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001090
Simon Wunderlich73da7d52013-07-11 16:09:06 +02001091 /* abort any running channel switch */
1092 sdata->vif.csa_active = false;
Simon Wunderlich1f3b8a22013-11-21 18:19:53 +01001093 kfree(sdata->u.ap.next_beacon);
1094 sdata->u.ap.next_beacon = NULL;
1095
Emmanuel Grumbach687da132013-10-01 16:45:43 +03001096 cancel_work_sync(&sdata->u.ap.request_smps_work);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02001097
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001098 /* turn off carrier for this interface and dependent VLANs */
Johannes Berg3edaf3e2012-04-03 10:24:00 +02001099 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
1100 netif_carrier_off(vlan->dev);
1101 netif_carrier_off(dev);
1102
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001103 /* remove beacon and probe response */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001104 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001105 RCU_INIT_POINTER(sdata->u.ap.probe_resp, NULL);
1106 kfree_rcu(old_beacon, rcu_head);
1107 if (old_probe_resp)
1108 kfree_rcu(old_probe_resp, rcu_head);
Johannes Berg88600202012-02-13 15:17:18 +01001109
Johannes Berge7162512013-12-04 23:18:37 +01001110 __sta_info_flush(sdata, true);
Johannes Berg7907c7d2013-12-04 23:47:09 +01001111 ieee80211_free_keys(sdata, true);
Johannes Berg75de9112012-12-14 14:56:03 +01001112
Johannes Bergd6a83222012-12-14 14:06:28 +01001113 sdata->vif.bss_conf.enable_beacon = false;
Marek Puzyniak0eabccd2013-04-10 13:47:45 +02001114 sdata->vif.bss_conf.ssid_len = 0;
Johannes Bergd6a83222012-12-14 14:06:28 +01001115 clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED, &sdata->state);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001116 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
Johannes Berg88600202012-02-13 15:17:18 +01001117
Simon Wunderlicha6b368f2013-06-11 10:44:39 +02001118 if (sdata->wdev.cac_started) {
Janusz Dziedzicd2859df2013-11-06 13:55:51 +01001119 chandef = sdata->vif.bss_conf.chandef;
Simon Wunderlicha6b368f2013-06-11 10:44:39 +02001120 cancel_delayed_work_sync(&sdata->dfs_cac_timer_work);
Janusz Dziedzicd2859df2013-11-06 13:55:51 +01001121 cfg80211_cac_event(sdata->dev, &chandef,
1122 NL80211_RADAR_CAC_ABORTED,
Simon Wunderlicha6b368f2013-06-11 10:44:39 +02001123 GFP_KERNEL);
1124 }
1125
Johannes Berg10416382012-10-19 15:44:42 +02001126 drv_stop_ap(sdata->local, sdata);
1127
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001128 /* free all potentially still buffered bcast frames */
1129 local->total_ps_buffered -= skb_queue_len(&sdata->u.ap.ps.bc_buf);
1130 skb_queue_purge(&sdata->u.ap.ps.bc_buf);
1131
Johannes Berg1f4ac5a2013-02-08 12:07:44 +01001132 ieee80211_vif_copy_chanctx_to_vlans(sdata, true);
Johannes Berg34a37402013-12-18 09:43:33 +01001133 mutex_lock(&local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001134 ieee80211_vif_release_channel(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +01001135 mutex_unlock(&local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001136
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001137 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001138}
1139
Johannes Berg4fd69312007-12-19 02:03:35 +01001140/* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */
1141struct iapp_layer2_update {
1142 u8 da[ETH_ALEN]; /* broadcast */
1143 u8 sa[ETH_ALEN]; /* STA addr */
1144 __be16 len; /* 6 */
1145 u8 dsap; /* 0 */
1146 u8 ssap; /* 0 */
1147 u8 control;
1148 u8 xid_info[3];
Eric Dumazetbc105022010-06-03 03:21:52 -07001149} __packed;
Johannes Berg4fd69312007-12-19 02:03:35 +01001150
1151static void ieee80211_send_layer2_update(struct sta_info *sta)
1152{
1153 struct iapp_layer2_update *msg;
1154 struct sk_buff *skb;
1155
1156 /* Send Level 2 Update Frame to update forwarding tables in layer 2
1157 * bridge devices */
1158
1159 skb = dev_alloc_skb(sizeof(*msg));
1160 if (!skb)
1161 return;
1162 msg = (struct iapp_layer2_update *)skb_put(skb, sizeof(*msg));
1163
1164 /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID)
1165 * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */
1166
Johannes Berge83e6542012-07-13 16:23:07 +02001167 eth_broadcast_addr(msg->da);
Johannes Berg17741cd2008-09-11 00:02:02 +02001168 memcpy(msg->sa, sta->sta.addr, ETH_ALEN);
Johannes Berg4fd69312007-12-19 02:03:35 +01001169 msg->len = htons(6);
1170 msg->dsap = 0;
1171 msg->ssap = 0x01; /* NULL LSAP, CR Bit: Response */
1172 msg->control = 0xaf; /* XID response lsb.1111F101.
1173 * F=0 (no poll command; unsolicited frame) */
1174 msg->xid_info[0] = 0x81; /* XID format identifier */
1175 msg->xid_info[1] = 1; /* LLC types/classes: Type 1 LLC */
1176 msg->xid_info[2] = 0; /* XID sender's receive window size (RW) */
1177
Johannes Bergd0709a62008-02-25 16:27:46 +01001178 skb->dev = sta->sdata->dev;
1179 skb->protocol = eth_type_trans(skb, sta->sdata->dev);
Johannes Berg4fd69312007-12-19 02:03:35 +01001180 memset(skb->cb, 0, sizeof(skb->cb));
John W. Linville06ee1c22010-07-19 11:52:59 -04001181 netif_rx_ni(skb);
Johannes Berg4fd69312007-12-19 02:03:35 +01001182}
1183
Johannes Bergd582cff2012-10-26 17:53:44 +02001184static int sta_apply_auth_flags(struct ieee80211_local *local,
1185 struct sta_info *sta,
1186 u32 mask, u32 set)
1187{
1188 int ret;
1189
1190 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
1191 set & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
1192 !test_sta_flag(sta, WLAN_STA_AUTH)) {
1193 ret = sta_info_move_state(sta, IEEE80211_STA_AUTH);
1194 if (ret)
1195 return ret;
1196 }
1197
1198 if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
1199 set & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
1200 !test_sta_flag(sta, WLAN_STA_ASSOC)) {
1201 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
1202 if (ret)
1203 return ret;
1204 }
1205
1206 if (mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
1207 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED))
1208 ret = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
1209 else if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
1210 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
1211 else
1212 ret = 0;
1213 if (ret)
1214 return ret;
1215 }
1216
1217 if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
1218 !(set & BIT(NL80211_STA_FLAG_ASSOCIATED)) &&
1219 test_sta_flag(sta, WLAN_STA_ASSOC)) {
1220 ret = sta_info_move_state(sta, IEEE80211_STA_AUTH);
1221 if (ret)
1222 return ret;
1223 }
1224
1225 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
1226 !(set & BIT(NL80211_STA_FLAG_AUTHENTICATED)) &&
1227 test_sta_flag(sta, WLAN_STA_AUTH)) {
1228 ret = sta_info_move_state(sta, IEEE80211_STA_NONE);
1229 if (ret)
1230 return ret;
1231 }
1232
1233 return 0;
1234}
1235
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001236static int sta_apply_parameters(struct ieee80211_local *local,
1237 struct sta_info *sta,
1238 struct station_parameters *params)
Johannes Berg4fd69312007-12-19 02:03:35 +01001239{
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001240 int ret = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01001241 struct ieee80211_supported_band *sband;
Johannes Bergd0709a62008-02-25 16:27:46 +01001242 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berg55de9082012-07-26 17:24:39 +02001243 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001244 u32 mask, set;
Johannes Berg4fd69312007-12-19 02:03:35 +01001245
Johannes Berg55de9082012-07-26 17:24:39 +02001246 sband = local->hw.wiphy->bands[band];
Johannes Bergae5eb022008-10-14 16:58:37 +02001247
Johannes Bergeccb8e82009-05-11 21:57:56 +03001248 mask = params->sta_flags_mask;
1249 set = params->sta_flags_set;
Johannes Berg73651ee2008-02-25 16:27:47 +01001250
Johannes Bergd582cff2012-10-26 17:53:44 +02001251 if (ieee80211_vif_is_mesh(&sdata->vif)) {
1252 /*
1253 * In mesh mode, ASSOCIATED isn't part of the nl80211
1254 * API but must follow AUTHENTICATED for driver state.
1255 */
1256 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED))
1257 mask |= BIT(NL80211_STA_FLAG_ASSOCIATED);
1258 if (set & BIT(NL80211_STA_FLAG_AUTHENTICATED))
1259 set |= BIT(NL80211_STA_FLAG_ASSOCIATED);
Johannes Berg77ee7c82013-02-15 00:48:33 +01001260 } else if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1261 /*
1262 * TDLS -- everything follows authorized, but
1263 * only becoming authorized is possible, not
1264 * going back
1265 */
1266 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
1267 set |= BIT(NL80211_STA_FLAG_AUTHENTICATED) |
1268 BIT(NL80211_STA_FLAG_ASSOCIATED);
1269 mask |= BIT(NL80211_STA_FLAG_AUTHENTICATED) |
1270 BIT(NL80211_STA_FLAG_ASSOCIATED);
1271 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001272 }
1273
Johannes Bergd582cff2012-10-26 17:53:44 +02001274 ret = sta_apply_auth_flags(local, sta, mask, set);
1275 if (ret)
1276 return ret;
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001277
Johannes Bergeccb8e82009-05-11 21:57:56 +03001278 if (mask & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) {
Johannes Bergeccb8e82009-05-11 21:57:56 +03001279 if (set & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001280 set_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
1281 else
1282 clear_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001283 }
1284
1285 if (mask & BIT(NL80211_STA_FLAG_WME)) {
Arik Nemtsov39df6002011-06-27 23:58:45 +03001286 if (set & BIT(NL80211_STA_FLAG_WME)) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001287 set_sta_flag(sta, WLAN_STA_WME);
Arik Nemtsov39df6002011-06-27 23:58:45 +03001288 sta->sta.wme = true;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001289 } else {
1290 clear_sta_flag(sta, WLAN_STA_WME);
1291 sta->sta.wme = false;
Arik Nemtsov39df6002011-06-27 23:58:45 +03001292 }
Johannes Bergeccb8e82009-05-11 21:57:56 +03001293 }
1294
1295 if (mask & BIT(NL80211_STA_FLAG_MFP)) {
Johannes Bergeccb8e82009-05-11 21:57:56 +03001296 if (set & BIT(NL80211_STA_FLAG_MFP))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001297 set_sta_flag(sta, WLAN_STA_MFP);
1298 else
1299 clear_sta_flag(sta, WLAN_STA_MFP);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001300 }
Javier Cardonab39c48f2011-04-07 15:08:30 -07001301
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001302 if (mask & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001303 if (set & BIT(NL80211_STA_FLAG_TDLS_PEER))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001304 set_sta_flag(sta, WLAN_STA_TDLS_PEER);
1305 else
1306 clear_sta_flag(sta, WLAN_STA_TDLS_PEER);
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001307 }
Johannes Bergeccb8e82009-05-11 21:57:56 +03001308
Johannes Berg3b9ce802011-09-27 20:56:12 +02001309 if (params->sta_modify_mask & STATION_PARAM_APPLY_UAPSD) {
1310 sta->sta.uapsd_queues = params->uapsd_queues;
1311 sta->sta.max_sp = params->max_sp;
1312 }
Eliad Peller9533b4a2011-08-23 14:37:47 +03001313
Johannes Berg73651ee2008-02-25 16:27:47 +01001314 /*
Johannes Berg51b50fb2009-05-24 16:42:30 +02001315 * cfg80211 validates this (1-2007) and allows setting the AID
1316 * only when creating a new station entry
1317 */
1318 if (params->aid)
1319 sta->sta.aid = params->aid;
1320
1321 /*
Johannes Bergba23d202012-12-27 17:32:09 +01001322 * Some of the following updates would be racy if called on an
1323 * existing station, via ieee80211_change_station(). However,
1324 * all such changes are rejected by cfg80211 except for updates
1325 * changing the supported rates on an existing but not yet used
1326 * TDLS peer.
Johannes Berg73651ee2008-02-25 16:27:47 +01001327 */
1328
Johannes Berg4fd69312007-12-19 02:03:35 +01001329 if (params->listen_interval >= 0)
1330 sta->listen_interval = params->listen_interval;
1331
1332 if (params->supported_rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001333 ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef,
1334 sband, params->supported_rates,
1335 params->supported_rates_len,
1336 &sta->sta.supp_rates[band]);
Johannes Berg4fd69312007-12-19 02:03:35 +01001337 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001338
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001339 if (params->ht_capa)
Ben Greearef96a8422011-11-18 11:32:00 -08001340 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
Johannes Berge1a0c6b2013-02-07 11:47:44 +01001341 params->ht_capa, sta);
Jouni Malinen36aedc92008-08-25 11:58:58 +03001342
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +00001343 if (params->vht_capa)
1344 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
Johannes Berg4a342152013-02-07 11:58:58 +01001345 params->vht_capa, sta);
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +00001346
Marek Kwaczynskib1bce14a2014-02-03 14:44:44 +01001347 if (params->opmode_notif_used) {
1348 enum ieee80211_band band =
1349 ieee80211_get_sdata_band(sdata);
1350
1351 /* returned value is only needed for rc update, but the
1352 * rc isn't initialized here yet, so ignore it
1353 */
1354 __ieee80211_vht_handle_opmode(sdata, sta,
1355 params->opmode_notif,
1356 band, false);
1357 }
1358
Javier Cardona9c3990a2011-05-03 16:57:11 -07001359 if (ieee80211_vif_is_mesh(&sdata->vif)) {
Yogesh Ashok Powar4daf50f2011-05-12 09:32:17 -04001360#ifdef CONFIG_MAC80211_MESH
Thomas Pedersen39886b62013-02-13 12:14:19 -08001361 u32 changed = 0;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001362
1363 if (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE) {
Javier Cardona9c3990a2011-05-03 16:57:11 -07001364 switch (params->plink_state) {
Javier Cardona57cf8042011-05-13 10:45:43 -07001365 case NL80211_PLINK_ESTAB:
Marco Porsch1617bab2013-01-07 16:04:49 +01001366 if (sta->plink_state != NL80211_PLINK_ESTAB)
1367 changed = mesh_plink_inc_estab_count(
1368 sdata);
1369 sta->plink_state = params->plink_state;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001370
1371 ieee80211_mps_sta_status_update(sta);
Thomas Pedersen39886b62013-02-13 12:14:19 -08001372 changed |= ieee80211_mps_set_sta_local_pm(sta,
1373 sdata->u.mesh.mshcfg.power_mode);
Marco Porsch1617bab2013-01-07 16:04:49 +01001374 break;
1375 case NL80211_PLINK_LISTEN:
Javier Cardona57cf8042011-05-13 10:45:43 -07001376 case NL80211_PLINK_BLOCKED:
Marco Porsch1617bab2013-01-07 16:04:49 +01001377 case NL80211_PLINK_OPN_SNT:
1378 case NL80211_PLINK_OPN_RCVD:
1379 case NL80211_PLINK_CNF_RCVD:
1380 case NL80211_PLINK_HOLDING:
1381 if (sta->plink_state == NL80211_PLINK_ESTAB)
1382 changed = mesh_plink_dec_estab_count(
1383 sdata);
Javier Cardona9c3990a2011-05-03 16:57:11 -07001384 sta->plink_state = params->plink_state;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001385
1386 ieee80211_mps_sta_status_update(sta);
Marco Porsch446075d2013-10-15 12:29:24 +02001387 changed |= ieee80211_mps_set_sta_local_pm(sta,
1388 NL80211_MESH_POWER_UNKNOWN);
Javier Cardona9c3990a2011-05-03 16:57:11 -07001389 break;
1390 default:
1391 /* nothing */
1392 break;
1393 }
Johannes Berg77ee7c82013-02-15 00:48:33 +01001394 }
1395
1396 switch (params->plink_action) {
1397 case NL80211_PLINK_ACTION_NO_ACTION:
1398 /* nothing */
1399 break;
1400 case NL80211_PLINK_ACTION_OPEN:
1401 changed |= mesh_plink_open(sta);
1402 break;
1403 case NL80211_PLINK_ACTION_BLOCK:
1404 changed |= mesh_plink_block(sta);
1405 break;
Marco Porsch1617bab2013-01-07 16:04:49 +01001406 }
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001407
1408 if (params->local_pm)
Thomas Pedersen39886b62013-02-13 12:14:19 -08001409 changed |=
1410 ieee80211_mps_set_sta_local_pm(sta,
1411 params->local_pm);
Javier Lopez6c751ef2013-11-06 10:04:29 -08001412 ieee80211_mbss_info_change_notify(sdata, changed);
Yogesh Ashok Powar4daf50f2011-05-12 09:32:17 -04001413#endif
Johannes Berg902acc72008-02-23 15:17:19 +01001414 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001415
1416 return 0;
Johannes Berg4fd69312007-12-19 02:03:35 +01001417}
1418
1419static int ieee80211_add_station(struct wiphy *wiphy, struct net_device *dev,
1420 u8 *mac, struct station_parameters *params)
1421{
Johannes Berg14db74b2008-07-29 13:22:52 +02001422 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +01001423 struct sta_info *sta;
1424 struct ieee80211_sub_if_data *sdata;
Johannes Berg73651ee2008-02-25 16:27:47 +01001425 int err;
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001426 int layer2_update;
Johannes Berg4fd69312007-12-19 02:03:35 +01001427
Johannes Berg4fd69312007-12-19 02:03:35 +01001428 if (params->vlan) {
1429 sdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1430
Johannes Berg05c914f2008-09-11 00:01:58 +02001431 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
1432 sdata->vif.type != NL80211_IFTYPE_AP)
Johannes Berg4fd69312007-12-19 02:03:35 +01001433 return -EINVAL;
1434 } else
1435 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1436
Joe Perchesb203ca32012-05-08 18:56:52 +00001437 if (ether_addr_equal(mac, sdata->vif.addr))
Johannes Berg03e44972008-02-27 09:56:40 +01001438 return -EINVAL;
1439
1440 if (is_multicast_ether_addr(mac))
1441 return -EINVAL;
1442
1443 sta = sta_info_alloc(sdata, mac, GFP_KERNEL);
Johannes Berg73651ee2008-02-25 16:27:47 +01001444 if (!sta)
1445 return -ENOMEM;
Johannes Berg4fd69312007-12-19 02:03:35 +01001446
Johannes Bergd582cff2012-10-26 17:53:44 +02001447 /*
1448 * defaults -- if userspace wants something else we'll
1449 * change it accordingly in sta_apply_parameters()
1450 */
Johannes Berg77ee7c82013-02-15 00:48:33 +01001451 if (!(params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER))) {
1452 sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
1453 sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC);
1454 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001455
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001456 err = sta_apply_parameters(local, sta, params);
1457 if (err) {
1458 sta_info_free(local, sta);
1459 return err;
1460 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001461
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001462 /*
Johannes Berg77ee7c82013-02-15 00:48:33 +01001463 * for TDLS, rate control should be initialized only when
1464 * rates are known and station is marked authorized
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001465 */
1466 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER))
1467 rate_control_rate_init(sta);
Johannes Berg4fd69312007-12-19 02:03:35 +01001468
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001469 layer2_update = sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1470 sdata->vif.type == NL80211_IFTYPE_AP;
1471
Johannes Berg34e89502010-02-03 13:59:58 +01001472 err = sta_info_insert_rcu(sta);
Johannes Berg73651ee2008-02-25 16:27:47 +01001473 if (err) {
Johannes Berg73651ee2008-02-25 16:27:47 +01001474 rcu_read_unlock();
1475 return err;
1476 }
1477
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001478 if (layer2_update)
Johannes Berg73651ee2008-02-25 16:27:47 +01001479 ieee80211_send_layer2_update(sta);
1480
1481 rcu_read_unlock();
1482
Johannes Berg4fd69312007-12-19 02:03:35 +01001483 return 0;
1484}
1485
1486static int ieee80211_del_station(struct wiphy *wiphy, struct net_device *dev,
1487 u8 *mac)
1488{
Johannes Berg14db74b2008-07-29 13:22:52 +02001489 struct ieee80211_sub_if_data *sdata;
Johannes Berg4fd69312007-12-19 02:03:35 +01001490
Johannes Berg14db74b2008-07-29 13:22:52 +02001491 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1492
Johannes Berg34e89502010-02-03 13:59:58 +01001493 if (mac)
1494 return sta_info_destroy_addr_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001495
Johannes Bergb998e8b2012-12-13 23:07:46 +01001496 sta_info_flush(sdata);
Johannes Berg4fd69312007-12-19 02:03:35 +01001497 return 0;
1498}
1499
1500static int ieee80211_change_station(struct wiphy *wiphy,
Johannes Berg77ee7c82013-02-15 00:48:33 +01001501 struct net_device *dev, u8 *mac,
Johannes Berg4fd69312007-12-19 02:03:35 +01001502 struct station_parameters *params)
1503{
Johannes Bergabe60632009-11-25 17:46:18 +01001504 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg14db74b2008-07-29 13:22:52 +02001505 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +01001506 struct sta_info *sta;
1507 struct ieee80211_sub_if_data *vlansdata;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001508 enum cfg80211_station_type statype;
Eliad Peller35b88622011-12-29 14:41:39 +02001509 int err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001510
Johannes Berg87be1e12011-12-14 12:20:29 +01001511 mutex_lock(&local->sta_mtx);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001512
Felix Fietkau0e5ded52010-01-08 18:10:58 +01001513 sta = sta_info_get_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001514 if (!sta) {
Johannes Berg77ee7c82013-02-15 00:48:33 +01001515 err = -ENOENT;
1516 goto out_err;
Johannes Berg98dd6a52008-04-10 15:36:09 +02001517 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001518
Johannes Berg77ee7c82013-02-15 00:48:33 +01001519 switch (sdata->vif.type) {
1520 case NL80211_IFTYPE_MESH_POINT:
Thomas Pedersena6dad6a2013-03-04 13:06:12 -08001521 if (sdata->u.mesh.user_mpm)
Thomas Pederseneef941e2013-03-04 13:06:11 -08001522 statype = CFG80211_STA_MESH_PEER_USER;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001523 else
Thomas Pederseneef941e2013-03-04 13:06:11 -08001524 statype = CFG80211_STA_MESH_PEER_KERNEL;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001525 break;
1526 case NL80211_IFTYPE_ADHOC:
1527 statype = CFG80211_STA_IBSS;
1528 break;
1529 case NL80211_IFTYPE_STATION:
1530 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1531 statype = CFG80211_STA_AP_STA;
1532 break;
1533 }
1534 if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
1535 statype = CFG80211_STA_TDLS_PEER_ACTIVE;
1536 else
1537 statype = CFG80211_STA_TDLS_PEER_SETUP;
1538 break;
1539 case NL80211_IFTYPE_AP:
1540 case NL80211_IFTYPE_AP_VLAN:
1541 statype = CFG80211_STA_AP_CLIENT;
1542 break;
1543 default:
1544 err = -EOPNOTSUPP;
1545 goto out_err;
Johannes Bergbdd90d52011-12-14 12:20:27 +01001546 }
1547
Johannes Berg77ee7c82013-02-15 00:48:33 +01001548 err = cfg80211_check_station_change(wiphy, params, statype);
1549 if (err)
1550 goto out_err;
1551
Johannes Bergd0709a62008-02-25 16:27:46 +01001552 if (params->vlan && params->vlan != sta->sdata->dev) {
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001553 bool prev_4addr = false;
1554 bool new_4addr = false;
1555
Johannes Berg4fd69312007-12-19 02:03:35 +01001556 vlansdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1557
Johannes Berg9bc383d2009-11-19 11:55:19 +01001558 if (params->vlan->ieee80211_ptr->use_4addr) {
Johannes Berg33054432009-11-20 10:09:14 +01001559 if (vlansdata->u.vlan.sta) {
Johannes Berg77ee7c82013-02-15 00:48:33 +01001560 err = -EBUSY;
1561 goto out_err;
Johannes Berg33054432009-11-20 10:09:14 +01001562 }
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001563
Eric Dumazetcf778b02012-01-12 04:41:32 +00001564 rcu_assign_pointer(vlansdata->u.vlan.sta, sta);
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001565 new_4addr = true;
1566 }
1567
1568 if (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1569 sta->sdata->u.vlan.sta) {
1570 rcu_assign_pointer(sta->sdata->u.vlan.sta, NULL);
1571 prev_4addr = true;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001572 }
1573
Johannes Berg14db74b2008-07-29 13:22:52 +02001574 sta->sdata = vlansdata;
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001575
1576 if (sta->sta_state == IEEE80211_STA_AUTHORIZED &&
1577 prev_4addr != new_4addr) {
1578 if (new_4addr)
1579 atomic_dec(&sta->sdata->bss->num_mcast_sta);
1580 else
1581 atomic_inc(&sta->sdata->bss->num_mcast_sta);
1582 }
1583
Johannes Berg4fd69312007-12-19 02:03:35 +01001584 ieee80211_send_layer2_update(sta);
1585 }
1586
Eliad Peller35b88622011-12-29 14:41:39 +02001587 err = sta_apply_parameters(local, sta, params);
Johannes Berg77ee7c82013-02-15 00:48:33 +01001588 if (err)
1589 goto out_err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001590
Johannes Berg77ee7c82013-02-15 00:48:33 +01001591 /* When peer becomes authorized, init rate control as well */
1592 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER) &&
1593 test_sta_flag(sta, WLAN_STA_AUTHORIZED))
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001594 rate_control_rate_init(sta);
1595
Johannes Berg87be1e12011-12-14 12:20:29 +01001596 mutex_unlock(&local->sta_mtx);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001597
Emmanuel Grumbach687da132013-10-01 16:45:43 +03001598 if ((sdata->vif.type == NL80211_IFTYPE_AP ||
1599 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
1600 sta->known_smps_mode != sta->sdata->bss->req_smps &&
1601 test_sta_flag(sta, WLAN_STA_AUTHORIZED) &&
1602 sta_info_tx_streams(sta) != 1) {
1603 ht_dbg(sta->sdata,
1604 "%pM just authorized and MIMO capable - update SMPS\n",
1605 sta->sta.addr);
1606 ieee80211_send_smps_action(sta->sdata,
1607 sta->sdata->bss->req_smps,
1608 sta->sta.addr,
1609 sta->sdata->vif.bss_conf.bssid);
1610 }
1611
Jason Young808118c2011-03-10 16:43:19 -08001612 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
Eliad Pellerab095872012-07-27 12:33:22 +03001613 params->sta_flags_mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
Jason Young808118c2011-03-10 16:43:19 -08001614 ieee80211_recalc_ps(local, -1);
Eliad Pellerab095872012-07-27 12:33:22 +03001615 ieee80211_recalc_ps_vif(sdata);
1616 }
Johannes Berg77ee7c82013-02-15 00:48:33 +01001617
Johannes Berg4fd69312007-12-19 02:03:35 +01001618 return 0;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001619out_err:
1620 mutex_unlock(&local->sta_mtx);
1621 return err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001622}
1623
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001624#ifdef CONFIG_MAC80211_MESH
1625static int ieee80211_add_mpath(struct wiphy *wiphy, struct net_device *dev,
1626 u8 *dst, u8 *next_hop)
1627{
Johannes Berg14db74b2008-07-29 13:22:52 +02001628 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001629 struct mesh_path *mpath;
1630 struct sta_info *sta;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001631
Johannes Berg14db74b2008-07-29 13:22:52 +02001632 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1633
Johannes Bergd0709a62008-02-25 16:27:46 +01001634 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +01001635 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +01001636 if (!sta) {
1637 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001638 return -ENOENT;
Johannes Bergd0709a62008-02-25 16:27:46 +01001639 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001640
Bob Copelandae76eef2013-03-29 09:38:39 -04001641 mpath = mesh_path_add(sdata, dst);
1642 if (IS_ERR(mpath)) {
Johannes Bergd0709a62008-02-25 16:27:46 +01001643 rcu_read_unlock();
Bob Copelandae76eef2013-03-29 09:38:39 -04001644 return PTR_ERR(mpath);
Johannes Bergd0709a62008-02-25 16:27:46 +01001645 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001646
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001647 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +01001648
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001649 rcu_read_unlock();
1650 return 0;
1651}
1652
1653static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev,
Johannes Bergbf7cd942013-02-15 14:40:31 +01001654 u8 *dst)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001655{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001656 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001657
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001658 if (dst)
Johannes Bergbf7cd942013-02-15 14:40:31 +01001659 return mesh_path_del(sdata, dst);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001660
Javier Cardonaece1a2e2011-08-29 13:23:04 -07001661 mesh_path_flush_by_iface(sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001662 return 0;
1663}
1664
1665static int ieee80211_change_mpath(struct wiphy *wiphy,
1666 struct net_device *dev,
1667 u8 *dst, u8 *next_hop)
1668{
Johannes Berg14db74b2008-07-29 13:22:52 +02001669 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001670 struct mesh_path *mpath;
1671 struct sta_info *sta;
1672
Johannes Berg14db74b2008-07-29 13:22:52 +02001673 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1674
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001675 rcu_read_lock();
Johannes Bergd0709a62008-02-25 16:27:46 +01001676
Johannes Bergabe60632009-11-25 17:46:18 +01001677 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +01001678 if (!sta) {
1679 rcu_read_unlock();
1680 return -ENOENT;
1681 }
1682
Johannes Bergbf7cd942013-02-15 14:40:31 +01001683 mpath = mesh_path_lookup(sdata, dst);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001684 if (!mpath) {
1685 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001686 return -ENOENT;
1687 }
1688
1689 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +01001690
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001691 rcu_read_unlock();
1692 return 0;
1693}
1694
1695static void mpath_set_pinfo(struct mesh_path *mpath, u8 *next_hop,
1696 struct mpath_info *pinfo)
1697{
Johannes Berga3836e02011-05-12 15:11:37 +02001698 struct sta_info *next_hop_sta = rcu_dereference(mpath->next_hop);
1699
1700 if (next_hop_sta)
1701 memcpy(next_hop, next_hop_sta->sta.addr, ETH_ALEN);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001702 else
1703 memset(next_hop, 0, ETH_ALEN);
1704
LEO Airwarosu Yoichi Shinoda7ce8c7a2012-08-27 22:28:16 +09001705 memset(pinfo, 0, sizeof(*pinfo));
1706
Johannes Bergf5ea9122009-08-07 16:17:38 +02001707 pinfo->generation = mesh_paths_generation;
1708
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001709 pinfo->filled = MPATH_INFO_FRAME_QLEN |
Rui Paulod19b3bf2009-11-09 23:46:55 +00001710 MPATH_INFO_SN |
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001711 MPATH_INFO_METRIC |
1712 MPATH_INFO_EXPTIME |
1713 MPATH_INFO_DISCOVERY_TIMEOUT |
1714 MPATH_INFO_DISCOVERY_RETRIES |
1715 MPATH_INFO_FLAGS;
1716
1717 pinfo->frame_qlen = mpath->frame_queue.qlen;
Rui Paulod19b3bf2009-11-09 23:46:55 +00001718 pinfo->sn = mpath->sn;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001719 pinfo->metric = mpath->metric;
1720 if (time_before(jiffies, mpath->exp_time))
1721 pinfo->exptime = jiffies_to_msecs(mpath->exp_time - jiffies);
1722 pinfo->discovery_timeout =
1723 jiffies_to_msecs(mpath->discovery_timeout);
1724 pinfo->discovery_retries = mpath->discovery_retries;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001725 if (mpath->flags & MESH_PATH_ACTIVE)
1726 pinfo->flags |= NL80211_MPATH_FLAG_ACTIVE;
1727 if (mpath->flags & MESH_PATH_RESOLVING)
1728 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
Rui Paulod19b3bf2009-11-09 23:46:55 +00001729 if (mpath->flags & MESH_PATH_SN_VALID)
1730 pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001731 if (mpath->flags & MESH_PATH_FIXED)
1732 pinfo->flags |= NL80211_MPATH_FLAG_FIXED;
LEO Airwarosu Yoichi Shinoda7ce8c7a2012-08-27 22:28:16 +09001733 if (mpath->flags & MESH_PATH_RESOLVED)
1734 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVED;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001735}
1736
1737static int ieee80211_get_mpath(struct wiphy *wiphy, struct net_device *dev,
1738 u8 *dst, u8 *next_hop, struct mpath_info *pinfo)
1739
1740{
Johannes Berg14db74b2008-07-29 13:22:52 +02001741 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001742 struct mesh_path *mpath;
1743
Johannes Berg14db74b2008-07-29 13:22:52 +02001744 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1745
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001746 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01001747 mpath = mesh_path_lookup(sdata, dst);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001748 if (!mpath) {
1749 rcu_read_unlock();
1750 return -ENOENT;
1751 }
1752 memcpy(dst, mpath->dst, ETH_ALEN);
1753 mpath_set_pinfo(mpath, next_hop, pinfo);
1754 rcu_read_unlock();
1755 return 0;
1756}
1757
1758static int ieee80211_dump_mpath(struct wiphy *wiphy, struct net_device *dev,
1759 int idx, u8 *dst, u8 *next_hop,
1760 struct mpath_info *pinfo)
1761{
Johannes Berg14db74b2008-07-29 13:22:52 +02001762 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001763 struct mesh_path *mpath;
1764
Johannes Berg14db74b2008-07-29 13:22:52 +02001765 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1766
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001767 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01001768 mpath = mesh_path_lookup_by_idx(sdata, idx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001769 if (!mpath) {
1770 rcu_read_unlock();
1771 return -ENOENT;
1772 }
1773 memcpy(dst, mpath->dst, ETH_ALEN);
1774 mpath_set_pinfo(mpath, next_hop, pinfo);
1775 rcu_read_unlock();
1776 return 0;
1777}
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001778
Javier Cardona24bdd9f2010-12-16 17:37:48 -08001779static int ieee80211_get_mesh_config(struct wiphy *wiphy,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001780 struct net_device *dev,
1781 struct mesh_config *conf)
1782{
1783 struct ieee80211_sub_if_data *sdata;
1784 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1785
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001786 memcpy(conf, &(sdata->u.mesh.mshcfg), sizeof(struct mesh_config));
1787 return 0;
1788}
1789
1790static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm, u32 mask)
1791{
1792 return (mask >> (parm-1)) & 0x1;
1793}
1794
Javier Cardonac80d5452010-12-16 17:37:49 -08001795static int copy_mesh_setup(struct ieee80211_if_mesh *ifmsh,
1796 const struct mesh_setup *setup)
1797{
1798 u8 *new_ie;
1799 const u8 *old_ie;
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001800 struct ieee80211_sub_if_data *sdata = container_of(ifmsh,
1801 struct ieee80211_sub_if_data, u.mesh);
Javier Cardonac80d5452010-12-16 17:37:49 -08001802
Javier Cardona581a8b02011-04-07 15:08:27 -07001803 /* allocate information elements */
Javier Cardonac80d5452010-12-16 17:37:49 -08001804 new_ie = NULL;
Javier Cardona581a8b02011-04-07 15:08:27 -07001805 old_ie = ifmsh->ie;
Javier Cardonac80d5452010-12-16 17:37:49 -08001806
Javier Cardona581a8b02011-04-07 15:08:27 -07001807 if (setup->ie_len) {
1808 new_ie = kmemdup(setup->ie, setup->ie_len,
Javier Cardonac80d5452010-12-16 17:37:49 -08001809 GFP_KERNEL);
1810 if (!new_ie)
1811 return -ENOMEM;
1812 }
Javier Cardona581a8b02011-04-07 15:08:27 -07001813 ifmsh->ie_len = setup->ie_len;
1814 ifmsh->ie = new_ie;
1815 kfree(old_ie);
Javier Cardonac80d5452010-12-16 17:37:49 -08001816
1817 /* now copy the rest of the setup parameters */
1818 ifmsh->mesh_id_len = setup->mesh_id_len;
1819 memcpy(ifmsh->mesh_id, setup->mesh_id, ifmsh->mesh_id_len);
Javier Cardonad299a1f2012-03-31 11:31:33 -07001820 ifmsh->mesh_sp_id = setup->sync_method;
Javier Cardonac80d5452010-12-16 17:37:49 -08001821 ifmsh->mesh_pp_id = setup->path_sel_proto;
1822 ifmsh->mesh_pm_id = setup->path_metric;
Thomas Pedersena6dad6a2013-03-04 13:06:12 -08001823 ifmsh->user_mpm = setup->user_mpm;
Colleen Twitty0d4261a2013-05-08 11:46:00 -07001824 ifmsh->mesh_auth_id = setup->auth_id;
Javier Cardonab130e5c2011-05-03 16:57:07 -07001825 ifmsh->security = IEEE80211_MESH_SEC_NONE;
1826 if (setup->is_authenticated)
1827 ifmsh->security |= IEEE80211_MESH_SEC_AUTHED;
1828 if (setup->is_secure)
1829 ifmsh->security |= IEEE80211_MESH_SEC_SECURED;
Javier Cardonac80d5452010-12-16 17:37:49 -08001830
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001831 /* mcast rate setting in Mesh Node */
1832 memcpy(sdata->vif.bss_conf.mcast_rate, setup->mcast_rate,
1833 sizeof(setup->mcast_rate));
Ashok Nagarajanffb3cf32013-06-03 10:33:36 -07001834 sdata->vif.bss_conf.basic_rates = setup->basic_rates;
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001835
Marco Porsch9bdbf042013-01-07 16:04:51 +01001836 sdata->vif.bss_conf.beacon_int = setup->beacon_interval;
1837 sdata->vif.bss_conf.dtim_period = setup->dtim_period;
1838
Javier Cardonac80d5452010-12-16 17:37:49 -08001839 return 0;
1840}
1841
Javier Cardona24bdd9f2010-12-16 17:37:48 -08001842static int ieee80211_update_mesh_config(struct wiphy *wiphy,
Johannes Berg29cbe682010-12-03 09:20:44 +01001843 struct net_device *dev, u32 mask,
1844 const struct mesh_config *nconf)
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001845{
1846 struct mesh_config *conf;
1847 struct ieee80211_sub_if_data *sdata;
Rui Paulo63c57232009-11-09 23:46:57 +00001848 struct ieee80211_if_mesh *ifmsh;
1849
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001850 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Rui Paulo63c57232009-11-09 23:46:57 +00001851 ifmsh = &sdata->u.mesh;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001852
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001853 /* Set the config options which we are interested in setting */
1854 conf = &(sdata->u.mesh.mshcfg);
1855 if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT, mask))
1856 conf->dot11MeshRetryTimeout = nconf->dot11MeshRetryTimeout;
1857 if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT, mask))
1858 conf->dot11MeshConfirmTimeout = nconf->dot11MeshConfirmTimeout;
1859 if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT, mask))
1860 conf->dot11MeshHoldingTimeout = nconf->dot11MeshHoldingTimeout;
1861 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS, mask))
1862 conf->dot11MeshMaxPeerLinks = nconf->dot11MeshMaxPeerLinks;
1863 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES, mask))
1864 conf->dot11MeshMaxRetries = nconf->dot11MeshMaxRetries;
1865 if (_chg_mesh_attr(NL80211_MESHCONF_TTL, mask))
1866 conf->dot11MeshTTL = nconf->dot11MeshTTL;
Javier Cardona45904f22010-12-03 09:20:40 +01001867 if (_chg_mesh_attr(NL80211_MESHCONF_ELEMENT_TTL, mask))
Chun-Yeow Yeoh58886a92012-06-15 00:23:53 +08001868 conf->element_ttl = nconf->element_ttl;
Thomas Pedersen146bb482013-03-04 13:06:14 -08001869 if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS, mask)) {
1870 if (ifmsh->user_mpm)
1871 return -EBUSY;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001872 conf->auto_open_plinks = nconf->auto_open_plinks;
Thomas Pedersen146bb482013-03-04 13:06:14 -08001873 }
Javier Cardonad299a1f2012-03-31 11:31:33 -07001874 if (_chg_mesh_attr(NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR, mask))
1875 conf->dot11MeshNbrOffsetMaxNeighbor =
1876 nconf->dot11MeshNbrOffsetMaxNeighbor;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001877 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, mask))
1878 conf->dot11MeshHWMPmaxPREQretries =
1879 nconf->dot11MeshHWMPmaxPREQretries;
1880 if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME, mask))
1881 conf->path_refresh_time = nconf->path_refresh_time;
1882 if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, mask))
1883 conf->min_discovery_timeout = nconf->min_discovery_timeout;
1884 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, mask))
1885 conf->dot11MeshHWMPactivePathTimeout =
1886 nconf->dot11MeshHWMPactivePathTimeout;
1887 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, mask))
1888 conf->dot11MeshHWMPpreqMinInterval =
1889 nconf->dot11MeshHWMPpreqMinInterval;
Thomas Pedersendca7e942011-11-24 17:15:24 -08001890 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL, mask))
1891 conf->dot11MeshHWMPperrMinInterval =
1892 nconf->dot11MeshHWMPperrMinInterval;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001893 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
1894 mask))
1895 conf->dot11MeshHWMPnetDiameterTraversalTime =
1896 nconf->dot11MeshHWMPnetDiameterTraversalTime;
Rui Paulo63c57232009-11-09 23:46:57 +00001897 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask)) {
1898 conf->dot11MeshHWMPRootMode = nconf->dot11MeshHWMPRootMode;
1899 ieee80211_mesh_root_setup(ifmsh);
1900 }
Javier Cardona16dd7262011-08-09 16:45:11 -07001901 if (_chg_mesh_attr(NL80211_MESHCONF_GATE_ANNOUNCEMENTS, mask)) {
Thomas Pedersenc61336612011-08-25 10:36:14 -07001902 /* our current gate announcement implementation rides on root
1903 * announcements, so require this ifmsh to also be a root node
1904 * */
1905 if (nconf->dot11MeshGateAnnouncementProtocol &&
Chun-Yeow Yeohdbb912c2012-06-14 02:06:09 +08001906 !(conf->dot11MeshHWMPRootMode > IEEE80211_ROOTMODE_ROOT)) {
1907 conf->dot11MeshHWMPRootMode = IEEE80211_PROACTIVE_RANN;
Thomas Pedersenc61336612011-08-25 10:36:14 -07001908 ieee80211_mesh_root_setup(ifmsh);
1909 }
Javier Cardona16dd7262011-08-09 16:45:11 -07001910 conf->dot11MeshGateAnnouncementProtocol =
1911 nconf->dot11MeshGateAnnouncementProtocol;
1912 }
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08001913 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_RANN_INTERVAL, mask))
Javier Cardona0507e152011-08-09 16:45:10 -07001914 conf->dot11MeshHWMPRannInterval =
1915 nconf->dot11MeshHWMPRannInterval;
Chun-Yeow Yeoh94f90652012-01-21 01:02:16 +08001916 if (_chg_mesh_attr(NL80211_MESHCONF_FORWARDING, mask))
1917 conf->dot11MeshForwarding = nconf->dot11MeshForwarding;
Ashok Nagarajan55335132012-02-28 17:04:08 -08001918 if (_chg_mesh_attr(NL80211_MESHCONF_RSSI_THRESHOLD, mask)) {
1919 /* our RSSI threshold implementation is supported only for
1920 * devices that report signal in dBm.
1921 */
1922 if (!(sdata->local->hw.flags & IEEE80211_HW_SIGNAL_DBM))
1923 return -ENOTSUPP;
1924 conf->rssi_threshold = nconf->rssi_threshold;
1925 }
Ashok Nagarajan70c33ea2012-04-30 14:20:32 -07001926 if (_chg_mesh_attr(NL80211_MESHCONF_HT_OPMODE, mask)) {
1927 conf->ht_opmode = nconf->ht_opmode;
1928 sdata->vif.bss_conf.ht_operation_mode = nconf->ht_opmode;
1929 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_HT);
1930 }
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08001931 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT, mask))
1932 conf->dot11MeshHWMPactivePathToRootTimeout =
1933 nconf->dot11MeshHWMPactivePathToRootTimeout;
1934 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOT_INTERVAL, mask))
1935 conf->dot11MeshHWMProotInterval =
1936 nconf->dot11MeshHWMProotInterval;
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08001937 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL, mask))
1938 conf->dot11MeshHWMPconfirmationInterval =
1939 nconf->dot11MeshHWMPconfirmationInterval;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001940 if (_chg_mesh_attr(NL80211_MESHCONF_POWER_MODE, mask)) {
1941 conf->power_mode = nconf->power_mode;
1942 ieee80211_mps_local_status_update(sdata);
1943 }
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001944 if (_chg_mesh_attr(NL80211_MESHCONF_AWAKE_WINDOW, mask))
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001945 conf->dot11MeshAwakeWindowDuration =
1946 nconf->dot11MeshAwakeWindowDuration;
Colleen Twitty66de6712013-06-03 09:53:40 -07001947 if (_chg_mesh_attr(NL80211_MESHCONF_PLINK_TIMEOUT, mask))
1948 conf->plink_timeout = nconf->plink_timeout;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001949 ieee80211_mbss_info_change_notify(sdata, BSS_CHANGED_BEACON);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001950 return 0;
1951}
1952
Johannes Berg29cbe682010-12-03 09:20:44 +01001953static int ieee80211_join_mesh(struct wiphy *wiphy, struct net_device *dev,
1954 const struct mesh_config *conf,
1955 const struct mesh_setup *setup)
1956{
1957 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1958 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Javier Cardonac80d5452010-12-16 17:37:49 -08001959 int err;
Johannes Berg29cbe682010-12-03 09:20:44 +01001960
Javier Cardonac80d5452010-12-16 17:37:49 -08001961 memcpy(&ifmsh->mshcfg, conf, sizeof(struct mesh_config));
1962 err = copy_mesh_setup(ifmsh, setup);
1963 if (err)
1964 return err;
Johannes Bergcc1d2802012-05-16 23:50:20 +02001965
Johannes Berg04ecd252012-09-11 14:34:12 +02001966 /* can mesh use other SMPS modes? */
1967 sdata->smps_mode = IEEE80211_SMPS_OFF;
1968 sdata->needed_rx_chains = sdata->local->rx_chains;
1969
Johannes Berg34a37402013-12-18 09:43:33 +01001970 mutex_lock(&sdata->local->mtx);
Johannes Berg4bf88532012-11-09 11:39:59 +01001971 err = ieee80211_vif_use_channel(sdata, &setup->chandef,
Johannes Berg55de9082012-07-26 17:24:39 +02001972 IEEE80211_CHANCTX_SHARED);
Johannes Berg34a37402013-12-18 09:43:33 +01001973 mutex_unlock(&sdata->local->mtx);
Johannes Bergcc1d2802012-05-16 23:50:20 +02001974 if (err)
1975 return err;
1976
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001977 return ieee80211_start_mesh(sdata);
Johannes Berg29cbe682010-12-03 09:20:44 +01001978}
1979
1980static int ieee80211_leave_mesh(struct wiphy *wiphy, struct net_device *dev)
1981{
1982 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1983
1984 ieee80211_stop_mesh(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +01001985 mutex_lock(&sdata->local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001986 ieee80211_vif_release_channel(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +01001987 mutex_unlock(&sdata->local->mtx);
Johannes Berg29cbe682010-12-03 09:20:44 +01001988
1989 return 0;
1990}
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001991#endif
1992
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001993static int ieee80211_change_bss(struct wiphy *wiphy,
1994 struct net_device *dev,
1995 struct bss_parameters *params)
1996{
Johannes Berg55de9082012-07-26 17:24:39 +02001997 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1998 enum ieee80211_band band;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001999 u32 changed = 0;
2000
Simon Wunderlich7ca133b2013-11-21 18:19:50 +01002001 if (!sdata_dereference(sdata->u.ap.beacon, sdata))
Johannes Berg55de9082012-07-26 17:24:39 +02002002 return -ENOENT;
2003
2004 band = ieee80211_get_sdata_band(sdata);
Jouni Malinen9f1ba902008-08-07 20:07:01 +03002005
Jouni Malinen9f1ba902008-08-07 20:07:01 +03002006 if (params->use_cts_prot >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02002007 sdata->vif.bss_conf.use_cts_prot = params->use_cts_prot;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03002008 changed |= BSS_CHANGED_ERP_CTS_PROT;
2009 }
2010 if (params->use_short_preamble >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02002011 sdata->vif.bss_conf.use_short_preamble =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03002012 params->use_short_preamble;
2013 changed |= BSS_CHANGED_ERP_PREAMBLE;
2014 }
Felix Fietkau43d35342010-01-15 03:00:48 +01002015
2016 if (!sdata->vif.bss_conf.use_short_slot &&
Johannes Berg55de9082012-07-26 17:24:39 +02002017 band == IEEE80211_BAND_5GHZ) {
Felix Fietkau43d35342010-01-15 03:00:48 +01002018 sdata->vif.bss_conf.use_short_slot = true;
2019 changed |= BSS_CHANGED_ERP_SLOT;
2020 }
2021
Jouni Malinen9f1ba902008-08-07 20:07:01 +03002022 if (params->use_short_slot_time >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02002023 sdata->vif.bss_conf.use_short_slot =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03002024 params->use_short_slot_time;
2025 changed |= BSS_CHANGED_ERP_SLOT;
2026 }
2027
Jouni Malinen90c97a02008-10-30 16:59:22 +02002028 if (params->basic_rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002029 ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef,
2030 wiphy->bands[band],
2031 params->basic_rates,
2032 params->basic_rates_len,
2033 &sdata->vif.bss_conf.basic_rates);
Jouni Malinen90c97a02008-10-30 16:59:22 +02002034 changed |= BSS_CHANGED_BASIC_RATES;
2035 }
2036
Felix Fietkau7b7b5e52010-04-27 01:23:36 +02002037 if (params->ap_isolate >= 0) {
2038 if (params->ap_isolate)
2039 sdata->flags |= IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
2040 else
2041 sdata->flags &= ~IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
2042 }
2043
Helmut Schaa80d7e402010-11-19 12:40:26 +01002044 if (params->ht_opmode >= 0) {
2045 sdata->vif.bss_conf.ht_operation_mode =
2046 (u16) params->ht_opmode;
2047 changed |= BSS_CHANGED_HT;
2048 }
2049
Johannes Berg339afbf2012-11-14 15:21:17 +01002050 if (params->p2p_ctwindow >= 0) {
Janusz Dziedzic67baf662013-03-21 15:47:56 +01002051 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &=
2052 ~IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
2053 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
2054 params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
Johannes Berg339afbf2012-11-14 15:21:17 +01002055 changed |= BSS_CHANGED_P2P_PS;
2056 }
2057
Janusz Dziedzic67baf662013-03-21 15:47:56 +01002058 if (params->p2p_opp_ps > 0) {
2059 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
2060 IEEE80211_P2P_OPPPS_ENABLE_BIT;
2061 changed |= BSS_CHANGED_P2P_PS;
2062 } else if (params->p2p_opp_ps == 0) {
2063 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &=
2064 ~IEEE80211_P2P_OPPPS_ENABLE_BIT;
Johannes Berg339afbf2012-11-14 15:21:17 +01002065 changed |= BSS_CHANGED_P2P_PS;
2066 }
2067
Jouni Malinen9f1ba902008-08-07 20:07:01 +03002068 ieee80211_bss_info_change_notify(sdata, changed);
2069
2070 return 0;
2071}
2072
Jouni Malinen31888482008-10-30 16:59:24 +02002073static int ieee80211_set_txq_params(struct wiphy *wiphy,
Eliad Pellerf70f01c2011-09-25 20:06:53 +03002074 struct net_device *dev,
Jouni Malinen31888482008-10-30 16:59:24 +02002075 struct ieee80211_txq_params *params)
2076{
2077 struct ieee80211_local *local = wiphy_priv(wiphy);
Eliad Pellerf6f3def2011-09-25 20:06:54 +03002078 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Jouni Malinen31888482008-10-30 16:59:24 +02002079 struct ieee80211_tx_queue_params p;
2080
2081 if (!local->ops->conf_tx)
2082 return -EOPNOTSUPP;
2083
Johannes Berg54bcbc62012-03-28 11:04:25 +02002084 if (local->hw.queues < IEEE80211_NUM_ACS)
2085 return -EOPNOTSUPP;
2086
Jouni Malinen31888482008-10-30 16:59:24 +02002087 memset(&p, 0, sizeof(p));
2088 p.aifs = params->aifs;
2089 p.cw_max = params->cwmax;
2090 p.cw_min = params->cwmin;
2091 p.txop = params->txop;
Kalle Valoab133152010-01-12 10:42:31 +02002092
2093 /*
2094 * Setting tx queue params disables u-apsd because it's only
2095 * called in master mode.
2096 */
2097 p.uapsd = false;
2098
Johannes Berga3304b02012-03-28 11:04:24 +02002099 sdata->tx_conf[params->ac] = p;
2100 if (drv_conf_tx(local, sdata, params->ac, &p)) {
Joe Perches0fb9a9e2010-08-20 16:25:38 -07002101 wiphy_debug(local->hw.wiphy,
Johannes Berga3304b02012-03-28 11:04:24 +02002102 "failed to set TX queue parameters for AC %d\n",
2103 params->ac);
Jouni Malinen31888482008-10-30 16:59:24 +02002104 return -EINVAL;
2105 }
2106
Johannes Berg7d257452012-07-06 17:37:43 +02002107 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_QOS);
2108
Jouni Malinen31888482008-10-30 16:59:24 +02002109 return 0;
2110}
2111
Bob Copeland665af4f2009-01-19 11:20:53 -05002112#ifdef CONFIG_PM
Johannes Bergff1b6e62011-05-04 15:37:28 +02002113static int ieee80211_suspend(struct wiphy *wiphy,
2114 struct cfg80211_wowlan *wowlan)
Bob Copeland665af4f2009-01-19 11:20:53 -05002115{
Johannes Bergeecc4802011-05-04 15:37:29 +02002116 return __ieee80211_suspend(wiphy_priv(wiphy), wowlan);
Bob Copeland665af4f2009-01-19 11:20:53 -05002117}
2118
2119static int ieee80211_resume(struct wiphy *wiphy)
2120{
2121 return __ieee80211_resume(wiphy_priv(wiphy));
2122}
2123#else
2124#define ieee80211_suspend NULL
2125#define ieee80211_resume NULL
2126#endif
2127
Johannes Berg2a519312009-02-10 21:25:55 +01002128static int ieee80211_scan(struct wiphy *wiphy,
Johannes Berg2a519312009-02-10 21:25:55 +01002129 struct cfg80211_scan_request *req)
2130{
Johannes Bergfd014282012-06-18 19:17:03 +02002131 struct ieee80211_sub_if_data *sdata;
2132
2133 sdata = IEEE80211_WDEV_TO_SUB_IF(req->wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01002134
Johannes Berg2ca27bc2010-09-16 14:58:23 +02002135 switch (ieee80211_vif_type_p2p(&sdata->vif)) {
2136 case NL80211_IFTYPE_STATION:
2137 case NL80211_IFTYPE_ADHOC:
2138 case NL80211_IFTYPE_MESH_POINT:
2139 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Bergf142c6b2012-06-18 20:07:15 +02002140 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg2ca27bc2010-09-16 14:58:23 +02002141 break;
2142 case NL80211_IFTYPE_P2P_GO:
2143 if (sdata->local->ops->hw_scan)
2144 break;
Johannes Berge9d77322011-02-01 15:35:36 +01002145 /*
2146 * FIXME: implement NoA while scanning in software,
2147 * for now fall through to allow scanning only when
2148 * beaconing hasn't been configured yet
2149 */
Johannes Berg2ca27bc2010-09-16 14:58:23 +02002150 case NL80211_IFTYPE_AP:
Antonio Quartulli5c95b942012-10-16 08:39:22 +02002151 /*
2152 * If the scan has been forced (and the driver supports
2153 * forcing), don't care about being beaconing already.
2154 * This will create problems to the attached stations (e.g. all
2155 * the frames sent while scanning on other channel will be
2156 * lost)
2157 */
2158 if (sdata->u.ap.beacon &&
2159 (!(wiphy->features & NL80211_FEATURE_AP_SCAN) ||
2160 !(req->flags & NL80211_SCAN_FLAG_AP)))
Johannes Berg2ca27bc2010-09-16 14:58:23 +02002161 return -EOPNOTSUPP;
2162 break;
2163 default:
2164 return -EOPNOTSUPP;
2165 }
Johannes Berg2a519312009-02-10 21:25:55 +01002166
2167 return ieee80211_request_scan(sdata, req);
2168}
2169
Luciano Coelho79f460c2011-05-11 17:09:36 +03002170static int
2171ieee80211_sched_scan_start(struct wiphy *wiphy,
2172 struct net_device *dev,
2173 struct cfg80211_sched_scan_request *req)
2174{
2175 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2176
2177 if (!sdata->local->ops->sched_scan_start)
2178 return -EOPNOTSUPP;
2179
2180 return ieee80211_request_sched_scan_start(sdata, req);
2181}
2182
2183static int
Luciano Coelho85a99942011-05-12 16:28:29 +03002184ieee80211_sched_scan_stop(struct wiphy *wiphy, struct net_device *dev)
Luciano Coelho79f460c2011-05-11 17:09:36 +03002185{
2186 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2187
2188 if (!sdata->local->ops->sched_scan_stop)
2189 return -EOPNOTSUPP;
2190
Luciano Coelho85a99942011-05-12 16:28:29 +03002191 return ieee80211_request_sched_scan_stop(sdata);
Luciano Coelho79f460c2011-05-11 17:09:36 +03002192}
2193
Jouni Malinen636a5d32009-03-19 13:39:22 +02002194static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev,
2195 struct cfg80211_auth_request *req)
2196{
Johannes Berg77fdaa12009-07-07 03:45:17 +02002197 return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002198}
2199
2200static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev,
2201 struct cfg80211_assoc_request *req)
2202{
Johannes Berg77fdaa12009-07-07 03:45:17 +02002203 return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002204}
2205
2206static int ieee80211_deauth(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002207 struct cfg80211_deauth_request *req)
Jouni Malinen636a5d32009-03-19 13:39:22 +02002208{
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002209 return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002210}
2211
2212static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002213 struct cfg80211_disassoc_request *req)
Jouni Malinen636a5d32009-03-19 13:39:22 +02002214{
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002215 return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002216}
2217
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002218static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
2219 struct cfg80211_ibss_params *params)
2220{
Johannes Berg55de9082012-07-26 17:24:39 +02002221 return ieee80211_ibss_join(IEEE80211_DEV_TO_SUB_IF(dev), params);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002222}
2223
2224static int ieee80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev)
2225{
Johannes Berg55de9082012-07-26 17:24:39 +02002226 return ieee80211_ibss_leave(IEEE80211_DEV_TO_SUB_IF(dev));
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002227}
2228
Antonio Quartulli391e53e2012-11-02 13:27:49 +01002229static int ieee80211_set_mcast_rate(struct wiphy *wiphy, struct net_device *dev,
2230 int rate[IEEE80211_NUM_BANDS])
2231{
2232 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2233
Cong Ding9887dbf2013-02-06 17:23:45 +01002234 memcpy(sdata->vif.bss_conf.mcast_rate, rate,
2235 sizeof(int) * IEEE80211_NUM_BANDS);
Antonio Quartulli391e53e2012-11-02 13:27:49 +01002236
2237 return 0;
2238}
2239
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002240static int ieee80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
2241{
2242 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg24487982009-04-23 18:52:52 +02002243 int err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002244
Arik Nemtsovf23a4782010-11-08 11:51:06 +02002245 if (changed & WIPHY_PARAM_FRAG_THRESHOLD) {
2246 err = drv_set_frag_threshold(local, wiphy->frag_threshold);
2247
2248 if (err)
2249 return err;
2250 }
2251
Lukáš Turek310bc672009-12-21 22:50:48 +01002252 if (changed & WIPHY_PARAM_COVERAGE_CLASS) {
2253 err = drv_set_coverage_class(local, wiphy->coverage_class);
2254
2255 if (err)
2256 return err;
2257 }
2258
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002259 if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
Johannes Berg24487982009-04-23 18:52:52 +02002260 err = drv_set_rts_threshold(local, wiphy->rts_threshold);
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002261
Johannes Berg24487982009-04-23 18:52:52 +02002262 if (err)
2263 return err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002264 }
2265
Johannes Berg8bc83c22012-11-09 18:38:32 +01002266 if (changed & WIPHY_PARAM_RETRY_SHORT) {
2267 if (wiphy->retry_short > IEEE80211_MAX_TX_RETRY)
2268 return -EINVAL;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002269 local->hw.conf.short_frame_max_tx_count = wiphy->retry_short;
Johannes Berg8bc83c22012-11-09 18:38:32 +01002270 }
2271 if (changed & WIPHY_PARAM_RETRY_LONG) {
2272 if (wiphy->retry_long > IEEE80211_MAX_TX_RETRY)
2273 return -EINVAL;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002274 local->hw.conf.long_frame_max_tx_count = wiphy->retry_long;
Johannes Berg8bc83c22012-11-09 18:38:32 +01002275 }
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002276 if (changed &
2277 (WIPHY_PARAM_RETRY_SHORT | WIPHY_PARAM_RETRY_LONG))
2278 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
2279
2280 return 0;
2281}
2282
Johannes Berg7643a2c2009-06-02 13:01:39 +02002283static int ieee80211_set_tx_power(struct wiphy *wiphy,
Johannes Bergc8442112012-10-24 10:17:18 +02002284 struct wireless_dev *wdev,
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002285 enum nl80211_tx_power_setting type, int mbm)
Johannes Berg7643a2c2009-06-02 13:01:39 +02002286{
2287 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002288 struct ieee80211_sub_if_data *sdata;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002289
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002290 if (wdev) {
2291 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2292
2293 switch (type) {
2294 case NL80211_TX_POWER_AUTOMATIC:
2295 sdata->user_power_level = IEEE80211_UNSET_POWER_LEVEL;
2296 break;
2297 case NL80211_TX_POWER_LIMITED:
2298 case NL80211_TX_POWER_FIXED:
2299 if (mbm < 0 || (mbm % 100))
2300 return -EOPNOTSUPP;
2301 sdata->user_power_level = MBM_TO_DBM(mbm);
2302 break;
2303 }
2304
2305 ieee80211_recalc_txpower(sdata);
2306
2307 return 0;
2308 }
Johannes Berg55de9082012-07-26 17:24:39 +02002309
Johannes Berg7643a2c2009-06-02 13:01:39 +02002310 switch (type) {
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002311 case NL80211_TX_POWER_AUTOMATIC:
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002312 local->user_power_level = IEEE80211_UNSET_POWER_LEVEL;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002313 break;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002314 case NL80211_TX_POWER_LIMITED:
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002315 case NL80211_TX_POWER_FIXED:
2316 if (mbm < 0 || (mbm % 100))
2317 return -EOPNOTSUPP;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002318 local->user_power_level = MBM_TO_DBM(mbm);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002319 break;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002320 }
2321
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002322 mutex_lock(&local->iflist_mtx);
2323 list_for_each_entry(sdata, &local->interfaces, list)
2324 sdata->user_power_level = local->user_power_level;
2325 list_for_each_entry(sdata, &local->interfaces, list)
2326 ieee80211_recalc_txpower(sdata);
2327 mutex_unlock(&local->iflist_mtx);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002328
2329 return 0;
2330}
2331
Johannes Bergc8442112012-10-24 10:17:18 +02002332static int ieee80211_get_tx_power(struct wiphy *wiphy,
2333 struct wireless_dev *wdev,
2334 int *dbm)
Johannes Berg7643a2c2009-06-02 13:01:39 +02002335{
2336 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002337 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002338
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002339 if (!local->use_chanctx)
2340 *dbm = local->hw.conf.power_level;
2341 else
2342 *dbm = sdata->vif.bss_conf.txpower;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002343
Johannes Berg7643a2c2009-06-02 13:01:39 +02002344 return 0;
2345}
2346
Johannes Bergab737a42009-07-01 21:26:58 +02002347static int ieee80211_set_wds_peer(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg388ac772010-10-07 13:11:09 +02002348 const u8 *addr)
Johannes Bergab737a42009-07-01 21:26:58 +02002349{
2350 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2351
2352 memcpy(&sdata->u.wds.remote_addr, addr, ETH_ALEN);
2353
2354 return 0;
2355}
2356
Johannes Berg1f87f7d2009-06-02 13:01:41 +02002357static void ieee80211_rfkill_poll(struct wiphy *wiphy)
2358{
2359 struct ieee80211_local *local = wiphy_priv(wiphy);
2360
2361 drv_rfkill_poll(local);
2362}
2363
Johannes Bergaff89a92009-07-01 21:26:51 +02002364#ifdef CONFIG_NL80211_TESTMODE
David Spinadelfc73f112013-07-31 18:04:15 +03002365static int ieee80211_testmode_cmd(struct wiphy *wiphy,
2366 struct wireless_dev *wdev,
2367 void *data, int len)
Johannes Bergaff89a92009-07-01 21:26:51 +02002368{
2369 struct ieee80211_local *local = wiphy_priv(wiphy);
David Spinadel52981cd2013-07-31 18:06:22 +03002370 struct ieee80211_vif *vif = NULL;
Johannes Bergaff89a92009-07-01 21:26:51 +02002371
2372 if (!local->ops->testmode_cmd)
2373 return -EOPNOTSUPP;
2374
David Spinadel52981cd2013-07-31 18:06:22 +03002375 if (wdev) {
2376 struct ieee80211_sub_if_data *sdata;
2377
2378 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2379 if (sdata->flags & IEEE80211_SDATA_IN_DRIVER)
2380 vif = &sdata->vif;
2381 }
2382
2383 return local->ops->testmode_cmd(&local->hw, vif, data, len);
Johannes Bergaff89a92009-07-01 21:26:51 +02002384}
Wey-Yi Guy71063f02011-05-20 09:05:54 -07002385
2386static int ieee80211_testmode_dump(struct wiphy *wiphy,
2387 struct sk_buff *skb,
2388 struct netlink_callback *cb,
2389 void *data, int len)
2390{
2391 struct ieee80211_local *local = wiphy_priv(wiphy);
2392
2393 if (!local->ops->testmode_dump)
2394 return -EOPNOTSUPP;
2395
2396 return local->ops->testmode_dump(&local->hw, skb, cb, data, len);
2397}
Johannes Bergaff89a92009-07-01 21:26:51 +02002398#endif
2399
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002400int __ieee80211_request_smps_ap(struct ieee80211_sub_if_data *sdata,
2401 enum ieee80211_smps_mode smps_mode)
2402{
2403 struct sta_info *sta;
2404 enum ieee80211_smps_mode old_req;
2405 int i;
2406
2407 if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_AP))
2408 return -EINVAL;
2409
2410 if (sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT)
2411 return 0;
2412
2413 old_req = sdata->u.ap.req_smps;
2414 sdata->u.ap.req_smps = smps_mode;
2415
2416 /* AUTOMATIC doesn't mean much for AP - don't allow it */
2417 if (old_req == smps_mode ||
2418 smps_mode == IEEE80211_SMPS_AUTOMATIC)
2419 return 0;
2420
2421 /* If no associated stations, there's no need to do anything */
2422 if (!atomic_read(&sdata->u.ap.num_mcast_sta)) {
2423 sdata->smps_mode = smps_mode;
2424 ieee80211_queue_work(&sdata->local->hw, &sdata->recalc_smps);
2425 return 0;
2426 }
2427
2428 ht_dbg(sdata,
2429 "SMSP %d requested in AP mode, sending Action frame to %d stations\n",
2430 smps_mode, atomic_read(&sdata->u.ap.num_mcast_sta));
2431
2432 mutex_lock(&sdata->local->sta_mtx);
2433 for (i = 0; i < STA_HASH_SIZE; i++) {
2434 for (sta = rcu_dereference_protected(sdata->local->sta_hash[i],
2435 lockdep_is_held(&sdata->local->sta_mtx));
2436 sta;
2437 sta = rcu_dereference_protected(sta->hnext,
2438 lockdep_is_held(&sdata->local->sta_mtx))) {
2439 /*
2440 * Only stations associated to our AP and
2441 * associated VLANs
2442 */
2443 if (sta->sdata->bss != &sdata->u.ap)
2444 continue;
2445
2446 /* This station doesn't support MIMO - skip it */
2447 if (sta_info_tx_streams(sta) == 1)
2448 continue;
2449
2450 /*
2451 * Don't wake up a STA just to send the action frame
2452 * unless we are getting more restrictive.
2453 */
2454 if (test_sta_flag(sta, WLAN_STA_PS_STA) &&
2455 !ieee80211_smps_is_restrictive(sta->known_smps_mode,
2456 smps_mode)) {
2457 ht_dbg(sdata,
2458 "Won't send SMPS to sleeping STA %pM\n",
2459 sta->sta.addr);
2460 continue;
2461 }
2462
2463 /*
2464 * If the STA is not authorized, wait until it gets
2465 * authorized and the action frame will be sent then.
2466 */
2467 if (!test_sta_flag(sta, WLAN_STA_AUTHORIZED))
2468 continue;
2469
2470 ht_dbg(sdata, "Sending SMPS to %pM\n", sta->sta.addr);
2471 ieee80211_send_smps_action(sdata, smps_mode,
2472 sta->sta.addr,
2473 sdata->vif.bss_conf.bssid);
2474 }
2475 }
2476 mutex_unlock(&sdata->local->sta_mtx);
2477
2478 sdata->smps_mode = smps_mode;
2479 ieee80211_queue_work(&sdata->local->hw, &sdata->recalc_smps);
2480
2481 return 0;
2482}
2483
2484int __ieee80211_request_smps_mgd(struct ieee80211_sub_if_data *sdata,
2485 enum ieee80211_smps_mode smps_mode)
Johannes Berg0f782312009-12-01 13:37:02 +01002486{
2487 const u8 *ap;
2488 enum ieee80211_smps_mode old_req;
2489 int err;
2490
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002491 lockdep_assert_held(&sdata->wdev.mtx);
Johannes Berg243e6df2011-04-19 20:44:04 +02002492
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002493 if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_STATION))
2494 return -EINVAL;
2495
Johannes Berg0f782312009-12-01 13:37:02 +01002496 old_req = sdata->u.mgd.req_smps;
2497 sdata->u.mgd.req_smps = smps_mode;
2498
2499 if (old_req == smps_mode &&
2500 smps_mode != IEEE80211_SMPS_AUTOMATIC)
2501 return 0;
2502
2503 /*
2504 * If not associated, or current association is not an HT
Johannes Berg04ecd252012-09-11 14:34:12 +02002505 * association, there's no need to do anything, just store
2506 * the new value until we associate.
Johannes Berg0f782312009-12-01 13:37:02 +01002507 */
2508 if (!sdata->u.mgd.associated ||
Johannes Berg4bf88532012-11-09 11:39:59 +01002509 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT)
Johannes Berg0f782312009-12-01 13:37:02 +01002510 return 0;
Johannes Berg0f782312009-12-01 13:37:02 +01002511
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002512 ap = sdata->u.mgd.associated->bssid;
Johannes Berg0f782312009-12-01 13:37:02 +01002513
2514 if (smps_mode == IEEE80211_SMPS_AUTOMATIC) {
2515 if (sdata->u.mgd.powersave)
2516 smps_mode = IEEE80211_SMPS_DYNAMIC;
2517 else
2518 smps_mode = IEEE80211_SMPS_OFF;
2519 }
2520
2521 /* send SM PS frame to AP */
2522 err = ieee80211_send_smps_action(sdata, smps_mode,
2523 ap, ap);
2524 if (err)
2525 sdata->u.mgd.req_smps = old_req;
2526
2527 return err;
2528}
2529
Johannes Bergbc92afd2009-07-01 21:26:57 +02002530static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev,
2531 bool enabled, int timeout)
2532{
2533 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2534 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Bergbc92afd2009-07-01 21:26:57 +02002535
Bob Copeland2d3db212013-10-29 18:11:59 -04002536 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Benoit Papillaulte5de30c2010-01-15 12:21:37 +01002537 return -EOPNOTSUPP;
2538
Johannes Bergbc92afd2009-07-01 21:26:57 +02002539 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
2540 return -EOPNOTSUPP;
2541
2542 if (enabled == sdata->u.mgd.powersave &&
Juuso Oikarinenff616382010-06-09 09:51:52 +03002543 timeout == local->dynamic_ps_forced_timeout)
Johannes Bergbc92afd2009-07-01 21:26:57 +02002544 return 0;
2545
2546 sdata->u.mgd.powersave = enabled;
Juuso Oikarinenff616382010-06-09 09:51:52 +03002547 local->dynamic_ps_forced_timeout = timeout;
Johannes Bergbc92afd2009-07-01 21:26:57 +02002548
Johannes Berg0f782312009-12-01 13:37:02 +01002549 /* no change, but if automatic follow powersave */
Johannes Berged405be2013-06-03 13:51:59 +02002550 sdata_lock(sdata);
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002551 __ieee80211_request_smps_mgd(sdata, sdata->u.mgd.req_smps);
Johannes Berged405be2013-06-03 13:51:59 +02002552 sdata_unlock(sdata);
Johannes Berg0f782312009-12-01 13:37:02 +01002553
Johannes Bergbc92afd2009-07-01 21:26:57 +02002554 if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
2555 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2556
2557 ieee80211_recalc_ps(local, -1);
Eliad Pellerab095872012-07-27 12:33:22 +03002558 ieee80211_recalc_ps_vif(sdata);
Johannes Bergbc92afd2009-07-01 21:26:57 +02002559
2560 return 0;
2561}
2562
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002563static int ieee80211_set_cqm_rssi_config(struct wiphy *wiphy,
2564 struct net_device *dev,
2565 s32 rssi_thold, u32 rssi_hyst)
2566{
2567 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002568 struct ieee80211_vif *vif = &sdata->vif;
2569 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
2570
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002571 if (rssi_thold == bss_conf->cqm_rssi_thold &&
2572 rssi_hyst == bss_conf->cqm_rssi_hyst)
2573 return 0;
2574
2575 bss_conf->cqm_rssi_thold = rssi_thold;
2576 bss_conf->cqm_rssi_hyst = rssi_hyst;
2577
2578 /* tell the driver upon association, unless already associated */
Johannes Bergea086352012-01-19 09:29:58 +01002579 if (sdata->u.mgd.associated &&
2580 sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002581 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_CQM);
2582
2583 return 0;
2584}
2585
Johannes Berg99303802009-07-01 21:26:59 +02002586static int ieee80211_set_bitrate_mask(struct wiphy *wiphy,
2587 struct net_device *dev,
2588 const u8 *addr,
2589 const struct cfg80211_bitrate_mask *mask)
2590{
2591 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2592 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +05302593 int i, ret;
Johannes Berg99303802009-07-01 21:26:59 +02002594
Eliad Peller554a43d2012-06-12 12:41:15 +03002595 if (!ieee80211_sdata_running(sdata))
2596 return -ENETDOWN;
2597
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +05302598 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL) {
2599 ret = drv_set_bitrate_mask(local, sdata, mask);
2600 if (ret)
2601 return ret;
2602 }
Johannes Berg99303802009-07-01 21:26:59 +02002603
Simon Wunderlich19468412012-01-28 17:25:33 +01002604 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
Felix Fietkau2ffbe6d2013-04-16 13:38:42 +02002605 struct ieee80211_supported_band *sband = wiphy->bands[i];
2606 int j;
2607
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002608 sdata->rc_rateidx_mask[i] = mask->control[i].legacy;
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01002609 memcpy(sdata->rc_rateidx_mcs_mask[i], mask->control[i].ht_mcs,
2610 sizeof(mask->control[i].ht_mcs));
Felix Fietkau2ffbe6d2013-04-16 13:38:42 +02002611
2612 sdata->rc_has_mcs_mask[i] = false;
2613 if (!sband)
2614 continue;
2615
2616 for (j = 0; j < IEEE80211_HT_MCS_MASK_LEN; j++)
2617 if (~sdata->rc_rateidx_mcs_mask[i][j]) {
2618 sdata->rc_has_mcs_mask[i] = true;
2619 break;
2620 }
Simon Wunderlich19468412012-01-28 17:25:33 +01002621 }
Johannes Berg99303802009-07-01 21:26:59 +02002622
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002623 return 0;
Johannes Berg99303802009-07-01 21:26:59 +02002624}
2625
Johannes Berg2eb278e2012-06-05 14:28:42 +02002626static int ieee80211_start_roc_work(struct ieee80211_local *local,
2627 struct ieee80211_sub_if_data *sdata,
2628 struct ieee80211_channel *channel,
Johannes Berg2eb278e2012-06-05 14:28:42 +02002629 unsigned int duration, u64 *cookie,
Ilan Peerd339d5c2013-02-12 09:34:13 +02002630 struct sk_buff *txskb,
2631 enum ieee80211_roc_type type)
Johannes Berg21f83582010-12-18 17:20:47 +01002632{
Johannes Berg2eb278e2012-06-05 14:28:42 +02002633 struct ieee80211_roc_work *roc, *tmp;
2634 bool queued = false;
Johannes Berg21f83582010-12-18 17:20:47 +01002635 int ret;
Johannes Berg21f83582010-12-18 17:20:47 +01002636
2637 lockdep_assert_held(&local->mtx);
2638
Johannes Bergfe57d9f2012-07-26 14:55:08 +02002639 if (local->use_chanctx && !local->ops->remain_on_channel)
2640 return -EOPNOTSUPP;
2641
Johannes Berg2eb278e2012-06-05 14:28:42 +02002642 roc = kzalloc(sizeof(*roc), GFP_KERNEL);
2643 if (!roc)
2644 return -ENOMEM;
Johannes Berg21f83582010-12-18 17:20:47 +01002645
Ilan Peer2fae0622013-12-19 13:25:29 +02002646 /*
2647 * If the duration is zero, then the driver
2648 * wouldn't actually do anything. Set it to
2649 * 10 for now.
2650 *
2651 * TODO: cancel the off-channel operation
2652 * when we get the SKB's TX status and
2653 * the wait time was zero before.
2654 */
2655 if (!duration)
2656 duration = 10;
2657
Johannes Berg2eb278e2012-06-05 14:28:42 +02002658 roc->chan = channel;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002659 roc->duration = duration;
2660 roc->req_duration = duration;
2661 roc->frame = txskb;
Ilan Peerd339d5c2013-02-12 09:34:13 +02002662 roc->type = type;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002663 roc->mgmt_tx_cookie = (unsigned long)txskb;
2664 roc->sdata = sdata;
2665 INIT_DELAYED_WORK(&roc->work, ieee80211_sw_roc_work);
2666 INIT_LIST_HEAD(&roc->dependents);
2667
2668 /* if there's one pending or we're scanning, queue this one */
Simon Wunderlich164eb022013-02-08 18:16:20 +01002669 if (!list_empty(&local->roc_list) ||
2670 local->scanning || local->radar_detect_enabled)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002671 goto out_check_combine;
2672
2673 /* if not HW assist, just queue & schedule work */
2674 if (!local->ops->remain_on_channel) {
2675 ieee80211_queue_delayed_work(&local->hw, &roc->work, 0);
2676 goto out_queue;
Johannes Berg21f83582010-12-18 17:20:47 +01002677 }
2678
Johannes Berg2eb278e2012-06-05 14:28:42 +02002679 /* otherwise actually kick it off here (for error handling) */
2680
Ilan Peerd339d5c2013-02-12 09:34:13 +02002681 ret = drv_remain_on_channel(local, sdata, channel, duration, type);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002682 if (ret) {
2683 kfree(roc);
2684 return ret;
2685 }
2686
2687 roc->started = true;
2688 goto out_queue;
2689
2690 out_check_combine:
2691 list_for_each_entry(tmp, &local->roc_list, list) {
Johannes Berg42d97a52012-11-08 18:31:02 +01002692 if (tmp->chan != channel || tmp->sdata != sdata)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002693 continue;
2694
2695 /*
2696 * Extend this ROC if possible:
2697 *
2698 * If it hasn't started yet, just increase the duration
2699 * and add the new one to the list of dependents.
Ilan Peerd339d5c2013-02-12 09:34:13 +02002700 * If the type of the new ROC has higher priority, modify the
2701 * type of the previous one to match that of the new one.
Johannes Berg2eb278e2012-06-05 14:28:42 +02002702 */
2703 if (!tmp->started) {
2704 list_add_tail(&roc->list, &tmp->dependents);
2705 tmp->duration = max(tmp->duration, roc->duration);
Ilan Peerd339d5c2013-02-12 09:34:13 +02002706 tmp->type = max(tmp->type, roc->type);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002707 queued = true;
2708 break;
2709 }
2710
2711 /* If it has already started, it's more difficult ... */
2712 if (local->ops->remain_on_channel) {
2713 unsigned long j = jiffies;
2714
2715 /*
2716 * In the offloaded ROC case, if it hasn't begun, add
2717 * this new one to the dependent list to be handled
Ilan Peerd339d5c2013-02-12 09:34:13 +02002718 * when the master one begins. If it has begun,
Johannes Berg2eb278e2012-06-05 14:28:42 +02002719 * check that there's still a minimum time left and
2720 * if so, start this one, transmitting the frame, but
Ilan Peerd339d5c2013-02-12 09:34:13 +02002721 * add it to the list directly after this one with
Johannes Berg2eb278e2012-06-05 14:28:42 +02002722 * a reduced time so we'll ask the driver to execute
2723 * it right after finishing the previous one, in the
2724 * hope that it'll also be executed right afterwards,
2725 * effectively extending the old one.
2726 * If there's no minimum time left, just add it to the
2727 * normal list.
Ilan Peerd339d5c2013-02-12 09:34:13 +02002728 * TODO: the ROC type is ignored here, assuming that it
2729 * is better to immediately use the current ROC.
Johannes Berg2eb278e2012-06-05 14:28:42 +02002730 */
2731 if (!tmp->hw_begun) {
2732 list_add_tail(&roc->list, &tmp->dependents);
2733 queued = true;
2734 break;
2735 }
2736
2737 if (time_before(j + IEEE80211_ROC_MIN_LEFT,
2738 tmp->hw_start_time +
2739 msecs_to_jiffies(tmp->duration))) {
2740 int new_dur;
2741
2742 ieee80211_handle_roc_started(roc);
2743
2744 new_dur = roc->duration -
2745 jiffies_to_msecs(tmp->hw_start_time +
2746 msecs_to_jiffies(
2747 tmp->duration) -
2748 j);
2749
2750 if (new_dur > 0) {
2751 /* add right after tmp */
2752 list_add(&roc->list, &tmp->list);
2753 } else {
2754 list_add_tail(&roc->list,
2755 &tmp->dependents);
2756 }
2757 queued = true;
2758 }
2759 } else if (del_timer_sync(&tmp->work.timer)) {
2760 unsigned long new_end;
2761
2762 /*
2763 * In the software ROC case, cancel the timer, if
2764 * that fails then the finish work is already
2765 * queued/pending and thus we queue the new ROC
2766 * normally, if that succeeds then we can extend
2767 * the timer duration and TX the frame (if any.)
2768 */
2769
2770 list_add_tail(&roc->list, &tmp->dependents);
2771 queued = true;
2772
2773 new_end = jiffies + msecs_to_jiffies(roc->duration);
2774
2775 /* ok, it was started & we canceled timer */
2776 if (time_after(new_end, tmp->work.timer.expires))
2777 mod_timer(&tmp->work.timer, new_end);
2778 else
2779 add_timer(&tmp->work.timer);
2780
2781 ieee80211_handle_roc_started(roc);
2782 }
2783 break;
2784 }
2785
2786 out_queue:
2787 if (!queued)
2788 list_add_tail(&roc->list, &local->roc_list);
2789
2790 /*
Johannes Berg50febf62012-10-26 16:13:06 +02002791 * cookie is either the roc cookie (for normal roc)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002792 * or the SKB (for mgmt TX)
2793 */
Johannes Berg50febf62012-10-26 16:13:06 +02002794 if (!txskb) {
2795 /* local->mtx protects this */
2796 local->roc_cookie_counter++;
2797 roc->cookie = local->roc_cookie_counter;
2798 /* wow, you wrapped 64 bits ... more likely a bug */
2799 if (WARN_ON(roc->cookie == 0)) {
2800 roc->cookie = 1;
2801 local->roc_cookie_counter++;
2802 }
2803 *cookie = roc->cookie;
2804 } else {
Johannes Berg2eb278e2012-06-05 14:28:42 +02002805 *cookie = (unsigned long)txskb;
Johannes Berg50febf62012-10-26 16:13:06 +02002806 }
Johannes Berg2eb278e2012-06-05 14:28:42 +02002807
2808 return 0;
Johannes Berg21f83582010-12-18 17:20:47 +01002809}
2810
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002811static int ieee80211_remain_on_channel(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02002812 struct wireless_dev *wdev,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002813 struct ieee80211_channel *chan,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002814 unsigned int duration,
2815 u64 *cookie)
2816{
Johannes Berg71bbc992012-06-15 15:30:18 +02002817 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg21f83582010-12-18 17:20:47 +01002818 struct ieee80211_local *local = sdata->local;
Johannes Berg21f83582010-12-18 17:20:47 +01002819 int ret;
2820
Johannes Berg2eb278e2012-06-05 14:28:42 +02002821 mutex_lock(&local->mtx);
Johannes Berg42d97a52012-11-08 18:31:02 +01002822 ret = ieee80211_start_roc_work(local, sdata, chan,
Ilan Peerd339d5c2013-02-12 09:34:13 +02002823 duration, cookie, NULL,
2824 IEEE80211_ROC_TYPE_NORMAL);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002825 mutex_unlock(&local->mtx);
Johannes Berg21f83582010-12-18 17:20:47 +01002826
Johannes Berg2eb278e2012-06-05 14:28:42 +02002827 return ret;
2828}
2829
2830static int ieee80211_cancel_roc(struct ieee80211_local *local,
2831 u64 cookie, bool mgmt_tx)
2832{
2833 struct ieee80211_roc_work *roc, *tmp, *found = NULL;
2834 int ret;
2835
2836 mutex_lock(&local->mtx);
2837 list_for_each_entry_safe(roc, tmp, &local->roc_list, list) {
Johannes Berge979e332012-06-11 17:09:41 +02002838 struct ieee80211_roc_work *dep, *tmp2;
2839
2840 list_for_each_entry_safe(dep, tmp2, &roc->dependents, list) {
Johannes Berg50febf62012-10-26 16:13:06 +02002841 if (!mgmt_tx && dep->cookie != cookie)
Johannes Berge979e332012-06-11 17:09:41 +02002842 continue;
2843 else if (mgmt_tx && dep->mgmt_tx_cookie != cookie)
2844 continue;
2845 /* found dependent item -- just remove it */
2846 list_del(&dep->list);
2847 mutex_unlock(&local->mtx);
2848
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002849 ieee80211_roc_notify_destroy(dep, true);
Johannes Berge979e332012-06-11 17:09:41 +02002850 return 0;
2851 }
2852
Johannes Berg50febf62012-10-26 16:13:06 +02002853 if (!mgmt_tx && roc->cookie != cookie)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002854 continue;
2855 else if (mgmt_tx && roc->mgmt_tx_cookie != cookie)
2856 continue;
2857
2858 found = roc;
2859 break;
2860 }
2861
2862 if (!found) {
2863 mutex_unlock(&local->mtx);
Johannes Berg21f83582010-12-18 17:20:47 +01002864 return -ENOENT;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002865 }
Johannes Berg21f83582010-12-18 17:20:47 +01002866
Johannes Berge979e332012-06-11 17:09:41 +02002867 /*
2868 * We found the item to cancel, so do that. Note that it
2869 * may have dependents, which we also cancel (and send
2870 * the expired signal for.) Not doing so would be quite
2871 * tricky here, but we may need to fix it later.
2872 */
2873
Johannes Berg2eb278e2012-06-05 14:28:42 +02002874 if (local->ops->remain_on_channel) {
2875 if (found->started) {
2876 ret = drv_cancel_remain_on_channel(local);
2877 if (WARN_ON_ONCE(ret)) {
2878 mutex_unlock(&local->mtx);
2879 return ret;
2880 }
2881 }
Johannes Berg21f83582010-12-18 17:20:47 +01002882
Johannes Berg2eb278e2012-06-05 14:28:42 +02002883 list_del(&found->list);
2884
Johannes Berg0f6b3f52012-06-20 20:11:33 +02002885 if (found->started)
2886 ieee80211_start_next_roc(local);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002887 mutex_unlock(&local->mtx);
2888
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002889 ieee80211_roc_notify_destroy(found, true);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002890 } else {
2891 /* work may be pending so use it all the time */
2892 found->abort = true;
2893 ieee80211_queue_delayed_work(&local->hw, &found->work, 0);
2894
2895 mutex_unlock(&local->mtx);
2896
2897 /* work will clean up etc */
2898 flush_delayed_work(&found->work);
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002899 WARN_ON(!found->to_be_freed);
2900 kfree(found);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002901 }
Johannes Berg21f83582010-12-18 17:20:47 +01002902
Johannes Berg21f83582010-12-18 17:20:47 +01002903 return 0;
2904}
2905
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002906static int ieee80211_cancel_remain_on_channel(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02002907 struct wireless_dev *wdev,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002908 u64 cookie)
2909{
Johannes Berg71bbc992012-06-15 15:30:18 +02002910 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg21f83582010-12-18 17:20:47 +01002911 struct ieee80211_local *local = sdata->local;
2912
Johannes Berg2eb278e2012-06-05 14:28:42 +02002913 return ieee80211_cancel_roc(local, cookie, false);
Johannes Bergf30221e2010-11-25 10:02:30 +01002914}
2915
Simon Wunderlich164eb022013-02-08 18:16:20 +01002916static int ieee80211_start_radar_detection(struct wiphy *wiphy,
2917 struct net_device *dev,
2918 struct cfg80211_chan_def *chandef)
2919{
2920 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2921 struct ieee80211_local *local = sdata->local;
2922 unsigned long timeout;
2923 int err;
2924
Johannes Berg34a37402013-12-18 09:43:33 +01002925 mutex_lock(&local->mtx);
2926 if (!list_empty(&local->roc_list) || local->scanning) {
2927 err = -EBUSY;
2928 goto out_unlock;
2929 }
Simon Wunderlich164eb022013-02-08 18:16:20 +01002930
2931 /* whatever, but channel contexts should not complain about that one */
2932 sdata->smps_mode = IEEE80211_SMPS_OFF;
2933 sdata->needed_rx_chains = local->rx_chains;
2934 sdata->radar_required = true;
2935
Simon Wunderlich164eb022013-02-08 18:16:20 +01002936 err = ieee80211_vif_use_channel(sdata, chandef,
2937 IEEE80211_CHANCTX_SHARED);
Simon Wunderlich164eb022013-02-08 18:16:20 +01002938 if (err)
Johannes Berg34a37402013-12-18 09:43:33 +01002939 goto out_unlock;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002940
2941 timeout = msecs_to_jiffies(IEEE80211_DFS_MIN_CAC_TIME_MS);
2942 ieee80211_queue_delayed_work(&sdata->local->hw,
2943 &sdata->dfs_cac_timer_work, timeout);
2944
Johannes Berg34a37402013-12-18 09:43:33 +01002945 out_unlock:
2946 mutex_unlock(&local->mtx);
2947 return err;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002948}
2949
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002950static struct cfg80211_beacon_data *
2951cfg80211_beacon_dup(struct cfg80211_beacon_data *beacon)
2952{
2953 struct cfg80211_beacon_data *new_beacon;
2954 u8 *pos;
2955 int len;
2956
2957 len = beacon->head_len + beacon->tail_len + beacon->beacon_ies_len +
2958 beacon->proberesp_ies_len + beacon->assocresp_ies_len +
2959 beacon->probe_resp_len;
2960
2961 new_beacon = kzalloc(sizeof(*new_beacon) + len, GFP_KERNEL);
2962 if (!new_beacon)
2963 return NULL;
2964
2965 pos = (u8 *)(new_beacon + 1);
2966 if (beacon->head_len) {
2967 new_beacon->head_len = beacon->head_len;
2968 new_beacon->head = pos;
2969 memcpy(pos, beacon->head, beacon->head_len);
2970 pos += beacon->head_len;
2971 }
2972 if (beacon->tail_len) {
2973 new_beacon->tail_len = beacon->tail_len;
2974 new_beacon->tail = pos;
2975 memcpy(pos, beacon->tail, beacon->tail_len);
2976 pos += beacon->tail_len;
2977 }
2978 if (beacon->beacon_ies_len) {
2979 new_beacon->beacon_ies_len = beacon->beacon_ies_len;
2980 new_beacon->beacon_ies = pos;
2981 memcpy(pos, beacon->beacon_ies, beacon->beacon_ies_len);
2982 pos += beacon->beacon_ies_len;
2983 }
2984 if (beacon->proberesp_ies_len) {
2985 new_beacon->proberesp_ies_len = beacon->proberesp_ies_len;
2986 new_beacon->proberesp_ies = pos;
2987 memcpy(pos, beacon->proberesp_ies, beacon->proberesp_ies_len);
2988 pos += beacon->proberesp_ies_len;
2989 }
2990 if (beacon->assocresp_ies_len) {
2991 new_beacon->assocresp_ies_len = beacon->assocresp_ies_len;
2992 new_beacon->assocresp_ies = pos;
2993 memcpy(pos, beacon->assocresp_ies, beacon->assocresp_ies_len);
2994 pos += beacon->assocresp_ies_len;
2995 }
2996 if (beacon->probe_resp_len) {
2997 new_beacon->probe_resp_len = beacon->probe_resp_len;
2998 beacon->probe_resp = pos;
2999 memcpy(pos, beacon->probe_resp, beacon->probe_resp_len);
3000 pos += beacon->probe_resp_len;
3001 }
3002
3003 return new_beacon;
3004}
3005
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003006void ieee80211_csa_finish(struct ieee80211_vif *vif)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003007{
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003008 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
3009
3010 ieee80211_queue_work(&sdata->local->hw,
3011 &sdata->csa_finalize_work);
3012}
3013EXPORT_SYMBOL(ieee80211_csa_finish);
3014
3015static void ieee80211_csa_finalize(struct ieee80211_sub_if_data *sdata)
3016{
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003017 struct ieee80211_local *local = sdata->local;
Michal Kazior0951ebb2013-10-18 14:57:00 -07003018 int err, changed = 0;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003019
Michal Kaziordbd72852014-01-29 07:56:21 +01003020 sdata_assert_lock(sdata);
3021
Johannes Berg34a37402013-12-18 09:43:33 +01003022 mutex_lock(&local->mtx);
Michal Kaziorcc901de2014-01-29 07:56:20 +01003023 sdata->radar_required = sdata->csa_radar_required;
Luciano Coelho33787fc2013-11-11 20:34:54 +02003024 err = ieee80211_vif_change_channel(sdata, &changed);
Johannes Berg34a37402013-12-18 09:43:33 +01003025 mutex_unlock(&local->mtx);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003026 if (WARN_ON(err < 0))
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003027 return;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003028
Arik Nemtsov7578d572013-09-01 17:15:51 +03003029 if (!local->use_chanctx) {
Luciano Coelho33787fc2013-11-11 20:34:54 +02003030 local->_oper_chandef = sdata->csa_chandef;
Arik Nemtsov7578d572013-09-01 17:15:51 +03003031 ieee80211_hw_config(local, 0);
3032 }
3033
Simon Wunderliche487eae2013-11-21 18:19:51 +01003034 sdata->vif.csa_active = false;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003035 switch (sdata->vif.type) {
3036 case NL80211_IFTYPE_AP:
3037 err = ieee80211_assign_beacon(sdata, sdata->u.ap.next_beacon);
Michal Kazior97518af12014-01-29 07:56:18 +01003038 kfree(sdata->u.ap.next_beacon);
3039 sdata->u.ap.next_beacon = NULL;
3040
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003041 if (err < 0)
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003042 return;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003043 changed |= err;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003044 break;
3045 case NL80211_IFTYPE_ADHOC:
Michal Kaziorfaf046e2014-01-29 07:56:17 +01003046 err = ieee80211_ibss_finish_csa(sdata);
3047 if (err < 0)
3048 return;
3049 changed |= err;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003050 break;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07003051#ifdef CONFIG_MAC80211_MESH
3052 case NL80211_IFTYPE_MESH_POINT:
3053 err = ieee80211_mesh_finish_csa(sdata);
3054 if (err < 0)
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003055 return;
Michal Kaziorfaf046e2014-01-29 07:56:17 +01003056 changed |= err;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07003057 break;
3058#endif
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003059 default:
3060 WARN_ON(1);
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003061 return;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003062 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003063
Michal Kaziorfaf046e2014-01-29 07:56:17 +01003064 ieee80211_bss_info_change_notify(sdata, changed);
3065
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003066 ieee80211_wake_queues_by_reason(&sdata->local->hw,
3067 IEEE80211_MAX_QUEUE_MAP,
3068 IEEE80211_QUEUE_STOP_REASON_CSA);
3069
Luciano Coelho33787fc2013-11-11 20:34:54 +02003070 cfg80211_ch_switch_notify(sdata->dev, &sdata->csa_chandef);
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003071}
3072
3073void ieee80211_csa_finalize_work(struct work_struct *work)
3074{
3075 struct ieee80211_sub_if_data *sdata =
3076 container_of(work, struct ieee80211_sub_if_data,
3077 csa_finalize_work);
3078
3079 sdata_lock(sdata);
3080 /* AP might have been stopped while waiting for the lock. */
3081 if (!sdata->vif.csa_active)
3082 goto unlock;
3083
3084 if (!ieee80211_sdata_running(sdata))
3085 goto unlock;
3086
3087 ieee80211_csa_finalize(sdata);
Simon Wunderliche487eae2013-11-21 18:19:51 +01003088
3089unlock:
3090 sdata_unlock(sdata);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003091}
3092
Luciano Coelho82a8e172013-12-13 21:13:50 +02003093int ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev,
3094 struct cfg80211_csa_settings *params)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003095{
3096 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3097 struct ieee80211_local *local = sdata->local;
3098 struct ieee80211_chanctx_conf *chanctx_conf;
3099 struct ieee80211_chanctx *chanctx;
Chun-Yeow Yeohc6da6742013-10-14 19:08:28 -07003100 struct ieee80211_if_mesh __maybe_unused *ifmsh;
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003101 int err, num_chanctx, changed = 0;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003102
Michal Kaziordbd72852014-01-29 07:56:21 +01003103 sdata_assert_lock(sdata);
Simon Wunderlich7ca133b2013-11-21 18:19:50 +01003104
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003105 if (!list_empty(&local->roc_list) || local->scanning)
3106 return -EBUSY;
3107
3108 if (sdata->wdev.cac_started)
3109 return -EBUSY;
3110
3111 if (cfg80211_chandef_identical(&params->chandef,
3112 &sdata->vif.bss_conf.chandef))
3113 return -EINVAL;
3114
3115 rcu_read_lock();
3116 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3117 if (!chanctx_conf) {
3118 rcu_read_unlock();
3119 return -EBUSY;
3120 }
3121
3122 /* don't handle for multi-VIF cases */
3123 chanctx = container_of(chanctx_conf, struct ieee80211_chanctx, conf);
3124 if (chanctx->refcount > 1) {
3125 rcu_read_unlock();
3126 return -EBUSY;
3127 }
3128 num_chanctx = 0;
3129 list_for_each_entry_rcu(chanctx, &local->chanctx_list, list)
3130 num_chanctx++;
3131 rcu_read_unlock();
3132
3133 if (num_chanctx > 1)
3134 return -EBUSY;
3135
3136 /* don't allow another channel switch if one is already active. */
3137 if (sdata->vif.csa_active)
3138 return -EBUSY;
3139
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003140 switch (sdata->vif.type) {
3141 case NL80211_IFTYPE_AP:
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003142 sdata->u.ap.next_beacon =
3143 cfg80211_beacon_dup(&params->beacon_after);
3144 if (!sdata->u.ap.next_beacon)
3145 return -ENOMEM;
3146
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003147 /*
3148 * With a count of 0, we don't have to wait for any
3149 * TBTT before switching, so complete the CSA
3150 * immediately. In theory, with a count == 1 we
3151 * should delay the switch until just before the next
3152 * TBTT, but that would complicate things so we switch
3153 * immediately too. If we would delay the switch
3154 * until the next TBTT, we would have to set the probe
3155 * response here.
3156 *
3157 * TODO: A channel switch with count <= 1 without
3158 * sending a CSA action frame is kind of useless,
3159 * because the clients won't know we're changing
3160 * channels. The action frame must be implemented
3161 * either here or in the userspace.
3162 */
3163 if (params->count <= 1)
3164 break;
3165
3166 sdata->csa_counter_offset_beacon =
3167 params->counter_offset_beacon;
3168 sdata->csa_counter_offset_presp = params->counter_offset_presp;
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003169 err = ieee80211_assign_beacon(sdata, &params->beacon_csa);
3170 if (err < 0) {
3171 kfree(sdata->u.ap.next_beacon);
3172 return err;
3173 }
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003174 changed |= err;
3175
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003176 break;
3177 case NL80211_IFTYPE_ADHOC:
3178 if (!sdata->vif.bss_conf.ibss_joined)
3179 return -EINVAL;
3180
3181 if (params->chandef.width != sdata->u.ibss.chandef.width)
3182 return -EINVAL;
3183
3184 switch (params->chandef.width) {
3185 case NL80211_CHAN_WIDTH_40:
3186 if (cfg80211_get_chandef_type(&params->chandef) !=
3187 cfg80211_get_chandef_type(&sdata->u.ibss.chandef))
3188 return -EINVAL;
3189 case NL80211_CHAN_WIDTH_5:
3190 case NL80211_CHAN_WIDTH_10:
3191 case NL80211_CHAN_WIDTH_20_NOHT:
3192 case NL80211_CHAN_WIDTH_20:
3193 break;
3194 default:
3195 return -EINVAL;
3196 }
3197
3198 /* changes into another band are not supported */
3199 if (sdata->u.ibss.chandef.chan->band !=
3200 params->chandef.chan->band)
3201 return -EINVAL;
3202
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003203 /* see comments in the NL80211_IFTYPE_AP block */
3204 if (params->count > 1) {
3205 err = ieee80211_ibss_csa_beacon(sdata, params);
3206 if (err < 0)
3207 return err;
3208 changed |= err;
3209 }
3210
3211 ieee80211_send_action_csa(sdata, params);
3212
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003213 break;
Chun-Yeow Yeohc6da6742013-10-14 19:08:28 -07003214#ifdef CONFIG_MAC80211_MESH
3215 case NL80211_IFTYPE_MESH_POINT:
3216 ifmsh = &sdata->u.mesh;
3217
Chun-Yeow Yeohc6da6742013-10-14 19:08:28 -07003218 if (params->chandef.width != sdata->vif.bss_conf.chandef.width)
3219 return -EINVAL;
3220
3221 /* changes into another band are not supported */
3222 if (sdata->vif.bss_conf.chandef.chan->band !=
3223 params->chandef.chan->band)
3224 return -EINVAL;
3225
Chun-Yeow Yeohc782bf82014-01-22 14:53:04 +08003226 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_NONE) {
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02003227 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_INIT;
Chun-Yeow Yeohc782bf82014-01-22 14:53:04 +08003228 if (!ifmsh->pre_value)
3229 ifmsh->pre_value = 1;
3230 else
3231 ifmsh->pre_value++;
3232 }
Luciano Coelho0cb4d4d2014-01-13 19:42:58 +02003233
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003234 /* see comments in the NL80211_IFTYPE_AP block */
3235 if (params->count > 1) {
3236 err = ieee80211_mesh_csa_beacon(sdata, params);
3237 if (err < 0) {
3238 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_NONE;
3239 return err;
3240 }
3241 changed |= err;
Chun-Yeow Yeoh3f718fd2013-11-08 15:09:43 +08003242 }
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003243
3244 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_INIT)
3245 ieee80211_send_action_csa(sdata, params);
3246
Chun-Yeow Yeohc6da6742013-10-14 19:08:28 -07003247 break;
3248#endif
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003249 default:
3250 return -EOPNOTSUPP;
3251 }
3252
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003253 sdata->csa_radar_required = params->radar_required;
3254
3255 if (params->block_tx)
3256 ieee80211_stop_queues_by_reason(&local->hw,
3257 IEEE80211_MAX_QUEUE_MAP,
3258 IEEE80211_QUEUE_STOP_REASON_CSA);
3259
Luciano Coelho33787fc2013-11-11 20:34:54 +02003260 sdata->csa_chandef = params->chandef;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003261 sdata->vif.csa_active = true;
3262
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003263 if (changed) {
3264 ieee80211_bss_info_change_notify(sdata, changed);
3265 drv_channel_switch_beacon(sdata, &params->chandef);
3266 } else {
3267 /* if the beacon didn't change, we can finalize immediately */
3268 ieee80211_csa_finalize(sdata);
3269 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003270
3271 return 0;
3272}
3273
Johannes Berg71bbc992012-06-15 15:30:18 +02003274static int ieee80211_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003275 struct cfg80211_mgmt_tx_params *params,
3276 u64 *cookie)
Jouni Malinen026331c2010-02-15 12:53:10 +02003277{
Johannes Berg71bbc992012-06-15 15:30:18 +02003278 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg9d38d852010-06-09 17:20:33 +02003279 struct ieee80211_local *local = sdata->local;
3280 struct sk_buff *skb;
3281 struct sta_info *sta;
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003282 const struct ieee80211_mgmt *mgmt = (void *)params->buf;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003283 bool need_offchan = false;
Johannes Berge247bd902011-11-04 11:18:21 +01003284 u32 flags;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003285 int ret;
Johannes Bergf7ca38d2010-11-25 10:02:29 +01003286
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003287 if (params->dont_wait_for_ack)
Johannes Berge247bd902011-11-04 11:18:21 +01003288 flags = IEEE80211_TX_CTL_NO_ACK;
3289 else
3290 flags = IEEE80211_TX_INTFL_NL80211_FRAME_TX |
3291 IEEE80211_TX_CTL_REQ_TX_STATUS;
3292
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003293 if (params->no_cck)
Rajkumar Manoharanaad14ce2011-09-25 14:53:31 +05303294 flags |= IEEE80211_TX_CTL_NO_CCK_RATE;
3295
Johannes Berg9d38d852010-06-09 17:20:33 +02003296 switch (sdata->vif.type) {
3297 case NL80211_IFTYPE_ADHOC:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003298 if (!sdata->vif.bss_conf.ibss_joined)
3299 need_offchan = true;
3300 /* fall through */
3301#ifdef CONFIG_MAC80211_MESH
3302 case NL80211_IFTYPE_MESH_POINT:
3303 if (ieee80211_vif_is_mesh(&sdata->vif) &&
3304 !sdata->u.mesh.mesh_id_len)
3305 need_offchan = true;
3306 /* fall through */
3307#endif
Johannes Berg663fcaf2010-09-30 21:06:09 +02003308 case NL80211_IFTYPE_AP:
3309 case NL80211_IFTYPE_AP_VLAN:
3310 case NL80211_IFTYPE_P2P_GO:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003311 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
3312 !ieee80211_vif_is_mesh(&sdata->vif) &&
3313 !rcu_access_pointer(sdata->bss->beacon))
3314 need_offchan = true;
Johannes Berg663fcaf2010-09-30 21:06:09 +02003315 if (!ieee80211_is_action(mgmt->frame_control) ||
Thomas Pedersenac49e1a2013-06-20 23:50:58 -07003316 mgmt->u.action.category == WLAN_CATEGORY_PUBLIC ||
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003317 mgmt->u.action.category == WLAN_CATEGORY_SELF_PROTECTED ||
3318 mgmt->u.action.category == WLAN_CATEGORY_SPECTRUM_MGMT)
Johannes Berg9d38d852010-06-09 17:20:33 +02003319 break;
3320 rcu_read_lock();
3321 sta = sta_info_get(sdata, mgmt->da);
3322 rcu_read_unlock();
3323 if (!sta)
3324 return -ENOLINK;
3325 break;
3326 case NL80211_IFTYPE_STATION:
Johannes Berg663fcaf2010-09-30 21:06:09 +02003327 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003328 if (!sdata->u.mgd.associated)
3329 need_offchan = true;
Johannes Berg9d38d852010-06-09 17:20:33 +02003330 break;
Johannes Bergf142c6b2012-06-18 20:07:15 +02003331 case NL80211_IFTYPE_P2P_DEVICE:
3332 need_offchan = true;
3333 break;
Johannes Berg9d38d852010-06-09 17:20:33 +02003334 default:
3335 return -EOPNOTSUPP;
3336 }
3337
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003338 /* configurations requiring offchan cannot work if no channel has been
3339 * specified
3340 */
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003341 if (need_offchan && !params->chan)
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003342 return -EINVAL;
3343
Johannes Berg2eb278e2012-06-05 14:28:42 +02003344 mutex_lock(&local->mtx);
3345
3346 /* Check if the operating channel is the requested channel */
3347 if (!need_offchan) {
Johannes Berg55de9082012-07-26 17:24:39 +02003348 struct ieee80211_chanctx_conf *chanctx_conf;
3349
3350 rcu_read_lock();
3351 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3352
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003353 if (chanctx_conf) {
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003354 need_offchan = params->chan &&
3355 (params->chan !=
3356 chanctx_conf->def.chan);
3357 } else if (!params->chan) {
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003358 ret = -EINVAL;
3359 rcu_read_unlock();
3360 goto out_unlock;
3361 } else {
Johannes Berg2eb278e2012-06-05 14:28:42 +02003362 need_offchan = true;
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003363 }
Johannes Berg55de9082012-07-26 17:24:39 +02003364 rcu_read_unlock();
Johannes Berg2eb278e2012-06-05 14:28:42 +02003365 }
3366
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003367 if (need_offchan && !params->offchan) {
Johannes Berg2eb278e2012-06-05 14:28:42 +02003368 ret = -EBUSY;
3369 goto out_unlock;
3370 }
3371
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003372 skb = dev_alloc_skb(local->hw.extra_tx_headroom + params->len);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003373 if (!skb) {
3374 ret = -ENOMEM;
3375 goto out_unlock;
3376 }
Johannes Berg9d38d852010-06-09 17:20:33 +02003377 skb_reserve(skb, local->hw.extra_tx_headroom);
3378
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003379 memcpy(skb_put(skb, params->len), params->buf, params->len);
Johannes Berg9d38d852010-06-09 17:20:33 +02003380
3381 IEEE80211_SKB_CB(skb)->flags = flags;
3382
Johannes Berg2eb278e2012-06-05 14:28:42 +02003383 skb->dev = sdata->dev;
3384
3385 if (!need_offchan) {
Nicolas Cavallari7f9f78a2012-07-16 18:36:52 +02003386 *cookie = (unsigned long) skb;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003387 ieee80211_tx_skb(sdata, skb);
3388 ret = 0;
3389 goto out_unlock;
3390 }
3391
Seth Forshee6c17b772013-02-11 11:21:07 -06003392 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_TX_OFFCHAN |
3393 IEEE80211_TX_INTFL_OFFCHAN_TX_OK;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003394 if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)
Johannes Berg3a25a8c2012-04-03 16:28:50 +02003395 IEEE80211_SKB_CB(skb)->hw_queue =
3396 local->hw.offchannel_tx_hw_queue;
3397
Johannes Berg2eb278e2012-06-05 14:28:42 +02003398 /* This will handle all kinds of coalescing and immediate TX */
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003399 ret = ieee80211_start_roc_work(local, sdata, params->chan,
3400 params->wait, cookie, skb,
Ilan Peerd339d5c2013-02-12 09:34:13 +02003401 IEEE80211_ROC_TYPE_MGMT_TX);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003402 if (ret)
Johannes Bergf30221e2010-11-25 10:02:30 +01003403 kfree_skb(skb);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003404 out_unlock:
3405 mutex_unlock(&local->mtx);
3406 return ret;
Jouni Malinen026331c2010-02-15 12:53:10 +02003407}
3408
Johannes Bergf30221e2010-11-25 10:02:30 +01003409static int ieee80211_mgmt_tx_cancel_wait(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02003410 struct wireless_dev *wdev,
Johannes Bergf30221e2010-11-25 10:02:30 +01003411 u64 cookie)
3412{
Johannes Berg71bbc992012-06-15 15:30:18 +02003413 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Bergf30221e2010-11-25 10:02:30 +01003414
Johannes Berg2eb278e2012-06-05 14:28:42 +02003415 return ieee80211_cancel_roc(local, cookie, true);
Johannes Bergf30221e2010-11-25 10:02:30 +01003416}
3417
Johannes Berg7be50862010-10-13 12:06:24 +02003418static void ieee80211_mgmt_frame_register(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02003419 struct wireless_dev *wdev,
Johannes Berg7be50862010-10-13 12:06:24 +02003420 u16 frame_type, bool reg)
3421{
3422 struct ieee80211_local *local = wiphy_priv(wiphy);
3423
Will Hawkins6abe0562012-06-20 11:51:14 -04003424 switch (frame_type) {
Will Hawkins6abe0562012-06-20 11:51:14 -04003425 case IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_PROBE_REQ:
3426 if (reg)
3427 local->probe_req_reg++;
3428 else
3429 local->probe_req_reg--;
Johannes Berg7be50862010-10-13 12:06:24 +02003430
Felix Fietkau35f51492012-10-31 15:50:34 +01003431 if (!local->open_count)
3432 break;
3433
Will Hawkins6abe0562012-06-20 11:51:14 -04003434 ieee80211_queue_work(&local->hw, &local->reconfig_filter);
3435 break;
3436 default:
3437 break;
3438 }
Johannes Berg7be50862010-10-13 12:06:24 +02003439}
3440
Bruno Randolf15d96752010-11-10 12:50:56 +09003441static int ieee80211_set_antenna(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant)
3442{
3443 struct ieee80211_local *local = wiphy_priv(wiphy);
3444
3445 if (local->started)
3446 return -EOPNOTSUPP;
3447
3448 return drv_set_antenna(local, tx_ant, rx_ant);
3449}
3450
3451static int ieee80211_get_antenna(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant)
3452{
3453 struct ieee80211_local *local = wiphy_priv(wiphy);
3454
3455 return drv_get_antenna(local, tx_ant, rx_ant);
3456}
3457
John W. Linville38c09152011-03-07 16:19:18 -05003458static int ieee80211_set_ringparam(struct wiphy *wiphy, u32 tx, u32 rx)
3459{
3460 struct ieee80211_local *local = wiphy_priv(wiphy);
3461
3462 return drv_set_ringparam(local, tx, rx);
3463}
3464
3465static void ieee80211_get_ringparam(struct wiphy *wiphy,
3466 u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max)
3467{
3468 struct ieee80211_local *local = wiphy_priv(wiphy);
3469
3470 drv_get_ringparam(local, tx, tx_max, rx, rx_max);
3471}
3472
Johannes Bergc68f4b82011-07-05 16:35:41 +02003473static int ieee80211_set_rekey_data(struct wiphy *wiphy,
3474 struct net_device *dev,
3475 struct cfg80211_gtk_rekey_data *data)
3476{
3477 struct ieee80211_local *local = wiphy_priv(wiphy);
3478 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3479
3480 if (!local->ops->set_rekey_data)
3481 return -EOPNOTSUPP;
3482
3483 drv_set_rekey_data(local, sdata, data);
3484
3485 return 0;
3486}
3487
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003488static void ieee80211_tdls_add_ext_capab(struct sk_buff *skb)
3489{
3490 u8 *pos = (void *)skb_put(skb, 7);
3491
3492 *pos++ = WLAN_EID_EXT_CAPABILITY;
3493 *pos++ = 5; /* len */
3494 *pos++ = 0x0;
3495 *pos++ = 0x0;
3496 *pos++ = 0x0;
3497 *pos++ = 0x0;
3498 *pos++ = WLAN_EXT_CAPA5_TDLS_ENABLED;
3499}
3500
3501static u16 ieee80211_get_tdls_sta_capab(struct ieee80211_sub_if_data *sdata)
3502{
3503 struct ieee80211_local *local = sdata->local;
3504 u16 capab;
3505
3506 capab = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02003507 if (ieee80211_get_sdata_band(sdata) != IEEE80211_BAND_2GHZ)
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003508 return capab;
3509
3510 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
3511 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
3512 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
3513 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
3514
3515 return capab;
3516}
3517
3518static void ieee80211_tdls_add_link_ie(struct sk_buff *skb, u8 *src_addr,
3519 u8 *peer, u8 *bssid)
3520{
3521 struct ieee80211_tdls_lnkie *lnkid;
3522
3523 lnkid = (void *)skb_put(skb, sizeof(struct ieee80211_tdls_lnkie));
3524
3525 lnkid->ie_type = WLAN_EID_LINK_ID;
3526 lnkid->ie_len = sizeof(struct ieee80211_tdls_lnkie) - 2;
3527
3528 memcpy(lnkid->bssid, bssid, ETH_ALEN);
3529 memcpy(lnkid->init_sta, src_addr, ETH_ALEN);
3530 memcpy(lnkid->resp_sta, peer, ETH_ALEN);
3531}
3532
3533static int
3534ieee80211_prep_tdls_encap_data(struct wiphy *wiphy, struct net_device *dev,
3535 u8 *peer, u8 action_code, u8 dialog_token,
3536 u16 status_code, struct sk_buff *skb)
3537{
3538 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg55de9082012-07-26 17:24:39 +02003539 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003540 struct ieee80211_tdls_data *tf;
3541
3542 tf = (void *)skb_put(skb, offsetof(struct ieee80211_tdls_data, u));
3543
3544 memcpy(tf->da, peer, ETH_ALEN);
3545 memcpy(tf->sa, sdata->vif.addr, ETH_ALEN);
3546 tf->ether_type = cpu_to_be16(ETH_P_TDLS);
3547 tf->payload_type = WLAN_TDLS_SNAP_RFTYPE;
3548
3549 switch (action_code) {
3550 case WLAN_TDLS_SETUP_REQUEST:
3551 tf->category = WLAN_CATEGORY_TDLS;
3552 tf->action_code = WLAN_TDLS_SETUP_REQUEST;
3553
3554 skb_put(skb, sizeof(tf->u.setup_req));
3555 tf->u.setup_req.dialog_token = dialog_token;
3556 tf->u.setup_req.capability =
3557 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata));
3558
Johannes Berg55de9082012-07-26 17:24:39 +02003559 ieee80211_add_srates_ie(sdata, skb, false, band);
3560 ieee80211_add_ext_srates_ie(sdata, skb, false, band);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003561 ieee80211_tdls_add_ext_capab(skb);
3562 break;
3563 case WLAN_TDLS_SETUP_RESPONSE:
3564 tf->category = WLAN_CATEGORY_TDLS;
3565 tf->action_code = WLAN_TDLS_SETUP_RESPONSE;
3566
3567 skb_put(skb, sizeof(tf->u.setup_resp));
3568 tf->u.setup_resp.status_code = cpu_to_le16(status_code);
3569 tf->u.setup_resp.dialog_token = dialog_token;
3570 tf->u.setup_resp.capability =
3571 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata));
3572
Johannes Berg55de9082012-07-26 17:24:39 +02003573 ieee80211_add_srates_ie(sdata, skb, false, band);
3574 ieee80211_add_ext_srates_ie(sdata, skb, false, band);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003575 ieee80211_tdls_add_ext_capab(skb);
3576 break;
3577 case WLAN_TDLS_SETUP_CONFIRM:
3578 tf->category = WLAN_CATEGORY_TDLS;
3579 tf->action_code = WLAN_TDLS_SETUP_CONFIRM;
3580
3581 skb_put(skb, sizeof(tf->u.setup_cfm));
3582 tf->u.setup_cfm.status_code = cpu_to_le16(status_code);
3583 tf->u.setup_cfm.dialog_token = dialog_token;
3584 break;
3585 case WLAN_TDLS_TEARDOWN:
3586 tf->category = WLAN_CATEGORY_TDLS;
3587 tf->action_code = WLAN_TDLS_TEARDOWN;
3588
3589 skb_put(skb, sizeof(tf->u.teardown));
3590 tf->u.teardown.reason_code = cpu_to_le16(status_code);
3591 break;
3592 case WLAN_TDLS_DISCOVERY_REQUEST:
3593 tf->category = WLAN_CATEGORY_TDLS;
3594 tf->action_code = WLAN_TDLS_DISCOVERY_REQUEST;
3595
3596 skb_put(skb, sizeof(tf->u.discover_req));
3597 tf->u.discover_req.dialog_token = dialog_token;
3598 break;
3599 default:
3600 return -EINVAL;
3601 }
3602
3603 return 0;
3604}
3605
3606static int
3607ieee80211_prep_tdls_direct(struct wiphy *wiphy, struct net_device *dev,
3608 u8 *peer, u8 action_code, u8 dialog_token,
3609 u16 status_code, struct sk_buff *skb)
3610{
3611 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg55de9082012-07-26 17:24:39 +02003612 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003613 struct ieee80211_mgmt *mgmt;
3614
3615 mgmt = (void *)skb_put(skb, 24);
3616 memset(mgmt, 0, 24);
3617 memcpy(mgmt->da, peer, ETH_ALEN);
3618 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
3619 memcpy(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN);
3620
3621 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
3622 IEEE80211_STYPE_ACTION);
3623
3624 switch (action_code) {
3625 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
3626 skb_put(skb, 1 + sizeof(mgmt->u.action.u.tdls_discover_resp));
3627 mgmt->u.action.category = WLAN_CATEGORY_PUBLIC;
3628 mgmt->u.action.u.tdls_discover_resp.action_code =
3629 WLAN_PUB_ACTION_TDLS_DISCOVER_RES;
3630 mgmt->u.action.u.tdls_discover_resp.dialog_token =
3631 dialog_token;
3632 mgmt->u.action.u.tdls_discover_resp.capability =
3633 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata));
3634
Johannes Berg55de9082012-07-26 17:24:39 +02003635 ieee80211_add_srates_ie(sdata, skb, false, band);
3636 ieee80211_add_ext_srates_ie(sdata, skb, false, band);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003637 ieee80211_tdls_add_ext_capab(skb);
3638 break;
3639 default:
3640 return -EINVAL;
3641 }
3642
3643 return 0;
3644}
3645
3646static int ieee80211_tdls_mgmt(struct wiphy *wiphy, struct net_device *dev,
3647 u8 *peer, u8 action_code, u8 dialog_token,
3648 u16 status_code, const u8 *extra_ies,
3649 size_t extra_ies_len)
3650{
3651 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3652 struct ieee80211_local *local = sdata->local;
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003653 struct sk_buff *skb = NULL;
3654 bool send_direct;
3655 int ret;
3656
3657 if (!(wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS))
3658 return -ENOTSUPP;
3659
3660 /* make sure we are in managed mode, and associated */
3661 if (sdata->vif.type != NL80211_IFTYPE_STATION ||
3662 !sdata->u.mgd.associated)
3663 return -EINVAL;
3664
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003665 tdls_dbg(sdata, "TDLS mgmt action %d peer %pM\n",
3666 action_code, peer);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003667
3668 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
3669 max(sizeof(struct ieee80211_mgmt),
3670 sizeof(struct ieee80211_tdls_data)) +
3671 50 + /* supported rates */
3672 7 + /* ext capab */
3673 extra_ies_len +
3674 sizeof(struct ieee80211_tdls_lnkie));
3675 if (!skb)
3676 return -ENOMEM;
3677
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003678 skb_reserve(skb, local->hw.extra_tx_headroom);
3679
3680 switch (action_code) {
3681 case WLAN_TDLS_SETUP_REQUEST:
3682 case WLAN_TDLS_SETUP_RESPONSE:
3683 case WLAN_TDLS_SETUP_CONFIRM:
3684 case WLAN_TDLS_TEARDOWN:
3685 case WLAN_TDLS_DISCOVERY_REQUEST:
3686 ret = ieee80211_prep_tdls_encap_data(wiphy, dev, peer,
3687 action_code, dialog_token,
3688 status_code, skb);
3689 send_direct = false;
3690 break;
3691 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
3692 ret = ieee80211_prep_tdls_direct(wiphy, dev, peer, action_code,
3693 dialog_token, status_code,
3694 skb);
3695 send_direct = true;
3696 break;
3697 default:
3698 ret = -ENOTSUPP;
3699 break;
3700 }
3701
3702 if (ret < 0)
3703 goto fail;
3704
3705 if (extra_ies_len)
3706 memcpy(skb_put(skb, extra_ies_len), extra_ies, extra_ies_len);
3707
3708 /* the TDLS link IE is always added last */
3709 switch (action_code) {
3710 case WLAN_TDLS_SETUP_REQUEST:
3711 case WLAN_TDLS_SETUP_CONFIRM:
3712 case WLAN_TDLS_TEARDOWN:
3713 case WLAN_TDLS_DISCOVERY_REQUEST:
3714 /* we are the initiator */
3715 ieee80211_tdls_add_link_ie(skb, sdata->vif.addr, peer,
3716 sdata->u.mgd.bssid);
3717 break;
3718 case WLAN_TDLS_SETUP_RESPONSE:
3719 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
3720 /* we are the responder */
3721 ieee80211_tdls_add_link_ie(skb, peer, sdata->vif.addr,
3722 sdata->u.mgd.bssid);
3723 break;
3724 default:
3725 ret = -ENOTSUPP;
3726 goto fail;
3727 }
3728
3729 if (send_direct) {
3730 ieee80211_tx_skb(sdata, skb);
3731 return 0;
3732 }
3733
3734 /*
3735 * According to 802.11z: Setup req/resp are sent in AC_BK, otherwise
3736 * we should default to AC_VI.
3737 */
3738 switch (action_code) {
3739 case WLAN_TDLS_SETUP_REQUEST:
3740 case WLAN_TDLS_SETUP_RESPONSE:
3741 skb_set_queue_mapping(skb, IEEE80211_AC_BK);
3742 skb->priority = 2;
3743 break;
3744 default:
3745 skb_set_queue_mapping(skb, IEEE80211_AC_VI);
3746 skb->priority = 5;
3747 break;
3748 }
3749
3750 /* disable bottom halves when entering the Tx path */
3751 local_bh_disable();
3752 ret = ieee80211_subif_start_xmit(skb, dev);
3753 local_bh_enable();
3754
3755 return ret;
3756
3757fail:
3758 dev_kfree_skb(skb);
3759 return ret;
3760}
3761
3762static int ieee80211_tdls_oper(struct wiphy *wiphy, struct net_device *dev,
3763 u8 *peer, enum nl80211_tdls_operation oper)
3764{
Arik Nemtsov941c93c2011-09-28 14:12:54 +03003765 struct sta_info *sta;
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003766 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3767
3768 if (!(wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS))
3769 return -ENOTSUPP;
3770
3771 if (sdata->vif.type != NL80211_IFTYPE_STATION)
3772 return -EINVAL;
3773
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003774 tdls_dbg(sdata, "TDLS oper %d peer %pM\n", oper, peer);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003775
3776 switch (oper) {
3777 case NL80211_TDLS_ENABLE_LINK:
Arik Nemtsov941c93c2011-09-28 14:12:54 +03003778 rcu_read_lock();
3779 sta = sta_info_get(sdata, peer);
3780 if (!sta) {
3781 rcu_read_unlock();
3782 return -ENOLINK;
3783 }
3784
Johannes Bergc2c98fd2011-09-29 16:04:36 +02003785 set_sta_flag(sta, WLAN_STA_TDLS_PEER_AUTH);
Arik Nemtsov941c93c2011-09-28 14:12:54 +03003786 rcu_read_unlock();
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003787 break;
3788 case NL80211_TDLS_DISABLE_LINK:
3789 return sta_info_destroy_addr(sdata, peer);
3790 case NL80211_TDLS_TEARDOWN:
3791 case NL80211_TDLS_SETUP:
3792 case NL80211_TDLS_DISCOVERY_REQ:
3793 /* We don't support in-driver setup/teardown/discovery */
3794 return -ENOTSUPP;
3795 default:
3796 return -ENOTSUPP;
3797 }
3798
3799 return 0;
3800}
3801
Johannes Berg06500732011-11-04 11:18:16 +01003802static int ieee80211_probe_client(struct wiphy *wiphy, struct net_device *dev,
3803 const u8 *peer, u64 *cookie)
3804{
3805 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3806 struct ieee80211_local *local = sdata->local;
3807 struct ieee80211_qos_hdr *nullfunc;
3808 struct sk_buff *skb;
3809 int size = sizeof(*nullfunc);
3810 __le16 fc;
3811 bool qos;
3812 struct ieee80211_tx_info *info;
3813 struct sta_info *sta;
Johannes Berg55de9082012-07-26 17:24:39 +02003814 struct ieee80211_chanctx_conf *chanctx_conf;
3815 enum ieee80211_band band;
Johannes Berg06500732011-11-04 11:18:16 +01003816
3817 rcu_read_lock();
Johannes Berg55de9082012-07-26 17:24:39 +02003818 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3819 if (WARN_ON(!chanctx_conf)) {
3820 rcu_read_unlock();
3821 return -EINVAL;
3822 }
Johannes Berg4bf88532012-11-09 11:39:59 +01003823 band = chanctx_conf->def.chan->band;
Felix Fietkau03bb7f42013-09-29 21:39:33 +02003824 sta = sta_info_get_bss(sdata, peer);
Johannes Bergb4487c22011-11-11 20:22:30 +01003825 if (sta) {
Johannes Berg06500732011-11-04 11:18:16 +01003826 qos = test_sta_flag(sta, WLAN_STA_WME);
Johannes Bergb4487c22011-11-11 20:22:30 +01003827 } else {
3828 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003829 return -ENOLINK;
Johannes Bergb4487c22011-11-11 20:22:30 +01003830 }
Johannes Berg06500732011-11-04 11:18:16 +01003831
3832 if (qos) {
3833 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3834 IEEE80211_STYPE_QOS_NULLFUNC |
3835 IEEE80211_FCTL_FROMDS);
3836 } else {
3837 size -= 2;
3838 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3839 IEEE80211_STYPE_NULLFUNC |
3840 IEEE80211_FCTL_FROMDS);
3841 }
3842
3843 skb = dev_alloc_skb(local->hw.extra_tx_headroom + size);
Johannes Berg55de9082012-07-26 17:24:39 +02003844 if (!skb) {
3845 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003846 return -ENOMEM;
Johannes Berg55de9082012-07-26 17:24:39 +02003847 }
Johannes Berg06500732011-11-04 11:18:16 +01003848
3849 skb->dev = dev;
3850
3851 skb_reserve(skb, local->hw.extra_tx_headroom);
3852
3853 nullfunc = (void *) skb_put(skb, size);
3854 nullfunc->frame_control = fc;
3855 nullfunc->duration_id = 0;
3856 memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN);
3857 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
3858 memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);
3859 nullfunc->seq_ctrl = 0;
3860
3861 info = IEEE80211_SKB_CB(skb);
3862
3863 info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
3864 IEEE80211_TX_INTFL_NL80211_FRAME_TX;
3865
3866 skb_set_queue_mapping(skb, IEEE80211_AC_VO);
3867 skb->priority = 7;
3868 if (qos)
3869 nullfunc->qos_ctrl = cpu_to_le16(7);
3870
3871 local_bh_disable();
Johannes Berg55de9082012-07-26 17:24:39 +02003872 ieee80211_xmit(sdata, skb, band);
Johannes Berg06500732011-11-04 11:18:16 +01003873 local_bh_enable();
Johannes Berg55de9082012-07-26 17:24:39 +02003874 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003875
3876 *cookie = (unsigned long) skb;
3877 return 0;
3878}
3879
Johannes Berg683b6d32012-11-08 21:25:48 +01003880static int ieee80211_cfg_get_channel(struct wiphy *wiphy,
3881 struct wireless_dev *wdev,
3882 struct cfg80211_chan_def *chandef)
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003883{
Johannes Berg55de9082012-07-26 17:24:39 +02003884 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Felix Fietkaucb601ff2013-02-23 19:02:14 +01003885 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg55de9082012-07-26 17:24:39 +02003886 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Berg683b6d32012-11-08 21:25:48 +01003887 int ret = -ENODATA;
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003888
Johannes Berg55de9082012-07-26 17:24:39 +02003889 rcu_read_lock();
Johannes Bergfeda3022013-02-28 09:59:22 +01003890 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3891 if (chanctx_conf) {
3892 *chandef = chanctx_conf->def;
3893 ret = 0;
3894 } else if (local->open_count > 0 &&
3895 local->open_count == local->monitors &&
3896 sdata->vif.type == NL80211_IFTYPE_MONITOR) {
3897 if (local->use_chanctx)
3898 *chandef = local->monitor_chandef;
3899 else
Karl Beldan675a0b02013-03-25 16:26:57 +01003900 *chandef = local->_oper_chandef;
Johannes Berg683b6d32012-11-08 21:25:48 +01003901 ret = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02003902 }
3903 rcu_read_unlock();
3904
Johannes Berg683b6d32012-11-08 21:25:48 +01003905 return ret;
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003906}
3907
Johannes Berg6d525632012-04-04 15:05:25 +02003908#ifdef CONFIG_PM
3909static void ieee80211_set_wakeup(struct wiphy *wiphy, bool enabled)
3910{
3911 drv_set_wakeup(wiphy_priv(wiphy), enabled);
3912}
3913#endif
3914
Kyeyoon Park32db6b52013-12-16 23:04:43 -08003915static int ieee80211_set_qos_map(struct wiphy *wiphy,
3916 struct net_device *dev,
3917 struct cfg80211_qos_map *qos_map)
3918{
3919 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3920 struct mac80211_qos_map *new_qos_map, *old_qos_map;
3921
3922 if (qos_map) {
3923 new_qos_map = kzalloc(sizeof(*new_qos_map), GFP_KERNEL);
3924 if (!new_qos_map)
3925 return -ENOMEM;
3926 memcpy(&new_qos_map->qos_map, qos_map, sizeof(*qos_map));
3927 } else {
3928 /* A NULL qos_map was passed to disable QoS mapping */
3929 new_qos_map = NULL;
3930 }
3931
Johannes Berg194ff522013-12-30 23:12:37 +01003932 old_qos_map = sdata_dereference(sdata->qos_map, sdata);
Kyeyoon Park32db6b52013-12-16 23:04:43 -08003933 rcu_assign_pointer(sdata->qos_map, new_qos_map);
3934 if (old_qos_map)
3935 kfree_rcu(old_qos_map, rcu_head);
3936
3937 return 0;
3938}
3939
Johannes Berg8a47cea2014-01-20 23:55:44 +01003940const struct cfg80211_ops mac80211_config_ops = {
Jiri Bencf0706e82007-05-05 11:45:53 -07003941 .add_virtual_intf = ieee80211_add_iface,
3942 .del_virtual_intf = ieee80211_del_iface,
Johannes Berg42613db2007-09-28 21:52:27 +02003943 .change_virtual_intf = ieee80211_change_iface,
Johannes Bergf142c6b2012-06-18 20:07:15 +02003944 .start_p2p_device = ieee80211_start_p2p_device,
3945 .stop_p2p_device = ieee80211_stop_p2p_device,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01003946 .add_key = ieee80211_add_key,
3947 .del_key = ieee80211_del_key,
Johannes Berg62da92f2007-12-19 02:03:31 +01003948 .get_key = ieee80211_get_key,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01003949 .set_default_key = ieee80211_config_default_key,
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02003950 .set_default_mgmt_key = ieee80211_config_default_mgmt_key,
Johannes Berg88600202012-02-13 15:17:18 +01003951 .start_ap = ieee80211_start_ap,
3952 .change_beacon = ieee80211_change_beacon,
3953 .stop_ap = ieee80211_stop_ap,
Johannes Berg4fd69312007-12-19 02:03:35 +01003954 .add_station = ieee80211_add_station,
3955 .del_station = ieee80211_del_station,
3956 .change_station = ieee80211_change_station,
Johannes Berg7bbdd2d2007-12-19 02:03:37 +01003957 .get_station = ieee80211_get_station,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003958 .dump_station = ieee80211_dump_station,
Holger Schurig12897232010-04-19 10:23:57 +02003959 .dump_survey = ieee80211_dump_survey,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003960#ifdef CONFIG_MAC80211_MESH
3961 .add_mpath = ieee80211_add_mpath,
3962 .del_mpath = ieee80211_del_mpath,
3963 .change_mpath = ieee80211_change_mpath,
3964 .get_mpath = ieee80211_get_mpath,
3965 .dump_mpath = ieee80211_dump_mpath,
Javier Cardona24bdd9f2010-12-16 17:37:48 -08003966 .update_mesh_config = ieee80211_update_mesh_config,
3967 .get_mesh_config = ieee80211_get_mesh_config,
Johannes Berg29cbe682010-12-03 09:20:44 +01003968 .join_mesh = ieee80211_join_mesh,
3969 .leave_mesh = ieee80211_leave_mesh,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003970#endif
Jouni Malinen9f1ba902008-08-07 20:07:01 +03003971 .change_bss = ieee80211_change_bss,
Jouni Malinen31888482008-10-30 16:59:24 +02003972 .set_txq_params = ieee80211_set_txq_params,
Johannes Berge8c9bd52012-06-06 08:18:22 +02003973 .set_monitor_channel = ieee80211_set_monitor_channel,
Bob Copeland665af4f2009-01-19 11:20:53 -05003974 .suspend = ieee80211_suspend,
3975 .resume = ieee80211_resume,
Johannes Berg2a519312009-02-10 21:25:55 +01003976 .scan = ieee80211_scan,
Luciano Coelho79f460c2011-05-11 17:09:36 +03003977 .sched_scan_start = ieee80211_sched_scan_start,
3978 .sched_scan_stop = ieee80211_sched_scan_stop,
Jouni Malinen636a5d32009-03-19 13:39:22 +02003979 .auth = ieee80211_auth,
3980 .assoc = ieee80211_assoc,
3981 .deauth = ieee80211_deauth,
3982 .disassoc = ieee80211_disassoc,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02003983 .join_ibss = ieee80211_join_ibss,
3984 .leave_ibss = ieee80211_leave_ibss,
Antonio Quartulli391e53e2012-11-02 13:27:49 +01003985 .set_mcast_rate = ieee80211_set_mcast_rate,
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02003986 .set_wiphy_params = ieee80211_set_wiphy_params,
Johannes Berg7643a2c2009-06-02 13:01:39 +02003987 .set_tx_power = ieee80211_set_tx_power,
3988 .get_tx_power = ieee80211_get_tx_power,
Johannes Bergab737a42009-07-01 21:26:58 +02003989 .set_wds_peer = ieee80211_set_wds_peer,
Johannes Berg1f87f7d2009-06-02 13:01:41 +02003990 .rfkill_poll = ieee80211_rfkill_poll,
Johannes Bergaff89a92009-07-01 21:26:51 +02003991 CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd)
Wey-Yi Guy71063f02011-05-20 09:05:54 -07003992 CFG80211_TESTMODE_DUMP(ieee80211_testmode_dump)
Johannes Bergbc92afd2009-07-01 21:26:57 +02003993 .set_power_mgmt = ieee80211_set_power_mgmt,
Johannes Berg99303802009-07-01 21:26:59 +02003994 .set_bitrate_mask = ieee80211_set_bitrate_mask,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01003995 .remain_on_channel = ieee80211_remain_on_channel,
3996 .cancel_remain_on_channel = ieee80211_cancel_remain_on_channel,
Johannes Berg2e161f782010-08-12 15:38:38 +02003997 .mgmt_tx = ieee80211_mgmt_tx,
Johannes Bergf30221e2010-11-25 10:02:30 +01003998 .mgmt_tx_cancel_wait = ieee80211_mgmt_tx_cancel_wait,
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02003999 .set_cqm_rssi_config = ieee80211_set_cqm_rssi_config,
Johannes Berg7be50862010-10-13 12:06:24 +02004000 .mgmt_frame_register = ieee80211_mgmt_frame_register,
Bruno Randolf15d96752010-11-10 12:50:56 +09004001 .set_antenna = ieee80211_set_antenna,
4002 .get_antenna = ieee80211_get_antenna,
John W. Linville38c09152011-03-07 16:19:18 -05004003 .set_ringparam = ieee80211_set_ringparam,
4004 .get_ringparam = ieee80211_get_ringparam,
Johannes Bergc68f4b82011-07-05 16:35:41 +02004005 .set_rekey_data = ieee80211_set_rekey_data,
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03004006 .tdls_oper = ieee80211_tdls_oper,
4007 .tdls_mgmt = ieee80211_tdls_mgmt,
Johannes Berg06500732011-11-04 11:18:16 +01004008 .probe_client = ieee80211_probe_client,
Simon Wunderlichb53be792011-11-18 14:20:44 +01004009 .set_noack_map = ieee80211_set_noack_map,
Johannes Berg6d525632012-04-04 15:05:25 +02004010#ifdef CONFIG_PM
4011 .set_wakeup = ieee80211_set_wakeup,
4012#endif
Ben Greearb1ab7922012-04-23 12:50:30 -07004013 .get_et_sset_count = ieee80211_get_et_sset_count,
4014 .get_et_stats = ieee80211_get_et_stats,
4015 .get_et_strings = ieee80211_get_et_strings,
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02004016 .get_channel = ieee80211_cfg_get_channel,
Simon Wunderlich164eb022013-02-08 18:16:20 +01004017 .start_radar_detection = ieee80211_start_radar_detection,
Simon Wunderlich73da7d52013-07-11 16:09:06 +02004018 .channel_switch = ieee80211_channel_switch,
Kyeyoon Park32db6b52013-12-16 23:04:43 -08004019 .set_qos_map = ieee80211_set_qos_map,
Jiri Bencf0706e82007-05-05 11:45:53 -07004020};