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