blob: 0ec245120a638aa9d0ba291862e9b0e1dfe13a55 [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
2 * mac80211 configuration hooks for cfg80211
3 *
Jouni Malinen026331c2010-02-15 12:53:10 +02004 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
Jiri Bencf0706e82007-05-05 11:45:53 -07005 *
6 * This file is GPLv2 as found in COPYING.
7 */
8
Johannes Berge8cbb4c2007-12-19 02:03:30 +01009#include <linux/ieee80211.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070010#include <linux/nl80211.h>
11#include <linux/rtnetlink.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070013#include <net/net_namespace.h>
Johannes Berg5dfdaf52007-12-19 02:03:33 +010014#include <linux/rcupdate.h>
Arik Nemtsovdfe018b2011-09-28 14:12:52 +030015#include <linux/if_ether.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070016#include <net/cfg80211.h>
17#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020018#include "driver-ops.h"
Michael Wue0eb6852007-09-18 17:29:21 -040019#include "cfg.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040020#include "rate.h"
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +010021#include "mesh.h"
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +010022
Johannes Berg552bff02012-09-19 09:26:06 +020023static struct wireless_dev *ieee80211_add_iface(struct wiphy *wiphy,
24 const char *name,
Johannes Berg84efbb82012-06-16 00:00:26 +020025 enum nl80211_iftype type,
26 u32 *flags,
27 struct vif_params *params)
Jiri Bencf0706e82007-05-05 11:45:53 -070028{
29 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg84efbb82012-06-16 00:00:26 +020030 struct wireless_dev *wdev;
Michael Wu8cc9a732008-01-31 19:48:23 +010031 struct ieee80211_sub_if_data *sdata;
32 int err;
Jiri Bencf0706e82007-05-05 11:45:53 -070033
Johannes Berg84efbb82012-06-16 00:00:26 +020034 err = ieee80211_if_add(local, name, &wdev, type, params);
Johannes Bergf9e10ce2010-12-03 09:20:42 +010035 if (err)
36 return ERR_PTR(err);
Michael Wu8cc9a732008-01-31 19:48:23 +010037
Johannes Bergf9e10ce2010-12-03 09:20:42 +010038 if (type == NL80211_IFTYPE_MONITOR && flags) {
Johannes Berg84efbb82012-06-16 00:00:26 +020039 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Bergf9e10ce2010-12-03 09:20:42 +010040 sdata->u.mntr_flags = *flags;
41 }
42
Johannes Berg84efbb82012-06-16 00:00:26 +020043 return wdev;
Jiri Bencf0706e82007-05-05 11:45:53 -070044}
45
Johannes Berg84efbb82012-06-16 00:00:26 +020046static int ieee80211_del_iface(struct wiphy *wiphy, struct wireless_dev *wdev)
Jiri Bencf0706e82007-05-05 11:45:53 -070047{
Johannes Berg84efbb82012-06-16 00:00:26 +020048 ieee80211_if_remove(IEEE80211_WDEV_TO_SUB_IF(wdev));
Jiri Bencf0706e82007-05-05 11:45:53 -070049
Johannes Berg75636522008-07-09 14:40:35 +020050 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -070051}
52
Johannes Berge36d56b2009-06-09 21:04:43 +020053static int ieee80211_change_iface(struct wiphy *wiphy,
54 struct net_device *dev,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +010055 enum nl80211_iftype type, u32 *flags,
56 struct vif_params *params)
Johannes Berg42613db2007-09-28 21:52:27 +020057{
Johannes Berg9607e6b2009-12-23 13:15:31 +010058 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Bergf3947e22008-07-09 14:40:36 +020059 int ret;
Johannes Berg42613db2007-09-28 21:52:27 +020060
Johannes Berg05c914f2008-09-11 00:01:58 +020061 ret = ieee80211_if_change_type(sdata, type);
Johannes Bergf3947e22008-07-09 14:40:36 +020062 if (ret)
63 return ret;
Johannes Berg42613db2007-09-28 21:52:27 +020064
Johannes Berg9bc383d2009-11-19 11:55:19 +010065 if (type == NL80211_IFTYPE_AP_VLAN &&
66 params && params->use_4addr == 0)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +000067 RCU_INIT_POINTER(sdata->u.vlan.sta, NULL);
Johannes Berg9bc383d2009-11-19 11:55:19 +010068 else if (type == NL80211_IFTYPE_STATION &&
69 params && params->use_4addr >= 0)
70 sdata->u.mgd.use_4addr = params->use_4addr;
71
Christian Lamparter85416a42010-10-02 13:17:07 +020072 if (sdata->vif.type == NL80211_IFTYPE_MONITOR && flags) {
73 struct ieee80211_local *local = sdata->local;
74
75 if (ieee80211_sdata_running(sdata)) {
Felix Fietkau31eba5b2013-05-28 13:01:53 +020076 u32 mask = MONITOR_FLAG_COOK_FRAMES |
77 MONITOR_FLAG_ACTIVE;
78
Christian Lamparter85416a42010-10-02 13:17:07 +020079 /*
Felix Fietkau31eba5b2013-05-28 13:01:53 +020080 * Prohibit MONITOR_FLAG_COOK_FRAMES and
81 * MONITOR_FLAG_ACTIVE to be changed while the
82 * interface is up.
Christian Lamparter85416a42010-10-02 13:17:07 +020083 * Else we would need to add a lot of cruft
84 * to update everything:
85 * cooked_mntrs, monitor and all fif_* counters
86 * reconfigure hardware
87 */
Felix Fietkau31eba5b2013-05-28 13:01:53 +020088 if ((*flags & mask) != (sdata->u.mntr_flags & mask))
Christian Lamparter85416a42010-10-02 13:17:07 +020089 return -EBUSY;
90
91 ieee80211_adjust_monitor_flags(sdata, -1);
92 sdata->u.mntr_flags = *flags;
93 ieee80211_adjust_monitor_flags(sdata, 1);
94
95 ieee80211_configure_filter(local);
96 } else {
97 /*
98 * Because the interface is down, ieee80211_do_stop
99 * and ieee80211_do_open take care of "everything"
100 * mentioned in the comment above.
101 */
102 sdata->u.mntr_flags = *flags;
103 }
104 }
Felix Fietkauf7917af2010-04-27 00:26:34 +0200105
Johannes Berg42613db2007-09-28 21:52:27 +0200106 return 0;
107}
108
Johannes Bergf142c6b2012-06-18 20:07:15 +0200109static int ieee80211_start_p2p_device(struct wiphy *wiphy,
110 struct wireless_dev *wdev)
111{
112 return ieee80211_do_open(wdev, true);
113}
114
115static void ieee80211_stop_p2p_device(struct wiphy *wiphy,
116 struct wireless_dev *wdev)
117{
118 ieee80211_sdata_stop(IEEE80211_WDEV_TO_SUB_IF(wdev));
119}
120
Simon Wunderlichb53be792011-11-18 14:20:44 +0100121static int ieee80211_set_noack_map(struct wiphy *wiphy,
122 struct net_device *dev,
123 u16 noack_map)
124{
125 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
126
127 sdata->noack_map = noack_map;
128 return 0;
129}
130
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100131static int ieee80211_add_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berge31b8212010-10-05 19:39:30 +0200132 u8 key_idx, bool pairwise, const u8 *mac_addr,
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100133 struct key_params *params)
134{
Johannes Berg26a58452010-08-27 12:35:55 +0200135 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100136 struct sta_info *sta = NULL;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100137 struct ieee80211_key *key;
Johannes Berg3b967662008-04-08 17:56:52 +0200138 int err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100139
Johannes Berg26a58452010-08-27 12:35:55 +0200140 if (!ieee80211_sdata_running(sdata))
Johannes Bergad0e2b52010-06-01 10:19:19 +0200141 return -ENETDOWN;
142
Johannes Berg97359d12010-08-10 09:46:38 +0200143 /* reject WEP and TKIP keys if WEP failed to initialize */
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100144 switch (params->cipher) {
145 case WLAN_CIPHER_SUITE_WEP40:
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100146 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berg97359d12010-08-10 09:46:38 +0200147 case WLAN_CIPHER_SUITE_WEP104:
148 if (IS_ERR(sdata->local->wep_tx_tfm))
149 return -EINVAL;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200150 break;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100151 default:
Johannes Berg97359d12010-08-10 09:46:38 +0200152 break;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100153 }
154
Johannes Berg97359d12010-08-10 09:46:38 +0200155 key = ieee80211_key_alloc(params->cipher, key_idx, params->key_len,
156 params->key, params->seq_len, params->seq);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100157 if (IS_ERR(key))
158 return PTR_ERR(key);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100159
Johannes Berge31b8212010-10-05 19:39:30 +0200160 if (pairwise)
161 key->conf.flags |= IEEE80211_KEY_FLAG_PAIRWISE;
162
Johannes Bergad0e2b52010-06-01 10:19:19 +0200163 mutex_lock(&sdata->local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200164
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100165 if (mac_addr) {
Thomas Pedersenff973af2011-05-03 16:57:12 -0700166 if (ieee80211_vif_is_mesh(&sdata->vif))
167 sta = sta_info_get(sdata, mac_addr);
168 else
169 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berg1626e0f2013-01-11 14:34:25 +0100170 /*
171 * The ASSOC test makes sure the driver is ready to
172 * receive the key. When wpa_supplicant has roamed
173 * using FT, it attempts to set the key before
174 * association has completed, this rejects that attempt
175 * so it will set the key again after assocation.
176 *
177 * TODO: accept the key if we have a station entry and
178 * add it to the device after the station.
179 */
180 if (!sta || !test_sta_flag(sta, WLAN_STA_ASSOC)) {
Johannes Berg79cf2df2013-03-06 22:53:52 +0100181 ieee80211_key_free_unused(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200182 err = -ENOENT;
183 goto out_unlock;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100184 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100185 }
186
Johannes Berge548c492012-09-04 17:08:23 +0200187 switch (sdata->vif.type) {
188 case NL80211_IFTYPE_STATION:
189 if (sdata->u.mgd.mfp != IEEE80211_MFP_DISABLED)
190 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
191 break;
192 case NL80211_IFTYPE_AP:
193 case NL80211_IFTYPE_AP_VLAN:
194 /* Keys without a station are used for TX only */
195 if (key->sta && test_sta_flag(key->sta, WLAN_STA_MFP))
196 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
197 break;
198 case NL80211_IFTYPE_ADHOC:
199 /* no MFP (yet) */
200 break;
201 case NL80211_IFTYPE_MESH_POINT:
202#ifdef CONFIG_MAC80211_MESH
203 if (sdata->u.mesh.security != IEEE80211_MESH_SEC_NONE)
204 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
205 break;
206#endif
207 case NL80211_IFTYPE_WDS:
208 case NL80211_IFTYPE_MONITOR:
209 case NL80211_IFTYPE_P2P_DEVICE:
210 case NL80211_IFTYPE_UNSPECIFIED:
211 case NUM_NL80211_IFTYPES:
212 case NL80211_IFTYPE_P2P_CLIENT:
213 case NL80211_IFTYPE_P2P_GO:
214 /* shouldn't happen */
215 WARN_ON_ONCE(1);
216 break;
217 }
218
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300219 err = ieee80211_key_link(key, sdata, sta);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100220
Johannes Berg3b967662008-04-08 17:56:52 +0200221 out_unlock:
Johannes Bergad0e2b52010-06-01 10:19:19 +0200222 mutex_unlock(&sdata->local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200223
224 return err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100225}
226
227static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berge31b8212010-10-05 19:39:30 +0200228 u8 key_idx, bool pairwise, const u8 *mac_addr)
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100229{
Johannes Berg5c0c3642011-05-12 14:31:49 +0200230 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
231 struct ieee80211_local *local = sdata->local;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100232 struct sta_info *sta;
Johannes Berg5c0c3642011-05-12 14:31:49 +0200233 struct ieee80211_key *key = NULL;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100234 int ret;
235
Johannes Berg5c0c3642011-05-12 14:31:49 +0200236 mutex_lock(&local->sta_mtx);
237 mutex_lock(&local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200238
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100239 if (mac_addr) {
Johannes Berg3b967662008-04-08 17:56:52 +0200240 ret = -ENOENT;
241
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100242 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100243 if (!sta)
Johannes Berg3b967662008-04-08 17:56:52 +0200244 goto out_unlock;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100245
Johannes Berg5c0c3642011-05-12 14:31:49 +0200246 if (pairwise)
Johannes Berg40b275b2011-05-13 14:15:49 +0200247 key = key_mtx_dereference(local, sta->ptk);
Johannes Berg5c0c3642011-05-12 14:31:49 +0200248 else
Johannes Berg40b275b2011-05-13 14:15:49 +0200249 key = key_mtx_dereference(local, sta->gtk[key_idx]);
Johannes Berg5c0c3642011-05-12 14:31:49 +0200250 } else
Johannes Berg40b275b2011-05-13 14:15:49 +0200251 key = key_mtx_dereference(local, sdata->keys[key_idx]);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100252
Johannes Berg5c0c3642011-05-12 14:31:49 +0200253 if (!key) {
Johannes Berg3b967662008-04-08 17:56:52 +0200254 ret = -ENOENT;
255 goto out_unlock;
256 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100257
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100258 ieee80211_key_free(key, true);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100259
Johannes Berg3b967662008-04-08 17:56:52 +0200260 ret = 0;
261 out_unlock:
Johannes Berg5c0c3642011-05-12 14:31:49 +0200262 mutex_unlock(&local->key_mtx);
263 mutex_unlock(&local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200264
265 return ret;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100266}
267
Johannes Berg62da92f2007-12-19 02:03:31 +0100268static int ieee80211_get_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berge31b8212010-10-05 19:39:30 +0200269 u8 key_idx, bool pairwise, const u8 *mac_addr,
270 void *cookie,
Johannes Berg62da92f2007-12-19 02:03:31 +0100271 void (*callback)(void *cookie,
272 struct key_params *params))
273{
Johannes Berg14db74b2008-07-29 13:22:52 +0200274 struct ieee80211_sub_if_data *sdata;
Johannes Berg62da92f2007-12-19 02:03:31 +0100275 struct sta_info *sta = NULL;
276 u8 seq[6] = {0};
277 struct key_params params;
Johannes Berge31b8212010-10-05 19:39:30 +0200278 struct ieee80211_key *key = NULL;
Johannes Bergaba83a0b2011-07-06 21:59:39 +0200279 u64 pn64;
Johannes Berg62da92f2007-12-19 02:03:31 +0100280 u32 iv32;
281 u16 iv16;
282 int err = -ENOENT;
283
Johannes Berg14db74b2008-07-29 13:22:52 +0200284 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
285
Johannes Berg3b967662008-04-08 17:56:52 +0200286 rcu_read_lock();
287
Johannes Berg62da92f2007-12-19 02:03:31 +0100288 if (mac_addr) {
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100289 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berg62da92f2007-12-19 02:03:31 +0100290 if (!sta)
291 goto out;
292
Johannes Berge31b8212010-10-05 19:39:30 +0200293 if (pairwise)
Johannes Berga3836e02011-05-12 15:11:37 +0200294 key = rcu_dereference(sta->ptk);
Johannes Berge31b8212010-10-05 19:39:30 +0200295 else if (key_idx < NUM_DEFAULT_KEYS)
Johannes Berga3836e02011-05-12 15:11:37 +0200296 key = rcu_dereference(sta->gtk[key_idx]);
Johannes Berg62da92f2007-12-19 02:03:31 +0100297 } else
Johannes Berga3836e02011-05-12 15:11:37 +0200298 key = rcu_dereference(sdata->keys[key_idx]);
Johannes Berg62da92f2007-12-19 02:03:31 +0100299
300 if (!key)
301 goto out;
302
303 memset(&params, 0, sizeof(params));
304
Johannes Berg97359d12010-08-10 09:46:38 +0200305 params.cipher = key->conf.cipher;
Johannes Berg62da92f2007-12-19 02:03:31 +0100306
Johannes Berg97359d12010-08-10 09:46:38 +0200307 switch (key->conf.cipher) {
308 case WLAN_CIPHER_SUITE_TKIP:
Harvey Harrisonb0f76b32008-05-14 16:26:19 -0700309 iv32 = key->u.tkip.tx.iv32;
310 iv16 = key->u.tkip.tx.iv16;
Johannes Berg62da92f2007-12-19 02:03:31 +0100311
Johannes Berg24487982009-04-23 18:52:52 +0200312 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
313 drv_get_tkip_seq(sdata->local,
314 key->conf.hw_key_idx,
315 &iv32, &iv16);
Johannes Berg62da92f2007-12-19 02:03:31 +0100316
317 seq[0] = iv16 & 0xff;
318 seq[1] = (iv16 >> 8) & 0xff;
319 seq[2] = iv32 & 0xff;
320 seq[3] = (iv32 >> 8) & 0xff;
321 seq[4] = (iv32 >> 16) & 0xff;
322 seq[5] = (iv32 >> 24) & 0xff;
323 params.seq = seq;
324 params.seq_len = 6;
325 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200326 case WLAN_CIPHER_SUITE_CCMP:
Johannes Bergaba83a0b2011-07-06 21:59:39 +0200327 pn64 = atomic64_read(&key->u.ccmp.tx_pn);
328 seq[0] = pn64;
329 seq[1] = pn64 >> 8;
330 seq[2] = pn64 >> 16;
331 seq[3] = pn64 >> 24;
332 seq[4] = pn64 >> 32;
333 seq[5] = pn64 >> 40;
Johannes Berg62da92f2007-12-19 02:03:31 +0100334 params.seq = seq;
335 params.seq_len = 6;
336 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200337 case WLAN_CIPHER_SUITE_AES_CMAC:
Johannes Berg75396ae2011-07-06 22:00:35 +0200338 pn64 = atomic64_read(&key->u.aes_cmac.tx_pn);
339 seq[0] = pn64;
340 seq[1] = pn64 >> 8;
341 seq[2] = pn64 >> 16;
342 seq[3] = pn64 >> 24;
343 seq[4] = pn64 >> 32;
344 seq[5] = pn64 >> 40;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200345 params.seq = seq;
346 params.seq_len = 6;
347 break;
Johannes Berg62da92f2007-12-19 02:03:31 +0100348 }
349
350 params.key = key->conf.key;
351 params.key_len = key->conf.keylen;
352
353 callback(cookie, &params);
354 err = 0;
355
356 out:
Johannes Berg3b967662008-04-08 17:56:52 +0200357 rcu_read_unlock();
Johannes Berg62da92f2007-12-19 02:03:31 +0100358 return err;
359}
360
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100361static int ieee80211_config_default_key(struct wiphy *wiphy,
362 struct net_device *dev,
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100363 u8 key_idx, bool uni,
364 bool multi)
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100365{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200366 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100367
Johannes Bergf7e01042010-12-09 19:49:02 +0100368 ieee80211_set_default_key(sdata, key_idx, uni, multi);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100369
370 return 0;
371}
372
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200373static int ieee80211_config_default_mgmt_key(struct wiphy *wiphy,
374 struct net_device *dev,
375 u8 key_idx)
376{
Johannes Berg66c52422010-07-22 13:58:51 +0200377 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200378
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200379 ieee80211_set_default_mgmt_key(sdata, key_idx);
380
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200381 return 0;
382}
383
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800384void sta_set_rate_info_tx(struct sta_info *sta,
385 const struct ieee80211_tx_rate *rate,
386 struct rate_info *rinfo)
387{
388 rinfo->flags = 0;
Johannes Berg8bc83c22012-11-09 18:38:32 +0100389 if (rate->flags & IEEE80211_TX_RC_MCS) {
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800390 rinfo->flags |= RATE_INFO_FLAGS_MCS;
Johannes Berg8bc83c22012-11-09 18:38:32 +0100391 rinfo->mcs = rate->idx;
392 } else if (rate->flags & IEEE80211_TX_RC_VHT_MCS) {
393 rinfo->flags |= RATE_INFO_FLAGS_VHT_MCS;
394 rinfo->mcs = ieee80211_rate_get_vht_mcs(rate);
395 rinfo->nss = ieee80211_rate_get_vht_nss(rate);
396 } else {
397 struct ieee80211_supported_band *sband;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200398 int shift = ieee80211_vif_get_shift(&sta->sdata->vif);
399 u16 brate;
400
Johannes Berg8bc83c22012-11-09 18:38:32 +0100401 sband = sta->local->hw.wiphy->bands[
402 ieee80211_get_sdata_band(sta->sdata)];
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200403 brate = sband->bitrates[rate->idx].bitrate;
404 rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift);
Johannes Berg8bc83c22012-11-09 18:38:32 +0100405 }
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800406 if (rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
407 rinfo->flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
Johannes Berg8bc83c22012-11-09 18:38:32 +0100408 if (rate->flags & IEEE80211_TX_RC_80_MHZ_WIDTH)
409 rinfo->flags |= RATE_INFO_FLAGS_80_MHZ_WIDTH;
410 if (rate->flags & IEEE80211_TX_RC_160_MHZ_WIDTH)
411 rinfo->flags |= RATE_INFO_FLAGS_160_MHZ_WIDTH;
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800412 if (rate->flags & IEEE80211_TX_RC_SHORT_GI)
413 rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800414}
415
Saravana003e6762012-11-28 18:29:38 +0530416void sta_set_rate_info_rx(struct sta_info *sta, struct rate_info *rinfo)
417{
418 rinfo->flags = 0;
419
420 if (sta->last_rx_rate_flag & RX_FLAG_HT) {
421 rinfo->flags |= RATE_INFO_FLAGS_MCS;
422 rinfo->mcs = sta->last_rx_rate_idx;
423 } else if (sta->last_rx_rate_flag & RX_FLAG_VHT) {
424 rinfo->flags |= RATE_INFO_FLAGS_VHT_MCS;
425 rinfo->nss = sta->last_rx_rate_vht_nss;
426 rinfo->mcs = sta->last_rx_rate_idx;
427 } else {
428 struct ieee80211_supported_band *sband;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200429 int shift = ieee80211_vif_get_shift(&sta->sdata->vif);
430 u16 brate;
Saravana003e6762012-11-28 18:29:38 +0530431
432 sband = sta->local->hw.wiphy->bands[
433 ieee80211_get_sdata_band(sta->sdata)];
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200434 brate = sband->bitrates[sta->last_rx_rate_idx].bitrate;
435 rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift);
Saravana003e6762012-11-28 18:29:38 +0530436 }
437
438 if (sta->last_rx_rate_flag & RX_FLAG_40MHZ)
439 rinfo->flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
440 if (sta->last_rx_rate_flag & RX_FLAG_SHORT_GI)
441 rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
442 if (sta->last_rx_rate_flag & RX_FLAG_80MHZ)
443 rinfo->flags |= RATE_INFO_FLAGS_80_MHZ_WIDTH;
444 if (sta->last_rx_rate_flag & RX_FLAG_80P80MHZ)
445 rinfo->flags |= RATE_INFO_FLAGS_80P80_MHZ_WIDTH;
446 if (sta->last_rx_rate_flag & RX_FLAG_160MHZ)
447 rinfo->flags |= RATE_INFO_FLAGS_160_MHZ_WIDTH;
448}
449
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100450static void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo)
451{
Johannes Bergd0709a62008-02-25 16:27:46 +0100452 struct ieee80211_sub_if_data *sdata = sta->sdata;
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300453 struct ieee80211_local *local = sdata->local;
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530454 struct timespec uptime;
Johannes Berg560d2682013-02-05 10:55:21 +0100455 u64 packets = 0;
Felix Fietkauef0621e2013-04-22 16:29:31 +0200456 int i, ac;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100457
Johannes Bergf5ea9122009-08-07 16:17:38 +0200458 sinfo->generation = sdata->local->sta_generation;
459
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100460 sinfo->filled = STATION_INFO_INACTIVE_TIME |
Johannes Berg560d2682013-02-05 10:55:21 +0100461 STATION_INFO_RX_BYTES64 |
462 STATION_INFO_TX_BYTES64 |
Jouni Malinen98c8a60a2009-02-17 13:24:57 +0200463 STATION_INFO_RX_PACKETS |
464 STATION_INFO_TX_PACKETS |
Bruno Randolfb206b4e2010-10-06 18:34:12 +0900465 STATION_INFO_TX_RETRIES |
466 STATION_INFO_TX_FAILED |
Ben Greear5a5c7312010-10-07 16:39:20 -0700467 STATION_INFO_TX_BITRATE |
Felix Fietkau3af63342011-02-27 22:08:01 +0100468 STATION_INFO_RX_BITRATE |
Paul Stewartf4263c92011-03-31 09:25:41 -0700469 STATION_INFO_RX_DROP_MISC |
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530470 STATION_INFO_BSS_PARAM |
Helmut Schaa7a724762011-10-13 16:30:40 +0200471 STATION_INFO_CONNECTED_TIME |
Paul Stewarta85e1d52011-12-09 11:01:49 -0800472 STATION_INFO_STA_FLAGS |
473 STATION_INFO_BEACON_LOSS_COUNT;
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530474
475 do_posix_clock_monotonic_gettime(&uptime);
476 sinfo->connected_time = uptime.tv_sec - sta->last_connected;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100477
478 sinfo->inactive_time = jiffies_to_msecs(jiffies - sta->last_rx);
Johannes Berg560d2682013-02-05 10:55:21 +0100479 sinfo->tx_bytes = 0;
480 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
481 sinfo->tx_bytes += sta->tx_bytes[ac];
482 packets += sta->tx_packets[ac];
483 }
484 sinfo->tx_packets = packets;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100485 sinfo->rx_bytes = sta->rx_bytes;
Jouni Malinen98c8a60a2009-02-17 13:24:57 +0200486 sinfo->rx_packets = sta->rx_packets;
Bruno Randolfb206b4e2010-10-06 18:34:12 +0900487 sinfo->tx_retries = sta->tx_retry_count;
488 sinfo->tx_failed = sta->tx_retry_failed;
Ben Greear5a5c7312010-10-07 16:39:20 -0700489 sinfo->rx_dropped_misc = sta->rx_dropped;
Paul Stewarta85e1d52011-12-09 11:01:49 -0800490 sinfo->beacon_loss_count = sta->beacon_loss_count;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100491
John W. Linville19deffb2009-12-08 17:10:13 -0500492 if ((sta->local->hw.flags & IEEE80211_HW_SIGNAL_DBM) ||
493 (sta->local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC)) {
Bruno Randolf541a45a2010-12-02 19:12:43 +0900494 sinfo->filled |= STATION_INFO_SIGNAL | STATION_INFO_SIGNAL_AVG;
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300495 if (!local->ops->get_rssi ||
496 drv_get_rssi(local, sdata, &sta->sta, &sinfo->signal))
497 sinfo->signal = (s8)sta->last_signal;
Bruno Randolf541a45a2010-12-02 19:12:43 +0900498 sinfo->signal_avg = (s8) -ewma_read(&sta->avg_signal);
Henning Rogge420e7fa2008-12-11 22:04:19 +0100499 }
Felix Fietkauef0621e2013-04-22 16:29:31 +0200500 if (sta->chains) {
501 sinfo->filled |= STATION_INFO_CHAIN_SIGNAL |
502 STATION_INFO_CHAIN_SIGNAL_AVG;
503
504 sinfo->chains = sta->chains;
505 for (i = 0; i < ARRAY_SIZE(sinfo->chain_signal); i++) {
506 sinfo->chain_signal[i] = sta->chain_signal_last[i];
507 sinfo->chain_signal_avg[i] =
508 (s8) -ewma_read(&sta->chain_signal_avg[i]);
509 }
510 }
Henning Rogge420e7fa2008-12-11 22:04:19 +0100511
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800512 sta_set_rate_info_tx(sta, &sta->last_tx_rate, &sinfo->txrate);
Saravana003e6762012-11-28 18:29:38 +0530513 sta_set_rate_info_rx(sta, &sinfo->rxrate);
Henning Rogge420e7fa2008-12-11 22:04:19 +0100514
Johannes Berg902acc72008-02-23 15:17:19 +0100515 if (ieee80211_vif_is_mesh(&sdata->vif)) {
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100516#ifdef CONFIG_MAC80211_MESH
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100517 sinfo->filled |= STATION_INFO_LLID |
518 STATION_INFO_PLID |
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100519 STATION_INFO_PLINK_STATE |
520 STATION_INFO_LOCAL_PM |
521 STATION_INFO_PEER_PM |
522 STATION_INFO_NONPEER_PM;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100523
524 sinfo->llid = le16_to_cpu(sta->llid);
525 sinfo->plid = le16_to_cpu(sta->plid);
526 sinfo->plink_state = sta->plink_state;
Javier Cardonad299a1f2012-03-31 11:31:33 -0700527 if (test_sta_flag(sta, WLAN_STA_TOFFSET_KNOWN)) {
528 sinfo->filled |= STATION_INFO_T_OFFSET;
529 sinfo->t_offset = sta->t_offset;
530 }
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100531 sinfo->local_pm = sta->local_pm;
532 sinfo->peer_pm = sta->peer_pm;
533 sinfo->nonpeer_pm = sta->nonpeer_pm;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100534#endif
Johannes Berg902acc72008-02-23 15:17:19 +0100535 }
Paul Stewartf4263c92011-03-31 09:25:41 -0700536
537 sinfo->bss_param.flags = 0;
538 if (sdata->vif.bss_conf.use_cts_prot)
539 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_CTS_PROT;
540 if (sdata->vif.bss_conf.use_short_preamble)
541 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_PREAMBLE;
542 if (sdata->vif.bss_conf.use_short_slot)
543 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_SLOT_TIME;
544 sinfo->bss_param.dtim_period = sdata->local->hw.conf.ps_dtim_period;
545 sinfo->bss_param.beacon_interval = sdata->vif.bss_conf.beacon_int;
Helmut Schaa7a724762011-10-13 16:30:40 +0200546
547 sinfo->sta_flags.set = 0;
548 sinfo->sta_flags.mask = BIT(NL80211_STA_FLAG_AUTHORIZED) |
549 BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) |
550 BIT(NL80211_STA_FLAG_WME) |
551 BIT(NL80211_STA_FLAG_MFP) |
Helmut Schaae4121562011-11-05 14:15:24 +0100552 BIT(NL80211_STA_FLAG_AUTHENTICATED) |
Johannes Bergd582cff2012-10-26 17:53:44 +0200553 BIT(NL80211_STA_FLAG_ASSOCIATED) |
Helmut Schaae4121562011-11-05 14:15:24 +0100554 BIT(NL80211_STA_FLAG_TDLS_PEER);
Helmut Schaa7a724762011-10-13 16:30:40 +0200555 if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
556 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_AUTHORIZED);
557 if (test_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE))
558 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_SHORT_PREAMBLE);
559 if (test_sta_flag(sta, WLAN_STA_WME))
560 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_WME);
561 if (test_sta_flag(sta, WLAN_STA_MFP))
562 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_MFP);
563 if (test_sta_flag(sta, WLAN_STA_AUTH))
564 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_AUTHENTICATED);
Johannes Bergd582cff2012-10-26 17:53:44 +0200565 if (test_sta_flag(sta, WLAN_STA_ASSOC))
566 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_ASSOCIATED);
Helmut Schaae4121562011-11-05 14:15:24 +0100567 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER))
568 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_TDLS_PEER);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100569}
570
Ben Greearb1ab7922012-04-23 12:50:30 -0700571static const char ieee80211_gstrings_sta_stats[][ETH_GSTRING_LEN] = {
572 "rx_packets", "rx_bytes", "wep_weak_iv_count",
573 "rx_duplicates", "rx_fragments", "rx_dropped",
574 "tx_packets", "tx_bytes", "tx_fragments",
575 "tx_filtered", "tx_retry_failed", "tx_retries",
Ben Greear3073a7c2012-04-23 12:50:32 -0700576 "beacon_loss", "sta_state", "txrate", "rxrate", "signal",
577 "channel", "noise", "ch_time", "ch_time_busy",
578 "ch_time_ext_busy", "ch_time_rx", "ch_time_tx"
Ben Greearb1ab7922012-04-23 12:50:30 -0700579};
580#define STA_STATS_LEN ARRAY_SIZE(ieee80211_gstrings_sta_stats)
581
582static int ieee80211_get_et_sset_count(struct wiphy *wiphy,
583 struct net_device *dev,
584 int sset)
585{
Ben Greeare3521142012-04-23 12:50:31 -0700586 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
587 int rv = 0;
Ben Greearb1ab7922012-04-23 12:50:30 -0700588
Ben Greeare3521142012-04-23 12:50:31 -0700589 if (sset == ETH_SS_STATS)
590 rv += STA_STATS_LEN;
591
592 rv += drv_get_et_sset_count(sdata, sset);
593
594 if (rv == 0)
595 return -EOPNOTSUPP;
596 return rv;
Ben Greearb1ab7922012-04-23 12:50:30 -0700597}
598
599static void ieee80211_get_et_stats(struct wiphy *wiphy,
600 struct net_device *dev,
601 struct ethtool_stats *stats,
602 u64 *data)
603{
604 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg55de9082012-07-26 17:24:39 +0200605 struct ieee80211_chanctx_conf *chanctx_conf;
606 struct ieee80211_channel *channel;
Ben Greearb1ab7922012-04-23 12:50:30 -0700607 struct sta_info *sta;
608 struct ieee80211_local *local = sdata->local;
Ben Greear3073a7c2012-04-23 12:50:32 -0700609 struct station_info sinfo;
610 struct survey_info survey;
611 int i, q;
612#define STA_STATS_SURVEY_LEN 7
Ben Greearb1ab7922012-04-23 12:50:30 -0700613
614 memset(data, 0, sizeof(u64) * STA_STATS_LEN);
615
616#define ADD_STA_STATS(sta) \
617 do { \
618 data[i++] += sta->rx_packets; \
619 data[i++] += sta->rx_bytes; \
620 data[i++] += sta->wep_weak_iv_count; \
621 data[i++] += sta->num_duplicates; \
622 data[i++] += sta->rx_fragments; \
623 data[i++] += sta->rx_dropped; \
624 \
Johannes Berg560d2682013-02-05 10:55:21 +0100625 data[i++] += sinfo.tx_packets; \
626 data[i++] += sinfo.tx_bytes; \
Ben Greearb1ab7922012-04-23 12:50:30 -0700627 data[i++] += sta->tx_fragments; \
628 data[i++] += sta->tx_filtered_count; \
629 data[i++] += sta->tx_retry_failed; \
630 data[i++] += sta->tx_retry_count; \
631 data[i++] += sta->beacon_loss_count; \
632 } while (0)
633
634 /* For Managed stations, find the single station based on BSSID
635 * and use that. For interface types, iterate through all available
636 * stations and add stats for any station that is assigned to this
637 * network device.
638 */
639
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300640 mutex_lock(&local->sta_mtx);
Ben Greearb1ab7922012-04-23 12:50:30 -0700641
642 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
643 sta = sta_info_get_bss(sdata, sdata->u.mgd.bssid);
Ben Greear3073a7c2012-04-23 12:50:32 -0700644
645 if (!(sta && !WARN_ON(sta->sdata->dev != dev)))
646 goto do_survey;
647
Johannes Berg560d2682013-02-05 10:55:21 +0100648 sinfo.filled = 0;
649 sta_set_sinfo(sta, &sinfo);
650
Ben Greear3073a7c2012-04-23 12:50:32 -0700651 i = 0;
652 ADD_STA_STATS(sta);
653
654 data[i++] = sta->sta_state;
655
Ben Greear3073a7c2012-04-23 12:50:32 -0700656
Joe Perches52042672012-05-30 13:25:54 -0700657 if (sinfo.filled & STATION_INFO_TX_BITRATE)
Ben Greear3073a7c2012-04-23 12:50:32 -0700658 data[i] = 100000 *
659 cfg80211_calculate_bitrate(&sinfo.txrate);
660 i++;
Joe Perches52042672012-05-30 13:25:54 -0700661 if (sinfo.filled & STATION_INFO_RX_BITRATE)
Ben Greear3073a7c2012-04-23 12:50:32 -0700662 data[i] = 100000 *
663 cfg80211_calculate_bitrate(&sinfo.rxrate);
664 i++;
665
Joe Perches52042672012-05-30 13:25:54 -0700666 if (sinfo.filled & STATION_INFO_SIGNAL_AVG)
Ben Greear3073a7c2012-04-23 12:50:32 -0700667 data[i] = (u8)sinfo.signal_avg;
668 i++;
Ben Greearb1ab7922012-04-23 12:50:30 -0700669 } else {
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300670 list_for_each_entry(sta, &local->sta_list, list) {
Ben Greearb1ab7922012-04-23 12:50:30 -0700671 /* Make sure this station belongs to the proper dev */
672 if (sta->sdata->dev != dev)
673 continue;
674
Johannes Berge13bae42013-07-08 10:43:31 +0200675 sinfo.filled = 0;
676 sta_set_sinfo(sta, &sinfo);
Ben Greearb1ab7922012-04-23 12:50:30 -0700677 i = 0;
678 ADD_STA_STATS(sta);
Ben Greearb1ab7922012-04-23 12:50:30 -0700679 }
680 }
681
Ben Greear3073a7c2012-04-23 12:50:32 -0700682do_survey:
683 i = STA_STATS_LEN - STA_STATS_SURVEY_LEN;
684 /* Get survey stats for current channel */
Johannes Berg55de9082012-07-26 17:24:39 +0200685 survey.filled = 0;
Ben Greear3073a7c2012-04-23 12:50:32 -0700686
Johannes Berg55de9082012-07-26 17:24:39 +0200687 rcu_read_lock();
688 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
689 if (chanctx_conf)
Johannes Berg4bf88532012-11-09 11:39:59 +0100690 channel = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +0200691 else
692 channel = NULL;
693 rcu_read_unlock();
694
695 if (channel) {
696 q = 0;
697 do {
698 survey.filled = 0;
699 if (drv_get_survey(local, q, &survey) != 0) {
700 survey.filled = 0;
701 break;
702 }
703 q++;
704 } while (channel != survey.channel);
Ben Greear3073a7c2012-04-23 12:50:32 -0700705 }
706
707 if (survey.filled)
708 data[i++] = survey.channel->center_freq;
709 else
710 data[i++] = 0;
711 if (survey.filled & SURVEY_INFO_NOISE_DBM)
712 data[i++] = (u8)survey.noise;
713 else
714 data[i++] = -1LL;
715 if (survey.filled & SURVEY_INFO_CHANNEL_TIME)
716 data[i++] = survey.channel_time;
717 else
718 data[i++] = -1LL;
719 if (survey.filled & SURVEY_INFO_CHANNEL_TIME_BUSY)
720 data[i++] = survey.channel_time_busy;
721 else
722 data[i++] = -1LL;
723 if (survey.filled & SURVEY_INFO_CHANNEL_TIME_EXT_BUSY)
724 data[i++] = survey.channel_time_ext_busy;
725 else
726 data[i++] = -1LL;
727 if (survey.filled & SURVEY_INFO_CHANNEL_TIME_RX)
728 data[i++] = survey.channel_time_rx;
729 else
730 data[i++] = -1LL;
731 if (survey.filled & SURVEY_INFO_CHANNEL_TIME_TX)
732 data[i++] = survey.channel_time_tx;
733 else
734 data[i++] = -1LL;
735
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300736 mutex_unlock(&local->sta_mtx);
Ben Greeare3521142012-04-23 12:50:31 -0700737
Ben Greear3073a7c2012-04-23 12:50:32 -0700738 if (WARN_ON(i != STA_STATS_LEN))
739 return;
740
Ben Greeare3521142012-04-23 12:50:31 -0700741 drv_get_et_stats(sdata, stats, &(data[STA_STATS_LEN]));
Ben Greearb1ab7922012-04-23 12:50:30 -0700742}
743
744static void ieee80211_get_et_strings(struct wiphy *wiphy,
745 struct net_device *dev,
746 u32 sset, u8 *data)
747{
Ben Greeare3521142012-04-23 12:50:31 -0700748 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
749 int sz_sta_stats = 0;
750
Ben Greearb1ab7922012-04-23 12:50:30 -0700751 if (sset == ETH_SS_STATS) {
Ben Greeare3521142012-04-23 12:50:31 -0700752 sz_sta_stats = sizeof(ieee80211_gstrings_sta_stats);
Johannes Bergbd500af2013-05-06 21:09:46 +0200753 memcpy(data, ieee80211_gstrings_sta_stats, sz_sta_stats);
Ben Greearb1ab7922012-04-23 12:50:30 -0700754 }
Ben Greeare3521142012-04-23 12:50:31 -0700755 drv_get_et_strings(sdata, sset, &(data[sz_sta_stats]));
Ben Greearb1ab7922012-04-23 12:50:30 -0700756}
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100757
758static int ieee80211_dump_station(struct wiphy *wiphy, struct net_device *dev,
759 int idx, u8 *mac, struct station_info *sinfo)
760{
Johannes Berg3b53fde82009-11-16 12:00:37 +0100761 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300762 struct ieee80211_local *local = sdata->local;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100763 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100764 int ret = -ENOENT;
765
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300766 mutex_lock(&local->sta_mtx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100767
Johannes Berg3b53fde82009-11-16 12:00:37 +0100768 sta = sta_info_get_by_idx(sdata, idx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100769 if (sta) {
770 ret = 0;
Johannes Berg17741cd2008-09-11 00:02:02 +0200771 memcpy(mac, sta->sta.addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100772 sta_set_sinfo(sta, sinfo);
773 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100774
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300775 mutex_unlock(&local->sta_mtx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100776
Johannes Bergd0709a62008-02-25 16:27:46 +0100777 return ret;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100778}
779
Holger Schurig12897232010-04-19 10:23:57 +0200780static int ieee80211_dump_survey(struct wiphy *wiphy, struct net_device *dev,
781 int idx, struct survey_info *survey)
782{
783 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
784
Holger Schurig12897232010-04-19 10:23:57 +0200785 return drv_get_survey(local, idx, survey);
786}
787
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100788static int ieee80211_get_station(struct wiphy *wiphy, struct net_device *dev,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100789 u8 *mac, struct station_info *sinfo)
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100790{
Johannes Bergabe60632009-11-25 17:46:18 +0100791 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300792 struct ieee80211_local *local = sdata->local;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100793 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100794 int ret = -ENOENT;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100795
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300796 mutex_lock(&local->sta_mtx);
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100797
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100798 sta = sta_info_get_bss(sdata, mac);
Johannes Bergd0709a62008-02-25 16:27:46 +0100799 if (sta) {
800 ret = 0;
801 sta_set_sinfo(sta, sinfo);
802 }
803
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300804 mutex_unlock(&local->sta_mtx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100805
806 return ret;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100807}
808
Johannes Berge8c9bd52012-06-06 08:18:22 +0200809static int ieee80211_set_monitor_channel(struct wiphy *wiphy,
Johannes Berg683b6d32012-11-08 21:25:48 +0100810 struct cfg80211_chan_def *chandef)
Johannes Berge8c9bd52012-06-06 08:18:22 +0200811{
Johannes Berg55de9082012-07-26 17:24:39 +0200812 struct ieee80211_local *local = wiphy_priv(wiphy);
813 struct ieee80211_sub_if_data *sdata;
814 int ret = 0;
815
Johannes Berg4bf88532012-11-09 11:39:59 +0100816 if (cfg80211_chandef_identical(&local->monitor_chandef, chandef))
Johannes Berg55de9082012-07-26 17:24:39 +0200817 return 0;
818
819 mutex_lock(&local->iflist_mtx);
820 if (local->use_chanctx) {
821 sdata = rcu_dereference_protected(
822 local->monitor_sdata,
823 lockdep_is_held(&local->iflist_mtx));
824 if (sdata) {
825 ieee80211_vif_release_channel(sdata);
Johannes Berg4bf88532012-11-09 11:39:59 +0100826 ret = ieee80211_vif_use_channel(sdata, chandef,
Johannes Berg55de9082012-07-26 17:24:39 +0200827 IEEE80211_CHANCTX_EXCLUSIVE);
828 }
829 } else if (local->open_count == local->monitors) {
Karl Beldan675a0b02013-03-25 16:26:57 +0100830 local->_oper_chandef = *chandef;
Johannes Berg55de9082012-07-26 17:24:39 +0200831 ieee80211_hw_config(local, 0);
832 }
833
Johannes Berg4bf88532012-11-09 11:39:59 +0100834 if (ret == 0)
835 local->monitor_chandef = *chandef;
Johannes Berg55de9082012-07-26 17:24:39 +0200836 mutex_unlock(&local->iflist_mtx);
837
838 return ret;
Johannes Berge8c9bd52012-06-06 08:18:22 +0200839}
840
Arik Nemtsov02945822011-11-10 11:28:57 +0200841static int ieee80211_set_probe_resp(struct ieee80211_sub_if_data *sdata,
Johannes Berg88600202012-02-13 15:17:18 +0100842 const u8 *resp, size_t resp_len)
Arik Nemtsov02945822011-11-10 11:28:57 +0200843{
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300844 struct probe_resp *new, *old;
Arik Nemtsov02945822011-11-10 11:28:57 +0200845
846 if (!resp || !resp_len)
Sujith Manoharanaba4e6f2012-08-22 14:21:07 +0530847 return 1;
Arik Nemtsov02945822011-11-10 11:28:57 +0200848
Arik Nemtsovf7248282011-11-19 10:51:26 +0200849 old = rtnl_dereference(sdata->u.ap.probe_resp);
Arik Nemtsov02945822011-11-10 11:28:57 +0200850
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300851 new = kzalloc(sizeof(struct probe_resp) + resp_len, GFP_KERNEL);
Arik Nemtsov02945822011-11-10 11:28:57 +0200852 if (!new)
853 return -ENOMEM;
854
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300855 new->len = resp_len;
856 memcpy(new->data, resp, resp_len);
Arik Nemtsov02945822011-11-10 11:28:57 +0200857
858 rcu_assign_pointer(sdata->u.ap.probe_resp, new);
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300859 if (old)
860 kfree_rcu(old, rcu_head);
Arik Nemtsov02945822011-11-10 11:28:57 +0200861
862 return 0;
863}
864
Simon Wunderlich73da7d52013-07-11 16:09:06 +0200865int ieee80211_assign_beacon(struct ieee80211_sub_if_data *sdata,
866 struct cfg80211_beacon_data *params)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100867{
868 struct beacon_data *new, *old;
869 int new_head_len, new_tail_len;
Johannes Berg88600202012-02-13 15:17:18 +0100870 int size, err;
871 u32 changed = BSS_CHANGED_BEACON;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100872
Johannes Berg40b275b2011-05-13 14:15:49 +0200873 old = rtnl_dereference(sdata->u.ap.beacon);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100874
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100875 /* Need to have a beacon head if we don't have one yet */
876 if (!params->head && !old)
Johannes Berg88600202012-02-13 15:17:18 +0100877 return -EINVAL;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100878
879 /* new or old head? */
880 if (params->head)
881 new_head_len = params->head_len;
882 else
883 new_head_len = old->head_len;
884
885 /* new or old tail? */
886 if (params->tail || !old)
887 /* params->tail_len will be zero for !params->tail */
888 new_tail_len = params->tail_len;
889 else
890 new_tail_len = old->tail_len;
891
892 size = sizeof(*new) + new_head_len + new_tail_len;
893
894 new = kzalloc(size, GFP_KERNEL);
895 if (!new)
896 return -ENOMEM;
897
898 /* start filling the new info now */
899
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100900 /*
901 * pointers go into the block we allocated,
902 * memory is | beacon_data | head | tail |
903 */
904 new->head = ((u8 *) new) + sizeof(*new);
905 new->tail = new->head + new_head_len;
906 new->head_len = new_head_len;
907 new->tail_len = new_tail_len;
908
909 /* copy in head */
910 if (params->head)
911 memcpy(new->head, params->head, new_head_len);
912 else
913 memcpy(new->head, old->head, new_head_len);
914
915 /* copy in optional tail */
916 if (params->tail)
917 memcpy(new->tail, params->tail, new_tail_len);
918 else
919 if (old)
920 memcpy(new->tail, old->tail, new_tail_len);
921
Johannes Berg88600202012-02-13 15:17:18 +0100922 err = ieee80211_set_probe_resp(sdata, params->probe_resp,
923 params->probe_resp_len);
924 if (err < 0)
925 return err;
926 if (err == 0)
927 changed |= BSS_CHANGED_AP_PROBE_RESP;
Johannes Berg19885c42010-02-05 11:45:06 +0100928
Eric Dumazetcf778b02012-01-12 04:41:32 +0000929 rcu_assign_pointer(sdata->u.ap.beacon, new);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100930
Johannes Berg88600202012-02-13 15:17:18 +0100931 if (old)
932 kfree_rcu(old, rcu_head);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100933
Johannes Berg88600202012-02-13 15:17:18 +0100934 return changed;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100935}
936
Johannes Berg88600202012-02-13 15:17:18 +0100937static int ieee80211_start_ap(struct wiphy *wiphy, struct net_device *dev,
938 struct cfg80211_ap_settings *params)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100939{
Johannes Berg88600202012-02-13 15:17:18 +0100940 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100941 struct beacon_data *old;
Johannes Berg665c93a2011-11-04 11:18:11 +0100942 struct ieee80211_sub_if_data *vlan;
Johannes Berg88600202012-02-13 15:17:18 +0100943 u32 changed = BSS_CHANGED_BEACON_INT |
944 BSS_CHANGED_BEACON_ENABLED |
945 BSS_CHANGED_BEACON |
Johannes Berg339afbf2012-11-14 15:21:17 +0100946 BSS_CHANGED_SSID |
947 BSS_CHANGED_P2P_PS;
Johannes Berg88600202012-02-13 15:17:18 +0100948 int err;
Johannes Berg14db74b2008-07-29 13:22:52 +0200949
Johannes Berg40b275b2011-05-13 14:15:49 +0200950 old = rtnl_dereference(sdata->u.ap.beacon);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100951 if (old)
952 return -EALREADY;
953
Johannes Berg04ecd252012-09-11 14:34:12 +0200954 /* TODO: make hostapd tell us what it wants */
955 sdata->smps_mode = IEEE80211_SMPS_OFF;
956 sdata->needed_rx_chains = sdata->local->rx_chains;
Simon Wunderlich164eb022013-02-08 18:16:20 +0100957 sdata->radar_required = params->radar_required;
Johannes Berg04ecd252012-09-11 14:34:12 +0200958
Johannes Berg4bf88532012-11-09 11:39:59 +0100959 err = ieee80211_vif_use_channel(sdata, &params->chandef,
Johannes Berg55de9082012-07-26 17:24:39 +0200960 IEEE80211_CHANCTX_SHARED);
Johannes Bergaa430da2012-05-16 23:50:18 +0200961 if (err)
962 return err;
Johannes Berg1f4ac5a2013-02-08 12:07:44 +0100963 ieee80211_vif_copy_chanctx_to_vlans(sdata, false);
Johannes Bergaa430da2012-05-16 23:50:18 +0200964
Johannes Berg665c93a2011-11-04 11:18:11 +0100965 /*
966 * Apply control port protocol, this allows us to
967 * not encrypt dynamic WEP control frames.
968 */
969 sdata->control_port_protocol = params->crypto.control_port_ethertype;
970 sdata->control_port_no_encrypt = params->crypto.control_port_no_encrypt;
971 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list) {
972 vlan->control_port_protocol =
973 params->crypto.control_port_ethertype;
974 vlan->control_port_no_encrypt =
975 params->crypto.control_port_no_encrypt;
976 }
977
Johannes Berg88600202012-02-13 15:17:18 +0100978 sdata->vif.bss_conf.beacon_int = params->beacon_interval;
979 sdata->vif.bss_conf.dtim_period = params->dtim_period;
Johannes Bergd6a83222012-12-14 14:06:28 +0100980 sdata->vif.bss_conf.enable_beacon = true;
Johannes Berg88600202012-02-13 15:17:18 +0100981
982 sdata->vif.bss_conf.ssid_len = params->ssid_len;
983 if (params->ssid_len)
984 memcpy(sdata->vif.bss_conf.ssid, params->ssid,
985 params->ssid_len);
986 sdata->vif.bss_conf.hidden_ssid =
987 (params->hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE);
988
Janusz Dziedzic67baf662013-03-21 15:47:56 +0100989 memset(&sdata->vif.bss_conf.p2p_noa_attr, 0,
990 sizeof(sdata->vif.bss_conf.p2p_noa_attr));
991 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow =
992 params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
993 if (params->p2p_opp_ps)
994 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
995 IEEE80211_P2P_OPPPS_ENABLE_BIT;
Johannes Berg339afbf2012-11-14 15:21:17 +0100996
Johannes Berg88600202012-02-13 15:17:18 +0100997 err = ieee80211_assign_beacon(sdata, &params->beacon);
998 if (err < 0)
999 return err;
1000 changed |= err;
1001
Johannes Berg10416382012-10-19 15:44:42 +02001002 err = drv_start_ap(sdata->local, sdata);
1003 if (err) {
1004 old = rtnl_dereference(sdata->u.ap.beacon);
1005 if (old)
1006 kfree_rcu(old, rcu_head);
1007 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
1008 return err;
1009 }
1010
Johannes Berg88600202012-02-13 15:17:18 +01001011 ieee80211_bss_info_change_notify(sdata, changed);
1012
Johannes Berg3edaf3e2012-04-03 10:24:00 +02001013 netif_carrier_on(dev);
1014 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
1015 netif_carrier_on(vlan->dev);
1016
Johannes Berg665c93a2011-11-04 11:18:11 +01001017 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001018}
1019
Johannes Berg88600202012-02-13 15:17:18 +01001020static int ieee80211_change_beacon(struct wiphy *wiphy, struct net_device *dev,
1021 struct cfg80211_beacon_data *params)
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001022{
Johannes Berg14db74b2008-07-29 13:22:52 +02001023 struct ieee80211_sub_if_data *sdata;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001024 struct beacon_data *old;
Johannes Berg88600202012-02-13 15:17:18 +01001025 int err;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001026
Johannes Berg14db74b2008-07-29 13:22:52 +02001027 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1028
Simon Wunderlich73da7d52013-07-11 16:09:06 +02001029 /* don't allow changing the beacon while CSA is in place - offset
1030 * of channel switch counter may change
1031 */
1032 if (sdata->vif.csa_active)
1033 return -EBUSY;
1034
Johannes Berg40b275b2011-05-13 14:15:49 +02001035 old = rtnl_dereference(sdata->u.ap.beacon);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001036 if (!old)
1037 return -ENOENT;
1038
Johannes Berg88600202012-02-13 15:17:18 +01001039 err = ieee80211_assign_beacon(sdata, params);
1040 if (err < 0)
1041 return err;
1042 ieee80211_bss_info_change_notify(sdata, err);
1043 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001044}
1045
Johannes Berg88600202012-02-13 15:17:18 +01001046static int ieee80211_stop_ap(struct wiphy *wiphy, struct net_device *dev)
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001047{
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001048 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1049 struct ieee80211_sub_if_data *vlan;
1050 struct ieee80211_local *local = sdata->local;
1051 struct beacon_data *old_beacon;
1052 struct probe_resp *old_probe_resp;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001053
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001054 old_beacon = rtnl_dereference(sdata->u.ap.beacon);
1055 if (!old_beacon)
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001056 return -ENOENT;
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001057 old_probe_resp = rtnl_dereference(sdata->u.ap.probe_resp);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001058
Simon Wunderlich73da7d52013-07-11 16:09:06 +02001059 /* abort any running channel switch */
1060 sdata->vif.csa_active = false;
1061 cancel_work_sync(&sdata->csa_finalize_work);
Emmanuel Grumbach687da132013-10-01 16:45:43 +03001062 cancel_work_sync(&sdata->u.ap.request_smps_work);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02001063
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001064 /* turn off carrier for this interface and dependent VLANs */
Johannes Berg3edaf3e2012-04-03 10:24:00 +02001065 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
1066 netif_carrier_off(vlan->dev);
1067 netif_carrier_off(dev);
1068
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001069 /* remove beacon and probe response */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001070 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001071 RCU_INIT_POINTER(sdata->u.ap.probe_resp, NULL);
1072 kfree_rcu(old_beacon, rcu_head);
1073 if (old_probe_resp)
1074 kfree_rcu(old_probe_resp, rcu_head);
Johannes Berg88600202012-02-13 15:17:18 +01001075
Felix Fietkau2d4072a2012-12-10 20:02:34 +01001076 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
Johannes Berg75de9112012-12-14 14:56:03 +01001077 sta_info_flush_defer(vlan);
1078 sta_info_flush_defer(sdata);
Bob Copeland8ceb5952013-04-18 18:26:49 -04001079 synchronize_net();
Johannes Berg75de9112012-12-14 14:56:03 +01001080 rcu_barrier();
Johannes Berg7b4396b2013-02-23 01:14:20 +01001081 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list) {
Johannes Berg75de9112012-12-14 14:56:03 +01001082 sta_info_flush_cleanup(vlan);
Johannes Berg7b4396b2013-02-23 01:14:20 +01001083 ieee80211_free_keys(vlan);
1084 }
Johannes Berg75de9112012-12-14 14:56:03 +01001085 sta_info_flush_cleanup(sdata);
Johannes Berg7b4396b2013-02-23 01:14:20 +01001086 ieee80211_free_keys(sdata);
Johannes Berg75de9112012-12-14 14:56:03 +01001087
Johannes Bergd6a83222012-12-14 14:06:28 +01001088 sdata->vif.bss_conf.enable_beacon = false;
Marek Puzyniak0eabccd2013-04-10 13:47:45 +02001089 sdata->vif.bss_conf.ssid_len = 0;
Johannes Bergd6a83222012-12-14 14:06:28 +01001090 clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED, &sdata->state);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001091 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
Johannes Berg88600202012-02-13 15:17:18 +01001092
Simon Wunderlicha6b368f2013-06-11 10:44:39 +02001093 if (sdata->wdev.cac_started) {
1094 cancel_delayed_work_sync(&sdata->dfs_cac_timer_work);
1095 cfg80211_cac_event(sdata->dev, NL80211_RADAR_CAC_ABORTED,
1096 GFP_KERNEL);
1097 }
1098
Johannes Berg10416382012-10-19 15:44:42 +02001099 drv_stop_ap(sdata->local, sdata);
1100
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001101 /* free all potentially still buffered bcast frames */
1102 local->total_ps_buffered -= skb_queue_len(&sdata->u.ap.ps.bc_buf);
1103 skb_queue_purge(&sdata->u.ap.ps.bc_buf);
1104
Johannes Berg1f4ac5a2013-02-08 12:07:44 +01001105 ieee80211_vif_copy_chanctx_to_vlans(sdata, true);
Johannes Berg55de9082012-07-26 17:24:39 +02001106 ieee80211_vif_release_channel(sdata);
1107
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001108 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001109}
1110
Johannes Berg4fd69312007-12-19 02:03:35 +01001111/* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */
1112struct iapp_layer2_update {
1113 u8 da[ETH_ALEN]; /* broadcast */
1114 u8 sa[ETH_ALEN]; /* STA addr */
1115 __be16 len; /* 6 */
1116 u8 dsap; /* 0 */
1117 u8 ssap; /* 0 */
1118 u8 control;
1119 u8 xid_info[3];
Eric Dumazetbc105022010-06-03 03:21:52 -07001120} __packed;
Johannes Berg4fd69312007-12-19 02:03:35 +01001121
1122static void ieee80211_send_layer2_update(struct sta_info *sta)
1123{
1124 struct iapp_layer2_update *msg;
1125 struct sk_buff *skb;
1126
1127 /* Send Level 2 Update Frame to update forwarding tables in layer 2
1128 * bridge devices */
1129
1130 skb = dev_alloc_skb(sizeof(*msg));
1131 if (!skb)
1132 return;
1133 msg = (struct iapp_layer2_update *)skb_put(skb, sizeof(*msg));
1134
1135 /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID)
1136 * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */
1137
Johannes Berge83e6542012-07-13 16:23:07 +02001138 eth_broadcast_addr(msg->da);
Johannes Berg17741cd2008-09-11 00:02:02 +02001139 memcpy(msg->sa, sta->sta.addr, ETH_ALEN);
Johannes Berg4fd69312007-12-19 02:03:35 +01001140 msg->len = htons(6);
1141 msg->dsap = 0;
1142 msg->ssap = 0x01; /* NULL LSAP, CR Bit: Response */
1143 msg->control = 0xaf; /* XID response lsb.1111F101.
1144 * F=0 (no poll command; unsolicited frame) */
1145 msg->xid_info[0] = 0x81; /* XID format identifier */
1146 msg->xid_info[1] = 1; /* LLC types/classes: Type 1 LLC */
1147 msg->xid_info[2] = 0; /* XID sender's receive window size (RW) */
1148
Johannes Bergd0709a62008-02-25 16:27:46 +01001149 skb->dev = sta->sdata->dev;
1150 skb->protocol = eth_type_trans(skb, sta->sdata->dev);
Johannes Berg4fd69312007-12-19 02:03:35 +01001151 memset(skb->cb, 0, sizeof(skb->cb));
John W. Linville06ee1c22010-07-19 11:52:59 -04001152 netif_rx_ni(skb);
Johannes Berg4fd69312007-12-19 02:03:35 +01001153}
1154
Johannes Bergd582cff2012-10-26 17:53:44 +02001155static int sta_apply_auth_flags(struct ieee80211_local *local,
1156 struct sta_info *sta,
1157 u32 mask, u32 set)
1158{
1159 int ret;
1160
1161 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
1162 set & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
1163 !test_sta_flag(sta, WLAN_STA_AUTH)) {
1164 ret = sta_info_move_state(sta, IEEE80211_STA_AUTH);
1165 if (ret)
1166 return ret;
1167 }
1168
1169 if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
1170 set & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
1171 !test_sta_flag(sta, WLAN_STA_ASSOC)) {
1172 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
1173 if (ret)
1174 return ret;
1175 }
1176
1177 if (mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
1178 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED))
1179 ret = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
1180 else if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
1181 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
1182 else
1183 ret = 0;
1184 if (ret)
1185 return ret;
1186 }
1187
1188 if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
1189 !(set & BIT(NL80211_STA_FLAG_ASSOCIATED)) &&
1190 test_sta_flag(sta, WLAN_STA_ASSOC)) {
1191 ret = sta_info_move_state(sta, IEEE80211_STA_AUTH);
1192 if (ret)
1193 return ret;
1194 }
1195
1196 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
1197 !(set & BIT(NL80211_STA_FLAG_AUTHENTICATED)) &&
1198 test_sta_flag(sta, WLAN_STA_AUTH)) {
1199 ret = sta_info_move_state(sta, IEEE80211_STA_NONE);
1200 if (ret)
1201 return ret;
1202 }
1203
1204 return 0;
1205}
1206
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001207static int sta_apply_parameters(struct ieee80211_local *local,
1208 struct sta_info *sta,
1209 struct station_parameters *params)
Johannes Berg4fd69312007-12-19 02:03:35 +01001210{
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001211 int ret = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01001212 struct ieee80211_supported_band *sband;
Johannes Bergd0709a62008-02-25 16:27:46 +01001213 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berg55de9082012-07-26 17:24:39 +02001214 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001215 u32 mask, set;
Johannes Berg4fd69312007-12-19 02:03:35 +01001216
Johannes Berg55de9082012-07-26 17:24:39 +02001217 sband = local->hw.wiphy->bands[band];
Johannes Bergae5eb022008-10-14 16:58:37 +02001218
Johannes Bergeccb8e82009-05-11 21:57:56 +03001219 mask = params->sta_flags_mask;
1220 set = params->sta_flags_set;
Johannes Berg73651ee2008-02-25 16:27:47 +01001221
Johannes Bergd582cff2012-10-26 17:53:44 +02001222 if (ieee80211_vif_is_mesh(&sdata->vif)) {
1223 /*
1224 * In mesh mode, ASSOCIATED isn't part of the nl80211
1225 * API but must follow AUTHENTICATED for driver state.
1226 */
1227 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED))
1228 mask |= BIT(NL80211_STA_FLAG_ASSOCIATED);
1229 if (set & BIT(NL80211_STA_FLAG_AUTHENTICATED))
1230 set |= BIT(NL80211_STA_FLAG_ASSOCIATED);
Johannes Berg77ee7c82013-02-15 00:48:33 +01001231 } else if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1232 /*
1233 * TDLS -- everything follows authorized, but
1234 * only becoming authorized is possible, not
1235 * going back
1236 */
1237 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
1238 set |= BIT(NL80211_STA_FLAG_AUTHENTICATED) |
1239 BIT(NL80211_STA_FLAG_ASSOCIATED);
1240 mask |= BIT(NL80211_STA_FLAG_AUTHENTICATED) |
1241 BIT(NL80211_STA_FLAG_ASSOCIATED);
1242 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001243 }
1244
Johannes Bergd582cff2012-10-26 17:53:44 +02001245 ret = sta_apply_auth_flags(local, sta, mask, set);
1246 if (ret)
1247 return ret;
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001248
Johannes Bergeccb8e82009-05-11 21:57:56 +03001249 if (mask & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) {
Johannes Bergeccb8e82009-05-11 21:57:56 +03001250 if (set & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001251 set_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
1252 else
1253 clear_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001254 }
1255
1256 if (mask & BIT(NL80211_STA_FLAG_WME)) {
Arik Nemtsov39df6002011-06-27 23:58:45 +03001257 if (set & BIT(NL80211_STA_FLAG_WME)) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001258 set_sta_flag(sta, WLAN_STA_WME);
Arik Nemtsov39df6002011-06-27 23:58:45 +03001259 sta->sta.wme = true;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001260 } else {
1261 clear_sta_flag(sta, WLAN_STA_WME);
1262 sta->sta.wme = false;
Arik Nemtsov39df6002011-06-27 23:58:45 +03001263 }
Johannes Bergeccb8e82009-05-11 21:57:56 +03001264 }
1265
1266 if (mask & BIT(NL80211_STA_FLAG_MFP)) {
Johannes Bergeccb8e82009-05-11 21:57:56 +03001267 if (set & BIT(NL80211_STA_FLAG_MFP))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001268 set_sta_flag(sta, WLAN_STA_MFP);
1269 else
1270 clear_sta_flag(sta, WLAN_STA_MFP);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001271 }
Javier Cardonab39c48f2011-04-07 15:08:30 -07001272
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001273 if (mask & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001274 if (set & BIT(NL80211_STA_FLAG_TDLS_PEER))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001275 set_sta_flag(sta, WLAN_STA_TDLS_PEER);
1276 else
1277 clear_sta_flag(sta, WLAN_STA_TDLS_PEER);
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001278 }
Johannes Bergeccb8e82009-05-11 21:57:56 +03001279
Johannes Berg3b9ce802011-09-27 20:56:12 +02001280 if (params->sta_modify_mask & STATION_PARAM_APPLY_UAPSD) {
1281 sta->sta.uapsd_queues = params->uapsd_queues;
1282 sta->sta.max_sp = params->max_sp;
1283 }
Eliad Peller9533b4a2011-08-23 14:37:47 +03001284
Johannes Berg73651ee2008-02-25 16:27:47 +01001285 /*
Johannes Berg51b50fb2009-05-24 16:42:30 +02001286 * cfg80211 validates this (1-2007) and allows setting the AID
1287 * only when creating a new station entry
1288 */
1289 if (params->aid)
1290 sta->sta.aid = params->aid;
1291
1292 /*
Johannes Bergba23d202012-12-27 17:32:09 +01001293 * Some of the following updates would be racy if called on an
1294 * existing station, via ieee80211_change_station(). However,
1295 * all such changes are rejected by cfg80211 except for updates
1296 * changing the supported rates on an existing but not yet used
1297 * TDLS peer.
Johannes Berg73651ee2008-02-25 16:27:47 +01001298 */
1299
Johannes Berg4fd69312007-12-19 02:03:35 +01001300 if (params->listen_interval >= 0)
1301 sta->listen_interval = params->listen_interval;
1302
1303 if (params->supported_rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001304 ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef,
1305 sband, params->supported_rates,
1306 params->supported_rates_len,
1307 &sta->sta.supp_rates[band]);
Johannes Berg4fd69312007-12-19 02:03:35 +01001308 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001309
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001310 if (params->ht_capa)
Ben Greearef96a8422011-11-18 11:32:00 -08001311 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
Johannes Berge1a0c6b2013-02-07 11:47:44 +01001312 params->ht_capa, sta);
Jouni Malinen36aedc902008-08-25 11:58:58 +03001313
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +00001314 if (params->vht_capa)
1315 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
Johannes Berg4a342152013-02-07 11:58:58 +01001316 params->vht_capa, sta);
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +00001317
Javier Cardona9c3990a2011-05-03 16:57:11 -07001318 if (ieee80211_vif_is_mesh(&sdata->vif)) {
Yogesh Ashok Powar4daf50f2011-05-12 09:32:17 -04001319#ifdef CONFIG_MAC80211_MESH
Thomas Pedersen39886b62013-02-13 12:14:19 -08001320 u32 changed = 0;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001321
1322 if (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE) {
Javier Cardona9c3990a2011-05-03 16:57:11 -07001323 switch (params->plink_state) {
Javier Cardona57cf8042011-05-13 10:45:43 -07001324 case NL80211_PLINK_ESTAB:
Marco Porsch1617bab2013-01-07 16:04:49 +01001325 if (sta->plink_state != NL80211_PLINK_ESTAB)
1326 changed = mesh_plink_inc_estab_count(
1327 sdata);
1328 sta->plink_state = params->plink_state;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001329
1330 ieee80211_mps_sta_status_update(sta);
Thomas Pedersen39886b62013-02-13 12:14:19 -08001331 changed |= ieee80211_mps_set_sta_local_pm(sta,
1332 sdata->u.mesh.mshcfg.power_mode);
Marco Porsch1617bab2013-01-07 16:04:49 +01001333 break;
1334 case NL80211_PLINK_LISTEN:
Javier Cardona57cf8042011-05-13 10:45:43 -07001335 case NL80211_PLINK_BLOCKED:
Marco Porsch1617bab2013-01-07 16:04:49 +01001336 case NL80211_PLINK_OPN_SNT:
1337 case NL80211_PLINK_OPN_RCVD:
1338 case NL80211_PLINK_CNF_RCVD:
1339 case NL80211_PLINK_HOLDING:
1340 if (sta->plink_state == NL80211_PLINK_ESTAB)
1341 changed = mesh_plink_dec_estab_count(
1342 sdata);
Javier Cardona9c3990a2011-05-03 16:57:11 -07001343 sta->plink_state = params->plink_state;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001344
1345 ieee80211_mps_sta_status_update(sta);
Marco Porsch446075d2013-10-15 12:29:24 +02001346 changed |= ieee80211_mps_set_sta_local_pm(sta,
1347 NL80211_MESH_POWER_UNKNOWN);
Javier Cardona9c3990a2011-05-03 16:57:11 -07001348 break;
1349 default:
1350 /* nothing */
1351 break;
1352 }
Johannes Berg77ee7c82013-02-15 00:48:33 +01001353 }
1354
1355 switch (params->plink_action) {
1356 case NL80211_PLINK_ACTION_NO_ACTION:
1357 /* nothing */
1358 break;
1359 case NL80211_PLINK_ACTION_OPEN:
1360 changed |= mesh_plink_open(sta);
1361 break;
1362 case NL80211_PLINK_ACTION_BLOCK:
1363 changed |= mesh_plink_block(sta);
1364 break;
Marco Porsch1617bab2013-01-07 16:04:49 +01001365 }
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001366
1367 if (params->local_pm)
Thomas Pedersen39886b62013-02-13 12:14:19 -08001368 changed |=
1369 ieee80211_mps_set_sta_local_pm(sta,
1370 params->local_pm);
1371 ieee80211_bss_info_change_notify(sdata, changed);
Yogesh Ashok Powar4daf50f2011-05-12 09:32:17 -04001372#endif
Johannes Berg902acc72008-02-23 15:17:19 +01001373 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001374
1375 return 0;
Johannes Berg4fd69312007-12-19 02:03:35 +01001376}
1377
1378static int ieee80211_add_station(struct wiphy *wiphy, struct net_device *dev,
1379 u8 *mac, struct station_parameters *params)
1380{
Johannes Berg14db74b2008-07-29 13:22:52 +02001381 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +01001382 struct sta_info *sta;
1383 struct ieee80211_sub_if_data *sdata;
Johannes Berg73651ee2008-02-25 16:27:47 +01001384 int err;
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001385 int layer2_update;
Johannes Berg4fd69312007-12-19 02:03:35 +01001386
Johannes Berg4fd69312007-12-19 02:03:35 +01001387 if (params->vlan) {
1388 sdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1389
Johannes Berg05c914f2008-09-11 00:01:58 +02001390 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
1391 sdata->vif.type != NL80211_IFTYPE_AP)
Johannes Berg4fd69312007-12-19 02:03:35 +01001392 return -EINVAL;
1393 } else
1394 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1395
Joe Perchesb203ca32012-05-08 18:56:52 +00001396 if (ether_addr_equal(mac, sdata->vif.addr))
Johannes Berg03e44972008-02-27 09:56:40 +01001397 return -EINVAL;
1398
1399 if (is_multicast_ether_addr(mac))
1400 return -EINVAL;
1401
1402 sta = sta_info_alloc(sdata, mac, GFP_KERNEL);
Johannes Berg73651ee2008-02-25 16:27:47 +01001403 if (!sta)
1404 return -ENOMEM;
Johannes Berg4fd69312007-12-19 02:03:35 +01001405
Johannes Bergd582cff2012-10-26 17:53:44 +02001406 /*
1407 * defaults -- if userspace wants something else we'll
1408 * change it accordingly in sta_apply_parameters()
1409 */
Johannes Berg77ee7c82013-02-15 00:48:33 +01001410 if (!(params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER))) {
1411 sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
1412 sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC);
1413 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001414
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001415 err = sta_apply_parameters(local, sta, params);
1416 if (err) {
1417 sta_info_free(local, sta);
1418 return err;
1419 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001420
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001421 /*
Johannes Berg77ee7c82013-02-15 00:48:33 +01001422 * for TDLS, rate control should be initialized only when
1423 * rates are known and station is marked authorized
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001424 */
1425 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER))
1426 rate_control_rate_init(sta);
Johannes Berg4fd69312007-12-19 02:03:35 +01001427
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001428 layer2_update = sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1429 sdata->vif.type == NL80211_IFTYPE_AP;
1430
Johannes Berg34e89502010-02-03 13:59:58 +01001431 err = sta_info_insert_rcu(sta);
Johannes Berg73651ee2008-02-25 16:27:47 +01001432 if (err) {
Johannes Berg73651ee2008-02-25 16:27:47 +01001433 rcu_read_unlock();
1434 return err;
1435 }
1436
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001437 if (layer2_update)
Johannes Berg73651ee2008-02-25 16:27:47 +01001438 ieee80211_send_layer2_update(sta);
1439
1440 rcu_read_unlock();
1441
Johannes Berg4fd69312007-12-19 02:03:35 +01001442 return 0;
1443}
1444
1445static int ieee80211_del_station(struct wiphy *wiphy, struct net_device *dev,
1446 u8 *mac)
1447{
Johannes Berg14db74b2008-07-29 13:22:52 +02001448 struct ieee80211_sub_if_data *sdata;
Johannes Berg4fd69312007-12-19 02:03:35 +01001449
Johannes Berg14db74b2008-07-29 13:22:52 +02001450 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1451
Johannes Berg34e89502010-02-03 13:59:58 +01001452 if (mac)
1453 return sta_info_destroy_addr_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001454
Johannes Bergb998e8b2012-12-13 23:07:46 +01001455 sta_info_flush(sdata);
Johannes Berg4fd69312007-12-19 02:03:35 +01001456 return 0;
1457}
1458
1459static int ieee80211_change_station(struct wiphy *wiphy,
Johannes Berg77ee7c82013-02-15 00:48:33 +01001460 struct net_device *dev, u8 *mac,
Johannes Berg4fd69312007-12-19 02:03:35 +01001461 struct station_parameters *params)
1462{
Johannes Bergabe60632009-11-25 17:46:18 +01001463 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg14db74b2008-07-29 13:22:52 +02001464 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +01001465 struct sta_info *sta;
1466 struct ieee80211_sub_if_data *vlansdata;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001467 enum cfg80211_station_type statype;
Eliad Peller35b88622011-12-29 14:41:39 +02001468 int err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001469
Johannes Berg87be1e12011-12-14 12:20:29 +01001470 mutex_lock(&local->sta_mtx);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001471
Felix Fietkau0e5ded52010-01-08 18:10:58 +01001472 sta = sta_info_get_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001473 if (!sta) {
Johannes Berg77ee7c82013-02-15 00:48:33 +01001474 err = -ENOENT;
1475 goto out_err;
Johannes Berg98dd6a52008-04-10 15:36:09 +02001476 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001477
Johannes Berg77ee7c82013-02-15 00:48:33 +01001478 switch (sdata->vif.type) {
1479 case NL80211_IFTYPE_MESH_POINT:
Thomas Pedersena6dad6a2013-03-04 13:06:12 -08001480 if (sdata->u.mesh.user_mpm)
Thomas Pederseneef941e2013-03-04 13:06:11 -08001481 statype = CFG80211_STA_MESH_PEER_USER;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001482 else
Thomas Pederseneef941e2013-03-04 13:06:11 -08001483 statype = CFG80211_STA_MESH_PEER_KERNEL;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001484 break;
1485 case NL80211_IFTYPE_ADHOC:
1486 statype = CFG80211_STA_IBSS;
1487 break;
1488 case NL80211_IFTYPE_STATION:
1489 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1490 statype = CFG80211_STA_AP_STA;
1491 break;
1492 }
1493 if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
1494 statype = CFG80211_STA_TDLS_PEER_ACTIVE;
1495 else
1496 statype = CFG80211_STA_TDLS_PEER_SETUP;
1497 break;
1498 case NL80211_IFTYPE_AP:
1499 case NL80211_IFTYPE_AP_VLAN:
1500 statype = CFG80211_STA_AP_CLIENT;
1501 break;
1502 default:
1503 err = -EOPNOTSUPP;
1504 goto out_err;
Johannes Bergbdd90d52011-12-14 12:20:27 +01001505 }
1506
Johannes Berg77ee7c82013-02-15 00:48:33 +01001507 err = cfg80211_check_station_change(wiphy, params, statype);
1508 if (err)
1509 goto out_err;
1510
Johannes Bergd0709a62008-02-25 16:27:46 +01001511 if (params->vlan && params->vlan != sta->sdata->dev) {
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001512 bool prev_4addr = false;
1513 bool new_4addr = false;
1514
Johannes Berg4fd69312007-12-19 02:03:35 +01001515 vlansdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1516
Johannes Berg9bc383d2009-11-19 11:55:19 +01001517 if (params->vlan->ieee80211_ptr->use_4addr) {
Johannes Berg33054432009-11-20 10:09:14 +01001518 if (vlansdata->u.vlan.sta) {
Johannes Berg77ee7c82013-02-15 00:48:33 +01001519 err = -EBUSY;
1520 goto out_err;
Johannes Berg33054432009-11-20 10:09:14 +01001521 }
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001522
Eric Dumazetcf778b02012-01-12 04:41:32 +00001523 rcu_assign_pointer(vlansdata->u.vlan.sta, sta);
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001524 new_4addr = true;
1525 }
1526
1527 if (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1528 sta->sdata->u.vlan.sta) {
1529 rcu_assign_pointer(sta->sdata->u.vlan.sta, NULL);
1530 prev_4addr = true;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001531 }
1532
Johannes Berg14db74b2008-07-29 13:22:52 +02001533 sta->sdata = vlansdata;
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001534
1535 if (sta->sta_state == IEEE80211_STA_AUTHORIZED &&
1536 prev_4addr != new_4addr) {
1537 if (new_4addr)
1538 atomic_dec(&sta->sdata->bss->num_mcast_sta);
1539 else
1540 atomic_inc(&sta->sdata->bss->num_mcast_sta);
1541 }
1542
Johannes Berg4fd69312007-12-19 02:03:35 +01001543 ieee80211_send_layer2_update(sta);
1544 }
1545
Eliad Peller35b88622011-12-29 14:41:39 +02001546 err = sta_apply_parameters(local, sta, params);
Johannes Berg77ee7c82013-02-15 00:48:33 +01001547 if (err)
1548 goto out_err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001549
Johannes Berg77ee7c82013-02-15 00:48:33 +01001550 /* When peer becomes authorized, init rate control as well */
1551 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER) &&
1552 test_sta_flag(sta, WLAN_STA_AUTHORIZED))
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001553 rate_control_rate_init(sta);
1554
Johannes Berg87be1e12011-12-14 12:20:29 +01001555 mutex_unlock(&local->sta_mtx);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001556
Emmanuel Grumbach687da132013-10-01 16:45:43 +03001557 if ((sdata->vif.type == NL80211_IFTYPE_AP ||
1558 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
1559 sta->known_smps_mode != sta->sdata->bss->req_smps &&
1560 test_sta_flag(sta, WLAN_STA_AUTHORIZED) &&
1561 sta_info_tx_streams(sta) != 1) {
1562 ht_dbg(sta->sdata,
1563 "%pM just authorized and MIMO capable - update SMPS\n",
1564 sta->sta.addr);
1565 ieee80211_send_smps_action(sta->sdata,
1566 sta->sdata->bss->req_smps,
1567 sta->sta.addr,
1568 sta->sdata->vif.bss_conf.bssid);
1569 }
1570
Jason Young808118c2011-03-10 16:43:19 -08001571 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
Eliad Pellerab095872012-07-27 12:33:22 +03001572 params->sta_flags_mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
Jason Young808118c2011-03-10 16:43:19 -08001573 ieee80211_recalc_ps(local, -1);
Eliad Pellerab095872012-07-27 12:33:22 +03001574 ieee80211_recalc_ps_vif(sdata);
1575 }
Johannes Berg77ee7c82013-02-15 00:48:33 +01001576
Johannes Berg4fd69312007-12-19 02:03:35 +01001577 return 0;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001578out_err:
1579 mutex_unlock(&local->sta_mtx);
1580 return err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001581}
1582
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001583#ifdef CONFIG_MAC80211_MESH
1584static int ieee80211_add_mpath(struct wiphy *wiphy, struct net_device *dev,
1585 u8 *dst, u8 *next_hop)
1586{
Johannes Berg14db74b2008-07-29 13:22:52 +02001587 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001588 struct mesh_path *mpath;
1589 struct sta_info *sta;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001590
Johannes Berg14db74b2008-07-29 13:22:52 +02001591 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1592
Johannes Bergd0709a62008-02-25 16:27:46 +01001593 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +01001594 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +01001595 if (!sta) {
1596 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001597 return -ENOENT;
Johannes Bergd0709a62008-02-25 16:27:46 +01001598 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001599
Bob Copelandae76eef2013-03-29 09:38:39 -04001600 mpath = mesh_path_add(sdata, dst);
1601 if (IS_ERR(mpath)) {
Johannes Bergd0709a62008-02-25 16:27:46 +01001602 rcu_read_unlock();
Bob Copelandae76eef2013-03-29 09:38:39 -04001603 return PTR_ERR(mpath);
Johannes Bergd0709a62008-02-25 16:27:46 +01001604 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001605
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001606 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +01001607
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001608 rcu_read_unlock();
1609 return 0;
1610}
1611
1612static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev,
Johannes Bergbf7cd942013-02-15 14:40:31 +01001613 u8 *dst)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001614{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001615 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001616
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001617 if (dst)
Johannes Bergbf7cd942013-02-15 14:40:31 +01001618 return mesh_path_del(sdata, dst);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001619
Javier Cardonaece1a2e2011-08-29 13:23:04 -07001620 mesh_path_flush_by_iface(sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001621 return 0;
1622}
1623
1624static int ieee80211_change_mpath(struct wiphy *wiphy,
1625 struct net_device *dev,
1626 u8 *dst, u8 *next_hop)
1627{
Johannes Berg14db74b2008-07-29 13:22:52 +02001628 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001629 struct mesh_path *mpath;
1630 struct sta_info *sta;
1631
Johannes Berg14db74b2008-07-29 13:22:52 +02001632 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1633
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001634 rcu_read_lock();
Johannes Bergd0709a62008-02-25 16:27:46 +01001635
Johannes Bergabe60632009-11-25 17:46:18 +01001636 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +01001637 if (!sta) {
1638 rcu_read_unlock();
1639 return -ENOENT;
1640 }
1641
Johannes Bergbf7cd942013-02-15 14:40:31 +01001642 mpath = mesh_path_lookup(sdata, dst);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001643 if (!mpath) {
1644 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001645 return -ENOENT;
1646 }
1647
1648 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +01001649
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001650 rcu_read_unlock();
1651 return 0;
1652}
1653
1654static void mpath_set_pinfo(struct mesh_path *mpath, u8 *next_hop,
1655 struct mpath_info *pinfo)
1656{
Johannes Berga3836e02011-05-12 15:11:37 +02001657 struct sta_info *next_hop_sta = rcu_dereference(mpath->next_hop);
1658
1659 if (next_hop_sta)
1660 memcpy(next_hop, next_hop_sta->sta.addr, ETH_ALEN);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001661 else
1662 memset(next_hop, 0, ETH_ALEN);
1663
LEO Airwarosu Yoichi Shinoda7ce8c7a2012-08-27 22:28:16 +09001664 memset(pinfo, 0, sizeof(*pinfo));
1665
Johannes Bergf5ea9122009-08-07 16:17:38 +02001666 pinfo->generation = mesh_paths_generation;
1667
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001668 pinfo->filled = MPATH_INFO_FRAME_QLEN |
Rui Paulod19b3bf2009-11-09 23:46:55 +00001669 MPATH_INFO_SN |
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001670 MPATH_INFO_METRIC |
1671 MPATH_INFO_EXPTIME |
1672 MPATH_INFO_DISCOVERY_TIMEOUT |
1673 MPATH_INFO_DISCOVERY_RETRIES |
1674 MPATH_INFO_FLAGS;
1675
1676 pinfo->frame_qlen = mpath->frame_queue.qlen;
Rui Paulod19b3bf2009-11-09 23:46:55 +00001677 pinfo->sn = mpath->sn;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001678 pinfo->metric = mpath->metric;
1679 if (time_before(jiffies, mpath->exp_time))
1680 pinfo->exptime = jiffies_to_msecs(mpath->exp_time - jiffies);
1681 pinfo->discovery_timeout =
1682 jiffies_to_msecs(mpath->discovery_timeout);
1683 pinfo->discovery_retries = mpath->discovery_retries;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001684 if (mpath->flags & MESH_PATH_ACTIVE)
1685 pinfo->flags |= NL80211_MPATH_FLAG_ACTIVE;
1686 if (mpath->flags & MESH_PATH_RESOLVING)
1687 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
Rui Paulod19b3bf2009-11-09 23:46:55 +00001688 if (mpath->flags & MESH_PATH_SN_VALID)
1689 pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001690 if (mpath->flags & MESH_PATH_FIXED)
1691 pinfo->flags |= NL80211_MPATH_FLAG_FIXED;
LEO Airwarosu Yoichi Shinoda7ce8c7a2012-08-27 22:28:16 +09001692 if (mpath->flags & MESH_PATH_RESOLVED)
1693 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVED;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001694}
1695
1696static int ieee80211_get_mpath(struct wiphy *wiphy, struct net_device *dev,
1697 u8 *dst, u8 *next_hop, struct mpath_info *pinfo)
1698
1699{
Johannes Berg14db74b2008-07-29 13:22:52 +02001700 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001701 struct mesh_path *mpath;
1702
Johannes Berg14db74b2008-07-29 13:22:52 +02001703 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1704
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001705 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01001706 mpath = mesh_path_lookup(sdata, dst);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001707 if (!mpath) {
1708 rcu_read_unlock();
1709 return -ENOENT;
1710 }
1711 memcpy(dst, mpath->dst, ETH_ALEN);
1712 mpath_set_pinfo(mpath, next_hop, pinfo);
1713 rcu_read_unlock();
1714 return 0;
1715}
1716
1717static int ieee80211_dump_mpath(struct wiphy *wiphy, struct net_device *dev,
1718 int idx, u8 *dst, u8 *next_hop,
1719 struct mpath_info *pinfo)
1720{
Johannes Berg14db74b2008-07-29 13:22:52 +02001721 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001722 struct mesh_path *mpath;
1723
Johannes Berg14db74b2008-07-29 13:22:52 +02001724 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1725
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001726 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01001727 mpath = mesh_path_lookup_by_idx(sdata, idx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001728 if (!mpath) {
1729 rcu_read_unlock();
1730 return -ENOENT;
1731 }
1732 memcpy(dst, mpath->dst, ETH_ALEN);
1733 mpath_set_pinfo(mpath, next_hop, pinfo);
1734 rcu_read_unlock();
1735 return 0;
1736}
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001737
Javier Cardona24bdd9f2010-12-16 17:37:48 -08001738static int ieee80211_get_mesh_config(struct wiphy *wiphy,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001739 struct net_device *dev,
1740 struct mesh_config *conf)
1741{
1742 struct ieee80211_sub_if_data *sdata;
1743 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1744
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001745 memcpy(conf, &(sdata->u.mesh.mshcfg), sizeof(struct mesh_config));
1746 return 0;
1747}
1748
1749static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm, u32 mask)
1750{
1751 return (mask >> (parm-1)) & 0x1;
1752}
1753
Javier Cardonac80d5452010-12-16 17:37:49 -08001754static int copy_mesh_setup(struct ieee80211_if_mesh *ifmsh,
1755 const struct mesh_setup *setup)
1756{
1757 u8 *new_ie;
1758 const u8 *old_ie;
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001759 struct ieee80211_sub_if_data *sdata = container_of(ifmsh,
1760 struct ieee80211_sub_if_data, u.mesh);
Javier Cardonac80d5452010-12-16 17:37:49 -08001761
Javier Cardona581a8b02011-04-07 15:08:27 -07001762 /* allocate information elements */
Javier Cardonac80d5452010-12-16 17:37:49 -08001763 new_ie = NULL;
Javier Cardona581a8b02011-04-07 15:08:27 -07001764 old_ie = ifmsh->ie;
Javier Cardonac80d5452010-12-16 17:37:49 -08001765
Javier Cardona581a8b02011-04-07 15:08:27 -07001766 if (setup->ie_len) {
1767 new_ie = kmemdup(setup->ie, setup->ie_len,
Javier Cardonac80d5452010-12-16 17:37:49 -08001768 GFP_KERNEL);
1769 if (!new_ie)
1770 return -ENOMEM;
1771 }
Javier Cardona581a8b02011-04-07 15:08:27 -07001772 ifmsh->ie_len = setup->ie_len;
1773 ifmsh->ie = new_ie;
1774 kfree(old_ie);
Javier Cardonac80d5452010-12-16 17:37:49 -08001775
1776 /* now copy the rest of the setup parameters */
1777 ifmsh->mesh_id_len = setup->mesh_id_len;
1778 memcpy(ifmsh->mesh_id, setup->mesh_id, ifmsh->mesh_id_len);
Javier Cardonad299a1f2012-03-31 11:31:33 -07001779 ifmsh->mesh_sp_id = setup->sync_method;
Javier Cardonac80d5452010-12-16 17:37:49 -08001780 ifmsh->mesh_pp_id = setup->path_sel_proto;
1781 ifmsh->mesh_pm_id = setup->path_metric;
Thomas Pedersena6dad6a2013-03-04 13:06:12 -08001782 ifmsh->user_mpm = setup->user_mpm;
Colleen Twitty0d4261a2013-05-08 11:46:00 -07001783 ifmsh->mesh_auth_id = setup->auth_id;
Javier Cardonab130e5c2011-05-03 16:57:07 -07001784 ifmsh->security = IEEE80211_MESH_SEC_NONE;
1785 if (setup->is_authenticated)
1786 ifmsh->security |= IEEE80211_MESH_SEC_AUTHED;
1787 if (setup->is_secure)
1788 ifmsh->security |= IEEE80211_MESH_SEC_SECURED;
Javier Cardonac80d5452010-12-16 17:37:49 -08001789
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001790 /* mcast rate setting in Mesh Node */
1791 memcpy(sdata->vif.bss_conf.mcast_rate, setup->mcast_rate,
1792 sizeof(setup->mcast_rate));
Ashok Nagarajanffb3cf32013-06-03 10:33:36 -07001793 sdata->vif.bss_conf.basic_rates = setup->basic_rates;
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001794
Marco Porsch9bdbf042013-01-07 16:04:51 +01001795 sdata->vif.bss_conf.beacon_int = setup->beacon_interval;
1796 sdata->vif.bss_conf.dtim_period = setup->dtim_period;
1797
Javier Cardonac80d5452010-12-16 17:37:49 -08001798 return 0;
1799}
1800
Javier Cardona24bdd9f2010-12-16 17:37:48 -08001801static int ieee80211_update_mesh_config(struct wiphy *wiphy,
Johannes Berg29cbe682010-12-03 09:20:44 +01001802 struct net_device *dev, u32 mask,
1803 const struct mesh_config *nconf)
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001804{
1805 struct mesh_config *conf;
1806 struct ieee80211_sub_if_data *sdata;
Rui Paulo63c57232009-11-09 23:46:57 +00001807 struct ieee80211_if_mesh *ifmsh;
1808
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001809 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Rui Paulo63c57232009-11-09 23:46:57 +00001810 ifmsh = &sdata->u.mesh;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001811
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001812 /* Set the config options which we are interested in setting */
1813 conf = &(sdata->u.mesh.mshcfg);
1814 if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT, mask))
1815 conf->dot11MeshRetryTimeout = nconf->dot11MeshRetryTimeout;
1816 if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT, mask))
1817 conf->dot11MeshConfirmTimeout = nconf->dot11MeshConfirmTimeout;
1818 if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT, mask))
1819 conf->dot11MeshHoldingTimeout = nconf->dot11MeshHoldingTimeout;
1820 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS, mask))
1821 conf->dot11MeshMaxPeerLinks = nconf->dot11MeshMaxPeerLinks;
1822 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES, mask))
1823 conf->dot11MeshMaxRetries = nconf->dot11MeshMaxRetries;
1824 if (_chg_mesh_attr(NL80211_MESHCONF_TTL, mask))
1825 conf->dot11MeshTTL = nconf->dot11MeshTTL;
Javier Cardona45904f22010-12-03 09:20:40 +01001826 if (_chg_mesh_attr(NL80211_MESHCONF_ELEMENT_TTL, mask))
Chun-Yeow Yeoh58886a92012-06-15 00:23:53 +08001827 conf->element_ttl = nconf->element_ttl;
Thomas Pedersen146bb482013-03-04 13:06:14 -08001828 if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS, mask)) {
1829 if (ifmsh->user_mpm)
1830 return -EBUSY;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001831 conf->auto_open_plinks = nconf->auto_open_plinks;
Thomas Pedersen146bb482013-03-04 13:06:14 -08001832 }
Javier Cardonad299a1f2012-03-31 11:31:33 -07001833 if (_chg_mesh_attr(NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR, mask))
1834 conf->dot11MeshNbrOffsetMaxNeighbor =
1835 nconf->dot11MeshNbrOffsetMaxNeighbor;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001836 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, mask))
1837 conf->dot11MeshHWMPmaxPREQretries =
1838 nconf->dot11MeshHWMPmaxPREQretries;
1839 if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME, mask))
1840 conf->path_refresh_time = nconf->path_refresh_time;
1841 if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, mask))
1842 conf->min_discovery_timeout = nconf->min_discovery_timeout;
1843 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, mask))
1844 conf->dot11MeshHWMPactivePathTimeout =
1845 nconf->dot11MeshHWMPactivePathTimeout;
1846 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, mask))
1847 conf->dot11MeshHWMPpreqMinInterval =
1848 nconf->dot11MeshHWMPpreqMinInterval;
Thomas Pedersendca7e942011-11-24 17:15:24 -08001849 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL, mask))
1850 conf->dot11MeshHWMPperrMinInterval =
1851 nconf->dot11MeshHWMPperrMinInterval;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001852 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
1853 mask))
1854 conf->dot11MeshHWMPnetDiameterTraversalTime =
1855 nconf->dot11MeshHWMPnetDiameterTraversalTime;
Rui Paulo63c57232009-11-09 23:46:57 +00001856 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask)) {
1857 conf->dot11MeshHWMPRootMode = nconf->dot11MeshHWMPRootMode;
1858 ieee80211_mesh_root_setup(ifmsh);
1859 }
Javier Cardona16dd7262011-08-09 16:45:11 -07001860 if (_chg_mesh_attr(NL80211_MESHCONF_GATE_ANNOUNCEMENTS, mask)) {
Thomas Pedersenc61336612011-08-25 10:36:14 -07001861 /* our current gate announcement implementation rides on root
1862 * announcements, so require this ifmsh to also be a root node
1863 * */
1864 if (nconf->dot11MeshGateAnnouncementProtocol &&
Chun-Yeow Yeohdbb912c2012-06-14 02:06:09 +08001865 !(conf->dot11MeshHWMPRootMode > IEEE80211_ROOTMODE_ROOT)) {
1866 conf->dot11MeshHWMPRootMode = IEEE80211_PROACTIVE_RANN;
Thomas Pedersenc61336612011-08-25 10:36:14 -07001867 ieee80211_mesh_root_setup(ifmsh);
1868 }
Javier Cardona16dd7262011-08-09 16:45:11 -07001869 conf->dot11MeshGateAnnouncementProtocol =
1870 nconf->dot11MeshGateAnnouncementProtocol;
1871 }
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08001872 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_RANN_INTERVAL, mask))
Javier Cardona0507e152011-08-09 16:45:10 -07001873 conf->dot11MeshHWMPRannInterval =
1874 nconf->dot11MeshHWMPRannInterval;
Chun-Yeow Yeoh94f90652012-01-21 01:02:16 +08001875 if (_chg_mesh_attr(NL80211_MESHCONF_FORWARDING, mask))
1876 conf->dot11MeshForwarding = nconf->dot11MeshForwarding;
Ashok Nagarajan55335132012-02-28 17:04:08 -08001877 if (_chg_mesh_attr(NL80211_MESHCONF_RSSI_THRESHOLD, mask)) {
1878 /* our RSSI threshold implementation is supported only for
1879 * devices that report signal in dBm.
1880 */
1881 if (!(sdata->local->hw.flags & IEEE80211_HW_SIGNAL_DBM))
1882 return -ENOTSUPP;
1883 conf->rssi_threshold = nconf->rssi_threshold;
1884 }
Ashok Nagarajan70c33ea2012-04-30 14:20:32 -07001885 if (_chg_mesh_attr(NL80211_MESHCONF_HT_OPMODE, mask)) {
1886 conf->ht_opmode = nconf->ht_opmode;
1887 sdata->vif.bss_conf.ht_operation_mode = nconf->ht_opmode;
1888 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_HT);
1889 }
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08001890 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT, mask))
1891 conf->dot11MeshHWMPactivePathToRootTimeout =
1892 nconf->dot11MeshHWMPactivePathToRootTimeout;
1893 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOT_INTERVAL, mask))
1894 conf->dot11MeshHWMProotInterval =
1895 nconf->dot11MeshHWMProotInterval;
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08001896 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL, mask))
1897 conf->dot11MeshHWMPconfirmationInterval =
1898 nconf->dot11MeshHWMPconfirmationInterval;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001899 if (_chg_mesh_attr(NL80211_MESHCONF_POWER_MODE, mask)) {
1900 conf->power_mode = nconf->power_mode;
1901 ieee80211_mps_local_status_update(sdata);
1902 }
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001903 if (_chg_mesh_attr(NL80211_MESHCONF_AWAKE_WINDOW, mask))
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001904 conf->dot11MeshAwakeWindowDuration =
1905 nconf->dot11MeshAwakeWindowDuration;
Colleen Twitty66de6712013-06-03 09:53:40 -07001906 if (_chg_mesh_attr(NL80211_MESHCONF_PLINK_TIMEOUT, mask))
1907 conf->plink_timeout = nconf->plink_timeout;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001908 ieee80211_mbss_info_change_notify(sdata, BSS_CHANGED_BEACON);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001909 return 0;
1910}
1911
Johannes Berg29cbe682010-12-03 09:20:44 +01001912static int ieee80211_join_mesh(struct wiphy *wiphy, struct net_device *dev,
1913 const struct mesh_config *conf,
1914 const struct mesh_setup *setup)
1915{
1916 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1917 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Javier Cardonac80d5452010-12-16 17:37:49 -08001918 int err;
Johannes Berg29cbe682010-12-03 09:20:44 +01001919
Javier Cardonac80d5452010-12-16 17:37:49 -08001920 memcpy(&ifmsh->mshcfg, conf, sizeof(struct mesh_config));
1921 err = copy_mesh_setup(ifmsh, setup);
1922 if (err)
1923 return err;
Johannes Bergcc1d2802012-05-16 23:50:20 +02001924
Johannes Berg04ecd252012-09-11 14:34:12 +02001925 /* can mesh use other SMPS modes? */
1926 sdata->smps_mode = IEEE80211_SMPS_OFF;
1927 sdata->needed_rx_chains = sdata->local->rx_chains;
1928
Johannes Berg4bf88532012-11-09 11:39:59 +01001929 err = ieee80211_vif_use_channel(sdata, &setup->chandef,
Johannes Berg55de9082012-07-26 17:24:39 +02001930 IEEE80211_CHANCTX_SHARED);
Johannes Bergcc1d2802012-05-16 23:50:20 +02001931 if (err)
1932 return err;
1933
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001934 return ieee80211_start_mesh(sdata);
Johannes Berg29cbe682010-12-03 09:20:44 +01001935}
1936
1937static int ieee80211_leave_mesh(struct wiphy *wiphy, struct net_device *dev)
1938{
1939 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1940
1941 ieee80211_stop_mesh(sdata);
Johannes Berg55de9082012-07-26 17:24:39 +02001942 ieee80211_vif_release_channel(sdata);
Johannes Berg29cbe682010-12-03 09:20:44 +01001943
1944 return 0;
1945}
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001946#endif
1947
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001948static int ieee80211_change_bss(struct wiphy *wiphy,
1949 struct net_device *dev,
1950 struct bss_parameters *params)
1951{
Johannes Berg55de9082012-07-26 17:24:39 +02001952 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1953 enum ieee80211_band band;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001954 u32 changed = 0;
1955
Johannes Berg55de9082012-07-26 17:24:39 +02001956 if (!rtnl_dereference(sdata->u.ap.beacon))
1957 return -ENOENT;
1958
1959 band = ieee80211_get_sdata_band(sdata);
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001960
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001961 if (params->use_cts_prot >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001962 sdata->vif.bss_conf.use_cts_prot = params->use_cts_prot;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001963 changed |= BSS_CHANGED_ERP_CTS_PROT;
1964 }
1965 if (params->use_short_preamble >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001966 sdata->vif.bss_conf.use_short_preamble =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001967 params->use_short_preamble;
1968 changed |= BSS_CHANGED_ERP_PREAMBLE;
1969 }
Felix Fietkau43d35342010-01-15 03:00:48 +01001970
1971 if (!sdata->vif.bss_conf.use_short_slot &&
Johannes Berg55de9082012-07-26 17:24:39 +02001972 band == IEEE80211_BAND_5GHZ) {
Felix Fietkau43d35342010-01-15 03:00:48 +01001973 sdata->vif.bss_conf.use_short_slot = true;
1974 changed |= BSS_CHANGED_ERP_SLOT;
1975 }
1976
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001977 if (params->use_short_slot_time >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001978 sdata->vif.bss_conf.use_short_slot =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001979 params->use_short_slot_time;
1980 changed |= BSS_CHANGED_ERP_SLOT;
1981 }
1982
Jouni Malinen90c97a02008-10-30 16:59:22 +02001983 if (params->basic_rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001984 ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef,
1985 wiphy->bands[band],
1986 params->basic_rates,
1987 params->basic_rates_len,
1988 &sdata->vif.bss_conf.basic_rates);
Jouni Malinen90c97a02008-10-30 16:59:22 +02001989 changed |= BSS_CHANGED_BASIC_RATES;
1990 }
1991
Felix Fietkau7b7b5e52010-04-27 01:23:36 +02001992 if (params->ap_isolate >= 0) {
1993 if (params->ap_isolate)
1994 sdata->flags |= IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1995 else
1996 sdata->flags &= ~IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1997 }
1998
Helmut Schaa80d7e402010-11-19 12:40:26 +01001999 if (params->ht_opmode >= 0) {
2000 sdata->vif.bss_conf.ht_operation_mode =
2001 (u16) params->ht_opmode;
2002 changed |= BSS_CHANGED_HT;
2003 }
2004
Johannes Berg339afbf2012-11-14 15:21:17 +01002005 if (params->p2p_ctwindow >= 0) {
Janusz Dziedzic67baf662013-03-21 15:47:56 +01002006 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &=
2007 ~IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
2008 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
2009 params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
Johannes Berg339afbf2012-11-14 15:21:17 +01002010 changed |= BSS_CHANGED_P2P_PS;
2011 }
2012
Janusz Dziedzic67baf662013-03-21 15:47:56 +01002013 if (params->p2p_opp_ps > 0) {
2014 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
2015 IEEE80211_P2P_OPPPS_ENABLE_BIT;
2016 changed |= BSS_CHANGED_P2P_PS;
2017 } else if (params->p2p_opp_ps == 0) {
2018 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &=
2019 ~IEEE80211_P2P_OPPPS_ENABLE_BIT;
Johannes Berg339afbf2012-11-14 15:21:17 +01002020 changed |= BSS_CHANGED_P2P_PS;
2021 }
2022
Jouni Malinen9f1ba902008-08-07 20:07:01 +03002023 ieee80211_bss_info_change_notify(sdata, changed);
2024
2025 return 0;
2026}
2027
Jouni Malinen31888482008-10-30 16:59:24 +02002028static int ieee80211_set_txq_params(struct wiphy *wiphy,
Eliad Pellerf70f01c2011-09-25 20:06:53 +03002029 struct net_device *dev,
Jouni Malinen31888482008-10-30 16:59:24 +02002030 struct ieee80211_txq_params *params)
2031{
2032 struct ieee80211_local *local = wiphy_priv(wiphy);
Eliad Pellerf6f3def2011-09-25 20:06:54 +03002033 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Jouni Malinen31888482008-10-30 16:59:24 +02002034 struct ieee80211_tx_queue_params p;
2035
2036 if (!local->ops->conf_tx)
2037 return -EOPNOTSUPP;
2038
Johannes Berg54bcbc62012-03-28 11:04:25 +02002039 if (local->hw.queues < IEEE80211_NUM_ACS)
2040 return -EOPNOTSUPP;
2041
Jouni Malinen31888482008-10-30 16:59:24 +02002042 memset(&p, 0, sizeof(p));
2043 p.aifs = params->aifs;
2044 p.cw_max = params->cwmax;
2045 p.cw_min = params->cwmin;
2046 p.txop = params->txop;
Kalle Valoab133152010-01-12 10:42:31 +02002047
2048 /*
2049 * Setting tx queue params disables u-apsd because it's only
2050 * called in master mode.
2051 */
2052 p.uapsd = false;
2053
Johannes Berga3304b02012-03-28 11:04:24 +02002054 sdata->tx_conf[params->ac] = p;
2055 if (drv_conf_tx(local, sdata, params->ac, &p)) {
Joe Perches0fb9a9e2010-08-20 16:25:38 -07002056 wiphy_debug(local->hw.wiphy,
Johannes Berga3304b02012-03-28 11:04:24 +02002057 "failed to set TX queue parameters for AC %d\n",
2058 params->ac);
Jouni Malinen31888482008-10-30 16:59:24 +02002059 return -EINVAL;
2060 }
2061
Johannes Berg7d257452012-07-06 17:37:43 +02002062 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_QOS);
2063
Jouni Malinen31888482008-10-30 16:59:24 +02002064 return 0;
2065}
2066
Bob Copeland665af4f2009-01-19 11:20:53 -05002067#ifdef CONFIG_PM
Johannes Bergff1b6e62011-05-04 15:37:28 +02002068static int ieee80211_suspend(struct wiphy *wiphy,
2069 struct cfg80211_wowlan *wowlan)
Bob Copeland665af4f2009-01-19 11:20:53 -05002070{
Johannes Bergeecc4802011-05-04 15:37:29 +02002071 return __ieee80211_suspend(wiphy_priv(wiphy), wowlan);
Bob Copeland665af4f2009-01-19 11:20:53 -05002072}
2073
2074static int ieee80211_resume(struct wiphy *wiphy)
2075{
2076 return __ieee80211_resume(wiphy_priv(wiphy));
2077}
2078#else
2079#define ieee80211_suspend NULL
2080#define ieee80211_resume NULL
2081#endif
2082
Johannes Berg2a519312009-02-10 21:25:55 +01002083static int ieee80211_scan(struct wiphy *wiphy,
Johannes Berg2a519312009-02-10 21:25:55 +01002084 struct cfg80211_scan_request *req)
2085{
Johannes Bergfd014282012-06-18 19:17:03 +02002086 struct ieee80211_sub_if_data *sdata;
2087
2088 sdata = IEEE80211_WDEV_TO_SUB_IF(req->wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01002089
Johannes Berg2ca27bc2010-09-16 14:58:23 +02002090 switch (ieee80211_vif_type_p2p(&sdata->vif)) {
2091 case NL80211_IFTYPE_STATION:
2092 case NL80211_IFTYPE_ADHOC:
2093 case NL80211_IFTYPE_MESH_POINT:
2094 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Bergf142c6b2012-06-18 20:07:15 +02002095 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg2ca27bc2010-09-16 14:58:23 +02002096 break;
2097 case NL80211_IFTYPE_P2P_GO:
2098 if (sdata->local->ops->hw_scan)
2099 break;
Johannes Berge9d77322011-02-01 15:35:36 +01002100 /*
2101 * FIXME: implement NoA while scanning in software,
2102 * for now fall through to allow scanning only when
2103 * beaconing hasn't been configured yet
2104 */
Johannes Berg2ca27bc2010-09-16 14:58:23 +02002105 case NL80211_IFTYPE_AP:
Antonio Quartulli5c95b942012-10-16 08:39:22 +02002106 /*
2107 * If the scan has been forced (and the driver supports
2108 * forcing), don't care about being beaconing already.
2109 * This will create problems to the attached stations (e.g. all
2110 * the frames sent while scanning on other channel will be
2111 * lost)
2112 */
2113 if (sdata->u.ap.beacon &&
2114 (!(wiphy->features & NL80211_FEATURE_AP_SCAN) ||
2115 !(req->flags & NL80211_SCAN_FLAG_AP)))
Johannes Berg2ca27bc2010-09-16 14:58:23 +02002116 return -EOPNOTSUPP;
2117 break;
2118 default:
2119 return -EOPNOTSUPP;
2120 }
Johannes Berg2a519312009-02-10 21:25:55 +01002121
2122 return ieee80211_request_scan(sdata, req);
2123}
2124
Luciano Coelho79f460c2011-05-11 17:09:36 +03002125static int
2126ieee80211_sched_scan_start(struct wiphy *wiphy,
2127 struct net_device *dev,
2128 struct cfg80211_sched_scan_request *req)
2129{
2130 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2131
2132 if (!sdata->local->ops->sched_scan_start)
2133 return -EOPNOTSUPP;
2134
2135 return ieee80211_request_sched_scan_start(sdata, req);
2136}
2137
2138static int
Luciano Coelho85a99942011-05-12 16:28:29 +03002139ieee80211_sched_scan_stop(struct wiphy *wiphy, struct net_device *dev)
Luciano Coelho79f460c2011-05-11 17:09:36 +03002140{
2141 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2142
2143 if (!sdata->local->ops->sched_scan_stop)
2144 return -EOPNOTSUPP;
2145
Luciano Coelho85a99942011-05-12 16:28:29 +03002146 return ieee80211_request_sched_scan_stop(sdata);
Luciano Coelho79f460c2011-05-11 17:09:36 +03002147}
2148
Jouni Malinen636a5d32009-03-19 13:39:22 +02002149static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev,
2150 struct cfg80211_auth_request *req)
2151{
Johannes Berg77fdaa12009-07-07 03:45:17 +02002152 return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002153}
2154
2155static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev,
2156 struct cfg80211_assoc_request *req)
2157{
Johannes Berg77fdaa12009-07-07 03:45:17 +02002158 return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002159}
2160
2161static int ieee80211_deauth(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002162 struct cfg80211_deauth_request *req)
Jouni Malinen636a5d32009-03-19 13:39:22 +02002163{
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002164 return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002165}
2166
2167static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002168 struct cfg80211_disassoc_request *req)
Jouni Malinen636a5d32009-03-19 13:39:22 +02002169{
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002170 return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002171}
2172
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002173static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
2174 struct cfg80211_ibss_params *params)
2175{
Johannes Berg55de9082012-07-26 17:24:39 +02002176 return ieee80211_ibss_join(IEEE80211_DEV_TO_SUB_IF(dev), params);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002177}
2178
2179static int ieee80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev)
2180{
Johannes Berg55de9082012-07-26 17:24:39 +02002181 return ieee80211_ibss_leave(IEEE80211_DEV_TO_SUB_IF(dev));
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002182}
2183
Antonio Quartulli391e53e2012-11-02 13:27:49 +01002184static int ieee80211_set_mcast_rate(struct wiphy *wiphy, struct net_device *dev,
2185 int rate[IEEE80211_NUM_BANDS])
2186{
2187 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2188
Cong Ding9887dbf2013-02-06 17:23:45 +01002189 memcpy(sdata->vif.bss_conf.mcast_rate, rate,
2190 sizeof(int) * IEEE80211_NUM_BANDS);
Antonio Quartulli391e53e2012-11-02 13:27:49 +01002191
2192 return 0;
2193}
2194
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002195static int ieee80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
2196{
2197 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg24487982009-04-23 18:52:52 +02002198 int err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002199
Arik Nemtsovf23a4782010-11-08 11:51:06 +02002200 if (changed & WIPHY_PARAM_FRAG_THRESHOLD) {
2201 err = drv_set_frag_threshold(local, wiphy->frag_threshold);
2202
2203 if (err)
2204 return err;
2205 }
2206
Lukáš Turek310bc672009-12-21 22:50:48 +01002207 if (changed & WIPHY_PARAM_COVERAGE_CLASS) {
2208 err = drv_set_coverage_class(local, wiphy->coverage_class);
2209
2210 if (err)
2211 return err;
2212 }
2213
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002214 if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
Johannes Berg24487982009-04-23 18:52:52 +02002215 err = drv_set_rts_threshold(local, wiphy->rts_threshold);
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002216
Johannes Berg24487982009-04-23 18:52:52 +02002217 if (err)
2218 return err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002219 }
2220
Johannes Berg8bc83c22012-11-09 18:38:32 +01002221 if (changed & WIPHY_PARAM_RETRY_SHORT) {
2222 if (wiphy->retry_short > IEEE80211_MAX_TX_RETRY)
2223 return -EINVAL;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002224 local->hw.conf.short_frame_max_tx_count = wiphy->retry_short;
Johannes Berg8bc83c22012-11-09 18:38:32 +01002225 }
2226 if (changed & WIPHY_PARAM_RETRY_LONG) {
2227 if (wiphy->retry_long > IEEE80211_MAX_TX_RETRY)
2228 return -EINVAL;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002229 local->hw.conf.long_frame_max_tx_count = wiphy->retry_long;
Johannes Berg8bc83c22012-11-09 18:38:32 +01002230 }
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002231 if (changed &
2232 (WIPHY_PARAM_RETRY_SHORT | WIPHY_PARAM_RETRY_LONG))
2233 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
2234
2235 return 0;
2236}
2237
Johannes Berg7643a2c2009-06-02 13:01:39 +02002238static int ieee80211_set_tx_power(struct wiphy *wiphy,
Johannes Bergc8442112012-10-24 10:17:18 +02002239 struct wireless_dev *wdev,
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002240 enum nl80211_tx_power_setting type, int mbm)
Johannes Berg7643a2c2009-06-02 13:01:39 +02002241{
2242 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002243 struct ieee80211_sub_if_data *sdata;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002244
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002245 if (wdev) {
2246 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2247
2248 switch (type) {
2249 case NL80211_TX_POWER_AUTOMATIC:
2250 sdata->user_power_level = IEEE80211_UNSET_POWER_LEVEL;
2251 break;
2252 case NL80211_TX_POWER_LIMITED:
2253 case NL80211_TX_POWER_FIXED:
2254 if (mbm < 0 || (mbm % 100))
2255 return -EOPNOTSUPP;
2256 sdata->user_power_level = MBM_TO_DBM(mbm);
2257 break;
2258 }
2259
2260 ieee80211_recalc_txpower(sdata);
2261
2262 return 0;
2263 }
Johannes Berg55de9082012-07-26 17:24:39 +02002264
Johannes Berg7643a2c2009-06-02 13:01:39 +02002265 switch (type) {
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002266 case NL80211_TX_POWER_AUTOMATIC:
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002267 local->user_power_level = IEEE80211_UNSET_POWER_LEVEL;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002268 break;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002269 case NL80211_TX_POWER_LIMITED:
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002270 case NL80211_TX_POWER_FIXED:
2271 if (mbm < 0 || (mbm % 100))
2272 return -EOPNOTSUPP;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002273 local->user_power_level = MBM_TO_DBM(mbm);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002274 break;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002275 }
2276
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002277 mutex_lock(&local->iflist_mtx);
2278 list_for_each_entry(sdata, &local->interfaces, list)
2279 sdata->user_power_level = local->user_power_level;
2280 list_for_each_entry(sdata, &local->interfaces, list)
2281 ieee80211_recalc_txpower(sdata);
2282 mutex_unlock(&local->iflist_mtx);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002283
2284 return 0;
2285}
2286
Johannes Bergc8442112012-10-24 10:17:18 +02002287static int ieee80211_get_tx_power(struct wiphy *wiphy,
2288 struct wireless_dev *wdev,
2289 int *dbm)
Johannes Berg7643a2c2009-06-02 13:01:39 +02002290{
2291 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002292 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002293
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002294 if (!local->use_chanctx)
2295 *dbm = local->hw.conf.power_level;
2296 else
2297 *dbm = sdata->vif.bss_conf.txpower;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002298
Johannes Berg7643a2c2009-06-02 13:01:39 +02002299 return 0;
2300}
2301
Johannes Bergab737a42009-07-01 21:26:58 +02002302static int ieee80211_set_wds_peer(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg388ac772010-10-07 13:11:09 +02002303 const u8 *addr)
Johannes Bergab737a42009-07-01 21:26:58 +02002304{
2305 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2306
2307 memcpy(&sdata->u.wds.remote_addr, addr, ETH_ALEN);
2308
2309 return 0;
2310}
2311
Johannes Berg1f87f7d2009-06-02 13:01:41 +02002312static void ieee80211_rfkill_poll(struct wiphy *wiphy)
2313{
2314 struct ieee80211_local *local = wiphy_priv(wiphy);
2315
2316 drv_rfkill_poll(local);
2317}
2318
Johannes Bergaff89a92009-07-01 21:26:51 +02002319#ifdef CONFIG_NL80211_TESTMODE
David Spinadelfc73f112013-07-31 18:04:15 +03002320static int ieee80211_testmode_cmd(struct wiphy *wiphy,
2321 struct wireless_dev *wdev,
2322 void *data, int len)
Johannes Bergaff89a92009-07-01 21:26:51 +02002323{
2324 struct ieee80211_local *local = wiphy_priv(wiphy);
David Spinadel52981cd2013-07-31 18:06:22 +03002325 struct ieee80211_vif *vif = NULL;
Johannes Bergaff89a92009-07-01 21:26:51 +02002326
2327 if (!local->ops->testmode_cmd)
2328 return -EOPNOTSUPP;
2329
David Spinadel52981cd2013-07-31 18:06:22 +03002330 if (wdev) {
2331 struct ieee80211_sub_if_data *sdata;
2332
2333 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2334 if (sdata->flags & IEEE80211_SDATA_IN_DRIVER)
2335 vif = &sdata->vif;
2336 }
2337
2338 return local->ops->testmode_cmd(&local->hw, vif, data, len);
Johannes Bergaff89a92009-07-01 21:26:51 +02002339}
Wey-Yi Guy71063f02011-05-20 09:05:54 -07002340
2341static int ieee80211_testmode_dump(struct wiphy *wiphy,
2342 struct sk_buff *skb,
2343 struct netlink_callback *cb,
2344 void *data, int len)
2345{
2346 struct ieee80211_local *local = wiphy_priv(wiphy);
2347
2348 if (!local->ops->testmode_dump)
2349 return -EOPNOTSUPP;
2350
2351 return local->ops->testmode_dump(&local->hw, skb, cb, data, len);
2352}
Johannes Bergaff89a92009-07-01 21:26:51 +02002353#endif
2354
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002355int __ieee80211_request_smps_ap(struct ieee80211_sub_if_data *sdata,
2356 enum ieee80211_smps_mode smps_mode)
2357{
2358 struct sta_info *sta;
2359 enum ieee80211_smps_mode old_req;
2360 int i;
2361
2362 if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_AP))
2363 return -EINVAL;
2364
2365 if (sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT)
2366 return 0;
2367
2368 old_req = sdata->u.ap.req_smps;
2369 sdata->u.ap.req_smps = smps_mode;
2370
2371 /* AUTOMATIC doesn't mean much for AP - don't allow it */
2372 if (old_req == smps_mode ||
2373 smps_mode == IEEE80211_SMPS_AUTOMATIC)
2374 return 0;
2375
2376 /* If no associated stations, there's no need to do anything */
2377 if (!atomic_read(&sdata->u.ap.num_mcast_sta)) {
2378 sdata->smps_mode = smps_mode;
2379 ieee80211_queue_work(&sdata->local->hw, &sdata->recalc_smps);
2380 return 0;
2381 }
2382
2383 ht_dbg(sdata,
2384 "SMSP %d requested in AP mode, sending Action frame to %d stations\n",
2385 smps_mode, atomic_read(&sdata->u.ap.num_mcast_sta));
2386
2387 mutex_lock(&sdata->local->sta_mtx);
2388 for (i = 0; i < STA_HASH_SIZE; i++) {
2389 for (sta = rcu_dereference_protected(sdata->local->sta_hash[i],
2390 lockdep_is_held(&sdata->local->sta_mtx));
2391 sta;
2392 sta = rcu_dereference_protected(sta->hnext,
2393 lockdep_is_held(&sdata->local->sta_mtx))) {
2394 /*
2395 * Only stations associated to our AP and
2396 * associated VLANs
2397 */
2398 if (sta->sdata->bss != &sdata->u.ap)
2399 continue;
2400
2401 /* This station doesn't support MIMO - skip it */
2402 if (sta_info_tx_streams(sta) == 1)
2403 continue;
2404
2405 /*
2406 * Don't wake up a STA just to send the action frame
2407 * unless we are getting more restrictive.
2408 */
2409 if (test_sta_flag(sta, WLAN_STA_PS_STA) &&
2410 !ieee80211_smps_is_restrictive(sta->known_smps_mode,
2411 smps_mode)) {
2412 ht_dbg(sdata,
2413 "Won't send SMPS to sleeping STA %pM\n",
2414 sta->sta.addr);
2415 continue;
2416 }
2417
2418 /*
2419 * If the STA is not authorized, wait until it gets
2420 * authorized and the action frame will be sent then.
2421 */
2422 if (!test_sta_flag(sta, WLAN_STA_AUTHORIZED))
2423 continue;
2424
2425 ht_dbg(sdata, "Sending SMPS to %pM\n", sta->sta.addr);
2426 ieee80211_send_smps_action(sdata, smps_mode,
2427 sta->sta.addr,
2428 sdata->vif.bss_conf.bssid);
2429 }
2430 }
2431 mutex_unlock(&sdata->local->sta_mtx);
2432
2433 sdata->smps_mode = smps_mode;
2434 ieee80211_queue_work(&sdata->local->hw, &sdata->recalc_smps);
2435
2436 return 0;
2437}
2438
2439int __ieee80211_request_smps_mgd(struct ieee80211_sub_if_data *sdata,
2440 enum ieee80211_smps_mode smps_mode)
Johannes Berg0f782312009-12-01 13:37:02 +01002441{
2442 const u8 *ap;
2443 enum ieee80211_smps_mode old_req;
2444 int err;
2445
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002446 lockdep_assert_held(&sdata->wdev.mtx);
Johannes Berg243e6df2011-04-19 20:44:04 +02002447
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002448 if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_STATION))
2449 return -EINVAL;
2450
Johannes Berg0f782312009-12-01 13:37:02 +01002451 old_req = sdata->u.mgd.req_smps;
2452 sdata->u.mgd.req_smps = smps_mode;
2453
2454 if (old_req == smps_mode &&
2455 smps_mode != IEEE80211_SMPS_AUTOMATIC)
2456 return 0;
2457
2458 /*
2459 * If not associated, or current association is not an HT
Johannes Berg04ecd252012-09-11 14:34:12 +02002460 * association, there's no need to do anything, just store
2461 * the new value until we associate.
Johannes Berg0f782312009-12-01 13:37:02 +01002462 */
2463 if (!sdata->u.mgd.associated ||
Johannes Berg4bf88532012-11-09 11:39:59 +01002464 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT)
Johannes Berg0f782312009-12-01 13:37:02 +01002465 return 0;
Johannes Berg0f782312009-12-01 13:37:02 +01002466
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002467 ap = sdata->u.mgd.associated->bssid;
Johannes Berg0f782312009-12-01 13:37:02 +01002468
2469 if (smps_mode == IEEE80211_SMPS_AUTOMATIC) {
2470 if (sdata->u.mgd.powersave)
2471 smps_mode = IEEE80211_SMPS_DYNAMIC;
2472 else
2473 smps_mode = IEEE80211_SMPS_OFF;
2474 }
2475
2476 /* send SM PS frame to AP */
2477 err = ieee80211_send_smps_action(sdata, smps_mode,
2478 ap, ap);
2479 if (err)
2480 sdata->u.mgd.req_smps = old_req;
2481
2482 return err;
2483}
2484
Johannes Bergbc92afd2009-07-01 21:26:57 +02002485static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev,
2486 bool enabled, int timeout)
2487{
2488 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2489 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Bergbc92afd2009-07-01 21:26:57 +02002490
Bob Copeland2d3db212013-10-29 18:11:59 -04002491 if (sdata->vif.type != NL80211_IFTYPE_STATION)
Benoit Papillaulte5de30c2010-01-15 12:21:37 +01002492 return -EOPNOTSUPP;
2493
Johannes Bergbc92afd2009-07-01 21:26:57 +02002494 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
2495 return -EOPNOTSUPP;
2496
2497 if (enabled == sdata->u.mgd.powersave &&
Juuso Oikarinenff616382010-06-09 09:51:52 +03002498 timeout == local->dynamic_ps_forced_timeout)
Johannes Bergbc92afd2009-07-01 21:26:57 +02002499 return 0;
2500
2501 sdata->u.mgd.powersave = enabled;
Juuso Oikarinenff616382010-06-09 09:51:52 +03002502 local->dynamic_ps_forced_timeout = timeout;
Johannes Bergbc92afd2009-07-01 21:26:57 +02002503
Johannes Berg0f782312009-12-01 13:37:02 +01002504 /* no change, but if automatic follow powersave */
Johannes Berged405be2013-06-03 13:51:59 +02002505 sdata_lock(sdata);
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002506 __ieee80211_request_smps_mgd(sdata, sdata->u.mgd.req_smps);
Johannes Berged405be2013-06-03 13:51:59 +02002507 sdata_unlock(sdata);
Johannes Berg0f782312009-12-01 13:37:02 +01002508
Johannes Bergbc92afd2009-07-01 21:26:57 +02002509 if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
2510 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2511
2512 ieee80211_recalc_ps(local, -1);
Eliad Pellerab095872012-07-27 12:33:22 +03002513 ieee80211_recalc_ps_vif(sdata);
Johannes Bergbc92afd2009-07-01 21:26:57 +02002514
2515 return 0;
2516}
2517
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002518static int ieee80211_set_cqm_rssi_config(struct wiphy *wiphy,
2519 struct net_device *dev,
2520 s32 rssi_thold, u32 rssi_hyst)
2521{
2522 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002523 struct ieee80211_vif *vif = &sdata->vif;
2524 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
2525
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002526 if (rssi_thold == bss_conf->cqm_rssi_thold &&
2527 rssi_hyst == bss_conf->cqm_rssi_hyst)
2528 return 0;
2529
2530 bss_conf->cqm_rssi_thold = rssi_thold;
2531 bss_conf->cqm_rssi_hyst = rssi_hyst;
2532
2533 /* tell the driver upon association, unless already associated */
Johannes Bergea086352012-01-19 09:29:58 +01002534 if (sdata->u.mgd.associated &&
2535 sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002536 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_CQM);
2537
2538 return 0;
2539}
2540
Johannes Berg99303802009-07-01 21:26:59 +02002541static int ieee80211_set_bitrate_mask(struct wiphy *wiphy,
2542 struct net_device *dev,
2543 const u8 *addr,
2544 const struct cfg80211_bitrate_mask *mask)
2545{
2546 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2547 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +05302548 int i, ret;
Johannes Berg99303802009-07-01 21:26:59 +02002549
Eliad Peller554a43d2012-06-12 12:41:15 +03002550 if (!ieee80211_sdata_running(sdata))
2551 return -ENETDOWN;
2552
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +05302553 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL) {
2554 ret = drv_set_bitrate_mask(local, sdata, mask);
2555 if (ret)
2556 return ret;
2557 }
Johannes Berg99303802009-07-01 21:26:59 +02002558
Simon Wunderlich19468412012-01-28 17:25:33 +01002559 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
Felix Fietkau2ffbe6d2013-04-16 13:38:42 +02002560 struct ieee80211_supported_band *sband = wiphy->bands[i];
2561 int j;
2562
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002563 sdata->rc_rateidx_mask[i] = mask->control[i].legacy;
Simon Wunderlich19468412012-01-28 17:25:33 +01002564 memcpy(sdata->rc_rateidx_mcs_mask[i], mask->control[i].mcs,
2565 sizeof(mask->control[i].mcs));
Felix Fietkau2ffbe6d2013-04-16 13:38:42 +02002566
2567 sdata->rc_has_mcs_mask[i] = false;
2568 if (!sband)
2569 continue;
2570
2571 for (j = 0; j < IEEE80211_HT_MCS_MASK_LEN; j++)
2572 if (~sdata->rc_rateidx_mcs_mask[i][j]) {
2573 sdata->rc_has_mcs_mask[i] = true;
2574 break;
2575 }
Simon Wunderlich19468412012-01-28 17:25:33 +01002576 }
Johannes Berg99303802009-07-01 21:26:59 +02002577
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002578 return 0;
Johannes Berg99303802009-07-01 21:26:59 +02002579}
2580
Johannes Berg2eb278e2012-06-05 14:28:42 +02002581static int ieee80211_start_roc_work(struct ieee80211_local *local,
2582 struct ieee80211_sub_if_data *sdata,
2583 struct ieee80211_channel *channel,
Johannes Berg2eb278e2012-06-05 14:28:42 +02002584 unsigned int duration, u64 *cookie,
Ilan Peerd339d5c2013-02-12 09:34:13 +02002585 struct sk_buff *txskb,
2586 enum ieee80211_roc_type type)
Johannes Berg21f83582010-12-18 17:20:47 +01002587{
Johannes Berg2eb278e2012-06-05 14:28:42 +02002588 struct ieee80211_roc_work *roc, *tmp;
2589 bool queued = false;
Johannes Berg21f83582010-12-18 17:20:47 +01002590 int ret;
Johannes Berg21f83582010-12-18 17:20:47 +01002591
2592 lockdep_assert_held(&local->mtx);
2593
Johannes Bergfe57d9f2012-07-26 14:55:08 +02002594 if (local->use_chanctx && !local->ops->remain_on_channel)
2595 return -EOPNOTSUPP;
2596
Johannes Berg2eb278e2012-06-05 14:28:42 +02002597 roc = kzalloc(sizeof(*roc), GFP_KERNEL);
2598 if (!roc)
2599 return -ENOMEM;
Johannes Berg21f83582010-12-18 17:20:47 +01002600
Johannes Berg2eb278e2012-06-05 14:28:42 +02002601 roc->chan = channel;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002602 roc->duration = duration;
2603 roc->req_duration = duration;
2604 roc->frame = txskb;
Ilan Peerd339d5c2013-02-12 09:34:13 +02002605 roc->type = type;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002606 roc->mgmt_tx_cookie = (unsigned long)txskb;
2607 roc->sdata = sdata;
2608 INIT_DELAYED_WORK(&roc->work, ieee80211_sw_roc_work);
2609 INIT_LIST_HEAD(&roc->dependents);
2610
2611 /* if there's one pending or we're scanning, queue this one */
Simon Wunderlich164eb022013-02-08 18:16:20 +01002612 if (!list_empty(&local->roc_list) ||
2613 local->scanning || local->radar_detect_enabled)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002614 goto out_check_combine;
2615
2616 /* if not HW assist, just queue & schedule work */
2617 if (!local->ops->remain_on_channel) {
2618 ieee80211_queue_delayed_work(&local->hw, &roc->work, 0);
2619 goto out_queue;
Johannes Berg21f83582010-12-18 17:20:47 +01002620 }
2621
Johannes Berg2eb278e2012-06-05 14:28:42 +02002622 /* otherwise actually kick it off here (for error handling) */
2623
2624 /*
2625 * If the duration is zero, then the driver
2626 * wouldn't actually do anything. Set it to
2627 * 10 for now.
2628 *
2629 * TODO: cancel the off-channel operation
2630 * when we get the SKB's TX status and
2631 * the wait time was zero before.
2632 */
2633 if (!duration)
2634 duration = 10;
2635
Ilan Peerd339d5c2013-02-12 09:34:13 +02002636 ret = drv_remain_on_channel(local, sdata, channel, duration, type);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002637 if (ret) {
2638 kfree(roc);
2639 return ret;
2640 }
2641
2642 roc->started = true;
2643 goto out_queue;
2644
2645 out_check_combine:
2646 list_for_each_entry(tmp, &local->roc_list, list) {
Johannes Berg42d97a52012-11-08 18:31:02 +01002647 if (tmp->chan != channel || tmp->sdata != sdata)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002648 continue;
2649
2650 /*
2651 * Extend this ROC if possible:
2652 *
2653 * If it hasn't started yet, just increase the duration
2654 * and add the new one to the list of dependents.
Ilan Peerd339d5c2013-02-12 09:34:13 +02002655 * If the type of the new ROC has higher priority, modify the
2656 * type of the previous one to match that of the new one.
Johannes Berg2eb278e2012-06-05 14:28:42 +02002657 */
2658 if (!tmp->started) {
2659 list_add_tail(&roc->list, &tmp->dependents);
2660 tmp->duration = max(tmp->duration, roc->duration);
Ilan Peerd339d5c2013-02-12 09:34:13 +02002661 tmp->type = max(tmp->type, roc->type);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002662 queued = true;
2663 break;
2664 }
2665
2666 /* If it has already started, it's more difficult ... */
2667 if (local->ops->remain_on_channel) {
2668 unsigned long j = jiffies;
2669
2670 /*
2671 * In the offloaded ROC case, if it hasn't begun, add
2672 * this new one to the dependent list to be handled
Ilan Peerd339d5c2013-02-12 09:34:13 +02002673 * when the master one begins. If it has begun,
Johannes Berg2eb278e2012-06-05 14:28:42 +02002674 * check that there's still a minimum time left and
2675 * if so, start this one, transmitting the frame, but
Ilan Peerd339d5c2013-02-12 09:34:13 +02002676 * add it to the list directly after this one with
Johannes Berg2eb278e2012-06-05 14:28:42 +02002677 * a reduced time so we'll ask the driver to execute
2678 * it right after finishing the previous one, in the
2679 * hope that it'll also be executed right afterwards,
2680 * effectively extending the old one.
2681 * If there's no minimum time left, just add it to the
2682 * normal list.
Ilan Peerd339d5c2013-02-12 09:34:13 +02002683 * TODO: the ROC type is ignored here, assuming that it
2684 * is better to immediately use the current ROC.
Johannes Berg2eb278e2012-06-05 14:28:42 +02002685 */
2686 if (!tmp->hw_begun) {
2687 list_add_tail(&roc->list, &tmp->dependents);
2688 queued = true;
2689 break;
2690 }
2691
2692 if (time_before(j + IEEE80211_ROC_MIN_LEFT,
2693 tmp->hw_start_time +
2694 msecs_to_jiffies(tmp->duration))) {
2695 int new_dur;
2696
2697 ieee80211_handle_roc_started(roc);
2698
2699 new_dur = roc->duration -
2700 jiffies_to_msecs(tmp->hw_start_time +
2701 msecs_to_jiffies(
2702 tmp->duration) -
2703 j);
2704
2705 if (new_dur > 0) {
2706 /* add right after tmp */
2707 list_add(&roc->list, &tmp->list);
2708 } else {
2709 list_add_tail(&roc->list,
2710 &tmp->dependents);
2711 }
2712 queued = true;
2713 }
2714 } else if (del_timer_sync(&tmp->work.timer)) {
2715 unsigned long new_end;
2716
2717 /*
2718 * In the software ROC case, cancel the timer, if
2719 * that fails then the finish work is already
2720 * queued/pending and thus we queue the new ROC
2721 * normally, if that succeeds then we can extend
2722 * the timer duration and TX the frame (if any.)
2723 */
2724
2725 list_add_tail(&roc->list, &tmp->dependents);
2726 queued = true;
2727
2728 new_end = jiffies + msecs_to_jiffies(roc->duration);
2729
2730 /* ok, it was started & we canceled timer */
2731 if (time_after(new_end, tmp->work.timer.expires))
2732 mod_timer(&tmp->work.timer, new_end);
2733 else
2734 add_timer(&tmp->work.timer);
2735
2736 ieee80211_handle_roc_started(roc);
2737 }
2738 break;
2739 }
2740
2741 out_queue:
2742 if (!queued)
2743 list_add_tail(&roc->list, &local->roc_list);
2744
2745 /*
Johannes Berg50febf62012-10-26 16:13:06 +02002746 * cookie is either the roc cookie (for normal roc)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002747 * or the SKB (for mgmt TX)
2748 */
Johannes Berg50febf62012-10-26 16:13:06 +02002749 if (!txskb) {
2750 /* local->mtx protects this */
2751 local->roc_cookie_counter++;
2752 roc->cookie = local->roc_cookie_counter;
2753 /* wow, you wrapped 64 bits ... more likely a bug */
2754 if (WARN_ON(roc->cookie == 0)) {
2755 roc->cookie = 1;
2756 local->roc_cookie_counter++;
2757 }
2758 *cookie = roc->cookie;
2759 } else {
Johannes Berg2eb278e2012-06-05 14:28:42 +02002760 *cookie = (unsigned long)txskb;
Johannes Berg50febf62012-10-26 16:13:06 +02002761 }
Johannes Berg2eb278e2012-06-05 14:28:42 +02002762
2763 return 0;
Johannes Berg21f83582010-12-18 17:20:47 +01002764}
2765
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002766static int ieee80211_remain_on_channel(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02002767 struct wireless_dev *wdev,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002768 struct ieee80211_channel *chan,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002769 unsigned int duration,
2770 u64 *cookie)
2771{
Johannes Berg71bbc992012-06-15 15:30:18 +02002772 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg21f83582010-12-18 17:20:47 +01002773 struct ieee80211_local *local = sdata->local;
Johannes Berg21f83582010-12-18 17:20:47 +01002774 int ret;
2775
Johannes Berg2eb278e2012-06-05 14:28:42 +02002776 mutex_lock(&local->mtx);
Johannes Berg42d97a52012-11-08 18:31:02 +01002777 ret = ieee80211_start_roc_work(local, sdata, chan,
Ilan Peerd339d5c2013-02-12 09:34:13 +02002778 duration, cookie, NULL,
2779 IEEE80211_ROC_TYPE_NORMAL);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002780 mutex_unlock(&local->mtx);
Johannes Berg21f83582010-12-18 17:20:47 +01002781
Johannes Berg2eb278e2012-06-05 14:28:42 +02002782 return ret;
2783}
2784
2785static int ieee80211_cancel_roc(struct ieee80211_local *local,
2786 u64 cookie, bool mgmt_tx)
2787{
2788 struct ieee80211_roc_work *roc, *tmp, *found = NULL;
2789 int ret;
2790
2791 mutex_lock(&local->mtx);
2792 list_for_each_entry_safe(roc, tmp, &local->roc_list, list) {
Johannes Berge979e332012-06-11 17:09:41 +02002793 struct ieee80211_roc_work *dep, *tmp2;
2794
2795 list_for_each_entry_safe(dep, tmp2, &roc->dependents, list) {
Johannes Berg50febf62012-10-26 16:13:06 +02002796 if (!mgmt_tx && dep->cookie != cookie)
Johannes Berge979e332012-06-11 17:09:41 +02002797 continue;
2798 else if (mgmt_tx && dep->mgmt_tx_cookie != cookie)
2799 continue;
2800 /* found dependent item -- just remove it */
2801 list_del(&dep->list);
2802 mutex_unlock(&local->mtx);
2803
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002804 ieee80211_roc_notify_destroy(dep, true);
Johannes Berge979e332012-06-11 17:09:41 +02002805 return 0;
2806 }
2807
Johannes Berg50febf62012-10-26 16:13:06 +02002808 if (!mgmt_tx && roc->cookie != cookie)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002809 continue;
2810 else if (mgmt_tx && roc->mgmt_tx_cookie != cookie)
2811 continue;
2812
2813 found = roc;
2814 break;
2815 }
2816
2817 if (!found) {
2818 mutex_unlock(&local->mtx);
Johannes Berg21f83582010-12-18 17:20:47 +01002819 return -ENOENT;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002820 }
Johannes Berg21f83582010-12-18 17:20:47 +01002821
Johannes Berge979e332012-06-11 17:09:41 +02002822 /*
2823 * We found the item to cancel, so do that. Note that it
2824 * may have dependents, which we also cancel (and send
2825 * the expired signal for.) Not doing so would be quite
2826 * tricky here, but we may need to fix it later.
2827 */
2828
Johannes Berg2eb278e2012-06-05 14:28:42 +02002829 if (local->ops->remain_on_channel) {
2830 if (found->started) {
2831 ret = drv_cancel_remain_on_channel(local);
2832 if (WARN_ON_ONCE(ret)) {
2833 mutex_unlock(&local->mtx);
2834 return ret;
2835 }
2836 }
Johannes Berg21f83582010-12-18 17:20:47 +01002837
Johannes Berg2eb278e2012-06-05 14:28:42 +02002838 list_del(&found->list);
2839
Johannes Berg0f6b3f52012-06-20 20:11:33 +02002840 if (found->started)
2841 ieee80211_start_next_roc(local);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002842 mutex_unlock(&local->mtx);
2843
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002844 ieee80211_roc_notify_destroy(found, true);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002845 } else {
2846 /* work may be pending so use it all the time */
2847 found->abort = true;
2848 ieee80211_queue_delayed_work(&local->hw, &found->work, 0);
2849
2850 mutex_unlock(&local->mtx);
2851
2852 /* work will clean up etc */
2853 flush_delayed_work(&found->work);
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002854 WARN_ON(!found->to_be_freed);
2855 kfree(found);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002856 }
Johannes Berg21f83582010-12-18 17:20:47 +01002857
Johannes Berg21f83582010-12-18 17:20:47 +01002858 return 0;
2859}
2860
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002861static int ieee80211_cancel_remain_on_channel(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02002862 struct wireless_dev *wdev,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002863 u64 cookie)
2864{
Johannes Berg71bbc992012-06-15 15:30:18 +02002865 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg21f83582010-12-18 17:20:47 +01002866 struct ieee80211_local *local = sdata->local;
2867
Johannes Berg2eb278e2012-06-05 14:28:42 +02002868 return ieee80211_cancel_roc(local, cookie, false);
Johannes Bergf30221e2010-11-25 10:02:30 +01002869}
2870
Simon Wunderlich164eb022013-02-08 18:16:20 +01002871static int ieee80211_start_radar_detection(struct wiphy *wiphy,
2872 struct net_device *dev,
2873 struct cfg80211_chan_def *chandef)
2874{
2875 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2876 struct ieee80211_local *local = sdata->local;
2877 unsigned long timeout;
2878 int err;
2879
2880 if (!list_empty(&local->roc_list) || local->scanning)
2881 return -EBUSY;
2882
2883 /* whatever, but channel contexts should not complain about that one */
2884 sdata->smps_mode = IEEE80211_SMPS_OFF;
2885 sdata->needed_rx_chains = local->rx_chains;
2886 sdata->radar_required = true;
2887
2888 mutex_lock(&local->iflist_mtx);
2889 err = ieee80211_vif_use_channel(sdata, chandef,
2890 IEEE80211_CHANCTX_SHARED);
2891 mutex_unlock(&local->iflist_mtx);
2892 if (err)
2893 return err;
2894
2895 timeout = msecs_to_jiffies(IEEE80211_DFS_MIN_CAC_TIME_MS);
2896 ieee80211_queue_delayed_work(&sdata->local->hw,
2897 &sdata->dfs_cac_timer_work, timeout);
2898
2899 return 0;
2900}
2901
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002902static struct cfg80211_beacon_data *
2903cfg80211_beacon_dup(struct cfg80211_beacon_data *beacon)
2904{
2905 struct cfg80211_beacon_data *new_beacon;
2906 u8 *pos;
2907 int len;
2908
2909 len = beacon->head_len + beacon->tail_len + beacon->beacon_ies_len +
2910 beacon->proberesp_ies_len + beacon->assocresp_ies_len +
2911 beacon->probe_resp_len;
2912
2913 new_beacon = kzalloc(sizeof(*new_beacon) + len, GFP_KERNEL);
2914 if (!new_beacon)
2915 return NULL;
2916
2917 pos = (u8 *)(new_beacon + 1);
2918 if (beacon->head_len) {
2919 new_beacon->head_len = beacon->head_len;
2920 new_beacon->head = pos;
2921 memcpy(pos, beacon->head, beacon->head_len);
2922 pos += beacon->head_len;
2923 }
2924 if (beacon->tail_len) {
2925 new_beacon->tail_len = beacon->tail_len;
2926 new_beacon->tail = pos;
2927 memcpy(pos, beacon->tail, beacon->tail_len);
2928 pos += beacon->tail_len;
2929 }
2930 if (beacon->beacon_ies_len) {
2931 new_beacon->beacon_ies_len = beacon->beacon_ies_len;
2932 new_beacon->beacon_ies = pos;
2933 memcpy(pos, beacon->beacon_ies, beacon->beacon_ies_len);
2934 pos += beacon->beacon_ies_len;
2935 }
2936 if (beacon->proberesp_ies_len) {
2937 new_beacon->proberesp_ies_len = beacon->proberesp_ies_len;
2938 new_beacon->proberesp_ies = pos;
2939 memcpy(pos, beacon->proberesp_ies, beacon->proberesp_ies_len);
2940 pos += beacon->proberesp_ies_len;
2941 }
2942 if (beacon->assocresp_ies_len) {
2943 new_beacon->assocresp_ies_len = beacon->assocresp_ies_len;
2944 new_beacon->assocresp_ies = pos;
2945 memcpy(pos, beacon->assocresp_ies, beacon->assocresp_ies_len);
2946 pos += beacon->assocresp_ies_len;
2947 }
2948 if (beacon->probe_resp_len) {
2949 new_beacon->probe_resp_len = beacon->probe_resp_len;
2950 beacon->probe_resp = pos;
2951 memcpy(pos, beacon->probe_resp, beacon->probe_resp_len);
2952 pos += beacon->probe_resp_len;
2953 }
2954
2955 return new_beacon;
2956}
2957
2958void ieee80211_csa_finalize_work(struct work_struct *work)
2959{
2960 struct ieee80211_sub_if_data *sdata =
2961 container_of(work, struct ieee80211_sub_if_data,
2962 csa_finalize_work);
2963 struct ieee80211_local *local = sdata->local;
Michal Kazior0951ebb2013-10-18 14:57:00 -07002964 int err, changed = 0;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002965
2966 if (!ieee80211_sdata_running(sdata))
2967 return;
2968
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002969 sdata->radar_required = sdata->csa_radar_required;
2970 err = ieee80211_vif_change_channel(sdata, &local->csa_chandef,
2971 &changed);
2972 if (WARN_ON(err < 0))
2973 return;
2974
Arik Nemtsov7578d572013-09-01 17:15:51 +03002975 if (!local->use_chanctx) {
2976 local->_oper_chandef = local->csa_chandef;
2977 ieee80211_hw_config(local, 0);
2978 }
2979
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002980 ieee80211_bss_info_change_notify(sdata, changed);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002981
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02002982 switch (sdata->vif.type) {
2983 case NL80211_IFTYPE_AP:
2984 err = ieee80211_assign_beacon(sdata, sdata->u.ap.next_beacon);
2985 if (err < 0)
2986 return;
2987 changed |= err;
2988 kfree(sdata->u.ap.next_beacon);
2989 sdata->u.ap.next_beacon = NULL;
2990
2991 ieee80211_bss_info_change_notify(sdata, err);
2992 break;
2993 case NL80211_IFTYPE_ADHOC:
2994 ieee80211_ibss_finish_csa(sdata);
2995 break;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07002996#ifdef CONFIG_MAC80211_MESH
2997 case NL80211_IFTYPE_MESH_POINT:
2998 err = ieee80211_mesh_finish_csa(sdata);
2999 if (err < 0)
3000 return;
3001 break;
3002#endif
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003003 default:
3004 WARN_ON(1);
3005 return;
3006 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003007 sdata->vif.csa_active = false;
3008
3009 ieee80211_wake_queues_by_reason(&sdata->local->hw,
3010 IEEE80211_MAX_QUEUE_MAP,
3011 IEEE80211_QUEUE_STOP_REASON_CSA);
3012
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003013 cfg80211_ch_switch_notify(sdata->dev, &local->csa_chandef);
3014}
3015
3016static int ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev,
3017 struct cfg80211_csa_settings *params)
3018{
3019 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3020 struct ieee80211_local *local = sdata->local;
3021 struct ieee80211_chanctx_conf *chanctx_conf;
3022 struct ieee80211_chanctx *chanctx;
Chun-Yeow Yeohc6da6742013-10-14 19:08:28 -07003023 struct ieee80211_if_mesh __maybe_unused *ifmsh;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003024 int err, num_chanctx;
3025
3026 if (!list_empty(&local->roc_list) || local->scanning)
3027 return -EBUSY;
3028
3029 if (sdata->wdev.cac_started)
3030 return -EBUSY;
3031
3032 if (cfg80211_chandef_identical(&params->chandef,
3033 &sdata->vif.bss_conf.chandef))
3034 return -EINVAL;
3035
3036 rcu_read_lock();
3037 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3038 if (!chanctx_conf) {
3039 rcu_read_unlock();
3040 return -EBUSY;
3041 }
3042
3043 /* don't handle for multi-VIF cases */
3044 chanctx = container_of(chanctx_conf, struct ieee80211_chanctx, conf);
3045 if (chanctx->refcount > 1) {
3046 rcu_read_unlock();
3047 return -EBUSY;
3048 }
3049 num_chanctx = 0;
3050 list_for_each_entry_rcu(chanctx, &local->chanctx_list, list)
3051 num_chanctx++;
3052 rcu_read_unlock();
3053
3054 if (num_chanctx > 1)
3055 return -EBUSY;
3056
3057 /* don't allow another channel switch if one is already active. */
3058 if (sdata->vif.csa_active)
3059 return -EBUSY;
3060
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003061 switch (sdata->vif.type) {
3062 case NL80211_IFTYPE_AP:
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003063 sdata->csa_counter_offset_beacon =
3064 params->counter_offset_beacon;
3065 sdata->csa_counter_offset_presp = params->counter_offset_presp;
3066 sdata->u.ap.next_beacon =
3067 cfg80211_beacon_dup(&params->beacon_after);
3068 if (!sdata->u.ap.next_beacon)
3069 return -ENOMEM;
3070
3071 err = ieee80211_assign_beacon(sdata, &params->beacon_csa);
3072 if (err < 0) {
3073 kfree(sdata->u.ap.next_beacon);
3074 return err;
3075 }
3076 break;
3077 case NL80211_IFTYPE_ADHOC:
3078 if (!sdata->vif.bss_conf.ibss_joined)
3079 return -EINVAL;
3080
3081 if (params->chandef.width != sdata->u.ibss.chandef.width)
3082 return -EINVAL;
3083
3084 switch (params->chandef.width) {
3085 case NL80211_CHAN_WIDTH_40:
3086 if (cfg80211_get_chandef_type(&params->chandef) !=
3087 cfg80211_get_chandef_type(&sdata->u.ibss.chandef))
3088 return -EINVAL;
3089 case NL80211_CHAN_WIDTH_5:
3090 case NL80211_CHAN_WIDTH_10:
3091 case NL80211_CHAN_WIDTH_20_NOHT:
3092 case NL80211_CHAN_WIDTH_20:
3093 break;
3094 default:
3095 return -EINVAL;
3096 }
3097
3098 /* changes into another band are not supported */
3099 if (sdata->u.ibss.chandef.chan->band !=
3100 params->chandef.chan->band)
3101 return -EINVAL;
3102
3103 err = ieee80211_ibss_csa_beacon(sdata, params);
3104 if (err < 0)
3105 return err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003106 break;
Chun-Yeow Yeohc6da6742013-10-14 19:08:28 -07003107#ifdef CONFIG_MAC80211_MESH
3108 case NL80211_IFTYPE_MESH_POINT:
3109 ifmsh = &sdata->u.mesh;
3110
3111 if (!ifmsh->mesh_id)
3112 return -EINVAL;
3113
3114 if (params->chandef.width != sdata->vif.bss_conf.chandef.width)
3115 return -EINVAL;
3116
3117 /* changes into another band are not supported */
3118 if (sdata->vif.bss_conf.chandef.chan->band !=
3119 params->chandef.chan->band)
3120 return -EINVAL;
3121
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07003122 err = ieee80211_mesh_csa_beacon(sdata, params, true);
Chun-Yeow Yeohc6da6742013-10-14 19:08:28 -07003123 if (err < 0)
3124 return err;
3125 break;
3126#endif
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003127 default:
3128 return -EOPNOTSUPP;
3129 }
3130
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003131 sdata->csa_radar_required = params->radar_required;
3132
3133 if (params->block_tx)
3134 ieee80211_stop_queues_by_reason(&local->hw,
3135 IEEE80211_MAX_QUEUE_MAP,
3136 IEEE80211_QUEUE_STOP_REASON_CSA);
3137
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003138 local->csa_chandef = params->chandef;
3139 sdata->vif.csa_active = true;
3140
3141 ieee80211_bss_info_change_notify(sdata, err);
3142 drv_channel_switch_beacon(sdata, &params->chandef);
3143
3144 return 0;
3145}
3146
Johannes Berg71bbc992012-06-15 15:30:18 +02003147static int ieee80211_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
Johannes Bergf7ca38d2010-11-25 10:02:29 +01003148 struct ieee80211_channel *chan, bool offchan,
Johannes Berg42d97a52012-11-08 18:31:02 +01003149 unsigned int wait, const u8 *buf, size_t len,
3150 bool no_cck, bool dont_wait_for_ack, u64 *cookie)
Jouni Malinen026331c2010-02-15 12:53:10 +02003151{
Johannes Berg71bbc992012-06-15 15:30:18 +02003152 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg9d38d852010-06-09 17:20:33 +02003153 struct ieee80211_local *local = sdata->local;
3154 struct sk_buff *skb;
3155 struct sta_info *sta;
3156 const struct ieee80211_mgmt *mgmt = (void *)buf;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003157 bool need_offchan = false;
Johannes Berge247bd902011-11-04 11:18:21 +01003158 u32 flags;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003159 int ret;
Johannes Bergf7ca38d2010-11-25 10:02:29 +01003160
Johannes Berge247bd902011-11-04 11:18:21 +01003161 if (dont_wait_for_ack)
3162 flags = IEEE80211_TX_CTL_NO_ACK;
3163 else
3164 flags = IEEE80211_TX_INTFL_NL80211_FRAME_TX |
3165 IEEE80211_TX_CTL_REQ_TX_STATUS;
3166
Rajkumar Manoharanaad14ce2011-09-25 14:53:31 +05303167 if (no_cck)
3168 flags |= IEEE80211_TX_CTL_NO_CCK_RATE;
3169
Johannes Berg9d38d852010-06-09 17:20:33 +02003170 switch (sdata->vif.type) {
3171 case NL80211_IFTYPE_ADHOC:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003172 if (!sdata->vif.bss_conf.ibss_joined)
3173 need_offchan = true;
3174 /* fall through */
3175#ifdef CONFIG_MAC80211_MESH
3176 case NL80211_IFTYPE_MESH_POINT:
3177 if (ieee80211_vif_is_mesh(&sdata->vif) &&
3178 !sdata->u.mesh.mesh_id_len)
3179 need_offchan = true;
3180 /* fall through */
3181#endif
Johannes Berg663fcaf2010-09-30 21:06:09 +02003182 case NL80211_IFTYPE_AP:
3183 case NL80211_IFTYPE_AP_VLAN:
3184 case NL80211_IFTYPE_P2P_GO:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003185 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
3186 !ieee80211_vif_is_mesh(&sdata->vif) &&
3187 !rcu_access_pointer(sdata->bss->beacon))
3188 need_offchan = true;
Johannes Berg663fcaf2010-09-30 21:06:09 +02003189 if (!ieee80211_is_action(mgmt->frame_control) ||
Thomas Pedersenac49e1a2013-06-20 23:50:58 -07003190 mgmt->u.action.category == WLAN_CATEGORY_PUBLIC ||
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003191 mgmt->u.action.category == WLAN_CATEGORY_SELF_PROTECTED ||
3192 mgmt->u.action.category == WLAN_CATEGORY_SPECTRUM_MGMT)
Johannes Berg9d38d852010-06-09 17:20:33 +02003193 break;
3194 rcu_read_lock();
3195 sta = sta_info_get(sdata, mgmt->da);
3196 rcu_read_unlock();
3197 if (!sta)
3198 return -ENOLINK;
3199 break;
3200 case NL80211_IFTYPE_STATION:
Johannes Berg663fcaf2010-09-30 21:06:09 +02003201 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003202 if (!sdata->u.mgd.associated)
3203 need_offchan = true;
Johannes Berg9d38d852010-06-09 17:20:33 +02003204 break;
Johannes Bergf142c6b2012-06-18 20:07:15 +02003205 case NL80211_IFTYPE_P2P_DEVICE:
3206 need_offchan = true;
3207 break;
Johannes Berg9d38d852010-06-09 17:20:33 +02003208 default:
3209 return -EOPNOTSUPP;
3210 }
3211
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003212 /* configurations requiring offchan cannot work if no channel has been
3213 * specified
3214 */
3215 if (need_offchan && !chan)
3216 return -EINVAL;
3217
Johannes Berg2eb278e2012-06-05 14:28:42 +02003218 mutex_lock(&local->mtx);
3219
3220 /* Check if the operating channel is the requested channel */
3221 if (!need_offchan) {
Johannes Berg55de9082012-07-26 17:24:39 +02003222 struct ieee80211_chanctx_conf *chanctx_conf;
3223
3224 rcu_read_lock();
3225 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3226
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003227 if (chanctx_conf) {
3228 need_offchan = chan && (chan != chanctx_conf->def.chan);
3229 } else if (!chan) {
3230 ret = -EINVAL;
3231 rcu_read_unlock();
3232 goto out_unlock;
3233 } else {
Johannes Berg2eb278e2012-06-05 14:28:42 +02003234 need_offchan = true;
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003235 }
Johannes Berg55de9082012-07-26 17:24:39 +02003236 rcu_read_unlock();
Johannes Berg2eb278e2012-06-05 14:28:42 +02003237 }
3238
3239 if (need_offchan && !offchan) {
3240 ret = -EBUSY;
3241 goto out_unlock;
3242 }
3243
Johannes Berg9d38d852010-06-09 17:20:33 +02003244 skb = dev_alloc_skb(local->hw.extra_tx_headroom + len);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003245 if (!skb) {
3246 ret = -ENOMEM;
3247 goto out_unlock;
3248 }
Johannes Berg9d38d852010-06-09 17:20:33 +02003249 skb_reserve(skb, local->hw.extra_tx_headroom);
3250
3251 memcpy(skb_put(skb, len), buf, len);
3252
3253 IEEE80211_SKB_CB(skb)->flags = flags;
3254
Johannes Berg2eb278e2012-06-05 14:28:42 +02003255 skb->dev = sdata->dev;
3256
3257 if (!need_offchan) {
Nicolas Cavallari7f9f78a2012-07-16 18:36:52 +02003258 *cookie = (unsigned long) skb;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003259 ieee80211_tx_skb(sdata, skb);
3260 ret = 0;
3261 goto out_unlock;
3262 }
3263
Seth Forshee6c17b772013-02-11 11:21:07 -06003264 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_TX_OFFCHAN |
3265 IEEE80211_TX_INTFL_OFFCHAN_TX_OK;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003266 if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)
Johannes Berg3a25a8c2012-04-03 16:28:50 +02003267 IEEE80211_SKB_CB(skb)->hw_queue =
3268 local->hw.offchannel_tx_hw_queue;
3269
Johannes Berg2eb278e2012-06-05 14:28:42 +02003270 /* This will handle all kinds of coalescing and immediate TX */
Johannes Berg42d97a52012-11-08 18:31:02 +01003271 ret = ieee80211_start_roc_work(local, sdata, chan,
Ilan Peerd339d5c2013-02-12 09:34:13 +02003272 wait, cookie, skb,
3273 IEEE80211_ROC_TYPE_MGMT_TX);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003274 if (ret)
Johannes Bergf30221e2010-11-25 10:02:30 +01003275 kfree_skb(skb);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003276 out_unlock:
3277 mutex_unlock(&local->mtx);
3278 return ret;
Jouni Malinen026331c2010-02-15 12:53:10 +02003279}
3280
Johannes Bergf30221e2010-11-25 10:02:30 +01003281static int ieee80211_mgmt_tx_cancel_wait(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02003282 struct wireless_dev *wdev,
Johannes Bergf30221e2010-11-25 10:02:30 +01003283 u64 cookie)
3284{
Johannes Berg71bbc992012-06-15 15:30:18 +02003285 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Bergf30221e2010-11-25 10:02:30 +01003286
Johannes Berg2eb278e2012-06-05 14:28:42 +02003287 return ieee80211_cancel_roc(local, cookie, true);
Johannes Bergf30221e2010-11-25 10:02:30 +01003288}
3289
Johannes Berg7be50862010-10-13 12:06:24 +02003290static void ieee80211_mgmt_frame_register(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02003291 struct wireless_dev *wdev,
Johannes Berg7be50862010-10-13 12:06:24 +02003292 u16 frame_type, bool reg)
3293{
3294 struct ieee80211_local *local = wiphy_priv(wiphy);
3295
Will Hawkins6abe0562012-06-20 11:51:14 -04003296 switch (frame_type) {
Will Hawkins6abe0562012-06-20 11:51:14 -04003297 case IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_PROBE_REQ:
3298 if (reg)
3299 local->probe_req_reg++;
3300 else
3301 local->probe_req_reg--;
Johannes Berg7be50862010-10-13 12:06:24 +02003302
Felix Fietkau35f51492012-10-31 15:50:34 +01003303 if (!local->open_count)
3304 break;
3305
Will Hawkins6abe0562012-06-20 11:51:14 -04003306 ieee80211_queue_work(&local->hw, &local->reconfig_filter);
3307 break;
3308 default:
3309 break;
3310 }
Johannes Berg7be50862010-10-13 12:06:24 +02003311}
3312
Bruno Randolf15d96752010-11-10 12:50:56 +09003313static int ieee80211_set_antenna(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant)
3314{
3315 struct ieee80211_local *local = wiphy_priv(wiphy);
3316
3317 if (local->started)
3318 return -EOPNOTSUPP;
3319
3320 return drv_set_antenna(local, tx_ant, rx_ant);
3321}
3322
3323static int ieee80211_get_antenna(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant)
3324{
3325 struct ieee80211_local *local = wiphy_priv(wiphy);
3326
3327 return drv_get_antenna(local, tx_ant, rx_ant);
3328}
3329
John W. Linville38c09152011-03-07 16:19:18 -05003330static int ieee80211_set_ringparam(struct wiphy *wiphy, u32 tx, u32 rx)
3331{
3332 struct ieee80211_local *local = wiphy_priv(wiphy);
3333
3334 return drv_set_ringparam(local, tx, rx);
3335}
3336
3337static void ieee80211_get_ringparam(struct wiphy *wiphy,
3338 u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max)
3339{
3340 struct ieee80211_local *local = wiphy_priv(wiphy);
3341
3342 drv_get_ringparam(local, tx, tx_max, rx, rx_max);
3343}
3344
Johannes Bergc68f4b82011-07-05 16:35:41 +02003345static int ieee80211_set_rekey_data(struct wiphy *wiphy,
3346 struct net_device *dev,
3347 struct cfg80211_gtk_rekey_data *data)
3348{
3349 struct ieee80211_local *local = wiphy_priv(wiphy);
3350 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3351
3352 if (!local->ops->set_rekey_data)
3353 return -EOPNOTSUPP;
3354
3355 drv_set_rekey_data(local, sdata, data);
3356
3357 return 0;
3358}
3359
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003360static void ieee80211_tdls_add_ext_capab(struct sk_buff *skb)
3361{
3362 u8 *pos = (void *)skb_put(skb, 7);
3363
3364 *pos++ = WLAN_EID_EXT_CAPABILITY;
3365 *pos++ = 5; /* len */
3366 *pos++ = 0x0;
3367 *pos++ = 0x0;
3368 *pos++ = 0x0;
3369 *pos++ = 0x0;
3370 *pos++ = WLAN_EXT_CAPA5_TDLS_ENABLED;
3371}
3372
3373static u16 ieee80211_get_tdls_sta_capab(struct ieee80211_sub_if_data *sdata)
3374{
3375 struct ieee80211_local *local = sdata->local;
3376 u16 capab;
3377
3378 capab = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02003379 if (ieee80211_get_sdata_band(sdata) != IEEE80211_BAND_2GHZ)
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003380 return capab;
3381
3382 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
3383 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
3384 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
3385 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
3386
3387 return capab;
3388}
3389
3390static void ieee80211_tdls_add_link_ie(struct sk_buff *skb, u8 *src_addr,
3391 u8 *peer, u8 *bssid)
3392{
3393 struct ieee80211_tdls_lnkie *lnkid;
3394
3395 lnkid = (void *)skb_put(skb, sizeof(struct ieee80211_tdls_lnkie));
3396
3397 lnkid->ie_type = WLAN_EID_LINK_ID;
3398 lnkid->ie_len = sizeof(struct ieee80211_tdls_lnkie) - 2;
3399
3400 memcpy(lnkid->bssid, bssid, ETH_ALEN);
3401 memcpy(lnkid->init_sta, src_addr, ETH_ALEN);
3402 memcpy(lnkid->resp_sta, peer, ETH_ALEN);
3403}
3404
3405static int
3406ieee80211_prep_tdls_encap_data(struct wiphy *wiphy, struct net_device *dev,
3407 u8 *peer, u8 action_code, u8 dialog_token,
3408 u16 status_code, struct sk_buff *skb)
3409{
3410 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg55de9082012-07-26 17:24:39 +02003411 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003412 struct ieee80211_tdls_data *tf;
3413
3414 tf = (void *)skb_put(skb, offsetof(struct ieee80211_tdls_data, u));
3415
3416 memcpy(tf->da, peer, ETH_ALEN);
3417 memcpy(tf->sa, sdata->vif.addr, ETH_ALEN);
3418 tf->ether_type = cpu_to_be16(ETH_P_TDLS);
3419 tf->payload_type = WLAN_TDLS_SNAP_RFTYPE;
3420
3421 switch (action_code) {
3422 case WLAN_TDLS_SETUP_REQUEST:
3423 tf->category = WLAN_CATEGORY_TDLS;
3424 tf->action_code = WLAN_TDLS_SETUP_REQUEST;
3425
3426 skb_put(skb, sizeof(tf->u.setup_req));
3427 tf->u.setup_req.dialog_token = dialog_token;
3428 tf->u.setup_req.capability =
3429 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata));
3430
Johannes Berg55de9082012-07-26 17:24:39 +02003431 ieee80211_add_srates_ie(sdata, skb, false, band);
3432 ieee80211_add_ext_srates_ie(sdata, skb, false, band);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003433 ieee80211_tdls_add_ext_capab(skb);
3434 break;
3435 case WLAN_TDLS_SETUP_RESPONSE:
3436 tf->category = WLAN_CATEGORY_TDLS;
3437 tf->action_code = WLAN_TDLS_SETUP_RESPONSE;
3438
3439 skb_put(skb, sizeof(tf->u.setup_resp));
3440 tf->u.setup_resp.status_code = cpu_to_le16(status_code);
3441 tf->u.setup_resp.dialog_token = dialog_token;
3442 tf->u.setup_resp.capability =
3443 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata));
3444
Johannes Berg55de9082012-07-26 17:24:39 +02003445 ieee80211_add_srates_ie(sdata, skb, false, band);
3446 ieee80211_add_ext_srates_ie(sdata, skb, false, band);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003447 ieee80211_tdls_add_ext_capab(skb);
3448 break;
3449 case WLAN_TDLS_SETUP_CONFIRM:
3450 tf->category = WLAN_CATEGORY_TDLS;
3451 tf->action_code = WLAN_TDLS_SETUP_CONFIRM;
3452
3453 skb_put(skb, sizeof(tf->u.setup_cfm));
3454 tf->u.setup_cfm.status_code = cpu_to_le16(status_code);
3455 tf->u.setup_cfm.dialog_token = dialog_token;
3456 break;
3457 case WLAN_TDLS_TEARDOWN:
3458 tf->category = WLAN_CATEGORY_TDLS;
3459 tf->action_code = WLAN_TDLS_TEARDOWN;
3460
3461 skb_put(skb, sizeof(tf->u.teardown));
3462 tf->u.teardown.reason_code = cpu_to_le16(status_code);
3463 break;
3464 case WLAN_TDLS_DISCOVERY_REQUEST:
3465 tf->category = WLAN_CATEGORY_TDLS;
3466 tf->action_code = WLAN_TDLS_DISCOVERY_REQUEST;
3467
3468 skb_put(skb, sizeof(tf->u.discover_req));
3469 tf->u.discover_req.dialog_token = dialog_token;
3470 break;
3471 default:
3472 return -EINVAL;
3473 }
3474
3475 return 0;
3476}
3477
3478static int
3479ieee80211_prep_tdls_direct(struct wiphy *wiphy, struct net_device *dev,
3480 u8 *peer, u8 action_code, u8 dialog_token,
3481 u16 status_code, struct sk_buff *skb)
3482{
3483 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg55de9082012-07-26 17:24:39 +02003484 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003485 struct ieee80211_mgmt *mgmt;
3486
3487 mgmt = (void *)skb_put(skb, 24);
3488 memset(mgmt, 0, 24);
3489 memcpy(mgmt->da, peer, ETH_ALEN);
3490 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
3491 memcpy(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN);
3492
3493 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
3494 IEEE80211_STYPE_ACTION);
3495
3496 switch (action_code) {
3497 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
3498 skb_put(skb, 1 + sizeof(mgmt->u.action.u.tdls_discover_resp));
3499 mgmt->u.action.category = WLAN_CATEGORY_PUBLIC;
3500 mgmt->u.action.u.tdls_discover_resp.action_code =
3501 WLAN_PUB_ACTION_TDLS_DISCOVER_RES;
3502 mgmt->u.action.u.tdls_discover_resp.dialog_token =
3503 dialog_token;
3504 mgmt->u.action.u.tdls_discover_resp.capability =
3505 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata));
3506
Johannes Berg55de9082012-07-26 17:24:39 +02003507 ieee80211_add_srates_ie(sdata, skb, false, band);
3508 ieee80211_add_ext_srates_ie(sdata, skb, false, band);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003509 ieee80211_tdls_add_ext_capab(skb);
3510 break;
3511 default:
3512 return -EINVAL;
3513 }
3514
3515 return 0;
3516}
3517
3518static int ieee80211_tdls_mgmt(struct wiphy *wiphy, struct net_device *dev,
3519 u8 *peer, u8 action_code, u8 dialog_token,
3520 u16 status_code, const u8 *extra_ies,
3521 size_t extra_ies_len)
3522{
3523 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3524 struct ieee80211_local *local = sdata->local;
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003525 struct sk_buff *skb = NULL;
3526 bool send_direct;
3527 int ret;
3528
3529 if (!(wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS))
3530 return -ENOTSUPP;
3531
3532 /* make sure we are in managed mode, and associated */
3533 if (sdata->vif.type != NL80211_IFTYPE_STATION ||
3534 !sdata->u.mgd.associated)
3535 return -EINVAL;
3536
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003537 tdls_dbg(sdata, "TDLS mgmt action %d peer %pM\n",
3538 action_code, peer);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003539
3540 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
3541 max(sizeof(struct ieee80211_mgmt),
3542 sizeof(struct ieee80211_tdls_data)) +
3543 50 + /* supported rates */
3544 7 + /* ext capab */
3545 extra_ies_len +
3546 sizeof(struct ieee80211_tdls_lnkie));
3547 if (!skb)
3548 return -ENOMEM;
3549
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003550 skb_reserve(skb, local->hw.extra_tx_headroom);
3551
3552 switch (action_code) {
3553 case WLAN_TDLS_SETUP_REQUEST:
3554 case WLAN_TDLS_SETUP_RESPONSE:
3555 case WLAN_TDLS_SETUP_CONFIRM:
3556 case WLAN_TDLS_TEARDOWN:
3557 case WLAN_TDLS_DISCOVERY_REQUEST:
3558 ret = ieee80211_prep_tdls_encap_data(wiphy, dev, peer,
3559 action_code, dialog_token,
3560 status_code, skb);
3561 send_direct = false;
3562 break;
3563 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
3564 ret = ieee80211_prep_tdls_direct(wiphy, dev, peer, action_code,
3565 dialog_token, status_code,
3566 skb);
3567 send_direct = true;
3568 break;
3569 default:
3570 ret = -ENOTSUPP;
3571 break;
3572 }
3573
3574 if (ret < 0)
3575 goto fail;
3576
3577 if (extra_ies_len)
3578 memcpy(skb_put(skb, extra_ies_len), extra_ies, extra_ies_len);
3579
3580 /* the TDLS link IE is always added last */
3581 switch (action_code) {
3582 case WLAN_TDLS_SETUP_REQUEST:
3583 case WLAN_TDLS_SETUP_CONFIRM:
3584 case WLAN_TDLS_TEARDOWN:
3585 case WLAN_TDLS_DISCOVERY_REQUEST:
3586 /* we are the initiator */
3587 ieee80211_tdls_add_link_ie(skb, sdata->vif.addr, peer,
3588 sdata->u.mgd.bssid);
3589 break;
3590 case WLAN_TDLS_SETUP_RESPONSE:
3591 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
3592 /* we are the responder */
3593 ieee80211_tdls_add_link_ie(skb, peer, sdata->vif.addr,
3594 sdata->u.mgd.bssid);
3595 break;
3596 default:
3597 ret = -ENOTSUPP;
3598 goto fail;
3599 }
3600
3601 if (send_direct) {
3602 ieee80211_tx_skb(sdata, skb);
3603 return 0;
3604 }
3605
3606 /*
3607 * According to 802.11z: Setup req/resp are sent in AC_BK, otherwise
3608 * we should default to AC_VI.
3609 */
3610 switch (action_code) {
3611 case WLAN_TDLS_SETUP_REQUEST:
3612 case WLAN_TDLS_SETUP_RESPONSE:
3613 skb_set_queue_mapping(skb, IEEE80211_AC_BK);
3614 skb->priority = 2;
3615 break;
3616 default:
3617 skb_set_queue_mapping(skb, IEEE80211_AC_VI);
3618 skb->priority = 5;
3619 break;
3620 }
3621
3622 /* disable bottom halves when entering the Tx path */
3623 local_bh_disable();
3624 ret = ieee80211_subif_start_xmit(skb, dev);
3625 local_bh_enable();
3626
3627 return ret;
3628
3629fail:
3630 dev_kfree_skb(skb);
3631 return ret;
3632}
3633
3634static int ieee80211_tdls_oper(struct wiphy *wiphy, struct net_device *dev,
3635 u8 *peer, enum nl80211_tdls_operation oper)
3636{
Arik Nemtsov941c93c2011-09-28 14:12:54 +03003637 struct sta_info *sta;
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003638 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3639
3640 if (!(wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS))
3641 return -ENOTSUPP;
3642
3643 if (sdata->vif.type != NL80211_IFTYPE_STATION)
3644 return -EINVAL;
3645
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003646 tdls_dbg(sdata, "TDLS oper %d peer %pM\n", oper, peer);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003647
3648 switch (oper) {
3649 case NL80211_TDLS_ENABLE_LINK:
Arik Nemtsov941c93c2011-09-28 14:12:54 +03003650 rcu_read_lock();
3651 sta = sta_info_get(sdata, peer);
3652 if (!sta) {
3653 rcu_read_unlock();
3654 return -ENOLINK;
3655 }
3656
Johannes Bergc2c98fd2011-09-29 16:04:36 +02003657 set_sta_flag(sta, WLAN_STA_TDLS_PEER_AUTH);
Arik Nemtsov941c93c2011-09-28 14:12:54 +03003658 rcu_read_unlock();
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003659 break;
3660 case NL80211_TDLS_DISABLE_LINK:
3661 return sta_info_destroy_addr(sdata, peer);
3662 case NL80211_TDLS_TEARDOWN:
3663 case NL80211_TDLS_SETUP:
3664 case NL80211_TDLS_DISCOVERY_REQ:
3665 /* We don't support in-driver setup/teardown/discovery */
3666 return -ENOTSUPP;
3667 default:
3668 return -ENOTSUPP;
3669 }
3670
3671 return 0;
3672}
3673
Johannes Berg06500732011-11-04 11:18:16 +01003674static int ieee80211_probe_client(struct wiphy *wiphy, struct net_device *dev,
3675 const u8 *peer, u64 *cookie)
3676{
3677 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3678 struct ieee80211_local *local = sdata->local;
3679 struct ieee80211_qos_hdr *nullfunc;
3680 struct sk_buff *skb;
3681 int size = sizeof(*nullfunc);
3682 __le16 fc;
3683 bool qos;
3684 struct ieee80211_tx_info *info;
3685 struct sta_info *sta;
Johannes Berg55de9082012-07-26 17:24:39 +02003686 struct ieee80211_chanctx_conf *chanctx_conf;
3687 enum ieee80211_band band;
Johannes Berg06500732011-11-04 11:18:16 +01003688
3689 rcu_read_lock();
Johannes Berg55de9082012-07-26 17:24:39 +02003690 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3691 if (WARN_ON(!chanctx_conf)) {
3692 rcu_read_unlock();
3693 return -EINVAL;
3694 }
Johannes Berg4bf88532012-11-09 11:39:59 +01003695 band = chanctx_conf->def.chan->band;
Felix Fietkau03bb7f42013-09-29 21:39:33 +02003696 sta = sta_info_get_bss(sdata, peer);
Johannes Bergb4487c22011-11-11 20:22:30 +01003697 if (sta) {
Johannes Berg06500732011-11-04 11:18:16 +01003698 qos = test_sta_flag(sta, WLAN_STA_WME);
Johannes Bergb4487c22011-11-11 20:22:30 +01003699 } else {
3700 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003701 return -ENOLINK;
Johannes Bergb4487c22011-11-11 20:22:30 +01003702 }
Johannes Berg06500732011-11-04 11:18:16 +01003703
3704 if (qos) {
3705 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3706 IEEE80211_STYPE_QOS_NULLFUNC |
3707 IEEE80211_FCTL_FROMDS);
3708 } else {
3709 size -= 2;
3710 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3711 IEEE80211_STYPE_NULLFUNC |
3712 IEEE80211_FCTL_FROMDS);
3713 }
3714
3715 skb = dev_alloc_skb(local->hw.extra_tx_headroom + size);
Johannes Berg55de9082012-07-26 17:24:39 +02003716 if (!skb) {
3717 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003718 return -ENOMEM;
Johannes Berg55de9082012-07-26 17:24:39 +02003719 }
Johannes Berg06500732011-11-04 11:18:16 +01003720
3721 skb->dev = dev;
3722
3723 skb_reserve(skb, local->hw.extra_tx_headroom);
3724
3725 nullfunc = (void *) skb_put(skb, size);
3726 nullfunc->frame_control = fc;
3727 nullfunc->duration_id = 0;
3728 memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN);
3729 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
3730 memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);
3731 nullfunc->seq_ctrl = 0;
3732
3733 info = IEEE80211_SKB_CB(skb);
3734
3735 info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
3736 IEEE80211_TX_INTFL_NL80211_FRAME_TX;
3737
3738 skb_set_queue_mapping(skb, IEEE80211_AC_VO);
3739 skb->priority = 7;
3740 if (qos)
3741 nullfunc->qos_ctrl = cpu_to_le16(7);
3742
3743 local_bh_disable();
Johannes Berg55de9082012-07-26 17:24:39 +02003744 ieee80211_xmit(sdata, skb, band);
Johannes Berg06500732011-11-04 11:18:16 +01003745 local_bh_enable();
Johannes Berg55de9082012-07-26 17:24:39 +02003746 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003747
3748 *cookie = (unsigned long) skb;
3749 return 0;
3750}
3751
Johannes Berg683b6d32012-11-08 21:25:48 +01003752static int ieee80211_cfg_get_channel(struct wiphy *wiphy,
3753 struct wireless_dev *wdev,
3754 struct cfg80211_chan_def *chandef)
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003755{
Johannes Berg55de9082012-07-26 17:24:39 +02003756 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Felix Fietkaucb601ff2013-02-23 19:02:14 +01003757 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg55de9082012-07-26 17:24:39 +02003758 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Berg683b6d32012-11-08 21:25:48 +01003759 int ret = -ENODATA;
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003760
Johannes Berg55de9082012-07-26 17:24:39 +02003761 rcu_read_lock();
Johannes Bergfeda3022013-02-28 09:59:22 +01003762 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3763 if (chanctx_conf) {
3764 *chandef = chanctx_conf->def;
3765 ret = 0;
3766 } else if (local->open_count > 0 &&
3767 local->open_count == local->monitors &&
3768 sdata->vif.type == NL80211_IFTYPE_MONITOR) {
3769 if (local->use_chanctx)
3770 *chandef = local->monitor_chandef;
3771 else
Karl Beldan675a0b02013-03-25 16:26:57 +01003772 *chandef = local->_oper_chandef;
Johannes Berg683b6d32012-11-08 21:25:48 +01003773 ret = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02003774 }
3775 rcu_read_unlock();
3776
Johannes Berg683b6d32012-11-08 21:25:48 +01003777 return ret;
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003778}
3779
Johannes Berg6d525632012-04-04 15:05:25 +02003780#ifdef CONFIG_PM
3781static void ieee80211_set_wakeup(struct wiphy *wiphy, bool enabled)
3782{
3783 drv_set_wakeup(wiphy_priv(wiphy), enabled);
3784}
3785#endif
3786
Jiri Bencf0706e82007-05-05 11:45:53 -07003787struct cfg80211_ops mac80211_config_ops = {
3788 .add_virtual_intf = ieee80211_add_iface,
3789 .del_virtual_intf = ieee80211_del_iface,
Johannes Berg42613db2007-09-28 21:52:27 +02003790 .change_virtual_intf = ieee80211_change_iface,
Johannes Bergf142c6b2012-06-18 20:07:15 +02003791 .start_p2p_device = ieee80211_start_p2p_device,
3792 .stop_p2p_device = ieee80211_stop_p2p_device,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01003793 .add_key = ieee80211_add_key,
3794 .del_key = ieee80211_del_key,
Johannes Berg62da92f2007-12-19 02:03:31 +01003795 .get_key = ieee80211_get_key,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01003796 .set_default_key = ieee80211_config_default_key,
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02003797 .set_default_mgmt_key = ieee80211_config_default_mgmt_key,
Johannes Berg88600202012-02-13 15:17:18 +01003798 .start_ap = ieee80211_start_ap,
3799 .change_beacon = ieee80211_change_beacon,
3800 .stop_ap = ieee80211_stop_ap,
Johannes Berg4fd69312007-12-19 02:03:35 +01003801 .add_station = ieee80211_add_station,
3802 .del_station = ieee80211_del_station,
3803 .change_station = ieee80211_change_station,
Johannes Berg7bbdd2d2007-12-19 02:03:37 +01003804 .get_station = ieee80211_get_station,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003805 .dump_station = ieee80211_dump_station,
Holger Schurig12897232010-04-19 10:23:57 +02003806 .dump_survey = ieee80211_dump_survey,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003807#ifdef CONFIG_MAC80211_MESH
3808 .add_mpath = ieee80211_add_mpath,
3809 .del_mpath = ieee80211_del_mpath,
3810 .change_mpath = ieee80211_change_mpath,
3811 .get_mpath = ieee80211_get_mpath,
3812 .dump_mpath = ieee80211_dump_mpath,
Javier Cardona24bdd9f2010-12-16 17:37:48 -08003813 .update_mesh_config = ieee80211_update_mesh_config,
3814 .get_mesh_config = ieee80211_get_mesh_config,
Johannes Berg29cbe682010-12-03 09:20:44 +01003815 .join_mesh = ieee80211_join_mesh,
3816 .leave_mesh = ieee80211_leave_mesh,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003817#endif
Jouni Malinen9f1ba902008-08-07 20:07:01 +03003818 .change_bss = ieee80211_change_bss,
Jouni Malinen31888482008-10-30 16:59:24 +02003819 .set_txq_params = ieee80211_set_txq_params,
Johannes Berge8c9bd52012-06-06 08:18:22 +02003820 .set_monitor_channel = ieee80211_set_monitor_channel,
Bob Copeland665af4f2009-01-19 11:20:53 -05003821 .suspend = ieee80211_suspend,
3822 .resume = ieee80211_resume,
Johannes Berg2a519312009-02-10 21:25:55 +01003823 .scan = ieee80211_scan,
Luciano Coelho79f460c2011-05-11 17:09:36 +03003824 .sched_scan_start = ieee80211_sched_scan_start,
3825 .sched_scan_stop = ieee80211_sched_scan_stop,
Jouni Malinen636a5d32009-03-19 13:39:22 +02003826 .auth = ieee80211_auth,
3827 .assoc = ieee80211_assoc,
3828 .deauth = ieee80211_deauth,
3829 .disassoc = ieee80211_disassoc,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02003830 .join_ibss = ieee80211_join_ibss,
3831 .leave_ibss = ieee80211_leave_ibss,
Antonio Quartulli391e53e2012-11-02 13:27:49 +01003832 .set_mcast_rate = ieee80211_set_mcast_rate,
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02003833 .set_wiphy_params = ieee80211_set_wiphy_params,
Johannes Berg7643a2c2009-06-02 13:01:39 +02003834 .set_tx_power = ieee80211_set_tx_power,
3835 .get_tx_power = ieee80211_get_tx_power,
Johannes Bergab737a42009-07-01 21:26:58 +02003836 .set_wds_peer = ieee80211_set_wds_peer,
Johannes Berg1f87f7d2009-06-02 13:01:41 +02003837 .rfkill_poll = ieee80211_rfkill_poll,
Johannes Bergaff89a92009-07-01 21:26:51 +02003838 CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd)
Wey-Yi Guy71063f02011-05-20 09:05:54 -07003839 CFG80211_TESTMODE_DUMP(ieee80211_testmode_dump)
Johannes Bergbc92afd2009-07-01 21:26:57 +02003840 .set_power_mgmt = ieee80211_set_power_mgmt,
Johannes Berg99303802009-07-01 21:26:59 +02003841 .set_bitrate_mask = ieee80211_set_bitrate_mask,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01003842 .remain_on_channel = ieee80211_remain_on_channel,
3843 .cancel_remain_on_channel = ieee80211_cancel_remain_on_channel,
Johannes Berg2e161f72010-08-12 15:38:38 +02003844 .mgmt_tx = ieee80211_mgmt_tx,
Johannes Bergf30221e2010-11-25 10:02:30 +01003845 .mgmt_tx_cancel_wait = ieee80211_mgmt_tx_cancel_wait,
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02003846 .set_cqm_rssi_config = ieee80211_set_cqm_rssi_config,
Johannes Berg7be50862010-10-13 12:06:24 +02003847 .mgmt_frame_register = ieee80211_mgmt_frame_register,
Bruno Randolf15d96752010-11-10 12:50:56 +09003848 .set_antenna = ieee80211_set_antenna,
3849 .get_antenna = ieee80211_get_antenna,
John W. Linville38c09152011-03-07 16:19:18 -05003850 .set_ringparam = ieee80211_set_ringparam,
3851 .get_ringparam = ieee80211_get_ringparam,
Johannes Bergc68f4b82011-07-05 16:35:41 +02003852 .set_rekey_data = ieee80211_set_rekey_data,
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003853 .tdls_oper = ieee80211_tdls_oper,
3854 .tdls_mgmt = ieee80211_tdls_mgmt,
Johannes Berg06500732011-11-04 11:18:16 +01003855 .probe_client = ieee80211_probe_client,
Simon Wunderlichb53be792011-11-18 14:20:44 +01003856 .set_noack_map = ieee80211_set_noack_map,
Johannes Berg6d525632012-04-04 15:05:25 +02003857#ifdef CONFIG_PM
3858 .set_wakeup = ieee80211_set_wakeup,
3859#endif
Ben Greearb1ab7922012-04-23 12:50:30 -07003860 .get_et_sset_count = ieee80211_get_et_sset_count,
3861 .get_et_stats = ieee80211_get_et_stats,
3862 .get_et_strings = ieee80211_get_et_strings,
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003863 .get_channel = ieee80211_cfg_get_channel,
Simon Wunderlich164eb022013-02-08 18:16:20 +01003864 .start_radar_detection = ieee80211_start_radar_detection,
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003865 .channel_switch = ieee80211_channel_switch,
Jiri Bencf0706e82007-05-05 11:45:53 -07003866};