blob: 03216b0408c763d1db3ee09be9a82503cd87b3e4 [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)) {
76 /*
77 * Prohibit MONITOR_FLAG_COOK_FRAMES to be
78 * changed while the interface is up.
79 * Else we would need to add a lot of cruft
80 * to update everything:
81 * cooked_mntrs, monitor and all fif_* counters
82 * reconfigure hardware
83 */
84 if ((*flags & MONITOR_FLAG_COOK_FRAMES) !=
85 (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES))
86 return -EBUSY;
87
88 ieee80211_adjust_monitor_flags(sdata, -1);
89 sdata->u.mntr_flags = *flags;
90 ieee80211_adjust_monitor_flags(sdata, 1);
91
92 ieee80211_configure_filter(local);
93 } else {
94 /*
95 * Because the interface is down, ieee80211_do_stop
96 * and ieee80211_do_open take care of "everything"
97 * mentioned in the comment above.
98 */
99 sdata->u.mntr_flags = *flags;
100 }
101 }
Felix Fietkauf7917af2010-04-27 00:26:34 +0200102
Johannes Berg42613db2007-09-28 21:52:27 +0200103 return 0;
104}
105
Johannes Bergf142c6b2012-06-18 20:07:15 +0200106static int ieee80211_start_p2p_device(struct wiphy *wiphy,
107 struct wireless_dev *wdev)
108{
109 return ieee80211_do_open(wdev, true);
110}
111
112static void ieee80211_stop_p2p_device(struct wiphy *wiphy,
113 struct wireless_dev *wdev)
114{
115 ieee80211_sdata_stop(IEEE80211_WDEV_TO_SUB_IF(wdev));
116}
117
Simon Wunderlichb53be792011-11-18 14:20:44 +0100118static int ieee80211_set_noack_map(struct wiphy *wiphy,
119 struct net_device *dev,
120 u16 noack_map)
121{
122 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
123
124 sdata->noack_map = noack_map;
125 return 0;
126}
127
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100128static int ieee80211_add_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berge31b8212010-10-05 19:39:30 +0200129 u8 key_idx, bool pairwise, const u8 *mac_addr,
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100130 struct key_params *params)
131{
Johannes Berg26a58452010-08-27 12:35:55 +0200132 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100133 struct sta_info *sta = NULL;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100134 struct ieee80211_key *key;
Johannes Berg3b967662008-04-08 17:56:52 +0200135 int err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100136
Johannes Berg26a58452010-08-27 12:35:55 +0200137 if (!ieee80211_sdata_running(sdata))
Johannes Bergad0e2b52010-06-01 10:19:19 +0200138 return -ENETDOWN;
139
Johannes Berg97359d12010-08-10 09:46:38 +0200140 /* reject WEP and TKIP keys if WEP failed to initialize */
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100141 switch (params->cipher) {
142 case WLAN_CIPHER_SUITE_WEP40:
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100143 case WLAN_CIPHER_SUITE_TKIP:
Johannes Berg97359d12010-08-10 09:46:38 +0200144 case WLAN_CIPHER_SUITE_WEP104:
145 if (IS_ERR(sdata->local->wep_tx_tfm))
146 return -EINVAL;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200147 break;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100148 default:
Johannes Berg97359d12010-08-10 09:46:38 +0200149 break;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100150 }
151
Johannes Berg97359d12010-08-10 09:46:38 +0200152 key = ieee80211_key_alloc(params->cipher, key_idx, params->key_len,
153 params->key, params->seq_len, params->seq);
Ben Hutchings1ac62ba2010-08-01 17:37:03 +0100154 if (IS_ERR(key))
155 return PTR_ERR(key);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100156
Johannes Berge31b8212010-10-05 19:39:30 +0200157 if (pairwise)
158 key->conf.flags |= IEEE80211_KEY_FLAG_PAIRWISE;
159
Johannes Bergad0e2b52010-06-01 10:19:19 +0200160 mutex_lock(&sdata->local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200161
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100162 if (mac_addr) {
Thomas Pedersenff973af2011-05-03 16:57:12 -0700163 if (ieee80211_vif_is_mesh(&sdata->vif))
164 sta = sta_info_get(sdata, mac_addr);
165 else
166 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100167 if (!sta) {
Jouni Malinen32162a42010-07-26 15:52:03 -0700168 ieee80211_key_free(sdata->local, key);
Johannes Berg3b967662008-04-08 17:56:52 +0200169 err = -ENOENT;
170 goto out_unlock;
Johannes Bergdb4d1162008-02-25 16:27:45 +0100171 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100172 }
173
Johannes Berge548c492012-09-04 17:08:23 +0200174 switch (sdata->vif.type) {
175 case NL80211_IFTYPE_STATION:
176 if (sdata->u.mgd.mfp != IEEE80211_MFP_DISABLED)
177 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
178 break;
179 case NL80211_IFTYPE_AP:
180 case NL80211_IFTYPE_AP_VLAN:
181 /* Keys without a station are used for TX only */
182 if (key->sta && test_sta_flag(key->sta, WLAN_STA_MFP))
183 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
184 break;
185 case NL80211_IFTYPE_ADHOC:
186 /* no MFP (yet) */
187 break;
188 case NL80211_IFTYPE_MESH_POINT:
189#ifdef CONFIG_MAC80211_MESH
190 if (sdata->u.mesh.security != IEEE80211_MESH_SEC_NONE)
191 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
192 break;
193#endif
194 case NL80211_IFTYPE_WDS:
195 case NL80211_IFTYPE_MONITOR:
196 case NL80211_IFTYPE_P2P_DEVICE:
197 case NL80211_IFTYPE_UNSPECIFIED:
198 case NUM_NL80211_IFTYPES:
199 case NL80211_IFTYPE_P2P_CLIENT:
200 case NL80211_IFTYPE_P2P_GO:
201 /* shouldn't happen */
202 WARN_ON_ONCE(1);
203 break;
204 }
205
Johannes Berg3ffc2a92010-08-27 14:26:52 +0300206 err = ieee80211_key_link(key, sdata, sta);
207 if (err)
208 ieee80211_key_free(sdata->local, key);
Johannes Bergdb4d1162008-02-25 16:27:45 +0100209
Johannes Berg3b967662008-04-08 17:56:52 +0200210 out_unlock:
Johannes Bergad0e2b52010-06-01 10:19:19 +0200211 mutex_unlock(&sdata->local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200212
213 return err;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100214}
215
216static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berge31b8212010-10-05 19:39:30 +0200217 u8 key_idx, bool pairwise, const u8 *mac_addr)
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100218{
Johannes Berg5c0c3642011-05-12 14:31:49 +0200219 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
220 struct ieee80211_local *local = sdata->local;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100221 struct sta_info *sta;
Johannes Berg5c0c3642011-05-12 14:31:49 +0200222 struct ieee80211_key *key = NULL;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100223 int ret;
224
Johannes Berg5c0c3642011-05-12 14:31:49 +0200225 mutex_lock(&local->sta_mtx);
226 mutex_lock(&local->key_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200227
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100228 if (mac_addr) {
Johannes Berg3b967662008-04-08 17:56:52 +0200229 ret = -ENOENT;
230
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100231 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100232 if (!sta)
Johannes Berg3b967662008-04-08 17:56:52 +0200233 goto out_unlock;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100234
Johannes Berg5c0c3642011-05-12 14:31:49 +0200235 if (pairwise)
Johannes Berg40b275b2011-05-13 14:15:49 +0200236 key = key_mtx_dereference(local, sta->ptk);
Johannes Berg5c0c3642011-05-12 14:31:49 +0200237 else
Johannes Berg40b275b2011-05-13 14:15:49 +0200238 key = key_mtx_dereference(local, sta->gtk[key_idx]);
Johannes Berg5c0c3642011-05-12 14:31:49 +0200239 } else
Johannes Berg40b275b2011-05-13 14:15:49 +0200240 key = key_mtx_dereference(local, sdata->keys[key_idx]);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100241
Johannes Berg5c0c3642011-05-12 14:31:49 +0200242 if (!key) {
Johannes Berg3b967662008-04-08 17:56:52 +0200243 ret = -ENOENT;
244 goto out_unlock;
245 }
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100246
Johannes Berg5c0c3642011-05-12 14:31:49 +0200247 __ieee80211_key_free(key);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100248
Johannes Berg3b967662008-04-08 17:56:52 +0200249 ret = 0;
250 out_unlock:
Johannes Berg5c0c3642011-05-12 14:31:49 +0200251 mutex_unlock(&local->key_mtx);
252 mutex_unlock(&local->sta_mtx);
Johannes Berg3b967662008-04-08 17:56:52 +0200253
254 return ret;
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100255}
256
Johannes Berg62da92f2007-12-19 02:03:31 +0100257static int ieee80211_get_key(struct wiphy *wiphy, struct net_device *dev,
Johannes Berge31b8212010-10-05 19:39:30 +0200258 u8 key_idx, bool pairwise, const u8 *mac_addr,
259 void *cookie,
Johannes Berg62da92f2007-12-19 02:03:31 +0100260 void (*callback)(void *cookie,
261 struct key_params *params))
262{
Johannes Berg14db74b2008-07-29 13:22:52 +0200263 struct ieee80211_sub_if_data *sdata;
Johannes Berg62da92f2007-12-19 02:03:31 +0100264 struct sta_info *sta = NULL;
265 u8 seq[6] = {0};
266 struct key_params params;
Johannes Berge31b8212010-10-05 19:39:30 +0200267 struct ieee80211_key *key = NULL;
Johannes Bergaba83a0b2011-07-06 21:59:39 +0200268 u64 pn64;
Johannes Berg62da92f2007-12-19 02:03:31 +0100269 u32 iv32;
270 u16 iv16;
271 int err = -ENOENT;
272
Johannes Berg14db74b2008-07-29 13:22:52 +0200273 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
274
Johannes Berg3b967662008-04-08 17:56:52 +0200275 rcu_read_lock();
276
Johannes Berg62da92f2007-12-19 02:03:31 +0100277 if (mac_addr) {
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100278 sta = sta_info_get_bss(sdata, mac_addr);
Johannes Berg62da92f2007-12-19 02:03:31 +0100279 if (!sta)
280 goto out;
281
Johannes Berge31b8212010-10-05 19:39:30 +0200282 if (pairwise)
Johannes Berga3836e02011-05-12 15:11:37 +0200283 key = rcu_dereference(sta->ptk);
Johannes Berge31b8212010-10-05 19:39:30 +0200284 else if (key_idx < NUM_DEFAULT_KEYS)
Johannes Berga3836e02011-05-12 15:11:37 +0200285 key = rcu_dereference(sta->gtk[key_idx]);
Johannes Berg62da92f2007-12-19 02:03:31 +0100286 } else
Johannes Berga3836e02011-05-12 15:11:37 +0200287 key = rcu_dereference(sdata->keys[key_idx]);
Johannes Berg62da92f2007-12-19 02:03:31 +0100288
289 if (!key)
290 goto out;
291
292 memset(&params, 0, sizeof(params));
293
Johannes Berg97359d12010-08-10 09:46:38 +0200294 params.cipher = key->conf.cipher;
Johannes Berg62da92f2007-12-19 02:03:31 +0100295
Johannes Berg97359d12010-08-10 09:46:38 +0200296 switch (key->conf.cipher) {
297 case WLAN_CIPHER_SUITE_TKIP:
Harvey Harrisonb0f76b32008-05-14 16:26:19 -0700298 iv32 = key->u.tkip.tx.iv32;
299 iv16 = key->u.tkip.tx.iv16;
Johannes Berg62da92f2007-12-19 02:03:31 +0100300
Johannes Berg24487982009-04-23 18:52:52 +0200301 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
302 drv_get_tkip_seq(sdata->local,
303 key->conf.hw_key_idx,
304 &iv32, &iv16);
Johannes Berg62da92f2007-12-19 02:03:31 +0100305
306 seq[0] = iv16 & 0xff;
307 seq[1] = (iv16 >> 8) & 0xff;
308 seq[2] = iv32 & 0xff;
309 seq[3] = (iv32 >> 8) & 0xff;
310 seq[4] = (iv32 >> 16) & 0xff;
311 seq[5] = (iv32 >> 24) & 0xff;
312 params.seq = seq;
313 params.seq_len = 6;
314 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200315 case WLAN_CIPHER_SUITE_CCMP:
Johannes Bergaba83a0b2011-07-06 21:59:39 +0200316 pn64 = atomic64_read(&key->u.ccmp.tx_pn);
317 seq[0] = pn64;
318 seq[1] = pn64 >> 8;
319 seq[2] = pn64 >> 16;
320 seq[3] = pn64 >> 24;
321 seq[4] = pn64 >> 32;
322 seq[5] = pn64 >> 40;
Johannes Berg62da92f2007-12-19 02:03:31 +0100323 params.seq = seq;
324 params.seq_len = 6;
325 break;
Johannes Berg97359d12010-08-10 09:46:38 +0200326 case WLAN_CIPHER_SUITE_AES_CMAC:
Johannes Berg75396ae2011-07-06 22:00:35 +0200327 pn64 = atomic64_read(&key->u.aes_cmac.tx_pn);
328 seq[0] = pn64;
329 seq[1] = pn64 >> 8;
330 seq[2] = pn64 >> 16;
331 seq[3] = pn64 >> 24;
332 seq[4] = pn64 >> 32;
333 seq[5] = pn64 >> 40;
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200334 params.seq = seq;
335 params.seq_len = 6;
336 break;
Johannes Berg62da92f2007-12-19 02:03:31 +0100337 }
338
339 params.key = key->conf.key;
340 params.key_len = key->conf.keylen;
341
342 callback(cookie, &params);
343 err = 0;
344
345 out:
Johannes Berg3b967662008-04-08 17:56:52 +0200346 rcu_read_unlock();
Johannes Berg62da92f2007-12-19 02:03:31 +0100347 return err;
348}
349
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100350static int ieee80211_config_default_key(struct wiphy *wiphy,
351 struct net_device *dev,
Johannes Bergdbd2fd62010-12-09 19:58:59 +0100352 u8 key_idx, bool uni,
353 bool multi)
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100354{
Johannes Bergad0e2b52010-06-01 10:19:19 +0200355 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100356
Johannes Bergf7e01042010-12-09 19:49:02 +0100357 ieee80211_set_default_key(sdata, key_idx, uni, multi);
Johannes Berge8cbb4c2007-12-19 02:03:30 +0100358
359 return 0;
360}
361
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200362static int ieee80211_config_default_mgmt_key(struct wiphy *wiphy,
363 struct net_device *dev,
364 u8 key_idx)
365{
Johannes Berg66c52422010-07-22 13:58:51 +0200366 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200367
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200368 ieee80211_set_default_mgmt_key(sdata, key_idx);
369
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +0200370 return 0;
371}
372
Felix Fietkau3af63342011-02-27 22:08:01 +0100373static void rate_idx_to_bitrate(struct rate_info *rate, struct sta_info *sta, int idx)
374{
Johannes Berg55de9082012-07-26 17:24:39 +0200375 enum ieee80211_band band = ieee80211_get_sdata_band(sta->sdata);
376
Felix Fietkau3af63342011-02-27 22:08:01 +0100377 if (!(rate->flags & RATE_INFO_FLAGS_MCS)) {
378 struct ieee80211_supported_band *sband;
Johannes Berg55de9082012-07-26 17:24:39 +0200379 sband = sta->local->hw.wiphy->bands[band];
Felix Fietkau3af63342011-02-27 22:08:01 +0100380 rate->legacy = sband->bitrates[idx].bitrate;
381 } else
382 rate->mcs = idx;
383}
384
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800385void sta_set_rate_info_tx(struct sta_info *sta,
386 const struct ieee80211_tx_rate *rate,
387 struct rate_info *rinfo)
388{
389 rinfo->flags = 0;
390 if (rate->flags & IEEE80211_TX_RC_MCS)
391 rinfo->flags |= RATE_INFO_FLAGS_MCS;
392 if (rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
393 rinfo->flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
394 if (rate->flags & IEEE80211_TX_RC_SHORT_GI)
395 rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
396 rate_idx_to_bitrate(rinfo, sta, rate->idx);
397}
398
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100399static void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo)
400{
Johannes Bergd0709a62008-02-25 16:27:46 +0100401 struct ieee80211_sub_if_data *sdata = sta->sdata;
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300402 struct ieee80211_local *local = sdata->local;
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530403 struct timespec uptime;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100404
Johannes Bergf5ea9122009-08-07 16:17:38 +0200405 sinfo->generation = sdata->local->sta_generation;
406
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100407 sinfo->filled = STATION_INFO_INACTIVE_TIME |
408 STATION_INFO_RX_BYTES |
Henning Rogge420e7fa2008-12-11 22:04:19 +0100409 STATION_INFO_TX_BYTES |
Jouni Malinen98c8a60a2009-02-17 13:24:57 +0200410 STATION_INFO_RX_PACKETS |
411 STATION_INFO_TX_PACKETS |
Bruno Randolfb206b4e2010-10-06 18:34:12 +0900412 STATION_INFO_TX_RETRIES |
413 STATION_INFO_TX_FAILED |
Ben Greear5a5c7312010-10-07 16:39:20 -0700414 STATION_INFO_TX_BITRATE |
Felix Fietkau3af63342011-02-27 22:08:01 +0100415 STATION_INFO_RX_BITRATE |
Paul Stewartf4263c92011-03-31 09:25:41 -0700416 STATION_INFO_RX_DROP_MISC |
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530417 STATION_INFO_BSS_PARAM |
Helmut Schaa7a724762011-10-13 16:30:40 +0200418 STATION_INFO_CONNECTED_TIME |
Paul Stewarta85e1d52011-12-09 11:01:49 -0800419 STATION_INFO_STA_FLAGS |
420 STATION_INFO_BEACON_LOSS_COUNT;
Mohammed Shafi Shajakhanebe27c92011-04-08 21:24:24 +0530421
422 do_posix_clock_monotonic_gettime(&uptime);
423 sinfo->connected_time = uptime.tv_sec - sta->last_connected;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100424
425 sinfo->inactive_time = jiffies_to_msecs(jiffies - sta->last_rx);
426 sinfo->rx_bytes = sta->rx_bytes;
427 sinfo->tx_bytes = sta->tx_bytes;
Jouni Malinen98c8a60a2009-02-17 13:24:57 +0200428 sinfo->rx_packets = sta->rx_packets;
429 sinfo->tx_packets = sta->tx_packets;
Bruno Randolfb206b4e2010-10-06 18:34:12 +0900430 sinfo->tx_retries = sta->tx_retry_count;
431 sinfo->tx_failed = sta->tx_retry_failed;
Ben Greear5a5c7312010-10-07 16:39:20 -0700432 sinfo->rx_dropped_misc = sta->rx_dropped;
Paul Stewarta85e1d52011-12-09 11:01:49 -0800433 sinfo->beacon_loss_count = sta->beacon_loss_count;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100434
John W. Linville19deffb2009-12-08 17:10:13 -0500435 if ((sta->local->hw.flags & IEEE80211_HW_SIGNAL_DBM) ||
436 (sta->local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC)) {
Bruno Randolf541a45a2010-12-02 19:12:43 +0900437 sinfo->filled |= STATION_INFO_SIGNAL | STATION_INFO_SIGNAL_AVG;
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300438 if (!local->ops->get_rssi ||
439 drv_get_rssi(local, sdata, &sta->sta, &sinfo->signal))
440 sinfo->signal = (s8)sta->last_signal;
Bruno Randolf541a45a2010-12-02 19:12:43 +0900441 sinfo->signal_avg = (s8) -ewma_read(&sta->avg_signal);
Henning Rogge420e7fa2008-12-11 22:04:19 +0100442 }
443
Thomas Pedersen6b62bf32012-03-05 15:31:48 -0800444 sta_set_rate_info_tx(sta, &sta->last_tx_rate, &sinfo->txrate);
Henning Rogge420e7fa2008-12-11 22:04:19 +0100445
Felix Fietkau3af63342011-02-27 22:08:01 +0100446 sinfo->rxrate.flags = 0;
447 if (sta->last_rx_rate_flag & RX_FLAG_HT)
448 sinfo->rxrate.flags |= RATE_INFO_FLAGS_MCS;
449 if (sta->last_rx_rate_flag & RX_FLAG_40MHZ)
450 sinfo->rxrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
451 if (sta->last_rx_rate_flag & RX_FLAG_SHORT_GI)
452 sinfo->rxrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
453 rate_idx_to_bitrate(&sinfo->rxrate, sta, sta->last_rx_rate_idx);
Henning Rogge420e7fa2008-12-11 22:04:19 +0100454
Johannes Berg902acc72008-02-23 15:17:19 +0100455 if (ieee80211_vif_is_mesh(&sdata->vif)) {
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100456#ifdef CONFIG_MAC80211_MESH
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100457 sinfo->filled |= STATION_INFO_LLID |
458 STATION_INFO_PLID |
459 STATION_INFO_PLINK_STATE;
460
461 sinfo->llid = le16_to_cpu(sta->llid);
462 sinfo->plid = le16_to_cpu(sta->plid);
463 sinfo->plink_state = sta->plink_state;
Javier Cardonad299a1f2012-03-31 11:31:33 -0700464 if (test_sta_flag(sta, WLAN_STA_TOFFSET_KNOWN)) {
465 sinfo->filled |= STATION_INFO_T_OFFSET;
466 sinfo->t_offset = sta->t_offset;
467 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100468#endif
Johannes Berg902acc72008-02-23 15:17:19 +0100469 }
Paul Stewartf4263c92011-03-31 09:25:41 -0700470
471 sinfo->bss_param.flags = 0;
472 if (sdata->vif.bss_conf.use_cts_prot)
473 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_CTS_PROT;
474 if (sdata->vif.bss_conf.use_short_preamble)
475 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_PREAMBLE;
476 if (sdata->vif.bss_conf.use_short_slot)
477 sinfo->bss_param.flags |= BSS_PARAM_FLAGS_SHORT_SLOT_TIME;
478 sinfo->bss_param.dtim_period = sdata->local->hw.conf.ps_dtim_period;
479 sinfo->bss_param.beacon_interval = sdata->vif.bss_conf.beacon_int;
Helmut Schaa7a724762011-10-13 16:30:40 +0200480
481 sinfo->sta_flags.set = 0;
482 sinfo->sta_flags.mask = BIT(NL80211_STA_FLAG_AUTHORIZED) |
483 BIT(NL80211_STA_FLAG_SHORT_PREAMBLE) |
484 BIT(NL80211_STA_FLAG_WME) |
485 BIT(NL80211_STA_FLAG_MFP) |
Helmut Schaae4121562011-11-05 14:15:24 +0100486 BIT(NL80211_STA_FLAG_AUTHENTICATED) |
487 BIT(NL80211_STA_FLAG_TDLS_PEER);
Helmut Schaa7a724762011-10-13 16:30:40 +0200488 if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
489 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_AUTHORIZED);
490 if (test_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE))
491 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_SHORT_PREAMBLE);
492 if (test_sta_flag(sta, WLAN_STA_WME))
493 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_WME);
494 if (test_sta_flag(sta, WLAN_STA_MFP))
495 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_MFP);
496 if (test_sta_flag(sta, WLAN_STA_AUTH))
497 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_AUTHENTICATED);
Helmut Schaae4121562011-11-05 14:15:24 +0100498 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER))
499 sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_TDLS_PEER);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100500}
501
Ben Greearb1ab7922012-04-23 12:50:30 -0700502static const char ieee80211_gstrings_sta_stats[][ETH_GSTRING_LEN] = {
503 "rx_packets", "rx_bytes", "wep_weak_iv_count",
504 "rx_duplicates", "rx_fragments", "rx_dropped",
505 "tx_packets", "tx_bytes", "tx_fragments",
506 "tx_filtered", "tx_retry_failed", "tx_retries",
Ben Greear3073a7c2012-04-23 12:50:32 -0700507 "beacon_loss", "sta_state", "txrate", "rxrate", "signal",
508 "channel", "noise", "ch_time", "ch_time_busy",
509 "ch_time_ext_busy", "ch_time_rx", "ch_time_tx"
Ben Greearb1ab7922012-04-23 12:50:30 -0700510};
511#define STA_STATS_LEN ARRAY_SIZE(ieee80211_gstrings_sta_stats)
512
513static int ieee80211_get_et_sset_count(struct wiphy *wiphy,
514 struct net_device *dev,
515 int sset)
516{
Ben Greeare3521142012-04-23 12:50:31 -0700517 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
518 int rv = 0;
Ben Greearb1ab7922012-04-23 12:50:30 -0700519
Ben Greeare3521142012-04-23 12:50:31 -0700520 if (sset == ETH_SS_STATS)
521 rv += STA_STATS_LEN;
522
523 rv += drv_get_et_sset_count(sdata, sset);
524
525 if (rv == 0)
526 return -EOPNOTSUPP;
527 return rv;
Ben Greearb1ab7922012-04-23 12:50:30 -0700528}
529
530static void ieee80211_get_et_stats(struct wiphy *wiphy,
531 struct net_device *dev,
532 struct ethtool_stats *stats,
533 u64 *data)
534{
535 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg55de9082012-07-26 17:24:39 +0200536 struct ieee80211_chanctx_conf *chanctx_conf;
537 struct ieee80211_channel *channel;
Ben Greearb1ab7922012-04-23 12:50:30 -0700538 struct sta_info *sta;
539 struct ieee80211_local *local = sdata->local;
Ben Greear3073a7c2012-04-23 12:50:32 -0700540 struct station_info sinfo;
541 struct survey_info survey;
542 int i, q;
543#define STA_STATS_SURVEY_LEN 7
Ben Greearb1ab7922012-04-23 12:50:30 -0700544
545 memset(data, 0, sizeof(u64) * STA_STATS_LEN);
546
547#define ADD_STA_STATS(sta) \
548 do { \
549 data[i++] += sta->rx_packets; \
550 data[i++] += sta->rx_bytes; \
551 data[i++] += sta->wep_weak_iv_count; \
552 data[i++] += sta->num_duplicates; \
553 data[i++] += sta->rx_fragments; \
554 data[i++] += sta->rx_dropped; \
555 \
556 data[i++] += sta->tx_packets; \
557 data[i++] += sta->tx_bytes; \
558 data[i++] += sta->tx_fragments; \
559 data[i++] += sta->tx_filtered_count; \
560 data[i++] += sta->tx_retry_failed; \
561 data[i++] += sta->tx_retry_count; \
562 data[i++] += sta->beacon_loss_count; \
563 } while (0)
564
565 /* For Managed stations, find the single station based on BSSID
566 * and use that. For interface types, iterate through all available
567 * stations and add stats for any station that is assigned to this
568 * network device.
569 */
570
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300571 mutex_lock(&local->sta_mtx);
Ben Greearb1ab7922012-04-23 12:50:30 -0700572
573 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
574 sta = sta_info_get_bss(sdata, sdata->u.mgd.bssid);
Ben Greear3073a7c2012-04-23 12:50:32 -0700575
576 if (!(sta && !WARN_ON(sta->sdata->dev != dev)))
577 goto do_survey;
578
579 i = 0;
580 ADD_STA_STATS(sta);
581
582 data[i++] = sta->sta_state;
583
584 sinfo.filled = 0;
585 sta_set_sinfo(sta, &sinfo);
586
Joe Perches52042672012-05-30 13:25:54 -0700587 if (sinfo.filled & STATION_INFO_TX_BITRATE)
Ben Greear3073a7c2012-04-23 12:50:32 -0700588 data[i] = 100000 *
589 cfg80211_calculate_bitrate(&sinfo.txrate);
590 i++;
Joe Perches52042672012-05-30 13:25:54 -0700591 if (sinfo.filled & STATION_INFO_RX_BITRATE)
Ben Greear3073a7c2012-04-23 12:50:32 -0700592 data[i] = 100000 *
593 cfg80211_calculate_bitrate(&sinfo.rxrate);
594 i++;
595
Joe Perches52042672012-05-30 13:25:54 -0700596 if (sinfo.filled & STATION_INFO_SIGNAL_AVG)
Ben Greear3073a7c2012-04-23 12:50:32 -0700597 data[i] = (u8)sinfo.signal_avg;
598 i++;
Ben Greearb1ab7922012-04-23 12:50:30 -0700599 } else {
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300600 list_for_each_entry(sta, &local->sta_list, list) {
Ben Greearb1ab7922012-04-23 12:50:30 -0700601 /* Make sure this station belongs to the proper dev */
602 if (sta->sdata->dev != dev)
603 continue;
604
605 i = 0;
606 ADD_STA_STATS(sta);
Ben Greearb1ab7922012-04-23 12:50:30 -0700607 }
608 }
609
Ben Greear3073a7c2012-04-23 12:50:32 -0700610do_survey:
611 i = STA_STATS_LEN - STA_STATS_SURVEY_LEN;
612 /* Get survey stats for current channel */
Johannes Berg55de9082012-07-26 17:24:39 +0200613 survey.filled = 0;
Ben Greear3073a7c2012-04-23 12:50:32 -0700614
Johannes Berg55de9082012-07-26 17:24:39 +0200615 rcu_read_lock();
616 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
617 if (chanctx_conf)
618 channel = chanctx_conf->channel;
619 else
620 channel = NULL;
621 rcu_read_unlock();
622
623 if (channel) {
624 q = 0;
625 do {
626 survey.filled = 0;
627 if (drv_get_survey(local, q, &survey) != 0) {
628 survey.filled = 0;
629 break;
630 }
631 q++;
632 } while (channel != survey.channel);
Ben Greear3073a7c2012-04-23 12:50:32 -0700633 }
634
635 if (survey.filled)
636 data[i++] = survey.channel->center_freq;
637 else
638 data[i++] = 0;
639 if (survey.filled & SURVEY_INFO_NOISE_DBM)
640 data[i++] = (u8)survey.noise;
641 else
642 data[i++] = -1LL;
643 if (survey.filled & SURVEY_INFO_CHANNEL_TIME)
644 data[i++] = survey.channel_time;
645 else
646 data[i++] = -1LL;
647 if (survey.filled & SURVEY_INFO_CHANNEL_TIME_BUSY)
648 data[i++] = survey.channel_time_busy;
649 else
650 data[i++] = -1LL;
651 if (survey.filled & SURVEY_INFO_CHANNEL_TIME_EXT_BUSY)
652 data[i++] = survey.channel_time_ext_busy;
653 else
654 data[i++] = -1LL;
655 if (survey.filled & SURVEY_INFO_CHANNEL_TIME_RX)
656 data[i++] = survey.channel_time_rx;
657 else
658 data[i++] = -1LL;
659 if (survey.filled & SURVEY_INFO_CHANNEL_TIME_TX)
660 data[i++] = survey.channel_time_tx;
661 else
662 data[i++] = -1LL;
663
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300664 mutex_unlock(&local->sta_mtx);
Ben Greeare3521142012-04-23 12:50:31 -0700665
Ben Greear3073a7c2012-04-23 12:50:32 -0700666 if (WARN_ON(i != STA_STATS_LEN))
667 return;
668
Ben Greeare3521142012-04-23 12:50:31 -0700669 drv_get_et_stats(sdata, stats, &(data[STA_STATS_LEN]));
Ben Greearb1ab7922012-04-23 12:50:30 -0700670}
671
672static void ieee80211_get_et_strings(struct wiphy *wiphy,
673 struct net_device *dev,
674 u32 sset, u8 *data)
675{
Ben Greeare3521142012-04-23 12:50:31 -0700676 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
677 int sz_sta_stats = 0;
678
Ben Greearb1ab7922012-04-23 12:50:30 -0700679 if (sset == ETH_SS_STATS) {
Ben Greeare3521142012-04-23 12:50:31 -0700680 sz_sta_stats = sizeof(ieee80211_gstrings_sta_stats);
Ben Greearb1ab7922012-04-23 12:50:30 -0700681 memcpy(data, *ieee80211_gstrings_sta_stats, sz_sta_stats);
682 }
Ben Greeare3521142012-04-23 12:50:31 -0700683 drv_get_et_strings(sdata, sset, &(data[sz_sta_stats]));
Ben Greearb1ab7922012-04-23 12:50:30 -0700684}
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100685
686static int ieee80211_dump_station(struct wiphy *wiphy, struct net_device *dev,
687 int idx, u8 *mac, struct station_info *sinfo)
688{
Johannes Berg3b53fde82009-11-16 12:00:37 +0100689 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300690 struct ieee80211_local *local = sdata->local;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100691 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100692 int ret = -ENOENT;
693
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300694 mutex_lock(&local->sta_mtx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100695
Johannes Berg3b53fde82009-11-16 12:00:37 +0100696 sta = sta_info_get_by_idx(sdata, idx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100697 if (sta) {
698 ret = 0;
Johannes Berg17741cd2008-09-11 00:02:02 +0200699 memcpy(mac, sta->sta.addr, ETH_ALEN);
Johannes Bergd0709a62008-02-25 16:27:46 +0100700 sta_set_sinfo(sta, sinfo);
701 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100702
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300703 mutex_unlock(&local->sta_mtx);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100704
Johannes Bergd0709a62008-02-25 16:27:46 +0100705 return ret;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +0100706}
707
Holger Schurig12897232010-04-19 10:23:57 +0200708static int ieee80211_dump_survey(struct wiphy *wiphy, struct net_device *dev,
709 int idx, struct survey_info *survey)
710{
711 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
712
Holger Schurig12897232010-04-19 10:23:57 +0200713 return drv_get_survey(local, idx, survey);
714}
715
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100716static int ieee80211_get_station(struct wiphy *wiphy, struct net_device *dev,
Luis Carlos Cobo2ec600d2008-02-23 15:17:06 +0100717 u8 *mac, struct station_info *sinfo)
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100718{
Johannes Bergabe60632009-11-25 17:46:18 +0100719 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300720 struct ieee80211_local *local = sdata->local;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100721 struct sta_info *sta;
Johannes Bergd0709a62008-02-25 16:27:46 +0100722 int ret = -ENOENT;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100723
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300724 mutex_lock(&local->sta_mtx);
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100725
Felix Fietkau0e5ded52010-01-08 18:10:58 +0100726 sta = sta_info_get_bss(sdata, mac);
Johannes Bergd0709a62008-02-25 16:27:46 +0100727 if (sta) {
728 ret = 0;
729 sta_set_sinfo(sta, sinfo);
730 }
731
Victor Goldenshtein66572cf2012-06-21 10:56:46 +0300732 mutex_unlock(&local->sta_mtx);
Johannes Bergd0709a62008-02-25 16:27:46 +0100733
734 return ret;
Johannes Berg7bbdd2d2007-12-19 02:03:37 +0100735}
736
Johannes Berge8c9bd52012-06-06 08:18:22 +0200737static int ieee80211_set_monitor_channel(struct wiphy *wiphy,
738 struct ieee80211_channel *chan,
739 enum nl80211_channel_type channel_type)
740{
Johannes Berg55de9082012-07-26 17:24:39 +0200741 struct ieee80211_local *local = wiphy_priv(wiphy);
742 struct ieee80211_sub_if_data *sdata;
743 int ret = 0;
744
745 if (local->monitor_channel == chan &&
746 local->monitor_channel_type == channel_type)
747 return 0;
748
749 mutex_lock(&local->iflist_mtx);
750 if (local->use_chanctx) {
751 sdata = rcu_dereference_protected(
752 local->monitor_sdata,
753 lockdep_is_held(&local->iflist_mtx));
754 if (sdata) {
755 ieee80211_vif_release_channel(sdata);
756 ret = ieee80211_vif_use_channel(
757 sdata, chan, channel_type,
758 IEEE80211_CHANCTX_EXCLUSIVE);
759 }
760 } else if (local->open_count == local->monitors) {
761 local->_oper_channel = chan;
762 local->_oper_channel_type = channel_type;
763 ieee80211_hw_config(local, 0);
764 }
765
766 if (ret == 0) {
767 local->monitor_channel = chan;
768 local->monitor_channel_type = channel_type;
769 }
770 mutex_unlock(&local->iflist_mtx);
771
772 return ret;
Johannes Berge8c9bd52012-06-06 08:18:22 +0200773}
774
Arik Nemtsov02945822011-11-10 11:28:57 +0200775static int ieee80211_set_probe_resp(struct ieee80211_sub_if_data *sdata,
Johannes Berg88600202012-02-13 15:17:18 +0100776 const u8 *resp, size_t resp_len)
Arik Nemtsov02945822011-11-10 11:28:57 +0200777{
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300778 struct probe_resp *new, *old;
Arik Nemtsov02945822011-11-10 11:28:57 +0200779
780 if (!resp || !resp_len)
Sujith Manoharanaba4e6f2012-08-22 14:21:07 +0530781 return 1;
Arik Nemtsov02945822011-11-10 11:28:57 +0200782
Arik Nemtsovf7248282011-11-19 10:51:26 +0200783 old = rtnl_dereference(sdata->u.ap.probe_resp);
Arik Nemtsov02945822011-11-10 11:28:57 +0200784
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300785 new = kzalloc(sizeof(struct probe_resp) + resp_len, GFP_KERNEL);
Arik Nemtsov02945822011-11-10 11:28:57 +0200786 if (!new)
787 return -ENOMEM;
788
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300789 new->len = resp_len;
790 memcpy(new->data, resp, resp_len);
Arik Nemtsov02945822011-11-10 11:28:57 +0200791
792 rcu_assign_pointer(sdata->u.ap.probe_resp, new);
Eyal Shapiraaa7a0082012-08-06 14:26:16 +0300793 if (old)
794 kfree_rcu(old, rcu_head);
Arik Nemtsov02945822011-11-10 11:28:57 +0200795
796 return 0;
797}
798
Johannes Berg88600202012-02-13 15:17:18 +0100799static int ieee80211_assign_beacon(struct ieee80211_sub_if_data *sdata,
800 struct cfg80211_beacon_data *params)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100801{
802 struct beacon_data *new, *old;
803 int new_head_len, new_tail_len;
Johannes Berg88600202012-02-13 15:17:18 +0100804 int size, err;
805 u32 changed = BSS_CHANGED_BEACON;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100806
Johannes Berg40b275b2011-05-13 14:15:49 +0200807 old = rtnl_dereference(sdata->u.ap.beacon);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100808
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100809 /* Need to have a beacon head if we don't have one yet */
810 if (!params->head && !old)
Johannes Berg88600202012-02-13 15:17:18 +0100811 return -EINVAL;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100812
813 /* new or old head? */
814 if (params->head)
815 new_head_len = params->head_len;
816 else
817 new_head_len = old->head_len;
818
819 /* new or old tail? */
820 if (params->tail || !old)
821 /* params->tail_len will be zero for !params->tail */
822 new_tail_len = params->tail_len;
823 else
824 new_tail_len = old->tail_len;
825
826 size = sizeof(*new) + new_head_len + new_tail_len;
827
828 new = kzalloc(size, GFP_KERNEL);
829 if (!new)
830 return -ENOMEM;
831
832 /* start filling the new info now */
833
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100834 /*
835 * pointers go into the block we allocated,
836 * memory is | beacon_data | head | tail |
837 */
838 new->head = ((u8 *) new) + sizeof(*new);
839 new->tail = new->head + new_head_len;
840 new->head_len = new_head_len;
841 new->tail_len = new_tail_len;
842
843 /* copy in head */
844 if (params->head)
845 memcpy(new->head, params->head, new_head_len);
846 else
847 memcpy(new->head, old->head, new_head_len);
848
849 /* copy in optional tail */
850 if (params->tail)
851 memcpy(new->tail, params->tail, new_tail_len);
852 else
853 if (old)
854 memcpy(new->tail, old->tail, new_tail_len);
855
Johannes Berg88600202012-02-13 15:17:18 +0100856 err = ieee80211_set_probe_resp(sdata, params->probe_resp,
857 params->probe_resp_len);
858 if (err < 0)
859 return err;
860 if (err == 0)
861 changed |= BSS_CHANGED_AP_PROBE_RESP;
Johannes Berg19885c42010-02-05 11:45:06 +0100862
Eric Dumazetcf778b02012-01-12 04:41:32 +0000863 rcu_assign_pointer(sdata->u.ap.beacon, new);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100864
Johannes Berg88600202012-02-13 15:17:18 +0100865 if (old)
866 kfree_rcu(old, rcu_head);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100867
Johannes Berg88600202012-02-13 15:17:18 +0100868 return changed;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100869}
870
Johannes Berg88600202012-02-13 15:17:18 +0100871static int ieee80211_start_ap(struct wiphy *wiphy, struct net_device *dev,
872 struct cfg80211_ap_settings *params)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100873{
Johannes Berg88600202012-02-13 15:17:18 +0100874 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100875 struct beacon_data *old;
Johannes Berg665c93a2011-11-04 11:18:11 +0100876 struct ieee80211_sub_if_data *vlan;
Johannes Berg88600202012-02-13 15:17:18 +0100877 u32 changed = BSS_CHANGED_BEACON_INT |
878 BSS_CHANGED_BEACON_ENABLED |
879 BSS_CHANGED_BEACON |
880 BSS_CHANGED_SSID;
881 int err;
Johannes Berg14db74b2008-07-29 13:22:52 +0200882
Johannes Berg40b275b2011-05-13 14:15:49 +0200883 old = rtnl_dereference(sdata->u.ap.beacon);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100884 if (old)
885 return -EALREADY;
886
Johannes Berg04ecd252012-09-11 14:34:12 +0200887 /* TODO: make hostapd tell us what it wants */
888 sdata->smps_mode = IEEE80211_SMPS_OFF;
889 sdata->needed_rx_chains = sdata->local->rx_chains;
890
Johannes Berg55de9082012-07-26 17:24:39 +0200891 err = ieee80211_vif_use_channel(sdata, params->channel,
892 params->channel_type,
893 IEEE80211_CHANCTX_SHARED);
Johannes Bergaa430da2012-05-16 23:50:18 +0200894 if (err)
895 return err;
896
Johannes Berg665c93a2011-11-04 11:18:11 +0100897 /*
898 * Apply control port protocol, this allows us to
899 * not encrypt dynamic WEP control frames.
900 */
901 sdata->control_port_protocol = params->crypto.control_port_ethertype;
902 sdata->control_port_no_encrypt = params->crypto.control_port_no_encrypt;
903 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list) {
904 vlan->control_port_protocol =
905 params->crypto.control_port_ethertype;
906 vlan->control_port_no_encrypt =
907 params->crypto.control_port_no_encrypt;
908 }
909
Johannes Berg88600202012-02-13 15:17:18 +0100910 sdata->vif.bss_conf.beacon_int = params->beacon_interval;
911 sdata->vif.bss_conf.dtim_period = params->dtim_period;
912
913 sdata->vif.bss_conf.ssid_len = params->ssid_len;
914 if (params->ssid_len)
915 memcpy(sdata->vif.bss_conf.ssid, params->ssid,
916 params->ssid_len);
917 sdata->vif.bss_conf.hidden_ssid =
918 (params->hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE);
919
920 err = ieee80211_assign_beacon(sdata, &params->beacon);
921 if (err < 0)
922 return err;
923 changed |= err;
924
925 ieee80211_bss_info_change_notify(sdata, changed);
926
Johannes Berg3edaf3e2012-04-03 10:24:00 +0200927 netif_carrier_on(dev);
928 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
929 netif_carrier_on(vlan->dev);
930
Johannes Berg665c93a2011-11-04 11:18:11 +0100931 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100932}
933
Johannes Berg88600202012-02-13 15:17:18 +0100934static int ieee80211_change_beacon(struct wiphy *wiphy, struct net_device *dev,
935 struct cfg80211_beacon_data *params)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100936{
Johannes Berg14db74b2008-07-29 13:22:52 +0200937 struct ieee80211_sub_if_data *sdata;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100938 struct beacon_data *old;
Johannes Berg88600202012-02-13 15:17:18 +0100939 int err;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100940
Johannes Berg14db74b2008-07-29 13:22:52 +0200941 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
942
Johannes Berg40b275b2011-05-13 14:15:49 +0200943 old = rtnl_dereference(sdata->u.ap.beacon);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100944 if (!old)
945 return -ENOENT;
946
Johannes Berg88600202012-02-13 15:17:18 +0100947 err = ieee80211_assign_beacon(sdata, params);
948 if (err < 0)
949 return err;
950 ieee80211_bss_info_change_notify(sdata, err);
951 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100952}
953
Johannes Berg88600202012-02-13 15:17:18 +0100954static int ieee80211_stop_ap(struct wiphy *wiphy, struct net_device *dev)
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100955{
Johannes Berg3edaf3e2012-04-03 10:24:00 +0200956 struct ieee80211_sub_if_data *sdata, *vlan;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100957 struct beacon_data *old;
958
Johannes Berg14db74b2008-07-29 13:22:52 +0200959 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
960
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 -ENOENT;
964
Johannes Berg3edaf3e2012-04-03 10:24:00 +0200965 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
966 netif_carrier_off(vlan->dev);
967 netif_carrier_off(dev);
968
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000969 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
Johannes Berg88600202012-02-13 15:17:18 +0100970
971 kfree_rcu(old, rcu_head);
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100972
Eliad Peller99102bd2012-07-18 15:36:04 +0300973 sta_info_flush(sdata->local, sdata);
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200974 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
Johannes Berg88600202012-02-13 15:17:18 +0100975
Johannes Berg55de9082012-07-26 17:24:39 +0200976 ieee80211_vif_release_channel(sdata);
977
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200978 return 0;
Johannes Berg5dfdaf52007-12-19 02:03:33 +0100979}
980
Johannes Berg4fd69312007-12-19 02:03:35 +0100981/* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */
982struct iapp_layer2_update {
983 u8 da[ETH_ALEN]; /* broadcast */
984 u8 sa[ETH_ALEN]; /* STA addr */
985 __be16 len; /* 6 */
986 u8 dsap; /* 0 */
987 u8 ssap; /* 0 */
988 u8 control;
989 u8 xid_info[3];
Eric Dumazetbc105022010-06-03 03:21:52 -0700990} __packed;
Johannes Berg4fd69312007-12-19 02:03:35 +0100991
992static void ieee80211_send_layer2_update(struct sta_info *sta)
993{
994 struct iapp_layer2_update *msg;
995 struct sk_buff *skb;
996
997 /* Send Level 2 Update Frame to update forwarding tables in layer 2
998 * bridge devices */
999
1000 skb = dev_alloc_skb(sizeof(*msg));
1001 if (!skb)
1002 return;
1003 msg = (struct iapp_layer2_update *)skb_put(skb, sizeof(*msg));
1004
1005 /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID)
1006 * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */
1007
Johannes Berge83e6542012-07-13 16:23:07 +02001008 eth_broadcast_addr(msg->da);
Johannes Berg17741cd2008-09-11 00:02:02 +02001009 memcpy(msg->sa, sta->sta.addr, ETH_ALEN);
Johannes Berg4fd69312007-12-19 02:03:35 +01001010 msg->len = htons(6);
1011 msg->dsap = 0;
1012 msg->ssap = 0x01; /* NULL LSAP, CR Bit: Response */
1013 msg->control = 0xaf; /* XID response lsb.1111F101.
1014 * F=0 (no poll command; unsolicited frame) */
1015 msg->xid_info[0] = 0x81; /* XID format identifier */
1016 msg->xid_info[1] = 1; /* LLC types/classes: Type 1 LLC */
1017 msg->xid_info[2] = 0; /* XID sender's receive window size (RW) */
1018
Johannes Bergd0709a62008-02-25 16:27:46 +01001019 skb->dev = sta->sdata->dev;
1020 skb->protocol = eth_type_trans(skb, sta->sdata->dev);
Johannes Berg4fd69312007-12-19 02:03:35 +01001021 memset(skb->cb, 0, sizeof(skb->cb));
John W. Linville06ee1c22010-07-19 11:52:59 -04001022 netif_rx_ni(skb);
Johannes Berg4fd69312007-12-19 02:03:35 +01001023}
1024
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001025static int sta_apply_parameters(struct ieee80211_local *local,
1026 struct sta_info *sta,
1027 struct station_parameters *params)
Johannes Berg4fd69312007-12-19 02:03:35 +01001028{
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001029 int ret = 0;
Johannes Berg4fd69312007-12-19 02:03:35 +01001030 u32 rates;
1031 int i, j;
Johannes Berg8318d782008-01-24 19:38:38 +01001032 struct ieee80211_supported_band *sband;
Johannes Bergd0709a62008-02-25 16:27:46 +01001033 struct ieee80211_sub_if_data *sdata = sta->sdata;
Johannes Berg55de9082012-07-26 17:24:39 +02001034 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001035 u32 mask, set;
Johannes Berg4fd69312007-12-19 02:03:35 +01001036
Johannes Berg55de9082012-07-26 17:24:39 +02001037 sband = local->hw.wiphy->bands[band];
Johannes Bergae5eb022008-10-14 16:58:37 +02001038
Johannes Bergeccb8e82009-05-11 21:57:56 +03001039 mask = params->sta_flags_mask;
1040 set = params->sta_flags_set;
Johannes Berg73651ee2008-02-25 16:27:47 +01001041
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001042 /*
1043 * In mesh mode, we can clear AUTHENTICATED flag but must
1044 * also make ASSOCIATED follow appropriately for the driver
1045 * API. See also below, after AUTHORIZED changes.
1046 */
1047 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED)) {
1048 /* cfg80211 should not allow this in non-mesh modes */
1049 if (WARN_ON(!ieee80211_vif_is_mesh(&sdata->vif)))
1050 return -EINVAL;
1051
1052 if (set & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
1053 !test_sta_flag(sta, WLAN_STA_AUTH)) {
Johannes Berg83d5cc02012-01-12 09:31:10 +01001054 ret = sta_info_move_state(sta, IEEE80211_STA_AUTH);
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001055 if (ret)
1056 return ret;
Johannes Berg83d5cc02012-01-12 09:31:10 +01001057 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001058 if (ret)
1059 return ret;
1060 }
1061 }
1062
Johannes Bergeccb8e82009-05-11 21:57:56 +03001063 if (mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
Johannes Bergeccb8e82009-05-11 21:57:56 +03001064 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED))
Johannes Berg83d5cc02012-01-12 09:31:10 +01001065 ret = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
Johannes Berg543d1b92012-01-13 14:17:59 +01001066 else if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
Johannes Berg83d5cc02012-01-12 09:31:10 +01001067 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001068 if (ret)
1069 return ret;
Johannes Berg4fd69312007-12-19 02:03:35 +01001070 }
1071
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001072 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED)) {
1073 /* cfg80211 should not allow this in non-mesh modes */
1074 if (WARN_ON(!ieee80211_vif_is_mesh(&sdata->vif)))
1075 return -EINVAL;
1076
1077 if (!(set & BIT(NL80211_STA_FLAG_AUTHENTICATED)) &&
1078 test_sta_flag(sta, WLAN_STA_AUTH)) {
Johannes Berg83d5cc02012-01-12 09:31:10 +01001079 ret = sta_info_move_state(sta, IEEE80211_STA_AUTH);
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001080 if (ret)
1081 return ret;
Johannes Berg83d5cc02012-01-12 09:31:10 +01001082 ret = sta_info_move_state(sta, IEEE80211_STA_NONE);
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001083 if (ret)
1084 return ret;
1085 }
1086 }
1087
1088
Johannes Bergeccb8e82009-05-11 21:57:56 +03001089 if (mask & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) {
Johannes Bergeccb8e82009-05-11 21:57:56 +03001090 if (set & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001091 set_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
1092 else
1093 clear_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001094 }
1095
1096 if (mask & BIT(NL80211_STA_FLAG_WME)) {
Arik Nemtsov39df6002011-06-27 23:58:45 +03001097 if (set & BIT(NL80211_STA_FLAG_WME)) {
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001098 set_sta_flag(sta, WLAN_STA_WME);
Arik Nemtsov39df6002011-06-27 23:58:45 +03001099 sta->sta.wme = true;
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001100 } else {
1101 clear_sta_flag(sta, WLAN_STA_WME);
1102 sta->sta.wme = false;
Arik Nemtsov39df6002011-06-27 23:58:45 +03001103 }
Johannes Bergeccb8e82009-05-11 21:57:56 +03001104 }
1105
1106 if (mask & BIT(NL80211_STA_FLAG_MFP)) {
Johannes Bergeccb8e82009-05-11 21:57:56 +03001107 if (set & BIT(NL80211_STA_FLAG_MFP))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001108 set_sta_flag(sta, WLAN_STA_MFP);
1109 else
1110 clear_sta_flag(sta, WLAN_STA_MFP);
Johannes Bergeccb8e82009-05-11 21:57:56 +03001111 }
Javier Cardonab39c48f2011-04-07 15:08:30 -07001112
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001113 if (mask & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001114 if (set & BIT(NL80211_STA_FLAG_TDLS_PEER))
Johannes Bergc2c98fd2011-09-29 16:04:36 +02001115 set_sta_flag(sta, WLAN_STA_TDLS_PEER);
1116 else
1117 clear_sta_flag(sta, WLAN_STA_TDLS_PEER);
Arik Nemtsov07ba55d2011-09-28 14:12:53 +03001118 }
Johannes Bergeccb8e82009-05-11 21:57:56 +03001119
Johannes Berg3b9ce802011-09-27 20:56:12 +02001120 if (params->sta_modify_mask & STATION_PARAM_APPLY_UAPSD) {
1121 sta->sta.uapsd_queues = params->uapsd_queues;
1122 sta->sta.max_sp = params->max_sp;
1123 }
Eliad Peller9533b4a2011-08-23 14:37:47 +03001124
Johannes Berg73651ee2008-02-25 16:27:47 +01001125 /*
Johannes Berg51b50fb2009-05-24 16:42:30 +02001126 * cfg80211 validates this (1-2007) and allows setting the AID
1127 * only when creating a new station entry
1128 */
1129 if (params->aid)
1130 sta->sta.aid = params->aid;
1131
1132 /*
Johannes Berg73651ee2008-02-25 16:27:47 +01001133 * FIXME: updating the following information is racy when this
1134 * function is called from ieee80211_change_station().
1135 * However, all this information should be static so
1136 * maybe we should just reject attemps to change it.
1137 */
1138
Johannes Berg4fd69312007-12-19 02:03:35 +01001139 if (params->listen_interval >= 0)
1140 sta->listen_interval = params->listen_interval;
1141
1142 if (params->supported_rates) {
1143 rates = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01001144
Johannes Berg4fd69312007-12-19 02:03:35 +01001145 for (i = 0; i < params->supported_rates_len; i++) {
1146 int rate = (params->supported_rates[i] & 0x7f) * 5;
Johannes Berg8318d782008-01-24 19:38:38 +01001147 for (j = 0; j < sband->n_bitrates; j++) {
1148 if (sband->bitrates[j].bitrate == rate)
Johannes Berg4fd69312007-12-19 02:03:35 +01001149 rates |= BIT(j);
1150 }
1151 }
Johannes Berg55de9082012-07-26 17:24:39 +02001152 sta->sta.supp_rates[band] = rates;
Johannes Berg4fd69312007-12-19 02:03:35 +01001153 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001154
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001155 if (params->ht_capa)
Ben Greearef96a8422011-11-18 11:32:00 -08001156 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
Johannes Bergae5eb022008-10-14 16:58:37 +02001157 params->ht_capa,
Johannes Bergd9fe60d2008-10-09 12:13:49 +02001158 &sta->sta.ht_cap);
Jouni Malinen36aedc902008-08-25 11:58:58 +03001159
Javier Cardona9c3990a2011-05-03 16:57:11 -07001160 if (ieee80211_vif_is_mesh(&sdata->vif)) {
Yogesh Ashok Powar4daf50f2011-05-12 09:32:17 -04001161#ifdef CONFIG_MAC80211_MESH
Javier Cardona9c3990a2011-05-03 16:57:11 -07001162 if (sdata->u.mesh.security & IEEE80211_MESH_SEC_SECURED)
1163 switch (params->plink_state) {
Javier Cardona57cf8042011-05-13 10:45:43 -07001164 case NL80211_PLINK_LISTEN:
1165 case NL80211_PLINK_ESTAB:
1166 case NL80211_PLINK_BLOCKED:
Javier Cardona9c3990a2011-05-03 16:57:11 -07001167 sta->plink_state = params->plink_state;
1168 break;
1169 default:
1170 /* nothing */
1171 break;
1172 }
1173 else
1174 switch (params->plink_action) {
1175 case PLINK_ACTION_OPEN:
1176 mesh_plink_open(sta);
1177 break;
1178 case PLINK_ACTION_BLOCK:
1179 mesh_plink_block(sta);
1180 break;
1181 }
Yogesh Ashok Powar4daf50f2011-05-12 09:32:17 -04001182#endif
Johannes Berg902acc72008-02-23 15:17:19 +01001183 }
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001184
1185 return 0;
Johannes Berg4fd69312007-12-19 02:03:35 +01001186}
1187
1188static int ieee80211_add_station(struct wiphy *wiphy, struct net_device *dev,
1189 u8 *mac, struct station_parameters *params)
1190{
Johannes Berg14db74b2008-07-29 13:22:52 +02001191 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +01001192 struct sta_info *sta;
1193 struct ieee80211_sub_if_data *sdata;
Johannes Berg73651ee2008-02-25 16:27:47 +01001194 int err;
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001195 int layer2_update;
Johannes Berg4fd69312007-12-19 02:03:35 +01001196
Johannes Berg4fd69312007-12-19 02:03:35 +01001197 if (params->vlan) {
1198 sdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1199
Johannes Berg05c914f2008-09-11 00:01:58 +02001200 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
1201 sdata->vif.type != NL80211_IFTYPE_AP)
Johannes Berg4fd69312007-12-19 02:03:35 +01001202 return -EINVAL;
1203 } else
1204 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1205
Joe Perchesb203ca32012-05-08 18:56:52 +00001206 if (ether_addr_equal(mac, sdata->vif.addr))
Johannes Berg03e44972008-02-27 09:56:40 +01001207 return -EINVAL;
1208
1209 if (is_multicast_ether_addr(mac))
1210 return -EINVAL;
1211
1212 sta = sta_info_alloc(sdata, mac, GFP_KERNEL);
Johannes Berg73651ee2008-02-25 16:27:47 +01001213 if (!sta)
1214 return -ENOMEM;
Johannes Berg4fd69312007-12-19 02:03:35 +01001215
Johannes Berg83d5cc02012-01-12 09:31:10 +01001216 sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
1217 sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC);
Johannes Berg4fd69312007-12-19 02:03:35 +01001218
Johannes Bergd9a7ddb2011-12-14 12:35:30 +01001219 err = sta_apply_parameters(local, sta, params);
1220 if (err) {
1221 sta_info_free(local, sta);
1222 return err;
1223 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001224
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001225 /*
1226 * for TDLS, rate control should be initialized only when supported
1227 * rates are known.
1228 */
1229 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER))
1230 rate_control_rate_init(sta);
Johannes Berg4fd69312007-12-19 02:03:35 +01001231
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001232 layer2_update = sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1233 sdata->vif.type == NL80211_IFTYPE_AP;
1234
Johannes Berg34e89502010-02-03 13:59:58 +01001235 err = sta_info_insert_rcu(sta);
Johannes Berg73651ee2008-02-25 16:27:47 +01001236 if (err) {
Johannes Berg73651ee2008-02-25 16:27:47 +01001237 rcu_read_unlock();
1238 return err;
1239 }
1240
Jouni Malinenb8d476c2008-12-12 17:08:31 +02001241 if (layer2_update)
Johannes Berg73651ee2008-02-25 16:27:47 +01001242 ieee80211_send_layer2_update(sta);
1243
1244 rcu_read_unlock();
1245
Johannes Berg4fd69312007-12-19 02:03:35 +01001246 return 0;
1247}
1248
1249static int ieee80211_del_station(struct wiphy *wiphy, struct net_device *dev,
1250 u8 *mac)
1251{
Johannes Berg14db74b2008-07-29 13:22:52 +02001252 struct ieee80211_local *local = wiphy_priv(wiphy);
1253 struct ieee80211_sub_if_data *sdata;
Johannes Berg4fd69312007-12-19 02:03:35 +01001254
Johannes Berg14db74b2008-07-29 13:22:52 +02001255 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1256
Johannes Berg34e89502010-02-03 13:59:58 +01001257 if (mac)
1258 return sta_info_destroy_addr_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001259
Johannes Berg34e89502010-02-03 13:59:58 +01001260 sta_info_flush(local, sdata);
Johannes Berg4fd69312007-12-19 02:03:35 +01001261 return 0;
1262}
1263
1264static int ieee80211_change_station(struct wiphy *wiphy,
1265 struct net_device *dev,
1266 u8 *mac,
1267 struct station_parameters *params)
1268{
Johannes Bergabe60632009-11-25 17:46:18 +01001269 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg14db74b2008-07-29 13:22:52 +02001270 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg4fd69312007-12-19 02:03:35 +01001271 struct sta_info *sta;
1272 struct ieee80211_sub_if_data *vlansdata;
Eliad Peller35b88622011-12-29 14:41:39 +02001273 int err;
Johannes Berg4fd69312007-12-19 02:03:35 +01001274
Johannes Berg87be1e12011-12-14 12:20:29 +01001275 mutex_lock(&local->sta_mtx);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001276
Felix Fietkau0e5ded52010-01-08 18:10:58 +01001277 sta = sta_info_get_bss(sdata, mac);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001278 if (!sta) {
Johannes Berg87be1e12011-12-14 12:20:29 +01001279 mutex_unlock(&local->sta_mtx);
Johannes Berg4fd69312007-12-19 02:03:35 +01001280 return -ENOENT;
Johannes Berg98dd6a52008-04-10 15:36:09 +02001281 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001282
Johannes Bergbdd90d52011-12-14 12:20:27 +01001283 /* in station mode, supported rates are only valid with TDLS */
1284 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
1285 params->supported_rates &&
1286 !test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
Johannes Berg87be1e12011-12-14 12:20:29 +01001287 mutex_unlock(&local->sta_mtx);
Johannes Bergbdd90d52011-12-14 12:20:27 +01001288 return -EINVAL;
1289 }
1290
Johannes Bergd0709a62008-02-25 16:27:46 +01001291 if (params->vlan && params->vlan != sta->sdata->dev) {
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001292 bool prev_4addr = false;
1293 bool new_4addr = false;
1294
Johannes Berg4fd69312007-12-19 02:03:35 +01001295 vlansdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1296
Johannes Berg05c914f2008-09-11 00:01:58 +02001297 if (vlansdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
1298 vlansdata->vif.type != NL80211_IFTYPE_AP) {
Johannes Berg87be1e12011-12-14 12:20:29 +01001299 mutex_unlock(&local->sta_mtx);
Johannes Berg4fd69312007-12-19 02:03:35 +01001300 return -EINVAL;
Johannes Berg98dd6a52008-04-10 15:36:09 +02001301 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001302
Johannes Berg9bc383d2009-11-19 11:55:19 +01001303 if (params->vlan->ieee80211_ptr->use_4addr) {
Johannes Berg33054432009-11-20 10:09:14 +01001304 if (vlansdata->u.vlan.sta) {
Johannes Berg87be1e12011-12-14 12:20:29 +01001305 mutex_unlock(&local->sta_mtx);
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001306 return -EBUSY;
Johannes Berg33054432009-11-20 10:09:14 +01001307 }
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001308
Eric Dumazetcf778b02012-01-12 04:41:32 +00001309 rcu_assign_pointer(vlansdata->u.vlan.sta, sta);
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001310 new_4addr = true;
1311 }
1312
1313 if (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1314 sta->sdata->u.vlan.sta) {
1315 rcu_assign_pointer(sta->sdata->u.vlan.sta, NULL);
1316 prev_4addr = true;
Felix Fietkauf14543ee2009-11-10 20:10:05 +01001317 }
1318
Johannes Berg14db74b2008-07-29 13:22:52 +02001319 sta->sdata = vlansdata;
Felix Fietkau7e3ed022012-04-23 19:49:03 +02001320
1321 if (sta->sta_state == IEEE80211_STA_AUTHORIZED &&
1322 prev_4addr != new_4addr) {
1323 if (new_4addr)
1324 atomic_dec(&sta->sdata->bss->num_mcast_sta);
1325 else
1326 atomic_inc(&sta->sdata->bss->num_mcast_sta);
1327 }
1328
Johannes Berg4fd69312007-12-19 02:03:35 +01001329 ieee80211_send_layer2_update(sta);
1330 }
1331
Eliad Peller35b88622011-12-29 14:41:39 +02001332 err = sta_apply_parameters(local, sta, params);
1333 if (err) {
1334 mutex_unlock(&local->sta_mtx);
1335 return err;
1336 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001337
Arik Nemtsovd64cf632011-11-07 23:24:39 +02001338 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER) && params->supported_rates)
1339 rate_control_rate_init(sta);
1340
Johannes Berg87be1e12011-12-14 12:20:29 +01001341 mutex_unlock(&local->sta_mtx);
Johannes Berg98dd6a52008-04-10 15:36:09 +02001342
Jason Young808118c2011-03-10 16:43:19 -08001343 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
Eliad Pellerab095872012-07-27 12:33:22 +03001344 params->sta_flags_mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
Jason Young808118c2011-03-10 16:43:19 -08001345 ieee80211_recalc_ps(local, -1);
Eliad Pellerab095872012-07-27 12:33:22 +03001346 ieee80211_recalc_ps_vif(sdata);
1347 }
Johannes Berg4fd69312007-12-19 02:03:35 +01001348 return 0;
1349}
1350
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001351#ifdef CONFIG_MAC80211_MESH
1352static int ieee80211_add_mpath(struct wiphy *wiphy, struct net_device *dev,
1353 u8 *dst, u8 *next_hop)
1354{
Johannes Berg14db74b2008-07-29 13:22:52 +02001355 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001356 struct mesh_path *mpath;
1357 struct sta_info *sta;
1358 int err;
1359
Johannes Berg14db74b2008-07-29 13:22:52 +02001360 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1361
Johannes Bergd0709a62008-02-25 16:27:46 +01001362 rcu_read_lock();
Johannes Bergabe60632009-11-25 17:46:18 +01001363 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +01001364 if (!sta) {
1365 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001366 return -ENOENT;
Johannes Bergd0709a62008-02-25 16:27:46 +01001367 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001368
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001369 err = mesh_path_add(dst, sdata);
Johannes Bergd0709a62008-02-25 16:27:46 +01001370 if (err) {
1371 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001372 return err;
Johannes Bergd0709a62008-02-25 16:27:46 +01001373 }
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001374
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001375 mpath = mesh_path_lookup(dst, sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001376 if (!mpath) {
1377 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001378 return -ENXIO;
1379 }
1380 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +01001381
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001382 rcu_read_unlock();
1383 return 0;
1384}
1385
1386static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev,
1387 u8 *dst)
1388{
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001389 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001390
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001391 if (dst)
1392 return mesh_path_del(dst, sdata);
1393
Javier Cardonaece1a2e2011-08-29 13:23:04 -07001394 mesh_path_flush_by_iface(sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001395 return 0;
1396}
1397
1398static int ieee80211_change_mpath(struct wiphy *wiphy,
1399 struct net_device *dev,
1400 u8 *dst, u8 *next_hop)
1401{
Johannes Berg14db74b2008-07-29 13:22:52 +02001402 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001403 struct mesh_path *mpath;
1404 struct sta_info *sta;
1405
Johannes Berg14db74b2008-07-29 13:22:52 +02001406 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1407
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001408 rcu_read_lock();
Johannes Bergd0709a62008-02-25 16:27:46 +01001409
Johannes Bergabe60632009-11-25 17:46:18 +01001410 sta = sta_info_get(sdata, next_hop);
Johannes Bergd0709a62008-02-25 16:27:46 +01001411 if (!sta) {
1412 rcu_read_unlock();
1413 return -ENOENT;
1414 }
1415
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001416 mpath = mesh_path_lookup(dst, sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001417 if (!mpath) {
1418 rcu_read_unlock();
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001419 return -ENOENT;
1420 }
1421
1422 mesh_path_fix_nexthop(mpath, sta);
Johannes Bergd0709a62008-02-25 16:27:46 +01001423
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001424 rcu_read_unlock();
1425 return 0;
1426}
1427
1428static void mpath_set_pinfo(struct mesh_path *mpath, u8 *next_hop,
1429 struct mpath_info *pinfo)
1430{
Johannes Berga3836e02011-05-12 15:11:37 +02001431 struct sta_info *next_hop_sta = rcu_dereference(mpath->next_hop);
1432
1433 if (next_hop_sta)
1434 memcpy(next_hop, next_hop_sta->sta.addr, ETH_ALEN);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001435 else
1436 memset(next_hop, 0, ETH_ALEN);
1437
LEO Airwarosu Yoichi Shinoda7ce8c7a2012-08-27 22:28:16 +09001438 memset(pinfo, 0, sizeof(*pinfo));
1439
Johannes Bergf5ea9122009-08-07 16:17:38 +02001440 pinfo->generation = mesh_paths_generation;
1441
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001442 pinfo->filled = MPATH_INFO_FRAME_QLEN |
Rui Paulod19b3bf2009-11-09 23:46:55 +00001443 MPATH_INFO_SN |
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001444 MPATH_INFO_METRIC |
1445 MPATH_INFO_EXPTIME |
1446 MPATH_INFO_DISCOVERY_TIMEOUT |
1447 MPATH_INFO_DISCOVERY_RETRIES |
1448 MPATH_INFO_FLAGS;
1449
1450 pinfo->frame_qlen = mpath->frame_queue.qlen;
Rui Paulod19b3bf2009-11-09 23:46:55 +00001451 pinfo->sn = mpath->sn;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001452 pinfo->metric = mpath->metric;
1453 if (time_before(jiffies, mpath->exp_time))
1454 pinfo->exptime = jiffies_to_msecs(mpath->exp_time - jiffies);
1455 pinfo->discovery_timeout =
1456 jiffies_to_msecs(mpath->discovery_timeout);
1457 pinfo->discovery_retries = mpath->discovery_retries;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001458 if (mpath->flags & MESH_PATH_ACTIVE)
1459 pinfo->flags |= NL80211_MPATH_FLAG_ACTIVE;
1460 if (mpath->flags & MESH_PATH_RESOLVING)
1461 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
Rui Paulod19b3bf2009-11-09 23:46:55 +00001462 if (mpath->flags & MESH_PATH_SN_VALID)
1463 pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001464 if (mpath->flags & MESH_PATH_FIXED)
1465 pinfo->flags |= NL80211_MPATH_FLAG_FIXED;
LEO Airwarosu Yoichi Shinoda7ce8c7a2012-08-27 22:28:16 +09001466 if (mpath->flags & MESH_PATH_RESOLVED)
1467 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVED;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001468}
1469
1470static int ieee80211_get_mpath(struct wiphy *wiphy, struct net_device *dev,
1471 u8 *dst, u8 *next_hop, struct mpath_info *pinfo)
1472
1473{
Johannes Berg14db74b2008-07-29 13:22:52 +02001474 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001475 struct mesh_path *mpath;
1476
Johannes Berg14db74b2008-07-29 13:22:52 +02001477 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1478
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001479 rcu_read_lock();
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001480 mpath = mesh_path_lookup(dst, sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001481 if (!mpath) {
1482 rcu_read_unlock();
1483 return -ENOENT;
1484 }
1485 memcpy(dst, mpath->dst, ETH_ALEN);
1486 mpath_set_pinfo(mpath, next_hop, pinfo);
1487 rcu_read_unlock();
1488 return 0;
1489}
1490
1491static int ieee80211_dump_mpath(struct wiphy *wiphy, struct net_device *dev,
1492 int idx, u8 *dst, u8 *next_hop,
1493 struct mpath_info *pinfo)
1494{
Johannes Berg14db74b2008-07-29 13:22:52 +02001495 struct ieee80211_sub_if_data *sdata;
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001496 struct mesh_path *mpath;
1497
Johannes Berg14db74b2008-07-29 13:22:52 +02001498 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1499
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001500 rcu_read_lock();
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001501 mpath = mesh_path_lookup_by_idx(idx, sdata);
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001502 if (!mpath) {
1503 rcu_read_unlock();
1504 return -ENOENT;
1505 }
1506 memcpy(dst, mpath->dst, ETH_ALEN);
1507 mpath_set_pinfo(mpath, next_hop, pinfo);
1508 rcu_read_unlock();
1509 return 0;
1510}
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001511
Javier Cardona24bdd9f2010-12-16 17:37:48 -08001512static int ieee80211_get_mesh_config(struct wiphy *wiphy,
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001513 struct net_device *dev,
1514 struct mesh_config *conf)
1515{
1516 struct ieee80211_sub_if_data *sdata;
1517 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1518
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001519 memcpy(conf, &(sdata->u.mesh.mshcfg), sizeof(struct mesh_config));
1520 return 0;
1521}
1522
1523static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm, u32 mask)
1524{
1525 return (mask >> (parm-1)) & 0x1;
1526}
1527
Javier Cardonac80d5452010-12-16 17:37:49 -08001528static int copy_mesh_setup(struct ieee80211_if_mesh *ifmsh,
1529 const struct mesh_setup *setup)
1530{
1531 u8 *new_ie;
1532 const u8 *old_ie;
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001533 struct ieee80211_sub_if_data *sdata = container_of(ifmsh,
1534 struct ieee80211_sub_if_data, u.mesh);
Javier Cardonac80d5452010-12-16 17:37:49 -08001535
Javier Cardona581a8b02011-04-07 15:08:27 -07001536 /* allocate information elements */
Javier Cardonac80d5452010-12-16 17:37:49 -08001537 new_ie = NULL;
Javier Cardona581a8b02011-04-07 15:08:27 -07001538 old_ie = ifmsh->ie;
Javier Cardonac80d5452010-12-16 17:37:49 -08001539
Javier Cardona581a8b02011-04-07 15:08:27 -07001540 if (setup->ie_len) {
1541 new_ie = kmemdup(setup->ie, setup->ie_len,
Javier Cardonac80d5452010-12-16 17:37:49 -08001542 GFP_KERNEL);
1543 if (!new_ie)
1544 return -ENOMEM;
1545 }
Javier Cardona581a8b02011-04-07 15:08:27 -07001546 ifmsh->ie_len = setup->ie_len;
1547 ifmsh->ie = new_ie;
1548 kfree(old_ie);
Javier Cardonac80d5452010-12-16 17:37:49 -08001549
1550 /* now copy the rest of the setup parameters */
1551 ifmsh->mesh_id_len = setup->mesh_id_len;
1552 memcpy(ifmsh->mesh_id, setup->mesh_id, ifmsh->mesh_id_len);
Javier Cardonad299a1f2012-03-31 11:31:33 -07001553 ifmsh->mesh_sp_id = setup->sync_method;
Javier Cardonac80d5452010-12-16 17:37:49 -08001554 ifmsh->mesh_pp_id = setup->path_sel_proto;
1555 ifmsh->mesh_pm_id = setup->path_metric;
Javier Cardonab130e5c2011-05-03 16:57:07 -07001556 ifmsh->security = IEEE80211_MESH_SEC_NONE;
1557 if (setup->is_authenticated)
1558 ifmsh->security |= IEEE80211_MESH_SEC_AUTHED;
1559 if (setup->is_secure)
1560 ifmsh->security |= IEEE80211_MESH_SEC_SECURED;
Javier Cardonac80d5452010-12-16 17:37:49 -08001561
Chun-Yeow Yeoh4bb62342011-11-24 17:15:20 -08001562 /* mcast rate setting in Mesh Node */
1563 memcpy(sdata->vif.bss_conf.mcast_rate, setup->mcast_rate,
1564 sizeof(setup->mcast_rate));
1565
Javier Cardonac80d5452010-12-16 17:37:49 -08001566 return 0;
1567}
1568
Javier Cardona24bdd9f2010-12-16 17:37:48 -08001569static int ieee80211_update_mesh_config(struct wiphy *wiphy,
Johannes Berg29cbe682010-12-03 09:20:44 +01001570 struct net_device *dev, u32 mask,
1571 const struct mesh_config *nconf)
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001572{
1573 struct mesh_config *conf;
1574 struct ieee80211_sub_if_data *sdata;
Rui Paulo63c57232009-11-09 23:46:57 +00001575 struct ieee80211_if_mesh *ifmsh;
1576
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001577 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Rui Paulo63c57232009-11-09 23:46:57 +00001578 ifmsh = &sdata->u.mesh;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001579
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001580 /* Set the config options which we are interested in setting */
1581 conf = &(sdata->u.mesh.mshcfg);
1582 if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT, mask))
1583 conf->dot11MeshRetryTimeout = nconf->dot11MeshRetryTimeout;
1584 if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT, mask))
1585 conf->dot11MeshConfirmTimeout = nconf->dot11MeshConfirmTimeout;
1586 if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT, mask))
1587 conf->dot11MeshHoldingTimeout = nconf->dot11MeshHoldingTimeout;
1588 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS, mask))
1589 conf->dot11MeshMaxPeerLinks = nconf->dot11MeshMaxPeerLinks;
1590 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES, mask))
1591 conf->dot11MeshMaxRetries = nconf->dot11MeshMaxRetries;
1592 if (_chg_mesh_attr(NL80211_MESHCONF_TTL, mask))
1593 conf->dot11MeshTTL = nconf->dot11MeshTTL;
Javier Cardona45904f22010-12-03 09:20:40 +01001594 if (_chg_mesh_attr(NL80211_MESHCONF_ELEMENT_TTL, mask))
Chun-Yeow Yeoh58886a92012-06-15 00:23:53 +08001595 conf->element_ttl = nconf->element_ttl;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001596 if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS, mask))
1597 conf->auto_open_plinks = nconf->auto_open_plinks;
Javier Cardonad299a1f2012-03-31 11:31:33 -07001598 if (_chg_mesh_attr(NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR, mask))
1599 conf->dot11MeshNbrOffsetMaxNeighbor =
1600 nconf->dot11MeshNbrOffsetMaxNeighbor;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001601 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, mask))
1602 conf->dot11MeshHWMPmaxPREQretries =
1603 nconf->dot11MeshHWMPmaxPREQretries;
1604 if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME, mask))
1605 conf->path_refresh_time = nconf->path_refresh_time;
1606 if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, mask))
1607 conf->min_discovery_timeout = nconf->min_discovery_timeout;
1608 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, mask))
1609 conf->dot11MeshHWMPactivePathTimeout =
1610 nconf->dot11MeshHWMPactivePathTimeout;
1611 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, mask))
1612 conf->dot11MeshHWMPpreqMinInterval =
1613 nconf->dot11MeshHWMPpreqMinInterval;
Thomas Pedersendca7e942011-11-24 17:15:24 -08001614 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL, mask))
1615 conf->dot11MeshHWMPperrMinInterval =
1616 nconf->dot11MeshHWMPperrMinInterval;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001617 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
1618 mask))
1619 conf->dot11MeshHWMPnetDiameterTraversalTime =
1620 nconf->dot11MeshHWMPnetDiameterTraversalTime;
Rui Paulo63c57232009-11-09 23:46:57 +00001621 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask)) {
1622 conf->dot11MeshHWMPRootMode = nconf->dot11MeshHWMPRootMode;
1623 ieee80211_mesh_root_setup(ifmsh);
1624 }
Javier Cardona16dd7262011-08-09 16:45:11 -07001625 if (_chg_mesh_attr(NL80211_MESHCONF_GATE_ANNOUNCEMENTS, mask)) {
Thomas Pedersenc61336612011-08-25 10:36:14 -07001626 /* our current gate announcement implementation rides on root
1627 * announcements, so require this ifmsh to also be a root node
1628 * */
1629 if (nconf->dot11MeshGateAnnouncementProtocol &&
Chun-Yeow Yeohdbb912c2012-06-14 02:06:09 +08001630 !(conf->dot11MeshHWMPRootMode > IEEE80211_ROOTMODE_ROOT)) {
1631 conf->dot11MeshHWMPRootMode = IEEE80211_PROACTIVE_RANN;
Thomas Pedersenc61336612011-08-25 10:36:14 -07001632 ieee80211_mesh_root_setup(ifmsh);
1633 }
Javier Cardona16dd7262011-08-09 16:45:11 -07001634 conf->dot11MeshGateAnnouncementProtocol =
1635 nconf->dot11MeshGateAnnouncementProtocol;
1636 }
Chun-Yeow Yeoha4f606e2012-06-11 11:59:36 +08001637 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_RANN_INTERVAL, mask))
Javier Cardona0507e152011-08-09 16:45:10 -07001638 conf->dot11MeshHWMPRannInterval =
1639 nconf->dot11MeshHWMPRannInterval;
Chun-Yeow Yeoh94f90652012-01-21 01:02:16 +08001640 if (_chg_mesh_attr(NL80211_MESHCONF_FORWARDING, mask))
1641 conf->dot11MeshForwarding = nconf->dot11MeshForwarding;
Ashok Nagarajan55335132012-02-28 17:04:08 -08001642 if (_chg_mesh_attr(NL80211_MESHCONF_RSSI_THRESHOLD, mask)) {
1643 /* our RSSI threshold implementation is supported only for
1644 * devices that report signal in dBm.
1645 */
1646 if (!(sdata->local->hw.flags & IEEE80211_HW_SIGNAL_DBM))
1647 return -ENOTSUPP;
1648 conf->rssi_threshold = nconf->rssi_threshold;
1649 }
Ashok Nagarajan70c33ea2012-04-30 14:20:32 -07001650 if (_chg_mesh_attr(NL80211_MESHCONF_HT_OPMODE, mask)) {
1651 conf->ht_opmode = nconf->ht_opmode;
1652 sdata->vif.bss_conf.ht_operation_mode = nconf->ht_opmode;
1653 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_HT);
1654 }
Chun-Yeow Yeohac1073a2012-06-14 02:06:06 +08001655 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT, mask))
1656 conf->dot11MeshHWMPactivePathToRootTimeout =
1657 nconf->dot11MeshHWMPactivePathToRootTimeout;
1658 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOT_INTERVAL, mask))
1659 conf->dot11MeshHWMProotInterval =
1660 nconf->dot11MeshHWMProotInterval;
Chun-Yeow Yeoh728b19e2012-06-14 02:06:10 +08001661 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL, mask))
1662 conf->dot11MeshHWMPconfirmationInterval =
1663 nconf->dot11MeshHWMPconfirmationInterval;
colin@cozybit.com93da9cc2008-10-21 12:03:48 -07001664 return 0;
1665}
1666
Johannes Berg29cbe682010-12-03 09:20:44 +01001667static int ieee80211_join_mesh(struct wiphy *wiphy, struct net_device *dev,
1668 const struct mesh_config *conf,
1669 const struct mesh_setup *setup)
1670{
1671 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1672 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
Javier Cardonac80d5452010-12-16 17:37:49 -08001673 int err;
Johannes Berg29cbe682010-12-03 09:20:44 +01001674
Javier Cardonac80d5452010-12-16 17:37:49 -08001675 memcpy(&ifmsh->mshcfg, conf, sizeof(struct mesh_config));
1676 err = copy_mesh_setup(ifmsh, setup);
1677 if (err)
1678 return err;
Johannes Bergcc1d2802012-05-16 23:50:20 +02001679
Johannes Berg04ecd252012-09-11 14:34:12 +02001680 /* can mesh use other SMPS modes? */
1681 sdata->smps_mode = IEEE80211_SMPS_OFF;
1682 sdata->needed_rx_chains = sdata->local->rx_chains;
1683
Johannes Berg55de9082012-07-26 17:24:39 +02001684 err = ieee80211_vif_use_channel(sdata, setup->channel,
1685 setup->channel_type,
1686 IEEE80211_CHANCTX_SHARED);
Johannes Bergcc1d2802012-05-16 23:50:20 +02001687 if (err)
1688 return err;
1689
Johannes Berg29cbe682010-12-03 09:20:44 +01001690 ieee80211_start_mesh(sdata);
1691
1692 return 0;
1693}
1694
1695static int ieee80211_leave_mesh(struct wiphy *wiphy, struct net_device *dev)
1696{
1697 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1698
1699 ieee80211_stop_mesh(sdata);
Johannes Berg55de9082012-07-26 17:24:39 +02001700 ieee80211_vif_release_channel(sdata);
Johannes Berg29cbe682010-12-03 09:20:44 +01001701
1702 return 0;
1703}
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01001704#endif
1705
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001706static int ieee80211_change_bss(struct wiphy *wiphy,
1707 struct net_device *dev,
1708 struct bss_parameters *params)
1709{
Johannes Berg55de9082012-07-26 17:24:39 +02001710 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1711 enum ieee80211_band band;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001712 u32 changed = 0;
1713
Johannes Berg55de9082012-07-26 17:24:39 +02001714 if (!rtnl_dereference(sdata->u.ap.beacon))
1715 return -ENOENT;
1716
1717 band = ieee80211_get_sdata_band(sdata);
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001718
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001719 if (params->use_cts_prot >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001720 sdata->vif.bss_conf.use_cts_prot = params->use_cts_prot;
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001721 changed |= BSS_CHANGED_ERP_CTS_PROT;
1722 }
1723 if (params->use_short_preamble >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001724 sdata->vif.bss_conf.use_short_preamble =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001725 params->use_short_preamble;
1726 changed |= BSS_CHANGED_ERP_PREAMBLE;
1727 }
Felix Fietkau43d35342010-01-15 03:00:48 +01001728
1729 if (!sdata->vif.bss_conf.use_short_slot &&
Johannes Berg55de9082012-07-26 17:24:39 +02001730 band == IEEE80211_BAND_5GHZ) {
Felix Fietkau43d35342010-01-15 03:00:48 +01001731 sdata->vif.bss_conf.use_short_slot = true;
1732 changed |= BSS_CHANGED_ERP_SLOT;
1733 }
1734
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001735 if (params->use_short_slot_time >= 0) {
Johannes Bergbda39332008-10-11 01:51:51 +02001736 sdata->vif.bss_conf.use_short_slot =
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001737 params->use_short_slot_time;
1738 changed |= BSS_CHANGED_ERP_SLOT;
1739 }
1740
Jouni Malinen90c97a02008-10-30 16:59:22 +02001741 if (params->basic_rates) {
1742 int i, j;
1743 u32 rates = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02001744 struct ieee80211_supported_band *sband = wiphy->bands[band];
Jouni Malinen90c97a02008-10-30 16:59:22 +02001745
1746 for (i = 0; i < params->basic_rates_len; i++) {
1747 int rate = (params->basic_rates[i] & 0x7f) * 5;
1748 for (j = 0; j < sband->n_bitrates; j++) {
1749 if (sband->bitrates[j].bitrate == rate)
1750 rates |= BIT(j);
1751 }
1752 }
1753 sdata->vif.bss_conf.basic_rates = rates;
1754 changed |= BSS_CHANGED_BASIC_RATES;
1755 }
1756
Felix Fietkau7b7b5e52010-04-27 01:23:36 +02001757 if (params->ap_isolate >= 0) {
1758 if (params->ap_isolate)
1759 sdata->flags |= IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1760 else
1761 sdata->flags &= ~IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1762 }
1763
Helmut Schaa80d7e402010-11-19 12:40:26 +01001764 if (params->ht_opmode >= 0) {
1765 sdata->vif.bss_conf.ht_operation_mode =
1766 (u16) params->ht_opmode;
1767 changed |= BSS_CHANGED_HT;
1768 }
1769
Jouni Malinen9f1ba902008-08-07 20:07:01 +03001770 ieee80211_bss_info_change_notify(sdata, changed);
1771
1772 return 0;
1773}
1774
Jouni Malinen31888482008-10-30 16:59:24 +02001775static int ieee80211_set_txq_params(struct wiphy *wiphy,
Eliad Pellerf70f01c2011-09-25 20:06:53 +03001776 struct net_device *dev,
Jouni Malinen31888482008-10-30 16:59:24 +02001777 struct ieee80211_txq_params *params)
1778{
1779 struct ieee80211_local *local = wiphy_priv(wiphy);
Eliad Pellerf6f3def2011-09-25 20:06:54 +03001780 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Jouni Malinen31888482008-10-30 16:59:24 +02001781 struct ieee80211_tx_queue_params p;
1782
1783 if (!local->ops->conf_tx)
1784 return -EOPNOTSUPP;
1785
Johannes Berg54bcbc62012-03-28 11:04:25 +02001786 if (local->hw.queues < IEEE80211_NUM_ACS)
1787 return -EOPNOTSUPP;
1788
Jouni Malinen31888482008-10-30 16:59:24 +02001789 memset(&p, 0, sizeof(p));
1790 p.aifs = params->aifs;
1791 p.cw_max = params->cwmax;
1792 p.cw_min = params->cwmin;
1793 p.txop = params->txop;
Kalle Valoab133152010-01-12 10:42:31 +02001794
1795 /*
1796 * Setting tx queue params disables u-apsd because it's only
1797 * called in master mode.
1798 */
1799 p.uapsd = false;
1800
Johannes Berga3304b02012-03-28 11:04:24 +02001801 sdata->tx_conf[params->ac] = p;
1802 if (drv_conf_tx(local, sdata, params->ac, &p)) {
Joe Perches0fb9a9e2010-08-20 16:25:38 -07001803 wiphy_debug(local->hw.wiphy,
Johannes Berga3304b02012-03-28 11:04:24 +02001804 "failed to set TX queue parameters for AC %d\n",
1805 params->ac);
Jouni Malinen31888482008-10-30 16:59:24 +02001806 return -EINVAL;
1807 }
1808
Johannes Berg7d257452012-07-06 17:37:43 +02001809 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_QOS);
1810
Jouni Malinen31888482008-10-30 16:59:24 +02001811 return 0;
1812}
1813
Bob Copeland665af4f2009-01-19 11:20:53 -05001814#ifdef CONFIG_PM
Johannes Bergff1b6e62011-05-04 15:37:28 +02001815static int ieee80211_suspend(struct wiphy *wiphy,
1816 struct cfg80211_wowlan *wowlan)
Bob Copeland665af4f2009-01-19 11:20:53 -05001817{
Johannes Bergeecc4802011-05-04 15:37:29 +02001818 return __ieee80211_suspend(wiphy_priv(wiphy), wowlan);
Bob Copeland665af4f2009-01-19 11:20:53 -05001819}
1820
1821static int ieee80211_resume(struct wiphy *wiphy)
1822{
1823 return __ieee80211_resume(wiphy_priv(wiphy));
1824}
1825#else
1826#define ieee80211_suspend NULL
1827#define ieee80211_resume NULL
1828#endif
1829
Johannes Berg2a519312009-02-10 21:25:55 +01001830static int ieee80211_scan(struct wiphy *wiphy,
Johannes Berg2a519312009-02-10 21:25:55 +01001831 struct cfg80211_scan_request *req)
1832{
Johannes Bergfd014282012-06-18 19:17:03 +02001833 struct ieee80211_sub_if_data *sdata;
1834
1835 sdata = IEEE80211_WDEV_TO_SUB_IF(req->wdev);
Johannes Berg2a519312009-02-10 21:25:55 +01001836
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001837 switch (ieee80211_vif_type_p2p(&sdata->vif)) {
1838 case NL80211_IFTYPE_STATION:
1839 case NL80211_IFTYPE_ADHOC:
1840 case NL80211_IFTYPE_MESH_POINT:
1841 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Bergf142c6b2012-06-18 20:07:15 +02001842 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001843 break;
1844 case NL80211_IFTYPE_P2P_GO:
1845 if (sdata->local->ops->hw_scan)
1846 break;
Johannes Berge9d77322011-02-01 15:35:36 +01001847 /*
1848 * FIXME: implement NoA while scanning in software,
1849 * for now fall through to allow scanning only when
1850 * beaconing hasn't been configured yet
1851 */
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001852 case NL80211_IFTYPE_AP:
1853 if (sdata->u.ap.beacon)
1854 return -EOPNOTSUPP;
1855 break;
1856 default:
1857 return -EOPNOTSUPP;
1858 }
Johannes Berg2a519312009-02-10 21:25:55 +01001859
1860 return ieee80211_request_scan(sdata, req);
1861}
1862
Luciano Coelho79f460c2011-05-11 17:09:36 +03001863static int
1864ieee80211_sched_scan_start(struct wiphy *wiphy,
1865 struct net_device *dev,
1866 struct cfg80211_sched_scan_request *req)
1867{
1868 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1869
1870 if (!sdata->local->ops->sched_scan_start)
1871 return -EOPNOTSUPP;
1872
1873 return ieee80211_request_sched_scan_start(sdata, req);
1874}
1875
1876static int
Luciano Coelho85a99942011-05-12 16:28:29 +03001877ieee80211_sched_scan_stop(struct wiphy *wiphy, struct net_device *dev)
Luciano Coelho79f460c2011-05-11 17:09:36 +03001878{
1879 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1880
1881 if (!sdata->local->ops->sched_scan_stop)
1882 return -EOPNOTSUPP;
1883
Luciano Coelho85a99942011-05-12 16:28:29 +03001884 return ieee80211_request_sched_scan_stop(sdata);
Luciano Coelho79f460c2011-05-11 17:09:36 +03001885}
1886
Jouni Malinen636a5d32009-03-19 13:39:22 +02001887static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev,
1888 struct cfg80211_auth_request *req)
1889{
Johannes Berg77fdaa12009-07-07 03:45:17 +02001890 return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001891}
1892
1893static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev,
1894 struct cfg80211_assoc_request *req)
1895{
Johannes Berg77fdaa12009-07-07 03:45:17 +02001896 return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001897}
1898
1899static int ieee80211_deauth(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01001900 struct cfg80211_deauth_request *req)
Jouni Malinen636a5d32009-03-19 13:39:22 +02001901{
Johannes Berg63c9c5e2012-02-24 13:50:51 +01001902 return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001903}
1904
1905static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg63c9c5e2012-02-24 13:50:51 +01001906 struct cfg80211_disassoc_request *req)
Jouni Malinen636a5d32009-03-19 13:39:22 +02001907{
Johannes Berg63c9c5e2012-02-24 13:50:51 +01001908 return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
Jouni Malinen636a5d32009-03-19 13:39:22 +02001909}
1910
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001911static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
1912 struct cfg80211_ibss_params *params)
1913{
Johannes Berg55de9082012-07-26 17:24:39 +02001914 return ieee80211_ibss_join(IEEE80211_DEV_TO_SUB_IF(dev), params);
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001915}
1916
1917static int ieee80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev)
1918{
Johannes Berg55de9082012-07-26 17:24:39 +02001919 return ieee80211_ibss_leave(IEEE80211_DEV_TO_SUB_IF(dev));
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02001920}
1921
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001922static int ieee80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
1923{
1924 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg24487982009-04-23 18:52:52 +02001925 int err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001926
Arik Nemtsovf23a4782010-11-08 11:51:06 +02001927 if (changed & WIPHY_PARAM_FRAG_THRESHOLD) {
1928 err = drv_set_frag_threshold(local, wiphy->frag_threshold);
1929
1930 if (err)
1931 return err;
1932 }
1933
Lukáš Turek310bc672009-12-21 22:50:48 +01001934 if (changed & WIPHY_PARAM_COVERAGE_CLASS) {
1935 err = drv_set_coverage_class(local, wiphy->coverage_class);
1936
1937 if (err)
1938 return err;
1939 }
1940
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001941 if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
Johannes Berg24487982009-04-23 18:52:52 +02001942 err = drv_set_rts_threshold(local, wiphy->rts_threshold);
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001943
Johannes Berg24487982009-04-23 18:52:52 +02001944 if (err)
1945 return err;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02001946 }
1947
1948 if (changed & WIPHY_PARAM_RETRY_SHORT)
1949 local->hw.conf.short_frame_max_tx_count = wiphy->retry_short;
1950 if (changed & WIPHY_PARAM_RETRY_LONG)
1951 local->hw.conf.long_frame_max_tx_count = wiphy->retry_long;
1952 if (changed &
1953 (WIPHY_PARAM_RETRY_SHORT | WIPHY_PARAM_RETRY_LONG))
1954 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
1955
1956 return 0;
1957}
1958
Johannes Berg7643a2c2009-06-02 13:01:39 +02001959static int ieee80211_set_tx_power(struct wiphy *wiphy,
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03001960 enum nl80211_tx_power_setting type, int mbm)
Johannes Berg7643a2c2009-06-02 13:01:39 +02001961{
1962 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg55de9082012-07-26 17:24:39 +02001963 struct ieee80211_channel *chan = local->_oper_channel;
Johannes Berg7643a2c2009-06-02 13:01:39 +02001964 u32 changes = 0;
Johannes Berg7643a2c2009-06-02 13:01:39 +02001965
Johannes Berg55de9082012-07-26 17:24:39 +02001966 /* FIXME */
1967 if (local->use_chanctx)
1968 return -EOPNOTSUPP;
1969
Johannes Berg7643a2c2009-06-02 13:01:39 +02001970 switch (type) {
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03001971 case NL80211_TX_POWER_AUTOMATIC:
Johannes Berg7643a2c2009-06-02 13:01:39 +02001972 local->user_power_level = -1;
1973 break;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03001974 case NL80211_TX_POWER_LIMITED:
1975 if (mbm < 0 || (mbm % 100))
1976 return -EOPNOTSUPP;
1977 local->user_power_level = MBM_TO_DBM(mbm);
Johannes Berg7643a2c2009-06-02 13:01:39 +02001978 break;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03001979 case NL80211_TX_POWER_FIXED:
1980 if (mbm < 0 || (mbm % 100))
1981 return -EOPNOTSUPP;
Johannes Berg7643a2c2009-06-02 13:01:39 +02001982 /* TODO: move to cfg80211 when it knows the channel */
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03001983 if (MBM_TO_DBM(mbm) > chan->max_power)
Johannes Berg7643a2c2009-06-02 13:01:39 +02001984 return -EINVAL;
Juuso Oikarinenfa61cf72010-06-23 12:12:37 +03001985 local->user_power_level = MBM_TO_DBM(mbm);
Johannes Berg7643a2c2009-06-02 13:01:39 +02001986 break;
Johannes Berg7643a2c2009-06-02 13:01:39 +02001987 }
1988
1989 ieee80211_hw_config(local, changes);
1990
1991 return 0;
1992}
1993
1994static int ieee80211_get_tx_power(struct wiphy *wiphy, int *dbm)
1995{
1996 struct ieee80211_local *local = wiphy_priv(wiphy);
1997
1998 *dbm = local->hw.conf.power_level;
1999
Johannes Berg7643a2c2009-06-02 13:01:39 +02002000 return 0;
2001}
2002
Johannes Bergab737a42009-07-01 21:26:58 +02002003static int ieee80211_set_wds_peer(struct wiphy *wiphy, struct net_device *dev,
Johannes Berg388ac772010-10-07 13:11:09 +02002004 const u8 *addr)
Johannes Bergab737a42009-07-01 21:26:58 +02002005{
2006 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2007
2008 memcpy(&sdata->u.wds.remote_addr, addr, ETH_ALEN);
2009
2010 return 0;
2011}
2012
Johannes Berg1f87f7d2009-06-02 13:01:41 +02002013static void ieee80211_rfkill_poll(struct wiphy *wiphy)
2014{
2015 struct ieee80211_local *local = wiphy_priv(wiphy);
2016
2017 drv_rfkill_poll(local);
2018}
2019
Johannes Bergaff89a92009-07-01 21:26:51 +02002020#ifdef CONFIG_NL80211_TESTMODE
Johannes Berg99783e22009-07-07 03:54:43 +02002021static int ieee80211_testmode_cmd(struct wiphy *wiphy, void *data, int len)
Johannes Bergaff89a92009-07-01 21:26:51 +02002022{
2023 struct ieee80211_local *local = wiphy_priv(wiphy);
2024
2025 if (!local->ops->testmode_cmd)
2026 return -EOPNOTSUPP;
2027
2028 return local->ops->testmode_cmd(&local->hw, data, len);
2029}
Wey-Yi Guy71063f02011-05-20 09:05:54 -07002030
2031static int ieee80211_testmode_dump(struct wiphy *wiphy,
2032 struct sk_buff *skb,
2033 struct netlink_callback *cb,
2034 void *data, int len)
2035{
2036 struct ieee80211_local *local = wiphy_priv(wiphy);
2037
2038 if (!local->ops->testmode_dump)
2039 return -EOPNOTSUPP;
2040
2041 return local->ops->testmode_dump(&local->hw, skb, cb, data, len);
2042}
Johannes Bergaff89a92009-07-01 21:26:51 +02002043#endif
2044
Johannes Berg0f782312009-12-01 13:37:02 +01002045int __ieee80211_request_smps(struct ieee80211_sub_if_data *sdata,
2046 enum ieee80211_smps_mode smps_mode)
2047{
2048 const u8 *ap;
2049 enum ieee80211_smps_mode old_req;
2050 int err;
2051
Johannes Berg243e6df2011-04-19 20:44:04 +02002052 lockdep_assert_held(&sdata->u.mgd.mtx);
2053
Johannes Berg0f782312009-12-01 13:37:02 +01002054 old_req = sdata->u.mgd.req_smps;
2055 sdata->u.mgd.req_smps = smps_mode;
2056
2057 if (old_req == smps_mode &&
2058 smps_mode != IEEE80211_SMPS_AUTOMATIC)
2059 return 0;
2060
2061 /*
2062 * If not associated, or current association is not an HT
Johannes Berg04ecd252012-09-11 14:34:12 +02002063 * association, there's no need to do anything, just store
2064 * the new value until we associate.
Johannes Berg0f782312009-12-01 13:37:02 +01002065 */
2066 if (!sdata->u.mgd.associated ||
Johannes Berg04ecd252012-09-11 14:34:12 +02002067 sdata->vif.bss_conf.channel_type == NL80211_CHAN_NO_HT)
Johannes Berg0f782312009-12-01 13:37:02 +01002068 return 0;
Johannes Berg0f782312009-12-01 13:37:02 +01002069
Johannes Berg0c1ad2c2009-12-23 13:15:39 +01002070 ap = sdata->u.mgd.associated->bssid;
Johannes Berg0f782312009-12-01 13:37:02 +01002071
2072 if (smps_mode == IEEE80211_SMPS_AUTOMATIC) {
2073 if (sdata->u.mgd.powersave)
2074 smps_mode = IEEE80211_SMPS_DYNAMIC;
2075 else
2076 smps_mode = IEEE80211_SMPS_OFF;
2077 }
2078
2079 /* send SM PS frame to AP */
2080 err = ieee80211_send_smps_action(sdata, smps_mode,
2081 ap, ap);
2082 if (err)
2083 sdata->u.mgd.req_smps = old_req;
2084
2085 return err;
2086}
2087
Johannes Bergbc92afd2009-07-01 21:26:57 +02002088static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev,
2089 bool enabled, int timeout)
2090{
2091 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2092 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Johannes Bergbc92afd2009-07-01 21:26:57 +02002093
Benoit Papillaulte5de30c2010-01-15 12:21:37 +01002094 if (sdata->vif.type != NL80211_IFTYPE_STATION)
2095 return -EOPNOTSUPP;
2096
Johannes Bergbc92afd2009-07-01 21:26:57 +02002097 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
2098 return -EOPNOTSUPP;
2099
2100 if (enabled == sdata->u.mgd.powersave &&
Juuso Oikarinenff616382010-06-09 09:51:52 +03002101 timeout == local->dynamic_ps_forced_timeout)
Johannes Bergbc92afd2009-07-01 21:26:57 +02002102 return 0;
2103
2104 sdata->u.mgd.powersave = enabled;
Juuso Oikarinenff616382010-06-09 09:51:52 +03002105 local->dynamic_ps_forced_timeout = timeout;
Johannes Bergbc92afd2009-07-01 21:26:57 +02002106
Johannes Berg0f782312009-12-01 13:37:02 +01002107 /* no change, but if automatic follow powersave */
2108 mutex_lock(&sdata->u.mgd.mtx);
2109 __ieee80211_request_smps(sdata, sdata->u.mgd.req_smps);
2110 mutex_unlock(&sdata->u.mgd.mtx);
2111
Johannes Bergbc92afd2009-07-01 21:26:57 +02002112 if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
2113 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2114
2115 ieee80211_recalc_ps(local, -1);
Eliad Pellerab095872012-07-27 12:33:22 +03002116 ieee80211_recalc_ps_vif(sdata);
Johannes Bergbc92afd2009-07-01 21:26:57 +02002117
2118 return 0;
2119}
2120
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002121static int ieee80211_set_cqm_rssi_config(struct wiphy *wiphy,
2122 struct net_device *dev,
2123 s32 rssi_thold, u32 rssi_hyst)
2124{
2125 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002126 struct ieee80211_vif *vif = &sdata->vif;
2127 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
2128
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002129 if (rssi_thold == bss_conf->cqm_rssi_thold &&
2130 rssi_hyst == bss_conf->cqm_rssi_hyst)
2131 return 0;
2132
2133 bss_conf->cqm_rssi_thold = rssi_thold;
2134 bss_conf->cqm_rssi_hyst = rssi_hyst;
2135
2136 /* tell the driver upon association, unless already associated */
Johannes Bergea086352012-01-19 09:29:58 +01002137 if (sdata->u.mgd.associated &&
2138 sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02002139 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_CQM);
2140
2141 return 0;
2142}
2143
Johannes Berg99303802009-07-01 21:26:59 +02002144static int ieee80211_set_bitrate_mask(struct wiphy *wiphy,
2145 struct net_device *dev,
2146 const u8 *addr,
2147 const struct cfg80211_bitrate_mask *mask)
2148{
2149 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2150 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +05302151 int i, ret;
Johannes Berg99303802009-07-01 21:26:59 +02002152
Eliad Peller554a43d2012-06-12 12:41:15 +03002153 if (!ieee80211_sdata_running(sdata))
2154 return -ENETDOWN;
2155
Sujith Manoharanbdbfd6b2011-04-27 16:56:51 +05302156 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL) {
2157 ret = drv_set_bitrate_mask(local, sdata, mask);
2158 if (ret)
2159 return ret;
2160 }
Johannes Berg99303802009-07-01 21:26:59 +02002161
Simon Wunderlich19468412012-01-28 17:25:33 +01002162 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002163 sdata->rc_rateidx_mask[i] = mask->control[i].legacy;
Simon Wunderlich19468412012-01-28 17:25:33 +01002164 memcpy(sdata->rc_rateidx_mcs_mask[i], mask->control[i].mcs,
2165 sizeof(mask->control[i].mcs));
2166 }
Johannes Berg99303802009-07-01 21:26:59 +02002167
Jouni Malinen37eb0b12010-01-06 13:09:08 +02002168 return 0;
Johannes Berg99303802009-07-01 21:26:59 +02002169}
2170
Johannes Berg2eb278e2012-06-05 14:28:42 +02002171static int ieee80211_start_roc_work(struct ieee80211_local *local,
2172 struct ieee80211_sub_if_data *sdata,
2173 struct ieee80211_channel *channel,
2174 enum nl80211_channel_type channel_type,
2175 unsigned int duration, u64 *cookie,
2176 struct sk_buff *txskb)
Johannes Berg21f83582010-12-18 17:20:47 +01002177{
Johannes Berg2eb278e2012-06-05 14:28:42 +02002178 struct ieee80211_roc_work *roc, *tmp;
2179 bool queued = false;
Johannes Berg21f83582010-12-18 17:20:47 +01002180 int ret;
Johannes Berg21f83582010-12-18 17:20:47 +01002181
2182 lockdep_assert_held(&local->mtx);
2183
Johannes Bergfe57d9f2012-07-26 14:55:08 +02002184 if (local->use_chanctx && !local->ops->remain_on_channel)
2185 return -EOPNOTSUPP;
2186
Johannes Berg2eb278e2012-06-05 14:28:42 +02002187 roc = kzalloc(sizeof(*roc), GFP_KERNEL);
2188 if (!roc)
2189 return -ENOMEM;
Johannes Berg21f83582010-12-18 17:20:47 +01002190
Johannes Berg2eb278e2012-06-05 14:28:42 +02002191 roc->chan = channel;
2192 roc->chan_type = channel_type;
2193 roc->duration = duration;
2194 roc->req_duration = duration;
2195 roc->frame = txskb;
2196 roc->mgmt_tx_cookie = (unsigned long)txskb;
2197 roc->sdata = sdata;
2198 INIT_DELAYED_WORK(&roc->work, ieee80211_sw_roc_work);
2199 INIT_LIST_HEAD(&roc->dependents);
2200
2201 /* if there's one pending or we're scanning, queue this one */
2202 if (!list_empty(&local->roc_list) || local->scanning)
2203 goto out_check_combine;
2204
2205 /* if not HW assist, just queue & schedule work */
2206 if (!local->ops->remain_on_channel) {
2207 ieee80211_queue_delayed_work(&local->hw, &roc->work, 0);
2208 goto out_queue;
Johannes Berg21f83582010-12-18 17:20:47 +01002209 }
2210
Johannes Berg2eb278e2012-06-05 14:28:42 +02002211 /* otherwise actually kick it off here (for error handling) */
2212
2213 /*
2214 * If the duration is zero, then the driver
2215 * wouldn't actually do anything. Set it to
2216 * 10 for now.
2217 *
2218 * TODO: cancel the off-channel operation
2219 * when we get the SKB's TX status and
2220 * the wait time was zero before.
2221 */
2222 if (!duration)
2223 duration = 10;
2224
2225 ret = drv_remain_on_channel(local, channel, channel_type, duration);
2226 if (ret) {
2227 kfree(roc);
2228 return ret;
2229 }
2230
2231 roc->started = true;
2232 goto out_queue;
2233
2234 out_check_combine:
2235 list_for_each_entry(tmp, &local->roc_list, list) {
2236 if (tmp->chan != channel || tmp->chan_type != channel_type)
2237 continue;
2238
2239 /*
2240 * Extend this ROC if possible:
2241 *
2242 * If it hasn't started yet, just increase the duration
2243 * and add the new one to the list of dependents.
2244 */
2245 if (!tmp->started) {
2246 list_add_tail(&roc->list, &tmp->dependents);
2247 tmp->duration = max(tmp->duration, roc->duration);
2248 queued = true;
2249 break;
2250 }
2251
2252 /* If it has already started, it's more difficult ... */
2253 if (local->ops->remain_on_channel) {
2254 unsigned long j = jiffies;
2255
2256 /*
2257 * In the offloaded ROC case, if it hasn't begun, add
2258 * this new one to the dependent list to be handled
2259 * when the the master one begins. If it has begun,
2260 * check that there's still a minimum time left and
2261 * if so, start this one, transmitting the frame, but
2262 * add it to the list directly after this one with a
2263 * a reduced time so we'll ask the driver to execute
2264 * it right after finishing the previous one, in the
2265 * hope that it'll also be executed right afterwards,
2266 * effectively extending the old one.
2267 * If there's no minimum time left, just add it to the
2268 * normal list.
2269 */
2270 if (!tmp->hw_begun) {
2271 list_add_tail(&roc->list, &tmp->dependents);
2272 queued = true;
2273 break;
2274 }
2275
2276 if (time_before(j + IEEE80211_ROC_MIN_LEFT,
2277 tmp->hw_start_time +
2278 msecs_to_jiffies(tmp->duration))) {
2279 int new_dur;
2280
2281 ieee80211_handle_roc_started(roc);
2282
2283 new_dur = roc->duration -
2284 jiffies_to_msecs(tmp->hw_start_time +
2285 msecs_to_jiffies(
2286 tmp->duration) -
2287 j);
2288
2289 if (new_dur > 0) {
2290 /* add right after tmp */
2291 list_add(&roc->list, &tmp->list);
2292 } else {
2293 list_add_tail(&roc->list,
2294 &tmp->dependents);
2295 }
2296 queued = true;
2297 }
2298 } else if (del_timer_sync(&tmp->work.timer)) {
2299 unsigned long new_end;
2300
2301 /*
2302 * In the software ROC case, cancel the timer, if
2303 * that fails then the finish work is already
2304 * queued/pending and thus we queue the new ROC
2305 * normally, if that succeeds then we can extend
2306 * the timer duration and TX the frame (if any.)
2307 */
2308
2309 list_add_tail(&roc->list, &tmp->dependents);
2310 queued = true;
2311
2312 new_end = jiffies + msecs_to_jiffies(roc->duration);
2313
2314 /* ok, it was started & we canceled timer */
2315 if (time_after(new_end, tmp->work.timer.expires))
2316 mod_timer(&tmp->work.timer, new_end);
2317 else
2318 add_timer(&tmp->work.timer);
2319
2320 ieee80211_handle_roc_started(roc);
2321 }
2322 break;
2323 }
2324
2325 out_queue:
2326 if (!queued)
2327 list_add_tail(&roc->list, &local->roc_list);
2328
2329 /*
2330 * cookie is either the roc (for normal roc)
2331 * or the SKB (for mgmt TX)
2332 */
2333 if (txskb)
2334 *cookie = (unsigned long)txskb;
2335 else
2336 *cookie = (unsigned long)roc;
2337
2338 return 0;
Johannes Berg21f83582010-12-18 17:20:47 +01002339}
2340
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002341static int ieee80211_remain_on_channel(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02002342 struct wireless_dev *wdev,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002343 struct ieee80211_channel *chan,
2344 enum nl80211_channel_type channel_type,
2345 unsigned int duration,
2346 u64 *cookie)
2347{
Johannes Berg71bbc992012-06-15 15:30:18 +02002348 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg21f83582010-12-18 17:20:47 +01002349 struct ieee80211_local *local = sdata->local;
Johannes Berg21f83582010-12-18 17:20:47 +01002350 int ret;
2351
Johannes Berg2eb278e2012-06-05 14:28:42 +02002352 mutex_lock(&local->mtx);
2353 ret = ieee80211_start_roc_work(local, sdata, chan, channel_type,
2354 duration, cookie, NULL);
2355 mutex_unlock(&local->mtx);
Johannes Berg21f83582010-12-18 17:20:47 +01002356
Johannes Berg2eb278e2012-06-05 14:28:42 +02002357 return ret;
2358}
2359
2360static int ieee80211_cancel_roc(struct ieee80211_local *local,
2361 u64 cookie, bool mgmt_tx)
2362{
2363 struct ieee80211_roc_work *roc, *tmp, *found = NULL;
2364 int ret;
2365
2366 mutex_lock(&local->mtx);
2367 list_for_each_entry_safe(roc, tmp, &local->roc_list, list) {
Johannes Berge979e332012-06-11 17:09:41 +02002368 struct ieee80211_roc_work *dep, *tmp2;
2369
2370 list_for_each_entry_safe(dep, tmp2, &roc->dependents, list) {
2371 if (!mgmt_tx && (unsigned long)dep != cookie)
2372 continue;
2373 else if (mgmt_tx && dep->mgmt_tx_cookie != cookie)
2374 continue;
2375 /* found dependent item -- just remove it */
2376 list_del(&dep->list);
2377 mutex_unlock(&local->mtx);
2378
2379 ieee80211_roc_notify_destroy(dep);
2380 return 0;
2381 }
2382
Johannes Berg2eb278e2012-06-05 14:28:42 +02002383 if (!mgmt_tx && (unsigned long)roc != cookie)
2384 continue;
2385 else if (mgmt_tx && roc->mgmt_tx_cookie != cookie)
2386 continue;
2387
2388 found = roc;
2389 break;
2390 }
2391
2392 if (!found) {
2393 mutex_unlock(&local->mtx);
Johannes Berg21f83582010-12-18 17:20:47 +01002394 return -ENOENT;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002395 }
Johannes Berg21f83582010-12-18 17:20:47 +01002396
Johannes Berge979e332012-06-11 17:09:41 +02002397 /*
2398 * We found the item to cancel, so do that. Note that it
2399 * may have dependents, which we also cancel (and send
2400 * the expired signal for.) Not doing so would be quite
2401 * tricky here, but we may need to fix it later.
2402 */
2403
Johannes Berg2eb278e2012-06-05 14:28:42 +02002404 if (local->ops->remain_on_channel) {
2405 if (found->started) {
2406 ret = drv_cancel_remain_on_channel(local);
2407 if (WARN_ON_ONCE(ret)) {
2408 mutex_unlock(&local->mtx);
2409 return ret;
2410 }
2411 }
Johannes Berg21f83582010-12-18 17:20:47 +01002412
Johannes Berg2eb278e2012-06-05 14:28:42 +02002413 list_del(&found->list);
2414
Johannes Berg0f6b3f52012-06-20 20:11:33 +02002415 if (found->started)
2416 ieee80211_start_next_roc(local);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002417 mutex_unlock(&local->mtx);
2418
2419 ieee80211_roc_notify_destroy(found);
2420 } else {
2421 /* work may be pending so use it all the time */
2422 found->abort = true;
2423 ieee80211_queue_delayed_work(&local->hw, &found->work, 0);
2424
2425 mutex_unlock(&local->mtx);
2426
2427 /* work will clean up etc */
2428 flush_delayed_work(&found->work);
2429 }
Johannes Berg21f83582010-12-18 17:20:47 +01002430
Johannes Berg21f83582010-12-18 17:20:47 +01002431 return 0;
2432}
2433
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002434static int ieee80211_cancel_remain_on_channel(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02002435 struct wireless_dev *wdev,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01002436 u64 cookie)
2437{
Johannes Berg71bbc992012-06-15 15:30:18 +02002438 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg21f83582010-12-18 17:20:47 +01002439 struct ieee80211_local *local = sdata->local;
2440
Johannes Berg2eb278e2012-06-05 14:28:42 +02002441 return ieee80211_cancel_roc(local, cookie, false);
Johannes Bergf30221e2010-11-25 10:02:30 +01002442}
2443
Johannes Berg71bbc992012-06-15 15:30:18 +02002444static int ieee80211_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
Johannes Bergf7ca38d2010-11-25 10:02:29 +01002445 struct ieee80211_channel *chan, bool offchan,
Johannes Berg2e161f72010-08-12 15:38:38 +02002446 enum nl80211_channel_type channel_type,
Johannes Bergf7ca38d2010-11-25 10:02:29 +01002447 bool channel_type_valid, unsigned int wait,
Rajkumar Manoharane9f935e2011-09-25 14:53:30 +05302448 const u8 *buf, size_t len, bool no_cck,
Johannes Berge247bd902011-11-04 11:18:21 +01002449 bool dont_wait_for_ack, u64 *cookie)
Jouni Malinen026331c2010-02-15 12:53:10 +02002450{
Johannes Berg71bbc992012-06-15 15:30:18 +02002451 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg9d38d852010-06-09 17:20:33 +02002452 struct ieee80211_local *local = sdata->local;
2453 struct sk_buff *skb;
2454 struct sta_info *sta;
2455 const struct ieee80211_mgmt *mgmt = (void *)buf;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002456 bool need_offchan = false;
Johannes Berge247bd902011-11-04 11:18:21 +01002457 u32 flags;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002458 int ret;
Johannes Bergf7ca38d2010-11-25 10:02:29 +01002459
Johannes Berge247bd902011-11-04 11:18:21 +01002460 if (dont_wait_for_ack)
2461 flags = IEEE80211_TX_CTL_NO_ACK;
2462 else
2463 flags = IEEE80211_TX_INTFL_NL80211_FRAME_TX |
2464 IEEE80211_TX_CTL_REQ_TX_STATUS;
2465
Rajkumar Manoharanaad14ce2011-09-25 14:53:31 +05302466 if (no_cck)
2467 flags |= IEEE80211_TX_CTL_NO_CCK_RATE;
2468
Johannes Berg9d38d852010-06-09 17:20:33 +02002469 switch (sdata->vif.type) {
2470 case NL80211_IFTYPE_ADHOC:
Johannes Berg2eb278e2012-06-05 14:28:42 +02002471 if (!sdata->vif.bss_conf.ibss_joined)
2472 need_offchan = true;
2473 /* fall through */
2474#ifdef CONFIG_MAC80211_MESH
2475 case NL80211_IFTYPE_MESH_POINT:
2476 if (ieee80211_vif_is_mesh(&sdata->vif) &&
2477 !sdata->u.mesh.mesh_id_len)
2478 need_offchan = true;
2479 /* fall through */
2480#endif
Johannes Berg663fcaf2010-09-30 21:06:09 +02002481 case NL80211_IFTYPE_AP:
2482 case NL80211_IFTYPE_AP_VLAN:
2483 case NL80211_IFTYPE_P2P_GO:
Johannes Berg2eb278e2012-06-05 14:28:42 +02002484 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
2485 !ieee80211_vif_is_mesh(&sdata->vif) &&
2486 !rcu_access_pointer(sdata->bss->beacon))
2487 need_offchan = true;
Johannes Berg663fcaf2010-09-30 21:06:09 +02002488 if (!ieee80211_is_action(mgmt->frame_control) ||
2489 mgmt->u.action.category == WLAN_CATEGORY_PUBLIC)
Johannes Berg9d38d852010-06-09 17:20:33 +02002490 break;
2491 rcu_read_lock();
2492 sta = sta_info_get(sdata, mgmt->da);
2493 rcu_read_unlock();
2494 if (!sta)
2495 return -ENOLINK;
2496 break;
2497 case NL80211_IFTYPE_STATION:
Johannes Berg663fcaf2010-09-30 21:06:09 +02002498 case NL80211_IFTYPE_P2P_CLIENT:
Johannes Berg2eb278e2012-06-05 14:28:42 +02002499 if (!sdata->u.mgd.associated)
2500 need_offchan = true;
Johannes Berg9d38d852010-06-09 17:20:33 +02002501 break;
Johannes Bergf142c6b2012-06-18 20:07:15 +02002502 case NL80211_IFTYPE_P2P_DEVICE:
2503 need_offchan = true;
2504 break;
Johannes Berg9d38d852010-06-09 17:20:33 +02002505 default:
2506 return -EOPNOTSUPP;
2507 }
2508
Johannes Berg2eb278e2012-06-05 14:28:42 +02002509 mutex_lock(&local->mtx);
2510
2511 /* Check if the operating channel is the requested channel */
2512 if (!need_offchan) {
Johannes Berg55de9082012-07-26 17:24:39 +02002513 struct ieee80211_chanctx_conf *chanctx_conf;
2514
2515 rcu_read_lock();
2516 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2517
2518 if (chanctx_conf) {
2519 need_offchan = chan != chanctx_conf->channel;
2520 if (channel_type_valid &&
2521 channel_type != chanctx_conf->channel_type)
2522 need_offchan = true;
2523 } else {
Johannes Berg2eb278e2012-06-05 14:28:42 +02002524 need_offchan = true;
Johannes Berg55de9082012-07-26 17:24:39 +02002525 }
2526 rcu_read_unlock();
Johannes Berg2eb278e2012-06-05 14:28:42 +02002527 }
2528
2529 if (need_offchan && !offchan) {
2530 ret = -EBUSY;
2531 goto out_unlock;
2532 }
2533
Johannes Berg9d38d852010-06-09 17:20:33 +02002534 skb = dev_alloc_skb(local->hw.extra_tx_headroom + len);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002535 if (!skb) {
2536 ret = -ENOMEM;
2537 goto out_unlock;
2538 }
Johannes Berg9d38d852010-06-09 17:20:33 +02002539 skb_reserve(skb, local->hw.extra_tx_headroom);
2540
2541 memcpy(skb_put(skb, len), buf, len);
2542
2543 IEEE80211_SKB_CB(skb)->flags = flags;
2544
Johannes Berg2eb278e2012-06-05 14:28:42 +02002545 skb->dev = sdata->dev;
2546
2547 if (!need_offchan) {
Nicolas Cavallari7f9f78a2012-07-16 18:36:52 +02002548 *cookie = (unsigned long) skb;
Johannes Berg2eb278e2012-06-05 14:28:42 +02002549 ieee80211_tx_skb(sdata, skb);
2550 ret = 0;
2551 goto out_unlock;
2552 }
2553
2554 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_TX_OFFCHAN;
2555 if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)
Johannes Berg3a25a8c2012-04-03 16:28:50 +02002556 IEEE80211_SKB_CB(skb)->hw_queue =
2557 local->hw.offchannel_tx_hw_queue;
2558
Johannes Berg2eb278e2012-06-05 14:28:42 +02002559 /* This will handle all kinds of coalescing and immediate TX */
2560 ret = ieee80211_start_roc_work(local, sdata, chan, channel_type,
2561 wait, cookie, skb);
2562 if (ret)
Johannes Bergf30221e2010-11-25 10:02:30 +01002563 kfree_skb(skb);
Johannes Berg2eb278e2012-06-05 14:28:42 +02002564 out_unlock:
2565 mutex_unlock(&local->mtx);
2566 return ret;
Jouni Malinen026331c2010-02-15 12:53:10 +02002567}
2568
Johannes Bergf30221e2010-11-25 10:02:30 +01002569static int ieee80211_mgmt_tx_cancel_wait(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02002570 struct wireless_dev *wdev,
Johannes Bergf30221e2010-11-25 10:02:30 +01002571 u64 cookie)
2572{
Johannes Berg71bbc992012-06-15 15:30:18 +02002573 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Bergf30221e2010-11-25 10:02:30 +01002574
Johannes Berg2eb278e2012-06-05 14:28:42 +02002575 return ieee80211_cancel_roc(local, cookie, true);
Johannes Bergf30221e2010-11-25 10:02:30 +01002576}
2577
Johannes Berg7be50862010-10-13 12:06:24 +02002578static void ieee80211_mgmt_frame_register(struct wiphy *wiphy,
Johannes Berg71bbc992012-06-15 15:30:18 +02002579 struct wireless_dev *wdev,
Johannes Berg7be50862010-10-13 12:06:24 +02002580 u16 frame_type, bool reg)
2581{
2582 struct ieee80211_local *local = wiphy_priv(wiphy);
Johannes Berg71bbc992012-06-15 15:30:18 +02002583 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
Johannes Berg7be50862010-10-13 12:06:24 +02002584
Will Hawkins6abe0562012-06-20 11:51:14 -04002585 switch (frame_type) {
2586 case IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_AUTH:
2587 if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
2588 struct ieee80211_if_ibss *ifibss = &sdata->u.ibss;
Johannes Berg7be50862010-10-13 12:06:24 +02002589
Will Hawkins6abe0562012-06-20 11:51:14 -04002590 if (reg)
2591 ifibss->auth_frame_registrations++;
2592 else
2593 ifibss->auth_frame_registrations--;
2594 }
2595 break;
2596 case IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_PROBE_REQ:
2597 if (reg)
2598 local->probe_req_reg++;
2599 else
2600 local->probe_req_reg--;
Johannes Berg7be50862010-10-13 12:06:24 +02002601
Will Hawkins6abe0562012-06-20 11:51:14 -04002602 ieee80211_queue_work(&local->hw, &local->reconfig_filter);
2603 break;
2604 default:
2605 break;
2606 }
Johannes Berg7be50862010-10-13 12:06:24 +02002607}
2608
Bruno Randolf15d96752010-11-10 12:50:56 +09002609static int ieee80211_set_antenna(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant)
2610{
2611 struct ieee80211_local *local = wiphy_priv(wiphy);
2612
2613 if (local->started)
2614 return -EOPNOTSUPP;
2615
2616 return drv_set_antenna(local, tx_ant, rx_ant);
2617}
2618
2619static int ieee80211_get_antenna(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant)
2620{
2621 struct ieee80211_local *local = wiphy_priv(wiphy);
2622
2623 return drv_get_antenna(local, tx_ant, rx_ant);
2624}
2625
John W. Linville38c09152011-03-07 16:19:18 -05002626static int ieee80211_set_ringparam(struct wiphy *wiphy, u32 tx, u32 rx)
2627{
2628 struct ieee80211_local *local = wiphy_priv(wiphy);
2629
2630 return drv_set_ringparam(local, tx, rx);
2631}
2632
2633static void ieee80211_get_ringparam(struct wiphy *wiphy,
2634 u32 *tx, u32 *tx_max, u32 *rx, u32 *rx_max)
2635{
2636 struct ieee80211_local *local = wiphy_priv(wiphy);
2637
2638 drv_get_ringparam(local, tx, tx_max, rx, rx_max);
2639}
2640
Johannes Bergc68f4b82011-07-05 16:35:41 +02002641static int ieee80211_set_rekey_data(struct wiphy *wiphy,
2642 struct net_device *dev,
2643 struct cfg80211_gtk_rekey_data *data)
2644{
2645 struct ieee80211_local *local = wiphy_priv(wiphy);
2646 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2647
2648 if (!local->ops->set_rekey_data)
2649 return -EOPNOTSUPP;
2650
2651 drv_set_rekey_data(local, sdata, data);
2652
2653 return 0;
2654}
2655
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03002656static void ieee80211_tdls_add_ext_capab(struct sk_buff *skb)
2657{
2658 u8 *pos = (void *)skb_put(skb, 7);
2659
2660 *pos++ = WLAN_EID_EXT_CAPABILITY;
2661 *pos++ = 5; /* len */
2662 *pos++ = 0x0;
2663 *pos++ = 0x0;
2664 *pos++ = 0x0;
2665 *pos++ = 0x0;
2666 *pos++ = WLAN_EXT_CAPA5_TDLS_ENABLED;
2667}
2668
2669static u16 ieee80211_get_tdls_sta_capab(struct ieee80211_sub_if_data *sdata)
2670{
2671 struct ieee80211_local *local = sdata->local;
2672 u16 capab;
2673
2674 capab = 0;
Johannes Berg55de9082012-07-26 17:24:39 +02002675 if (ieee80211_get_sdata_band(sdata) != IEEE80211_BAND_2GHZ)
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03002676 return capab;
2677
2678 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
2679 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
2680 if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
2681 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
2682
2683 return capab;
2684}
2685
2686static void ieee80211_tdls_add_link_ie(struct sk_buff *skb, u8 *src_addr,
2687 u8 *peer, u8 *bssid)
2688{
2689 struct ieee80211_tdls_lnkie *lnkid;
2690
2691 lnkid = (void *)skb_put(skb, sizeof(struct ieee80211_tdls_lnkie));
2692
2693 lnkid->ie_type = WLAN_EID_LINK_ID;
2694 lnkid->ie_len = sizeof(struct ieee80211_tdls_lnkie) - 2;
2695
2696 memcpy(lnkid->bssid, bssid, ETH_ALEN);
2697 memcpy(lnkid->init_sta, src_addr, ETH_ALEN);
2698 memcpy(lnkid->resp_sta, peer, ETH_ALEN);
2699}
2700
2701static int
2702ieee80211_prep_tdls_encap_data(struct wiphy *wiphy, struct net_device *dev,
2703 u8 *peer, u8 action_code, u8 dialog_token,
2704 u16 status_code, struct sk_buff *skb)
2705{
2706 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg55de9082012-07-26 17:24:39 +02002707 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03002708 struct ieee80211_tdls_data *tf;
2709
2710 tf = (void *)skb_put(skb, offsetof(struct ieee80211_tdls_data, u));
2711
2712 memcpy(tf->da, peer, ETH_ALEN);
2713 memcpy(tf->sa, sdata->vif.addr, ETH_ALEN);
2714 tf->ether_type = cpu_to_be16(ETH_P_TDLS);
2715 tf->payload_type = WLAN_TDLS_SNAP_RFTYPE;
2716
2717 switch (action_code) {
2718 case WLAN_TDLS_SETUP_REQUEST:
2719 tf->category = WLAN_CATEGORY_TDLS;
2720 tf->action_code = WLAN_TDLS_SETUP_REQUEST;
2721
2722 skb_put(skb, sizeof(tf->u.setup_req));
2723 tf->u.setup_req.dialog_token = dialog_token;
2724 tf->u.setup_req.capability =
2725 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata));
2726
Johannes Berg55de9082012-07-26 17:24:39 +02002727 ieee80211_add_srates_ie(sdata, skb, false, band);
2728 ieee80211_add_ext_srates_ie(sdata, skb, false, band);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03002729 ieee80211_tdls_add_ext_capab(skb);
2730 break;
2731 case WLAN_TDLS_SETUP_RESPONSE:
2732 tf->category = WLAN_CATEGORY_TDLS;
2733 tf->action_code = WLAN_TDLS_SETUP_RESPONSE;
2734
2735 skb_put(skb, sizeof(tf->u.setup_resp));
2736 tf->u.setup_resp.status_code = cpu_to_le16(status_code);
2737 tf->u.setup_resp.dialog_token = dialog_token;
2738 tf->u.setup_resp.capability =
2739 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata));
2740
Johannes Berg55de9082012-07-26 17:24:39 +02002741 ieee80211_add_srates_ie(sdata, skb, false, band);
2742 ieee80211_add_ext_srates_ie(sdata, skb, false, band);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03002743 ieee80211_tdls_add_ext_capab(skb);
2744 break;
2745 case WLAN_TDLS_SETUP_CONFIRM:
2746 tf->category = WLAN_CATEGORY_TDLS;
2747 tf->action_code = WLAN_TDLS_SETUP_CONFIRM;
2748
2749 skb_put(skb, sizeof(tf->u.setup_cfm));
2750 tf->u.setup_cfm.status_code = cpu_to_le16(status_code);
2751 tf->u.setup_cfm.dialog_token = dialog_token;
2752 break;
2753 case WLAN_TDLS_TEARDOWN:
2754 tf->category = WLAN_CATEGORY_TDLS;
2755 tf->action_code = WLAN_TDLS_TEARDOWN;
2756
2757 skb_put(skb, sizeof(tf->u.teardown));
2758 tf->u.teardown.reason_code = cpu_to_le16(status_code);
2759 break;
2760 case WLAN_TDLS_DISCOVERY_REQUEST:
2761 tf->category = WLAN_CATEGORY_TDLS;
2762 tf->action_code = WLAN_TDLS_DISCOVERY_REQUEST;
2763
2764 skb_put(skb, sizeof(tf->u.discover_req));
2765 tf->u.discover_req.dialog_token = dialog_token;
2766 break;
2767 default:
2768 return -EINVAL;
2769 }
2770
2771 return 0;
2772}
2773
2774static int
2775ieee80211_prep_tdls_direct(struct wiphy *wiphy, struct net_device *dev,
2776 u8 *peer, u8 action_code, u8 dialog_token,
2777 u16 status_code, struct sk_buff *skb)
2778{
2779 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg55de9082012-07-26 17:24:39 +02002780 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03002781 struct ieee80211_mgmt *mgmt;
2782
2783 mgmt = (void *)skb_put(skb, 24);
2784 memset(mgmt, 0, 24);
2785 memcpy(mgmt->da, peer, ETH_ALEN);
2786 memcpy(mgmt->sa, sdata->vif.addr, ETH_ALEN);
2787 memcpy(mgmt->bssid, sdata->u.mgd.bssid, ETH_ALEN);
2788
2789 mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2790 IEEE80211_STYPE_ACTION);
2791
2792 switch (action_code) {
2793 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
2794 skb_put(skb, 1 + sizeof(mgmt->u.action.u.tdls_discover_resp));
2795 mgmt->u.action.category = WLAN_CATEGORY_PUBLIC;
2796 mgmt->u.action.u.tdls_discover_resp.action_code =
2797 WLAN_PUB_ACTION_TDLS_DISCOVER_RES;
2798 mgmt->u.action.u.tdls_discover_resp.dialog_token =
2799 dialog_token;
2800 mgmt->u.action.u.tdls_discover_resp.capability =
2801 cpu_to_le16(ieee80211_get_tdls_sta_capab(sdata));
2802
Johannes Berg55de9082012-07-26 17:24:39 +02002803 ieee80211_add_srates_ie(sdata, skb, false, band);
2804 ieee80211_add_ext_srates_ie(sdata, skb, false, band);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03002805 ieee80211_tdls_add_ext_capab(skb);
2806 break;
2807 default:
2808 return -EINVAL;
2809 }
2810
2811 return 0;
2812}
2813
2814static int ieee80211_tdls_mgmt(struct wiphy *wiphy, struct net_device *dev,
2815 u8 *peer, u8 action_code, u8 dialog_token,
2816 u16 status_code, const u8 *extra_ies,
2817 size_t extra_ies_len)
2818{
2819 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2820 struct ieee80211_local *local = sdata->local;
2821 struct ieee80211_tx_info *info;
2822 struct sk_buff *skb = NULL;
2823 bool send_direct;
2824 int ret;
2825
2826 if (!(wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS))
2827 return -ENOTSUPP;
2828
2829 /* make sure we are in managed mode, and associated */
2830 if (sdata->vif.type != NL80211_IFTYPE_STATION ||
2831 !sdata->u.mgd.associated)
2832 return -EINVAL;
2833
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002834 tdls_dbg(sdata, "TDLS mgmt action %d peer %pM\n",
2835 action_code, peer);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03002836
2837 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
2838 max(sizeof(struct ieee80211_mgmt),
2839 sizeof(struct ieee80211_tdls_data)) +
2840 50 + /* supported rates */
2841 7 + /* ext capab */
2842 extra_ies_len +
2843 sizeof(struct ieee80211_tdls_lnkie));
2844 if (!skb)
2845 return -ENOMEM;
2846
2847 info = IEEE80211_SKB_CB(skb);
2848 skb_reserve(skb, local->hw.extra_tx_headroom);
2849
2850 switch (action_code) {
2851 case WLAN_TDLS_SETUP_REQUEST:
2852 case WLAN_TDLS_SETUP_RESPONSE:
2853 case WLAN_TDLS_SETUP_CONFIRM:
2854 case WLAN_TDLS_TEARDOWN:
2855 case WLAN_TDLS_DISCOVERY_REQUEST:
2856 ret = ieee80211_prep_tdls_encap_data(wiphy, dev, peer,
2857 action_code, dialog_token,
2858 status_code, skb);
2859 send_direct = false;
2860 break;
2861 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
2862 ret = ieee80211_prep_tdls_direct(wiphy, dev, peer, action_code,
2863 dialog_token, status_code,
2864 skb);
2865 send_direct = true;
2866 break;
2867 default:
2868 ret = -ENOTSUPP;
2869 break;
2870 }
2871
2872 if (ret < 0)
2873 goto fail;
2874
2875 if (extra_ies_len)
2876 memcpy(skb_put(skb, extra_ies_len), extra_ies, extra_ies_len);
2877
2878 /* the TDLS link IE is always added last */
2879 switch (action_code) {
2880 case WLAN_TDLS_SETUP_REQUEST:
2881 case WLAN_TDLS_SETUP_CONFIRM:
2882 case WLAN_TDLS_TEARDOWN:
2883 case WLAN_TDLS_DISCOVERY_REQUEST:
2884 /* we are the initiator */
2885 ieee80211_tdls_add_link_ie(skb, sdata->vif.addr, peer,
2886 sdata->u.mgd.bssid);
2887 break;
2888 case WLAN_TDLS_SETUP_RESPONSE:
2889 case WLAN_PUB_ACTION_TDLS_DISCOVER_RES:
2890 /* we are the responder */
2891 ieee80211_tdls_add_link_ie(skb, peer, sdata->vif.addr,
2892 sdata->u.mgd.bssid);
2893 break;
2894 default:
2895 ret = -ENOTSUPP;
2896 goto fail;
2897 }
2898
2899 if (send_direct) {
2900 ieee80211_tx_skb(sdata, skb);
2901 return 0;
2902 }
2903
2904 /*
2905 * According to 802.11z: Setup req/resp are sent in AC_BK, otherwise
2906 * we should default to AC_VI.
2907 */
2908 switch (action_code) {
2909 case WLAN_TDLS_SETUP_REQUEST:
2910 case WLAN_TDLS_SETUP_RESPONSE:
2911 skb_set_queue_mapping(skb, IEEE80211_AC_BK);
2912 skb->priority = 2;
2913 break;
2914 default:
2915 skb_set_queue_mapping(skb, IEEE80211_AC_VI);
2916 skb->priority = 5;
2917 break;
2918 }
2919
2920 /* disable bottom halves when entering the Tx path */
2921 local_bh_disable();
2922 ret = ieee80211_subif_start_xmit(skb, dev);
2923 local_bh_enable();
2924
2925 return ret;
2926
2927fail:
2928 dev_kfree_skb(skb);
2929 return ret;
2930}
2931
2932static int ieee80211_tdls_oper(struct wiphy *wiphy, struct net_device *dev,
2933 u8 *peer, enum nl80211_tdls_operation oper)
2934{
Arik Nemtsov941c93c2011-09-28 14:12:54 +03002935 struct sta_info *sta;
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03002936 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2937
2938 if (!(wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS))
2939 return -ENOTSUPP;
2940
2941 if (sdata->vif.type != NL80211_IFTYPE_STATION)
2942 return -EINVAL;
2943
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02002944 tdls_dbg(sdata, "TDLS oper %d peer %pM\n", oper, peer);
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03002945
2946 switch (oper) {
2947 case NL80211_TDLS_ENABLE_LINK:
Arik Nemtsov941c93c2011-09-28 14:12:54 +03002948 rcu_read_lock();
2949 sta = sta_info_get(sdata, peer);
2950 if (!sta) {
2951 rcu_read_unlock();
2952 return -ENOLINK;
2953 }
2954
Johannes Bergc2c98fd2011-09-29 16:04:36 +02002955 set_sta_flag(sta, WLAN_STA_TDLS_PEER_AUTH);
Arik Nemtsov941c93c2011-09-28 14:12:54 +03002956 rcu_read_unlock();
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03002957 break;
2958 case NL80211_TDLS_DISABLE_LINK:
2959 return sta_info_destroy_addr(sdata, peer);
2960 case NL80211_TDLS_TEARDOWN:
2961 case NL80211_TDLS_SETUP:
2962 case NL80211_TDLS_DISCOVERY_REQ:
2963 /* We don't support in-driver setup/teardown/discovery */
2964 return -ENOTSUPP;
2965 default:
2966 return -ENOTSUPP;
2967 }
2968
2969 return 0;
2970}
2971
Johannes Berg06500732011-11-04 11:18:16 +01002972static int ieee80211_probe_client(struct wiphy *wiphy, struct net_device *dev,
2973 const u8 *peer, u64 *cookie)
2974{
2975 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2976 struct ieee80211_local *local = sdata->local;
2977 struct ieee80211_qos_hdr *nullfunc;
2978 struct sk_buff *skb;
2979 int size = sizeof(*nullfunc);
2980 __le16 fc;
2981 bool qos;
2982 struct ieee80211_tx_info *info;
2983 struct sta_info *sta;
Johannes Berg55de9082012-07-26 17:24:39 +02002984 struct ieee80211_chanctx_conf *chanctx_conf;
2985 enum ieee80211_band band;
Johannes Berg06500732011-11-04 11:18:16 +01002986
2987 rcu_read_lock();
Johannes Berg55de9082012-07-26 17:24:39 +02002988 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
2989 if (WARN_ON(!chanctx_conf)) {
2990 rcu_read_unlock();
2991 return -EINVAL;
2992 }
2993 band = chanctx_conf->channel->band;
Johannes Berg06500732011-11-04 11:18:16 +01002994 sta = sta_info_get(sdata, peer);
Johannes Bergb4487c22011-11-11 20:22:30 +01002995 if (sta) {
Johannes Berg06500732011-11-04 11:18:16 +01002996 qos = test_sta_flag(sta, WLAN_STA_WME);
Johannes Bergb4487c22011-11-11 20:22:30 +01002997 } else {
2998 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01002999 return -ENOLINK;
Johannes Bergb4487c22011-11-11 20:22:30 +01003000 }
Johannes Berg06500732011-11-04 11:18:16 +01003001
3002 if (qos) {
3003 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3004 IEEE80211_STYPE_QOS_NULLFUNC |
3005 IEEE80211_FCTL_FROMDS);
3006 } else {
3007 size -= 2;
3008 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3009 IEEE80211_STYPE_NULLFUNC |
3010 IEEE80211_FCTL_FROMDS);
3011 }
3012
3013 skb = dev_alloc_skb(local->hw.extra_tx_headroom + size);
Johannes Berg55de9082012-07-26 17:24:39 +02003014 if (!skb) {
3015 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003016 return -ENOMEM;
Johannes Berg55de9082012-07-26 17:24:39 +02003017 }
Johannes Berg06500732011-11-04 11:18:16 +01003018
3019 skb->dev = dev;
3020
3021 skb_reserve(skb, local->hw.extra_tx_headroom);
3022
3023 nullfunc = (void *) skb_put(skb, size);
3024 nullfunc->frame_control = fc;
3025 nullfunc->duration_id = 0;
3026 memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN);
3027 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
3028 memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);
3029 nullfunc->seq_ctrl = 0;
3030
3031 info = IEEE80211_SKB_CB(skb);
3032
3033 info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
3034 IEEE80211_TX_INTFL_NL80211_FRAME_TX;
3035
3036 skb_set_queue_mapping(skb, IEEE80211_AC_VO);
3037 skb->priority = 7;
3038 if (qos)
3039 nullfunc->qos_ctrl = cpu_to_le16(7);
3040
3041 local_bh_disable();
Johannes Berg55de9082012-07-26 17:24:39 +02003042 ieee80211_xmit(sdata, skb, band);
Johannes Berg06500732011-11-04 11:18:16 +01003043 local_bh_enable();
Johannes Berg55de9082012-07-26 17:24:39 +02003044 rcu_read_unlock();
Johannes Berg06500732011-11-04 11:18:16 +01003045
3046 *cookie = (unsigned long) skb;
3047 return 0;
3048}
3049
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003050static struct ieee80211_channel *
3051ieee80211_cfg_get_channel(struct wiphy *wiphy, struct wireless_dev *wdev,
3052 enum nl80211_channel_type *type)
3053{
Johannes Berg55de9082012-07-26 17:24:39 +02003054 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
3055 struct ieee80211_chanctx_conf *chanctx_conf;
3056 struct ieee80211_channel *chan = NULL;
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003057
Johannes Berg55de9082012-07-26 17:24:39 +02003058 rcu_read_lock();
3059 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3060 if (chanctx_conf) {
3061 *type = chanctx_conf->channel_type;
3062 chan = chanctx_conf->channel;
3063 }
3064 rcu_read_unlock();
3065
3066 return chan;
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003067}
3068
Johannes Berg6d525632012-04-04 15:05:25 +02003069#ifdef CONFIG_PM
3070static void ieee80211_set_wakeup(struct wiphy *wiphy, bool enabled)
3071{
3072 drv_set_wakeup(wiphy_priv(wiphy), enabled);
3073}
3074#endif
3075
Jiri Bencf0706e82007-05-05 11:45:53 -07003076struct cfg80211_ops mac80211_config_ops = {
3077 .add_virtual_intf = ieee80211_add_iface,
3078 .del_virtual_intf = ieee80211_del_iface,
Johannes Berg42613db2007-09-28 21:52:27 +02003079 .change_virtual_intf = ieee80211_change_iface,
Johannes Bergf142c6b2012-06-18 20:07:15 +02003080 .start_p2p_device = ieee80211_start_p2p_device,
3081 .stop_p2p_device = ieee80211_stop_p2p_device,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01003082 .add_key = ieee80211_add_key,
3083 .del_key = ieee80211_del_key,
Johannes Berg62da92f2007-12-19 02:03:31 +01003084 .get_key = ieee80211_get_key,
Johannes Berge8cbb4c2007-12-19 02:03:30 +01003085 .set_default_key = ieee80211_config_default_key,
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02003086 .set_default_mgmt_key = ieee80211_config_default_mgmt_key,
Johannes Berg88600202012-02-13 15:17:18 +01003087 .start_ap = ieee80211_start_ap,
3088 .change_beacon = ieee80211_change_beacon,
3089 .stop_ap = ieee80211_stop_ap,
Johannes Berg4fd69312007-12-19 02:03:35 +01003090 .add_station = ieee80211_add_station,
3091 .del_station = ieee80211_del_station,
3092 .change_station = ieee80211_change_station,
Johannes Berg7bbdd2d2007-12-19 02:03:37 +01003093 .get_station = ieee80211_get_station,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003094 .dump_station = ieee80211_dump_station,
Holger Schurig12897232010-04-19 10:23:57 +02003095 .dump_survey = ieee80211_dump_survey,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003096#ifdef CONFIG_MAC80211_MESH
3097 .add_mpath = ieee80211_add_mpath,
3098 .del_mpath = ieee80211_del_mpath,
3099 .change_mpath = ieee80211_change_mpath,
3100 .get_mpath = ieee80211_get_mpath,
3101 .dump_mpath = ieee80211_dump_mpath,
Javier Cardona24bdd9f2010-12-16 17:37:48 -08003102 .update_mesh_config = ieee80211_update_mesh_config,
3103 .get_mesh_config = ieee80211_get_mesh_config,
Johannes Berg29cbe682010-12-03 09:20:44 +01003104 .join_mesh = ieee80211_join_mesh,
3105 .leave_mesh = ieee80211_leave_mesh,
Luis Carlos Coboc5dd9c22008-02-23 15:17:17 +01003106#endif
Jouni Malinen9f1ba902008-08-07 20:07:01 +03003107 .change_bss = ieee80211_change_bss,
Jouni Malinen31888482008-10-30 16:59:24 +02003108 .set_txq_params = ieee80211_set_txq_params,
Johannes Berge8c9bd52012-06-06 08:18:22 +02003109 .set_monitor_channel = ieee80211_set_monitor_channel,
Bob Copeland665af4f2009-01-19 11:20:53 -05003110 .suspend = ieee80211_suspend,
3111 .resume = ieee80211_resume,
Johannes Berg2a519312009-02-10 21:25:55 +01003112 .scan = ieee80211_scan,
Luciano Coelho79f460c2011-05-11 17:09:36 +03003113 .sched_scan_start = ieee80211_sched_scan_start,
3114 .sched_scan_stop = ieee80211_sched_scan_stop,
Jouni Malinen636a5d32009-03-19 13:39:22 +02003115 .auth = ieee80211_auth,
3116 .assoc = ieee80211_assoc,
3117 .deauth = ieee80211_deauth,
3118 .disassoc = ieee80211_disassoc,
Johannes Bergaf8cdcd2009-04-19 21:25:43 +02003119 .join_ibss = ieee80211_join_ibss,
3120 .leave_ibss = ieee80211_leave_ibss,
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +02003121 .set_wiphy_params = ieee80211_set_wiphy_params,
Johannes Berg7643a2c2009-06-02 13:01:39 +02003122 .set_tx_power = ieee80211_set_tx_power,
3123 .get_tx_power = ieee80211_get_tx_power,
Johannes Bergab737a42009-07-01 21:26:58 +02003124 .set_wds_peer = ieee80211_set_wds_peer,
Johannes Berg1f87f7d2009-06-02 13:01:41 +02003125 .rfkill_poll = ieee80211_rfkill_poll,
Johannes Bergaff89a92009-07-01 21:26:51 +02003126 CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd)
Wey-Yi Guy71063f02011-05-20 09:05:54 -07003127 CFG80211_TESTMODE_DUMP(ieee80211_testmode_dump)
Johannes Bergbc92afd2009-07-01 21:26:57 +02003128 .set_power_mgmt = ieee80211_set_power_mgmt,
Johannes Berg99303802009-07-01 21:26:59 +02003129 .set_bitrate_mask = ieee80211_set_bitrate_mask,
Johannes Bergb8bc4b02009-12-23 13:15:42 +01003130 .remain_on_channel = ieee80211_remain_on_channel,
3131 .cancel_remain_on_channel = ieee80211_cancel_remain_on_channel,
Johannes Berg2e161f72010-08-12 15:38:38 +02003132 .mgmt_tx = ieee80211_mgmt_tx,
Johannes Bergf30221e2010-11-25 10:02:30 +01003133 .mgmt_tx_cancel_wait = ieee80211_mgmt_tx_cancel_wait,
Juuso Oikarinena97c13c2010-03-23 09:02:34 +02003134 .set_cqm_rssi_config = ieee80211_set_cqm_rssi_config,
Johannes Berg7be50862010-10-13 12:06:24 +02003135 .mgmt_frame_register = ieee80211_mgmt_frame_register,
Bruno Randolf15d96752010-11-10 12:50:56 +09003136 .set_antenna = ieee80211_set_antenna,
3137 .get_antenna = ieee80211_get_antenna,
John W. Linville38c09152011-03-07 16:19:18 -05003138 .set_ringparam = ieee80211_set_ringparam,
3139 .get_ringparam = ieee80211_get_ringparam,
Johannes Bergc68f4b82011-07-05 16:35:41 +02003140 .set_rekey_data = ieee80211_set_rekey_data,
Arik Nemtsovdfe018b2011-09-28 14:12:52 +03003141 .tdls_oper = ieee80211_tdls_oper,
3142 .tdls_mgmt = ieee80211_tdls_mgmt,
Johannes Berg06500732011-11-04 11:18:16 +01003143 .probe_client = ieee80211_probe_client,
Simon Wunderlichb53be792011-11-18 14:20:44 +01003144 .set_noack_map = ieee80211_set_noack_map,
Johannes Berg6d525632012-04-04 15:05:25 +02003145#ifdef CONFIG_PM
3146 .set_wakeup = ieee80211_set_wakeup,
3147#endif
Ben Greearb1ab7922012-04-23 12:50:30 -07003148 .get_et_sset_count = ieee80211_get_et_sset_count,
3149 .get_et_stats = ieee80211_get_et_stats,
3150 .get_et_strings = ieee80211_get_et_strings,
Johannes Berg5b7ccaf2012-07-12 19:45:08 +02003151 .get_channel = ieee80211_cfg_get_channel,
Jiri Bencf0706e82007-05-05 11:45:53 -07003152};