1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * mac80211 configuration hooks for cfg80211
4 *
5 * Copyright 2006-2010 Johannes Berg <johannes@sipsolutions.net>
6 * Copyright 2013-2015 Intel Mobile Communications GmbH
7 * Copyright (C) 2015-2017 Intel Deutschland GmbH
8 * Copyright (C) 2018-2020 Intel Corporation
9 */
10
11 #include <linux/ieee80211.h>
12 #include <linux/nl80211.h>
13 #include <linux/rtnetlink.h>
14 #include <linux/slab.h>
15 #include <net/net_namespace.h>
16 #include <linux/rcupdate.h>
17 #include <linux/fips.h>
18 #include <linux/if_ether.h>
19 #include <net/cfg80211.h>
20 #include "ieee80211_i.h"
21 #include "driver-ops.h"
22 #include "rate.h"
23 #include "mesh.h"
24 #include "wme.h"
25
ieee80211_set_mu_mimo_follow(struct ieee80211_sub_if_data * sdata,struct vif_params * params)26 static void ieee80211_set_mu_mimo_follow(struct ieee80211_sub_if_data *sdata,
27 struct vif_params *params)
28 {
29 bool mu_mimo_groups = false;
30 bool mu_mimo_follow = false;
31
32 if (params->vht_mumimo_groups) {
33 u64 membership;
34
35 BUILD_BUG_ON(sizeof(membership) != WLAN_MEMBERSHIP_LEN);
36
37 memcpy(sdata->vif.bss_conf.mu_group.membership,
38 params->vht_mumimo_groups, WLAN_MEMBERSHIP_LEN);
39 memcpy(sdata->vif.bss_conf.mu_group.position,
40 params->vht_mumimo_groups + WLAN_MEMBERSHIP_LEN,
41 WLAN_USER_POSITION_LEN);
42 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_MU_GROUPS);
43 /* don't care about endianness - just check for 0 */
44 memcpy(&membership, params->vht_mumimo_groups,
45 WLAN_MEMBERSHIP_LEN);
46 mu_mimo_groups = membership != 0;
47 }
48
49 if (params->vht_mumimo_follow_addr) {
50 mu_mimo_follow =
51 is_valid_ether_addr(params->vht_mumimo_follow_addr);
52 ether_addr_copy(sdata->u.mntr.mu_follow_addr,
53 params->vht_mumimo_follow_addr);
54 }
55
56 sdata->vif.mu_mimo_owner = mu_mimo_groups || mu_mimo_follow;
57 }
58
ieee80211_set_mon_options(struct ieee80211_sub_if_data * sdata,struct vif_params * params)59 static int ieee80211_set_mon_options(struct ieee80211_sub_if_data *sdata,
60 struct vif_params *params)
61 {
62 struct ieee80211_local *local = sdata->local;
63 struct ieee80211_sub_if_data *monitor_sdata;
64
65 /* check flags first */
66 if (params->flags && ieee80211_sdata_running(sdata)) {
67 u32 mask = MONITOR_FLAG_COOK_FRAMES | MONITOR_FLAG_ACTIVE;
68
69 /*
70 * Prohibit MONITOR_FLAG_COOK_FRAMES and
71 * MONITOR_FLAG_ACTIVE to be changed while the
72 * interface is up.
73 * Else we would need to add a lot of cruft
74 * to update everything:
75 * cooked_mntrs, monitor and all fif_* counters
76 * reconfigure hardware
77 */
78 if ((params->flags & mask) != (sdata->u.mntr.flags & mask))
79 return -EBUSY;
80 }
81
82 /* also validate MU-MIMO change */
83 monitor_sdata = rtnl_dereference(local->monitor_sdata);
84
85 if (!monitor_sdata &&
86 (params->vht_mumimo_groups || params->vht_mumimo_follow_addr))
87 return -EOPNOTSUPP;
88
89 /* apply all changes now - no failures allowed */
90
91 if (monitor_sdata)
92 ieee80211_set_mu_mimo_follow(monitor_sdata, params);
93
94 if (params->flags) {
95 if (ieee80211_sdata_running(sdata)) {
96 ieee80211_adjust_monitor_flags(sdata, -1);
97 sdata->u.mntr.flags = params->flags;
98 ieee80211_adjust_monitor_flags(sdata, 1);
99
100 ieee80211_configure_filter(local);
101 } else {
102 /*
103 * Because the interface is down, ieee80211_do_stop
104 * and ieee80211_do_open take care of "everything"
105 * mentioned in the comment above.
106 */
107 sdata->u.mntr.flags = params->flags;
108 }
109 }
110
111 return 0;
112 }
113
ieee80211_add_iface(struct wiphy * wiphy,const char * name,unsigned char name_assign_type,enum nl80211_iftype type,struct vif_params * params)114 static struct wireless_dev *ieee80211_add_iface(struct wiphy *wiphy,
115 const char *name,
116 unsigned char name_assign_type,
117 enum nl80211_iftype type,
118 struct vif_params *params)
119 {
120 struct ieee80211_local *local = wiphy_priv(wiphy);
121 struct wireless_dev *wdev;
122 struct ieee80211_sub_if_data *sdata;
123 int err;
124
125 err = ieee80211_if_add(local, name, name_assign_type, &wdev, type, params);
126 if (err)
127 return ERR_PTR(err);
128
129 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
130
131 if (type == NL80211_IFTYPE_MONITOR) {
132 err = ieee80211_set_mon_options(sdata, params);
133 if (err) {
134 ieee80211_if_remove(sdata);
135 return NULL;
136 }
137 }
138
139 return wdev;
140 }
141
ieee80211_del_iface(struct wiphy * wiphy,struct wireless_dev * wdev)142 static int ieee80211_del_iface(struct wiphy *wiphy, struct wireless_dev *wdev)
143 {
144 ieee80211_if_remove(IEEE80211_WDEV_TO_SUB_IF(wdev));
145
146 return 0;
147 }
148
ieee80211_change_iface(struct wiphy * wiphy,struct net_device * dev,enum nl80211_iftype type,struct vif_params * params)149 static int ieee80211_change_iface(struct wiphy *wiphy,
150 struct net_device *dev,
151 enum nl80211_iftype type,
152 struct vif_params *params)
153 {
154 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
155 struct ieee80211_local *local = sdata->local;
156 struct sta_info *sta;
157 int ret;
158
159 ret = ieee80211_if_change_type(sdata, type);
160 if (ret)
161 return ret;
162
163 if (type == NL80211_IFTYPE_AP_VLAN && params->use_4addr == 0) {
164 RCU_INIT_POINTER(sdata->u.vlan.sta, NULL);
165 ieee80211_check_fast_rx_iface(sdata);
166 } else if (type == NL80211_IFTYPE_STATION && params->use_4addr >= 0) {
167 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
168
169 if (params->use_4addr == ifmgd->use_4addr)
170 return 0;
171
172 sdata->u.mgd.use_4addr = params->use_4addr;
173 if (!ifmgd->associated)
174 return 0;
175
176 mutex_lock(&local->sta_mtx);
177 sta = sta_info_get(sdata, ifmgd->bssid);
178 if (sta)
179 drv_sta_set_4addr(local, sdata, &sta->sta,
180 params->use_4addr);
181 mutex_unlock(&local->sta_mtx);
182
183 if (params->use_4addr)
184 ieee80211_send_4addr_nullfunc(local, sdata);
185 }
186
187 if (sdata->vif.type == NL80211_IFTYPE_MONITOR) {
188 ret = ieee80211_set_mon_options(sdata, params);
189 if (ret)
190 return ret;
191 }
192
193 return 0;
194 }
195
ieee80211_start_p2p_device(struct wiphy * wiphy,struct wireless_dev * wdev)196 static int ieee80211_start_p2p_device(struct wiphy *wiphy,
197 struct wireless_dev *wdev)
198 {
199 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
200 int ret;
201
202 mutex_lock(&sdata->local->chanctx_mtx);
203 ret = ieee80211_check_combinations(sdata, NULL, 0, 0);
204 mutex_unlock(&sdata->local->chanctx_mtx);
205 if (ret < 0)
206 return ret;
207
208 return ieee80211_do_open(wdev, true);
209 }
210
ieee80211_stop_p2p_device(struct wiphy * wiphy,struct wireless_dev * wdev)211 static void ieee80211_stop_p2p_device(struct wiphy *wiphy,
212 struct wireless_dev *wdev)
213 {
214 ieee80211_sdata_stop(IEEE80211_WDEV_TO_SUB_IF(wdev));
215 }
216
ieee80211_start_nan(struct wiphy * wiphy,struct wireless_dev * wdev,struct cfg80211_nan_conf * conf)217 static int ieee80211_start_nan(struct wiphy *wiphy,
218 struct wireless_dev *wdev,
219 struct cfg80211_nan_conf *conf)
220 {
221 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
222 int ret;
223
224 mutex_lock(&sdata->local->chanctx_mtx);
225 ret = ieee80211_check_combinations(sdata, NULL, 0, 0);
226 mutex_unlock(&sdata->local->chanctx_mtx);
227 if (ret < 0)
228 return ret;
229
230 ret = ieee80211_do_open(wdev, true);
231 if (ret)
232 return ret;
233
234 ret = drv_start_nan(sdata->local, sdata, conf);
235 if (ret)
236 ieee80211_sdata_stop(sdata);
237
238 sdata->u.nan.conf = *conf;
239
240 return ret;
241 }
242
ieee80211_stop_nan(struct wiphy * wiphy,struct wireless_dev * wdev)243 static void ieee80211_stop_nan(struct wiphy *wiphy,
244 struct wireless_dev *wdev)
245 {
246 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
247
248 drv_stop_nan(sdata->local, sdata);
249 ieee80211_sdata_stop(sdata);
250 }
251
ieee80211_nan_change_conf(struct wiphy * wiphy,struct wireless_dev * wdev,struct cfg80211_nan_conf * conf,u32 changes)252 static int ieee80211_nan_change_conf(struct wiphy *wiphy,
253 struct wireless_dev *wdev,
254 struct cfg80211_nan_conf *conf,
255 u32 changes)
256 {
257 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
258 struct cfg80211_nan_conf new_conf;
259 int ret = 0;
260
261 if (sdata->vif.type != NL80211_IFTYPE_NAN)
262 return -EOPNOTSUPP;
263
264 if (!ieee80211_sdata_running(sdata))
265 return -ENETDOWN;
266
267 new_conf = sdata->u.nan.conf;
268
269 if (changes & CFG80211_NAN_CONF_CHANGED_PREF)
270 new_conf.master_pref = conf->master_pref;
271
272 if (changes & CFG80211_NAN_CONF_CHANGED_BANDS)
273 new_conf.bands = conf->bands;
274
275 ret = drv_nan_change_conf(sdata->local, sdata, &new_conf, changes);
276 if (!ret)
277 sdata->u.nan.conf = new_conf;
278
279 return ret;
280 }
281
ieee80211_add_nan_func(struct wiphy * wiphy,struct wireless_dev * wdev,struct cfg80211_nan_func * nan_func)282 static int ieee80211_add_nan_func(struct wiphy *wiphy,
283 struct wireless_dev *wdev,
284 struct cfg80211_nan_func *nan_func)
285 {
286 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
287 int ret;
288
289 if (sdata->vif.type != NL80211_IFTYPE_NAN)
290 return -EOPNOTSUPP;
291
292 if (!ieee80211_sdata_running(sdata))
293 return -ENETDOWN;
294
295 spin_lock_bh(&sdata->u.nan.func_lock);
296
297 ret = idr_alloc(&sdata->u.nan.function_inst_ids,
298 nan_func, 1, sdata->local->hw.max_nan_de_entries + 1,
299 GFP_ATOMIC);
300 spin_unlock_bh(&sdata->u.nan.func_lock);
301
302 if (ret < 0)
303 return ret;
304
305 nan_func->instance_id = ret;
306
307 WARN_ON(nan_func->instance_id == 0);
308
309 ret = drv_add_nan_func(sdata->local, sdata, nan_func);
310 if (ret) {
311 spin_lock_bh(&sdata->u.nan.func_lock);
312 idr_remove(&sdata->u.nan.function_inst_ids,
313 nan_func->instance_id);
314 spin_unlock_bh(&sdata->u.nan.func_lock);
315 }
316
317 return ret;
318 }
319
320 static struct cfg80211_nan_func *
ieee80211_find_nan_func_by_cookie(struct ieee80211_sub_if_data * sdata,u64 cookie)321 ieee80211_find_nan_func_by_cookie(struct ieee80211_sub_if_data *sdata,
322 u64 cookie)
323 {
324 struct cfg80211_nan_func *func;
325 int id;
326
327 lockdep_assert_held(&sdata->u.nan.func_lock);
328
329 idr_for_each_entry(&sdata->u.nan.function_inst_ids, func, id) {
330 if (func->cookie == cookie)
331 return func;
332 }
333
334 return NULL;
335 }
336
ieee80211_del_nan_func(struct wiphy * wiphy,struct wireless_dev * wdev,u64 cookie)337 static void ieee80211_del_nan_func(struct wiphy *wiphy,
338 struct wireless_dev *wdev, u64 cookie)
339 {
340 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
341 struct cfg80211_nan_func *func;
342 u8 instance_id = 0;
343
344 if (sdata->vif.type != NL80211_IFTYPE_NAN ||
345 !ieee80211_sdata_running(sdata))
346 return;
347
348 spin_lock_bh(&sdata->u.nan.func_lock);
349
350 func = ieee80211_find_nan_func_by_cookie(sdata, cookie);
351 if (func)
352 instance_id = func->instance_id;
353
354 spin_unlock_bh(&sdata->u.nan.func_lock);
355
356 if (instance_id)
357 drv_del_nan_func(sdata->local, sdata, instance_id);
358 }
359
ieee80211_set_noack_map(struct wiphy * wiphy,struct net_device * dev,u16 noack_map)360 static int ieee80211_set_noack_map(struct wiphy *wiphy,
361 struct net_device *dev,
362 u16 noack_map)
363 {
364 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
365
366 sdata->noack_map = noack_map;
367
368 ieee80211_check_fast_xmit_iface(sdata);
369
370 return 0;
371 }
372
ieee80211_set_tx(struct ieee80211_sub_if_data * sdata,const u8 * mac_addr,u8 key_idx)373 static int ieee80211_set_tx(struct ieee80211_sub_if_data *sdata,
374 const u8 *mac_addr, u8 key_idx)
375 {
376 struct ieee80211_local *local = sdata->local;
377 struct ieee80211_key *key;
378 struct sta_info *sta;
379 int ret = -EINVAL;
380
381 if (!wiphy_ext_feature_isset(local->hw.wiphy,
382 NL80211_EXT_FEATURE_EXT_KEY_ID))
383 return -EINVAL;
384
385 sta = sta_info_get_bss(sdata, mac_addr);
386
387 if (!sta)
388 return -EINVAL;
389
390 if (sta->ptk_idx == key_idx)
391 return 0;
392
393 mutex_lock(&local->key_mtx);
394 key = key_mtx_dereference(local, sta->ptk[key_idx]);
395
396 if (key && key->conf.flags & IEEE80211_KEY_FLAG_NO_AUTO_TX)
397 ret = ieee80211_set_tx_key(key);
398
399 mutex_unlock(&local->key_mtx);
400 return ret;
401 }
402
ieee80211_add_key(struct wiphy * wiphy,struct net_device * dev,u8 key_idx,bool pairwise,const u8 * mac_addr,struct key_params * params)403 static int ieee80211_add_key(struct wiphy *wiphy, struct net_device *dev,
404 u8 key_idx, bool pairwise, const u8 *mac_addr,
405 struct key_params *params)
406 {
407 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
408 struct ieee80211_local *local = sdata->local;
409 struct sta_info *sta = NULL;
410 const struct ieee80211_cipher_scheme *cs = NULL;
411 struct ieee80211_key *key;
412 int err;
413
414 if (!ieee80211_sdata_running(sdata))
415 return -ENETDOWN;
416
417 if (pairwise && params->mode == NL80211_KEY_SET_TX)
418 return ieee80211_set_tx(sdata, mac_addr, key_idx);
419
420 /* reject WEP and TKIP keys if WEP failed to initialize */
421 switch (params->cipher) {
422 case WLAN_CIPHER_SUITE_WEP40:
423 case WLAN_CIPHER_SUITE_TKIP:
424 case WLAN_CIPHER_SUITE_WEP104:
425 if (WARN_ON_ONCE(fips_enabled))
426 return -EINVAL;
427 case WLAN_CIPHER_SUITE_CCMP:
428 case WLAN_CIPHER_SUITE_CCMP_256:
429 case WLAN_CIPHER_SUITE_AES_CMAC:
430 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
431 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
432 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
433 case WLAN_CIPHER_SUITE_GCMP:
434 case WLAN_CIPHER_SUITE_GCMP_256:
435 break;
436 default:
437 cs = ieee80211_cs_get(local, params->cipher, sdata->vif.type);
438 break;
439 }
440
441 key = ieee80211_key_alloc(params->cipher, key_idx, params->key_len,
442 params->key, params->seq_len, params->seq,
443 cs);
444 if (IS_ERR(key))
445 return PTR_ERR(key);
446
447 if (pairwise)
448 key->conf.flags |= IEEE80211_KEY_FLAG_PAIRWISE;
449
450 if (params->mode == NL80211_KEY_NO_TX)
451 key->conf.flags |= IEEE80211_KEY_FLAG_NO_AUTO_TX;
452
453 mutex_lock(&local->sta_mtx);
454
455 if (mac_addr) {
456 sta = sta_info_get_bss(sdata, mac_addr);
457 /*
458 * The ASSOC test makes sure the driver is ready to
459 * receive the key. When wpa_supplicant has roamed
460 * using FT, it attempts to set the key before
461 * association has completed, this rejects that attempt
462 * so it will set the key again after association.
463 *
464 * TODO: accept the key if we have a station entry and
465 * add it to the device after the station.
466 */
467 if (!sta || !test_sta_flag(sta, WLAN_STA_ASSOC)) {
468 ieee80211_key_free_unused(key);
469 err = -ENOENT;
470 goto out_unlock;
471 }
472 }
473
474 switch (sdata->vif.type) {
475 case NL80211_IFTYPE_STATION:
476 if (sdata->u.mgd.mfp != IEEE80211_MFP_DISABLED)
477 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
478 break;
479 case NL80211_IFTYPE_AP:
480 case NL80211_IFTYPE_AP_VLAN:
481 /* Keys without a station are used for TX only */
482 if (sta && test_sta_flag(sta, WLAN_STA_MFP))
483 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
484 break;
485 case NL80211_IFTYPE_ADHOC:
486 /* no MFP (yet) */
487 break;
488 case NL80211_IFTYPE_MESH_POINT:
489 #ifdef CONFIG_MAC80211_MESH
490 if (sdata->u.mesh.security != IEEE80211_MESH_SEC_NONE)
491 key->conf.flags |= IEEE80211_KEY_FLAG_RX_MGMT;
492 break;
493 #endif
494 case NL80211_IFTYPE_WDS:
495 case NL80211_IFTYPE_MONITOR:
496 case NL80211_IFTYPE_P2P_DEVICE:
497 case NL80211_IFTYPE_NAN:
498 case NL80211_IFTYPE_UNSPECIFIED:
499 case NUM_NL80211_IFTYPES:
500 case NL80211_IFTYPE_P2P_CLIENT:
501 case NL80211_IFTYPE_P2P_GO:
502 case NL80211_IFTYPE_OCB:
503 /* shouldn't happen */
504 WARN_ON_ONCE(1);
505 break;
506 }
507
508 if (sta)
509 sta->cipher_scheme = cs;
510
511 err = ieee80211_key_link(key, sdata, sta);
512 /* KRACK protection, shouldn't happen but just silently accept key */
513 if (err == -EALREADY)
514 err = 0;
515
516 out_unlock:
517 mutex_unlock(&local->sta_mtx);
518
519 return err;
520 }
521
ieee80211_del_key(struct wiphy * wiphy,struct net_device * dev,u8 key_idx,bool pairwise,const u8 * mac_addr)522 static int ieee80211_del_key(struct wiphy *wiphy, struct net_device *dev,
523 u8 key_idx, bool pairwise, const u8 *mac_addr)
524 {
525 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
526 struct ieee80211_local *local = sdata->local;
527 struct sta_info *sta;
528 struct ieee80211_key *key = NULL;
529 int ret;
530
531 mutex_lock(&local->sta_mtx);
532 mutex_lock(&local->key_mtx);
533
534 if (mac_addr) {
535 ret = -ENOENT;
536
537 sta = sta_info_get_bss(sdata, mac_addr);
538 if (!sta)
539 goto out_unlock;
540
541 if (pairwise)
542 key = key_mtx_dereference(local, sta->ptk[key_idx]);
543 else
544 key = key_mtx_dereference(local, sta->gtk[key_idx]);
545 } else
546 key = key_mtx_dereference(local, sdata->keys[key_idx]);
547
548 if (!key) {
549 ret = -ENOENT;
550 goto out_unlock;
551 }
552
553 ieee80211_key_free(key, sdata->vif.type == NL80211_IFTYPE_STATION);
554
555 ret = 0;
556 out_unlock:
557 mutex_unlock(&local->key_mtx);
558 mutex_unlock(&local->sta_mtx);
559
560 return ret;
561 }
562
ieee80211_get_key(struct wiphy * wiphy,struct net_device * dev,u8 key_idx,bool pairwise,const u8 * mac_addr,void * cookie,void (* callback)(void * cookie,struct key_params * params))563 static int ieee80211_get_key(struct wiphy *wiphy, struct net_device *dev,
564 u8 key_idx, bool pairwise, const u8 *mac_addr,
565 void *cookie,
566 void (*callback)(void *cookie,
567 struct key_params *params))
568 {
569 struct ieee80211_sub_if_data *sdata;
570 struct sta_info *sta = NULL;
571 u8 seq[6] = {0};
572 struct key_params params;
573 struct ieee80211_key *key = NULL;
574 u64 pn64;
575 u32 iv32;
576 u16 iv16;
577 int err = -ENOENT;
578 struct ieee80211_key_seq kseq = {};
579
580 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
581
582 rcu_read_lock();
583
584 if (mac_addr) {
585 sta = sta_info_get_bss(sdata, mac_addr);
586 if (!sta)
587 goto out;
588
589 if (pairwise && key_idx < NUM_DEFAULT_KEYS)
590 key = rcu_dereference(sta->ptk[key_idx]);
591 else if (!pairwise &&
592 key_idx < NUM_DEFAULT_KEYS + NUM_DEFAULT_MGMT_KEYS +
593 NUM_DEFAULT_BEACON_KEYS)
594 key = rcu_dereference(sta->gtk[key_idx]);
595 } else
596 key = rcu_dereference(sdata->keys[key_idx]);
597
598 if (!key)
599 goto out;
600
601 memset(¶ms, 0, sizeof(params));
602
603 params.cipher = key->conf.cipher;
604
605 switch (key->conf.cipher) {
606 case WLAN_CIPHER_SUITE_TKIP:
607 pn64 = atomic64_read(&key->conf.tx_pn);
608 iv32 = TKIP_PN_TO_IV32(pn64);
609 iv16 = TKIP_PN_TO_IV16(pn64);
610
611 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE &&
612 !(key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV)) {
613 drv_get_key_seq(sdata->local, key, &kseq);
614 iv32 = kseq.tkip.iv32;
615 iv16 = kseq.tkip.iv16;
616 }
617
618 seq[0] = iv16 & 0xff;
619 seq[1] = (iv16 >> 8) & 0xff;
620 seq[2] = iv32 & 0xff;
621 seq[3] = (iv32 >> 8) & 0xff;
622 seq[4] = (iv32 >> 16) & 0xff;
623 seq[5] = (iv32 >> 24) & 0xff;
624 params.seq = seq;
625 params.seq_len = 6;
626 break;
627 case WLAN_CIPHER_SUITE_CCMP:
628 case WLAN_CIPHER_SUITE_CCMP_256:
629 case WLAN_CIPHER_SUITE_AES_CMAC:
630 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
631 BUILD_BUG_ON(offsetof(typeof(kseq), ccmp) !=
632 offsetof(typeof(kseq), aes_cmac));
633 fallthrough;
634 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
635 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
636 BUILD_BUG_ON(offsetof(typeof(kseq), ccmp) !=
637 offsetof(typeof(kseq), aes_gmac));
638 fallthrough;
639 case WLAN_CIPHER_SUITE_GCMP:
640 case WLAN_CIPHER_SUITE_GCMP_256:
641 BUILD_BUG_ON(offsetof(typeof(kseq), ccmp) !=
642 offsetof(typeof(kseq), gcmp));
643
644 if (key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE &&
645 !(key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV)) {
646 drv_get_key_seq(sdata->local, key, &kseq);
647 memcpy(seq, kseq.ccmp.pn, 6);
648 } else {
649 pn64 = atomic64_read(&key->conf.tx_pn);
650 seq[0] = pn64;
651 seq[1] = pn64 >> 8;
652 seq[2] = pn64 >> 16;
653 seq[3] = pn64 >> 24;
654 seq[4] = pn64 >> 32;
655 seq[5] = pn64 >> 40;
656 }
657 params.seq = seq;
658 params.seq_len = 6;
659 break;
660 default:
661 if (!(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
662 break;
663 if (WARN_ON(key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_IV))
664 break;
665 drv_get_key_seq(sdata->local, key, &kseq);
666 params.seq = kseq.hw.seq;
667 params.seq_len = kseq.hw.seq_len;
668 break;
669 }
670
671 params.key = key->conf.key;
672 params.key_len = key->conf.keylen;
673
674 callback(cookie, ¶ms);
675 err = 0;
676
677 out:
678 rcu_read_unlock();
679 return err;
680 }
681
ieee80211_config_default_key(struct wiphy * wiphy,struct net_device * dev,u8 key_idx,bool uni,bool multi)682 static int ieee80211_config_default_key(struct wiphy *wiphy,
683 struct net_device *dev,
684 u8 key_idx, bool uni,
685 bool multi)
686 {
687 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
688
689 ieee80211_set_default_key(sdata, key_idx, uni, multi);
690
691 return 0;
692 }
693
ieee80211_config_default_mgmt_key(struct wiphy * wiphy,struct net_device * dev,u8 key_idx)694 static int ieee80211_config_default_mgmt_key(struct wiphy *wiphy,
695 struct net_device *dev,
696 u8 key_idx)
697 {
698 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
699
700 ieee80211_set_default_mgmt_key(sdata, key_idx);
701
702 return 0;
703 }
704
ieee80211_config_default_beacon_key(struct wiphy * wiphy,struct net_device * dev,u8 key_idx)705 static int ieee80211_config_default_beacon_key(struct wiphy *wiphy,
706 struct net_device *dev,
707 u8 key_idx)
708 {
709 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
710
711 ieee80211_set_default_beacon_key(sdata, key_idx);
712
713 return 0;
714 }
715
sta_set_rate_info_tx(struct sta_info * sta,const struct ieee80211_tx_rate * rate,struct rate_info * rinfo)716 void sta_set_rate_info_tx(struct sta_info *sta,
717 const struct ieee80211_tx_rate *rate,
718 struct rate_info *rinfo)
719 {
720 rinfo->flags = 0;
721 if (rate->flags & IEEE80211_TX_RC_MCS) {
722 rinfo->flags |= RATE_INFO_FLAGS_MCS;
723 rinfo->mcs = rate->idx;
724 } else if (rate->flags & IEEE80211_TX_RC_VHT_MCS) {
725 rinfo->flags |= RATE_INFO_FLAGS_VHT_MCS;
726 rinfo->mcs = ieee80211_rate_get_vht_mcs(rate);
727 rinfo->nss = ieee80211_rate_get_vht_nss(rate);
728 } else {
729 struct ieee80211_supported_band *sband;
730 int shift = ieee80211_vif_get_shift(&sta->sdata->vif);
731 u16 brate;
732
733 sband = ieee80211_get_sband(sta->sdata);
734 WARN_ON_ONCE(sband && !sband->bitrates);
735 if (sband && sband->bitrates) {
736 brate = sband->bitrates[rate->idx].bitrate;
737 rinfo->legacy = DIV_ROUND_UP(brate, 1 << shift);
738 }
739 }
740 if (rate->flags & IEEE80211_TX_RC_40_MHZ_WIDTH)
741 rinfo->bw = RATE_INFO_BW_40;
742 else if (rate->flags & IEEE80211_TX_RC_80_MHZ_WIDTH)
743 rinfo->bw = RATE_INFO_BW_80;
744 else if (rate->flags & IEEE80211_TX_RC_160_MHZ_WIDTH)
745 rinfo->bw = RATE_INFO_BW_160;
746 else
747 rinfo->bw = RATE_INFO_BW_20;
748 if (rate->flags & IEEE80211_TX_RC_SHORT_GI)
749 rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
750 }
751
ieee80211_dump_station(struct wiphy * wiphy,struct net_device * dev,int idx,u8 * mac,struct station_info * sinfo)752 static int ieee80211_dump_station(struct wiphy *wiphy, struct net_device *dev,
753 int idx, u8 *mac, struct station_info *sinfo)
754 {
755 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
756 struct ieee80211_local *local = sdata->local;
757 struct sta_info *sta;
758 int ret = -ENOENT;
759
760 mutex_lock(&local->sta_mtx);
761
762 sta = sta_info_get_by_idx(sdata, idx);
763 if (sta) {
764 ret = 0;
765 memcpy(mac, sta->sta.addr, ETH_ALEN);
766 sta_set_sinfo(sta, sinfo, true);
767 }
768
769 mutex_unlock(&local->sta_mtx);
770
771 return ret;
772 }
773
ieee80211_dump_survey(struct wiphy * wiphy,struct net_device * dev,int idx,struct survey_info * survey)774 static int ieee80211_dump_survey(struct wiphy *wiphy, struct net_device *dev,
775 int idx, struct survey_info *survey)
776 {
777 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
778
779 return drv_get_survey(local, idx, survey);
780 }
781
ieee80211_get_station(struct wiphy * wiphy,struct net_device * dev,const u8 * mac,struct station_info * sinfo)782 static int ieee80211_get_station(struct wiphy *wiphy, struct net_device *dev,
783 const u8 *mac, struct station_info *sinfo)
784 {
785 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
786 struct ieee80211_local *local = sdata->local;
787 struct sta_info *sta;
788 int ret = -ENOENT;
789
790 mutex_lock(&local->sta_mtx);
791
792 sta = sta_info_get_bss(sdata, mac);
793 if (sta) {
794 ret = 0;
795 sta_set_sinfo(sta, sinfo, true);
796 }
797
798 mutex_unlock(&local->sta_mtx);
799
800 return ret;
801 }
802
ieee80211_set_monitor_channel(struct wiphy * wiphy,struct cfg80211_chan_def * chandef)803 static int ieee80211_set_monitor_channel(struct wiphy *wiphy,
804 struct cfg80211_chan_def *chandef)
805 {
806 struct ieee80211_local *local = wiphy_priv(wiphy);
807 struct ieee80211_sub_if_data *sdata;
808 int ret = 0;
809
810 if (cfg80211_chandef_identical(&local->monitor_chandef, chandef))
811 return 0;
812
813 mutex_lock(&local->mtx);
814 if (local->use_chanctx) {
815 sdata = rtnl_dereference(local->monitor_sdata);
816 if (sdata) {
817 ieee80211_vif_release_channel(sdata);
818 ret = ieee80211_vif_use_channel(sdata, chandef,
819 IEEE80211_CHANCTX_EXCLUSIVE);
820 }
821 } else if (local->open_count == local->monitors) {
822 local->_oper_chandef = *chandef;
823 ieee80211_hw_config(local, 0);
824 }
825
826 if (ret == 0)
827 local->monitor_chandef = *chandef;
828 mutex_unlock(&local->mtx);
829
830 return ret;
831 }
832
ieee80211_set_probe_resp(struct ieee80211_sub_if_data * sdata,const u8 * resp,size_t resp_len,const struct ieee80211_csa_settings * csa)833 static int ieee80211_set_probe_resp(struct ieee80211_sub_if_data *sdata,
834 const u8 *resp, size_t resp_len,
835 const struct ieee80211_csa_settings *csa)
836 {
837 struct probe_resp *new, *old;
838
839 if (!resp || !resp_len)
840 return 1;
841
842 old = sdata_dereference(sdata->u.ap.probe_resp, sdata);
843
844 new = kzalloc(sizeof(struct probe_resp) + resp_len, GFP_KERNEL);
845 if (!new)
846 return -ENOMEM;
847
848 new->len = resp_len;
849 memcpy(new->data, resp, resp_len);
850
851 if (csa)
852 memcpy(new->cntdwn_counter_offsets, csa->counter_offsets_presp,
853 csa->n_counter_offsets_presp *
854 sizeof(new->cntdwn_counter_offsets[0]));
855
856 rcu_assign_pointer(sdata->u.ap.probe_resp, new);
857 if (old)
858 kfree_rcu(old, rcu_head);
859
860 return 0;
861 }
862
ieee80211_set_fils_discovery(struct ieee80211_sub_if_data * sdata,struct cfg80211_fils_discovery * params)863 static int ieee80211_set_fils_discovery(struct ieee80211_sub_if_data *sdata,
864 struct cfg80211_fils_discovery *params)
865 {
866 struct fils_discovery_data *new, *old = NULL;
867 struct ieee80211_fils_discovery *fd;
868
869 if (!params->tmpl || !params->tmpl_len)
870 return -EINVAL;
871
872 fd = &sdata->vif.bss_conf.fils_discovery;
873 fd->min_interval = params->min_interval;
874 fd->max_interval = params->max_interval;
875
876 old = sdata_dereference(sdata->u.ap.fils_discovery, sdata);
877 new = kzalloc(sizeof(*new) + params->tmpl_len, GFP_KERNEL);
878 if (!new)
879 return -ENOMEM;
880 new->len = params->tmpl_len;
881 memcpy(new->data, params->tmpl, params->tmpl_len);
882 rcu_assign_pointer(sdata->u.ap.fils_discovery, new);
883
884 if (old)
885 kfree_rcu(old, rcu_head);
886
887 return 0;
888 }
889
890 static int
ieee80211_set_unsol_bcast_probe_resp(struct ieee80211_sub_if_data * sdata,struct cfg80211_unsol_bcast_probe_resp * params)891 ieee80211_set_unsol_bcast_probe_resp(struct ieee80211_sub_if_data *sdata,
892 struct cfg80211_unsol_bcast_probe_resp *params)
893 {
894 struct unsol_bcast_probe_resp_data *new, *old = NULL;
895
896 if (!params->tmpl || !params->tmpl_len)
897 return -EINVAL;
898
899 old = sdata_dereference(sdata->u.ap.unsol_bcast_probe_resp, sdata);
900 new = kzalloc(sizeof(*new) + params->tmpl_len, GFP_KERNEL);
901 if (!new)
902 return -ENOMEM;
903 new->len = params->tmpl_len;
904 memcpy(new->data, params->tmpl, params->tmpl_len);
905 rcu_assign_pointer(sdata->u.ap.unsol_bcast_probe_resp, new);
906
907 if (old)
908 kfree_rcu(old, rcu_head);
909
910 sdata->vif.bss_conf.unsol_bcast_probe_resp_interval =
911 params->interval;
912
913 return 0;
914 }
915
ieee80211_set_ftm_responder_params(struct ieee80211_sub_if_data * sdata,const u8 * lci,size_t lci_len,const u8 * civicloc,size_t civicloc_len)916 static int ieee80211_set_ftm_responder_params(
917 struct ieee80211_sub_if_data *sdata,
918 const u8 *lci, size_t lci_len,
919 const u8 *civicloc, size_t civicloc_len)
920 {
921 struct ieee80211_ftm_responder_params *new, *old;
922 struct ieee80211_bss_conf *bss_conf;
923 u8 *pos;
924 int len;
925
926 if (!lci_len && !civicloc_len)
927 return 0;
928
929 bss_conf = &sdata->vif.bss_conf;
930 old = bss_conf->ftmr_params;
931 len = lci_len + civicloc_len;
932
933 new = kzalloc(sizeof(*new) + len, GFP_KERNEL);
934 if (!new)
935 return -ENOMEM;
936
937 pos = (u8 *)(new + 1);
938 if (lci_len) {
939 new->lci_len = lci_len;
940 new->lci = pos;
941 memcpy(pos, lci, lci_len);
942 pos += lci_len;
943 }
944
945 if (civicloc_len) {
946 new->civicloc_len = civicloc_len;
947 new->civicloc = pos;
948 memcpy(pos, civicloc, civicloc_len);
949 pos += civicloc_len;
950 }
951
952 bss_conf->ftmr_params = new;
953 kfree(old);
954
955 return 0;
956 }
957
ieee80211_assign_beacon(struct ieee80211_sub_if_data * sdata,struct cfg80211_beacon_data * params,const struct ieee80211_csa_settings * csa)958 static int ieee80211_assign_beacon(struct ieee80211_sub_if_data *sdata,
959 struct cfg80211_beacon_data *params,
960 const struct ieee80211_csa_settings *csa)
961 {
962 struct beacon_data *new, *old;
963 int new_head_len, new_tail_len;
964 int size, err;
965 u32 changed = BSS_CHANGED_BEACON;
966
967 old = sdata_dereference(sdata->u.ap.beacon, sdata);
968
969
970 /* Need to have a beacon head if we don't have one yet */
971 if (!params->head && !old)
972 return -EINVAL;
973
974 /* new or old head? */
975 if (params->head)
976 new_head_len = params->head_len;
977 else
978 new_head_len = old->head_len;
979
980 /* new or old tail? */
981 if (params->tail || !old)
982 /* params->tail_len will be zero for !params->tail */
983 new_tail_len = params->tail_len;
984 else
985 new_tail_len = old->tail_len;
986
987 size = sizeof(*new) + new_head_len + new_tail_len;
988
989 new = kzalloc(size, GFP_KERNEL);
990 if (!new)
991 return -ENOMEM;
992
993 /* start filling the new info now */
994
995 /*
996 * pointers go into the block we allocated,
997 * memory is | beacon_data | head | tail |
998 */
999 new->head = ((u8 *) new) + sizeof(*new);
1000 new->tail = new->head + new_head_len;
1001 new->head_len = new_head_len;
1002 new->tail_len = new_tail_len;
1003
1004 if (csa) {
1005 new->cntdwn_current_counter = csa->count;
1006 memcpy(new->cntdwn_counter_offsets, csa->counter_offsets_beacon,
1007 csa->n_counter_offsets_beacon *
1008 sizeof(new->cntdwn_counter_offsets[0]));
1009 }
1010
1011 /* copy in head */
1012 if (params->head)
1013 memcpy(new->head, params->head, new_head_len);
1014 else
1015 memcpy(new->head, old->head, new_head_len);
1016
1017 /* copy in optional tail */
1018 if (params->tail)
1019 memcpy(new->tail, params->tail, new_tail_len);
1020 else
1021 if (old)
1022 memcpy(new->tail, old->tail, new_tail_len);
1023
1024 err = ieee80211_set_probe_resp(sdata, params->probe_resp,
1025 params->probe_resp_len, csa);
1026 if (err < 0) {
1027 kfree(new);
1028 return err;
1029 }
1030 if (err == 0)
1031 changed |= BSS_CHANGED_AP_PROBE_RESP;
1032
1033 if (params->ftm_responder != -1) {
1034 sdata->vif.bss_conf.ftm_responder = params->ftm_responder;
1035 err = ieee80211_set_ftm_responder_params(sdata,
1036 params->lci,
1037 params->lci_len,
1038 params->civicloc,
1039 params->civicloc_len);
1040
1041 if (err < 0) {
1042 kfree(new);
1043 return err;
1044 }
1045
1046 changed |= BSS_CHANGED_FTM_RESPONDER;
1047 }
1048
1049 rcu_assign_pointer(sdata->u.ap.beacon, new);
1050
1051 if (old)
1052 kfree_rcu(old, rcu_head);
1053
1054 return changed;
1055 }
1056
ieee80211_start_ap(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_ap_settings * params)1057 static int ieee80211_start_ap(struct wiphy *wiphy, struct net_device *dev,
1058 struct cfg80211_ap_settings *params)
1059 {
1060 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1061 struct ieee80211_local *local = sdata->local;
1062 struct beacon_data *old;
1063 struct ieee80211_sub_if_data *vlan;
1064 u32 changed = BSS_CHANGED_BEACON_INT |
1065 BSS_CHANGED_BEACON_ENABLED |
1066 BSS_CHANGED_BEACON |
1067 BSS_CHANGED_SSID |
1068 BSS_CHANGED_P2P_PS |
1069 BSS_CHANGED_TXPOWER |
1070 BSS_CHANGED_TWT;
1071 int i, err;
1072 int prev_beacon_int;
1073
1074 old = sdata_dereference(sdata->u.ap.beacon, sdata);
1075 if (old)
1076 return -EALREADY;
1077
1078 if (params->smps_mode != NL80211_SMPS_OFF)
1079 return -ENOTSUPP;
1080
1081 sdata->smps_mode = IEEE80211_SMPS_OFF;
1082
1083 sdata->needed_rx_chains = sdata->local->rx_chains;
1084
1085 prev_beacon_int = sdata->vif.bss_conf.beacon_int;
1086 sdata->vif.bss_conf.beacon_int = params->beacon_interval;
1087
1088 if (params->he_cap && params->he_oper) {
1089 sdata->vif.bss_conf.he_support = true;
1090 sdata->vif.bss_conf.htc_trig_based_pkt_ext =
1091 le32_get_bits(params->he_oper->he_oper_params,
1092 IEEE80211_HE_OPERATION_DFLT_PE_DURATION_MASK);
1093 sdata->vif.bss_conf.frame_time_rts_th =
1094 le32_get_bits(params->he_oper->he_oper_params,
1095 IEEE80211_HE_OPERATION_RTS_THRESHOLD_MASK);
1096 changed |= BSS_CHANGED_HE_OBSS_PD;
1097
1098 if (params->he_bss_color.enabled)
1099 changed |= BSS_CHANGED_HE_BSS_COLOR;
1100 }
1101
1102 mutex_lock(&local->mtx);
1103 err = ieee80211_vif_use_channel(sdata, ¶ms->chandef,
1104 IEEE80211_CHANCTX_SHARED);
1105 if (!err)
1106 ieee80211_vif_copy_chanctx_to_vlans(sdata, false);
1107 mutex_unlock(&local->mtx);
1108 if (err) {
1109 sdata->vif.bss_conf.beacon_int = prev_beacon_int;
1110 return err;
1111 }
1112
1113 /*
1114 * Apply control port protocol, this allows us to
1115 * not encrypt dynamic WEP control frames.
1116 */
1117 sdata->control_port_protocol = params->crypto.control_port_ethertype;
1118 sdata->control_port_no_encrypt = params->crypto.control_port_no_encrypt;
1119 sdata->control_port_over_nl80211 =
1120 params->crypto.control_port_over_nl80211;
1121 sdata->control_port_no_preauth =
1122 params->crypto.control_port_no_preauth;
1123 sdata->encrypt_headroom = ieee80211_cs_headroom(sdata->local,
1124 ¶ms->crypto,
1125 sdata->vif.type);
1126
1127 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list) {
1128 vlan->control_port_protocol =
1129 params->crypto.control_port_ethertype;
1130 vlan->control_port_no_encrypt =
1131 params->crypto.control_port_no_encrypt;
1132 vlan->control_port_over_nl80211 =
1133 params->crypto.control_port_over_nl80211;
1134 vlan->control_port_no_preauth =
1135 params->crypto.control_port_no_preauth;
1136 vlan->encrypt_headroom =
1137 ieee80211_cs_headroom(sdata->local,
1138 ¶ms->crypto,
1139 vlan->vif.type);
1140 }
1141
1142 sdata->vif.bss_conf.dtim_period = params->dtim_period;
1143 sdata->vif.bss_conf.enable_beacon = true;
1144 sdata->vif.bss_conf.allow_p2p_go_ps = sdata->vif.p2p;
1145 sdata->vif.bss_conf.twt_responder = params->twt_responder;
1146 memcpy(&sdata->vif.bss_conf.he_obss_pd, ¶ms->he_obss_pd,
1147 sizeof(struct ieee80211_he_obss_pd));
1148 memcpy(&sdata->vif.bss_conf.he_bss_color, ¶ms->he_bss_color,
1149 sizeof(struct ieee80211_he_bss_color));
1150 sdata->vif.bss_conf.s1g = params->chandef.chan->band ==
1151 NL80211_BAND_S1GHZ;
1152
1153 sdata->vif.bss_conf.ssid_len = params->ssid_len;
1154 if (params->ssid_len)
1155 memcpy(sdata->vif.bss_conf.ssid, params->ssid,
1156 params->ssid_len);
1157 sdata->vif.bss_conf.hidden_ssid =
1158 (params->hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE);
1159
1160 memset(&sdata->vif.bss_conf.p2p_noa_attr, 0,
1161 sizeof(sdata->vif.bss_conf.p2p_noa_attr));
1162 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow =
1163 params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
1164 if (params->p2p_opp_ps)
1165 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
1166 IEEE80211_P2P_OPPPS_ENABLE_BIT;
1167
1168 sdata->beacon_rate_set = false;
1169 if (wiphy_ext_feature_isset(local->hw.wiphy,
1170 NL80211_EXT_FEATURE_BEACON_RATE_LEGACY)) {
1171 for (i = 0; i < NUM_NL80211_BANDS; i++) {
1172 sdata->beacon_rateidx_mask[i] =
1173 params->beacon_rate.control[i].legacy;
1174 if (sdata->beacon_rateidx_mask[i])
1175 sdata->beacon_rate_set = true;
1176 }
1177 }
1178
1179 if (ieee80211_hw_check(&local->hw, HAS_RATE_CONTROL))
1180 sdata->vif.bss_conf.beacon_tx_rate = params->beacon_rate;
1181
1182 err = ieee80211_assign_beacon(sdata, ¶ms->beacon, NULL);
1183 if (err < 0)
1184 goto error;
1185 changed |= err;
1186
1187 if (params->fils_discovery.max_interval) {
1188 err = ieee80211_set_fils_discovery(sdata,
1189 ¶ms->fils_discovery);
1190 if (err < 0)
1191 goto error;
1192 changed |= BSS_CHANGED_FILS_DISCOVERY;
1193 }
1194
1195 if (params->unsol_bcast_probe_resp.interval) {
1196 err = ieee80211_set_unsol_bcast_probe_resp(sdata,
1197 ¶ms->unsol_bcast_probe_resp);
1198 if (err < 0)
1199 goto error;
1200 changed |= BSS_CHANGED_UNSOL_BCAST_PROBE_RESP;
1201 }
1202
1203 err = drv_start_ap(sdata->local, sdata);
1204 if (err) {
1205 old = sdata_dereference(sdata->u.ap.beacon, sdata);
1206
1207 if (old)
1208 kfree_rcu(old, rcu_head);
1209 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
1210 goto error;
1211 }
1212
1213 ieee80211_recalc_dtim(local, sdata);
1214 ieee80211_bss_info_change_notify(sdata, changed);
1215
1216 netif_carrier_on(dev);
1217 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
1218 netif_carrier_on(vlan->dev);
1219
1220 return 0;
1221
1222 error:
1223 mutex_lock(&local->mtx);
1224 ieee80211_vif_release_channel(sdata);
1225 mutex_unlock(&local->mtx);
1226
1227 return err;
1228 }
1229
ieee80211_change_beacon(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_beacon_data * params)1230 static int ieee80211_change_beacon(struct wiphy *wiphy, struct net_device *dev,
1231 struct cfg80211_beacon_data *params)
1232 {
1233 struct ieee80211_sub_if_data *sdata;
1234 struct beacon_data *old;
1235 int err;
1236
1237 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1238 sdata_assert_lock(sdata);
1239
1240 /* don't allow changing the beacon while CSA is in place - offset
1241 * of channel switch counter may change
1242 */
1243 if (sdata->vif.csa_active)
1244 return -EBUSY;
1245
1246 old = sdata_dereference(sdata->u.ap.beacon, sdata);
1247 if (!old)
1248 return -ENOENT;
1249
1250 err = ieee80211_assign_beacon(sdata, params, NULL);
1251 if (err < 0)
1252 return err;
1253 ieee80211_bss_info_change_notify(sdata, err);
1254 return 0;
1255 }
1256
ieee80211_stop_ap(struct wiphy * wiphy,struct net_device * dev)1257 static int ieee80211_stop_ap(struct wiphy *wiphy, struct net_device *dev)
1258 {
1259 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1260 struct ieee80211_sub_if_data *vlan;
1261 struct ieee80211_local *local = sdata->local;
1262 struct beacon_data *old_beacon;
1263 struct probe_resp *old_probe_resp;
1264 struct fils_discovery_data *old_fils_discovery;
1265 struct unsol_bcast_probe_resp_data *old_unsol_bcast_probe_resp;
1266 struct cfg80211_chan_def chandef;
1267
1268 sdata_assert_lock(sdata);
1269
1270 old_beacon = sdata_dereference(sdata->u.ap.beacon, sdata);
1271 if (!old_beacon)
1272 return -ENOENT;
1273 old_probe_resp = sdata_dereference(sdata->u.ap.probe_resp, sdata);
1274 old_fils_discovery = sdata_dereference(sdata->u.ap.fils_discovery,
1275 sdata);
1276 old_unsol_bcast_probe_resp =
1277 sdata_dereference(sdata->u.ap.unsol_bcast_probe_resp,
1278 sdata);
1279
1280 /* abort any running channel switch */
1281 mutex_lock(&local->mtx);
1282 sdata->vif.csa_active = false;
1283 if (sdata->csa_block_tx) {
1284 ieee80211_wake_vif_queues(local, sdata,
1285 IEEE80211_QUEUE_STOP_REASON_CSA);
1286 sdata->csa_block_tx = false;
1287 }
1288
1289 mutex_unlock(&local->mtx);
1290
1291 kfree(sdata->u.ap.next_beacon);
1292 sdata->u.ap.next_beacon = NULL;
1293
1294 /* turn off carrier for this interface and dependent VLANs */
1295 list_for_each_entry(vlan, &sdata->u.ap.vlans, u.vlan.list)
1296 netif_carrier_off(vlan->dev);
1297 netif_carrier_off(dev);
1298
1299 /* remove beacon and probe response */
1300 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
1301 RCU_INIT_POINTER(sdata->u.ap.probe_resp, NULL);
1302 RCU_INIT_POINTER(sdata->u.ap.fils_discovery, NULL);
1303 RCU_INIT_POINTER(sdata->u.ap.unsol_bcast_probe_resp, NULL);
1304 kfree_rcu(old_beacon, rcu_head);
1305 if (old_probe_resp)
1306 kfree_rcu(old_probe_resp, rcu_head);
1307 if (old_fils_discovery)
1308 kfree_rcu(old_fils_discovery, rcu_head);
1309 if (old_unsol_bcast_probe_resp)
1310 kfree_rcu(old_unsol_bcast_probe_resp, rcu_head);
1311
1312 kfree(sdata->vif.bss_conf.ftmr_params);
1313 sdata->vif.bss_conf.ftmr_params = NULL;
1314
1315 __sta_info_flush(sdata, true);
1316 ieee80211_free_keys(sdata, true);
1317
1318 sdata->vif.bss_conf.enable_beacon = false;
1319 sdata->beacon_rate_set = false;
1320 sdata->vif.bss_conf.ssid_len = 0;
1321 clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED, &sdata->state);
1322 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON_ENABLED);
1323
1324 if (sdata->wdev.cac_started) {
1325 chandef = sdata->vif.bss_conf.chandef;
1326 cancel_delayed_work_sync(&sdata->dfs_cac_timer_work);
1327 cfg80211_cac_event(sdata->dev, &chandef,
1328 NL80211_RADAR_CAC_ABORTED,
1329 GFP_KERNEL);
1330 }
1331
1332 drv_stop_ap(sdata->local, sdata);
1333
1334 /* free all potentially still buffered bcast frames */
1335 local->total_ps_buffered -= skb_queue_len(&sdata->u.ap.ps.bc_buf);
1336 ieee80211_purge_tx_queue(&local->hw, &sdata->u.ap.ps.bc_buf);
1337
1338 mutex_lock(&local->mtx);
1339 ieee80211_vif_copy_chanctx_to_vlans(sdata, true);
1340 ieee80211_vif_release_channel(sdata);
1341 mutex_unlock(&local->mtx);
1342
1343 return 0;
1344 }
1345
sta_apply_auth_flags(struct ieee80211_local * local,struct sta_info * sta,u32 mask,u32 set)1346 static int sta_apply_auth_flags(struct ieee80211_local *local,
1347 struct sta_info *sta,
1348 u32 mask, u32 set)
1349 {
1350 int ret;
1351
1352 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
1353 set & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
1354 !test_sta_flag(sta, WLAN_STA_AUTH)) {
1355 ret = sta_info_move_state(sta, IEEE80211_STA_AUTH);
1356 if (ret)
1357 return ret;
1358 }
1359
1360 if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
1361 set & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
1362 !test_sta_flag(sta, WLAN_STA_ASSOC)) {
1363 /*
1364 * When peer becomes associated, init rate control as
1365 * well. Some drivers require rate control initialized
1366 * before drv_sta_state() is called.
1367 */
1368 if (!test_sta_flag(sta, WLAN_STA_RATE_CONTROL))
1369 rate_control_rate_init(sta);
1370
1371 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
1372 if (ret)
1373 return ret;
1374 }
1375
1376 if (mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
1377 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED))
1378 ret = sta_info_move_state(sta, IEEE80211_STA_AUTHORIZED);
1379 else if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
1380 ret = sta_info_move_state(sta, IEEE80211_STA_ASSOC);
1381 else
1382 ret = 0;
1383 if (ret)
1384 return ret;
1385 }
1386
1387 if (mask & BIT(NL80211_STA_FLAG_ASSOCIATED) &&
1388 !(set & BIT(NL80211_STA_FLAG_ASSOCIATED)) &&
1389 test_sta_flag(sta, WLAN_STA_ASSOC)) {
1390 ret = sta_info_move_state(sta, IEEE80211_STA_AUTH);
1391 if (ret)
1392 return ret;
1393 }
1394
1395 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED) &&
1396 !(set & BIT(NL80211_STA_FLAG_AUTHENTICATED)) &&
1397 test_sta_flag(sta, WLAN_STA_AUTH)) {
1398 ret = sta_info_move_state(sta, IEEE80211_STA_NONE);
1399 if (ret)
1400 return ret;
1401 }
1402
1403 return 0;
1404 }
1405
sta_apply_mesh_params(struct ieee80211_local * local,struct sta_info * sta,struct station_parameters * params)1406 static void sta_apply_mesh_params(struct ieee80211_local *local,
1407 struct sta_info *sta,
1408 struct station_parameters *params)
1409 {
1410 #ifdef CONFIG_MAC80211_MESH
1411 struct ieee80211_sub_if_data *sdata = sta->sdata;
1412 u32 changed = 0;
1413
1414 if (params->sta_modify_mask & STATION_PARAM_APPLY_PLINK_STATE) {
1415 switch (params->plink_state) {
1416 case NL80211_PLINK_ESTAB:
1417 if (sta->mesh->plink_state != NL80211_PLINK_ESTAB)
1418 changed = mesh_plink_inc_estab_count(sdata);
1419 sta->mesh->plink_state = params->plink_state;
1420 sta->mesh->aid = params->peer_aid;
1421
1422 ieee80211_mps_sta_status_update(sta);
1423 changed |= ieee80211_mps_set_sta_local_pm(sta,
1424 sdata->u.mesh.mshcfg.power_mode);
1425
1426 ewma_mesh_tx_rate_avg_init(&sta->mesh->tx_rate_avg);
1427 /* init at low value */
1428 ewma_mesh_tx_rate_avg_add(&sta->mesh->tx_rate_avg, 10);
1429
1430 break;
1431 case NL80211_PLINK_LISTEN:
1432 case NL80211_PLINK_BLOCKED:
1433 case NL80211_PLINK_OPN_SNT:
1434 case NL80211_PLINK_OPN_RCVD:
1435 case NL80211_PLINK_CNF_RCVD:
1436 case NL80211_PLINK_HOLDING:
1437 if (sta->mesh->plink_state == NL80211_PLINK_ESTAB)
1438 changed = mesh_plink_dec_estab_count(sdata);
1439 sta->mesh->plink_state = params->plink_state;
1440
1441 ieee80211_mps_sta_status_update(sta);
1442 changed |= ieee80211_mps_set_sta_local_pm(sta,
1443 NL80211_MESH_POWER_UNKNOWN);
1444 break;
1445 default:
1446 /* nothing */
1447 break;
1448 }
1449 }
1450
1451 switch (params->plink_action) {
1452 case NL80211_PLINK_ACTION_NO_ACTION:
1453 /* nothing */
1454 break;
1455 case NL80211_PLINK_ACTION_OPEN:
1456 changed |= mesh_plink_open(sta);
1457 break;
1458 case NL80211_PLINK_ACTION_BLOCK:
1459 changed |= mesh_plink_block(sta);
1460 break;
1461 }
1462
1463 if (params->local_pm)
1464 changed |= ieee80211_mps_set_sta_local_pm(sta,
1465 params->local_pm);
1466
1467 ieee80211_mbss_info_change_notify(sdata, changed);
1468 #endif
1469 }
1470
sta_apply_parameters(struct ieee80211_local * local,struct sta_info * sta,struct station_parameters * params)1471 static int sta_apply_parameters(struct ieee80211_local *local,
1472 struct sta_info *sta,
1473 struct station_parameters *params)
1474 {
1475 int ret = 0;
1476 struct ieee80211_supported_band *sband;
1477 struct ieee80211_sub_if_data *sdata = sta->sdata;
1478 u32 mask, set;
1479
1480 sband = ieee80211_get_sband(sdata);
1481 if (!sband)
1482 return -EINVAL;
1483
1484 mask = params->sta_flags_mask;
1485 set = params->sta_flags_set;
1486
1487 if (ieee80211_vif_is_mesh(&sdata->vif)) {
1488 /*
1489 * In mesh mode, ASSOCIATED isn't part of the nl80211
1490 * API but must follow AUTHENTICATED for driver state.
1491 */
1492 if (mask & BIT(NL80211_STA_FLAG_AUTHENTICATED))
1493 mask |= BIT(NL80211_STA_FLAG_ASSOCIATED);
1494 if (set & BIT(NL80211_STA_FLAG_AUTHENTICATED))
1495 set |= BIT(NL80211_STA_FLAG_ASSOCIATED);
1496 } else if (test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1497 /*
1498 * TDLS -- everything follows authorized, but
1499 * only becoming authorized is possible, not
1500 * going back
1501 */
1502 if (set & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
1503 set |= BIT(NL80211_STA_FLAG_AUTHENTICATED) |
1504 BIT(NL80211_STA_FLAG_ASSOCIATED);
1505 mask |= BIT(NL80211_STA_FLAG_AUTHENTICATED) |
1506 BIT(NL80211_STA_FLAG_ASSOCIATED);
1507 }
1508 }
1509
1510 if (mask & BIT(NL80211_STA_FLAG_WME) &&
1511 local->hw.queues >= IEEE80211_NUM_ACS)
1512 sta->sta.wme = set & BIT(NL80211_STA_FLAG_WME);
1513
1514 /* auth flags will be set later for TDLS,
1515 * and for unassociated stations that move to assocaited */
1516 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER) &&
1517 !((mask & BIT(NL80211_STA_FLAG_ASSOCIATED)) &&
1518 (set & BIT(NL80211_STA_FLAG_ASSOCIATED)))) {
1519 ret = sta_apply_auth_flags(local, sta, mask, set);
1520 if (ret)
1521 return ret;
1522 }
1523
1524 if (mask & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE)) {
1525 if (set & BIT(NL80211_STA_FLAG_SHORT_PREAMBLE))
1526 set_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
1527 else
1528 clear_sta_flag(sta, WLAN_STA_SHORT_PREAMBLE);
1529 }
1530
1531 if (mask & BIT(NL80211_STA_FLAG_MFP)) {
1532 sta->sta.mfp = !!(set & BIT(NL80211_STA_FLAG_MFP));
1533 if (set & BIT(NL80211_STA_FLAG_MFP))
1534 set_sta_flag(sta, WLAN_STA_MFP);
1535 else
1536 clear_sta_flag(sta, WLAN_STA_MFP);
1537 }
1538
1539 if (mask & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
1540 if (set & BIT(NL80211_STA_FLAG_TDLS_PEER))
1541 set_sta_flag(sta, WLAN_STA_TDLS_PEER);
1542 else
1543 clear_sta_flag(sta, WLAN_STA_TDLS_PEER);
1544 }
1545
1546 /* mark TDLS channel switch support, if the AP allows it */
1547 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER) &&
1548 !sdata->u.mgd.tdls_chan_switch_prohibited &&
1549 params->ext_capab_len >= 4 &&
1550 params->ext_capab[3] & WLAN_EXT_CAPA4_TDLS_CHAN_SWITCH)
1551 set_sta_flag(sta, WLAN_STA_TDLS_CHAN_SWITCH);
1552
1553 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER) &&
1554 !sdata->u.mgd.tdls_wider_bw_prohibited &&
1555 ieee80211_hw_check(&local->hw, TDLS_WIDER_BW) &&
1556 params->ext_capab_len >= 8 &&
1557 params->ext_capab[7] & WLAN_EXT_CAPA8_TDLS_WIDE_BW_ENABLED)
1558 set_sta_flag(sta, WLAN_STA_TDLS_WIDER_BW);
1559
1560 if (params->sta_modify_mask & STATION_PARAM_APPLY_UAPSD) {
1561 sta->sta.uapsd_queues = params->uapsd_queues;
1562 sta->sta.max_sp = params->max_sp;
1563 }
1564
1565 /* The sender might not have sent the last bit, consider it to be 0 */
1566 if (params->ext_capab_len >= 8) {
1567 u8 val = (params->ext_capab[7] &
1568 WLAN_EXT_CAPA8_MAX_MSDU_IN_AMSDU_LSB) >> 7;
1569
1570 /* we did get all the bits, take the MSB as well */
1571 if (params->ext_capab_len >= 9) {
1572 u8 val_msb = params->ext_capab[8] &
1573 WLAN_EXT_CAPA9_MAX_MSDU_IN_AMSDU_MSB;
1574 val_msb <<= 1;
1575 val |= val_msb;
1576 }
1577
1578 switch (val) {
1579 case 1:
1580 sta->sta.max_amsdu_subframes = 32;
1581 break;
1582 case 2:
1583 sta->sta.max_amsdu_subframes = 16;
1584 break;
1585 case 3:
1586 sta->sta.max_amsdu_subframes = 8;
1587 break;
1588 default:
1589 sta->sta.max_amsdu_subframes = 0;
1590 }
1591 }
1592
1593 /*
1594 * cfg80211 validates this (1-2007) and allows setting the AID
1595 * only when creating a new station entry
1596 */
1597 if (params->aid)
1598 sta->sta.aid = params->aid;
1599
1600 /*
1601 * Some of the following updates would be racy if called on an
1602 * existing station, via ieee80211_change_station(). However,
1603 * all such changes are rejected by cfg80211 except for updates
1604 * changing the supported rates on an existing but not yet used
1605 * TDLS peer.
1606 */
1607
1608 if (params->listen_interval >= 0)
1609 sta->listen_interval = params->listen_interval;
1610
1611 if (params->sta_modify_mask & STATION_PARAM_APPLY_STA_TXPOWER) {
1612 sta->sta.txpwr.type = params->txpwr.type;
1613 if (params->txpwr.type == NL80211_TX_POWER_LIMITED)
1614 sta->sta.txpwr.power = params->txpwr.power;
1615 ret = drv_sta_set_txpwr(local, sdata, sta);
1616 if (ret)
1617 return ret;
1618 }
1619
1620 if (params->supported_rates && params->supported_rates_len) {
1621 ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef,
1622 sband, params->supported_rates,
1623 params->supported_rates_len,
1624 &sta->sta.supp_rates[sband->band]);
1625 }
1626
1627 if (params->ht_capa)
1628 ieee80211_ht_cap_ie_to_sta_ht_cap(sdata, sband,
1629 params->ht_capa, sta);
1630
1631 /* VHT can override some HT caps such as the A-MSDU max length */
1632 if (params->vht_capa)
1633 ieee80211_vht_cap_ie_to_sta_vht_cap(sdata, sband,
1634 params->vht_capa, sta);
1635
1636 if (params->he_capa)
1637 ieee80211_he_cap_ie_to_sta_he_cap(sdata, sband,
1638 (void *)params->he_capa,
1639 params->he_capa_len,
1640 (void *)params->he_6ghz_capa,
1641 sta);
1642
1643 if (params->opmode_notif_used) {
1644 /* returned value is only needed for rc update, but the
1645 * rc isn't initialized here yet, so ignore it
1646 */
1647 __ieee80211_vht_handle_opmode(sdata, sta, params->opmode_notif,
1648 sband->band);
1649 }
1650
1651 if (params->support_p2p_ps >= 0)
1652 sta->sta.support_p2p_ps = params->support_p2p_ps;
1653
1654 if (ieee80211_vif_is_mesh(&sdata->vif))
1655 sta_apply_mesh_params(local, sta, params);
1656
1657 if (params->airtime_weight)
1658 sta->airtime_weight = params->airtime_weight;
1659
1660 /* set the STA state after all sta info from usermode has been set */
1661 if (test_sta_flag(sta, WLAN_STA_TDLS_PEER) ||
1662 set & BIT(NL80211_STA_FLAG_ASSOCIATED)) {
1663 ret = sta_apply_auth_flags(local, sta, mask, set);
1664 if (ret)
1665 return ret;
1666 }
1667
1668 return 0;
1669 }
1670
ieee80211_add_station(struct wiphy * wiphy,struct net_device * dev,const u8 * mac,struct station_parameters * params)1671 static int ieee80211_add_station(struct wiphy *wiphy, struct net_device *dev,
1672 const u8 *mac,
1673 struct station_parameters *params)
1674 {
1675 struct ieee80211_local *local = wiphy_priv(wiphy);
1676 struct sta_info *sta;
1677 struct ieee80211_sub_if_data *sdata;
1678 int err;
1679
1680 if (params->vlan) {
1681 sdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1682
1683 if (sdata->vif.type != NL80211_IFTYPE_AP_VLAN &&
1684 sdata->vif.type != NL80211_IFTYPE_AP)
1685 return -EINVAL;
1686 } else
1687 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1688
1689 if (ether_addr_equal(mac, sdata->vif.addr))
1690 return -EINVAL;
1691
1692 if (!is_valid_ether_addr(mac))
1693 return -EINVAL;
1694
1695 if (params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER) &&
1696 sdata->vif.type == NL80211_IFTYPE_STATION &&
1697 !sdata->u.mgd.associated)
1698 return -EINVAL;
1699
1700 sta = sta_info_alloc(sdata, mac, GFP_KERNEL);
1701 if (!sta)
1702 return -ENOMEM;
1703
1704 if (params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER))
1705 sta->sta.tdls = true;
1706
1707 err = sta_apply_parameters(local, sta, params);
1708 if (err) {
1709 sta_info_free(local, sta);
1710 return err;
1711 }
1712
1713 /*
1714 * for TDLS and for unassociated station, rate control should be
1715 * initialized only when rates are known and station is marked
1716 * authorized/associated
1717 */
1718 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER) &&
1719 test_sta_flag(sta, WLAN_STA_ASSOC))
1720 rate_control_rate_init(sta);
1721
1722 err = sta_info_insert_rcu(sta);
1723 if (err) {
1724 rcu_read_unlock();
1725 return err;
1726 }
1727
1728 rcu_read_unlock();
1729
1730 return 0;
1731 }
1732
ieee80211_del_station(struct wiphy * wiphy,struct net_device * dev,struct station_del_parameters * params)1733 static int ieee80211_del_station(struct wiphy *wiphy, struct net_device *dev,
1734 struct station_del_parameters *params)
1735 {
1736 struct ieee80211_sub_if_data *sdata;
1737
1738 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1739
1740 if (params->mac)
1741 return sta_info_destroy_addr_bss(sdata, params->mac);
1742
1743 sta_info_flush(sdata);
1744 return 0;
1745 }
1746
ieee80211_change_station(struct wiphy * wiphy,struct net_device * dev,const u8 * mac,struct station_parameters * params)1747 static int ieee80211_change_station(struct wiphy *wiphy,
1748 struct net_device *dev, const u8 *mac,
1749 struct station_parameters *params)
1750 {
1751 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1752 struct ieee80211_local *local = wiphy_priv(wiphy);
1753 struct sta_info *sta;
1754 struct ieee80211_sub_if_data *vlansdata;
1755 enum cfg80211_station_type statype;
1756 int err;
1757
1758 mutex_lock(&local->sta_mtx);
1759
1760 sta = sta_info_get_bss(sdata, mac);
1761 if (!sta) {
1762 err = -ENOENT;
1763 goto out_err;
1764 }
1765
1766 switch (sdata->vif.type) {
1767 case NL80211_IFTYPE_MESH_POINT:
1768 if (sdata->u.mesh.user_mpm)
1769 statype = CFG80211_STA_MESH_PEER_USER;
1770 else
1771 statype = CFG80211_STA_MESH_PEER_KERNEL;
1772 break;
1773 case NL80211_IFTYPE_ADHOC:
1774 statype = CFG80211_STA_IBSS;
1775 break;
1776 case NL80211_IFTYPE_STATION:
1777 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
1778 statype = CFG80211_STA_AP_STA;
1779 break;
1780 }
1781 if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
1782 statype = CFG80211_STA_TDLS_PEER_ACTIVE;
1783 else
1784 statype = CFG80211_STA_TDLS_PEER_SETUP;
1785 break;
1786 case NL80211_IFTYPE_AP:
1787 case NL80211_IFTYPE_AP_VLAN:
1788 if (test_sta_flag(sta, WLAN_STA_ASSOC))
1789 statype = CFG80211_STA_AP_CLIENT;
1790 else
1791 statype = CFG80211_STA_AP_CLIENT_UNASSOC;
1792 break;
1793 default:
1794 err = -EOPNOTSUPP;
1795 goto out_err;
1796 }
1797
1798 err = cfg80211_check_station_change(wiphy, params, statype);
1799 if (err)
1800 goto out_err;
1801
1802 if (params->vlan && params->vlan != sta->sdata->dev) {
1803 vlansdata = IEEE80211_DEV_TO_SUB_IF(params->vlan);
1804
1805 if (params->vlan->ieee80211_ptr->use_4addr) {
1806 if (vlansdata->u.vlan.sta) {
1807 err = -EBUSY;
1808 goto out_err;
1809 }
1810
1811 rcu_assign_pointer(vlansdata->u.vlan.sta, sta);
1812 __ieee80211_check_fast_rx_iface(vlansdata);
1813 drv_sta_set_4addr(local, sta->sdata, &sta->sta, true);
1814 }
1815
1816 if (sta->sdata->vif.type == NL80211_IFTYPE_AP_VLAN &&
1817 sta->sdata->u.vlan.sta)
1818 RCU_INIT_POINTER(sta->sdata->u.vlan.sta, NULL);
1819
1820 if (test_sta_flag(sta, WLAN_STA_AUTHORIZED))
1821 ieee80211_vif_dec_num_mcast(sta->sdata);
1822
1823 sta->sdata = vlansdata;
1824 ieee80211_check_fast_rx(sta);
1825 ieee80211_check_fast_xmit(sta);
1826
1827 if (test_sta_flag(sta, WLAN_STA_AUTHORIZED)) {
1828 ieee80211_vif_inc_num_mcast(sta->sdata);
1829 cfg80211_send_layer2_update(sta->sdata->dev,
1830 sta->sta.addr);
1831 }
1832 }
1833
1834 err = sta_apply_parameters(local, sta, params);
1835 if (err)
1836 goto out_err;
1837
1838 mutex_unlock(&local->sta_mtx);
1839
1840 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
1841 params->sta_flags_mask & BIT(NL80211_STA_FLAG_AUTHORIZED)) {
1842 ieee80211_recalc_ps(local);
1843 ieee80211_recalc_ps_vif(sdata);
1844 }
1845
1846 return 0;
1847 out_err:
1848 mutex_unlock(&local->sta_mtx);
1849 return err;
1850 }
1851
1852 #ifdef CONFIG_MAC80211_MESH
ieee80211_add_mpath(struct wiphy * wiphy,struct net_device * dev,const u8 * dst,const u8 * next_hop)1853 static int ieee80211_add_mpath(struct wiphy *wiphy, struct net_device *dev,
1854 const u8 *dst, const u8 *next_hop)
1855 {
1856 struct ieee80211_sub_if_data *sdata;
1857 struct mesh_path *mpath;
1858 struct sta_info *sta;
1859
1860 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1861
1862 rcu_read_lock();
1863 sta = sta_info_get(sdata, next_hop);
1864 if (!sta) {
1865 rcu_read_unlock();
1866 return -ENOENT;
1867 }
1868
1869 mpath = mesh_path_add(sdata, dst);
1870 if (IS_ERR(mpath)) {
1871 rcu_read_unlock();
1872 return PTR_ERR(mpath);
1873 }
1874
1875 mesh_path_fix_nexthop(mpath, sta);
1876
1877 rcu_read_unlock();
1878 return 0;
1879 }
1880
ieee80211_del_mpath(struct wiphy * wiphy,struct net_device * dev,const u8 * dst)1881 static int ieee80211_del_mpath(struct wiphy *wiphy, struct net_device *dev,
1882 const u8 *dst)
1883 {
1884 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1885
1886 if (dst)
1887 return mesh_path_del(sdata, dst);
1888
1889 mesh_path_flush_by_iface(sdata);
1890 return 0;
1891 }
1892
ieee80211_change_mpath(struct wiphy * wiphy,struct net_device * dev,const u8 * dst,const u8 * next_hop)1893 static int ieee80211_change_mpath(struct wiphy *wiphy, struct net_device *dev,
1894 const u8 *dst, const u8 *next_hop)
1895 {
1896 struct ieee80211_sub_if_data *sdata;
1897 struct mesh_path *mpath;
1898 struct sta_info *sta;
1899
1900 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1901
1902 rcu_read_lock();
1903
1904 sta = sta_info_get(sdata, next_hop);
1905 if (!sta) {
1906 rcu_read_unlock();
1907 return -ENOENT;
1908 }
1909
1910 mpath = mesh_path_lookup(sdata, dst);
1911 if (!mpath) {
1912 rcu_read_unlock();
1913 return -ENOENT;
1914 }
1915
1916 mesh_path_fix_nexthop(mpath, sta);
1917
1918 rcu_read_unlock();
1919 return 0;
1920 }
1921
mpath_set_pinfo(struct mesh_path * mpath,u8 * next_hop,struct mpath_info * pinfo)1922 static void mpath_set_pinfo(struct mesh_path *mpath, u8 *next_hop,
1923 struct mpath_info *pinfo)
1924 {
1925 struct sta_info *next_hop_sta = rcu_dereference(mpath->next_hop);
1926
1927 if (next_hop_sta)
1928 memcpy(next_hop, next_hop_sta->sta.addr, ETH_ALEN);
1929 else
1930 eth_zero_addr(next_hop);
1931
1932 memset(pinfo, 0, sizeof(*pinfo));
1933
1934 pinfo->generation = mpath->sdata->u.mesh.mesh_paths_generation;
1935
1936 pinfo->filled = MPATH_INFO_FRAME_QLEN |
1937 MPATH_INFO_SN |
1938 MPATH_INFO_METRIC |
1939 MPATH_INFO_EXPTIME |
1940 MPATH_INFO_DISCOVERY_TIMEOUT |
1941 MPATH_INFO_DISCOVERY_RETRIES |
1942 MPATH_INFO_FLAGS |
1943 MPATH_INFO_HOP_COUNT |
1944 MPATH_INFO_PATH_CHANGE;
1945
1946 pinfo->frame_qlen = mpath->frame_queue.qlen;
1947 pinfo->sn = mpath->sn;
1948 pinfo->metric = mpath->metric;
1949 if (time_before(jiffies, mpath->exp_time))
1950 pinfo->exptime = jiffies_to_msecs(mpath->exp_time - jiffies);
1951 pinfo->discovery_timeout =
1952 jiffies_to_msecs(mpath->discovery_timeout);
1953 pinfo->discovery_retries = mpath->discovery_retries;
1954 if (mpath->flags & MESH_PATH_ACTIVE)
1955 pinfo->flags |= NL80211_MPATH_FLAG_ACTIVE;
1956 if (mpath->flags & MESH_PATH_RESOLVING)
1957 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVING;
1958 if (mpath->flags & MESH_PATH_SN_VALID)
1959 pinfo->flags |= NL80211_MPATH_FLAG_SN_VALID;
1960 if (mpath->flags & MESH_PATH_FIXED)
1961 pinfo->flags |= NL80211_MPATH_FLAG_FIXED;
1962 if (mpath->flags & MESH_PATH_RESOLVED)
1963 pinfo->flags |= NL80211_MPATH_FLAG_RESOLVED;
1964 pinfo->hop_count = mpath->hop_count;
1965 pinfo->path_change_count = mpath->path_change_count;
1966 }
1967
ieee80211_get_mpath(struct wiphy * wiphy,struct net_device * dev,u8 * dst,u8 * next_hop,struct mpath_info * pinfo)1968 static int ieee80211_get_mpath(struct wiphy *wiphy, struct net_device *dev,
1969 u8 *dst, u8 *next_hop, struct mpath_info *pinfo)
1970
1971 {
1972 struct ieee80211_sub_if_data *sdata;
1973 struct mesh_path *mpath;
1974
1975 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1976
1977 rcu_read_lock();
1978 mpath = mesh_path_lookup(sdata, dst);
1979 if (!mpath) {
1980 rcu_read_unlock();
1981 return -ENOENT;
1982 }
1983 memcpy(dst, mpath->dst, ETH_ALEN);
1984 mpath_set_pinfo(mpath, next_hop, pinfo);
1985 rcu_read_unlock();
1986 return 0;
1987 }
1988
ieee80211_dump_mpath(struct wiphy * wiphy,struct net_device * dev,int idx,u8 * dst,u8 * next_hop,struct mpath_info * pinfo)1989 static int ieee80211_dump_mpath(struct wiphy *wiphy, struct net_device *dev,
1990 int idx, u8 *dst, u8 *next_hop,
1991 struct mpath_info *pinfo)
1992 {
1993 struct ieee80211_sub_if_data *sdata;
1994 struct mesh_path *mpath;
1995
1996 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1997
1998 rcu_read_lock();
1999 mpath = mesh_path_lookup_by_idx(sdata, idx);
2000 if (!mpath) {
2001 rcu_read_unlock();
2002 return -ENOENT;
2003 }
2004 memcpy(dst, mpath->dst, ETH_ALEN);
2005 mpath_set_pinfo(mpath, next_hop, pinfo);
2006 rcu_read_unlock();
2007 return 0;
2008 }
2009
mpp_set_pinfo(struct mesh_path * mpath,u8 * mpp,struct mpath_info * pinfo)2010 static void mpp_set_pinfo(struct mesh_path *mpath, u8 *mpp,
2011 struct mpath_info *pinfo)
2012 {
2013 memset(pinfo, 0, sizeof(*pinfo));
2014 memcpy(mpp, mpath->mpp, ETH_ALEN);
2015
2016 pinfo->generation = mpath->sdata->u.mesh.mpp_paths_generation;
2017 }
2018
ieee80211_get_mpp(struct wiphy * wiphy,struct net_device * dev,u8 * dst,u8 * mpp,struct mpath_info * pinfo)2019 static int ieee80211_get_mpp(struct wiphy *wiphy, struct net_device *dev,
2020 u8 *dst, u8 *mpp, struct mpath_info *pinfo)
2021
2022 {
2023 struct ieee80211_sub_if_data *sdata;
2024 struct mesh_path *mpath;
2025
2026 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2027
2028 rcu_read_lock();
2029 mpath = mpp_path_lookup(sdata, dst);
2030 if (!mpath) {
2031 rcu_read_unlock();
2032 return -ENOENT;
2033 }
2034 memcpy(dst, mpath->dst, ETH_ALEN);
2035 mpp_set_pinfo(mpath, mpp, pinfo);
2036 rcu_read_unlock();
2037 return 0;
2038 }
2039
ieee80211_dump_mpp(struct wiphy * wiphy,struct net_device * dev,int idx,u8 * dst,u8 * mpp,struct mpath_info * pinfo)2040 static int ieee80211_dump_mpp(struct wiphy *wiphy, struct net_device *dev,
2041 int idx, u8 *dst, u8 *mpp,
2042 struct mpath_info *pinfo)
2043 {
2044 struct ieee80211_sub_if_data *sdata;
2045 struct mesh_path *mpath;
2046
2047 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2048
2049 rcu_read_lock();
2050 mpath = mpp_path_lookup_by_idx(sdata, idx);
2051 if (!mpath) {
2052 rcu_read_unlock();
2053 return -ENOENT;
2054 }
2055 memcpy(dst, mpath->dst, ETH_ALEN);
2056 mpp_set_pinfo(mpath, mpp, pinfo);
2057 rcu_read_unlock();
2058 return 0;
2059 }
2060
ieee80211_get_mesh_config(struct wiphy * wiphy,struct net_device * dev,struct mesh_config * conf)2061 static int ieee80211_get_mesh_config(struct wiphy *wiphy,
2062 struct net_device *dev,
2063 struct mesh_config *conf)
2064 {
2065 struct ieee80211_sub_if_data *sdata;
2066 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2067
2068 memcpy(conf, &(sdata->u.mesh.mshcfg), sizeof(struct mesh_config));
2069 return 0;
2070 }
2071
_chg_mesh_attr(enum nl80211_meshconf_params parm,u32 mask)2072 static inline bool _chg_mesh_attr(enum nl80211_meshconf_params parm, u32 mask)
2073 {
2074 return (mask >> (parm-1)) & 0x1;
2075 }
2076
copy_mesh_setup(struct ieee80211_if_mesh * ifmsh,const struct mesh_setup * setup)2077 static int copy_mesh_setup(struct ieee80211_if_mesh *ifmsh,
2078 const struct mesh_setup *setup)
2079 {
2080 u8 *new_ie;
2081 struct ieee80211_sub_if_data *sdata = container_of(ifmsh,
2082 struct ieee80211_sub_if_data, u.mesh);
2083 int i;
2084
2085 /* allocate information elements */
2086 new_ie = NULL;
2087
2088 if (setup->ie_len) {
2089 new_ie = kmemdup(setup->ie, setup->ie_len,
2090 GFP_KERNEL);
2091 if (!new_ie)
2092 return -ENOMEM;
2093 }
2094 ifmsh->ie_len = setup->ie_len;
2095 ifmsh->ie = new_ie;
2096
2097 /* now copy the rest of the setup parameters */
2098 ifmsh->mesh_id_len = setup->mesh_id_len;
2099 memcpy(ifmsh->mesh_id, setup->mesh_id, ifmsh->mesh_id_len);
2100 ifmsh->mesh_sp_id = setup->sync_method;
2101 ifmsh->mesh_pp_id = setup->path_sel_proto;
2102 ifmsh->mesh_pm_id = setup->path_metric;
2103 ifmsh->user_mpm = setup->user_mpm;
2104 ifmsh->mesh_auth_id = setup->auth_id;
2105 ifmsh->security = IEEE80211_MESH_SEC_NONE;
2106 ifmsh->userspace_handles_dfs = setup->userspace_handles_dfs;
2107 if (setup->is_authenticated)
2108 ifmsh->security |= IEEE80211_MESH_SEC_AUTHED;
2109 if (setup->is_secure)
2110 ifmsh->security |= IEEE80211_MESH_SEC_SECURED;
2111
2112 /* mcast rate setting in Mesh Node */
2113 memcpy(sdata->vif.bss_conf.mcast_rate, setup->mcast_rate,
2114 sizeof(setup->mcast_rate));
2115 sdata->vif.bss_conf.basic_rates = setup->basic_rates;
2116
2117 sdata->vif.bss_conf.beacon_int = setup->beacon_interval;
2118 sdata->vif.bss_conf.dtim_period = setup->dtim_period;
2119
2120 sdata->beacon_rate_set = false;
2121 if (wiphy_ext_feature_isset(sdata->local->hw.wiphy,
2122 NL80211_EXT_FEATURE_BEACON_RATE_LEGACY)) {
2123 for (i = 0; i < NUM_NL80211_BANDS; i++) {
2124 sdata->beacon_rateidx_mask[i] =
2125 setup->beacon_rate.control[i].legacy;
2126 if (sdata->beacon_rateidx_mask[i])
2127 sdata->beacon_rate_set = true;
2128 }
2129 }
2130
2131 return 0;
2132 }
2133
ieee80211_update_mesh_config(struct wiphy * wiphy,struct net_device * dev,u32 mask,const struct mesh_config * nconf)2134 static int ieee80211_update_mesh_config(struct wiphy *wiphy,
2135 struct net_device *dev, u32 mask,
2136 const struct mesh_config *nconf)
2137 {
2138 struct mesh_config *conf;
2139 struct ieee80211_sub_if_data *sdata;
2140 struct ieee80211_if_mesh *ifmsh;
2141
2142 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2143 ifmsh = &sdata->u.mesh;
2144
2145 /* Set the config options which we are interested in setting */
2146 conf = &(sdata->u.mesh.mshcfg);
2147 if (_chg_mesh_attr(NL80211_MESHCONF_RETRY_TIMEOUT, mask))
2148 conf->dot11MeshRetryTimeout = nconf->dot11MeshRetryTimeout;
2149 if (_chg_mesh_attr(NL80211_MESHCONF_CONFIRM_TIMEOUT, mask))
2150 conf->dot11MeshConfirmTimeout = nconf->dot11MeshConfirmTimeout;
2151 if (_chg_mesh_attr(NL80211_MESHCONF_HOLDING_TIMEOUT, mask))
2152 conf->dot11MeshHoldingTimeout = nconf->dot11MeshHoldingTimeout;
2153 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_PEER_LINKS, mask))
2154 conf->dot11MeshMaxPeerLinks = nconf->dot11MeshMaxPeerLinks;
2155 if (_chg_mesh_attr(NL80211_MESHCONF_MAX_RETRIES, mask))
2156 conf->dot11MeshMaxRetries = nconf->dot11MeshMaxRetries;
2157 if (_chg_mesh_attr(NL80211_MESHCONF_TTL, mask))
2158 conf->dot11MeshTTL = nconf->dot11MeshTTL;
2159 if (_chg_mesh_attr(NL80211_MESHCONF_ELEMENT_TTL, mask))
2160 conf->element_ttl = nconf->element_ttl;
2161 if (_chg_mesh_attr(NL80211_MESHCONF_AUTO_OPEN_PLINKS, mask)) {
2162 if (ifmsh->user_mpm)
2163 return -EBUSY;
2164 conf->auto_open_plinks = nconf->auto_open_plinks;
2165 }
2166 if (_chg_mesh_attr(NL80211_MESHCONF_SYNC_OFFSET_MAX_NEIGHBOR, mask))
2167 conf->dot11MeshNbrOffsetMaxNeighbor =
2168 nconf->dot11MeshNbrOffsetMaxNeighbor;
2169 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_MAX_PREQ_RETRIES, mask))
2170 conf->dot11MeshHWMPmaxPREQretries =
2171 nconf->dot11MeshHWMPmaxPREQretries;
2172 if (_chg_mesh_attr(NL80211_MESHCONF_PATH_REFRESH_TIME, mask))
2173 conf->path_refresh_time = nconf->path_refresh_time;
2174 if (_chg_mesh_attr(NL80211_MESHCONF_MIN_DISCOVERY_TIMEOUT, mask))
2175 conf->min_discovery_timeout = nconf->min_discovery_timeout;
2176 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ACTIVE_PATH_TIMEOUT, mask))
2177 conf->dot11MeshHWMPactivePathTimeout =
2178 nconf->dot11MeshHWMPactivePathTimeout;
2179 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PREQ_MIN_INTERVAL, mask))
2180 conf->dot11MeshHWMPpreqMinInterval =
2181 nconf->dot11MeshHWMPpreqMinInterval;
2182 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PERR_MIN_INTERVAL, mask))
2183 conf->dot11MeshHWMPperrMinInterval =
2184 nconf->dot11MeshHWMPperrMinInterval;
2185 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_NET_DIAM_TRVS_TIME,
2186 mask))
2187 conf->dot11MeshHWMPnetDiameterTraversalTime =
2188 nconf->dot11MeshHWMPnetDiameterTraversalTime;
2189 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOTMODE, mask)) {
2190 conf->dot11MeshHWMPRootMode = nconf->dot11MeshHWMPRootMode;
2191 ieee80211_mesh_root_setup(ifmsh);
2192 }
2193 if (_chg_mesh_attr(NL80211_MESHCONF_GATE_ANNOUNCEMENTS, mask)) {
2194 /* our current gate announcement implementation rides on root
2195 * announcements, so require this ifmsh to also be a root node
2196 * */
2197 if (nconf->dot11MeshGateAnnouncementProtocol &&
2198 !(conf->dot11MeshHWMPRootMode > IEEE80211_ROOTMODE_ROOT)) {
2199 conf->dot11MeshHWMPRootMode = IEEE80211_PROACTIVE_RANN;
2200 ieee80211_mesh_root_setup(ifmsh);
2201 }
2202 conf->dot11MeshGateAnnouncementProtocol =
2203 nconf->dot11MeshGateAnnouncementProtocol;
2204 }
2205 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_RANN_INTERVAL, mask))
2206 conf->dot11MeshHWMPRannInterval =
2207 nconf->dot11MeshHWMPRannInterval;
2208 if (_chg_mesh_attr(NL80211_MESHCONF_FORWARDING, mask))
2209 conf->dot11MeshForwarding = nconf->dot11MeshForwarding;
2210 if (_chg_mesh_attr(NL80211_MESHCONF_RSSI_THRESHOLD, mask)) {
2211 /* our RSSI threshold implementation is supported only for
2212 * devices that report signal in dBm.
2213 */
2214 if (!ieee80211_hw_check(&sdata->local->hw, SIGNAL_DBM))
2215 return -ENOTSUPP;
2216 conf->rssi_threshold = nconf->rssi_threshold;
2217 }
2218 if (_chg_mesh_attr(NL80211_MESHCONF_HT_OPMODE, mask)) {
2219 conf->ht_opmode = nconf->ht_opmode;
2220 sdata->vif.bss_conf.ht_operation_mode = nconf->ht_opmode;
2221 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_HT);
2222 }
2223 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_PATH_TO_ROOT_TIMEOUT, mask))
2224 conf->dot11MeshHWMPactivePathToRootTimeout =
2225 nconf->dot11MeshHWMPactivePathToRootTimeout;
2226 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_ROOT_INTERVAL, mask))
2227 conf->dot11MeshHWMProotInterval =
2228 nconf->dot11MeshHWMProotInterval;
2229 if (_chg_mesh_attr(NL80211_MESHCONF_HWMP_CONFIRMATION_INTERVAL, mask))
2230 conf->dot11MeshHWMPconfirmationInterval =
2231 nconf->dot11MeshHWMPconfirmationInterval;
2232 if (_chg_mesh_attr(NL80211_MESHCONF_POWER_MODE, mask)) {
2233 conf->power_mode = nconf->power_mode;
2234 ieee80211_mps_local_status_update(sdata);
2235 }
2236 if (_chg_mesh_attr(NL80211_MESHCONF_AWAKE_WINDOW, mask))
2237 conf->dot11MeshAwakeWindowDuration =
2238 nconf->dot11MeshAwakeWindowDuration;
2239 if (_chg_mesh_attr(NL80211_MESHCONF_PLINK_TIMEOUT, mask))
2240 conf->plink_timeout = nconf->plink_timeout;
2241 if (_chg_mesh_attr(NL80211_MESHCONF_CONNECTED_TO_GATE, mask))
2242 conf->dot11MeshConnectedToMeshGate =
2243 nconf->dot11MeshConnectedToMeshGate;
2244 if (_chg_mesh_attr(NL80211_MESHCONF_NOLEARN, mask))
2245 conf->dot11MeshNolearn = nconf->dot11MeshNolearn;
2246 if (_chg_mesh_attr(NL80211_MESHCONF_CONNECTED_TO_AS, mask))
2247 conf->dot11MeshConnectedToAuthServer =
2248 nconf->dot11MeshConnectedToAuthServer;
2249 ieee80211_mbss_info_change_notify(sdata, BSS_CHANGED_BEACON);
2250 return 0;
2251 }
2252
ieee80211_join_mesh(struct wiphy * wiphy,struct net_device * dev,const struct mesh_config * conf,const struct mesh_setup * setup)2253 static int ieee80211_join_mesh(struct wiphy *wiphy, struct net_device *dev,
2254 const struct mesh_config *conf,
2255 const struct mesh_setup *setup)
2256 {
2257 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2258 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
2259 int err;
2260
2261 memcpy(&ifmsh->mshcfg, conf, sizeof(struct mesh_config));
2262 err = copy_mesh_setup(ifmsh, setup);
2263 if (err)
2264 return err;
2265
2266 sdata->control_port_over_nl80211 = setup->control_port_over_nl80211;
2267
2268 /* can mesh use other SMPS modes? */
2269 sdata->smps_mode = IEEE80211_SMPS_OFF;
2270 sdata->needed_rx_chains = sdata->local->rx_chains;
2271
2272 mutex_lock(&sdata->local->mtx);
2273 err = ieee80211_vif_use_channel(sdata, &setup->chandef,
2274 IEEE80211_CHANCTX_SHARED);
2275 mutex_unlock(&sdata->local->mtx);
2276 if (err)
2277 return err;
2278
2279 return ieee80211_start_mesh(sdata);
2280 }
2281
ieee80211_leave_mesh(struct wiphy * wiphy,struct net_device * dev)2282 static int ieee80211_leave_mesh(struct wiphy *wiphy, struct net_device *dev)
2283 {
2284 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2285
2286 ieee80211_stop_mesh(sdata);
2287 mutex_lock(&sdata->local->mtx);
2288 ieee80211_vif_release_channel(sdata);
2289 kfree(sdata->u.mesh.ie);
2290 mutex_unlock(&sdata->local->mtx);
2291
2292 return 0;
2293 }
2294 #endif
2295
ieee80211_change_bss(struct wiphy * wiphy,struct net_device * dev,struct bss_parameters * params)2296 static int ieee80211_change_bss(struct wiphy *wiphy,
2297 struct net_device *dev,
2298 struct bss_parameters *params)
2299 {
2300 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2301 struct ieee80211_supported_band *sband;
2302 u32 changed = 0;
2303
2304 if (!sdata_dereference(sdata->u.ap.beacon, sdata))
2305 return -ENOENT;
2306
2307 sband = ieee80211_get_sband(sdata);
2308 if (!sband)
2309 return -EINVAL;
2310
2311 if (params->use_cts_prot >= 0) {
2312 sdata->vif.bss_conf.use_cts_prot = params->use_cts_prot;
2313 changed |= BSS_CHANGED_ERP_CTS_PROT;
2314 }
2315 if (params->use_short_preamble >= 0) {
2316 sdata->vif.bss_conf.use_short_preamble =
2317 params->use_short_preamble;
2318 changed |= BSS_CHANGED_ERP_PREAMBLE;
2319 }
2320
2321 if (!sdata->vif.bss_conf.use_short_slot &&
2322 (sband->band == NL80211_BAND_5GHZ ||
2323 sband->band == NL80211_BAND_6GHZ)) {
2324 sdata->vif.bss_conf.use_short_slot = true;
2325 changed |= BSS_CHANGED_ERP_SLOT;
2326 }
2327
2328 if (params->use_short_slot_time >= 0) {
2329 sdata->vif.bss_conf.use_short_slot =
2330 params->use_short_slot_time;
2331 changed |= BSS_CHANGED_ERP_SLOT;
2332 }
2333
2334 if (params->basic_rates) {
2335 ieee80211_parse_bitrates(&sdata->vif.bss_conf.chandef,
2336 wiphy->bands[sband->band],
2337 params->basic_rates,
2338 params->basic_rates_len,
2339 &sdata->vif.bss_conf.basic_rates);
2340 changed |= BSS_CHANGED_BASIC_RATES;
2341 ieee80211_check_rate_mask(sdata);
2342 }
2343
2344 if (params->ap_isolate >= 0) {
2345 if (params->ap_isolate)
2346 sdata->flags |= IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
2347 else
2348 sdata->flags &= ~IEEE80211_SDATA_DONT_BRIDGE_PACKETS;
2349 ieee80211_check_fast_rx_iface(sdata);
2350 }
2351
2352 if (params->ht_opmode >= 0) {
2353 sdata->vif.bss_conf.ht_operation_mode =
2354 (u16) params->ht_opmode;
2355 changed |= BSS_CHANGED_HT;
2356 }
2357
2358 if (params->p2p_ctwindow >= 0) {
2359 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &=
2360 ~IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
2361 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
2362 params->p2p_ctwindow & IEEE80211_P2P_OPPPS_CTWINDOW_MASK;
2363 changed |= BSS_CHANGED_P2P_PS;
2364 }
2365
2366 if (params->p2p_opp_ps > 0) {
2367 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow |=
2368 IEEE80211_P2P_OPPPS_ENABLE_BIT;
2369 changed |= BSS_CHANGED_P2P_PS;
2370 } else if (params->p2p_opp_ps == 0) {
2371 sdata->vif.bss_conf.p2p_noa_attr.oppps_ctwindow &=
2372 ~IEEE80211_P2P_OPPPS_ENABLE_BIT;
2373 changed |= BSS_CHANGED_P2P_PS;
2374 }
2375
2376 ieee80211_bss_info_change_notify(sdata, changed);
2377
2378 return 0;
2379 }
2380
ieee80211_set_txq_params(struct wiphy * wiphy,struct net_device * dev,struct ieee80211_txq_params * params)2381 static int ieee80211_set_txq_params(struct wiphy *wiphy,
2382 struct net_device *dev,
2383 struct ieee80211_txq_params *params)
2384 {
2385 struct ieee80211_local *local = wiphy_priv(wiphy);
2386 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2387 struct ieee80211_tx_queue_params p;
2388
2389 if (!local->ops->conf_tx)
2390 return -EOPNOTSUPP;
2391
2392 if (local->hw.queues < IEEE80211_NUM_ACS)
2393 return -EOPNOTSUPP;
2394
2395 memset(&p, 0, sizeof(p));
2396 p.aifs = params->aifs;
2397 p.cw_max = params->cwmax;
2398 p.cw_min = params->cwmin;
2399 p.txop = params->txop;
2400
2401 /*
2402 * Setting tx queue params disables u-apsd because it's only
2403 * called in master mode.
2404 */
2405 p.uapsd = false;
2406
2407 ieee80211_regulatory_limit_wmm_params(sdata, &p, params->ac);
2408
2409 sdata->tx_conf[params->ac] = p;
2410 if (drv_conf_tx(local, sdata, params->ac, &p)) {
2411 wiphy_debug(local->hw.wiphy,
2412 "failed to set TX queue parameters for AC %d\n",
2413 params->ac);
2414 return -EINVAL;
2415 }
2416
2417 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_QOS);
2418
2419 return 0;
2420 }
2421
2422 #ifdef CONFIG_PM
ieee80211_suspend(struct wiphy * wiphy,struct cfg80211_wowlan * wowlan)2423 static int ieee80211_suspend(struct wiphy *wiphy,
2424 struct cfg80211_wowlan *wowlan)
2425 {
2426 return __ieee80211_suspend(wiphy_priv(wiphy), wowlan);
2427 }
2428
ieee80211_resume(struct wiphy * wiphy)2429 static int ieee80211_resume(struct wiphy *wiphy)
2430 {
2431 return __ieee80211_resume(wiphy_priv(wiphy));
2432 }
2433 #else
2434 #define ieee80211_suspend NULL
2435 #define ieee80211_resume NULL
2436 #endif
2437
ieee80211_scan(struct wiphy * wiphy,struct cfg80211_scan_request * req)2438 static int ieee80211_scan(struct wiphy *wiphy,
2439 struct cfg80211_scan_request *req)
2440 {
2441 struct ieee80211_sub_if_data *sdata;
2442
2443 sdata = IEEE80211_WDEV_TO_SUB_IF(req->wdev);
2444
2445 switch (ieee80211_vif_type_p2p(&sdata->vif)) {
2446 case NL80211_IFTYPE_STATION:
2447 case NL80211_IFTYPE_ADHOC:
2448 case NL80211_IFTYPE_MESH_POINT:
2449 case NL80211_IFTYPE_P2P_CLIENT:
2450 case NL80211_IFTYPE_P2P_DEVICE:
2451 break;
2452 case NL80211_IFTYPE_P2P_GO:
2453 if (sdata->local->ops->hw_scan)
2454 break;
2455 /*
2456 * FIXME: implement NoA while scanning in software,
2457 * for now fall through to allow scanning only when
2458 * beaconing hasn't been configured yet
2459 */
2460 fallthrough;
2461 case NL80211_IFTYPE_AP:
2462 /*
2463 * If the scan has been forced (and the driver supports
2464 * forcing), don't care about being beaconing already.
2465 * This will create problems to the attached stations (e.g. all
2466 * the frames sent while scanning on other channel will be
2467 * lost)
2468 */
2469 if (sdata->u.ap.beacon &&
2470 (!(wiphy->features & NL80211_FEATURE_AP_SCAN) ||
2471 !(req->flags & NL80211_SCAN_FLAG_AP)))
2472 return -EOPNOTSUPP;
2473 break;
2474 case NL80211_IFTYPE_NAN:
2475 default:
2476 return -EOPNOTSUPP;
2477 }
2478
2479 return ieee80211_request_scan(sdata, req);
2480 }
2481
ieee80211_abort_scan(struct wiphy * wiphy,struct wireless_dev * wdev)2482 static void ieee80211_abort_scan(struct wiphy *wiphy, struct wireless_dev *wdev)
2483 {
2484 ieee80211_scan_cancel(wiphy_priv(wiphy));
2485 }
2486
2487 static int
ieee80211_sched_scan_start(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_sched_scan_request * req)2488 ieee80211_sched_scan_start(struct wiphy *wiphy,
2489 struct net_device *dev,
2490 struct cfg80211_sched_scan_request *req)
2491 {
2492 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2493
2494 if (!sdata->local->ops->sched_scan_start)
2495 return -EOPNOTSUPP;
2496
2497 return ieee80211_request_sched_scan_start(sdata, req);
2498 }
2499
2500 static int
ieee80211_sched_scan_stop(struct wiphy * wiphy,struct net_device * dev,u64 reqid)2501 ieee80211_sched_scan_stop(struct wiphy *wiphy, struct net_device *dev,
2502 u64 reqid)
2503 {
2504 struct ieee80211_local *local = wiphy_priv(wiphy);
2505
2506 if (!local->ops->sched_scan_stop)
2507 return -EOPNOTSUPP;
2508
2509 return ieee80211_request_sched_scan_stop(local);
2510 }
2511
ieee80211_auth(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_auth_request * req)2512 static int ieee80211_auth(struct wiphy *wiphy, struct net_device *dev,
2513 struct cfg80211_auth_request *req)
2514 {
2515 return ieee80211_mgd_auth(IEEE80211_DEV_TO_SUB_IF(dev), req);
2516 }
2517
ieee80211_assoc(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_assoc_request * req)2518 static int ieee80211_assoc(struct wiphy *wiphy, struct net_device *dev,
2519 struct cfg80211_assoc_request *req)
2520 {
2521 return ieee80211_mgd_assoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
2522 }
2523
ieee80211_deauth(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_deauth_request * req)2524 static int ieee80211_deauth(struct wiphy *wiphy, struct net_device *dev,
2525 struct cfg80211_deauth_request *req)
2526 {
2527 return ieee80211_mgd_deauth(IEEE80211_DEV_TO_SUB_IF(dev), req);
2528 }
2529
ieee80211_disassoc(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_disassoc_request * req)2530 static int ieee80211_disassoc(struct wiphy *wiphy, struct net_device *dev,
2531 struct cfg80211_disassoc_request *req)
2532 {
2533 return ieee80211_mgd_disassoc(IEEE80211_DEV_TO_SUB_IF(dev), req);
2534 }
2535
ieee80211_join_ibss(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_ibss_params * params)2536 static int ieee80211_join_ibss(struct wiphy *wiphy, struct net_device *dev,
2537 struct cfg80211_ibss_params *params)
2538 {
2539 return ieee80211_ibss_join(IEEE80211_DEV_TO_SUB_IF(dev), params);
2540 }
2541
ieee80211_leave_ibss(struct wiphy * wiphy,struct net_device * dev)2542 static int ieee80211_leave_ibss(struct wiphy *wiphy, struct net_device *dev)
2543 {
2544 return ieee80211_ibss_leave(IEEE80211_DEV_TO_SUB_IF(dev));
2545 }
2546
ieee80211_join_ocb(struct wiphy * wiphy,struct net_device * dev,struct ocb_setup * setup)2547 static int ieee80211_join_ocb(struct wiphy *wiphy, struct net_device *dev,
2548 struct ocb_setup *setup)
2549 {
2550 return ieee80211_ocb_join(IEEE80211_DEV_TO_SUB_IF(dev), setup);
2551 }
2552
ieee80211_leave_ocb(struct wiphy * wiphy,struct net_device * dev)2553 static int ieee80211_leave_ocb(struct wiphy *wiphy, struct net_device *dev)
2554 {
2555 return ieee80211_ocb_leave(IEEE80211_DEV_TO_SUB_IF(dev));
2556 }
2557
ieee80211_set_mcast_rate(struct wiphy * wiphy,struct net_device * dev,int rate[NUM_NL80211_BANDS])2558 static int ieee80211_set_mcast_rate(struct wiphy *wiphy, struct net_device *dev,
2559 int rate[NUM_NL80211_BANDS])
2560 {
2561 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2562
2563 memcpy(sdata->vif.bss_conf.mcast_rate, rate,
2564 sizeof(int) * NUM_NL80211_BANDS);
2565
2566 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_MCAST_RATE);
2567
2568 return 0;
2569 }
2570
ieee80211_set_wiphy_params(struct wiphy * wiphy,u32 changed)2571 static int ieee80211_set_wiphy_params(struct wiphy *wiphy, u32 changed)
2572 {
2573 struct ieee80211_local *local = wiphy_priv(wiphy);
2574 int err;
2575
2576 if (changed & WIPHY_PARAM_FRAG_THRESHOLD) {
2577 ieee80211_check_fast_xmit_all(local);
2578
2579 err = drv_set_frag_threshold(local, wiphy->frag_threshold);
2580
2581 if (err) {
2582 ieee80211_check_fast_xmit_all(local);
2583 return err;
2584 }
2585 }
2586
2587 if ((changed & WIPHY_PARAM_COVERAGE_CLASS) ||
2588 (changed & WIPHY_PARAM_DYN_ACK)) {
2589 s16 coverage_class;
2590
2591 coverage_class = changed & WIPHY_PARAM_COVERAGE_CLASS ?
2592 wiphy->coverage_class : -1;
2593 err = drv_set_coverage_class(local, coverage_class);
2594
2595 if (err)
2596 return err;
2597 }
2598
2599 if (changed & WIPHY_PARAM_RTS_THRESHOLD) {
2600 err = drv_set_rts_threshold(local, wiphy->rts_threshold);
2601
2602 if (err)
2603 return err;
2604 }
2605
2606 if (changed & WIPHY_PARAM_RETRY_SHORT) {
2607 if (wiphy->retry_short > IEEE80211_MAX_TX_RETRY)
2608 return -EINVAL;
2609 local->hw.conf.short_frame_max_tx_count = wiphy->retry_short;
2610 }
2611 if (changed & WIPHY_PARAM_RETRY_LONG) {
2612 if (wiphy->retry_long > IEEE80211_MAX_TX_RETRY)
2613 return -EINVAL;
2614 local->hw.conf.long_frame_max_tx_count = wiphy->retry_long;
2615 }
2616 if (changed &
2617 (WIPHY_PARAM_RETRY_SHORT | WIPHY_PARAM_RETRY_LONG))
2618 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_RETRY_LIMITS);
2619
2620 if (changed & (WIPHY_PARAM_TXQ_LIMIT |
2621 WIPHY_PARAM_TXQ_MEMORY_LIMIT |
2622 WIPHY_PARAM_TXQ_QUANTUM))
2623 ieee80211_txq_set_params(local);
2624
2625 return 0;
2626 }
2627
ieee80211_set_tx_power(struct wiphy * wiphy,struct wireless_dev * wdev,enum nl80211_tx_power_setting type,int mbm)2628 static int ieee80211_set_tx_power(struct wiphy *wiphy,
2629 struct wireless_dev *wdev,
2630 enum nl80211_tx_power_setting type, int mbm)
2631 {
2632 struct ieee80211_local *local = wiphy_priv(wiphy);
2633 struct ieee80211_sub_if_data *sdata;
2634 enum nl80211_tx_power_setting txp_type = type;
2635 bool update_txp_type = false;
2636 bool has_monitor = false;
2637
2638 if (wdev) {
2639 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2640
2641 if (sdata->vif.type == NL80211_IFTYPE_MONITOR) {
2642 sdata = rtnl_dereference(local->monitor_sdata);
2643 if (!sdata)
2644 return -EOPNOTSUPP;
2645 }
2646
2647 switch (type) {
2648 case NL80211_TX_POWER_AUTOMATIC:
2649 sdata->user_power_level = IEEE80211_UNSET_POWER_LEVEL;
2650 txp_type = NL80211_TX_POWER_LIMITED;
2651 break;
2652 case NL80211_TX_POWER_LIMITED:
2653 case NL80211_TX_POWER_FIXED:
2654 if (mbm < 0 || (mbm % 100))
2655 return -EOPNOTSUPP;
2656 sdata->user_power_level = MBM_TO_DBM(mbm);
2657 break;
2658 }
2659
2660 if (txp_type != sdata->vif.bss_conf.txpower_type) {
2661 update_txp_type = true;
2662 sdata->vif.bss_conf.txpower_type = txp_type;
2663 }
2664
2665 ieee80211_recalc_txpower(sdata, update_txp_type);
2666
2667 return 0;
2668 }
2669
2670 switch (type) {
2671 case NL80211_TX_POWER_AUTOMATIC:
2672 local->user_power_level = IEEE80211_UNSET_POWER_LEVEL;
2673 txp_type = NL80211_TX_POWER_LIMITED;
2674 break;
2675 case NL80211_TX_POWER_LIMITED:
2676 case NL80211_TX_POWER_FIXED:
2677 if (mbm < 0 || (mbm % 100))
2678 return -EOPNOTSUPP;
2679 local->user_power_level = MBM_TO_DBM(mbm);
2680 break;
2681 }
2682
2683 mutex_lock(&local->iflist_mtx);
2684 list_for_each_entry(sdata, &local->interfaces, list) {
2685 if (sdata->vif.type == NL80211_IFTYPE_MONITOR) {
2686 has_monitor = true;
2687 continue;
2688 }
2689 sdata->user_power_level = local->user_power_level;
2690 if (txp_type != sdata->vif.bss_conf.txpower_type)
2691 update_txp_type = true;
2692 sdata->vif.bss_conf.txpower_type = txp_type;
2693 }
2694 list_for_each_entry(sdata, &local->interfaces, list) {
2695 if (sdata->vif.type == NL80211_IFTYPE_MONITOR)
2696 continue;
2697 ieee80211_recalc_txpower(sdata, update_txp_type);
2698 }
2699 mutex_unlock(&local->iflist_mtx);
2700
2701 if (has_monitor) {
2702 sdata = rtnl_dereference(local->monitor_sdata);
2703 if (sdata) {
2704 sdata->user_power_level = local->user_power_level;
2705 if (txp_type != sdata->vif.bss_conf.txpower_type)
2706 update_txp_type = true;
2707 sdata->vif.bss_conf.txpower_type = txp_type;
2708
2709 ieee80211_recalc_txpower(sdata, update_txp_type);
2710 }
2711 }
2712
2713 return 0;
2714 }
2715
ieee80211_get_tx_power(struct wiphy * wiphy,struct wireless_dev * wdev,int * dbm)2716 static int ieee80211_get_tx_power(struct wiphy *wiphy,
2717 struct wireless_dev *wdev,
2718 int *dbm)
2719 {
2720 struct ieee80211_local *local = wiphy_priv(wiphy);
2721 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2722
2723 if (local->ops->get_txpower &&
2724 (sdata->flags & IEEE80211_SDATA_IN_DRIVER))
2725 return drv_get_txpower(local, sdata, dbm);
2726
2727 if (!local->use_chanctx)
2728 *dbm = local->hw.conf.power_level;
2729 else
2730 *dbm = sdata->vif.bss_conf.txpower;
2731
2732 /* INT_MIN indicates no power level was set yet */
2733 if (*dbm == INT_MIN)
2734 return -EINVAL;
2735
2736 return 0;
2737 }
2738
ieee80211_set_wds_peer(struct wiphy * wiphy,struct net_device * dev,const u8 * addr)2739 static int ieee80211_set_wds_peer(struct wiphy *wiphy, struct net_device *dev,
2740 const u8 *addr)
2741 {
2742 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2743
2744 memcpy(&sdata->u.wds.remote_addr, addr, ETH_ALEN);
2745
2746 return 0;
2747 }
2748
ieee80211_rfkill_poll(struct wiphy * wiphy)2749 static void ieee80211_rfkill_poll(struct wiphy *wiphy)
2750 {
2751 struct ieee80211_local *local = wiphy_priv(wiphy);
2752
2753 drv_rfkill_poll(local);
2754 }
2755
2756 #ifdef CONFIG_NL80211_TESTMODE
ieee80211_testmode_cmd(struct wiphy * wiphy,struct wireless_dev * wdev,void * data,int len)2757 static int ieee80211_testmode_cmd(struct wiphy *wiphy,
2758 struct wireless_dev *wdev,
2759 void *data, int len)
2760 {
2761 struct ieee80211_local *local = wiphy_priv(wiphy);
2762 struct ieee80211_vif *vif = NULL;
2763
2764 if (!local->ops->testmode_cmd)
2765 return -EOPNOTSUPP;
2766
2767 if (wdev) {
2768 struct ieee80211_sub_if_data *sdata;
2769
2770 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
2771 if (sdata->flags & IEEE80211_SDATA_IN_DRIVER)
2772 vif = &sdata->vif;
2773 }
2774
2775 return local->ops->testmode_cmd(&local->hw, vif, data, len);
2776 }
2777
ieee80211_testmode_dump(struct wiphy * wiphy,struct sk_buff * skb,struct netlink_callback * cb,void * data,int len)2778 static int ieee80211_testmode_dump(struct wiphy *wiphy,
2779 struct sk_buff *skb,
2780 struct netlink_callback *cb,
2781 void *data, int len)
2782 {
2783 struct ieee80211_local *local = wiphy_priv(wiphy);
2784
2785 if (!local->ops->testmode_dump)
2786 return -EOPNOTSUPP;
2787
2788 return local->ops->testmode_dump(&local->hw, skb, cb, data, len);
2789 }
2790 #endif
2791
__ieee80211_request_smps_mgd(struct ieee80211_sub_if_data * sdata,enum ieee80211_smps_mode smps_mode)2792 int __ieee80211_request_smps_mgd(struct ieee80211_sub_if_data *sdata,
2793 enum ieee80211_smps_mode smps_mode)
2794 {
2795 const u8 *ap;
2796 enum ieee80211_smps_mode old_req;
2797 int err;
2798 struct sta_info *sta;
2799 bool tdls_peer_found = false;
2800
2801 lockdep_assert_held(&sdata->wdev.mtx);
2802
2803 if (WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_STATION))
2804 return -EINVAL;
2805
2806 old_req = sdata->u.mgd.req_smps;
2807 sdata->u.mgd.req_smps = smps_mode;
2808
2809 if (old_req == smps_mode &&
2810 smps_mode != IEEE80211_SMPS_AUTOMATIC)
2811 return 0;
2812
2813 /*
2814 * If not associated, or current association is not an HT
2815 * association, there's no need to do anything, just store
2816 * the new value until we associate.
2817 */
2818 if (!sdata->u.mgd.associated ||
2819 sdata->vif.bss_conf.chandef.width == NL80211_CHAN_WIDTH_20_NOHT)
2820 return 0;
2821
2822 ap = sdata->u.mgd.associated->bssid;
2823
2824 rcu_read_lock();
2825 list_for_each_entry_rcu(sta, &sdata->local->sta_list, list) {
2826 if (!sta->sta.tdls || sta->sdata != sdata || !sta->uploaded ||
2827 !test_sta_flag(sta, WLAN_STA_AUTHORIZED))
2828 continue;
2829
2830 tdls_peer_found = true;
2831 break;
2832 }
2833 rcu_read_unlock();
2834
2835 if (smps_mode == IEEE80211_SMPS_AUTOMATIC) {
2836 if (tdls_peer_found || !sdata->u.mgd.powersave)
2837 smps_mode = IEEE80211_SMPS_OFF;
2838 else
2839 smps_mode = IEEE80211_SMPS_DYNAMIC;
2840 }
2841
2842 /* send SM PS frame to AP */
2843 err = ieee80211_send_smps_action(sdata, smps_mode,
2844 ap, ap);
2845 if (err)
2846 sdata->u.mgd.req_smps = old_req;
2847 else if (smps_mode != IEEE80211_SMPS_OFF && tdls_peer_found)
2848 ieee80211_teardown_tdls_peers(sdata);
2849
2850 return err;
2851 }
2852
ieee80211_set_power_mgmt(struct wiphy * wiphy,struct net_device * dev,bool enabled,int timeout)2853 static int ieee80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *dev,
2854 bool enabled, int timeout)
2855 {
2856 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2857 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
2858
2859 if (sdata->vif.type != NL80211_IFTYPE_STATION)
2860 return -EOPNOTSUPP;
2861
2862 if (!ieee80211_hw_check(&local->hw, SUPPORTS_PS))
2863 return -EOPNOTSUPP;
2864
2865 if (enabled == sdata->u.mgd.powersave &&
2866 timeout == local->dynamic_ps_forced_timeout)
2867 return 0;
2868
2869 sdata->u.mgd.powersave = enabled;
2870 local->dynamic_ps_forced_timeout = timeout;
2871
2872 /* no change, but if automatic follow powersave */
2873 sdata_lock(sdata);
2874 __ieee80211_request_smps_mgd(sdata, sdata->u.mgd.req_smps);
2875 sdata_unlock(sdata);
2876
2877 if (ieee80211_hw_check(&local->hw, SUPPORTS_DYNAMIC_PS))
2878 ieee80211_hw_config(local, IEEE80211_CONF_CHANGE_PS);
2879
2880 ieee80211_recalc_ps(local);
2881 ieee80211_recalc_ps_vif(sdata);
2882 ieee80211_check_fast_rx_iface(sdata);
2883
2884 return 0;
2885 }
2886
ieee80211_set_cqm_rssi_config(struct wiphy * wiphy,struct net_device * dev,s32 rssi_thold,u32 rssi_hyst)2887 static int ieee80211_set_cqm_rssi_config(struct wiphy *wiphy,
2888 struct net_device *dev,
2889 s32 rssi_thold, u32 rssi_hyst)
2890 {
2891 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2892 struct ieee80211_vif *vif = &sdata->vif;
2893 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
2894
2895 if (rssi_thold == bss_conf->cqm_rssi_thold &&
2896 rssi_hyst == bss_conf->cqm_rssi_hyst)
2897 return 0;
2898
2899 if (sdata->vif.driver_flags & IEEE80211_VIF_BEACON_FILTER &&
2900 !(sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI))
2901 return -EOPNOTSUPP;
2902
2903 bss_conf->cqm_rssi_thold = rssi_thold;
2904 bss_conf->cqm_rssi_hyst = rssi_hyst;
2905 bss_conf->cqm_rssi_low = 0;
2906 bss_conf->cqm_rssi_high = 0;
2907 sdata->u.mgd.last_cqm_event_signal = 0;
2908
2909 /* tell the driver upon association, unless already associated */
2910 if (sdata->u.mgd.associated &&
2911 sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)
2912 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_CQM);
2913
2914 return 0;
2915 }
2916
ieee80211_set_cqm_rssi_range_config(struct wiphy * wiphy,struct net_device * dev,s32 rssi_low,s32 rssi_high)2917 static int ieee80211_set_cqm_rssi_range_config(struct wiphy *wiphy,
2918 struct net_device *dev,
2919 s32 rssi_low, s32 rssi_high)
2920 {
2921 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2922 struct ieee80211_vif *vif = &sdata->vif;
2923 struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
2924
2925 if (sdata->vif.driver_flags & IEEE80211_VIF_BEACON_FILTER)
2926 return -EOPNOTSUPP;
2927
2928 bss_conf->cqm_rssi_low = rssi_low;
2929 bss_conf->cqm_rssi_high = rssi_high;
2930 bss_conf->cqm_rssi_thold = 0;
2931 bss_conf->cqm_rssi_hyst = 0;
2932 sdata->u.mgd.last_cqm_event_signal = 0;
2933
2934 /* tell the driver upon association, unless already associated */
2935 if (sdata->u.mgd.associated &&
2936 sdata->vif.driver_flags & IEEE80211_VIF_SUPPORTS_CQM_RSSI)
2937 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_CQM);
2938
2939 return 0;
2940 }
2941
ieee80211_set_bitrate_mask(struct wiphy * wiphy,struct net_device * dev,const u8 * addr,const struct cfg80211_bitrate_mask * mask)2942 static int ieee80211_set_bitrate_mask(struct wiphy *wiphy,
2943 struct net_device *dev,
2944 const u8 *addr,
2945 const struct cfg80211_bitrate_mask *mask)
2946 {
2947 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2948 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
2949 int i, ret;
2950
2951 if (!ieee80211_sdata_running(sdata))
2952 return -ENETDOWN;
2953
2954 /*
2955 * If active validate the setting and reject it if it doesn't leave
2956 * at least one basic rate usable, since we really have to be able
2957 * to send something, and if we're an AP we have to be able to do
2958 * so at a basic rate so that all clients can receive it.
2959 */
2960 if (rcu_access_pointer(sdata->vif.chanctx_conf) &&
2961 sdata->vif.bss_conf.chandef.chan) {
2962 u32 basic_rates = sdata->vif.bss_conf.basic_rates;
2963 enum nl80211_band band = sdata->vif.bss_conf.chandef.chan->band;
2964
2965 if (!(mask->control[band].legacy & basic_rates))
2966 return -EINVAL;
2967 }
2968
2969 if (ieee80211_hw_check(&local->hw, HAS_RATE_CONTROL)) {
2970 ret = drv_set_bitrate_mask(local, sdata, mask);
2971 if (ret)
2972 return ret;
2973 }
2974
2975 for (i = 0; i < NUM_NL80211_BANDS; i++) {
2976 struct ieee80211_supported_band *sband = wiphy->bands[i];
2977 int j;
2978
2979 sdata->rc_rateidx_mask[i] = mask->control[i].legacy;
2980 memcpy(sdata->rc_rateidx_mcs_mask[i], mask->control[i].ht_mcs,
2981 sizeof(mask->control[i].ht_mcs));
2982 memcpy(sdata->rc_rateidx_vht_mcs_mask[i],
2983 mask->control[i].vht_mcs,
2984 sizeof(mask->control[i].vht_mcs));
2985
2986 sdata->rc_has_mcs_mask[i] = false;
2987 sdata->rc_has_vht_mcs_mask[i] = false;
2988 if (!sband)
2989 continue;
2990
2991 for (j = 0; j < IEEE80211_HT_MCS_MASK_LEN; j++) {
2992 if (sdata->rc_rateidx_mcs_mask[i][j] != 0xff) {
2993 sdata->rc_has_mcs_mask[i] = true;
2994 break;
2995 }
2996 }
2997
2998 for (j = 0; j < NL80211_VHT_NSS_MAX; j++) {
2999 if (sdata->rc_rateidx_vht_mcs_mask[i][j] != 0xffff) {
3000 sdata->rc_has_vht_mcs_mask[i] = true;
3001 break;
3002 }
3003 }
3004 }
3005
3006 return 0;
3007 }
3008
ieee80211_start_radar_detection(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_chan_def * chandef,u32 cac_time_ms)3009 static int ieee80211_start_radar_detection(struct wiphy *wiphy,
3010 struct net_device *dev,
3011 struct cfg80211_chan_def *chandef,
3012 u32 cac_time_ms)
3013 {
3014 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3015 struct ieee80211_local *local = sdata->local;
3016 int err;
3017
3018 mutex_lock(&local->mtx);
3019 if (!list_empty(&local->roc_list) || local->scanning) {
3020 err = -EBUSY;
3021 goto out_unlock;
3022 }
3023
3024 /* whatever, but channel contexts should not complain about that one */
3025 sdata->smps_mode = IEEE80211_SMPS_OFF;
3026 sdata->needed_rx_chains = local->rx_chains;
3027
3028 err = ieee80211_vif_use_channel(sdata, chandef,
3029 IEEE80211_CHANCTX_SHARED);
3030 if (err)
3031 goto out_unlock;
3032
3033 ieee80211_queue_delayed_work(&sdata->local->hw,
3034 &sdata->dfs_cac_timer_work,
3035 msecs_to_jiffies(cac_time_ms));
3036
3037 out_unlock:
3038 mutex_unlock(&local->mtx);
3039 return err;
3040 }
3041
ieee80211_end_cac(struct wiphy * wiphy,struct net_device * dev)3042 static void ieee80211_end_cac(struct wiphy *wiphy,
3043 struct net_device *dev)
3044 {
3045 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3046 struct ieee80211_local *local = sdata->local;
3047
3048 mutex_lock(&local->mtx);
3049 list_for_each_entry(sdata, &local->interfaces, list) {
3050 /* it might be waiting for the local->mtx, but then
3051 * by the time it gets it, sdata->wdev.cac_started
3052 * will no longer be true
3053 */
3054 cancel_delayed_work(&sdata->dfs_cac_timer_work);
3055
3056 if (sdata->wdev.cac_started) {
3057 ieee80211_vif_release_channel(sdata);
3058 sdata->wdev.cac_started = false;
3059 }
3060 }
3061 mutex_unlock(&local->mtx);
3062 }
3063
3064 static struct cfg80211_beacon_data *
cfg80211_beacon_dup(struct cfg80211_beacon_data * beacon)3065 cfg80211_beacon_dup(struct cfg80211_beacon_data *beacon)
3066 {
3067 struct cfg80211_beacon_data *new_beacon;
3068 u8 *pos;
3069 int len;
3070
3071 len = beacon->head_len + beacon->tail_len + beacon->beacon_ies_len +
3072 beacon->proberesp_ies_len + beacon->assocresp_ies_len +
3073 beacon->probe_resp_len + beacon->lci_len + beacon->civicloc_len;
3074
3075 new_beacon = kzalloc(sizeof(*new_beacon) + len, GFP_KERNEL);
3076 if (!new_beacon)
3077 return NULL;
3078
3079 pos = (u8 *)(new_beacon + 1);
3080 if (beacon->head_len) {
3081 new_beacon->head_len = beacon->head_len;
3082 new_beacon->head = pos;
3083 memcpy(pos, beacon->head, beacon->head_len);
3084 pos += beacon->head_len;
3085 }
3086 if (beacon->tail_len) {
3087 new_beacon->tail_len = beacon->tail_len;
3088 new_beacon->tail = pos;
3089 memcpy(pos, beacon->tail, beacon->tail_len);
3090 pos += beacon->tail_len;
3091 }
3092 if (beacon->beacon_ies_len) {
3093 new_beacon->beacon_ies_len = beacon->beacon_ies_len;
3094 new_beacon->beacon_ies = pos;
3095 memcpy(pos, beacon->beacon_ies, beacon->beacon_ies_len);
3096 pos += beacon->beacon_ies_len;
3097 }
3098 if (beacon->proberesp_ies_len) {
3099 new_beacon->proberesp_ies_len = beacon->proberesp_ies_len;
3100 new_beacon->proberesp_ies = pos;
3101 memcpy(pos, beacon->proberesp_ies, beacon->proberesp_ies_len);
3102 pos += beacon->proberesp_ies_len;
3103 }
3104 if (beacon->assocresp_ies_len) {
3105 new_beacon->assocresp_ies_len = beacon->assocresp_ies_len;
3106 new_beacon->assocresp_ies = pos;
3107 memcpy(pos, beacon->assocresp_ies, beacon->assocresp_ies_len);
3108 pos += beacon->assocresp_ies_len;
3109 }
3110 if (beacon->probe_resp_len) {
3111 new_beacon->probe_resp_len = beacon->probe_resp_len;
3112 new_beacon->probe_resp = pos;
3113 memcpy(pos, beacon->probe_resp, beacon->probe_resp_len);
3114 pos += beacon->probe_resp_len;
3115 }
3116
3117 /* might copy -1, meaning no changes requested */
3118 new_beacon->ftm_responder = beacon->ftm_responder;
3119 if (beacon->lci) {
3120 new_beacon->lci_len = beacon->lci_len;
3121 new_beacon->lci = pos;
3122 memcpy(pos, beacon->lci, beacon->lci_len);
3123 pos += beacon->lci_len;
3124 }
3125 if (beacon->civicloc) {
3126 new_beacon->civicloc_len = beacon->civicloc_len;
3127 new_beacon->civicloc = pos;
3128 memcpy(pos, beacon->civicloc, beacon->civicloc_len);
3129 pos += beacon->civicloc_len;
3130 }
3131
3132 return new_beacon;
3133 }
3134
ieee80211_csa_finish(struct ieee80211_vif * vif)3135 void ieee80211_csa_finish(struct ieee80211_vif *vif)
3136 {
3137 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
3138
3139 ieee80211_queue_work(&sdata->local->hw,
3140 &sdata->csa_finalize_work);
3141 }
3142 EXPORT_SYMBOL(ieee80211_csa_finish);
3143
ieee80211_set_after_csa_beacon(struct ieee80211_sub_if_data * sdata,u32 * changed)3144 static int ieee80211_set_after_csa_beacon(struct ieee80211_sub_if_data *sdata,
3145 u32 *changed)
3146 {
3147 int err;
3148
3149 switch (sdata->vif.type) {
3150 case NL80211_IFTYPE_AP:
3151 err = ieee80211_assign_beacon(sdata, sdata->u.ap.next_beacon,
3152 NULL);
3153 kfree(sdata->u.ap.next_beacon);
3154 sdata->u.ap.next_beacon = NULL;
3155
3156 if (err < 0)
3157 return err;
3158 *changed |= err;
3159 break;
3160 case NL80211_IFTYPE_ADHOC:
3161 err = ieee80211_ibss_finish_csa(sdata);
3162 if (err < 0)
3163 return err;
3164 *changed |= err;
3165 break;
3166 #ifdef CONFIG_MAC80211_MESH
3167 case NL80211_IFTYPE_MESH_POINT:
3168 err = ieee80211_mesh_finish_csa(sdata);
3169 if (err < 0)
3170 return err;
3171 *changed |= err;
3172 break;
3173 #endif
3174 default:
3175 WARN_ON(1);
3176 return -EINVAL;
3177 }
3178
3179 return 0;
3180 }
3181
__ieee80211_csa_finalize(struct ieee80211_sub_if_data * sdata)3182 static int __ieee80211_csa_finalize(struct ieee80211_sub_if_data *sdata)
3183 {
3184 struct ieee80211_local *local = sdata->local;
3185 u32 changed = 0;
3186 int err;
3187
3188 sdata_assert_lock(sdata);
3189 lockdep_assert_held(&local->mtx);
3190 lockdep_assert_held(&local->chanctx_mtx);
3191
3192 /*
3193 * using reservation isn't immediate as it may be deferred until later
3194 * with multi-vif. once reservation is complete it will re-schedule the
3195 * work with no reserved_chanctx so verify chandef to check if it
3196 * completed successfully
3197 */
3198
3199 if (sdata->reserved_chanctx) {
3200 /*
3201 * with multi-vif csa driver may call ieee80211_csa_finish()
3202 * many times while waiting for other interfaces to use their
3203 * reservations
3204 */
3205 if (sdata->reserved_ready)
3206 return 0;
3207
3208 return ieee80211_vif_use_reserved_context(sdata);
3209 }
3210
3211 if (!cfg80211_chandef_identical(&sdata->vif.bss_conf.chandef,
3212 &sdata->csa_chandef))
3213 return -EINVAL;
3214
3215 sdata->vif.csa_active = false;
3216
3217 err = ieee80211_set_after_csa_beacon(sdata, &changed);
3218 if (err)
3219 return err;
3220
3221 ieee80211_bss_info_change_notify(sdata, changed);
3222
3223 if (sdata->csa_block_tx) {
3224 ieee80211_wake_vif_queues(local, sdata,
3225 IEEE80211_QUEUE_STOP_REASON_CSA);
3226 sdata->csa_block_tx = false;
3227 }
3228
3229 err = drv_post_channel_switch(sdata);
3230 if (err)
3231 return err;
3232
3233 cfg80211_ch_switch_notify(sdata->dev, &sdata->csa_chandef);
3234
3235 return 0;
3236 }
3237
ieee80211_csa_finalize(struct ieee80211_sub_if_data * sdata)3238 static void ieee80211_csa_finalize(struct ieee80211_sub_if_data *sdata)
3239 {
3240 if (__ieee80211_csa_finalize(sdata)) {
3241 sdata_info(sdata, "failed to finalize CSA, disconnecting\n");
3242 cfg80211_stop_iface(sdata->local->hw.wiphy, &sdata->wdev,
3243 GFP_KERNEL);
3244 }
3245 }
3246
ieee80211_csa_finalize_work(struct work_struct * work)3247 void ieee80211_csa_finalize_work(struct work_struct *work)
3248 {
3249 struct ieee80211_sub_if_data *sdata =
3250 container_of(work, struct ieee80211_sub_if_data,
3251 csa_finalize_work);
3252 struct ieee80211_local *local = sdata->local;
3253
3254 sdata_lock(sdata);
3255 mutex_lock(&local->mtx);
3256 mutex_lock(&local->chanctx_mtx);
3257
3258 /* AP might have been stopped while waiting for the lock. */
3259 if (!sdata->vif.csa_active)
3260 goto unlock;
3261
3262 if (!ieee80211_sdata_running(sdata))
3263 goto unlock;
3264
3265 ieee80211_csa_finalize(sdata);
3266
3267 unlock:
3268 mutex_unlock(&local->chanctx_mtx);
3269 mutex_unlock(&local->mtx);
3270 sdata_unlock(sdata);
3271 }
3272
ieee80211_set_csa_beacon(struct ieee80211_sub_if_data * sdata,struct cfg80211_csa_settings * params,u32 * changed)3273 static int ieee80211_set_csa_beacon(struct ieee80211_sub_if_data *sdata,
3274 struct cfg80211_csa_settings *params,
3275 u32 *changed)
3276 {
3277 struct ieee80211_csa_settings csa = {};
3278 int err;
3279
3280 switch (sdata->vif.type) {
3281 case NL80211_IFTYPE_AP:
3282 sdata->u.ap.next_beacon =
3283 cfg80211_beacon_dup(¶ms->beacon_after);
3284 if (!sdata->u.ap.next_beacon)
3285 return -ENOMEM;
3286
3287 /*
3288 * With a count of 0, we don't have to wait for any
3289 * TBTT before switching, so complete the CSA
3290 * immediately. In theory, with a count == 1 we
3291 * should delay the switch until just before the next
3292 * TBTT, but that would complicate things so we switch
3293 * immediately too. If we would delay the switch
3294 * until the next TBTT, we would have to set the probe
3295 * response here.
3296 *
3297 * TODO: A channel switch with count <= 1 without
3298 * sending a CSA action frame is kind of useless,
3299 * because the clients won't know we're changing
3300 * channels. The action frame must be implemented
3301 * either here or in the userspace.
3302 */
3303 if (params->count <= 1)
3304 break;
3305
3306 if ((params->n_counter_offsets_beacon >
3307 IEEE80211_MAX_CNTDWN_COUNTERS_NUM) ||
3308 (params->n_counter_offsets_presp >
3309 IEEE80211_MAX_CNTDWN_COUNTERS_NUM))
3310 return -EINVAL;
3311
3312 csa.counter_offsets_beacon = params->counter_offsets_beacon;
3313 csa.counter_offsets_presp = params->counter_offsets_presp;
3314 csa.n_counter_offsets_beacon = params->n_counter_offsets_beacon;
3315 csa.n_counter_offsets_presp = params->n_counter_offsets_presp;
3316 csa.count = params->count;
3317
3318 err = ieee80211_assign_beacon(sdata, ¶ms->beacon_csa, &csa);
3319 if (err < 0) {
3320 kfree(sdata->u.ap.next_beacon);
3321 return err;
3322 }
3323 *changed |= err;
3324
3325 break;
3326 case NL80211_IFTYPE_ADHOC:
3327 if (!sdata->vif.bss_conf.ibss_joined)
3328 return -EINVAL;
3329
3330 if (params->chandef.width != sdata->u.ibss.chandef.width)
3331 return -EINVAL;
3332
3333 switch (params->chandef.width) {
3334 case NL80211_CHAN_WIDTH_40:
3335 if (cfg80211_get_chandef_type(¶ms->chandef) !=
3336 cfg80211_get_chandef_type(&sdata->u.ibss.chandef))
3337 return -EINVAL;
3338 case NL80211_CHAN_WIDTH_5:
3339 case NL80211_CHAN_WIDTH_10:
3340 case NL80211_CHAN_WIDTH_20_NOHT:
3341 case NL80211_CHAN_WIDTH_20:
3342 break;
3343 default:
3344 return -EINVAL;
3345 }
3346
3347 /* changes into another band are not supported */
3348 if (sdata->u.ibss.chandef.chan->band !=
3349 params->chandef.chan->band)
3350 return -EINVAL;
3351
3352 /* see comments in the NL80211_IFTYPE_AP block */
3353 if (params->count > 1) {
3354 err = ieee80211_ibss_csa_beacon(sdata, params);
3355 if (err < 0)
3356 return err;
3357 *changed |= err;
3358 }
3359
3360 ieee80211_send_action_csa(sdata, params);
3361
3362 break;
3363 #ifdef CONFIG_MAC80211_MESH
3364 case NL80211_IFTYPE_MESH_POINT: {
3365 struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
3366
3367 /* changes into another band are not supported */
3368 if (sdata->vif.bss_conf.chandef.chan->band !=
3369 params->chandef.chan->band)
3370 return -EINVAL;
3371
3372 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_NONE) {
3373 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_INIT;
3374 if (!ifmsh->pre_value)
3375 ifmsh->pre_value = 1;
3376 else
3377 ifmsh->pre_value++;
3378 }
3379
3380 /* see comments in the NL80211_IFTYPE_AP block */
3381 if (params->count > 1) {
3382 err = ieee80211_mesh_csa_beacon(sdata, params);
3383 if (err < 0) {
3384 ifmsh->csa_role = IEEE80211_MESH_CSA_ROLE_NONE;
3385 return err;
3386 }
3387 *changed |= err;
3388 }
3389
3390 if (ifmsh->csa_role == IEEE80211_MESH_CSA_ROLE_INIT)
3391 ieee80211_send_action_csa(sdata, params);
3392
3393 break;
3394 }
3395 #endif
3396 default:
3397 return -EOPNOTSUPP;
3398 }
3399
3400 return 0;
3401 }
3402
3403 static int
__ieee80211_channel_switch(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_csa_settings * params)3404 __ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev,
3405 struct cfg80211_csa_settings *params)
3406 {
3407 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3408 struct ieee80211_local *local = sdata->local;
3409 struct ieee80211_channel_switch ch_switch;
3410 struct ieee80211_chanctx_conf *conf;
3411 struct ieee80211_chanctx *chanctx;
3412 u32 changed = 0;
3413 int err;
3414
3415 sdata_assert_lock(sdata);
3416 lockdep_assert_held(&local->mtx);
3417
3418 if (!list_empty(&local->roc_list) || local->scanning)
3419 return -EBUSY;
3420
3421 if (sdata->wdev.cac_started)
3422 return -EBUSY;
3423
3424 if (cfg80211_chandef_identical(¶ms->chandef,
3425 &sdata->vif.bss_conf.chandef))
3426 return -EINVAL;
3427
3428 /* don't allow another channel switch if one is already active. */
3429 if (sdata->vif.csa_active)
3430 return -EBUSY;
3431
3432 mutex_lock(&local->chanctx_mtx);
3433 conf = rcu_dereference_protected(sdata->vif.chanctx_conf,
3434 lockdep_is_held(&local->chanctx_mtx));
3435 if (!conf) {
3436 err = -EBUSY;
3437 goto out;
3438 }
3439
3440 if (params->chandef.chan->freq_offset) {
3441 /* this may work, but is untested */
3442 err = -EOPNOTSUPP;
3443 goto out;
3444 }
3445
3446 chanctx = container_of(conf, struct ieee80211_chanctx, conf);
3447
3448 ch_switch.timestamp = 0;
3449 ch_switch.device_timestamp = 0;
3450 ch_switch.block_tx = params->block_tx;
3451 ch_switch.chandef = params->chandef;
3452 ch_switch.count = params->count;
3453
3454 err = drv_pre_channel_switch(sdata, &ch_switch);
3455 if (err)
3456 goto out;
3457
3458 err = ieee80211_vif_reserve_chanctx(sdata, ¶ms->chandef,
3459 chanctx->mode,
3460 params->radar_required);
3461 if (err)
3462 goto out;
3463
3464 /* if reservation is invalid then this will fail */
3465 err = ieee80211_check_combinations(sdata, NULL, chanctx->mode, 0);
3466 if (err) {
3467 ieee80211_vif_unreserve_chanctx(sdata);
3468 goto out;
3469 }
3470
3471 err = ieee80211_set_csa_beacon(sdata, params, &changed);
3472 if (err) {
3473 ieee80211_vif_unreserve_chanctx(sdata);
3474 goto out;
3475 }
3476
3477 sdata->csa_chandef = params->chandef;
3478 sdata->csa_block_tx = params->block_tx;
3479 sdata->vif.csa_active = true;
3480
3481 if (sdata->csa_block_tx)
3482 ieee80211_stop_vif_queues(local, sdata,
3483 IEEE80211_QUEUE_STOP_REASON_CSA);
3484
3485 cfg80211_ch_switch_started_notify(sdata->dev, &sdata->csa_chandef,
3486 params->count);
3487
3488 if (changed) {
3489 ieee80211_bss_info_change_notify(sdata, changed);
3490 drv_channel_switch_beacon(sdata, ¶ms->chandef);
3491 } else {
3492 /* if the beacon didn't change, we can finalize immediately */
3493 ieee80211_csa_finalize(sdata);
3494 }
3495
3496 out:
3497 mutex_unlock(&local->chanctx_mtx);
3498 return err;
3499 }
3500
ieee80211_channel_switch(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_csa_settings * params)3501 int ieee80211_channel_switch(struct wiphy *wiphy, struct net_device *dev,
3502 struct cfg80211_csa_settings *params)
3503 {
3504 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3505 struct ieee80211_local *local = sdata->local;
3506 int err;
3507
3508 mutex_lock(&local->mtx);
3509 err = __ieee80211_channel_switch(wiphy, dev, params);
3510 mutex_unlock(&local->mtx);
3511
3512 return err;
3513 }
3514
ieee80211_mgmt_tx_cookie(struct ieee80211_local * local)3515 u64 ieee80211_mgmt_tx_cookie(struct ieee80211_local *local)
3516 {
3517 lockdep_assert_held(&local->mtx);
3518
3519 local->roc_cookie_counter++;
3520
3521 /* wow, you wrapped 64 bits ... more likely a bug */
3522 if (WARN_ON(local->roc_cookie_counter == 0))
3523 local->roc_cookie_counter++;
3524
3525 return local->roc_cookie_counter;
3526 }
3527
ieee80211_attach_ack_skb(struct ieee80211_local * local,struct sk_buff * skb,u64 * cookie,gfp_t gfp)3528 int ieee80211_attach_ack_skb(struct ieee80211_local *local, struct sk_buff *skb,
3529 u64 *cookie, gfp_t gfp)
3530 {
3531 unsigned long spin_flags;
3532 struct sk_buff *ack_skb;
3533 int id;
3534
3535 ack_skb = skb_copy(skb, gfp);
3536 if (!ack_skb)
3537 return -ENOMEM;
3538
3539 spin_lock_irqsave(&local->ack_status_lock, spin_flags);
3540 id = idr_alloc(&local->ack_status_frames, ack_skb,
3541 1, 0x2000, GFP_ATOMIC);
3542 spin_unlock_irqrestore(&local->ack_status_lock, spin_flags);
3543
3544 if (id < 0) {
3545 kfree_skb(ack_skb);
3546 return -ENOMEM;
3547 }
3548
3549 IEEE80211_SKB_CB(skb)->ack_frame_id = id;
3550
3551 *cookie = ieee80211_mgmt_tx_cookie(local);
3552 IEEE80211_SKB_CB(ack_skb)->ack.cookie = *cookie;
3553
3554 return 0;
3555 }
3556
3557 static void
ieee80211_update_mgmt_frame_registrations(struct wiphy * wiphy,struct wireless_dev * wdev,struct mgmt_frame_regs * upd)3558 ieee80211_update_mgmt_frame_registrations(struct wiphy *wiphy,
3559 struct wireless_dev *wdev,
3560 struct mgmt_frame_regs *upd)
3561 {
3562 struct ieee80211_local *local = wiphy_priv(wiphy);
3563 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
3564 u32 preq_mask = BIT(IEEE80211_STYPE_PROBE_REQ >> 4);
3565 u32 action_mask = BIT(IEEE80211_STYPE_ACTION >> 4);
3566 bool global_change, intf_change;
3567
3568 global_change =
3569 (local->probe_req_reg != !!(upd->global_stypes & preq_mask)) ||
3570 (local->rx_mcast_action_reg !=
3571 !!(upd->global_mcast_stypes & action_mask));
3572 local->probe_req_reg = upd->global_stypes & preq_mask;
3573 local->rx_mcast_action_reg = upd->global_mcast_stypes & action_mask;
3574
3575 intf_change = (sdata->vif.probe_req_reg !=
3576 !!(upd->interface_stypes & preq_mask)) ||
3577 (sdata->vif.rx_mcast_action_reg !=
3578 !!(upd->interface_mcast_stypes & action_mask));
3579 sdata->vif.probe_req_reg = upd->interface_stypes & preq_mask;
3580 sdata->vif.rx_mcast_action_reg =
3581 upd->interface_mcast_stypes & action_mask;
3582
3583 if (!local->open_count)
3584 return;
3585
3586 if (intf_change && ieee80211_sdata_running(sdata))
3587 drv_config_iface_filter(local, sdata,
3588 sdata->vif.probe_req_reg ?
3589 FIF_PROBE_REQ : 0,
3590 FIF_PROBE_REQ);
3591
3592 if (global_change)
3593 ieee80211_configure_filter(local);
3594 }
3595
ieee80211_set_antenna(struct wiphy * wiphy,u32 tx_ant,u32 rx_ant)3596 static int ieee80211_set_antenna(struct wiphy *wiphy, u32 tx_ant, u32 rx_ant)
3597 {
3598 struct ieee80211_local *local = wiphy_priv(wiphy);
3599
3600 if (local->started)
3601 return -EOPNOTSUPP;
3602
3603 return drv_set_antenna(local, tx_ant, rx_ant);
3604 }
3605
ieee80211_get_antenna(struct wiphy * wiphy,u32 * tx_ant,u32 * rx_ant)3606 static int ieee80211_get_antenna(struct wiphy *wiphy, u32 *tx_ant, u32 *rx_ant)
3607 {
3608 struct ieee80211_local *local = wiphy_priv(wiphy);
3609
3610 return drv_get_antenna(local, tx_ant, rx_ant);
3611 }
3612
ieee80211_set_rekey_data(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_gtk_rekey_data * data)3613 static int ieee80211_set_rekey_data(struct wiphy *wiphy,
3614 struct net_device *dev,
3615 struct cfg80211_gtk_rekey_data *data)
3616 {
3617 struct ieee80211_local *local = wiphy_priv(wiphy);
3618 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3619
3620 if (!local->ops->set_rekey_data)
3621 return -EOPNOTSUPP;
3622
3623 drv_set_rekey_data(local, sdata, data);
3624
3625 return 0;
3626 }
3627
ieee80211_probe_client(struct wiphy * wiphy,struct net_device * dev,const u8 * peer,u64 * cookie)3628 static int ieee80211_probe_client(struct wiphy *wiphy, struct net_device *dev,
3629 const u8 *peer, u64 *cookie)
3630 {
3631 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3632 struct ieee80211_local *local = sdata->local;
3633 struct ieee80211_qos_hdr *nullfunc;
3634 struct sk_buff *skb;
3635 int size = sizeof(*nullfunc);
3636 __le16 fc;
3637 bool qos;
3638 struct ieee80211_tx_info *info;
3639 struct sta_info *sta;
3640 struct ieee80211_chanctx_conf *chanctx_conf;
3641 enum nl80211_band band;
3642 int ret;
3643
3644 /* the lock is needed to assign the cookie later */
3645 mutex_lock(&local->mtx);
3646
3647 rcu_read_lock();
3648 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3649 if (WARN_ON(!chanctx_conf)) {
3650 ret = -EINVAL;
3651 goto unlock;
3652 }
3653 band = chanctx_conf->def.chan->band;
3654 sta = sta_info_get_bss(sdata, peer);
3655 if (sta) {
3656 qos = sta->sta.wme;
3657 } else {
3658 ret = -ENOLINK;
3659 goto unlock;
3660 }
3661
3662 if (qos) {
3663 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3664 IEEE80211_STYPE_QOS_NULLFUNC |
3665 IEEE80211_FCTL_FROMDS);
3666 } else {
3667 size -= 2;
3668 fc = cpu_to_le16(IEEE80211_FTYPE_DATA |
3669 IEEE80211_STYPE_NULLFUNC |
3670 IEEE80211_FCTL_FROMDS);
3671 }
3672
3673 skb = dev_alloc_skb(local->hw.extra_tx_headroom + size);
3674 if (!skb) {
3675 ret = -ENOMEM;
3676 goto unlock;
3677 }
3678
3679 skb->dev = dev;
3680
3681 skb_reserve(skb, local->hw.extra_tx_headroom);
3682
3683 nullfunc = skb_put(skb, size);
3684 nullfunc->frame_control = fc;
3685 nullfunc->duration_id = 0;
3686 memcpy(nullfunc->addr1, sta->sta.addr, ETH_ALEN);
3687 memcpy(nullfunc->addr2, sdata->vif.addr, ETH_ALEN);
3688 memcpy(nullfunc->addr3, sdata->vif.addr, ETH_ALEN);
3689 nullfunc->seq_ctrl = 0;
3690
3691 info = IEEE80211_SKB_CB(skb);
3692
3693 info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS |
3694 IEEE80211_TX_INTFL_NL80211_FRAME_TX;
3695 info->band = band;
3696
3697 skb_set_queue_mapping(skb, IEEE80211_AC_VO);
3698 skb->priority = 7;
3699 if (qos)
3700 nullfunc->qos_ctrl = cpu_to_le16(7);
3701
3702 ret = ieee80211_attach_ack_skb(local, skb, cookie, GFP_ATOMIC);
3703 if (ret) {
3704 kfree_skb(skb);
3705 goto unlock;
3706 }
3707
3708 local_bh_disable();
3709 ieee80211_xmit(sdata, sta, skb);
3710 local_bh_enable();
3711
3712 ret = 0;
3713 unlock:
3714 rcu_read_unlock();
3715 mutex_unlock(&local->mtx);
3716
3717 return ret;
3718 }
3719
ieee80211_cfg_get_channel(struct wiphy * wiphy,struct wireless_dev * wdev,struct cfg80211_chan_def * chandef)3720 static int ieee80211_cfg_get_channel(struct wiphy *wiphy,
3721 struct wireless_dev *wdev,
3722 struct cfg80211_chan_def *chandef)
3723 {
3724 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
3725 struct ieee80211_local *local = wiphy_priv(wiphy);
3726 struct ieee80211_chanctx_conf *chanctx_conf;
3727 int ret = -ENODATA;
3728
3729 rcu_read_lock();
3730 chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf);
3731 if (chanctx_conf) {
3732 *chandef = sdata->vif.bss_conf.chandef;
3733 ret = 0;
3734 } else if (local->open_count > 0 &&
3735 local->open_count == local->monitors &&
3736 sdata->vif.type == NL80211_IFTYPE_MONITOR) {
3737 if (local->use_chanctx)
3738 *chandef = local->monitor_chandef;
3739 else
3740 *chandef = local->_oper_chandef;
3741 ret = 0;
3742 }
3743 rcu_read_unlock();
3744
3745 return ret;
3746 }
3747
3748 #ifdef CONFIG_PM
ieee80211_set_wakeup(struct wiphy * wiphy,bool enabled)3749 static void ieee80211_set_wakeup(struct wiphy *wiphy, bool enabled)
3750 {
3751 drv_set_wakeup(wiphy_priv(wiphy), enabled);
3752 }
3753 #endif
3754
ieee80211_set_qos_map(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_qos_map * qos_map)3755 static int ieee80211_set_qos_map(struct wiphy *wiphy,
3756 struct net_device *dev,
3757 struct cfg80211_qos_map *qos_map)
3758 {
3759 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3760 struct mac80211_qos_map *new_qos_map, *old_qos_map;
3761
3762 if (qos_map) {
3763 new_qos_map = kzalloc(sizeof(*new_qos_map), GFP_KERNEL);
3764 if (!new_qos_map)
3765 return -ENOMEM;
3766 memcpy(&new_qos_map->qos_map, qos_map, sizeof(*qos_map));
3767 } else {
3768 /* A NULL qos_map was passed to disable QoS mapping */
3769 new_qos_map = NULL;
3770 }
3771
3772 old_qos_map = sdata_dereference(sdata->qos_map, sdata);
3773 rcu_assign_pointer(sdata->qos_map, new_qos_map);
3774 if (old_qos_map)
3775 kfree_rcu(old_qos_map, rcu_head);
3776
3777 return 0;
3778 }
3779
ieee80211_set_ap_chanwidth(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_chan_def * chandef)3780 static int ieee80211_set_ap_chanwidth(struct wiphy *wiphy,
3781 struct net_device *dev,
3782 struct cfg80211_chan_def *chandef)
3783 {
3784 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3785 int ret;
3786 u32 changed = 0;
3787
3788 ret = ieee80211_vif_change_bandwidth(sdata, chandef, &changed);
3789 if (ret == 0)
3790 ieee80211_bss_info_change_notify(sdata, changed);
3791
3792 return ret;
3793 }
3794
ieee80211_add_tx_ts(struct wiphy * wiphy,struct net_device * dev,u8 tsid,const u8 * peer,u8 up,u16 admitted_time)3795 static int ieee80211_add_tx_ts(struct wiphy *wiphy, struct net_device *dev,
3796 u8 tsid, const u8 *peer, u8 up,
3797 u16 admitted_time)
3798 {
3799 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3800 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3801 int ac = ieee802_1d_to_ac[up];
3802
3803 if (sdata->vif.type != NL80211_IFTYPE_STATION)
3804 return -EOPNOTSUPP;
3805
3806 if (!(sdata->wmm_acm & BIT(up)))
3807 return -EINVAL;
3808
3809 if (ifmgd->tx_tspec[ac].admitted_time)
3810 return -EBUSY;
3811
3812 if (admitted_time) {
3813 ifmgd->tx_tspec[ac].admitted_time = 32 * admitted_time;
3814 ifmgd->tx_tspec[ac].tsid = tsid;
3815 ifmgd->tx_tspec[ac].up = up;
3816 }
3817
3818 return 0;
3819 }
3820
ieee80211_del_tx_ts(struct wiphy * wiphy,struct net_device * dev,u8 tsid,const u8 * peer)3821 static int ieee80211_del_tx_ts(struct wiphy *wiphy, struct net_device *dev,
3822 u8 tsid, const u8 *peer)
3823 {
3824 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3825 struct ieee80211_if_managed *ifmgd = &sdata->u.mgd;
3826 struct ieee80211_local *local = wiphy_priv(wiphy);
3827 int ac;
3828
3829 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) {
3830 struct ieee80211_sta_tx_tspec *tx_tspec = &ifmgd->tx_tspec[ac];
3831
3832 /* skip unused entries */
3833 if (!tx_tspec->admitted_time)
3834 continue;
3835
3836 if (tx_tspec->tsid != tsid)
3837 continue;
3838
3839 /* due to this new packets will be reassigned to non-ACM ACs */
3840 tx_tspec->up = -1;
3841
3842 /* Make sure that all packets have been sent to avoid to
3843 * restore the QoS params on packets that are still on the
3844 * queues.
3845 */
3846 synchronize_net();
3847 ieee80211_flush_queues(local, sdata, false);
3848
3849 /* restore the normal QoS parameters
3850 * (unconditionally to avoid races)
3851 */
3852 tx_tspec->action = TX_TSPEC_ACTION_STOP_DOWNGRADE;
3853 tx_tspec->downgraded = false;
3854 ieee80211_sta_handle_tspec_ac_params(sdata);
3855
3856 /* finally clear all the data */
3857 memset(tx_tspec, 0, sizeof(*tx_tspec));
3858
3859 return 0;
3860 }
3861
3862 return -ENOENT;
3863 }
3864
ieee80211_nan_func_terminated(struct ieee80211_vif * vif,u8 inst_id,enum nl80211_nan_func_term_reason reason,gfp_t gfp)3865 void ieee80211_nan_func_terminated(struct ieee80211_vif *vif,
3866 u8 inst_id,
3867 enum nl80211_nan_func_term_reason reason,
3868 gfp_t gfp)
3869 {
3870 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
3871 struct cfg80211_nan_func *func;
3872 u64 cookie;
3873
3874 if (WARN_ON(vif->type != NL80211_IFTYPE_NAN))
3875 return;
3876
3877 spin_lock_bh(&sdata->u.nan.func_lock);
3878
3879 func = idr_find(&sdata->u.nan.function_inst_ids, inst_id);
3880 if (WARN_ON(!func)) {
3881 spin_unlock_bh(&sdata->u.nan.func_lock);
3882 return;
3883 }
3884
3885 cookie = func->cookie;
3886 idr_remove(&sdata->u.nan.function_inst_ids, inst_id);
3887
3888 spin_unlock_bh(&sdata->u.nan.func_lock);
3889
3890 cfg80211_free_nan_func(func);
3891
3892 cfg80211_nan_func_terminated(ieee80211_vif_to_wdev(vif), inst_id,
3893 reason, cookie, gfp);
3894 }
3895 EXPORT_SYMBOL(ieee80211_nan_func_terminated);
3896
ieee80211_nan_func_match(struct ieee80211_vif * vif,struct cfg80211_nan_match_params * match,gfp_t gfp)3897 void ieee80211_nan_func_match(struct ieee80211_vif *vif,
3898 struct cfg80211_nan_match_params *match,
3899 gfp_t gfp)
3900 {
3901 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
3902 struct cfg80211_nan_func *func;
3903
3904 if (WARN_ON(vif->type != NL80211_IFTYPE_NAN))
3905 return;
3906
3907 spin_lock_bh(&sdata->u.nan.func_lock);
3908
3909 func = idr_find(&sdata->u.nan.function_inst_ids, match->inst_id);
3910 if (WARN_ON(!func)) {
3911 spin_unlock_bh(&sdata->u.nan.func_lock);
3912 return;
3913 }
3914 match->cookie = func->cookie;
3915
3916 spin_unlock_bh(&sdata->u.nan.func_lock);
3917
3918 cfg80211_nan_match(ieee80211_vif_to_wdev(vif), match, gfp);
3919 }
3920 EXPORT_SYMBOL(ieee80211_nan_func_match);
3921
ieee80211_set_multicast_to_unicast(struct wiphy * wiphy,struct net_device * dev,const bool enabled)3922 static int ieee80211_set_multicast_to_unicast(struct wiphy *wiphy,
3923 struct net_device *dev,
3924 const bool enabled)
3925 {
3926 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
3927
3928 sdata->u.ap.multicast_to_unicast = enabled;
3929
3930 return 0;
3931 }
3932
ieee80211_fill_txq_stats(struct cfg80211_txq_stats * txqstats,struct txq_info * txqi)3933 void ieee80211_fill_txq_stats(struct cfg80211_txq_stats *txqstats,
3934 struct txq_info *txqi)
3935 {
3936 if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_BACKLOG_BYTES))) {
3937 txqstats->filled |= BIT(NL80211_TXQ_STATS_BACKLOG_BYTES);
3938 txqstats->backlog_bytes = txqi->tin.backlog_bytes;
3939 }
3940
3941 if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_BACKLOG_PACKETS))) {
3942 txqstats->filled |= BIT(NL80211_TXQ_STATS_BACKLOG_PACKETS);
3943 txqstats->backlog_packets = txqi->tin.backlog_packets;
3944 }
3945
3946 if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_FLOWS))) {
3947 txqstats->filled |= BIT(NL80211_TXQ_STATS_FLOWS);
3948 txqstats->flows = txqi->tin.flows;
3949 }
3950
3951 if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_DROPS))) {
3952 txqstats->filled |= BIT(NL80211_TXQ_STATS_DROPS);
3953 txqstats->drops = txqi->cstats.drop_count;
3954 }
3955
3956 if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_ECN_MARKS))) {
3957 txqstats->filled |= BIT(NL80211_TXQ_STATS_ECN_MARKS);
3958 txqstats->ecn_marks = txqi->cstats.ecn_mark;
3959 }
3960
3961 if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_OVERLIMIT))) {
3962 txqstats->filled |= BIT(NL80211_TXQ_STATS_OVERLIMIT);
3963 txqstats->overlimit = txqi->tin.overlimit;
3964 }
3965
3966 if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_COLLISIONS))) {
3967 txqstats->filled |= BIT(NL80211_TXQ_STATS_COLLISIONS);
3968 txqstats->collisions = txqi->tin.collisions;
3969 }
3970
3971 if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_TX_BYTES))) {
3972 txqstats->filled |= BIT(NL80211_TXQ_STATS_TX_BYTES);
3973 txqstats->tx_bytes = txqi->tin.tx_bytes;
3974 }
3975
3976 if (!(txqstats->filled & BIT(NL80211_TXQ_STATS_TX_PACKETS))) {
3977 txqstats->filled |= BIT(NL80211_TXQ_STATS_TX_PACKETS);
3978 txqstats->tx_packets = txqi->tin.tx_packets;
3979 }
3980 }
3981
ieee80211_get_txq_stats(struct wiphy * wiphy,struct wireless_dev * wdev,struct cfg80211_txq_stats * txqstats)3982 static int ieee80211_get_txq_stats(struct wiphy *wiphy,
3983 struct wireless_dev *wdev,
3984 struct cfg80211_txq_stats *txqstats)
3985 {
3986 struct ieee80211_local *local = wiphy_priv(wiphy);
3987 struct ieee80211_sub_if_data *sdata;
3988 int ret = 0;
3989
3990 if (!local->ops->wake_tx_queue)
3991 return 1;
3992
3993 spin_lock_bh(&local->fq.lock);
3994 rcu_read_lock();
3995
3996 if (wdev) {
3997 sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
3998 if (!sdata->vif.txq) {
3999 ret = 1;
4000 goto out;
4001 }
4002 ieee80211_fill_txq_stats(txqstats, to_txq_info(sdata->vif.txq));
4003 } else {
4004 /* phy stats */
4005 txqstats->filled |= BIT(NL80211_TXQ_STATS_BACKLOG_PACKETS) |
4006 BIT(NL80211_TXQ_STATS_BACKLOG_BYTES) |
4007 BIT(NL80211_TXQ_STATS_OVERLIMIT) |
4008 BIT(NL80211_TXQ_STATS_OVERMEMORY) |
4009 BIT(NL80211_TXQ_STATS_COLLISIONS) |
4010 BIT(NL80211_TXQ_STATS_MAX_FLOWS);
4011 txqstats->backlog_packets = local->fq.backlog;
4012 txqstats->backlog_bytes = local->fq.memory_usage;
4013 txqstats->overlimit = local->fq.overlimit;
4014 txqstats->overmemory = local->fq.overmemory;
4015 txqstats->collisions = local->fq.collisions;
4016 txqstats->max_flows = local->fq.flows_cnt;
4017 }
4018
4019 out:
4020 rcu_read_unlock();
4021 spin_unlock_bh(&local->fq.lock);
4022
4023 return ret;
4024 }
4025
4026 static int
ieee80211_get_ftm_responder_stats(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_ftm_responder_stats * ftm_stats)4027 ieee80211_get_ftm_responder_stats(struct wiphy *wiphy,
4028 struct net_device *dev,
4029 struct cfg80211_ftm_responder_stats *ftm_stats)
4030 {
4031 struct ieee80211_local *local = wiphy_priv(wiphy);
4032 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
4033
4034 return drv_get_ftm_responder_stats(local, sdata, ftm_stats);
4035 }
4036
4037 static int
ieee80211_start_pmsr(struct wiphy * wiphy,struct wireless_dev * dev,struct cfg80211_pmsr_request * request)4038 ieee80211_start_pmsr(struct wiphy *wiphy, struct wireless_dev *dev,
4039 struct cfg80211_pmsr_request *request)
4040 {
4041 struct ieee80211_local *local = wiphy_priv(wiphy);
4042 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(dev);
4043
4044 return drv_start_pmsr(local, sdata, request);
4045 }
4046
4047 static void
ieee80211_abort_pmsr(struct wiphy * wiphy,struct wireless_dev * dev,struct cfg80211_pmsr_request * request)4048 ieee80211_abort_pmsr(struct wiphy *wiphy, struct wireless_dev *dev,
4049 struct cfg80211_pmsr_request *request)
4050 {
4051 struct ieee80211_local *local = wiphy_priv(wiphy);
4052 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(dev);
4053
4054 return drv_abort_pmsr(local, sdata, request);
4055 }
4056
ieee80211_set_tid_config(struct wiphy * wiphy,struct net_device * dev,struct cfg80211_tid_config * tid_conf)4057 static int ieee80211_set_tid_config(struct wiphy *wiphy,
4058 struct net_device *dev,
4059 struct cfg80211_tid_config *tid_conf)
4060 {
4061 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
4062 struct sta_info *sta;
4063 int ret;
4064
4065 if (!sdata->local->ops->set_tid_config)
4066 return -EOPNOTSUPP;
4067
4068 if (!tid_conf->peer)
4069 return drv_set_tid_config(sdata->local, sdata, NULL, tid_conf);
4070
4071 mutex_lock(&sdata->local->sta_mtx);
4072 sta = sta_info_get_bss(sdata, tid_conf->peer);
4073 if (!sta) {
4074 mutex_unlock(&sdata->local->sta_mtx);
4075 return -ENOENT;
4076 }
4077
4078 ret = drv_set_tid_config(sdata->local, sdata, &sta->sta, tid_conf);
4079 mutex_unlock(&sdata->local->sta_mtx);
4080
4081 return ret;
4082 }
4083
ieee80211_reset_tid_config(struct wiphy * wiphy,struct net_device * dev,const u8 * peer,u8 tids)4084 static int ieee80211_reset_tid_config(struct wiphy *wiphy,
4085 struct net_device *dev,
4086 const u8 *peer, u8 tids)
4087 {
4088 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
4089 struct sta_info *sta;
4090 int ret;
4091
4092 if (!sdata->local->ops->reset_tid_config)
4093 return -EOPNOTSUPP;
4094
4095 if (!peer)
4096 return drv_reset_tid_config(sdata->local, sdata, NULL, tids);
4097
4098 mutex_lock(&sdata->local->sta_mtx);
4099 sta = sta_info_get_bss(sdata, peer);
4100 if (!sta) {
4101 mutex_unlock(&sdata->local->sta_mtx);
4102 return -ENOENT;
4103 }
4104
4105 ret = drv_reset_tid_config(sdata->local, sdata, &sta->sta, tids);
4106 mutex_unlock(&sdata->local->sta_mtx);
4107
4108 return ret;
4109 }
4110
4111 const struct cfg80211_ops mac80211_config_ops = {
4112 .add_virtual_intf = ieee80211_add_iface,
4113 .del_virtual_intf = ieee80211_del_iface,
4114 .change_virtual_intf = ieee80211_change_iface,
4115 .start_p2p_device = ieee80211_start_p2p_device,
4116 .stop_p2p_device = ieee80211_stop_p2p_device,
4117 .add_key = ieee80211_add_key,
4118 .del_key = ieee80211_del_key,
4119 .get_key = ieee80211_get_key,
4120 .set_default_key = ieee80211_config_default_key,
4121 .set_default_mgmt_key = ieee80211_config_default_mgmt_key,
4122 .set_default_beacon_key = ieee80211_config_default_beacon_key,
4123 .start_ap = ieee80211_start_ap,
4124 .change_beacon = ieee80211_change_beacon,
4125 .stop_ap = ieee80211_stop_ap,
4126 .add_station = ieee80211_add_station,
4127 .del_station = ieee80211_del_station,
4128 .change_station = ieee80211_change_station,
4129 .get_station = ieee80211_get_station,
4130 .dump_station = ieee80211_dump_station,
4131 .dump_survey = ieee80211_dump_survey,
4132 #ifdef CONFIG_MAC80211_MESH
4133 .add_mpath = ieee80211_add_mpath,
4134 .del_mpath = ieee80211_del_mpath,
4135 .change_mpath = ieee80211_change_mpath,
4136 .get_mpath = ieee80211_get_mpath,
4137 .dump_mpath = ieee80211_dump_mpath,
4138 .get_mpp = ieee80211_get_mpp,
4139 .dump_mpp = ieee80211_dump_mpp,
4140 .update_mesh_config = ieee80211_update_mesh_config,
4141 .get_mesh_config = ieee80211_get_mesh_config,
4142 .join_mesh = ieee80211_join_mesh,
4143 .leave_mesh = ieee80211_leave_mesh,
4144 #endif
4145 .join_ocb = ieee80211_join_ocb,
4146 .leave_ocb = ieee80211_leave_ocb,
4147 .change_bss = ieee80211_change_bss,
4148 .set_txq_params = ieee80211_set_txq_params,
4149 .set_monitor_channel = ieee80211_set_monitor_channel,
4150 .suspend = ieee80211_suspend,
4151 .resume = ieee80211_resume,
4152 .scan = ieee80211_scan,
4153 .abort_scan = ieee80211_abort_scan,
4154 .sched_scan_start = ieee80211_sched_scan_start,
4155 .sched_scan_stop = ieee80211_sched_scan_stop,
4156 .auth = ieee80211_auth,
4157 .assoc = ieee80211_assoc,
4158 .deauth = ieee80211_deauth,
4159 .disassoc = ieee80211_disassoc,
4160 .join_ibss = ieee80211_join_ibss,
4161 .leave_ibss = ieee80211_leave_ibss,
4162 .set_mcast_rate = ieee80211_set_mcast_rate,
4163 .set_wiphy_params = ieee80211_set_wiphy_params,
4164 .set_tx_power = ieee80211_set_tx_power,
4165 .get_tx_power = ieee80211_get_tx_power,
4166 .set_wds_peer = ieee80211_set_wds_peer,
4167 .rfkill_poll = ieee80211_rfkill_poll,
4168 CFG80211_TESTMODE_CMD(ieee80211_testmode_cmd)
4169 CFG80211_TESTMODE_DUMP(ieee80211_testmode_dump)
4170 .set_power_mgmt = ieee80211_set_power_mgmt,
4171 .set_bitrate_mask = ieee80211_set_bitrate_mask,
4172 .remain_on_channel = ieee80211_remain_on_channel,
4173 .cancel_remain_on_channel = ieee80211_cancel_remain_on_channel,
4174 .mgmt_tx = ieee80211_mgmt_tx,
4175 .mgmt_tx_cancel_wait = ieee80211_mgmt_tx_cancel_wait,
4176 .set_cqm_rssi_config = ieee80211_set_cqm_rssi_config,
4177 .set_cqm_rssi_range_config = ieee80211_set_cqm_rssi_range_config,
4178 .update_mgmt_frame_registrations =
4179 ieee80211_update_mgmt_frame_registrations,
4180 .set_antenna = ieee80211_set_antenna,
4181 .get_antenna = ieee80211_get_antenna,
4182 .set_rekey_data = ieee80211_set_rekey_data,
4183 .tdls_oper = ieee80211_tdls_oper,
4184 .tdls_mgmt = ieee80211_tdls_mgmt,
4185 .tdls_channel_switch = ieee80211_tdls_channel_switch,
4186 .tdls_cancel_channel_switch = ieee80211_tdls_cancel_channel_switch,
4187 .probe_client = ieee80211_probe_client,
4188 .set_noack_map = ieee80211_set_noack_map,
4189 #ifdef CONFIG_PM
4190 .set_wakeup = ieee80211_set_wakeup,
4191 #endif
4192 .get_channel = ieee80211_cfg_get_channel,
4193 .start_radar_detection = ieee80211_start_radar_detection,
4194 .end_cac = ieee80211_end_cac,
4195 .channel_switch = ieee80211_channel_switch,
4196 .set_qos_map = ieee80211_set_qos_map,
4197 .set_ap_chanwidth = ieee80211_set_ap_chanwidth,
4198 .add_tx_ts = ieee80211_add_tx_ts,
4199 .del_tx_ts = ieee80211_del_tx_ts,
4200 .start_nan = ieee80211_start_nan,
4201 .stop_nan = ieee80211_stop_nan,
4202 .nan_change_conf = ieee80211_nan_change_conf,
4203 .add_nan_func = ieee80211_add_nan_func,
4204 .del_nan_func = ieee80211_del_nan_func,
4205 .set_multicast_to_unicast = ieee80211_set_multicast_to_unicast,
4206 .tx_control_port = ieee80211_tx_control_port,
4207 .get_txq_stats = ieee80211_get_txq_stats,
4208 .get_ftm_responder_stats = ieee80211_get_ftm_responder_stats,
4209 .start_pmsr = ieee80211_start_pmsr,
4210 .abort_pmsr = ieee80211_abort_pmsr,
4211 .probe_mesh_link = ieee80211_probe_mesh_link,
4212 .set_tid_config = ieee80211_set_tid_config,
4213 .reset_tid_config = ieee80211_reset_tid_config,
4214 };
4215