blob: 73c9e1003e258e1215d55b0c517069f71ae666d7 [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * mac80211 configuration hooks for cfg80211
3 *
Jouni Malinen026331c2010-02-15 12:53:10 +02004 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
Jiri Bencf0706e82007-05-05 11:45:53 -07005 *
6 * This file is GPLv2 as found in COPYING.
7 */
8
Johannes Berge8cbb4c2007-12-19 02:03:30 +01009#include <linux/ieee80211.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070010#include <linux/nl80211.h>
11#include <linux/rtnetlink.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070013#include <net/net_namespace.h>
Johannes Berg5dfdaf52007-12-19 02:03:33 +010014#include <linux/rcupdate.h>
Arik Nemtsovdfe018b2011-09-28 14:12:52 +030015#include <linux/if_ether.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070016#include <net/cfg80211.h>
17#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020018#include "driver-ops.h"
Michael Wue0eb6852007-09-18 17:29:21 -040019#include "cfg.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040020#include "rate.h"
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +010021#include "mesh.h"
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +010022
Johannes Berg552bff02012-09-19 09:26:06 +020023static struct wireless_dev *ieee80211_add_iface(struct wiphy *wiphy,
24 const char *name,
Johannes Berg84efbb82012-06-16 00:00:26 +020025 enum nl80211_iftype type,
26 u32 *flags,
27 struct vif_params *params)
Jiri Bencf0706e82007-05-05 11:45:53 -070028{
29 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg84efbb82012-06-16 00:00:26 +020030 struct wireless_dev *wdev;
Michael Wu8cc9a732008-01-31 19:48:23 +010031 struct ieee80211_sub_if_data *sdata;
32 int err;
Jiri Bencf0706e82007-05-05 11:45:53 -070033
Johannes Berg84efbb82012-06-16 00:00:26 +020034 err = ieee80211_if_add(local, name, &wdev, type, params);
Johannes Bergf9e10ce2010-12-03 09:20:42 +010035 if (err)
36 return ERR_PTR(err);
Michael Wu8cc9a732008-01-31 19:48:23 +010037
Johannes Bergf9e10ce2010-12-03 09:20:42 +010038 if (type == NL80211_IFTYPE_MONITOR && flags) {
Johannes Berg84efbb82012-06-16 00:00:26 +020039 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Bergf9e10ce2010-12-03 09:20:42 +010040 sdata->u.mntr_flags = *flags;
41 }
42
Johannes Berg84efbb82012-06-16 00:00:26 +020043 return wdev;
Jiri Bencf0706e82007-05-05 11:45:53 -070044}
45
Johannes Berg84efbb82012-06-16 00:00:26 +020046static int ieee80211_del_iface(struct wiphy *wiphy, struct wireless_dev *wdev)
Jiri Bencf0706e82007-05-05 11:45:53 -070047{
Johannes Berg84efbb82012-06-16 00:00:26 +020048 ieee80211_if_remove(IEEE80211_WDEV_TO_SUB_IF(wdev));
Jiri Bencf0706e82007-05-05 11:45:53 -070049
Johannes Berg75636522008-07-09 14:40:35 +020050 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -070051}
52
Johannes Berge36d56b2009-06-09 21:04:43 +020053static int ieee80211_change_iface(struct wiphy *wiphy,
54 struct net_device *dev,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +010055 enum nl80211_iftype type, u32 *flags,
56 struct vif_params *params)
Johannes Berg42613db2007-09-28 21:52:27 +020057{
Johannes Berg9607e6b662009-12-23 13:15:31 +010058 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Bergf3947e22008-07-09 14:40:36 +020059 int ret;
Johannes Berg42613db2007-09-28 21:52:27 +020060
Johannes Berg05c914f2008-09-11 00:01:58 +020061 ret = ieee80211_if_change_type(sdata, type);
Johannes Bergf3947e22008-07-09 14:40:36 +020062 if (ret)
63 return ret;
Johannes Berg42613db2007-09-28 21:52:27 +020064
Johannes Berg9bc383d2009-11-19 11:55:19 +010065 if (type == NL80211_IFTYPE_AP_VLAN &&
66 params && params->use_4addr == 0)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +000067 RCU_INIT_POINTER(sdata->u.vlan.sta, NULL);
Johannes Berg9bc383d2009-11-19 11:55:19 +010068 else if (type == NL80211_IFTYPE_STATION &&
69 params && params->use_4addr >= 0)
70 sdata->u.mgd.use_4addr = params->use_4addr;
71
Christian Lamparter85416a42010-10-02 13:17:07 +020072 if (sdata->vif.type == NL80211_IFTYPE_MONITOR && flags) {
73 struct ieee80211_local *local = sdata->local;
74
75 if (ieee80211_sdata_running(sdata)) {
Felix Fietkau31eba5b2013-05-28 13:01:53 +020076 u32 mask = MONITOR_FLAG_COOK_FRAMES |
77 MONITOR_FLAG_ACTIVE;
78
Christian Lamparter85416a42010-10-02 13:17:07 +020079 /*
Felix Fietkau31eba5b2013-05-28 13:01:53 +020080 * Prohibit MONITOR_FLAG_COOK_FRAMES and
81 * MONITOR_FLAG_ACTIVE to be changed while the
82 * interface is up.
Christian Lamparter85416a42010-10-02 13:17:07 +020083 * Else we would need to add a lot of cruft
84 * to update everything:
85 * cooked_mntrs, monitor and all fif_* counters
86 * reconfigure hardware
87 */
Felix Fietkau31eba5b2013-05-28 13:01:53 +020088 if ((*flags & mask) != (sdata->u.mntr_flags & mask))
Christian Lamparter85416a42010-10-02 13:17:07 +020089 return -EBUSY;
90
91 ieee80211_adjust_monitor_flags(sdata, -1);
92 sdata->u.mntr_flags = *flags;
93 ieee80211_adjust_monitor_flags(sdata, 1);
94
95 ieee80211_configure_filter(local);
96 } else {
97 /*
98 * Because the interface is down, ieee80211_do_stop
99 * and ieee80211_do_open take care of "everything"
100 * mentioned in the comment above.
101 */
102 sdata->u.mntr_flags = *flags;
103 }
104 }
Felix Fietkauf7917af2010-04-27 00:26:34 +0200105
Johannes Berg42613db2007-09-28 21:52:27 +0200106 return 0;
107}
108
Johannes Bergf142c6b2012-06-18 20:07:15 +0200109static int ieee80211_start_p2p_device(struct wiphy *wiphy,
110 struct wireless_dev *wdev)
111{
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 int ieee80211_dump_station(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +0200472 int idx, u8 *mac, struct station_info *sinfo)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100473{
Johannes Berg3b53fde82009-11-16 12:00:37 +0100474 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300475 struct ieee80211_local *local = sdata->local;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100476 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100477 int ret = -ENOENT;
478
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300479 mutex_lock(&local->sta_mtx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100480
Johannes Berg3b53fde82009-11-16 12:00:37 +0100481 sta = sta_info_get_by_idx(sdata, idx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100482 if (sta) {
483 ret = 0;
Johannes Berg17741cd2008-09-11 00:02:02 +0200484 memcpy(mac, sta->sta.addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100485 sta_set_sinfo(sta, sinfo);
486 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100487
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300488 mutex_unlock(&local->sta_mtx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100489
Johannes Bergd0709a62008-02-25 16:27:46 +0100490 return ret;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100491}
492
Holger Schurig12897232010-04-19 10:23:57 +0200493static int ieee80211_dump_survey(struct wiphy *wiphy, struct net_device *dev,
494 int idx, struct survey_info *survey)
495{
496 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
497
Holger Schurig12897232010-04-19 10:23:57 +0200498 return drv_get_survey(local, idx, survey);
499}
500
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100501static int ieee80211_get_station(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +0200502 const u8 *mac, struct station_info *sinfo)
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100503{
Johannes Bergabe60632009-11-25 17:46:18 +0100504 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300505 struct ieee80211_local *local = sdata->local;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100506 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100507 int ret = -ENOENT;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100508
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300509 mutex_lock(&local->sta_mtx);
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100510
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100511 sta = sta_info_get_bss(sdata, mac);
Johannes Bergd0709a62008-02-25 16:27:46 +0100512 if (sta) {
513 ret = 0;
514 sta_set_sinfo(sta, sinfo);
515 }
516
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300517 mutex_unlock(&local->sta_mtx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100518
519 return ret;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100520}
521
Johannes Berge8c9bd52012-06-06 08:18:22 +0200522static int ieee80211_set_monitor_channel(struct wiphy *wiphy,
Johannes Berg683b6d32012-11-08 21:25:48 +0100523 struct cfg80211_chan_def *chandef)
Johannes Berge8c9bd52012-06-06 08:18:22 +0200524{
Johannes Berg55de9082012-07-26 17:24:39 +0200525 struct ieee80211_local *local = wiphy_priv(wiphy);
526 struct ieee80211_sub_if_data *sdata;
527 int ret = 0;
528
Johannes Berg4bf88532012-11-09 11:39:59 +0100529 if (cfg80211_chandef_identical(&local->monitor_chandef, chandef))
Johannes Berg55de9082012-07-26 17:24:39 +0200530 return 0;
531
Johannes Berg34a37402013-12-18 09:43:33 +0100532 mutex_lock(&local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +0200533 mutex_lock(&local->iflist_mtx);
534 if (local->use_chanctx) {
535 sdata = rcu_dereference_protected(
536 local->monitor_sdata,
537 lockdep_is_held(&local->iflist_mtx));
538 if (sdata) {
539 ieee80211_vif_release_channel(sdata);
Johannes Berg4bf88532012-11-09 11:39:59 +0100540 ret = ieee80211_vif_use_channel(sdata, chandef,
Johannes Berg55de9082012-07-26 17:24:39 +0200541 IEEE80211_CHANCTX_EXCLUSIVE);
542 }
543 } else if (local->open_count == local->monitors) {
Karl Beldan675a0b02013-03-25 16:26:57 +0100544 local->_oper_chandef = *chandef;
Johannes Berg55de9082012-07-26 17:24:39 +0200545 ieee80211_hw_config(local, 0);
546 }
547
Johannes Berg4bf88532012-11-09 11:39:59 +0100548 if (ret == 0)
549 local->monitor_chandef = *chandef;
Johannes Berg55de9082012-07-26 17:24:39 +0200550 mutex_unlock(&local->iflist_mtx);
Johannes Berg34a37402013-12-18 09:43:33 +0100551 mutex_unlock(&local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +0200552
553 return ret;
Johannes Berge8c9bd52012-06-06 08:18:22 +0200554}
555
Arik Nemtsov02945822011-11-10 11:28:57 +0200556static int ieee80211_set_probe_resp(struct ieee80211_sub_if_data *sdata,
Michal Kazioraf296bd2014-06-05 14:21:36 +0200557 const u8 *resp, size_t resp_len,
558 const struct ieee80211_csa_settings *csa)
Arik Nemtsov02945822011-11-10 11:28:57 +0200559{
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300560 struct probe_resp *new, *old;
Arik Nemtsov02945822011-11-10 11:28:57 +0200561
562 if (!resp || !resp_len)
Sujith Manoharanaba4e6f2012-08-22 14:21:07 +0530563 return 1;
Arik Nemtsov02945822011-11-10 11:28:57 +0200564
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100565 old = sdata_dereference(sdata->u.ap.probe_resp, sdata);
Arik Nemtsov02945822011-11-10 11:28:57 +0200566
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300567 new = kzalloc(sizeof(struct probe_resp) + resp_len, GFP_KERNEL);
Arik Nemtsov02945822011-11-10 11:28:57 +0200568 if (!new)
569 return -ENOMEM;
570
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300571 new->len = resp_len;
572 memcpy(new->data, resp, resp_len);
Arik Nemtsov02945822011-11-10 11:28:57 +0200573
Michal Kazioraf296bd2014-06-05 14:21:36 +0200574 if (csa)
575 memcpy(new->csa_counter_offsets, csa->counter_offsets_presp,
576 csa->n_counter_offsets_presp *
577 sizeof(new->csa_counter_offsets[0]));
578
Arik Nemtsov02945822011-11-10 11:28:57 +0200579 rcu_assign_pointer(sdata->u.ap.probe_resp, new);
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300580 if (old)
581 kfree_rcu(old, rcu_head);
Arik Nemtsov02945822011-11-10 11:28:57 +0200582
583 return 0;
584}
585
Luciano Coelho0ae07962013-12-08 09:42:25 +0200586static int ieee80211_assign_beacon(struct ieee80211_sub_if_data *sdata,
Michal Kazioraf296bd2014-06-05 14:21:36 +0200587 struct cfg80211_beacon_data *params,
588 const struct ieee80211_csa_settings *csa)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100589{
590 struct beacon_data *new, *old;
591 int new_head_len, new_tail_len;
Johannes Berg88600202012-02-13 15:17:18 +0100592 int size, err;
593 u32 changed = BSS_CHANGED_BEACON;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100594
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100595 old = sdata_dereference(sdata->u.ap.beacon, sdata);
596
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100597
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100598 /* Need to have a beacon head if we don't have one yet */
599 if (!params->head && !old)
Johannes Berg88600202012-02-13 15:17:18 +0100600 return -EINVAL;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100601
602 /* new or old head? */
603 if (params->head)
604 new_head_len = params->head_len;
605 else
606 new_head_len = old->head_len;
607
608 /* new or old tail? */
609 if (params->tail || !old)
610 /* params->tail_len will be zero for !params->tail */
611 new_tail_len = params->tail_len;
612 else
613 new_tail_len = old->tail_len;
614
615 size = sizeof(*new) + new_head_len + new_tail_len;
616
617 new = kzalloc(size, GFP_KERNEL);
618 if (!new)
619 return -ENOMEM;
620
621 /* start filling the new info now */
622
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100623 /*
624 * pointers go into the block we allocated,
625 * memory is | beacon_data | head | tail |
626 */
627 new->head = ((u8 *) new) + sizeof(*new);
628 new->tail = new->head + new_head_len;
629 new->head_len = new_head_len;
630 new->tail_len = new_tail_len;
631
Michal Kazioraf296bd2014-06-05 14:21:36 +0200632 if (csa) {
633 new->csa_current_counter = csa->count;
634 memcpy(new->csa_counter_offsets, csa->counter_offsets_beacon,
635 csa->n_counter_offsets_beacon *
636 sizeof(new->csa_counter_offsets[0]));
637 }
638
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100639 /* copy in head */
640 if (params->head)
641 memcpy(new->head, params->head, new_head_len);
642 else
643 memcpy(new->head, old->head, new_head_len);
644
645 /* copy in optional tail */
646 if (params->tail)
647 memcpy(new->tail, params->tail, new_tail_len);
648 else
649 if (old)
650 memcpy(new->tail, old->tail, new_tail_len);
651
Johannes Berg88600202012-02-13 15:17:18 +0100652 err = ieee80211_set_probe_resp(sdata, params->probe_resp,
Michal Kazioraf296bd2014-06-05 14:21:36 +0200653 params->probe_resp_len, csa);
Johannes Berg88600202012-02-13 15:17:18 +0100654 if (err < 0)
655 return err;
656 if (err == 0)
657 changed |= BSS_CHANGED_AP_PROBE_RESP;
Johannes Berg19885c42010-02-05 11:45:06 +0100658
Eric Dumazetcf778b02012-01-12 04:41:32 +0000659 rcu_assign_pointer(sdata->u.ap.beacon, new);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100660
Johannes Berg88600202012-02-13 15:17:18 +0100661 if (old)
662 kfree_rcu(old, rcu_head);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100663
Johannes Berg88600202012-02-13 15:17:18 +0100664 return changed;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100665}
666
Johannes Berg88600202012-02-13 15:17:18 +0100667static int ieee80211_start_ap(struct wiphy *wiphy, struct net_device *dev,
668 struct cfg80211_ap_settings *params)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100669{
Johannes Berg88600202012-02-13 15:17:18 +0100670 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg34a37402013-12-18 09:43:33 +0100671 struct ieee80211_local *local = sdata->local;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100672 struct beacon_data *old;
Johannes Berg665c93a2011-11-04 11:18:11 +0100673 struct ieee80211_sub_if_data *vlan;
Johannes Berg88600202012-02-13 15:17:18 +0100674 u32 changed = BSS_CHANGED_BEACON_INT |
675 BSS_CHANGED_BEACON_ENABLED |
676 BSS_CHANGED_BEACON |
Johannes Berg339afbf2012-11-14 15:21:17 +0100677 BSS_CHANGED_SSID |
678 BSS_CHANGED_P2P_PS;
Johannes Berg88600202012-02-13 15:17:18 +0100679 int err;
Johannes Berg14db74b2008-07-29 13:22:52 +0200680
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100681 old = sdata_dereference(sdata->u.ap.beacon, sdata);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100682 if (old)
683 return -EALREADY;
684
Johannes Berg04ecd252012-09-11 14:34:12 +0200685 /* TODO: make hostapd tell us what it wants */
686 sdata->smps_mode = IEEE80211_SMPS_OFF;
687 sdata->needed_rx_chains = sdata->local->rx_chains;
688
Johannes Berg34a37402013-12-18 09:43:33 +0100689 mutex_lock(&local->mtx);
Johannes Berg4bf88532012-11-09 11:39:59 +0100690 err = ieee80211_vif_use_channel(sdata, &params->chandef,
Johannes Berg55de9082012-07-26 17:24:39 +0200691 IEEE80211_CHANCTX_SHARED);
Michal Kazior4e141da2014-03-05 13:14:08 +0100692 if (!err)
693 ieee80211_vif_copy_chanctx_to_vlans(sdata, false);
Johannes Berg34a37402013-12-18 09:43:33 +0100694 mutex_unlock(&local->mtx);
Johannes Bergaa430da2012-05-16 23:50:18 +0200695 if (err)
696 return err;
697
Johannes Berg665c93a2011-11-04 11:18:11 +0100698 /*
699 * Apply control port protocol, this allows us to
700 * not encrypt dynamic WEP control frames.
701 */
702 sdata->control_port_protocol = params->crypto.control_port_ethertype;
703 sdata->control_port_no_encrypt = params->crypto.control_port_no_encrypt;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200704 sdata->encrypt_headroom = ieee80211_cs_headroom(sdata->local,
705 &params->crypto,
706 sdata->vif.type);
707
Johannes Berg665c93a2011-11-04 11:18:11 +0100708 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list) {
709 vlan->control_port_protocol =
710 params->crypto.control_port_ethertype;
711 vlan->control_port_no_encrypt =
712 params->crypto.control_port_no_encrypt;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200713 vlan->encrypt_headroom =
714 ieee80211_cs_headroom(sdata->local,
715 &params->crypto,
716 vlan->vif.type);
Johannes Berg665c93a2011-11-04 11:18:11 +0100717 }
718
Johannes Berg88600202012-02-13 15:17:18 +0100719 sdata->vif.bss_conf.beacon_int = params->beacon_interval;
720 sdata->vif.bss_conf.dtim_period = params->dtim_period;
Johannes Bergd6a83222012-12-14 14:06:28 +0100721 sdata->vif.bss_conf.enable_beacon = true;
Johannes Berg88600202012-02-13 15:17:18 +0100722
723 sdata->vif.bss_conf.ssid_len = params->ssid_len;
724 if (params->ssid_len)
725 memcpy(sdata->vif.bss_conf.ssid, params->ssid,
726 params->ssid_len);
727 sdata->vif.bss_conf.hidden_ssid =
728 (params->hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE);
729
Janusz Dziedzic67baf662013-03-21 15:47:56 +0100730 memset(&sdata->vif.bss_conf.p2p_noa_attr, 0,
731 sizeof(sdata->vif.bss_conf.p2p_noa_attr));
732 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow =
733 params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
734 if (params->p2p_opp_ps)
735 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
736 IEEE80211_P2P_OPPPS_ENABLE_BIT;
Johannes Berg339afbf2012-11-14 15:21:17 +0100737
Michal Kazioraf296bd2014-06-05 14:21:36 +0200738 err = ieee80211_assign_beacon(sdata, &params->beacon, NULL);
Emmanuel Grumbach0297ea12014-01-27 11:07:42 +0200739 if (err < 0) {
740 ieee80211_vif_release_channel(sdata);
Johannes Berg88600202012-02-13 15:17:18 +0100741 return err;
Emmanuel Grumbach0297ea12014-01-27 11:07:42 +0200742 }
Johannes Berg88600202012-02-13 15:17:18 +0100743 changed |= err;
744
Johannes Berg10416382012-10-19 15:44:42 +0200745 err = drv_start_ap(sdata->local, sdata);
746 if (err) {
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100747 old = sdata_dereference(sdata->u.ap.beacon, sdata);
748
Johannes Berg10416382012-10-19 15:44:42 +0200749 if (old)
750 kfree_rcu(old, rcu_head);
751 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
Emmanuel Grumbach0297ea12014-01-27 11:07:42 +0200752 ieee80211_vif_release_channel(sdata);
Johannes Berg10416382012-10-19 15:44:42 +0200753 return err;
754 }
755
Thomas Pedersen057d5f42013-12-19 10:25:15 -0800756 ieee80211_recalc_dtim(local, sdata);
Johannes Berg88600202012-02-13 15:17:18 +0100757 ieee80211_bss_info_change_notify(sdata, changed);
758
Johannes Berg3edaf3e2012-04-03 10:24:00 +0200759 netif_carrier_on(dev);
760 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
761 netif_carrier_on(vlan->dev);
762
Johannes Berg665c93a2011-11-04 11:18:11 +0100763 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100764}
765
Johannes Berg88600202012-02-13 15:17:18 +0100766static int ieee80211_change_beacon(struct wiphy *wiphy, struct net_device *dev,
767 struct cfg80211_beacon_data *params)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100768{
Johannes Berg14db74b2008-07-29 13:22:52 +0200769 struct ieee80211_sub_if_data *sdata;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100770 struct beacon_data *old;
Johannes Berg88600202012-02-13 15:17:18 +0100771 int err;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100772
Johannes Berg14db74b2008-07-29 13:22:52 +0200773 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Michal Kaziordbd72852014-01-29 07:56:21 +0100774 sdata_assert_lock(sdata);
Johannes Berg14db74b2008-07-29 13:22:52 +0200775
Simon Wunderlich73da7d52013-07-11 16:09:06 +0200776 /* don't allow changing the beacon while CSA is in place - offset
777 * of channel switch counter may change
778 */
779 if (sdata->vif.csa_active)
780 return -EBUSY;
781
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100782 old = sdata_dereference(sdata->u.ap.beacon, sdata);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100783 if (!old)
784 return -ENOENT;
785
Michal Kazioraf296bd2014-06-05 14:21:36 +0200786 err = ieee80211_assign_beacon(sdata, params, NULL);
Johannes Berg88600202012-02-13 15:17:18 +0100787 if (err < 0)
788 return err;
789 ieee80211_bss_info_change_notify(sdata, err);
790 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100791}
792
Johannes Berg88600202012-02-13 15:17:18 +0100793static int ieee80211_stop_ap(struct wiphy *wiphy, struct net_device *dev)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100794{
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200795 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
796 struct ieee80211_sub_if_data *vlan;
797 struct ieee80211_local *local = sdata->local;
798 struct beacon_data *old_beacon;
799 struct probe_resp *old_probe_resp;
Janusz Dziedzicd2859df2013-11-06 13:55:51 +0100800 struct cfg80211_chan_def chandef;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100801
Michal Kaziordbd72852014-01-29 07:56:21 +0100802 sdata_assert_lock(sdata);
803
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100804 old_beacon = sdata_dereference(sdata->u.ap.beacon, sdata);
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200805 if (!old_beacon)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100806 return -ENOENT;
Simon Wunderlich7ca133b2013-11-21 18:19:50 +0100807 old_probe_resp = sdata_dereference(sdata->u.ap.probe_resp, sdata);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100808
Simon Wunderlich73da7d52013-07-11 16:09:06 +0200809 /* abort any running channel switch */
Michal Kazior59af6922014-04-09 15:10:59 +0200810 mutex_lock(&local->mtx);
Simon Wunderlich73da7d52013-07-11 16:09:06 +0200811 sdata->vif.csa_active = false;
Luciano Coelhoa46992b2014-06-13 16:30:07 +0300812 if (sdata->csa_block_tx) {
813 ieee80211_wake_vif_queues(local, sdata,
814 IEEE80211_QUEUE_STOP_REASON_CSA);
815 sdata->csa_block_tx = false;
816 }
817
Michal Kazior59af6922014-04-09 15:10:59 +0200818 mutex_unlock(&local->mtx);
819
Simon Wunderlich1f3b8a22013-11-21 18:19:53 +0100820 kfree(sdata->u.ap.next_beacon);
821 sdata->u.ap.next_beacon = NULL;
822
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200823 /* turn off carrier for this interface and dependent VLANs */
Johannes Berg3edaf3e2012-04-03 10:24:00 +0200824 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
825 netif_carrier_off(vlan->dev);
826 netif_carrier_off(dev);
827
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200828 /* remove beacon and probe response */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000829 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200830 RCU_INIT_POINTER(sdata->u.ap.probe_resp, NULL);
831 kfree_rcu(old_beacon, rcu_head);
832 if (old_probe_resp)
833 kfree_rcu(old_probe_resp, rcu_head);
Emmanuel Grumbach8ffcc702014-01-23 14:28:16 +0200834 sdata->u.ap.driver_smps_mode = IEEE80211_SMPS_OFF;
Johannes Berg88600202012-02-13 15:17:18 +0100835
Johannes Berge7162512013-12-04 23:18:37 +0100836 __sta_info_flush(sdata, true);
Johannes Berg7907c7d2013-12-04 23:47:09 +0100837 ieee80211_free_keys(sdata, true);
Johannes Berg75de9112012-12-14 14:56:03 +0100838
Johannes Bergd6a83222012-12-14 14:06:28 +0100839 sdata->vif.bss_conf.enable_beacon = false;
Marek Puzyniak0eabccd2013-04-10 13:47:45 +0200840 sdata->vif.bss_conf.ssid_len = 0;
Johannes Bergd6a83222012-12-14 14:06:28 +0100841 clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED, &sdata->state);
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200842 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
Johannes Berg88600202012-02-13 15:17:18 +0100843
Simon Wunderlicha6b368f2013-06-11 10:44:39 +0200844 if (sdata->wdev.cac_started) {
Janusz Dziedzicd2859df2013-11-06 13:55:51 +0100845 chandef = sdata->vif.bss_conf.chandef;
Simon Wunderlicha6b368f2013-06-11 10:44:39 +0200846 cancel_delayed_work_sync(&sdata->dfs_cac_timer_work);
Janusz Dziedzicd2859df2013-11-06 13:55:51 +0100847 cfg80211_cac_event(sdata->dev, &chandef,
848 NL80211_RADAR_CAC_ABORTED,
Simon Wunderlicha6b368f2013-06-11 10:44:39 +0200849 GFP_KERNEL);
850 }
851
Johannes Berg10416382012-10-19 15:44:42 +0200852 drv_stop_ap(sdata->local, sdata);
853
Johannes Berg7b20b8e2012-10-25 19:02:42 +0200854 /* free all potentially still buffered bcast frames */
855 local->total_ps_buffered -= skb_queue_len(&sdata->u.ap.ps.bc_buf);
856 skb_queue_purge(&sdata->u.ap.ps.bc_buf);
857
Johannes Berg34a37402013-12-18 09:43:33 +0100858 mutex_lock(&local->mtx);
Michal Kazior4e141da2014-03-05 13:14:08 +0100859 ieee80211_vif_copy_chanctx_to_vlans(sdata, true);
Johannes Berg55de9082012-07-26 17:24:39 +0200860 ieee80211_vif_release_channel(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +0100861 mutex_unlock(&local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +0200862
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200863 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100864}
865
Johannes Berg4fd69312007-12-19 02:03:35 +0100866/* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */
867struct iapp_layer2_update {
868 u8 da[ETH_ALEN]; /* broadcast */
869 u8 sa[ETH_ALEN]; /* STA addr */
870 __be16 len; /* 6 */
871 u8 dsap; /* 0 */
872 u8 ssap; /* 0 */
873 u8 control;
874 u8 xid_info[3];
Eric Dumazetbc105022010-06-03 03:21:52 -0700875} __packed;
Johannes Berg4fd69312007-12-19 02:03:35 +0100876
877static void ieee80211_send_layer2_update(struct sta_info *sta)
878{
879 struct iapp_layer2_update *msg;
880 struct sk_buff *skb;
881
882 /* Send Level 2 Update Frame to update forwarding tables in layer 2
883 * bridge devices */
884
885 skb = dev_alloc_skb(sizeof(*msg));
886 if (!skb)
887 return;
888 msg = (struct iapp_layer2_update *)skb_put(skb, sizeof(*msg));
889
890 /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID)
891 * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */
892
Johannes Berge83e6542012-07-13 16:23:07 +0200893 eth_broadcast_addr(msg->da);
Johannes Berg17741cd2008-09-11 00:02:02 +0200894 memcpy(msg->sa, sta->sta.addr, ETH_ALEN);
Johannes Berg4fd69312007-12-19 02:03:35 +0100895 msg->len = htons(6);
896 msg->dsap = 0;
897 msg->ssap = 0x01; /* NULL LSAP, CR Bit: Response */
898 msg->control = 0xaf; /* XID response lsb.1111F101.
899 * F=0 (no poll command; unsolicited frame) */
900 msg->xid_info[0] = 0x81; /* XID format identifier */
901 msg->xid_info[1] = 1; /* LLC types/classes: Type 1 LLC */
902 msg->xid_info[2] = 0; /* XID sender's receive window size (RW) */
903
Johannes Bergd0709a62008-02-25 16:27:46 +0100904 skb->dev = sta->sdata->dev;
905 skb->protocol = eth_type_trans(skb, sta->sdata->dev);
Johannes Berg4fd69312007-12-19 02:03:35 +0100906 memset(skb->cb, 0, sizeof(skb->cb));
John W. Linville06ee1c22010-07-19 11:52:59 -0400907 netif_rx_ni(skb);
Johannes Berg4fd69312007-12-19 02:03:35 +0100908}
909
Johannes Bergd582cff2012-10-26 17:53:44 +0200910static int sta_apply_auth_flags(struct ieee80211_local *local,
911 struct sta_info *sta,
912 u32 mask, u32 set)
913{
914 int ret;
915
916 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
917 set & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
918 !test_sta_flag(sta, WLAN_STA_AUTH)) {
919 ret = sta_info_move_state(sta, IEEE80211_STA_AUTH);
920 if (ret)
921 return ret;
922 }
923
924 if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
925 set & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
926 !test_sta_flag(sta, WLAN_STA_ASSOC)) {
927 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
928 if (ret)
929 return ret;
930 }
931
932 if (mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
933 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED))
934 ret = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
935 else if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
936 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
937 else
938 ret = 0;
939 if (ret)
940 return ret;
941 }
942
943 if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
944 !(set & BIT(NL80211_STA_FLAG_ASSOCIATED)) &&
945 test_sta_flag(sta, WLAN_STA_ASSOC)) {
946 ret = sta_info_move_state(sta, IEEE80211_STA_AUTH);
947 if (ret)
948 return ret;
949 }
950
951 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
952 !(set & BIT(NL80211_STA_FLAG_AUTHENTICATED)) &&
953 test_sta_flag(sta, WLAN_STA_AUTH)) {
954 ret = sta_info_move_state(sta, IEEE80211_STA_NONE);
955 if (ret)
956 return ret;
957 }
958
959 return 0;
960}
961
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100962static int sta_apply_parameters(struct ieee80211_local *local,
963 struct sta_info *sta,
964 struct station_parameters *params)
Johannes Berg4fd69312007-12-19 02:03:35 +0100965{
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100966 int ret = 0;
Johannes Berg8318d782008-01-24 19:38:38 +0100967 struct ieee80211_supported_band *sband;
Johannes Bergd0709a62008-02-25 16:27:46 +0100968 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berg55de9082012-07-26 17:24:39 +0200969 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
Johannes Bergeccb8e82009-05-11 21:57:56 +0300970 u32 mask, set;
Johannes Berg4fd69312007-12-19 02:03:35 +0100971
Johannes Berg55de9082012-07-26 17:24:39 +0200972 sband = local->hw.wiphy->bands[band];
Johannes Bergae5eb022008-10-14 16:58:37 +0200973
Johannes Bergeccb8e82009-05-11 21:57:56 +0300974 mask = params->sta_flags_mask;
975 set = params->sta_flags_set;
Johannes Berg73651ee2008-02-25 16:27:47 +0100976
Johannes Bergd582cff2012-10-26 17:53:44 +0200977 if (ieee80211_vif_is_mesh(&sdata->vif)) {
978 /*
979 * In mesh mode, ASSOCIATED isn't part of the nl80211
980 * API but must follow AUTHENTICATED for driver state.
981 */
982 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED))
983 mask |= BIT(NL80211_STA_FLAG_ASSOCIATED);
984 if (set & BIT(NL80211_STA_FLAG_AUTHENTICATED))
985 set |= BIT(NL80211_STA_FLAG_ASSOCIATED);
Johannes Berg77ee7c82013-02-15 00:48:33 +0100986 } else if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
987 /*
988 * TDLS -- everything follows authorized, but
989 * only becoming authorized is possible, not
990 * going back
991 */
992 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
993 set |= BIT(NL80211_STA_FLAG_AUTHENTICATED) |
994 BIT(NL80211_STA_FLAG_ASSOCIATED);
995 mask |= BIT(NL80211_STA_FLAG_AUTHENTICATED) |
996 BIT(NL80211_STA_FLAG_ASSOCIATED);
997 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +0100998 }
999
Arik Nemtsov68885a52014-06-11 17:18:19 +03001000 /* auth flags will be set later for TDLS stations */
1001 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1002 ret = sta_apply_auth_flags(local, sta, mask, set);
1003 if (ret)
1004 return ret;
1005 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001006
Johannes Bergeccb8e82009-05-11 21:57:56 +03001007 if (mask & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) {
Johannes Bergeccb8e82009-05-11 21:57:56 +03001008 if (set & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001009 set_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
1010 else
1011 clear_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001012 }
1013
1014 if (mask & BIT(NL80211_STA_FLAG_WME)) {
Arik Nemtsov39df6002011-06-27 23:58:45 +03001015 if (set & BIT(NL80211_STA_FLAG_WME)) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001016 set_sta_flag(sta, WLAN_STA_WME);
Arik Nemtsov39df6002011-06-27 23:58:45 +03001017 sta->sta.wme = true;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001018 } else {
1019 clear_sta_flag(sta, WLAN_STA_WME);
1020 sta->sta.wme = false;
Arik Nemtsov39df6002011-06-27 23:58:45 +03001021 }
Johannes Bergeccb8e82009-05-11 21:57:56 +03001022 }
1023
1024 if (mask & BIT(NL80211_STA_FLAG_MFP)) {
Johannes Bergeccb8e82009-05-11 21:57:56 +03001025 if (set & BIT(NL80211_STA_FLAG_MFP))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001026 set_sta_flag(sta, WLAN_STA_MFP);
1027 else
1028 clear_sta_flag(sta, WLAN_STA_MFP);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001029 }
Javier Cardonab39c48f2011-04-07 15:08:30 -07001030
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001031 if (mask & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001032 if (set & BIT(NL80211_STA_FLAG_TDLS_PEER))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001033 set_sta_flag(sta, WLAN_STA_TDLS_PEER);
1034 else
1035 clear_sta_flag(sta, WLAN_STA_TDLS_PEER);
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001036 }
Johannes Bergeccb8e82009-05-11 21:57:56 +03001037
Johannes Berg3b9ce802011-09-27 20:56:12 +02001038 if (params->sta_modify_mask & STATION_PARAM_APPLY_UAPSD) {
1039 sta->sta.uapsd_queues = params->uapsd_queues;
1040 sta->sta.max_sp = params->max_sp;
1041 }
Eliad Peller9533b4a2011-08-23 14:37:47 +03001042
Johannes Berg73651ee2008-02-25 16:27:47 +01001043 /*
Johannes Berg51b50fb2009-05-24 16:42:30 +02001044 * cfg80211 validates this (1-2007) and allows setting the AID
1045 * only when creating a new station entry
1046 */
1047 if (params->aid)
1048 sta->sta.aid = params->aid;
1049
1050 /*
Johannes Bergba23d202012-12-27 17:32:09 +01001051 * Some of the following updates would be racy if called on an
1052 * existing station, via ieee80211_change_station(). However,
1053 * all such changes are rejected by cfg80211 except for updates
1054 * changing the supported rates on an existing but not yet used
1055 * TDLS peer.
Johannes Berg73651ee2008-02-25 16:27:47 +01001056 */
1057
Johannes Berg4fd69312007-12-19 02:03:35 +01001058 if (params->listen_interval >= 0)
1059 sta->listen_interval = params->listen_interval;
1060
1061 if (params->supported_rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001062 ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef,
1063 sband, params->supported_rates,
1064 params->supported_rates_len,
1065 &sta->sta.supp_rates[band]);
Johannes Berg4fd69312007-12-19 02:03:35 +01001066 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001067
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001068 if (params->ht_capa)
Ben Greearef96a8422011-11-18 11:32:00 -08001069 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
Johannes Berge1a0c6b2013-02-07 11:47:44 +01001070 params->ht_capa, sta);
Jouni Malinen36aedc92008-08-25 11:58:58 +03001071
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +00001072 if (params->vht_capa)
1073 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
Johannes Berg4a342152013-02-07 11:58:58 +01001074 params->vht_capa, sta);
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +00001075
Marek Kwaczynskib1bce14a2014-02-03 14:44:44 +01001076 if (params->opmode_notif_used) {
Marek Kwaczynskib1bce14a2014-02-03 14:44:44 +01001077 /* returned value is only needed for rc update, but the
1078 * rc isn't initialized here yet, so ignore it
1079 */
1080 __ieee80211_vht_handle_opmode(sdata, sta,
1081 params->opmode_notif,
1082 band, false);
1083 }
1084
Javier Cardona9c3990a2011-05-03 16:57:11 -07001085 if (ieee80211_vif_is_mesh(&sdata->vif)) {
Yogesh Ashok Powar4daf50f2011-05-12 09:32:17 -04001086#ifdef CONFIG_MAC80211_MESH
Thomas Pedersen39886b62013-02-13 12:14:19 -08001087 u32 changed = 0;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001088
1089 if (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE) {
Javier Cardona9c3990a2011-05-03 16:57:11 -07001090 switch (params->plink_state) {
Javier Cardona57cf8042011-05-13 10:45:43 -07001091 case NL80211_PLINK_ESTAB:
Marco Porsch1617bab2013-01-07 16:04:49 +01001092 if (sta->plink_state != NL80211_PLINK_ESTAB)
1093 changed = mesh_plink_inc_estab_count(
1094 sdata);
1095 sta->plink_state = params->plink_state;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001096
1097 ieee80211_mps_sta_status_update(sta);
Thomas Pedersen39886b62013-02-13 12:14:19 -08001098 changed |= ieee80211_mps_set_sta_local_pm(sta,
1099 sdata->u.mesh.mshcfg.power_mode);
Marco Porsch1617bab2013-01-07 16:04:49 +01001100 break;
1101 case NL80211_PLINK_LISTEN:
Javier Cardona57cf8042011-05-13 10:45:43 -07001102 case NL80211_PLINK_BLOCKED:
Marco Porsch1617bab2013-01-07 16:04:49 +01001103 case NL80211_PLINK_OPN_SNT:
1104 case NL80211_PLINK_OPN_RCVD:
1105 case NL80211_PLINK_CNF_RCVD:
1106 case NL80211_PLINK_HOLDING:
1107 if (sta->plink_state == NL80211_PLINK_ESTAB)
1108 changed = mesh_plink_dec_estab_count(
1109 sdata);
Javier Cardona9c3990a2011-05-03 16:57:11 -07001110 sta->plink_state = params->plink_state;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001111
1112 ieee80211_mps_sta_status_update(sta);
Marco Porsch446075d2013-10-15 12:29:24 +02001113 changed |= ieee80211_mps_set_sta_local_pm(sta,
1114 NL80211_MESH_POWER_UNKNOWN);
Javier Cardona9c3990a2011-05-03 16:57:11 -07001115 break;
1116 default:
1117 /* nothing */
1118 break;
1119 }
Johannes Berg77ee7c82013-02-15 00:48:33 +01001120 }
1121
1122 switch (params->plink_action) {
1123 case NL80211_PLINK_ACTION_NO_ACTION:
1124 /* nothing */
1125 break;
1126 case NL80211_PLINK_ACTION_OPEN:
1127 changed |= mesh_plink_open(sta);
1128 break;
1129 case NL80211_PLINK_ACTION_BLOCK:
1130 changed |= mesh_plink_block(sta);
1131 break;
Marco Porsch1617bab2013-01-07 16:04:49 +01001132 }
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001133
1134 if (params->local_pm)
Thomas Pedersen39886b62013-02-13 12:14:19 -08001135 changed |=
1136 ieee80211_mps_set_sta_local_pm(sta,
1137 params->local_pm);
Javier Lopez6c751ef2013-11-06 10:04:29 -08001138 ieee80211_mbss_info_change_notify(sdata, changed);
Yogesh Ashok Powar4daf50f2011-05-12 09:32:17 -04001139#endif
Johannes Berg902acc72008-02-23 15:17:19 +01001140 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001141
Arik Nemtsov68885a52014-06-11 17:18:19 +03001142 /* set the STA state after all sta info from usermode has been set */
1143 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1144 ret = sta_apply_auth_flags(local, sta, mask, set);
1145 if (ret)
1146 return ret;
1147 }
1148
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001149 return 0;
Johannes Berg4fd69312007-12-19 02:03:35 +01001150}
1151
1152static int ieee80211_add_station(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001153 const u8 *mac,
1154 struct station_parameters *params)
Johannes Berg4fd69312007-12-19 02:03:35 +01001155{
Johannes Berg14db74b2008-07-29 13:22:52 +02001156 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +01001157 struct sta_info *sta;
1158 struct ieee80211_sub_if_data *sdata;
Johannes Berg73651ee2008-02-25 16:27:47 +01001159 int err;
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001160 int layer2_update;
Johannes Berg4fd69312007-12-19 02:03:35 +01001161
Johannes Berg4fd69312007-12-19 02:03:35 +01001162 if (params->vlan) {
1163 sdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1164
Johannes Berg05c914f2008-09-11 00:01:58 +02001165 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
1166 sdata->vif.type != NL80211_IFTYPE_AP)
Johannes Berg4fd69312007-12-19 02:03:35 +01001167 return -EINVAL;
1168 } else
1169 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1170
Joe Perchesb203ca32012-05-08 18:56:52 +00001171 if (ether_addr_equal(mac, sdata->vif.addr))
Johannes Berg03e44972008-02-27 09:56:40 +01001172 return -EINVAL;
1173
1174 if (is_multicast_ether_addr(mac))
1175 return -EINVAL;
1176
1177 sta = sta_info_alloc(sdata, mac, GFP_KERNEL);
Johannes Berg73651ee2008-02-25 16:27:47 +01001178 if (!sta)
1179 return -ENOMEM;
Johannes Berg4fd69312007-12-19 02:03:35 +01001180
Johannes Bergd582cff2012-10-26 17:53:44 +02001181 /*
1182 * defaults -- if userspace wants something else we'll
1183 * change it accordingly in sta_apply_parameters()
1184 */
Johannes Berg77ee7c82013-02-15 00:48:33 +01001185 if (!(params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER))) {
1186 sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
1187 sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC);
Arik Nemtsov0c4972c2014-05-01 10:17:27 +03001188 } else {
1189 sta->sta.tdls = true;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001190 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001191
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001192 err = sta_apply_parameters(local, sta, params);
1193 if (err) {
1194 sta_info_free(local, sta);
1195 return err;
1196 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001197
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001198 /*
Johannes Berg77ee7c82013-02-15 00:48:33 +01001199 * for TDLS, rate control should be initialized only when
1200 * rates are known and station is marked authorized
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001201 */
1202 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER))
1203 rate_control_rate_init(sta);
Johannes Berg4fd69312007-12-19 02:03:35 +01001204
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001205 layer2_update = sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1206 sdata->vif.type == NL80211_IFTYPE_AP;
1207
Johannes Berg34e89502010-02-03 13:59:58 +01001208 err = sta_info_insert_rcu(sta);
Johannes Berg73651ee2008-02-25 16:27:47 +01001209 if (err) {
Johannes Berg73651ee2008-02-25 16:27:47 +01001210 rcu_read_unlock();
1211 return err;
1212 }
1213
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001214 if (layer2_update)
Johannes Berg73651ee2008-02-25 16:27:47 +01001215 ieee80211_send_layer2_update(sta);
1216
1217 rcu_read_unlock();
1218
Johannes Berg4fd69312007-12-19 02:03:35 +01001219 return 0;
1220}
1221
1222static int ieee80211_del_station(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001223 const u8 *mac)
Johannes Berg4fd69312007-12-19 02:03:35 +01001224{
Johannes Berg14db74b2008-07-29 13:22:52 +02001225 struct ieee80211_sub_if_data *sdata;
Johannes Berg4fd69312007-12-19 02:03:35 +01001226
Johannes Berg14db74b2008-07-29 13:22:52 +02001227 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1228
Johannes Berg34e89502010-02-03 13:59:58 +01001229 if (mac)
1230 return sta_info_destroy_addr_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001231
Johannes Bergb998e8b2012-12-13 23:07:46 +01001232 sta_info_flush(sdata);
Johannes Berg4fd69312007-12-19 02:03:35 +01001233 return 0;
1234}
1235
1236static int ieee80211_change_station(struct wiphy *wiphy,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001237 struct net_device *dev, const u8 *mac,
Johannes Berg4fd69312007-12-19 02:03:35 +01001238 struct station_parameters *params)
1239{
Johannes Bergabe60632009-11-25 17:46:18 +01001240 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg14db74b2008-07-29 13:22:52 +02001241 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +01001242 struct sta_info *sta;
1243 struct ieee80211_sub_if_data *vlansdata;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001244 enum cfg80211_station_type statype;
Eliad Peller35b88622011-12-29 14:41:39 +02001245 int err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001246
Johannes Berg87be1e12011-12-14 12:20:29 +01001247 mutex_lock(&local->sta_mtx);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001248
Felix Fietkau0e5ded52010-01-08 18:10:58 +01001249 sta = sta_info_get_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001250 if (!sta) {
Johannes Berg77ee7c82013-02-15 00:48:33 +01001251 err = -ENOENT;
1252 goto out_err;
Johannes Berg98dd6a52008-04-10 15:36:09 +02001253 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001254
Johannes Berg77ee7c82013-02-15 00:48:33 +01001255 switch (sdata->vif.type) {
1256 case NL80211_IFTYPE_MESH_POINT:
Thomas Pedersena6dad6a2013-03-04 13:06:12 -08001257 if (sdata->u.mesh.user_mpm)
Thomas Pederseneef941e2013-03-04 13:06:11 -08001258 statype = CFG80211_STA_MESH_PEER_USER;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001259 else
Thomas Pederseneef941e2013-03-04 13:06:11 -08001260 statype = CFG80211_STA_MESH_PEER_KERNEL;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001261 break;
1262 case NL80211_IFTYPE_ADHOC:
1263 statype = CFG80211_STA_IBSS;
1264 break;
1265 case NL80211_IFTYPE_STATION:
1266 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1267 statype = CFG80211_STA_AP_STA;
1268 break;
1269 }
1270 if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
1271 statype = CFG80211_STA_TDLS_PEER_ACTIVE;
1272 else
1273 statype = CFG80211_STA_TDLS_PEER_SETUP;
1274 break;
1275 case NL80211_IFTYPE_AP:
1276 case NL80211_IFTYPE_AP_VLAN:
1277 statype = CFG80211_STA_AP_CLIENT;
1278 break;
1279 default:
1280 err = -EOPNOTSUPP;
1281 goto out_err;
Johannes Bergbdd90d52011-12-14 12:20:27 +01001282 }
1283
Johannes Berg77ee7c82013-02-15 00:48:33 +01001284 err = cfg80211_check_station_change(wiphy, params, statype);
1285 if (err)
1286 goto out_err;
1287
Johannes Bergd0709a62008-02-25 16:27:46 +01001288 if (params->vlan && params->vlan != sta->sdata->dev) {
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001289 bool prev_4addr = false;
1290 bool new_4addr = false;
1291
Johannes Berg4fd69312007-12-19 02:03:35 +01001292 vlansdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1293
Johannes Berg9bc383d2009-11-19 11:55:19 +01001294 if (params->vlan->ieee80211_ptr->use_4addr) {
Johannes Berg33054432009-11-20 10:09:14 +01001295 if (vlansdata->u.vlan.sta) {
Johannes Berg77ee7c82013-02-15 00:48:33 +01001296 err = -EBUSY;
1297 goto out_err;
Johannes Berg33054432009-11-20 10:09:14 +01001298 }
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001299
Eric Dumazetcf778b02012-01-12 04:41:32 +00001300 rcu_assign_pointer(vlansdata->u.vlan.sta, sta);
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001301 new_4addr = true;
1302 }
1303
1304 if (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1305 sta->sdata->u.vlan.sta) {
Monam Agarwal0c2bef462014-03-24 00:51:43 +05301306 RCU_INIT_POINTER(sta->sdata->u.vlan.sta, NULL);
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001307 prev_4addr = true;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001308 }
1309
Johannes Berg14db74b2008-07-29 13:22:52 +02001310 sta->sdata = vlansdata;
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001311
1312 if (sta->sta_state == IEEE80211_STA_AUTHORIZED &&
1313 prev_4addr != new_4addr) {
1314 if (new_4addr)
1315 atomic_dec(&sta->sdata->bss->num_mcast_sta);
1316 else
1317 atomic_inc(&sta->sdata->bss->num_mcast_sta);
1318 }
1319
Johannes Berg4fd69312007-12-19 02:03:35 +01001320 ieee80211_send_layer2_update(sta);
1321 }
1322
Eliad Peller35b88622011-12-29 14:41:39 +02001323 err = sta_apply_parameters(local, sta, params);
Johannes Berg77ee7c82013-02-15 00:48:33 +01001324 if (err)
1325 goto out_err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001326
Johannes Berg77ee7c82013-02-15 00:48:33 +01001327 /* When peer becomes authorized, init rate control as well */
1328 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER) &&
1329 test_sta_flag(sta, WLAN_STA_AUTHORIZED))
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001330 rate_control_rate_init(sta);
1331
Johannes Berg87be1e12011-12-14 12:20:29 +01001332 mutex_unlock(&local->sta_mtx);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001333
Emmanuel Grumbach687da132013-10-01 16:45:43 +03001334 if ((sdata->vif.type == NL80211_IFTYPE_AP ||
1335 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
1336 sta->known_smps_mode != sta->sdata->bss->req_smps &&
1337 test_sta_flag(sta, WLAN_STA_AUTHORIZED) &&
1338 sta_info_tx_streams(sta) != 1) {
1339 ht_dbg(sta->sdata,
1340 "%pM just authorized and MIMO capable - update SMPS\n",
1341 sta->sta.addr);
1342 ieee80211_send_smps_action(sta->sdata,
1343 sta->sdata->bss->req_smps,
1344 sta->sta.addr,
1345 sta->sdata->vif.bss_conf.bssid);
1346 }
1347
Jason Young808118c2011-03-10 16:43:19 -08001348 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
Eliad Pellerab095872012-07-27 12:33:22 +03001349 params->sta_flags_mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
Jason Young808118c2011-03-10 16:43:19 -08001350 ieee80211_recalc_ps(local, -1);
Eliad Pellerab095872012-07-27 12:33:22 +03001351 ieee80211_recalc_ps_vif(sdata);
1352 }
Johannes Berg77ee7c82013-02-15 00:48:33 +01001353
Johannes Berg4fd69312007-12-19 02:03:35 +01001354 return 0;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001355out_err:
1356 mutex_unlock(&local->sta_mtx);
1357 return err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001358}
1359
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001360#ifdef CONFIG_MAC80211_MESH
1361static int ieee80211_add_mpath(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001362 const u8 *dst, const u8 *next_hop)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001363{
Johannes Berg14db74b2008-07-29 13:22:52 +02001364 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001365 struct mesh_path *mpath;
1366 struct sta_info *sta;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001367
Johannes Berg14db74b2008-07-29 13:22:52 +02001368 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1369
Johannes Bergd0709a62008-02-25 16:27:46 +01001370 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +01001371 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +01001372 if (!sta) {
1373 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001374 return -ENOENT;
Johannes Bergd0709a62008-02-25 16:27:46 +01001375 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001376
Bob Copelandae76eef2013-03-29 09:38:39 -04001377 mpath = mesh_path_add(sdata, dst);
1378 if (IS_ERR(mpath)) {
Johannes Bergd0709a62008-02-25 16:27:46 +01001379 rcu_read_unlock();
Bob Copelandae76eef2013-03-29 09:38:39 -04001380 return PTR_ERR(mpath);
Johannes Bergd0709a62008-02-25 16:27:46 +01001381 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001382
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001383 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +01001384
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001385 rcu_read_unlock();
1386 return 0;
1387}
1388
1389static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001390 const u8 *dst)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001391{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001392 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001393
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001394 if (dst)
Johannes Bergbf7cd942013-02-15 14:40:31 +01001395 return mesh_path_del(sdata, dst);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001396
Javier Cardonaece1a2e2011-08-29 13:23:04 -07001397 mesh_path_flush_by_iface(sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001398 return 0;
1399}
1400
Johannes Berg3b3a0162014-05-19 17:19:31 +02001401static int ieee80211_change_mpath(struct wiphy *wiphy, struct net_device *dev,
1402 const u8 *dst, const u8 *next_hop)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001403{
Johannes Berg14db74b2008-07-29 13:22:52 +02001404 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001405 struct mesh_path *mpath;
1406 struct sta_info *sta;
1407
Johannes Berg14db74b2008-07-29 13:22:52 +02001408 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1409
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001410 rcu_read_lock();
Johannes Bergd0709a62008-02-25 16:27:46 +01001411
Johannes Bergabe60632009-11-25 17:46:18 +01001412 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +01001413 if (!sta) {
1414 rcu_read_unlock();
1415 return -ENOENT;
1416 }
1417
Johannes Bergbf7cd942013-02-15 14:40:31 +01001418 mpath = mesh_path_lookup(sdata, dst);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001419 if (!mpath) {
1420 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001421 return -ENOENT;
1422 }
1423
1424 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +01001425
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001426 rcu_read_unlock();
1427 return 0;
1428}
1429
1430static void mpath_set_pinfo(struct mesh_path *mpath, u8 *next_hop,
1431 struct mpath_info *pinfo)
1432{
Johannes Berga3836e02011-05-12 15:11:37 +02001433 struct sta_info *next_hop_sta = rcu_dereference(mpath->next_hop);
1434
1435 if (next_hop_sta)
1436 memcpy(next_hop, next_hop_sta->sta.addr, ETH_ALEN);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001437 else
1438 memset(next_hop, 0, ETH_ALEN);
1439
LEO Airwarosu Yoichi Shinoda7ce8c7a2012-08-27 22:28:16 +09001440 memset(pinfo, 0, sizeof(*pinfo));
1441
Johannes Bergf5ea9122009-08-07 16:17:38 +02001442 pinfo->generation = mesh_paths_generation;
1443
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001444 pinfo->filled = MPATH_INFO_FRAME_QLEN |
Rui Paulod19b3bf2009-11-09 23:46:55 +00001445 MPATH_INFO_SN |
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001446 MPATH_INFO_METRIC |
1447 MPATH_INFO_EXPTIME |
1448 MPATH_INFO_DISCOVERY_TIMEOUT |
1449 MPATH_INFO_DISCOVERY_RETRIES |
1450 MPATH_INFO_FLAGS;
1451
1452 pinfo->frame_qlen = mpath->frame_queue.qlen;
Rui Paulod19b3bf2009-11-09 23:46:55 +00001453 pinfo->sn = mpath->sn;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001454 pinfo->metric = mpath->metric;
1455 if (time_before(jiffies, mpath->exp_time))
1456 pinfo->exptime = jiffies_to_msecs(mpath->exp_time - jiffies);
1457 pinfo->discovery_timeout =
1458 jiffies_to_msecs(mpath->discovery_timeout);
1459 pinfo->discovery_retries = mpath->discovery_retries;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001460 if (mpath->flags & MESH_PATH_ACTIVE)
1461 pinfo->flags |= NL80211_MPATH_FLAG_ACTIVE;
1462 if (mpath->flags & MESH_PATH_RESOLVING)
1463 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
Rui Paulod19b3bf2009-11-09 23:46:55 +00001464 if (mpath->flags & MESH_PATH_SN_VALID)
1465 pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001466 if (mpath->flags & MESH_PATH_FIXED)
1467 pinfo->flags |= NL80211_MPATH_FLAG_FIXED;
LEO Airwarosu Yoichi Shinoda7ce8c7a2012-08-27 22:28:16 +09001468 if (mpath->flags & MESH_PATH_RESOLVED)
1469 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVED;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001470}
1471
1472static int ieee80211_get_mpath(struct wiphy *wiphy, struct net_device *dev,
1473 u8 *dst, u8 *next_hop, struct mpath_info *pinfo)
1474
1475{
Johannes Berg14db74b2008-07-29 13:22:52 +02001476 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001477 struct mesh_path *mpath;
1478
Johannes Berg14db74b2008-07-29 13:22:52 +02001479 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1480
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001481 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01001482 mpath = mesh_path_lookup(sdata, dst);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001483 if (!mpath) {
1484 rcu_read_unlock();
1485 return -ENOENT;
1486 }
1487 memcpy(dst, mpath->dst, ETH_ALEN);
1488 mpath_set_pinfo(mpath, next_hop, pinfo);
1489 rcu_read_unlock();
1490 return 0;
1491}
1492
1493static int ieee80211_dump_mpath(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg3b3a0162014-05-19 17:19:31 +02001494 int idx, u8 *dst, u8 *next_hop,
1495 struct mpath_info *pinfo)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001496{
Johannes Berg14db74b2008-07-29 13:22:52 +02001497 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001498 struct mesh_path *mpath;
1499
Johannes Berg14db74b2008-07-29 13:22:52 +02001500 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1501
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001502 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01001503 mpath = mesh_path_lookup_by_idx(sdata, idx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001504 if (!mpath) {
1505 rcu_read_unlock();
1506 return -ENOENT;
1507 }
1508 memcpy(dst, mpath->dst, ETH_ALEN);
1509 mpath_set_pinfo(mpath, next_hop, pinfo);
1510 rcu_read_unlock();
1511 return 0;
1512}
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001513
Javier Cardona24bdd9f2010-12-16 17:37:48 -08001514static int ieee80211_get_mesh_config(struct wiphy *wiphy,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001515 struct net_device *dev,
1516 struct mesh_config *conf)
1517{
1518 struct ieee80211_sub_if_data *sdata;
1519 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1520
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001521 memcpy(conf, &(sdata->u.mesh.mshcfg), sizeof(struct mesh_config));
1522 return 0;
1523}
1524
1525static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm, u32 mask)
1526{
1527 return (mask >> (parm-1)) & 0x1;
1528}
1529
Javier Cardonac80d5452010-12-16 17:37:49 -08001530static int copy_mesh_setup(struct ieee80211_if_mesh *ifmsh,
1531 const struct mesh_setup *setup)
1532{
1533 u8 *new_ie;
1534 const u8 *old_ie;
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001535 struct ieee80211_sub_if_data *sdata = container_of(ifmsh,
1536 struct ieee80211_sub_if_data, u.mesh);
Javier Cardonac80d5452010-12-16 17:37:49 -08001537
Javier Cardona581a8b02011-04-07 15:08:27 -07001538 /* allocate information elements */
Javier Cardonac80d5452010-12-16 17:37:49 -08001539 new_ie = NULL;
Javier Cardona581a8b02011-04-07 15:08:27 -07001540 old_ie = ifmsh->ie;
Javier Cardonac80d5452010-12-16 17:37:49 -08001541
Javier Cardona581a8b02011-04-07 15:08:27 -07001542 if (setup->ie_len) {
1543 new_ie = kmemdup(setup->ie, setup->ie_len,
Javier Cardonac80d5452010-12-16 17:37:49 -08001544 GFP_KERNEL);
1545 if (!new_ie)
1546 return -ENOMEM;
1547 }
Javier Cardona581a8b02011-04-07 15:08:27 -07001548 ifmsh->ie_len = setup->ie_len;
1549 ifmsh->ie = new_ie;
1550 kfree(old_ie);
Javier Cardonac80d5452010-12-16 17:37:49 -08001551
1552 /* now copy the rest of the setup parameters */
1553 ifmsh->mesh_id_len = setup->mesh_id_len;
1554 memcpy(ifmsh->mesh_id, setup->mesh_id, ifmsh->mesh_id_len);
Javier Cardonad299a1f2012-03-31 11:31:33 -07001555 ifmsh->mesh_sp_id = setup->sync_method;
Javier Cardonac80d5452010-12-16 17:37:49 -08001556 ifmsh->mesh_pp_id = setup->path_sel_proto;
1557 ifmsh->mesh_pm_id = setup->path_metric;
Thomas Pedersena6dad6a2013-03-04 13:06:12 -08001558 ifmsh->user_mpm = setup->user_mpm;
Colleen Twitty0d4261a2013-05-08 11:46:00 -07001559 ifmsh->mesh_auth_id = setup->auth_id;
Javier Cardonab130e5c2011-05-03 16:57:07 -07001560 ifmsh->security = IEEE80211_MESH_SEC_NONE;
1561 if (setup->is_authenticated)
1562 ifmsh->security |= IEEE80211_MESH_SEC_AUTHED;
1563 if (setup->is_secure)
1564 ifmsh->security |= IEEE80211_MESH_SEC_SECURED;
Javier Cardonac80d5452010-12-16 17:37:49 -08001565
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001566 /* mcast rate setting in Mesh Node */
1567 memcpy(sdata->vif.bss_conf.mcast_rate, setup->mcast_rate,
1568 sizeof(setup->mcast_rate));
Ashok Nagarajanffb3cf32013-06-03 10:33:36 -07001569 sdata->vif.bss_conf.basic_rates = setup->basic_rates;
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001570
Marco Porsch9bdbf042013-01-07 16:04:51 +01001571 sdata->vif.bss_conf.beacon_int = setup->beacon_interval;
1572 sdata->vif.bss_conf.dtim_period = setup->dtim_period;
1573
Javier Cardonac80d5452010-12-16 17:37:49 -08001574 return 0;
1575}
1576
Javier Cardona24bdd9f2010-12-16 17:37:48 -08001577static int ieee80211_update_mesh_config(struct wiphy *wiphy,
Johannes Berg29cbe682010-12-03 09:20:44 +01001578 struct net_device *dev, u32 mask,
1579 const struct mesh_config *nconf)
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001580{
1581 struct mesh_config *conf;
1582 struct ieee80211_sub_if_data *sdata;
Rui Paulo63c57232009-11-09 23:46:57 +00001583 struct ieee80211_if_mesh *ifmsh;
1584
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001585 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Rui Paulo63c57232009-11-09 23:46:57 +00001586 ifmsh = &sdata->u.mesh;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001587
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001588 /* Set the config options which we are interested in setting */
1589 conf = &(sdata->u.mesh.mshcfg);
1590 if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT, mask))
1591 conf->dot11MeshRetryTimeout = nconf->dot11MeshRetryTimeout;
1592 if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT, mask))
1593 conf->dot11MeshConfirmTimeout = nconf->dot11MeshConfirmTimeout;
1594 if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT, mask))
1595 conf->dot11MeshHoldingTimeout = nconf->dot11MeshHoldingTimeout;
1596 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS, mask))
1597 conf->dot11MeshMaxPeerLinks = nconf->dot11MeshMaxPeerLinks;
1598 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES, mask))
1599 conf->dot11MeshMaxRetries = nconf->dot11MeshMaxRetries;
1600 if (_chg_mesh_attr(NL80211_MESHCONF_TTL, mask))
1601 conf->dot11MeshTTL = nconf->dot11MeshTTL;
Javier Cardona45904f22010-12-03 09:20:40 +01001602 if (_chg_mesh_attr(NL80211_MESHCONF_ELEMENT_TTL, mask))
Chun-Yeow Yeoh58886a92012-06-15 00:23:53 +08001603 conf->element_ttl = nconf->element_ttl;
Thomas Pedersen146bb482013-03-04 13:06:14 -08001604 if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS, mask)) {
1605 if (ifmsh->user_mpm)
1606 return -EBUSY;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001607 conf->auto_open_plinks = nconf->auto_open_plinks;
Thomas Pedersen146bb482013-03-04 13:06:14 -08001608 }
Javier Cardonad299a1f2012-03-31 11:31:33 -07001609 if (_chg_mesh_attr(NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR, mask))
1610 conf->dot11MeshNbrOffsetMaxNeighbor =
1611 nconf->dot11MeshNbrOffsetMaxNeighbor;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001612 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, mask))
1613 conf->dot11MeshHWMPmaxPREQretries =
1614 nconf->dot11MeshHWMPmaxPREQretries;
1615 if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME, mask))
1616 conf->path_refresh_time = nconf->path_refresh_time;
1617 if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, mask))
1618 conf->min_discovery_timeout = nconf->min_discovery_timeout;
1619 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, mask))
1620 conf->dot11MeshHWMPactivePathTimeout =
1621 nconf->dot11MeshHWMPactivePathTimeout;
1622 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, mask))
1623 conf->dot11MeshHWMPpreqMinInterval =
1624 nconf->dot11MeshHWMPpreqMinInterval;
Thomas Pedersendca7e942011-11-24 17:15:24 -08001625 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL, mask))
1626 conf->dot11MeshHWMPperrMinInterval =
1627 nconf->dot11MeshHWMPperrMinInterval;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001628 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
1629 mask))
1630 conf->dot11MeshHWMPnetDiameterTraversalTime =
1631 nconf->dot11MeshHWMPnetDiameterTraversalTime;
Rui Paulo63c57232009-11-09 23:46:57 +00001632 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask)) {
1633 conf->dot11MeshHWMPRootMode = nconf->dot11MeshHWMPRootMode;
1634 ieee80211_mesh_root_setup(ifmsh);
1635 }
Javier Cardona16dd7262011-08-09 16:45:11 -07001636 if (_chg_mesh_attr(NL80211_MESHCONF_GATE_ANNOUNCEMENTS, mask)) {
Thomas Pedersenc61336612011-08-25 10:36:14 -07001637 /* our current gate announcement implementation rides on root
1638 * announcements, so require this ifmsh to also be a root node
1639 * */
1640 if (nconf->dot11MeshGateAnnouncementProtocol &&
Chun-Yeow Yeohdbb912c2012-06-14 02:06:09 +08001641 !(conf->dot11MeshHWMPRootMode > IEEE80211_ROOTMODE_ROOT)) {
1642 conf->dot11MeshHWMPRootMode = IEEE80211_PROACTIVE_RANN;
Thomas Pedersenc61336612011-08-25 10:36:14 -07001643 ieee80211_mesh_root_setup(ifmsh);
1644 }
Javier Cardona16dd7262011-08-09 16:45:11 -07001645 conf->dot11MeshGateAnnouncementProtocol =
1646 nconf->dot11MeshGateAnnouncementProtocol;
1647 }
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08001648 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_RANN_INTERVAL, mask))
Javier Cardona0507e152011-08-09 16:45:10 -07001649 conf->dot11MeshHWMPRannInterval =
1650 nconf->dot11MeshHWMPRannInterval;
Chun-Yeow Yeoh94f90652012-01-21 01:02:16 +08001651 if (_chg_mesh_attr(NL80211_MESHCONF_FORWARDING, mask))
1652 conf->dot11MeshForwarding = nconf->dot11MeshForwarding;
Ashok Nagarajan55335132012-02-28 17:04:08 -08001653 if (_chg_mesh_attr(NL80211_MESHCONF_RSSI_THRESHOLD, mask)) {
1654 /* our RSSI threshold implementation is supported only for
1655 * devices that report signal in dBm.
1656 */
1657 if (!(sdata->local->hw.flags & IEEE80211_HW_SIGNAL_DBM))
1658 return -ENOTSUPP;
1659 conf->rssi_threshold = nconf->rssi_threshold;
1660 }
Ashok Nagarajan70c33ea2012-04-30 14:20:32 -07001661 if (_chg_mesh_attr(NL80211_MESHCONF_HT_OPMODE, mask)) {
1662 conf->ht_opmode = nconf->ht_opmode;
1663 sdata->vif.bss_conf.ht_operation_mode = nconf->ht_opmode;
1664 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_HT);
1665 }
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08001666 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT, mask))
1667 conf->dot11MeshHWMPactivePathToRootTimeout =
1668 nconf->dot11MeshHWMPactivePathToRootTimeout;
1669 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOT_INTERVAL, mask))
1670 conf->dot11MeshHWMProotInterval =
1671 nconf->dot11MeshHWMProotInterval;
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08001672 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL, mask))
1673 conf->dot11MeshHWMPconfirmationInterval =
1674 nconf->dot11MeshHWMPconfirmationInterval;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001675 if (_chg_mesh_attr(NL80211_MESHCONF_POWER_MODE, mask)) {
1676 conf->power_mode = nconf->power_mode;
1677 ieee80211_mps_local_status_update(sdata);
1678 }
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001679 if (_chg_mesh_attr(NL80211_MESHCONF_AWAKE_WINDOW, mask))
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001680 conf->dot11MeshAwakeWindowDuration =
1681 nconf->dot11MeshAwakeWindowDuration;
Colleen Twitty66de6712013-06-03 09:53:40 -07001682 if (_chg_mesh_attr(NL80211_MESHCONF_PLINK_TIMEOUT, mask))
1683 conf->plink_timeout = nconf->plink_timeout;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001684 ieee80211_mbss_info_change_notify(sdata, BSS_CHANGED_BEACON);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001685 return 0;
1686}
1687
Johannes Berg29cbe682010-12-03 09:20:44 +01001688static int ieee80211_join_mesh(struct wiphy *wiphy, struct net_device *dev,
1689 const struct mesh_config *conf,
1690 const struct mesh_setup *setup)
1691{
1692 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1693 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Javier Cardonac80d5452010-12-16 17:37:49 -08001694 int err;
Johannes Berg29cbe682010-12-03 09:20:44 +01001695
Javier Cardonac80d5452010-12-16 17:37:49 -08001696 memcpy(&ifmsh->mshcfg, conf, sizeof(struct mesh_config));
1697 err = copy_mesh_setup(ifmsh, setup);
1698 if (err)
1699 return err;
Johannes Bergcc1d2802012-05-16 23:50:20 +02001700
Johannes Berg04ecd252012-09-11 14:34:12 +02001701 /* can mesh use other SMPS modes? */
1702 sdata->smps_mode = IEEE80211_SMPS_OFF;
1703 sdata->needed_rx_chains = sdata->local->rx_chains;
1704
Johannes Berg34a37402013-12-18 09:43:33 +01001705 mutex_lock(&sdata->local->mtx);
Johannes Berg4bf88532012-11-09 11:39:59 +01001706 err = ieee80211_vif_use_channel(sdata, &setup->chandef,
Johannes Berg55de9082012-07-26 17:24:39 +02001707 IEEE80211_CHANCTX_SHARED);
Johannes Berg34a37402013-12-18 09:43:33 +01001708 mutex_unlock(&sdata->local->mtx);
Johannes Bergcc1d2802012-05-16 23:50:20 +02001709 if (err)
1710 return err;
1711
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001712 return ieee80211_start_mesh(sdata);
Johannes Berg29cbe682010-12-03 09:20:44 +01001713}
1714
1715static int ieee80211_leave_mesh(struct wiphy *wiphy, struct net_device *dev)
1716{
1717 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1718
1719 ieee80211_stop_mesh(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +01001720 mutex_lock(&sdata->local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001721 ieee80211_vif_release_channel(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +01001722 mutex_unlock(&sdata->local->mtx);
Johannes Berg29cbe682010-12-03 09:20:44 +01001723
1724 return 0;
1725}
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001726#endif
1727
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001728static int ieee80211_change_bss(struct wiphy *wiphy,
1729 struct net_device *dev,
1730 struct bss_parameters *params)
1731{
Johannes Berg55de9082012-07-26 17:24:39 +02001732 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1733 enum ieee80211_band band;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001734 u32 changed = 0;
1735
Simon Wunderlich7ca133b2013-11-21 18:19:50 +01001736 if (!sdata_dereference(sdata->u.ap.beacon, sdata))
Johannes Berg55de9082012-07-26 17:24:39 +02001737 return -ENOENT;
1738
1739 band = ieee80211_get_sdata_band(sdata);
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001740
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001741 if (params->use_cts_prot >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001742 sdata->vif.bss_conf.use_cts_prot = params->use_cts_prot;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001743 changed |= BSS_CHANGED_ERP_CTS_PROT;
1744 }
1745 if (params->use_short_preamble >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001746 sdata->vif.bss_conf.use_short_preamble =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001747 params->use_short_preamble;
1748 changed |= BSS_CHANGED_ERP_PREAMBLE;
1749 }
Felix Fietkau43d35342010-01-15 03:00:48 +01001750
1751 if (!sdata->vif.bss_conf.use_short_slot &&
Johannes Berg55de9082012-07-26 17:24:39 +02001752 band == IEEE80211_BAND_5GHZ) {
Felix Fietkau43d35342010-01-15 03:00:48 +01001753 sdata->vif.bss_conf.use_short_slot = true;
1754 changed |= BSS_CHANGED_ERP_SLOT;
1755 }
1756
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001757 if (params->use_short_slot_time >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001758 sdata->vif.bss_conf.use_short_slot =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001759 params->use_short_slot_time;
1760 changed |= BSS_CHANGED_ERP_SLOT;
1761 }
1762
Jouni Malinen90c97a02008-10-30 16:59:22 +02001763 if (params->basic_rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001764 ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef,
1765 wiphy->bands[band],
1766 params->basic_rates,
1767 params->basic_rates_len,
1768 &sdata->vif.bss_conf.basic_rates);
Jouni Malinen90c97a02008-10-30 16:59:22 +02001769 changed |= BSS_CHANGED_BASIC_RATES;
1770 }
1771
Felix Fietkau7b7b5e52010-04-27 01:23:36 +02001772 if (params->ap_isolate >= 0) {
1773 if (params->ap_isolate)
1774 sdata->flags |= IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1775 else
1776 sdata->flags &= ~IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1777 }
1778
Helmut Schaa80d7e402010-11-19 12:40:26 +01001779 if (params->ht_opmode >= 0) {
1780 sdata->vif.bss_conf.ht_operation_mode =
1781 (u16) params->ht_opmode;
1782 changed |= BSS_CHANGED_HT;
1783 }
1784
Johannes Berg339afbf2012-11-14 15:21:17 +01001785 if (params->p2p_ctwindow >= 0) {
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001786 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &=
1787 ~IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
1788 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
1789 params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
Johannes Berg339afbf2012-11-14 15:21:17 +01001790 changed |= BSS_CHANGED_P2P_PS;
1791 }
1792
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001793 if (params->p2p_opp_ps > 0) {
1794 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
1795 IEEE80211_P2P_OPPPS_ENABLE_BIT;
1796 changed |= BSS_CHANGED_P2P_PS;
1797 } else if (params->p2p_opp_ps == 0) {
1798 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &=
1799 ~IEEE80211_P2P_OPPPS_ENABLE_BIT;
Johannes Berg339afbf2012-11-14 15:21:17 +01001800 changed |= BSS_CHANGED_P2P_PS;
1801 }
1802
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001803 ieee80211_bss_info_change_notify(sdata, changed);
1804
1805 return 0;
1806}
1807
Jouni Malinen31888482008-10-30 16:59:24 +02001808static int ieee80211_set_txq_params(struct wiphy *wiphy,
Eliad Pellerf70f01c2011-09-25 20:06:53 +03001809 struct net_device *dev,
Jouni Malinen31888482008-10-30 16:59:24 +02001810 struct ieee80211_txq_params *params)
1811{
1812 struct ieee80211_local *local = wiphy_priv(wiphy);
Eliad Pellerf6f3def2011-09-25 20:06:54 +03001813 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Jouni Malinen31888482008-10-30 16:59:24 +02001814 struct ieee80211_tx_queue_params p;
1815
1816 if (!local->ops->conf_tx)
1817 return -EOPNOTSUPP;
1818
Johannes Berg54bcbc62012-03-28 11:04:25 +02001819 if (local->hw.queues < IEEE80211_NUM_ACS)
1820 return -EOPNOTSUPP;
1821
Jouni Malinen31888482008-10-30 16:59:24 +02001822 memset(&p, 0, sizeof(p));
1823 p.aifs = params->aifs;
1824 p.cw_max = params->cwmax;
1825 p.cw_min = params->cwmin;
1826 p.txop = params->txop;
Kalle Valoab133152010-01-12 10:42:31 +02001827
1828 /*
1829 * Setting tx queue params disables u-apsd because it's only
1830 * called in master mode.
1831 */
1832 p.uapsd = false;
1833
Johannes Berga3304b02012-03-28 11:04:24 +02001834 sdata->tx_conf[params->ac] = p;
1835 if (drv_conf_tx(local, sdata, params->ac, &p)) {
Joe Perches0fb9a9e2010-08-20 16:25:38 -07001836 wiphy_debug(local->hw.wiphy,
Johannes Berga3304b02012-03-28 11:04:24 +02001837 "failed to set TX queue parameters for AC %d\n",
1838 params->ac);
Jouni Malinen31888482008-10-30 16:59:24 +02001839 return -EINVAL;
1840 }
1841
Johannes Berg7d257452012-07-06 17:37:43 +02001842 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_QOS);
1843
Jouni Malinen31888482008-10-30 16:59:24 +02001844 return 0;
1845}
1846
Bob Copeland665af4f2009-01-19 11:20:53 -05001847#ifdef CONFIG_PM
Johannes Bergff1b6e62011-05-04 15:37:28 +02001848static int ieee80211_suspend(struct wiphy *wiphy,
1849 struct cfg80211_wowlan *wowlan)
Bob Copeland665af4f2009-01-19 11:20:53 -05001850{
Johannes Bergeecc4802011-05-04 15:37:29 +02001851 return __ieee80211_suspend(wiphy_priv(wiphy), wowlan);
Bob Copeland665af4f2009-01-19 11:20:53 -05001852}
1853
1854static int ieee80211_resume(struct wiphy *wiphy)
1855{
1856 return __ieee80211_resume(wiphy_priv(wiphy));
1857}
1858#else
1859#define ieee80211_suspend NULL
1860#define ieee80211_resume NULL
1861#endif
1862
Johannes Berg2a519312009-02-10 21:25:55 +01001863static int ieee80211_scan(struct wiphy *wiphy,
Johannes Berg2a519312009-02-10 21:25:55 +01001864 struct cfg80211_scan_request *req)
1865{
Johannes Bergfd014282012-06-18 19:17:03 +02001866 struct ieee80211_sub_if_data *sdata;
1867
1868 sdata = IEEE80211_WDEV_TO_SUB_IF(req->wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01001869
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001870 switch (ieee80211_vif_type_p2p(&sdata->vif)) {
1871 case NL80211_IFTYPE_STATION:
1872 case NL80211_IFTYPE_ADHOC:
1873 case NL80211_IFTYPE_MESH_POINT:
1874 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Bergf142c6b2012-06-18 20:07:15 +02001875 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001876 break;
1877 case NL80211_IFTYPE_P2P_GO:
1878 if (sdata->local->ops->hw_scan)
1879 break;
Johannes Berge9d77322011-02-01 15:35:36 +01001880 /*
1881 * FIXME: implement NoA while scanning in software,
1882 * for now fall through to allow scanning only when
1883 * beaconing hasn't been configured yet
1884 */
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001885 case NL80211_IFTYPE_AP:
Antonio Quartulli5c95b942012-10-16 08:39:22 +02001886 /*
1887 * If the scan has been forced (and the driver supports
1888 * forcing), don't care about being beaconing already.
1889 * This will create problems to the attached stations (e.g. all
1890 * the frames sent while scanning on other channel will be
1891 * lost)
1892 */
1893 if (sdata->u.ap.beacon &&
1894 (!(wiphy->features & NL80211_FEATURE_AP_SCAN) ||
1895 !(req->flags & NL80211_SCAN_FLAG_AP)))
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001896 return -EOPNOTSUPP;
1897 break;
1898 default:
1899 return -EOPNOTSUPP;
1900 }
Johannes Berg2a519312009-02-10 21:25:55 +01001901
1902 return ieee80211_request_scan(sdata, req);
1903}
1904
Luciano Coelho79f460c2011-05-11 17:09:36 +03001905static int
1906ieee80211_sched_scan_start(struct wiphy *wiphy,
1907 struct net_device *dev,
1908 struct cfg80211_sched_scan_request *req)
1909{
1910 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1911
1912 if (!sdata->local->ops->sched_scan_start)
1913 return -EOPNOTSUPP;
1914
1915 return ieee80211_request_sched_scan_start(sdata, req);
1916}
1917
1918static int
Luciano Coelho85a99942011-05-12 16:28:29 +03001919ieee80211_sched_scan_stop(struct wiphy *wiphy, struct net_device *dev)
Luciano Coelho79f460c2011-05-11 17:09:36 +03001920{
1921 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1922
1923 if (!sdata->local->ops->sched_scan_stop)
1924 return -EOPNOTSUPP;
1925
Luciano Coelho85a99942011-05-12 16:28:29 +03001926 return ieee80211_request_sched_scan_stop(sdata);
Luciano Coelho79f460c2011-05-11 17:09:36 +03001927}
1928
Jouni Malinen636a5d32009-03-19 13:39:22 +02001929static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev,
1930 struct cfg80211_auth_request *req)
1931{
Johannes Berg77fdaa12009-07-07 03:45:17 +02001932 return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001933}
1934
1935static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev,
1936 struct cfg80211_assoc_request *req)
1937{
Johannes Berg77fdaa12009-07-07 03:45:17 +02001938 return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001939}
1940
1941static int ieee80211_deauth(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01001942 struct cfg80211_deauth_request *req)
Jouni Malinen636a5d32009-03-19 13:39:22 +02001943{
Johannes Berg63c9c5e2012-02-24 13:50:51 +01001944 return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001945}
1946
1947static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01001948 struct cfg80211_disassoc_request *req)
Jouni Malinen636a5d32009-03-19 13:39:22 +02001949{
Johannes Berg63c9c5e2012-02-24 13:50:51 +01001950 return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001951}
1952
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001953static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
1954 struct cfg80211_ibss_params *params)
1955{
Johannes Berg55de9082012-07-26 17:24:39 +02001956 return ieee80211_ibss_join(IEEE80211_DEV_TO_SUB_IF(dev), params);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001957}
1958
1959static int ieee80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev)
1960{
Johannes Berg55de9082012-07-26 17:24:39 +02001961 return ieee80211_ibss_leave(IEEE80211_DEV_TO_SUB_IF(dev));
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001962}
1963
Antonio Quartulli391e53e2012-11-02 13:27:49 +01001964static int ieee80211_set_mcast_rate(struct wiphy *wiphy, struct net_device *dev,
1965 int rate[IEEE80211_NUM_BANDS])
1966{
1967 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1968
Cong Ding9887dbf2013-02-06 17:23:45 +01001969 memcpy(sdata->vif.bss_conf.mcast_rate, rate,
1970 sizeof(int) * IEEE80211_NUM_BANDS);
Antonio Quartulli391e53e2012-11-02 13:27:49 +01001971
1972 return 0;
1973}
1974
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001975static int ieee80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
1976{
1977 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg24487982009-04-23 18:52:52 +02001978 int err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001979
Arik Nemtsovf23a4782010-11-08 11:51:06 +02001980 if (changed & WIPHY_PARAM_FRAG_THRESHOLD) {
1981 err = drv_set_frag_threshold(local, wiphy->frag_threshold);
1982
1983 if (err)
1984 return err;
1985 }
1986
Lukáš Turek310bc672009-12-21 22:50:48 +01001987 if (changed & WIPHY_PARAM_COVERAGE_CLASS) {
1988 err = drv_set_coverage_class(local, wiphy->coverage_class);
1989
1990 if (err)
1991 return err;
1992 }
1993
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001994 if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
Johannes Berg24487982009-04-23 18:52:52 +02001995 err = drv_set_rts_threshold(local, wiphy->rts_threshold);
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001996
Johannes Berg24487982009-04-23 18:52:52 +02001997 if (err)
1998 return err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001999 }
2000
Johannes Berg8bc83c22012-11-09 18:38:32 +01002001 if (changed & WIPHY_PARAM_RETRY_SHORT) {
2002 if (wiphy->retry_short > IEEE80211_MAX_TX_RETRY)
2003 return -EINVAL;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002004 local->hw.conf.short_frame_max_tx_count = wiphy->retry_short;
Johannes Berg8bc83c22012-11-09 18:38:32 +01002005 }
2006 if (changed & WIPHY_PARAM_RETRY_LONG) {
2007 if (wiphy->retry_long > IEEE80211_MAX_TX_RETRY)
2008 return -EINVAL;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002009 local->hw.conf.long_frame_max_tx_count = wiphy->retry_long;
Johannes Berg8bc83c22012-11-09 18:38:32 +01002010 }
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002011 if (changed &
2012 (WIPHY_PARAM_RETRY_SHORT | WIPHY_PARAM_RETRY_LONG))
2013 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
2014
2015 return 0;
2016}
2017
Johannes Berg7643a2c2009-06-02 13:01:39 +02002018static int ieee80211_set_tx_power(struct wiphy *wiphy,
Johannes Bergc8442112012-10-24 10:17:18 +02002019 struct wireless_dev *wdev,
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002020 enum nl80211_tx_power_setting type, int mbm)
Johannes Berg7643a2c2009-06-02 13:01:39 +02002021{
2022 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002023 struct ieee80211_sub_if_data *sdata;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002024
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002025 if (wdev) {
2026 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2027
2028 switch (type) {
2029 case NL80211_TX_POWER_AUTOMATIC:
2030 sdata->user_power_level = IEEE80211_UNSET_POWER_LEVEL;
2031 break;
2032 case NL80211_TX_POWER_LIMITED:
2033 case NL80211_TX_POWER_FIXED:
2034 if (mbm < 0 || (mbm % 100))
2035 return -EOPNOTSUPP;
2036 sdata->user_power_level = MBM_TO_DBM(mbm);
2037 break;
2038 }
2039
2040 ieee80211_recalc_txpower(sdata);
2041
2042 return 0;
2043 }
Johannes Berg55de9082012-07-26 17:24:39 +02002044
Johannes Berg7643a2c2009-06-02 13:01:39 +02002045 switch (type) {
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002046 case NL80211_TX_POWER_AUTOMATIC:
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002047 local->user_power_level = IEEE80211_UNSET_POWER_LEVEL;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002048 break;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002049 case NL80211_TX_POWER_LIMITED:
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002050 case NL80211_TX_POWER_FIXED:
2051 if (mbm < 0 || (mbm % 100))
2052 return -EOPNOTSUPP;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002053 local->user_power_level = MBM_TO_DBM(mbm);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002054 break;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002055 }
2056
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002057 mutex_lock(&local->iflist_mtx);
2058 list_for_each_entry(sdata, &local->interfaces, list)
2059 sdata->user_power_level = local->user_power_level;
2060 list_for_each_entry(sdata, &local->interfaces, list)
2061 ieee80211_recalc_txpower(sdata);
2062 mutex_unlock(&local->iflist_mtx);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002063
2064 return 0;
2065}
2066
Johannes Bergc8442112012-10-24 10:17:18 +02002067static int ieee80211_get_tx_power(struct wiphy *wiphy,
2068 struct wireless_dev *wdev,
2069 int *dbm)
Johannes Berg7643a2c2009-06-02 13:01:39 +02002070{
2071 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002072 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002073
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002074 if (!local->use_chanctx)
2075 *dbm = local->hw.conf.power_level;
2076 else
2077 *dbm = sdata->vif.bss_conf.txpower;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002078
Johannes Berg7643a2c2009-06-02 13:01:39 +02002079 return 0;
2080}
2081
Johannes Bergab737a42009-07-01 21:26:58 +02002082static int ieee80211_set_wds_peer(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg388ac772010-10-07 13:11:09 +02002083 const u8 *addr)
Johannes Bergab737a42009-07-01 21:26:58 +02002084{
2085 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2086
2087 memcpy(&sdata->u.wds.remote_addr, addr, ETH_ALEN);
2088
2089 return 0;
2090}
2091
Johannes Berg1f87f7d2009-06-02 13:01:41 +02002092static void ieee80211_rfkill_poll(struct wiphy *wiphy)
2093{
2094 struct ieee80211_local *local = wiphy_priv(wiphy);
2095
2096 drv_rfkill_poll(local);
2097}
2098
Johannes Bergaff89a92009-07-01 21:26:51 +02002099#ifdef CONFIG_NL80211_TESTMODE
David Spinadelfc73f112013-07-31 18:04:15 +03002100static int ieee80211_testmode_cmd(struct wiphy *wiphy,
2101 struct wireless_dev *wdev,
2102 void *data, int len)
Johannes Bergaff89a92009-07-01 21:26:51 +02002103{
2104 struct ieee80211_local *local = wiphy_priv(wiphy);
David Spinadel52981cd2013-07-31 18:06:22 +03002105 struct ieee80211_vif *vif = NULL;
Johannes Bergaff89a92009-07-01 21:26:51 +02002106
2107 if (!local->ops->testmode_cmd)
2108 return -EOPNOTSUPP;
2109
David Spinadel52981cd2013-07-31 18:06:22 +03002110 if (wdev) {
2111 struct ieee80211_sub_if_data *sdata;
2112
2113 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2114 if (sdata->flags & IEEE80211_SDATA_IN_DRIVER)
2115 vif = &sdata->vif;
2116 }
2117
2118 return local->ops->testmode_cmd(&local->hw, vif, data, len);
Johannes Bergaff89a92009-07-01 21:26:51 +02002119}
Wey-Yi Guy71063f02011-05-20 09:05:54 -07002120
2121static int ieee80211_testmode_dump(struct wiphy *wiphy,
2122 struct sk_buff *skb,
2123 struct netlink_callback *cb,
2124 void *data, int len)
2125{
2126 struct ieee80211_local *local = wiphy_priv(wiphy);
2127
2128 if (!local->ops->testmode_dump)
2129 return -EOPNOTSUPP;
2130
2131 return local->ops->testmode_dump(&local->hw, skb, cb, data, len);
2132}
Johannes Bergaff89a92009-07-01 21:26:51 +02002133#endif
2134
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002135int __ieee80211_request_smps_ap(struct ieee80211_sub_if_data *sdata,
2136 enum ieee80211_smps_mode smps_mode)
2137{
2138 struct sta_info *sta;
2139 enum ieee80211_smps_mode old_req;
2140 int i;
2141
2142 if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_AP))
2143 return -EINVAL;
2144
2145 if (sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT)
2146 return 0;
2147
2148 old_req = sdata->u.ap.req_smps;
2149 sdata->u.ap.req_smps = smps_mode;
2150
2151 /* AUTOMATIC doesn't mean much for AP - don't allow it */
2152 if (old_req == smps_mode ||
2153 smps_mode == IEEE80211_SMPS_AUTOMATIC)
2154 return 0;
2155
2156 /* If no associated stations, there's no need to do anything */
2157 if (!atomic_read(&sdata->u.ap.num_mcast_sta)) {
2158 sdata->smps_mode = smps_mode;
2159 ieee80211_queue_work(&sdata->local->hw, &sdata->recalc_smps);
2160 return 0;
2161 }
2162
2163 ht_dbg(sdata,
2164 "SMSP %d requested in AP mode, sending Action frame to %d stations\n",
2165 smps_mode, atomic_read(&sdata->u.ap.num_mcast_sta));
2166
2167 mutex_lock(&sdata->local->sta_mtx);
2168 for (i = 0; i < STA_HASH_SIZE; i++) {
2169 for (sta = rcu_dereference_protected(sdata->local->sta_hash[i],
2170 lockdep_is_held(&sdata->local->sta_mtx));
2171 sta;
2172 sta = rcu_dereference_protected(sta->hnext,
2173 lockdep_is_held(&sdata->local->sta_mtx))) {
2174 /*
2175 * Only stations associated to our AP and
2176 * associated VLANs
2177 */
2178 if (sta->sdata->bss != &sdata->u.ap)
2179 continue;
2180
2181 /* This station doesn't support MIMO - skip it */
2182 if (sta_info_tx_streams(sta) == 1)
2183 continue;
2184
2185 /*
2186 * Don't wake up a STA just to send the action frame
2187 * unless we are getting more restrictive.
2188 */
2189 if (test_sta_flag(sta, WLAN_STA_PS_STA) &&
2190 !ieee80211_smps_is_restrictive(sta->known_smps_mode,
2191 smps_mode)) {
2192 ht_dbg(sdata,
2193 "Won't send SMPS to sleeping STA %pM\n",
2194 sta->sta.addr);
2195 continue;
2196 }
2197
2198 /*
2199 * If the STA is not authorized, wait until it gets
2200 * authorized and the action frame will be sent then.
2201 */
2202 if (!test_sta_flag(sta, WLAN_STA_AUTHORIZED))
2203 continue;
2204
2205 ht_dbg(sdata, "Sending SMPS to %pM\n", sta->sta.addr);
2206 ieee80211_send_smps_action(sdata, smps_mode,
2207 sta->sta.addr,
2208 sdata->vif.bss_conf.bssid);
2209 }
2210 }
2211 mutex_unlock(&sdata->local->sta_mtx);
2212
2213 sdata->smps_mode = smps_mode;
2214 ieee80211_queue_work(&sdata->local->hw, &sdata->recalc_smps);
2215
2216 return 0;
2217}
2218
2219int __ieee80211_request_smps_mgd(struct ieee80211_sub_if_data *sdata,
2220 enum ieee80211_smps_mode smps_mode)
Johannes Berg0f782312009-12-01 13:37:02 +01002221{
2222 const u8 *ap;
2223 enum ieee80211_smps_mode old_req;
2224 int err;
2225
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002226 lockdep_assert_held(&sdata->wdev.mtx);
Johannes Berg243e6df2011-04-19 20:44:04 +02002227
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002228 if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_STATION))
2229 return -EINVAL;
2230
Johannes Berg0f782312009-12-01 13:37:02 +01002231 old_req = sdata->u.mgd.req_smps;
2232 sdata->u.mgd.req_smps = smps_mode;
2233
2234 if (old_req == smps_mode &&
2235 smps_mode != IEEE80211_SMPS_AUTOMATIC)
2236 return 0;
2237
2238 /*
2239 * If not associated, or current association is not an HT
Johannes Berg04ecd252012-09-11 14:34:12 +02002240 * association, there's no need to do anything, just store
2241 * the new value until we associate.
Johannes Berg0f782312009-12-01 13:37:02 +01002242 */
2243 if (!sdata->u.mgd.associated ||
Johannes Berg4bf88532012-11-09 11:39:59 +01002244 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT)
Johannes Berg0f782312009-12-01 13:37:02 +01002245 return 0;
Johannes Berg0f782312009-12-01 13:37:02 +01002246
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002247 ap = sdata->u.mgd.associated->bssid;
Johannes Berg0f782312009-12-01 13:37:02 +01002248
2249 if (smps_mode == IEEE80211_SMPS_AUTOMATIC) {
2250 if (sdata->u.mgd.powersave)
2251 smps_mode = IEEE80211_SMPS_DYNAMIC;
2252 else
2253 smps_mode = IEEE80211_SMPS_OFF;
2254 }
2255
2256 /* send SM PS frame to AP */
2257 err = ieee80211_send_smps_action(sdata, smps_mode,
2258 ap, ap);
2259 if (err)
2260 sdata->u.mgd.req_smps = old_req;
2261
2262 return err;
2263}
2264
Johannes Bergbc92afd2009-07-01 21:26:57 +02002265static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev,
2266 bool enabled, int timeout)
2267{
2268 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2269 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Bergbc92afd2009-07-01 21:26:57 +02002270
Bob Copeland2d3db212013-10-29 18:11:59 -04002271 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Benoit Papillaulte5de30c2010-01-15 12:21:37 +01002272 return -EOPNOTSUPP;
2273
Johannes Bergbc92afd2009-07-01 21:26:57 +02002274 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
2275 return -EOPNOTSUPP;
2276
2277 if (enabled == sdata->u.mgd.powersave &&
Juuso Oikarinenff616382010-06-09 09:51:52 +03002278 timeout == local->dynamic_ps_forced_timeout)
Johannes Bergbc92afd2009-07-01 21:26:57 +02002279 return 0;
2280
2281 sdata->u.mgd.powersave = enabled;
Juuso Oikarinenff616382010-06-09 09:51:52 +03002282 local->dynamic_ps_forced_timeout = timeout;
Johannes Bergbc92afd2009-07-01 21:26:57 +02002283
Johannes Berg0f782312009-12-01 13:37:02 +01002284 /* no change, but if automatic follow powersave */
Johannes Berged405be2013-06-03 13:51:59 +02002285 sdata_lock(sdata);
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002286 __ieee80211_request_smps_mgd(sdata, sdata->u.mgd.req_smps);
Johannes Berged405be2013-06-03 13:51:59 +02002287 sdata_unlock(sdata);
Johannes Berg0f782312009-12-01 13:37:02 +01002288
Johannes Bergbc92afd2009-07-01 21:26:57 +02002289 if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
2290 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2291
2292 ieee80211_recalc_ps(local, -1);
Eliad Pellerab095872012-07-27 12:33:22 +03002293 ieee80211_recalc_ps_vif(sdata);
Johannes Bergbc92afd2009-07-01 21:26:57 +02002294
2295 return 0;
2296}
2297
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002298static int ieee80211_set_cqm_rssi_config(struct wiphy *wiphy,
2299 struct net_device *dev,
2300 s32 rssi_thold, u32 rssi_hyst)
2301{
2302 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002303 struct ieee80211_vif *vif = &sdata->vif;
2304 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
2305
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002306 if (rssi_thold == bss_conf->cqm_rssi_thold &&
2307 rssi_hyst == bss_conf->cqm_rssi_hyst)
2308 return 0;
2309
2310 bss_conf->cqm_rssi_thold = rssi_thold;
2311 bss_conf->cqm_rssi_hyst = rssi_hyst;
2312
2313 /* tell the driver upon association, unless already associated */
Johannes Bergea086352012-01-19 09:29:58 +01002314 if (sdata->u.mgd.associated &&
2315 sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002316 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_CQM);
2317
2318 return 0;
2319}
2320
Johannes Berg99303802009-07-01 21:26:59 +02002321static int ieee80211_set_bitrate_mask(struct wiphy *wiphy,
2322 struct net_device *dev,
2323 const u8 *addr,
2324 const struct cfg80211_bitrate_mask *mask)
2325{
2326 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2327 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +05302328 int i, ret;
Johannes Berg99303802009-07-01 21:26:59 +02002329
Eliad Peller554a43d2012-06-12 12:41:15 +03002330 if (!ieee80211_sdata_running(sdata))
2331 return -ENETDOWN;
2332
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +05302333 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL) {
2334 ret = drv_set_bitrate_mask(local, sdata, mask);
2335 if (ret)
2336 return ret;
2337 }
Johannes Berg99303802009-07-01 21:26:59 +02002338
Simon Wunderlich19468412012-01-28 17:25:33 +01002339 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
Felix Fietkau2ffbe6d2013-04-16 13:38:42 +02002340 struct ieee80211_supported_band *sband = wiphy->bands[i];
2341 int j;
2342
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002343 sdata->rc_rateidx_mask[i] = mask->control[i].legacy;
Janusz Dziedzicd1e33e62013-12-05 10:02:15 +01002344 memcpy(sdata->rc_rateidx_mcs_mask[i], mask->control[i].ht_mcs,
2345 sizeof(mask->control[i].ht_mcs));
Felix Fietkau2ffbe6d2013-04-16 13:38:42 +02002346
2347 sdata->rc_has_mcs_mask[i] = false;
2348 if (!sband)
2349 continue;
2350
2351 for (j = 0; j < IEEE80211_HT_MCS_MASK_LEN; j++)
2352 if (~sdata->rc_rateidx_mcs_mask[i][j]) {
2353 sdata->rc_has_mcs_mask[i] = true;
2354 break;
2355 }
Simon Wunderlich19468412012-01-28 17:25:33 +01002356 }
Johannes Berg99303802009-07-01 21:26:59 +02002357
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002358 return 0;
Johannes Berg99303802009-07-01 21:26:59 +02002359}
2360
Johannes Berg2eb278e2012-06-05 14:28:42 +02002361static int ieee80211_start_roc_work(struct ieee80211_local *local,
2362 struct ieee80211_sub_if_data *sdata,
2363 struct ieee80211_channel *channel,
Johannes Berg2eb278e2012-06-05 14:28:42 +02002364 unsigned int duration, u64 *cookie,
Ilan Peerd339d5c2013-02-12 09:34:13 +02002365 struct sk_buff *txskb,
2366 enum ieee80211_roc_type type)
Johannes Berg21f83582010-12-18 17:20:47 +01002367{
Johannes Berg2eb278e2012-06-05 14:28:42 +02002368 struct ieee80211_roc_work *roc, *tmp;
2369 bool queued = false;
Johannes Berg21f83582010-12-18 17:20:47 +01002370 int ret;
Johannes Berg21f83582010-12-18 17:20:47 +01002371
2372 lockdep_assert_held(&local->mtx);
2373
Johannes Bergfe57d9f2012-07-26 14:55:08 +02002374 if (local->use_chanctx && !local->ops->remain_on_channel)
2375 return -EOPNOTSUPP;
2376
Johannes Berg2eb278e2012-06-05 14:28:42 +02002377 roc = kzalloc(sizeof(*roc), GFP_KERNEL);
2378 if (!roc)
2379 return -ENOMEM;
Johannes Berg21f83582010-12-18 17:20:47 +01002380
Ilan Peer2fae0622013-12-19 13:25:29 +02002381 /*
2382 * If the duration is zero, then the driver
2383 * wouldn't actually do anything. Set it to
2384 * 10 for now.
2385 *
2386 * TODO: cancel the off-channel operation
2387 * when we get the SKB's TX status and
2388 * the wait time was zero before.
2389 */
2390 if (!duration)
2391 duration = 10;
2392
Johannes Berg2eb278e2012-06-05 14:28:42 +02002393 roc->chan = channel;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002394 roc->duration = duration;
2395 roc->req_duration = duration;
2396 roc->frame = txskb;
Ilan Peerd339d5c2013-02-12 09:34:13 +02002397 roc->type = type;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002398 roc->mgmt_tx_cookie = (unsigned long)txskb;
2399 roc->sdata = sdata;
2400 INIT_DELAYED_WORK(&roc->work, ieee80211_sw_roc_work);
2401 INIT_LIST_HEAD(&roc->dependents);
2402
Eliad Peller2f617432014-01-12 11:06:37 +02002403 /*
2404 * cookie is either the roc cookie (for normal roc)
2405 * or the SKB (for mgmt TX)
2406 */
2407 if (!txskb) {
2408 /* local->mtx protects this */
2409 local->roc_cookie_counter++;
2410 roc->cookie = local->roc_cookie_counter;
2411 /* wow, you wrapped 64 bits ... more likely a bug */
2412 if (WARN_ON(roc->cookie == 0)) {
2413 roc->cookie = 1;
2414 local->roc_cookie_counter++;
2415 }
2416 *cookie = roc->cookie;
2417 } else {
2418 *cookie = (unsigned long)txskb;
2419 }
2420
Johannes Berg2eb278e2012-06-05 14:28:42 +02002421 /* if there's one pending or we're scanning, queue this one */
Simon Wunderlich164eb022013-02-08 18:16:20 +01002422 if (!list_empty(&local->roc_list) ||
2423 local->scanning || local->radar_detect_enabled)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002424 goto out_check_combine;
2425
2426 /* if not HW assist, just queue & schedule work */
2427 if (!local->ops->remain_on_channel) {
2428 ieee80211_queue_delayed_work(&local->hw, &roc->work, 0);
2429 goto out_queue;
Johannes Berg21f83582010-12-18 17:20:47 +01002430 }
2431
Johannes Berg2eb278e2012-06-05 14:28:42 +02002432 /* otherwise actually kick it off here (for error handling) */
2433
Ilan Peerd339d5c2013-02-12 09:34:13 +02002434 ret = drv_remain_on_channel(local, sdata, channel, duration, type);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002435 if (ret) {
2436 kfree(roc);
2437 return ret;
2438 }
2439
2440 roc->started = true;
2441 goto out_queue;
2442
2443 out_check_combine:
2444 list_for_each_entry(tmp, &local->roc_list, list) {
Johannes Berg42d97a52012-11-08 18:31:02 +01002445 if (tmp->chan != channel || tmp->sdata != sdata)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002446 continue;
2447
2448 /*
2449 * Extend this ROC if possible:
2450 *
2451 * If it hasn't started yet, just increase the duration
2452 * and add the new one to the list of dependents.
Ilan Peerd339d5c2013-02-12 09:34:13 +02002453 * If the type of the new ROC has higher priority, modify the
2454 * type of the previous one to match that of the new one.
Johannes Berg2eb278e2012-06-05 14:28:42 +02002455 */
2456 if (!tmp->started) {
2457 list_add_tail(&roc->list, &tmp->dependents);
2458 tmp->duration = max(tmp->duration, roc->duration);
Ilan Peerd339d5c2013-02-12 09:34:13 +02002459 tmp->type = max(tmp->type, roc->type);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002460 queued = true;
2461 break;
2462 }
2463
2464 /* If it has already started, it's more difficult ... */
2465 if (local->ops->remain_on_channel) {
2466 unsigned long j = jiffies;
2467
2468 /*
2469 * In the offloaded ROC case, if it hasn't begun, add
2470 * this new one to the dependent list to be handled
Ilan Peerd339d5c2013-02-12 09:34:13 +02002471 * when the master one begins. If it has begun,
Johannes Berg2eb278e2012-06-05 14:28:42 +02002472 * check that there's still a minimum time left and
2473 * if so, start this one, transmitting the frame, but
Ilan Peerd339d5c2013-02-12 09:34:13 +02002474 * add it to the list directly after this one with
Johannes Berg2eb278e2012-06-05 14:28:42 +02002475 * a reduced time so we'll ask the driver to execute
2476 * it right after finishing the previous one, in the
2477 * hope that it'll also be executed right afterwards,
2478 * effectively extending the old one.
2479 * If there's no minimum time left, just add it to the
2480 * normal list.
Ilan Peerd339d5c2013-02-12 09:34:13 +02002481 * TODO: the ROC type is ignored here, assuming that it
2482 * is better to immediately use the current ROC.
Johannes Berg2eb278e2012-06-05 14:28:42 +02002483 */
2484 if (!tmp->hw_begun) {
2485 list_add_tail(&roc->list, &tmp->dependents);
2486 queued = true;
2487 break;
2488 }
2489
2490 if (time_before(j + IEEE80211_ROC_MIN_LEFT,
2491 tmp->hw_start_time +
2492 msecs_to_jiffies(tmp->duration))) {
2493 int new_dur;
2494
2495 ieee80211_handle_roc_started(roc);
2496
2497 new_dur = roc->duration -
2498 jiffies_to_msecs(tmp->hw_start_time +
2499 msecs_to_jiffies(
2500 tmp->duration) -
2501 j);
2502
2503 if (new_dur > 0) {
2504 /* add right after tmp */
2505 list_add(&roc->list, &tmp->list);
2506 } else {
2507 list_add_tail(&roc->list,
2508 &tmp->dependents);
2509 }
2510 queued = true;
2511 }
2512 } else if (del_timer_sync(&tmp->work.timer)) {
2513 unsigned long new_end;
2514
2515 /*
2516 * In the software ROC case, cancel the timer, if
2517 * that fails then the finish work is already
2518 * queued/pending and thus we queue the new ROC
2519 * normally, if that succeeds then we can extend
2520 * the timer duration and TX the frame (if any.)
2521 */
2522
2523 list_add_tail(&roc->list, &tmp->dependents);
2524 queued = true;
2525
2526 new_end = jiffies + msecs_to_jiffies(roc->duration);
2527
2528 /* ok, it was started & we canceled timer */
2529 if (time_after(new_end, tmp->work.timer.expires))
2530 mod_timer(&tmp->work.timer, new_end);
2531 else
2532 add_timer(&tmp->work.timer);
2533
2534 ieee80211_handle_roc_started(roc);
2535 }
2536 break;
2537 }
2538
2539 out_queue:
2540 if (!queued)
2541 list_add_tail(&roc->list, &local->roc_list);
2542
Johannes Berg2eb278e2012-06-05 14:28:42 +02002543 return 0;
Johannes Berg21f83582010-12-18 17:20:47 +01002544}
2545
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002546static int ieee80211_remain_on_channel(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02002547 struct wireless_dev *wdev,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002548 struct ieee80211_channel *chan,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002549 unsigned int duration,
2550 u64 *cookie)
2551{
Johannes Berg71bbc992012-06-15 15:30:18 +02002552 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg21f83582010-12-18 17:20:47 +01002553 struct ieee80211_local *local = sdata->local;
Johannes Berg21f83582010-12-18 17:20:47 +01002554 int ret;
2555
Johannes Berg2eb278e2012-06-05 14:28:42 +02002556 mutex_lock(&local->mtx);
Johannes Berg42d97a52012-11-08 18:31:02 +01002557 ret = ieee80211_start_roc_work(local, sdata, chan,
Ilan Peerd339d5c2013-02-12 09:34:13 +02002558 duration, cookie, NULL,
2559 IEEE80211_ROC_TYPE_NORMAL);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002560 mutex_unlock(&local->mtx);
Johannes Berg21f83582010-12-18 17:20:47 +01002561
Johannes Berg2eb278e2012-06-05 14:28:42 +02002562 return ret;
2563}
2564
2565static int ieee80211_cancel_roc(struct ieee80211_local *local,
2566 u64 cookie, bool mgmt_tx)
2567{
2568 struct ieee80211_roc_work *roc, *tmp, *found = NULL;
2569 int ret;
2570
2571 mutex_lock(&local->mtx);
2572 list_for_each_entry_safe(roc, tmp, &local->roc_list, list) {
Johannes Berge979e332012-06-11 17:09:41 +02002573 struct ieee80211_roc_work *dep, *tmp2;
2574
2575 list_for_each_entry_safe(dep, tmp2, &roc->dependents, list) {
Johannes Berg50febf62012-10-26 16:13:06 +02002576 if (!mgmt_tx && dep->cookie != cookie)
Johannes Berge979e332012-06-11 17:09:41 +02002577 continue;
2578 else if (mgmt_tx && dep->mgmt_tx_cookie != cookie)
2579 continue;
2580 /* found dependent item -- just remove it */
2581 list_del(&dep->list);
2582 mutex_unlock(&local->mtx);
2583
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002584 ieee80211_roc_notify_destroy(dep, true);
Johannes Berge979e332012-06-11 17:09:41 +02002585 return 0;
2586 }
2587
Johannes Berg50febf62012-10-26 16:13:06 +02002588 if (!mgmt_tx && roc->cookie != cookie)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002589 continue;
2590 else if (mgmt_tx && roc->mgmt_tx_cookie != cookie)
2591 continue;
2592
2593 found = roc;
2594 break;
2595 }
2596
2597 if (!found) {
2598 mutex_unlock(&local->mtx);
Johannes Berg21f83582010-12-18 17:20:47 +01002599 return -ENOENT;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002600 }
Johannes Berg21f83582010-12-18 17:20:47 +01002601
Johannes Berge979e332012-06-11 17:09:41 +02002602 /*
2603 * We found the item to cancel, so do that. Note that it
2604 * may have dependents, which we also cancel (and send
2605 * the expired signal for.) Not doing so would be quite
2606 * tricky here, but we may need to fix it later.
2607 */
2608
Johannes Berg2eb278e2012-06-05 14:28:42 +02002609 if (local->ops->remain_on_channel) {
2610 if (found->started) {
2611 ret = drv_cancel_remain_on_channel(local);
2612 if (WARN_ON_ONCE(ret)) {
2613 mutex_unlock(&local->mtx);
2614 return ret;
2615 }
2616 }
Johannes Berg21f83582010-12-18 17:20:47 +01002617
Johannes Berg2eb278e2012-06-05 14:28:42 +02002618 list_del(&found->list);
2619
Johannes Berg0f6b3f52012-06-20 20:11:33 +02002620 if (found->started)
2621 ieee80211_start_next_roc(local);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002622 mutex_unlock(&local->mtx);
2623
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002624 ieee80211_roc_notify_destroy(found, true);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002625 } else {
2626 /* work may be pending so use it all the time */
2627 found->abort = true;
2628 ieee80211_queue_delayed_work(&local->hw, &found->work, 0);
2629
2630 mutex_unlock(&local->mtx);
2631
2632 /* work will clean up etc */
2633 flush_delayed_work(&found->work);
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002634 WARN_ON(!found->to_be_freed);
2635 kfree(found);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002636 }
Johannes Berg21f83582010-12-18 17:20:47 +01002637
Johannes Berg21f83582010-12-18 17:20:47 +01002638 return 0;
2639}
2640
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002641static int ieee80211_cancel_remain_on_channel(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02002642 struct wireless_dev *wdev,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002643 u64 cookie)
2644{
Johannes Berg71bbc992012-06-15 15:30:18 +02002645 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg21f83582010-12-18 17:20:47 +01002646 struct ieee80211_local *local = sdata->local;
2647
Johannes Berg2eb278e2012-06-05 14:28:42 +02002648 return ieee80211_cancel_roc(local, cookie, false);
Johannes Bergf30221e2010-11-25 10:02:30 +01002649}
2650
Simon Wunderlich164eb022013-02-08 18:16:20 +01002651static int ieee80211_start_radar_detection(struct wiphy *wiphy,
2652 struct net_device *dev,
Janusz Dziedzic31559f32014-02-21 19:46:13 +01002653 struct cfg80211_chan_def *chandef,
2654 u32 cac_time_ms)
Simon Wunderlich164eb022013-02-08 18:16:20 +01002655{
2656 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2657 struct ieee80211_local *local = sdata->local;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002658 int err;
2659
Johannes Berg34a37402013-12-18 09:43:33 +01002660 mutex_lock(&local->mtx);
2661 if (!list_empty(&local->roc_list) || local->scanning) {
2662 err = -EBUSY;
2663 goto out_unlock;
2664 }
Simon Wunderlich164eb022013-02-08 18:16:20 +01002665
2666 /* whatever, but channel contexts should not complain about that one */
2667 sdata->smps_mode = IEEE80211_SMPS_OFF;
2668 sdata->needed_rx_chains = local->rx_chains;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002669
Simon Wunderlich164eb022013-02-08 18:16:20 +01002670 err = ieee80211_vif_use_channel(sdata, chandef,
2671 IEEE80211_CHANCTX_SHARED);
Simon Wunderlich164eb022013-02-08 18:16:20 +01002672 if (err)
Johannes Berg34a37402013-12-18 09:43:33 +01002673 goto out_unlock;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002674
Simon Wunderlich164eb022013-02-08 18:16:20 +01002675 ieee80211_queue_delayed_work(&sdata->local->hw,
Janusz Dziedzic31559f32014-02-21 19:46:13 +01002676 &sdata->dfs_cac_timer_work,
2677 msecs_to_jiffies(cac_time_ms));
Simon Wunderlich164eb022013-02-08 18:16:20 +01002678
Johannes Berg34a37402013-12-18 09:43:33 +01002679 out_unlock:
2680 mutex_unlock(&local->mtx);
2681 return err;
Simon Wunderlich164eb022013-02-08 18:16:20 +01002682}
2683
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002684static struct cfg80211_beacon_data *
2685cfg80211_beacon_dup(struct cfg80211_beacon_data *beacon)
2686{
2687 struct cfg80211_beacon_data *new_beacon;
2688 u8 *pos;
2689 int len;
2690
2691 len = beacon->head_len + beacon->tail_len + beacon->beacon_ies_len +
2692 beacon->proberesp_ies_len + beacon->assocresp_ies_len +
2693 beacon->probe_resp_len;
2694
2695 new_beacon = kzalloc(sizeof(*new_beacon) + len, GFP_KERNEL);
2696 if (!new_beacon)
2697 return NULL;
2698
2699 pos = (u8 *)(new_beacon + 1);
2700 if (beacon->head_len) {
2701 new_beacon->head_len = beacon->head_len;
2702 new_beacon->head = pos;
2703 memcpy(pos, beacon->head, beacon->head_len);
2704 pos += beacon->head_len;
2705 }
2706 if (beacon->tail_len) {
2707 new_beacon->tail_len = beacon->tail_len;
2708 new_beacon->tail = pos;
2709 memcpy(pos, beacon->tail, beacon->tail_len);
2710 pos += beacon->tail_len;
2711 }
2712 if (beacon->beacon_ies_len) {
2713 new_beacon->beacon_ies_len = beacon->beacon_ies_len;
2714 new_beacon->beacon_ies = pos;
2715 memcpy(pos, beacon->beacon_ies, beacon->beacon_ies_len);
2716 pos += beacon->beacon_ies_len;
2717 }
2718 if (beacon->proberesp_ies_len) {
2719 new_beacon->proberesp_ies_len = beacon->proberesp_ies_len;
2720 new_beacon->proberesp_ies = pos;
2721 memcpy(pos, beacon->proberesp_ies, beacon->proberesp_ies_len);
2722 pos += beacon->proberesp_ies_len;
2723 }
2724 if (beacon->assocresp_ies_len) {
2725 new_beacon->assocresp_ies_len = beacon->assocresp_ies_len;
2726 new_beacon->assocresp_ies = pos;
2727 memcpy(pos, beacon->assocresp_ies, beacon->assocresp_ies_len);
2728 pos += beacon->assocresp_ies_len;
2729 }
2730 if (beacon->probe_resp_len) {
2731 new_beacon->probe_resp_len = beacon->probe_resp_len;
2732 beacon->probe_resp = pos;
2733 memcpy(pos, beacon->probe_resp, beacon->probe_resp_len);
2734 pos += beacon->probe_resp_len;
2735 }
2736
2737 return new_beacon;
2738}
2739
Luciano Coelho66e01cf2014-01-13 19:43:00 +02002740void ieee80211_csa_finish(struct ieee80211_vif *vif)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002741{
Luciano Coelho66e01cf2014-01-13 19:43:00 +02002742 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
2743
2744 ieee80211_queue_work(&sdata->local->hw,
2745 &sdata->csa_finalize_work);
2746}
2747EXPORT_SYMBOL(ieee80211_csa_finish);
2748
Michal Kazior66199502014-04-09 15:11:00 +02002749static int ieee80211_set_after_csa_beacon(struct ieee80211_sub_if_data *sdata,
2750 u32 *changed)
2751{
2752 int err;
2753
2754 switch (sdata->vif.type) {
2755 case NL80211_IFTYPE_AP:
Michal Kazioraf296bd2014-06-05 14:21:36 +02002756 err = ieee80211_assign_beacon(sdata, sdata->u.ap.next_beacon,
2757 NULL);
Michal Kazior66199502014-04-09 15:11:00 +02002758 kfree(sdata->u.ap.next_beacon);
2759 sdata->u.ap.next_beacon = NULL;
2760
2761 if (err < 0)
2762 return err;
2763 *changed |= err;
2764 break;
2765 case NL80211_IFTYPE_ADHOC:
2766 err = ieee80211_ibss_finish_csa(sdata);
2767 if (err < 0)
2768 return err;
2769 *changed |= err;
2770 break;
2771#ifdef CONFIG_MAC80211_MESH
2772 case NL80211_IFTYPE_MESH_POINT:
2773 err = ieee80211_mesh_finish_csa(sdata);
2774 if (err < 0)
2775 return err;
2776 *changed |= err;
2777 break;
2778#endif
2779 default:
2780 WARN_ON(1);
2781 return -EINVAL;
2782 }
2783
2784 return 0;
2785}
2786
Michal Kaziorcf8767d2014-05-08 09:10:02 +02002787static int __ieee80211_csa_finalize(struct ieee80211_sub_if_data *sdata)
Luciano Coelho66e01cf2014-01-13 19:43:00 +02002788{
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002789 struct ieee80211_local *local = sdata->local;
Michal Kazior66199502014-04-09 15:11:00 +02002790 u32 changed = 0;
2791 int err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002792
Michal Kaziordbd72852014-01-29 07:56:21 +01002793 sdata_assert_lock(sdata);
Michal Kazior59af6922014-04-09 15:10:59 +02002794 lockdep_assert_held(&local->mtx);
Michal Kaziordbd72852014-01-29 07:56:21 +01002795
Michal Kaziorcc901de2014-01-29 07:56:20 +01002796 sdata->radar_required = sdata->csa_radar_required;
Luciano Coelho33787fc2013-11-11 20:34:54 +02002797 err = ieee80211_vif_change_channel(sdata, &changed);
Michal Kaziorcf8767d2014-05-08 09:10:02 +02002798 if (err < 0)
2799 return err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002800
Arik Nemtsov7578d572013-09-01 17:15:51 +03002801 if (!local->use_chanctx) {
Luciano Coelho33787fc2013-11-11 20:34:54 +02002802 local->_oper_chandef = sdata->csa_chandef;
Arik Nemtsov7578d572013-09-01 17:15:51 +03002803 ieee80211_hw_config(local, 0);
2804 }
2805
Simon Wunderliche487eae2013-11-21 18:19:51 +01002806 sdata->vif.csa_active = false;
Michal Kazior97518af12014-01-29 07:56:18 +01002807
Michal Kazior66199502014-04-09 15:11:00 +02002808 err = ieee80211_set_after_csa_beacon(sdata, &changed);
2809 if (err)
Michal Kaziorcf8767d2014-05-08 09:10:02 +02002810 return err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002811
Michal Kaziorfaf046e2014-01-29 07:56:17 +01002812 ieee80211_bss_info_change_notify(sdata, changed);
Michal Kazior59af6922014-04-09 15:10:59 +02002813 cfg80211_ch_switch_notify(sdata->dev, &sdata->csa_chandef);
2814
Luciano Coelhoa46992b2014-06-13 16:30:07 +03002815 if (sdata->csa_block_tx) {
2816 ieee80211_wake_vif_queues(local, sdata,
2817 IEEE80211_QUEUE_STOP_REASON_CSA);
2818 sdata->csa_block_tx = false;
2819 }
Michal Kaziorcf8767d2014-05-08 09:10:02 +02002820
2821 return 0;
2822}
2823
2824static void ieee80211_csa_finalize(struct ieee80211_sub_if_data *sdata)
2825{
2826 if (__ieee80211_csa_finalize(sdata)) {
2827 sdata_info(sdata, "failed to finalize CSA, disconnecting\n");
2828 cfg80211_stop_iface(sdata->local->hw.wiphy, &sdata->wdev,
2829 GFP_KERNEL);
2830 }
Luciano Coelho66e01cf2014-01-13 19:43:00 +02002831}
2832
2833void ieee80211_csa_finalize_work(struct work_struct *work)
2834{
2835 struct ieee80211_sub_if_data *sdata =
2836 container_of(work, struct ieee80211_sub_if_data,
2837 csa_finalize_work);
Michal Kazior59af6922014-04-09 15:10:59 +02002838 struct ieee80211_local *local = sdata->local;
Luciano Coelho66e01cf2014-01-13 19:43:00 +02002839
2840 sdata_lock(sdata);
Michal Kazior59af6922014-04-09 15:10:59 +02002841 mutex_lock(&local->mtx);
2842
Luciano Coelho66e01cf2014-01-13 19:43:00 +02002843 /* AP might have been stopped while waiting for the lock. */
2844 if (!sdata->vif.csa_active)
2845 goto unlock;
2846
2847 if (!ieee80211_sdata_running(sdata))
2848 goto unlock;
2849
2850 ieee80211_csa_finalize(sdata);
Simon Wunderliche487eae2013-11-21 18:19:51 +01002851
2852unlock:
Michal Kazior59af6922014-04-09 15:10:59 +02002853 mutex_unlock(&local->mtx);
Simon Wunderliche487eae2013-11-21 18:19:51 +01002854 sdata_unlock(sdata);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002855}
2856
Michal Kazior37fa2bd2014-02-28 15:59:06 +01002857static int ieee80211_set_csa_beacon(struct ieee80211_sub_if_data *sdata,
2858 struct cfg80211_csa_settings *params,
2859 u32 *changed)
2860{
Michal Kazioraf296bd2014-06-05 14:21:36 +02002861 struct ieee80211_csa_settings csa = {};
Michal Kazior37fa2bd2014-02-28 15:59:06 +01002862 int err;
2863
2864 switch (sdata->vif.type) {
2865 case NL80211_IFTYPE_AP:
2866 sdata->u.ap.next_beacon =
2867 cfg80211_beacon_dup(&params->beacon_after);
2868 if (!sdata->u.ap.next_beacon)
2869 return -ENOMEM;
2870
2871 /*
2872 * With a count of 0, we don't have to wait for any
2873 * TBTT before switching, so complete the CSA
2874 * immediately. In theory, with a count == 1 we
2875 * should delay the switch until just before the next
2876 * TBTT, but that would complicate things so we switch
2877 * immediately too. If we would delay the switch
2878 * until the next TBTT, we would have to set the probe
2879 * response here.
2880 *
2881 * TODO: A channel switch with count <= 1 without
2882 * sending a CSA action frame is kind of useless,
2883 * because the clients won't know we're changing
2884 * channels. The action frame must be implemented
2885 * either here or in the userspace.
2886 */
2887 if (params->count <= 1)
2888 break;
2889
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002890 if ((params->n_counter_offsets_beacon >
2891 IEEE80211_MAX_CSA_COUNTERS_NUM) ||
2892 (params->n_counter_offsets_presp >
2893 IEEE80211_MAX_CSA_COUNTERS_NUM))
2894 return -EINVAL;
Andrei Otcheretianski9a774c72014-05-09 14:11:46 +03002895
Michal Kazioraf296bd2014-06-05 14:21:36 +02002896 csa.counter_offsets_beacon = params->counter_offsets_beacon;
2897 csa.counter_offsets_presp = params->counter_offsets_presp;
2898 csa.n_counter_offsets_beacon = params->n_counter_offsets_beacon;
2899 csa.n_counter_offsets_presp = params->n_counter_offsets_presp;
2900 csa.count = params->count;
Andrei Otcheretianski0d06d9b2014-05-09 14:11:47 +03002901
Michal Kazioraf296bd2014-06-05 14:21:36 +02002902 err = ieee80211_assign_beacon(sdata, &params->beacon_csa, &csa);
Michal Kazior37fa2bd2014-02-28 15:59:06 +01002903 if (err < 0) {
2904 kfree(sdata->u.ap.next_beacon);
2905 return err;
2906 }
2907 *changed |= err;
2908
2909 break;
2910 case NL80211_IFTYPE_ADHOC:
2911 if (!sdata->vif.bss_conf.ibss_joined)
2912 return -EINVAL;
2913
2914 if (params->chandef.width != sdata->u.ibss.chandef.width)
2915 return -EINVAL;
2916
2917 switch (params->chandef.width) {
2918 case NL80211_CHAN_WIDTH_40:
2919 if (cfg80211_get_chandef_type(&params->chandef) !=
2920 cfg80211_get_chandef_type(&sdata->u.ibss.chandef))
2921 return -EINVAL;
2922 case NL80211_CHAN_WIDTH_5:
2923 case NL80211_CHAN_WIDTH_10:
2924 case NL80211_CHAN_WIDTH_20_NOHT:
2925 case NL80211_CHAN_WIDTH_20:
2926 break;
2927 default:
2928 return -EINVAL;
2929 }
2930
2931 /* changes into another band are not supported */
2932 if (sdata->u.ibss.chandef.chan->band !=
2933 params->chandef.chan->band)
2934 return -EINVAL;
2935
2936 /* see comments in the NL80211_IFTYPE_AP block */
2937 if (params->count > 1) {
2938 err = ieee80211_ibss_csa_beacon(sdata, params);
2939 if (err < 0)
2940 return err;
2941 *changed |= err;
2942 }
2943
2944 ieee80211_send_action_csa(sdata, params);
2945
2946 break;
2947#ifdef CONFIG_MAC80211_MESH
2948 case NL80211_IFTYPE_MESH_POINT: {
2949 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
2950
2951 if (params->chandef.width != sdata->vif.bss_conf.chandef.width)
2952 return -EINVAL;
2953
2954 /* changes into another band are not supported */
2955 if (sdata->vif.bss_conf.chandef.chan->band !=
2956 params->chandef.chan->band)
2957 return -EINVAL;
2958
2959 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_NONE) {
2960 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_INIT;
2961 if (!ifmsh->pre_value)
2962 ifmsh->pre_value = 1;
2963 else
2964 ifmsh->pre_value++;
2965 }
2966
2967 /* see comments in the NL80211_IFTYPE_AP block */
2968 if (params->count > 1) {
2969 err = ieee80211_mesh_csa_beacon(sdata, params);
2970 if (err < 0) {
2971 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_NONE;
2972 return err;
2973 }
2974 *changed |= err;
2975 }
2976
2977 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_INIT)
2978 ieee80211_send_action_csa(sdata, params);
2979
2980 break;
2981 }
2982#endif
2983 default:
2984 return -EOPNOTSUPP;
2985 }
2986
2987 return 0;
2988}
2989
Luciano Coelhof29f58a2014-05-07 20:05:12 +03002990static int
2991__ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev,
2992 struct cfg80211_csa_settings *params)
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002993{
2994 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2995 struct ieee80211_local *local = sdata->local;
Michal Kazior2b327132014-04-09 15:29:32 +02002996 struct ieee80211_chanctx_conf *conf;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002997 struct ieee80211_chanctx *chanctx;
Luciano Coelho66e01cf2014-01-13 19:43:00 +02002998 int err, num_chanctx, changed = 0;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002999
Michal Kaziordbd72852014-01-29 07:56:21 +01003000 sdata_assert_lock(sdata);
Michal Kazior59af6922014-04-09 15:10:59 +02003001 lockdep_assert_held(&local->mtx);
Simon Wunderlich7ca133b2013-11-21 18:19:50 +01003002
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003003 if (!list_empty(&local->roc_list) || local->scanning)
3004 return -EBUSY;
3005
3006 if (sdata->wdev.cac_started)
3007 return -EBUSY;
3008
3009 if (cfg80211_chandef_identical(&params->chandef,
3010 &sdata->vif.bss_conf.chandef))
3011 return -EINVAL;
3012
Michal Kazior2b327132014-04-09 15:29:32 +02003013 mutex_lock(&local->chanctx_mtx);
3014 conf = rcu_dereference_protected(sdata->vif.chanctx_conf,
3015 lockdep_is_held(&local->chanctx_mtx));
3016 if (!conf) {
3017 mutex_unlock(&local->chanctx_mtx);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003018 return -EBUSY;
3019 }
3020
3021 /* don't handle for multi-VIF cases */
Michal Kazior2b327132014-04-09 15:29:32 +02003022 chanctx = container_of(conf, struct ieee80211_chanctx, conf);
Michal Kaziorc0166da2014-04-09 15:29:33 +02003023 if (ieee80211_chanctx_refcount(local, chanctx) > 1) {
Michal Kazior2b327132014-04-09 15:29:32 +02003024 mutex_unlock(&local->chanctx_mtx);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003025 return -EBUSY;
3026 }
3027 num_chanctx = 0;
3028 list_for_each_entry_rcu(chanctx, &local->chanctx_list, list)
3029 num_chanctx++;
Michal Kazior2b327132014-04-09 15:29:32 +02003030 mutex_unlock(&local->chanctx_mtx);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003031
3032 if (num_chanctx > 1)
3033 return -EBUSY;
3034
3035 /* don't allow another channel switch if one is already active. */
3036 if (sdata->vif.csa_active)
3037 return -EBUSY;
3038
Michal Kazior37fa2bd2014-02-28 15:59:06 +01003039 err = ieee80211_set_csa_beacon(sdata, params, &changed);
3040 if (err)
3041 return err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003042
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003043 sdata->csa_radar_required = params->radar_required;
Luciano Coelho33787fc2013-11-11 20:34:54 +02003044 sdata->csa_chandef = params->chandef;
Michal Kazior59af6922014-04-09 15:10:59 +02003045 sdata->csa_block_tx = params->block_tx;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003046 sdata->vif.csa_active = true;
3047
Michal Kazior59af6922014-04-09 15:10:59 +02003048 if (sdata->csa_block_tx)
Luciano Coelhoa46992b2014-06-13 16:30:07 +03003049 ieee80211_stop_vif_queues(local, sdata,
3050 IEEE80211_QUEUE_STOP_REASON_CSA);
Michal Kazior59af6922014-04-09 15:10:59 +02003051
Luciano Coelho66e01cf2014-01-13 19:43:00 +02003052 if (changed) {
3053 ieee80211_bss_info_change_notify(sdata, changed);
3054 drv_channel_switch_beacon(sdata, &params->chandef);
3055 } else {
3056 /* if the beacon didn't change, we can finalize immediately */
3057 ieee80211_csa_finalize(sdata);
3058 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003059
3060 return 0;
3061}
3062
Michal Kazior59af6922014-04-09 15:10:59 +02003063int ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev,
3064 struct cfg80211_csa_settings *params)
3065{
3066 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3067 struct ieee80211_local *local = sdata->local;
3068 int err;
3069
3070 mutex_lock(&local->mtx);
3071 err = __ieee80211_channel_switch(wiphy, dev, params);
3072 mutex_unlock(&local->mtx);
3073
3074 return err;
3075}
3076
Johannes Berg71bbc992012-06-15 15:30:18 +02003077static int ieee80211_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003078 struct cfg80211_mgmt_tx_params *params,
3079 u64 *cookie)
Jouni Malinen026331c2010-02-15 12:53:10 +02003080{
Johannes Berg71bbc992012-06-15 15:30:18 +02003081 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg9d38d852010-06-09 17:20:33 +02003082 struct ieee80211_local *local = sdata->local;
3083 struct sk_buff *skb;
3084 struct sta_info *sta;
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003085 const struct ieee80211_mgmt *mgmt = (void *)params->buf;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003086 bool need_offchan = false;
Johannes Berge247bd902011-11-04 11:18:21 +01003087 u32 flags;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003088 int ret;
Andrei Otcheretianski387910c2014-05-09 14:11:45 +03003089 u8 *data;
Johannes Bergf7ca38d2010-11-25 10:02:29 +01003090
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003091 if (params->dont_wait_for_ack)
Johannes Berge247bd902011-11-04 11:18:21 +01003092 flags = IEEE80211_TX_CTL_NO_ACK;
3093 else
3094 flags = IEEE80211_TX_INTFL_NL80211_FRAME_TX |
3095 IEEE80211_TX_CTL_REQ_TX_STATUS;
3096
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003097 if (params->no_cck)
Rajkumar Manoharanaad14ce2011-09-25 14:53:31 +05303098 flags |= IEEE80211_TX_CTL_NO_CCK_RATE;
3099
Johannes Berg9d38d852010-06-09 17:20:33 +02003100 switch (sdata->vif.type) {
3101 case NL80211_IFTYPE_ADHOC:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003102 if (!sdata->vif.bss_conf.ibss_joined)
3103 need_offchan = true;
3104 /* fall through */
3105#ifdef CONFIG_MAC80211_MESH
3106 case NL80211_IFTYPE_MESH_POINT:
3107 if (ieee80211_vif_is_mesh(&sdata->vif) &&
3108 !sdata->u.mesh.mesh_id_len)
3109 need_offchan = true;
3110 /* fall through */
3111#endif
Johannes Berg663fcaf2010-09-30 21:06:09 +02003112 case NL80211_IFTYPE_AP:
3113 case NL80211_IFTYPE_AP_VLAN:
3114 case NL80211_IFTYPE_P2P_GO:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003115 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
3116 !ieee80211_vif_is_mesh(&sdata->vif) &&
3117 !rcu_access_pointer(sdata->bss->beacon))
3118 need_offchan = true;
Johannes Berg663fcaf2010-09-30 21:06:09 +02003119 if (!ieee80211_is_action(mgmt->frame_control) ||
Thomas Pedersenac49e1a2013-06-20 23:50:58 -07003120 mgmt->u.action.category == WLAN_CATEGORY_PUBLIC ||
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003121 mgmt->u.action.category == WLAN_CATEGORY_SELF_PROTECTED ||
3122 mgmt->u.action.category == WLAN_CATEGORY_SPECTRUM_MGMT)
Johannes Berg9d38d852010-06-09 17:20:33 +02003123 break;
3124 rcu_read_lock();
3125 sta = sta_info_get(sdata, mgmt->da);
3126 rcu_read_unlock();
3127 if (!sta)
3128 return -ENOLINK;
3129 break;
3130 case NL80211_IFTYPE_STATION:
Johannes Berg663fcaf2010-09-30 21:06:09 +02003131 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003132 if (!sdata->u.mgd.associated)
3133 need_offchan = true;
Johannes Berg9d38d852010-06-09 17:20:33 +02003134 break;
Johannes Bergf142c6b2012-06-18 20:07:15 +02003135 case NL80211_IFTYPE_P2P_DEVICE:
3136 need_offchan = true;
3137 break;
Johannes Berg9d38d852010-06-09 17:20:33 +02003138 default:
3139 return -EOPNOTSUPP;
3140 }
3141
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003142 /* configurations requiring offchan cannot work if no channel has been
3143 * specified
3144 */
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003145 if (need_offchan && !params->chan)
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003146 return -EINVAL;
3147
Johannes Berg2eb278e2012-06-05 14:28:42 +02003148 mutex_lock(&local->mtx);
3149
3150 /* Check if the operating channel is the requested channel */
3151 if (!need_offchan) {
Johannes Berg55de9082012-07-26 17:24:39 +02003152 struct ieee80211_chanctx_conf *chanctx_conf;
3153
3154 rcu_read_lock();
3155 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3156
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003157 if (chanctx_conf) {
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003158 need_offchan = params->chan &&
3159 (params->chan !=
3160 chanctx_conf->def.chan);
3161 } else if (!params->chan) {
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003162 ret = -EINVAL;
3163 rcu_read_unlock();
3164 goto out_unlock;
3165 } else {
Johannes Berg2eb278e2012-06-05 14:28:42 +02003166 need_offchan = true;
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003167 }
Johannes Berg55de9082012-07-26 17:24:39 +02003168 rcu_read_unlock();
Johannes Berg2eb278e2012-06-05 14:28:42 +02003169 }
3170
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003171 if (need_offchan && !params->offchan) {
Johannes Berg2eb278e2012-06-05 14:28:42 +02003172 ret = -EBUSY;
3173 goto out_unlock;
3174 }
3175
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003176 skb = dev_alloc_skb(local->hw.extra_tx_headroom + params->len);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003177 if (!skb) {
3178 ret = -ENOMEM;
3179 goto out_unlock;
3180 }
Johannes Berg9d38d852010-06-09 17:20:33 +02003181 skb_reserve(skb, local->hw.extra_tx_headroom);
3182
Andrei Otcheretianski387910c2014-05-09 14:11:45 +03003183 data = skb_put(skb, params->len);
3184 memcpy(data, params->buf, params->len);
3185
3186 /* Update CSA counters */
3187 if (sdata->vif.csa_active &&
3188 (sdata->vif.type == NL80211_IFTYPE_AP ||
3189 sdata->vif.type == NL80211_IFTYPE_ADHOC) &&
3190 params->n_csa_offsets) {
3191 int i;
Michal Kazioraf296bd2014-06-05 14:21:36 +02003192 struct beacon_data *beacon = NULL;
Andrei Otcheretianski387910c2014-05-09 14:11:45 +03003193
Michal Kazioraf296bd2014-06-05 14:21:36 +02003194 rcu_read_lock();
3195
3196 if (sdata->vif.type == NL80211_IFTYPE_AP)
3197 beacon = rcu_dereference(sdata->u.ap.beacon);
3198 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
3199 beacon = rcu_dereference(sdata->u.ibss.presp);
3200 else if (ieee80211_vif_is_mesh(&sdata->vif))
3201 beacon = rcu_dereference(sdata->u.mesh.beacon);
3202
3203 if (beacon)
3204 for (i = 0; i < params->n_csa_offsets; i++)
3205 data[params->csa_offsets[i]] =
3206 beacon->csa_current_counter;
3207
3208 rcu_read_unlock();
Andrei Otcheretianski387910c2014-05-09 14:11:45 +03003209 }
Johannes Berg9d38d852010-06-09 17:20:33 +02003210
3211 IEEE80211_SKB_CB(skb)->flags = flags;
3212
Johannes Berg2eb278e2012-06-05 14:28:42 +02003213 skb->dev = sdata->dev;
3214
3215 if (!need_offchan) {
Nicolas Cavallari7f9f78a2012-07-16 18:36:52 +02003216 *cookie = (unsigned long) skb;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003217 ieee80211_tx_skb(sdata, skb);
3218 ret = 0;
3219 goto out_unlock;
3220 }
3221
Seth Forshee6c17b772013-02-11 11:21:07 -06003222 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_TX_OFFCHAN |
3223 IEEE80211_TX_INTFL_OFFCHAN_TX_OK;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003224 if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)
Johannes Berg3a25a8c2012-04-03 16:28:50 +02003225 IEEE80211_SKB_CB(skb)->hw_queue =
3226 local->hw.offchannel_tx_hw_queue;
3227
Johannes Berg2eb278e2012-06-05 14:28:42 +02003228 /* This will handle all kinds of coalescing and immediate TX */
Andrei Otcheretianskib176e622013-11-18 19:06:49 +02003229 ret = ieee80211_start_roc_work(local, sdata, params->chan,
3230 params->wait, cookie, skb,
Ilan Peerd339d5c2013-02-12 09:34:13 +02003231 IEEE80211_ROC_TYPE_MGMT_TX);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003232 if (ret)
Johannes Bergf30221e2010-11-25 10:02:30 +01003233 kfree_skb(skb);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003234 out_unlock:
3235 mutex_unlock(&local->mtx);
3236 return ret;
Jouni Malinen026331c2010-02-15 12:53:10 +02003237}
3238
Johannes Bergf30221e2010-11-25 10:02:30 +01003239static int ieee80211_mgmt_tx_cancel_wait(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02003240 struct wireless_dev *wdev,
Johannes Bergf30221e2010-11-25 10:02:30 +01003241 u64 cookie)
3242{
Johannes Berg71bbc992012-06-15 15:30:18 +02003243 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Bergf30221e2010-11-25 10:02:30 +01003244
Johannes Berg2eb278e2012-06-05 14:28:42 +02003245 return ieee80211_cancel_roc(local, cookie, true);
Johannes Bergf30221e2010-11-25 10:02:30 +01003246}
3247
Johannes Berg7be50862010-10-13 12:06:24 +02003248static void ieee80211_mgmt_frame_register(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02003249 struct wireless_dev *wdev,
Johannes Berg7be50862010-10-13 12:06:24 +02003250 u16 frame_type, bool reg)
3251{
3252 struct ieee80211_local *local = wiphy_priv(wiphy);
3253
Will Hawkins6abe0562012-06-20 11:51:14 -04003254 switch (frame_type) {
Will Hawkins6abe0562012-06-20 11:51:14 -04003255 case IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_PROBE_REQ:
3256 if (reg)
3257 local->probe_req_reg++;
3258 else
3259 local->probe_req_reg--;
Johannes Berg7be50862010-10-13 12:06:24 +02003260
Felix Fietkau35f51492012-10-31 15:50:34 +01003261 if (!local->open_count)
3262 break;
3263
Will Hawkins6abe0562012-06-20 11:51:14 -04003264 ieee80211_queue_work(&local->hw, &local->reconfig_filter);
3265 break;
3266 default:
3267 break;
3268 }
Johannes Berg7be50862010-10-13 12:06:24 +02003269}
3270
Bruno Randolf15d96752010-11-10 12:50:56 +09003271static int ieee80211_set_antenna(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant)
3272{
3273 struct ieee80211_local *local = wiphy_priv(wiphy);
3274
3275 if (local->started)
3276 return -EOPNOTSUPP;
3277
3278 return drv_set_antenna(local, tx_ant, rx_ant);
3279}
3280
3281static int ieee80211_get_antenna(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant)
3282{
3283 struct ieee80211_local *local = wiphy_priv(wiphy);
3284
3285 return drv_get_antenna(local, tx_ant, rx_ant);
3286}
3287
Johannes Bergc68f4b82011-07-05 16:35:41 +02003288static int ieee80211_set_rekey_data(struct wiphy *wiphy,
3289 struct net_device *dev,
3290 struct cfg80211_gtk_rekey_data *data)
3291{
3292 struct ieee80211_local *local = wiphy_priv(wiphy);
3293 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3294
3295 if (!local->ops->set_rekey_data)
3296 return -EOPNOTSUPP;
3297
3298 drv_set_rekey_data(local, sdata, data);
3299
3300 return 0;
3301}
3302
Johannes Berg06500732011-11-04 11:18:16 +01003303static int ieee80211_probe_client(struct wiphy *wiphy, struct net_device *dev,
3304 const u8 *peer, u64 *cookie)
3305{
3306 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3307 struct ieee80211_local *local = sdata->local;
3308 struct ieee80211_qos_hdr *nullfunc;
3309 struct sk_buff *skb;
3310 int size = sizeof(*nullfunc);
3311 __le16 fc;
3312 bool qos;
3313 struct ieee80211_tx_info *info;
3314 struct sta_info *sta;
Johannes Berg55de9082012-07-26 17:24:39 +02003315 struct ieee80211_chanctx_conf *chanctx_conf;
3316 enum ieee80211_band band;
Johannes Berg06500732011-11-04 11:18:16 +01003317
3318 rcu_read_lock();
Johannes Berg55de9082012-07-26 17:24:39 +02003319 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3320 if (WARN_ON(!chanctx_conf)) {
3321 rcu_read_unlock();
3322 return -EINVAL;
3323 }
Johannes Berg4bf88532012-11-09 11:39:59 +01003324 band = chanctx_conf->def.chan->band;
Felix Fietkau03bb7f42013-09-29 21:39:33 +02003325 sta = sta_info_get_bss(sdata, peer);
Johannes Bergb4487c22011-11-11 20:22:30 +01003326 if (sta) {
Johannes Berg06500732011-11-04 11:18:16 +01003327 qos = test_sta_flag(sta, WLAN_STA_WME);
Johannes Bergb4487c22011-11-11 20:22:30 +01003328 } else {
3329 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003330 return -ENOLINK;
Johannes Bergb4487c22011-11-11 20:22:30 +01003331 }
Johannes Berg06500732011-11-04 11:18:16 +01003332
3333 if (qos) {
3334 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3335 IEEE80211_STYPE_QOS_NULLFUNC |
3336 IEEE80211_FCTL_FROMDS);
3337 } else {
3338 size -= 2;
3339 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3340 IEEE80211_STYPE_NULLFUNC |
3341 IEEE80211_FCTL_FROMDS);
3342 }
3343
3344 skb = dev_alloc_skb(local->hw.extra_tx_headroom + size);
Johannes Berg55de9082012-07-26 17:24:39 +02003345 if (!skb) {
3346 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003347 return -ENOMEM;
Johannes Berg55de9082012-07-26 17:24:39 +02003348 }
Johannes Berg06500732011-11-04 11:18:16 +01003349
3350 skb->dev = dev;
3351
3352 skb_reserve(skb, local->hw.extra_tx_headroom);
3353
3354 nullfunc = (void *) skb_put(skb, size);
3355 nullfunc->frame_control = fc;
3356 nullfunc->duration_id = 0;
3357 memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN);
3358 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
3359 memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);
3360 nullfunc->seq_ctrl = 0;
3361
3362 info = IEEE80211_SKB_CB(skb);
3363
3364 info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
3365 IEEE80211_TX_INTFL_NL80211_FRAME_TX;
3366
3367 skb_set_queue_mapping(skb, IEEE80211_AC_VO);
3368 skb->priority = 7;
3369 if (qos)
3370 nullfunc->qos_ctrl = cpu_to_le16(7);
3371
3372 local_bh_disable();
Johannes Berg55de9082012-07-26 17:24:39 +02003373 ieee80211_xmit(sdata, skb, band);
Johannes Berg06500732011-11-04 11:18:16 +01003374 local_bh_enable();
Johannes Berg55de9082012-07-26 17:24:39 +02003375 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003376
3377 *cookie = (unsigned long) skb;
3378 return 0;
3379}
3380
Johannes Berg683b6d32012-11-08 21:25:48 +01003381static int ieee80211_cfg_get_channel(struct wiphy *wiphy,
3382 struct wireless_dev *wdev,
3383 struct cfg80211_chan_def *chandef)
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003384{
Johannes Berg55de9082012-07-26 17:24:39 +02003385 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Felix Fietkaucb601ff2013-02-23 19:02:14 +01003386 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg55de9082012-07-26 17:24:39 +02003387 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Berg683b6d32012-11-08 21:25:48 +01003388 int ret = -ENODATA;
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003389
Johannes Berg55de9082012-07-26 17:24:39 +02003390 rcu_read_lock();
Johannes Bergfeda3022013-02-28 09:59:22 +01003391 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3392 if (chanctx_conf) {
3393 *chandef = chanctx_conf->def;
3394 ret = 0;
3395 } else if (local->open_count > 0 &&
3396 local->open_count == local->monitors &&
3397 sdata->vif.type == NL80211_IFTYPE_MONITOR) {
3398 if (local->use_chanctx)
3399 *chandef = local->monitor_chandef;
3400 else
Karl Beldan675a0b02013-03-25 16:26:57 +01003401 *chandef = local->_oper_chandef;
Johannes Berg683b6d32012-11-08 21:25:48 +01003402 ret = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02003403 }
3404 rcu_read_unlock();
3405
Johannes Berg683b6d32012-11-08 21:25:48 +01003406 return ret;
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003407}
3408
Johannes Berg6d525632012-04-04 15:05:25 +02003409#ifdef CONFIG_PM
3410static void ieee80211_set_wakeup(struct wiphy *wiphy, bool enabled)
3411{
3412 drv_set_wakeup(wiphy_priv(wiphy), enabled);
3413}
3414#endif
3415
Kyeyoon Park32db6b52013-12-16 23:04:43 -08003416static int ieee80211_set_qos_map(struct wiphy *wiphy,
3417 struct net_device *dev,
3418 struct cfg80211_qos_map *qos_map)
3419{
3420 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3421 struct mac80211_qos_map *new_qos_map, *old_qos_map;
3422
3423 if (qos_map) {
3424 new_qos_map = kzalloc(sizeof(*new_qos_map), GFP_KERNEL);
3425 if (!new_qos_map)
3426 return -ENOMEM;
3427 memcpy(&new_qos_map->qos_map, qos_map, sizeof(*qos_map));
3428 } else {
3429 /* A NULL qos_map was passed to disable QoS mapping */
3430 new_qos_map = NULL;
3431 }
3432
Johannes Berg194ff522013-12-30 23:12:37 +01003433 old_qos_map = sdata_dereference(sdata->qos_map, sdata);
Kyeyoon Park32db6b52013-12-16 23:04:43 -08003434 rcu_assign_pointer(sdata->qos_map, new_qos_map);
3435 if (old_qos_map)
3436 kfree_rcu(old_qos_map, rcu_head);
3437
3438 return 0;
3439}
3440
Jouni Malinen3b1700b2014-04-28 11:22:25 +03003441static int ieee80211_set_ap_chanwidth(struct wiphy *wiphy,
3442 struct net_device *dev,
3443 struct cfg80211_chan_def *chandef)
3444{
3445 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3446 int ret;
3447 u32 changed = 0;
3448
3449 ret = ieee80211_vif_change_bandwidth(sdata, chandef, &changed);
3450 if (ret == 0)
3451 ieee80211_bss_info_change_notify(sdata, changed);
3452
3453 return ret;
3454}
3455
Johannes Berg8a47cea2014-01-20 23:55:44 +01003456const struct cfg80211_ops mac80211_config_ops = {
Jiri Bencf0706e82007-05-05 11:45:53 -07003457 .add_virtual_intf = ieee80211_add_iface,
3458 .del_virtual_intf = ieee80211_del_iface,
Johannes Berg42613db2007-09-28 21:52:27 +02003459 .change_virtual_intf = ieee80211_change_iface,
Johannes Bergf142c6b2012-06-18 20:07:15 +02003460 .start_p2p_device = ieee80211_start_p2p_device,
3461 .stop_p2p_device = ieee80211_stop_p2p_device,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01003462 .add_key = ieee80211_add_key,
3463 .del_key = ieee80211_del_key,
Johannes Berg62da92f2007-12-19 02:03:31 +01003464 .get_key = ieee80211_get_key,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01003465 .set_default_key = ieee80211_config_default_key,
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02003466 .set_default_mgmt_key = ieee80211_config_default_mgmt_key,
Johannes Berg88600202012-02-13 15:17:18 +01003467 .start_ap = ieee80211_start_ap,
3468 .change_beacon = ieee80211_change_beacon,
3469 .stop_ap = ieee80211_stop_ap,
Johannes Berg4fd69312007-12-19 02:03:35 +01003470 .add_station = ieee80211_add_station,
3471 .del_station = ieee80211_del_station,
3472 .change_station = ieee80211_change_station,
Johannes Berg7bbdd2d2007-12-19 02:03:37 +01003473 .get_station = ieee80211_get_station,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003474 .dump_station = ieee80211_dump_station,
Holger Schurig12897232010-04-19 10:23:57 +02003475 .dump_survey = ieee80211_dump_survey,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003476#ifdef CONFIG_MAC80211_MESH
3477 .add_mpath = ieee80211_add_mpath,
3478 .del_mpath = ieee80211_del_mpath,
3479 .change_mpath = ieee80211_change_mpath,
3480 .get_mpath = ieee80211_get_mpath,
3481 .dump_mpath = ieee80211_dump_mpath,
Javier Cardona24bdd9f2010-12-16 17:37:48 -08003482 .update_mesh_config = ieee80211_update_mesh_config,
3483 .get_mesh_config = ieee80211_get_mesh_config,
Johannes Berg29cbe682010-12-03 09:20:44 +01003484 .join_mesh = ieee80211_join_mesh,
3485 .leave_mesh = ieee80211_leave_mesh,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003486#endif
Jouni Malinen9f1ba902008-08-07 20:07:01 +03003487 .change_bss = ieee80211_change_bss,
Jouni Malinen31888482008-10-30 16:59:24 +02003488 .set_txq_params = ieee80211_set_txq_params,
Johannes Berge8c9bd52012-06-06 08:18:22 +02003489 .set_monitor_channel = ieee80211_set_monitor_channel,
Bob Copeland665af4f2009-01-19 11:20:53 -05003490 .suspend = ieee80211_suspend,
3491 .resume = ieee80211_resume,
Johannes Berg2a519312009-02-10 21:25:55 +01003492 .scan = ieee80211_scan,
Luciano Coelho79f460c2011-05-11 17:09:36 +03003493 .sched_scan_start = ieee80211_sched_scan_start,
3494 .sched_scan_stop = ieee80211_sched_scan_stop,
Jouni Malinen636a5d32009-03-19 13:39:22 +02003495 .auth = ieee80211_auth,
3496 .assoc = ieee80211_assoc,
3497 .deauth = ieee80211_deauth,
3498 .disassoc = ieee80211_disassoc,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02003499 .join_ibss = ieee80211_join_ibss,
3500 .leave_ibss = ieee80211_leave_ibss,
Antonio Quartulli391e53e2012-11-02 13:27:49 +01003501 .set_mcast_rate = ieee80211_set_mcast_rate,
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02003502 .set_wiphy_params = ieee80211_set_wiphy_params,
Johannes Berg7643a2c2009-06-02 13:01:39 +02003503 .set_tx_power = ieee80211_set_tx_power,
3504 .get_tx_power = ieee80211_get_tx_power,
Johannes Bergab737a42009-07-01 21:26:58 +02003505 .set_wds_peer = ieee80211_set_wds_peer,
Johannes Berg1f87f7d2009-06-02 13:01:41 +02003506 .rfkill_poll = ieee80211_rfkill_poll,
Johannes Bergaff89a92009-07-01 21:26:51 +02003507 CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd)
Wey-Yi Guy71063f02011-05-20 09:05:54 -07003508 CFG80211_TESTMODE_DUMP(ieee80211_testmode_dump)
Johannes Bergbc92afd2009-07-01 21:26:57 +02003509 .set_power_mgmt = ieee80211_set_power_mgmt,
Johannes Berg99303802009-07-01 21:26:59 +02003510 .set_bitrate_mask = ieee80211_set_bitrate_mask,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01003511 .remain_on_channel = ieee80211_remain_on_channel,
3512 .cancel_remain_on_channel = ieee80211_cancel_remain_on_channel,
Johannes Berg2e161f782010-08-12 15:38:38 +02003513 .mgmt_tx = ieee80211_mgmt_tx,
Johannes Bergf30221e2010-11-25 10:02:30 +01003514 .mgmt_tx_cancel_wait = ieee80211_mgmt_tx_cancel_wait,
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02003515 .set_cqm_rssi_config = ieee80211_set_cqm_rssi_config,
Johannes Berg7be50862010-10-13 12:06:24 +02003516 .mgmt_frame_register = ieee80211_mgmt_frame_register,
Bruno Randolf15d96752010-11-10 12:50:56 +09003517 .set_antenna = ieee80211_set_antenna,
3518 .get_antenna = ieee80211_get_antenna,
Johannes Bergc68f4b82011-07-05 16:35:41 +02003519 .set_rekey_data = ieee80211_set_rekey_data,
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003520 .tdls_oper = ieee80211_tdls_oper,
3521 .tdls_mgmt = ieee80211_tdls_mgmt,
Johannes Berg06500732011-11-04 11:18:16 +01003522 .probe_client = ieee80211_probe_client,
Simon Wunderlichb53be792011-11-18 14:20:44 +01003523 .set_noack_map = ieee80211_set_noack_map,
Johannes Berg6d525632012-04-04 15:05:25 +02003524#ifdef CONFIG_PM
3525 .set_wakeup = ieee80211_set_wakeup,
3526#endif
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003527 .get_channel = ieee80211_cfg_get_channel,
Simon Wunderlich164eb022013-02-08 18:16:20 +01003528 .start_radar_detection = ieee80211_start_radar_detection,
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003529 .channel_switch = ieee80211_channel_switch,
Kyeyoon Park32db6b52013-12-16 23:04:43 -08003530 .set_qos_map = ieee80211_set_qos_map,
Jouni Malinen3b1700b2014-04-28 11:22:25 +03003531 .set_ap_chanwidth = ieee80211_set_ap_chanwidth,
Jiri Bencf0706e82007-05-05 11:45:53 -07003532};