]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/mac80211/cfg.c
mac80211: reject aggregation sessions with non-HT peers
[mirror_ubuntu-artful-kernel.git] / net / mac80211 / cfg.c
CommitLineData
f0706e82
JB
1/*
2 * mac80211 configuration hooks for cfg80211
3 *
026331c4 4 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
d98ad83e 5 * Copyright 2013-2014 Intel Mobile Communications GmbH
f0706e82
JB
6 *
7 * This file is GPLv2 as found in COPYING.
8 */
9
e8cbb4cb 10#include <linux/ieee80211.h>
f0706e82
JB
11#include <linux/nl80211.h>
12#include <linux/rtnetlink.h>
5a0e3ad6 13#include <linux/slab.h>
881d966b 14#include <net/net_namespace.h>
5dfdaf58 15#include <linux/rcupdate.h>
dfe018bf 16#include <linux/if_ether.h>
f0706e82
JB
17#include <net/cfg80211.h>
18#include "ieee80211_i.h"
24487981 19#include "driver-ops.h"
e0eb6859 20#include "cfg.h"
2c8dccc7 21#include "rate.h"
c5dd9c2b 22#include "mesh.h"
02219b3a 23#include "wme.h"
c5dd9c2b 24
552bff0c
JB
25static struct wireless_dev *ieee80211_add_iface(struct wiphy *wiphy,
26 const char *name,
84efbb84
JB
27 enum nl80211_iftype type,
28 u32 *flags,
29 struct vif_params *params)
f0706e82
JB
30{
31 struct ieee80211_local *local = wiphy_priv(wiphy);
84efbb84 32 struct wireless_dev *wdev;
8cc9a739
MW
33 struct ieee80211_sub_if_data *sdata;
34 int err;
f0706e82 35
84efbb84 36 err = ieee80211_if_add(local, name, &wdev, type, params);
f9e10ce4
JB
37 if (err)
38 return ERR_PTR(err);
8cc9a739 39
f9e10ce4 40 if (type == NL80211_IFTYPE_MONITOR && flags) {
84efbb84 41 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
f9e10ce4
JB
42 sdata->u.mntr_flags = *flags;
43 }
44
84efbb84 45 return wdev;
f0706e82
JB
46}
47
84efbb84 48static int ieee80211_del_iface(struct wiphy *wiphy, struct wireless_dev *wdev)
f0706e82 49{
84efbb84 50 ieee80211_if_remove(IEEE80211_WDEV_TO_SUB_IF(wdev));
f0706e82 51
75636525 52 return 0;
f0706e82
JB
53}
54
e36d56b6
JB
55static int ieee80211_change_iface(struct wiphy *wiphy,
56 struct net_device *dev,
2ec600d6
LCC
57 enum nl80211_iftype type, u32 *flags,
58 struct vif_params *params)
42613db7 59{
9607e6b6 60 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
f3947e2d 61 int ret;
42613db7 62
05c914fe 63 ret = ieee80211_if_change_type(sdata, type);
f3947e2d
JB
64 if (ret)
65 return ret;
42613db7 66
9bc383de
JB
67 if (type == NL80211_IFTYPE_AP_VLAN &&
68 params && params->use_4addr == 0)
a9b3cd7f 69 RCU_INIT_POINTER(sdata->u.vlan.sta, NULL);
9bc383de
JB
70 else if (type == NL80211_IFTYPE_STATION &&
71 params && params->use_4addr >= 0)
72 sdata->u.mgd.use_4addr = params->use_4addr;
73
85416a4f
CL
74 if (sdata->vif.type == NL80211_IFTYPE_MONITOR && flags) {
75 struct ieee80211_local *local = sdata->local;
76
77 if (ieee80211_sdata_running(sdata)) {
31eba5bc
FF
78 u32 mask = MONITOR_FLAG_COOK_FRAMES |
79 MONITOR_FLAG_ACTIVE;
80
85416a4f 81 /*
31eba5bc
FF
82 * Prohibit MONITOR_FLAG_COOK_FRAMES and
83 * MONITOR_FLAG_ACTIVE to be changed while the
84 * interface is up.
85416a4f
CL
85 * Else we would need to add a lot of cruft
86 * to update everything:
87 * cooked_mntrs, monitor and all fif_* counters
88 * reconfigure hardware
89 */
31eba5bc 90 if ((*flags & mask) != (sdata->u.mntr_flags & mask))
85416a4f
CL
91 return -EBUSY;
92
93 ieee80211_adjust_monitor_flags(sdata, -1);
94 sdata->u.mntr_flags = *flags;
95 ieee80211_adjust_monitor_flags(sdata, 1);
96
97 ieee80211_configure_filter(local);
98 } else {
99 /*
100 * Because the interface is down, ieee80211_do_stop
101 * and ieee80211_do_open take care of "everything"
102 * mentioned in the comment above.
103 */
104 sdata->u.mntr_flags = *flags;
105 }
106 }
f7917af9 107
42613db7
JB
108 return 0;
109}
110
f142c6b9
JB
111static int ieee80211_start_p2p_device(struct wiphy *wiphy,
112 struct wireless_dev *wdev)
113{
b6a55015
LC
114 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
115 int ret;
116
117 mutex_lock(&sdata->local->chanctx_mtx);
118 ret = ieee80211_check_combinations(sdata, NULL, 0, 0);
119 mutex_unlock(&sdata->local->chanctx_mtx);
120 if (ret < 0)
121 return ret;
122
f142c6b9
JB
123 return ieee80211_do_open(wdev, true);
124}
125
126static void ieee80211_stop_p2p_device(struct wiphy *wiphy,
127 struct wireless_dev *wdev)
128{
129 ieee80211_sdata_stop(IEEE80211_WDEV_TO_SUB_IF(wdev));
130}
131
b53be792
SW
132static int ieee80211_set_noack_map(struct wiphy *wiphy,
133 struct net_device *dev,
134 u16 noack_map)
135{
136 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
137
138 sdata->noack_map = noack_map;
139 return 0;
140}
141
e8cbb4cb 142static int ieee80211_add_key(struct wiphy *wiphy, struct net_device *dev,
e31b8213 143 u8 key_idx, bool pairwise, const u8 *mac_addr,
e8cbb4cb
JB
144 struct key_params *params)
145{
26a58456 146 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2475b1cc 147 struct ieee80211_local *local = sdata->local;
e8cbb4cb 148 struct sta_info *sta = NULL;
2475b1cc 149 const struct ieee80211_cipher_scheme *cs = NULL;
db4d1169 150 struct ieee80211_key *key;
3b96766f 151 int err;
e8cbb4cb 152
26a58456 153 if (!ieee80211_sdata_running(sdata))
ad0e2b5a
JB
154 return -ENETDOWN;
155
97359d12 156 /* reject WEP and TKIP keys if WEP failed to initialize */
e8cbb4cb
JB
157 switch (params->cipher) {
158 case WLAN_CIPHER_SUITE_WEP40:
e8cbb4cb 159 case WLAN_CIPHER_SUITE_TKIP:
97359d12 160 case WLAN_CIPHER_SUITE_WEP104:
2475b1cc 161 if (IS_ERR(local->wep_tx_tfm))
97359d12 162 return -EINVAL;
3cfcf6ac 163 break;
2475b1cc 164 case WLAN_CIPHER_SUITE_CCMP:
2b2ba0db 165 case WLAN_CIPHER_SUITE_CCMP_256:
2475b1cc 166 case WLAN_CIPHER_SUITE_AES_CMAC:
56c52da2 167 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
8ade538b
JM
168 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
169 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
2475b1cc 170 case WLAN_CIPHER_SUITE_GCMP:
00b9cfa3 171 case WLAN_CIPHER_SUITE_GCMP_256:
2475b1cc 172 break;
e8cbb4cb 173 default:
2475b1cc 174 cs = ieee80211_cs_get(local, params->cipher, sdata->vif.type);
97359d12 175 break;
e8cbb4cb
JB
176 }
177
97359d12 178 key = ieee80211_key_alloc(params->cipher, key_idx, params->key_len,
2475b1cc
MS
179 params->key, params->seq_len, params->seq,
180 cs);
1ac62ba7
BH
181 if (IS_ERR(key))
182 return PTR_ERR(key);
db4d1169 183
e31b8213
JB
184 if (pairwise)
185 key->conf.flags |= IEEE80211_KEY_FLAG_PAIRWISE;
186
2475b1cc 187 mutex_lock(&local->sta_mtx);
3b96766f 188
e8cbb4cb 189 if (mac_addr) {
ff973af7
TP
190 if (ieee80211_vif_is_mesh(&sdata->vif))
191 sta = sta_info_get(sdata, mac_addr);
192 else
193 sta = sta_info_get_bss(sdata, mac_addr);
1626e0fa
JB
194 /*
195 * The ASSOC test makes sure the driver is ready to
196 * receive the key. When wpa_supplicant has roamed
197 * using FT, it attempts to set the key before
198 * association has completed, this rejects that attempt
d070f913 199 * so it will set the key again after association.
1626e0fa
JB
200 *
201 * TODO: accept the key if we have a station entry and
202 * add it to the device after the station.
203 */
204 if (!sta || !test_sta_flag(sta, WLAN_STA_ASSOC)) {
79cf2dfa 205 ieee80211_key_free_unused(key);
3b96766f
JB
206 err = -ENOENT;
207 goto out_unlock;
db4d1169 208 }
e8cbb4cb
JB
209 }
210
e548c49e
JB
211 switch (sdata->vif.type) {
212 case NL80211_IFTYPE_STATION:
213 if (sdata->u.mgd.mfp != IEEE80211_MFP_DISABLED)
214 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
215 break;
216 case NL80211_IFTYPE_AP:
217 case NL80211_IFTYPE_AP_VLAN:
218 /* Keys without a station are used for TX only */
219 if (key->sta && test_sta_flag(key->sta, WLAN_STA_MFP))
220 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
221 break;
222 case NL80211_IFTYPE_ADHOC:
223 /* no MFP (yet) */
224 break;
225 case NL80211_IFTYPE_MESH_POINT:
226#ifdef CONFIG_MAC80211_MESH
227 if (sdata->u.mesh.security != IEEE80211_MESH_SEC_NONE)
228 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
229 break;
230#endif
231 case NL80211_IFTYPE_WDS:
232 case NL80211_IFTYPE_MONITOR:
233 case NL80211_IFTYPE_P2P_DEVICE:
234 case NL80211_IFTYPE_UNSPECIFIED:
235 case NUM_NL80211_IFTYPES:
236 case NL80211_IFTYPE_P2P_CLIENT:
237 case NL80211_IFTYPE_P2P_GO:
6e0bd6c3 238 case NL80211_IFTYPE_OCB:
e548c49e
JB
239 /* shouldn't happen */
240 WARN_ON_ONCE(1);
241 break;
242 }
243
2475b1cc
MS
244 if (sta)
245 sta->cipher_scheme = cs;
246
3ffc2a90 247 err = ieee80211_key_link(key, sdata, sta);
db4d1169 248
3b96766f 249 out_unlock:
2475b1cc 250 mutex_unlock(&local->sta_mtx);
3b96766f
JB
251
252 return err;
e8cbb4cb
JB
253}
254
255static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev,
e31b8213 256 u8 key_idx, bool pairwise, const u8 *mac_addr)
e8cbb4cb 257{
5c0c3641
JB
258 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
259 struct ieee80211_local *local = sdata->local;
e8cbb4cb 260 struct sta_info *sta;
5c0c3641 261 struct ieee80211_key *key = NULL;
e8cbb4cb
JB
262 int ret;
263
5c0c3641
JB
264 mutex_lock(&local->sta_mtx);
265 mutex_lock(&local->key_mtx);
3b96766f 266
e8cbb4cb 267 if (mac_addr) {
3b96766f
JB
268 ret = -ENOENT;
269
0e5ded5a 270 sta = sta_info_get_bss(sdata, mac_addr);
e8cbb4cb 271 if (!sta)
3b96766f 272 goto out_unlock;
e8cbb4cb 273
5c0c3641 274 if (pairwise)
2475b1cc 275 key = key_mtx_dereference(local, sta->ptk[key_idx]);
5c0c3641 276 else
40b275b6 277 key = key_mtx_dereference(local, sta->gtk[key_idx]);
5c0c3641 278 } else
40b275b6 279 key = key_mtx_dereference(local, sdata->keys[key_idx]);
e8cbb4cb 280
5c0c3641 281 if (!key) {
3b96766f
JB
282 ret = -ENOENT;
283 goto out_unlock;
284 }
e8cbb4cb 285
3b8d9c29 286 ieee80211_key_free(key, true);
e8cbb4cb 287
3b96766f
JB
288 ret = 0;
289 out_unlock:
5c0c3641
JB
290 mutex_unlock(&local->key_mtx);
291 mutex_unlock(&local->sta_mtx);
3b96766f
JB
292
293 return ret;
e8cbb4cb
JB
294}
295
62da92fb 296static int ieee80211_get_key(struct wiphy *wiphy, struct net_device *dev,
e31b8213
JB
297 u8 key_idx, bool pairwise, const u8 *mac_addr,
298 void *cookie,
62da92fb
JB
299 void (*callback)(void *cookie,
300 struct key_params *params))
301{
14db74bc 302 struct ieee80211_sub_if_data *sdata;
62da92fb
JB
303 struct sta_info *sta = NULL;
304 u8 seq[6] = {0};
305 struct key_params params;
e31b8213 306 struct ieee80211_key *key = NULL;
aba83a0b 307 u64 pn64;
62da92fb
JB
308 u32 iv32;
309 u16 iv16;
310 int err = -ENOENT;
311
14db74bc
JB
312 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
313
3b96766f
JB
314 rcu_read_lock();
315
62da92fb 316 if (mac_addr) {
0e5ded5a 317 sta = sta_info_get_bss(sdata, mac_addr);
62da92fb
JB
318 if (!sta)
319 goto out;
320
354e159d 321 if (pairwise && key_idx < NUM_DEFAULT_KEYS)
2475b1cc 322 key = rcu_dereference(sta->ptk[key_idx]);
31f1f4ec
MS
323 else if (!pairwise &&
324 key_idx < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS)
a3836e02 325 key = rcu_dereference(sta->gtk[key_idx]);
62da92fb 326 } else
a3836e02 327 key = rcu_dereference(sdata->keys[key_idx]);
62da92fb
JB
328
329 if (!key)
330 goto out;
331
332 memset(&params, 0, sizeof(params));
333
97359d12 334 params.cipher = key->conf.cipher;
62da92fb 335
97359d12
JB
336 switch (key->conf.cipher) {
337 case WLAN_CIPHER_SUITE_TKIP:
b0f76b33
HH
338 iv32 = key->u.tkip.tx.iv32;
339 iv16 = key->u.tkip.tx.iv16;
62da92fb 340
24487981
JB
341 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE)
342 drv_get_tkip_seq(sdata->local,
343 key->conf.hw_key_idx,
344 &iv32, &iv16);
62da92fb
JB
345
346 seq[0] = iv16 & 0xff;
347 seq[1] = (iv16 >> 8) & 0xff;
348 seq[2] = iv32 & 0xff;
349 seq[3] = (iv32 >> 8) & 0xff;
350 seq[4] = (iv32 >> 16) & 0xff;
351 seq[5] = (iv32 >> 24) & 0xff;
352 params.seq = seq;
353 params.seq_len = 6;
354 break;
97359d12 355 case WLAN_CIPHER_SUITE_CCMP:
2b2ba0db 356 case WLAN_CIPHER_SUITE_CCMP_256:
aba83a0b
JB
357 pn64 = atomic64_read(&key->u.ccmp.tx_pn);
358 seq[0] = pn64;
359 seq[1] = pn64 >> 8;
360 seq[2] = pn64 >> 16;
361 seq[3] = pn64 >> 24;
362 seq[4] = pn64 >> 32;
363 seq[5] = pn64 >> 40;
62da92fb
JB
364 params.seq = seq;
365 params.seq_len = 6;
366 break;
97359d12 367 case WLAN_CIPHER_SUITE_AES_CMAC:
56c52da2 368 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
75396ae6
JB
369 pn64 = atomic64_read(&key->u.aes_cmac.tx_pn);
370 seq[0] = pn64;
371 seq[1] = pn64 >> 8;
372 seq[2] = pn64 >> 16;
373 seq[3] = pn64 >> 24;
374 seq[4] = pn64 >> 32;
375 seq[5] = pn64 >> 40;
3cfcf6ac
JM
376 params.seq = seq;
377 params.seq_len = 6;
378 break;
8ade538b
JM
379 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
380 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
381 pn64 = atomic64_read(&key->u.aes_gmac.tx_pn);
382 seq[0] = pn64;
383 seq[1] = pn64 >> 8;
384 seq[2] = pn64 >> 16;
385 seq[3] = pn64 >> 24;
386 seq[4] = pn64 >> 32;
387 seq[5] = pn64 >> 40;
388 params.seq = seq;
389 params.seq_len = 6;
390 break;
00b9cfa3
JM
391 case WLAN_CIPHER_SUITE_GCMP:
392 case WLAN_CIPHER_SUITE_GCMP_256:
393 pn64 = atomic64_read(&key->u.gcmp.tx_pn);
394 seq[0] = pn64;
395 seq[1] = pn64 >> 8;
396 seq[2] = pn64 >> 16;
397 seq[3] = pn64 >> 24;
398 seq[4] = pn64 >> 32;
399 seq[5] = pn64 >> 40;
400 params.seq = seq;
401 params.seq_len = 6;
402 break;
62da92fb
JB
403 }
404
405 params.key = key->conf.key;
406 params.key_len = key->conf.keylen;
407
408 callback(cookie, &params);
409 err = 0;
410
411 out:
3b96766f 412 rcu_read_unlock();
62da92fb
JB
413 return err;
414}
415
e8cbb4cb
JB
416static int ieee80211_config_default_key(struct wiphy *wiphy,
417 struct net_device *dev,
dbd2fd65
JB
418 u8 key_idx, bool uni,
419 bool multi)
e8cbb4cb 420{
ad0e2b5a 421 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3b96766f 422
f7e0104c 423 ieee80211_set_default_key(sdata, key_idx, uni, multi);
e8cbb4cb
JB
424
425 return 0;
426}
427
3cfcf6ac
JM
428static int ieee80211_config_default_mgmt_key(struct wiphy *wiphy,
429 struct net_device *dev,
430 u8 key_idx)
431{
66c52421 432 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3cfcf6ac 433
3cfcf6ac
JM
434 ieee80211_set_default_mgmt_key(sdata, key_idx);
435
3cfcf6ac
JM
436 return 0;
437}
438
6b62bf32
TP
439void sta_set_rate_info_tx(struct sta_info *sta,
440 const struct ieee80211_tx_rate *rate,
441 struct rate_info *rinfo)
442{
443 rinfo->flags = 0;
8bc83c24 444 if (rate->flags & IEEE80211_TX_RC_MCS) {
6b62bf32 445 rinfo->flags |= RATE_INFO_FLAGS_MCS;
8bc83c24
JB
446 rinfo->mcs = rate->idx;
447 } else if (rate->flags & IEEE80211_TX_RC_VHT_MCS) {
448 rinfo->flags |= RATE_INFO_FLAGS_VHT_MCS;
449 rinfo->mcs = ieee80211_rate_get_vht_mcs(rate);
450 rinfo->nss = ieee80211_rate_get_vht_nss(rate);
451 } else {
452 struct ieee80211_supported_band *sband;
2103dec1
SW
453 int shift = ieee80211_vif_get_shift(&sta->sdata->vif);
454 u16 brate;
455
8bc83c24
JB
456 sband = sta->local->hw.wiphy->bands[
457 ieee80211_get_sdata_band(sta->sdata)];
2103dec1
SW
458 brate = sband->bitrates[rate->idx].bitrate;
459 rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift);
8bc83c24 460 }
6b62bf32 461 if (rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
b51f3bee
JB
462 rinfo->bw = RATE_INFO_BW_40;
463 else if (rate->flags & IEEE80211_TX_RC_80_MHZ_WIDTH)
464 rinfo->bw = RATE_INFO_BW_80;
465 else if (rate->flags & IEEE80211_TX_RC_160_MHZ_WIDTH)
466 rinfo->bw = RATE_INFO_BW_160;
467 else
468 rinfo->bw = RATE_INFO_BW_20;
6b62bf32
TP
469 if (rate->flags & IEEE80211_TX_RC_SHORT_GI)
470 rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
6b62bf32
TP
471}
472
003e676a
S
473void sta_set_rate_info_rx(struct sta_info *sta, struct rate_info *rinfo)
474{
475 rinfo->flags = 0;
476
477 if (sta->last_rx_rate_flag & RX_FLAG_HT) {
478 rinfo->flags |= RATE_INFO_FLAGS_MCS;
479 rinfo->mcs = sta->last_rx_rate_idx;
480 } else if (sta->last_rx_rate_flag & RX_FLAG_VHT) {
481 rinfo->flags |= RATE_INFO_FLAGS_VHT_MCS;
482 rinfo->nss = sta->last_rx_rate_vht_nss;
483 rinfo->mcs = sta->last_rx_rate_idx;
484 } else {
485 struct ieee80211_supported_band *sband;
2103dec1
SW
486 int shift = ieee80211_vif_get_shift(&sta->sdata->vif);
487 u16 brate;
003e676a
S
488
489 sband = sta->local->hw.wiphy->bands[
490 ieee80211_get_sdata_band(sta->sdata)];
2103dec1
SW
491 brate = sband->bitrates[sta->last_rx_rate_idx].bitrate;
492 rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift);
003e676a
S
493 }
494
003e676a
S
495 if (sta->last_rx_rate_flag & RX_FLAG_SHORT_GI)
496 rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
b51f3bee
JB
497
498 if (sta->last_rx_rate_flag & RX_FLAG_5MHZ)
499 rinfo->bw = RATE_INFO_BW_5;
500 else if (sta->last_rx_rate_flag & RX_FLAG_10MHZ)
501 rinfo->bw = RATE_INFO_BW_10;
502 else if (sta->last_rx_rate_flag & RX_FLAG_40MHZ)
503 rinfo->bw = RATE_INFO_BW_40;
504 else if (sta->last_rx_rate_vht_flag & RX_VHT_FLAG_80MHZ)
505 rinfo->bw = RATE_INFO_BW_80;
506 else if (sta->last_rx_rate_vht_flag & RX_VHT_FLAG_160MHZ)
507 rinfo->bw = RATE_INFO_BW_160;
508 else
509 rinfo->bw = RATE_INFO_BW_20;
003e676a
S
510}
511
c5dd9c2b 512static int ieee80211_dump_station(struct wiphy *wiphy, struct net_device *dev,
3b3a0162 513 int idx, u8 *mac, struct station_info *sinfo)
c5dd9c2b 514{
3b53fde8 515 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
66572cfc 516 struct ieee80211_local *local = sdata->local;
c5dd9c2b 517 struct sta_info *sta;
d0709a65
JB
518 int ret = -ENOENT;
519
66572cfc 520 mutex_lock(&local->sta_mtx);
c5dd9c2b 521
3b53fde8 522 sta = sta_info_get_by_idx(sdata, idx);
d0709a65
JB
523 if (sta) {
524 ret = 0;
17741cdc 525 memcpy(mac, sta->sta.addr, ETH_ALEN);
d0709a65
JB
526 sta_set_sinfo(sta, sinfo);
527 }
c5dd9c2b 528
66572cfc 529 mutex_unlock(&local->sta_mtx);
c5dd9c2b 530
d0709a65 531 return ret;
c5dd9c2b
LCC
532}
533
1289723e
HS
534static int ieee80211_dump_survey(struct wiphy *wiphy, struct net_device *dev,
535 int idx, struct survey_info *survey)
536{
537 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
538
1289723e
HS
539 return drv_get_survey(local, idx, survey);
540}
541
7bbdd2d9 542static int ieee80211_get_station(struct wiphy *wiphy, struct net_device *dev,
3b3a0162 543 const u8 *mac, struct station_info *sinfo)
7bbdd2d9 544{
abe60632 545 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
66572cfc 546 struct ieee80211_local *local = sdata->local;
7bbdd2d9 547 struct sta_info *sta;
d0709a65 548 int ret = -ENOENT;
7bbdd2d9 549
66572cfc 550 mutex_lock(&local->sta_mtx);
7bbdd2d9 551
0e5ded5a 552 sta = sta_info_get_bss(sdata, mac);
d0709a65
JB
553 if (sta) {
554 ret = 0;
555 sta_set_sinfo(sta, sinfo);
556 }
557
66572cfc 558 mutex_unlock(&local->sta_mtx);
d0709a65
JB
559
560 return ret;
7bbdd2d9
JB
561}
562
55de908a 563static int ieee80211_set_monitor_channel(struct wiphy *wiphy,
683b6d3b 564 struct cfg80211_chan_def *chandef)
3d9e6e12
JB
565{
566 struct ieee80211_local *local = wiphy_priv(wiphy);
55de908a
JB
567 struct ieee80211_sub_if_data *sdata;
568 int ret = 0;
3d9e6e12 569
4bf88530 570 if (cfg80211_chandef_identical(&local->monitor_chandef, chandef))
55de908a 571 return 0;
3d9e6e12 572
34a3740d 573 mutex_lock(&local->mtx);
55de908a
JB
574 mutex_lock(&local->iflist_mtx);
575 if (local->use_chanctx) {
576 sdata = rcu_dereference_protected(
577 local->monitor_sdata,
578 lockdep_is_held(&local->iflist_mtx));
579 if (sdata) {
580 ieee80211_vif_release_channel(sdata);
4bf88530 581 ret = ieee80211_vif_use_channel(sdata, chandef,
55de908a
JB
582 IEEE80211_CHANCTX_EXCLUSIVE);
583 }
584 } else if (local->open_count == local->monitors) {
675a0b04 585 local->_oper_chandef = *chandef;
55de908a
JB
586 ieee80211_hw_config(local, 0);
587 }
3d9e6e12 588
4bf88530
JB
589 if (ret == 0)
590 local->monitor_chandef = *chandef;
55de908a 591 mutex_unlock(&local->iflist_mtx);
34a3740d 592 mutex_unlock(&local->mtx);
3d9e6e12 593
55de908a 594 return ret;
e8c9bd5b
JB
595}
596
02945821 597static int ieee80211_set_probe_resp(struct ieee80211_sub_if_data *sdata,
af296bdb
MK
598 const u8 *resp, size_t resp_len,
599 const struct ieee80211_csa_settings *csa)
02945821 600{
aa7a0080 601 struct probe_resp *new, *old;
02945821
AN
602
603 if (!resp || !resp_len)
aba4e6ff 604 return 1;
02945821 605
7ca133bc 606 old = sdata_dereference(sdata->u.ap.probe_resp, sdata);
02945821 607
aa7a0080 608 new = kzalloc(sizeof(struct probe_resp) + resp_len, GFP_KERNEL);
02945821
AN
609 if (!new)
610 return -ENOMEM;
611
aa7a0080
ES
612 new->len = resp_len;
613 memcpy(new->data, resp, resp_len);
02945821 614
af296bdb
MK
615 if (csa)
616 memcpy(new->csa_counter_offsets, csa->counter_offsets_presp,
617 csa->n_counter_offsets_presp *
618 sizeof(new->csa_counter_offsets[0]));
619
02945821 620 rcu_assign_pointer(sdata->u.ap.probe_resp, new);
aa7a0080
ES
621 if (old)
622 kfree_rcu(old, rcu_head);
02945821
AN
623
624 return 0;
625}
626
0ae07968 627static int ieee80211_assign_beacon(struct ieee80211_sub_if_data *sdata,
af296bdb
MK
628 struct cfg80211_beacon_data *params,
629 const struct ieee80211_csa_settings *csa)
5dfdaf58
JB
630{
631 struct beacon_data *new, *old;
632 int new_head_len, new_tail_len;
8860020e
JB
633 int size, err;
634 u32 changed = BSS_CHANGED_BEACON;
5dfdaf58 635
7ca133bc
SW
636 old = sdata_dereference(sdata->u.ap.beacon, sdata);
637
5dfdaf58 638
5dfdaf58
JB
639 /* Need to have a beacon head if we don't have one yet */
640 if (!params->head && !old)
8860020e 641 return -EINVAL;
5dfdaf58
JB
642
643 /* new or old head? */
644 if (params->head)
645 new_head_len = params->head_len;
646 else
647 new_head_len = old->head_len;
648
649 /* new or old tail? */
650 if (params->tail || !old)
651 /* params->tail_len will be zero for !params->tail */
652 new_tail_len = params->tail_len;
653 else
654 new_tail_len = old->tail_len;
655
656 size = sizeof(*new) + new_head_len + new_tail_len;
657
658 new = kzalloc(size, GFP_KERNEL);
659 if (!new)
660 return -ENOMEM;
661
662 /* start filling the new info now */
663
5dfdaf58
JB
664 /*
665 * pointers go into the block we allocated,
666 * memory is | beacon_data | head | tail |
667 */
668 new->head = ((u8 *) new) + sizeof(*new);
669 new->tail = new->head + new_head_len;
670 new->head_len = new_head_len;
671 new->tail_len = new_tail_len;
672
af296bdb
MK
673 if (csa) {
674 new->csa_current_counter = csa->count;
675 memcpy(new->csa_counter_offsets, csa->counter_offsets_beacon,
676 csa->n_counter_offsets_beacon *
677 sizeof(new->csa_counter_offsets[0]));
678 }
679
5dfdaf58
JB
680 /* copy in head */
681 if (params->head)
682 memcpy(new->head, params->head, new_head_len);
683 else
684 memcpy(new->head, old->head, new_head_len);
685
686 /* copy in optional tail */
687 if (params->tail)
688 memcpy(new->tail, params->tail, new_tail_len);
689 else
690 if (old)
691 memcpy(new->tail, old->tail, new_tail_len);
692
02945821 693 err = ieee80211_set_probe_resp(sdata, params->probe_resp,
af296bdb 694 params->probe_resp_len, csa);
8860020e
JB
695 if (err < 0)
696 return err;
697 if (err == 0)
02945821
AN
698 changed |= BSS_CHANGED_AP_PROBE_RESP;
699
8860020e
JB
700 rcu_assign_pointer(sdata->u.ap.beacon, new);
701
702 if (old)
703 kfree_rcu(old, rcu_head);
7827493b 704
8860020e 705 return changed;
5dfdaf58
JB
706}
707
8860020e
JB
708static int ieee80211_start_ap(struct wiphy *wiphy, struct net_device *dev,
709 struct cfg80211_ap_settings *params)
5dfdaf58 710{
8860020e 711 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
34a3740d 712 struct ieee80211_local *local = sdata->local;
5dfdaf58 713 struct beacon_data *old;
665c93a9 714 struct ieee80211_sub_if_data *vlan;
8860020e
JB
715 u32 changed = BSS_CHANGED_BEACON_INT |
716 BSS_CHANGED_BEACON_ENABLED |
717 BSS_CHANGED_BEACON |
339afbf4 718 BSS_CHANGED_SSID |
4bcc56bb
JB
719 BSS_CHANGED_P2P_PS |
720 BSS_CHANGED_TXPOWER;
8860020e 721 int err;
14db74bc 722
7ca133bc 723 old = sdata_dereference(sdata->u.ap.beacon, sdata);
5dfdaf58
JB
724 if (old)
725 return -EALREADY;
726
f6993174
EP
727 switch (params->smps_mode) {
728 case NL80211_SMPS_OFF:
729 sdata->smps_mode = IEEE80211_SMPS_OFF;
730 break;
731 case NL80211_SMPS_STATIC:
732 sdata->smps_mode = IEEE80211_SMPS_STATIC;
733 break;
734 case NL80211_SMPS_DYNAMIC:
735 sdata->smps_mode = IEEE80211_SMPS_DYNAMIC;
736 break;
737 default:
738 return -EINVAL;
739 }
04ecd257
JB
740 sdata->needed_rx_chains = sdata->local->rx_chains;
741
34a3740d 742 mutex_lock(&local->mtx);
4bf88530 743 err = ieee80211_vif_use_channel(sdata, &params->chandef,
55de908a 744 IEEE80211_CHANCTX_SHARED);
4e141dad
MK
745 if (!err)
746 ieee80211_vif_copy_chanctx_to_vlans(sdata, false);
34a3740d 747 mutex_unlock(&local->mtx);
aa430da4
JB
748 if (err)
749 return err;
750
665c93a9
JB
751 /*
752 * Apply control port protocol, this allows us to
753 * not encrypt dynamic WEP control frames.
754 */
755 sdata->control_port_protocol = params->crypto.control_port_ethertype;
756 sdata->control_port_no_encrypt = params->crypto.control_port_no_encrypt;
2475b1cc
MS
757 sdata->encrypt_headroom = ieee80211_cs_headroom(sdata->local,
758 &params->crypto,
759 sdata->vif.type);
760
665c93a9
JB
761 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list) {
762 vlan->control_port_protocol =
763 params->crypto.control_port_ethertype;
764 vlan->control_port_no_encrypt =
765 params->crypto.control_port_no_encrypt;
2475b1cc
MS
766 vlan->encrypt_headroom =
767 ieee80211_cs_headroom(sdata->local,
768 &params->crypto,
769 vlan->vif.type);
665c93a9
JB
770 }
771
8860020e
JB
772 sdata->vif.bss_conf.beacon_int = params->beacon_interval;
773 sdata->vif.bss_conf.dtim_period = params->dtim_period;
d6a83228 774 sdata->vif.bss_conf.enable_beacon = true;
8860020e
JB
775
776 sdata->vif.bss_conf.ssid_len = params->ssid_len;
777 if (params->ssid_len)
778 memcpy(sdata->vif.bss_conf.ssid, params->ssid,
779 params->ssid_len);
780 sdata->vif.bss_conf.hidden_ssid =
781 (params->hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE);
782
67baf663
JD
783 memset(&sdata->vif.bss_conf.p2p_noa_attr, 0,
784 sizeof(sdata->vif.bss_conf.p2p_noa_attr));
785 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow =
786 params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
787 if (params->p2p_opp_ps)
788 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
789 IEEE80211_P2P_OPPPS_ENABLE_BIT;
339afbf4 790
af296bdb 791 err = ieee80211_assign_beacon(sdata, &params->beacon, NULL);
0297ea17
EG
792 if (err < 0) {
793 ieee80211_vif_release_channel(sdata);
8860020e 794 return err;
0297ea17 795 }
8860020e
JB
796 changed |= err;
797
1041638f
JB
798 err = drv_start_ap(sdata->local, sdata);
799 if (err) {
7ca133bc
SW
800 old = sdata_dereference(sdata->u.ap.beacon, sdata);
801
1041638f
JB
802 if (old)
803 kfree_rcu(old, rcu_head);
804 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
0297ea17 805 ieee80211_vif_release_channel(sdata);
1041638f
JB
806 return err;
807 }
808
057d5f4b 809 ieee80211_recalc_dtim(local, sdata);
8860020e
JB
810 ieee80211_bss_info_change_notify(sdata, changed);
811
3edaf3e6
JB
812 netif_carrier_on(dev);
813 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
814 netif_carrier_on(vlan->dev);
815
665c93a9 816 return 0;
5dfdaf58
JB
817}
818
8860020e
JB
819static int ieee80211_change_beacon(struct wiphy *wiphy, struct net_device *dev,
820 struct cfg80211_beacon_data *params)
5dfdaf58 821{
14db74bc 822 struct ieee80211_sub_if_data *sdata;
5dfdaf58 823 struct beacon_data *old;
8860020e 824 int err;
5dfdaf58 825
14db74bc 826 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
dbd72850 827 sdata_assert_lock(sdata);
14db74bc 828
73da7d5b
SW
829 /* don't allow changing the beacon while CSA is in place - offset
830 * of channel switch counter may change
831 */
832 if (sdata->vif.csa_active)
833 return -EBUSY;
834
7ca133bc 835 old = sdata_dereference(sdata->u.ap.beacon, sdata);
5dfdaf58
JB
836 if (!old)
837 return -ENOENT;
838
af296bdb 839 err = ieee80211_assign_beacon(sdata, params, NULL);
8860020e
JB
840 if (err < 0)
841 return err;
842 ieee80211_bss_info_change_notify(sdata, err);
843 return 0;
5dfdaf58
JB
844}
845
8860020e 846static int ieee80211_stop_ap(struct wiphy *wiphy, struct net_device *dev)
5dfdaf58 847{
7b20b8e8
JB
848 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
849 struct ieee80211_sub_if_data *vlan;
850 struct ieee80211_local *local = sdata->local;
851 struct beacon_data *old_beacon;
852 struct probe_resp *old_probe_resp;
d2859df5 853 struct cfg80211_chan_def chandef;
14db74bc 854
dbd72850
MK
855 sdata_assert_lock(sdata);
856
7ca133bc 857 old_beacon = sdata_dereference(sdata->u.ap.beacon, sdata);
7b20b8e8 858 if (!old_beacon)
5dfdaf58 859 return -ENOENT;
7ca133bc 860 old_probe_resp = sdata_dereference(sdata->u.ap.probe_resp, sdata);
5dfdaf58 861
73da7d5b 862 /* abort any running channel switch */
59af6928 863 mutex_lock(&local->mtx);
73da7d5b 864 sdata->vif.csa_active = false;
a46992b4
LC
865 if (sdata->csa_block_tx) {
866 ieee80211_wake_vif_queues(local, sdata,
867 IEEE80211_QUEUE_STOP_REASON_CSA);
868 sdata->csa_block_tx = false;
869 }
870
59af6928
MK
871 mutex_unlock(&local->mtx);
872
1f3b8a2b
SW
873 kfree(sdata->u.ap.next_beacon);
874 sdata->u.ap.next_beacon = NULL;
875
7b20b8e8 876 /* turn off carrier for this interface and dependent VLANs */
3edaf3e6
JB
877 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
878 netif_carrier_off(vlan->dev);
879 netif_carrier_off(dev);
880
7b20b8e8 881 /* remove beacon and probe response */
a9b3cd7f 882 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
7b20b8e8
JB
883 RCU_INIT_POINTER(sdata->u.ap.probe_resp, NULL);
884 kfree_rcu(old_beacon, rcu_head);
885 if (old_probe_resp)
886 kfree_rcu(old_probe_resp, rcu_head);
8ffcc704 887 sdata->u.ap.driver_smps_mode = IEEE80211_SMPS_OFF;
8860020e 888
e716251d 889 __sta_info_flush(sdata, true);
7907c7d3 890 ieee80211_free_keys(sdata, true);
75de9113 891
d6a83228 892 sdata->vif.bss_conf.enable_beacon = false;
0eabccd9 893 sdata->vif.bss_conf.ssid_len = 0;
d6a83228 894 clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED, &sdata->state);
2d0ddec5 895 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
8860020e 896
a6b368f6 897 if (sdata->wdev.cac_started) {
d2859df5 898 chandef = sdata->vif.bss_conf.chandef;
a6b368f6 899 cancel_delayed_work_sync(&sdata->dfs_cac_timer_work);
d2859df5
JD
900 cfg80211_cac_event(sdata->dev, &chandef,
901 NL80211_RADAR_CAC_ABORTED,
a6b368f6
SW
902 GFP_KERNEL);
903 }
904
1041638f
JB
905 drv_stop_ap(sdata->local, sdata);
906
7b20b8e8
JB
907 /* free all potentially still buffered bcast frames */
908 local->total_ps_buffered -= skb_queue_len(&sdata->u.ap.ps.bc_buf);
909 skb_queue_purge(&sdata->u.ap.ps.bc_buf);
910
34a3740d 911 mutex_lock(&local->mtx);
4e141dad 912 ieee80211_vif_copy_chanctx_to_vlans(sdata, true);
55de908a 913 ieee80211_vif_release_channel(sdata);
34a3740d 914 mutex_unlock(&local->mtx);
55de908a 915
2d0ddec5 916 return 0;
5dfdaf58
JB
917}
918
4fd6931e
JB
919/* Layer 2 Update frame (802.2 Type 1 LLC XID Update response) */
920struct iapp_layer2_update {
921 u8 da[ETH_ALEN]; /* broadcast */
922 u8 sa[ETH_ALEN]; /* STA addr */
923 __be16 len; /* 6 */
924 u8 dsap; /* 0 */
925 u8 ssap; /* 0 */
926 u8 control;
927 u8 xid_info[3];
bc10502d 928} __packed;
4fd6931e
JB
929
930static void ieee80211_send_layer2_update(struct sta_info *sta)
931{
932 struct iapp_layer2_update *msg;
933 struct sk_buff *skb;
934
935 /* Send Level 2 Update Frame to update forwarding tables in layer 2
936 * bridge devices */
937
938 skb = dev_alloc_skb(sizeof(*msg));
939 if (!skb)
940 return;
941 msg = (struct iapp_layer2_update *)skb_put(skb, sizeof(*msg));
942
943 /* 802.2 Type 1 Logical Link Control (LLC) Exchange Identifier (XID)
944 * Update response frame; IEEE Std 802.2-1998, 5.4.1.2.1 */
945
e83e6541 946 eth_broadcast_addr(msg->da);
17741cdc 947 memcpy(msg->sa, sta->sta.addr, ETH_ALEN);
4fd6931e
JB
948 msg->len = htons(6);
949 msg->dsap = 0;
950 msg->ssap = 0x01; /* NULL LSAP, CR Bit: Response */
951 msg->control = 0xaf; /* XID response lsb.1111F101.
952 * F=0 (no poll command; unsolicited frame) */
953 msg->xid_info[0] = 0x81; /* XID format identifier */
954 msg->xid_info[1] = 1; /* LLC types/classes: Type 1 LLC */
955 msg->xid_info[2] = 0; /* XID sender's receive window size (RW) */
956
d0709a65
JB
957 skb->dev = sta->sdata->dev;
958 skb->protocol = eth_type_trans(skb, sta->sdata->dev);
4fd6931e 959 memset(skb->cb, 0, sizeof(skb->cb));
06ee1c26 960 netif_rx_ni(skb);
4fd6931e
JB
961}
962
d582cffb
JB
963static int sta_apply_auth_flags(struct ieee80211_local *local,
964 struct sta_info *sta,
965 u32 mask, u32 set)
966{
967 int ret;
968
969 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
970 set & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
971 !test_sta_flag(sta, WLAN_STA_AUTH)) {
972 ret = sta_info_move_state(sta, IEEE80211_STA_AUTH);
973 if (ret)
974 return ret;
975 }
976
977 if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
978 set & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
979 !test_sta_flag(sta, WLAN_STA_ASSOC)) {
c23e31cf
MP
980 /*
981 * When peer becomes associated, init rate control as
982 * well. Some drivers require rate control initialized
983 * before drv_sta_state() is called.
984 */
985 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER))
986 rate_control_rate_init(sta);
987
d582cffb
JB
988 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
989 if (ret)
990 return ret;
991 }
992
993 if (mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
994 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED))
995 ret = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
996 else if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
997 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
998 else
999 ret = 0;
1000 if (ret)
1001 return ret;
1002 }
1003
1004 if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
1005 !(set & BIT(NL80211_STA_FLAG_ASSOCIATED)) &&
1006 test_sta_flag(sta, WLAN_STA_ASSOC)) {
1007 ret = sta_info_move_state(sta, IEEE80211_STA_AUTH);
1008 if (ret)
1009 return ret;
1010 }
1011
1012 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
1013 !(set & BIT(NL80211_STA_FLAG_AUTHENTICATED)) &&
1014 test_sta_flag(sta, WLAN_STA_AUTH)) {
1015 ret = sta_info_move_state(sta, IEEE80211_STA_NONE);
1016 if (ret)
1017 return ret;
1018 }
1019
1020 return 0;
1021}
1022
d9a7ddb0
JB
1023static int sta_apply_parameters(struct ieee80211_local *local,
1024 struct sta_info *sta,
1025 struct station_parameters *params)
4fd6931e 1026{
d9a7ddb0 1027 int ret = 0;
8318d78a 1028 struct ieee80211_supported_band *sband;
d0709a65 1029 struct ieee80211_sub_if_data *sdata = sta->sdata;
55de908a 1030 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
eccb8e8f 1031 u32 mask, set;
4fd6931e 1032
55de908a 1033 sband = local->hw.wiphy->bands[band];
ae5eb026 1034
eccb8e8f
JB
1035 mask = params->sta_flags_mask;
1036 set = params->sta_flags_set;
73651ee6 1037
d582cffb
JB
1038 if (ieee80211_vif_is_mesh(&sdata->vif)) {
1039 /*
1040 * In mesh mode, ASSOCIATED isn't part of the nl80211
1041 * API but must follow AUTHENTICATED for driver state.
1042 */
1043 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED))
1044 mask |= BIT(NL80211_STA_FLAG_ASSOCIATED);
1045 if (set & BIT(NL80211_STA_FLAG_AUTHENTICATED))
1046 set |= BIT(NL80211_STA_FLAG_ASSOCIATED);
77ee7c89
JB
1047 } else if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1048 /*
1049 * TDLS -- everything follows authorized, but
1050 * only becoming authorized is possible, not
1051 * going back
1052 */
1053 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
1054 set |= BIT(NL80211_STA_FLAG_AUTHENTICATED) |
1055 BIT(NL80211_STA_FLAG_ASSOCIATED);
1056 mask |= BIT(NL80211_STA_FLAG_AUTHENTICATED) |
1057 BIT(NL80211_STA_FLAG_ASSOCIATED);
1058 }
eccb8e8f 1059 }
4fd6931e 1060
68885a54
AN
1061 /* auth flags will be set later for TDLS stations */
1062 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1063 ret = sta_apply_auth_flags(local, sta, mask, set);
1064 if (ret)
1065 return ret;
1066 }
d9a7ddb0 1067
eccb8e8f 1068 if (mask & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) {
eccb8e8f 1069 if (set & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE))
c2c98fde
JB
1070 set_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
1071 else
1072 clear_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
eccb8e8f 1073 }
4fd6931e 1074
a74a8c84
JB
1075 if (mask & BIT(NL80211_STA_FLAG_WME))
1076 sta->sta.wme = set & BIT(NL80211_STA_FLAG_WME);
5394af4d 1077
eccb8e8f 1078 if (mask & BIT(NL80211_STA_FLAG_MFP)) {
64a8cef4 1079 sta->sta.mfp = !!(set & BIT(NL80211_STA_FLAG_MFP));
eccb8e8f 1080 if (set & BIT(NL80211_STA_FLAG_MFP))
c2c98fde
JB
1081 set_sta_flag(sta, WLAN_STA_MFP);
1082 else
1083 clear_sta_flag(sta, WLAN_STA_MFP);
4fd6931e 1084 }
b39c48fa 1085
07ba55d7 1086 if (mask & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
07ba55d7 1087 if (set & BIT(NL80211_STA_FLAG_TDLS_PEER))
c2c98fde
JB
1088 set_sta_flag(sta, WLAN_STA_TDLS_PEER);
1089 else
1090 clear_sta_flag(sta, WLAN_STA_TDLS_PEER);
07ba55d7 1091 }
4fd6931e 1092
9041c1fa
AN
1093 /* mark TDLS channel switch support, if the AP allows it */
1094 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER) &&
1095 !sdata->u.mgd.tdls_chan_switch_prohibited &&
1096 params->ext_capab_len >= 4 &&
1097 params->ext_capab[3] & WLAN_EXT_CAPA4_TDLS_CHAN_SWITCH)
1098 set_sta_flag(sta, WLAN_STA_TDLS_CHAN_SWITCH);
1099
3b9ce80c
JB
1100 if (params->sta_modify_mask & STATION_PARAM_APPLY_UAPSD) {
1101 sta->sta.uapsd_queues = params->uapsd_queues;
1102 sta->sta.max_sp = params->max_sp;
1103 }
9533b4ac 1104
51b50fbe
JB
1105 /*
1106 * cfg80211 validates this (1-2007) and allows setting the AID
1107 * only when creating a new station entry
1108 */
1109 if (params->aid)
1110 sta->sta.aid = params->aid;
1111
73651ee6 1112 /*
ba23d206
JB
1113 * Some of the following updates would be racy if called on an
1114 * existing station, via ieee80211_change_station(). However,
1115 * all such changes are rejected by cfg80211 except for updates
1116 * changing the supported rates on an existing but not yet used
1117 * TDLS peer.
73651ee6
JB
1118 */
1119
4fd6931e
JB
1120 if (params->listen_interval >= 0)
1121 sta->listen_interval = params->listen_interval;
1122
1123 if (params->supported_rates) {
2103dec1
SW
1124 ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef,
1125 sband, params->supported_rates,
1126 params->supported_rates_len,
1127 &sta->sta.supp_rates[band]);
4fd6931e 1128 }
c5dd9c2b 1129
d9fe60de 1130 if (params->ht_capa)
ef96a842 1131 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
e1a0c6b3 1132 params->ht_capa, sta);
36aedc90 1133
f461be3e
MP
1134 if (params->vht_capa)
1135 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
4a34215e 1136 params->vht_capa, sta);
f461be3e 1137
b1bce14a 1138 if (params->opmode_notif_used) {
b1bce14a
MK
1139 /* returned value is only needed for rc update, but the
1140 * rc isn't initialized here yet, so ignore it
1141 */
1142 __ieee80211_vht_handle_opmode(sdata, sta,
1143 params->opmode_notif,
1144 band, false);
1145 }
1146
9c3990aa 1147 if (ieee80211_vif_is_mesh(&sdata->vif)) {
4daf50f2 1148#ifdef CONFIG_MAC80211_MESH
39886b61 1149 u32 changed = 0;
77ee7c89
JB
1150
1151 if (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE) {
9c3990aa 1152 switch (params->plink_state) {
57cf8043 1153 case NL80211_PLINK_ESTAB:
1617bab8
MP
1154 if (sta->plink_state != NL80211_PLINK_ESTAB)
1155 changed = mesh_plink_inc_estab_count(
1156 sdata);
1157 sta->plink_state = params->plink_state;
3f52b7e3
MP
1158
1159 ieee80211_mps_sta_status_update(sta);
39886b61
TP
1160 changed |= ieee80211_mps_set_sta_local_pm(sta,
1161 sdata->u.mesh.mshcfg.power_mode);
1617bab8
MP
1162 break;
1163 case NL80211_PLINK_LISTEN:
57cf8043 1164 case NL80211_PLINK_BLOCKED:
1617bab8
MP
1165 case NL80211_PLINK_OPN_SNT:
1166 case NL80211_PLINK_OPN_RCVD:
1167 case NL80211_PLINK_CNF_RCVD:
1168 case NL80211_PLINK_HOLDING:
1169 if (sta->plink_state == NL80211_PLINK_ESTAB)
1170 changed = mesh_plink_dec_estab_count(
1171 sdata);
9c3990aa 1172 sta->plink_state = params->plink_state;
3f52b7e3
MP
1173
1174 ieee80211_mps_sta_status_update(sta);
446075d7
MP
1175 changed |= ieee80211_mps_set_sta_local_pm(sta,
1176 NL80211_MESH_POWER_UNKNOWN);
9c3990aa
JC
1177 break;
1178 default:
1179 /* nothing */
1180 break;
1181 }
77ee7c89
JB
1182 }
1183
1184 switch (params->plink_action) {
1185 case NL80211_PLINK_ACTION_NO_ACTION:
1186 /* nothing */
1187 break;
1188 case NL80211_PLINK_ACTION_OPEN:
1189 changed |= mesh_plink_open(sta);
1190 break;
1191 case NL80211_PLINK_ACTION_BLOCK:
1192 changed |= mesh_plink_block(sta);
1193 break;
1617bab8 1194 }
3f52b7e3
MP
1195
1196 if (params->local_pm)
39886b61
TP
1197 changed |=
1198 ieee80211_mps_set_sta_local_pm(sta,
1199 params->local_pm);
6c751ef8 1200 ieee80211_mbss_info_change_notify(sdata, changed);
4daf50f2 1201#endif
902acc78 1202 }
d9a7ddb0 1203
68885a54
AN
1204 /* set the STA state after all sta info from usermode has been set */
1205 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1206 ret = sta_apply_auth_flags(local, sta, mask, set);
1207 if (ret)
1208 return ret;
1209 }
1210
d9a7ddb0 1211 return 0;
4fd6931e
JB
1212}
1213
1214static int ieee80211_add_station(struct wiphy *wiphy, struct net_device *dev,
3b3a0162
JB
1215 const u8 *mac,
1216 struct station_parameters *params)
4fd6931e 1217{
14db74bc 1218 struct ieee80211_local *local = wiphy_priv(wiphy);
4fd6931e
JB
1219 struct sta_info *sta;
1220 struct ieee80211_sub_if_data *sdata;
73651ee6 1221 int err;
b8d476c8 1222 int layer2_update;
4fd6931e 1223
4fd6931e
JB
1224 if (params->vlan) {
1225 sdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1226
05c914fe
JB
1227 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
1228 sdata->vif.type != NL80211_IFTYPE_AP)
4fd6931e
JB
1229 return -EINVAL;
1230 } else
1231 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1232
b203ca39 1233 if (ether_addr_equal(mac, sdata->vif.addr))
03e4497e
JB
1234 return -EINVAL;
1235
1236 if (is_multicast_ether_addr(mac))
1237 return -EINVAL;
1238
1239 sta = sta_info_alloc(sdata, mac, GFP_KERNEL);
73651ee6
JB
1240 if (!sta)
1241 return -ENOMEM;
4fd6931e 1242
d582cffb
JB
1243 /*
1244 * defaults -- if userspace wants something else we'll
1245 * change it accordingly in sta_apply_parameters()
1246 */
77ee7c89
JB
1247 if (!(params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER))) {
1248 sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
1249 sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC);
0c4972cc
AN
1250 } else {
1251 sta->sta.tdls = true;
77ee7c89 1252 }
4fd6931e 1253
d9a7ddb0
JB
1254 err = sta_apply_parameters(local, sta, params);
1255 if (err) {
1256 sta_info_free(local, sta);
1257 return err;
1258 }
4fd6931e 1259
d64cf63e 1260 /*
77ee7c89
JB
1261 * for TDLS, rate control should be initialized only when
1262 * rates are known and station is marked authorized
d64cf63e
AN
1263 */
1264 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER))
1265 rate_control_rate_init(sta);
4fd6931e 1266
b8d476c8
JM
1267 layer2_update = sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1268 sdata->vif.type == NL80211_IFTYPE_AP;
1269
34e89507 1270 err = sta_info_insert_rcu(sta);
73651ee6 1271 if (err) {
73651ee6
JB
1272 rcu_read_unlock();
1273 return err;
1274 }
1275
b8d476c8 1276 if (layer2_update)
73651ee6
JB
1277 ieee80211_send_layer2_update(sta);
1278
1279 rcu_read_unlock();
1280
4fd6931e
JB
1281 return 0;
1282}
1283
1284static int ieee80211_del_station(struct wiphy *wiphy, struct net_device *dev,
89c771e5 1285 struct station_del_parameters *params)
4fd6931e 1286{
14db74bc 1287 struct ieee80211_sub_if_data *sdata;
4fd6931e 1288
14db74bc
JB
1289 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1290
89c771e5
JM
1291 if (params->mac)
1292 return sta_info_destroy_addr_bss(sdata, params->mac);
4fd6931e 1293
b998e8bb 1294 sta_info_flush(sdata);
4fd6931e
JB
1295 return 0;
1296}
1297
1298static int ieee80211_change_station(struct wiphy *wiphy,
3b3a0162 1299 struct net_device *dev, const u8 *mac,
4fd6931e
JB
1300 struct station_parameters *params)
1301{
abe60632 1302 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
14db74bc 1303 struct ieee80211_local *local = wiphy_priv(wiphy);
4fd6931e
JB
1304 struct sta_info *sta;
1305 struct ieee80211_sub_if_data *vlansdata;
77ee7c89 1306 enum cfg80211_station_type statype;
35b88623 1307 int err;
4fd6931e 1308
87be1e1e 1309 mutex_lock(&local->sta_mtx);
98dd6a57 1310
0e5ded5a 1311 sta = sta_info_get_bss(sdata, mac);
98dd6a57 1312 if (!sta) {
77ee7c89
JB
1313 err = -ENOENT;
1314 goto out_err;
98dd6a57 1315 }
4fd6931e 1316
77ee7c89
JB
1317 switch (sdata->vif.type) {
1318 case NL80211_IFTYPE_MESH_POINT:
a6dad6a2 1319 if (sdata->u.mesh.user_mpm)
eef941e6 1320 statype = CFG80211_STA_MESH_PEER_USER;
77ee7c89 1321 else
eef941e6 1322 statype = CFG80211_STA_MESH_PEER_KERNEL;
77ee7c89
JB
1323 break;
1324 case NL80211_IFTYPE_ADHOC:
1325 statype = CFG80211_STA_IBSS;
1326 break;
1327 case NL80211_IFTYPE_STATION:
1328 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1329 statype = CFG80211_STA_AP_STA;
1330 break;
1331 }
1332 if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
1333 statype = CFG80211_STA_TDLS_PEER_ACTIVE;
1334 else
1335 statype = CFG80211_STA_TDLS_PEER_SETUP;
1336 break;
1337 case NL80211_IFTYPE_AP:
1338 case NL80211_IFTYPE_AP_VLAN:
1339 statype = CFG80211_STA_AP_CLIENT;
1340 break;
1341 default:
1342 err = -EOPNOTSUPP;
1343 goto out_err;
bdd90d5e
JB
1344 }
1345
77ee7c89
JB
1346 err = cfg80211_check_station_change(wiphy, params, statype);
1347 if (err)
1348 goto out_err;
1349
d0709a65 1350 if (params->vlan && params->vlan != sta->sdata->dev) {
7e3ed02c
FF
1351 bool prev_4addr = false;
1352 bool new_4addr = false;
1353
4fd6931e
JB
1354 vlansdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1355
9bc383de 1356 if (params->vlan->ieee80211_ptr->use_4addr) {
3305443c 1357 if (vlansdata->u.vlan.sta) {
77ee7c89
JB
1358 err = -EBUSY;
1359 goto out_err;
3305443c 1360 }
f14543ee 1361
cf778b00 1362 rcu_assign_pointer(vlansdata->u.vlan.sta, sta);
7e3ed02c
FF
1363 new_4addr = true;
1364 }
1365
1366 if (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1367 sta->sdata->u.vlan.sta) {
0c2bef46 1368 RCU_INIT_POINTER(sta->sdata->u.vlan.sta, NULL);
7e3ed02c 1369 prev_4addr = true;
f14543ee
FF
1370 }
1371
14db74bc 1372 sta->sdata = vlansdata;
7e3ed02c
FF
1373
1374 if (sta->sta_state == IEEE80211_STA_AUTHORIZED &&
1375 prev_4addr != new_4addr) {
1376 if (new_4addr)
1377 atomic_dec(&sta->sdata->bss->num_mcast_sta);
1378 else
1379 atomic_inc(&sta->sdata->bss->num_mcast_sta);
1380 }
1381
4fd6931e
JB
1382 ieee80211_send_layer2_update(sta);
1383 }
1384
35b88623 1385 err = sta_apply_parameters(local, sta, params);
77ee7c89
JB
1386 if (err)
1387 goto out_err;
4fd6931e 1388
87be1e1e 1389 mutex_unlock(&local->sta_mtx);
98dd6a57 1390
687da132
EG
1391 if ((sdata->vif.type == NL80211_IFTYPE_AP ||
1392 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
1393 sta->known_smps_mode != sta->sdata->bss->req_smps &&
1394 test_sta_flag(sta, WLAN_STA_AUTHORIZED) &&
1395 sta_info_tx_streams(sta) != 1) {
1396 ht_dbg(sta->sdata,
1397 "%pM just authorized and MIMO capable - update SMPS\n",
1398 sta->sta.addr);
1399 ieee80211_send_smps_action(sta->sdata,
1400 sta->sdata->bss->req_smps,
1401 sta->sta.addr,
1402 sta->sdata->vif.bss_conf.bssid);
1403 }
1404
808118cb 1405 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
ab095877 1406 params->sta_flags_mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
808118cb 1407 ieee80211_recalc_ps(local, -1);
ab095877
EP
1408 ieee80211_recalc_ps_vif(sdata);
1409 }
77ee7c89 1410
4fd6931e 1411 return 0;
77ee7c89
JB
1412out_err:
1413 mutex_unlock(&local->sta_mtx);
1414 return err;
4fd6931e
JB
1415}
1416
c5dd9c2b
LCC
1417#ifdef CONFIG_MAC80211_MESH
1418static int ieee80211_add_mpath(struct wiphy *wiphy, struct net_device *dev,
3b3a0162 1419 const u8 *dst, const u8 *next_hop)
c5dd9c2b 1420{
14db74bc 1421 struct ieee80211_sub_if_data *sdata;
c5dd9c2b
LCC
1422 struct mesh_path *mpath;
1423 struct sta_info *sta;
c5dd9c2b 1424
14db74bc
JB
1425 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1426
d0709a65 1427 rcu_read_lock();
abe60632 1428 sta = sta_info_get(sdata, next_hop);
d0709a65
JB
1429 if (!sta) {
1430 rcu_read_unlock();
c5dd9c2b 1431 return -ENOENT;
d0709a65 1432 }
c5dd9c2b 1433
ae76eef0
BC
1434 mpath = mesh_path_add(sdata, dst);
1435 if (IS_ERR(mpath)) {
d0709a65 1436 rcu_read_unlock();
ae76eef0 1437 return PTR_ERR(mpath);
d0709a65 1438 }
c5dd9c2b 1439
c5dd9c2b 1440 mesh_path_fix_nexthop(mpath, sta);
d0709a65 1441
c5dd9c2b
LCC
1442 rcu_read_unlock();
1443 return 0;
1444}
1445
1446static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev,
3b3a0162 1447 const u8 *dst)
c5dd9c2b 1448{
f698d856
JBG
1449 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1450
c5dd9c2b 1451 if (dst)
bf7cd94d 1452 return mesh_path_del(sdata, dst);
c5dd9c2b 1453
ece1a2e7 1454 mesh_path_flush_by_iface(sdata);
c5dd9c2b
LCC
1455 return 0;
1456}
1457
3b3a0162
JB
1458static int ieee80211_change_mpath(struct wiphy *wiphy, struct net_device *dev,
1459 const u8 *dst, const u8 *next_hop)
c5dd9c2b 1460{
14db74bc 1461 struct ieee80211_sub_if_data *sdata;
c5dd9c2b
LCC
1462 struct mesh_path *mpath;
1463 struct sta_info *sta;
1464
14db74bc
JB
1465 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1466
d0709a65
JB
1467 rcu_read_lock();
1468
abe60632 1469 sta = sta_info_get(sdata, next_hop);
d0709a65
JB
1470 if (!sta) {
1471 rcu_read_unlock();
c5dd9c2b 1472 return -ENOENT;
d0709a65 1473 }
c5dd9c2b 1474
bf7cd94d 1475 mpath = mesh_path_lookup(sdata, dst);
c5dd9c2b
LCC
1476 if (!mpath) {
1477 rcu_read_unlock();
c5dd9c2b
LCC
1478 return -ENOENT;
1479 }
1480
1481 mesh_path_fix_nexthop(mpath, sta);
d0709a65 1482
c5dd9c2b
LCC
1483 rcu_read_unlock();
1484 return 0;
1485}
1486
1487static void mpath_set_pinfo(struct mesh_path *mpath, u8 *next_hop,
1488 struct mpath_info *pinfo)
1489{
a3836e02
JB
1490 struct sta_info *next_hop_sta = rcu_dereference(mpath->next_hop);
1491
1492 if (next_hop_sta)
1493 memcpy(next_hop, next_hop_sta->sta.addr, ETH_ALEN);
c5dd9c2b
LCC
1494 else
1495 memset(next_hop, 0, ETH_ALEN);
1496
7ce8c7a3
LAYS
1497 memset(pinfo, 0, sizeof(*pinfo));
1498
f5ea9120
JB
1499 pinfo->generation = mesh_paths_generation;
1500
c5dd9c2b 1501 pinfo->filled = MPATH_INFO_FRAME_QLEN |
d19b3bf6 1502 MPATH_INFO_SN |
c5dd9c2b
LCC
1503 MPATH_INFO_METRIC |
1504 MPATH_INFO_EXPTIME |
1505 MPATH_INFO_DISCOVERY_TIMEOUT |
1506 MPATH_INFO_DISCOVERY_RETRIES |
1507 MPATH_INFO_FLAGS;
1508
1509 pinfo->frame_qlen = mpath->frame_queue.qlen;
d19b3bf6 1510 pinfo->sn = mpath->sn;
c5dd9c2b
LCC
1511 pinfo->metric = mpath->metric;
1512 if (time_before(jiffies, mpath->exp_time))
1513 pinfo->exptime = jiffies_to_msecs(mpath->exp_time - jiffies);
1514 pinfo->discovery_timeout =
1515 jiffies_to_msecs(mpath->discovery_timeout);
1516 pinfo->discovery_retries = mpath->discovery_retries;
c5dd9c2b
LCC
1517 if (mpath->flags & MESH_PATH_ACTIVE)
1518 pinfo->flags |= NL80211_MPATH_FLAG_ACTIVE;
1519 if (mpath->flags & MESH_PATH_RESOLVING)
1520 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
d19b3bf6
RP
1521 if (mpath->flags & MESH_PATH_SN_VALID)
1522 pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID;
c5dd9c2b
LCC
1523 if (mpath->flags & MESH_PATH_FIXED)
1524 pinfo->flags |= NL80211_MPATH_FLAG_FIXED;
7ce8c7a3
LAYS
1525 if (mpath->flags & MESH_PATH_RESOLVED)
1526 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVED;
c5dd9c2b
LCC
1527}
1528
1529static int ieee80211_get_mpath(struct wiphy *wiphy, struct net_device *dev,
1530 u8 *dst, u8 *next_hop, struct mpath_info *pinfo)
1531
1532{
14db74bc 1533 struct ieee80211_sub_if_data *sdata;
c5dd9c2b
LCC
1534 struct mesh_path *mpath;
1535
14db74bc
JB
1536 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1537
c5dd9c2b 1538 rcu_read_lock();
bf7cd94d 1539 mpath = mesh_path_lookup(sdata, dst);
c5dd9c2b
LCC
1540 if (!mpath) {
1541 rcu_read_unlock();
1542 return -ENOENT;
1543 }
1544 memcpy(dst, mpath->dst, ETH_ALEN);
1545 mpath_set_pinfo(mpath, next_hop, pinfo);
1546 rcu_read_unlock();
1547 return 0;
1548}
1549
1550static int ieee80211_dump_mpath(struct wiphy *wiphy, struct net_device *dev,
3b3a0162
JB
1551 int idx, u8 *dst, u8 *next_hop,
1552 struct mpath_info *pinfo)
c5dd9c2b 1553{
14db74bc 1554 struct ieee80211_sub_if_data *sdata;
c5dd9c2b
LCC
1555 struct mesh_path *mpath;
1556
14db74bc
JB
1557 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1558
c5dd9c2b 1559 rcu_read_lock();
bf7cd94d 1560 mpath = mesh_path_lookup_by_idx(sdata, idx);
c5dd9c2b
LCC
1561 if (!mpath) {
1562 rcu_read_unlock();
1563 return -ENOENT;
1564 }
1565 memcpy(dst, mpath->dst, ETH_ALEN);
1566 mpath_set_pinfo(mpath, next_hop, pinfo);
1567 rcu_read_unlock();
1568 return 0;
1569}
93da9cc1 1570
a2db2ed3
HR
1571static void mpp_set_pinfo(struct mesh_path *mpath, u8 *mpp,
1572 struct mpath_info *pinfo)
1573{
1574 memset(pinfo, 0, sizeof(*pinfo));
1575 memcpy(mpp, mpath->mpp, ETH_ALEN);
1576
1577 pinfo->generation = mpp_paths_generation;
1578}
1579
1580static int ieee80211_get_mpp(struct wiphy *wiphy, struct net_device *dev,
1581 u8 *dst, u8 *mpp, struct mpath_info *pinfo)
1582
1583{
1584 struct ieee80211_sub_if_data *sdata;
1585 struct mesh_path *mpath;
1586
1587 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1588
1589 rcu_read_lock();
1590 mpath = mpp_path_lookup(sdata, dst);
1591 if (!mpath) {
1592 rcu_read_unlock();
1593 return -ENOENT;
1594 }
1595 memcpy(dst, mpath->dst, ETH_ALEN);
1596 mpp_set_pinfo(mpath, mpp, pinfo);
1597 rcu_read_unlock();
1598 return 0;
1599}
1600
1601static int ieee80211_dump_mpp(struct wiphy *wiphy, struct net_device *dev,
1602 int idx, u8 *dst, u8 *mpp,
1603 struct mpath_info *pinfo)
1604{
1605 struct ieee80211_sub_if_data *sdata;
1606 struct mesh_path *mpath;
1607
1608 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1609
1610 rcu_read_lock();
1611 mpath = mpp_path_lookup_by_idx(sdata, idx);
1612 if (!mpath) {
1613 rcu_read_unlock();
1614 return -ENOENT;
1615 }
1616 memcpy(dst, mpath->dst, ETH_ALEN);
1617 mpp_set_pinfo(mpath, mpp, pinfo);
1618 rcu_read_unlock();
1619 return 0;
1620}
1621
24bdd9f4 1622static int ieee80211_get_mesh_config(struct wiphy *wiphy,
93da9cc1 1623 struct net_device *dev,
1624 struct mesh_config *conf)
1625{
1626 struct ieee80211_sub_if_data *sdata;
1627 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1628
93da9cc1 1629 memcpy(conf, &(sdata->u.mesh.mshcfg), sizeof(struct mesh_config));
1630 return 0;
1631}
1632
1633static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm, u32 mask)
1634{
1635 return (mask >> (parm-1)) & 0x1;
1636}
1637
c80d545d
JC
1638static int copy_mesh_setup(struct ieee80211_if_mesh *ifmsh,
1639 const struct mesh_setup *setup)
1640{
1641 u8 *new_ie;
1642 const u8 *old_ie;
4bb62344
CYY
1643 struct ieee80211_sub_if_data *sdata = container_of(ifmsh,
1644 struct ieee80211_sub_if_data, u.mesh);
c80d545d 1645
581a8b0f 1646 /* allocate information elements */
c80d545d 1647 new_ie = NULL;
581a8b0f 1648 old_ie = ifmsh->ie;
c80d545d 1649
581a8b0f
JC
1650 if (setup->ie_len) {
1651 new_ie = kmemdup(setup->ie, setup->ie_len,
c80d545d
JC
1652 GFP_KERNEL);
1653 if (!new_ie)
1654 return -ENOMEM;
1655 }
581a8b0f
JC
1656 ifmsh->ie_len = setup->ie_len;
1657 ifmsh->ie = new_ie;
1658 kfree(old_ie);
c80d545d
JC
1659
1660 /* now copy the rest of the setup parameters */
1661 ifmsh->mesh_id_len = setup->mesh_id_len;
1662 memcpy(ifmsh->mesh_id, setup->mesh_id, ifmsh->mesh_id_len);
d299a1f2 1663 ifmsh->mesh_sp_id = setup->sync_method;
c80d545d
JC
1664 ifmsh->mesh_pp_id = setup->path_sel_proto;
1665 ifmsh->mesh_pm_id = setup->path_metric;
a6dad6a2 1666 ifmsh->user_mpm = setup->user_mpm;
0d4261ad 1667 ifmsh->mesh_auth_id = setup->auth_id;
b130e5ce
JC
1668 ifmsh->security = IEEE80211_MESH_SEC_NONE;
1669 if (setup->is_authenticated)
1670 ifmsh->security |= IEEE80211_MESH_SEC_AUTHED;
1671 if (setup->is_secure)
1672 ifmsh->security |= IEEE80211_MESH_SEC_SECURED;
c80d545d 1673
4bb62344
CYY
1674 /* mcast rate setting in Mesh Node */
1675 memcpy(sdata->vif.bss_conf.mcast_rate, setup->mcast_rate,
1676 sizeof(setup->mcast_rate));
ffb3cf30 1677 sdata->vif.bss_conf.basic_rates = setup->basic_rates;
4bb62344 1678
9bdbf04d
MP
1679 sdata->vif.bss_conf.beacon_int = setup->beacon_interval;
1680 sdata->vif.bss_conf.dtim_period = setup->dtim_period;
1681
c80d545d
JC
1682 return 0;
1683}
1684
24bdd9f4 1685static int ieee80211_update_mesh_config(struct wiphy *wiphy,
29cbe68c
JB
1686 struct net_device *dev, u32 mask,
1687 const struct mesh_config *nconf)
93da9cc1 1688{
1689 struct mesh_config *conf;
1690 struct ieee80211_sub_if_data *sdata;
63c5723b
RP
1691 struct ieee80211_if_mesh *ifmsh;
1692
93da9cc1 1693 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
63c5723b 1694 ifmsh = &sdata->u.mesh;
93da9cc1 1695
93da9cc1 1696 /* Set the config options which we are interested in setting */
1697 conf = &(sdata->u.mesh.mshcfg);
1698 if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT, mask))
1699 conf->dot11MeshRetryTimeout = nconf->dot11MeshRetryTimeout;
1700 if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT, mask))
1701 conf->dot11MeshConfirmTimeout = nconf->dot11MeshConfirmTimeout;
1702 if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT, mask))
1703 conf->dot11MeshHoldingTimeout = nconf->dot11MeshHoldingTimeout;
1704 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS, mask))
1705 conf->dot11MeshMaxPeerLinks = nconf->dot11MeshMaxPeerLinks;
1706 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES, mask))
1707 conf->dot11MeshMaxRetries = nconf->dot11MeshMaxRetries;
1708 if (_chg_mesh_attr(NL80211_MESHCONF_TTL, mask))
1709 conf->dot11MeshTTL = nconf->dot11MeshTTL;
45904f21 1710 if (_chg_mesh_attr(NL80211_MESHCONF_ELEMENT_TTL, mask))
58886a90 1711 conf->element_ttl = nconf->element_ttl;
146bb483
TP
1712 if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS, mask)) {
1713 if (ifmsh->user_mpm)
1714 return -EBUSY;
93da9cc1 1715 conf->auto_open_plinks = nconf->auto_open_plinks;
146bb483 1716 }
d299a1f2
JC
1717 if (_chg_mesh_attr(NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR, mask))
1718 conf->dot11MeshNbrOffsetMaxNeighbor =
1719 nconf->dot11MeshNbrOffsetMaxNeighbor;
93da9cc1 1720 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, mask))
1721 conf->dot11MeshHWMPmaxPREQretries =
1722 nconf->dot11MeshHWMPmaxPREQretries;
1723 if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME, mask))
1724 conf->path_refresh_time = nconf->path_refresh_time;
1725 if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, mask))
1726 conf->min_discovery_timeout = nconf->min_discovery_timeout;
1727 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, mask))
1728 conf->dot11MeshHWMPactivePathTimeout =
1729 nconf->dot11MeshHWMPactivePathTimeout;
1730 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, mask))
1731 conf->dot11MeshHWMPpreqMinInterval =
1732 nconf->dot11MeshHWMPpreqMinInterval;
dca7e943
TP
1733 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL, mask))
1734 conf->dot11MeshHWMPperrMinInterval =
1735 nconf->dot11MeshHWMPperrMinInterval;
93da9cc1 1736 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
1737 mask))
1738 conf->dot11MeshHWMPnetDiameterTraversalTime =
1739 nconf->dot11MeshHWMPnetDiameterTraversalTime;
63c5723b
RP
1740 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask)) {
1741 conf->dot11MeshHWMPRootMode = nconf->dot11MeshHWMPRootMode;
1742 ieee80211_mesh_root_setup(ifmsh);
1743 }
16dd7267 1744 if (_chg_mesh_attr(NL80211_MESHCONF_GATE_ANNOUNCEMENTS, mask)) {
c6133661
TP
1745 /* our current gate announcement implementation rides on root
1746 * announcements, so require this ifmsh to also be a root node
1747 * */
1748 if (nconf->dot11MeshGateAnnouncementProtocol &&
dbb912cd
CYY
1749 !(conf->dot11MeshHWMPRootMode > IEEE80211_ROOTMODE_ROOT)) {
1750 conf->dot11MeshHWMPRootMode = IEEE80211_PROACTIVE_RANN;
c6133661
TP
1751 ieee80211_mesh_root_setup(ifmsh);
1752 }
16dd7267
JC
1753 conf->dot11MeshGateAnnouncementProtocol =
1754 nconf->dot11MeshGateAnnouncementProtocol;
1755 }
a4f606ea 1756 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_RANN_INTERVAL, mask))
0507e159
JC
1757 conf->dot11MeshHWMPRannInterval =
1758 nconf->dot11MeshHWMPRannInterval;
94f90656
CYY
1759 if (_chg_mesh_attr(NL80211_MESHCONF_FORWARDING, mask))
1760 conf->dot11MeshForwarding = nconf->dot11MeshForwarding;
55335137
AN
1761 if (_chg_mesh_attr(NL80211_MESHCONF_RSSI_THRESHOLD, mask)) {
1762 /* our RSSI threshold implementation is supported only for
1763 * devices that report signal in dBm.
1764 */
1765 if (!(sdata->local->hw.flags & IEEE80211_HW_SIGNAL_DBM))
1766 return -ENOTSUPP;
1767 conf->rssi_threshold = nconf->rssi_threshold;
1768 }
70c33eaa
AN
1769 if (_chg_mesh_attr(NL80211_MESHCONF_HT_OPMODE, mask)) {
1770 conf->ht_opmode = nconf->ht_opmode;
1771 sdata->vif.bss_conf.ht_operation_mode = nconf->ht_opmode;
1772 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_HT);
1773 }
ac1073a6
CYY
1774 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT, mask))
1775 conf->dot11MeshHWMPactivePathToRootTimeout =
1776 nconf->dot11MeshHWMPactivePathToRootTimeout;
1777 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOT_INTERVAL, mask))
1778 conf->dot11MeshHWMProotInterval =
1779 nconf->dot11MeshHWMProotInterval;
728b19e5
CYY
1780 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL, mask))
1781 conf->dot11MeshHWMPconfirmationInterval =
1782 nconf->dot11MeshHWMPconfirmationInterval;
3f52b7e3
MP
1783 if (_chg_mesh_attr(NL80211_MESHCONF_POWER_MODE, mask)) {
1784 conf->power_mode = nconf->power_mode;
1785 ieee80211_mps_local_status_update(sdata);
1786 }
2b5e1967 1787 if (_chg_mesh_attr(NL80211_MESHCONF_AWAKE_WINDOW, mask))
3f52b7e3
MP
1788 conf->dot11MeshAwakeWindowDuration =
1789 nconf->dot11MeshAwakeWindowDuration;
66de6713
CT
1790 if (_chg_mesh_attr(NL80211_MESHCONF_PLINK_TIMEOUT, mask))
1791 conf->plink_timeout = nconf->plink_timeout;
2b5e1967 1792 ieee80211_mbss_info_change_notify(sdata, BSS_CHANGED_BEACON);
93da9cc1 1793 return 0;
1794}
1795
29cbe68c
JB
1796static int ieee80211_join_mesh(struct wiphy *wiphy, struct net_device *dev,
1797 const struct mesh_config *conf,
1798 const struct mesh_setup *setup)
1799{
1800 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1801 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
c80d545d 1802 int err;
29cbe68c 1803
c80d545d
JC
1804 memcpy(&ifmsh->mshcfg, conf, sizeof(struct mesh_config));
1805 err = copy_mesh_setup(ifmsh, setup);
1806 if (err)
1807 return err;
cc1d2806 1808
04ecd257
JB
1809 /* can mesh use other SMPS modes? */
1810 sdata->smps_mode = IEEE80211_SMPS_OFF;
1811 sdata->needed_rx_chains = sdata->local->rx_chains;
1812
34a3740d 1813 mutex_lock(&sdata->local->mtx);
4bf88530 1814 err = ieee80211_vif_use_channel(sdata, &setup->chandef,
55de908a 1815 IEEE80211_CHANCTX_SHARED);
34a3740d 1816 mutex_unlock(&sdata->local->mtx);
cc1d2806
JB
1817 if (err)
1818 return err;
1819
2b5e1967 1820 return ieee80211_start_mesh(sdata);
29cbe68c
JB
1821}
1822
1823static int ieee80211_leave_mesh(struct wiphy *wiphy, struct net_device *dev)
1824{
1825 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1826
1827 ieee80211_stop_mesh(sdata);
34a3740d 1828 mutex_lock(&sdata->local->mtx);
55de908a 1829 ieee80211_vif_release_channel(sdata);
34a3740d 1830 mutex_unlock(&sdata->local->mtx);
29cbe68c
JB
1831
1832 return 0;
1833}
c5dd9c2b
LCC
1834#endif
1835
9f1ba906
JM
1836static int ieee80211_change_bss(struct wiphy *wiphy,
1837 struct net_device *dev,
1838 struct bss_parameters *params)
1839{
55de908a
JB
1840 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1841 enum ieee80211_band band;
9f1ba906
JM
1842 u32 changed = 0;
1843
7ca133bc 1844 if (!sdata_dereference(sdata->u.ap.beacon, sdata))
55de908a
JB
1845 return -ENOENT;
1846
1847 band = ieee80211_get_sdata_band(sdata);
9f1ba906 1848
9f1ba906 1849 if (params->use_cts_prot >= 0) {
bda3933a 1850 sdata->vif.bss_conf.use_cts_prot = params->use_cts_prot;
9f1ba906
JM
1851 changed |= BSS_CHANGED_ERP_CTS_PROT;
1852 }
1853 if (params->use_short_preamble >= 0) {
bda3933a 1854 sdata->vif.bss_conf.use_short_preamble =
9f1ba906
JM
1855 params->use_short_preamble;
1856 changed |= BSS_CHANGED_ERP_PREAMBLE;
1857 }
43d35343
FF
1858
1859 if (!sdata->vif.bss_conf.use_short_slot &&
55de908a 1860 band == IEEE80211_BAND_5GHZ) {
43d35343
FF
1861 sdata->vif.bss_conf.use_short_slot = true;
1862 changed |= BSS_CHANGED_ERP_SLOT;
1863 }
1864
9f1ba906 1865 if (params->use_short_slot_time >= 0) {
bda3933a 1866 sdata->vif.bss_conf.use_short_slot =
9f1ba906
JM
1867 params->use_short_slot_time;
1868 changed |= BSS_CHANGED_ERP_SLOT;
1869 }
1870
90c97a04 1871 if (params->basic_rates) {
2103dec1
SW
1872 ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef,
1873 wiphy->bands[band],
1874 params->basic_rates,
1875 params->basic_rates_len,
1876 &sdata->vif.bss_conf.basic_rates);
90c97a04
JM
1877 changed |= BSS_CHANGED_BASIC_RATES;
1878 }
1879
7b7b5e56
FF
1880 if (params->ap_isolate >= 0) {
1881 if (params->ap_isolate)
1882 sdata->flags |= IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1883 else
1884 sdata->flags &= ~IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1885 }
1886
80d7e403
HS
1887 if (params->ht_opmode >= 0) {
1888 sdata->vif.bss_conf.ht_operation_mode =
1889 (u16) params->ht_opmode;
1890 changed |= BSS_CHANGED_HT;
1891 }
1892
339afbf4 1893 if (params->p2p_ctwindow >= 0) {
67baf663
JD
1894 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &=
1895 ~IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
1896 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
1897 params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
339afbf4
JB
1898 changed |= BSS_CHANGED_P2P_PS;
1899 }
1900
67baf663
JD
1901 if (params->p2p_opp_ps > 0) {
1902 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
1903 IEEE80211_P2P_OPPPS_ENABLE_BIT;
1904 changed |= BSS_CHANGED_P2P_PS;
1905 } else if (params->p2p_opp_ps == 0) {
1906 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &=
1907 ~IEEE80211_P2P_OPPPS_ENABLE_BIT;
339afbf4
JB
1908 changed |= BSS_CHANGED_P2P_PS;
1909 }
1910
9f1ba906
JM
1911 ieee80211_bss_info_change_notify(sdata, changed);
1912
1913 return 0;
1914}
1915
31888487 1916static int ieee80211_set_txq_params(struct wiphy *wiphy,
f70f01c2 1917 struct net_device *dev,
31888487
JM
1918 struct ieee80211_txq_params *params)
1919{
1920 struct ieee80211_local *local = wiphy_priv(wiphy);
f6f3def3 1921 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
31888487
JM
1922 struct ieee80211_tx_queue_params p;
1923
1924 if (!local->ops->conf_tx)
1925 return -EOPNOTSUPP;
1926
54bcbc69
JB
1927 if (local->hw.queues < IEEE80211_NUM_ACS)
1928 return -EOPNOTSUPP;
1929
31888487
JM
1930 memset(&p, 0, sizeof(p));
1931 p.aifs = params->aifs;
1932 p.cw_max = params->cwmax;
1933 p.cw_min = params->cwmin;
1934 p.txop = params->txop;
ab13315a
KV
1935
1936 /*
1937 * Setting tx queue params disables u-apsd because it's only
1938 * called in master mode.
1939 */
1940 p.uapsd = false;
1941
a3304b0a
JB
1942 sdata->tx_conf[params->ac] = p;
1943 if (drv_conf_tx(local, sdata, params->ac, &p)) {
0fb9a9ec 1944 wiphy_debug(local->hw.wiphy,
a3304b0a
JB
1945 "failed to set TX queue parameters for AC %d\n",
1946 params->ac);
31888487
JM
1947 return -EINVAL;
1948 }
1949
7d25745d
JB
1950 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_QOS);
1951
31888487
JM
1952 return 0;
1953}
1954
665af4fc 1955#ifdef CONFIG_PM
ff1b6e69
JB
1956static int ieee80211_suspend(struct wiphy *wiphy,
1957 struct cfg80211_wowlan *wowlan)
665af4fc 1958{
eecc4800 1959 return __ieee80211_suspend(wiphy_priv(wiphy), wowlan);
665af4fc
BC
1960}
1961
1962static int ieee80211_resume(struct wiphy *wiphy)
1963{
1964 return __ieee80211_resume(wiphy_priv(wiphy));
1965}
1966#else
1967#define ieee80211_suspend NULL
1968#define ieee80211_resume NULL
1969#endif
1970
2a519311 1971static int ieee80211_scan(struct wiphy *wiphy,
2a519311
JB
1972 struct cfg80211_scan_request *req)
1973{
fd014284
JB
1974 struct ieee80211_sub_if_data *sdata;
1975
1976 sdata = IEEE80211_WDEV_TO_SUB_IF(req->wdev);
2a519311 1977
2ca27bcf
JB
1978 switch (ieee80211_vif_type_p2p(&sdata->vif)) {
1979 case NL80211_IFTYPE_STATION:
1980 case NL80211_IFTYPE_ADHOC:
1981 case NL80211_IFTYPE_MESH_POINT:
1982 case NL80211_IFTYPE_P2P_CLIENT:
f142c6b9 1983 case NL80211_IFTYPE_P2P_DEVICE:
2ca27bcf
JB
1984 break;
1985 case NL80211_IFTYPE_P2P_GO:
1986 if (sdata->local->ops->hw_scan)
1987 break;
e9d7732e
JB
1988 /*
1989 * FIXME: implement NoA while scanning in software,
1990 * for now fall through to allow scanning only when
1991 * beaconing hasn't been configured yet
1992 */
2ca27bcf 1993 case NL80211_IFTYPE_AP:
5c95b940
AQ
1994 /*
1995 * If the scan has been forced (and the driver supports
1996 * forcing), don't care about being beaconing already.
1997 * This will create problems to the attached stations (e.g. all
1998 * the frames sent while scanning on other channel will be
1999 * lost)
2000 */
2001 if (sdata->u.ap.beacon &&
2002 (!(wiphy->features & NL80211_FEATURE_AP_SCAN) ||
2003 !(req->flags & NL80211_SCAN_FLAG_AP)))
2ca27bcf
JB
2004 return -EOPNOTSUPP;
2005 break;
2006 default:
2007 return -EOPNOTSUPP;
2008 }
2a519311
JB
2009
2010 return ieee80211_request_scan(sdata, req);
2011}
2012
79f460ca
LC
2013static int
2014ieee80211_sched_scan_start(struct wiphy *wiphy,
2015 struct net_device *dev,
2016 struct cfg80211_sched_scan_request *req)
2017{
2018 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2019
2020 if (!sdata->local->ops->sched_scan_start)
2021 return -EOPNOTSUPP;
2022
2023 return ieee80211_request_sched_scan_start(sdata, req);
2024}
2025
2026static int
85a9994a 2027ieee80211_sched_scan_stop(struct wiphy *wiphy, struct net_device *dev)
79f460ca
LC
2028{
2029 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2030
2031 if (!sdata->local->ops->sched_scan_stop)
2032 return -EOPNOTSUPP;
2033
85a9994a 2034 return ieee80211_request_sched_scan_stop(sdata);
79f460ca
LC
2035}
2036
636a5d36
JM
2037static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev,
2038 struct cfg80211_auth_request *req)
2039{
77fdaa12 2040 return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev), req);
636a5d36
JM
2041}
2042
2043static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev,
2044 struct cfg80211_assoc_request *req)
2045{
77fdaa12 2046 return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
636a5d36
JM
2047}
2048
2049static int ieee80211_deauth(struct wiphy *wiphy, struct net_device *dev,
63c9c5e7 2050 struct cfg80211_deauth_request *req)
636a5d36 2051{
63c9c5e7 2052 return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev), req);
636a5d36
JM
2053}
2054
2055static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev,
63c9c5e7 2056 struct cfg80211_disassoc_request *req)
636a5d36 2057{
63c9c5e7 2058 return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
636a5d36
JM
2059}
2060
af8cdcd8
JB
2061static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
2062 struct cfg80211_ibss_params *params)
2063{
55de908a 2064 return ieee80211_ibss_join(IEEE80211_DEV_TO_SUB_IF(dev), params);
af8cdcd8
JB
2065}
2066
2067static int ieee80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev)
2068{
55de908a 2069 return ieee80211_ibss_leave(IEEE80211_DEV_TO_SUB_IF(dev));
af8cdcd8
JB
2070}
2071
239281f8
RL
2072static int ieee80211_join_ocb(struct wiphy *wiphy, struct net_device *dev,
2073 struct ocb_setup *setup)
2074{
2075 return ieee80211_ocb_join(IEEE80211_DEV_TO_SUB_IF(dev), setup);
2076}
2077
2078static int ieee80211_leave_ocb(struct wiphy *wiphy, struct net_device *dev)
2079{
2080 return ieee80211_ocb_leave(IEEE80211_DEV_TO_SUB_IF(dev));
2081}
2082
391e53e3
AQ
2083static int ieee80211_set_mcast_rate(struct wiphy *wiphy, struct net_device *dev,
2084 int rate[IEEE80211_NUM_BANDS])
2085{
2086 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2087
9887dbf5
CD
2088 memcpy(sdata->vif.bss_conf.mcast_rate, rate,
2089 sizeof(int) * IEEE80211_NUM_BANDS);
391e53e3
AQ
2090
2091 return 0;
2092}
2093
b9a5f8ca
JM
2094static int ieee80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
2095{
2096 struct ieee80211_local *local = wiphy_priv(wiphy);
24487981 2097 int err;
b9a5f8ca 2098
f23a4780
AN
2099 if (changed & WIPHY_PARAM_FRAG_THRESHOLD) {
2100 err = drv_set_frag_threshold(local, wiphy->frag_threshold);
2101
2102 if (err)
2103 return err;
2104 }
2105
a4bcaf55
LB
2106 if ((changed & WIPHY_PARAM_COVERAGE_CLASS) ||
2107 (changed & WIPHY_PARAM_DYN_ACK)) {
2108 s16 coverage_class;
2109
2110 coverage_class = changed & WIPHY_PARAM_COVERAGE_CLASS ?
2111 wiphy->coverage_class : -1;
2112 err = drv_set_coverage_class(local, coverage_class);
310bc676
LT
2113
2114 if (err)
2115 return err;
2116 }
2117
b9a5f8ca 2118 if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
24487981 2119 err = drv_set_rts_threshold(local, wiphy->rts_threshold);
b9a5f8ca 2120
24487981
JB
2121 if (err)
2122 return err;
b9a5f8ca
JM
2123 }
2124
8bc83c24
JB
2125 if (changed & WIPHY_PARAM_RETRY_SHORT) {
2126 if (wiphy->retry_short > IEEE80211_MAX_TX_RETRY)
2127 return -EINVAL;
b9a5f8ca 2128 local->hw.conf.short_frame_max_tx_count = wiphy->retry_short;
8bc83c24
JB
2129 }
2130 if (changed & WIPHY_PARAM_RETRY_LONG) {
2131 if (wiphy->retry_long > IEEE80211_MAX_TX_RETRY)
2132 return -EINVAL;
b9a5f8ca 2133 local->hw.conf.long_frame_max_tx_count = wiphy->retry_long;
8bc83c24 2134 }
b9a5f8ca
JM
2135 if (changed &
2136 (WIPHY_PARAM_RETRY_SHORT | WIPHY_PARAM_RETRY_LONG))
2137 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
2138
2139 return 0;
2140}
2141
7643a2c3 2142static int ieee80211_set_tx_power(struct wiphy *wiphy,
c8442118 2143 struct wireless_dev *wdev,
fa61cf70 2144 enum nl80211_tx_power_setting type, int mbm)
7643a2c3
JB
2145{
2146 struct ieee80211_local *local = wiphy_priv(wiphy);
1ea6f9c0 2147 struct ieee80211_sub_if_data *sdata;
db82d8a9
LB
2148 enum nl80211_tx_power_setting txp_type = type;
2149 bool update_txp_type = false;
7643a2c3 2150
1ea6f9c0
JB
2151 if (wdev) {
2152 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2153
2154 switch (type) {
2155 case NL80211_TX_POWER_AUTOMATIC:
2156 sdata->user_power_level = IEEE80211_UNSET_POWER_LEVEL;
db82d8a9 2157 txp_type = NL80211_TX_POWER_LIMITED;
1ea6f9c0
JB
2158 break;
2159 case NL80211_TX_POWER_LIMITED:
2160 case NL80211_TX_POWER_FIXED:
2161 if (mbm < 0 || (mbm % 100))
2162 return -EOPNOTSUPP;
2163 sdata->user_power_level = MBM_TO_DBM(mbm);
2164 break;
2165 }
2166
db82d8a9
LB
2167 if (txp_type != sdata->vif.bss_conf.txpower_type) {
2168 update_txp_type = true;
2169 sdata->vif.bss_conf.txpower_type = txp_type;
2170 }
2171
2172 ieee80211_recalc_txpower(sdata, update_txp_type);
1ea6f9c0
JB
2173
2174 return 0;
2175 }
55de908a 2176
7643a2c3 2177 switch (type) {
fa61cf70 2178 case NL80211_TX_POWER_AUTOMATIC:
1ea6f9c0 2179 local->user_power_level = IEEE80211_UNSET_POWER_LEVEL;
db82d8a9 2180 txp_type = NL80211_TX_POWER_LIMITED;
7643a2c3 2181 break;
fa61cf70 2182 case NL80211_TX_POWER_LIMITED:
fa61cf70
JO
2183 case NL80211_TX_POWER_FIXED:
2184 if (mbm < 0 || (mbm % 100))
2185 return -EOPNOTSUPP;
fa61cf70 2186 local->user_power_level = MBM_TO_DBM(mbm);
7643a2c3 2187 break;
7643a2c3
JB
2188 }
2189
1ea6f9c0 2190 mutex_lock(&local->iflist_mtx);
db82d8a9 2191 list_for_each_entry(sdata, &local->interfaces, list) {
1ea6f9c0 2192 sdata->user_power_level = local->user_power_level;
db82d8a9
LB
2193 if (txp_type != sdata->vif.bss_conf.txpower_type)
2194 update_txp_type = true;
2195 sdata->vif.bss_conf.txpower_type = txp_type;
2196 }
1ea6f9c0 2197 list_for_each_entry(sdata, &local->interfaces, list)
db82d8a9 2198 ieee80211_recalc_txpower(sdata, update_txp_type);
1ea6f9c0 2199 mutex_unlock(&local->iflist_mtx);
7643a2c3
JB
2200
2201 return 0;
2202}
2203
c8442118
JB
2204static int ieee80211_get_tx_power(struct wiphy *wiphy,
2205 struct wireless_dev *wdev,
2206 int *dbm)
7643a2c3
JB
2207{
2208 struct ieee80211_local *local = wiphy_priv(wiphy);
1ea6f9c0 2209 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
7643a2c3 2210
5b3dc42b
FF
2211 if (local->ops->get_txpower)
2212 return drv_get_txpower(local, sdata, dbm);
2213
1ea6f9c0
JB
2214 if (!local->use_chanctx)
2215 *dbm = local->hw.conf.power_level;
2216 else
2217 *dbm = sdata->vif.bss_conf.txpower;
7643a2c3 2218
7643a2c3
JB
2219 return 0;
2220}
2221
ab737a4f 2222static int ieee80211_set_wds_peer(struct wiphy *wiphy, struct net_device *dev,
388ac775 2223 const u8 *addr)
ab737a4f
JB
2224{
2225 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2226
2227 memcpy(&sdata->u.wds.remote_addr, addr, ETH_ALEN);
2228
2229 return 0;
2230}
2231
1f87f7d3
JB
2232static void ieee80211_rfkill_poll(struct wiphy *wiphy)
2233{
2234 struct ieee80211_local *local = wiphy_priv(wiphy);
2235
2236 drv_rfkill_poll(local);
2237}
2238
aff89a9b 2239#ifdef CONFIG_NL80211_TESTMODE
fc73f11f
DS
2240static int ieee80211_testmode_cmd(struct wiphy *wiphy,
2241 struct wireless_dev *wdev,
2242 void *data, int len)
aff89a9b
JB
2243{
2244 struct ieee80211_local *local = wiphy_priv(wiphy);
52981cd7 2245 struct ieee80211_vif *vif = NULL;
aff89a9b
JB
2246
2247 if (!local->ops->testmode_cmd)
2248 return -EOPNOTSUPP;
2249
52981cd7
DS
2250 if (wdev) {
2251 struct ieee80211_sub_if_data *sdata;
2252
2253 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2254 if (sdata->flags & IEEE80211_SDATA_IN_DRIVER)
2255 vif = &sdata->vif;
2256 }
2257
2258 return local->ops->testmode_cmd(&local->hw, vif, data, len);
aff89a9b 2259}
71063f0e
WYG
2260
2261static int ieee80211_testmode_dump(struct wiphy *wiphy,
2262 struct sk_buff *skb,
2263 struct netlink_callback *cb,
2264 void *data, int len)
2265{
2266 struct ieee80211_local *local = wiphy_priv(wiphy);
2267
2268 if (!local->ops->testmode_dump)
2269 return -EOPNOTSUPP;
2270
2271 return local->ops->testmode_dump(&local->hw, skb, cb, data, len);
2272}
aff89a9b
JB
2273#endif
2274
687da132
EG
2275int __ieee80211_request_smps_ap(struct ieee80211_sub_if_data *sdata,
2276 enum ieee80211_smps_mode smps_mode)
2277{
2278 struct sta_info *sta;
2279 enum ieee80211_smps_mode old_req;
687da132
EG
2280
2281 if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_AP))
2282 return -EINVAL;
2283
2284 if (sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT)
2285 return 0;
2286
2287 old_req = sdata->u.ap.req_smps;
2288 sdata->u.ap.req_smps = smps_mode;
2289
2290 /* AUTOMATIC doesn't mean much for AP - don't allow it */
2291 if (old_req == smps_mode ||
2292 smps_mode == IEEE80211_SMPS_AUTOMATIC)
2293 return 0;
2294
2295 /* If no associated stations, there's no need to do anything */
2296 if (!atomic_read(&sdata->u.ap.num_mcast_sta)) {
2297 sdata->smps_mode = smps_mode;
2298 ieee80211_queue_work(&sdata->local->hw, &sdata->recalc_smps);
2299 return 0;
2300 }
2301
2302 ht_dbg(sdata,
2303 "SMSP %d requested in AP mode, sending Action frame to %d stations\n",
2304 smps_mode, atomic_read(&sdata->u.ap.num_mcast_sta));
2305
2306 mutex_lock(&sdata->local->sta_mtx);
7d9bb2f0
JB
2307 list_for_each_entry(sta, &sdata->local->sta_list, list) {
2308 /*
2309 * Only stations associated to our AP and
2310 * associated VLANs
2311 */
2312 if (sta->sdata->bss != &sdata->u.ap)
2313 continue;
687da132 2314
7d9bb2f0
JB
2315 /* This station doesn't support MIMO - skip it */
2316 if (sta_info_tx_streams(sta) == 1)
2317 continue;
687da132 2318
7d9bb2f0
JB
2319 /*
2320 * Don't wake up a STA just to send the action frame
2321 * unless we are getting more restrictive.
2322 */
2323 if (test_sta_flag(sta, WLAN_STA_PS_STA) &&
2324 !ieee80211_smps_is_restrictive(sta->known_smps_mode,
2325 smps_mode)) {
2326 ht_dbg(sdata, "Won't send SMPS to sleeping STA %pM\n",
2327 sta->sta.addr);
2328 continue;
2329 }
687da132 2330
7d9bb2f0
JB
2331 /*
2332 * If the STA is not authorized, wait until it gets
2333 * authorized and the action frame will be sent then.
2334 */
2335 if (!test_sta_flag(sta, WLAN_STA_AUTHORIZED))
2336 continue;
687da132 2337
7d9bb2f0
JB
2338 ht_dbg(sdata, "Sending SMPS to %pM\n", sta->sta.addr);
2339 ieee80211_send_smps_action(sdata, smps_mode, sta->sta.addr,
2340 sdata->vif.bss_conf.bssid);
687da132
EG
2341 }
2342 mutex_unlock(&sdata->local->sta_mtx);
2343
2344 sdata->smps_mode = smps_mode;
2345 ieee80211_queue_work(&sdata->local->hw, &sdata->recalc_smps);
2346
2347 return 0;
2348}
2349
2350int __ieee80211_request_smps_mgd(struct ieee80211_sub_if_data *sdata,
2351 enum ieee80211_smps_mode smps_mode)
0f78231b
JB
2352{
2353 const u8 *ap;
2354 enum ieee80211_smps_mode old_req;
2355 int err;
2356
8d61ffa5 2357 lockdep_assert_held(&sdata->wdev.mtx);
243e6df4 2358
687da132
EG
2359 if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_STATION))
2360 return -EINVAL;
2361
0f78231b
JB
2362 old_req = sdata->u.mgd.req_smps;
2363 sdata->u.mgd.req_smps = smps_mode;
2364
2365 if (old_req == smps_mode &&
2366 smps_mode != IEEE80211_SMPS_AUTOMATIC)
2367 return 0;
2368
2369 /*
2370 * If not associated, or current association is not an HT
04ecd257
JB
2371 * association, there's no need to do anything, just store
2372 * the new value until we associate.
0f78231b
JB
2373 */
2374 if (!sdata->u.mgd.associated ||
4bf88530 2375 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT)
0f78231b 2376 return 0;
0f78231b 2377
0c1ad2ca 2378 ap = sdata->u.mgd.associated->bssid;
0f78231b
JB
2379
2380 if (smps_mode == IEEE80211_SMPS_AUTOMATIC) {
2381 if (sdata->u.mgd.powersave)
2382 smps_mode = IEEE80211_SMPS_DYNAMIC;
2383 else
2384 smps_mode = IEEE80211_SMPS_OFF;
2385 }
2386
2387 /* send SM PS frame to AP */
2388 err = ieee80211_send_smps_action(sdata, smps_mode,
2389 ap, ap);
2390 if (err)
2391 sdata->u.mgd.req_smps = old_req;
2392
2393 return err;
2394}
2395
bc92afd9
JB
2396static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev,
2397 bool enabled, int timeout)
2398{
2399 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2400 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
bc92afd9 2401
2d3db210 2402 if (sdata->vif.type != NL80211_IFTYPE_STATION)
e5de30c9
BP
2403 return -EOPNOTSUPP;
2404
bc92afd9
JB
2405 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
2406 return -EOPNOTSUPP;
2407
2408 if (enabled == sdata->u.mgd.powersave &&
ff616381 2409 timeout == local->dynamic_ps_forced_timeout)
bc92afd9
JB
2410 return 0;
2411
2412 sdata->u.mgd.powersave = enabled;
ff616381 2413 local->dynamic_ps_forced_timeout = timeout;
bc92afd9 2414
0f78231b 2415 /* no change, but if automatic follow powersave */
ed405be5 2416 sdata_lock(sdata);
687da132 2417 __ieee80211_request_smps_mgd(sdata, sdata->u.mgd.req_smps);
ed405be5 2418 sdata_unlock(sdata);
0f78231b 2419
bc92afd9
JB
2420 if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
2421 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2422
2423 ieee80211_recalc_ps(local, -1);
ab095877 2424 ieee80211_recalc_ps_vif(sdata);
bc92afd9
JB
2425
2426 return 0;
2427}
2428
a97c13c3
JO
2429static int ieee80211_set_cqm_rssi_config(struct wiphy *wiphy,
2430 struct net_device *dev,
2431 s32 rssi_thold, u32 rssi_hyst)
2432{
2433 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
a97c13c3
JO
2434 struct ieee80211_vif *vif = &sdata->vif;
2435 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
2436
a97c13c3
JO
2437 if (rssi_thold == bss_conf->cqm_rssi_thold &&
2438 rssi_hyst == bss_conf->cqm_rssi_hyst)
2439 return 0;
2440
2441 bss_conf->cqm_rssi_thold = rssi_thold;
2442 bss_conf->cqm_rssi_hyst = rssi_hyst;
2443
2444 /* tell the driver upon association, unless already associated */
ea086359
JB
2445 if (sdata->u.mgd.associated &&
2446 sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)
a97c13c3
JO
2447 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_CQM);
2448
2449 return 0;
2450}
2451
9930380f
JB
2452static int ieee80211_set_bitrate_mask(struct wiphy *wiphy,
2453 struct net_device *dev,
2454 const u8 *addr,
2455 const struct cfg80211_bitrate_mask *mask)
2456{
2457 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2458 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
bdbfd6b5 2459 int i, ret;
2c7e6bc9 2460
554a43d5
EP
2461 if (!ieee80211_sdata_running(sdata))
2462 return -ENETDOWN;
2463
bdbfd6b5
SM
2464 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL) {
2465 ret = drv_set_bitrate_mask(local, sdata, mask);
2466 if (ret)
2467 return ret;
2468 }
9930380f 2469
19468413 2470 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
2ffbe6d3
FF
2471 struct ieee80211_supported_band *sband = wiphy->bands[i];
2472 int j;
2473
37eb0b16 2474 sdata->rc_rateidx_mask[i] = mask->control[i].legacy;
d1e33e65
JD
2475 memcpy(sdata->rc_rateidx_mcs_mask[i], mask->control[i].ht_mcs,
2476 sizeof(mask->control[i].ht_mcs));
2ffbe6d3
FF
2477
2478 sdata->rc_has_mcs_mask[i] = false;
2479 if (!sband)
2480 continue;
2481
2482 for (j = 0; j < IEEE80211_HT_MCS_MASK_LEN; j++)
2483 if (~sdata->rc_rateidx_mcs_mask[i][j]) {
2484 sdata->rc_has_mcs_mask[i] = true;
2485 break;
2486 }
19468413 2487 }
9930380f 2488
37eb0b16 2489 return 0;
9930380f
JB
2490}
2491
eaa336b0
EP
2492static bool ieee80211_coalesce_started_roc(struct ieee80211_local *local,
2493 struct ieee80211_roc_work *new_roc,
2494 struct ieee80211_roc_work *cur_roc)
2495{
2496 unsigned long j = jiffies;
2497 unsigned long cur_roc_end = cur_roc->hw_start_time +
2498 msecs_to_jiffies(cur_roc->duration);
2499 struct ieee80211_roc_work *next_roc;
2500 int new_dur;
2501
2502 if (WARN_ON(!cur_roc->started || !cur_roc->hw_begun))
2503 return false;
2504
2505 if (time_after(j + IEEE80211_ROC_MIN_LEFT, cur_roc_end))
2506 return false;
2507
2508 ieee80211_handle_roc_started(new_roc);
2509
2510 new_dur = new_roc->duration - jiffies_to_msecs(cur_roc_end - j);
2511
2512 /* cur_roc is long enough - add new_roc to the dependents list. */
2513 if (new_dur <= 0) {
2514 list_add_tail(&new_roc->list, &cur_roc->dependents);
2515 return true;
2516 }
2517
2518 new_roc->duration = new_dur;
2519
2520 /*
2521 * if cur_roc was already coalesced before, we might
2522 * want to extend the next roc instead of adding
2523 * a new one.
2524 */
2525 next_roc = list_entry(cur_roc->list.next,
2526 struct ieee80211_roc_work, list);
2527 if (&next_roc->list != &local->roc_list &&
2528 next_roc->chan == new_roc->chan &&
2529 next_roc->sdata == new_roc->sdata &&
2530 !WARN_ON(next_roc->started)) {
2531 list_add_tail(&new_roc->list, &next_roc->dependents);
2532 next_roc->duration = max(next_roc->duration,
2533 new_roc->duration);
2534 next_roc->type = max(next_roc->type, new_roc->type);
2535 return true;
2536 }
2537
2538 /* add right after cur_roc */
2539 list_add(&new_roc->list, &cur_roc->list);
2540
2541 return true;
2542}
2543
2eb278e0
JB
2544static int ieee80211_start_roc_work(struct ieee80211_local *local,
2545 struct ieee80211_sub_if_data *sdata,
2546 struct ieee80211_channel *channel,
2eb278e0 2547 unsigned int duration, u64 *cookie,
d339d5ca
IP
2548 struct sk_buff *txskb,
2549 enum ieee80211_roc_type type)
2eb278e0
JB
2550{
2551 struct ieee80211_roc_work *roc, *tmp;
2552 bool queued = false;
21f83589 2553 int ret;
21f83589
JB
2554
2555 lockdep_assert_held(&local->mtx);
2556
fe57d9f5
JB
2557 if (local->use_chanctx && !local->ops->remain_on_channel)
2558 return -EOPNOTSUPP;
2559
2eb278e0
JB
2560 roc = kzalloc(sizeof(*roc), GFP_KERNEL);
2561 if (!roc)
2562 return -ENOMEM;
2563
2fae062e
IP
2564 /*
2565 * If the duration is zero, then the driver
2566 * wouldn't actually do anything. Set it to
2567 * 10 for now.
2568 *
2569 * TODO: cancel the off-channel operation
2570 * when we get the SKB's TX status and
2571 * the wait time was zero before.
2572 */
2573 if (!duration)
2574 duration = 10;
2575
2eb278e0 2576 roc->chan = channel;
2eb278e0
JB
2577 roc->duration = duration;
2578 roc->req_duration = duration;
2579 roc->frame = txskb;
d339d5ca 2580 roc->type = type;
2eb278e0
JB
2581 roc->mgmt_tx_cookie = (unsigned long)txskb;
2582 roc->sdata = sdata;
2583 INIT_DELAYED_WORK(&roc->work, ieee80211_sw_roc_work);
2584 INIT_LIST_HEAD(&roc->dependents);
2585
2f617435
EP
2586 /*
2587 * cookie is either the roc cookie (for normal roc)
2588 * or the SKB (for mgmt TX)
2589 */
2590 if (!txskb) {
2591 /* local->mtx protects this */
2592 local->roc_cookie_counter++;
2593 roc->cookie = local->roc_cookie_counter;
2594 /* wow, you wrapped 64 bits ... more likely a bug */
2595 if (WARN_ON(roc->cookie == 0)) {
2596 roc->cookie = 1;
2597 local->roc_cookie_counter++;
2598 }
2599 *cookie = roc->cookie;
2600 } else {
2601 *cookie = (unsigned long)txskb;
2602 }
2603
2eb278e0 2604 /* if there's one pending or we're scanning, queue this one */
164eb02d 2605 if (!list_empty(&local->roc_list) ||
5cbc95a7 2606 local->scanning || ieee80211_is_radar_required(local))
2eb278e0
JB
2607 goto out_check_combine;
2608
2609 /* if not HW assist, just queue & schedule work */
2610 if (!local->ops->remain_on_channel) {
2611 ieee80211_queue_delayed_work(&local->hw, &roc->work, 0);
2612 goto out_queue;
2613 }
2614
2615 /* otherwise actually kick it off here (for error handling) */
2616
d339d5ca 2617 ret = drv_remain_on_channel(local, sdata, channel, duration, type);
21f83589 2618 if (ret) {
2eb278e0
JB
2619 kfree(roc);
2620 return ret;
21f83589
JB
2621 }
2622
2eb278e0
JB
2623 roc->started = true;
2624 goto out_queue;
2625
2626 out_check_combine:
2627 list_for_each_entry(tmp, &local->roc_list, list) {
42d97a59 2628 if (tmp->chan != channel || tmp->sdata != sdata)
2eb278e0
JB
2629 continue;
2630
2631 /*
2632 * Extend this ROC if possible:
2633 *
2634 * If it hasn't started yet, just increase the duration
2635 * and add the new one to the list of dependents.
d339d5ca
IP
2636 * If the type of the new ROC has higher priority, modify the
2637 * type of the previous one to match that of the new one.
2eb278e0
JB
2638 */
2639 if (!tmp->started) {
2640 list_add_tail(&roc->list, &tmp->dependents);
2641 tmp->duration = max(tmp->duration, roc->duration);
d339d5ca 2642 tmp->type = max(tmp->type, roc->type);
2eb278e0
JB
2643 queued = true;
2644 break;
2645 }
2646
2647 /* If it has already started, it's more difficult ... */
2648 if (local->ops->remain_on_channel) {
2eb278e0
JB
2649 /*
2650 * In the offloaded ROC case, if it hasn't begun, add
2651 * this new one to the dependent list to be handled
d339d5ca 2652 * when the master one begins. If it has begun,
2eb278e0
JB
2653 * check that there's still a minimum time left and
2654 * if so, start this one, transmitting the frame, but
d339d5ca 2655 * add it to the list directly after this one with
2eb278e0
JB
2656 * a reduced time so we'll ask the driver to execute
2657 * it right after finishing the previous one, in the
2658 * hope that it'll also be executed right afterwards,
2659 * effectively extending the old one.
2660 * If there's no minimum time left, just add it to the
2661 * normal list.
d339d5ca
IP
2662 * TODO: the ROC type is ignored here, assuming that it
2663 * is better to immediately use the current ROC.
2eb278e0
JB
2664 */
2665 if (!tmp->hw_begun) {
2666 list_add_tail(&roc->list, &tmp->dependents);
2667 queued = true;
2668 break;
2669 }
2670
eaa336b0 2671 if (ieee80211_coalesce_started_roc(local, roc, tmp))
2eb278e0 2672 queued = true;
2eb278e0
JB
2673 } else if (del_timer_sync(&tmp->work.timer)) {
2674 unsigned long new_end;
2675
2676 /*
2677 * In the software ROC case, cancel the timer, if
2678 * that fails then the finish work is already
2679 * queued/pending and thus we queue the new ROC
2680 * normally, if that succeeds then we can extend
2681 * the timer duration and TX the frame (if any.)
2682 */
2683
2684 list_add_tail(&roc->list, &tmp->dependents);
2685 queued = true;
2686
2687 new_end = jiffies + msecs_to_jiffies(roc->duration);
2688
2689 /* ok, it was started & we canceled timer */
2690 if (time_after(new_end, tmp->work.timer.expires))
2691 mod_timer(&tmp->work.timer, new_end);
2692 else
2693 add_timer(&tmp->work.timer);
2694
2695 ieee80211_handle_roc_started(roc);
2696 }
2697 break;
2698 }
2699
2700 out_queue:
2701 if (!queued)
2702 list_add_tail(&roc->list, &local->roc_list);
2703
2eb278e0 2704 return 0;
21f83589
JB
2705}
2706
b8bc4b0a 2707static int ieee80211_remain_on_channel(struct wiphy *wiphy,
71bbc994 2708 struct wireless_dev *wdev,
b8bc4b0a 2709 struct ieee80211_channel *chan,
b8bc4b0a
JB
2710 unsigned int duration,
2711 u64 *cookie)
2712{
71bbc994 2713 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
21f83589 2714 struct ieee80211_local *local = sdata->local;
2eb278e0 2715 int ret;
21f83589 2716
2eb278e0 2717 mutex_lock(&local->mtx);
42d97a59 2718 ret = ieee80211_start_roc_work(local, sdata, chan,
d339d5ca
IP
2719 duration, cookie, NULL,
2720 IEEE80211_ROC_TYPE_NORMAL);
2eb278e0 2721 mutex_unlock(&local->mtx);
b8bc4b0a 2722
2eb278e0 2723 return ret;
b8bc4b0a
JB
2724}
2725
2eb278e0
JB
2726static int ieee80211_cancel_roc(struct ieee80211_local *local,
2727 u64 cookie, bool mgmt_tx)
21f83589 2728{
2eb278e0 2729 struct ieee80211_roc_work *roc, *tmp, *found = NULL;
21f83589
JB
2730 int ret;
2731
2eb278e0
JB
2732 mutex_lock(&local->mtx);
2733 list_for_each_entry_safe(roc, tmp, &local->roc_list, list) {
e979e33c
JB
2734 struct ieee80211_roc_work *dep, *tmp2;
2735
2736 list_for_each_entry_safe(dep, tmp2, &roc->dependents, list) {
50febf6a 2737 if (!mgmt_tx && dep->cookie != cookie)
e979e33c
JB
2738 continue;
2739 else if (mgmt_tx && dep->mgmt_tx_cookie != cookie)
2740 continue;
2741 /* found dependent item -- just remove it */
2742 list_del(&dep->list);
2743 mutex_unlock(&local->mtx);
2744
3fbd45ca 2745 ieee80211_roc_notify_destroy(dep, true);
e979e33c
JB
2746 return 0;
2747 }
2748
50febf6a 2749 if (!mgmt_tx && roc->cookie != cookie)
2eb278e0
JB
2750 continue;
2751 else if (mgmt_tx && roc->mgmt_tx_cookie != cookie)
2752 continue;
21f83589 2753
2eb278e0
JB
2754 found = roc;
2755 break;
2756 }
21f83589 2757
2eb278e0
JB
2758 if (!found) {
2759 mutex_unlock(&local->mtx);
2760 return -ENOENT;
2761 }
21f83589 2762
e979e33c
JB
2763 /*
2764 * We found the item to cancel, so do that. Note that it
2765 * may have dependents, which we also cancel (and send
2766 * the expired signal for.) Not doing so would be quite
2767 * tricky here, but we may need to fix it later.
2768 */
2769
2eb278e0
JB
2770 if (local->ops->remain_on_channel) {
2771 if (found->started) {
2772 ret = drv_cancel_remain_on_channel(local);
2773 if (WARN_ON_ONCE(ret)) {
2774 mutex_unlock(&local->mtx);
2775 return ret;
2776 }
2777 }
21f83589 2778
2eb278e0 2779 list_del(&found->list);
21f83589 2780
0f6b3f59
JB
2781 if (found->started)
2782 ieee80211_start_next_roc(local);
2eb278e0 2783 mutex_unlock(&local->mtx);
21f83589 2784
3fbd45ca 2785 ieee80211_roc_notify_destroy(found, true);
2eb278e0
JB
2786 } else {
2787 /* work may be pending so use it all the time */
2788 found->abort = true;
2789 ieee80211_queue_delayed_work(&local->hw, &found->work, 0);
21f83589 2790
21f83589
JB
2791 mutex_unlock(&local->mtx);
2792
2eb278e0
JB
2793 /* work will clean up etc */
2794 flush_delayed_work(&found->work);
3fbd45ca
JB
2795 WARN_ON(!found->to_be_freed);
2796 kfree(found);
21f83589 2797 }
b8bc4b0a 2798
2eb278e0 2799 return 0;
b8bc4b0a
JB
2800}
2801
2eb278e0 2802static int ieee80211_cancel_remain_on_channel(struct wiphy *wiphy,
71bbc994 2803 struct wireless_dev *wdev,
2eb278e0 2804 u64 cookie)
f30221e4 2805{
71bbc994 2806 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2eb278e0 2807 struct ieee80211_local *local = sdata->local;
f30221e4 2808
2eb278e0 2809 return ieee80211_cancel_roc(local, cookie, false);
f30221e4
JB
2810}
2811
164eb02d
SW
2812static int ieee80211_start_radar_detection(struct wiphy *wiphy,
2813 struct net_device *dev,
31559f35
JD
2814 struct cfg80211_chan_def *chandef,
2815 u32 cac_time_ms)
164eb02d
SW
2816{
2817 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2818 struct ieee80211_local *local = sdata->local;
164eb02d
SW
2819 int err;
2820
34a3740d
JB
2821 mutex_lock(&local->mtx);
2822 if (!list_empty(&local->roc_list) || local->scanning) {
2823 err = -EBUSY;
2824 goto out_unlock;
2825 }
164eb02d
SW
2826
2827 /* whatever, but channel contexts should not complain about that one */
2828 sdata->smps_mode = IEEE80211_SMPS_OFF;
2829 sdata->needed_rx_chains = local->rx_chains;
164eb02d 2830
164eb02d
SW
2831 err = ieee80211_vif_use_channel(sdata, chandef,
2832 IEEE80211_CHANCTX_SHARED);
164eb02d 2833 if (err)
34a3740d 2834 goto out_unlock;
164eb02d 2835
164eb02d 2836 ieee80211_queue_delayed_work(&sdata->local->hw,
31559f35
JD
2837 &sdata->dfs_cac_timer_work,
2838 msecs_to_jiffies(cac_time_ms));
164eb02d 2839
34a3740d
JB
2840 out_unlock:
2841 mutex_unlock(&local->mtx);
2842 return err;
164eb02d
SW
2843}
2844
73da7d5b
SW
2845static struct cfg80211_beacon_data *
2846cfg80211_beacon_dup(struct cfg80211_beacon_data *beacon)
2847{
2848 struct cfg80211_beacon_data *new_beacon;
2849 u8 *pos;
2850 int len;
2851
2852 len = beacon->head_len + beacon->tail_len + beacon->beacon_ies_len +
2853 beacon->proberesp_ies_len + beacon->assocresp_ies_len +
2854 beacon->probe_resp_len;
2855
2856 new_beacon = kzalloc(sizeof(*new_beacon) + len, GFP_KERNEL);
2857 if (!new_beacon)
2858 return NULL;
2859
2860 pos = (u8 *)(new_beacon + 1);
2861 if (beacon->head_len) {
2862 new_beacon->head_len = beacon->head_len;
2863 new_beacon->head = pos;
2864 memcpy(pos, beacon->head, beacon->head_len);
2865 pos += beacon->head_len;
2866 }
2867 if (beacon->tail_len) {
2868 new_beacon->tail_len = beacon->tail_len;
2869 new_beacon->tail = pos;
2870 memcpy(pos, beacon->tail, beacon->tail_len);
2871 pos += beacon->tail_len;
2872 }
2873 if (beacon->beacon_ies_len) {
2874 new_beacon->beacon_ies_len = beacon->beacon_ies_len;
2875 new_beacon->beacon_ies = pos;
2876 memcpy(pos, beacon->beacon_ies, beacon->beacon_ies_len);
2877 pos += beacon->beacon_ies_len;
2878 }
2879 if (beacon->proberesp_ies_len) {
2880 new_beacon->proberesp_ies_len = beacon->proberesp_ies_len;
2881 new_beacon->proberesp_ies = pos;
2882 memcpy(pos, beacon->proberesp_ies, beacon->proberesp_ies_len);
2883 pos += beacon->proberesp_ies_len;
2884 }
2885 if (beacon->assocresp_ies_len) {
2886 new_beacon->assocresp_ies_len = beacon->assocresp_ies_len;
2887 new_beacon->assocresp_ies = pos;
2888 memcpy(pos, beacon->assocresp_ies, beacon->assocresp_ies_len);
2889 pos += beacon->assocresp_ies_len;
2890 }
2891 if (beacon->probe_resp_len) {
2892 new_beacon->probe_resp_len = beacon->probe_resp_len;
2893 beacon->probe_resp = pos;
2894 memcpy(pos, beacon->probe_resp, beacon->probe_resp_len);
2895 pos += beacon->probe_resp_len;
2896 }
2897
2898 return new_beacon;
2899}
2900
66e01cf9 2901void ieee80211_csa_finish(struct ieee80211_vif *vif)
73da7d5b 2902{
66e01cf9 2903 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
73da7d5b 2904
66e01cf9
LC
2905 ieee80211_queue_work(&sdata->local->hw,
2906 &sdata->csa_finalize_work);
2907}
2908EXPORT_SYMBOL(ieee80211_csa_finish);
e487eaeb 2909
66199506
MK
2910static int ieee80211_set_after_csa_beacon(struct ieee80211_sub_if_data *sdata,
2911 u32 *changed)
66e01cf9 2912{
66199506 2913 int err;
7578d575 2914
cd7760e6
SW
2915 switch (sdata->vif.type) {
2916 case NL80211_IFTYPE_AP:
af296bdb
MK
2917 err = ieee80211_assign_beacon(sdata, sdata->u.ap.next_beacon,
2918 NULL);
97518af1
MK
2919 kfree(sdata->u.ap.next_beacon);
2920 sdata->u.ap.next_beacon = NULL;
2921
cd7760e6 2922 if (err < 0)
66199506
MK
2923 return err;
2924 *changed |= err;
cd7760e6
SW
2925 break;
2926 case NL80211_IFTYPE_ADHOC:
faf046e7
MK
2927 err = ieee80211_ibss_finish_csa(sdata);
2928 if (err < 0)
66199506
MK
2929 return err;
2930 *changed |= err;
cd7760e6 2931 break;
b8456a14
CYY
2932#ifdef CONFIG_MAC80211_MESH
2933 case NL80211_IFTYPE_MESH_POINT:
2934 err = ieee80211_mesh_finish_csa(sdata);
2935 if (err < 0)
66199506
MK
2936 return err;
2937 *changed |= err;
b8456a14
CYY
2938 break;
2939#endif
cd7760e6
SW
2940 default:
2941 WARN_ON(1);
66199506
MK
2942 return -EINVAL;
2943 }
2944
2945 return 0;
2946}
2947
cf8767dd 2948static int __ieee80211_csa_finalize(struct ieee80211_sub_if_data *sdata)
66199506
MK
2949{
2950 struct ieee80211_local *local = sdata->local;
2951 u32 changed = 0;
2952 int err;
2953
2954 sdata_assert_lock(sdata);
2955 lockdep_assert_held(&local->mtx);
03078de4 2956 lockdep_assert_held(&local->chanctx_mtx);
66199506 2957
03078de4
MK
2958 /*
2959 * using reservation isn't immediate as it may be deferred until later
2960 * with multi-vif. once reservation is complete it will re-schedule the
2961 * work with no reserved_chanctx so verify chandef to check if it
2962 * completed successfully
2963 */
66199506 2964
03078de4
MK
2965 if (sdata->reserved_chanctx) {
2966 /*
2967 * with multi-vif csa driver may call ieee80211_csa_finish()
2968 * many times while waiting for other interfaces to use their
2969 * reservations
2970 */
2971 if (sdata->reserved_ready)
2972 return 0;
2973
408b18ab 2974 return ieee80211_vif_use_reserved_context(sdata);
cd7760e6 2975 }
73da7d5b 2976
03078de4
MK
2977 if (!cfg80211_chandef_identical(&sdata->vif.bss_conf.chandef,
2978 &sdata->csa_chandef))
2979 return -EINVAL;
2980
66199506
MK
2981 sdata->vif.csa_active = false;
2982
2983 err = ieee80211_set_after_csa_beacon(sdata, &changed);
2984 if (err)
cf8767dd 2985 return err;
faf046e7 2986
66199506 2987 ieee80211_bss_info_change_notify(sdata, changed);
59af6928 2988
a46992b4
LC
2989 if (sdata->csa_block_tx) {
2990 ieee80211_wake_vif_queues(local, sdata,
2991 IEEE80211_QUEUE_STOP_REASON_CSA);
2992 sdata->csa_block_tx = false;
2993 }
cf8767dd 2994
f1d65583
LC
2995 err = drv_post_channel_switch(sdata);
2996 if (err)
2997 return err;
2998
2999 cfg80211_ch_switch_notify(sdata->dev, &sdata->csa_chandef);
3000
cf8767dd
MK
3001 return 0;
3002}
3003
3004static void ieee80211_csa_finalize(struct ieee80211_sub_if_data *sdata)
3005{
3006 if (__ieee80211_csa_finalize(sdata)) {
3007 sdata_info(sdata, "failed to finalize CSA, disconnecting\n");
3008 cfg80211_stop_iface(sdata->local->hw.wiphy, &sdata->wdev,
3009 GFP_KERNEL);
3010 }
66e01cf9
LC
3011}
3012
3013void ieee80211_csa_finalize_work(struct work_struct *work)
3014{
3015 struct ieee80211_sub_if_data *sdata =
3016 container_of(work, struct ieee80211_sub_if_data,
3017 csa_finalize_work);
59af6928 3018 struct ieee80211_local *local = sdata->local;
66e01cf9
LC
3019
3020 sdata_lock(sdata);
59af6928 3021 mutex_lock(&local->mtx);
03078de4 3022 mutex_lock(&local->chanctx_mtx);
59af6928 3023
66e01cf9
LC
3024 /* AP might have been stopped while waiting for the lock. */
3025 if (!sdata->vif.csa_active)
3026 goto unlock;
3027
3028 if (!ieee80211_sdata_running(sdata))
3029 goto unlock;
3030
3031 ieee80211_csa_finalize(sdata);
e487eaeb
SW
3032
3033unlock:
03078de4 3034 mutex_unlock(&local->chanctx_mtx);
59af6928 3035 mutex_unlock(&local->mtx);
e487eaeb 3036 sdata_unlock(sdata);
73da7d5b
SW
3037}
3038
37fa2bdd
MK
3039static int ieee80211_set_csa_beacon(struct ieee80211_sub_if_data *sdata,
3040 struct cfg80211_csa_settings *params,
3041 u32 *changed)
73da7d5b 3042{
af296bdb 3043 struct ieee80211_csa_settings csa = {};
37fa2bdd 3044 int err;
73da7d5b 3045
73da7d5b
SW
3046 switch (sdata->vif.type) {
3047 case NL80211_IFTYPE_AP:
cd7760e6
SW
3048 sdata->u.ap.next_beacon =
3049 cfg80211_beacon_dup(&params->beacon_after);
3050 if (!sdata->u.ap.next_beacon)
3051 return -ENOMEM;
3052
66e01cf9
LC
3053 /*
3054 * With a count of 0, we don't have to wait for any
3055 * TBTT before switching, so complete the CSA
3056 * immediately. In theory, with a count == 1 we
3057 * should delay the switch until just before the next
3058 * TBTT, but that would complicate things so we switch
3059 * immediately too. If we would delay the switch
3060 * until the next TBTT, we would have to set the probe
3061 * response here.
3062 *
3063 * TODO: A channel switch with count <= 1 without
3064 * sending a CSA action frame is kind of useless,
3065 * because the clients won't know we're changing
3066 * channels. The action frame must be implemented
3067 * either here or in the userspace.
3068 */
3069 if (params->count <= 1)
3070 break;
3071
0d06d9ba
AO
3072 if ((params->n_counter_offsets_beacon >
3073 IEEE80211_MAX_CSA_COUNTERS_NUM) ||
3074 (params->n_counter_offsets_presp >
3075 IEEE80211_MAX_CSA_COUNTERS_NUM))
3076 return -EINVAL;
9a774c78 3077
af296bdb
MK
3078 csa.counter_offsets_beacon = params->counter_offsets_beacon;
3079 csa.counter_offsets_presp = params->counter_offsets_presp;
3080 csa.n_counter_offsets_beacon = params->n_counter_offsets_beacon;
3081 csa.n_counter_offsets_presp = params->n_counter_offsets_presp;
3082 csa.count = params->count;
9a774c78 3083
af296bdb 3084 err = ieee80211_assign_beacon(sdata, &params->beacon_csa, &csa);
cd7760e6
SW
3085 if (err < 0) {
3086 kfree(sdata->u.ap.next_beacon);
3087 return err;
3088 }
37fa2bdd 3089 *changed |= err;
66e01cf9 3090
cd7760e6
SW
3091 break;
3092 case NL80211_IFTYPE_ADHOC:
3093 if (!sdata->vif.bss_conf.ibss_joined)
3094 return -EINVAL;
3095
3096 if (params->chandef.width != sdata->u.ibss.chandef.width)
3097 return -EINVAL;
3098
3099 switch (params->chandef.width) {
3100 case NL80211_CHAN_WIDTH_40:
3101 if (cfg80211_get_chandef_type(&params->chandef) !=
3102 cfg80211_get_chandef_type(&sdata->u.ibss.chandef))
3103 return -EINVAL;
3104 case NL80211_CHAN_WIDTH_5:
3105 case NL80211_CHAN_WIDTH_10:
3106 case NL80211_CHAN_WIDTH_20_NOHT:
3107 case NL80211_CHAN_WIDTH_20:
3108 break;
3109 default:
3110 return -EINVAL;
3111 }
3112
3113 /* changes into another band are not supported */
3114 if (sdata->u.ibss.chandef.chan->band !=
3115 params->chandef.chan->band)
3116 return -EINVAL;
3117
66e01cf9
LC
3118 /* see comments in the NL80211_IFTYPE_AP block */
3119 if (params->count > 1) {
3120 err = ieee80211_ibss_csa_beacon(sdata, params);
3121 if (err < 0)
3122 return err;
37fa2bdd 3123 *changed |= err;
66e01cf9
LC
3124 }
3125
3126 ieee80211_send_action_csa(sdata, params);
3127
73da7d5b 3128 break;
c6da674a 3129#ifdef CONFIG_MAC80211_MESH
37fa2bdd
MK
3130 case NL80211_IFTYPE_MESH_POINT: {
3131 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
c6da674a 3132
c6da674a
CYY
3133 if (params->chandef.width != sdata->vif.bss_conf.chandef.width)
3134 return -EINVAL;
3135
3136 /* changes into another band are not supported */
3137 if (sdata->vif.bss_conf.chandef.chan->band !=
3138 params->chandef.chan->band)
3139 return -EINVAL;
3140
c782bf8c 3141 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_NONE) {
0cb4d4dc 3142 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_INIT;
c782bf8c
CYY
3143 if (!ifmsh->pre_value)
3144 ifmsh->pre_value = 1;
3145 else
3146 ifmsh->pre_value++;
3147 }
0cb4d4dc 3148
66e01cf9
LC
3149 /* see comments in the NL80211_IFTYPE_AP block */
3150 if (params->count > 1) {
3151 err = ieee80211_mesh_csa_beacon(sdata, params);
3152 if (err < 0) {
3153 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_NONE;
3154 return err;
3155 }
37fa2bdd 3156 *changed |= err;
3f718fd8 3157 }
66e01cf9
LC
3158
3159 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_INIT)
3160 ieee80211_send_action_csa(sdata, params);
3161
c6da674a 3162 break;
37fa2bdd 3163 }
c6da674a 3164#endif
73da7d5b
SW
3165 default:
3166 return -EOPNOTSUPP;
3167 }
3168
37fa2bdd
MK
3169 return 0;
3170}
3171
f29f58a9
LC
3172static int
3173__ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev,
3174 struct cfg80211_csa_settings *params)
37fa2bdd
MK
3175{
3176 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3177 struct ieee80211_local *local = sdata->local;
6d027bcc 3178 struct ieee80211_channel_switch ch_switch;
2b32713d 3179 struct ieee80211_chanctx_conf *conf;
37fa2bdd 3180 struct ieee80211_chanctx *chanctx;
b08cc24e
JB
3181 u32 changed = 0;
3182 int err;
37fa2bdd
MK
3183
3184 sdata_assert_lock(sdata);
59af6928 3185 lockdep_assert_held(&local->mtx);
37fa2bdd
MK
3186
3187 if (!list_empty(&local->roc_list) || local->scanning)
3188 return -EBUSY;
3189
3190 if (sdata->wdev.cac_started)
3191 return -EBUSY;
3192
3193 if (cfg80211_chandef_identical(&params->chandef,
3194 &sdata->vif.bss_conf.chandef))
3195 return -EINVAL;
3196
03078de4
MK
3197 /* don't allow another channel switch if one is already active. */
3198 if (sdata->vif.csa_active)
3199 return -EBUSY;
3200
2b32713d
MK
3201 mutex_lock(&local->chanctx_mtx);
3202 conf = rcu_dereference_protected(sdata->vif.chanctx_conf,
3203 lockdep_is_held(&local->chanctx_mtx));
3204 if (!conf) {
03078de4
MK
3205 err = -EBUSY;
3206 goto out;
37fa2bdd
MK
3207 }
3208
2b32713d 3209 chanctx = container_of(conf, struct ieee80211_chanctx, conf);
03078de4
MK
3210 if (!chanctx) {
3211 err = -EBUSY;
3212 goto out;
37fa2bdd 3213 }
37fa2bdd 3214
000baa5d
LC
3215 ch_switch.timestamp = 0;
3216 ch_switch.device_timestamp = 0;
3217 ch_switch.block_tx = params->block_tx;
3218 ch_switch.chandef = params->chandef;
3219 ch_switch.count = params->count;
3220
6d027bcc
LC
3221 err = drv_pre_channel_switch(sdata, &ch_switch);
3222 if (err)
3223 goto out;
3224
03078de4
MK
3225 err = ieee80211_vif_reserve_chanctx(sdata, &params->chandef,
3226 chanctx->mode,
3227 params->radar_required);
3228 if (err)
3229 goto out;
37fa2bdd 3230
03078de4
MK
3231 /* if reservation is invalid then this will fail */
3232 err = ieee80211_check_combinations(sdata, NULL, chanctx->mode, 0);
3233 if (err) {
3234 ieee80211_vif_unreserve_chanctx(sdata);
3235 goto out;
3236 }
37fa2bdd
MK
3237
3238 err = ieee80211_set_csa_beacon(sdata, params, &changed);
03078de4
MK
3239 if (err) {
3240 ieee80211_vif_unreserve_chanctx(sdata);
3241 goto out;
3242 }
37fa2bdd 3243
33787fc4 3244 sdata->csa_chandef = params->chandef;
59af6928 3245 sdata->csa_block_tx = params->block_tx;
73da7d5b
SW
3246 sdata->vif.csa_active = true;
3247
59af6928 3248 if (sdata->csa_block_tx)
a46992b4
LC
3249 ieee80211_stop_vif_queues(local, sdata,
3250 IEEE80211_QUEUE_STOP_REASON_CSA);
59af6928 3251
2f457293
LC
3252 cfg80211_ch_switch_started_notify(sdata->dev, &sdata->csa_chandef,
3253 params->count);
3254
66e01cf9
LC
3255 if (changed) {
3256 ieee80211_bss_info_change_notify(sdata, changed);
3257 drv_channel_switch_beacon(sdata, &params->chandef);
3258 } else {
3259 /* if the beacon didn't change, we can finalize immediately */
3260 ieee80211_csa_finalize(sdata);
3261 }
73da7d5b 3262
03078de4
MK
3263out:
3264 mutex_unlock(&local->chanctx_mtx);
3265 return err;
73da7d5b
SW
3266}
3267
59af6928
MK
3268int ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev,
3269 struct cfg80211_csa_settings *params)
3270{
3271 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3272 struct ieee80211_local *local = sdata->local;
3273 int err;
3274
3275 mutex_lock(&local->mtx);
3276 err = __ieee80211_channel_switch(wiphy, dev, params);
3277 mutex_unlock(&local->mtx);
3278
3279 return err;
3280}
3281
71bbc994 3282static int ieee80211_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
b176e629
AO
3283 struct cfg80211_mgmt_tx_params *params,
3284 u64 *cookie)
026331c4 3285{
71bbc994 3286 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
9d38d85d
JB
3287 struct ieee80211_local *local = sdata->local;
3288 struct sk_buff *skb;
3289 struct sta_info *sta;
b176e629 3290 const struct ieee80211_mgmt *mgmt = (void *)params->buf;
2eb278e0 3291 bool need_offchan = false;
e247bd90 3292 u32 flags;
2eb278e0 3293 int ret;
387910cc 3294 u8 *data;
f7ca38df 3295
b176e629 3296 if (params->dont_wait_for_ack)
e247bd90
JB
3297 flags = IEEE80211_TX_CTL_NO_ACK;
3298 else
3299 flags = IEEE80211_TX_INTFL_NL80211_FRAME_TX |
3300 IEEE80211_TX_CTL_REQ_TX_STATUS;
3301
b176e629 3302 if (params->no_cck)
aad14ceb
RM
3303 flags |= IEEE80211_TX_CTL_NO_CCK_RATE;
3304
9d38d85d
JB
3305 switch (sdata->vif.type) {
3306 case NL80211_IFTYPE_ADHOC:
2eb278e0
JB
3307 if (!sdata->vif.bss_conf.ibss_joined)
3308 need_offchan = true;
3309 /* fall through */
3310#ifdef CONFIG_MAC80211_MESH
3311 case NL80211_IFTYPE_MESH_POINT:
3312 if (ieee80211_vif_is_mesh(&sdata->vif) &&
3313 !sdata->u.mesh.mesh_id_len)
3314 need_offchan = true;
3315 /* fall through */
3316#endif
663fcafd
JB
3317 case NL80211_IFTYPE_AP:
3318 case NL80211_IFTYPE_AP_VLAN:
3319 case NL80211_IFTYPE_P2P_GO:
2eb278e0
JB
3320 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
3321 !ieee80211_vif_is_mesh(&sdata->vif) &&
3322 !rcu_access_pointer(sdata->bss->beacon))
3323 need_offchan = true;
663fcafd 3324 if (!ieee80211_is_action(mgmt->frame_control) ||
ac49e1a8 3325 mgmt->u.action.category == WLAN_CATEGORY_PUBLIC ||
cd7760e6
SW
3326 mgmt->u.action.category == WLAN_CATEGORY_SELF_PROTECTED ||
3327 mgmt->u.action.category == WLAN_CATEGORY_SPECTRUM_MGMT)
9d38d85d
JB
3328 break;
3329 rcu_read_lock();
3330 sta = sta_info_get(sdata, mgmt->da);
3331 rcu_read_unlock();
3332 if (!sta)
3333 return -ENOLINK;
3334 break;
3335 case NL80211_IFTYPE_STATION:
663fcafd 3336 case NL80211_IFTYPE_P2P_CLIENT:
2eb278e0
JB
3337 if (!sdata->u.mgd.associated)
3338 need_offchan = true;
9d38d85d 3339 break;
f142c6b9
JB
3340 case NL80211_IFTYPE_P2P_DEVICE:
3341 need_offchan = true;
3342 break;
9d38d85d
JB
3343 default:
3344 return -EOPNOTSUPP;
3345 }
3346
f7aeb6fb
AQ
3347 /* configurations requiring offchan cannot work if no channel has been
3348 * specified
3349 */
b176e629 3350 if (need_offchan && !params->chan)
f7aeb6fb
AQ
3351 return -EINVAL;
3352
2eb278e0
JB
3353 mutex_lock(&local->mtx);
3354
3355 /* Check if the operating channel is the requested channel */
3356 if (!need_offchan) {
55de908a
JB
3357 struct ieee80211_chanctx_conf *chanctx_conf;
3358
3359 rcu_read_lock();
3360 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3361
f7aeb6fb 3362 if (chanctx_conf) {
b176e629
AO
3363 need_offchan = params->chan &&
3364 (params->chan !=
3365 chanctx_conf->def.chan);
3366 } else if (!params->chan) {
f7aeb6fb
AQ
3367 ret = -EINVAL;
3368 rcu_read_unlock();
3369 goto out_unlock;
3370 } else {
2eb278e0 3371 need_offchan = true;
f7aeb6fb 3372 }
55de908a 3373 rcu_read_unlock();
2eb278e0
JB
3374 }
3375
b176e629 3376 if (need_offchan && !params->offchan) {
2eb278e0
JB
3377 ret = -EBUSY;
3378 goto out_unlock;
3379 }
3380
b176e629 3381 skb = dev_alloc_skb(local->hw.extra_tx_headroom + params->len);
2eb278e0
JB
3382 if (!skb) {
3383 ret = -ENOMEM;
3384 goto out_unlock;
3385 }
9d38d85d
JB
3386 skb_reserve(skb, local->hw.extra_tx_headroom);
3387
387910cc
AO
3388 data = skb_put(skb, params->len);
3389 memcpy(data, params->buf, params->len);
3390
3391 /* Update CSA counters */
3392 if (sdata->vif.csa_active &&
3393 (sdata->vif.type == NL80211_IFTYPE_AP ||
3394 sdata->vif.type == NL80211_IFTYPE_ADHOC) &&
3395 params->n_csa_offsets) {
3396 int i;
af296bdb 3397 struct beacon_data *beacon = NULL;
387910cc 3398
af296bdb
MK
3399 rcu_read_lock();
3400
3401 if (sdata->vif.type == NL80211_IFTYPE_AP)
3402 beacon = rcu_dereference(sdata->u.ap.beacon);
3403 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
3404 beacon = rcu_dereference(sdata->u.ibss.presp);
3405 else if (ieee80211_vif_is_mesh(&sdata->vif))
3406 beacon = rcu_dereference(sdata->u.mesh.beacon);
3407
3408 if (beacon)
3409 for (i = 0; i < params->n_csa_offsets; i++)
3410 data[params->csa_offsets[i]] =
3411 beacon->csa_current_counter;
3412
3413 rcu_read_unlock();
387910cc 3414 }
9d38d85d
JB
3415
3416 IEEE80211_SKB_CB(skb)->flags = flags;
3417
3418 skb->dev = sdata->dev;
9d38d85d 3419
2eb278e0 3420 if (!need_offchan) {
7f9f78ab 3421 *cookie = (unsigned long) skb;
f30221e4 3422 ieee80211_tx_skb(sdata, skb);
2eb278e0
JB
3423 ret = 0;
3424 goto out_unlock;
f30221e4
JB
3425 }
3426
6c17b77b
SF
3427 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_TX_OFFCHAN |
3428 IEEE80211_TX_INTFL_OFFCHAN_TX_OK;
2eb278e0
JB
3429 if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)
3430 IEEE80211_SKB_CB(skb)->hw_queue =
3431 local->hw.offchannel_tx_hw_queue;
f30221e4 3432
2eb278e0 3433 /* This will handle all kinds of coalescing and immediate TX */
b176e629
AO
3434 ret = ieee80211_start_roc_work(local, sdata, params->chan,
3435 params->wait, cookie, skb,
d339d5ca 3436 IEEE80211_ROC_TYPE_MGMT_TX);
2eb278e0
JB
3437 if (ret)
3438 kfree_skb(skb);
3439 out_unlock:
3440 mutex_unlock(&local->mtx);
3441 return ret;
026331c4
JM
3442}
3443
f30221e4 3444static int ieee80211_mgmt_tx_cancel_wait(struct wiphy *wiphy,
71bbc994 3445 struct wireless_dev *wdev,
f30221e4
JB
3446 u64 cookie)
3447{
71bbc994 3448 struct ieee80211_local *local = wiphy_priv(wiphy);
f30221e4 3449
2eb278e0 3450 return ieee80211_cancel_roc(local, cookie, true);
f30221e4
JB
3451}
3452
7be5086d 3453static void ieee80211_mgmt_frame_register(struct wiphy *wiphy,
71bbc994 3454 struct wireless_dev *wdev,
7be5086d
JB
3455 u16 frame_type, bool reg)
3456{
3457 struct ieee80211_local *local = wiphy_priv(wiphy);
3458
6abe0563 3459 switch (frame_type) {
6abe0563
WH
3460 case IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_PROBE_REQ:
3461 if (reg)
3462 local->probe_req_reg++;
3463 else
3464 local->probe_req_reg--;
7be5086d 3465
35f5149e
FF
3466 if (!local->open_count)
3467 break;
3468
6abe0563
WH
3469 ieee80211_queue_work(&local->hw, &local->reconfig_filter);
3470 break;
3471 default:
3472 break;
3473 }
7be5086d
JB
3474}
3475
15d96753
BR
3476static int ieee80211_set_antenna(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant)
3477{
3478 struct ieee80211_local *local = wiphy_priv(wiphy);
3479
3480 if (local->started)
3481 return -EOPNOTSUPP;
3482
3483 return drv_set_antenna(local, tx_ant, rx_ant);
3484}
3485
3486static int ieee80211_get_antenna(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant)
3487{
3488 struct ieee80211_local *local = wiphy_priv(wiphy);
3489
3490 return drv_get_antenna(local, tx_ant, rx_ant);
3491}
3492
c68f4b89
JB
3493static int ieee80211_set_rekey_data(struct wiphy *wiphy,
3494 struct net_device *dev,
3495 struct cfg80211_gtk_rekey_data *data)
3496{
3497 struct ieee80211_local *local = wiphy_priv(wiphy);
3498 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3499
3500 if (!local->ops->set_rekey_data)
3501 return -EOPNOTSUPP;
3502
3503 drv_set_rekey_data(local, sdata, data);
3504
3505 return 0;
3506}
3507
06500736
JB
3508static int ieee80211_probe_client(struct wiphy *wiphy, struct net_device *dev,
3509 const u8 *peer, u64 *cookie)
3510{
3511 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3512 struct ieee80211_local *local = sdata->local;
3513 struct ieee80211_qos_hdr *nullfunc;
3514 struct sk_buff *skb;
3515 int size = sizeof(*nullfunc);
3516 __le16 fc;
3517 bool qos;
3518 struct ieee80211_tx_info *info;
3519 struct sta_info *sta;
55de908a
JB
3520 struct ieee80211_chanctx_conf *chanctx_conf;
3521 enum ieee80211_band band;
06500736
JB
3522
3523 rcu_read_lock();
55de908a
JB
3524 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3525 if (WARN_ON(!chanctx_conf)) {
3526 rcu_read_unlock();
3527 return -EINVAL;
3528 }
4bf88530 3529 band = chanctx_conf->def.chan->band;
03bb7f42 3530 sta = sta_info_get_bss(sdata, peer);
b4487c2d 3531 if (sta) {
a74a8c84 3532 qos = sta->sta.wme;
b4487c2d
JB
3533 } else {
3534 rcu_read_unlock();
06500736 3535 return -ENOLINK;
b4487c2d 3536 }
06500736
JB
3537
3538 if (qos) {
3539 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3540 IEEE80211_STYPE_QOS_NULLFUNC |
3541 IEEE80211_FCTL_FROMDS);
3542 } else {
3543 size -= 2;
3544 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3545 IEEE80211_STYPE_NULLFUNC |
3546 IEEE80211_FCTL_FROMDS);
3547 }
3548
3549 skb = dev_alloc_skb(local->hw.extra_tx_headroom + size);
55de908a
JB
3550 if (!skb) {
3551 rcu_read_unlock();
06500736 3552 return -ENOMEM;
55de908a 3553 }
06500736
JB
3554
3555 skb->dev = dev;
3556
3557 skb_reserve(skb, local->hw.extra_tx_headroom);
3558
3559 nullfunc = (void *) skb_put(skb, size);
3560 nullfunc->frame_control = fc;
3561 nullfunc->duration_id = 0;
3562 memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN);
3563 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
3564 memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);
3565 nullfunc->seq_ctrl = 0;
3566
3567 info = IEEE80211_SKB_CB(skb);
3568
3569 info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
3570 IEEE80211_TX_INTFL_NL80211_FRAME_TX;
73c4e195 3571 info->band = band;
06500736
JB
3572
3573 skb_set_queue_mapping(skb, IEEE80211_AC_VO);
3574 skb->priority = 7;
3575 if (qos)
3576 nullfunc->qos_ctrl = cpu_to_le16(7);
3577
3578 local_bh_disable();
7c10770f 3579 ieee80211_xmit(sdata, sta, skb);
06500736 3580 local_bh_enable();
55de908a 3581 rcu_read_unlock();
06500736
JB
3582
3583 *cookie = (unsigned long) skb;
3584 return 0;
3585}
3586
683b6d3b
JB
3587static int ieee80211_cfg_get_channel(struct wiphy *wiphy,
3588 struct wireless_dev *wdev,
3589 struct cfg80211_chan_def *chandef)
5b7ccaf3 3590{
55de908a 3591 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
cb601ffa 3592 struct ieee80211_local *local = wiphy_priv(wiphy);
55de908a 3593 struct ieee80211_chanctx_conf *chanctx_conf;
683b6d3b 3594 int ret = -ENODATA;
55de908a
JB
3595
3596 rcu_read_lock();
feda3027
JB
3597 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3598 if (chanctx_conf) {
c12bc488 3599 *chandef = sdata->vif.bss_conf.chandef;
feda3027
JB
3600 ret = 0;
3601 } else if (local->open_count > 0 &&
3602 local->open_count == local->monitors &&
3603 sdata->vif.type == NL80211_IFTYPE_MONITOR) {
3604 if (local->use_chanctx)
3605 *chandef = local->monitor_chandef;
3606 else
675a0b04 3607 *chandef = local->_oper_chandef;
683b6d3b 3608 ret = 0;
55de908a
JB
3609 }
3610 rcu_read_unlock();
5b7ccaf3 3611
683b6d3b 3612 return ret;
5b7ccaf3
JB
3613}
3614
6d52563f
JB
3615#ifdef CONFIG_PM
3616static void ieee80211_set_wakeup(struct wiphy *wiphy, bool enabled)
3617{
3618 drv_set_wakeup(wiphy_priv(wiphy), enabled);
3619}
3620#endif
3621
32db6b54
KP
3622static int ieee80211_set_qos_map(struct wiphy *wiphy,
3623 struct net_device *dev,
3624 struct cfg80211_qos_map *qos_map)
3625{
3626 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3627 struct mac80211_qos_map *new_qos_map, *old_qos_map;
3628
3629 if (qos_map) {
3630 new_qos_map = kzalloc(sizeof(*new_qos_map), GFP_KERNEL);
3631 if (!new_qos_map)
3632 return -ENOMEM;
3633 memcpy(&new_qos_map->qos_map, qos_map, sizeof(*qos_map));
3634 } else {
3635 /* A NULL qos_map was passed to disable QoS mapping */
3636 new_qos_map = NULL;
3637 }
3638
194ff52d 3639 old_qos_map = sdata_dereference(sdata->qos_map, sdata);
32db6b54
KP
3640 rcu_assign_pointer(sdata->qos_map, new_qos_map);
3641 if (old_qos_map)
3642 kfree_rcu(old_qos_map, rcu_head);
3643
3644 return 0;
3645}
3646
3b1700bd
JM
3647static int ieee80211_set_ap_chanwidth(struct wiphy *wiphy,
3648 struct net_device *dev,
3649 struct cfg80211_chan_def *chandef)
3650{
3651 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3652 int ret;
3653 u32 changed = 0;
3654
3655 ret = ieee80211_vif_change_bandwidth(sdata, chandef, &changed);
3656 if (ret == 0)
3657 ieee80211_bss_info_change_notify(sdata, changed);
3658
3659 return ret;
3660}
3661
02219b3a
JB
3662static int ieee80211_add_tx_ts(struct wiphy *wiphy, struct net_device *dev,
3663 u8 tsid, const u8 *peer, u8 up,
3664 u16 admitted_time)
3665{
3666 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3667 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3668 int ac = ieee802_1d_to_ac[up];
3669
3670 if (sdata->vif.type != NL80211_IFTYPE_STATION)
3671 return -EOPNOTSUPP;
3672
3673 if (!(sdata->wmm_acm & BIT(up)))
3674 return -EINVAL;
3675
3676 if (ifmgd->tx_tspec[ac].admitted_time)
3677 return -EBUSY;
3678
3679 if (admitted_time) {
3680 ifmgd->tx_tspec[ac].admitted_time = 32 * admitted_time;
3681 ifmgd->tx_tspec[ac].tsid = tsid;
3682 ifmgd->tx_tspec[ac].up = up;
3683 }
3684
3685 return 0;
3686}
3687
3688static int ieee80211_del_tx_ts(struct wiphy *wiphy, struct net_device *dev,
3689 u8 tsid, const u8 *peer)
3690{
3691 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3692 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3693 struct ieee80211_local *local = wiphy_priv(wiphy);
3694 int ac;
3695
3696 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
3697 struct ieee80211_sta_tx_tspec *tx_tspec = &ifmgd->tx_tspec[ac];
3698
3699 /* skip unused entries */
3700 if (!tx_tspec->admitted_time)
3701 continue;
3702
3703 if (tx_tspec->tsid != tsid)
3704 continue;
3705
3706 /* due to this new packets will be reassigned to non-ACM ACs */
3707 tx_tspec->up = -1;
3708
3709 /* Make sure that all packets have been sent to avoid to
3710 * restore the QoS params on packets that are still on the
3711 * queues.
3712 */
3713 synchronize_net();
3b24f4c6 3714 ieee80211_flush_queues(local, sdata, false);
02219b3a
JB
3715
3716 /* restore the normal QoS parameters
3717 * (unconditionally to avoid races)
3718 */
3719 tx_tspec->action = TX_TSPEC_ACTION_STOP_DOWNGRADE;
3720 tx_tspec->downgraded = false;
3721 ieee80211_sta_handle_tspec_ac_params(sdata);
3722
3723 /* finally clear all the data */
3724 memset(tx_tspec, 0, sizeof(*tx_tspec));
3725
3726 return 0;
3727 }
3728
3729 return -ENOENT;
3730}
3731
8a47cea7 3732const struct cfg80211_ops mac80211_config_ops = {
f0706e82
JB
3733 .add_virtual_intf = ieee80211_add_iface,
3734 .del_virtual_intf = ieee80211_del_iface,
42613db7 3735 .change_virtual_intf = ieee80211_change_iface,
f142c6b9
JB
3736 .start_p2p_device = ieee80211_start_p2p_device,
3737 .stop_p2p_device = ieee80211_stop_p2p_device,
e8cbb4cb
JB
3738 .add_key = ieee80211_add_key,
3739 .del_key = ieee80211_del_key,
62da92fb 3740 .get_key = ieee80211_get_key,
e8cbb4cb 3741 .set_default_key = ieee80211_config_default_key,
3cfcf6ac 3742 .set_default_mgmt_key = ieee80211_config_default_mgmt_key,
8860020e
JB
3743 .start_ap = ieee80211_start_ap,
3744 .change_beacon = ieee80211_change_beacon,
3745 .stop_ap = ieee80211_stop_ap,
4fd6931e
JB
3746 .add_station = ieee80211_add_station,
3747 .del_station = ieee80211_del_station,
3748 .change_station = ieee80211_change_station,
7bbdd2d9 3749 .get_station = ieee80211_get_station,
c5dd9c2b 3750 .dump_station = ieee80211_dump_station,
1289723e 3751 .dump_survey = ieee80211_dump_survey,
c5dd9c2b
LCC
3752#ifdef CONFIG_MAC80211_MESH
3753 .add_mpath = ieee80211_add_mpath,
3754 .del_mpath = ieee80211_del_mpath,
3755 .change_mpath = ieee80211_change_mpath,
3756 .get_mpath = ieee80211_get_mpath,
3757 .dump_mpath = ieee80211_dump_mpath,
a2db2ed3
HR
3758 .get_mpp = ieee80211_get_mpp,
3759 .dump_mpp = ieee80211_dump_mpp,
24bdd9f4
JC
3760 .update_mesh_config = ieee80211_update_mesh_config,
3761 .get_mesh_config = ieee80211_get_mesh_config,
29cbe68c
JB
3762 .join_mesh = ieee80211_join_mesh,
3763 .leave_mesh = ieee80211_leave_mesh,
c5dd9c2b 3764#endif
239281f8
RL
3765 .join_ocb = ieee80211_join_ocb,
3766 .leave_ocb = ieee80211_leave_ocb,
9f1ba906 3767 .change_bss = ieee80211_change_bss,
31888487 3768 .set_txq_params = ieee80211_set_txq_params,
e8c9bd5b 3769 .set_monitor_channel = ieee80211_set_monitor_channel,
665af4fc
BC
3770 .suspend = ieee80211_suspend,
3771 .resume = ieee80211_resume,
2a519311 3772 .scan = ieee80211_scan,
79f460ca
LC
3773 .sched_scan_start = ieee80211_sched_scan_start,
3774 .sched_scan_stop = ieee80211_sched_scan_stop,
636a5d36
JM
3775 .auth = ieee80211_auth,
3776 .assoc = ieee80211_assoc,
3777 .deauth = ieee80211_deauth,
3778 .disassoc = ieee80211_disassoc,
af8cdcd8
JB
3779 .join_ibss = ieee80211_join_ibss,
3780 .leave_ibss = ieee80211_leave_ibss,
391e53e3 3781 .set_mcast_rate = ieee80211_set_mcast_rate,
b9a5f8ca 3782 .set_wiphy_params = ieee80211_set_wiphy_params,
7643a2c3
JB
3783 .set_tx_power = ieee80211_set_tx_power,
3784 .get_tx_power = ieee80211_get_tx_power,
ab737a4f 3785 .set_wds_peer = ieee80211_set_wds_peer,
1f87f7d3 3786 .rfkill_poll = ieee80211_rfkill_poll,
aff89a9b 3787 CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd)
71063f0e 3788 CFG80211_TESTMODE_DUMP(ieee80211_testmode_dump)
bc92afd9 3789 .set_power_mgmt = ieee80211_set_power_mgmt,
9930380f 3790 .set_bitrate_mask = ieee80211_set_bitrate_mask,
b8bc4b0a
JB
3791 .remain_on_channel = ieee80211_remain_on_channel,
3792 .cancel_remain_on_channel = ieee80211_cancel_remain_on_channel,
2e161f78 3793 .mgmt_tx = ieee80211_mgmt_tx,
f30221e4 3794 .mgmt_tx_cancel_wait = ieee80211_mgmt_tx_cancel_wait,
a97c13c3 3795 .set_cqm_rssi_config = ieee80211_set_cqm_rssi_config,
7be5086d 3796 .mgmt_frame_register = ieee80211_mgmt_frame_register,
15d96753
BR
3797 .set_antenna = ieee80211_set_antenna,
3798 .get_antenna = ieee80211_get_antenna,
c68f4b89 3799 .set_rekey_data = ieee80211_set_rekey_data,
dfe018bf
AN
3800 .tdls_oper = ieee80211_tdls_oper,
3801 .tdls_mgmt = ieee80211_tdls_mgmt,
a7a6bdd0
AN
3802 .tdls_channel_switch = ieee80211_tdls_channel_switch,
3803 .tdls_cancel_channel_switch = ieee80211_tdls_cancel_channel_switch,
06500736 3804 .probe_client = ieee80211_probe_client,
b53be792 3805 .set_noack_map = ieee80211_set_noack_map,
6d52563f
JB
3806#ifdef CONFIG_PM
3807 .set_wakeup = ieee80211_set_wakeup,
3808#endif
5b7ccaf3 3809 .get_channel = ieee80211_cfg_get_channel,
164eb02d 3810 .start_radar_detection = ieee80211_start_radar_detection,
73da7d5b 3811 .channel_switch = ieee80211_channel_switch,
32db6b54 3812 .set_qos_map = ieee80211_set_qos_map,
3b1700bd 3813 .set_ap_chanwidth = ieee80211_set_ap_chanwidth,
02219b3a
JB
3814 .add_tx_ts = ieee80211_add_tx_ts,
3815 .del_tx_ts = ieee80211_del_tx_ts,
f0706e82 3816};