blob: c7b3e57aec04289c5be78106ae635d7ca6f4cc5c [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);
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200136 struct ieee80211_local *local = sdata->local;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100137 struct sta_info *sta = NULL;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200138 const struct ieee80211_cipher_scheme *cs = NULL;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100139 struct ieee80211_key *key;
Johannes Berg3b967662008-04-08 17:56:52 +0200140 int err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100141
Johannes Berg26a58452010-08-27 12:35:55 +0200142 if (!ieee80211_sdata_running(sdata))
Johannes Bergad0e2b52010-06-01 10:19:19 +0200143 return -ENETDOWN;
144
Johannes Berg97359d12010-08-10 09:46:38 +0200145 /* reject WEP and TKIP keys if WEP failed to initialize */
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100146 switch (params->cipher) {
147 case WLAN_CIPHER_SUITE_WEP40:
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100148 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berg97359d12010-08-10 09:46:38 +0200149 case WLAN_CIPHER_SUITE_WEP104:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200150 if (IS_ERR(local->wep_tx_tfm))
Johannes Berg97359d12010-08-10 09:46:38 +0200151 return -EINVAL;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200152 break;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200153 case WLAN_CIPHER_SUITE_CCMP:
154 case WLAN_CIPHER_SUITE_AES_CMAC:
155 case WLAN_CIPHER_SUITE_GCMP:
156 break;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100157 default:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200158 cs = ieee80211_cs_get(local, params->cipher, sdata->vif.type);
Johannes Berg97359d12010-08-10 09:46:38 +0200159 break;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100160 }
161
Johannes Berg97359d12010-08-10 09:46:38 +0200162 key = ieee80211_key_alloc(params->cipher, key_idx, params->key_len,
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200163 params->key, params->seq_len, params->seq,
164 cs);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100165 if (IS_ERR(key))
166 return PTR_ERR(key);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100167
Johannes Berge31b8212010-10-05 19:39:30 +0200168 if (pairwise)
169 key->conf.flags |= IEEE80211_KEY_FLAG_PAIRWISE;
170
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200171 mutex_lock(&local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200172
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100173 if (mac_addr) {
Thomas Pedersenff973af2011-05-03 16:57:12 -0700174 if (ieee80211_vif_is_mesh(&sdata->vif))
175 sta = sta_info_get(sdata, mac_addr);
176 else
177 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berg1626e0f2013-01-11 14:34:25 +0100178 /*
179 * The ASSOC test makes sure the driver is ready to
180 * receive the key. When wpa_supplicant has roamed
181 * using FT, it attempts to set the key before
182 * association has completed, this rejects that attempt
183 * so it will set the key again after assocation.
184 *
185 * TODO: accept the key if we have a station entry and
186 * add it to the device after the station.
187 */
188 if (!sta || !test_sta_flag(sta, WLAN_STA_ASSOC)) {
Johannes Berg79cf2df2013-03-06 22:53:52 +0100189 ieee80211_key_free_unused(key);
Johannes Berg3b967662008-04-08 17:56:52 +0200190 err = -ENOENT;
191 goto out_unlock;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100192 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100193 }
194
Johannes Berge548c492012-09-04 17:08:23 +0200195 switch (sdata->vif.type) {
196 case NL80211_IFTYPE_STATION:
197 if (sdata->u.mgd.mfp != IEEE80211_MFP_DISABLED)
198 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
199 break;
200 case NL80211_IFTYPE_AP:
201 case NL80211_IFTYPE_AP_VLAN:
202 /* Keys without a station are used for TX only */
203 if (key->sta && test_sta_flag(key->sta, WLAN_STA_MFP))
204 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
205 break;
206 case NL80211_IFTYPE_ADHOC:
207 /* no MFP (yet) */
208 break;
209 case NL80211_IFTYPE_MESH_POINT:
210#ifdef CONFIG_MAC80211_MESH
211 if (sdata->u.mesh.security != IEEE80211_MESH_SEC_NONE)
212 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
213 break;
214#endif
215 case NL80211_IFTYPE_WDS:
216 case NL80211_IFTYPE_MONITOR:
217 case NL80211_IFTYPE_P2P_DEVICE:
218 case NL80211_IFTYPE_UNSPECIFIED:
219 case NUM_NL80211_IFTYPES:
220 case NL80211_IFTYPE_P2P_CLIENT:
221 case NL80211_IFTYPE_P2P_GO:
222 /* shouldn't happen */
223 WARN_ON_ONCE(1);
224 break;
225 }
226
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200227 if (sta)
228 sta->cipher_scheme = cs;
229
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300230 err = ieee80211_key_link(key, sdata, sta);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100231
Johannes Berg3b967662008-04-08 17:56:52 +0200232 out_unlock:
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200233 mutex_unlock(&local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200234
235 return err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100236}
237
238static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berge31b8212010-10-05 19:39:30 +0200239 u8 key_idx, bool pairwise, const u8 *mac_addr)
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100240{
Johannes Berg5c0c3642011-05-12 14:31:49 +0200241 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
242 struct ieee80211_local *local = sdata->local;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100243 struct sta_info *sta;
Johannes Berg5c0c3642011-05-12 14:31:49 +0200244 struct ieee80211_key *key = NULL;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100245 int ret;
246
Johannes Berg5c0c3642011-05-12 14:31:49 +0200247 mutex_lock(&local->sta_mtx);
248 mutex_lock(&local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200249
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100250 if (mac_addr) {
Johannes Berg3b967662008-04-08 17:56:52 +0200251 ret = -ENOENT;
252
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100253 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100254 if (!sta)
Johannes Berg3b967662008-04-08 17:56:52 +0200255 goto out_unlock;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100256
Johannes Berg5c0c3642011-05-12 14:31:49 +0200257 if (pairwise)
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200258 key = key_mtx_dereference(local, sta->ptk[key_idx]);
Johannes Berg5c0c3642011-05-12 14:31:49 +0200259 else
Johannes Berg40b275b2011-05-13 14:15:49 +0200260 key = key_mtx_dereference(local, sta->gtk[key_idx]);
Johannes Berg5c0c3642011-05-12 14:31:49 +0200261 } else
Johannes Berg40b275b2011-05-13 14:15:49 +0200262 key = key_mtx_dereference(local, sdata->keys[key_idx]);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100263
Johannes Berg5c0c3642011-05-12 14:31:49 +0200264 if (!key) {
Johannes Berg3b967662008-04-08 17:56:52 +0200265 ret = -ENOENT;
266 goto out_unlock;
267 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100268
Johannes Berg3b8d9c22013-03-06 22:58:23 +0100269 ieee80211_key_free(key, true);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100270
Johannes Berg3b967662008-04-08 17:56:52 +0200271 ret = 0;
272 out_unlock:
Johannes Berg5c0c3642011-05-12 14:31:49 +0200273 mutex_unlock(&local->key_mtx);
274 mutex_unlock(&local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200275
276 return ret;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100277}
278
Johannes Berg62da92f2007-12-19 02:03:31 +0100279static int ieee80211_get_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berge31b8212010-10-05 19:39:30 +0200280 u8 key_idx, bool pairwise, const u8 *mac_addr,
281 void *cookie,
Johannes Berg62da92f2007-12-19 02:03:31 +0100282 void (*callback)(void *cookie,
283 struct key_params *params))
284{
Johannes Berg14db74b2008-07-29 13:22:52 +0200285 struct ieee80211_sub_if_data *sdata;
Johannes Berg62da92f2007-12-19 02:03:31 +0100286 struct sta_info *sta = NULL;
287 u8 seq[6] = {0};
288 struct key_params params;
Johannes Berge31b8212010-10-05 19:39:30 +0200289 struct ieee80211_key *key = NULL;
Johannes Bergaba83a0b2011-07-06 21:59:39 +0200290 u64 pn64;
Johannes Berg62da92f2007-12-19 02:03:31 +0100291 u32 iv32;
292 u16 iv16;
293 int err = -ENOENT;
294
Johannes Berg14db74b2008-07-29 13:22:52 +0200295 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
296
Johannes Berg3b967662008-04-08 17:56:52 +0200297 rcu_read_lock();
298
Johannes Berg62da92f2007-12-19 02:03:31 +0100299 if (mac_addr) {
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100300 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berg62da92f2007-12-19 02:03:31 +0100301 if (!sta)
302 goto out;
303
Johannes Berge31b8212010-10-05 19:39:30 +0200304 if (pairwise)
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200305 key = rcu_dereference(sta->ptk[key_idx]);
Johannes Berge31b8212010-10-05 19:39:30 +0200306 else if (key_idx < NUM_DEFAULT_KEYS)
Johannes Berga3836e02011-05-12 15:11:37 +0200307 key = rcu_dereference(sta->gtk[key_idx]);
Johannes Berg62da92f2007-12-19 02:03:31 +0100308 } else
Johannes Berga3836e02011-05-12 15:11:37 +0200309 key = rcu_dereference(sdata->keys[key_idx]);
Johannes Berg62da92f2007-12-19 02:03:31 +0100310
311 if (!key)
312 goto out;
313
314 memset(&params, 0, sizeof(params));
315
Johannes Berg97359d12010-08-10 09:46:38 +0200316 params.cipher = key->conf.cipher;
Johannes Berg62da92f2007-12-19 02:03:31 +0100317
Johannes Berg97359d12010-08-10 09:46:38 +0200318 switch (key->conf.cipher) {
319 case WLAN_CIPHER_SUITE_TKIP:
Harvey Harrisonb0f76b32008-05-14 16:26:19 -0700320 iv32 = key->u.tkip.tx.iv32;
321 iv16 = key->u.tkip.tx.iv16;
Johannes Berg62da92f2007-12-19 02:03:31 +0100322
Johannes Berg24487982009-04-23 18:52:52 +0200323 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
324 drv_get_tkip_seq(sdata->local,
325 key->conf.hw_key_idx,
326 &iv32, &iv16);
Johannes Berg62da92f2007-12-19 02:03:31 +0100327
328 seq[0] = iv16 & 0xff;
329 seq[1] = (iv16 >> 8) & 0xff;
330 seq[2] = iv32 & 0xff;
331 seq[3] = (iv32 >> 8) & 0xff;
332 seq[4] = (iv32 >> 16) & 0xff;
333 seq[5] = (iv32 >> 24) & 0xff;
334 params.seq = seq;
335 params.seq_len = 6;
336 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200337 case WLAN_CIPHER_SUITE_CCMP:
Johannes Bergaba83a0b2011-07-06 21:59:39 +0200338 pn64 = atomic64_read(&key->u.ccmp.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;
Johannes Berg62da92f2007-12-19 02:03:31 +0100345 params.seq = seq;
346 params.seq_len = 6;
347 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200348 case WLAN_CIPHER_SUITE_AES_CMAC:
Johannes Berg75396ae2011-07-06 22:00:35 +0200349 pn64 = atomic64_read(&key->u.aes_cmac.tx_pn);
350 seq[0] = pn64;
351 seq[1] = pn64 >> 8;
352 seq[2] = pn64 >> 16;
353 seq[3] = pn64 >> 24;
354 seq[4] = pn64 >> 32;
355 seq[5] = pn64 >> 40;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200356 params.seq = seq;
357 params.seq_len = 6;
358 break;
Johannes Berg62da92f2007-12-19 02:03:31 +0100359 }
360
361 params.key = key->conf.key;
362 params.key_len = key->conf.keylen;
363
364 callback(cookie, &params);
365 err = 0;
366
367 out:
Johannes Berg3b967662008-04-08 17:56:52 +0200368 rcu_read_unlock();
Johannes Berg62da92f2007-12-19 02:03:31 +0100369 return err;
370}
371
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100372static int ieee80211_config_default_key(struct wiphy *wiphy,
373 struct net_device *dev,
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100374 u8 key_idx, bool uni,
375 bool multi)
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100376{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200377 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100378
Johannes Bergf7e01042010-12-09 19:49:02 +0100379 ieee80211_set_default_key(sdata, key_idx, uni, multi);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100380
381 return 0;
382}
383
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200384static int ieee80211_config_default_mgmt_key(struct wiphy *wiphy,
385 struct net_device *dev,
386 u8 key_idx)
387{
Johannes Berg66c52422010-07-22 13:58:51 +0200388 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200389
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200390 ieee80211_set_default_mgmt_key(sdata, key_idx);
391
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200392 return 0;
393}
394
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800395void sta_set_rate_info_tx(struct sta_info *sta,
396 const struct ieee80211_tx_rate *rate,
397 struct rate_info *rinfo)
398{
399 rinfo->flags = 0;
Johannes Berg8bc83c22012-11-09 18:38:32 +0100400 if (rate->flags & IEEE80211_TX_RC_MCS) {
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800401 rinfo->flags |= RATE_INFO_FLAGS_MCS;
Johannes Berg8bc83c22012-11-09 18:38:32 +0100402 rinfo->mcs = rate->idx;
403 } else if (rate->flags & IEEE80211_TX_RC_VHT_MCS) {
404 rinfo->flags |= RATE_INFO_FLAGS_VHT_MCS;
405 rinfo->mcs = ieee80211_rate_get_vht_mcs(rate);
406 rinfo->nss = ieee80211_rate_get_vht_nss(rate);
407 } else {
408 struct ieee80211_supported_band *sband;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200409 int shift = ieee80211_vif_get_shift(&sta->sdata->vif);
410 u16 brate;
411
Johannes Berg8bc83c22012-11-09 18:38:32 +0100412 sband = sta->local->hw.wiphy->bands[
413 ieee80211_get_sdata_band(sta->sdata)];
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200414 brate = sband->bitrates[rate->idx].bitrate;
415 rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift);
Johannes Berg8bc83c22012-11-09 18:38:32 +0100416 }
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800417 if (rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
418 rinfo->flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
Johannes Berg8bc83c22012-11-09 18:38:32 +0100419 if (rate->flags & IEEE80211_TX_RC_80_MHZ_WIDTH)
420 rinfo->flags |= RATE_INFO_FLAGS_80_MHZ_WIDTH;
421 if (rate->flags & IEEE80211_TX_RC_160_MHZ_WIDTH)
422 rinfo->flags |= RATE_INFO_FLAGS_160_MHZ_WIDTH;
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800423 if (rate->flags & IEEE80211_TX_RC_SHORT_GI)
424 rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800425}
426
Saravana003e6762012-11-28 18:29:38 +0530427void sta_set_rate_info_rx(struct sta_info *sta, struct rate_info *rinfo)
428{
429 rinfo->flags = 0;
430
431 if (sta->last_rx_rate_flag & RX_FLAG_HT) {
432 rinfo->flags |= RATE_INFO_FLAGS_MCS;
433 rinfo->mcs = sta->last_rx_rate_idx;
434 } else if (sta->last_rx_rate_flag & RX_FLAG_VHT) {
435 rinfo->flags |= RATE_INFO_FLAGS_VHT_MCS;
436 rinfo->nss = sta->last_rx_rate_vht_nss;
437 rinfo->mcs = sta->last_rx_rate_idx;
438 } else {
439 struct ieee80211_supported_band *sband;
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200440 int shift = ieee80211_vif_get_shift(&sta->sdata->vif);
441 u16 brate;
Saravana003e6762012-11-28 18:29:38 +0530442
443 sband = sta->local->hw.wiphy->bands[
444 ieee80211_get_sdata_band(sta->sdata)];
Simon Wunderlich2103dec2013-07-08 16:55:53 +0200445 brate = sband->bitrates[sta->last_rx_rate_idx].bitrate;
446 rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift);
Saravana003e6762012-11-28 18:29:38 +0530447 }
448
449 if (sta->last_rx_rate_flag & RX_FLAG_40MHZ)
450 rinfo->flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
451 if (sta->last_rx_rate_flag & RX_FLAG_SHORT_GI)
452 rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
453 if (sta->last_rx_rate_flag & RX_FLAG_80MHZ)
454 rinfo->flags |= RATE_INFO_FLAGS_80_MHZ_WIDTH;
455 if (sta->last_rx_rate_flag & RX_FLAG_80P80MHZ)
456 rinfo->flags |= RATE_INFO_FLAGS_80P80_MHZ_WIDTH;
457 if (sta->last_rx_rate_flag & RX_FLAG_160MHZ)
458 rinfo->flags |= RATE_INFO_FLAGS_160_MHZ_WIDTH;
459}
460
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100461static void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo)
462{
Johannes Bergd0709a62008-02-25 16:27:46 +0100463 struct ieee80211_sub_if_data *sdata = sta->sdata;
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300464 struct ieee80211_local *local = sdata->local;
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530465 struct timespec uptime;
Johannes Berg560d2682013-02-05 10:55:21 +0100466 u64 packets = 0;
Felix Fietkauef0621e2013-04-22 16:29:31 +0200467 int i, ac;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100468
Johannes Bergf5ea9122009-08-07 16:17:38 +0200469 sinfo->generation = sdata->local->sta_generation;
470
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100471 sinfo->filled = STATION_INFO_INACTIVE_TIME |
Johannes Berg560d2682013-02-05 10:55:21 +0100472 STATION_INFO_RX_BYTES64 |
473 STATION_INFO_TX_BYTES64 |
Jouni Malinen98c8a60a2009-02-17 13:24:57 +0200474 STATION_INFO_RX_PACKETS |
475 STATION_INFO_TX_PACKETS |
Bruno Randolfb206b4e2010-10-06 18:34:12 +0900476 STATION_INFO_TX_RETRIES |
477 STATION_INFO_TX_FAILED |
Ben Greear5a5c7312010-10-07 16:39:20 -0700478 STATION_INFO_TX_BITRATE |
Felix Fietkau3af63342011-02-27 22:08:01 +0100479 STATION_INFO_RX_BITRATE |
Paul Stewartf4263c92011-03-31 09:25:41 -0700480 STATION_INFO_RX_DROP_MISC |
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530481 STATION_INFO_BSS_PARAM |
Helmut Schaa7a724762011-10-13 16:30:40 +0200482 STATION_INFO_CONNECTED_TIME |
Paul Stewarta85e1d52011-12-09 11:01:49 -0800483 STATION_INFO_STA_FLAGS |
484 STATION_INFO_BEACON_LOSS_COUNT;
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530485
486 do_posix_clock_monotonic_gettime(&uptime);
487 sinfo->connected_time = uptime.tv_sec - sta->last_connected;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100488
489 sinfo->inactive_time = jiffies_to_msecs(jiffies - sta->last_rx);
Johannes Berg560d2682013-02-05 10:55:21 +0100490 sinfo->tx_bytes = 0;
491 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
492 sinfo->tx_bytes += sta->tx_bytes[ac];
493 packets += sta->tx_packets[ac];
494 }
495 sinfo->tx_packets = packets;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100496 sinfo->rx_bytes = sta->rx_bytes;
Jouni Malinen98c8a60a2009-02-17 13:24:57 +0200497 sinfo->rx_packets = sta->rx_packets;
Bruno Randolfb206b4e2010-10-06 18:34:12 +0900498 sinfo->tx_retries = sta->tx_retry_count;
499 sinfo->tx_failed = sta->tx_retry_failed;
Ben Greear5a5c7312010-10-07 16:39:20 -0700500 sinfo->rx_dropped_misc = sta->rx_dropped;
Paul Stewarta85e1d52011-12-09 11:01:49 -0800501 sinfo->beacon_loss_count = sta->beacon_loss_count;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100502
John W. Linville19deffb2009-12-08 17:10:13 -0500503 if ((sta->local->hw.flags & IEEE80211_HW_SIGNAL_DBM) ||
504 (sta->local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC)) {
Bruno Randolf541a45a2010-12-02 19:12:43 +0900505 sinfo->filled |= STATION_INFO_SIGNAL | STATION_INFO_SIGNAL_AVG;
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300506 if (!local->ops->get_rssi ||
507 drv_get_rssi(local, sdata, &sta->sta, &sinfo->signal))
508 sinfo->signal = (s8)sta->last_signal;
Bruno Randolf541a45a2010-12-02 19:12:43 +0900509 sinfo->signal_avg = (s8) -ewma_read(&sta->avg_signal);
Henning Rogge420e7fa2008-12-11 22:04:19 +0100510 }
Felix Fietkauef0621e2013-04-22 16:29:31 +0200511 if (sta->chains) {
512 sinfo->filled |= STATION_INFO_CHAIN_SIGNAL |
513 STATION_INFO_CHAIN_SIGNAL_AVG;
514
515 sinfo->chains = sta->chains;
516 for (i = 0; i < ARRAY_SIZE(sinfo->chain_signal); i++) {
517 sinfo->chain_signal[i] = sta->chain_signal_last[i];
518 sinfo->chain_signal_avg[i] =
519 (s8) -ewma_read(&sta->chain_signal_avg[i]);
520 }
521 }
Henning Rogge420e7fa2008-12-11 22:04:19 +0100522
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800523 sta_set_rate_info_tx(sta, &sta->last_tx_rate, &sinfo->txrate);
Saravana003e6762012-11-28 18:29:38 +0530524 sta_set_rate_info_rx(sta, &sinfo->rxrate);
Henning Rogge420e7fa2008-12-11 22:04:19 +0100525
Johannes Berg902acc72008-02-23 15:17:19 +0100526 if (ieee80211_vif_is_mesh(&sdata->vif)) {
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100527#ifdef CONFIG_MAC80211_MESH
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100528 sinfo->filled |= STATION_INFO_LLID |
529 STATION_INFO_PLID |
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100530 STATION_INFO_PLINK_STATE |
531 STATION_INFO_LOCAL_PM |
532 STATION_INFO_PEER_PM |
533 STATION_INFO_NONPEER_PM;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100534
Chun-Yeow Yeoh6f101ef2013-11-13 15:43:03 +0800535 sinfo->llid = sta->llid;
536 sinfo->plid = sta->plid;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100537 sinfo->plink_state = sta->plink_state;
Javier Cardonad299a1f2012-03-31 11:31:33 -0700538 if (test_sta_flag(sta, WLAN_STA_TOFFSET_KNOWN)) {
539 sinfo->filled |= STATION_INFO_T_OFFSET;
540 sinfo->t_offset = sta->t_offset;
541 }
Marco Porsch3f52b7e2013-01-30 18:14:08 +0100542 sinfo->local_pm = sta->local_pm;
543 sinfo->peer_pm = sta->peer_pm;
544 sinfo->nonpeer_pm = sta->nonpeer_pm;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100545#endif
Johannes Berg902acc72008-02-23 15:17:19 +0100546 }
Paul Stewartf4263c92011-03-31 09:25:41 -0700547
548 sinfo->bss_param.flags = 0;
549 if (sdata->vif.bss_conf.use_cts_prot)
550 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_CTS_PROT;
551 if (sdata->vif.bss_conf.use_short_preamble)
552 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_PREAMBLE;
553 if (sdata->vif.bss_conf.use_short_slot)
554 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_SLOT_TIME;
555 sinfo->bss_param.dtim_period = sdata->local->hw.conf.ps_dtim_period;
556 sinfo->bss_param.beacon_interval = sdata->vif.bss_conf.beacon_int;
Helmut Schaa7a724762011-10-13 16:30:40 +0200557
558 sinfo->sta_flags.set = 0;
559 sinfo->sta_flags.mask = BIT(NL80211_STA_FLAG_AUTHORIZED) |
560 BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) |
561 BIT(NL80211_STA_FLAG_WME) |
562 BIT(NL80211_STA_FLAG_MFP) |
Helmut Schaae4121562011-11-05 14:15:24 +0100563 BIT(NL80211_STA_FLAG_AUTHENTICATED) |
Johannes Bergd582cff2012-10-26 17:53:44 +0200564 BIT(NL80211_STA_FLAG_ASSOCIATED) |
Helmut Schaae4121562011-11-05 14:15:24 +0100565 BIT(NL80211_STA_FLAG_TDLS_PEER);
Helmut Schaa7a724762011-10-13 16:30:40 +0200566 if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
567 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_AUTHORIZED);
568 if (test_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE))
569 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_SHORT_PREAMBLE);
570 if (test_sta_flag(sta, WLAN_STA_WME))
571 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_WME);
572 if (test_sta_flag(sta, WLAN_STA_MFP))
573 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_MFP);
574 if (test_sta_flag(sta, WLAN_STA_AUTH))
575 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_AUTHENTICATED);
Johannes Bergd582cff2012-10-26 17:53:44 +0200576 if (test_sta_flag(sta, WLAN_STA_ASSOC))
577 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_ASSOCIATED);
Helmut Schaae4121562011-11-05 14:15:24 +0100578 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER))
579 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_TDLS_PEER);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100580}
581
Ben Greearb1ab7922012-04-23 12:50:30 -0700582static const char ieee80211_gstrings_sta_stats[][ETH_GSTRING_LEN] = {
583 "rx_packets", "rx_bytes", "wep_weak_iv_count",
584 "rx_duplicates", "rx_fragments", "rx_dropped",
585 "tx_packets", "tx_bytes", "tx_fragments",
586 "tx_filtered", "tx_retry_failed", "tx_retries",
Ben Greear3073a7c2012-04-23 12:50:32 -0700587 "beacon_loss", "sta_state", "txrate", "rxrate", "signal",
588 "channel", "noise", "ch_time", "ch_time_busy",
589 "ch_time_ext_busy", "ch_time_rx", "ch_time_tx"
Ben Greearb1ab7922012-04-23 12:50:30 -0700590};
591#define STA_STATS_LEN ARRAY_SIZE(ieee80211_gstrings_sta_stats)
592
593static int ieee80211_get_et_sset_count(struct wiphy *wiphy,
594 struct net_device *dev,
595 int sset)
596{
Ben Greeare3521142012-04-23 12:50:31 -0700597 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
598 int rv = 0;
Ben Greearb1ab7922012-04-23 12:50:30 -0700599
Ben Greeare3521142012-04-23 12:50:31 -0700600 if (sset == ETH_SS_STATS)
601 rv += STA_STATS_LEN;
602
603 rv += drv_get_et_sset_count(sdata, sset);
604
605 if (rv == 0)
606 return -EOPNOTSUPP;
607 return rv;
Ben Greearb1ab7922012-04-23 12:50:30 -0700608}
609
610static void ieee80211_get_et_stats(struct wiphy *wiphy,
611 struct net_device *dev,
612 struct ethtool_stats *stats,
613 u64 *data)
614{
615 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg55de9082012-07-26 17:24:39 +0200616 struct ieee80211_chanctx_conf *chanctx_conf;
617 struct ieee80211_channel *channel;
Ben Greearb1ab7922012-04-23 12:50:30 -0700618 struct sta_info *sta;
619 struct ieee80211_local *local = sdata->local;
Ben Greear3073a7c2012-04-23 12:50:32 -0700620 struct station_info sinfo;
621 struct survey_info survey;
622 int i, q;
623#define STA_STATS_SURVEY_LEN 7
Ben Greearb1ab7922012-04-23 12:50:30 -0700624
625 memset(data, 0, sizeof(u64) * STA_STATS_LEN);
626
627#define ADD_STA_STATS(sta) \
628 do { \
629 data[i++] += sta->rx_packets; \
630 data[i++] += sta->rx_bytes; \
631 data[i++] += sta->wep_weak_iv_count; \
632 data[i++] += sta->num_duplicates; \
633 data[i++] += sta->rx_fragments; \
634 data[i++] += sta->rx_dropped; \
635 \
Johannes Berg560d2682013-02-05 10:55:21 +0100636 data[i++] += sinfo.tx_packets; \
637 data[i++] += sinfo.tx_bytes; \
Ben Greearb1ab7922012-04-23 12:50:30 -0700638 data[i++] += sta->tx_fragments; \
639 data[i++] += sta->tx_filtered_count; \
640 data[i++] += sta->tx_retry_failed; \
641 data[i++] += sta->tx_retry_count; \
642 data[i++] += sta->beacon_loss_count; \
643 } while (0)
644
645 /* For Managed stations, find the single station based on BSSID
646 * and use that. For interface types, iterate through all available
647 * stations and add stats for any station that is assigned to this
648 * network device.
649 */
650
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300651 mutex_lock(&local->sta_mtx);
Ben Greearb1ab7922012-04-23 12:50:30 -0700652
653 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
654 sta = sta_info_get_bss(sdata, sdata->u.mgd.bssid);
Ben Greear3073a7c2012-04-23 12:50:32 -0700655
656 if (!(sta && !WARN_ON(sta->sdata->dev != dev)))
657 goto do_survey;
658
Johannes Berg560d2682013-02-05 10:55:21 +0100659 sinfo.filled = 0;
660 sta_set_sinfo(sta, &sinfo);
661
Ben Greear3073a7c2012-04-23 12:50:32 -0700662 i = 0;
663 ADD_STA_STATS(sta);
664
665 data[i++] = sta->sta_state;
666
Ben Greear3073a7c2012-04-23 12:50:32 -0700667
Joe Perches52042672012-05-30 13:25:54 -0700668 if (sinfo.filled & STATION_INFO_TX_BITRATE)
Ben Greear3073a7c2012-04-23 12:50:32 -0700669 data[i] = 100000 *
670 cfg80211_calculate_bitrate(&sinfo.txrate);
671 i++;
Joe Perches52042672012-05-30 13:25:54 -0700672 if (sinfo.filled & STATION_INFO_RX_BITRATE)
Ben Greear3073a7c2012-04-23 12:50:32 -0700673 data[i] = 100000 *
674 cfg80211_calculate_bitrate(&sinfo.rxrate);
675 i++;
676
Joe Perches52042672012-05-30 13:25:54 -0700677 if (sinfo.filled & STATION_INFO_SIGNAL_AVG)
Ben Greear3073a7c2012-04-23 12:50:32 -0700678 data[i] = (u8)sinfo.signal_avg;
679 i++;
Ben Greearb1ab7922012-04-23 12:50:30 -0700680 } else {
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300681 list_for_each_entry(sta, &local->sta_list, list) {
Ben Greearb1ab7922012-04-23 12:50:30 -0700682 /* Make sure this station belongs to the proper dev */
683 if (sta->sdata->dev != dev)
684 continue;
685
Johannes Berge13bae42013-07-08 10:43:31 +0200686 sinfo.filled = 0;
687 sta_set_sinfo(sta, &sinfo);
Ben Greearb1ab7922012-04-23 12:50:30 -0700688 i = 0;
689 ADD_STA_STATS(sta);
Ben Greearb1ab7922012-04-23 12:50:30 -0700690 }
691 }
692
Ben Greear3073a7c2012-04-23 12:50:32 -0700693do_survey:
694 i = STA_STATS_LEN - STA_STATS_SURVEY_LEN;
695 /* Get survey stats for current channel */
Johannes Berg55de9082012-07-26 17:24:39 +0200696 survey.filled = 0;
Ben Greear3073a7c2012-04-23 12:50:32 -0700697
Johannes Berg55de9082012-07-26 17:24:39 +0200698 rcu_read_lock();
699 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
700 if (chanctx_conf)
Johannes Berg4bf88532012-11-09 11:39:59 +0100701 channel = chanctx_conf->def.chan;
Johannes Berg55de9082012-07-26 17:24:39 +0200702 else
703 channel = NULL;
704 rcu_read_unlock();
705
706 if (channel) {
707 q = 0;
708 do {
709 survey.filled = 0;
710 if (drv_get_survey(local, q, &survey) != 0) {
711 survey.filled = 0;
712 break;
713 }
714 q++;
715 } while (channel != survey.channel);
Ben Greear3073a7c2012-04-23 12:50:32 -0700716 }
717
718 if (survey.filled)
719 data[i++] = survey.channel->center_freq;
720 else
721 data[i++] = 0;
722 if (survey.filled & SURVEY_INFO_NOISE_DBM)
723 data[i++] = (u8)survey.noise;
724 else
725 data[i++] = -1LL;
726 if (survey.filled & SURVEY_INFO_CHANNEL_TIME)
727 data[i++] = survey.channel_time;
728 else
729 data[i++] = -1LL;
730 if (survey.filled & SURVEY_INFO_CHANNEL_TIME_BUSY)
731 data[i++] = survey.channel_time_busy;
732 else
733 data[i++] = -1LL;
734 if (survey.filled & SURVEY_INFO_CHANNEL_TIME_EXT_BUSY)
735 data[i++] = survey.channel_time_ext_busy;
736 else
737 data[i++] = -1LL;
738 if (survey.filled & SURVEY_INFO_CHANNEL_TIME_RX)
739 data[i++] = survey.channel_time_rx;
740 else
741 data[i++] = -1LL;
742 if (survey.filled & SURVEY_INFO_CHANNEL_TIME_TX)
743 data[i++] = survey.channel_time_tx;
744 else
745 data[i++] = -1LL;
746
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300747 mutex_unlock(&local->sta_mtx);
Ben Greeare3521142012-04-23 12:50:31 -0700748
Ben Greear3073a7c2012-04-23 12:50:32 -0700749 if (WARN_ON(i != STA_STATS_LEN))
750 return;
751
Ben Greeare3521142012-04-23 12:50:31 -0700752 drv_get_et_stats(sdata, stats, &(data[STA_STATS_LEN]));
Ben Greearb1ab7922012-04-23 12:50:30 -0700753}
754
755static void ieee80211_get_et_strings(struct wiphy *wiphy,
756 struct net_device *dev,
757 u32 sset, u8 *data)
758{
Ben Greeare3521142012-04-23 12:50:31 -0700759 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
760 int sz_sta_stats = 0;
761
Ben Greearb1ab7922012-04-23 12:50:30 -0700762 if (sset == ETH_SS_STATS) {
Ben Greeare3521142012-04-23 12:50:31 -0700763 sz_sta_stats = sizeof(ieee80211_gstrings_sta_stats);
Johannes Bergbd500af2013-05-06 21:09:46 +0200764 memcpy(data, ieee80211_gstrings_sta_stats, sz_sta_stats);
Ben Greearb1ab7922012-04-23 12:50:30 -0700765 }
Ben Greeare3521142012-04-23 12:50:31 -0700766 drv_get_et_strings(sdata, sset, &(data[sz_sta_stats]));
Ben Greearb1ab7922012-04-23 12:50:30 -0700767}
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100768
769static int ieee80211_dump_station(struct wiphy *wiphy, struct net_device *dev,
770 int idx, u8 *mac, struct station_info *sinfo)
771{
Johannes Berg3b53fde82009-11-16 12:00:37 +0100772 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300773 struct ieee80211_local *local = sdata->local;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100774 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100775 int ret = -ENOENT;
776
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300777 mutex_lock(&local->sta_mtx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100778
Johannes Berg3b53fde82009-11-16 12:00:37 +0100779 sta = sta_info_get_by_idx(sdata, idx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100780 if (sta) {
781 ret = 0;
Johannes Berg17741cd2008-09-11 00:02:02 +0200782 memcpy(mac, sta->sta.addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100783 sta_set_sinfo(sta, sinfo);
784 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100785
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300786 mutex_unlock(&local->sta_mtx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100787
Johannes Bergd0709a62008-02-25 16:27:46 +0100788 return ret;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100789}
790
Holger Schurig12897232010-04-19 10:23:57 +0200791static int ieee80211_dump_survey(struct wiphy *wiphy, struct net_device *dev,
792 int idx, struct survey_info *survey)
793{
794 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
795
Holger Schurig12897232010-04-19 10:23:57 +0200796 return drv_get_survey(local, idx, survey);
797}
798
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100799static int ieee80211_get_station(struct wiphy *wiphy, struct net_device *dev,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100800 u8 *mac, struct station_info *sinfo)
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100801{
Johannes Bergabe60632009-11-25 17:46:18 +0100802 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300803 struct ieee80211_local *local = sdata->local;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100804 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100805 int ret = -ENOENT;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100806
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300807 mutex_lock(&local->sta_mtx);
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100808
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100809 sta = sta_info_get_bss(sdata, mac);
Johannes Bergd0709a62008-02-25 16:27:46 +0100810 if (sta) {
811 ret = 0;
812 sta_set_sinfo(sta, sinfo);
813 }
814
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300815 mutex_unlock(&local->sta_mtx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100816
817 return ret;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100818}
819
Johannes Berge8c9bd52012-06-06 08:18:22 +0200820static int ieee80211_set_monitor_channel(struct wiphy *wiphy,
Johannes Berg683b6d32012-11-08 21:25:48 +0100821 struct cfg80211_chan_def *chandef)
Johannes Berge8c9bd52012-06-06 08:18:22 +0200822{
Johannes Berg55de9082012-07-26 17:24:39 +0200823 struct ieee80211_local *local = wiphy_priv(wiphy);
824 struct ieee80211_sub_if_data *sdata;
825 int ret = 0;
826
Johannes Berg4bf88532012-11-09 11:39:59 +0100827 if (cfg80211_chandef_identical(&local->monitor_chandef, chandef))
Johannes Berg55de9082012-07-26 17:24:39 +0200828 return 0;
829
830 mutex_lock(&local->iflist_mtx);
831 if (local->use_chanctx) {
832 sdata = rcu_dereference_protected(
833 local->monitor_sdata,
834 lockdep_is_held(&local->iflist_mtx));
835 if (sdata) {
836 ieee80211_vif_release_channel(sdata);
Johannes Berg4bf88532012-11-09 11:39:59 +0100837 ret = ieee80211_vif_use_channel(sdata, chandef,
Johannes Berg55de9082012-07-26 17:24:39 +0200838 IEEE80211_CHANCTX_EXCLUSIVE);
839 }
840 } else if (local->open_count == local->monitors) {
Karl Beldan675a0b02013-03-25 16:26:57 +0100841 local->_oper_chandef = *chandef;
Johannes Berg55de9082012-07-26 17:24:39 +0200842 ieee80211_hw_config(local, 0);
843 }
844
Johannes Berg4bf88532012-11-09 11:39:59 +0100845 if (ret == 0)
846 local->monitor_chandef = *chandef;
Johannes Berg55de9082012-07-26 17:24:39 +0200847 mutex_unlock(&local->iflist_mtx);
848
849 return ret;
Johannes Berge8c9bd52012-06-06 08:18:22 +0200850}
851
Arik Nemtsov02945822011-11-10 11:28:57 +0200852static int ieee80211_set_probe_resp(struct ieee80211_sub_if_data *sdata,
Johannes Berg88600202012-02-13 15:17:18 +0100853 const u8 *resp, size_t resp_len)
Arik Nemtsov02945822011-11-10 11:28:57 +0200854{
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300855 struct probe_resp *new, *old;
Arik Nemtsov02945822011-11-10 11:28:57 +0200856
857 if (!resp || !resp_len)
Sujith Manoharanaba4e6f2012-08-22 14:21:07 +0530858 return 1;
Arik Nemtsov02945822011-11-10 11:28:57 +0200859
Arik Nemtsovf7248282011-11-19 10:51:26 +0200860 old = rtnl_dereference(sdata->u.ap.probe_resp);
Arik Nemtsov02945822011-11-10 11:28:57 +0200861
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300862 new = kzalloc(sizeof(struct probe_resp) + resp_len, GFP_KERNEL);
Arik Nemtsov02945822011-11-10 11:28:57 +0200863 if (!new)
864 return -ENOMEM;
865
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300866 new->len = resp_len;
867 memcpy(new->data, resp, resp_len);
Arik Nemtsov02945822011-11-10 11:28:57 +0200868
869 rcu_assign_pointer(sdata->u.ap.probe_resp, new);
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300870 if (old)
871 kfree_rcu(old, rcu_head);
Arik Nemtsov02945822011-11-10 11:28:57 +0200872
873 return 0;
874}
875
Simon Wunderlich73da7d52013-07-11 16:09:06 +0200876int ieee80211_assign_beacon(struct ieee80211_sub_if_data *sdata,
877 struct cfg80211_beacon_data *params)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100878{
879 struct beacon_data *new, *old;
880 int new_head_len, new_tail_len;
Johannes Berg88600202012-02-13 15:17:18 +0100881 int size, err;
882 u32 changed = BSS_CHANGED_BEACON;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100883
Johannes Berg40b275b2011-05-13 14:15:49 +0200884 old = rtnl_dereference(sdata->u.ap.beacon);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100885
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100886 /* Need to have a beacon head if we don't have one yet */
887 if (!params->head && !old)
Johannes Berg88600202012-02-13 15:17:18 +0100888 return -EINVAL;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100889
890 /* new or old head? */
891 if (params->head)
892 new_head_len = params->head_len;
893 else
894 new_head_len = old->head_len;
895
896 /* new or old tail? */
897 if (params->tail || !old)
898 /* params->tail_len will be zero for !params->tail */
899 new_tail_len = params->tail_len;
900 else
901 new_tail_len = old->tail_len;
902
903 size = sizeof(*new) + new_head_len + new_tail_len;
904
905 new = kzalloc(size, GFP_KERNEL);
906 if (!new)
907 return -ENOMEM;
908
909 /* start filling the new info now */
910
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100911 /*
912 * pointers go into the block we allocated,
913 * memory is | beacon_data | head | tail |
914 */
915 new->head = ((u8 *) new) + sizeof(*new);
916 new->tail = new->head + new_head_len;
917 new->head_len = new_head_len;
918 new->tail_len = new_tail_len;
919
920 /* copy in head */
921 if (params->head)
922 memcpy(new->head, params->head, new_head_len);
923 else
924 memcpy(new->head, old->head, new_head_len);
925
926 /* copy in optional tail */
927 if (params->tail)
928 memcpy(new->tail, params->tail, new_tail_len);
929 else
930 if (old)
931 memcpy(new->tail, old->tail, new_tail_len);
932
Johannes Berg88600202012-02-13 15:17:18 +0100933 err = ieee80211_set_probe_resp(sdata, params->probe_resp,
934 params->probe_resp_len);
935 if (err < 0)
936 return err;
937 if (err == 0)
938 changed |= BSS_CHANGED_AP_PROBE_RESP;
Johannes Berg19885c42010-02-05 11:45:06 +0100939
Eric Dumazetcf778b02012-01-12 04:41:32 +0000940 rcu_assign_pointer(sdata->u.ap.beacon, new);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100941
Johannes Berg88600202012-02-13 15:17:18 +0100942 if (old)
943 kfree_rcu(old, rcu_head);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100944
Johannes Berg88600202012-02-13 15:17:18 +0100945 return changed;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100946}
947
Johannes Berg88600202012-02-13 15:17:18 +0100948static int ieee80211_start_ap(struct wiphy *wiphy, struct net_device *dev,
949 struct cfg80211_ap_settings *params)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100950{
Johannes Berg88600202012-02-13 15:17:18 +0100951 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100952 struct beacon_data *old;
Johannes Berg665c93a2011-11-04 11:18:11 +0100953 struct ieee80211_sub_if_data *vlan;
Johannes Berg88600202012-02-13 15:17:18 +0100954 u32 changed = BSS_CHANGED_BEACON_INT |
955 BSS_CHANGED_BEACON_ENABLED |
956 BSS_CHANGED_BEACON |
Johannes Berg339afbf2012-11-14 15:21:17 +0100957 BSS_CHANGED_SSID |
958 BSS_CHANGED_P2P_PS;
Johannes Berg88600202012-02-13 15:17:18 +0100959 int err;
Johannes Berg14db74b2008-07-29 13:22:52 +0200960
Johannes Berg40b275b2011-05-13 14:15:49 +0200961 old = rtnl_dereference(sdata->u.ap.beacon);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100962 if (old)
963 return -EALREADY;
964
Johannes Berg04ecd252012-09-11 14:34:12 +0200965 /* TODO: make hostapd tell us what it wants */
966 sdata->smps_mode = IEEE80211_SMPS_OFF;
967 sdata->needed_rx_chains = sdata->local->rx_chains;
Simon Wunderlich164eb022013-02-08 18:16:20 +0100968 sdata->radar_required = params->radar_required;
Johannes Berg04ecd252012-09-11 14:34:12 +0200969
Johannes Berg4bf88532012-11-09 11:39:59 +0100970 err = ieee80211_vif_use_channel(sdata, &params->chandef,
Johannes Berg55de9082012-07-26 17:24:39 +0200971 IEEE80211_CHANCTX_SHARED);
Johannes Bergaa430da2012-05-16 23:50:18 +0200972 if (err)
973 return err;
Johannes Berg1f4ac5a2013-02-08 12:07:44 +0100974 ieee80211_vif_copy_chanctx_to_vlans(sdata, false);
Johannes Bergaa430da2012-05-16 23:50:18 +0200975
Johannes Berg665c93a2011-11-04 11:18:11 +0100976 /*
977 * Apply control port protocol, this allows us to
978 * not encrypt dynamic WEP control frames.
979 */
980 sdata->control_port_protocol = params->crypto.control_port_ethertype;
981 sdata->control_port_no_encrypt = params->crypto.control_port_no_encrypt;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200982 sdata->encrypt_headroom = ieee80211_cs_headroom(sdata->local,
983 &params->crypto,
984 sdata->vif.type);
985
Johannes Berg665c93a2011-11-04 11:18:11 +0100986 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list) {
987 vlan->control_port_protocol =
988 params->crypto.control_port_ethertype;
989 vlan->control_port_no_encrypt =
990 params->crypto.control_port_no_encrypt;
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200991 vlan->encrypt_headroom =
992 ieee80211_cs_headroom(sdata->local,
993 &params->crypto,
994 vlan->vif.type);
Johannes Berg665c93a2011-11-04 11:18:11 +0100995 }
996
Johannes Berg88600202012-02-13 15:17:18 +0100997 sdata->vif.bss_conf.beacon_int = params->beacon_interval;
998 sdata->vif.bss_conf.dtim_period = params->dtim_period;
Johannes Bergd6a83222012-12-14 14:06:28 +0100999 sdata->vif.bss_conf.enable_beacon = true;
Johannes Berg88600202012-02-13 15:17:18 +01001000
1001 sdata->vif.bss_conf.ssid_len = params->ssid_len;
1002 if (params->ssid_len)
1003 memcpy(sdata->vif.bss_conf.ssid, params->ssid,
1004 params->ssid_len);
1005 sdata->vif.bss_conf.hidden_ssid =
1006 (params->hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE);
1007
Janusz Dziedzic67baf662013-03-21 15:47:56 +01001008 memset(&sdata->vif.bss_conf.p2p_noa_attr, 0,
1009 sizeof(sdata->vif.bss_conf.p2p_noa_attr));
1010 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow =
1011 params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
1012 if (params->p2p_opp_ps)
1013 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
1014 IEEE80211_P2P_OPPPS_ENABLE_BIT;
Johannes Berg339afbf2012-11-14 15:21:17 +01001015
Johannes Berg88600202012-02-13 15:17:18 +01001016 err = ieee80211_assign_beacon(sdata, &params->beacon);
1017 if (err < 0)
1018 return err;
1019 changed |= err;
1020
Johannes Berg10416382012-10-19 15:44:42 +02001021 err = drv_start_ap(sdata->local, sdata);
1022 if (err) {
1023 old = rtnl_dereference(sdata->u.ap.beacon);
1024 if (old)
1025 kfree_rcu(old, rcu_head);
1026 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
1027 return err;
1028 }
1029
Johannes Berg88600202012-02-13 15:17:18 +01001030 ieee80211_bss_info_change_notify(sdata, changed);
1031
Johannes Berg3edaf3e2012-04-03 10:24:00 +02001032 netif_carrier_on(dev);
1033 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
1034 netif_carrier_on(vlan->dev);
1035
Johannes Berg665c93a2011-11-04 11:18:11 +01001036 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001037}
1038
Johannes Berg88600202012-02-13 15:17:18 +01001039static int ieee80211_change_beacon(struct wiphy *wiphy, struct net_device *dev,
1040 struct cfg80211_beacon_data *params)
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001041{
Johannes Berg14db74b2008-07-29 13:22:52 +02001042 struct ieee80211_sub_if_data *sdata;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001043 struct beacon_data *old;
Johannes Berg88600202012-02-13 15:17:18 +01001044 int err;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001045
Johannes Berg14db74b2008-07-29 13:22:52 +02001046 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1047
Simon Wunderlich73da7d52013-07-11 16:09:06 +02001048 /* don't allow changing the beacon while CSA is in place - offset
1049 * of channel switch counter may change
1050 */
1051 if (sdata->vif.csa_active)
1052 return -EBUSY;
1053
Johannes Berg40b275b2011-05-13 14:15:49 +02001054 old = rtnl_dereference(sdata->u.ap.beacon);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001055 if (!old)
1056 return -ENOENT;
1057
Johannes Berg88600202012-02-13 15:17:18 +01001058 err = ieee80211_assign_beacon(sdata, params);
1059 if (err < 0)
1060 return err;
1061 ieee80211_bss_info_change_notify(sdata, err);
1062 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001063}
1064
Johannes Berg88600202012-02-13 15:17:18 +01001065static int ieee80211_stop_ap(struct wiphy *wiphy, struct net_device *dev)
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001066{
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001067 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1068 struct ieee80211_sub_if_data *vlan;
1069 struct ieee80211_local *local = sdata->local;
1070 struct beacon_data *old_beacon;
1071 struct probe_resp *old_probe_resp;
Janusz Dziedzicd2859df2013-11-06 13:55:51 +01001072 struct cfg80211_chan_def chandef;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001073
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001074 old_beacon = rtnl_dereference(sdata->u.ap.beacon);
1075 if (!old_beacon)
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001076 return -ENOENT;
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001077 old_probe_resp = rtnl_dereference(sdata->u.ap.probe_resp);
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001078
Simon Wunderlich73da7d52013-07-11 16:09:06 +02001079 /* abort any running channel switch */
1080 sdata->vif.csa_active = false;
1081 cancel_work_sync(&sdata->csa_finalize_work);
Emmanuel Grumbach687da132013-10-01 16:45:43 +03001082 cancel_work_sync(&sdata->u.ap.request_smps_work);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02001083
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001084 /* turn off carrier for this interface and dependent VLANs */
Johannes Berg3edaf3e2012-04-03 10:24:00 +02001085 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
1086 netif_carrier_off(vlan->dev);
1087 netif_carrier_off(dev);
1088
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001089 /* remove beacon and probe response */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00001090 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001091 RCU_INIT_POINTER(sdata->u.ap.probe_resp, NULL);
1092 kfree_rcu(old_beacon, rcu_head);
1093 if (old_probe_resp)
1094 kfree_rcu(old_probe_resp, rcu_head);
Johannes Berg88600202012-02-13 15:17:18 +01001095
Felix Fietkau2d4072a2012-12-10 20:02:34 +01001096 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
Johannes Berg75de9112012-12-14 14:56:03 +01001097 sta_info_flush_defer(vlan);
1098 sta_info_flush_defer(sdata);
Bob Copeland8ceb5952013-04-18 18:26:49 -04001099 synchronize_net();
Johannes Berg75de9112012-12-14 14:56:03 +01001100 rcu_barrier();
Johannes Berg7b4396b2013-02-23 01:14:20 +01001101 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list) {
Johannes Berg75de9112012-12-14 14:56:03 +01001102 sta_info_flush_cleanup(vlan);
Johannes Berg7b4396b2013-02-23 01:14:20 +01001103 ieee80211_free_keys(vlan);
1104 }
Johannes Berg75de9112012-12-14 14:56:03 +01001105 sta_info_flush_cleanup(sdata);
Johannes Berg7b4396b2013-02-23 01:14:20 +01001106 ieee80211_free_keys(sdata);
Johannes Berg75de9112012-12-14 14:56:03 +01001107
Johannes Bergd6a83222012-12-14 14:06:28 +01001108 sdata->vif.bss_conf.enable_beacon = false;
Marek Puzyniak0eabccd2013-04-10 13:47:45 +02001109 sdata->vif.bss_conf.ssid_len = 0;
Johannes Bergd6a83222012-12-14 14:06:28 +01001110 clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED, &sdata->state);
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001111 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
Johannes Berg88600202012-02-13 15:17:18 +01001112
Simon Wunderlicha6b368f2013-06-11 10:44:39 +02001113 if (sdata->wdev.cac_started) {
Janusz Dziedzicd2859df2013-11-06 13:55:51 +01001114 chandef = sdata->vif.bss_conf.chandef;
Simon Wunderlicha6b368f2013-06-11 10:44:39 +02001115 cancel_delayed_work_sync(&sdata->dfs_cac_timer_work);
Janusz Dziedzicd2859df2013-11-06 13:55:51 +01001116 cfg80211_cac_event(sdata->dev, &chandef,
1117 NL80211_RADAR_CAC_ABORTED,
Simon Wunderlicha6b368f2013-06-11 10:44:39 +02001118 GFP_KERNEL);
1119 }
1120
Johannes Berg10416382012-10-19 15:44:42 +02001121 drv_stop_ap(sdata->local, sdata);
1122
Johannes Berg7b20b8e2012-10-25 19:02:42 +02001123 /* free all potentially still buffered bcast frames */
1124 local->total_ps_buffered -= skb_queue_len(&sdata->u.ap.ps.bc_buf);
1125 skb_queue_purge(&sdata->u.ap.ps.bc_buf);
1126
Johannes Berg1f4ac5a2013-02-08 12:07:44 +01001127 ieee80211_vif_copy_chanctx_to_vlans(sdata, true);
Johannes Berg55de9082012-07-26 17:24:39 +02001128 ieee80211_vif_release_channel(sdata);
1129
Johannes Berg2d0ddec2009-04-23 16:13:26 +02001130 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +01001131}
1132
Johannes Berg4fd69312007-12-19 02:03:35 +01001133/* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */
1134struct iapp_layer2_update {
1135 u8 da[ETH_ALEN]; /* broadcast */
1136 u8 sa[ETH_ALEN]; /* STA addr */
1137 __be16 len; /* 6 */
1138 u8 dsap; /* 0 */
1139 u8 ssap; /* 0 */
1140 u8 control;
1141 u8 xid_info[3];
Eric Dumazetbc105022010-06-03 03:21:52 -07001142} __packed;
Johannes Berg4fd69312007-12-19 02:03:35 +01001143
1144static void ieee80211_send_layer2_update(struct sta_info *sta)
1145{
1146 struct iapp_layer2_update *msg;
1147 struct sk_buff *skb;
1148
1149 /* Send Level 2 Update Frame to update forwarding tables in layer 2
1150 * bridge devices */
1151
1152 skb = dev_alloc_skb(sizeof(*msg));
1153 if (!skb)
1154 return;
1155 msg = (struct iapp_layer2_update *)skb_put(skb, sizeof(*msg));
1156
1157 /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID)
1158 * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */
1159
Johannes Berge83e6542012-07-13 16:23:07 +02001160 eth_broadcast_addr(msg->da);
Johannes Berg17741cd2008-09-11 00:02:02 +02001161 memcpy(msg->sa, sta->sta.addr, ETH_ALEN);
Johannes Berg4fd69312007-12-19 02:03:35 +01001162 msg->len = htons(6);
1163 msg->dsap = 0;
1164 msg->ssap = 0x01; /* NULL LSAP, CR Bit: Response */
1165 msg->control = 0xaf; /* XID response lsb.1111F101.
1166 * F=0 (no poll command; unsolicited frame) */
1167 msg->xid_info[0] = 0x81; /* XID format identifier */
1168 msg->xid_info[1] = 1; /* LLC types/classes: Type 1 LLC */
1169 msg->xid_info[2] = 0; /* XID sender's receive window size (RW) */
1170
Johannes Bergd0709a62008-02-25 16:27:46 +01001171 skb->dev = sta->sdata->dev;
1172 skb->protocol = eth_type_trans(skb, sta->sdata->dev);
Johannes Berg4fd69312007-12-19 02:03:35 +01001173 memset(skb->cb, 0, sizeof(skb->cb));
John W. Linville06ee1c22010-07-19 11:52:59 -04001174 netif_rx_ni(skb);
Johannes Berg4fd69312007-12-19 02:03:35 +01001175}
1176
Johannes Bergd582cff2012-10-26 17:53:44 +02001177static int sta_apply_auth_flags(struct ieee80211_local *local,
1178 struct sta_info *sta,
1179 u32 mask, u32 set)
1180{
1181 int ret;
1182
1183 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
1184 set & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
1185 !test_sta_flag(sta, WLAN_STA_AUTH)) {
1186 ret = sta_info_move_state(sta, IEEE80211_STA_AUTH);
1187 if (ret)
1188 return ret;
1189 }
1190
1191 if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
1192 set & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
1193 !test_sta_flag(sta, WLAN_STA_ASSOC)) {
1194 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
1195 if (ret)
1196 return ret;
1197 }
1198
1199 if (mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
1200 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED))
1201 ret = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
1202 else if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
1203 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
1204 else
1205 ret = 0;
1206 if (ret)
1207 return ret;
1208 }
1209
1210 if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
1211 !(set & BIT(NL80211_STA_FLAG_ASSOCIATED)) &&
1212 test_sta_flag(sta, WLAN_STA_ASSOC)) {
1213 ret = sta_info_move_state(sta, IEEE80211_STA_AUTH);
1214 if (ret)
1215 return ret;
1216 }
1217
1218 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
1219 !(set & BIT(NL80211_STA_FLAG_AUTHENTICATED)) &&
1220 test_sta_flag(sta, WLAN_STA_AUTH)) {
1221 ret = sta_info_move_state(sta, IEEE80211_STA_NONE);
1222 if (ret)
1223 return ret;
1224 }
1225
1226 return 0;
1227}
1228
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001229static int sta_apply_parameters(struct ieee80211_local *local,
1230 struct sta_info *sta,
1231 struct station_parameters *params)
Johannes Berg4fd69312007-12-19 02:03:35 +01001232{
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001233 int ret = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01001234 struct ieee80211_supported_band *sband;
Johannes Bergd0709a62008-02-25 16:27:46 +01001235 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berg55de9082012-07-26 17:24:39 +02001236 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001237 u32 mask, set;
Johannes Berg4fd69312007-12-19 02:03:35 +01001238
Johannes Berg55de9082012-07-26 17:24:39 +02001239 sband = local->hw.wiphy->bands[band];
Johannes Bergae5eb022008-10-14 16:58:37 +02001240
Johannes Bergeccb8e82009-05-11 21:57:56 +03001241 mask = params->sta_flags_mask;
1242 set = params->sta_flags_set;
Johannes Berg73651ee2008-02-25 16:27:47 +01001243
Johannes Bergd582cff2012-10-26 17:53:44 +02001244 if (ieee80211_vif_is_mesh(&sdata->vif)) {
1245 /*
1246 * In mesh mode, ASSOCIATED isn't part of the nl80211
1247 * API but must follow AUTHENTICATED for driver state.
1248 */
1249 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED))
1250 mask |= BIT(NL80211_STA_FLAG_ASSOCIATED);
1251 if (set & BIT(NL80211_STA_FLAG_AUTHENTICATED))
1252 set |= BIT(NL80211_STA_FLAG_ASSOCIATED);
Johannes Berg77ee7c82013-02-15 00:48:33 +01001253 } else if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1254 /*
1255 * TDLS -- everything follows authorized, but
1256 * only becoming authorized is possible, not
1257 * going back
1258 */
1259 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
1260 set |= BIT(NL80211_STA_FLAG_AUTHENTICATED) |
1261 BIT(NL80211_STA_FLAG_ASSOCIATED);
1262 mask |= BIT(NL80211_STA_FLAG_AUTHENTICATED) |
1263 BIT(NL80211_STA_FLAG_ASSOCIATED);
1264 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001265 }
1266
Johannes Bergd582cff2012-10-26 17:53:44 +02001267 ret = sta_apply_auth_flags(local, sta, mask, set);
1268 if (ret)
1269 return ret;
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001270
Johannes Bergeccb8e82009-05-11 21:57:56 +03001271 if (mask & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) {
Johannes Bergeccb8e82009-05-11 21:57:56 +03001272 if (set & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001273 set_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
1274 else
1275 clear_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001276 }
1277
1278 if (mask & BIT(NL80211_STA_FLAG_WME)) {
Arik Nemtsov39df6002011-06-27 23:58:45 +03001279 if (set & BIT(NL80211_STA_FLAG_WME)) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001280 set_sta_flag(sta, WLAN_STA_WME);
Arik Nemtsov39df6002011-06-27 23:58:45 +03001281 sta->sta.wme = true;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001282 } else {
1283 clear_sta_flag(sta, WLAN_STA_WME);
1284 sta->sta.wme = false;
Arik Nemtsov39df6002011-06-27 23:58:45 +03001285 }
Johannes Bergeccb8e82009-05-11 21:57:56 +03001286 }
1287
1288 if (mask & BIT(NL80211_STA_FLAG_MFP)) {
Johannes Bergeccb8e82009-05-11 21:57:56 +03001289 if (set & BIT(NL80211_STA_FLAG_MFP))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001290 set_sta_flag(sta, WLAN_STA_MFP);
1291 else
1292 clear_sta_flag(sta, WLAN_STA_MFP);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001293 }
Javier Cardonab39c48f2011-04-07 15:08:30 -07001294
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001295 if (mask & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001296 if (set & BIT(NL80211_STA_FLAG_TDLS_PEER))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001297 set_sta_flag(sta, WLAN_STA_TDLS_PEER);
1298 else
1299 clear_sta_flag(sta, WLAN_STA_TDLS_PEER);
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001300 }
Johannes Bergeccb8e82009-05-11 21:57:56 +03001301
Johannes Berg3b9ce802011-09-27 20:56:12 +02001302 if (params->sta_modify_mask & STATION_PARAM_APPLY_UAPSD) {
1303 sta->sta.uapsd_queues = params->uapsd_queues;
1304 sta->sta.max_sp = params->max_sp;
1305 }
Eliad Peller9533b4a2011-08-23 14:37:47 +03001306
Johannes Berg73651ee2008-02-25 16:27:47 +01001307 /*
Johannes Berg51b50fb2009-05-24 16:42:30 +02001308 * cfg80211 validates this (1-2007) and allows setting the AID
1309 * only when creating a new station entry
1310 */
1311 if (params->aid)
1312 sta->sta.aid = params->aid;
1313
1314 /*
Johannes Bergba23d202012-12-27 17:32:09 +01001315 * Some of the following updates would be racy if called on an
1316 * existing station, via ieee80211_change_station(). However,
1317 * all such changes are rejected by cfg80211 except for updates
1318 * changing the supported rates on an existing but not yet used
1319 * TDLS peer.
Johannes Berg73651ee2008-02-25 16:27:47 +01001320 */
1321
Johannes Berg4fd69312007-12-19 02:03:35 +01001322 if (params->listen_interval >= 0)
1323 sta->listen_interval = params->listen_interval;
1324
1325 if (params->supported_rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02001326 ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef,
1327 sband, params->supported_rates,
1328 params->supported_rates_len,
1329 &sta->sta.supp_rates[band]);
Johannes Berg4fd69312007-12-19 02:03:35 +01001330 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001331
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001332 if (params->ht_capa)
Ben Greearef96a8422011-11-18 11:32:00 -08001333 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
Johannes Berge1a0c6b2013-02-07 11:47:44 +01001334 params->ht_capa, sta);
Jouni Malinen36aedc902008-08-25 11:58:58 +03001335
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +00001336 if (params->vht_capa)
1337 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
Johannes Berg4a342152013-02-07 11:58:58 +01001338 params->vht_capa, sta);
Mahesh Palivelaf461be3e2012-10-11 08:04:52 +00001339
Javier Cardona9c3990a2011-05-03 16:57:11 -07001340 if (ieee80211_vif_is_mesh(&sdata->vif)) {
Yogesh Ashok Powar4daf50f2011-05-12 09:32:17 -04001341#ifdef CONFIG_MAC80211_MESH
Thomas Pedersen39886b62013-02-13 12:14:19 -08001342 u32 changed = 0;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001343
1344 if (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE) {
Javier Cardona9c3990a2011-05-03 16:57:11 -07001345 switch (params->plink_state) {
Javier Cardona57cf8042011-05-13 10:45:43 -07001346 case NL80211_PLINK_ESTAB:
Marco Porsch1617bab2013-01-07 16:04:49 +01001347 if (sta->plink_state != NL80211_PLINK_ESTAB)
1348 changed = mesh_plink_inc_estab_count(
1349 sdata);
1350 sta->plink_state = params->plink_state;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001351
1352 ieee80211_mps_sta_status_update(sta);
Thomas Pedersen39886b62013-02-13 12:14:19 -08001353 changed |= ieee80211_mps_set_sta_local_pm(sta,
1354 sdata->u.mesh.mshcfg.power_mode);
Marco Porsch1617bab2013-01-07 16:04:49 +01001355 break;
1356 case NL80211_PLINK_LISTEN:
Javier Cardona57cf8042011-05-13 10:45:43 -07001357 case NL80211_PLINK_BLOCKED:
Marco Porsch1617bab2013-01-07 16:04:49 +01001358 case NL80211_PLINK_OPN_SNT:
1359 case NL80211_PLINK_OPN_RCVD:
1360 case NL80211_PLINK_CNF_RCVD:
1361 case NL80211_PLINK_HOLDING:
1362 if (sta->plink_state == NL80211_PLINK_ESTAB)
1363 changed = mesh_plink_dec_estab_count(
1364 sdata);
Javier Cardona9c3990a2011-05-03 16:57:11 -07001365 sta->plink_state = params->plink_state;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001366
1367 ieee80211_mps_sta_status_update(sta);
Marco Porsch446075d2013-10-15 12:29:24 +02001368 changed |= ieee80211_mps_set_sta_local_pm(sta,
1369 NL80211_MESH_POWER_UNKNOWN);
Javier Cardona9c3990a2011-05-03 16:57:11 -07001370 break;
1371 default:
1372 /* nothing */
1373 break;
1374 }
Johannes Berg77ee7c82013-02-15 00:48:33 +01001375 }
1376
1377 switch (params->plink_action) {
1378 case NL80211_PLINK_ACTION_NO_ACTION:
1379 /* nothing */
1380 break;
1381 case NL80211_PLINK_ACTION_OPEN:
1382 changed |= mesh_plink_open(sta);
1383 break;
1384 case NL80211_PLINK_ACTION_BLOCK:
1385 changed |= mesh_plink_block(sta);
1386 break;
Marco Porsch1617bab2013-01-07 16:04:49 +01001387 }
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001388
1389 if (params->local_pm)
Thomas Pedersen39886b62013-02-13 12:14:19 -08001390 changed |=
1391 ieee80211_mps_set_sta_local_pm(sta,
1392 params->local_pm);
1393 ieee80211_bss_info_change_notify(sdata, changed);
Yogesh Ashok Powar4daf50f2011-05-12 09:32:17 -04001394#endif
Johannes Berg902acc72008-02-23 15:17:19 +01001395 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001396
1397 return 0;
Johannes Berg4fd69312007-12-19 02:03:35 +01001398}
1399
1400static int ieee80211_add_station(struct wiphy *wiphy, struct net_device *dev,
1401 u8 *mac, struct station_parameters *params)
1402{
Johannes Berg14db74b2008-07-29 13:22:52 +02001403 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +01001404 struct sta_info *sta;
1405 struct ieee80211_sub_if_data *sdata;
Johannes Berg73651ee2008-02-25 16:27:47 +01001406 int err;
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001407 int layer2_update;
Johannes Berg4fd69312007-12-19 02:03:35 +01001408
Johannes Berg4fd69312007-12-19 02:03:35 +01001409 if (params->vlan) {
1410 sdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1411
Johannes Berg05c914f2008-09-11 00:01:58 +02001412 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
1413 sdata->vif.type != NL80211_IFTYPE_AP)
Johannes Berg4fd69312007-12-19 02:03:35 +01001414 return -EINVAL;
1415 } else
1416 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1417
Joe Perchesb203ca32012-05-08 18:56:52 +00001418 if (ether_addr_equal(mac, sdata->vif.addr))
Johannes Berg03e44972008-02-27 09:56:40 +01001419 return -EINVAL;
1420
1421 if (is_multicast_ether_addr(mac))
1422 return -EINVAL;
1423
1424 sta = sta_info_alloc(sdata, mac, GFP_KERNEL);
Johannes Berg73651ee2008-02-25 16:27:47 +01001425 if (!sta)
1426 return -ENOMEM;
Johannes Berg4fd69312007-12-19 02:03:35 +01001427
Johannes Bergd582cff2012-10-26 17:53:44 +02001428 /*
1429 * defaults -- if userspace wants something else we'll
1430 * change it accordingly in sta_apply_parameters()
1431 */
Johannes Berg77ee7c82013-02-15 00:48:33 +01001432 if (!(params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER))) {
1433 sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
1434 sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC);
1435 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001436
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001437 err = sta_apply_parameters(local, sta, params);
1438 if (err) {
1439 sta_info_free(local, sta);
1440 return err;
1441 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001442
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001443 /*
Johannes Berg77ee7c82013-02-15 00:48:33 +01001444 * for TDLS, rate control should be initialized only when
1445 * rates are known and station is marked authorized
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001446 */
1447 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER))
1448 rate_control_rate_init(sta);
Johannes Berg4fd69312007-12-19 02:03:35 +01001449
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001450 layer2_update = sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1451 sdata->vif.type == NL80211_IFTYPE_AP;
1452
Johannes Berg34e89502010-02-03 13:59:58 +01001453 err = sta_info_insert_rcu(sta);
Johannes Berg73651ee2008-02-25 16:27:47 +01001454 if (err) {
Johannes Berg73651ee2008-02-25 16:27:47 +01001455 rcu_read_unlock();
1456 return err;
1457 }
1458
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001459 if (layer2_update)
Johannes Berg73651ee2008-02-25 16:27:47 +01001460 ieee80211_send_layer2_update(sta);
1461
1462 rcu_read_unlock();
1463
Johannes Berg4fd69312007-12-19 02:03:35 +01001464 return 0;
1465}
1466
1467static int ieee80211_del_station(struct wiphy *wiphy, struct net_device *dev,
1468 u8 *mac)
1469{
Johannes Berg14db74b2008-07-29 13:22:52 +02001470 struct ieee80211_sub_if_data *sdata;
Johannes Berg4fd69312007-12-19 02:03:35 +01001471
Johannes Berg14db74b2008-07-29 13:22:52 +02001472 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1473
Johannes Berg34e89502010-02-03 13:59:58 +01001474 if (mac)
1475 return sta_info_destroy_addr_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001476
Johannes Bergb998e8b2012-12-13 23:07:46 +01001477 sta_info_flush(sdata);
Johannes Berg4fd69312007-12-19 02:03:35 +01001478 return 0;
1479}
1480
1481static int ieee80211_change_station(struct wiphy *wiphy,
Johannes Berg77ee7c82013-02-15 00:48:33 +01001482 struct net_device *dev, u8 *mac,
Johannes Berg4fd69312007-12-19 02:03:35 +01001483 struct station_parameters *params)
1484{
Johannes Bergabe60632009-11-25 17:46:18 +01001485 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg14db74b2008-07-29 13:22:52 +02001486 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +01001487 struct sta_info *sta;
1488 struct ieee80211_sub_if_data *vlansdata;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001489 enum cfg80211_station_type statype;
Eliad Peller35b88622011-12-29 14:41:39 +02001490 int err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001491
Johannes Berg87be1e12011-12-14 12:20:29 +01001492 mutex_lock(&local->sta_mtx);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001493
Felix Fietkau0e5ded52010-01-08 18:10:58 +01001494 sta = sta_info_get_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001495 if (!sta) {
Johannes Berg77ee7c82013-02-15 00:48:33 +01001496 err = -ENOENT;
1497 goto out_err;
Johannes Berg98dd6a52008-04-10 15:36:09 +02001498 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001499
Johannes Berg77ee7c82013-02-15 00:48:33 +01001500 switch (sdata->vif.type) {
1501 case NL80211_IFTYPE_MESH_POINT:
Thomas Pedersena6dad6a2013-03-04 13:06:12 -08001502 if (sdata->u.mesh.user_mpm)
Thomas Pederseneef941e2013-03-04 13:06:11 -08001503 statype = CFG80211_STA_MESH_PEER_USER;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001504 else
Thomas Pederseneef941e2013-03-04 13:06:11 -08001505 statype = CFG80211_STA_MESH_PEER_KERNEL;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001506 break;
1507 case NL80211_IFTYPE_ADHOC:
1508 statype = CFG80211_STA_IBSS;
1509 break;
1510 case NL80211_IFTYPE_STATION:
1511 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1512 statype = CFG80211_STA_AP_STA;
1513 break;
1514 }
1515 if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
1516 statype = CFG80211_STA_TDLS_PEER_ACTIVE;
1517 else
1518 statype = CFG80211_STA_TDLS_PEER_SETUP;
1519 break;
1520 case NL80211_IFTYPE_AP:
1521 case NL80211_IFTYPE_AP_VLAN:
1522 statype = CFG80211_STA_AP_CLIENT;
1523 break;
1524 default:
1525 err = -EOPNOTSUPP;
1526 goto out_err;
Johannes Bergbdd90d52011-12-14 12:20:27 +01001527 }
1528
Johannes Berg77ee7c82013-02-15 00:48:33 +01001529 err = cfg80211_check_station_change(wiphy, params, statype);
1530 if (err)
1531 goto out_err;
1532
Johannes Bergd0709a62008-02-25 16:27:46 +01001533 if (params->vlan && params->vlan != sta->sdata->dev) {
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001534 bool prev_4addr = false;
1535 bool new_4addr = false;
1536
Johannes Berg4fd69312007-12-19 02:03:35 +01001537 vlansdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1538
Johannes Berg9bc383d2009-11-19 11:55:19 +01001539 if (params->vlan->ieee80211_ptr->use_4addr) {
Johannes Berg33054432009-11-20 10:09:14 +01001540 if (vlansdata->u.vlan.sta) {
Johannes Berg77ee7c82013-02-15 00:48:33 +01001541 err = -EBUSY;
1542 goto out_err;
Johannes Berg33054432009-11-20 10:09:14 +01001543 }
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001544
Eric Dumazetcf778b02012-01-12 04:41:32 +00001545 rcu_assign_pointer(vlansdata->u.vlan.sta, sta);
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001546 new_4addr = true;
1547 }
1548
1549 if (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1550 sta->sdata->u.vlan.sta) {
1551 rcu_assign_pointer(sta->sdata->u.vlan.sta, NULL);
1552 prev_4addr = true;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001553 }
1554
Johannes Berg14db74b2008-07-29 13:22:52 +02001555 sta->sdata = vlansdata;
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001556
1557 if (sta->sta_state == IEEE80211_STA_AUTHORIZED &&
1558 prev_4addr != new_4addr) {
1559 if (new_4addr)
1560 atomic_dec(&sta->sdata->bss->num_mcast_sta);
1561 else
1562 atomic_inc(&sta->sdata->bss->num_mcast_sta);
1563 }
1564
Johannes Berg4fd69312007-12-19 02:03:35 +01001565 ieee80211_send_layer2_update(sta);
1566 }
1567
Eliad Peller35b88622011-12-29 14:41:39 +02001568 err = sta_apply_parameters(local, sta, params);
Johannes Berg77ee7c82013-02-15 00:48:33 +01001569 if (err)
1570 goto out_err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001571
Johannes Berg77ee7c82013-02-15 00:48:33 +01001572 /* When peer becomes authorized, init rate control as well */
1573 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER) &&
1574 test_sta_flag(sta, WLAN_STA_AUTHORIZED))
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001575 rate_control_rate_init(sta);
1576
Johannes Berg87be1e12011-12-14 12:20:29 +01001577 mutex_unlock(&local->sta_mtx);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001578
Emmanuel Grumbach687da132013-10-01 16:45:43 +03001579 if ((sdata->vif.type == NL80211_IFTYPE_AP ||
1580 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
1581 sta->known_smps_mode != sta->sdata->bss->req_smps &&
1582 test_sta_flag(sta, WLAN_STA_AUTHORIZED) &&
1583 sta_info_tx_streams(sta) != 1) {
1584 ht_dbg(sta->sdata,
1585 "%pM just authorized and MIMO capable - update SMPS\n",
1586 sta->sta.addr);
1587 ieee80211_send_smps_action(sta->sdata,
1588 sta->sdata->bss->req_smps,
1589 sta->sta.addr,
1590 sta->sdata->vif.bss_conf.bssid);
1591 }
1592
Jason Young808118c2011-03-10 16:43:19 -08001593 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
Eliad Pellerab095872012-07-27 12:33:22 +03001594 params->sta_flags_mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
Jason Young808118c2011-03-10 16:43:19 -08001595 ieee80211_recalc_ps(local, -1);
Eliad Pellerab095872012-07-27 12:33:22 +03001596 ieee80211_recalc_ps_vif(sdata);
1597 }
Johannes Berg77ee7c82013-02-15 00:48:33 +01001598
Johannes Berg4fd69312007-12-19 02:03:35 +01001599 return 0;
Johannes Berg77ee7c82013-02-15 00:48:33 +01001600out_err:
1601 mutex_unlock(&local->sta_mtx);
1602 return err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001603}
1604
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001605#ifdef CONFIG_MAC80211_MESH
1606static int ieee80211_add_mpath(struct wiphy *wiphy, struct net_device *dev,
1607 u8 *dst, u8 *next_hop)
1608{
Johannes Berg14db74b2008-07-29 13:22:52 +02001609 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001610 struct mesh_path *mpath;
1611 struct sta_info *sta;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001612
Johannes Berg14db74b2008-07-29 13:22:52 +02001613 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1614
Johannes Bergd0709a62008-02-25 16:27:46 +01001615 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +01001616 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +01001617 if (!sta) {
1618 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001619 return -ENOENT;
Johannes Bergd0709a62008-02-25 16:27:46 +01001620 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001621
Bob Copelandae76eef2013-03-29 09:38:39 -04001622 mpath = mesh_path_add(sdata, dst);
1623 if (IS_ERR(mpath)) {
Johannes Bergd0709a62008-02-25 16:27:46 +01001624 rcu_read_unlock();
Bob Copelandae76eef2013-03-29 09:38:39 -04001625 return PTR_ERR(mpath);
Johannes Bergd0709a62008-02-25 16:27:46 +01001626 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001627
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001628 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +01001629
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001630 rcu_read_unlock();
1631 return 0;
1632}
1633
1634static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev,
Johannes Bergbf7cd942013-02-15 14:40:31 +01001635 u8 *dst)
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001636{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001637 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001638
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001639 if (dst)
Johannes Bergbf7cd942013-02-15 14:40:31 +01001640 return mesh_path_del(sdata, dst);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001641
Javier Cardonaece1a2e2011-08-29 13:23:04 -07001642 mesh_path_flush_by_iface(sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001643 return 0;
1644}
1645
1646static int ieee80211_change_mpath(struct wiphy *wiphy,
1647 struct net_device *dev,
1648 u8 *dst, u8 *next_hop)
1649{
Johannes Berg14db74b2008-07-29 13:22:52 +02001650 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001651 struct mesh_path *mpath;
1652 struct sta_info *sta;
1653
Johannes Berg14db74b2008-07-29 13:22:52 +02001654 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1655
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001656 rcu_read_lock();
Johannes Bergd0709a62008-02-25 16:27:46 +01001657
Johannes Bergabe60632009-11-25 17:46:18 +01001658 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +01001659 if (!sta) {
1660 rcu_read_unlock();
1661 return -ENOENT;
1662 }
1663
Johannes Bergbf7cd942013-02-15 14:40:31 +01001664 mpath = mesh_path_lookup(sdata, dst);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001665 if (!mpath) {
1666 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001667 return -ENOENT;
1668 }
1669
1670 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +01001671
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001672 rcu_read_unlock();
1673 return 0;
1674}
1675
1676static void mpath_set_pinfo(struct mesh_path *mpath, u8 *next_hop,
1677 struct mpath_info *pinfo)
1678{
Johannes Berga3836e02011-05-12 15:11:37 +02001679 struct sta_info *next_hop_sta = rcu_dereference(mpath->next_hop);
1680
1681 if (next_hop_sta)
1682 memcpy(next_hop, next_hop_sta->sta.addr, ETH_ALEN);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001683 else
1684 memset(next_hop, 0, ETH_ALEN);
1685
LEO Airwarosu Yoichi Shinoda7ce8c7a2012-08-27 22:28:16 +09001686 memset(pinfo, 0, sizeof(*pinfo));
1687
Johannes Bergf5ea9122009-08-07 16:17:38 +02001688 pinfo->generation = mesh_paths_generation;
1689
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001690 pinfo->filled = MPATH_INFO_FRAME_QLEN |
Rui Paulod19b3bf2009-11-09 23:46:55 +00001691 MPATH_INFO_SN |
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001692 MPATH_INFO_METRIC |
1693 MPATH_INFO_EXPTIME |
1694 MPATH_INFO_DISCOVERY_TIMEOUT |
1695 MPATH_INFO_DISCOVERY_RETRIES |
1696 MPATH_INFO_FLAGS;
1697
1698 pinfo->frame_qlen = mpath->frame_queue.qlen;
Rui Paulod19b3bf2009-11-09 23:46:55 +00001699 pinfo->sn = mpath->sn;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001700 pinfo->metric = mpath->metric;
1701 if (time_before(jiffies, mpath->exp_time))
1702 pinfo->exptime = jiffies_to_msecs(mpath->exp_time - jiffies);
1703 pinfo->discovery_timeout =
1704 jiffies_to_msecs(mpath->discovery_timeout);
1705 pinfo->discovery_retries = mpath->discovery_retries;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001706 if (mpath->flags & MESH_PATH_ACTIVE)
1707 pinfo->flags |= NL80211_MPATH_FLAG_ACTIVE;
1708 if (mpath->flags & MESH_PATH_RESOLVING)
1709 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
Rui Paulod19b3bf2009-11-09 23:46:55 +00001710 if (mpath->flags & MESH_PATH_SN_VALID)
1711 pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001712 if (mpath->flags & MESH_PATH_FIXED)
1713 pinfo->flags |= NL80211_MPATH_FLAG_FIXED;
LEO Airwarosu Yoichi Shinoda7ce8c7a2012-08-27 22:28:16 +09001714 if (mpath->flags & MESH_PATH_RESOLVED)
1715 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVED;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001716}
1717
1718static int ieee80211_get_mpath(struct wiphy *wiphy, struct net_device *dev,
1719 u8 *dst, u8 *next_hop, struct mpath_info *pinfo)
1720
1721{
Johannes Berg14db74b2008-07-29 13:22:52 +02001722 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001723 struct mesh_path *mpath;
1724
Johannes Berg14db74b2008-07-29 13:22:52 +02001725 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1726
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001727 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01001728 mpath = mesh_path_lookup(sdata, dst);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001729 if (!mpath) {
1730 rcu_read_unlock();
1731 return -ENOENT;
1732 }
1733 memcpy(dst, mpath->dst, ETH_ALEN);
1734 mpath_set_pinfo(mpath, next_hop, pinfo);
1735 rcu_read_unlock();
1736 return 0;
1737}
1738
1739static int ieee80211_dump_mpath(struct wiphy *wiphy, struct net_device *dev,
1740 int idx, u8 *dst, u8 *next_hop,
1741 struct mpath_info *pinfo)
1742{
Johannes Berg14db74b2008-07-29 13:22:52 +02001743 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001744 struct mesh_path *mpath;
1745
Johannes Berg14db74b2008-07-29 13:22:52 +02001746 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1747
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001748 rcu_read_lock();
Johannes Bergbf7cd942013-02-15 14:40:31 +01001749 mpath = mesh_path_lookup_by_idx(sdata, idx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001750 if (!mpath) {
1751 rcu_read_unlock();
1752 return -ENOENT;
1753 }
1754 memcpy(dst, mpath->dst, ETH_ALEN);
1755 mpath_set_pinfo(mpath, next_hop, pinfo);
1756 rcu_read_unlock();
1757 return 0;
1758}
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001759
Javier Cardona24bdd9f2010-12-16 17:37:48 -08001760static int ieee80211_get_mesh_config(struct wiphy *wiphy,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001761 struct net_device *dev,
1762 struct mesh_config *conf)
1763{
1764 struct ieee80211_sub_if_data *sdata;
1765 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1766
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001767 memcpy(conf, &(sdata->u.mesh.mshcfg), sizeof(struct mesh_config));
1768 return 0;
1769}
1770
1771static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm, u32 mask)
1772{
1773 return (mask >> (parm-1)) & 0x1;
1774}
1775
Javier Cardonac80d5452010-12-16 17:37:49 -08001776static int copy_mesh_setup(struct ieee80211_if_mesh *ifmsh,
1777 const struct mesh_setup *setup)
1778{
1779 u8 *new_ie;
1780 const u8 *old_ie;
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001781 struct ieee80211_sub_if_data *sdata = container_of(ifmsh,
1782 struct ieee80211_sub_if_data, u.mesh);
Javier Cardonac80d5452010-12-16 17:37:49 -08001783
Javier Cardona581a8b02011-04-07 15:08:27 -07001784 /* allocate information elements */
Javier Cardonac80d5452010-12-16 17:37:49 -08001785 new_ie = NULL;
Javier Cardona581a8b02011-04-07 15:08:27 -07001786 old_ie = ifmsh->ie;
Javier Cardonac80d5452010-12-16 17:37:49 -08001787
Javier Cardona581a8b02011-04-07 15:08:27 -07001788 if (setup->ie_len) {
1789 new_ie = kmemdup(setup->ie, setup->ie_len,
Javier Cardonac80d5452010-12-16 17:37:49 -08001790 GFP_KERNEL);
1791 if (!new_ie)
1792 return -ENOMEM;
1793 }
Javier Cardona581a8b02011-04-07 15:08:27 -07001794 ifmsh->ie_len = setup->ie_len;
1795 ifmsh->ie = new_ie;
1796 kfree(old_ie);
Javier Cardonac80d5452010-12-16 17:37:49 -08001797
1798 /* now copy the rest of the setup parameters */
1799 ifmsh->mesh_id_len = setup->mesh_id_len;
1800 memcpy(ifmsh->mesh_id, setup->mesh_id, ifmsh->mesh_id_len);
Javier Cardonad299a1f2012-03-31 11:31:33 -07001801 ifmsh->mesh_sp_id = setup->sync_method;
Javier Cardonac80d5452010-12-16 17:37:49 -08001802 ifmsh->mesh_pp_id = setup->path_sel_proto;
1803 ifmsh->mesh_pm_id = setup->path_metric;
Thomas Pedersena6dad6a2013-03-04 13:06:12 -08001804 ifmsh->user_mpm = setup->user_mpm;
Colleen Twitty0d4261a2013-05-08 11:46:00 -07001805 ifmsh->mesh_auth_id = setup->auth_id;
Javier Cardonab130e5c2011-05-03 16:57:07 -07001806 ifmsh->security = IEEE80211_MESH_SEC_NONE;
1807 if (setup->is_authenticated)
1808 ifmsh->security |= IEEE80211_MESH_SEC_AUTHED;
1809 if (setup->is_secure)
1810 ifmsh->security |= IEEE80211_MESH_SEC_SECURED;
Javier Cardonac80d5452010-12-16 17:37:49 -08001811
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001812 /* mcast rate setting in Mesh Node */
1813 memcpy(sdata->vif.bss_conf.mcast_rate, setup->mcast_rate,
1814 sizeof(setup->mcast_rate));
Ashok Nagarajanffb3cf32013-06-03 10:33:36 -07001815 sdata->vif.bss_conf.basic_rates = setup->basic_rates;
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001816
Marco Porsch9bdbf042013-01-07 16:04:51 +01001817 sdata->vif.bss_conf.beacon_int = setup->beacon_interval;
1818 sdata->vif.bss_conf.dtim_period = setup->dtim_period;
1819
Javier Cardonac80d5452010-12-16 17:37:49 -08001820 return 0;
1821}
1822
Javier Cardona24bdd9f2010-12-16 17:37:48 -08001823static int ieee80211_update_mesh_config(struct wiphy *wiphy,
Johannes Berg29cbe682010-12-03 09:20:44 +01001824 struct net_device *dev, u32 mask,
1825 const struct mesh_config *nconf)
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001826{
1827 struct mesh_config *conf;
1828 struct ieee80211_sub_if_data *sdata;
Rui Paulo63c57232009-11-09 23:46:57 +00001829 struct ieee80211_if_mesh *ifmsh;
1830
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001831 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Rui Paulo63c57232009-11-09 23:46:57 +00001832 ifmsh = &sdata->u.mesh;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001833
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001834 /* Set the config options which we are interested in setting */
1835 conf = &(sdata->u.mesh.mshcfg);
1836 if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT, mask))
1837 conf->dot11MeshRetryTimeout = nconf->dot11MeshRetryTimeout;
1838 if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT, mask))
1839 conf->dot11MeshConfirmTimeout = nconf->dot11MeshConfirmTimeout;
1840 if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT, mask))
1841 conf->dot11MeshHoldingTimeout = nconf->dot11MeshHoldingTimeout;
1842 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS, mask))
1843 conf->dot11MeshMaxPeerLinks = nconf->dot11MeshMaxPeerLinks;
1844 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES, mask))
1845 conf->dot11MeshMaxRetries = nconf->dot11MeshMaxRetries;
1846 if (_chg_mesh_attr(NL80211_MESHCONF_TTL, mask))
1847 conf->dot11MeshTTL = nconf->dot11MeshTTL;
Javier Cardona45904f22010-12-03 09:20:40 +01001848 if (_chg_mesh_attr(NL80211_MESHCONF_ELEMENT_TTL, mask))
Chun-Yeow Yeoh58886a92012-06-15 00:23:53 +08001849 conf->element_ttl = nconf->element_ttl;
Thomas Pedersen146bb482013-03-04 13:06:14 -08001850 if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS, mask)) {
1851 if (ifmsh->user_mpm)
1852 return -EBUSY;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001853 conf->auto_open_plinks = nconf->auto_open_plinks;
Thomas Pedersen146bb482013-03-04 13:06:14 -08001854 }
Javier Cardonad299a1f2012-03-31 11:31:33 -07001855 if (_chg_mesh_attr(NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR, mask))
1856 conf->dot11MeshNbrOffsetMaxNeighbor =
1857 nconf->dot11MeshNbrOffsetMaxNeighbor;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001858 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, mask))
1859 conf->dot11MeshHWMPmaxPREQretries =
1860 nconf->dot11MeshHWMPmaxPREQretries;
1861 if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME, mask))
1862 conf->path_refresh_time = nconf->path_refresh_time;
1863 if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, mask))
1864 conf->min_discovery_timeout = nconf->min_discovery_timeout;
1865 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, mask))
1866 conf->dot11MeshHWMPactivePathTimeout =
1867 nconf->dot11MeshHWMPactivePathTimeout;
1868 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, mask))
1869 conf->dot11MeshHWMPpreqMinInterval =
1870 nconf->dot11MeshHWMPpreqMinInterval;
Thomas Pedersendca7e942011-11-24 17:15:24 -08001871 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL, mask))
1872 conf->dot11MeshHWMPperrMinInterval =
1873 nconf->dot11MeshHWMPperrMinInterval;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001874 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
1875 mask))
1876 conf->dot11MeshHWMPnetDiameterTraversalTime =
1877 nconf->dot11MeshHWMPnetDiameterTraversalTime;
Rui Paulo63c57232009-11-09 23:46:57 +00001878 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask)) {
1879 conf->dot11MeshHWMPRootMode = nconf->dot11MeshHWMPRootMode;
1880 ieee80211_mesh_root_setup(ifmsh);
1881 }
Javier Cardona16dd7262011-08-09 16:45:11 -07001882 if (_chg_mesh_attr(NL80211_MESHCONF_GATE_ANNOUNCEMENTS, mask)) {
Thomas Pedersenc61336612011-08-25 10:36:14 -07001883 /* our current gate announcement implementation rides on root
1884 * announcements, so require this ifmsh to also be a root node
1885 * */
1886 if (nconf->dot11MeshGateAnnouncementProtocol &&
Chun-Yeow Yeohdbb912c2012-06-14 02:06:09 +08001887 !(conf->dot11MeshHWMPRootMode > IEEE80211_ROOTMODE_ROOT)) {
1888 conf->dot11MeshHWMPRootMode = IEEE80211_PROACTIVE_RANN;
Thomas Pedersenc61336612011-08-25 10:36:14 -07001889 ieee80211_mesh_root_setup(ifmsh);
1890 }
Javier Cardona16dd7262011-08-09 16:45:11 -07001891 conf->dot11MeshGateAnnouncementProtocol =
1892 nconf->dot11MeshGateAnnouncementProtocol;
1893 }
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08001894 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_RANN_INTERVAL, mask))
Javier Cardona0507e152011-08-09 16:45:10 -07001895 conf->dot11MeshHWMPRannInterval =
1896 nconf->dot11MeshHWMPRannInterval;
Chun-Yeow Yeoh94f90652012-01-21 01:02:16 +08001897 if (_chg_mesh_attr(NL80211_MESHCONF_FORWARDING, mask))
1898 conf->dot11MeshForwarding = nconf->dot11MeshForwarding;
Ashok Nagarajan55335132012-02-28 17:04:08 -08001899 if (_chg_mesh_attr(NL80211_MESHCONF_RSSI_THRESHOLD, mask)) {
1900 /* our RSSI threshold implementation is supported only for
1901 * devices that report signal in dBm.
1902 */
1903 if (!(sdata->local->hw.flags & IEEE80211_HW_SIGNAL_DBM))
1904 return -ENOTSUPP;
1905 conf->rssi_threshold = nconf->rssi_threshold;
1906 }
Ashok Nagarajan70c33ea2012-04-30 14:20:32 -07001907 if (_chg_mesh_attr(NL80211_MESHCONF_HT_OPMODE, mask)) {
1908 conf->ht_opmode = nconf->ht_opmode;
1909 sdata->vif.bss_conf.ht_operation_mode = nconf->ht_opmode;
1910 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_HT);
1911 }
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08001912 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT, mask))
1913 conf->dot11MeshHWMPactivePathToRootTimeout =
1914 nconf->dot11MeshHWMPactivePathToRootTimeout;
1915 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOT_INTERVAL, mask))
1916 conf->dot11MeshHWMProotInterval =
1917 nconf->dot11MeshHWMProotInterval;
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08001918 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL, mask))
1919 conf->dot11MeshHWMPconfirmationInterval =
1920 nconf->dot11MeshHWMPconfirmationInterval;
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001921 if (_chg_mesh_attr(NL80211_MESHCONF_POWER_MODE, mask)) {
1922 conf->power_mode = nconf->power_mode;
1923 ieee80211_mps_local_status_update(sdata);
1924 }
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001925 if (_chg_mesh_attr(NL80211_MESHCONF_AWAKE_WINDOW, mask))
Marco Porsch3f52b7e2013-01-30 18:14:08 +01001926 conf->dot11MeshAwakeWindowDuration =
1927 nconf->dot11MeshAwakeWindowDuration;
Colleen Twitty66de6712013-06-03 09:53:40 -07001928 if (_chg_mesh_attr(NL80211_MESHCONF_PLINK_TIMEOUT, mask))
1929 conf->plink_timeout = nconf->plink_timeout;
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001930 ieee80211_mbss_info_change_notify(sdata, BSS_CHANGED_BEACON);
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001931 return 0;
1932}
1933
Johannes Berg29cbe682010-12-03 09:20:44 +01001934static int ieee80211_join_mesh(struct wiphy *wiphy, struct net_device *dev,
1935 const struct mesh_config *conf,
1936 const struct mesh_setup *setup)
1937{
1938 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1939 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Javier Cardonac80d5452010-12-16 17:37:49 -08001940 int err;
Johannes Berg29cbe682010-12-03 09:20:44 +01001941
Javier Cardonac80d5452010-12-16 17:37:49 -08001942 memcpy(&ifmsh->mshcfg, conf, sizeof(struct mesh_config));
1943 err = copy_mesh_setup(ifmsh, setup);
1944 if (err)
1945 return err;
Johannes Bergcc1d2802012-05-16 23:50:20 +02001946
Johannes Berg04ecd252012-09-11 14:34:12 +02001947 /* can mesh use other SMPS modes? */
1948 sdata->smps_mode = IEEE80211_SMPS_OFF;
1949 sdata->needed_rx_chains = sdata->local->rx_chains;
1950
Johannes Berg4bf88532012-11-09 11:39:59 +01001951 err = ieee80211_vif_use_channel(sdata, &setup->chandef,
Johannes Berg55de9082012-07-26 17:24:39 +02001952 IEEE80211_CHANCTX_SHARED);
Johannes Bergcc1d2802012-05-16 23:50:20 +02001953 if (err)
1954 return err;
1955
Thomas Pedersen2b5e1962013-02-14 11:20:13 -08001956 return ieee80211_start_mesh(sdata);
Johannes Berg29cbe682010-12-03 09:20:44 +01001957}
1958
1959static int ieee80211_leave_mesh(struct wiphy *wiphy, struct net_device *dev)
1960{
1961 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1962
1963 ieee80211_stop_mesh(sdata);
Johannes Berg55de9082012-07-26 17:24:39 +02001964 ieee80211_vif_release_channel(sdata);
Johannes Berg29cbe682010-12-03 09:20:44 +01001965
1966 return 0;
1967}
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001968#endif
1969
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001970static int ieee80211_change_bss(struct wiphy *wiphy,
1971 struct net_device *dev,
1972 struct bss_parameters *params)
1973{
Johannes Berg55de9082012-07-26 17:24:39 +02001974 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1975 enum ieee80211_band band;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001976 u32 changed = 0;
1977
Johannes Berg55de9082012-07-26 17:24:39 +02001978 if (!rtnl_dereference(sdata->u.ap.beacon))
1979 return -ENOENT;
1980
1981 band = ieee80211_get_sdata_band(sdata);
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001982
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001983 if (params->use_cts_prot >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001984 sdata->vif.bss_conf.use_cts_prot = params->use_cts_prot;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001985 changed |= BSS_CHANGED_ERP_CTS_PROT;
1986 }
1987 if (params->use_short_preamble >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001988 sdata->vif.bss_conf.use_short_preamble =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001989 params->use_short_preamble;
1990 changed |= BSS_CHANGED_ERP_PREAMBLE;
1991 }
Felix Fietkau43d35342010-01-15 03:00:48 +01001992
1993 if (!sdata->vif.bss_conf.use_short_slot &&
Johannes Berg55de9082012-07-26 17:24:39 +02001994 band == IEEE80211_BAND_5GHZ) {
Felix Fietkau43d35342010-01-15 03:00:48 +01001995 sdata->vif.bss_conf.use_short_slot = true;
1996 changed |= BSS_CHANGED_ERP_SLOT;
1997 }
1998
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001999 if (params->use_short_slot_time >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02002000 sdata->vif.bss_conf.use_short_slot =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03002001 params->use_short_slot_time;
2002 changed |= BSS_CHANGED_ERP_SLOT;
2003 }
2004
Jouni Malinen90c97a02008-10-30 16:59:22 +02002005 if (params->basic_rates) {
Simon Wunderlich2103dec2013-07-08 16:55:53 +02002006 ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef,
2007 wiphy->bands[band],
2008 params->basic_rates,
2009 params->basic_rates_len,
2010 &sdata->vif.bss_conf.basic_rates);
Jouni Malinen90c97a02008-10-30 16:59:22 +02002011 changed |= BSS_CHANGED_BASIC_RATES;
2012 }
2013
Felix Fietkau7b7b5e52010-04-27 01:23:36 +02002014 if (params->ap_isolate >= 0) {
2015 if (params->ap_isolate)
2016 sdata->flags |= IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
2017 else
2018 sdata->flags &= ~IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
2019 }
2020
Helmut Schaa80d7e402010-11-19 12:40:26 +01002021 if (params->ht_opmode >= 0) {
2022 sdata->vif.bss_conf.ht_operation_mode =
2023 (u16) params->ht_opmode;
2024 changed |= BSS_CHANGED_HT;
2025 }
2026
Johannes Berg339afbf2012-11-14 15:21:17 +01002027 if (params->p2p_ctwindow >= 0) {
Janusz Dziedzic67baf662013-03-21 15:47:56 +01002028 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &=
2029 ~IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
2030 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
2031 params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
Johannes Berg339afbf2012-11-14 15:21:17 +01002032 changed |= BSS_CHANGED_P2P_PS;
2033 }
2034
Janusz Dziedzic67baf662013-03-21 15:47:56 +01002035 if (params->p2p_opp_ps > 0) {
2036 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
2037 IEEE80211_P2P_OPPPS_ENABLE_BIT;
2038 changed |= BSS_CHANGED_P2P_PS;
2039 } else if (params->p2p_opp_ps == 0) {
2040 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &=
2041 ~IEEE80211_P2P_OPPPS_ENABLE_BIT;
Johannes Berg339afbf2012-11-14 15:21:17 +01002042 changed |= BSS_CHANGED_P2P_PS;
2043 }
2044
Jouni Malinen9f1ba902008-08-07 20:07:01 +03002045 ieee80211_bss_info_change_notify(sdata, changed);
2046
2047 return 0;
2048}
2049
Jouni Malinen31888482008-10-30 16:59:24 +02002050static int ieee80211_set_txq_params(struct wiphy *wiphy,
Eliad Pellerf70f01c2011-09-25 20:06:53 +03002051 struct net_device *dev,
Jouni Malinen31888482008-10-30 16:59:24 +02002052 struct ieee80211_txq_params *params)
2053{
2054 struct ieee80211_local *local = wiphy_priv(wiphy);
Eliad Pellerf6f3def2011-09-25 20:06:54 +03002055 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Jouni Malinen31888482008-10-30 16:59:24 +02002056 struct ieee80211_tx_queue_params p;
2057
2058 if (!local->ops->conf_tx)
2059 return -EOPNOTSUPP;
2060
Johannes Berg54bcbc62012-03-28 11:04:25 +02002061 if (local->hw.queues < IEEE80211_NUM_ACS)
2062 return -EOPNOTSUPP;
2063
Jouni Malinen31888482008-10-30 16:59:24 +02002064 memset(&p, 0, sizeof(p));
2065 p.aifs = params->aifs;
2066 p.cw_max = params->cwmax;
2067 p.cw_min = params->cwmin;
2068 p.txop = params->txop;
Kalle Valoab133152010-01-12 10:42:31 +02002069
2070 /*
2071 * Setting tx queue params disables u-apsd because it's only
2072 * called in master mode.
2073 */
2074 p.uapsd = false;
2075
Johannes Berga3304b02012-03-28 11:04:24 +02002076 sdata->tx_conf[params->ac] = p;
2077 if (drv_conf_tx(local, sdata, params->ac, &p)) {
Joe Perches0fb9a9e2010-08-20 16:25:38 -07002078 wiphy_debug(local->hw.wiphy,
Johannes Berga3304b02012-03-28 11:04:24 +02002079 "failed to set TX queue parameters for AC %d\n",
2080 params->ac);
Jouni Malinen31888482008-10-30 16:59:24 +02002081 return -EINVAL;
2082 }
2083
Johannes Berg7d257452012-07-06 17:37:43 +02002084 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_QOS);
2085
Jouni Malinen31888482008-10-30 16:59:24 +02002086 return 0;
2087}
2088
Bob Copeland665af4f2009-01-19 11:20:53 -05002089#ifdef CONFIG_PM
Johannes Bergff1b6e62011-05-04 15:37:28 +02002090static int ieee80211_suspend(struct wiphy *wiphy,
2091 struct cfg80211_wowlan *wowlan)
Bob Copeland665af4f2009-01-19 11:20:53 -05002092{
Johannes Bergeecc4802011-05-04 15:37:29 +02002093 return __ieee80211_suspend(wiphy_priv(wiphy), wowlan);
Bob Copeland665af4f2009-01-19 11:20:53 -05002094}
2095
2096static int ieee80211_resume(struct wiphy *wiphy)
2097{
2098 return __ieee80211_resume(wiphy_priv(wiphy));
2099}
2100#else
2101#define ieee80211_suspend NULL
2102#define ieee80211_resume NULL
2103#endif
2104
Johannes Berg2a519312009-02-10 21:25:55 +01002105static int ieee80211_scan(struct wiphy *wiphy,
Johannes Berg2a519312009-02-10 21:25:55 +01002106 struct cfg80211_scan_request *req)
2107{
Johannes Bergfd014282012-06-18 19:17:03 +02002108 struct ieee80211_sub_if_data *sdata;
2109
2110 sdata = IEEE80211_WDEV_TO_SUB_IF(req->wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01002111
Johannes Berg2ca27bc2010-09-16 14:58:23 +02002112 switch (ieee80211_vif_type_p2p(&sdata->vif)) {
2113 case NL80211_IFTYPE_STATION:
2114 case NL80211_IFTYPE_ADHOC:
2115 case NL80211_IFTYPE_MESH_POINT:
2116 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Bergf142c6b2012-06-18 20:07:15 +02002117 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg2ca27bc2010-09-16 14:58:23 +02002118 break;
2119 case NL80211_IFTYPE_P2P_GO:
2120 if (sdata->local->ops->hw_scan)
2121 break;
Johannes Berge9d77322011-02-01 15:35:36 +01002122 /*
2123 * FIXME: implement NoA while scanning in software,
2124 * for now fall through to allow scanning only when
2125 * beaconing hasn't been configured yet
2126 */
Johannes Berg2ca27bc2010-09-16 14:58:23 +02002127 case NL80211_IFTYPE_AP:
Antonio Quartulli5c95b942012-10-16 08:39:22 +02002128 /*
2129 * If the scan has been forced (and the driver supports
2130 * forcing), don't care about being beaconing already.
2131 * This will create problems to the attached stations (e.g. all
2132 * the frames sent while scanning on other channel will be
2133 * lost)
2134 */
2135 if (sdata->u.ap.beacon &&
2136 (!(wiphy->features & NL80211_FEATURE_AP_SCAN) ||
2137 !(req->flags & NL80211_SCAN_FLAG_AP)))
Johannes Berg2ca27bc2010-09-16 14:58:23 +02002138 return -EOPNOTSUPP;
2139 break;
2140 default:
2141 return -EOPNOTSUPP;
2142 }
Johannes Berg2a519312009-02-10 21:25:55 +01002143
2144 return ieee80211_request_scan(sdata, req);
2145}
2146
Luciano Coelho79f460c2011-05-11 17:09:36 +03002147static int
2148ieee80211_sched_scan_start(struct wiphy *wiphy,
2149 struct net_device *dev,
2150 struct cfg80211_sched_scan_request *req)
2151{
2152 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2153
2154 if (!sdata->local->ops->sched_scan_start)
2155 return -EOPNOTSUPP;
2156
2157 return ieee80211_request_sched_scan_start(sdata, req);
2158}
2159
2160static int
Luciano Coelho85a99942011-05-12 16:28:29 +03002161ieee80211_sched_scan_stop(struct wiphy *wiphy, struct net_device *dev)
Luciano Coelho79f460c2011-05-11 17:09:36 +03002162{
2163 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2164
2165 if (!sdata->local->ops->sched_scan_stop)
2166 return -EOPNOTSUPP;
2167
Luciano Coelho85a99942011-05-12 16:28:29 +03002168 return ieee80211_request_sched_scan_stop(sdata);
Luciano Coelho79f460c2011-05-11 17:09:36 +03002169}
2170
Jouni Malinen636a5d32009-03-19 13:39:22 +02002171static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev,
2172 struct cfg80211_auth_request *req)
2173{
Johannes Berg77fdaa12009-07-07 03:45:17 +02002174 return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002175}
2176
2177static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev,
2178 struct cfg80211_assoc_request *req)
2179{
Johannes Berg77fdaa12009-07-07 03:45:17 +02002180 return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002181}
2182
2183static int ieee80211_deauth(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002184 struct cfg80211_deauth_request *req)
Jouni Malinen636a5d32009-03-19 13:39:22 +02002185{
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002186 return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002187}
2188
2189static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002190 struct cfg80211_disassoc_request *req)
Jouni Malinen636a5d32009-03-19 13:39:22 +02002191{
Johannes Berg63c9c5e2012-02-24 13:50:51 +01002192 return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02002193}
2194
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002195static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
2196 struct cfg80211_ibss_params *params)
2197{
Johannes Berg55de9082012-07-26 17:24:39 +02002198 return ieee80211_ibss_join(IEEE80211_DEV_TO_SUB_IF(dev), params);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002199}
2200
2201static int ieee80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev)
2202{
Johannes Berg55de9082012-07-26 17:24:39 +02002203 return ieee80211_ibss_leave(IEEE80211_DEV_TO_SUB_IF(dev));
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02002204}
2205
Antonio Quartulli391e53e2012-11-02 13:27:49 +01002206static int ieee80211_set_mcast_rate(struct wiphy *wiphy, struct net_device *dev,
2207 int rate[IEEE80211_NUM_BANDS])
2208{
2209 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2210
Cong Ding9887dbf2013-02-06 17:23:45 +01002211 memcpy(sdata->vif.bss_conf.mcast_rate, rate,
2212 sizeof(int) * IEEE80211_NUM_BANDS);
Antonio Quartulli391e53e2012-11-02 13:27:49 +01002213
2214 return 0;
2215}
2216
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002217static int ieee80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
2218{
2219 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg24487982009-04-23 18:52:52 +02002220 int err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002221
Arik Nemtsovf23a4782010-11-08 11:51:06 +02002222 if (changed & WIPHY_PARAM_FRAG_THRESHOLD) {
2223 err = drv_set_frag_threshold(local, wiphy->frag_threshold);
2224
2225 if (err)
2226 return err;
2227 }
2228
Lukáš Turek310bc672009-12-21 22:50:48 +01002229 if (changed & WIPHY_PARAM_COVERAGE_CLASS) {
2230 err = drv_set_coverage_class(local, wiphy->coverage_class);
2231
2232 if (err)
2233 return err;
2234 }
2235
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002236 if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
Johannes Berg24487982009-04-23 18:52:52 +02002237 err = drv_set_rts_threshold(local, wiphy->rts_threshold);
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002238
Johannes Berg24487982009-04-23 18:52:52 +02002239 if (err)
2240 return err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002241 }
2242
Johannes Berg8bc83c22012-11-09 18:38:32 +01002243 if (changed & WIPHY_PARAM_RETRY_SHORT) {
2244 if (wiphy->retry_short > IEEE80211_MAX_TX_RETRY)
2245 return -EINVAL;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002246 local->hw.conf.short_frame_max_tx_count = wiphy->retry_short;
Johannes Berg8bc83c22012-11-09 18:38:32 +01002247 }
2248 if (changed & WIPHY_PARAM_RETRY_LONG) {
2249 if (wiphy->retry_long > IEEE80211_MAX_TX_RETRY)
2250 return -EINVAL;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002251 local->hw.conf.long_frame_max_tx_count = wiphy->retry_long;
Johannes Berg8bc83c22012-11-09 18:38:32 +01002252 }
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02002253 if (changed &
2254 (WIPHY_PARAM_RETRY_SHORT | WIPHY_PARAM_RETRY_LONG))
2255 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
2256
2257 return 0;
2258}
2259
Johannes Berg7643a2c2009-06-02 13:01:39 +02002260static int ieee80211_set_tx_power(struct wiphy *wiphy,
Johannes Bergc8442112012-10-24 10:17:18 +02002261 struct wireless_dev *wdev,
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002262 enum nl80211_tx_power_setting type, int mbm)
Johannes Berg7643a2c2009-06-02 13:01:39 +02002263{
2264 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002265 struct ieee80211_sub_if_data *sdata;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002266
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002267 if (wdev) {
2268 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2269
2270 switch (type) {
2271 case NL80211_TX_POWER_AUTOMATIC:
2272 sdata->user_power_level = IEEE80211_UNSET_POWER_LEVEL;
2273 break;
2274 case NL80211_TX_POWER_LIMITED:
2275 case NL80211_TX_POWER_FIXED:
2276 if (mbm < 0 || (mbm % 100))
2277 return -EOPNOTSUPP;
2278 sdata->user_power_level = MBM_TO_DBM(mbm);
2279 break;
2280 }
2281
2282 ieee80211_recalc_txpower(sdata);
2283
2284 return 0;
2285 }
Johannes Berg55de9082012-07-26 17:24:39 +02002286
Johannes Berg7643a2c2009-06-02 13:01:39 +02002287 switch (type) {
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002288 case NL80211_TX_POWER_AUTOMATIC:
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002289 local->user_power_level = IEEE80211_UNSET_POWER_LEVEL;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002290 break;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002291 case NL80211_TX_POWER_LIMITED:
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002292 case NL80211_TX_POWER_FIXED:
2293 if (mbm < 0 || (mbm % 100))
2294 return -EOPNOTSUPP;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03002295 local->user_power_level = MBM_TO_DBM(mbm);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002296 break;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002297 }
2298
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002299 mutex_lock(&local->iflist_mtx);
2300 list_for_each_entry(sdata, &local->interfaces, list)
2301 sdata->user_power_level = local->user_power_level;
2302 list_for_each_entry(sdata, &local->interfaces, list)
2303 ieee80211_recalc_txpower(sdata);
2304 mutex_unlock(&local->iflist_mtx);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002305
2306 return 0;
2307}
2308
Johannes Bergc8442112012-10-24 10:17:18 +02002309static int ieee80211_get_tx_power(struct wiphy *wiphy,
2310 struct wireless_dev *wdev,
2311 int *dbm)
Johannes Berg7643a2c2009-06-02 13:01:39 +02002312{
2313 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002314 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg7643a2c2009-06-02 13:01:39 +02002315
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02002316 if (!local->use_chanctx)
2317 *dbm = local->hw.conf.power_level;
2318 else
2319 *dbm = sdata->vif.bss_conf.txpower;
Johannes Berg7643a2c2009-06-02 13:01:39 +02002320
Johannes Berg7643a2c2009-06-02 13:01:39 +02002321 return 0;
2322}
2323
Johannes Bergab737a42009-07-01 21:26:58 +02002324static int ieee80211_set_wds_peer(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg388ac772010-10-07 13:11:09 +02002325 const u8 *addr)
Johannes Bergab737a42009-07-01 21:26:58 +02002326{
2327 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2328
2329 memcpy(&sdata->u.wds.remote_addr, addr, ETH_ALEN);
2330
2331 return 0;
2332}
2333
Johannes Berg1f87f7d2009-06-02 13:01:41 +02002334static void ieee80211_rfkill_poll(struct wiphy *wiphy)
2335{
2336 struct ieee80211_local *local = wiphy_priv(wiphy);
2337
2338 drv_rfkill_poll(local);
2339}
2340
Johannes Bergaff89a92009-07-01 21:26:51 +02002341#ifdef CONFIG_NL80211_TESTMODE
David Spinadelfc73f112013-07-31 18:04:15 +03002342static int ieee80211_testmode_cmd(struct wiphy *wiphy,
2343 struct wireless_dev *wdev,
2344 void *data, int len)
Johannes Bergaff89a92009-07-01 21:26:51 +02002345{
2346 struct ieee80211_local *local = wiphy_priv(wiphy);
David Spinadel52981cd2013-07-31 18:06:22 +03002347 struct ieee80211_vif *vif = NULL;
Johannes Bergaff89a92009-07-01 21:26:51 +02002348
2349 if (!local->ops->testmode_cmd)
2350 return -EOPNOTSUPP;
2351
David Spinadel52981cd2013-07-31 18:06:22 +03002352 if (wdev) {
2353 struct ieee80211_sub_if_data *sdata;
2354
2355 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2356 if (sdata->flags & IEEE80211_SDATA_IN_DRIVER)
2357 vif = &sdata->vif;
2358 }
2359
2360 return local->ops->testmode_cmd(&local->hw, vif, data, len);
Johannes Bergaff89a92009-07-01 21:26:51 +02002361}
Wey-Yi Guy71063f02011-05-20 09:05:54 -07002362
2363static int ieee80211_testmode_dump(struct wiphy *wiphy,
2364 struct sk_buff *skb,
2365 struct netlink_callback *cb,
2366 void *data, int len)
2367{
2368 struct ieee80211_local *local = wiphy_priv(wiphy);
2369
2370 if (!local->ops->testmode_dump)
2371 return -EOPNOTSUPP;
2372
2373 return local->ops->testmode_dump(&local->hw, skb, cb, data, len);
2374}
Johannes Bergaff89a92009-07-01 21:26:51 +02002375#endif
2376
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002377int __ieee80211_request_smps_ap(struct ieee80211_sub_if_data *sdata,
2378 enum ieee80211_smps_mode smps_mode)
2379{
2380 struct sta_info *sta;
2381 enum ieee80211_smps_mode old_req;
2382 int i;
2383
2384 if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_AP))
2385 return -EINVAL;
2386
2387 if (sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT)
2388 return 0;
2389
2390 old_req = sdata->u.ap.req_smps;
2391 sdata->u.ap.req_smps = smps_mode;
2392
2393 /* AUTOMATIC doesn't mean much for AP - don't allow it */
2394 if (old_req == smps_mode ||
2395 smps_mode == IEEE80211_SMPS_AUTOMATIC)
2396 return 0;
2397
2398 /* If no associated stations, there's no need to do anything */
2399 if (!atomic_read(&sdata->u.ap.num_mcast_sta)) {
2400 sdata->smps_mode = smps_mode;
2401 ieee80211_queue_work(&sdata->local->hw, &sdata->recalc_smps);
2402 return 0;
2403 }
2404
2405 ht_dbg(sdata,
2406 "SMSP %d requested in AP mode, sending Action frame to %d stations\n",
2407 smps_mode, atomic_read(&sdata->u.ap.num_mcast_sta));
2408
2409 mutex_lock(&sdata->local->sta_mtx);
2410 for (i = 0; i < STA_HASH_SIZE; i++) {
2411 for (sta = rcu_dereference_protected(sdata->local->sta_hash[i],
2412 lockdep_is_held(&sdata->local->sta_mtx));
2413 sta;
2414 sta = rcu_dereference_protected(sta->hnext,
2415 lockdep_is_held(&sdata->local->sta_mtx))) {
2416 /*
2417 * Only stations associated to our AP and
2418 * associated VLANs
2419 */
2420 if (sta->sdata->bss != &sdata->u.ap)
2421 continue;
2422
2423 /* This station doesn't support MIMO - skip it */
2424 if (sta_info_tx_streams(sta) == 1)
2425 continue;
2426
2427 /*
2428 * Don't wake up a STA just to send the action frame
2429 * unless we are getting more restrictive.
2430 */
2431 if (test_sta_flag(sta, WLAN_STA_PS_STA) &&
2432 !ieee80211_smps_is_restrictive(sta->known_smps_mode,
2433 smps_mode)) {
2434 ht_dbg(sdata,
2435 "Won't send SMPS to sleeping STA %pM\n",
2436 sta->sta.addr);
2437 continue;
2438 }
2439
2440 /*
2441 * If the STA is not authorized, wait until it gets
2442 * authorized and the action frame will be sent then.
2443 */
2444 if (!test_sta_flag(sta, WLAN_STA_AUTHORIZED))
2445 continue;
2446
2447 ht_dbg(sdata, "Sending SMPS to %pM\n", sta->sta.addr);
2448 ieee80211_send_smps_action(sdata, smps_mode,
2449 sta->sta.addr,
2450 sdata->vif.bss_conf.bssid);
2451 }
2452 }
2453 mutex_unlock(&sdata->local->sta_mtx);
2454
2455 sdata->smps_mode = smps_mode;
2456 ieee80211_queue_work(&sdata->local->hw, &sdata->recalc_smps);
2457
2458 return 0;
2459}
2460
2461int __ieee80211_request_smps_mgd(struct ieee80211_sub_if_data *sdata,
2462 enum ieee80211_smps_mode smps_mode)
Johannes Berg0f782312009-12-01 13:37:02 +01002463{
2464 const u8 *ap;
2465 enum ieee80211_smps_mode old_req;
2466 int err;
2467
Johannes Berg8d61ffa2013-05-10 12:32:47 +02002468 lockdep_assert_held(&sdata->wdev.mtx);
Johannes Berg243e6df2011-04-19 20:44:04 +02002469
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002470 if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_STATION))
2471 return -EINVAL;
2472
Johannes Berg0f782312009-12-01 13:37:02 +01002473 old_req = sdata->u.mgd.req_smps;
2474 sdata->u.mgd.req_smps = smps_mode;
2475
2476 if (old_req == smps_mode &&
2477 smps_mode != IEEE80211_SMPS_AUTOMATIC)
2478 return 0;
2479
2480 /*
2481 * If not associated, or current association is not an HT
Johannes Berg04ecd252012-09-11 14:34:12 +02002482 * association, there's no need to do anything, just store
2483 * the new value until we associate.
Johannes Berg0f782312009-12-01 13:37:02 +01002484 */
2485 if (!sdata->u.mgd.associated ||
Johannes Berg4bf88532012-11-09 11:39:59 +01002486 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT)
Johannes Berg0f782312009-12-01 13:37:02 +01002487 return 0;
Johannes Berg0f782312009-12-01 13:37:02 +01002488
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002489 ap = sdata->u.mgd.associated->bssid;
Johannes Berg0f782312009-12-01 13:37:02 +01002490
2491 if (smps_mode == IEEE80211_SMPS_AUTOMATIC) {
2492 if (sdata->u.mgd.powersave)
2493 smps_mode = IEEE80211_SMPS_DYNAMIC;
2494 else
2495 smps_mode = IEEE80211_SMPS_OFF;
2496 }
2497
2498 /* send SM PS frame to AP */
2499 err = ieee80211_send_smps_action(sdata, smps_mode,
2500 ap, ap);
2501 if (err)
2502 sdata->u.mgd.req_smps = old_req;
2503
2504 return err;
2505}
2506
Johannes Bergbc92afd2009-07-01 21:26:57 +02002507static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev,
2508 bool enabled, int timeout)
2509{
2510 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2511 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Bergbc92afd2009-07-01 21:26:57 +02002512
Chun-Yeow Yeohee1f6682013-01-10 23:31:54 +08002513 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
2514 sdata->vif.type != NL80211_IFTYPE_MESH_POINT)
Benoit Papillaulte5de30c2010-01-15 12:21:37 +01002515 return -EOPNOTSUPP;
2516
Johannes Bergbc92afd2009-07-01 21:26:57 +02002517 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
2518 return -EOPNOTSUPP;
2519
2520 if (enabled == sdata->u.mgd.powersave &&
Juuso Oikarinenff616382010-06-09 09:51:52 +03002521 timeout == local->dynamic_ps_forced_timeout)
Johannes Bergbc92afd2009-07-01 21:26:57 +02002522 return 0;
2523
2524 sdata->u.mgd.powersave = enabled;
Juuso Oikarinenff616382010-06-09 09:51:52 +03002525 local->dynamic_ps_forced_timeout = timeout;
Johannes Bergbc92afd2009-07-01 21:26:57 +02002526
Johannes Berg0f782312009-12-01 13:37:02 +01002527 /* no change, but if automatic follow powersave */
Johannes Berged405be2013-06-03 13:51:59 +02002528 sdata_lock(sdata);
Emmanuel Grumbach687da132013-10-01 16:45:43 +03002529 __ieee80211_request_smps_mgd(sdata, sdata->u.mgd.req_smps);
Johannes Berged405be2013-06-03 13:51:59 +02002530 sdata_unlock(sdata);
Johannes Berg0f782312009-12-01 13:37:02 +01002531
Johannes Bergbc92afd2009-07-01 21:26:57 +02002532 if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
2533 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2534
2535 ieee80211_recalc_ps(local, -1);
Eliad Pellerab095872012-07-27 12:33:22 +03002536 ieee80211_recalc_ps_vif(sdata);
Johannes Bergbc92afd2009-07-01 21:26:57 +02002537
2538 return 0;
2539}
2540
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002541static int ieee80211_set_cqm_rssi_config(struct wiphy *wiphy,
2542 struct net_device *dev,
2543 s32 rssi_thold, u32 rssi_hyst)
2544{
2545 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002546 struct ieee80211_vif *vif = &sdata->vif;
2547 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
2548
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002549 if (rssi_thold == bss_conf->cqm_rssi_thold &&
2550 rssi_hyst == bss_conf->cqm_rssi_hyst)
2551 return 0;
2552
2553 bss_conf->cqm_rssi_thold = rssi_thold;
2554 bss_conf->cqm_rssi_hyst = rssi_hyst;
2555
2556 /* tell the driver upon association, unless already associated */
Johannes Bergea086352012-01-19 09:29:58 +01002557 if (sdata->u.mgd.associated &&
2558 sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002559 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_CQM);
2560
2561 return 0;
2562}
2563
Johannes Berg99303802009-07-01 21:26:59 +02002564static int ieee80211_set_bitrate_mask(struct wiphy *wiphy,
2565 struct net_device *dev,
2566 const u8 *addr,
2567 const struct cfg80211_bitrate_mask *mask)
2568{
2569 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2570 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +05302571 int i, ret;
Johannes Berg99303802009-07-01 21:26:59 +02002572
Eliad Peller554a43d2012-06-12 12:41:15 +03002573 if (!ieee80211_sdata_running(sdata))
2574 return -ENETDOWN;
2575
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +05302576 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL) {
2577 ret = drv_set_bitrate_mask(local, sdata, mask);
2578 if (ret)
2579 return ret;
2580 }
Johannes Berg99303802009-07-01 21:26:59 +02002581
Simon Wunderlich19468412012-01-28 17:25:33 +01002582 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
Felix Fietkau2ffbe6d2013-04-16 13:38:42 +02002583 struct ieee80211_supported_band *sband = wiphy->bands[i];
2584 int j;
2585
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002586 sdata->rc_rateidx_mask[i] = mask->control[i].legacy;
Simon Wunderlich19468412012-01-28 17:25:33 +01002587 memcpy(sdata->rc_rateidx_mcs_mask[i], mask->control[i].mcs,
2588 sizeof(mask->control[i].mcs));
Felix Fietkau2ffbe6d2013-04-16 13:38:42 +02002589
2590 sdata->rc_has_mcs_mask[i] = false;
2591 if (!sband)
2592 continue;
2593
2594 for (j = 0; j < IEEE80211_HT_MCS_MASK_LEN; j++)
2595 if (~sdata->rc_rateidx_mcs_mask[i][j]) {
2596 sdata->rc_has_mcs_mask[i] = true;
2597 break;
2598 }
Simon Wunderlich19468412012-01-28 17:25:33 +01002599 }
Johannes Berg99303802009-07-01 21:26:59 +02002600
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002601 return 0;
Johannes Berg99303802009-07-01 21:26:59 +02002602}
2603
Johannes Berg2eb278e2012-06-05 14:28:42 +02002604static int ieee80211_start_roc_work(struct ieee80211_local *local,
2605 struct ieee80211_sub_if_data *sdata,
2606 struct ieee80211_channel *channel,
Johannes Berg2eb278e2012-06-05 14:28:42 +02002607 unsigned int duration, u64 *cookie,
Ilan Peerd339d5c2013-02-12 09:34:13 +02002608 struct sk_buff *txskb,
2609 enum ieee80211_roc_type type)
Johannes Berg21f83582010-12-18 17:20:47 +01002610{
Johannes Berg2eb278e2012-06-05 14:28:42 +02002611 struct ieee80211_roc_work *roc, *tmp;
2612 bool queued = false;
Johannes Berg21f83582010-12-18 17:20:47 +01002613 int ret;
Johannes Berg21f83582010-12-18 17:20:47 +01002614
2615 lockdep_assert_held(&local->mtx);
2616
Johannes Bergfe57d9f2012-07-26 14:55:08 +02002617 if (local->use_chanctx && !local->ops->remain_on_channel)
2618 return -EOPNOTSUPP;
2619
Johannes Berg2eb278e2012-06-05 14:28:42 +02002620 roc = kzalloc(sizeof(*roc), GFP_KERNEL);
2621 if (!roc)
2622 return -ENOMEM;
Johannes Berg21f83582010-12-18 17:20:47 +01002623
Johannes Berg2eb278e2012-06-05 14:28:42 +02002624 roc->chan = channel;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002625 roc->duration = duration;
2626 roc->req_duration = duration;
2627 roc->frame = txskb;
Ilan Peerd339d5c2013-02-12 09:34:13 +02002628 roc->type = type;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002629 roc->mgmt_tx_cookie = (unsigned long)txskb;
2630 roc->sdata = sdata;
2631 INIT_DELAYED_WORK(&roc->work, ieee80211_sw_roc_work);
2632 INIT_LIST_HEAD(&roc->dependents);
2633
2634 /* if there's one pending or we're scanning, queue this one */
Simon Wunderlich164eb022013-02-08 18:16:20 +01002635 if (!list_empty(&local->roc_list) ||
2636 local->scanning || local->radar_detect_enabled)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002637 goto out_check_combine;
2638
2639 /* if not HW assist, just queue & schedule work */
2640 if (!local->ops->remain_on_channel) {
2641 ieee80211_queue_delayed_work(&local->hw, &roc->work, 0);
2642 goto out_queue;
Johannes Berg21f83582010-12-18 17:20:47 +01002643 }
2644
Johannes Berg2eb278e2012-06-05 14:28:42 +02002645 /* otherwise actually kick it off here (for error handling) */
2646
2647 /*
2648 * If the duration is zero, then the driver
2649 * wouldn't actually do anything. Set it to
2650 * 10 for now.
2651 *
2652 * TODO: cancel the off-channel operation
2653 * when we get the SKB's TX status and
2654 * the wait time was zero before.
2655 */
2656 if (!duration)
2657 duration = 10;
2658
Ilan Peerd339d5c2013-02-12 09:34:13 +02002659 ret = drv_remain_on_channel(local, sdata, channel, duration, type);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002660 if (ret) {
2661 kfree(roc);
2662 return ret;
2663 }
2664
2665 roc->started = true;
2666 goto out_queue;
2667
2668 out_check_combine:
2669 list_for_each_entry(tmp, &local->roc_list, list) {
Johannes Berg42d97a52012-11-08 18:31:02 +01002670 if (tmp->chan != channel || tmp->sdata != sdata)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002671 continue;
2672
2673 /*
2674 * Extend this ROC if possible:
2675 *
2676 * If it hasn't started yet, just increase the duration
2677 * and add the new one to the list of dependents.
Ilan Peerd339d5c2013-02-12 09:34:13 +02002678 * If the type of the new ROC has higher priority, modify the
2679 * type of the previous one to match that of the new one.
Johannes Berg2eb278e2012-06-05 14:28:42 +02002680 */
2681 if (!tmp->started) {
2682 list_add_tail(&roc->list, &tmp->dependents);
2683 tmp->duration = max(tmp->duration, roc->duration);
Ilan Peerd339d5c2013-02-12 09:34:13 +02002684 tmp->type = max(tmp->type, roc->type);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002685 queued = true;
2686 break;
2687 }
2688
2689 /* If it has already started, it's more difficult ... */
2690 if (local->ops->remain_on_channel) {
2691 unsigned long j = jiffies;
2692
2693 /*
2694 * In the offloaded ROC case, if it hasn't begun, add
2695 * this new one to the dependent list to be handled
Ilan Peerd339d5c2013-02-12 09:34:13 +02002696 * when the master one begins. If it has begun,
Johannes Berg2eb278e2012-06-05 14:28:42 +02002697 * check that there's still a minimum time left and
2698 * if so, start this one, transmitting the frame, but
Ilan Peerd339d5c2013-02-12 09:34:13 +02002699 * add it to the list directly after this one with
Johannes Berg2eb278e2012-06-05 14:28:42 +02002700 * a reduced time so we'll ask the driver to execute
2701 * it right after finishing the previous one, in the
2702 * hope that it'll also be executed right afterwards,
2703 * effectively extending the old one.
2704 * If there's no minimum time left, just add it to the
2705 * normal list.
Ilan Peerd339d5c2013-02-12 09:34:13 +02002706 * TODO: the ROC type is ignored here, assuming that it
2707 * is better to immediately use the current ROC.
Johannes Berg2eb278e2012-06-05 14:28:42 +02002708 */
2709 if (!tmp->hw_begun) {
2710 list_add_tail(&roc->list, &tmp->dependents);
2711 queued = true;
2712 break;
2713 }
2714
2715 if (time_before(j + IEEE80211_ROC_MIN_LEFT,
2716 tmp->hw_start_time +
2717 msecs_to_jiffies(tmp->duration))) {
2718 int new_dur;
2719
2720 ieee80211_handle_roc_started(roc);
2721
2722 new_dur = roc->duration -
2723 jiffies_to_msecs(tmp->hw_start_time +
2724 msecs_to_jiffies(
2725 tmp->duration) -
2726 j);
2727
2728 if (new_dur > 0) {
2729 /* add right after tmp */
2730 list_add(&roc->list, &tmp->list);
2731 } else {
2732 list_add_tail(&roc->list,
2733 &tmp->dependents);
2734 }
2735 queued = true;
2736 }
2737 } else if (del_timer_sync(&tmp->work.timer)) {
2738 unsigned long new_end;
2739
2740 /*
2741 * In the software ROC case, cancel the timer, if
2742 * that fails then the finish work is already
2743 * queued/pending and thus we queue the new ROC
2744 * normally, if that succeeds then we can extend
2745 * the timer duration and TX the frame (if any.)
2746 */
2747
2748 list_add_tail(&roc->list, &tmp->dependents);
2749 queued = true;
2750
2751 new_end = jiffies + msecs_to_jiffies(roc->duration);
2752
2753 /* ok, it was started & we canceled timer */
2754 if (time_after(new_end, tmp->work.timer.expires))
2755 mod_timer(&tmp->work.timer, new_end);
2756 else
2757 add_timer(&tmp->work.timer);
2758
2759 ieee80211_handle_roc_started(roc);
2760 }
2761 break;
2762 }
2763
2764 out_queue:
2765 if (!queued)
2766 list_add_tail(&roc->list, &local->roc_list);
2767
2768 /*
Johannes Berg50febf62012-10-26 16:13:06 +02002769 * cookie is either the roc cookie (for normal roc)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002770 * or the SKB (for mgmt TX)
2771 */
Johannes Berg50febf62012-10-26 16:13:06 +02002772 if (!txskb) {
2773 /* local->mtx protects this */
2774 local->roc_cookie_counter++;
2775 roc->cookie = local->roc_cookie_counter;
2776 /* wow, you wrapped 64 bits ... more likely a bug */
2777 if (WARN_ON(roc->cookie == 0)) {
2778 roc->cookie = 1;
2779 local->roc_cookie_counter++;
2780 }
2781 *cookie = roc->cookie;
2782 } else {
Johannes Berg2eb278e2012-06-05 14:28:42 +02002783 *cookie = (unsigned long)txskb;
Johannes Berg50febf62012-10-26 16:13:06 +02002784 }
Johannes Berg2eb278e2012-06-05 14:28:42 +02002785
2786 return 0;
Johannes Berg21f83582010-12-18 17:20:47 +01002787}
2788
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002789static int ieee80211_remain_on_channel(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02002790 struct wireless_dev *wdev,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002791 struct ieee80211_channel *chan,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002792 unsigned int duration,
2793 u64 *cookie)
2794{
Johannes Berg71bbc992012-06-15 15:30:18 +02002795 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg21f83582010-12-18 17:20:47 +01002796 struct ieee80211_local *local = sdata->local;
Johannes Berg21f83582010-12-18 17:20:47 +01002797 int ret;
2798
Johannes Berg2eb278e2012-06-05 14:28:42 +02002799 mutex_lock(&local->mtx);
Johannes Berg42d97a52012-11-08 18:31:02 +01002800 ret = ieee80211_start_roc_work(local, sdata, chan,
Ilan Peerd339d5c2013-02-12 09:34:13 +02002801 duration, cookie, NULL,
2802 IEEE80211_ROC_TYPE_NORMAL);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002803 mutex_unlock(&local->mtx);
Johannes Berg21f83582010-12-18 17:20:47 +01002804
Johannes Berg2eb278e2012-06-05 14:28:42 +02002805 return ret;
2806}
2807
2808static int ieee80211_cancel_roc(struct ieee80211_local *local,
2809 u64 cookie, bool mgmt_tx)
2810{
2811 struct ieee80211_roc_work *roc, *tmp, *found = NULL;
2812 int ret;
2813
2814 mutex_lock(&local->mtx);
2815 list_for_each_entry_safe(roc, tmp, &local->roc_list, list) {
Johannes Berge979e332012-06-11 17:09:41 +02002816 struct ieee80211_roc_work *dep, *tmp2;
2817
2818 list_for_each_entry_safe(dep, tmp2, &roc->dependents, list) {
Johannes Berg50febf62012-10-26 16:13:06 +02002819 if (!mgmt_tx && dep->cookie != cookie)
Johannes Berge979e332012-06-11 17:09:41 +02002820 continue;
2821 else if (mgmt_tx && dep->mgmt_tx_cookie != cookie)
2822 continue;
2823 /* found dependent item -- just remove it */
2824 list_del(&dep->list);
2825 mutex_unlock(&local->mtx);
2826
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002827 ieee80211_roc_notify_destroy(dep, true);
Johannes Berge979e332012-06-11 17:09:41 +02002828 return 0;
2829 }
2830
Johannes Berg50febf62012-10-26 16:13:06 +02002831 if (!mgmt_tx && roc->cookie != cookie)
Johannes Berg2eb278e2012-06-05 14:28:42 +02002832 continue;
2833 else if (mgmt_tx && roc->mgmt_tx_cookie != cookie)
2834 continue;
2835
2836 found = roc;
2837 break;
2838 }
2839
2840 if (!found) {
2841 mutex_unlock(&local->mtx);
Johannes Berg21f83582010-12-18 17:20:47 +01002842 return -ENOENT;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002843 }
Johannes Berg21f83582010-12-18 17:20:47 +01002844
Johannes Berge979e332012-06-11 17:09:41 +02002845 /*
2846 * We found the item to cancel, so do that. Note that it
2847 * may have dependents, which we also cancel (and send
2848 * the expired signal for.) Not doing so would be quite
2849 * tricky here, but we may need to fix it later.
2850 */
2851
Johannes Berg2eb278e2012-06-05 14:28:42 +02002852 if (local->ops->remain_on_channel) {
2853 if (found->started) {
2854 ret = drv_cancel_remain_on_channel(local);
2855 if (WARN_ON_ONCE(ret)) {
2856 mutex_unlock(&local->mtx);
2857 return ret;
2858 }
2859 }
Johannes Berg21f83582010-12-18 17:20:47 +01002860
Johannes Berg2eb278e2012-06-05 14:28:42 +02002861 list_del(&found->list);
2862
Johannes Berg0f6b3f52012-06-20 20:11:33 +02002863 if (found->started)
2864 ieee80211_start_next_roc(local);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002865 mutex_unlock(&local->mtx);
2866
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002867 ieee80211_roc_notify_destroy(found, true);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002868 } else {
2869 /* work may be pending so use it all the time */
2870 found->abort = true;
2871 ieee80211_queue_delayed_work(&local->hw, &found->work, 0);
2872
2873 mutex_unlock(&local->mtx);
2874
2875 /* work will clean up etc */
2876 flush_delayed_work(&found->work);
Johannes Berg3fbd45c2013-03-25 11:51:14 +01002877 WARN_ON(!found->to_be_freed);
2878 kfree(found);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002879 }
Johannes Berg21f83582010-12-18 17:20:47 +01002880
Johannes Berg21f83582010-12-18 17:20:47 +01002881 return 0;
2882}
2883
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002884static int ieee80211_cancel_remain_on_channel(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02002885 struct wireless_dev *wdev,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002886 u64 cookie)
2887{
Johannes Berg71bbc992012-06-15 15:30:18 +02002888 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg21f83582010-12-18 17:20:47 +01002889 struct ieee80211_local *local = sdata->local;
2890
Johannes Berg2eb278e2012-06-05 14:28:42 +02002891 return ieee80211_cancel_roc(local, cookie, false);
Johannes Bergf30221e2010-11-25 10:02:30 +01002892}
2893
Simon Wunderlich164eb022013-02-08 18:16:20 +01002894static int ieee80211_start_radar_detection(struct wiphy *wiphy,
2895 struct net_device *dev,
2896 struct cfg80211_chan_def *chandef)
2897{
2898 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2899 struct ieee80211_local *local = sdata->local;
2900 unsigned long timeout;
2901 int err;
2902
2903 if (!list_empty(&local->roc_list) || local->scanning)
2904 return -EBUSY;
2905
2906 /* whatever, but channel contexts should not complain about that one */
2907 sdata->smps_mode = IEEE80211_SMPS_OFF;
2908 sdata->needed_rx_chains = local->rx_chains;
2909 sdata->radar_required = true;
2910
2911 mutex_lock(&local->iflist_mtx);
2912 err = ieee80211_vif_use_channel(sdata, chandef,
2913 IEEE80211_CHANCTX_SHARED);
2914 mutex_unlock(&local->iflist_mtx);
2915 if (err)
2916 return err;
2917
2918 timeout = msecs_to_jiffies(IEEE80211_DFS_MIN_CAC_TIME_MS);
2919 ieee80211_queue_delayed_work(&sdata->local->hw,
2920 &sdata->dfs_cac_timer_work, timeout);
2921
2922 return 0;
2923}
2924
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002925static struct cfg80211_beacon_data *
2926cfg80211_beacon_dup(struct cfg80211_beacon_data *beacon)
2927{
2928 struct cfg80211_beacon_data *new_beacon;
2929 u8 *pos;
2930 int len;
2931
2932 len = beacon->head_len + beacon->tail_len + beacon->beacon_ies_len +
2933 beacon->proberesp_ies_len + beacon->assocresp_ies_len +
2934 beacon->probe_resp_len;
2935
2936 new_beacon = kzalloc(sizeof(*new_beacon) + len, GFP_KERNEL);
2937 if (!new_beacon)
2938 return NULL;
2939
2940 pos = (u8 *)(new_beacon + 1);
2941 if (beacon->head_len) {
2942 new_beacon->head_len = beacon->head_len;
2943 new_beacon->head = pos;
2944 memcpy(pos, beacon->head, beacon->head_len);
2945 pos += beacon->head_len;
2946 }
2947 if (beacon->tail_len) {
2948 new_beacon->tail_len = beacon->tail_len;
2949 new_beacon->tail = pos;
2950 memcpy(pos, beacon->tail, beacon->tail_len);
2951 pos += beacon->tail_len;
2952 }
2953 if (beacon->beacon_ies_len) {
2954 new_beacon->beacon_ies_len = beacon->beacon_ies_len;
2955 new_beacon->beacon_ies = pos;
2956 memcpy(pos, beacon->beacon_ies, beacon->beacon_ies_len);
2957 pos += beacon->beacon_ies_len;
2958 }
2959 if (beacon->proberesp_ies_len) {
2960 new_beacon->proberesp_ies_len = beacon->proberesp_ies_len;
2961 new_beacon->proberesp_ies = pos;
2962 memcpy(pos, beacon->proberesp_ies, beacon->proberesp_ies_len);
2963 pos += beacon->proberesp_ies_len;
2964 }
2965 if (beacon->assocresp_ies_len) {
2966 new_beacon->assocresp_ies_len = beacon->assocresp_ies_len;
2967 new_beacon->assocresp_ies = pos;
2968 memcpy(pos, beacon->assocresp_ies, beacon->assocresp_ies_len);
2969 pos += beacon->assocresp_ies_len;
2970 }
2971 if (beacon->probe_resp_len) {
2972 new_beacon->probe_resp_len = beacon->probe_resp_len;
2973 beacon->probe_resp = pos;
2974 memcpy(pos, beacon->probe_resp, beacon->probe_resp_len);
2975 pos += beacon->probe_resp_len;
2976 }
2977
2978 return new_beacon;
2979}
2980
2981void ieee80211_csa_finalize_work(struct work_struct *work)
2982{
2983 struct ieee80211_sub_if_data *sdata =
2984 container_of(work, struct ieee80211_sub_if_data,
2985 csa_finalize_work);
2986 struct ieee80211_local *local = sdata->local;
Michal Kazior0951ebb2013-10-18 14:57:00 -07002987 int err, changed = 0;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002988
2989 if (!ieee80211_sdata_running(sdata))
2990 return;
2991
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002992 sdata->radar_required = sdata->csa_radar_required;
Luciano Coelho33787fc2013-11-11 20:34:54 +02002993 err = ieee80211_vif_change_channel(sdata, &changed);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02002994 if (WARN_ON(err < 0))
2995 return;
2996
Arik Nemtsov7578d572013-09-01 17:15:51 +03002997 if (!local->use_chanctx) {
Luciano Coelho33787fc2013-11-11 20:34:54 +02002998 local->_oper_chandef = sdata->csa_chandef;
Arik Nemtsov7578d572013-09-01 17:15:51 +03002999 ieee80211_hw_config(local, 0);
3000 }
3001
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003002 ieee80211_bss_info_change_notify(sdata, changed);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003003
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003004 switch (sdata->vif.type) {
3005 case NL80211_IFTYPE_AP:
3006 err = ieee80211_assign_beacon(sdata, sdata->u.ap.next_beacon);
3007 if (err < 0)
3008 return;
3009 changed |= err;
3010 kfree(sdata->u.ap.next_beacon);
3011 sdata->u.ap.next_beacon = NULL;
3012
3013 ieee80211_bss_info_change_notify(sdata, err);
3014 break;
3015 case NL80211_IFTYPE_ADHOC:
3016 ieee80211_ibss_finish_csa(sdata);
3017 break;
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07003018#ifdef CONFIG_MAC80211_MESH
3019 case NL80211_IFTYPE_MESH_POINT:
3020 err = ieee80211_mesh_finish_csa(sdata);
3021 if (err < 0)
3022 return;
3023 break;
3024#endif
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003025 default:
3026 WARN_ON(1);
3027 return;
3028 }
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003029 sdata->vif.csa_active = false;
3030
3031 ieee80211_wake_queues_by_reason(&sdata->local->hw,
3032 IEEE80211_MAX_QUEUE_MAP,
3033 IEEE80211_QUEUE_STOP_REASON_CSA);
3034
Luciano Coelho33787fc2013-11-11 20:34:54 +02003035 cfg80211_ch_switch_notify(sdata->dev, &sdata->csa_chandef);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003036}
3037
3038static int ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev,
3039 struct cfg80211_csa_settings *params)
3040{
3041 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3042 struct ieee80211_local *local = sdata->local;
3043 struct ieee80211_chanctx_conf *chanctx_conf;
3044 struct ieee80211_chanctx *chanctx;
Chun-Yeow Yeohc6da6742013-10-14 19:08:28 -07003045 struct ieee80211_if_mesh __maybe_unused *ifmsh;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003046 int err, num_chanctx;
3047
3048 if (!list_empty(&local->roc_list) || local->scanning)
3049 return -EBUSY;
3050
3051 if (sdata->wdev.cac_started)
3052 return -EBUSY;
3053
3054 if (cfg80211_chandef_identical(&params->chandef,
3055 &sdata->vif.bss_conf.chandef))
3056 return -EINVAL;
3057
3058 rcu_read_lock();
3059 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3060 if (!chanctx_conf) {
3061 rcu_read_unlock();
3062 return -EBUSY;
3063 }
3064
3065 /* don't handle for multi-VIF cases */
3066 chanctx = container_of(chanctx_conf, struct ieee80211_chanctx, conf);
3067 if (chanctx->refcount > 1) {
3068 rcu_read_unlock();
3069 return -EBUSY;
3070 }
3071 num_chanctx = 0;
3072 list_for_each_entry_rcu(chanctx, &local->chanctx_list, list)
3073 num_chanctx++;
3074 rcu_read_unlock();
3075
3076 if (num_chanctx > 1)
3077 return -EBUSY;
3078
3079 /* don't allow another channel switch if one is already active. */
3080 if (sdata->vif.csa_active)
3081 return -EBUSY;
3082
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003083 switch (sdata->vif.type) {
3084 case NL80211_IFTYPE_AP:
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003085 sdata->csa_counter_offset_beacon =
3086 params->counter_offset_beacon;
3087 sdata->csa_counter_offset_presp = params->counter_offset_presp;
3088 sdata->u.ap.next_beacon =
3089 cfg80211_beacon_dup(&params->beacon_after);
3090 if (!sdata->u.ap.next_beacon)
3091 return -ENOMEM;
3092
3093 err = ieee80211_assign_beacon(sdata, &params->beacon_csa);
3094 if (err < 0) {
3095 kfree(sdata->u.ap.next_beacon);
3096 return err;
3097 }
3098 break;
3099 case NL80211_IFTYPE_ADHOC:
3100 if (!sdata->vif.bss_conf.ibss_joined)
3101 return -EINVAL;
3102
3103 if (params->chandef.width != sdata->u.ibss.chandef.width)
3104 return -EINVAL;
3105
3106 switch (params->chandef.width) {
3107 case NL80211_CHAN_WIDTH_40:
3108 if (cfg80211_get_chandef_type(&params->chandef) !=
3109 cfg80211_get_chandef_type(&sdata->u.ibss.chandef))
3110 return -EINVAL;
3111 case NL80211_CHAN_WIDTH_5:
3112 case NL80211_CHAN_WIDTH_10:
3113 case NL80211_CHAN_WIDTH_20_NOHT:
3114 case NL80211_CHAN_WIDTH_20:
3115 break;
3116 default:
3117 return -EINVAL;
3118 }
3119
3120 /* changes into another band are not supported */
3121 if (sdata->u.ibss.chandef.chan->band !=
3122 params->chandef.chan->band)
3123 return -EINVAL;
3124
3125 err = ieee80211_ibss_csa_beacon(sdata, params);
3126 if (err < 0)
3127 return err;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003128 break;
Chun-Yeow Yeohc6da6742013-10-14 19:08:28 -07003129#ifdef CONFIG_MAC80211_MESH
3130 case NL80211_IFTYPE_MESH_POINT:
3131 ifmsh = &sdata->u.mesh;
3132
3133 if (!ifmsh->mesh_id)
3134 return -EINVAL;
3135
3136 if (params->chandef.width != sdata->vif.bss_conf.chandef.width)
3137 return -EINVAL;
3138
3139 /* changes into another band are not supported */
3140 if (sdata->vif.bss_conf.chandef.chan->band !=
3141 params->chandef.chan->band)
3142 return -EINVAL;
3143
Chun-Yeow Yeohb8456a12013-10-17 15:55:02 -07003144 err = ieee80211_mesh_csa_beacon(sdata, params, true);
Chun-Yeow Yeohc6da6742013-10-14 19:08:28 -07003145 if (err < 0)
3146 return err;
3147 break;
3148#endif
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003149 default:
3150 return -EOPNOTSUPP;
3151 }
3152
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003153 sdata->csa_radar_required = params->radar_required;
3154
3155 if (params->block_tx)
3156 ieee80211_stop_queues_by_reason(&local->hw,
3157 IEEE80211_MAX_QUEUE_MAP,
3158 IEEE80211_QUEUE_STOP_REASON_CSA);
3159
Luciano Coelho33787fc2013-11-11 20:34:54 +02003160 sdata->csa_chandef = params->chandef;
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003161 sdata->vif.csa_active = true;
3162
3163 ieee80211_bss_info_change_notify(sdata, err);
3164 drv_channel_switch_beacon(sdata, &params->chandef);
3165
3166 return 0;
3167}
3168
Johannes Berg71bbc992012-06-15 15:30:18 +02003169static int ieee80211_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
Johannes Bergf7ca38d2010-11-25 10:02:29 +01003170 struct ieee80211_channel *chan, bool offchan,
Johannes Berg42d97a52012-11-08 18:31:02 +01003171 unsigned int wait, const u8 *buf, size_t len,
3172 bool no_cck, bool dont_wait_for_ack, u64 *cookie)
Jouni Malinen026331c2010-02-15 12:53:10 +02003173{
Johannes Berg71bbc992012-06-15 15:30:18 +02003174 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg9d38d852010-06-09 17:20:33 +02003175 struct ieee80211_local *local = sdata->local;
3176 struct sk_buff *skb;
3177 struct sta_info *sta;
3178 const struct ieee80211_mgmt *mgmt = (void *)buf;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003179 bool need_offchan = false;
Johannes Berge247bd902011-11-04 11:18:21 +01003180 u32 flags;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003181 int ret;
Johannes Bergf7ca38d2010-11-25 10:02:29 +01003182
Johannes Berge247bd902011-11-04 11:18:21 +01003183 if (dont_wait_for_ack)
3184 flags = IEEE80211_TX_CTL_NO_ACK;
3185 else
3186 flags = IEEE80211_TX_INTFL_NL80211_FRAME_TX |
3187 IEEE80211_TX_CTL_REQ_TX_STATUS;
3188
Rajkumar Manoharanaad14ce2011-09-25 14:53:31 +05303189 if (no_cck)
3190 flags |= IEEE80211_TX_CTL_NO_CCK_RATE;
3191
Johannes Berg9d38d852010-06-09 17:20:33 +02003192 switch (sdata->vif.type) {
3193 case NL80211_IFTYPE_ADHOC:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003194 if (!sdata->vif.bss_conf.ibss_joined)
3195 need_offchan = true;
3196 /* fall through */
3197#ifdef CONFIG_MAC80211_MESH
3198 case NL80211_IFTYPE_MESH_POINT:
3199 if (ieee80211_vif_is_mesh(&sdata->vif) &&
3200 !sdata->u.mesh.mesh_id_len)
3201 need_offchan = true;
3202 /* fall through */
3203#endif
Johannes Berg663fcaf2010-09-30 21:06:09 +02003204 case NL80211_IFTYPE_AP:
3205 case NL80211_IFTYPE_AP_VLAN:
3206 case NL80211_IFTYPE_P2P_GO:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003207 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
3208 !ieee80211_vif_is_mesh(&sdata->vif) &&
3209 !rcu_access_pointer(sdata->bss->beacon))
3210 need_offchan = true;
Johannes Berg663fcaf2010-09-30 21:06:09 +02003211 if (!ieee80211_is_action(mgmt->frame_control) ||
Thomas Pedersenac49e1a2013-06-20 23:50:58 -07003212 mgmt->u.action.category == WLAN_CATEGORY_PUBLIC ||
Simon Wunderlichcd7760e2013-08-28 13:41:31 +02003213 mgmt->u.action.category == WLAN_CATEGORY_SELF_PROTECTED ||
3214 mgmt->u.action.category == WLAN_CATEGORY_SPECTRUM_MGMT)
Johannes Berg9d38d852010-06-09 17:20:33 +02003215 break;
3216 rcu_read_lock();
3217 sta = sta_info_get(sdata, mgmt->da);
3218 rcu_read_unlock();
3219 if (!sta)
3220 return -ENOLINK;
3221 break;
3222 case NL80211_IFTYPE_STATION:
Johannes Berg663fcaf2010-09-30 21:06:09 +02003223 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berg2eb278e2012-06-05 14:28:42 +02003224 if (!sdata->u.mgd.associated)
3225 need_offchan = true;
Johannes Berg9d38d852010-06-09 17:20:33 +02003226 break;
Johannes Bergf142c6b2012-06-18 20:07:15 +02003227 case NL80211_IFTYPE_P2P_DEVICE:
3228 need_offchan = true;
3229 break;
Johannes Berg9d38d852010-06-09 17:20:33 +02003230 default:
3231 return -EOPNOTSUPP;
3232 }
3233
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003234 /* configurations requiring offchan cannot work if no channel has been
3235 * specified
3236 */
3237 if (need_offchan && !chan)
3238 return -EINVAL;
3239
Johannes Berg2eb278e2012-06-05 14:28:42 +02003240 mutex_lock(&local->mtx);
3241
3242 /* Check if the operating channel is the requested channel */
3243 if (!need_offchan) {
Johannes Berg55de9082012-07-26 17:24:39 +02003244 struct ieee80211_chanctx_conf *chanctx_conf;
3245
3246 rcu_read_lock();
3247 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3248
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003249 if (chanctx_conf) {
3250 need_offchan = chan && (chan != chanctx_conf->def.chan);
3251 } else if (!chan) {
3252 ret = -EINVAL;
3253 rcu_read_unlock();
3254 goto out_unlock;
3255 } else {
Johannes Berg2eb278e2012-06-05 14:28:42 +02003256 need_offchan = true;
Antonio Quartullif7aeb6f2013-06-11 14:20:00 +02003257 }
Johannes Berg55de9082012-07-26 17:24:39 +02003258 rcu_read_unlock();
Johannes Berg2eb278e2012-06-05 14:28:42 +02003259 }
3260
3261 if (need_offchan && !offchan) {
3262 ret = -EBUSY;
3263 goto out_unlock;
3264 }
3265
Johannes Berg9d38d852010-06-09 17:20:33 +02003266 skb = dev_alloc_skb(local->hw.extra_tx_headroom + len);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003267 if (!skb) {
3268 ret = -ENOMEM;
3269 goto out_unlock;
3270 }
Johannes Berg9d38d852010-06-09 17:20:33 +02003271 skb_reserve(skb, local->hw.extra_tx_headroom);
3272
3273 memcpy(skb_put(skb, len), buf, len);
3274
3275 IEEE80211_SKB_CB(skb)->flags = flags;
3276
Johannes Berg2eb278e2012-06-05 14:28:42 +02003277 skb->dev = sdata->dev;
3278
3279 if (!need_offchan) {
Nicolas Cavallari7f9f78a2012-07-16 18:36:52 +02003280 *cookie = (unsigned long) skb;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003281 ieee80211_tx_skb(sdata, skb);
3282 ret = 0;
3283 goto out_unlock;
3284 }
3285
Seth Forshee6c17b772013-02-11 11:21:07 -06003286 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_TX_OFFCHAN |
3287 IEEE80211_TX_INTFL_OFFCHAN_TX_OK;
Johannes Berg2eb278e2012-06-05 14:28:42 +02003288 if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)
Johannes Berg3a25a8c2012-04-03 16:28:50 +02003289 IEEE80211_SKB_CB(skb)->hw_queue =
3290 local->hw.offchannel_tx_hw_queue;
3291
Johannes Berg2eb278e2012-06-05 14:28:42 +02003292 /* This will handle all kinds of coalescing and immediate TX */
Johannes Berg42d97a52012-11-08 18:31:02 +01003293 ret = ieee80211_start_roc_work(local, sdata, chan,
Ilan Peerd339d5c2013-02-12 09:34:13 +02003294 wait, cookie, skb,
3295 IEEE80211_ROC_TYPE_MGMT_TX);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003296 if (ret)
Johannes Bergf30221e2010-11-25 10:02:30 +01003297 kfree_skb(skb);
Johannes Berg2eb278e2012-06-05 14:28:42 +02003298 out_unlock:
3299 mutex_unlock(&local->mtx);
3300 return ret;
Jouni Malinen026331c2010-02-15 12:53:10 +02003301}
3302
Johannes Bergf30221e2010-11-25 10:02:30 +01003303static int ieee80211_mgmt_tx_cancel_wait(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02003304 struct wireless_dev *wdev,
Johannes Bergf30221e2010-11-25 10:02:30 +01003305 u64 cookie)
3306{
Johannes Berg71bbc992012-06-15 15:30:18 +02003307 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Bergf30221e2010-11-25 10:02:30 +01003308
Johannes Berg2eb278e2012-06-05 14:28:42 +02003309 return ieee80211_cancel_roc(local, cookie, true);
Johannes Bergf30221e2010-11-25 10:02:30 +01003310}
3311
Johannes Berg7be50862010-10-13 12:06:24 +02003312static void ieee80211_mgmt_frame_register(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02003313 struct wireless_dev *wdev,
Johannes Berg7be50862010-10-13 12:06:24 +02003314 u16 frame_type, bool reg)
3315{
3316 struct ieee80211_local *local = wiphy_priv(wiphy);
3317
Will Hawkins6abe0562012-06-20 11:51:14 -04003318 switch (frame_type) {
Will Hawkins6abe0562012-06-20 11:51:14 -04003319 case IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_PROBE_REQ:
3320 if (reg)
3321 local->probe_req_reg++;
3322 else
3323 local->probe_req_reg--;
Johannes Berg7be50862010-10-13 12:06:24 +02003324
Felix Fietkau35f51492012-10-31 15:50:34 +01003325 if (!local->open_count)
3326 break;
3327
Will Hawkins6abe0562012-06-20 11:51:14 -04003328 ieee80211_queue_work(&local->hw, &local->reconfig_filter);
3329 break;
3330 default:
3331 break;
3332 }
Johannes Berg7be50862010-10-13 12:06:24 +02003333}
3334
Bruno Randolf15d96752010-11-10 12:50:56 +09003335static int ieee80211_set_antenna(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant)
3336{
3337 struct ieee80211_local *local = wiphy_priv(wiphy);
3338
3339 if (local->started)
3340 return -EOPNOTSUPP;
3341
3342 return drv_set_antenna(local, tx_ant, rx_ant);
3343}
3344
3345static int ieee80211_get_antenna(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant)
3346{
3347 struct ieee80211_local *local = wiphy_priv(wiphy);
3348
3349 return drv_get_antenna(local, tx_ant, rx_ant);
3350}
3351
John W. Linville38c09152011-03-07 16:19:18 -05003352static int ieee80211_set_ringparam(struct wiphy *wiphy, u32 tx, u32 rx)
3353{
3354 struct ieee80211_local *local = wiphy_priv(wiphy);
3355
3356 return drv_set_ringparam(local, tx, rx);
3357}
3358
3359static void ieee80211_get_ringparam(struct wiphy *wiphy,
3360 u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max)
3361{
3362 struct ieee80211_local *local = wiphy_priv(wiphy);
3363
3364 drv_get_ringparam(local, tx, tx_max, rx, rx_max);
3365}
3366
Johannes Bergc68f4b82011-07-05 16:35:41 +02003367static int ieee80211_set_rekey_data(struct wiphy *wiphy,
3368 struct net_device *dev,
3369 struct cfg80211_gtk_rekey_data *data)
3370{
3371 struct ieee80211_local *local = wiphy_priv(wiphy);
3372 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3373
3374 if (!local->ops->set_rekey_data)
3375 return -EOPNOTSUPP;
3376
3377 drv_set_rekey_data(local, sdata, data);
3378
3379 return 0;
3380}
3381
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003382static void ieee80211_tdls_add_ext_capab(struct sk_buff *skb)
3383{
3384 u8 *pos = (void *)skb_put(skb, 7);
3385
3386 *pos++ = WLAN_EID_EXT_CAPABILITY;
3387 *pos++ = 5; /* len */
3388 *pos++ = 0x0;
3389 *pos++ = 0x0;
3390 *pos++ = 0x0;
3391 *pos++ = 0x0;
3392 *pos++ = WLAN_EXT_CAPA5_TDLS_ENABLED;
3393}
3394
3395static u16 ieee80211_get_tdls_sta_capab(struct ieee80211_sub_if_data *sdata)
3396{
3397 struct ieee80211_local *local = sdata->local;
3398 u16 capab;
3399
3400 capab = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02003401 if (ieee80211_get_sdata_band(sdata) != IEEE80211_BAND_2GHZ)
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003402 return capab;
3403
3404 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
3405 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
3406 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
3407 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
3408
3409 return capab;
3410}
3411
3412static void ieee80211_tdls_add_link_ie(struct sk_buff *skb, u8 *src_addr,
3413 u8 *peer, u8 *bssid)
3414{
3415 struct ieee80211_tdls_lnkie *lnkid;
3416
3417 lnkid = (void *)skb_put(skb, sizeof(struct ieee80211_tdls_lnkie));
3418
3419 lnkid->ie_type = WLAN_EID_LINK_ID;
3420 lnkid->ie_len = sizeof(struct ieee80211_tdls_lnkie) - 2;
3421
3422 memcpy(lnkid->bssid, bssid, ETH_ALEN);
3423 memcpy(lnkid->init_sta, src_addr, ETH_ALEN);
3424 memcpy(lnkid->resp_sta, peer, ETH_ALEN);
3425}
3426
3427static int
3428ieee80211_prep_tdls_encap_data(struct wiphy *wiphy, struct net_device *dev,
3429 u8 *peer, u8 action_code, u8 dialog_token,
3430 u16 status_code, struct sk_buff *skb)
3431{
3432 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg55de9082012-07-26 17:24:39 +02003433 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003434 struct ieee80211_tdls_data *tf;
3435
3436 tf = (void *)skb_put(skb, offsetof(struct ieee80211_tdls_data, u));
3437
3438 memcpy(tf->da, peer, ETH_ALEN);
3439 memcpy(tf->sa, sdata->vif.addr, ETH_ALEN);
3440 tf->ether_type = cpu_to_be16(ETH_P_TDLS);
3441 tf->payload_type = WLAN_TDLS_SNAP_RFTYPE;
3442
3443 switch (action_code) {
3444 case WLAN_TDLS_SETUP_REQUEST:
3445 tf->category = WLAN_CATEGORY_TDLS;
3446 tf->action_code = WLAN_TDLS_SETUP_REQUEST;
3447
3448 skb_put(skb, sizeof(tf->u.setup_req));
3449 tf->u.setup_req.dialog_token = dialog_token;
3450 tf->u.setup_req.capability =
3451 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata));
3452
Johannes Berg55de9082012-07-26 17:24:39 +02003453 ieee80211_add_srates_ie(sdata, skb, false, band);
3454 ieee80211_add_ext_srates_ie(sdata, skb, false, band);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003455 ieee80211_tdls_add_ext_capab(skb);
3456 break;
3457 case WLAN_TDLS_SETUP_RESPONSE:
3458 tf->category = WLAN_CATEGORY_TDLS;
3459 tf->action_code = WLAN_TDLS_SETUP_RESPONSE;
3460
3461 skb_put(skb, sizeof(tf->u.setup_resp));
3462 tf->u.setup_resp.status_code = cpu_to_le16(status_code);
3463 tf->u.setup_resp.dialog_token = dialog_token;
3464 tf->u.setup_resp.capability =
3465 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata));
3466
Johannes Berg55de9082012-07-26 17:24:39 +02003467 ieee80211_add_srates_ie(sdata, skb, false, band);
3468 ieee80211_add_ext_srates_ie(sdata, skb, false, band);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003469 ieee80211_tdls_add_ext_capab(skb);
3470 break;
3471 case WLAN_TDLS_SETUP_CONFIRM:
3472 tf->category = WLAN_CATEGORY_TDLS;
3473 tf->action_code = WLAN_TDLS_SETUP_CONFIRM;
3474
3475 skb_put(skb, sizeof(tf->u.setup_cfm));
3476 tf->u.setup_cfm.status_code = cpu_to_le16(status_code);
3477 tf->u.setup_cfm.dialog_token = dialog_token;
3478 break;
3479 case WLAN_TDLS_TEARDOWN:
3480 tf->category = WLAN_CATEGORY_TDLS;
3481 tf->action_code = WLAN_TDLS_TEARDOWN;
3482
3483 skb_put(skb, sizeof(tf->u.teardown));
3484 tf->u.teardown.reason_code = cpu_to_le16(status_code);
3485 break;
3486 case WLAN_TDLS_DISCOVERY_REQUEST:
3487 tf->category = WLAN_CATEGORY_TDLS;
3488 tf->action_code = WLAN_TDLS_DISCOVERY_REQUEST;
3489
3490 skb_put(skb, sizeof(tf->u.discover_req));
3491 tf->u.discover_req.dialog_token = dialog_token;
3492 break;
3493 default:
3494 return -EINVAL;
3495 }
3496
3497 return 0;
3498}
3499
3500static int
3501ieee80211_prep_tdls_direct(struct wiphy *wiphy, struct net_device *dev,
3502 u8 *peer, u8 action_code, u8 dialog_token,
3503 u16 status_code, struct sk_buff *skb)
3504{
3505 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg55de9082012-07-26 17:24:39 +02003506 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003507 struct ieee80211_mgmt *mgmt;
3508
3509 mgmt = (void *)skb_put(skb, 24);
3510 memset(mgmt, 0, 24);
3511 memcpy(mgmt->da, peer, ETH_ALEN);
3512 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
3513 memcpy(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN);
3514
3515 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
3516 IEEE80211_STYPE_ACTION);
3517
3518 switch (action_code) {
3519 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
3520 skb_put(skb, 1 + sizeof(mgmt->u.action.u.tdls_discover_resp));
3521 mgmt->u.action.category = WLAN_CATEGORY_PUBLIC;
3522 mgmt->u.action.u.tdls_discover_resp.action_code =
3523 WLAN_PUB_ACTION_TDLS_DISCOVER_RES;
3524 mgmt->u.action.u.tdls_discover_resp.dialog_token =
3525 dialog_token;
3526 mgmt->u.action.u.tdls_discover_resp.capability =
3527 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata));
3528
Johannes Berg55de9082012-07-26 17:24:39 +02003529 ieee80211_add_srates_ie(sdata, skb, false, band);
3530 ieee80211_add_ext_srates_ie(sdata, skb, false, band);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003531 ieee80211_tdls_add_ext_capab(skb);
3532 break;
3533 default:
3534 return -EINVAL;
3535 }
3536
3537 return 0;
3538}
3539
3540static int ieee80211_tdls_mgmt(struct wiphy *wiphy, struct net_device *dev,
3541 u8 *peer, u8 action_code, u8 dialog_token,
3542 u16 status_code, const u8 *extra_ies,
3543 size_t extra_ies_len)
3544{
3545 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3546 struct ieee80211_local *local = sdata->local;
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003547 struct sk_buff *skb = NULL;
3548 bool send_direct;
3549 int ret;
3550
3551 if (!(wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS))
3552 return -ENOTSUPP;
3553
3554 /* make sure we are in managed mode, and associated */
3555 if (sdata->vif.type != NL80211_IFTYPE_STATION ||
3556 !sdata->u.mgd.associated)
3557 return -EINVAL;
3558
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003559 tdls_dbg(sdata, "TDLS mgmt action %d peer %pM\n",
3560 action_code, peer);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003561
3562 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
3563 max(sizeof(struct ieee80211_mgmt),
3564 sizeof(struct ieee80211_tdls_data)) +
3565 50 + /* supported rates */
3566 7 + /* ext capab */
3567 extra_ies_len +
3568 sizeof(struct ieee80211_tdls_lnkie));
3569 if (!skb)
3570 return -ENOMEM;
3571
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003572 skb_reserve(skb, local->hw.extra_tx_headroom);
3573
3574 switch (action_code) {
3575 case WLAN_TDLS_SETUP_REQUEST:
3576 case WLAN_TDLS_SETUP_RESPONSE:
3577 case WLAN_TDLS_SETUP_CONFIRM:
3578 case WLAN_TDLS_TEARDOWN:
3579 case WLAN_TDLS_DISCOVERY_REQUEST:
3580 ret = ieee80211_prep_tdls_encap_data(wiphy, dev, peer,
3581 action_code, dialog_token,
3582 status_code, skb);
3583 send_direct = false;
3584 break;
3585 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
3586 ret = ieee80211_prep_tdls_direct(wiphy, dev, peer, action_code,
3587 dialog_token, status_code,
3588 skb);
3589 send_direct = true;
3590 break;
3591 default:
3592 ret = -ENOTSUPP;
3593 break;
3594 }
3595
3596 if (ret < 0)
3597 goto fail;
3598
3599 if (extra_ies_len)
3600 memcpy(skb_put(skb, extra_ies_len), extra_ies, extra_ies_len);
3601
3602 /* the TDLS link IE is always added last */
3603 switch (action_code) {
3604 case WLAN_TDLS_SETUP_REQUEST:
3605 case WLAN_TDLS_SETUP_CONFIRM:
3606 case WLAN_TDLS_TEARDOWN:
3607 case WLAN_TDLS_DISCOVERY_REQUEST:
3608 /* we are the initiator */
3609 ieee80211_tdls_add_link_ie(skb, sdata->vif.addr, peer,
3610 sdata->u.mgd.bssid);
3611 break;
3612 case WLAN_TDLS_SETUP_RESPONSE:
3613 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
3614 /* we are the responder */
3615 ieee80211_tdls_add_link_ie(skb, peer, sdata->vif.addr,
3616 sdata->u.mgd.bssid);
3617 break;
3618 default:
3619 ret = -ENOTSUPP;
3620 goto fail;
3621 }
3622
3623 if (send_direct) {
3624 ieee80211_tx_skb(sdata, skb);
3625 return 0;
3626 }
3627
3628 /*
3629 * According to 802.11z: Setup req/resp are sent in AC_BK, otherwise
3630 * we should default to AC_VI.
3631 */
3632 switch (action_code) {
3633 case WLAN_TDLS_SETUP_REQUEST:
3634 case WLAN_TDLS_SETUP_RESPONSE:
3635 skb_set_queue_mapping(skb, IEEE80211_AC_BK);
3636 skb->priority = 2;
3637 break;
3638 default:
3639 skb_set_queue_mapping(skb, IEEE80211_AC_VI);
3640 skb->priority = 5;
3641 break;
3642 }
3643
3644 /* disable bottom halves when entering the Tx path */
3645 local_bh_disable();
3646 ret = ieee80211_subif_start_xmit(skb, dev);
3647 local_bh_enable();
3648
3649 return ret;
3650
3651fail:
3652 dev_kfree_skb(skb);
3653 return ret;
3654}
3655
3656static int ieee80211_tdls_oper(struct wiphy *wiphy, struct net_device *dev,
3657 u8 *peer, enum nl80211_tdls_operation oper)
3658{
Arik Nemtsov941c93c2011-09-28 14:12:54 +03003659 struct sta_info *sta;
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003660 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3661
3662 if (!(wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS))
3663 return -ENOTSUPP;
3664
3665 if (sdata->vif.type != NL80211_IFTYPE_STATION)
3666 return -EINVAL;
3667
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02003668 tdls_dbg(sdata, "TDLS oper %d peer %pM\n", oper, peer);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003669
3670 switch (oper) {
3671 case NL80211_TDLS_ENABLE_LINK:
Arik Nemtsov941c93c2011-09-28 14:12:54 +03003672 rcu_read_lock();
3673 sta = sta_info_get(sdata, peer);
3674 if (!sta) {
3675 rcu_read_unlock();
3676 return -ENOLINK;
3677 }
3678
Johannes Bergc2c98fd2011-09-29 16:04:36 +02003679 set_sta_flag(sta, WLAN_STA_TDLS_PEER_AUTH);
Arik Nemtsov941c93c2011-09-28 14:12:54 +03003680 rcu_read_unlock();
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003681 break;
3682 case NL80211_TDLS_DISABLE_LINK:
3683 return sta_info_destroy_addr(sdata, peer);
3684 case NL80211_TDLS_TEARDOWN:
3685 case NL80211_TDLS_SETUP:
3686 case NL80211_TDLS_DISCOVERY_REQ:
3687 /* We don't support in-driver setup/teardown/discovery */
3688 return -ENOTSUPP;
3689 default:
3690 return -ENOTSUPP;
3691 }
3692
3693 return 0;
3694}
3695
Johannes Berg06500732011-11-04 11:18:16 +01003696static int ieee80211_probe_client(struct wiphy *wiphy, struct net_device *dev,
3697 const u8 *peer, u64 *cookie)
3698{
3699 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3700 struct ieee80211_local *local = sdata->local;
3701 struct ieee80211_qos_hdr *nullfunc;
3702 struct sk_buff *skb;
3703 int size = sizeof(*nullfunc);
3704 __le16 fc;
3705 bool qos;
3706 struct ieee80211_tx_info *info;
3707 struct sta_info *sta;
Johannes Berg55de9082012-07-26 17:24:39 +02003708 struct ieee80211_chanctx_conf *chanctx_conf;
3709 enum ieee80211_band band;
Johannes Berg06500732011-11-04 11:18:16 +01003710
3711 rcu_read_lock();
Johannes Berg55de9082012-07-26 17:24:39 +02003712 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3713 if (WARN_ON(!chanctx_conf)) {
3714 rcu_read_unlock();
3715 return -EINVAL;
3716 }
Johannes Berg4bf88532012-11-09 11:39:59 +01003717 band = chanctx_conf->def.chan->band;
Felix Fietkau03bb7f42013-09-29 21:39:33 +02003718 sta = sta_info_get_bss(sdata, peer);
Johannes Bergb4487c22011-11-11 20:22:30 +01003719 if (sta) {
Johannes Berg06500732011-11-04 11:18:16 +01003720 qos = test_sta_flag(sta, WLAN_STA_WME);
Johannes Bergb4487c22011-11-11 20:22:30 +01003721 } else {
3722 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003723 return -ENOLINK;
Johannes Bergb4487c22011-11-11 20:22:30 +01003724 }
Johannes Berg06500732011-11-04 11:18:16 +01003725
3726 if (qos) {
3727 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3728 IEEE80211_STYPE_QOS_NULLFUNC |
3729 IEEE80211_FCTL_FROMDS);
3730 } else {
3731 size -= 2;
3732 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3733 IEEE80211_STYPE_NULLFUNC |
3734 IEEE80211_FCTL_FROMDS);
3735 }
3736
3737 skb = dev_alloc_skb(local->hw.extra_tx_headroom + size);
Johannes Berg55de9082012-07-26 17:24:39 +02003738 if (!skb) {
3739 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003740 return -ENOMEM;
Johannes Berg55de9082012-07-26 17:24:39 +02003741 }
Johannes Berg06500732011-11-04 11:18:16 +01003742
3743 skb->dev = dev;
3744
3745 skb_reserve(skb, local->hw.extra_tx_headroom);
3746
3747 nullfunc = (void *) skb_put(skb, size);
3748 nullfunc->frame_control = fc;
3749 nullfunc->duration_id = 0;
3750 memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN);
3751 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
3752 memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);
3753 nullfunc->seq_ctrl = 0;
3754
3755 info = IEEE80211_SKB_CB(skb);
3756
3757 info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
3758 IEEE80211_TX_INTFL_NL80211_FRAME_TX;
3759
3760 skb_set_queue_mapping(skb, IEEE80211_AC_VO);
3761 skb->priority = 7;
3762 if (qos)
3763 nullfunc->qos_ctrl = cpu_to_le16(7);
3764
3765 local_bh_disable();
Johannes Berg55de9082012-07-26 17:24:39 +02003766 ieee80211_xmit(sdata, skb, band);
Johannes Berg06500732011-11-04 11:18:16 +01003767 local_bh_enable();
Johannes Berg55de9082012-07-26 17:24:39 +02003768 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003769
3770 *cookie = (unsigned long) skb;
3771 return 0;
3772}
3773
Johannes Berg683b6d32012-11-08 21:25:48 +01003774static int ieee80211_cfg_get_channel(struct wiphy *wiphy,
3775 struct wireless_dev *wdev,
3776 struct cfg80211_chan_def *chandef)
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003777{
Johannes Berg55de9082012-07-26 17:24:39 +02003778 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Felix Fietkaucb601ff2013-02-23 19:02:14 +01003779 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg55de9082012-07-26 17:24:39 +02003780 struct ieee80211_chanctx_conf *chanctx_conf;
Johannes Berg683b6d32012-11-08 21:25:48 +01003781 int ret = -ENODATA;
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003782
Johannes Berg55de9082012-07-26 17:24:39 +02003783 rcu_read_lock();
Johannes Bergfeda3022013-02-28 09:59:22 +01003784 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3785 if (chanctx_conf) {
3786 *chandef = chanctx_conf->def;
3787 ret = 0;
3788 } else if (local->open_count > 0 &&
3789 local->open_count == local->monitors &&
3790 sdata->vif.type == NL80211_IFTYPE_MONITOR) {
3791 if (local->use_chanctx)
3792 *chandef = local->monitor_chandef;
3793 else
Karl Beldan675a0b02013-03-25 16:26:57 +01003794 *chandef = local->_oper_chandef;
Johannes Berg683b6d32012-11-08 21:25:48 +01003795 ret = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02003796 }
3797 rcu_read_unlock();
3798
Johannes Berg683b6d32012-11-08 21:25:48 +01003799 return ret;
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003800}
3801
Johannes Berg6d525632012-04-04 15:05:25 +02003802#ifdef CONFIG_PM
3803static void ieee80211_set_wakeup(struct wiphy *wiphy, bool enabled)
3804{
3805 drv_set_wakeup(wiphy_priv(wiphy), enabled);
3806}
3807#endif
3808
Jiri Bencf0706e82007-05-05 11:45:53 -07003809struct cfg80211_ops mac80211_config_ops = {
3810 .add_virtual_intf = ieee80211_add_iface,
3811 .del_virtual_intf = ieee80211_del_iface,
Johannes Berg42613db2007-09-28 21:52:27 +02003812 .change_virtual_intf = ieee80211_change_iface,
Johannes Bergf142c6b2012-06-18 20:07:15 +02003813 .start_p2p_device = ieee80211_start_p2p_device,
3814 .stop_p2p_device = ieee80211_stop_p2p_device,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01003815 .add_key = ieee80211_add_key,
3816 .del_key = ieee80211_del_key,
Johannes Berg62da92f2007-12-19 02:03:31 +01003817 .get_key = ieee80211_get_key,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01003818 .set_default_key = ieee80211_config_default_key,
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02003819 .set_default_mgmt_key = ieee80211_config_default_mgmt_key,
Johannes Berg88600202012-02-13 15:17:18 +01003820 .start_ap = ieee80211_start_ap,
3821 .change_beacon = ieee80211_change_beacon,
3822 .stop_ap = ieee80211_stop_ap,
Johannes Berg4fd69312007-12-19 02:03:35 +01003823 .add_station = ieee80211_add_station,
3824 .del_station = ieee80211_del_station,
3825 .change_station = ieee80211_change_station,
Johannes Berg7bbdd2d2007-12-19 02:03:37 +01003826 .get_station = ieee80211_get_station,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003827 .dump_station = ieee80211_dump_station,
Holger Schurig12897232010-04-19 10:23:57 +02003828 .dump_survey = ieee80211_dump_survey,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003829#ifdef CONFIG_MAC80211_MESH
3830 .add_mpath = ieee80211_add_mpath,
3831 .del_mpath = ieee80211_del_mpath,
3832 .change_mpath = ieee80211_change_mpath,
3833 .get_mpath = ieee80211_get_mpath,
3834 .dump_mpath = ieee80211_dump_mpath,
Javier Cardona24bdd9f2010-12-16 17:37:48 -08003835 .update_mesh_config = ieee80211_update_mesh_config,
3836 .get_mesh_config = ieee80211_get_mesh_config,
Johannes Berg29cbe682010-12-03 09:20:44 +01003837 .join_mesh = ieee80211_join_mesh,
3838 .leave_mesh = ieee80211_leave_mesh,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003839#endif
Jouni Malinen9f1ba902008-08-07 20:07:01 +03003840 .change_bss = ieee80211_change_bss,
Jouni Malinen31888482008-10-30 16:59:24 +02003841 .set_txq_params = ieee80211_set_txq_params,
Johannes Berge8c9bd52012-06-06 08:18:22 +02003842 .set_monitor_channel = ieee80211_set_monitor_channel,
Bob Copeland665af4f2009-01-19 11:20:53 -05003843 .suspend = ieee80211_suspend,
3844 .resume = ieee80211_resume,
Johannes Berg2a519312009-02-10 21:25:55 +01003845 .scan = ieee80211_scan,
Luciano Coelho79f460c2011-05-11 17:09:36 +03003846 .sched_scan_start = ieee80211_sched_scan_start,
3847 .sched_scan_stop = ieee80211_sched_scan_stop,
Jouni Malinen636a5d32009-03-19 13:39:22 +02003848 .auth = ieee80211_auth,
3849 .assoc = ieee80211_assoc,
3850 .deauth = ieee80211_deauth,
3851 .disassoc = ieee80211_disassoc,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02003852 .join_ibss = ieee80211_join_ibss,
3853 .leave_ibss = ieee80211_leave_ibss,
Antonio Quartulli391e53e2012-11-02 13:27:49 +01003854 .set_mcast_rate = ieee80211_set_mcast_rate,
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02003855 .set_wiphy_params = ieee80211_set_wiphy_params,
Johannes Berg7643a2c2009-06-02 13:01:39 +02003856 .set_tx_power = ieee80211_set_tx_power,
3857 .get_tx_power = ieee80211_get_tx_power,
Johannes Bergab737a42009-07-01 21:26:58 +02003858 .set_wds_peer = ieee80211_set_wds_peer,
Johannes Berg1f87f7d2009-06-02 13:01:41 +02003859 .rfkill_poll = ieee80211_rfkill_poll,
Johannes Bergaff89a92009-07-01 21:26:51 +02003860 CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd)
Wey-Yi Guy71063f02011-05-20 09:05:54 -07003861 CFG80211_TESTMODE_DUMP(ieee80211_testmode_dump)
Johannes Bergbc92afd2009-07-01 21:26:57 +02003862 .set_power_mgmt = ieee80211_set_power_mgmt,
Johannes Berg99303802009-07-01 21:26:59 +02003863 .set_bitrate_mask = ieee80211_set_bitrate_mask,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01003864 .remain_on_channel = ieee80211_remain_on_channel,
3865 .cancel_remain_on_channel = ieee80211_cancel_remain_on_channel,
Johannes Berg2e161f72010-08-12 15:38:38 +02003866 .mgmt_tx = ieee80211_mgmt_tx,
Johannes Bergf30221e2010-11-25 10:02:30 +01003867 .mgmt_tx_cancel_wait = ieee80211_mgmt_tx_cancel_wait,
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02003868 .set_cqm_rssi_config = ieee80211_set_cqm_rssi_config,
Johannes Berg7be50862010-10-13 12:06:24 +02003869 .mgmt_frame_register = ieee80211_mgmt_frame_register,
Bruno Randolf15d96752010-11-10 12:50:56 +09003870 .set_antenna = ieee80211_set_antenna,
3871 .get_antenna = ieee80211_get_antenna,
John W. Linville38c09152011-03-07 16:19:18 -05003872 .set_ringparam = ieee80211_set_ringparam,
3873 .get_ringparam = ieee80211_get_ringparam,
Johannes Bergc68f4b82011-07-05 16:35:41 +02003874 .set_rekey_data = ieee80211_set_rekey_data,
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003875 .tdls_oper = ieee80211_tdls_oper,
3876 .tdls_mgmt = ieee80211_tdls_mgmt,
Johannes Berg06500732011-11-04 11:18:16 +01003877 .probe_client = ieee80211_probe_client,
Simon Wunderlichb53be792011-11-18 14:20:44 +01003878 .set_noack_map = ieee80211_set_noack_map,
Johannes Berg6d525632012-04-04 15:05:25 +02003879#ifdef CONFIG_PM
3880 .set_wakeup = ieee80211_set_wakeup,
3881#endif
Ben Greearb1ab7922012-04-23 12:50:30 -07003882 .get_et_sset_count = ieee80211_get_et_sset_count,
3883 .get_et_stats = ieee80211_get_et_stats,
3884 .get_et_strings = ieee80211_get_et_strings,
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003885 .get_channel = ieee80211_cfg_get_channel,
Simon Wunderlich164eb022013-02-08 18:16:20 +01003886 .start_radar_detection = ieee80211_start_radar_detection,
Simon Wunderlich73da7d52013-07-11 16:09:06 +02003887 .channel_switch = ieee80211_channel_switch,
Jiri Bencf0706e82007-05-05 11:45:53 -07003888};