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