ethernet: Use eth_<foo>_addr instead of memset
[deliverable/linux.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)) {
980 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
981 if (ret)
982 return ret;
983 }
984
985 if (mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
986 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED))
987 ret = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
988 else if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
989 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
990 else
991 ret = 0;
992 if (ret)
993 return ret;
994 }
995
996 if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
997 !(set & BIT(NL80211_STA_FLAG_ASSOCIATED)) &&
998 test_sta_flag(sta, WLAN_STA_ASSOC)) {
999 ret = sta_info_move_state(sta, IEEE80211_STA_AUTH);
1000 if (ret)
1001 return ret;
1002 }
1003
1004 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
1005 !(set & BIT(NL80211_STA_FLAG_AUTHENTICATED)) &&
1006 test_sta_flag(sta, WLAN_STA_AUTH)) {
1007 ret = sta_info_move_state(sta, IEEE80211_STA_NONE);
1008 if (ret)
1009 return ret;
1010 }
1011
1012 return 0;
1013}
1014
d9a7ddb0
JB
1015static int sta_apply_parameters(struct ieee80211_local *local,
1016 struct sta_info *sta,
1017 struct station_parameters *params)
4fd6931e 1018{
d9a7ddb0 1019 int ret = 0;
8318d78a 1020 struct ieee80211_supported_band *sband;
d0709a65 1021 struct ieee80211_sub_if_data *sdata = sta->sdata;
55de908a 1022 enum ieee80211_band band = ieee80211_get_sdata_band(sdata);
eccb8e8f 1023 u32 mask, set;
4fd6931e 1024
55de908a 1025 sband = local->hw.wiphy->bands[band];
ae5eb026 1026
eccb8e8f
JB
1027 mask = params->sta_flags_mask;
1028 set = params->sta_flags_set;
73651ee6 1029
d582cffb
JB
1030 if (ieee80211_vif_is_mesh(&sdata->vif)) {
1031 /*
1032 * In mesh mode, ASSOCIATED isn't part of the nl80211
1033 * API but must follow AUTHENTICATED for driver state.
1034 */
1035 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED))
1036 mask |= BIT(NL80211_STA_FLAG_ASSOCIATED);
1037 if (set & BIT(NL80211_STA_FLAG_AUTHENTICATED))
1038 set |= BIT(NL80211_STA_FLAG_ASSOCIATED);
77ee7c89
JB
1039 } else if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1040 /*
1041 * TDLS -- everything follows authorized, but
1042 * only becoming authorized is possible, not
1043 * going back
1044 */
1045 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
1046 set |= BIT(NL80211_STA_FLAG_AUTHENTICATED) |
1047 BIT(NL80211_STA_FLAG_ASSOCIATED);
1048 mask |= BIT(NL80211_STA_FLAG_AUTHENTICATED) |
1049 BIT(NL80211_STA_FLAG_ASSOCIATED);
1050 }
eccb8e8f 1051 }
4fd6931e 1052
68885a54
AN
1053 /* auth flags will be set later for TDLS stations */
1054 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1055 ret = sta_apply_auth_flags(local, sta, mask, set);
1056 if (ret)
1057 return ret;
1058 }
d9a7ddb0 1059
eccb8e8f 1060 if (mask & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) {
eccb8e8f 1061 if (set & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE))
c2c98fde
JB
1062 set_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
1063 else
1064 clear_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
eccb8e8f 1065 }
4fd6931e 1066
a74a8c84
JB
1067 if (mask & BIT(NL80211_STA_FLAG_WME))
1068 sta->sta.wme = set & BIT(NL80211_STA_FLAG_WME);
5394af4d 1069
eccb8e8f 1070 if (mask & BIT(NL80211_STA_FLAG_MFP)) {
eccb8e8f 1071 if (set & BIT(NL80211_STA_FLAG_MFP))
c2c98fde
JB
1072 set_sta_flag(sta, WLAN_STA_MFP);
1073 else
1074 clear_sta_flag(sta, WLAN_STA_MFP);
4fd6931e 1075 }
b39c48fa 1076
07ba55d7 1077 if (mask & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
07ba55d7 1078 if (set & BIT(NL80211_STA_FLAG_TDLS_PEER))
c2c98fde
JB
1079 set_sta_flag(sta, WLAN_STA_TDLS_PEER);
1080 else
1081 clear_sta_flag(sta, WLAN_STA_TDLS_PEER);
07ba55d7 1082 }
4fd6931e 1083
9041c1fa
AN
1084 /* mark TDLS channel switch support, if the AP allows it */
1085 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER) &&
1086 !sdata->u.mgd.tdls_chan_switch_prohibited &&
1087 params->ext_capab_len >= 4 &&
1088 params->ext_capab[3] & WLAN_EXT_CAPA4_TDLS_CHAN_SWITCH)
1089 set_sta_flag(sta, WLAN_STA_TDLS_CHAN_SWITCH);
1090
3b9ce80c
JB
1091 if (params->sta_modify_mask & STATION_PARAM_APPLY_UAPSD) {
1092 sta->sta.uapsd_queues = params->uapsd_queues;
1093 sta->sta.max_sp = params->max_sp;
1094 }
9533b4ac 1095
51b50fbe
JB
1096 /*
1097 * cfg80211 validates this (1-2007) and allows setting the AID
1098 * only when creating a new station entry
1099 */
1100 if (params->aid)
1101 sta->sta.aid = params->aid;
1102
73651ee6 1103 /*
ba23d206
JB
1104 * Some of the following updates would be racy if called on an
1105 * existing station, via ieee80211_change_station(). However,
1106 * all such changes are rejected by cfg80211 except for updates
1107 * changing the supported rates on an existing but not yet used
1108 * TDLS peer.
73651ee6
JB
1109 */
1110
4fd6931e
JB
1111 if (params->listen_interval >= 0)
1112 sta->listen_interval = params->listen_interval;
1113
1114 if (params->supported_rates) {
2103dec1
SW
1115 ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef,
1116 sband, params->supported_rates,
1117 params->supported_rates_len,
1118 &sta->sta.supp_rates[band]);
4fd6931e 1119 }
c5dd9c2b 1120
d9fe60de 1121 if (params->ht_capa)
ef96a842 1122 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
e1a0c6b3 1123 params->ht_capa, sta);
36aedc90 1124
f461be3e
MP
1125 if (params->vht_capa)
1126 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
4a34215e 1127 params->vht_capa, sta);
f461be3e 1128
b1bce14a 1129 if (params->opmode_notif_used) {
b1bce14a
MK
1130 /* returned value is only needed for rc update, but the
1131 * rc isn't initialized here yet, so ignore it
1132 */
1133 __ieee80211_vht_handle_opmode(sdata, sta,
1134 params->opmode_notif,
1135 band, false);
1136 }
1137
9c3990aa 1138 if (ieee80211_vif_is_mesh(&sdata->vif)) {
4daf50f2 1139#ifdef CONFIG_MAC80211_MESH
39886b61 1140 u32 changed = 0;
77ee7c89
JB
1141
1142 if (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE) {
9c3990aa 1143 switch (params->plink_state) {
57cf8043 1144 case NL80211_PLINK_ESTAB:
1617bab8
MP
1145 if (sta->plink_state != NL80211_PLINK_ESTAB)
1146 changed = mesh_plink_inc_estab_count(
1147 sdata);
1148 sta->plink_state = params->plink_state;
3f52b7e3
MP
1149
1150 ieee80211_mps_sta_status_update(sta);
39886b61
TP
1151 changed |= ieee80211_mps_set_sta_local_pm(sta,
1152 sdata->u.mesh.mshcfg.power_mode);
1617bab8
MP
1153 break;
1154 case NL80211_PLINK_LISTEN:
57cf8043 1155 case NL80211_PLINK_BLOCKED:
1617bab8
MP
1156 case NL80211_PLINK_OPN_SNT:
1157 case NL80211_PLINK_OPN_RCVD:
1158 case NL80211_PLINK_CNF_RCVD:
1159 case NL80211_PLINK_HOLDING:
1160 if (sta->plink_state == NL80211_PLINK_ESTAB)
1161 changed = mesh_plink_dec_estab_count(
1162 sdata);
9c3990aa 1163 sta->plink_state = params->plink_state;
3f52b7e3
MP
1164
1165 ieee80211_mps_sta_status_update(sta);
446075d7
MP
1166 changed |= ieee80211_mps_set_sta_local_pm(sta,
1167 NL80211_MESH_POWER_UNKNOWN);
9c3990aa
JC
1168 break;
1169 default:
1170 /* nothing */
1171 break;
1172 }
77ee7c89
JB
1173 }
1174
1175 switch (params->plink_action) {
1176 case NL80211_PLINK_ACTION_NO_ACTION:
1177 /* nothing */
1178 break;
1179 case NL80211_PLINK_ACTION_OPEN:
1180 changed |= mesh_plink_open(sta);
1181 break;
1182 case NL80211_PLINK_ACTION_BLOCK:
1183 changed |= mesh_plink_block(sta);
1184 break;
1617bab8 1185 }
3f52b7e3
MP
1186
1187 if (params->local_pm)
39886b61
TP
1188 changed |=
1189 ieee80211_mps_set_sta_local_pm(sta,
1190 params->local_pm);
6c751ef8 1191 ieee80211_mbss_info_change_notify(sdata, changed);
4daf50f2 1192#endif
902acc78 1193 }
d9a7ddb0 1194
68885a54
AN
1195 /* set the STA state after all sta info from usermode has been set */
1196 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1197 ret = sta_apply_auth_flags(local, sta, mask, set);
1198 if (ret)
1199 return ret;
1200 }
1201
d9a7ddb0 1202 return 0;
4fd6931e
JB
1203}
1204
1205static int ieee80211_add_station(struct wiphy *wiphy, struct net_device *dev,
3b3a0162
JB
1206 const u8 *mac,
1207 struct station_parameters *params)
4fd6931e 1208{
14db74bc 1209 struct ieee80211_local *local = wiphy_priv(wiphy);
4fd6931e
JB
1210 struct sta_info *sta;
1211 struct ieee80211_sub_if_data *sdata;
73651ee6 1212 int err;
b8d476c8 1213 int layer2_update;
4fd6931e 1214
4fd6931e
JB
1215 if (params->vlan) {
1216 sdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1217
05c914fe
JB
1218 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
1219 sdata->vif.type != NL80211_IFTYPE_AP)
4fd6931e
JB
1220 return -EINVAL;
1221 } else
1222 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1223
b203ca39 1224 if (ether_addr_equal(mac, sdata->vif.addr))
03e4497e
JB
1225 return -EINVAL;
1226
1227 if (is_multicast_ether_addr(mac))
1228 return -EINVAL;
1229
1230 sta = sta_info_alloc(sdata, mac, GFP_KERNEL);
73651ee6
JB
1231 if (!sta)
1232 return -ENOMEM;
4fd6931e 1233
d582cffb
JB
1234 /*
1235 * defaults -- if userspace wants something else we'll
1236 * change it accordingly in sta_apply_parameters()
1237 */
77ee7c89
JB
1238 if (!(params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER))) {
1239 sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
1240 sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC);
0c4972cc
AN
1241 } else {
1242 sta->sta.tdls = true;
77ee7c89 1243 }
4fd6931e 1244
d9a7ddb0
JB
1245 err = sta_apply_parameters(local, sta, params);
1246 if (err) {
1247 sta_info_free(local, sta);
1248 return err;
1249 }
4fd6931e 1250
d64cf63e 1251 /*
77ee7c89
JB
1252 * for TDLS, rate control should be initialized only when
1253 * rates are known and station is marked authorized
d64cf63e
AN
1254 */
1255 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER))
1256 rate_control_rate_init(sta);
4fd6931e 1257
b8d476c8
JM
1258 layer2_update = sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1259 sdata->vif.type == NL80211_IFTYPE_AP;
1260
34e89507 1261 err = sta_info_insert_rcu(sta);
73651ee6 1262 if (err) {
73651ee6
JB
1263 rcu_read_unlock();
1264 return err;
1265 }
1266
b8d476c8 1267 if (layer2_update)
73651ee6
JB
1268 ieee80211_send_layer2_update(sta);
1269
1270 rcu_read_unlock();
1271
4fd6931e
JB
1272 return 0;
1273}
1274
1275static int ieee80211_del_station(struct wiphy *wiphy, struct net_device *dev,
89c771e5 1276 struct station_del_parameters *params)
4fd6931e 1277{
14db74bc 1278 struct ieee80211_sub_if_data *sdata;
4fd6931e 1279
14db74bc
JB
1280 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1281
89c771e5
JM
1282 if (params->mac)
1283 return sta_info_destroy_addr_bss(sdata, params->mac);
4fd6931e 1284
b998e8bb 1285 sta_info_flush(sdata);
4fd6931e
JB
1286 return 0;
1287}
1288
1289static int ieee80211_change_station(struct wiphy *wiphy,
3b3a0162 1290 struct net_device *dev, const u8 *mac,
4fd6931e
JB
1291 struct station_parameters *params)
1292{
abe60632 1293 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
14db74bc 1294 struct ieee80211_local *local = wiphy_priv(wiphy);
4fd6931e
JB
1295 struct sta_info *sta;
1296 struct ieee80211_sub_if_data *vlansdata;
77ee7c89 1297 enum cfg80211_station_type statype;
35b88623 1298 int err;
4fd6931e 1299
87be1e1e 1300 mutex_lock(&local->sta_mtx);
98dd6a57 1301
0e5ded5a 1302 sta = sta_info_get_bss(sdata, mac);
98dd6a57 1303 if (!sta) {
77ee7c89
JB
1304 err = -ENOENT;
1305 goto out_err;
98dd6a57 1306 }
4fd6931e 1307
77ee7c89
JB
1308 switch (sdata->vif.type) {
1309 case NL80211_IFTYPE_MESH_POINT:
a6dad6a2 1310 if (sdata->u.mesh.user_mpm)
eef941e6 1311 statype = CFG80211_STA_MESH_PEER_USER;
77ee7c89 1312 else
eef941e6 1313 statype = CFG80211_STA_MESH_PEER_KERNEL;
77ee7c89
JB
1314 break;
1315 case NL80211_IFTYPE_ADHOC:
1316 statype = CFG80211_STA_IBSS;
1317 break;
1318 case NL80211_IFTYPE_STATION:
1319 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1320 statype = CFG80211_STA_AP_STA;
1321 break;
1322 }
1323 if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
1324 statype = CFG80211_STA_TDLS_PEER_ACTIVE;
1325 else
1326 statype = CFG80211_STA_TDLS_PEER_SETUP;
1327 break;
1328 case NL80211_IFTYPE_AP:
1329 case NL80211_IFTYPE_AP_VLAN:
1330 statype = CFG80211_STA_AP_CLIENT;
1331 break;
1332 default:
1333 err = -EOPNOTSUPP;
1334 goto out_err;
bdd90d5e
JB
1335 }
1336
77ee7c89
JB
1337 err = cfg80211_check_station_change(wiphy, params, statype);
1338 if (err)
1339 goto out_err;
1340
d0709a65 1341 if (params->vlan && params->vlan != sta->sdata->dev) {
7e3ed02c
FF
1342 bool prev_4addr = false;
1343 bool new_4addr = false;
1344
4fd6931e
JB
1345 vlansdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1346
9bc383de 1347 if (params->vlan->ieee80211_ptr->use_4addr) {
3305443c 1348 if (vlansdata->u.vlan.sta) {
77ee7c89
JB
1349 err = -EBUSY;
1350 goto out_err;
3305443c 1351 }
f14543ee 1352
cf778b00 1353 rcu_assign_pointer(vlansdata->u.vlan.sta, sta);
7e3ed02c
FF
1354 new_4addr = true;
1355 }
1356
1357 if (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1358 sta->sdata->u.vlan.sta) {
0c2bef46 1359 RCU_INIT_POINTER(sta->sdata->u.vlan.sta, NULL);
7e3ed02c 1360 prev_4addr = true;
f14543ee
FF
1361 }
1362
14db74bc 1363 sta->sdata = vlansdata;
7e3ed02c
FF
1364
1365 if (sta->sta_state == IEEE80211_STA_AUTHORIZED &&
1366 prev_4addr != new_4addr) {
1367 if (new_4addr)
1368 atomic_dec(&sta->sdata->bss->num_mcast_sta);
1369 else
1370 atomic_inc(&sta->sdata->bss->num_mcast_sta);
1371 }
1372
4fd6931e
JB
1373 ieee80211_send_layer2_update(sta);
1374 }
1375
35b88623 1376 err = sta_apply_parameters(local, sta, params);
77ee7c89
JB
1377 if (err)
1378 goto out_err;
4fd6931e 1379
77ee7c89
JB
1380 /* When peer becomes authorized, init rate control as well */
1381 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER) &&
1382 test_sta_flag(sta, WLAN_STA_AUTHORIZED))
d64cf63e
AN
1383 rate_control_rate_init(sta);
1384
87be1e1e 1385 mutex_unlock(&local->sta_mtx);
98dd6a57 1386
687da132
EG
1387 if ((sdata->vif.type == NL80211_IFTYPE_AP ||
1388 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
1389 sta->known_smps_mode != sta->sdata->bss->req_smps &&
1390 test_sta_flag(sta, WLAN_STA_AUTHORIZED) &&
1391 sta_info_tx_streams(sta) != 1) {
1392 ht_dbg(sta->sdata,
1393 "%pM just authorized and MIMO capable - update SMPS\n",
1394 sta->sta.addr);
1395 ieee80211_send_smps_action(sta->sdata,
1396 sta->sdata->bss->req_smps,
1397 sta->sta.addr,
1398 sta->sdata->vif.bss_conf.bssid);
1399 }
1400
808118cb 1401 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
ab095877 1402 params->sta_flags_mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
808118cb 1403 ieee80211_recalc_ps(local, -1);
ab095877
EP
1404 ieee80211_recalc_ps_vif(sdata);
1405 }
77ee7c89 1406
4fd6931e 1407 return 0;
77ee7c89
JB
1408out_err:
1409 mutex_unlock(&local->sta_mtx);
1410 return err;
4fd6931e
JB
1411}
1412
c5dd9c2b
LCC
1413#ifdef CONFIG_MAC80211_MESH
1414static int ieee80211_add_mpath(struct wiphy *wiphy, struct net_device *dev,
3b3a0162 1415 const u8 *dst, const u8 *next_hop)
c5dd9c2b 1416{
14db74bc 1417 struct ieee80211_sub_if_data *sdata;
c5dd9c2b
LCC
1418 struct mesh_path *mpath;
1419 struct sta_info *sta;
c5dd9c2b 1420
14db74bc
JB
1421 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1422
d0709a65 1423 rcu_read_lock();
abe60632 1424 sta = sta_info_get(sdata, next_hop);
d0709a65
JB
1425 if (!sta) {
1426 rcu_read_unlock();
c5dd9c2b 1427 return -ENOENT;
d0709a65 1428 }
c5dd9c2b 1429
ae76eef0
BC
1430 mpath = mesh_path_add(sdata, dst);
1431 if (IS_ERR(mpath)) {
d0709a65 1432 rcu_read_unlock();
ae76eef0 1433 return PTR_ERR(mpath);
d0709a65 1434 }
c5dd9c2b 1435
c5dd9c2b 1436 mesh_path_fix_nexthop(mpath, sta);
d0709a65 1437
c5dd9c2b
LCC
1438 rcu_read_unlock();
1439 return 0;
1440}
1441
1442static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev,
3b3a0162 1443 const u8 *dst)
c5dd9c2b 1444{
f698d856
JBG
1445 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1446
c5dd9c2b 1447 if (dst)
bf7cd94d 1448 return mesh_path_del(sdata, dst);
c5dd9c2b 1449
ece1a2e7 1450 mesh_path_flush_by_iface(sdata);
c5dd9c2b
LCC
1451 return 0;
1452}
1453
3b3a0162
JB
1454static int ieee80211_change_mpath(struct wiphy *wiphy, struct net_device *dev,
1455 const u8 *dst, const u8 *next_hop)
c5dd9c2b 1456{
14db74bc 1457 struct ieee80211_sub_if_data *sdata;
c5dd9c2b
LCC
1458 struct mesh_path *mpath;
1459 struct sta_info *sta;
1460
14db74bc
JB
1461 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1462
d0709a65
JB
1463 rcu_read_lock();
1464
abe60632 1465 sta = sta_info_get(sdata, next_hop);
d0709a65
JB
1466 if (!sta) {
1467 rcu_read_unlock();
c5dd9c2b 1468 return -ENOENT;
d0709a65 1469 }
c5dd9c2b 1470
bf7cd94d 1471 mpath = mesh_path_lookup(sdata, dst);
c5dd9c2b
LCC
1472 if (!mpath) {
1473 rcu_read_unlock();
c5dd9c2b
LCC
1474 return -ENOENT;
1475 }
1476
1477 mesh_path_fix_nexthop(mpath, sta);
d0709a65 1478
c5dd9c2b
LCC
1479 rcu_read_unlock();
1480 return 0;
1481}
1482
1483static void mpath_set_pinfo(struct mesh_path *mpath, u8 *next_hop,
1484 struct mpath_info *pinfo)
1485{
a3836e02
JB
1486 struct sta_info *next_hop_sta = rcu_dereference(mpath->next_hop);
1487
1488 if (next_hop_sta)
1489 memcpy(next_hop, next_hop_sta->sta.addr, ETH_ALEN);
c5dd9c2b
LCC
1490 else
1491 memset(next_hop, 0, ETH_ALEN);
1492
7ce8c7a3
LAYS
1493 memset(pinfo, 0, sizeof(*pinfo));
1494
f5ea9120
JB
1495 pinfo->generation = mesh_paths_generation;
1496
c5dd9c2b 1497 pinfo->filled = MPATH_INFO_FRAME_QLEN |
d19b3bf6 1498 MPATH_INFO_SN |
c5dd9c2b
LCC
1499 MPATH_INFO_METRIC |
1500 MPATH_INFO_EXPTIME |
1501 MPATH_INFO_DISCOVERY_TIMEOUT |
1502 MPATH_INFO_DISCOVERY_RETRIES |
1503 MPATH_INFO_FLAGS;
1504
1505 pinfo->frame_qlen = mpath->frame_queue.qlen;
d19b3bf6 1506 pinfo->sn = mpath->sn;
c5dd9c2b
LCC
1507 pinfo->metric = mpath->metric;
1508 if (time_before(jiffies, mpath->exp_time))
1509 pinfo->exptime = jiffies_to_msecs(mpath->exp_time - jiffies);
1510 pinfo->discovery_timeout =
1511 jiffies_to_msecs(mpath->discovery_timeout);
1512 pinfo->discovery_retries = mpath->discovery_retries;
c5dd9c2b
LCC
1513 if (mpath->flags & MESH_PATH_ACTIVE)
1514 pinfo->flags |= NL80211_MPATH_FLAG_ACTIVE;
1515 if (mpath->flags & MESH_PATH_RESOLVING)
1516 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
d19b3bf6
RP
1517 if (mpath->flags & MESH_PATH_SN_VALID)
1518 pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID;
c5dd9c2b
LCC
1519 if (mpath->flags & MESH_PATH_FIXED)
1520 pinfo->flags |= NL80211_MPATH_FLAG_FIXED;
7ce8c7a3
LAYS
1521 if (mpath->flags & MESH_PATH_RESOLVED)
1522 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVED;
c5dd9c2b
LCC
1523}
1524
1525static int ieee80211_get_mpath(struct wiphy *wiphy, struct net_device *dev,
1526 u8 *dst, u8 *next_hop, struct mpath_info *pinfo)
1527
1528{
14db74bc 1529 struct ieee80211_sub_if_data *sdata;
c5dd9c2b
LCC
1530 struct mesh_path *mpath;
1531
14db74bc
JB
1532 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1533
c5dd9c2b 1534 rcu_read_lock();
bf7cd94d 1535 mpath = mesh_path_lookup(sdata, dst);
c5dd9c2b
LCC
1536 if (!mpath) {
1537 rcu_read_unlock();
1538 return -ENOENT;
1539 }
1540 memcpy(dst, mpath->dst, ETH_ALEN);
1541 mpath_set_pinfo(mpath, next_hop, pinfo);
1542 rcu_read_unlock();
1543 return 0;
1544}
1545
1546static int ieee80211_dump_mpath(struct wiphy *wiphy, struct net_device *dev,
3b3a0162
JB
1547 int idx, u8 *dst, u8 *next_hop,
1548 struct mpath_info *pinfo)
c5dd9c2b 1549{
14db74bc 1550 struct ieee80211_sub_if_data *sdata;
c5dd9c2b
LCC
1551 struct mesh_path *mpath;
1552
14db74bc
JB
1553 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1554
c5dd9c2b 1555 rcu_read_lock();
bf7cd94d 1556 mpath = mesh_path_lookup_by_idx(sdata, idx);
c5dd9c2b
LCC
1557 if (!mpath) {
1558 rcu_read_unlock();
1559 return -ENOENT;
1560 }
1561 memcpy(dst, mpath->dst, ETH_ALEN);
1562 mpath_set_pinfo(mpath, next_hop, pinfo);
1563 rcu_read_unlock();
1564 return 0;
1565}
93da9cc1 1566
a2db2ed3
HR
1567static void mpp_set_pinfo(struct mesh_path *mpath, u8 *mpp,
1568 struct mpath_info *pinfo)
1569{
1570 memset(pinfo, 0, sizeof(*pinfo));
1571 memcpy(mpp, mpath->mpp, ETH_ALEN);
1572
1573 pinfo->generation = mpp_paths_generation;
1574}
1575
1576static int ieee80211_get_mpp(struct wiphy *wiphy, struct net_device *dev,
1577 u8 *dst, u8 *mpp, struct mpath_info *pinfo)
1578
1579{
1580 struct ieee80211_sub_if_data *sdata;
1581 struct mesh_path *mpath;
1582
1583 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1584
1585 rcu_read_lock();
1586 mpath = mpp_path_lookup(sdata, dst);
1587 if (!mpath) {
1588 rcu_read_unlock();
1589 return -ENOENT;
1590 }
1591 memcpy(dst, mpath->dst, ETH_ALEN);
1592 mpp_set_pinfo(mpath, mpp, pinfo);
1593 rcu_read_unlock();
1594 return 0;
1595}
1596
1597static int ieee80211_dump_mpp(struct wiphy *wiphy, struct net_device *dev,
1598 int idx, u8 *dst, u8 *mpp,
1599 struct mpath_info *pinfo)
1600{
1601 struct ieee80211_sub_if_data *sdata;
1602 struct mesh_path *mpath;
1603
1604 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1605
1606 rcu_read_lock();
1607 mpath = mpp_path_lookup_by_idx(sdata, idx);
1608 if (!mpath) {
1609 rcu_read_unlock();
1610 return -ENOENT;
1611 }
1612 memcpy(dst, mpath->dst, ETH_ALEN);
1613 mpp_set_pinfo(mpath, mpp, pinfo);
1614 rcu_read_unlock();
1615 return 0;
1616}
1617
24bdd9f4 1618static int ieee80211_get_mesh_config(struct wiphy *wiphy,
93da9cc1 1619 struct net_device *dev,
1620 struct mesh_config *conf)
1621{
1622 struct ieee80211_sub_if_data *sdata;
1623 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1624
93da9cc1 1625 memcpy(conf, &(sdata->u.mesh.mshcfg), sizeof(struct mesh_config));
1626 return 0;
1627}
1628
1629static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm, u32 mask)
1630{
1631 return (mask >> (parm-1)) & 0x1;
1632}
1633
c80d545d
JC
1634static int copy_mesh_setup(struct ieee80211_if_mesh *ifmsh,
1635 const struct mesh_setup *setup)
1636{
1637 u8 *new_ie;
1638 const u8 *old_ie;
4bb62344
CYY
1639 struct ieee80211_sub_if_data *sdata = container_of(ifmsh,
1640 struct ieee80211_sub_if_data, u.mesh);
c80d545d 1641
581a8b0f 1642 /* allocate information elements */
c80d545d 1643 new_ie = NULL;
581a8b0f 1644 old_ie = ifmsh->ie;
c80d545d 1645
581a8b0f
JC
1646 if (setup->ie_len) {
1647 new_ie = kmemdup(setup->ie, setup->ie_len,
c80d545d
JC
1648 GFP_KERNEL);
1649 if (!new_ie)
1650 return -ENOMEM;
1651 }
581a8b0f
JC
1652 ifmsh->ie_len = setup->ie_len;
1653 ifmsh->ie = new_ie;
1654 kfree(old_ie);
c80d545d
JC
1655
1656 /* now copy the rest of the setup parameters */
1657 ifmsh->mesh_id_len = setup->mesh_id_len;
1658 memcpy(ifmsh->mesh_id, setup->mesh_id, ifmsh->mesh_id_len);
d299a1f2 1659 ifmsh->mesh_sp_id = setup->sync_method;
c80d545d
JC
1660 ifmsh->mesh_pp_id = setup->path_sel_proto;
1661 ifmsh->mesh_pm_id = setup->path_metric;
a6dad6a2 1662 ifmsh->user_mpm = setup->user_mpm;
0d4261ad 1663 ifmsh->mesh_auth_id = setup->auth_id;
b130e5ce
JC
1664 ifmsh->security = IEEE80211_MESH_SEC_NONE;
1665 if (setup->is_authenticated)
1666 ifmsh->security |= IEEE80211_MESH_SEC_AUTHED;
1667 if (setup->is_secure)
1668 ifmsh->security |= IEEE80211_MESH_SEC_SECURED;
c80d545d 1669
4bb62344
CYY
1670 /* mcast rate setting in Mesh Node */
1671 memcpy(sdata->vif.bss_conf.mcast_rate, setup->mcast_rate,
1672 sizeof(setup->mcast_rate));
ffb3cf30 1673 sdata->vif.bss_conf.basic_rates = setup->basic_rates;
4bb62344 1674
9bdbf04d
MP
1675 sdata->vif.bss_conf.beacon_int = setup->beacon_interval;
1676 sdata->vif.bss_conf.dtim_period = setup->dtim_period;
1677
c80d545d
JC
1678 return 0;
1679}
1680
24bdd9f4 1681static int ieee80211_update_mesh_config(struct wiphy *wiphy,
29cbe68c
JB
1682 struct net_device *dev, u32 mask,
1683 const struct mesh_config *nconf)
93da9cc1 1684{
1685 struct mesh_config *conf;
1686 struct ieee80211_sub_if_data *sdata;
63c5723b
RP
1687 struct ieee80211_if_mesh *ifmsh;
1688
93da9cc1 1689 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
63c5723b 1690 ifmsh = &sdata->u.mesh;
93da9cc1 1691
93da9cc1 1692 /* Set the config options which we are interested in setting */
1693 conf = &(sdata->u.mesh.mshcfg);
1694 if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT, mask))
1695 conf->dot11MeshRetryTimeout = nconf->dot11MeshRetryTimeout;
1696 if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT, mask))
1697 conf->dot11MeshConfirmTimeout = nconf->dot11MeshConfirmTimeout;
1698 if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT, mask))
1699 conf->dot11MeshHoldingTimeout = nconf->dot11MeshHoldingTimeout;
1700 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS, mask))
1701 conf->dot11MeshMaxPeerLinks = nconf->dot11MeshMaxPeerLinks;
1702 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES, mask))
1703 conf->dot11MeshMaxRetries = nconf->dot11MeshMaxRetries;
1704 if (_chg_mesh_attr(NL80211_MESHCONF_TTL, mask))
1705 conf->dot11MeshTTL = nconf->dot11MeshTTL;
45904f21 1706 if (_chg_mesh_attr(NL80211_MESHCONF_ELEMENT_TTL, mask))
58886a90 1707 conf->element_ttl = nconf->element_ttl;
146bb483
TP
1708 if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS, mask)) {
1709 if (ifmsh->user_mpm)
1710 return -EBUSY;
93da9cc1 1711 conf->auto_open_plinks = nconf->auto_open_plinks;
146bb483 1712 }
d299a1f2
JC
1713 if (_chg_mesh_attr(NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR, mask))
1714 conf->dot11MeshNbrOffsetMaxNeighbor =
1715 nconf->dot11MeshNbrOffsetMaxNeighbor;
93da9cc1 1716 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, mask))
1717 conf->dot11MeshHWMPmaxPREQretries =
1718 nconf->dot11MeshHWMPmaxPREQretries;
1719 if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME, mask))
1720 conf->path_refresh_time = nconf->path_refresh_time;
1721 if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, mask))
1722 conf->min_discovery_timeout = nconf->min_discovery_timeout;
1723 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, mask))
1724 conf->dot11MeshHWMPactivePathTimeout =
1725 nconf->dot11MeshHWMPactivePathTimeout;
1726 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, mask))
1727 conf->dot11MeshHWMPpreqMinInterval =
1728 nconf->dot11MeshHWMPpreqMinInterval;
dca7e943
TP
1729 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL, mask))
1730 conf->dot11MeshHWMPperrMinInterval =
1731 nconf->dot11MeshHWMPperrMinInterval;
93da9cc1 1732 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
1733 mask))
1734 conf->dot11MeshHWMPnetDiameterTraversalTime =
1735 nconf->dot11MeshHWMPnetDiameterTraversalTime;
63c5723b
RP
1736 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask)) {
1737 conf->dot11MeshHWMPRootMode = nconf->dot11MeshHWMPRootMode;
1738 ieee80211_mesh_root_setup(ifmsh);
1739 }
16dd7267 1740 if (_chg_mesh_attr(NL80211_MESHCONF_GATE_ANNOUNCEMENTS, mask)) {
c6133661
TP
1741 /* our current gate announcement implementation rides on root
1742 * announcements, so require this ifmsh to also be a root node
1743 * */
1744 if (nconf->dot11MeshGateAnnouncementProtocol &&
dbb912cd
CYY
1745 !(conf->dot11MeshHWMPRootMode > IEEE80211_ROOTMODE_ROOT)) {
1746 conf->dot11MeshHWMPRootMode = IEEE80211_PROACTIVE_RANN;
c6133661
TP
1747 ieee80211_mesh_root_setup(ifmsh);
1748 }
16dd7267
JC
1749 conf->dot11MeshGateAnnouncementProtocol =
1750 nconf->dot11MeshGateAnnouncementProtocol;
1751 }
a4f606ea 1752 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_RANN_INTERVAL, mask))
0507e159
JC
1753 conf->dot11MeshHWMPRannInterval =
1754 nconf->dot11MeshHWMPRannInterval;
94f90656
CYY
1755 if (_chg_mesh_attr(NL80211_MESHCONF_FORWARDING, mask))
1756 conf->dot11MeshForwarding = nconf->dot11MeshForwarding;
55335137
AN
1757 if (_chg_mesh_attr(NL80211_MESHCONF_RSSI_THRESHOLD, mask)) {
1758 /* our RSSI threshold implementation is supported only for
1759 * devices that report signal in dBm.
1760 */
1761 if (!(sdata->local->hw.flags & IEEE80211_HW_SIGNAL_DBM))
1762 return -ENOTSUPP;
1763 conf->rssi_threshold = nconf->rssi_threshold;
1764 }
70c33eaa
AN
1765 if (_chg_mesh_attr(NL80211_MESHCONF_HT_OPMODE, mask)) {
1766 conf->ht_opmode = nconf->ht_opmode;
1767 sdata->vif.bss_conf.ht_operation_mode = nconf->ht_opmode;
1768 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_HT);
1769 }
ac1073a6
CYY
1770 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT, mask))
1771 conf->dot11MeshHWMPactivePathToRootTimeout =
1772 nconf->dot11MeshHWMPactivePathToRootTimeout;
1773 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOT_INTERVAL, mask))
1774 conf->dot11MeshHWMProotInterval =
1775 nconf->dot11MeshHWMProotInterval;
728b19e5
CYY
1776 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL, mask))
1777 conf->dot11MeshHWMPconfirmationInterval =
1778 nconf->dot11MeshHWMPconfirmationInterval;
3f52b7e3
MP
1779 if (_chg_mesh_attr(NL80211_MESHCONF_POWER_MODE, mask)) {
1780 conf->power_mode = nconf->power_mode;
1781 ieee80211_mps_local_status_update(sdata);
1782 }
2b5e1967 1783 if (_chg_mesh_attr(NL80211_MESHCONF_AWAKE_WINDOW, mask))
3f52b7e3
MP
1784 conf->dot11MeshAwakeWindowDuration =
1785 nconf->dot11MeshAwakeWindowDuration;
66de6713
CT
1786 if (_chg_mesh_attr(NL80211_MESHCONF_PLINK_TIMEOUT, mask))
1787 conf->plink_timeout = nconf->plink_timeout;
2b5e1967 1788 ieee80211_mbss_info_change_notify(sdata, BSS_CHANGED_BEACON);
93da9cc1 1789 return 0;
1790}
1791
29cbe68c
JB
1792static int ieee80211_join_mesh(struct wiphy *wiphy, struct net_device *dev,
1793 const struct mesh_config *conf,
1794 const struct mesh_setup *setup)
1795{
1796 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1797 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
c80d545d 1798 int err;
29cbe68c 1799
c80d545d
JC
1800 memcpy(&ifmsh->mshcfg, conf, sizeof(struct mesh_config));
1801 err = copy_mesh_setup(ifmsh, setup);
1802 if (err)
1803 return err;
cc1d2806 1804
04ecd257
JB
1805 /* can mesh use other SMPS modes? */
1806 sdata->smps_mode = IEEE80211_SMPS_OFF;
1807 sdata->needed_rx_chains = sdata->local->rx_chains;
1808
34a3740d 1809 mutex_lock(&sdata->local->mtx);
4bf88530 1810 err = ieee80211_vif_use_channel(sdata, &setup->chandef,
55de908a 1811 IEEE80211_CHANCTX_SHARED);
34a3740d 1812 mutex_unlock(&sdata->local->mtx);
cc1d2806
JB
1813 if (err)
1814 return err;
1815
2b5e1967 1816 return ieee80211_start_mesh(sdata);
29cbe68c
JB
1817}
1818
1819static int ieee80211_leave_mesh(struct wiphy *wiphy, struct net_device *dev)
1820{
1821 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1822
1823 ieee80211_stop_mesh(sdata);
34a3740d 1824 mutex_lock(&sdata->local->mtx);
55de908a 1825 ieee80211_vif_release_channel(sdata);
34a3740d 1826 mutex_unlock(&sdata->local->mtx);
29cbe68c
JB
1827
1828 return 0;
1829}
c5dd9c2b
LCC
1830#endif
1831
9f1ba906
JM
1832static int ieee80211_change_bss(struct wiphy *wiphy,
1833 struct net_device *dev,
1834 struct bss_parameters *params)
1835{
55de908a
JB
1836 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1837 enum ieee80211_band band;
9f1ba906
JM
1838 u32 changed = 0;
1839
7ca133bc 1840 if (!sdata_dereference(sdata->u.ap.beacon, sdata))
55de908a
JB
1841 return -ENOENT;
1842
1843 band = ieee80211_get_sdata_band(sdata);
9f1ba906 1844
9f1ba906 1845 if (params->use_cts_prot >= 0) {
bda3933a 1846 sdata->vif.bss_conf.use_cts_prot = params->use_cts_prot;
9f1ba906
JM
1847 changed |= BSS_CHANGED_ERP_CTS_PROT;
1848 }
1849 if (params->use_short_preamble >= 0) {
bda3933a 1850 sdata->vif.bss_conf.use_short_preamble =
9f1ba906
JM
1851 params->use_short_preamble;
1852 changed |= BSS_CHANGED_ERP_PREAMBLE;
1853 }
43d35343
FF
1854
1855 if (!sdata->vif.bss_conf.use_short_slot &&
55de908a 1856 band == IEEE80211_BAND_5GHZ) {
43d35343
FF
1857 sdata->vif.bss_conf.use_short_slot = true;
1858 changed |= BSS_CHANGED_ERP_SLOT;
1859 }
1860
9f1ba906 1861 if (params->use_short_slot_time >= 0) {
bda3933a 1862 sdata->vif.bss_conf.use_short_slot =
9f1ba906
JM
1863 params->use_short_slot_time;
1864 changed |= BSS_CHANGED_ERP_SLOT;
1865 }
1866
90c97a04 1867 if (params->basic_rates) {
2103dec1
SW
1868 ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef,
1869 wiphy->bands[band],
1870 params->basic_rates,
1871 params->basic_rates_len,
1872 &sdata->vif.bss_conf.basic_rates);
90c97a04
JM
1873 changed |= BSS_CHANGED_BASIC_RATES;
1874 }
1875
7b7b5e56
FF
1876 if (params->ap_isolate >= 0) {
1877 if (params->ap_isolate)
1878 sdata->flags |= IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1879 else
1880 sdata->flags &= ~IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
1881 }
1882
80d7e403
HS
1883 if (params->ht_opmode >= 0) {
1884 sdata->vif.bss_conf.ht_operation_mode =
1885 (u16) params->ht_opmode;
1886 changed |= BSS_CHANGED_HT;
1887 }
1888
339afbf4 1889 if (params->p2p_ctwindow >= 0) {
67baf663
JD
1890 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &=
1891 ~IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
1892 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
1893 params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
339afbf4
JB
1894 changed |= BSS_CHANGED_P2P_PS;
1895 }
1896
67baf663
JD
1897 if (params->p2p_opp_ps > 0) {
1898 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
1899 IEEE80211_P2P_OPPPS_ENABLE_BIT;
1900 changed |= BSS_CHANGED_P2P_PS;
1901 } else if (params->p2p_opp_ps == 0) {
1902 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &=
1903 ~IEEE80211_P2P_OPPPS_ENABLE_BIT;
339afbf4
JB
1904 changed |= BSS_CHANGED_P2P_PS;
1905 }
1906
9f1ba906
JM
1907 ieee80211_bss_info_change_notify(sdata, changed);
1908
1909 return 0;
1910}
1911
31888487 1912static int ieee80211_set_txq_params(struct wiphy *wiphy,
f70f01c2 1913 struct net_device *dev,
31888487
JM
1914 struct ieee80211_txq_params *params)
1915{
1916 struct ieee80211_local *local = wiphy_priv(wiphy);
f6f3def3 1917 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
31888487
JM
1918 struct ieee80211_tx_queue_params p;
1919
1920 if (!local->ops->conf_tx)
1921 return -EOPNOTSUPP;
1922
54bcbc69
JB
1923 if (local->hw.queues < IEEE80211_NUM_ACS)
1924 return -EOPNOTSUPP;
1925
31888487
JM
1926 memset(&p, 0, sizeof(p));
1927 p.aifs = params->aifs;
1928 p.cw_max = params->cwmax;
1929 p.cw_min = params->cwmin;
1930 p.txop = params->txop;
ab13315a
KV
1931
1932 /*
1933 * Setting tx queue params disables u-apsd because it's only
1934 * called in master mode.
1935 */
1936 p.uapsd = false;
1937
a3304b0a
JB
1938 sdata->tx_conf[params->ac] = p;
1939 if (drv_conf_tx(local, sdata, params->ac, &p)) {
0fb9a9ec 1940 wiphy_debug(local->hw.wiphy,
a3304b0a
JB
1941 "failed to set TX queue parameters for AC %d\n",
1942 params->ac);
31888487
JM
1943 return -EINVAL;
1944 }
1945
7d25745d
JB
1946 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_QOS);
1947
31888487
JM
1948 return 0;
1949}
1950
665af4fc 1951#ifdef CONFIG_PM
ff1b6e69
JB
1952static int ieee80211_suspend(struct wiphy *wiphy,
1953 struct cfg80211_wowlan *wowlan)
665af4fc 1954{
eecc4800 1955 return __ieee80211_suspend(wiphy_priv(wiphy), wowlan);
665af4fc
BC
1956}
1957
1958static int ieee80211_resume(struct wiphy *wiphy)
1959{
1960 return __ieee80211_resume(wiphy_priv(wiphy));
1961}
1962#else
1963#define ieee80211_suspend NULL
1964#define ieee80211_resume NULL
1965#endif
1966
2a519311 1967static int ieee80211_scan(struct wiphy *wiphy,
2a519311
JB
1968 struct cfg80211_scan_request *req)
1969{
fd014284
JB
1970 struct ieee80211_sub_if_data *sdata;
1971
1972 sdata = IEEE80211_WDEV_TO_SUB_IF(req->wdev);
2a519311 1973
2ca27bcf
JB
1974 switch (ieee80211_vif_type_p2p(&sdata->vif)) {
1975 case NL80211_IFTYPE_STATION:
1976 case NL80211_IFTYPE_ADHOC:
1977 case NL80211_IFTYPE_MESH_POINT:
1978 case NL80211_IFTYPE_P2P_CLIENT:
f142c6b9 1979 case NL80211_IFTYPE_P2P_DEVICE:
2ca27bcf
JB
1980 break;
1981 case NL80211_IFTYPE_P2P_GO:
1982 if (sdata->local->ops->hw_scan)
1983 break;
e9d7732e
JB
1984 /*
1985 * FIXME: implement NoA while scanning in software,
1986 * for now fall through to allow scanning only when
1987 * beaconing hasn't been configured yet
1988 */
2ca27bcf 1989 case NL80211_IFTYPE_AP:
5c95b940
AQ
1990 /*
1991 * If the scan has been forced (and the driver supports
1992 * forcing), don't care about being beaconing already.
1993 * This will create problems to the attached stations (e.g. all
1994 * the frames sent while scanning on other channel will be
1995 * lost)
1996 */
1997 if (sdata->u.ap.beacon &&
1998 (!(wiphy->features & NL80211_FEATURE_AP_SCAN) ||
1999 !(req->flags & NL80211_SCAN_FLAG_AP)))
2ca27bcf
JB
2000 return -EOPNOTSUPP;
2001 break;
2002 default:
2003 return -EOPNOTSUPP;
2004 }
2a519311
JB
2005
2006 return ieee80211_request_scan(sdata, req);
2007}
2008
79f460ca
LC
2009static int
2010ieee80211_sched_scan_start(struct wiphy *wiphy,
2011 struct net_device *dev,
2012 struct cfg80211_sched_scan_request *req)
2013{
2014 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2015
2016 if (!sdata->local->ops->sched_scan_start)
2017 return -EOPNOTSUPP;
2018
2019 return ieee80211_request_sched_scan_start(sdata, req);
2020}
2021
2022static int
85a9994a 2023ieee80211_sched_scan_stop(struct wiphy *wiphy, struct net_device *dev)
79f460ca
LC
2024{
2025 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2026
2027 if (!sdata->local->ops->sched_scan_stop)
2028 return -EOPNOTSUPP;
2029
85a9994a 2030 return ieee80211_request_sched_scan_stop(sdata);
79f460ca
LC
2031}
2032
636a5d36
JM
2033static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev,
2034 struct cfg80211_auth_request *req)
2035{
77fdaa12 2036 return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev), req);
636a5d36
JM
2037}
2038
2039static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev,
2040 struct cfg80211_assoc_request *req)
2041{
77fdaa12 2042 return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
636a5d36
JM
2043}
2044
2045static int ieee80211_deauth(struct wiphy *wiphy, struct net_device *dev,
63c9c5e7 2046 struct cfg80211_deauth_request *req)
636a5d36 2047{
63c9c5e7 2048 return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev), req);
636a5d36
JM
2049}
2050
2051static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev,
63c9c5e7 2052 struct cfg80211_disassoc_request *req)
636a5d36 2053{
63c9c5e7 2054 return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
636a5d36
JM
2055}
2056
af8cdcd8
JB
2057static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
2058 struct cfg80211_ibss_params *params)
2059{
55de908a 2060 return ieee80211_ibss_join(IEEE80211_DEV_TO_SUB_IF(dev), params);
af8cdcd8
JB
2061}
2062
2063static int ieee80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev)
2064{
55de908a 2065 return ieee80211_ibss_leave(IEEE80211_DEV_TO_SUB_IF(dev));
af8cdcd8
JB
2066}
2067
239281f8
RL
2068static int ieee80211_join_ocb(struct wiphy *wiphy, struct net_device *dev,
2069 struct ocb_setup *setup)
2070{
2071 return ieee80211_ocb_join(IEEE80211_DEV_TO_SUB_IF(dev), setup);
2072}
2073
2074static int ieee80211_leave_ocb(struct wiphy *wiphy, struct net_device *dev)
2075{
2076 return ieee80211_ocb_leave(IEEE80211_DEV_TO_SUB_IF(dev));
2077}
2078
391e53e3
AQ
2079static int ieee80211_set_mcast_rate(struct wiphy *wiphy, struct net_device *dev,
2080 int rate[IEEE80211_NUM_BANDS])
2081{
2082 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2083
9887dbf5
CD
2084 memcpy(sdata->vif.bss_conf.mcast_rate, rate,
2085 sizeof(int) * IEEE80211_NUM_BANDS);
391e53e3
AQ
2086
2087 return 0;
2088}
2089
b9a5f8ca
JM
2090static int ieee80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
2091{
2092 struct ieee80211_local *local = wiphy_priv(wiphy);
24487981 2093 int err;
b9a5f8ca 2094
f23a4780
AN
2095 if (changed & WIPHY_PARAM_FRAG_THRESHOLD) {
2096 err = drv_set_frag_threshold(local, wiphy->frag_threshold);
2097
2098 if (err)
2099 return err;
2100 }
2101
a4bcaf55
LB
2102 if ((changed & WIPHY_PARAM_COVERAGE_CLASS) ||
2103 (changed & WIPHY_PARAM_DYN_ACK)) {
2104 s16 coverage_class;
2105
2106 coverage_class = changed & WIPHY_PARAM_COVERAGE_CLASS ?
2107 wiphy->coverage_class : -1;
2108 err = drv_set_coverage_class(local, coverage_class);
310bc676
LT
2109
2110 if (err)
2111 return err;
2112 }
2113
b9a5f8ca 2114 if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
24487981 2115 err = drv_set_rts_threshold(local, wiphy->rts_threshold);
b9a5f8ca 2116
24487981
JB
2117 if (err)
2118 return err;
b9a5f8ca
JM
2119 }
2120
8bc83c24
JB
2121 if (changed & WIPHY_PARAM_RETRY_SHORT) {
2122 if (wiphy->retry_short > IEEE80211_MAX_TX_RETRY)
2123 return -EINVAL;
b9a5f8ca 2124 local->hw.conf.short_frame_max_tx_count = wiphy->retry_short;
8bc83c24
JB
2125 }
2126 if (changed & WIPHY_PARAM_RETRY_LONG) {
2127 if (wiphy->retry_long > IEEE80211_MAX_TX_RETRY)
2128 return -EINVAL;
b9a5f8ca 2129 local->hw.conf.long_frame_max_tx_count = wiphy->retry_long;
8bc83c24 2130 }
b9a5f8ca
JM
2131 if (changed &
2132 (WIPHY_PARAM_RETRY_SHORT | WIPHY_PARAM_RETRY_LONG))
2133 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
2134
2135 return 0;
2136}
2137
7643a2c3 2138static int ieee80211_set_tx_power(struct wiphy *wiphy,
c8442118 2139 struct wireless_dev *wdev,
fa61cf70 2140 enum nl80211_tx_power_setting type, int mbm)
7643a2c3
JB
2141{
2142 struct ieee80211_local *local = wiphy_priv(wiphy);
1ea6f9c0 2143 struct ieee80211_sub_if_data *sdata;
db82d8a9
LB
2144 enum nl80211_tx_power_setting txp_type = type;
2145 bool update_txp_type = false;
7643a2c3 2146
1ea6f9c0
JB
2147 if (wdev) {
2148 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2149
2150 switch (type) {
2151 case NL80211_TX_POWER_AUTOMATIC:
2152 sdata->user_power_level = IEEE80211_UNSET_POWER_LEVEL;
db82d8a9 2153 txp_type = NL80211_TX_POWER_LIMITED;
1ea6f9c0
JB
2154 break;
2155 case NL80211_TX_POWER_LIMITED:
2156 case NL80211_TX_POWER_FIXED:
2157 if (mbm < 0 || (mbm % 100))
2158 return -EOPNOTSUPP;
2159 sdata->user_power_level = MBM_TO_DBM(mbm);
2160 break;
2161 }
2162
db82d8a9
LB
2163 if (txp_type != sdata->vif.bss_conf.txpower_type) {
2164 update_txp_type = true;
2165 sdata->vif.bss_conf.txpower_type = txp_type;
2166 }
2167
2168 ieee80211_recalc_txpower(sdata, update_txp_type);
1ea6f9c0
JB
2169
2170 return 0;
2171 }
55de908a 2172
7643a2c3 2173 switch (type) {
fa61cf70 2174 case NL80211_TX_POWER_AUTOMATIC:
1ea6f9c0 2175 local->user_power_level = IEEE80211_UNSET_POWER_LEVEL;
db82d8a9 2176 txp_type = NL80211_TX_POWER_LIMITED;
7643a2c3 2177 break;
fa61cf70 2178 case NL80211_TX_POWER_LIMITED:
fa61cf70
JO
2179 case NL80211_TX_POWER_FIXED:
2180 if (mbm < 0 || (mbm % 100))
2181 return -EOPNOTSUPP;
fa61cf70 2182 local->user_power_level = MBM_TO_DBM(mbm);
7643a2c3 2183 break;
7643a2c3
JB
2184 }
2185
1ea6f9c0 2186 mutex_lock(&local->iflist_mtx);
db82d8a9 2187 list_for_each_entry(sdata, &local->interfaces, list) {
1ea6f9c0 2188 sdata->user_power_level = local->user_power_level;
db82d8a9
LB
2189 if (txp_type != sdata->vif.bss_conf.txpower_type)
2190 update_txp_type = true;
2191 sdata->vif.bss_conf.txpower_type = txp_type;
2192 }
1ea6f9c0 2193 list_for_each_entry(sdata, &local->interfaces, list)
db82d8a9 2194 ieee80211_recalc_txpower(sdata, update_txp_type);
1ea6f9c0 2195 mutex_unlock(&local->iflist_mtx);
7643a2c3
JB
2196
2197 return 0;
2198}
2199
c8442118
JB
2200static int ieee80211_get_tx_power(struct wiphy *wiphy,
2201 struct wireless_dev *wdev,
2202 int *dbm)
7643a2c3
JB
2203{
2204 struct ieee80211_local *local = wiphy_priv(wiphy);
1ea6f9c0 2205 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
7643a2c3 2206
5b3dc42b
FF
2207 if (local->ops->get_txpower)
2208 return drv_get_txpower(local, sdata, dbm);
2209
1ea6f9c0
JB
2210 if (!local->use_chanctx)
2211 *dbm = local->hw.conf.power_level;
2212 else
2213 *dbm = sdata->vif.bss_conf.txpower;
7643a2c3 2214
7643a2c3
JB
2215 return 0;
2216}
2217
ab737a4f 2218static int ieee80211_set_wds_peer(struct wiphy *wiphy, struct net_device *dev,
388ac775 2219 const u8 *addr)
ab737a4f
JB
2220{
2221 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2222
2223 memcpy(&sdata->u.wds.remote_addr, addr, ETH_ALEN);
2224
2225 return 0;
2226}
2227
1f87f7d3
JB
2228static void ieee80211_rfkill_poll(struct wiphy *wiphy)
2229{
2230 struct ieee80211_local *local = wiphy_priv(wiphy);
2231
2232 drv_rfkill_poll(local);
2233}
2234
aff89a9b 2235#ifdef CONFIG_NL80211_TESTMODE
fc73f11f
DS
2236static int ieee80211_testmode_cmd(struct wiphy *wiphy,
2237 struct wireless_dev *wdev,
2238 void *data, int len)
aff89a9b
JB
2239{
2240 struct ieee80211_local *local = wiphy_priv(wiphy);
52981cd7 2241 struct ieee80211_vif *vif = NULL;
aff89a9b
JB
2242
2243 if (!local->ops->testmode_cmd)
2244 return -EOPNOTSUPP;
2245
52981cd7
DS
2246 if (wdev) {
2247 struct ieee80211_sub_if_data *sdata;
2248
2249 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2250 if (sdata->flags & IEEE80211_SDATA_IN_DRIVER)
2251 vif = &sdata->vif;
2252 }
2253
2254 return local->ops->testmode_cmd(&local->hw, vif, data, len);
aff89a9b 2255}
71063f0e
WYG
2256
2257static int ieee80211_testmode_dump(struct wiphy *wiphy,
2258 struct sk_buff *skb,
2259 struct netlink_callback *cb,
2260 void *data, int len)
2261{
2262 struct ieee80211_local *local = wiphy_priv(wiphy);
2263
2264 if (!local->ops->testmode_dump)
2265 return -EOPNOTSUPP;
2266
2267 return local->ops->testmode_dump(&local->hw, skb, cb, data, len);
2268}
aff89a9b
JB
2269#endif
2270
687da132
EG
2271int __ieee80211_request_smps_ap(struct ieee80211_sub_if_data *sdata,
2272 enum ieee80211_smps_mode smps_mode)
2273{
2274 struct sta_info *sta;
2275 enum ieee80211_smps_mode old_req;
2276 int i;
2277
2278 if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_AP))
2279 return -EINVAL;
2280
2281 if (sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT)
2282 return 0;
2283
2284 old_req = sdata->u.ap.req_smps;
2285 sdata->u.ap.req_smps = smps_mode;
2286
2287 /* AUTOMATIC doesn't mean much for AP - don't allow it */
2288 if (old_req == smps_mode ||
2289 smps_mode == IEEE80211_SMPS_AUTOMATIC)
2290 return 0;
2291
2292 /* If no associated stations, there's no need to do anything */
2293 if (!atomic_read(&sdata->u.ap.num_mcast_sta)) {
2294 sdata->smps_mode = smps_mode;
2295 ieee80211_queue_work(&sdata->local->hw, &sdata->recalc_smps);
2296 return 0;
2297 }
2298
2299 ht_dbg(sdata,
2300 "SMSP %d requested in AP mode, sending Action frame to %d stations\n",
2301 smps_mode, atomic_read(&sdata->u.ap.num_mcast_sta));
2302
2303 mutex_lock(&sdata->local->sta_mtx);
2304 for (i = 0; i < STA_HASH_SIZE; i++) {
2305 for (sta = rcu_dereference_protected(sdata->local->sta_hash[i],
2306 lockdep_is_held(&sdata->local->sta_mtx));
2307 sta;
2308 sta = rcu_dereference_protected(sta->hnext,
2309 lockdep_is_held(&sdata->local->sta_mtx))) {
2310 /*
2311 * Only stations associated to our AP and
2312 * associated VLANs
2313 */
2314 if (sta->sdata->bss != &sdata->u.ap)
2315 continue;
2316
2317 /* This station doesn't support MIMO - skip it */
2318 if (sta_info_tx_streams(sta) == 1)
2319 continue;
2320
2321 /*
2322 * Don't wake up a STA just to send the action frame
2323 * unless we are getting more restrictive.
2324 */
2325 if (test_sta_flag(sta, WLAN_STA_PS_STA) &&
2326 !ieee80211_smps_is_restrictive(sta->known_smps_mode,
2327 smps_mode)) {
2328 ht_dbg(sdata,
2329 "Won't send SMPS to sleeping STA %pM\n",
2330 sta->sta.addr);
2331 continue;
2332 }
2333
2334 /*
2335 * If the STA is not authorized, wait until it gets
2336 * authorized and the action frame will be sent then.
2337 */
2338 if (!test_sta_flag(sta, WLAN_STA_AUTHORIZED))
2339 continue;
2340
2341 ht_dbg(sdata, "Sending SMPS to %pM\n", sta->sta.addr);
2342 ieee80211_send_smps_action(sdata, smps_mode,
2343 sta->sta.addr,
2344 sdata->vif.bss_conf.bssid);
2345 }
2346 }
2347 mutex_unlock(&sdata->local->sta_mtx);
2348
2349 sdata->smps_mode = smps_mode;
2350 ieee80211_queue_work(&sdata->local->hw, &sdata->recalc_smps);
2351
2352 return 0;
2353}
2354
2355int __ieee80211_request_smps_mgd(struct ieee80211_sub_if_data *sdata,
2356 enum ieee80211_smps_mode smps_mode)
0f78231b
JB
2357{
2358 const u8 *ap;
2359 enum ieee80211_smps_mode old_req;
2360 int err;
2361
8d61ffa5 2362 lockdep_assert_held(&sdata->wdev.mtx);
243e6df4 2363
687da132
EG
2364 if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_STATION))
2365 return -EINVAL;
2366
0f78231b
JB
2367 old_req = sdata->u.mgd.req_smps;
2368 sdata->u.mgd.req_smps = smps_mode;
2369
2370 if (old_req == smps_mode &&
2371 smps_mode != IEEE80211_SMPS_AUTOMATIC)
2372 return 0;
2373
2374 /*
2375 * If not associated, or current association is not an HT
04ecd257
JB
2376 * association, there's no need to do anything, just store
2377 * the new value until we associate.
0f78231b
JB
2378 */
2379 if (!sdata->u.mgd.associated ||
4bf88530 2380 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT)
0f78231b 2381 return 0;
0f78231b 2382
0c1ad2ca 2383 ap = sdata->u.mgd.associated->bssid;
0f78231b
JB
2384
2385 if (smps_mode == IEEE80211_SMPS_AUTOMATIC) {
2386 if (sdata->u.mgd.powersave)
2387 smps_mode = IEEE80211_SMPS_DYNAMIC;
2388 else
2389 smps_mode = IEEE80211_SMPS_OFF;
2390 }
2391
2392 /* send SM PS frame to AP */
2393 err = ieee80211_send_smps_action(sdata, smps_mode,
2394 ap, ap);
2395 if (err)
2396 sdata->u.mgd.req_smps = old_req;
2397
2398 return err;
2399}
2400
bc92afd9
JB
2401static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev,
2402 bool enabled, int timeout)
2403{
2404 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2405 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
bc92afd9 2406
2d3db210 2407 if (sdata->vif.type != NL80211_IFTYPE_STATION)
e5de30c9
BP
2408 return -EOPNOTSUPP;
2409
bc92afd9
JB
2410 if (!(local->hw.flags & IEEE80211_HW_SUPPORTS_PS))
2411 return -EOPNOTSUPP;
2412
2413 if (enabled == sdata->u.mgd.powersave &&
ff616381 2414 timeout == local->dynamic_ps_forced_timeout)
bc92afd9
JB
2415 return 0;
2416
2417 sdata->u.mgd.powersave = enabled;
ff616381 2418 local->dynamic_ps_forced_timeout = timeout;
bc92afd9 2419
0f78231b 2420 /* no change, but if automatic follow powersave */
ed405be5 2421 sdata_lock(sdata);
687da132 2422 __ieee80211_request_smps_mgd(sdata, sdata->u.mgd.req_smps);
ed405be5 2423 sdata_unlock(sdata);
0f78231b 2424
bc92afd9
JB
2425 if (local->hw.flags & IEEE80211_HW_SUPPORTS_DYNAMIC_PS)
2426 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2427
2428 ieee80211_recalc_ps(local, -1);
ab095877 2429 ieee80211_recalc_ps_vif(sdata);
bc92afd9
JB
2430
2431 return 0;
2432}
2433
a97c13c3
JO
2434static int ieee80211_set_cqm_rssi_config(struct wiphy *wiphy,
2435 struct net_device *dev,
2436 s32 rssi_thold, u32 rssi_hyst)
2437{
2438 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
a97c13c3
JO
2439 struct ieee80211_vif *vif = &sdata->vif;
2440 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
2441
a97c13c3
JO
2442 if (rssi_thold == bss_conf->cqm_rssi_thold &&
2443 rssi_hyst == bss_conf->cqm_rssi_hyst)
2444 return 0;
2445
2446 bss_conf->cqm_rssi_thold = rssi_thold;
2447 bss_conf->cqm_rssi_hyst = rssi_hyst;
2448
2449 /* tell the driver upon association, unless already associated */
ea086359
JB
2450 if (sdata->u.mgd.associated &&
2451 sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)
a97c13c3
JO
2452 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_CQM);
2453
2454 return 0;
2455}
2456
9930380f
JB
2457static int ieee80211_set_bitrate_mask(struct wiphy *wiphy,
2458 struct net_device *dev,
2459 const u8 *addr,
2460 const struct cfg80211_bitrate_mask *mask)
2461{
2462 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2463 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
bdbfd6b5 2464 int i, ret;
2c7e6bc9 2465
554a43d5
EP
2466 if (!ieee80211_sdata_running(sdata))
2467 return -ENETDOWN;
2468
bdbfd6b5
SM
2469 if (local->hw.flags & IEEE80211_HW_HAS_RATE_CONTROL) {
2470 ret = drv_set_bitrate_mask(local, sdata, mask);
2471 if (ret)
2472 return ret;
2473 }
9930380f 2474
19468413 2475 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
2ffbe6d3
FF
2476 struct ieee80211_supported_band *sband = wiphy->bands[i];
2477 int j;
2478
37eb0b16 2479 sdata->rc_rateidx_mask[i] = mask->control[i].legacy;
d1e33e65
JD
2480 memcpy(sdata->rc_rateidx_mcs_mask[i], mask->control[i].ht_mcs,
2481 sizeof(mask->control[i].ht_mcs));
2ffbe6d3
FF
2482
2483 sdata->rc_has_mcs_mask[i] = false;
2484 if (!sband)
2485 continue;
2486
2487 for (j = 0; j < IEEE80211_HT_MCS_MASK_LEN; j++)
2488 if (~sdata->rc_rateidx_mcs_mask[i][j]) {
2489 sdata->rc_has_mcs_mask[i] = true;
2490 break;
2491 }
19468413 2492 }
9930380f 2493
37eb0b16 2494 return 0;
9930380f
JB
2495}
2496
eaa336b0
EP
2497static bool ieee80211_coalesce_started_roc(struct ieee80211_local *local,
2498 struct ieee80211_roc_work *new_roc,
2499 struct ieee80211_roc_work *cur_roc)
2500{
2501 unsigned long j = jiffies;
2502 unsigned long cur_roc_end = cur_roc->hw_start_time +
2503 msecs_to_jiffies(cur_roc->duration);
2504 struct ieee80211_roc_work *next_roc;
2505 int new_dur;
2506
2507 if (WARN_ON(!cur_roc->started || !cur_roc->hw_begun))
2508 return false;
2509
2510 if (time_after(j + IEEE80211_ROC_MIN_LEFT, cur_roc_end))
2511 return false;
2512
2513 ieee80211_handle_roc_started(new_roc);
2514
2515 new_dur = new_roc->duration - jiffies_to_msecs(cur_roc_end - j);
2516
2517 /* cur_roc is long enough - add new_roc to the dependents list. */
2518 if (new_dur <= 0) {
2519 list_add_tail(&new_roc->list, &cur_roc->dependents);
2520 return true;
2521 }
2522
2523 new_roc->duration = new_dur;
2524
2525 /*
2526 * if cur_roc was already coalesced before, we might
2527 * want to extend the next roc instead of adding
2528 * a new one.
2529 */
2530 next_roc = list_entry(cur_roc->list.next,
2531 struct ieee80211_roc_work, list);
2532 if (&next_roc->list != &local->roc_list &&
2533 next_roc->chan == new_roc->chan &&
2534 next_roc->sdata == new_roc->sdata &&
2535 !WARN_ON(next_roc->started)) {
2536 list_add_tail(&new_roc->list, &next_roc->dependents);
2537 next_roc->duration = max(next_roc->duration,
2538 new_roc->duration);
2539 next_roc->type = max(next_roc->type, new_roc->type);
2540 return true;
2541 }
2542
2543 /* add right after cur_roc */
2544 list_add(&new_roc->list, &cur_roc->list);
2545
2546 return true;
2547}
2548
2eb278e0
JB
2549static int ieee80211_start_roc_work(struct ieee80211_local *local,
2550 struct ieee80211_sub_if_data *sdata,
2551 struct ieee80211_channel *channel,
2eb278e0 2552 unsigned int duration, u64 *cookie,
d339d5ca
IP
2553 struct sk_buff *txskb,
2554 enum ieee80211_roc_type type)
2eb278e0
JB
2555{
2556 struct ieee80211_roc_work *roc, *tmp;
2557 bool queued = false;
21f83589 2558 int ret;
21f83589
JB
2559
2560 lockdep_assert_held(&local->mtx);
2561
fe57d9f5
JB
2562 if (local->use_chanctx && !local->ops->remain_on_channel)
2563 return -EOPNOTSUPP;
2564
2eb278e0
JB
2565 roc = kzalloc(sizeof(*roc), GFP_KERNEL);
2566 if (!roc)
2567 return -ENOMEM;
2568
2fae062e
IP
2569 /*
2570 * If the duration is zero, then the driver
2571 * wouldn't actually do anything. Set it to
2572 * 10 for now.
2573 *
2574 * TODO: cancel the off-channel operation
2575 * when we get the SKB's TX status and
2576 * the wait time was zero before.
2577 */
2578 if (!duration)
2579 duration = 10;
2580
2eb278e0 2581 roc->chan = channel;
2eb278e0
JB
2582 roc->duration = duration;
2583 roc->req_duration = duration;
2584 roc->frame = txskb;
d339d5ca 2585 roc->type = type;
2eb278e0
JB
2586 roc->mgmt_tx_cookie = (unsigned long)txskb;
2587 roc->sdata = sdata;
2588 INIT_DELAYED_WORK(&roc->work, ieee80211_sw_roc_work);
2589 INIT_LIST_HEAD(&roc->dependents);
2590
2f617435
EP
2591 /*
2592 * cookie is either the roc cookie (for normal roc)
2593 * or the SKB (for mgmt TX)
2594 */
2595 if (!txskb) {
2596 /* local->mtx protects this */
2597 local->roc_cookie_counter++;
2598 roc->cookie = local->roc_cookie_counter;
2599 /* wow, you wrapped 64 bits ... more likely a bug */
2600 if (WARN_ON(roc->cookie == 0)) {
2601 roc->cookie = 1;
2602 local->roc_cookie_counter++;
2603 }
2604 *cookie = roc->cookie;
2605 } else {
2606 *cookie = (unsigned long)txskb;
2607 }
2608
2eb278e0 2609 /* if there's one pending or we're scanning, queue this one */
164eb02d 2610 if (!list_empty(&local->roc_list) ||
5cbc95a7 2611 local->scanning || ieee80211_is_radar_required(local))
2eb278e0
JB
2612 goto out_check_combine;
2613
2614 /* if not HW assist, just queue & schedule work */
2615 if (!local->ops->remain_on_channel) {
2616 ieee80211_queue_delayed_work(&local->hw, &roc->work, 0);
2617 goto out_queue;
2618 }
2619
2620 /* otherwise actually kick it off here (for error handling) */
2621
d339d5ca 2622 ret = drv_remain_on_channel(local, sdata, channel, duration, type);
21f83589 2623 if (ret) {
2eb278e0
JB
2624 kfree(roc);
2625 return ret;
21f83589
JB
2626 }
2627
2eb278e0
JB
2628 roc->started = true;
2629 goto out_queue;
2630
2631 out_check_combine:
2632 list_for_each_entry(tmp, &local->roc_list, list) {
42d97a59 2633 if (tmp->chan != channel || tmp->sdata != sdata)
2eb278e0
JB
2634 continue;
2635
2636 /*
2637 * Extend this ROC if possible:
2638 *
2639 * If it hasn't started yet, just increase the duration
2640 * and add the new one to the list of dependents.
d339d5ca
IP
2641 * If the type of the new ROC has higher priority, modify the
2642 * type of the previous one to match that of the new one.
2eb278e0
JB
2643 */
2644 if (!tmp->started) {
2645 list_add_tail(&roc->list, &tmp->dependents);
2646 tmp->duration = max(tmp->duration, roc->duration);
d339d5ca 2647 tmp->type = max(tmp->type, roc->type);
2eb278e0
JB
2648 queued = true;
2649 break;
2650 }
2651
2652 /* If it has already started, it's more difficult ... */
2653 if (local->ops->remain_on_channel) {
2eb278e0
JB
2654 /*
2655 * In the offloaded ROC case, if it hasn't begun, add
2656 * this new one to the dependent list to be handled
d339d5ca 2657 * when the master one begins. If it has begun,
2eb278e0
JB
2658 * check that there's still a minimum time left and
2659 * if so, start this one, transmitting the frame, but
d339d5ca 2660 * add it to the list directly after this one with
2eb278e0
JB
2661 * a reduced time so we'll ask the driver to execute
2662 * it right after finishing the previous one, in the
2663 * hope that it'll also be executed right afterwards,
2664 * effectively extending the old one.
2665 * If there's no minimum time left, just add it to the
2666 * normal list.
d339d5ca
IP
2667 * TODO: the ROC type is ignored here, assuming that it
2668 * is better to immediately use the current ROC.
2eb278e0
JB
2669 */
2670 if (!tmp->hw_begun) {
2671 list_add_tail(&roc->list, &tmp->dependents);
2672 queued = true;
2673 break;
2674 }
2675
eaa336b0 2676 if (ieee80211_coalesce_started_roc(local, roc, tmp))
2eb278e0 2677 queued = true;
2eb278e0
JB
2678 } else if (del_timer_sync(&tmp->work.timer)) {
2679 unsigned long new_end;
2680
2681 /*
2682 * In the software ROC case, cancel the timer, if
2683 * that fails then the finish work is already
2684 * queued/pending and thus we queue the new ROC
2685 * normally, if that succeeds then we can extend
2686 * the timer duration and TX the frame (if any.)
2687 */
2688
2689 list_add_tail(&roc->list, &tmp->dependents);
2690 queued = true;
2691
2692 new_end = jiffies + msecs_to_jiffies(roc->duration);
2693
2694 /* ok, it was started & we canceled timer */
2695 if (time_after(new_end, tmp->work.timer.expires))
2696 mod_timer(&tmp->work.timer, new_end);
2697 else
2698 add_timer(&tmp->work.timer);
2699
2700 ieee80211_handle_roc_started(roc);
2701 }
2702 break;
2703 }
2704
2705 out_queue:
2706 if (!queued)
2707 list_add_tail(&roc->list, &local->roc_list);
2708
2eb278e0 2709 return 0;
21f83589
JB
2710}
2711
b8bc4b0a 2712static int ieee80211_remain_on_channel(struct wiphy *wiphy,
71bbc994 2713 struct wireless_dev *wdev,
b8bc4b0a 2714 struct ieee80211_channel *chan,
b8bc4b0a
JB
2715 unsigned int duration,
2716 u64 *cookie)
2717{
71bbc994 2718 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
21f83589 2719 struct ieee80211_local *local = sdata->local;
2eb278e0 2720 int ret;
21f83589 2721
2eb278e0 2722 mutex_lock(&local->mtx);
42d97a59 2723 ret = ieee80211_start_roc_work(local, sdata, chan,
d339d5ca
IP
2724 duration, cookie, NULL,
2725 IEEE80211_ROC_TYPE_NORMAL);
2eb278e0 2726 mutex_unlock(&local->mtx);
b8bc4b0a 2727
2eb278e0 2728 return ret;
b8bc4b0a
JB
2729}
2730
2eb278e0
JB
2731static int ieee80211_cancel_roc(struct ieee80211_local *local,
2732 u64 cookie, bool mgmt_tx)
21f83589 2733{
2eb278e0 2734 struct ieee80211_roc_work *roc, *tmp, *found = NULL;
21f83589
JB
2735 int ret;
2736
2eb278e0
JB
2737 mutex_lock(&local->mtx);
2738 list_for_each_entry_safe(roc, tmp, &local->roc_list, list) {
e979e33c
JB
2739 struct ieee80211_roc_work *dep, *tmp2;
2740
2741 list_for_each_entry_safe(dep, tmp2, &roc->dependents, list) {
50febf6a 2742 if (!mgmt_tx && dep->cookie != cookie)
e979e33c
JB
2743 continue;
2744 else if (mgmt_tx && dep->mgmt_tx_cookie != cookie)
2745 continue;
2746 /* found dependent item -- just remove it */
2747 list_del(&dep->list);
2748 mutex_unlock(&local->mtx);
2749
3fbd45ca 2750 ieee80211_roc_notify_destroy(dep, true);
e979e33c
JB
2751 return 0;
2752 }
2753
50febf6a 2754 if (!mgmt_tx && roc->cookie != cookie)
2eb278e0
JB
2755 continue;
2756 else if (mgmt_tx && roc->mgmt_tx_cookie != cookie)
2757 continue;
21f83589 2758
2eb278e0
JB
2759 found = roc;
2760 break;
2761 }
21f83589 2762
2eb278e0
JB
2763 if (!found) {
2764 mutex_unlock(&local->mtx);
2765 return -ENOENT;
2766 }
21f83589 2767
e979e33c
JB
2768 /*
2769 * We found the item to cancel, so do that. Note that it
2770 * may have dependents, which we also cancel (and send
2771 * the expired signal for.) Not doing so would be quite
2772 * tricky here, but we may need to fix it later.
2773 */
2774
2eb278e0
JB
2775 if (local->ops->remain_on_channel) {
2776 if (found->started) {
2777 ret = drv_cancel_remain_on_channel(local);
2778 if (WARN_ON_ONCE(ret)) {
2779 mutex_unlock(&local->mtx);
2780 return ret;
2781 }
2782 }
21f83589 2783
2eb278e0 2784 list_del(&found->list);
21f83589 2785
0f6b3f59
JB
2786 if (found->started)
2787 ieee80211_start_next_roc(local);
2eb278e0 2788 mutex_unlock(&local->mtx);
21f83589 2789
3fbd45ca 2790 ieee80211_roc_notify_destroy(found, true);
2eb278e0
JB
2791 } else {
2792 /* work may be pending so use it all the time */
2793 found->abort = true;
2794 ieee80211_queue_delayed_work(&local->hw, &found->work, 0);
21f83589 2795
21f83589
JB
2796 mutex_unlock(&local->mtx);
2797
2eb278e0
JB
2798 /* work will clean up etc */
2799 flush_delayed_work(&found->work);
3fbd45ca
JB
2800 WARN_ON(!found->to_be_freed);
2801 kfree(found);
21f83589 2802 }
b8bc4b0a 2803
2eb278e0 2804 return 0;
b8bc4b0a
JB
2805}
2806
2eb278e0 2807static int ieee80211_cancel_remain_on_channel(struct wiphy *wiphy,
71bbc994 2808 struct wireless_dev *wdev,
2eb278e0 2809 u64 cookie)
f30221e4 2810{
71bbc994 2811 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2eb278e0 2812 struct ieee80211_local *local = sdata->local;
f30221e4 2813
2eb278e0 2814 return ieee80211_cancel_roc(local, cookie, false);
f30221e4
JB
2815}
2816
164eb02d
SW
2817static int ieee80211_start_radar_detection(struct wiphy *wiphy,
2818 struct net_device *dev,
31559f35
JD
2819 struct cfg80211_chan_def *chandef,
2820 u32 cac_time_ms)
164eb02d
SW
2821{
2822 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2823 struct ieee80211_local *local = sdata->local;
164eb02d
SW
2824 int err;
2825
34a3740d
JB
2826 mutex_lock(&local->mtx);
2827 if (!list_empty(&local->roc_list) || local->scanning) {
2828 err = -EBUSY;
2829 goto out_unlock;
2830 }
164eb02d
SW
2831
2832 /* whatever, but channel contexts should not complain about that one */
2833 sdata->smps_mode = IEEE80211_SMPS_OFF;
2834 sdata->needed_rx_chains = local->rx_chains;
164eb02d 2835
164eb02d
SW
2836 err = ieee80211_vif_use_channel(sdata, chandef,
2837 IEEE80211_CHANCTX_SHARED);
164eb02d 2838 if (err)
34a3740d 2839 goto out_unlock;
164eb02d 2840
164eb02d 2841 ieee80211_queue_delayed_work(&sdata->local->hw,
31559f35
JD
2842 &sdata->dfs_cac_timer_work,
2843 msecs_to_jiffies(cac_time_ms));
164eb02d 2844
34a3740d
JB
2845 out_unlock:
2846 mutex_unlock(&local->mtx);
2847 return err;
164eb02d
SW
2848}
2849
73da7d5b
SW
2850static struct cfg80211_beacon_data *
2851cfg80211_beacon_dup(struct cfg80211_beacon_data *beacon)
2852{
2853 struct cfg80211_beacon_data *new_beacon;
2854 u8 *pos;
2855 int len;
2856
2857 len = beacon->head_len + beacon->tail_len + beacon->beacon_ies_len +
2858 beacon->proberesp_ies_len + beacon->assocresp_ies_len +
2859 beacon->probe_resp_len;
2860
2861 new_beacon = kzalloc(sizeof(*new_beacon) + len, GFP_KERNEL);
2862 if (!new_beacon)
2863 return NULL;
2864
2865 pos = (u8 *)(new_beacon + 1);
2866 if (beacon->head_len) {
2867 new_beacon->head_len = beacon->head_len;
2868 new_beacon->head = pos;
2869 memcpy(pos, beacon->head, beacon->head_len);
2870 pos += beacon->head_len;
2871 }
2872 if (beacon->tail_len) {
2873 new_beacon->tail_len = beacon->tail_len;
2874 new_beacon->tail = pos;
2875 memcpy(pos, beacon->tail, beacon->tail_len);
2876 pos += beacon->tail_len;
2877 }
2878 if (beacon->beacon_ies_len) {
2879 new_beacon->beacon_ies_len = beacon->beacon_ies_len;
2880 new_beacon->beacon_ies = pos;
2881 memcpy(pos, beacon->beacon_ies, beacon->beacon_ies_len);
2882 pos += beacon->beacon_ies_len;
2883 }
2884 if (beacon->proberesp_ies_len) {
2885 new_beacon->proberesp_ies_len = beacon->proberesp_ies_len;
2886 new_beacon->proberesp_ies = pos;
2887 memcpy(pos, beacon->proberesp_ies, beacon->proberesp_ies_len);
2888 pos += beacon->proberesp_ies_len;
2889 }
2890 if (beacon->assocresp_ies_len) {
2891 new_beacon->assocresp_ies_len = beacon->assocresp_ies_len;
2892 new_beacon->assocresp_ies = pos;
2893 memcpy(pos, beacon->assocresp_ies, beacon->assocresp_ies_len);
2894 pos += beacon->assocresp_ies_len;
2895 }
2896 if (beacon->probe_resp_len) {
2897 new_beacon->probe_resp_len = beacon->probe_resp_len;
2898 beacon->probe_resp = pos;
2899 memcpy(pos, beacon->probe_resp, beacon->probe_resp_len);
2900 pos += beacon->probe_resp_len;
2901 }
2902
2903 return new_beacon;
2904}
2905
66e01cf9 2906void ieee80211_csa_finish(struct ieee80211_vif *vif)
73da7d5b 2907{
66e01cf9 2908 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
73da7d5b 2909
66e01cf9
LC
2910 ieee80211_queue_work(&sdata->local->hw,
2911 &sdata->csa_finalize_work);
2912}
2913EXPORT_SYMBOL(ieee80211_csa_finish);
e487eaeb 2914
66199506
MK
2915static int ieee80211_set_after_csa_beacon(struct ieee80211_sub_if_data *sdata,
2916 u32 *changed)
66e01cf9 2917{
66199506 2918 int err;
7578d575 2919
cd7760e6
SW
2920 switch (sdata->vif.type) {
2921 case NL80211_IFTYPE_AP:
af296bdb
MK
2922 err = ieee80211_assign_beacon(sdata, sdata->u.ap.next_beacon,
2923 NULL);
97518af1
MK
2924 kfree(sdata->u.ap.next_beacon);
2925 sdata->u.ap.next_beacon = NULL;
2926
cd7760e6 2927 if (err < 0)
66199506
MK
2928 return err;
2929 *changed |= err;
cd7760e6
SW
2930 break;
2931 case NL80211_IFTYPE_ADHOC:
faf046e7
MK
2932 err = ieee80211_ibss_finish_csa(sdata);
2933 if (err < 0)
66199506
MK
2934 return err;
2935 *changed |= err;
cd7760e6 2936 break;
b8456a14
CYY
2937#ifdef CONFIG_MAC80211_MESH
2938 case NL80211_IFTYPE_MESH_POINT:
2939 err = ieee80211_mesh_finish_csa(sdata);
2940 if (err < 0)
66199506
MK
2941 return err;
2942 *changed |= err;
b8456a14
CYY
2943 break;
2944#endif
cd7760e6
SW
2945 default:
2946 WARN_ON(1);
66199506
MK
2947 return -EINVAL;
2948 }
2949
2950 return 0;
2951}
2952
cf8767dd 2953static int __ieee80211_csa_finalize(struct ieee80211_sub_if_data *sdata)
66199506
MK
2954{
2955 struct ieee80211_local *local = sdata->local;
2956 u32 changed = 0;
2957 int err;
2958
2959 sdata_assert_lock(sdata);
2960 lockdep_assert_held(&local->mtx);
03078de4 2961 lockdep_assert_held(&local->chanctx_mtx);
66199506 2962
03078de4
MK
2963 /*
2964 * using reservation isn't immediate as it may be deferred until later
2965 * with multi-vif. once reservation is complete it will re-schedule the
2966 * work with no reserved_chanctx so verify chandef to check if it
2967 * completed successfully
2968 */
66199506 2969
03078de4
MK
2970 if (sdata->reserved_chanctx) {
2971 /*
2972 * with multi-vif csa driver may call ieee80211_csa_finish()
2973 * many times while waiting for other interfaces to use their
2974 * reservations
2975 */
2976 if (sdata->reserved_ready)
2977 return 0;
2978
408b18ab 2979 return ieee80211_vif_use_reserved_context(sdata);
cd7760e6 2980 }
73da7d5b 2981
03078de4
MK
2982 if (!cfg80211_chandef_identical(&sdata->vif.bss_conf.chandef,
2983 &sdata->csa_chandef))
2984 return -EINVAL;
2985
66199506
MK
2986 sdata->vif.csa_active = false;
2987
2988 err = ieee80211_set_after_csa_beacon(sdata, &changed);
2989 if (err)
cf8767dd 2990 return err;
faf046e7 2991
66199506 2992 ieee80211_bss_info_change_notify(sdata, changed);
59af6928 2993
a46992b4
LC
2994 if (sdata->csa_block_tx) {
2995 ieee80211_wake_vif_queues(local, sdata,
2996 IEEE80211_QUEUE_STOP_REASON_CSA);
2997 sdata->csa_block_tx = false;
2998 }
cf8767dd 2999
f1d65583
LC
3000 err = drv_post_channel_switch(sdata);
3001 if (err)
3002 return err;
3003
3004 cfg80211_ch_switch_notify(sdata->dev, &sdata->csa_chandef);
3005
cf8767dd
MK
3006 return 0;
3007}
3008
3009static void ieee80211_csa_finalize(struct ieee80211_sub_if_data *sdata)
3010{
3011 if (__ieee80211_csa_finalize(sdata)) {
3012 sdata_info(sdata, "failed to finalize CSA, disconnecting\n");
3013 cfg80211_stop_iface(sdata->local->hw.wiphy, &sdata->wdev,
3014 GFP_KERNEL);
3015 }
66e01cf9
LC
3016}
3017
3018void ieee80211_csa_finalize_work(struct work_struct *work)
3019{
3020 struct ieee80211_sub_if_data *sdata =
3021 container_of(work, struct ieee80211_sub_if_data,
3022 csa_finalize_work);
59af6928 3023 struct ieee80211_local *local = sdata->local;
66e01cf9
LC
3024
3025 sdata_lock(sdata);
59af6928 3026 mutex_lock(&local->mtx);
03078de4 3027 mutex_lock(&local->chanctx_mtx);
59af6928 3028
66e01cf9
LC
3029 /* AP might have been stopped while waiting for the lock. */
3030 if (!sdata->vif.csa_active)
3031 goto unlock;
3032
3033 if (!ieee80211_sdata_running(sdata))
3034 goto unlock;
3035
3036 ieee80211_csa_finalize(sdata);
e487eaeb
SW
3037
3038unlock:
03078de4 3039 mutex_unlock(&local->chanctx_mtx);
59af6928 3040 mutex_unlock(&local->mtx);
e487eaeb 3041 sdata_unlock(sdata);
73da7d5b
SW
3042}
3043
37fa2bdd
MK
3044static int ieee80211_set_csa_beacon(struct ieee80211_sub_if_data *sdata,
3045 struct cfg80211_csa_settings *params,
3046 u32 *changed)
73da7d5b 3047{
af296bdb 3048 struct ieee80211_csa_settings csa = {};
37fa2bdd 3049 int err;
73da7d5b 3050
73da7d5b
SW
3051 switch (sdata->vif.type) {
3052 case NL80211_IFTYPE_AP:
cd7760e6
SW
3053 sdata->u.ap.next_beacon =
3054 cfg80211_beacon_dup(&params->beacon_after);
3055 if (!sdata->u.ap.next_beacon)
3056 return -ENOMEM;
3057
66e01cf9
LC
3058 /*
3059 * With a count of 0, we don't have to wait for any
3060 * TBTT before switching, so complete the CSA
3061 * immediately. In theory, with a count == 1 we
3062 * should delay the switch until just before the next
3063 * TBTT, but that would complicate things so we switch
3064 * immediately too. If we would delay the switch
3065 * until the next TBTT, we would have to set the probe
3066 * response here.
3067 *
3068 * TODO: A channel switch with count <= 1 without
3069 * sending a CSA action frame is kind of useless,
3070 * because the clients won't know we're changing
3071 * channels. The action frame must be implemented
3072 * either here or in the userspace.
3073 */
3074 if (params->count <= 1)
3075 break;
3076
0d06d9ba
AO
3077 if ((params->n_counter_offsets_beacon >
3078 IEEE80211_MAX_CSA_COUNTERS_NUM) ||
3079 (params->n_counter_offsets_presp >
3080 IEEE80211_MAX_CSA_COUNTERS_NUM))
3081 return -EINVAL;
9a774c78 3082
af296bdb
MK
3083 csa.counter_offsets_beacon = params->counter_offsets_beacon;
3084 csa.counter_offsets_presp = params->counter_offsets_presp;
3085 csa.n_counter_offsets_beacon = params->n_counter_offsets_beacon;
3086 csa.n_counter_offsets_presp = params->n_counter_offsets_presp;
3087 csa.count = params->count;
9a774c78 3088
af296bdb 3089 err = ieee80211_assign_beacon(sdata, &params->beacon_csa, &csa);
cd7760e6
SW
3090 if (err < 0) {
3091 kfree(sdata->u.ap.next_beacon);
3092 return err;
3093 }
37fa2bdd 3094 *changed |= err;
66e01cf9 3095
cd7760e6
SW
3096 break;
3097 case NL80211_IFTYPE_ADHOC:
3098 if (!sdata->vif.bss_conf.ibss_joined)
3099 return -EINVAL;
3100
3101 if (params->chandef.width != sdata->u.ibss.chandef.width)
3102 return -EINVAL;
3103
3104 switch (params->chandef.width) {
3105 case NL80211_CHAN_WIDTH_40:
3106 if (cfg80211_get_chandef_type(&params->chandef) !=
3107 cfg80211_get_chandef_type(&sdata->u.ibss.chandef))
3108 return -EINVAL;
3109 case NL80211_CHAN_WIDTH_5:
3110 case NL80211_CHAN_WIDTH_10:
3111 case NL80211_CHAN_WIDTH_20_NOHT:
3112 case NL80211_CHAN_WIDTH_20:
3113 break;
3114 default:
3115 return -EINVAL;
3116 }
3117
3118 /* changes into another band are not supported */
3119 if (sdata->u.ibss.chandef.chan->band !=
3120 params->chandef.chan->band)
3121 return -EINVAL;
3122
66e01cf9
LC
3123 /* see comments in the NL80211_IFTYPE_AP block */
3124 if (params->count > 1) {
3125 err = ieee80211_ibss_csa_beacon(sdata, params);
3126 if (err < 0)
3127 return err;
37fa2bdd 3128 *changed |= err;
66e01cf9
LC
3129 }
3130
3131 ieee80211_send_action_csa(sdata, params);
3132
73da7d5b 3133 break;
c6da674a 3134#ifdef CONFIG_MAC80211_MESH
37fa2bdd
MK
3135 case NL80211_IFTYPE_MESH_POINT: {
3136 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
c6da674a 3137
c6da674a
CYY
3138 if (params->chandef.width != sdata->vif.bss_conf.chandef.width)
3139 return -EINVAL;
3140
3141 /* changes into another band are not supported */
3142 if (sdata->vif.bss_conf.chandef.chan->band !=
3143 params->chandef.chan->band)
3144 return -EINVAL;
3145
c782bf8c 3146 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_NONE) {
0cb4d4dc 3147 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_INIT;
c782bf8c
CYY
3148 if (!ifmsh->pre_value)
3149 ifmsh->pre_value = 1;
3150 else
3151 ifmsh->pre_value++;
3152 }
0cb4d4dc 3153
66e01cf9
LC
3154 /* see comments in the NL80211_IFTYPE_AP block */
3155 if (params->count > 1) {
3156 err = ieee80211_mesh_csa_beacon(sdata, params);
3157 if (err < 0) {
3158 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_NONE;
3159 return err;
3160 }
37fa2bdd 3161 *changed |= err;
3f718fd8 3162 }
66e01cf9
LC
3163
3164 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_INIT)
3165 ieee80211_send_action_csa(sdata, params);
3166
c6da674a 3167 break;
37fa2bdd 3168 }
c6da674a 3169#endif
73da7d5b
SW
3170 default:
3171 return -EOPNOTSUPP;
3172 }
3173
37fa2bdd
MK
3174 return 0;
3175}
3176
f29f58a9
LC
3177static int
3178__ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev,
3179 struct cfg80211_csa_settings *params)
37fa2bdd
MK
3180{
3181 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3182 struct ieee80211_local *local = sdata->local;
6d027bcc 3183 struct ieee80211_channel_switch ch_switch;
2b32713d 3184 struct ieee80211_chanctx_conf *conf;
37fa2bdd 3185 struct ieee80211_chanctx *chanctx;
b08cc24e
JB
3186 u32 changed = 0;
3187 int err;
37fa2bdd
MK
3188
3189 sdata_assert_lock(sdata);
59af6928 3190 lockdep_assert_held(&local->mtx);
37fa2bdd
MK
3191
3192 if (!list_empty(&local->roc_list) || local->scanning)
3193 return -EBUSY;
3194
3195 if (sdata->wdev.cac_started)
3196 return -EBUSY;
3197
3198 if (cfg80211_chandef_identical(&params->chandef,
3199 &sdata->vif.bss_conf.chandef))
3200 return -EINVAL;
3201
03078de4
MK
3202 /* don't allow another channel switch if one is already active. */
3203 if (sdata->vif.csa_active)
3204 return -EBUSY;
3205
2b32713d
MK
3206 mutex_lock(&local->chanctx_mtx);
3207 conf = rcu_dereference_protected(sdata->vif.chanctx_conf,
3208 lockdep_is_held(&local->chanctx_mtx));
3209 if (!conf) {
03078de4
MK
3210 err = -EBUSY;
3211 goto out;
37fa2bdd
MK
3212 }
3213
2b32713d 3214 chanctx = container_of(conf, struct ieee80211_chanctx, conf);
03078de4
MK
3215 if (!chanctx) {
3216 err = -EBUSY;
3217 goto out;
37fa2bdd 3218 }
37fa2bdd 3219
000baa5d
LC
3220 ch_switch.timestamp = 0;
3221 ch_switch.device_timestamp = 0;
3222 ch_switch.block_tx = params->block_tx;
3223 ch_switch.chandef = params->chandef;
3224 ch_switch.count = params->count;
3225
6d027bcc
LC
3226 err = drv_pre_channel_switch(sdata, &ch_switch);
3227 if (err)
3228 goto out;
3229
03078de4
MK
3230 err = ieee80211_vif_reserve_chanctx(sdata, &params->chandef,
3231 chanctx->mode,
3232 params->radar_required);
3233 if (err)
3234 goto out;
37fa2bdd 3235
03078de4
MK
3236 /* if reservation is invalid then this will fail */
3237 err = ieee80211_check_combinations(sdata, NULL, chanctx->mode, 0);
3238 if (err) {
3239 ieee80211_vif_unreserve_chanctx(sdata);
3240 goto out;
3241 }
37fa2bdd
MK
3242
3243 err = ieee80211_set_csa_beacon(sdata, params, &changed);
03078de4
MK
3244 if (err) {
3245 ieee80211_vif_unreserve_chanctx(sdata);
3246 goto out;
3247 }
37fa2bdd 3248
33787fc4 3249 sdata->csa_chandef = params->chandef;
59af6928 3250 sdata->csa_block_tx = params->block_tx;
73da7d5b
SW
3251 sdata->vif.csa_active = true;
3252
59af6928 3253 if (sdata->csa_block_tx)
a46992b4
LC
3254 ieee80211_stop_vif_queues(local, sdata,
3255 IEEE80211_QUEUE_STOP_REASON_CSA);
59af6928 3256
2f457293
LC
3257 cfg80211_ch_switch_started_notify(sdata->dev, &sdata->csa_chandef,
3258 params->count);
3259
66e01cf9
LC
3260 if (changed) {
3261 ieee80211_bss_info_change_notify(sdata, changed);
3262 drv_channel_switch_beacon(sdata, &params->chandef);
3263 } else {
3264 /* if the beacon didn't change, we can finalize immediately */
3265 ieee80211_csa_finalize(sdata);
3266 }
73da7d5b 3267
03078de4
MK
3268out:
3269 mutex_unlock(&local->chanctx_mtx);
3270 return err;
73da7d5b
SW
3271}
3272
59af6928
MK
3273int ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev,
3274 struct cfg80211_csa_settings *params)
3275{
3276 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3277 struct ieee80211_local *local = sdata->local;
3278 int err;
3279
3280 mutex_lock(&local->mtx);
3281 err = __ieee80211_channel_switch(wiphy, dev, params);
3282 mutex_unlock(&local->mtx);
3283
3284 return err;
3285}
3286
71bbc994 3287static int ieee80211_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
b176e629
AO
3288 struct cfg80211_mgmt_tx_params *params,
3289 u64 *cookie)
026331c4 3290{
71bbc994 3291 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
9d38d85d
JB
3292 struct ieee80211_local *local = sdata->local;
3293 struct sk_buff *skb;
3294 struct sta_info *sta;
b176e629 3295 const struct ieee80211_mgmt *mgmt = (void *)params->buf;
2eb278e0 3296 bool need_offchan = false;
e247bd90 3297 u32 flags;
2eb278e0 3298 int ret;
387910cc 3299 u8 *data;
f7ca38df 3300
b176e629 3301 if (params->dont_wait_for_ack)
e247bd90
JB
3302 flags = IEEE80211_TX_CTL_NO_ACK;
3303 else
3304 flags = IEEE80211_TX_INTFL_NL80211_FRAME_TX |
3305 IEEE80211_TX_CTL_REQ_TX_STATUS;
3306
b176e629 3307 if (params->no_cck)
aad14ceb
RM
3308 flags |= IEEE80211_TX_CTL_NO_CCK_RATE;
3309
9d38d85d
JB
3310 switch (sdata->vif.type) {
3311 case NL80211_IFTYPE_ADHOC:
2eb278e0
JB
3312 if (!sdata->vif.bss_conf.ibss_joined)
3313 need_offchan = true;
3314 /* fall through */
3315#ifdef CONFIG_MAC80211_MESH
3316 case NL80211_IFTYPE_MESH_POINT:
3317 if (ieee80211_vif_is_mesh(&sdata->vif) &&
3318 !sdata->u.mesh.mesh_id_len)
3319 need_offchan = true;
3320 /* fall through */
3321#endif
663fcafd
JB
3322 case NL80211_IFTYPE_AP:
3323 case NL80211_IFTYPE_AP_VLAN:
3324 case NL80211_IFTYPE_P2P_GO:
2eb278e0
JB
3325 if (sdata->vif.type != NL80211_IFTYPE_ADHOC &&
3326 !ieee80211_vif_is_mesh(&sdata->vif) &&
3327 !rcu_access_pointer(sdata->bss->beacon))
3328 need_offchan = true;
663fcafd 3329 if (!ieee80211_is_action(mgmt->frame_control) ||
ac49e1a8 3330 mgmt->u.action.category == WLAN_CATEGORY_PUBLIC ||
cd7760e6
SW
3331 mgmt->u.action.category == WLAN_CATEGORY_SELF_PROTECTED ||
3332 mgmt->u.action.category == WLAN_CATEGORY_SPECTRUM_MGMT)
9d38d85d
JB
3333 break;
3334 rcu_read_lock();
3335 sta = sta_info_get(sdata, mgmt->da);
3336 rcu_read_unlock();
3337 if (!sta)
3338 return -ENOLINK;
3339 break;
3340 case NL80211_IFTYPE_STATION:
663fcafd 3341 case NL80211_IFTYPE_P2P_CLIENT:
2eb278e0
JB
3342 if (!sdata->u.mgd.associated)
3343 need_offchan = true;
9d38d85d 3344 break;
f142c6b9
JB
3345 case NL80211_IFTYPE_P2P_DEVICE:
3346 need_offchan = true;
3347 break;
9d38d85d
JB
3348 default:
3349 return -EOPNOTSUPP;
3350 }
3351
f7aeb6fb
AQ
3352 /* configurations requiring offchan cannot work if no channel has been
3353 * specified
3354 */
b176e629 3355 if (need_offchan && !params->chan)
f7aeb6fb
AQ
3356 return -EINVAL;
3357
2eb278e0
JB
3358 mutex_lock(&local->mtx);
3359
3360 /* Check if the operating channel is the requested channel */
3361 if (!need_offchan) {
55de908a
JB
3362 struct ieee80211_chanctx_conf *chanctx_conf;
3363
3364 rcu_read_lock();
3365 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3366
f7aeb6fb 3367 if (chanctx_conf) {
b176e629
AO
3368 need_offchan = params->chan &&
3369 (params->chan !=
3370 chanctx_conf->def.chan);
3371 } else if (!params->chan) {
f7aeb6fb
AQ
3372 ret = -EINVAL;
3373 rcu_read_unlock();
3374 goto out_unlock;
3375 } else {
2eb278e0 3376 need_offchan = true;
f7aeb6fb 3377 }
55de908a 3378 rcu_read_unlock();
2eb278e0
JB
3379 }
3380
b176e629 3381 if (need_offchan && !params->offchan) {
2eb278e0
JB
3382 ret = -EBUSY;
3383 goto out_unlock;
3384 }
3385
b176e629 3386 skb = dev_alloc_skb(local->hw.extra_tx_headroom + params->len);
2eb278e0
JB
3387 if (!skb) {
3388 ret = -ENOMEM;
3389 goto out_unlock;
3390 }
9d38d85d
JB
3391 skb_reserve(skb, local->hw.extra_tx_headroom);
3392
387910cc
AO
3393 data = skb_put(skb, params->len);
3394 memcpy(data, params->buf, params->len);
3395
3396 /* Update CSA counters */
3397 if (sdata->vif.csa_active &&
3398 (sdata->vif.type == NL80211_IFTYPE_AP ||
3399 sdata->vif.type == NL80211_IFTYPE_ADHOC) &&
3400 params->n_csa_offsets) {
3401 int i;
af296bdb 3402 struct beacon_data *beacon = NULL;
387910cc 3403
af296bdb
MK
3404 rcu_read_lock();
3405
3406 if (sdata->vif.type == NL80211_IFTYPE_AP)
3407 beacon = rcu_dereference(sdata->u.ap.beacon);
3408 else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
3409 beacon = rcu_dereference(sdata->u.ibss.presp);
3410 else if (ieee80211_vif_is_mesh(&sdata->vif))
3411 beacon = rcu_dereference(sdata->u.mesh.beacon);
3412
3413 if (beacon)
3414 for (i = 0; i < params->n_csa_offsets; i++)
3415 data[params->csa_offsets[i]] =
3416 beacon->csa_current_counter;
3417
3418 rcu_read_unlock();
387910cc 3419 }
9d38d85d
JB
3420
3421 IEEE80211_SKB_CB(skb)->flags = flags;
3422
3423 skb->dev = sdata->dev;
9d38d85d 3424
2eb278e0 3425 if (!need_offchan) {
7f9f78ab 3426 *cookie = (unsigned long) skb;
f30221e4 3427 ieee80211_tx_skb(sdata, skb);
2eb278e0
JB
3428 ret = 0;
3429 goto out_unlock;
f30221e4
JB
3430 }
3431
6c17b77b
SF
3432 IEEE80211_SKB_CB(skb)->flags |= IEEE80211_TX_CTL_TX_OFFCHAN |
3433 IEEE80211_TX_INTFL_OFFCHAN_TX_OK;
2eb278e0
JB
3434 if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)
3435 IEEE80211_SKB_CB(skb)->hw_queue =
3436 local->hw.offchannel_tx_hw_queue;
f30221e4 3437
2eb278e0 3438 /* This will handle all kinds of coalescing and immediate TX */
b176e629
AO
3439 ret = ieee80211_start_roc_work(local, sdata, params->chan,
3440 params->wait, cookie, skb,
d339d5ca 3441 IEEE80211_ROC_TYPE_MGMT_TX);
2eb278e0
JB
3442 if (ret)
3443 kfree_skb(skb);
3444 out_unlock:
3445 mutex_unlock(&local->mtx);
3446 return ret;
026331c4
JM
3447}
3448
f30221e4 3449static int ieee80211_mgmt_tx_cancel_wait(struct wiphy *wiphy,
71bbc994 3450 struct wireless_dev *wdev,
f30221e4
JB
3451 u64 cookie)
3452{
71bbc994 3453 struct ieee80211_local *local = wiphy_priv(wiphy);
f30221e4 3454
2eb278e0 3455 return ieee80211_cancel_roc(local, cookie, true);
f30221e4
JB
3456}
3457
7be5086d 3458static void ieee80211_mgmt_frame_register(struct wiphy *wiphy,
71bbc994 3459 struct wireless_dev *wdev,
7be5086d
JB
3460 u16 frame_type, bool reg)
3461{
3462 struct ieee80211_local *local = wiphy_priv(wiphy);
3463
6abe0563 3464 switch (frame_type) {
6abe0563
WH
3465 case IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_PROBE_REQ:
3466 if (reg)
3467 local->probe_req_reg++;
3468 else
3469 local->probe_req_reg--;
7be5086d 3470
35f5149e
FF
3471 if (!local->open_count)
3472 break;
3473
6abe0563
WH
3474 ieee80211_queue_work(&local->hw, &local->reconfig_filter);
3475 break;
3476 default:
3477 break;
3478 }
7be5086d
JB
3479}
3480
15d96753
BR
3481static int ieee80211_set_antenna(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant)
3482{
3483 struct ieee80211_local *local = wiphy_priv(wiphy);
3484
3485 if (local->started)
3486 return -EOPNOTSUPP;
3487
3488 return drv_set_antenna(local, tx_ant, rx_ant);
3489}
3490
3491static int ieee80211_get_antenna(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant)
3492{
3493 struct ieee80211_local *local = wiphy_priv(wiphy);
3494
3495 return drv_get_antenna(local, tx_ant, rx_ant);
3496}
3497
c68f4b89
JB
3498static int ieee80211_set_rekey_data(struct wiphy *wiphy,
3499 struct net_device *dev,
3500 struct cfg80211_gtk_rekey_data *data)
3501{
3502 struct ieee80211_local *local = wiphy_priv(wiphy);
3503 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3504
3505 if (!local->ops->set_rekey_data)
3506 return -EOPNOTSUPP;
3507
3508 drv_set_rekey_data(local, sdata, data);
3509
3510 return 0;
3511}
3512
06500736
JB
3513static int ieee80211_probe_client(struct wiphy *wiphy, struct net_device *dev,
3514 const u8 *peer, u64 *cookie)
3515{
3516 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3517 struct ieee80211_local *local = sdata->local;
3518 struct ieee80211_qos_hdr *nullfunc;
3519 struct sk_buff *skb;
3520 int size = sizeof(*nullfunc);
3521 __le16 fc;
3522 bool qos;
3523 struct ieee80211_tx_info *info;
3524 struct sta_info *sta;
55de908a
JB
3525 struct ieee80211_chanctx_conf *chanctx_conf;
3526 enum ieee80211_band band;
06500736
JB
3527
3528 rcu_read_lock();
55de908a
JB
3529 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3530 if (WARN_ON(!chanctx_conf)) {
3531 rcu_read_unlock();
3532 return -EINVAL;
3533 }
4bf88530 3534 band = chanctx_conf->def.chan->band;
03bb7f42 3535 sta = sta_info_get_bss(sdata, peer);
b4487c2d 3536 if (sta) {
a74a8c84 3537 qos = sta->sta.wme;
b4487c2d
JB
3538 } else {
3539 rcu_read_unlock();
06500736 3540 return -ENOLINK;
b4487c2d 3541 }
06500736
JB
3542
3543 if (qos) {
3544 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3545 IEEE80211_STYPE_QOS_NULLFUNC |
3546 IEEE80211_FCTL_FROMDS);
3547 } else {
3548 size -= 2;
3549 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3550 IEEE80211_STYPE_NULLFUNC |
3551 IEEE80211_FCTL_FROMDS);
3552 }
3553
3554 skb = dev_alloc_skb(local->hw.extra_tx_headroom + size);
55de908a
JB
3555 if (!skb) {
3556 rcu_read_unlock();
06500736 3557 return -ENOMEM;
55de908a 3558 }
06500736
JB
3559
3560 skb->dev = dev;
3561
3562 skb_reserve(skb, local->hw.extra_tx_headroom);
3563
3564 nullfunc = (void *) skb_put(skb, size);
3565 nullfunc->frame_control = fc;
3566 nullfunc->duration_id = 0;
3567 memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN);
3568 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
3569 memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);
3570 nullfunc->seq_ctrl = 0;
3571
3572 info = IEEE80211_SKB_CB(skb);
3573
3574 info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
3575 IEEE80211_TX_INTFL_NL80211_FRAME_TX;
73c4e195 3576 info->band = band;
06500736
JB
3577
3578 skb_set_queue_mapping(skb, IEEE80211_AC_VO);
3579 skb->priority = 7;
3580 if (qos)
3581 nullfunc->qos_ctrl = cpu_to_le16(7);
3582
3583 local_bh_disable();
73c4e195 3584 ieee80211_xmit(sdata, skb);
06500736 3585 local_bh_enable();
55de908a 3586 rcu_read_unlock();
06500736
JB
3587
3588 *cookie = (unsigned long) skb;
3589 return 0;
3590}
3591
683b6d3b
JB
3592static int ieee80211_cfg_get_channel(struct wiphy *wiphy,
3593 struct wireless_dev *wdev,
3594 struct cfg80211_chan_def *chandef)
5b7ccaf3 3595{
55de908a 3596 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
cb601ffa 3597 struct ieee80211_local *local = wiphy_priv(wiphy);
55de908a 3598 struct ieee80211_chanctx_conf *chanctx_conf;
683b6d3b 3599 int ret = -ENODATA;
55de908a
JB
3600
3601 rcu_read_lock();
feda3027
JB
3602 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3603 if (chanctx_conf) {
c12bc488 3604 *chandef = sdata->vif.bss_conf.chandef;
feda3027
JB
3605 ret = 0;
3606 } else if (local->open_count > 0 &&
3607 local->open_count == local->monitors &&
3608 sdata->vif.type == NL80211_IFTYPE_MONITOR) {
3609 if (local->use_chanctx)
3610 *chandef = local->monitor_chandef;
3611 else
675a0b04 3612 *chandef = local->_oper_chandef;
683b6d3b 3613 ret = 0;
55de908a
JB
3614 }
3615 rcu_read_unlock();
5b7ccaf3 3616
683b6d3b 3617 return ret;
5b7ccaf3
JB
3618}
3619
6d52563f
JB
3620#ifdef CONFIG_PM
3621static void ieee80211_set_wakeup(struct wiphy *wiphy, bool enabled)
3622{
3623 drv_set_wakeup(wiphy_priv(wiphy), enabled);
3624}
3625#endif
3626
32db6b54
KP
3627static int ieee80211_set_qos_map(struct wiphy *wiphy,
3628 struct net_device *dev,
3629 struct cfg80211_qos_map *qos_map)
3630{
3631 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3632 struct mac80211_qos_map *new_qos_map, *old_qos_map;
3633
3634 if (qos_map) {
3635 new_qos_map = kzalloc(sizeof(*new_qos_map), GFP_KERNEL);
3636 if (!new_qos_map)
3637 return -ENOMEM;
3638 memcpy(&new_qos_map->qos_map, qos_map, sizeof(*qos_map));
3639 } else {
3640 /* A NULL qos_map was passed to disable QoS mapping */
3641 new_qos_map = NULL;
3642 }
3643
194ff52d 3644 old_qos_map = sdata_dereference(sdata->qos_map, sdata);
32db6b54
KP
3645 rcu_assign_pointer(sdata->qos_map, new_qos_map);
3646 if (old_qos_map)
3647 kfree_rcu(old_qos_map, rcu_head);
3648
3649 return 0;
3650}
3651
3b1700bd
JM
3652static int ieee80211_set_ap_chanwidth(struct wiphy *wiphy,
3653 struct net_device *dev,
3654 struct cfg80211_chan_def *chandef)
3655{
3656 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3657 int ret;
3658 u32 changed = 0;
3659
3660 ret = ieee80211_vif_change_bandwidth(sdata, chandef, &changed);
3661 if (ret == 0)
3662 ieee80211_bss_info_change_notify(sdata, changed);
3663
3664 return ret;
3665}
3666
02219b3a
JB
3667static int ieee80211_add_tx_ts(struct wiphy *wiphy, struct net_device *dev,
3668 u8 tsid, const u8 *peer, u8 up,
3669 u16 admitted_time)
3670{
3671 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3672 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3673 int ac = ieee802_1d_to_ac[up];
3674
3675 if (sdata->vif.type != NL80211_IFTYPE_STATION)
3676 return -EOPNOTSUPP;
3677
3678 if (!(sdata->wmm_acm & BIT(up)))
3679 return -EINVAL;
3680
3681 if (ifmgd->tx_tspec[ac].admitted_time)
3682 return -EBUSY;
3683
3684 if (admitted_time) {
3685 ifmgd->tx_tspec[ac].admitted_time = 32 * admitted_time;
3686 ifmgd->tx_tspec[ac].tsid = tsid;
3687 ifmgd->tx_tspec[ac].up = up;
3688 }
3689
3690 return 0;
3691}
3692
3693static int ieee80211_del_tx_ts(struct wiphy *wiphy, struct net_device *dev,
3694 u8 tsid, const u8 *peer)
3695{
3696 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3697 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3698 struct ieee80211_local *local = wiphy_priv(wiphy);
3699 int ac;
3700
3701 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
3702 struct ieee80211_sta_tx_tspec *tx_tspec = &ifmgd->tx_tspec[ac];
3703
3704 /* skip unused entries */
3705 if (!tx_tspec->admitted_time)
3706 continue;
3707
3708 if (tx_tspec->tsid != tsid)
3709 continue;
3710
3711 /* due to this new packets will be reassigned to non-ACM ACs */
3712 tx_tspec->up = -1;
3713
3714 /* Make sure that all packets have been sent to avoid to
3715 * restore the QoS params on packets that are still on the
3716 * queues.
3717 */
3718 synchronize_net();
3b24f4c6 3719 ieee80211_flush_queues(local, sdata, false);
02219b3a
JB
3720
3721 /* restore the normal QoS parameters
3722 * (unconditionally to avoid races)
3723 */
3724 tx_tspec->action = TX_TSPEC_ACTION_STOP_DOWNGRADE;
3725 tx_tspec->downgraded = false;
3726 ieee80211_sta_handle_tspec_ac_params(sdata);
3727
3728 /* finally clear all the data */
3729 memset(tx_tspec, 0, sizeof(*tx_tspec));
3730
3731 return 0;
3732 }
3733
3734 return -ENOENT;
3735}
3736
8a47cea7 3737const struct cfg80211_ops mac80211_config_ops = {
f0706e82
JB
3738 .add_virtual_intf = ieee80211_add_iface,
3739 .del_virtual_intf = ieee80211_del_iface,
42613db7 3740 .change_virtual_intf = ieee80211_change_iface,
f142c6b9
JB
3741 .start_p2p_device = ieee80211_start_p2p_device,
3742 .stop_p2p_device = ieee80211_stop_p2p_device,
e8cbb4cb
JB
3743 .add_key = ieee80211_add_key,
3744 .del_key = ieee80211_del_key,
62da92fb 3745 .get_key = ieee80211_get_key,
e8cbb4cb 3746 .set_default_key = ieee80211_config_default_key,
3cfcf6ac 3747 .set_default_mgmt_key = ieee80211_config_default_mgmt_key,
8860020e
JB
3748 .start_ap = ieee80211_start_ap,
3749 .change_beacon = ieee80211_change_beacon,
3750 .stop_ap = ieee80211_stop_ap,
4fd6931e
JB
3751 .add_station = ieee80211_add_station,
3752 .del_station = ieee80211_del_station,
3753 .change_station = ieee80211_change_station,
7bbdd2d9 3754 .get_station = ieee80211_get_station,
c5dd9c2b 3755 .dump_station = ieee80211_dump_station,
1289723e 3756 .dump_survey = ieee80211_dump_survey,
c5dd9c2b
LCC
3757#ifdef CONFIG_MAC80211_MESH
3758 .add_mpath = ieee80211_add_mpath,
3759 .del_mpath = ieee80211_del_mpath,
3760 .change_mpath = ieee80211_change_mpath,
3761 .get_mpath = ieee80211_get_mpath,
3762 .dump_mpath = ieee80211_dump_mpath,
a2db2ed3
HR
3763 .get_mpp = ieee80211_get_mpp,
3764 .dump_mpp = ieee80211_dump_mpp,
24bdd9f4
JC
3765 .update_mesh_config = ieee80211_update_mesh_config,
3766 .get_mesh_config = ieee80211_get_mesh_config,
29cbe68c
JB
3767 .join_mesh = ieee80211_join_mesh,
3768 .leave_mesh = ieee80211_leave_mesh,
c5dd9c2b 3769#endif
239281f8
RL
3770 .join_ocb = ieee80211_join_ocb,
3771 .leave_ocb = ieee80211_leave_ocb,
9f1ba906 3772 .change_bss = ieee80211_change_bss,
31888487 3773 .set_txq_params = ieee80211_set_txq_params,
e8c9bd5b 3774 .set_monitor_channel = ieee80211_set_monitor_channel,
665af4fc
BC
3775 .suspend = ieee80211_suspend,
3776 .resume = ieee80211_resume,
2a519311 3777 .scan = ieee80211_scan,
79f460ca
LC
3778 .sched_scan_start = ieee80211_sched_scan_start,
3779 .sched_scan_stop = ieee80211_sched_scan_stop,
636a5d36
JM
3780 .auth = ieee80211_auth,
3781 .assoc = ieee80211_assoc,
3782 .deauth = ieee80211_deauth,
3783 .disassoc = ieee80211_disassoc,
af8cdcd8
JB
3784 .join_ibss = ieee80211_join_ibss,
3785 .leave_ibss = ieee80211_leave_ibss,
391e53e3 3786 .set_mcast_rate = ieee80211_set_mcast_rate,
b9a5f8ca 3787 .set_wiphy_params = ieee80211_set_wiphy_params,
7643a2c3
JB
3788 .set_tx_power = ieee80211_set_tx_power,
3789 .get_tx_power = ieee80211_get_tx_power,
ab737a4f 3790 .set_wds_peer = ieee80211_set_wds_peer,
1f87f7d3 3791 .rfkill_poll = ieee80211_rfkill_poll,
aff89a9b 3792 CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd)
71063f0e 3793 CFG80211_TESTMODE_DUMP(ieee80211_testmode_dump)
bc92afd9 3794 .set_power_mgmt = ieee80211_set_power_mgmt,
9930380f 3795 .set_bitrate_mask = ieee80211_set_bitrate_mask,
b8bc4b0a
JB
3796 .remain_on_channel = ieee80211_remain_on_channel,
3797 .cancel_remain_on_channel = ieee80211_cancel_remain_on_channel,
2e161f78 3798 .mgmt_tx = ieee80211_mgmt_tx,
f30221e4 3799 .mgmt_tx_cancel_wait = ieee80211_mgmt_tx_cancel_wait,
a97c13c3 3800 .set_cqm_rssi_config = ieee80211_set_cqm_rssi_config,
7be5086d 3801 .mgmt_frame_register = ieee80211_mgmt_frame_register,
15d96753
BR
3802 .set_antenna = ieee80211_set_antenna,
3803 .get_antenna = ieee80211_get_antenna,
c68f4b89 3804 .set_rekey_data = ieee80211_set_rekey_data,
dfe018bf
AN
3805 .tdls_oper = ieee80211_tdls_oper,
3806 .tdls_mgmt = ieee80211_tdls_mgmt,
a7a6bdd0
AN
3807 .tdls_channel_switch = ieee80211_tdls_channel_switch,
3808 .tdls_cancel_channel_switch = ieee80211_tdls_cancel_channel_switch,
06500736 3809 .probe_client = ieee80211_probe_client,
b53be792 3810 .set_noack_map = ieee80211_set_noack_map,
6d52563f
JB
3811#ifdef CONFIG_PM
3812 .set_wakeup = ieee80211_set_wakeup,
3813#endif
5b7ccaf3 3814 .get_channel = ieee80211_cfg_get_channel,
164eb02d 3815 .start_radar_detection = ieee80211_start_radar_detection,
73da7d5b 3816 .channel_switch = ieee80211_channel_switch,
32db6b54 3817 .set_qos_map = ieee80211_set_qos_map,
3b1700bd 3818 .set_ap_chanwidth = ieee80211_set_ap_chanwidth,
02219b3a
JB
3819 .add_tx_ts = ieee80211_add_tx_ts,
3820 .del_tx_ts = ieee80211_del_tx_ts,
f0706e82 3821};
This page took 1.075305 seconds and 5 git commands to generate.