blob: d7513a503be11b180031342dcf316450fd6c69d3 [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 Berg9607e6b2009-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{
Luciano Coelhob6a55012014-02-27 11:07:21 +0200112 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
113 int ret;
114
115 mutex_lock(&sdata->local->chanctx_mtx);
116 ret = ieee80211_check_combinations(sdata, NULL, 0, 0);
117 mutex_unlock(&sdata->local->chanctx_mtx);
118 if (ret < 0)
119 return ret;
120
Johannes Bergf142c6b2012-06-18 20:07:15 +0200121 return ieee80211_do_open(wdev, true);
122}
123
124static void ieee80211_stop_p2p_device(struct wiphy *wiphy,
125 struct wireless_dev *wdev)
126{
127 ieee80211_sdata_stop(IEEE80211_WDEV_TO_SUB_IF(wdev));
128}
129
Simon Wunderlichb53be792011-11-18 14:20:44 +0100130static int ieee80211_set_noack_map(struct wiphy *wiphy,
131 struct net_device *dev,
132 u16 noack_map)
133{
134 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
135
136 sdata->noack_map = noack_map;
137 return 0;
138}
139
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100140static int ieee80211_add_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berge31b8212010-10-05 19:39:30 +0200141 u8 key_idx, bool pairwise, const u8 *mac_addr,
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100142 struct key_params *params)
143{
Johannes Berg26a58452010-08-27 12:35:55 +0200144 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200145 struct ieee80211_local *local = sdata->local;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100146 struct sta_info *sta = NULL;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200147 const struct ieee80211_cipher_scheme *cs = NULL;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100148 struct ieee80211_key *key;
Johannes Berg3b967662008-04-08 17:56:52 +0200149 int err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100150
Johannes Berg26a58452010-08-27 12:35:55 +0200151 if (!ieee80211_sdata_running(sdata))
Johannes Bergad0e2b52010-06-01 10:19:19 +0200152 return -ENETDOWN;
153
Johannes Berg97359d12010-08-10 09:46:38 +0200154 /* reject WEP and TKIP keys if WEP failed to initialize */
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100155 switch (params->cipher) {
156 case WLAN_CIPHER_SUITE_WEP40:
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100157 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berg97359d12010-08-10 09:46:38 +0200158 case WLAN_CIPHER_SUITE_WEP104:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200159 if (IS_ERR(local->wep_tx_tfm))
Johannes Berg97359d12010-08-10 09:46:38 +0200160 return -EINVAL;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200161 break;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200162 case WLAN_CIPHER_SUITE_CCMP:
163 case WLAN_CIPHER_SUITE_AES_CMAC:
164 case WLAN_CIPHER_SUITE_GCMP:
165 break;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100166 default:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200167 cs = ieee80211_cs_get(local, params->cipher, sdata->vif.type);
Johannes Berg97359d12010-08-10 09:46:38 +0200168 break;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100169 }
170
Johannes Berg97359d12010-08-10 09:46:38 +0200171 key = ieee80211_key_alloc(params->cipher, key_idx, params->key_len,
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200172 params->key, params->seq_len, params->seq,
173 cs);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100174 if (IS_ERR(key))
175 return PTR_ERR(key);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100176
Johannes Berge31b8212010-10-05 19:39:30 +0200177 if (pairwise)
178 key->conf.flags |= IEEE80211_KEY_FLAG_PAIRWISE;
179
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200180 mutex_lock(&local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200181
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100182 if (mac_addr) {
Thomas Pedersenff973af2011-05-03 16:57:12 -0700183 if (ieee80211_vif_is_mesh(&sdata->vif))
184 sta = sta_info_get(sdata, mac_addr);
185 else
186 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berg1626e0f2013-01-11 14:34:25 +0100187 /*
188 * The ASSOC test makes sure the driver is ready to
189 * receive the key. When wpa_supplicant has roamed
190 * using FT, it attempts to set the key before
191 * association has completed, this rejects that attempt
192 * so it will set the key again after assocation.
193 *
194 * TODO: accept the key if we have a station entry and
195 * add it to the device after the station.
196 */
197 if (!sta || !test_sta_flag(sta, WLAN_STA_ASSOC)) {
Johannes Berg79cf2df2013-03-06 22:53:52 +0100198 ieee80211_key_free_unused(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200199 err = -ENOENT;
200 goto out_unlock;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100201 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100202 }
203
Johannes Berge548c492012-09-04 17:08:23 +0200204 switch (sdata->vif.type) {
205 case NL80211_IFTYPE_STATION:
206 if (sdata->u.mgd.mfp != IEEE80211_MFP_DISABLED)
207 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
208 break;
209 case NL80211_IFTYPE_AP:
210 case NL80211_IFTYPE_AP_VLAN:
211 /* Keys without a station are used for TX only */
212 if (key->sta && test_sta_flag(key->sta, WLAN_STA_MFP))
213 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
214 break;
215 case NL80211_IFTYPE_ADHOC:
216 /* no MFP (yet) */
217 break;
218 case NL80211_IFTYPE_MESH_POINT:
219#ifdef CONFIG_MAC80211_MESH
220 if (sdata->u.mesh.security != IEEE80211_MESH_SEC_NONE)
221 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
222 break;
223#endif
224 case NL80211_IFTYPE_WDS:
225 case NL80211_IFTYPE_MONITOR:
226 case NL80211_IFTYPE_P2P_DEVICE:
227 case NL80211_IFTYPE_UNSPECIFIED:
228 case NUM_NL80211_IFTYPES:
229 case NL80211_IFTYPE_P2P_CLIENT:
230 case NL80211_IFTYPE_P2P_GO:
231 /* shouldn't happen */
232 WARN_ON_ONCE(1);
233 break;
234 }
235
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200236 if (sta)
237 sta->cipher_scheme = cs;
238
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300239 err = ieee80211_key_link(key, sdata, sta);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100240
Johannes Berg3b967662008-04-08 17:56:52 +0200241 out_unlock:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200242 mutex_unlock(&local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200243
244 return err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100245}
246
247static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berge31b8212010-10-05 19:39:30 +0200248 u8 key_idx, bool pairwise, const u8 *mac_addr)
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100249{
Johannes Berg5c0c3642011-05-12 14:31:49 +0200250 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
251 struct ieee80211_local *local = sdata->local;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100252 struct sta_info *sta;
Johannes Berg5c0c3642011-05-12 14:31:49 +0200253 struct ieee80211_key *key = NULL;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100254 int ret;
255
Johannes Berg5c0c3642011-05-12 14:31:49 +0200256 mutex_lock(&local->sta_mtx);
257 mutex_lock(&local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200258
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100259 if (mac_addr) {
Johannes Berg3b967662008-04-08 17:56:52 +0200260 ret = -ENOENT;
261
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100262 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100263 if (!sta)
Johannes Berg3b967662008-04-08 17:56:52 +0200264 goto out_unlock;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100265
Johannes Berg5c0c3642011-05-12 14:31:49 +0200266 if (pairwise)
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200267 key = key_mtx_dereference(local, sta->ptk[key_idx]);
Johannes Berg5c0c3642011-05-12 14:31:49 +0200268 else
Johannes Berg40b275b2011-05-13 14:15:49 +0200269 key = key_mtx_dereference(local, sta->gtk[key_idx]);
Johannes Berg5c0c3642011-05-12 14:31:49 +0200270 } else
Johannes Berg40b275b2011-05-13 14:15:49 +0200271 key = key_mtx_dereference(local, sdata->keys[key_idx]);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100272
Johannes Berg5c0c3642011-05-12 14:31:49 +0200273 if (!key) {
Johannes Berg3b967662008-04-08 17:56:52 +0200274 ret = -ENOENT;
275 goto out_unlock;
276 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100277
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100278 ieee80211_key_free(key, true);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100279
Johannes Berg3b967662008-04-08 17:56:52 +0200280 ret = 0;
281 out_unlock:
Johannes Berg5c0c3642011-05-12 14:31:49 +0200282 mutex_unlock(&local->key_mtx);
283 mutex_unlock(&local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200284
285 return ret;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100286}
287
Johannes Berg62da92f2007-12-19 02:03:31 +0100288static int ieee80211_get_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berge31b8212010-10-05 19:39:30 +0200289 u8 key_idx, bool pairwise, const u8 *mac_addr,
290 void *cookie,
Johannes Berg62da92f2007-12-19 02:03:31 +0100291 void (*callback)(void *cookie,
292 struct key_params *params))
293{
Johannes Berg14db74b2008-07-29 13:22:52 +0200294 struct ieee80211_sub_if_data *sdata;
Johannes Berg62da92f2007-12-19 02:03:31 +0100295 struct sta_info *sta = NULL;
296 u8 seq[6] = {0};
297 struct key_params params;
Johannes Berge31b8212010-10-05 19:39:30 +0200298 struct ieee80211_key *key = NULL;
Johannes Bergaba83a0b2011-07-06 21:59:39 +0200299 u64 pn64;
Johannes Berg62da92f2007-12-19 02:03:31 +0100300 u32 iv32;
301 u16 iv16;
302 int err = -ENOENT;
303
Johannes Berg14db74b2008-07-29 13:22:52 +0200304 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
305
Johannes Berg3b967662008-04-08 17:56:52 +0200306 rcu_read_lock();
307
Johannes Berg62da92f2007-12-19 02:03:31 +0100308 if (mac_addr) {
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100309 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berg62da92f2007-12-19 02:03:31 +0100310 if (!sta)
311 goto out;
312
Max Stepanov354e1592013-12-08 13:30:52 +0200313 if (pairwise && key_idx < NUM_DEFAULT_KEYS)
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200314 key = rcu_dereference(sta->ptk[key_idx]);
Max Stepanov31f1f4e2013-12-08 13:31:29 +0200315 else if (!pairwise &&
316 key_idx < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
Johannes Berga3836e02011-05-12 15:11:37 +0200317 key = rcu_dereference(sta->gtk[key_idx]);
Johannes Berg62da92f2007-12-19 02:03:31 +0100318 } else
Johannes Berga3836e02011-05-12 15:11:37 +0200319 key = rcu_dereference(sdata->keys[key_idx]);
Johannes Berg62da92f2007-12-19 02:03:31 +0100320
321 if (!key)
322 goto out;
323
324 memset(&params, 0, sizeof(params));
325
Johannes Berg97359d12010-08-10 09:46:38 +0200326 params.cipher = key->conf.cipher;
Johannes Berg62da92f2007-12-19 02:03:31 +0100327
Johannes Berg97359d12010-08-10 09:46:38 +0200328 switch (key->conf.cipher) {
329 case WLAN_CIPHER_SUITE_TKIP:
Harvey Harrisonb0f76b32008-05-14 16:26:19 -0700330 iv32 = key->u.tkip.tx.iv32;
331 iv16 = key->u.tkip.tx.iv16;
Johannes Berg62da92f2007-12-19 02:03:31 +0100332
Johannes Berg24487982009-04-23 18:52:52 +0200333 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
334 drv_get_tkip_seq(sdata->local,
335 key->conf.hw_key_idx,
336 &iv32, &iv16);
Johannes Berg62da92f2007-12-19 02:03:31 +0100337
338 seq[0] = iv16 & 0xff;
339 seq[1] = (iv16 >> 8) & 0xff;
340 seq[2] = iv32 & 0xff;
341 seq[3] = (iv32 >> 8) & 0xff;
342 seq[4] = (iv32 >> 16) & 0xff;
343 seq[5] = (iv32 >> 24) & 0xff;
344 params.seq = seq;
345 params.seq_len = 6;
346 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200347 case WLAN_CIPHER_SUITE_CCMP:
Johannes Bergaba83a0b2011-07-06 21:59:39 +0200348 pn64 = atomic64_read(&key->u.ccmp.tx_pn);
349 seq[0] = pn64;
350 seq[1] = pn64 >> 8;
351 seq[2] = pn64 >> 16;
352 seq[3] = pn64 >> 24;
353 seq[4] = pn64 >> 32;
354 seq[5] = pn64 >> 40;
Johannes Berg62da92f2007-12-19 02:03:31 +0100355 params.seq = seq;
356 params.seq_len = 6;
357 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200358 case WLAN_CIPHER_SUITE_AES_CMAC:
Johannes Berg75396ae2011-07-06 22:00:35 +0200359 pn64 = atomic64_read(&key->u.aes_cmac.tx_pn);
360 seq[0] = pn64;
361 seq[1] = pn64 >> 8;
362 seq[2] = pn64 >> 16;
363 seq[3] = pn64 >> 24;
364 seq[4] = pn64 >> 32;
365 seq[5] = pn64 >> 40;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200366 params.seq = seq;
367 params.seq_len = 6;
368 break;
Johannes Berg62da92f2007-12-19 02:03:31 +0100369 }
370
371 params.key = key->conf.key;
372 params.key_len = key->conf.keylen;
373
374 callback(cookie, &params);
375 err = 0;
376
377 out:
Johannes Berg3b967662008-04-08 17:56:52 +0200378 rcu_read_unlock();
Johannes Berg62da92f2007-12-19 02:03:31 +0100379 return err;
380}
381
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100382static int ieee80211_config_default_key(struct wiphy *wiphy,
383 struct net_device *dev,
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100384 u8 key_idx, bool uni,
385 bool multi)
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100386{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200387 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100388
Johannes Bergf7e01042010-12-09 19:49:02 +0100389 ieee80211_set_default_key(sdata, key_idx, uni, multi);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100390
391 return 0;
392}
393
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200394static int ieee80211_config_default_mgmt_key(struct wiphy *wiphy,
395 struct net_device *dev,
396 u8 key_idx)
397{
Johannes Berg66c52422010-07-22 13:58:51 +0200398 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200399
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200400 ieee80211_set_default_mgmt_key(sdata, key_idx);
401
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200402 return 0;
403}
404
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800405void sta_set_rate_info_tx(struct sta_info *sta,
406 const struct ieee80211_tx_rate *rate,
407 struct rate_info *rinfo)
408{
409 rinfo->flags = 0;
Johannes Berg8bc83c22012-11-09 18:38:32 +0100410 if (rate->flags & IEEE80211_TX_RC_MCS) {
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800411 rinfo->flags |= RATE_INFO_FLAGS_MCS;
Johannes Berg8bc83c22012-11-09 18:38:32 +0100412 rinfo->mcs = rate->idx;
413 } else if (rate->flags & IEEE80211_TX_RC_VHT_MCS) {
414 rinfo->flags |= RATE_INFO_FLAGS_VHT_MCS;
415 rinfo->mcs = ieee80211_rate_get_vht_mcs(rate);
416 rinfo->nss = ieee80211_rate_get_vht_nss(rate);
417 } else {
418 struct ieee80211_supported_band *sband;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200419 int shift = ieee80211_vif_get_shift(&sta->sdata->vif);
420 u16 brate;
421
Johannes Berg8bc83c22012-11-09 18:38:32 +0100422 sband = sta->local->hw.wiphy->bands[
423 ieee80211_get_sdata_band(sta->sdata)];
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200424 brate = sband->bitrates[rate->idx].bitrate;
425 rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift);
Johannes Berg8bc83c22012-11-09 18:38:32 +0100426 }
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800427 if (rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
428 rinfo->flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
Johannes Berg8bc83c22012-11-09 18:38:32 +0100429 if (rate->flags & IEEE80211_TX_RC_80_MHZ_WIDTH)
430 rinfo->flags |= RATE_INFO_FLAGS_80_MHZ_WIDTH;
431 if (rate->flags & IEEE80211_TX_RC_160_MHZ_WIDTH)
432 rinfo->flags |= RATE_INFO_FLAGS_160_MHZ_WIDTH;
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800433 if (rate->flags & IEEE80211_TX_RC_SHORT_GI)
434 rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800435}
436
Saravana003e6762012-11-28 18:29:38 +0530437void sta_set_rate_info_rx(struct sta_info *sta, struct rate_info *rinfo)
438{
439 rinfo->flags = 0;
440
441 if (sta->last_rx_rate_flag & RX_FLAG_HT) {
442 rinfo->flags |= RATE_INFO_FLAGS_MCS;
443 rinfo->mcs = sta->last_rx_rate_idx;
444 } else if (sta->last_rx_rate_flag & RX_FLAG_VHT) {
445 rinfo->flags |= RATE_INFO_FLAGS_VHT_MCS;
446 rinfo->nss = sta->last_rx_rate_vht_nss;
447 rinfo->mcs = sta->last_rx_rate_idx;
448 } else {
449 struct ieee80211_supported_band *sband;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200450 int shift = ieee80211_vif_get_shift(&sta->sdata->vif);
451 u16 brate;
Saravana003e6762012-11-28 18:29:38 +0530452
453 sband = sta->local->hw.wiphy->bands[
454 ieee80211_get_sdata_band(sta->sdata)];
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200455 brate = sband->bitrates[sta->last_rx_rate_idx].bitrate;
456 rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift);
Saravana003e6762012-11-28 18:29:38 +0530457 }
458
459 if (sta->last_rx_rate_flag & RX_FLAG_40MHZ)
460 rinfo->flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
461 if (sta->last_rx_rate_flag & RX_FLAG_SHORT_GI)
462 rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
Emmanuel Grumbach1b8d2422014-02-05 16:37:11 +0200463 if (sta->last_rx_rate_vht_flag & RX_VHT_FLAG_80MHZ)
Saravana003e6762012-11-28 18:29:38 +0530464 rinfo->flags |= RATE_INFO_FLAGS_80_MHZ_WIDTH;
Emmanuel Grumbach1b8d2422014-02-05 16:37:11 +0200465 if (sta->last_rx_rate_vht_flag & RX_VHT_FLAG_80P80MHZ)
Saravana003e6762012-11-28 18:29:38 +0530466 rinfo->flags |= RATE_INFO_FLAGS_80P80_MHZ_WIDTH;
Emmanuel Grumbach1b8d2422014-02-05 16:37:11 +0200467 if (sta->last_rx_rate_vht_flag & RX_VHT_FLAG_160MHZ)
Saravana003e6762012-11-28 18:29:38 +0530468 rinfo->flags |= RATE_INFO_FLAGS_160_MHZ_WIDTH;
469}
470
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100471static void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo)
472{
Johannes Bergd0709a62008-02-25 16:27:46 +0100473 struct ieee80211_sub_if_data *sdata = sta->sdata;
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300474 struct ieee80211_local *local = sdata->local;
Antonio Quartullicca674d2014-05-19 21:53:20 +0200475 struct rate_control_ref *ref = local->rate_ctrl;
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530476 struct timespec uptime;
Johannes Berg560d2682013-02-05 10:55:21 +0100477 u64 packets = 0;
Antonio Quartullicca674d2014-05-19 21:53:20 +0200478 u32 thr = 0;
Felix Fietkauef0621e2013-04-22 16:29:31 +0200479 int i, ac;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100480
Johannes Bergf5ea9122009-08-07 16:17:38 +0200481 sinfo->generation = sdata->local->sta_generation;
482
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100483 sinfo->filled = STATION_INFO_INACTIVE_TIME |
Johannes Berg560d2682013-02-05 10:55:21 +0100484 STATION_INFO_RX_BYTES64 |
485 STATION_INFO_TX_BYTES64 |
Jouni Malinen98c8a60a2009-02-17 13:24:57 +0200486 STATION_INFO_RX_PACKETS |
487 STATION_INFO_TX_PACKETS |
Bruno Randolfb206b4e2010-10-06 18:34:12 +0900488 STATION_INFO_TX_RETRIES |
489 STATION_INFO_TX_FAILED |
Ben Greear5a5c7312010-10-07 16:39:20 -0700490 STATION_INFO_TX_BITRATE |
Felix Fietkau3af63342011-02-27 22:08:01 +0100491 STATION_INFO_RX_BITRATE |
Paul Stewartf4263c92011-03-31 09:25:41 -0700492 STATION_INFO_RX_DROP_MISC |
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530493 STATION_INFO_BSS_PARAM |
Helmut Schaa7a724762011-10-13 16:30:40 +0200494 STATION_INFO_CONNECTED_TIME |
Paul Stewarta85e1d52011-12-09 11:01:49 -0800495 STATION_INFO_STA_FLAGS |
496 STATION_INFO_BEACON_LOSS_COUNT;
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530497
498 do_posix_clock_monotonic_gettime(&uptime);
499 sinfo->connected_time = uptime.tv_sec - sta->last_connected;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100500
501 sinfo->inactive_time = jiffies_to_msecs(jiffies - sta->last_rx);
Johannes Berg560d2682013-02-05 10:55:21 +0100502 sinfo->tx_bytes = 0;
503 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
504 sinfo->tx_bytes += sta->tx_bytes[ac];
505 packets += sta->tx_packets[ac];
506 }
507 sinfo->tx_packets = packets;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100508 sinfo->rx_bytes = sta->rx_bytes;
Jouni Malinen98c8a60a2009-02-17 13:24:57 +0200509 sinfo->rx_packets = sta->rx_packets;
Bruno Randolfb206b4e2010-10-06 18:34:12 +0900510 sinfo->tx_retries = sta->tx_retry_count;
511 sinfo->tx_failed = sta->tx_retry_failed;
Ben Greear5a5c7312010-10-07 16:39:20 -0700512 sinfo->rx_dropped_misc = sta->rx_dropped;
Paul Stewarta85e1d52011-12-09 11:01:49 -0800513 sinfo->beacon_loss_count = sta->beacon_loss_count;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100514
John W. Linville19deffb2009-12-08 17:10:13 -0500515 if ((sta->local->hw.flags & IEEE80211_HW_SIGNAL_DBM) ||
516 (sta->local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC)) {
Bruno Randolf541a45a2010-12-02 19:12:43 +0900517 sinfo->filled |= STATION_INFO_SIGNAL | STATION_INFO_SIGNAL_AVG;
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300518 if (!local->ops->get_rssi ||
519 drv_get_rssi(local, sdata, &sta->sta, &sinfo->signal))
520 sinfo->signal = (s8)sta->last_signal;
Bruno Randolf541a45a2010-12-02 19:12:43 +0900521 sinfo->signal_avg = (s8) -ewma_read(&sta->avg_signal);
Henning Rogge420e7fa2008-12-11 22:04:19 +0100522 }
Felix Fietkauef0621e2013-04-22 16:29:31 +0200523 if (sta->chains) {
524 sinfo->filled |= STATION_INFO_CHAIN_SIGNAL |
525 STATION_INFO_CHAIN_SIGNAL_AVG;
526
527 sinfo->chains = sta->chains;
528 for (i = 0; i < ARRAY_SIZE(sinfo->chain_signal); i++) {
529 sinfo->chain_signal[i] = sta->chain_signal_last[i];
530 sinfo->chain_signal_avg[i] =
531 (s8) -ewma_read(&sta->chain_signal_avg[i]);
532 }
533 }
Henning Rogge420e7fa2008-12-11 22:04:19 +0100534
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800535 sta_set_rate_info_tx(sta, &sta->last_tx_rate, &sinfo->txrate);
Saravana003e6762012-11-28 18:29:38 +0530536 sta_set_rate_info_rx(sta, &sinfo->rxrate);
Henning Rogge420e7fa2008-12-11 22:04:19 +0100537
Johannes Berg902acc72008-02-23 15:17:19 +0100538 if (ieee80211_vif_is_mesh(&sdata->vif)) {
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100539#ifdef CONFIG_MAC80211_MESH
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100540 sinfo->filled |= STATION_INFO_LLID |
541 STATION_INFO_PLID |
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100542 STATION_INFO_PLINK_STATE |
543 STATION_INFO_LOCAL_PM |
544 STATION_INFO_PEER_PM |
545 STATION_INFO_NONPEER_PM;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100546
Chun-Yeow Yeoh6f101ef2013-11-13 15:43:03 +0800547 sinfo->llid = sta->llid;
548 sinfo->plid = sta->plid;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100549 sinfo->plink_state = sta->plink_state;
Javier Cardonad299a1f2012-03-31 11:31:33 -0700550 if (test_sta_flag(sta, WLAN_STA_TOFFSET_KNOWN)) {
551 sinfo->filled |= STATION_INFO_T_OFFSET;
552 sinfo->t_offset = sta->t_offset;
553 }
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100554 sinfo->local_pm = sta->local_pm;
555 sinfo->peer_pm = sta->peer_pm;
556 sinfo->nonpeer_pm = sta->nonpeer_pm;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100557#endif
Johannes Berg902acc72008-02-23 15:17:19 +0100558 }
Paul Stewartf4263c92011-03-31 09:25:41 -0700559
560 sinfo->bss_param.flags = 0;
561 if (sdata->vif.bss_conf.use_cts_prot)
562 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_CTS_PROT;
563 if (sdata->vif.bss_conf.use_short_preamble)
564 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_PREAMBLE;
565 if (sdata->vif.bss_conf.use_short_slot)
566 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_SLOT_TIME;
567 sinfo->bss_param.dtim_period = sdata->local->hw.conf.ps_dtim_period;
568 sinfo->bss_param.beacon_interval = sdata->vif.bss_conf.beacon_int;
Helmut Schaa7a724762011-10-13 16:30:40 +0200569
570 sinfo->sta_flags.set = 0;
571 sinfo->sta_flags.mask = BIT(NL80211_STA_FLAG_AUTHORIZED) |
572 BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) |
573 BIT(NL80211_STA_FLAG_WME) |
574 BIT(NL80211_STA_FLAG_MFP) |
Helmut Schaae4121562011-11-05 14:15:24 +0100575 BIT(NL80211_STA_FLAG_AUTHENTICATED) |
Johannes Bergd582cff2012-10-26 17:53:44 +0200576 BIT(NL80211_STA_FLAG_ASSOCIATED) |
Helmut Schaae4121562011-11-05 14:15:24 +0100577 BIT(NL80211_STA_FLAG_TDLS_PEER);
Helmut Schaa7a724762011-10-13 16:30:40 +0200578 if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
579 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_AUTHORIZED);
580 if (test_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE))
581 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_SHORT_PREAMBLE);
582 if (test_sta_flag(sta, WLAN_STA_WME))
583 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_WME);
584 if (test_sta_flag(sta, WLAN_STA_MFP))
585 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_MFP);
586 if (test_sta_flag(sta, WLAN_STA_AUTH))
587 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_AUTHENTICATED);
Johannes Bergd582cff2012-10-26 17:53:44 +0200588 if (test_sta_flag(sta, WLAN_STA_ASSOC))
589 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_ASSOCIATED);
Helmut Schaae4121562011-11-05 14:15:24 +0100590 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER))
591 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_TDLS_PEER);
Antonio Quartullicca674d2014-05-19 21:53:20 +0200592
593 /* check if the driver has a SW RC implementation */
594 if (ref && ref->ops->get_expected_throughput)
595 thr = ref->ops->get_expected_throughput(sta->rate_ctrl_priv);
596 else
597 thr = drv_get_expected_throughput(local, &sta->sta);
598
599 if (thr != 0) {
600 sinfo->filled |= STATION_INFO_EXPECTED_THROUGHPUT;
601 sinfo->expected_throughput = thr;
602 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100603}
604
Ben Greearb1ab7922012-04-23 12:50:30 -0700605static const char ieee80211_gstrings_sta_stats[][ETH_GSTRING_LEN] = {
606 "rx_packets", "rx_bytes", "wep_weak_iv_count",
607 "rx_duplicates", "rx_fragments", "rx_dropped",
608 "tx_packets", "tx_bytes", "tx_fragments",
609 "tx_filtered", "tx_retry_failed", "tx_retries",
Ben Greear3073a7c2012-04-23 12:50:32 -0700610 "beacon_loss", "sta_state", "txrate", "rxrate", "signal",
611 "channel", "noise", "ch_time", "ch_time_busy",
612 "ch_time_ext_busy", "ch_time_rx", "ch_time_tx"
Ben Greearb1ab7922012-04-23 12:50:30 -0700613};
614#define STA_STATS_LEN ARRAY_SIZE(ieee80211_gstrings_sta_stats)
615
616static int ieee80211_get_et_sset_count(struct wiphy *wiphy,
617 struct net_device *dev,
618 int sset)
619{
Ben Greeare3521142012-04-23 12:50:31 -0700620 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
621 int rv = 0;
Ben Greearb1ab7922012-04-23 12:50:30 -0700622
Ben Greeare3521142012-04-23 12:50:31 -0700623 if (sset == ETH_SS_STATS)
624 rv += STA_STATS_LEN;
625
626 rv += drv_get_et_sset_count(sdata, sset);
627
628 if (rv == 0)
629 return -EOPNOTSUPP;
630 return rv;
Ben Greearb1ab7922012-04-23 12:50:30 -0700631}
632
633static void ieee80211_get_et_stats(struct wiphy *wiphy,
634 struct net_device *dev,
635 struct ethtool_stats *stats,
636 u64 *data)
637{
638 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg55de9082012-07-26 17:24:39 +0200639 struct ieee80211_chanctx_conf *chanctx_conf;
640 struct ieee80211_channel *channel;
Ben Greearb1ab7922012-04-23 12:50:30 -0700641 struct sta_info *sta;
642 struct ieee80211_local *local = sdata->local;
Ben Greear3073a7c2012-04-23 12:50:32 -0700643 struct station_info sinfo;
644 struct survey_info survey;
645 int i, q;
646#define STA_STATS_SURVEY_LEN 7
Ben Greearb1ab7922012-04-23 12:50:30 -0700647
648 memset(data, 0, sizeof(u64) * STA_STATS_LEN);
649
650#define ADD_STA_STATS(sta) \
651 do { \
652 data[i++] += sta->rx_packets; \
653 data[i++] += sta->rx_bytes; \
654 data[i++] += sta->wep_weak_iv_count; \
655 data[i++] += sta->num_duplicates; \
656 data[i++] += sta->rx_fragments; \
657 data[i++] += sta->rx_dropped; \
658 \
Johannes Berg560d2682013-02-05 10:55:21 +0100659 data[i++] += sinfo.tx_packets; \
660 data[i++] += sinfo.tx_bytes; \
Ben Greearb1ab7922012-04-23 12:50:30 -0700661 data[i++] += sta->tx_fragments; \
662 data[i++] += sta->tx_filtered_count; \
663 data[i++] += sta->tx_retry_failed; \
664 data[i++] += sta->tx_retry_count; \
665 data[i++] += sta->beacon_loss_count; \
666 } while (0)
667
668 /* For Managed stations, find the single station based on BSSID
669 * and use that. For interface types, iterate through all available
670 * stations and add stats for any station that is assigned to this
671 * network device.
672 */
673
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300674 mutex_lock(&local->sta_mtx);
Ben Greearb1ab7922012-04-23 12:50:30 -0700675
676 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
677 sta = sta_info_get_bss(sdata, sdata->u.mgd.bssid);
Ben Greear3073a7c2012-04-23 12:50:32 -0700678
679 if (!(sta && !WARN_ON(sta->sdata->dev != dev)))
680 goto do_survey;
681
Johannes Berg560d2682013-02-05 10:55:21 +0100682 sinfo.filled = 0;
683 sta_set_sinfo(sta, &sinfo);
684
Ben Greear3073a7c2012-04-23 12:50:32 -0700685 i = 0;
686 ADD_STA_STATS(sta);
687
688 data[i++] = sta->sta_state;
689
Ben Greear3073a7c2012-04-23 12:50:32 -0700690
Joe Perches52042672012-05-30 13:25:54 -0700691 if (sinfo.filled & STATION_INFO_TX_BITRATE)
Ben Greear3073a7c2012-04-23 12:50:32 -0700692 data[i] = 100000 *
693 cfg80211_calculate_bitrate(&sinfo.txrate);
694 i++;
Joe Perches52042672012-05-30 13:25:54 -0700695 if (sinfo.filled & STATION_INFO_RX_BITRATE)
Ben Greear3073a7c2012-04-23 12:50:32 -0700696 data[i] = 100000 *
697 cfg80211_calculate_bitrate(&sinfo.rxrate);
698 i++;
699
Joe Perches52042672012-05-30 13:25:54 -0700700 if (sinfo.filled & STATION_INFO_SIGNAL_AVG)
Ben Greear3073a7c2012-04-23 12:50:32 -0700701 data[i] = (u8)sinfo.signal_avg;
702 i++;
Ben Greearb1ab7922012-04-23 12:50:30 -0700703 } else {
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300704 list_for_each_entry(sta, &local->sta_list, list) {
Ben Greearb1ab7922012-04-23 12:50:30 -0700705 /* Make sure this station belongs to the proper dev */
706 if (sta->sdata->dev != dev)
707 continue;
708
Johannes Berge13bae42013-07-08 10:43:31 +0200709 sinfo.filled = 0;
710 sta_set_sinfo(sta, &sinfo);
Ben Greearb1ab7922012-04-23 12:50:30 -0700711 i = 0;
712 ADD_STA_STATS(sta);
Ben Greearb1ab7922012-04-23 12:50:30 -0700713 }
714 }
715
Ben Greear3073a7c2012-04-23 12:50:32 -0700716do_survey:
717 i = STA_STATS_LEN - STA_STATS_SURVEY_LEN;
718 /* Get survey stats for current channel */
Johannes Berg55de9082012-07-26 17:24:39 +0200719 survey.filled = 0;
Ben Greear3073a7c2012-04-23 12:50:32 -0700720
Johannes Berg55de9082012-07-26 17:24:39 +0200721 rcu_read_lock();
722 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
723 if (chanctx_conf)
Johannes Berg4bf88532012-11-09 11:39:59 +0100724 channel = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +0200725 else
726 channel = NULL;
727 rcu_read_unlock();
728
729 if (channel) {
730 q = 0;
731 do {
732 survey.filled = 0;
733 if (drv_get_survey(local, q, &survey) != 0) {
734 survey.filled = 0;
735 break;
736 }
737 q++;
738 } while (channel != survey.channel);
Ben Greear3073a7c2012-04-23 12:50:32 -0700739 }
740
741 if (survey.filled)
742 data[i++] = survey.channel->center_freq;
743 else
744 data[i++] = 0;
745 if (survey.filled & SURVEY_INFO_NOISE_DBM)
746 data[i++] = (u8)survey.noise;
747 else
748 data[i++] = -1LL;
749 if (survey.filled & SURVEY_INFO_CHANNEL_TIME)
750 data[i++] = survey.channel_time;
751 else
752 data[i++] = -1LL;
753 if (survey.filled & SURVEY_INFO_CHANNEL_TIME_BUSY)
754 data[i++] = survey.channel_time_busy;
755 else
756 data[i++] = -1LL;
757 if (survey.filled & SURVEY_INFO_CHANNEL_TIME_EXT_BUSY)
758 data[i++] = survey.channel_time_ext_busy;
759 else
760 data[i++] = -1LL;
761 if (survey.filled & SURVEY_INFO_CHANNEL_TIME_RX)
762 data[i++] = survey.channel_time_rx;
763 else
764 data[i++] = -1LL;
765 if (survey.filled & SURVEY_INFO_CHANNEL_TIME_TX)
766 data[i++] = survey.channel_time_tx;
767 else
768 data[i++] = -1LL;
769
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300770 mutex_unlock(&local->sta_mtx);
Ben Greeare3521142012-04-23 12:50:31 -0700771
Ben Greear3073a7c2012-04-23 12:50:32 -0700772 if (WARN_ON(i != STA_STATS_LEN))
773 return;
774
Ben Greeare3521142012-04-23 12:50:31 -0700775 drv_get_et_stats(sdata, stats, &(data[STA_STATS_LEN]));
Ben Greearb1ab7922012-04-23 12:50:30 -0700776}
777
778static void ieee80211_get_et_strings(struct wiphy *wiphy,
779 struct net_device *dev,
780 u32 sset, u8 *data)
781{
Ben Greeare3521142012-04-23 12:50:31 -0700782 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
783 int sz_sta_stats = 0;
784
Ben Greearb1ab7922012-04-23 12:50:30 -0700785 if (sset == ETH_SS_STATS) {
Ben Greeare3521142012-04-23 12:50:31 -0700786 sz_sta_stats = sizeof(ieee80211_gstrings_sta_stats);
Johannes Bergbd500af2013-05-06 21:09:46 +0200787 memcpy(data, ieee80211_gstrings_sta_stats, sz_sta_stats);
Ben Greearb1ab7922012-04-23 12:50:30 -0700788 }
Ben Greeare3521142012-04-23 12:50:31 -0700789 drv_get_et_strings(sdata, sset, &(data[sz_sta_stats]));
Ben Greearb1ab7922012-04-23 12:50:30 -0700790}
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100791
792static int ieee80211_dump_station(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +0200793 int idx, u8 *mac, struct station_info *sinfo)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100794{
Johannes Berg3b53fde82009-11-16 12:00:37 +0100795 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300796 struct ieee80211_local *local = sdata->local;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100797 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100798 int ret = -ENOENT;
799
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300800 mutex_lock(&local->sta_mtx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100801
Johannes Berg3b53fde82009-11-16 12:00:37 +0100802 sta = sta_info_get_by_idx(sdata, idx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100803 if (sta) {
804 ret = 0;
Johannes Berg17741cd2008-09-11 00:02:02 +0200805 memcpy(mac, sta->sta.addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100806 sta_set_sinfo(sta, sinfo);
807 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100808
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300809 mutex_unlock(&local->sta_mtx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100810
Johannes Bergd0709a62008-02-25 16:27:46 +0100811 return ret;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100812}
813
Holger Schurig12897232010-04-19 10:23:57 +0200814static int ieee80211_dump_survey(struct wiphy *wiphy, struct net_device *dev,
815 int idx, struct survey_info *survey)
816{
817 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
818
Holger Schurig12897232010-04-19 10:23:57 +0200819 return drv_get_survey(local, idx, survey);
820}
821
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100822static int ieee80211_get_station(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +0200823 const u8 *mac, struct station_info *sinfo)
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100824{
Johannes Bergabe60632009-11-25 17:46:18 +0100825 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300826 struct ieee80211_local *local = sdata->local;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100827 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100828 int ret = -ENOENT;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100829
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300830 mutex_lock(&local->sta_mtx);
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100831
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100832 sta = sta_info_get_bss(sdata, mac);
Johannes Bergd0709a62008-02-25 16:27:46 +0100833 if (sta) {
834 ret = 0;
835 sta_set_sinfo(sta, sinfo);
836 }
837
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300838 mutex_unlock(&local->sta_mtx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100839
840 return ret;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100841}
842
Johannes Berge8c9bd52012-06-06 08:18:22 +0200843static int ieee80211_set_monitor_channel(struct wiphy *wiphy,
Johannes Berg683b6d32012-11-08 21:25:48 +0100844 struct cfg80211_chan_def *chandef)
Johannes Berge8c9bd52012-06-06 08:18:22 +0200845{
Johannes Berg55de9082012-07-26 17:24:39 +0200846 struct ieee80211_local *local = wiphy_priv(wiphy);
847 struct ieee80211_sub_if_data *sdata;
848 int ret = 0;
849
Johannes Berg4bf88532012-11-09 11:39:59 +0100850 if (cfg80211_chandef_identical(&local->monitor_chandef, chandef))
Johannes Berg55de9082012-07-26 17:24:39 +0200851 return 0;
852
Johannes Berg34a37402013-12-18 09:43:33 +0100853 mutex_lock(&local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +0200854 mutex_lock(&local->iflist_mtx);
855 if (local->use_chanctx) {
856 sdata = rcu_dereference_protected(
857 local->monitor_sdata,
858 lockdep_is_held(&local->iflist_mtx));
859 if (sdata) {
860 ieee80211_vif_release_channel(sdata);
Johannes Berg4bf88532012-11-09 11:39:59 +0100861 ret = ieee80211_vif_use_channel(sdata, chandef,
Johannes Berg55de9082012-07-26 17:24:39 +0200862 IEEE80211_CHANCTX_EXCLUSIVE);
863 }
864 } else if (local->open_count == local->monitors) {
Karl Beldan675a0b02013-03-25 16:26:57 +0100865 local->_oper_chandef = *chandef;
Johannes Berg55de9082012-07-26 17:24:39 +0200866 ieee80211_hw_config(local, 0);
867 }
868
Johannes Berg4bf88532012-11-09 11:39:59 +0100869 if (ret == 0)
870 local->monitor_chandef = *chandef;
Johannes Berg55de9082012-07-26 17:24:39 +0200871 mutex_unlock(&local->iflist_mtx);
Johannes Berg34a37402013-12-18 09:43:33 +0100872 mutex_unlock(&local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +0200873
874 return ret;
Johannes Berge8c9bd52012-06-06 08:18:22 +0200875}
876
Arik Nemtsov02945822011-11-10 11:28:57 +0200877static int ieee80211_set_probe_resp(struct ieee80211_sub_if_data *sdata,
Johannes Berg88600202012-02-13 15:17:18 +0100878 const u8 *resp, size_t resp_len)
Arik Nemtsov02945822011-11-10 11:28:57 +0200879{
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300880 struct probe_resp *new, *old;
Arik Nemtsov02945822011-11-10 11:28:57 +0200881
882 if (!resp || !resp_len)
Sujith Manoharanaba4e6f2012-08-22 14:21:07 +0530883 return 1;
Arik Nemtsov02945822011-11-10 11:28:57 +0200884
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100885 old = sdata_dereference(sdata->u.ap.probe_resp, sdata);
Arik Nemtsov02945822011-11-10 11:28:57 +0200886
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300887 new = kzalloc(sizeof(struct probe_resp) + resp_len, GFP_KERNEL);
Arik Nemtsov02945822011-11-10 11:28:57 +0200888 if (!new)
889 return -ENOMEM;
890
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300891 new->len = resp_len;
892 memcpy(new->data, resp, resp_len);
Arik Nemtsov02945822011-11-10 11:28:57 +0200893
894 rcu_assign_pointer(sdata->u.ap.probe_resp, new);
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300895 if (old)
896 kfree_rcu(old, rcu_head);
Arik Nemtsov02945822011-11-10 11:28:57 +0200897
898 return 0;
899}
900
Luciano Coelho0ae07962013-12-08 09:42:25 +0200901static int ieee80211_assign_beacon(struct ieee80211_sub_if_data *sdata,
902 struct cfg80211_beacon_data *params)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100903{
904 struct beacon_data *new, *old;
905 int new_head_len, new_tail_len;
Johannes Berg88600202012-02-13 15:17:18 +0100906 int size, err;
907 u32 changed = BSS_CHANGED_BEACON;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100908
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100909 old = sdata_dereference(sdata->u.ap.beacon, sdata);
910
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100911
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100912 /* Need to have a beacon head if we don't have one yet */
913 if (!params->head && !old)
Johannes Berg88600202012-02-13 15:17:18 +0100914 return -EINVAL;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100915
916 /* new or old head? */
917 if (params->head)
918 new_head_len = params->head_len;
919 else
920 new_head_len = old->head_len;
921
922 /* new or old tail? */
923 if (params->tail || !old)
924 /* params->tail_len will be zero for !params->tail */
925 new_tail_len = params->tail_len;
926 else
927 new_tail_len = old->tail_len;
928
929 size = sizeof(*new) + new_head_len + new_tail_len;
930
931 new = kzalloc(size, GFP_KERNEL);
932 if (!new)
933 return -ENOMEM;
934
935 /* start filling the new info now */
936
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100937 /*
938 * pointers go into the block we allocated,
939 * memory is | beacon_data | head | tail |
940 */
941 new->head = ((u8 *) new) + sizeof(*new);
942 new->tail = new->head + new_head_len;
943 new->head_len = new_head_len;
944 new->tail_len = new_tail_len;
945
946 /* copy in head */
947 if (params->head)
948 memcpy(new->head, params->head, new_head_len);
949 else
950 memcpy(new->head, old->head, new_head_len);
951
952 /* copy in optional tail */
953 if (params->tail)
954 memcpy(new->tail, params->tail, new_tail_len);
955 else
956 if (old)
957 memcpy(new->tail, old->tail, new_tail_len);
958
Johannes Berg88600202012-02-13 15:17:18 +0100959 err = ieee80211_set_probe_resp(sdata, params->probe_resp,
960 params->probe_resp_len);
961 if (err < 0)
962 return err;
963 if (err == 0)
964 changed |= BSS_CHANGED_AP_PROBE_RESP;
Johannes Berg19885c42010-02-05 11:45:06 +0100965
Eric Dumazetcf778b02012-01-12 04:41:32 +0000966 rcu_assign_pointer(sdata->u.ap.beacon, new);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100967
Johannes Berg88600202012-02-13 15:17:18 +0100968 if (old)
969 kfree_rcu(old, rcu_head);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100970
Johannes Berg88600202012-02-13 15:17:18 +0100971 return changed;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100972}
973
Johannes Berg88600202012-02-13 15:17:18 +0100974static int ieee80211_start_ap(struct wiphy *wiphy, struct net_device *dev,
975 struct cfg80211_ap_settings *params)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100976{
Johannes Berg88600202012-02-13 15:17:18 +0100977 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg34a37402013-12-18 09:43:33 +0100978 struct ieee80211_local *local = sdata->local;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100979 struct beacon_data *old;
Johannes Berg665c93a2011-11-04 11:18:11 +0100980 struct ieee80211_sub_if_data *vlan;
Johannes Berg88600202012-02-13 15:17:18 +0100981 u32 changed = BSS_CHANGED_BEACON_INT |
982 BSS_CHANGED_BEACON_ENABLED |
983 BSS_CHANGED_BEACON |
Johannes Berg339afbf2012-11-14 15:21:17 +0100984 BSS_CHANGED_SSID |
985 BSS_CHANGED_P2P_PS;
Johannes Berg88600202012-02-13 15:17:18 +0100986 int err;
Johannes Berg14db74b2008-07-29 13:22:52 +0200987
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100988 old = sdata_dereference(sdata->u.ap.beacon, sdata);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100989 if (old)
990 return -EALREADY;
991
Johannes Berg04ecd252012-09-11 14:34:12 +0200992 /* TODO: make hostapd tell us what it wants */
993 sdata->smps_mode = IEEE80211_SMPS_OFF;
994 sdata->needed_rx_chains = sdata->local->rx_chains;
995
Johannes Berg34a37402013-12-18 09:43:33 +0100996 mutex_lock(&local->mtx);
Johannes Berg4bf88532012-11-09 11:39:59 +0100997 err = ieee80211_vif_use_channel(sdata, &params->chandef,
Johannes Berg55de9082012-07-26 17:24:39 +0200998 IEEE80211_CHANCTX_SHARED);
Michal Kazior4e141da2014-03-05 13:14:08 +0100999 if (!err)
1000 ieee80211_vif_copy_chanctx_to_vlans(sdata, false);
Johannes Berg34a37402013-12-18 09:43:33 +01001001 mutex_unlock(&local->mtx);
Johannes Bergaa430da2012-05-16 23:50:18 +02001002 if (err)
1003 return err;
1004
Johannes Berg665c93a2011-11-04 11:18:11 +01001005 /*
1006 * Apply control port protocol, this allows us to
1007 * not encrypt dynamic WEP control frames.
1008 */
1009 sdata->control_port_protocol = params->crypto.control_port_ethertype;
1010 sdata->control_port_no_encrypt = params->crypto.control_port_no_encrypt;
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001011 sdata->encrypt_headroom = ieee80211_cs_headroom(sdata->local,
1012 &params->crypto,
1013 sdata->vif.type);
1014
Johannes Berg665c93a2011-11-04 11:18:11 +01001015 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list) {
1016 vlan->control_port_protocol =
1017 params->crypto.control_port_ethertype;
1018 vlan->control_port_no_encrypt =
1019 params->crypto.control_port_no_encrypt;
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001020 vlan->encrypt_headroom =
1021 ieee80211_cs_headroom(sdata->local,
1022 &params->crypto,
1023 vlan->vif.type);
Johannes Berg665c93a2011-11-04 11:18:11 +01001024 }
1025
Johannes Berg88600202012-02-13 15:17:18 +01001026 sdata->vif.bss_conf.beacon_int = params->beacon_interval;
1027 sdata->vif.bss_conf.dtim_period = params->dtim_period;
Johannes Bergd6a83222012-12-14 14:06:28 +01001028 sdata->vif.bss_conf.enable_beacon = true;
Johannes Berg88600202012-02-13 15:17:18 +01001029
1030 sdata->vif.bss_conf.ssid_len = params->ssid_len;
1031 if (params->ssid_len)
1032 memcpy(sdata->vif.bss_conf.ssid, params->ssid,
1033 params->ssid_len);
1034 sdata->vif.bss_conf.hidden_ssid =
1035 (params->hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE);
1036
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001037 memset(&sdata->vif.bss_conf.p2p_noa_attr, 0,
1038 sizeof(sdata->vif.bss_conf.p2p_noa_attr));
1039 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow =
1040 params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
1041 if (params->p2p_opp_ps)
1042 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
1043 IEEE80211_P2P_OPPPS_ENABLE_BIT;
Johannes Berg339afbf2012-11-14 15:21:17 +01001044
Johannes Berg88600202012-02-13 15:17:18 +01001045 err = ieee80211_assign_beacon(sdata, &params->beacon);
Emmanuel Grumbach0297ea12014-01-27 11:07:42 +02001046 if (err < 0) {
1047 ieee80211_vif_release_channel(sdata);
Johannes Berg88600202012-02-13 15:17:18 +01001048 return err;
Emmanuel Grumbach0297ea12014-01-27 11:07:42 +02001049 }
Johannes Berg88600202012-02-13 15:17:18 +01001050 changed |= err;
1051
Johannes Berg10416382012-10-19 15:44:42 +02001052 err = drv_start_ap(sdata->local, sdata);
1053 if (err) {
Simon Wunderlich7ca133b2013-11-21 18:19:50 +01001054 old = sdata_dereference(sdata->u.ap.beacon, sdata);
1055
Johannes Berg10416382012-10-19 15:44:42 +02001056 if (old)
1057 kfree_rcu(old, rcu_head);
1058 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
Emmanuel Grumbach0297ea12014-01-27 11:07:42 +02001059 ieee80211_vif_release_channel(sdata);
Johannes Berg10416382012-10-19 15:44:42 +02001060 return err;
1061 }
1062
Thomas Pedersen057d5f42013-12-19 10:25:15 -08001063 ieee80211_recalc_dtim(local, sdata);
Johannes Berg88600202012-02-13 15:17:18 +01001064 ieee80211_bss_info_change_notify(sdata, changed);
1065
Johannes Berg3edaf3e2012-04-03 10:24:00 +02001066 netif_carrier_on(dev);
1067 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
1068 netif_carrier_on(vlan->dev);
1069
Johannes Berg665c93a2011-11-04 11:18:11 +01001070 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001071}
1072
Johannes Berg88600202012-02-13 15:17:18 +01001073static int ieee80211_change_beacon(struct wiphy *wiphy, struct net_device *dev,
1074 struct cfg80211_beacon_data *params)
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001075{
Johannes Berg14db74b2008-07-29 13:22:52 +02001076 struct ieee80211_sub_if_data *sdata;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001077 struct beacon_data *old;
Johannes Berg88600202012-02-13 15:17:18 +01001078 int err;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001079
Johannes Berg14db74b2008-07-29 13:22:52 +02001080 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Michal Kaziordbd72852014-01-29 07:56:21 +01001081 sdata_assert_lock(sdata);
Johannes Berg14db74b2008-07-29 13:22:52 +02001082
Simon Wunderlich73da7d52013-07-11 16:09:06 +02001083 /* don't allow changing the beacon while CSA is in place - offset
1084 * of channel switch counter may change
1085 */
1086 if (sdata->vif.csa_active)
1087 return -EBUSY;
1088
Simon Wunderlich7ca133b2013-11-21 18:19:50 +01001089 old = sdata_dereference(sdata->u.ap.beacon, sdata);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001090 if (!old)
1091 return -ENOENT;
1092
Johannes Berg88600202012-02-13 15:17:18 +01001093 err = ieee80211_assign_beacon(sdata, params);
1094 if (err < 0)
1095 return err;
1096 ieee80211_bss_info_change_notify(sdata, err);
1097 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001098}
1099
Michal Kazior59af6922014-04-09 15:10:59 +02001100bool ieee80211_csa_needs_block_tx(struct ieee80211_local *local)
1101{
1102 struct ieee80211_sub_if_data *sdata;
1103
1104 lockdep_assert_held(&local->mtx);
1105
1106 rcu_read_lock();
1107 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
1108 if (!ieee80211_sdata_running(sdata))
1109 continue;
1110
1111 if (!sdata->vif.csa_active)
1112 continue;
1113
1114 if (!sdata->csa_block_tx)
1115 continue;
1116
1117 rcu_read_unlock();
1118 return true;
1119 }
1120 rcu_read_unlock();
1121
1122 return false;
1123}
1124
Johannes Berg88600202012-02-13 15:17:18 +01001125static int ieee80211_stop_ap(struct wiphy *wiphy, struct net_device *dev)
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001126{
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001127 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1128 struct ieee80211_sub_if_data *vlan;
1129 struct ieee80211_local *local = sdata->local;
1130 struct beacon_data *old_beacon;
1131 struct probe_resp *old_probe_resp;
Janusz Dziedzicd2859df2013-11-06 13:55:51 +01001132 struct cfg80211_chan_def chandef;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001133
Michal Kaziordbd72852014-01-29 07:56:21 +01001134 sdata_assert_lock(sdata);
1135
Simon Wunderlich7ca133b2013-11-21 18:19:50 +01001136 old_beacon = sdata_dereference(sdata->u.ap.beacon, sdata);
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001137 if (!old_beacon)
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001138 return -ENOENT;
Simon Wunderlich7ca133b2013-11-21 18:19:50 +01001139 old_probe_resp = sdata_dereference(sdata->u.ap.probe_resp, sdata);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001140
Simon Wunderlich73da7d52013-07-11 16:09:06 +02001141 /* abort any running channel switch */
Michal Kazior59af6922014-04-09 15:10:59 +02001142 mutex_lock(&local->mtx);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02001143 sdata->vif.csa_active = false;
Michal Kazior59af6922014-04-09 15:10:59 +02001144 if (!ieee80211_csa_needs_block_tx(local))
1145 ieee80211_wake_queues_by_reason(&local->hw,
1146 IEEE80211_MAX_QUEUE_MAP,
1147 IEEE80211_QUEUE_STOP_REASON_CSA);
1148 mutex_unlock(&local->mtx);
1149
Simon Wunderlich1f3b8a22013-11-21 18:19:53 +01001150 kfree(sdata->u.ap.next_beacon);
1151 sdata->u.ap.next_beacon = NULL;
1152
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001153 /* turn off carrier for this interface and dependent VLANs */
Johannes Berg3edaf3e2012-04-03 10:24:00 +02001154 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
1155 netif_carrier_off(vlan->dev);
1156 netif_carrier_off(dev);
1157
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001158 /* remove beacon and probe response */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001159 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001160 RCU_INIT_POINTER(sdata->u.ap.probe_resp, NULL);
1161 kfree_rcu(old_beacon, rcu_head);
1162 if (old_probe_resp)
1163 kfree_rcu(old_probe_resp, rcu_head);
Emmanuel Grumbach8ffcc702014-01-23 14:28:16 +02001164 sdata->u.ap.driver_smps_mode = IEEE80211_SMPS_OFF;
Johannes Berg88600202012-02-13 15:17:18 +01001165
Johannes Berge7162512013-12-04 23:18:37 +01001166 __sta_info_flush(sdata, true);
Johannes Berg7907c7d2013-12-04 23:47:09 +01001167 ieee80211_free_keys(sdata, true);
Johannes Berg75de9112012-12-14 14:56:03 +01001168
Johannes Bergd6a83222012-12-14 14:06:28 +01001169 sdata->vif.bss_conf.enable_beacon = false;
Marek Puzyniak0eabccd2013-04-10 13:47:45 +02001170 sdata->vif.bss_conf.ssid_len = 0;
Johannes Bergd6a83222012-12-14 14:06:28 +01001171 clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED, &sdata->state);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001172 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
Johannes Berg88600202012-02-13 15:17:18 +01001173
Simon Wunderlicha6b368f2013-06-11 10:44:39 +02001174 if (sdata->wdev.cac_started) {
Janusz Dziedzicd2859df2013-11-06 13:55:51 +01001175 chandef = sdata->vif.bss_conf.chandef;
Simon Wunderlicha6b368f2013-06-11 10:44:39 +02001176 cancel_delayed_work_sync(&sdata->dfs_cac_timer_work);
Janusz Dziedzicd2859df2013-11-06 13:55:51 +01001177 cfg80211_cac_event(sdata->dev, &chandef,
1178 NL80211_RADAR_CAC_ABORTED,
Simon Wunderlicha6b368f2013-06-11 10:44:39 +02001179 GFP_KERNEL);
1180 }
1181
Johannes Berg10416382012-10-19 15:44:42 +02001182 drv_stop_ap(sdata->local, sdata);
1183
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001184 /* free all potentially still buffered bcast frames */
1185 local->total_ps_buffered -= skb_queue_len(&sdata->u.ap.ps.bc_buf);
1186 skb_queue_purge(&sdata->u.ap.ps.bc_buf);
1187
Johannes Berg34a37402013-12-18 09:43:33 +01001188 mutex_lock(&local->mtx);
Michal Kazior4e141da2014-03-05 13:14:08 +01001189 ieee80211_vif_copy_chanctx_to_vlans(sdata, true);
Johannes Berg55de9082012-07-26 17:24:39 +02001190 ieee80211_vif_release_channel(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +01001191 mutex_unlock(&local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001192
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001193 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001194}
1195
Johannes Berg4fd69312007-12-19 02:03:35 +01001196/* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */
1197struct iapp_layer2_update {
1198 u8 da[ETH_ALEN]; /* broadcast */
1199 u8 sa[ETH_ALEN]; /* STA addr */
1200 __be16 len; /* 6 */
1201 u8 dsap; /* 0 */
1202 u8 ssap; /* 0 */
1203 u8 control;
1204 u8 xid_info[3];
Eric Dumazetbc105022010-06-03 03:21:52 -07001205} __packed;
Johannes Berg4fd69312007-12-19 02:03:35 +01001206
1207static void ieee80211_send_layer2_update(struct sta_info *sta)
1208{
1209 struct iapp_layer2_update *msg;
1210 struct sk_buff *skb;
1211
1212 /* Send Level 2 Update Frame to update forwarding tables in layer 2
1213 * bridge devices */
1214
1215 skb = dev_alloc_skb(sizeof(*msg));
1216 if (!skb)
1217 return;
1218 msg = (struct iapp_layer2_update *)skb_put(skb, sizeof(*msg));
1219
1220 /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID)
1221 * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */
1222
Johannes Berge83e6542012-07-13 16:23:07 +02001223 eth_broadcast_addr(msg->da);
Johannes Berg17741cd2008-09-11 00:02:02 +02001224 memcpy(msg->sa, sta->sta.addr, ETH_ALEN);
Johannes Berg4fd69312007-12-19 02:03:35 +01001225 msg->len = htons(6);
1226 msg->dsap = 0;
1227 msg->ssap = 0x01; /* NULL LSAP, CR Bit: Response */
1228 msg->control = 0xaf; /* XID response lsb.1111F101.
1229 * F=0 (no poll command; unsolicited frame) */
1230 msg->xid_info[0] = 0x81; /* XID format identifier */
1231 msg->xid_info[1] = 1; /* LLC types/classes: Type 1 LLC */
1232 msg->xid_info[2] = 0; /* XID sender's receive window size (RW) */
1233
Johannes Bergd0709a62008-02-25 16:27:46 +01001234 skb->dev = sta->sdata->dev;
1235 skb->protocol = eth_type_trans(skb, sta->sdata->dev);
Johannes Berg4fd69312007-12-19 02:03:35 +01001236 memset(skb->cb, 0, sizeof(skb->cb));
John W. Linville06ee1c22010-07-19 11:52:59 -04001237 netif_rx_ni(skb);
Johannes Berg4fd69312007-12-19 02:03:35 +01001238}
1239
Johannes Bergd582cff2012-10-26 17:53:44 +02001240static int sta_apply_auth_flags(struct ieee80211_local *local,
1241 struct sta_info *sta,
1242 u32 mask, u32 set)
1243{
1244 int ret;
1245
1246 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
1247 set & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
1248 !test_sta_flag(sta, WLAN_STA_AUTH)) {
1249 ret = sta_info_move_state(sta, IEEE80211_STA_AUTH);
1250 if (ret)
1251 return ret;
1252 }
1253
1254 if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
1255 set & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
1256 !test_sta_flag(sta, WLAN_STA_ASSOC)) {
1257 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
1258 if (ret)
1259 return ret;
1260 }
1261
1262 if (mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
1263 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED))
1264 ret = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
1265 else if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
1266 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
1267 else
1268 ret = 0;
1269 if (ret)
1270 return ret;
1271 }
1272
1273 if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
1274 !(set & BIT(NL80211_STA_FLAG_ASSOCIATED)) &&
1275 test_sta_flag(sta, WLAN_STA_ASSOC)) {
1276 ret = sta_info_move_state(sta, IEEE80211_STA_AUTH);
1277 if (ret)
1278 return ret;
1279 }
1280
1281 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
1282 !(set & BIT(NL80211_STA_FLAG_AUTHENTICATED)) &&
1283 test_sta_flag(sta, WLAN_STA_AUTH)) {
1284 ret = sta_info_move_state(sta, IEEE80211_STA_NONE);
1285 if (ret)
1286 return ret;
1287 }
1288
1289 return 0;
1290}
1291
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001292static int sta_apply_parameters(struct ieee80211_local *local,
1293 struct sta_info *sta,
1294 struct station_parameters *params)
Johannes Berg4fd69312007-12-19 02:03:35 +01001295{
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001296 int ret = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01001297 struct ieee80211_supported_band *sband;
Johannes Bergd0709a62008-02-25 16:27:46 +01001298 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berg55de9082012-07-26 17:24:39 +02001299 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001300 u32 mask, set;
Johannes Berg4fd69312007-12-19 02:03:35 +01001301
Johannes Berg55de9082012-07-26 17:24:39 +02001302 sband = local->hw.wiphy->bands[band];
Johannes Bergae5eb022008-10-14 16:58:37 +02001303
Johannes Bergeccb8e82009-05-11 21:57:56 +03001304 mask = params->sta_flags_mask;
1305 set = params->sta_flags_set;
Johannes Berg73651ee2008-02-25 16:27:47 +01001306
Johannes Bergd582cff2012-10-26 17:53:44 +02001307 if (ieee80211_vif_is_mesh(&sdata->vif)) {
1308 /*
1309 * In mesh mode, ASSOCIATED isn't part of the nl80211
1310 * API but must follow AUTHENTICATED for driver state.
1311 */
1312 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED))
1313 mask |= BIT(NL80211_STA_FLAG_ASSOCIATED);
1314 if (set & BIT(NL80211_STA_FLAG_AUTHENTICATED))
1315 set |= BIT(NL80211_STA_FLAG_ASSOCIATED);
Johannes Berg77ee7c82013-02-15 00:48:33 +01001316 } else if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1317 /*
1318 * TDLS -- everything follows authorized, but
1319 * only becoming authorized is possible, not
1320 * going back
1321 */
1322 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
1323 set |= BIT(NL80211_STA_FLAG_AUTHENTICATED) |
1324 BIT(NL80211_STA_FLAG_ASSOCIATED);
1325 mask |= BIT(NL80211_STA_FLAG_AUTHENTICATED) |
1326 BIT(NL80211_STA_FLAG_ASSOCIATED);
1327 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001328 }
1329
Johannes Bergd582cff2012-10-26 17:53:44 +02001330 ret = sta_apply_auth_flags(local, sta, mask, set);
1331 if (ret)
1332 return ret;
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001333
Johannes Bergeccb8e82009-05-11 21:57:56 +03001334 if (mask & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) {
Johannes Bergeccb8e82009-05-11 21:57:56 +03001335 if (set & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001336 set_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
1337 else
1338 clear_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001339 }
1340
1341 if (mask & BIT(NL80211_STA_FLAG_WME)) {
Arik Nemtsov39df6002011-06-27 23:58:45 +03001342 if (set & BIT(NL80211_STA_FLAG_WME)) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001343 set_sta_flag(sta, WLAN_STA_WME);
Arik Nemtsov39df6002011-06-27 23:58:45 +03001344 sta->sta.wme = true;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001345 } else {
1346 clear_sta_flag(sta, WLAN_STA_WME);
1347 sta->sta.wme = false;
Arik Nemtsov39df6002011-06-27 23:58:45 +03001348 }
Johannes Bergeccb8e82009-05-11 21:57:56 +03001349 }
1350
1351 if (mask & BIT(NL80211_STA_FLAG_MFP)) {
Johannes Bergeccb8e82009-05-11 21:57:56 +03001352 if (set & BIT(NL80211_STA_FLAG_MFP))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001353 set_sta_flag(sta, WLAN_STA_MFP);
1354 else
1355 clear_sta_flag(sta, WLAN_STA_MFP);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001356 }
Javier Cardonab39c48f2011-04-07 15:08:30 -07001357
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001358 if (mask & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001359 if (set & BIT(NL80211_STA_FLAG_TDLS_PEER))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001360 set_sta_flag(sta, WLAN_STA_TDLS_PEER);
1361 else
1362 clear_sta_flag(sta, WLAN_STA_TDLS_PEER);
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001363 }
Johannes Bergeccb8e82009-05-11 21:57:56 +03001364
Johannes Berg3b9ce802011-09-27 20:56:12 +02001365 if (params->sta_modify_mask & STATION_PARAM_APPLY_UAPSD) {
1366 sta->sta.uapsd_queues = params->uapsd_queues;
1367 sta->sta.max_sp = params->max_sp;
1368 }
Eliad Peller9533b4a2011-08-23 14:37:47 +03001369
Johannes Berg73651ee2008-02-25 16:27:47 +01001370 /*
Johannes Berg51b50fb2009-05-24 16:42:30 +02001371 * cfg80211 validates this (1-2007) and allows setting the AID
1372 * only when creating a new station entry
1373 */
1374 if (params->aid)
1375 sta->sta.aid = params->aid;
1376
1377 /*
Johannes Bergba23d202012-12-27 17:32:09 +01001378 * Some of the following updates would be racy if called on an
1379 * existing station, via ieee80211_change_station(). However,
1380 * all such changes are rejected by cfg80211 except for updates
1381 * changing the supported rates on an existing but not yet used
1382 * TDLS peer.
Johannes Berg73651ee2008-02-25 16:27:47 +01001383 */
1384
Johannes Berg4fd69312007-12-19 02:03:35 +01001385 if (params->listen_interval >= 0)
1386 sta->listen_interval = params->listen_interval;
1387
1388 if (params->supported_rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001389 ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef,
1390 sband, params->supported_rates,
1391 params->supported_rates_len,
1392 &sta->sta.supp_rates[band]);
Johannes Berg4fd69312007-12-19 02:03:35 +01001393 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001394
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001395 if (params->ht_capa)
Ben Greearef96a8422011-11-18 11:32:00 -08001396 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
Johannes Berge1a0c6b2013-02-07 11:47:44 +01001397 params->ht_capa, sta);
Jouni Malinen36aedc902008-08-25 11:58:58 +03001398
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +00001399 if (params->vht_capa)
1400 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
Johannes Berg4a342152013-02-07 11:58:58 +01001401 params->vht_capa, sta);
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +00001402
Marek Kwaczynskib1bce142014-02-03 14:44:44 +01001403 if (params->opmode_notif_used) {
Marek Kwaczynskib1bce142014-02-03 14:44:44 +01001404 /* returned value is only needed for rc update, but the
1405 * rc isn't initialized here yet, so ignore it
1406 */
1407 __ieee80211_vht_handle_opmode(sdata, sta,
1408 params->opmode_notif,
1409 band, false);
1410 }
1411
Javier Cardona9c3990a2011-05-03 16:57:11 -07001412 if (ieee80211_vif_is_mesh(&sdata->vif)) {
Yogesh Ashok Powar4daf50f2011-05-12 09:32:17 -04001413#ifdef CONFIG_MAC80211_MESH
Thomas Pedersen39886b62013-02-13 12:14:19 -08001414 u32 changed = 0;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001415
1416 if (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE) {
Javier Cardona9c3990a2011-05-03 16:57:11 -07001417 switch (params->plink_state) {
Javier Cardona57cf8042011-05-13 10:45:43 -07001418 case NL80211_PLINK_ESTAB:
Marco Porsch1617bab2013-01-07 16:04:49 +01001419 if (sta->plink_state != NL80211_PLINK_ESTAB)
1420 changed = mesh_plink_inc_estab_count(
1421 sdata);
1422 sta->plink_state = params->plink_state;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001423
1424 ieee80211_mps_sta_status_update(sta);
Thomas Pedersen39886b62013-02-13 12:14:19 -08001425 changed |= ieee80211_mps_set_sta_local_pm(sta,
1426 sdata->u.mesh.mshcfg.power_mode);
Marco Porsch1617bab2013-01-07 16:04:49 +01001427 break;
1428 case NL80211_PLINK_LISTEN:
Javier Cardona57cf8042011-05-13 10:45:43 -07001429 case NL80211_PLINK_BLOCKED:
Marco Porsch1617bab2013-01-07 16:04:49 +01001430 case NL80211_PLINK_OPN_SNT:
1431 case NL80211_PLINK_OPN_RCVD:
1432 case NL80211_PLINK_CNF_RCVD:
1433 case NL80211_PLINK_HOLDING:
1434 if (sta->plink_state == NL80211_PLINK_ESTAB)
1435 changed = mesh_plink_dec_estab_count(
1436 sdata);
Javier Cardona9c3990a2011-05-03 16:57:11 -07001437 sta->plink_state = params->plink_state;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001438
1439 ieee80211_mps_sta_status_update(sta);
Marco Porsch446075d2013-10-15 12:29:24 +02001440 changed |= ieee80211_mps_set_sta_local_pm(sta,
1441 NL80211_MESH_POWER_UNKNOWN);
Javier Cardona9c3990a2011-05-03 16:57:11 -07001442 break;
1443 default:
1444 /* nothing */
1445 break;
1446 }
Johannes Berg77ee7c82013-02-15 00:48:33 +01001447 }
1448
1449 switch (params->plink_action) {
1450 case NL80211_PLINK_ACTION_NO_ACTION:
1451 /* nothing */
1452 break;
1453 case NL80211_PLINK_ACTION_OPEN:
1454 changed |= mesh_plink_open(sta);
1455 break;
1456 case NL80211_PLINK_ACTION_BLOCK:
1457 changed |= mesh_plink_block(sta);
1458 break;
Marco Porsch1617bab2013-01-07 16:04:49 +01001459 }
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001460
1461 if (params->local_pm)
Thomas Pedersen39886b62013-02-13 12:14:19 -08001462 changed |=
1463 ieee80211_mps_set_sta_local_pm(sta,
1464 params->local_pm);
Javier Lopez6c751ef2013-11-06 10:04:29 -08001465 ieee80211_mbss_info_change_notify(sdata, changed);
Yogesh Ashok Powar4daf50f2011-05-12 09:32:17 -04001466#endif
Johannes Berg902acc72008-02-23 15:17:19 +01001467 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001468
1469 return 0;
Johannes Berg4fd69312007-12-19 02:03:35 +01001470}
1471
1472static int ieee80211_add_station(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001473 const u8 *mac,
1474 struct station_parameters *params)
Johannes Berg4fd69312007-12-19 02:03:35 +01001475{
Johannes Berg14db74b2008-07-29 13:22:52 +02001476 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +01001477 struct sta_info *sta;
1478 struct ieee80211_sub_if_data *sdata;
Johannes Berg73651ee2008-02-25 16:27:47 +01001479 int err;
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001480 int layer2_update;
Johannes Berg4fd69312007-12-19 02:03:35 +01001481
Johannes Berg4fd69312007-12-19 02:03:35 +01001482 if (params->vlan) {
1483 sdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1484
Johannes Berg05c914f2008-09-11 00:01:58 +02001485 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
1486 sdata->vif.type != NL80211_IFTYPE_AP)
Johannes Berg4fd69312007-12-19 02:03:35 +01001487 return -EINVAL;
1488 } else
1489 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1490
Joe Perchesb203ca32012-05-08 18:56:52 +00001491 if (ether_addr_equal(mac, sdata->vif.addr))
Johannes Berg03e44972008-02-27 09:56:40 +01001492 return -EINVAL;
1493
1494 if (is_multicast_ether_addr(mac))
1495 return -EINVAL;
1496
1497 sta = sta_info_alloc(sdata, mac, GFP_KERNEL);
Johannes Berg73651ee2008-02-25 16:27:47 +01001498 if (!sta)
1499 return -ENOMEM;
Johannes Berg4fd69312007-12-19 02:03:35 +01001500
Johannes Bergd582cff2012-10-26 17:53:44 +02001501 /*
1502 * defaults -- if userspace wants something else we'll
1503 * change it accordingly in sta_apply_parameters()
1504 */
Johannes Berg77ee7c82013-02-15 00:48:33 +01001505 if (!(params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER))) {
1506 sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
1507 sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC);
Arik Nemtsov0c4972c2014-05-01 10:17:27 +03001508 } else {
1509 sta->sta.tdls = true;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001510 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001511
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001512 err = sta_apply_parameters(local, sta, params);
1513 if (err) {
1514 sta_info_free(local, sta);
1515 return err;
1516 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001517
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001518 /*
Johannes Berg77ee7c82013-02-15 00:48:33 +01001519 * for TDLS, rate control should be initialized only when
1520 * rates are known and station is marked authorized
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001521 */
1522 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER))
1523 rate_control_rate_init(sta);
Johannes Berg4fd69312007-12-19 02:03:35 +01001524
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001525 layer2_update = sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1526 sdata->vif.type == NL80211_IFTYPE_AP;
1527
Johannes Berg34e89502010-02-03 13:59:58 +01001528 err = sta_info_insert_rcu(sta);
Johannes Berg73651ee2008-02-25 16:27:47 +01001529 if (err) {
Johannes Berg73651ee2008-02-25 16:27:47 +01001530 rcu_read_unlock();
1531 return err;
1532 }
1533
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001534 if (layer2_update)
Johannes Berg73651ee2008-02-25 16:27:47 +01001535 ieee80211_send_layer2_update(sta);
1536
1537 rcu_read_unlock();
1538
Johannes Berg4fd69312007-12-19 02:03:35 +01001539 return 0;
1540}
1541
1542static int ieee80211_del_station(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001543 const u8 *mac)
Johannes Berg4fd69312007-12-19 02:03:35 +01001544{
Johannes Berg14db74b2008-07-29 13:22:52 +02001545 struct ieee80211_sub_if_data *sdata;
Johannes Berg4fd69312007-12-19 02:03:35 +01001546
Johannes Berg14db74b2008-07-29 13:22:52 +02001547 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1548
Johannes Berg34e89502010-02-03 13:59:58 +01001549 if (mac)
1550 return sta_info_destroy_addr_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001551
Johannes Bergb998e8b2012-12-13 23:07:46 +01001552 sta_info_flush(sdata);
Johannes Berg4fd69312007-12-19 02:03:35 +01001553 return 0;
1554}
1555
1556static int ieee80211_change_station(struct wiphy *wiphy,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001557 struct net_device *dev, const u8 *mac,
Johannes Berg4fd69312007-12-19 02:03:35 +01001558 struct station_parameters *params)
1559{
Johannes Bergabe60632009-11-25 17:46:18 +01001560 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg14db74b2008-07-29 13:22:52 +02001561 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +01001562 struct sta_info *sta;
1563 struct ieee80211_sub_if_data *vlansdata;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001564 enum cfg80211_station_type statype;
Eliad Peller35b88622011-12-29 14:41:39 +02001565 int err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001566
Johannes Berg87be1e12011-12-14 12:20:29 +01001567 mutex_lock(&local->sta_mtx);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001568
Felix Fietkau0e5ded52010-01-08 18:10:58 +01001569 sta = sta_info_get_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001570 if (!sta) {
Johannes Berg77ee7c82013-02-15 00:48:33 +01001571 err = -ENOENT;
1572 goto out_err;
Johannes Berg98dd6a52008-04-10 15:36:09 +02001573 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001574
Johannes Berg77ee7c82013-02-15 00:48:33 +01001575 switch (sdata->vif.type) {
1576 case NL80211_IFTYPE_MESH_POINT:
Thomas Pedersena6dad6a2013-03-04 13:06:12 -08001577 if (sdata->u.mesh.user_mpm)
Thomas Pederseneef941e2013-03-04 13:06:11 -08001578 statype = CFG80211_STA_MESH_PEER_USER;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001579 else
Thomas Pederseneef941e2013-03-04 13:06:11 -08001580 statype = CFG80211_STA_MESH_PEER_KERNEL;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001581 break;
1582 case NL80211_IFTYPE_ADHOC:
1583 statype = CFG80211_STA_IBSS;
1584 break;
1585 case NL80211_IFTYPE_STATION:
1586 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1587 statype = CFG80211_STA_AP_STA;
1588 break;
1589 }
1590 if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
1591 statype = CFG80211_STA_TDLS_PEER_ACTIVE;
1592 else
1593 statype = CFG80211_STA_TDLS_PEER_SETUP;
1594 break;
1595 case NL80211_IFTYPE_AP:
1596 case NL80211_IFTYPE_AP_VLAN:
1597 statype = CFG80211_STA_AP_CLIENT;
1598 break;
1599 default:
1600 err = -EOPNOTSUPP;
1601 goto out_err;
Johannes Bergbdd90d52011-12-14 12:20:27 +01001602 }
1603
Johannes Berg77ee7c82013-02-15 00:48:33 +01001604 err = cfg80211_check_station_change(wiphy, params, statype);
1605 if (err)
1606 goto out_err;
1607
Johannes Bergd0709a62008-02-25 16:27:46 +01001608 if (params->vlan && params->vlan != sta->sdata->dev) {
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001609 bool prev_4addr = false;
1610 bool new_4addr = false;
1611
Johannes Berg4fd69312007-12-19 02:03:35 +01001612 vlansdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1613
Johannes Berg9bc383d2009-11-19 11:55:19 +01001614 if (params->vlan->ieee80211_ptr->use_4addr) {
Johannes Berg33054432009-11-20 10:09:14 +01001615 if (vlansdata->u.vlan.sta) {
Johannes Berg77ee7c82013-02-15 00:48:33 +01001616 err = -EBUSY;
1617 goto out_err;
Johannes Berg33054432009-11-20 10:09:14 +01001618 }
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001619
Eric Dumazetcf778b02012-01-12 04:41:32 +00001620 rcu_assign_pointer(vlansdata->u.vlan.sta, sta);
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001621 new_4addr = true;
1622 }
1623
1624 if (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1625 sta->sdata->u.vlan.sta) {
Monam Agarwal0c2bef462014-03-24 00:51:43 +05301626 RCU_INIT_POINTER(sta->sdata->u.vlan.sta, NULL);
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001627 prev_4addr = true;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001628 }
1629
Johannes Berg14db74b2008-07-29 13:22:52 +02001630 sta->sdata = vlansdata;
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001631
1632 if (sta->sta_state == IEEE80211_STA_AUTHORIZED &&
1633 prev_4addr != new_4addr) {
1634 if (new_4addr)
1635 atomic_dec(&sta->sdata->bss->num_mcast_sta);
1636 else
1637 atomic_inc(&sta->sdata->bss->num_mcast_sta);
1638 }
1639
Johannes Berg4fd69312007-12-19 02:03:35 +01001640 ieee80211_send_layer2_update(sta);
1641 }
1642
Eliad Peller35b88622011-12-29 14:41:39 +02001643 err = sta_apply_parameters(local, sta, params);
Johannes Berg77ee7c82013-02-15 00:48:33 +01001644 if (err)
1645 goto out_err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001646
Johannes Berg77ee7c82013-02-15 00:48:33 +01001647 /* When peer becomes authorized, init rate control as well */
1648 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER) &&
1649 test_sta_flag(sta, WLAN_STA_AUTHORIZED))
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001650 rate_control_rate_init(sta);
1651
Johannes Berg87be1e12011-12-14 12:20:29 +01001652 mutex_unlock(&local->sta_mtx);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001653
Emmanuel Grumbach687da132013-10-01 16:45:43 +03001654 if ((sdata->vif.type == NL80211_IFTYPE_AP ||
1655 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
1656 sta->known_smps_mode != sta->sdata->bss->req_smps &&
1657 test_sta_flag(sta, WLAN_STA_AUTHORIZED) &&
1658 sta_info_tx_streams(sta) != 1) {
1659 ht_dbg(sta->sdata,
1660 "%pM just authorized and MIMO capable - update SMPS\n",
1661 sta->sta.addr);
1662 ieee80211_send_smps_action(sta->sdata,
1663 sta->sdata->bss->req_smps,
1664 sta->sta.addr,
1665 sta->sdata->vif.bss_conf.bssid);
1666 }
1667
Jason Young808118c2011-03-10 16:43:19 -08001668 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
Eliad Pellerab095872012-07-27 12:33:22 +03001669 params->sta_flags_mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
Jason Young808118c2011-03-10 16:43:19 -08001670 ieee80211_recalc_ps(local, -1);
Eliad Pellerab095872012-07-27 12:33:22 +03001671 ieee80211_recalc_ps_vif(sdata);
1672 }
Johannes Berg77ee7c82013-02-15 00:48:33 +01001673
Johannes Berg4fd69312007-12-19 02:03:35 +01001674 return 0;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001675out_err:
1676 mutex_unlock(&local->sta_mtx);
1677 return err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001678}
1679
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001680#ifdef CONFIG_MAC80211_MESH
1681static int ieee80211_add_mpath(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001682 const u8 *dst, const u8 *next_hop)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001683{
Johannes Berg14db74b2008-07-29 13:22:52 +02001684 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001685 struct mesh_path *mpath;
1686 struct sta_info *sta;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001687
Johannes Berg14db74b2008-07-29 13:22:52 +02001688 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1689
Johannes Bergd0709a62008-02-25 16:27:46 +01001690 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +01001691 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +01001692 if (!sta) {
1693 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001694 return -ENOENT;
Johannes Bergd0709a62008-02-25 16:27:46 +01001695 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001696
Bob Copelandae76eef2013-03-29 09:38:39 -04001697 mpath = mesh_path_add(sdata, dst);
1698 if (IS_ERR(mpath)) {
Johannes Bergd0709a62008-02-25 16:27:46 +01001699 rcu_read_unlock();
Bob Copelandae76eef2013-03-29 09:38:39 -04001700 return PTR_ERR(mpath);
Johannes Bergd0709a62008-02-25 16:27:46 +01001701 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001702
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001703 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +01001704
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001705 rcu_read_unlock();
1706 return 0;
1707}
1708
1709static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001710 const u8 *dst)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001711{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001712 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001713
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001714 if (dst)
Johannes Bergbf7cd942013-02-15 14:40:31 +01001715 return mesh_path_del(sdata, dst);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001716
Javier Cardonaece1a2e2011-08-29 13:23:04 -07001717 mesh_path_flush_by_iface(sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001718 return 0;
1719}
1720
Johannes Berg3b3a0162014-05-19 17:19:31 +02001721static int ieee80211_change_mpath(struct wiphy *wiphy, struct net_device *dev,
1722 const u8 *dst, const u8 *next_hop)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001723{
Johannes Berg14db74b2008-07-29 13:22:52 +02001724 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001725 struct mesh_path *mpath;
1726 struct sta_info *sta;
1727
Johannes Berg14db74b2008-07-29 13:22:52 +02001728 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1729
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001730 rcu_read_lock();
Johannes Bergd0709a62008-02-25 16:27:46 +01001731
Johannes Bergabe60632009-11-25 17:46:18 +01001732 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +01001733 if (!sta) {
1734 rcu_read_unlock();
1735 return -ENOENT;
1736 }
1737
Johannes Bergbf7cd942013-02-15 14:40:31 +01001738 mpath = mesh_path_lookup(sdata, dst);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001739 if (!mpath) {
1740 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001741 return -ENOENT;
1742 }
1743
1744 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +01001745
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001746 rcu_read_unlock();
1747 return 0;
1748}
1749
1750static void mpath_set_pinfo(struct mesh_path *mpath, u8 *next_hop,
1751 struct mpath_info *pinfo)
1752{
Johannes Berga3836e02011-05-12 15:11:37 +02001753 struct sta_info *next_hop_sta = rcu_dereference(mpath->next_hop);
1754
1755 if (next_hop_sta)
1756 memcpy(next_hop, next_hop_sta->sta.addr, ETH_ALEN);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001757 else
1758 memset(next_hop, 0, ETH_ALEN);
1759
LEO Airwarosu Yoichi Shinoda7ce8c7a2012-08-27 22:28:16 +09001760 memset(pinfo, 0, sizeof(*pinfo));
1761
Johannes Bergf5ea9122009-08-07 16:17:38 +02001762 pinfo->generation = mesh_paths_generation;
1763
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001764 pinfo->filled = MPATH_INFO_FRAME_QLEN |
Rui Paulod19b3bf2009-11-09 23:46:55 +00001765 MPATH_INFO_SN |
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001766 MPATH_INFO_METRIC |
1767 MPATH_INFO_EXPTIME |
1768 MPATH_INFO_DISCOVERY_TIMEOUT |
1769 MPATH_INFO_DISCOVERY_RETRIES |
1770 MPATH_INFO_FLAGS;
1771
1772 pinfo->frame_qlen = mpath->frame_queue.qlen;
Rui Paulod19b3bf2009-11-09 23:46:55 +00001773 pinfo->sn = mpath->sn;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001774 pinfo->metric = mpath->metric;
1775 if (time_before(jiffies, mpath->exp_time))
1776 pinfo->exptime = jiffies_to_msecs(mpath->exp_time - jiffies);
1777 pinfo->discovery_timeout =
1778 jiffies_to_msecs(mpath->discovery_timeout);
1779 pinfo->discovery_retries = mpath->discovery_retries;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001780 if (mpath->flags & MESH_PATH_ACTIVE)
1781 pinfo->flags |= NL80211_MPATH_FLAG_ACTIVE;
1782 if (mpath->flags & MESH_PATH_RESOLVING)
1783 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
Rui Paulod19b3bf2009-11-09 23:46:55 +00001784 if (mpath->flags & MESH_PATH_SN_VALID)
1785 pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001786 if (mpath->flags & MESH_PATH_FIXED)
1787 pinfo->flags |= NL80211_MPATH_FLAG_FIXED;
LEO Airwarosu Yoichi Shinoda7ce8c7a2012-08-27 22:28:16 +09001788 if (mpath->flags & MESH_PATH_RESOLVED)
1789 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVED;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001790}
1791
1792static int ieee80211_get_mpath(struct wiphy *wiphy, struct net_device *dev,
1793 u8 *dst, u8 *next_hop, struct mpath_info *pinfo)
1794
1795{
Johannes Berg14db74b2008-07-29 13:22:52 +02001796 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001797 struct mesh_path *mpath;
1798
Johannes Berg14db74b2008-07-29 13:22:52 +02001799 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1800
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001801 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01001802 mpath = mesh_path_lookup(sdata, dst);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001803 if (!mpath) {
1804 rcu_read_unlock();
1805 return -ENOENT;
1806 }
1807 memcpy(dst, mpath->dst, ETH_ALEN);
1808 mpath_set_pinfo(mpath, next_hop, pinfo);
1809 rcu_read_unlock();
1810 return 0;
1811}
1812
1813static int ieee80211_dump_mpath(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001814 int idx, u8 *dst, u8 *next_hop,
1815 struct mpath_info *pinfo)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001816{
Johannes Berg14db74b2008-07-29 13:22:52 +02001817 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001818 struct mesh_path *mpath;
1819
Johannes Berg14db74b2008-07-29 13:22:52 +02001820 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1821
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001822 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01001823 mpath = mesh_path_lookup_by_idx(sdata, idx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001824 if (!mpath) {
1825 rcu_read_unlock();
1826 return -ENOENT;
1827 }
1828 memcpy(dst, mpath->dst, ETH_ALEN);
1829 mpath_set_pinfo(mpath, next_hop, pinfo);
1830 rcu_read_unlock();
1831 return 0;
1832}
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001833
Javier Cardona24bdd9f2010-12-16 17:37:48 -08001834static int ieee80211_get_mesh_config(struct wiphy *wiphy,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001835 struct net_device *dev,
1836 struct mesh_config *conf)
1837{
1838 struct ieee80211_sub_if_data *sdata;
1839 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1840
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001841 memcpy(conf, &(sdata->u.mesh.mshcfg), sizeof(struct mesh_config));
1842 return 0;
1843}
1844
1845static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm, u32 mask)
1846{
1847 return (mask >> (parm-1)) & 0x1;
1848}
1849
Javier Cardonac80d5452010-12-16 17:37:49 -08001850static int copy_mesh_setup(struct ieee80211_if_mesh *ifmsh,
1851 const struct mesh_setup *setup)
1852{
1853 u8 *new_ie;
1854 const u8 *old_ie;
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001855 struct ieee80211_sub_if_data *sdata = container_of(ifmsh,
1856 struct ieee80211_sub_if_data, u.mesh);
Javier Cardonac80d5452010-12-16 17:37:49 -08001857
Javier Cardona581a8b02011-04-07 15:08:27 -07001858 /* allocate information elements */
Javier Cardonac80d5452010-12-16 17:37:49 -08001859 new_ie = NULL;
Javier Cardona581a8b02011-04-07 15:08:27 -07001860 old_ie = ifmsh->ie;
Javier Cardonac80d5452010-12-16 17:37:49 -08001861
Javier Cardona581a8b02011-04-07 15:08:27 -07001862 if (setup->ie_len) {
1863 new_ie = kmemdup(setup->ie, setup->ie_len,
Javier Cardonac80d5452010-12-16 17:37:49 -08001864 GFP_KERNEL);
1865 if (!new_ie)
1866 return -ENOMEM;
1867 }
Javier Cardona581a8b02011-04-07 15:08:27 -07001868 ifmsh->ie_len = setup->ie_len;
1869 ifmsh->ie = new_ie;
1870 kfree(old_ie);
Javier Cardonac80d5452010-12-16 17:37:49 -08001871
1872 /* now copy the rest of the setup parameters */
1873 ifmsh->mesh_id_len = setup->mesh_id_len;
1874 memcpy(ifmsh->mesh_id, setup->mesh_id, ifmsh->mesh_id_len);
Javier Cardonad299a1f2012-03-31 11:31:33 -07001875 ifmsh->mesh_sp_id = setup->sync_method;
Javier Cardonac80d5452010-12-16 17:37:49 -08001876 ifmsh->mesh_pp_id = setup->path_sel_proto;
1877 ifmsh->mesh_pm_id = setup->path_metric;
Thomas Pedersena6dad6a2013-03-04 13:06:12 -08001878 ifmsh->user_mpm = setup->user_mpm;
Colleen Twitty0d4261a2013-05-08 11:46:00 -07001879 ifmsh->mesh_auth_id = setup->auth_id;
Javier Cardonab130e5c2011-05-03 16:57:07 -07001880 ifmsh->security = IEEE80211_MESH_SEC_NONE;
1881 if (setup->is_authenticated)
1882 ifmsh->security |= IEEE80211_MESH_SEC_AUTHED;
1883 if (setup->is_secure)
1884 ifmsh->security |= IEEE80211_MESH_SEC_SECURED;
Javier Cardonac80d5452010-12-16 17:37:49 -08001885
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001886 /* mcast rate setting in Mesh Node */
1887 memcpy(sdata->vif.bss_conf.mcast_rate, setup->mcast_rate,
1888 sizeof(setup->mcast_rate));
Ashok Nagarajanffb3cf32013-06-03 10:33:36 -07001889 sdata->vif.bss_conf.basic_rates = setup->basic_rates;
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001890
Marco Porsch9bdbf042013-01-07 16:04:51 +01001891 sdata->vif.bss_conf.beacon_int = setup->beacon_interval;
1892 sdata->vif.bss_conf.dtim_period = setup->dtim_period;
1893
Javier Cardonac80d5452010-12-16 17:37:49 -08001894 return 0;
1895}
1896
Javier Cardona24bdd9f2010-12-16 17:37:48 -08001897static int ieee80211_update_mesh_config(struct wiphy *wiphy,
Johannes Berg29cbe682010-12-03 09:20:44 +01001898 struct net_device *dev, u32 mask,
1899 const struct mesh_config *nconf)
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001900{
1901 struct mesh_config *conf;
1902 struct ieee80211_sub_if_data *sdata;
Rui Paulo63c57232009-11-09 23:46:57 +00001903 struct ieee80211_if_mesh *ifmsh;
1904
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001905 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Rui Paulo63c57232009-11-09 23:46:57 +00001906 ifmsh = &sdata->u.mesh;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001907
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001908 /* Set the config options which we are interested in setting */
1909 conf = &(sdata->u.mesh.mshcfg);
1910 if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT, mask))
1911 conf->dot11MeshRetryTimeout = nconf->dot11MeshRetryTimeout;
1912 if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT, mask))
1913 conf->dot11MeshConfirmTimeout = nconf->dot11MeshConfirmTimeout;
1914 if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT, mask))
1915 conf->dot11MeshHoldingTimeout = nconf->dot11MeshHoldingTimeout;
1916 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS, mask))
1917 conf->dot11MeshMaxPeerLinks = nconf->dot11MeshMaxPeerLinks;
1918 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES, mask))
1919 conf->dot11MeshMaxRetries = nconf->dot11MeshMaxRetries;
1920 if (_chg_mesh_attr(NL80211_MESHCONF_TTL, mask))
1921 conf->dot11MeshTTL = nconf->dot11MeshTTL;
Javier Cardona45904f22010-12-03 09:20:40 +01001922 if (_chg_mesh_attr(NL80211_MESHCONF_ELEMENT_TTL, mask))
Chun-Yeow Yeoh58886a92012-06-15 00:23:53 +08001923 conf->element_ttl = nconf->element_ttl;
Thomas Pedersen146bb482013-03-04 13:06:14 -08001924 if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS, mask)) {
1925 if (ifmsh->user_mpm)
1926 return -EBUSY;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001927 conf->auto_open_plinks = nconf->auto_open_plinks;
Thomas Pedersen146bb482013-03-04 13:06:14 -08001928 }
Javier Cardonad299a1f2012-03-31 11:31:33 -07001929 if (_chg_mesh_attr(NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR, mask))
1930 conf->dot11MeshNbrOffsetMaxNeighbor =
1931 nconf->dot11MeshNbrOffsetMaxNeighbor;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001932 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, mask))
1933 conf->dot11MeshHWMPmaxPREQretries =
1934 nconf->dot11MeshHWMPmaxPREQretries;
1935 if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME, mask))
1936 conf->path_refresh_time = nconf->path_refresh_time;
1937 if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, mask))
1938 conf->min_discovery_timeout = nconf->min_discovery_timeout;
1939 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, mask))
1940 conf->dot11MeshHWMPactivePathTimeout =
1941 nconf->dot11MeshHWMPactivePathTimeout;
1942 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, mask))
1943 conf->dot11MeshHWMPpreqMinInterval =
1944 nconf->dot11MeshHWMPpreqMinInterval;
Thomas Pedersendca7e942011-11-24 17:15:24 -08001945 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL, mask))
1946 conf->dot11MeshHWMPperrMinInterval =
1947 nconf->dot11MeshHWMPperrMinInterval;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001948 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
1949 mask))
1950 conf->dot11MeshHWMPnetDiameterTraversalTime =
1951 nconf->dot11MeshHWMPnetDiameterTraversalTime;
Rui Paulo63c57232009-11-09 23:46:57 +00001952 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask)) {
1953 conf->dot11MeshHWMPRootMode = nconf->dot11MeshHWMPRootMode;
1954 ieee80211_mesh_root_setup(ifmsh);
1955 }
Javier Cardona16dd7262011-08-09 16:45:11 -07001956 if (_chg_mesh_attr(NL80211_MESHCONF_GATE_ANNOUNCEMENTS, mask)) {
Thomas Pedersenc61336612011-08-25 10:36:14 -07001957 /* our current gate announcement implementation rides on root
1958 * announcements, so require this ifmsh to also be a root node
1959 * */
1960 if (nconf->dot11MeshGateAnnouncementProtocol &&
Chun-Yeow Yeohdbb912c2012-06-14 02:06:09 +08001961 !(conf->dot11MeshHWMPRootMode > IEEE80211_ROOTMODE_ROOT)) {
1962 conf->dot11MeshHWMPRootMode = IEEE80211_PROACTIVE_RANN;
Thomas Pedersenc61336612011-08-25 10:36:14 -07001963 ieee80211_mesh_root_setup(ifmsh);
1964 }
Javier Cardona16dd7262011-08-09 16:45:11 -07001965 conf->dot11MeshGateAnnouncementProtocol =
1966 nconf->dot11MeshGateAnnouncementProtocol;
1967 }
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08001968 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_RANN_INTERVAL, mask))
Javier Cardona0507e152011-08-09 16:45:10 -07001969 conf->dot11MeshHWMPRannInterval =
1970 nconf->dot11MeshHWMPRannInterval;
Chun-Yeow Yeoh94f90652012-01-21 01:02:16 +08001971 if (_chg_mesh_attr(NL80211_MESHCONF_FORWARDING, mask))
1972 conf->dot11MeshForwarding = nconf->dot11MeshForwarding;
Ashok Nagarajan55335132012-02-28 17:04:08 -08001973 if (_chg_mesh_attr(NL80211_MESHCONF_RSSI_THRESHOLD, mask)) {
1974 /* our RSSI threshold implementation is supported only for
1975 * devices that report signal in dBm.
1976 */
1977 if (!(sdata->local->hw.flags & IEEE80211_HW_SIGNAL_DBM))
1978 return -ENOTSUPP;
1979 conf->rssi_threshold = nconf->rssi_threshold;
1980 }
Ashok Nagarajan70c33ea2012-04-30 14:20:32 -07001981 if (_chg_mesh_attr(NL80211_MESHCONF_HT_OPMODE, mask)) {
1982 conf->ht_opmode = nconf->ht_opmode;
1983 sdata->vif.bss_conf.ht_operation_mode = nconf->ht_opmode;
1984 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_HT);
1985 }
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08001986 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT, mask))
1987 conf->dot11MeshHWMPactivePathToRootTimeout =
1988 nconf->dot11MeshHWMPactivePathToRootTimeout;
1989 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOT_INTERVAL, mask))
1990 conf->dot11MeshHWMProotInterval =
1991 nconf->dot11MeshHWMProotInterval;
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08001992 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL, mask))
1993 conf->dot11MeshHWMPconfirmationInterval =
1994 nconf->dot11MeshHWMPconfirmationInterval;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001995 if (_chg_mesh_attr(NL80211_MESHCONF_POWER_MODE, mask)) {
1996 conf->power_mode = nconf->power_mode;
1997 ieee80211_mps_local_status_update(sdata);
1998 }
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001999 if (_chg_mesh_attr(NL80211_MESHCONF_AWAKE_WINDOW, mask))
Marco Porsch3f52b7e2013-01-30 18:14:08 +01002000 conf->dot11MeshAwakeWindowDuration =
2001 nconf->dot11MeshAwakeWindowDuration;
Colleen Twitty66de6712013-06-03 09:53:40 -07002002 if (_chg_mesh_attr(NL80211_MESHCONF_PLINK_TIMEOUT, mask))
2003 conf->plink_timeout = nconf->plink_timeout;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08002004 ieee80211_mbss_info_change_notify(sdata, BSS_CHANGED_BEACON);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07002005 return 0;
2006}
2007
Johannes Berg29cbe682010-12-03 09:20:44 +01002008static int ieee80211_join_mesh(struct wiphy *wiphy, struct net_device *dev,
2009 const struct mesh_config *conf,
2010 const struct mesh_setup *setup)
2011{
2012 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2013 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Javier Cardonac80d5452010-12-16 17:37:49 -08002014 int err;
Johannes Berg29cbe682010-12-03 09:20:44 +01002015
Javier Cardonac80d5452010-12-16 17:37:49 -08002016 memcpy(&ifmsh->mshcfg, conf, sizeof(struct mesh_config));
2017 err = copy_mesh_setup(ifmsh, setup);
2018 if (err)
2019 return err;
Johannes Bergcc1d2802012-05-16 23:50:20 +02002020
Johannes Berg04ecd252012-09-11 14:34:12 +02002021 /* can mesh use other SMPS modes? */
2022 sdata->smps_mode = IEEE80211_SMPS_OFF;
2023 sdata->needed_rx_chains = sdata->local->rx_chains;
2024
Johannes Berg34a37402013-12-18 09:43:33 +01002025 mutex_lock(&sdata->local->mtx);
Johannes Berg4bf88532012-11-09 11:39:59 +01002026 err = ieee80211_vif_use_channel(sdata, &setup->chandef,
Johannes Berg55de9082012-07-26 17:24:39 +02002027 IEEE80211_CHANCTX_SHARED);
Johannes Berg34a37402013-12-18 09:43:33 +01002028 mutex_unlock(&sdata->local->mtx);
Johannes Bergcc1d2802012-05-16 23:50:20 +02002029 if (err)
2030 return err;
2031
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08002032 return ieee80211_start_mesh(sdata);
Johannes Berg29cbe682010-12-03 09:20:44 +01002033}
2034
2035static int ieee80211_leave_mesh(struct wiphy *wiphy, struct net_device *dev)
2036{
2037 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2038
2039 ieee80211_stop_mesh(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +01002040 mutex_lock(&sdata->local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02002041 ieee80211_vif_release_channel(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +01002042 mutex_unlock(&sdata->local->mtx);
Johannes Berg29cbe682010-12-03 09:20:44 +01002043
2044 return 0;
2045}
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01002046#endif
2047
Jouni Malinen9f1ba902008-08-07 20:07:01 +03002048static int ieee80211_change_bss(struct wiphy *wiphy,
2049 struct net_device *dev,
2050 struct bss_parameters *params)
2051{
Johannes Berg55de9082012-07-26 17:24:39 +02002052 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2053 enum ieee80211_band band;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03002054 u32 changed = 0;
2055
Simon Wunderlich7ca133b2013-11-21 18:19:50 +01002056 if (!sdata_dereference(sdata->u.ap.beacon, sdata))
Johannes Berg55de9082012-07-26 17:24:39 +02002057 return -ENOENT;
2058
2059 band = ieee80211_get_sdata_band(sdata);
Jouni Malinen9f1ba902008-08-07 20:07:01 +03002060
Jouni Malinen9f1ba902008-08-07 20:07:01 +03002061 if (params->use_cts_prot >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02002062 sdata->vif.bss_conf.use_cts_prot = params->use_cts_prot;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03002063 changed |= BSS_CHANGED_ERP_CTS_PROT;
2064 }
2065 if (params->use_short_preamble >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02002066 sdata->vif.bss_conf.use_short_preamble =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03002067 params->use_short_preamble;
2068 changed |= BSS_CHANGED_ERP_PREAMBLE;
2069 }
Felix Fietkau43d35342010-01-15 03:00:48 +01002070
2071 if (!sdata->vif.bss_conf.use_short_slot &&
Johannes Berg55de9082012-07-26 17:24:39 +02002072 band == IEEE80211_BAND_5GHZ) {
Felix Fietkau43d35342010-01-15 03:00:48 +01002073 sdata->vif.bss_conf.use_short_slot = true;
2074 changed |= BSS_CHANGED_ERP_SLOT;
2075 }
2076
Jouni Malinen9f1ba902008-08-07 20:07:01 +03002077 if (params->use_short_slot_time >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02002078 sdata->vif.bss_conf.use_short_slot =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03002079 params->use_short_slot_time;
2080 changed |= BSS_CHANGED_ERP_SLOT;
2081 }
2082
Jouni Malinen90c97a02008-10-30 16:59:22 +02002083 if (params->basic_rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002084 ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef,
2085 wiphy->bands[band],
2086 params->basic_rates,
2087 params->basic_rates_len,
2088 &sdata->vif.bss_conf.basic_rates);
Jouni Malinen90c97a02008-10-30 16:59:22 +02002089 changed |= BSS_CHANGED_BASIC_RATES;
2090 }
2091
Felix Fietkau7b7b5e52010-04-27 01:23:36 +02002092 if (params->ap_isolate >= 0) {
2093 if (params->ap_isolate)
2094 sdata->flags |= IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
2095 else
2096 sdata->flags &= ~IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
2097 }
2098
Helmut Schaa80d7e402010-11-19 12:40:26 +01002099 if (params->ht_opmode >= 0) {
2100 sdata->vif.bss_conf.ht_operation_mode =
2101 (u16) params->ht_opmode;
2102 changed |= BSS_CHANGED_HT;
2103 }
2104
Johannes Berg339afbf2012-11-14 15:21:17 +01002105 if (params->p2p_ctwindow >= 0) {
Janusz Dziedzic67baf662013-03-21 15:47:56 +01002106 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &=
2107 ~IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
2108 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
2109 params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
Johannes Berg339afbf2012-11-14 15:21:17 +01002110 changed |= BSS_CHANGED_P2P_PS;
2111 }
2112
Janusz Dziedzic67baf662013-03-21 15:47:56 +01002113 if (params->p2p_opp_ps > 0) {
2114 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
2115 IEEE80211_P2P_OPPPS_ENABLE_BIT;
2116 changed |= BSS_CHANGED_P2P_PS;
2117 } else if (params->p2p_opp_ps == 0) {
2118 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &=
2119 ~IEEE80211_P2P_OPPPS_ENABLE_BIT;
Johannes Berg339afbf2012-11-14 15:21:17 +01002120 changed |= BSS_CHANGED_P2P_PS;
2121 }
2122
Jouni Malinen9f1ba902008-08-07 20:07:01 +03002123 ieee80211_bss_info_change_notify(sdata, changed);
2124
2125 return 0;
2126}
2127
Jouni Malinen31888482008-10-30 16:59:24 +02002128static int ieee80211_set_txq_params(struct wiphy *wiphy,
Eliad Pellerf70f01c2011-09-25 20:06:53 +03002129 struct net_device *dev,
Jouni Malinen31888482008-10-30 16:59:24 +02002130 struct ieee80211_txq_params *params)
2131{
2132 struct ieee80211_local *local = wiphy_priv(wiphy);
Eliad Pellerf6f3def2011-09-25 20:06:54 +03002133 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Jouni Malinen31888482008-10-30 16:59:24 +02002134 struct ieee80211_tx_queue_params p;
2135
2136 if (!local->ops->conf_tx)
2137 return -EOPNOTSUPP;
2138
Johannes Berg54bcbc62012-03-28 11:04:25 +02002139 if (local->hw.queues < IEEE80211_NUM_ACS)
2140 return -EOPNOTSUPP;
2141
Jouni Malinen31888482008-10-30 16:59:24 +02002142 memset(&p, 0, sizeof(p));
2143 p.aifs = params->aifs;
2144 p.cw_max = params->cwmax;
2145 p.cw_min = params->cwmin;
2146 p.txop = params->txop;
Kalle Valoab133152010-01-12 10:42:31 +02002147
2148 /*
2149 * Setting tx queue params disables u-apsd because it's only
2150 * called in master mode.
2151 */
2152 p.uapsd = false;
2153
Johannes Berga3304b02012-03-28 11:04:24 +02002154 sdata->tx_conf[params->ac] = p;
2155 if (drv_conf_tx(local, sdata, params->ac, &p)) {
Joe Perches0fb9a9e2010-08-20 16:25:38 -07002156 wiphy_debug(local->hw.wiphy,
Johannes Berga3304b02012-03-28 11:04:24 +02002157 "failed to set TX queue parameters for AC %d\n",
2158 params->ac);
Jouni Malinen31888482008-10-30 16:59:24 +02002159 return -EINVAL;
2160 }
2161
Johannes Berg7d257452012-07-06 17:37:43 +02002162 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_QOS);
2163
Jouni Malinen31888482008-10-30 16:59:24 +02002164 return 0;
2165}
2166
Bob Copeland665af4f2009-01-19 11:20:53 -05002167#ifdef CONFIG_PM
Johannes Bergff1b6e62011-05-04 15:37:28 +02002168static int ieee80211_suspend(struct wiphy *wiphy,
2169 struct cfg80211_wowlan *wowlan)
Bob Copeland665af4f2009-01-19 11:20:53 -05002170{
Johannes Bergeecc4802011-05-04 15:37:29 +02002171 return __ieee80211_suspend(wiphy_priv(wiphy), wowlan);
Bob Copeland665af4f2009-01-19 11:20:53 -05002172}
2173
2174static int ieee80211_resume(struct wiphy *wiphy)
2175{
2176 return __ieee80211_resume(wiphy_priv(wiphy));
2177}
2178#else
2179#define ieee80211_suspend NULL
2180#define ieee80211_resume NULL
2181#endif
2182
Johannes Berg2a519312009-02-10 21:25:55 +01002183static int ieee80211_scan(struct wiphy *wiphy,
Johannes Berg2a519312009-02-10 21:25:55 +01002184 struct cfg80211_scan_request *req)
2185{
Johannes Bergfd014282012-06-18 19:17:03 +02002186 struct ieee80211_sub_if_data *sdata;
2187
2188 sdata = IEEE80211_WDEV_TO_SUB_IF(req->wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01002189
Johannes Berg2ca27bc2010-09-16 14:58:23 +02002190 switch (ieee80211_vif_type_p2p(&sdata->vif)) {
2191 case NL80211_IFTYPE_STATION:
2192 case NL80211_IFTYPE_ADHOC:
2193 case NL80211_IFTYPE_MESH_POINT:
2194 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Bergf142c6b2012-06-18 20:07:15 +02002195 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg2ca27bc2010-09-16 14:58:23 +02002196 break;
2197 case NL80211_IFTYPE_P2P_GO:
2198 if (sdata->local->ops->hw_scan)
2199 break;
Johannes Berge9d77322011-02-01 15:35:36 +01002200 /*
2201 * FIXME: implement NoA while scanning in software,
2202 * for now fall through to allow scanning only when
2203 * beaconing hasn't been configured yet
2204 */
Johannes Berg2ca27bc2010-09-16 14:58:23 +02002205 case NL80211_IFTYPE_AP:
Antonio Quartulli5c95b942012-10-16 08:39:22 +02002206 /*
2207 * If the scan has been forced (and the driver supports
2208 * forcing), don't care about being beaconing already.
2209 * This will create problems to the attached stations (e.g. all
2210 * the frames sent while scanning on other channel will be
2211 * lost)
2212 */
2213 if (sdata->u.ap.beacon &&
2214 (!(wiphy->features & NL80211_FEATURE_AP_SCAN) ||
2215 !(req->flags & NL80211_SCAN_FLAG_AP)))
Johannes Berg2ca27bc2010-09-16 14:58:23 +02002216 return -EOPNOTSUPP;
2217 break;
2218 default:
2219 return -EOPNOTSUPP;
2220 }
Johannes Berg2a519312009-02-10 21:25:55 +01002221
2222 return ieee80211_request_scan(sdata, req);
2223}
2224
Luciano Coelho79f460c2011-05-11 17:09:36 +03002225static int
2226ieee80211_sched_scan_start(struct wiphy *wiphy,
2227 struct net_device *dev,
2228 struct cfg80211_sched_scan_request *req)
2229{
2230 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2231
2232 if (!sdata->local->ops->sched_scan_start)
2233 return -EOPNOTSUPP;
2234
2235 return ieee80211_request_sched_scan_start(sdata, req);
2236}
2237
2238static int
Luciano Coelho85a99942011-05-12 16:28:29 +03002239ieee80211_sched_scan_stop(struct wiphy *wiphy, struct net_device *dev)
Luciano Coelho79f460c2011-05-11 17:09:36 +03002240{
2241 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2242
2243 if (!sdata->local->ops->sched_scan_stop)
2244 return -EOPNOTSUPP;
2245
Luciano Coelho85a99942011-05-12 16:28:29 +03002246 return ieee80211_request_sched_scan_stop(sdata);
Luciano Coelho79f460c2011-05-11 17:09:36 +03002247}
2248
Jouni Malinen636a5d32009-03-19 13:39:22 +02002249static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev,
2250 struct cfg80211_auth_request *req)
2251{
Johannes Berg77fdaa12009-07-07 03:45:17 +02002252 return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002253}
2254
2255static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev,
2256 struct cfg80211_assoc_request *req)
2257{
Johannes Berg77fdaa12009-07-07 03:45:17 +02002258 return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002259}
2260
2261static int ieee80211_deauth(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002262 struct cfg80211_deauth_request *req)
Jouni Malinen636a5d32009-03-19 13:39:22 +02002263{
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002264 return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002265}
2266
2267static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002268 struct cfg80211_disassoc_request *req)
Jouni Malinen636a5d32009-03-19 13:39:22 +02002269{
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002270 return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002271}
2272
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002273static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
2274 struct cfg80211_ibss_params *params)
2275{
Johannes Berg55de9082012-07-26 17:24:39 +02002276 return ieee80211_ibss_join(IEEE80211_DEV_TO_SUB_IF(dev), params);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002277}
2278
2279static int ieee80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev)
2280{
Johannes Berg55de9082012-07-26 17:24:39 +02002281 return ieee80211_ibss_leave(IEEE80211_DEV_TO_SUB_IF(dev));
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002282}
2283
Antonio Quartulli391e53e2012-11-02 13:27:49 +01002284static int ieee80211_set_mcast_rate(struct wiphy *wiphy, struct net_device *dev,
2285 int rate[IEEE80211_NUM_BANDS])
2286{
2287 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2288
Cong Ding9887dbf2013-02-06 17:23:45 +01002289 memcpy(sdata->vif.bss_conf.mcast_rate, rate,
2290 sizeof(int) * IEEE80211_NUM_BANDS);
Antonio Quartulli391e53e2012-11-02 13:27:49 +01002291
2292 return 0;
2293}
2294
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002295static int ieee80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
2296{
2297 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg24487982009-04-23 18:52:52 +02002298 int err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002299
Arik Nemtsovf23a4782010-11-08 11:51:06 +02002300 if (changed & WIPHY_PARAM_FRAG_THRESHOLD) {
2301 err = drv_set_frag_threshold(local, wiphy->frag_threshold);
2302
2303 if (err)
2304 return err;
2305 }
2306
Lukáš Turek310bc672009-12-21 22:50:48 +01002307 if (changed & WIPHY_PARAM_COVERAGE_CLASS) {
2308 err = drv_set_coverage_class(local, wiphy->coverage_class);
2309
2310 if (err)
2311 return err;
2312 }
2313
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002314 if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
Johannes Berg24487982009-04-23 18:52:52 +02002315 err = drv_set_rts_threshold(local, wiphy->rts_threshold);
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002316
Johannes Berg24487982009-04-23 18:52:52 +02002317 if (err)
2318 return err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002319 }
2320
Johannes Berg8bc83c22012-11-09 18:38:32 +01002321 if (changed & WIPHY_PARAM_RETRY_SHORT) {
2322 if (wiphy->retry_short > IEEE80211_MAX_TX_RETRY)
2323 return -EINVAL;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002324 local->hw.conf.short_frame_max_tx_count = wiphy->retry_short;
Johannes Berg8bc83c22012-11-09 18:38:32 +01002325 }
2326 if (changed & WIPHY_PARAM_RETRY_LONG) {
2327 if (wiphy->retry_long > IEEE80211_MAX_TX_RETRY)
2328 return -EINVAL;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002329 local->hw.conf.long_frame_max_tx_count = wiphy->retry_long;
Johannes Berg8bc83c22012-11-09 18:38:32 +01002330 }
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002331 if (changed &
2332 (WIPHY_PARAM_RETRY_SHORT | WIPHY_PARAM_RETRY_LONG))
2333 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
2334
2335 return 0;
2336}
2337
Johannes Berg7643a2c2009-06-02 13:01:39 +02002338static int ieee80211_set_tx_power(struct wiphy *wiphy,
Johannes Bergc8442112012-10-24 10:17:18 +02002339 struct wireless_dev *wdev,
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002340 enum nl80211_tx_power_setting type, int mbm)
Johannes Berg7643a2c2009-06-02 13:01:39 +02002341{
2342 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002343 struct ieee80211_sub_if_data *sdata;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002344
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002345 if (wdev) {
2346 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2347
2348 switch (type) {
2349 case NL80211_TX_POWER_AUTOMATIC:
2350 sdata->user_power_level = IEEE80211_UNSET_POWER_LEVEL;
2351 break;
2352 case NL80211_TX_POWER_LIMITED:
2353 case NL80211_TX_POWER_FIXED:
2354 if (mbm < 0 || (mbm % 100))
2355 return -EOPNOTSUPP;
2356 sdata->user_power_level = MBM_TO_DBM(mbm);
2357 break;
2358 }
2359
2360 ieee80211_recalc_txpower(sdata);
2361
2362 return 0;
2363 }
Johannes Berg55de9082012-07-26 17:24:39 +02002364
Johannes Berg7643a2c2009-06-02 13:01:39 +02002365 switch (type) {
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002366 case NL80211_TX_POWER_AUTOMATIC:
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002367 local->user_power_level = IEEE80211_UNSET_POWER_LEVEL;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002368 break;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002369 case NL80211_TX_POWER_LIMITED:
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002370 case NL80211_TX_POWER_FIXED:
2371 if (mbm < 0 || (mbm % 100))
2372 return -EOPNOTSUPP;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002373 local->user_power_level = MBM_TO_DBM(mbm);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002374 break;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002375 }
2376
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002377 mutex_lock(&local->iflist_mtx);
2378 list_for_each_entry(sdata, &local->interfaces, list)
2379 sdata->user_power_level = local->user_power_level;
2380 list_for_each_entry(sdata, &local->interfaces, list)
2381 ieee80211_recalc_txpower(sdata);
2382 mutex_unlock(&local->iflist_mtx);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002383
2384 return 0;
2385}
2386
Johannes Bergc8442112012-10-24 10:17:18 +02002387static int ieee80211_get_tx_power(struct wiphy *wiphy,
2388 struct wireless_dev *wdev,
2389 int *dbm)
Johannes Berg7643a2c2009-06-02 13:01:39 +02002390{
2391 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002392 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002393
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002394 if (!local->use_chanctx)
2395 *dbm = local->hw.conf.power_level;
2396 else
2397 *dbm = sdata->vif.bss_conf.txpower;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002398
Johannes Berg7643a2c2009-06-02 13:01:39 +02002399 return 0;
2400}
2401
Johannes Bergab737a42009-07-01 21:26:58 +02002402static int ieee80211_set_wds_peer(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg388ac772010-10-07 13:11:09 +02002403 const u8 *addr)
Johannes Bergab737a42009-07-01 21:26:58 +02002404{
2405 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2406
2407 memcpy(&sdata->u.wds.remote_addr, addr, ETH_ALEN);
2408
2409 return 0;
2410}
2411
Johannes Berg1f87f7d2009-06-02 13:01:41 +02002412static void ieee80211_rfkill_poll(struct wiphy *wiphy)
2413{
2414 struct ieee80211_local *local = wiphy_priv(wiphy);
2415
2416 drv_rfkill_poll(local);
2417}
2418
Johannes Bergaff89a92009-07-01 21:26:51 +02002419#ifdef CONFIG_NL80211_TESTMODE
David Spinadelfc73f112013-07-31 18:04:15 +03002420static int ieee80211_testmode_cmd(struct wiphy *wiphy,
2421 struct wireless_dev *wdev,
2422 void *data, int len)
Johannes Bergaff89a92009-07-01 21:26:51 +02002423{
2424 struct ieee80211_local *local = wiphy_priv(wiphy);
David Spinadel52981cd2013-07-31 18:06:22 +03002425 struct ieee80211_vif *vif = NULL;
Johannes Bergaff89a92009-07-01 21:26:51 +02002426
2427 if (!local->ops->testmode_cmd)
2428 return -EOPNOTSUPP;
2429
David Spinadel52981cd2013-07-31 18:06:22 +03002430 if (wdev) {
2431 struct ieee80211_sub_if_data *sdata;
2432
2433 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2434 if (sdata->flags & IEEE80211_SDATA_IN_DRIVER)
2435 vif = &sdata->vif;
2436 }
2437
2438 return local->ops->testmode_cmd(&local->hw, vif, data, len);
Johannes Bergaff89a92009-07-01 21:26:51 +02002439}
Wey-Yi Guy71063f02011-05-20 09:05:54 -07002440
2441static int ieee80211_testmode_dump(struct wiphy *wiphy,
2442 struct sk_buff *skb,
2443 struct netlink_callback *cb,
2444 void *data, int len)
2445{
2446 struct ieee80211_local *local = wiphy_priv(wiphy);
2447
2448 if (!local->ops->testmode_dump)
2449 return -EOPNOTSUPP;
2450
2451 return local->ops->testmode_dump(&local->hw, skb, cb, data, len);
2452}
Johannes Bergaff89a92009-07-01 21:26:51 +02002453#endif
2454
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002455int __ieee80211_request_smps_ap(struct ieee80211_sub_if_data *sdata,
2456 enum ieee80211_smps_mode smps_mode)
2457{
2458 struct sta_info *sta;
2459 enum ieee80211_smps_mode old_req;
2460 int i;
2461
2462 if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_AP))
2463 return -EINVAL;
2464
2465 if (sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT)
2466 return 0;
2467
2468 old_req = sdata->u.ap.req_smps;
2469 sdata->u.ap.req_smps = smps_mode;
2470
2471 /* AUTOMATIC doesn't mean much for AP - don't allow it */
2472 if (old_req == smps_mode ||
2473 smps_mode == IEEE80211_SMPS_AUTOMATIC)
2474 return 0;
2475
2476 /* If no associated stations, there's no need to do anything */
2477 if (!atomic_read(&sdata->u.ap.num_mcast_sta)) {
2478 sdata->smps_mode = smps_mode;
2479 ieee80211_queue_work(&sdata->local->hw, &sdata->recalc_smps);
2480 return 0;
2481 }
2482
2483 ht_dbg(sdata,
2484 "SMSP %d requested in AP mode, sending Action frame to %d stations\n",
2485 smps_mode, atomic_read(&sdata->u.ap.num_mcast_sta));
2486
2487 mutex_lock(&sdata->local->sta_mtx);
2488 for (i = 0; i < STA_HASH_SIZE; i++) {
2489 for (sta = rcu_dereference_protected(sdata->local->sta_hash[i],
2490 lockdep_is_held(&sdata->local->sta_mtx));
2491 sta;
2492 sta = rcu_dereference_protected(sta->hnext,
2493 lockdep_is_held(&sdata->local->sta_mtx))) {
2494 /*
2495 * Only stations associated to our AP and
2496 * associated VLANs
2497 */
2498 if (sta->sdata->bss != &sdata->u.ap)
2499 continue;
2500
2501 /* This station doesn't support MIMO - skip it */
2502 if (sta_info_tx_streams(sta) == 1)
2503 continue;
2504
2505 /*
2506 * Don't wake up a STA just to send the action frame
2507 * unless we are getting more restrictive.
2508 */
2509 if (test_sta_flag(sta, WLAN_STA_PS_STA) &&
2510 !ieee80211_smps_is_restrictive(sta->known_smps_mode,
2511 smps_mode)) {
2512 ht_dbg(sdata,
2513 "Won't send SMPS to sleeping STA %pM\n",
2514 sta->sta.addr);
2515 continue;
2516 }
2517
2518 /*
2519 * If the STA is not authorized, wait until it gets
2520 * authorized and the action frame will be sent then.
2521 */
2522 if (!test_sta_flag(sta, WLAN_STA_AUTHORIZED))
2523 continue;
2524
2525 ht_dbg(sdata, "Sending SMPS to %pM\n", sta->sta.addr);
2526 ieee80211_send_smps_action(sdata, smps_mode,
2527 sta->sta.addr,
2528 sdata->vif.bss_conf.bssid);
2529 }
2530 }
2531 mutex_unlock(&sdata->local->sta_mtx);
2532
2533 sdata->smps_mode = smps_mode;
2534 ieee80211_queue_work(&sdata->local->hw, &sdata->recalc_smps);
2535
2536 return 0;
2537}
2538
2539int __ieee80211_request_smps_mgd(struct ieee80211_sub_if_data *sdata,
2540 enum ieee80211_smps_mode smps_mode)
Johannes Berg0f782312009-12-01 13:37:02 +01002541{
2542 const u8 *ap;
2543 enum ieee80211_smps_mode old_req;
2544 int err;
2545
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002546 lockdep_assert_held(&sdata->wdev.mtx);
Johannes Berg243e6df2011-04-19 20:44:04 +02002547
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002548 if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_STATION))
2549 return -EINVAL;
2550
Johannes Berg0f782312009-12-01 13:37:02 +01002551 old_req = sdata->u.mgd.req_smps;
2552 sdata->u.mgd.req_smps = smps_mode;
2553
2554 if (old_req == smps_mode &&
2555 smps_mode != IEEE80211_SMPS_AUTOMATIC)
2556 return 0;
2557
2558 /*
2559 * If not associated, or current association is not an HT
Johannes Berg04ecd252012-09-11 14:34:12 +02002560 * association, there's no need to do anything, just store
2561 * the new value until we associate.
Johannes Berg0f782312009-12-01 13:37:02 +01002562 */
2563 if (!sdata->u.mgd.associated ||
Johannes Berg4bf88532012-11-09 11:39:59 +01002564 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT)
Johannes Berg0f782312009-12-01 13:37:02 +01002565 return 0;
Johannes Berg0f782312009-12-01 13:37:02 +01002566
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002567 ap = sdata->u.mgd.associated->bssid;
Johannes Berg0f782312009-12-01 13:37:02 +01002568
2569 if (smps_mode == IEEE80211_SMPS_AUTOMATIC) {
2570 if (sdata->u.mgd.powersave)
2571 smps_mode = IEEE80211_SMPS_DYNAMIC;
2572 else
2573 smps_mode = IEEE80211_SMPS_OFF;
2574 }
2575
2576 /* send SM PS frame to AP */
2577 err = ieee80211_send_smps_action(sdata, smps_mode,
2578 ap, ap);
2579 if (err)
2580 sdata->u.mgd.req_smps = old_req;
2581
2582 return err;
2583}
2584
Johannes Bergbc92afd2009-07-01 21:26:57 +02002585static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev,
2586 bool enabled, int timeout)
2587{
2588 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2589 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Bergbc92afd2009-07-01 21:26:57 +02002590
Bob Copeland2d3db212013-10-29 18:11:59 -04002591 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Benoit Papillaulte5de30c2010-01-15 12:21:37 +01002592 return -EOPNOTSUPP;
2593
Johannes Bergbc92afd2009-07-01 21:26:57 +02002594 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
2595 return -EOPNOTSUPP;
2596
2597 if (enabled == sdata->u.mgd.powersave &&
Juuso Oikarinenff616382010-06-09 09:51:52 +03002598 timeout == local->dynamic_ps_forced_timeout)
Johannes Bergbc92afd2009-07-01 21:26:57 +02002599 return 0;
2600
2601 sdata->u.mgd.powersave = enabled;
Juuso Oikarinenff616382010-06-09 09:51:52 +03002602 local->dynamic_ps_forced_timeout = timeout;
Johannes Bergbc92afd2009-07-01 21:26:57 +02002603
Johannes Berg0f782312009-12-01 13:37:02 +01002604 /* no change, but if automatic follow powersave */
Johannes Berged405be2013-06-03 13:51:59 +02002605 sdata_lock(sdata);
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002606 __ieee80211_request_smps_mgd(sdata, sdata->u.mgd.req_smps);
Johannes Berged405be2013-06-03 13:51:59 +02002607 sdata_unlock(sdata);
Johannes Berg0f782312009-12-01 13:37:02 +01002608
Johannes Bergbc92afd2009-07-01 21:26:57 +02002609 if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
2610 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2611
2612 ieee80211_recalc_ps(local, -1);
Eliad Pellerab095872012-07-27 12:33:22 +03002613 ieee80211_recalc_ps_vif(sdata);
Johannes Bergbc92afd2009-07-01 21:26:57 +02002614
2615 return 0;
2616}
2617
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002618static int ieee80211_set_cqm_rssi_config(struct wiphy *wiphy,
2619 struct net_device *dev,
2620 s32 rssi_thold, u32 rssi_hyst)
2621{
2622 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002623 struct ieee80211_vif *vif = &sdata->vif;
2624 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
2625
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002626 if (rssi_thold == bss_conf->cqm_rssi_thold &&
2627 rssi_hyst == bss_conf->cqm_rssi_hyst)
2628 return 0;
2629
2630 bss_conf->cqm_rssi_thold = rssi_thold;
2631 bss_conf->cqm_rssi_hyst = rssi_hyst;
2632
2633 /* tell the driver upon association, unless already associated */
Johannes Bergea086352012-01-19 09:29:58 +01002634 if (sdata->u.mgd.associated &&
2635 sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002636 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_CQM);
2637
2638 return 0;
2639}
2640
Johannes Berg99303802009-07-01 21:26:59 +02002641static int ieee80211_set_bitrate_mask(struct wiphy *wiphy,
2642 struct net_device *dev,
2643 const u8 *addr,
2644 const struct cfg80211_bitrate_mask *mask)
2645{
2646 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2647 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +05302648 int i, ret;
Johannes Berg99303802009-07-01 21:26:59 +02002649
Eliad Peller554a43d2012-06-12 12:41:15 +03002650 if (!ieee80211_sdata_running(sdata))
2651 return -ENETDOWN;
2652
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +05302653 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL) {
2654 ret = drv_set_bitrate_mask(local, sdata, mask);
2655 if (ret)
2656 return ret;
2657 }
Johannes Berg99303802009-07-01 21:26:59 +02002658
Simon Wunderlich19468412012-01-28 17:25:33 +01002659 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
Felix Fietkau2ffbe6d2013-04-16 13:38:42 +02002660 struct ieee80211_supported_band *sband = wiphy->bands[i];
2661 int j;
2662
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002663 sdata->rc_rateidx_mask[i] = mask->control[i].legacy;
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01002664 memcpy(sdata->rc_rateidx_mcs_mask[i], mask->control[i].ht_mcs,
2665 sizeof(mask->control[i].ht_mcs));
Felix Fietkau2ffbe6d2013-04-16 13:38:42 +02002666
2667 sdata->rc_has_mcs_mask[i] = false;
2668 if (!sband)
2669 continue;
2670
2671 for (j = 0; j < IEEE80211_HT_MCS_MASK_LEN; j++)
2672 if (~sdata->rc_rateidx_mcs_mask[i][j]) {
2673 sdata->rc_has_mcs_mask[i] = true;
2674 break;
2675 }
Simon Wunderlich19468412012-01-28 17:25:33 +01002676 }
Johannes Berg99303802009-07-01 21:26:59 +02002677
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002678 return 0;
Johannes Berg99303802009-07-01 21:26:59 +02002679}
2680
Johannes Berg2eb278e2012-06-05 14:28:42 +02002681static int ieee80211_start_roc_work(struct ieee80211_local *local,
2682 struct ieee80211_sub_if_data *sdata,
2683 struct ieee80211_channel *channel,
Johannes Berg2eb278e2012-06-05 14:28:42 +02002684 unsigned int duration, u64 *cookie,
Ilan Peerd339d5c2013-02-12 09:34:13 +02002685 struct sk_buff *txskb,
2686 enum ieee80211_roc_type type)
Johannes Berg21f83582010-12-18 17:20:47 +01002687{
Johannes Berg2eb278e2012-06-05 14:28:42 +02002688 struct ieee80211_roc_work *roc, *tmp;
2689 bool queued = false;
Johannes Berg21f83582010-12-18 17:20:47 +01002690 int ret;
Johannes Berg21f83582010-12-18 17:20:47 +01002691
2692 lockdep_assert_held(&local->mtx);
2693
Johannes Bergfe57d9f2012-07-26 14:55:08 +02002694 if (local->use_chanctx && !local->ops->remain_on_channel)
2695 return -EOPNOTSUPP;
2696
Johannes Berg2eb278e2012-06-05 14:28:42 +02002697 roc = kzalloc(sizeof(*roc), GFP_KERNEL);
2698 if (!roc)
2699 return -ENOMEM;
Johannes Berg21f83582010-12-18 17:20:47 +01002700
Ilan Peer2fae0622013-12-19 13:25:29 +02002701 /*
2702 * If the duration is zero, then the driver
2703 * wouldn't actually do anything. Set it to
2704 * 10 for now.
2705 *
2706 * TODO: cancel the off-channel operation
2707 * when we get the SKB's TX status and
2708 * the wait time was zero before.
2709 */
2710 if (!duration)
2711 duration = 10;
2712
Johannes Berg2eb278e2012-06-05 14:28:42 +02002713 roc->chan = channel;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002714 roc->duration = duration;
2715 roc->req_duration = duration;
2716 roc->frame = txskb;
Ilan Peerd339d5c2013-02-12 09:34:13 +02002717 roc->type = type;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002718 roc->mgmt_tx_cookie = (unsigned long)txskb;
2719 roc->sdata = sdata;
2720 INIT_DELAYED_WORK(&roc->work, ieee80211_sw_roc_work);
2721 INIT_LIST_HEAD(&roc->dependents);
2722
Eliad Peller2f617432014-01-12 11:06:37 +02002723 /*
2724 * cookie is either the roc cookie (for normal roc)
2725 * or the SKB (for mgmt TX)
2726 */
2727 if (!txskb) {
2728 /* local->mtx protects this */
2729 local->roc_cookie_counter++;
2730 roc->cookie = local->roc_cookie_counter;
2731 /* wow, you wrapped 64 bits ... more likely a bug */
2732 if (WARN_ON(roc->cookie == 0)) {
2733 roc->cookie = 1;
2734 local->roc_cookie_counter++;
2735 }
2736 *cookie = roc->cookie;
2737 } else {
2738 *cookie = (unsigned long)txskb;
2739 }
2740
Johannes Berg2eb278e2012-06-05 14:28:42 +02002741 /* if there's one pending or we're scanning, queue this one */
Simon Wunderlich164eb022013-02-08 18:16:20 +01002742 if (!list_empty(&local->roc_list) ||
2743 local->scanning || local->radar_detect_enabled)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002744 goto out_check_combine;
2745
2746 /* if not HW assist, just queue & schedule work */
2747 if (!local->ops->remain_on_channel) {
2748 ieee80211_queue_delayed_work(&local->hw, &roc->work, 0);
2749 goto out_queue;
Johannes Berg21f83582010-12-18 17:20:47 +01002750 }
2751
Johannes Berg2eb278e2012-06-05 14:28:42 +02002752 /* otherwise actually kick it off here (for error handling) */
2753
Ilan Peerd339d5c2013-02-12 09:34:13 +02002754 ret = drv_remain_on_channel(local, sdata, channel, duration, type);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002755 if (ret) {
2756 kfree(roc);
2757 return ret;
2758 }
2759
2760 roc->started = true;
2761 goto out_queue;
2762
2763 out_check_combine:
2764 list_for_each_entry(tmp, &local->roc_list, list) {
Johannes Berg42d97a52012-11-08 18:31:02 +01002765 if (tmp->chan != channel || tmp->sdata != sdata)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002766 continue;
2767
2768 /*
2769 * Extend this ROC if possible:
2770 *
2771 * If it hasn't started yet, just increase the duration
2772 * and add the new one to the list of dependents.
Ilan Peerd339d5c2013-02-12 09:34:13 +02002773 * If the type of the new ROC has higher priority, modify the
2774 * type of the previous one to match that of the new one.
Johannes Berg2eb278e2012-06-05 14:28:42 +02002775 */
2776 if (!tmp->started) {
2777 list_add_tail(&roc->list, &tmp->dependents);
2778 tmp->duration = max(tmp->duration, roc->duration);
Ilan Peerd339d5c2013-02-12 09:34:13 +02002779 tmp->type = max(tmp->type, roc->type);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002780 queued = true;
2781 break;
2782 }
2783
2784 /* If it has already started, it's more difficult ... */
2785 if (local->ops->remain_on_channel) {
2786 unsigned long j = jiffies;
2787
2788 /*
2789 * In the offloaded ROC case, if it hasn't begun, add
2790 * this new one to the dependent list to be handled
Ilan Peerd339d5c2013-02-12 09:34:13 +02002791 * when the master one begins. If it has begun,
Johannes Berg2eb278e2012-06-05 14:28:42 +02002792 * check that there's still a minimum time left and
2793 * if so, start this one, transmitting the frame, but
Ilan Peerd339d5c2013-02-12 09:34:13 +02002794 * add it to the list directly after this one with
Johannes Berg2eb278e2012-06-05 14:28:42 +02002795 * a reduced time so we'll ask the driver to execute
2796 * it right after finishing the previous one, in the
2797 * hope that it'll also be executed right afterwards,
2798 * effectively extending the old one.
2799 * If there's no minimum time left, just add it to the
2800 * normal list.
Ilan Peerd339d5c2013-02-12 09:34:13 +02002801 * TODO: the ROC type is ignored here, assuming that it
2802 * is better to immediately use the current ROC.
Johannes Berg2eb278e2012-06-05 14:28:42 +02002803 */
2804 if (!tmp->hw_begun) {
2805 list_add_tail(&roc->list, &tmp->dependents);
2806 queued = true;
2807 break;
2808 }
2809
2810 if (time_before(j + IEEE80211_ROC_MIN_LEFT,
2811 tmp->hw_start_time +
2812 msecs_to_jiffies(tmp->duration))) {
2813 int new_dur;
2814
2815 ieee80211_handle_roc_started(roc);
2816
2817 new_dur = roc->duration -
2818 jiffies_to_msecs(tmp->hw_start_time +
2819 msecs_to_jiffies(
2820 tmp->duration) -
2821 j);
2822
2823 if (new_dur > 0) {
2824 /* add right after tmp */
2825 list_add(&roc->list, &tmp->list);
2826 } else {
2827 list_add_tail(&roc->list,
2828 &tmp->dependents);
2829 }
2830 queued = true;
2831 }
2832 } else if (del_timer_sync(&tmp->work.timer)) {
2833 unsigned long new_end;
2834
2835 /*
2836 * In the software ROC case, cancel the timer, if
2837 * that fails then the finish work is already
2838 * queued/pending and thus we queue the new ROC
2839 * normally, if that succeeds then we can extend
2840 * the timer duration and TX the frame (if any.)
2841 */
2842
2843 list_add_tail(&roc->list, &tmp->dependents);
2844 queued = true;
2845
2846 new_end = jiffies + msecs_to_jiffies(roc->duration);
2847
2848 /* ok, it was started & we canceled timer */
2849 if (time_after(new_end, tmp->work.timer.expires))
2850 mod_timer(&tmp->work.timer, new_end);
2851 else
2852 add_timer(&tmp->work.timer);
2853
2854 ieee80211_handle_roc_started(roc);
2855 }
2856 break;
2857 }
2858
2859 out_queue:
2860 if (!queued)
2861 list_add_tail(&roc->list, &local->roc_list);
2862
Johannes Berg2eb278e2012-06-05 14:28:42 +02002863 return 0;
Johannes Berg21f83582010-12-18 17:20:47 +01002864}
2865
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002866static int ieee80211_remain_on_channel(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02002867 struct wireless_dev *wdev,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002868 struct ieee80211_channel *chan,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002869 unsigned int duration,
2870 u64 *cookie)
2871{
Johannes Berg71bbc992012-06-15 15:30:18 +02002872 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg21f83582010-12-18 17:20:47 +01002873 struct ieee80211_local *local = sdata->local;
Johannes Berg21f83582010-12-18 17:20:47 +01002874 int ret;
2875
Johannes Berg2eb278e2012-06-05 14:28:42 +02002876 mutex_lock(&local->mtx);
Johannes Berg42d97a52012-11-08 18:31:02 +01002877 ret = ieee80211_start_roc_work(local, sdata, chan,
Ilan Peerd339d5c2013-02-12 09:34:13 +02002878 duration, cookie, NULL,
2879 IEEE80211_ROC_TYPE_NORMAL);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002880 mutex_unlock(&local->mtx);
Johannes Berg21f83582010-12-18 17:20:47 +01002881
Johannes Berg2eb278e2012-06-05 14:28:42 +02002882 return ret;
2883}
2884
2885static int ieee80211_cancel_roc(struct ieee80211_local *local,
2886 u64 cookie, bool mgmt_tx)
2887{
2888 struct ieee80211_roc_work *roc, *tmp, *found = NULL;
2889 int ret;
2890
2891 mutex_lock(&local->mtx);
2892 list_for_each_entry_safe(roc, tmp, &local->roc_list, list) {
Johannes Berge979e332012-06-11 17:09:41 +02002893 struct ieee80211_roc_work *dep, *tmp2;
2894
2895 list_for_each_entry_safe(dep, tmp2, &roc->dependents, list) {
Johannes Berg50febf62012-10-26 16:13:06 +02002896 if (!mgmt_tx && dep->cookie != cookie)
Johannes Berge979e332012-06-11 17:09:41 +02002897 continue;
2898 else if (mgmt_tx && dep->mgmt_tx_cookie != cookie)
2899 continue;
2900 /* found dependent item -- just remove it */
2901 list_del(&dep->list);
2902 mutex_unlock(&local->mtx);
2903
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002904 ieee80211_roc_notify_destroy(dep, true);
Johannes Berge979e332012-06-11 17:09:41 +02002905 return 0;
2906 }
2907
Johannes Berg50febf62012-10-26 16:13:06 +02002908 if (!mgmt_tx && roc->cookie != cookie)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002909 continue;
2910 else if (mgmt_tx && roc->mgmt_tx_cookie != cookie)
2911 continue;
2912
2913 found = roc;
2914 break;
2915 }
2916
2917 if (!found) {
2918 mutex_unlock(&local->mtx);
Johannes Berg21f83582010-12-18 17:20:47 +01002919 return -ENOENT;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002920 }
Johannes Berg21f83582010-12-18 17:20:47 +01002921
Johannes Berge979e332012-06-11 17:09:41 +02002922 /*
2923 * We found the item to cancel, so do that. Note that it
2924 * may have dependents, which we also cancel (and send
2925 * the expired signal for.) Not doing so would be quite
2926 * tricky here, but we may need to fix it later.
2927 */
2928
Johannes Berg2eb278e2012-06-05 14:28:42 +02002929 if (local->ops->remain_on_channel) {
2930 if (found->started) {
2931 ret = drv_cancel_remain_on_channel(local);
2932 if (WARN_ON_ONCE(ret)) {
2933 mutex_unlock(&local->mtx);
2934 return ret;
2935 }
2936 }
Johannes Berg21f83582010-12-18 17:20:47 +01002937
Johannes Berg2eb278e2012-06-05 14:28:42 +02002938 list_del(&found->list);
2939
Johannes Berg0f6b3f52012-06-20 20:11:33 +02002940 if (found->started)
2941 ieee80211_start_next_roc(local);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002942 mutex_unlock(&local->mtx);
2943
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002944 ieee80211_roc_notify_destroy(found, true);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002945 } else {
2946 /* work may be pending so use it all the time */
2947 found->abort = true;
2948 ieee80211_queue_delayed_work(&local->hw, &found->work, 0);
2949
2950 mutex_unlock(&local->mtx);
2951
2952 /* work will clean up etc */
2953 flush_delayed_work(&found->work);
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002954 WARN_ON(!found->to_be_freed);
2955 kfree(found);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002956 }
Johannes Berg21f83582010-12-18 17:20:47 +01002957
Johannes Berg21f83582010-12-18 17:20:47 +01002958 return 0;
2959}
2960
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002961static int ieee80211_cancel_remain_on_channel(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02002962 struct wireless_dev *wdev,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002963 u64 cookie)
2964{
Johannes Berg71bbc992012-06-15 15:30:18 +02002965 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg21f83582010-12-18 17:20:47 +01002966 struct ieee80211_local *local = sdata->local;
2967
Johannes Berg2eb278e2012-06-05 14:28:42 +02002968 return ieee80211_cancel_roc(local, cookie, false);
Johannes Bergf30221e2010-11-25 10:02:30 +01002969}
2970
Simon Wunderlich164eb022013-02-08 18:16:20 +01002971static int ieee80211_start_radar_detection(struct wiphy *wiphy,
2972 struct net_device *dev,
Janusz Dziedzic31559f32014-02-21 19:46:13 +01002973 struct cfg80211_chan_def *chandef,
2974 u32 cac_time_ms)
Simon Wunderlich164eb022013-02-08 18:16:20 +01002975{
2976 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2977 struct ieee80211_local *local = sdata->local;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002978 int err;
2979
Johannes Berg34a37402013-12-18 09:43:33 +01002980 mutex_lock(&local->mtx);
2981 if (!list_empty(&local->roc_list) || local->scanning) {
2982 err = -EBUSY;
2983 goto out_unlock;
2984 }
Simon Wunderlich164eb022013-02-08 18:16:20 +01002985
2986 /* whatever, but channel contexts should not complain about that one */
2987 sdata->smps_mode = IEEE80211_SMPS_OFF;
2988 sdata->needed_rx_chains = local->rx_chains;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002989
Simon Wunderlich164eb022013-02-08 18:16:20 +01002990 err = ieee80211_vif_use_channel(sdata, chandef,
2991 IEEE80211_CHANCTX_SHARED);
Simon Wunderlich164eb022013-02-08 18:16:20 +01002992 if (err)
Johannes Berg34a37402013-12-18 09:43:33 +01002993 goto out_unlock;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002994
Simon Wunderlich164eb022013-02-08 18:16:20 +01002995 ieee80211_queue_delayed_work(&sdata->local->hw,
Janusz Dziedzic31559f32014-02-21 19:46:13 +01002996 &sdata->dfs_cac_timer_work,
2997 msecs_to_jiffies(cac_time_ms));
Simon Wunderlich164eb022013-02-08 18:16:20 +01002998
Johannes Berg34a37402013-12-18 09:43:33 +01002999 out_unlock:
3000 mutex_unlock(&local->mtx);
3001 return err;
Simon Wunderlich164eb022013-02-08 18:16:20 +01003002}
3003
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003004static struct cfg80211_beacon_data *
3005cfg80211_beacon_dup(struct cfg80211_beacon_data *beacon)
3006{
3007 struct cfg80211_beacon_data *new_beacon;
3008 u8 *pos;
3009 int len;
3010
3011 len = beacon->head_len + beacon->tail_len + beacon->beacon_ies_len +
3012 beacon->proberesp_ies_len + beacon->assocresp_ies_len +
3013 beacon->probe_resp_len;
3014
3015 new_beacon = kzalloc(sizeof(*new_beacon) + len, GFP_KERNEL);
3016 if (!new_beacon)
3017 return NULL;
3018
3019 pos = (u8 *)(new_beacon + 1);
3020 if (beacon->head_len) {
3021 new_beacon->head_len = beacon->head_len;
3022 new_beacon->head = pos;
3023 memcpy(pos, beacon->head, beacon->head_len);
3024 pos += beacon->head_len;
3025 }
3026 if (beacon->tail_len) {
3027 new_beacon->tail_len = beacon->tail_len;
3028 new_beacon->tail = pos;
3029 memcpy(pos, beacon->tail, beacon->tail_len);
3030 pos += beacon->tail_len;
3031 }
3032 if (beacon->beacon_ies_len) {
3033 new_beacon->beacon_ies_len = beacon->beacon_ies_len;
3034 new_beacon->beacon_ies = pos;
3035 memcpy(pos, beacon->beacon_ies, beacon->beacon_ies_len);
3036 pos += beacon->beacon_ies_len;
3037 }
3038 if (beacon->proberesp_ies_len) {
3039 new_beacon->proberesp_ies_len = beacon->proberesp_ies_len;
3040 new_beacon->proberesp_ies = pos;
3041 memcpy(pos, beacon->proberesp_ies, beacon->proberesp_ies_len);
3042 pos += beacon->proberesp_ies_len;
3043 }
3044 if (beacon->assocresp_ies_len) {
3045 new_beacon->assocresp_ies_len = beacon->assocresp_ies_len;
3046 new_beacon->assocresp_ies = pos;
3047 memcpy(pos, beacon->assocresp_ies, beacon->assocresp_ies_len);
3048 pos += beacon->assocresp_ies_len;
3049 }
3050 if (beacon->probe_resp_len) {
3051 new_beacon->probe_resp_len = beacon->probe_resp_len;
3052 beacon->probe_resp = pos;
3053 memcpy(pos, beacon->probe_resp, beacon->probe_resp_len);
3054 pos += beacon->probe_resp_len;
3055 }
3056
3057 return new_beacon;
3058}
3059
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003060void ieee80211_csa_finish(struct ieee80211_vif *vif)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003061{
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003062 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
3063
3064 ieee80211_queue_work(&sdata->local->hw,
3065 &sdata->csa_finalize_work);
3066}
3067EXPORT_SYMBOL(ieee80211_csa_finish);
3068
Michal Kazior66199502014-04-09 15:11:00 +02003069static int ieee80211_set_after_csa_beacon(struct ieee80211_sub_if_data *sdata,
3070 u32 *changed)
3071{
3072 int err;
3073
3074 switch (sdata->vif.type) {
3075 case NL80211_IFTYPE_AP:
3076 err = ieee80211_assign_beacon(sdata, sdata->u.ap.next_beacon);
3077 kfree(sdata->u.ap.next_beacon);
3078 sdata->u.ap.next_beacon = NULL;
3079
3080 if (err < 0)
3081 return err;
3082 *changed |= err;
3083 break;
3084 case NL80211_IFTYPE_ADHOC:
3085 err = ieee80211_ibss_finish_csa(sdata);
3086 if (err < 0)
3087 return err;
3088 *changed |= err;
3089 break;
3090#ifdef CONFIG_MAC80211_MESH
3091 case NL80211_IFTYPE_MESH_POINT:
3092 err = ieee80211_mesh_finish_csa(sdata);
3093 if (err < 0)
3094 return err;
3095 *changed |= err;
3096 break;
3097#endif
3098 default:
3099 WARN_ON(1);
3100 return -EINVAL;
3101 }
3102
3103 return 0;
3104}
3105
Michal Kaziorcf8767d2014-05-08 09:10:02 +02003106static int __ieee80211_csa_finalize(struct ieee80211_sub_if_data *sdata)
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003107{
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003108 struct ieee80211_local *local = sdata->local;
Michal Kazior66199502014-04-09 15:11:00 +02003109 u32 changed = 0;
3110 int err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003111
Michal Kaziordbd72852014-01-29 07:56:21 +01003112 sdata_assert_lock(sdata);
Michal Kazior59af6922014-04-09 15:10:59 +02003113 lockdep_assert_held(&local->mtx);
Michal Kaziordbd72852014-01-29 07:56:21 +01003114
Michal Kaziorcc901de2014-01-29 07:56:20 +01003115 sdata->radar_required = sdata->csa_radar_required;
Luciano Coelho33787fc2013-11-11 20:34:54 +02003116 err = ieee80211_vif_change_channel(sdata, &changed);
Michal Kaziorcf8767d2014-05-08 09:10:02 +02003117 if (err < 0)
3118 return err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003119
Arik Nemtsov7578d572013-09-01 17:15:51 +03003120 if (!local->use_chanctx) {
Luciano Coelho33787fc2013-11-11 20:34:54 +02003121 local->_oper_chandef = sdata->csa_chandef;
Arik Nemtsov7578d572013-09-01 17:15:51 +03003122 ieee80211_hw_config(local, 0);
3123 }
3124
Simon Wunderliche487eae2013-11-21 18:19:51 +01003125 sdata->vif.csa_active = false;
Michal Kazior97518af2014-01-29 07:56:18 +01003126
Michal Kazior66199502014-04-09 15:11:00 +02003127 err = ieee80211_set_after_csa_beacon(sdata, &changed);
3128 if (err)
Michal Kaziorcf8767d2014-05-08 09:10:02 +02003129 return err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003130
Michal Kaziorfaf046e2014-01-29 07:56:17 +01003131 ieee80211_bss_info_change_notify(sdata, changed);
Michal Kazior59af6922014-04-09 15:10:59 +02003132 cfg80211_ch_switch_notify(sdata->dev, &sdata->csa_chandef);
3133
3134 if (!ieee80211_csa_needs_block_tx(local))
3135 ieee80211_wake_queues_by_reason(&local->hw,
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003136 IEEE80211_MAX_QUEUE_MAP,
3137 IEEE80211_QUEUE_STOP_REASON_CSA);
Michal Kaziorcf8767d2014-05-08 09:10:02 +02003138
3139 return 0;
3140}
3141
3142static void ieee80211_csa_finalize(struct ieee80211_sub_if_data *sdata)
3143{
3144 if (__ieee80211_csa_finalize(sdata)) {
3145 sdata_info(sdata, "failed to finalize CSA, disconnecting\n");
3146 cfg80211_stop_iface(sdata->local->hw.wiphy, &sdata->wdev,
3147 GFP_KERNEL);
3148 }
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003149}
3150
3151void ieee80211_csa_finalize_work(struct work_struct *work)
3152{
3153 struct ieee80211_sub_if_data *sdata =
3154 container_of(work, struct ieee80211_sub_if_data,
3155 csa_finalize_work);
Michal Kazior59af6922014-04-09 15:10:59 +02003156 struct ieee80211_local *local = sdata->local;
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003157
3158 sdata_lock(sdata);
Michal Kazior59af6922014-04-09 15:10:59 +02003159 mutex_lock(&local->mtx);
3160
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003161 /* AP might have been stopped while waiting for the lock. */
3162 if (!sdata->vif.csa_active)
3163 goto unlock;
3164
3165 if (!ieee80211_sdata_running(sdata))
3166 goto unlock;
3167
3168 ieee80211_csa_finalize(sdata);
Simon Wunderliche487eae2013-11-21 18:19:51 +01003169
3170unlock:
Michal Kazior59af6922014-04-09 15:10:59 +02003171 mutex_unlock(&local->mtx);
Simon Wunderliche487eae2013-11-21 18:19:51 +01003172 sdata_unlock(sdata);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003173}
3174
Michal Kazior37fa2bd2014-02-28 15:59:06 +01003175static int ieee80211_set_csa_beacon(struct ieee80211_sub_if_data *sdata,
3176 struct cfg80211_csa_settings *params,
3177 u32 *changed)
3178{
3179 int err;
3180
3181 switch (sdata->vif.type) {
3182 case NL80211_IFTYPE_AP:
3183 sdata->u.ap.next_beacon =
3184 cfg80211_beacon_dup(&params->beacon_after);
3185 if (!sdata->u.ap.next_beacon)
3186 return -ENOMEM;
3187
3188 /*
3189 * With a count of 0, we don't have to wait for any
3190 * TBTT before switching, so complete the CSA
3191 * immediately. In theory, with a count == 1 we
3192 * should delay the switch until just before the next
3193 * TBTT, but that would complicate things so we switch
3194 * immediately too. If we would delay the switch
3195 * until the next TBTT, we would have to set the probe
3196 * response here.
3197 *
3198 * TODO: A channel switch with count <= 1 without
3199 * sending a CSA action frame is kind of useless,
3200 * because the clients won't know we're changing
3201 * channels. The action frame must be implemented
3202 * either here or in the userspace.
3203 */
3204 if (params->count <= 1)
3205 break;
3206
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03003207 if ((params->n_counter_offsets_beacon >
3208 IEEE80211_MAX_CSA_COUNTERS_NUM) ||
3209 (params->n_counter_offsets_presp >
3210 IEEE80211_MAX_CSA_COUNTERS_NUM))
3211 return -EINVAL;
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03003212
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03003213 /* make sure we don't have garbage in other counters */
3214 memset(sdata->csa_counter_offset_beacon, 0,
3215 sizeof(sdata->csa_counter_offset_beacon));
3216 memset(sdata->csa_counter_offset_presp, 0,
3217 sizeof(sdata->csa_counter_offset_presp));
3218
3219 memcpy(sdata->csa_counter_offset_beacon,
3220 params->counter_offsets_beacon,
3221 params->n_counter_offsets_beacon * sizeof(u16));
3222 memcpy(sdata->csa_counter_offset_presp,
3223 params->counter_offsets_presp,
3224 params->n_counter_offsets_presp * sizeof(u16));
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03003225
Michal Kazior37fa2bd2014-02-28 15:59:06 +01003226 err = ieee80211_assign_beacon(sdata, &params->beacon_csa);
3227 if (err < 0) {
3228 kfree(sdata->u.ap.next_beacon);
3229 return err;
3230 }
3231 *changed |= err;
3232
3233 break;
3234 case NL80211_IFTYPE_ADHOC:
3235 if (!sdata->vif.bss_conf.ibss_joined)
3236 return -EINVAL;
3237
3238 if (params->chandef.width != sdata->u.ibss.chandef.width)
3239 return -EINVAL;
3240
3241 switch (params->chandef.width) {
3242 case NL80211_CHAN_WIDTH_40:
3243 if (cfg80211_get_chandef_type(&params->chandef) !=
3244 cfg80211_get_chandef_type(&sdata->u.ibss.chandef))
3245 return -EINVAL;
3246 case NL80211_CHAN_WIDTH_5:
3247 case NL80211_CHAN_WIDTH_10:
3248 case NL80211_CHAN_WIDTH_20_NOHT:
3249 case NL80211_CHAN_WIDTH_20:
3250 break;
3251 default:
3252 return -EINVAL;
3253 }
3254
3255 /* changes into another band are not supported */
3256 if (sdata->u.ibss.chandef.chan->band !=
3257 params->chandef.chan->band)
3258 return -EINVAL;
3259
3260 /* see comments in the NL80211_IFTYPE_AP block */
3261 if (params->count > 1) {
3262 err = ieee80211_ibss_csa_beacon(sdata, params);
3263 if (err < 0)
3264 return err;
3265 *changed |= err;
3266 }
3267
3268 ieee80211_send_action_csa(sdata, params);
3269
3270 break;
3271#ifdef CONFIG_MAC80211_MESH
3272 case NL80211_IFTYPE_MESH_POINT: {
3273 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
3274
3275 if (params->chandef.width != sdata->vif.bss_conf.chandef.width)
3276 return -EINVAL;
3277
3278 /* changes into another band are not supported */
3279 if (sdata->vif.bss_conf.chandef.chan->band !=
3280 params->chandef.chan->band)
3281 return -EINVAL;
3282
3283 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_NONE) {
3284 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_INIT;
3285 if (!ifmsh->pre_value)
3286 ifmsh->pre_value = 1;
3287 else
3288 ifmsh->pre_value++;
3289 }
3290
3291 /* see comments in the NL80211_IFTYPE_AP block */
3292 if (params->count > 1) {
3293 err = ieee80211_mesh_csa_beacon(sdata, params);
3294 if (err < 0) {
3295 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_NONE;
3296 return err;
3297 }
3298 *changed |= err;
3299 }
3300
3301 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_INIT)
3302 ieee80211_send_action_csa(sdata, params);
3303
3304 break;
3305 }
3306#endif
3307 default:
3308 return -EOPNOTSUPP;
3309 }
3310
3311 return 0;
3312}
3313
Luciano Coelhof29f58a2014-05-07 20:05:12 +03003314static int
3315__ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev,
3316 struct cfg80211_csa_settings *params)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003317{
3318 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3319 struct ieee80211_local *local = sdata->local;
Michal Kazior2b327132014-04-09 15:29:32 +02003320 struct ieee80211_chanctx_conf *conf;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003321 struct ieee80211_chanctx *chanctx;
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003322 int err, num_chanctx, changed = 0;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003323
Michal Kaziordbd72852014-01-29 07:56:21 +01003324 sdata_assert_lock(sdata);
Michal Kazior59af6922014-04-09 15:10:59 +02003325 lockdep_assert_held(&local->mtx);
Simon Wunderlich7ca133b2013-11-21 18:19:50 +01003326
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003327 if (!list_empty(&local->roc_list) || local->scanning)
3328 return -EBUSY;
3329
3330 if (sdata->wdev.cac_started)
3331 return -EBUSY;
3332
3333 if (cfg80211_chandef_identical(&params->chandef,
3334 &sdata->vif.bss_conf.chandef))
3335 return -EINVAL;
3336
Michal Kazior2b327132014-04-09 15:29:32 +02003337 mutex_lock(&local->chanctx_mtx);
3338 conf = rcu_dereference_protected(sdata->vif.chanctx_conf,
3339 lockdep_is_held(&local->chanctx_mtx));
3340 if (!conf) {
3341 mutex_unlock(&local->chanctx_mtx);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003342 return -EBUSY;
3343 }
3344
3345 /* don't handle for multi-VIF cases */
Michal Kazior2b327132014-04-09 15:29:32 +02003346 chanctx = container_of(conf, struct ieee80211_chanctx, conf);
Michal Kaziorc0166da2014-04-09 15:29:33 +02003347 if (ieee80211_chanctx_refcount(local, chanctx) > 1) {
Michal Kazior2b327132014-04-09 15:29:32 +02003348 mutex_unlock(&local->chanctx_mtx);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003349 return -EBUSY;
3350 }
3351 num_chanctx = 0;
3352 list_for_each_entry_rcu(chanctx, &local->chanctx_list, list)
3353 num_chanctx++;
Michal Kazior2b327132014-04-09 15:29:32 +02003354 mutex_unlock(&local->chanctx_mtx);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003355
3356 if (num_chanctx > 1)
3357 return -EBUSY;
3358
3359 /* don't allow another channel switch if one is already active. */
3360 if (sdata->vif.csa_active)
3361 return -EBUSY;
3362
Michal Kazior37fa2bd2014-02-28 15:59:06 +01003363 err = ieee80211_set_csa_beacon(sdata, params, &changed);
3364 if (err)
3365 return err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003366
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003367 sdata->csa_radar_required = params->radar_required;
Luciano Coelho33787fc2013-11-11 20:34:54 +02003368 sdata->csa_chandef = params->chandef;
Michal Kazior59af6922014-04-09 15:10:59 +02003369 sdata->csa_block_tx = params->block_tx;
Andrei Otcheretianski387910c2014-05-09 14:11:45 +03003370 sdata->csa_current_counter = params->count;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003371 sdata->vif.csa_active = true;
3372
Michal Kazior59af6922014-04-09 15:10:59 +02003373 if (sdata->csa_block_tx)
3374 ieee80211_stop_queues_by_reason(&local->hw,
3375 IEEE80211_MAX_QUEUE_MAP,
3376 IEEE80211_QUEUE_STOP_REASON_CSA);
3377
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003378 if (changed) {
3379 ieee80211_bss_info_change_notify(sdata, changed);
3380 drv_channel_switch_beacon(sdata, &params->chandef);
3381 } else {
3382 /* if the beacon didn't change, we can finalize immediately */
3383 ieee80211_csa_finalize(sdata);
3384 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003385
3386 return 0;
3387}
3388
Michal Kazior59af6922014-04-09 15:10:59 +02003389int ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev,
3390 struct cfg80211_csa_settings *params)
3391{
3392 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3393 struct ieee80211_local *local = sdata->local;
3394 int err;
3395
3396 mutex_lock(&local->mtx);
3397 err = __ieee80211_channel_switch(wiphy, dev, params);
3398 mutex_unlock(&local->mtx);
3399
3400 return err;
3401}
3402
Johannes Berg71bbc992012-06-15 15:30:18 +02003403static int ieee80211_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003404 struct cfg80211_mgmt_tx_params *params,
3405 u64 *cookie)
Jouni Malinen026331c2010-02-15 12:53:10 +02003406{
Johannes Berg71bbc992012-06-15 15:30:18 +02003407 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg9d38d852010-06-09 17:20:33 +02003408 struct ieee80211_local *local = sdata->local;
3409 struct sk_buff *skb;
3410 struct sta_info *sta;
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003411 const struct ieee80211_mgmt *mgmt = (void *)params->buf;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003412 bool need_offchan = false;
Johannes Berge247bd902011-11-04 11:18:21 +01003413 u32 flags;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003414 int ret;
Andrei Otcheretianski387910c2014-05-09 14:11:45 +03003415 u8 *data;
Johannes Bergf7ca38d2010-11-25 10:02:29 +01003416
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003417 if (params->dont_wait_for_ack)
Johannes Berge247bd902011-11-04 11:18:21 +01003418 flags = IEEE80211_TX_CTL_NO_ACK;
3419 else
3420 flags = IEEE80211_TX_INTFL_NL80211_FRAME_TX |
3421 IEEE80211_TX_CTL_REQ_TX_STATUS;
3422
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003423 if (params->no_cck)
Rajkumar Manoharanaad14ce2011-09-25 14:53:31 +05303424 flags |= IEEE80211_TX_CTL_NO_CCK_RATE;
3425
Johannes Berg9d38d852010-06-09 17:20:33 +02003426 switch (sdata->vif.type) {
3427 case NL80211_IFTYPE_ADHOC:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003428 if (!sdata->vif.bss_conf.ibss_joined)
3429 need_offchan = true;
3430 /* fall through */
3431#ifdef CONFIG_MAC80211_MESH
3432 case NL80211_IFTYPE_MESH_POINT:
3433 if (ieee80211_vif_is_mesh(&sdata->vif) &&
3434 !sdata->u.mesh.mesh_id_len)
3435 need_offchan = true;
3436 /* fall through */
3437#endif
Johannes Berg663fcaf2010-09-30 21:06:09 +02003438 case NL80211_IFTYPE_AP:
3439 case NL80211_IFTYPE_AP_VLAN:
3440 case NL80211_IFTYPE_P2P_GO:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003441 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
3442 !ieee80211_vif_is_mesh(&sdata->vif) &&
3443 !rcu_access_pointer(sdata->bss->beacon))
3444 need_offchan = true;
Johannes Berg663fcaf2010-09-30 21:06:09 +02003445 if (!ieee80211_is_action(mgmt->frame_control) ||
Thomas Pedersenac49e1a2013-06-20 23:50:58 -07003446 mgmt->u.action.category == WLAN_CATEGORY_PUBLIC ||
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003447 mgmt->u.action.category == WLAN_CATEGORY_SELF_PROTECTED ||
3448 mgmt->u.action.category == WLAN_CATEGORY_SPECTRUM_MGMT)
Johannes Berg9d38d852010-06-09 17:20:33 +02003449 break;
3450 rcu_read_lock();
3451 sta = sta_info_get(sdata, mgmt->da);
3452 rcu_read_unlock();
3453 if (!sta)
3454 return -ENOLINK;
3455 break;
3456 case NL80211_IFTYPE_STATION:
Johannes Berg663fcaf2010-09-30 21:06:09 +02003457 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003458 if (!sdata->u.mgd.associated)
3459 need_offchan = true;
Johannes Berg9d38d852010-06-09 17:20:33 +02003460 break;
Johannes Bergf142c6b2012-06-18 20:07:15 +02003461 case NL80211_IFTYPE_P2P_DEVICE:
3462 need_offchan = true;
3463 break;
Johannes Berg9d38d852010-06-09 17:20:33 +02003464 default:
3465 return -EOPNOTSUPP;
3466 }
3467
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003468 /* configurations requiring offchan cannot work if no channel has been
3469 * specified
3470 */
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003471 if (need_offchan && !params->chan)
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003472 return -EINVAL;
3473
Johannes Berg2eb278e2012-06-05 14:28:42 +02003474 mutex_lock(&local->mtx);
3475
3476 /* Check if the operating channel is the requested channel */
3477 if (!need_offchan) {
Johannes Berg55de9082012-07-26 17:24:39 +02003478 struct ieee80211_chanctx_conf *chanctx_conf;
3479
3480 rcu_read_lock();
3481 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3482
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003483 if (chanctx_conf) {
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003484 need_offchan = params->chan &&
3485 (params->chan !=
3486 chanctx_conf->def.chan);
3487 } else if (!params->chan) {
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003488 ret = -EINVAL;
3489 rcu_read_unlock();
3490 goto out_unlock;
3491 } else {
Johannes Berg2eb278e2012-06-05 14:28:42 +02003492 need_offchan = true;
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003493 }
Johannes Berg55de9082012-07-26 17:24:39 +02003494 rcu_read_unlock();
Johannes Berg2eb278e2012-06-05 14:28:42 +02003495 }
3496
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003497 if (need_offchan && !params->offchan) {
Johannes Berg2eb278e2012-06-05 14:28:42 +02003498 ret = -EBUSY;
3499 goto out_unlock;
3500 }
3501
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003502 skb = dev_alloc_skb(local->hw.extra_tx_headroom + params->len);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003503 if (!skb) {
3504 ret = -ENOMEM;
3505 goto out_unlock;
3506 }
Johannes Berg9d38d852010-06-09 17:20:33 +02003507 skb_reserve(skb, local->hw.extra_tx_headroom);
3508
Andrei Otcheretianski387910c2014-05-09 14:11:45 +03003509 data = skb_put(skb, params->len);
3510 memcpy(data, params->buf, params->len);
3511
3512 /* Update CSA counters */
3513 if (sdata->vif.csa_active &&
3514 (sdata->vif.type == NL80211_IFTYPE_AP ||
3515 sdata->vif.type == NL80211_IFTYPE_ADHOC) &&
3516 params->n_csa_offsets) {
3517 int i;
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03003518 u8 c = sdata->csa_current_counter;
Andrei Otcheretianski387910c2014-05-09 14:11:45 +03003519
3520 for (i = 0; i < params->n_csa_offsets; i++)
Andrei Otcheretianski1af586c2014-05-09 14:11:50 +03003521 data[params->csa_offsets[i]] = c;
Andrei Otcheretianski387910c2014-05-09 14:11:45 +03003522 }
Johannes Berg9d38d852010-06-09 17:20:33 +02003523
3524 IEEE80211_SKB_CB(skb)->flags = flags;
3525
Johannes Berg2eb278e2012-06-05 14:28:42 +02003526 skb->dev = sdata->dev;
3527
3528 if (!need_offchan) {
Nicolas Cavallari7f9f78a2012-07-16 18:36:52 +02003529 *cookie = (unsigned long) skb;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003530 ieee80211_tx_skb(sdata, skb);
3531 ret = 0;
3532 goto out_unlock;
3533 }
3534
Seth Forshee6c17b772013-02-11 11:21:07 -06003535 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_TX_OFFCHAN |
3536 IEEE80211_TX_INTFL_OFFCHAN_TX_OK;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003537 if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)
Johannes Berg3a25a8c2012-04-03 16:28:50 +02003538 IEEE80211_SKB_CB(skb)->hw_queue =
3539 local->hw.offchannel_tx_hw_queue;
3540
Johannes Berg2eb278e2012-06-05 14:28:42 +02003541 /* This will handle all kinds of coalescing and immediate TX */
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003542 ret = ieee80211_start_roc_work(local, sdata, params->chan,
3543 params->wait, cookie, skb,
Ilan Peerd339d5c2013-02-12 09:34:13 +02003544 IEEE80211_ROC_TYPE_MGMT_TX);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003545 if (ret)
Johannes Bergf30221e2010-11-25 10:02:30 +01003546 kfree_skb(skb);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003547 out_unlock:
3548 mutex_unlock(&local->mtx);
3549 return ret;
Jouni Malinen026331c2010-02-15 12:53:10 +02003550}
3551
Johannes Bergf30221e2010-11-25 10:02:30 +01003552static int ieee80211_mgmt_tx_cancel_wait(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02003553 struct wireless_dev *wdev,
Johannes Bergf30221e2010-11-25 10:02:30 +01003554 u64 cookie)
3555{
Johannes Berg71bbc992012-06-15 15:30:18 +02003556 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Bergf30221e2010-11-25 10:02:30 +01003557
Johannes Berg2eb278e2012-06-05 14:28:42 +02003558 return ieee80211_cancel_roc(local, cookie, true);
Johannes Bergf30221e2010-11-25 10:02:30 +01003559}
3560
Johannes Berg7be50862010-10-13 12:06:24 +02003561static void ieee80211_mgmt_frame_register(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02003562 struct wireless_dev *wdev,
Johannes Berg7be50862010-10-13 12:06:24 +02003563 u16 frame_type, bool reg)
3564{
3565 struct ieee80211_local *local = wiphy_priv(wiphy);
3566
Will Hawkins6abe0562012-06-20 11:51:14 -04003567 switch (frame_type) {
Will Hawkins6abe0562012-06-20 11:51:14 -04003568 case IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_PROBE_REQ:
3569 if (reg)
3570 local->probe_req_reg++;
3571 else
3572 local->probe_req_reg--;
Johannes Berg7be50862010-10-13 12:06:24 +02003573
Felix Fietkau35f51492012-10-31 15:50:34 +01003574 if (!local->open_count)
3575 break;
3576
Will Hawkins6abe0562012-06-20 11:51:14 -04003577 ieee80211_queue_work(&local->hw, &local->reconfig_filter);
3578 break;
3579 default:
3580 break;
3581 }
Johannes Berg7be50862010-10-13 12:06:24 +02003582}
3583
Bruno Randolf15d96752010-11-10 12:50:56 +09003584static int ieee80211_set_antenna(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant)
3585{
3586 struct ieee80211_local *local = wiphy_priv(wiphy);
3587
3588 if (local->started)
3589 return -EOPNOTSUPP;
3590
3591 return drv_set_antenna(local, tx_ant, rx_ant);
3592}
3593
3594static int ieee80211_get_antenna(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant)
3595{
3596 struct ieee80211_local *local = wiphy_priv(wiphy);
3597
3598 return drv_get_antenna(local, tx_ant, rx_ant);
3599}
3600
John W. Linville38c09152011-03-07 16:19:18 -05003601static int ieee80211_set_ringparam(struct wiphy *wiphy, u32 tx, u32 rx)
3602{
3603 struct ieee80211_local *local = wiphy_priv(wiphy);
3604
3605 return drv_set_ringparam(local, tx, rx);
3606}
3607
3608static void ieee80211_get_ringparam(struct wiphy *wiphy,
3609 u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max)
3610{
3611 struct ieee80211_local *local = wiphy_priv(wiphy);
3612
3613 drv_get_ringparam(local, tx, tx_max, rx, rx_max);
3614}
3615
Johannes Bergc68f4b82011-07-05 16:35:41 +02003616static int ieee80211_set_rekey_data(struct wiphy *wiphy,
3617 struct net_device *dev,
3618 struct cfg80211_gtk_rekey_data *data)
3619{
3620 struct ieee80211_local *local = wiphy_priv(wiphy);
3621 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3622
3623 if (!local->ops->set_rekey_data)
3624 return -EOPNOTSUPP;
3625
3626 drv_set_rekey_data(local, sdata, data);
3627
3628 return 0;
3629}
3630
Johannes Berg06500732011-11-04 11:18:16 +01003631static int ieee80211_probe_client(struct wiphy *wiphy, struct net_device *dev,
3632 const u8 *peer, u64 *cookie)
3633{
3634 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3635 struct ieee80211_local *local = sdata->local;
3636 struct ieee80211_qos_hdr *nullfunc;
3637 struct sk_buff *skb;
3638 int size = sizeof(*nullfunc);
3639 __le16 fc;
3640 bool qos;
3641 struct ieee80211_tx_info *info;
3642 struct sta_info *sta;
Johannes Berg55de9082012-07-26 17:24:39 +02003643 struct ieee80211_chanctx_conf *chanctx_conf;
3644 enum ieee80211_band band;
Johannes Berg06500732011-11-04 11:18:16 +01003645
3646 rcu_read_lock();
Johannes Berg55de9082012-07-26 17:24:39 +02003647 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3648 if (WARN_ON(!chanctx_conf)) {
3649 rcu_read_unlock();
3650 return -EINVAL;
3651 }
Johannes Berg4bf88532012-11-09 11:39:59 +01003652 band = chanctx_conf->def.chan->band;
Felix Fietkau03bb7f42013-09-29 21:39:33 +02003653 sta = sta_info_get_bss(sdata, peer);
Johannes Bergb4487c22011-11-11 20:22:30 +01003654 if (sta) {
Johannes Berg06500732011-11-04 11:18:16 +01003655 qos = test_sta_flag(sta, WLAN_STA_WME);
Johannes Bergb4487c22011-11-11 20:22:30 +01003656 } else {
3657 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003658 return -ENOLINK;
Johannes Bergb4487c22011-11-11 20:22:30 +01003659 }
Johannes Berg06500732011-11-04 11:18:16 +01003660
3661 if (qos) {
3662 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3663 IEEE80211_STYPE_QOS_NULLFUNC |
3664 IEEE80211_FCTL_FROMDS);
3665 } else {
3666 size -= 2;
3667 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3668 IEEE80211_STYPE_NULLFUNC |
3669 IEEE80211_FCTL_FROMDS);
3670 }
3671
3672 skb = dev_alloc_skb(local->hw.extra_tx_headroom + size);
Johannes Berg55de9082012-07-26 17:24:39 +02003673 if (!skb) {
3674 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003675 return -ENOMEM;
Johannes Berg55de9082012-07-26 17:24:39 +02003676 }
Johannes Berg06500732011-11-04 11:18:16 +01003677
3678 skb->dev = dev;
3679
3680 skb_reserve(skb, local->hw.extra_tx_headroom);
3681
3682 nullfunc = (void *) skb_put(skb, size);
3683 nullfunc->frame_control = fc;
3684 nullfunc->duration_id = 0;
3685 memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN);
3686 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
3687 memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);
3688 nullfunc->seq_ctrl = 0;
3689
3690 info = IEEE80211_SKB_CB(skb);
3691
3692 info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
3693 IEEE80211_TX_INTFL_NL80211_FRAME_TX;
3694
3695 skb_set_queue_mapping(skb, IEEE80211_AC_VO);
3696 skb->priority = 7;
3697 if (qos)
3698 nullfunc->qos_ctrl = cpu_to_le16(7);
3699
3700 local_bh_disable();
Johannes Berg55de9082012-07-26 17:24:39 +02003701 ieee80211_xmit(sdata, skb, band);
Johannes Berg06500732011-11-04 11:18:16 +01003702 local_bh_enable();
Johannes Berg55de9082012-07-26 17:24:39 +02003703 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003704
3705 *cookie = (unsigned long) skb;
3706 return 0;
3707}
3708
Johannes Berg683b6d32012-11-08 21:25:48 +01003709static int ieee80211_cfg_get_channel(struct wiphy *wiphy,
3710 struct wireless_dev *wdev,
3711 struct cfg80211_chan_def *chandef)
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003712{
Johannes Berg55de9082012-07-26 17:24:39 +02003713 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Felix Fietkaucb601ff2013-02-23 19:02:14 +01003714 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg55de9082012-07-26 17:24:39 +02003715 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Berg683b6d32012-11-08 21:25:48 +01003716 int ret = -ENODATA;
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003717
Johannes Berg55de9082012-07-26 17:24:39 +02003718 rcu_read_lock();
Johannes Bergfeda3022013-02-28 09:59:22 +01003719 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3720 if (chanctx_conf) {
3721 *chandef = chanctx_conf->def;
3722 ret = 0;
3723 } else if (local->open_count > 0 &&
3724 local->open_count == local->monitors &&
3725 sdata->vif.type == NL80211_IFTYPE_MONITOR) {
3726 if (local->use_chanctx)
3727 *chandef = local->monitor_chandef;
3728 else
Karl Beldan675a0b02013-03-25 16:26:57 +01003729 *chandef = local->_oper_chandef;
Johannes Berg683b6d32012-11-08 21:25:48 +01003730 ret = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02003731 }
3732 rcu_read_unlock();
3733
Johannes Berg683b6d32012-11-08 21:25:48 +01003734 return ret;
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003735}
3736
Johannes Berg6d525632012-04-04 15:05:25 +02003737#ifdef CONFIG_PM
3738static void ieee80211_set_wakeup(struct wiphy *wiphy, bool enabled)
3739{
3740 drv_set_wakeup(wiphy_priv(wiphy), enabled);
3741}
3742#endif
3743
Kyeyoon Park32db6b52013-12-16 23:04:43 -08003744static int ieee80211_set_qos_map(struct wiphy *wiphy,
3745 struct net_device *dev,
3746 struct cfg80211_qos_map *qos_map)
3747{
3748 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3749 struct mac80211_qos_map *new_qos_map, *old_qos_map;
3750
3751 if (qos_map) {
3752 new_qos_map = kzalloc(sizeof(*new_qos_map), GFP_KERNEL);
3753 if (!new_qos_map)
3754 return -ENOMEM;
3755 memcpy(&new_qos_map->qos_map, qos_map, sizeof(*qos_map));
3756 } else {
3757 /* A NULL qos_map was passed to disable QoS mapping */
3758 new_qos_map = NULL;
3759 }
3760
Johannes Berg194ff522013-12-30 23:12:37 +01003761 old_qos_map = sdata_dereference(sdata->qos_map, sdata);
Kyeyoon Park32db6b52013-12-16 23:04:43 -08003762 rcu_assign_pointer(sdata->qos_map, new_qos_map);
3763 if (old_qos_map)
3764 kfree_rcu(old_qos_map, rcu_head);
3765
3766 return 0;
3767}
3768
Jouni Malinen3b1700b2014-04-28 11:22:25 +03003769static int ieee80211_set_ap_chanwidth(struct wiphy *wiphy,
3770 struct net_device *dev,
3771 struct cfg80211_chan_def *chandef)
3772{
3773 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3774 int ret;
3775 u32 changed = 0;
3776
3777 ret = ieee80211_vif_change_bandwidth(sdata, chandef, &changed);
3778 if (ret == 0)
3779 ieee80211_bss_info_change_notify(sdata, changed);
3780
3781 return ret;
3782}
3783
Johannes Berg8a47cea2014-01-20 23:55:44 +01003784const struct cfg80211_ops mac80211_config_ops = {
Jiri Bencf0706e82007-05-05 11:45:53 -07003785 .add_virtual_intf = ieee80211_add_iface,
3786 .del_virtual_intf = ieee80211_del_iface,
Johannes Berg42613db2007-09-28 21:52:27 +02003787 .change_virtual_intf = ieee80211_change_iface,
Johannes Bergf142c6b2012-06-18 20:07:15 +02003788 .start_p2p_device = ieee80211_start_p2p_device,
3789 .stop_p2p_device = ieee80211_stop_p2p_device,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01003790 .add_key = ieee80211_add_key,
3791 .del_key = ieee80211_del_key,
Johannes Berg62da92f2007-12-19 02:03:31 +01003792 .get_key = ieee80211_get_key,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01003793 .set_default_key = ieee80211_config_default_key,
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02003794 .set_default_mgmt_key = ieee80211_config_default_mgmt_key,
Johannes Berg88600202012-02-13 15:17:18 +01003795 .start_ap = ieee80211_start_ap,
3796 .change_beacon = ieee80211_change_beacon,
3797 .stop_ap = ieee80211_stop_ap,
Johannes Berg4fd69312007-12-19 02:03:35 +01003798 .add_station = ieee80211_add_station,
3799 .del_station = ieee80211_del_station,
3800 .change_station = ieee80211_change_station,
Johannes Berg7bbdd2d2007-12-19 02:03:37 +01003801 .get_station = ieee80211_get_station,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003802 .dump_station = ieee80211_dump_station,
Holger Schurig12897232010-04-19 10:23:57 +02003803 .dump_survey = ieee80211_dump_survey,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003804#ifdef CONFIG_MAC80211_MESH
3805 .add_mpath = ieee80211_add_mpath,
3806 .del_mpath = ieee80211_del_mpath,
3807 .change_mpath = ieee80211_change_mpath,
3808 .get_mpath = ieee80211_get_mpath,
3809 .dump_mpath = ieee80211_dump_mpath,
Javier Cardona24bdd9f2010-12-16 17:37:48 -08003810 .update_mesh_config = ieee80211_update_mesh_config,
3811 .get_mesh_config = ieee80211_get_mesh_config,
Johannes Berg29cbe682010-12-03 09:20:44 +01003812 .join_mesh = ieee80211_join_mesh,
3813 .leave_mesh = ieee80211_leave_mesh,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003814#endif
Jouni Malinen9f1ba902008-08-07 20:07:01 +03003815 .change_bss = ieee80211_change_bss,
Jouni Malinen31888482008-10-30 16:59:24 +02003816 .set_txq_params = ieee80211_set_txq_params,
Johannes Berge8c9bd52012-06-06 08:18:22 +02003817 .set_monitor_channel = ieee80211_set_monitor_channel,
Bob Copeland665af4f2009-01-19 11:20:53 -05003818 .suspend = ieee80211_suspend,
3819 .resume = ieee80211_resume,
Johannes Berg2a519312009-02-10 21:25:55 +01003820 .scan = ieee80211_scan,
Luciano Coelho79f460c2011-05-11 17:09:36 +03003821 .sched_scan_start = ieee80211_sched_scan_start,
3822 .sched_scan_stop = ieee80211_sched_scan_stop,
Jouni Malinen636a5d32009-03-19 13:39:22 +02003823 .auth = ieee80211_auth,
3824 .assoc = ieee80211_assoc,
3825 .deauth = ieee80211_deauth,
3826 .disassoc = ieee80211_disassoc,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02003827 .join_ibss = ieee80211_join_ibss,
3828 .leave_ibss = ieee80211_leave_ibss,
Antonio Quartulli391e53e2012-11-02 13:27:49 +01003829 .set_mcast_rate = ieee80211_set_mcast_rate,
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02003830 .set_wiphy_params = ieee80211_set_wiphy_params,
Johannes Berg7643a2c2009-06-02 13:01:39 +02003831 .set_tx_power = ieee80211_set_tx_power,
3832 .get_tx_power = ieee80211_get_tx_power,
Johannes Bergab737a42009-07-01 21:26:58 +02003833 .set_wds_peer = ieee80211_set_wds_peer,
Johannes Berg1f87f7d2009-06-02 13:01:41 +02003834 .rfkill_poll = ieee80211_rfkill_poll,
Johannes Bergaff89a92009-07-01 21:26:51 +02003835 CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd)
Wey-Yi Guy71063f02011-05-20 09:05:54 -07003836 CFG80211_TESTMODE_DUMP(ieee80211_testmode_dump)
Johannes Bergbc92afd2009-07-01 21:26:57 +02003837 .set_power_mgmt = ieee80211_set_power_mgmt,
Johannes Berg99303802009-07-01 21:26:59 +02003838 .set_bitrate_mask = ieee80211_set_bitrate_mask,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01003839 .remain_on_channel = ieee80211_remain_on_channel,
3840 .cancel_remain_on_channel = ieee80211_cancel_remain_on_channel,
Johannes Berg2e161f72010-08-12 15:38:38 +02003841 .mgmt_tx = ieee80211_mgmt_tx,
Johannes Bergf30221e2010-11-25 10:02:30 +01003842 .mgmt_tx_cancel_wait = ieee80211_mgmt_tx_cancel_wait,
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02003843 .set_cqm_rssi_config = ieee80211_set_cqm_rssi_config,
Johannes Berg7be50862010-10-13 12:06:24 +02003844 .mgmt_frame_register = ieee80211_mgmt_frame_register,
Bruno Randolf15d96752010-11-10 12:50:56 +09003845 .set_antenna = ieee80211_set_antenna,
3846 .get_antenna = ieee80211_get_antenna,
John W. Linville38c09152011-03-07 16:19:18 -05003847 .set_ringparam = ieee80211_set_ringparam,
3848 .get_ringparam = ieee80211_get_ringparam,
Johannes Bergc68f4b82011-07-05 16:35:41 +02003849 .set_rekey_data = ieee80211_set_rekey_data,
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003850 .tdls_oper = ieee80211_tdls_oper,
3851 .tdls_mgmt = ieee80211_tdls_mgmt,
Johannes Berg06500732011-11-04 11:18:16 +01003852 .probe_client = ieee80211_probe_client,
Simon Wunderlichb53be792011-11-18 14:20:44 +01003853 .set_noack_map = ieee80211_set_noack_map,
Johannes Berg6d525632012-04-04 15:05:25 +02003854#ifdef CONFIG_PM
3855 .set_wakeup = ieee80211_set_wakeup,
3856#endif
Ben Greearb1ab7922012-04-23 12:50:30 -07003857 .get_et_sset_count = ieee80211_get_et_sset_count,
3858 .get_et_stats = ieee80211_get_et_stats,
3859 .get_et_strings = ieee80211_get_et_strings,
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003860 .get_channel = ieee80211_cfg_get_channel,
Simon Wunderlich164eb022013-02-08 18:16:20 +01003861 .start_radar_detection = ieee80211_start_radar_detection,
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003862 .channel_switch = ieee80211_channel_switch,
Kyeyoon Park32db6b52013-12-16 23:04:43 -08003863 .set_qos_map = ieee80211_set_qos_map,
Jouni Malinen3b1700b2014-04-28 11:22:25 +03003864 .set_ap_chanwidth = ieee80211_set_ap_chanwidth,
Jiri Bencf0706e82007-05-05 11:45:53 -07003865};