1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright 2002-2005, Instant802 Networks, Inc.
6 * Copyright 2005-2006, Devicescape Software, Inc.
7 * Copyright (c) 2006 Jiri Benc <jbenc@suse.cz>
8 * Copyright 2008, Johannes Berg <johannes@sipsolutions.net>
9 * Copyright 2013-2014 Intel Mobile Communications GmbH
10 * Copyright (c) 2016 Intel Deutschland GmbH
11 * Copyright (C) 2018-2022 Intel Corporation
13 #include <linux/slab.h>
14 #include <linux/kernel.h>
15 #include <linux/if_arp.h>
16 #include <linux/netdevice.h>
17 #include <linux/rtnetlink.h>
18 #include <linux/kcov.h>
19 #include <net/mac80211.h>
20 #include <net/ieee80211_radiotap.h>
21 #include "ieee80211_i.h"
23 #include "debugfs_netdev.h"
26 #include "driver-ops.h"
31 * DOC: Interface list locking
33 * The interface list in each struct ieee80211_local is protected
36 * (1) modifications may only be done under the RTNL
37 * (2) modifications and readers are protected against each other by
39 * (3) modifications are done in an RCU manner so atomic readers
40 * can traverse the list in RCU-safe blocks.
42 * As a consequence, reads (traversals) of the list can be protected
43 * by either the RTNL, the iflist_mtx or RCU.
46 static void ieee80211_iface_work(struct work_struct *work);
48 bool __ieee80211_recalc_txpower(struct ieee80211_sub_if_data *sdata)
50 struct ieee80211_chanctx_conf *chanctx_conf;
54 chanctx_conf = rcu_dereference(sdata->vif.bss_conf.chanctx_conf);
60 power = ieee80211_chandef_max_power(&chanctx_conf->def);
63 if (sdata->deflink.user_power_level != IEEE80211_UNSET_POWER_LEVEL)
64 power = min(power, sdata->deflink.user_power_level);
66 if (sdata->deflink.ap_power_level != IEEE80211_UNSET_POWER_LEVEL)
67 power = min(power, sdata->deflink.ap_power_level);
69 if (power != sdata->vif.bss_conf.txpower) {
70 sdata->vif.bss_conf.txpower = power;
71 ieee80211_hw_config(sdata->local, 0);
78 void ieee80211_recalc_txpower(struct ieee80211_sub_if_data *sdata,
81 if (__ieee80211_recalc_txpower(sdata) ||
82 (update_bss && ieee80211_sdata_running(sdata)))
83 ieee80211_link_info_change_notify(sdata, &sdata->deflink,
87 static u32 __ieee80211_idle_off(struct ieee80211_local *local)
89 if (!(local->hw.conf.flags & IEEE80211_CONF_IDLE))
92 local->hw.conf.flags &= ~IEEE80211_CONF_IDLE;
93 return IEEE80211_CONF_CHANGE_IDLE;
96 static u32 __ieee80211_idle_on(struct ieee80211_local *local)
98 if (local->hw.conf.flags & IEEE80211_CONF_IDLE)
101 ieee80211_flush_queues(local, NULL, false);
103 local->hw.conf.flags |= IEEE80211_CONF_IDLE;
104 return IEEE80211_CONF_CHANGE_IDLE;
107 static u32 __ieee80211_recalc_idle(struct ieee80211_local *local,
110 bool working, scanning, active;
111 unsigned int led_trig_start = 0, led_trig_stop = 0;
113 lockdep_assert_held(&local->mtx);
115 active = force_active ||
116 !list_empty(&local->chanctx_list) ||
119 working = !local->ops->remain_on_channel &&
120 !list_empty(&local->roc_list);
122 scanning = test_bit(SCAN_SW_SCANNING, &local->scanning) ||
123 test_bit(SCAN_ONCHANNEL_SCANNING, &local->scanning);
125 if (working || scanning)
126 led_trig_start |= IEEE80211_TPT_LEDTRIG_FL_WORK;
128 led_trig_stop |= IEEE80211_TPT_LEDTRIG_FL_WORK;
131 led_trig_start |= IEEE80211_TPT_LEDTRIG_FL_CONNECTED;
133 led_trig_stop |= IEEE80211_TPT_LEDTRIG_FL_CONNECTED;
135 ieee80211_mod_tpt_led_trig(local, led_trig_start, led_trig_stop);
137 if (working || scanning || active)
138 return __ieee80211_idle_off(local);
139 return __ieee80211_idle_on(local);
142 u32 ieee80211_idle_off(struct ieee80211_local *local)
144 return __ieee80211_recalc_idle(local, true);
147 void ieee80211_recalc_idle(struct ieee80211_local *local)
149 u32 change = __ieee80211_recalc_idle(local, false);
151 ieee80211_hw_config(local, change);
154 static int ieee80211_verify_mac(struct ieee80211_sub_if_data *sdata, u8 *addr,
157 struct ieee80211_local *local = sdata->local;
158 struct ieee80211_sub_if_data *iter;
163 if (is_zero_ether_addr(local->hw.wiphy->addr_mask))
167 new = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) |
168 ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) |
169 ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8);
171 m = local->hw.wiphy->addr_mask;
172 mask = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) |
173 ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) |
174 ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8);
179 mutex_lock(&local->iflist_mtx);
180 list_for_each_entry(iter, &local->interfaces, list) {
184 if (iter->vif.type == NL80211_IFTYPE_MONITOR &&
185 !(iter->u.mntr.flags & MONITOR_FLAG_ACTIVE))
189 tmp = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) |
190 ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) |
191 ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8);
193 if ((new & ~mask) != (tmp & ~mask)) {
198 mutex_unlock(&local->iflist_mtx);
203 static int ieee80211_can_powered_addr_change(struct ieee80211_sub_if_data *sdata)
205 struct ieee80211_roc_work *roc;
206 struct ieee80211_local *local = sdata->local;
207 struct ieee80211_sub_if_data *scan_sdata;
210 /* To be the most flexible here we want to only limit changing the
211 * address if the specific interface is doing offchannel work or
214 if (netif_carrier_ok(sdata->dev))
217 mutex_lock(&local->mtx);
219 /* First check no ROC work is happening on this iface */
220 list_for_each_entry(roc, &local->roc_list, list) {
221 if (roc->sdata != sdata)
230 /* And if this iface is scanning */
231 if (local->scanning) {
232 scan_sdata = rcu_dereference_protected(local->scan_sdata,
233 lockdep_is_held(&local->mtx));
234 if (sdata == scan_sdata)
238 switch (sdata->vif.type) {
239 case NL80211_IFTYPE_STATION:
240 case NL80211_IFTYPE_P2P_CLIENT:
241 /* More interface types could be added here but changing the
242 * address while powered makes the most sense in client modes.
250 mutex_unlock(&local->mtx);
254 static int ieee80211_change_mac(struct net_device *dev, void *addr)
256 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
257 struct ieee80211_local *local = sdata->local;
258 struct sockaddr *sa = addr;
259 bool check_dup = true;
263 if (ieee80211_sdata_running(sdata)) {
264 ret = ieee80211_can_powered_addr_change(sdata);
271 if (sdata->vif.type == NL80211_IFTYPE_MONITOR &&
272 !(sdata->u.mntr.flags & MONITOR_FLAG_ACTIVE))
275 ret = ieee80211_verify_mac(sdata, sa->sa_data, check_dup);
280 drv_remove_interface(local, sdata);
281 ret = eth_mac_addr(dev, sa);
284 memcpy(sdata->vif.addr, sa->sa_data, ETH_ALEN);
285 ether_addr_copy(sdata->vif.bss_conf.addr, sdata->vif.addr);
288 /* Regardless of eth_mac_addr() return we still want to add the
289 * interface back. This should not fail...
292 WARN_ON(drv_add_interface(local, sdata));
297 static inline int identical_mac_addr_allowed(int type1, int type2)
299 return type1 == NL80211_IFTYPE_MONITOR ||
300 type2 == NL80211_IFTYPE_MONITOR ||
301 type1 == NL80211_IFTYPE_P2P_DEVICE ||
302 type2 == NL80211_IFTYPE_P2P_DEVICE ||
303 (type1 == NL80211_IFTYPE_AP && type2 == NL80211_IFTYPE_AP_VLAN) ||
304 (type1 == NL80211_IFTYPE_AP_VLAN &&
305 (type2 == NL80211_IFTYPE_AP ||
306 type2 == NL80211_IFTYPE_AP_VLAN));
309 static int ieee80211_check_concurrent_iface(struct ieee80211_sub_if_data *sdata,
310 enum nl80211_iftype iftype)
312 struct ieee80211_local *local = sdata->local;
313 struct ieee80211_sub_if_data *nsdata;
318 /* we hold the RTNL here so can safely walk the list */
319 list_for_each_entry(nsdata, &local->interfaces, list) {
320 if (nsdata != sdata && ieee80211_sdata_running(nsdata)) {
322 * Only OCB and monitor mode may coexist
324 if ((sdata->vif.type == NL80211_IFTYPE_OCB &&
325 nsdata->vif.type != NL80211_IFTYPE_MONITOR) ||
326 (sdata->vif.type != NL80211_IFTYPE_MONITOR &&
327 nsdata->vif.type == NL80211_IFTYPE_OCB))
331 * Allow only a single IBSS interface to be up at any
332 * time. This is restricted because beacon distribution
333 * cannot work properly if both are in the same IBSS.
335 * To remove this restriction we'd have to disallow them
336 * from setting the same SSID on different IBSS interfaces
337 * belonging to the same hardware. Then, however, we're
338 * faced with having to adopt two different TSF timers...
340 if (iftype == NL80211_IFTYPE_ADHOC &&
341 nsdata->vif.type == NL80211_IFTYPE_ADHOC)
344 * will not add another interface while any channel
347 if (nsdata->vif.bss_conf.csa_active)
351 * The remaining checks are only performed for interfaces
352 * with the same MAC address.
354 if (!ether_addr_equal(sdata->vif.addr,
359 * check whether it may have the same address
361 if (!identical_mac_addr_allowed(iftype,
365 /* No support for VLAN with MLO yet */
366 if (iftype == NL80211_IFTYPE_AP_VLAN &&
367 nsdata->wdev.use_4addr)
371 * can only add VLANs to enabled APs
373 if (iftype == NL80211_IFTYPE_AP_VLAN &&
374 nsdata->vif.type == NL80211_IFTYPE_AP)
375 sdata->bss = &nsdata->u.ap;
379 mutex_lock(&local->chanctx_mtx);
380 ret = ieee80211_check_combinations(sdata, NULL, 0, 0);
381 mutex_unlock(&local->chanctx_mtx);
385 static int ieee80211_check_queues(struct ieee80211_sub_if_data *sdata,
386 enum nl80211_iftype iftype)
388 int n_queues = sdata->local->hw.queues;
391 if (iftype == NL80211_IFTYPE_NAN)
394 if (iftype != NL80211_IFTYPE_P2P_DEVICE) {
395 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
396 if (WARN_ON_ONCE(sdata->vif.hw_queue[i] ==
397 IEEE80211_INVAL_HW_QUEUE))
399 if (WARN_ON_ONCE(sdata->vif.hw_queue[i] >=
405 if ((iftype != NL80211_IFTYPE_AP &&
406 iftype != NL80211_IFTYPE_P2P_GO &&
407 iftype != NL80211_IFTYPE_MESH_POINT) ||
408 !ieee80211_hw_check(&sdata->local->hw, QUEUE_CONTROL)) {
409 sdata->vif.cab_queue = IEEE80211_INVAL_HW_QUEUE;
413 if (WARN_ON_ONCE(sdata->vif.cab_queue == IEEE80211_INVAL_HW_QUEUE))
416 if (WARN_ON_ONCE(sdata->vif.cab_queue >= n_queues))
422 static int ieee80211_open(struct net_device *dev)
424 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
427 /* fail early if user set an invalid address */
428 if (!is_valid_ether_addr(dev->dev_addr))
429 return -EADDRNOTAVAIL;
431 err = ieee80211_check_concurrent_iface(sdata, sdata->vif.type);
435 wiphy_lock(sdata->local->hw.wiphy);
436 err = ieee80211_do_open(&sdata->wdev, true);
437 wiphy_unlock(sdata->local->hw.wiphy);
442 static void ieee80211_do_stop(struct ieee80211_sub_if_data *sdata, bool going_down)
444 struct ieee80211_local *local = sdata->local;
446 struct sk_buff *skb, *tmp;
447 u32 hw_reconf_flags = 0;
450 struct cfg80211_chan_def chandef;
452 struct cfg80211_nan_func *func;
454 clear_bit(SDATA_STATE_RUNNING, &sdata->state);
455 synchronize_rcu(); /* flush _ieee80211_wake_txqs() */
457 cancel_scan = rcu_access_pointer(local->scan_sdata) == sdata;
459 ieee80211_scan_cancel(local);
462 * Stop TX on this interface first.
464 if (!local->ops->wake_tx_queue && sdata->dev)
465 netif_tx_stop_all_queues(sdata->dev);
467 ieee80211_roc_purge(local, sdata);
469 switch (sdata->vif.type) {
470 case NL80211_IFTYPE_STATION:
471 ieee80211_mgd_stop(sdata);
473 case NL80211_IFTYPE_ADHOC:
474 ieee80211_ibss_stop(sdata);
476 case NL80211_IFTYPE_MONITOR:
477 if (sdata->u.mntr.flags & MONITOR_FLAG_COOK_FRAMES)
479 list_del_rcu(&sdata->u.mntr.list);
486 * Remove all stations associated with this interface.
488 * This must be done before calling ops->remove_interface()
489 * because otherwise we can later invoke ops->sta_notify()
490 * whenever the STAs are removed, and that invalidates driver
491 * assumptions about always getting a vif pointer that is valid
492 * (because if we remove a STA after ops->remove_interface()
493 * the driver will have removed the vif info already!)
495 * For AP_VLANs stations may exist since there's nothing else that
496 * would have removed them, but in other modes there shouldn't
499 flushed = sta_info_flush(sdata);
500 WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_AP_VLAN && flushed > 0);
502 /* don't count this interface for allmulti while it is down */
503 if (sdata->flags & IEEE80211_SDATA_ALLMULTI)
504 atomic_dec(&local->iff_allmultis);
506 if (sdata->vif.type == NL80211_IFTYPE_AP) {
508 local->fif_probe_req--;
509 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
510 local->fif_probe_req--;
514 netif_addr_lock_bh(sdata->dev);
515 spin_lock_bh(&local->filter_lock);
516 __hw_addr_unsync(&local->mc_list, &sdata->dev->mc,
517 sdata->dev->addr_len);
518 spin_unlock_bh(&local->filter_lock);
519 netif_addr_unlock_bh(sdata->dev);
522 del_timer_sync(&local->dynamic_ps_timer);
523 cancel_work_sync(&local->dynamic_ps_enable_work);
525 cancel_work_sync(&sdata->recalc_smps);
528 WARN(sdata->vif.valid_links,
529 "destroying interface with valid links 0x%04x\n",
530 sdata->vif.valid_links);
532 mutex_lock(&local->mtx);
533 sdata->vif.bss_conf.csa_active = false;
534 if (sdata->vif.type == NL80211_IFTYPE_STATION)
535 sdata->deflink.u.mgd.csa_waiting_bcn = false;
536 if (sdata->deflink.csa_block_tx) {
537 ieee80211_wake_vif_queues(local, sdata,
538 IEEE80211_QUEUE_STOP_REASON_CSA);
539 sdata->deflink.csa_block_tx = false;
541 mutex_unlock(&local->mtx);
544 cancel_work_sync(&sdata->deflink.csa_finalize_work);
545 cancel_work_sync(&sdata->deflink.color_change_finalize_work);
547 cancel_delayed_work_sync(&sdata->deflink.dfs_cac_timer_work);
549 if (sdata->wdev.cac_started) {
550 chandef = sdata->vif.bss_conf.chandef;
551 WARN_ON(local->suspended);
552 mutex_lock(&local->mtx);
553 ieee80211_link_release_channel(&sdata->deflink);
554 mutex_unlock(&local->mtx);
555 cfg80211_cac_event(sdata->dev, &chandef,
556 NL80211_RADAR_CAC_ABORTED,
560 if (sdata->vif.type == NL80211_IFTYPE_AP) {
561 WARN_ON(!list_empty(&sdata->u.ap.vlans));
562 } else if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
563 /* remove all packets in parent bc_buf pointing to this dev */
564 ps = &sdata->bss->ps;
566 spin_lock_irqsave(&ps->bc_buf.lock, flags);
567 skb_queue_walk_safe(&ps->bc_buf, skb, tmp) {
568 if (skb->dev == sdata->dev) {
569 __skb_unlink(skb, &ps->bc_buf);
570 local->total_ps_buffered--;
571 ieee80211_free_txskb(&local->hw, skb);
574 spin_unlock_irqrestore(&ps->bc_buf.lock, flags);
580 switch (sdata->vif.type) {
581 case NL80211_IFTYPE_AP_VLAN:
582 mutex_lock(&local->mtx);
583 list_del(&sdata->u.vlan.list);
584 mutex_unlock(&local->mtx);
585 RCU_INIT_POINTER(sdata->vif.bss_conf.chanctx_conf, NULL);
586 /* see comment in the default case below */
587 ieee80211_free_keys(sdata, true);
588 /* no need to tell driver */
590 case NL80211_IFTYPE_MONITOR:
591 if (sdata->u.mntr.flags & MONITOR_FLAG_COOK_FRAMES) {
592 local->cooked_mntrs--;
597 if (local->monitors == 0) {
598 local->hw.conf.flags &= ~IEEE80211_CONF_MONITOR;
599 hw_reconf_flags |= IEEE80211_CONF_CHANGE_MONITOR;
602 ieee80211_adjust_monitor_flags(sdata, -1);
604 case NL80211_IFTYPE_NAN:
605 /* clean all the functions */
606 spin_lock_bh(&sdata->u.nan.func_lock);
608 idr_for_each_entry(&sdata->u.nan.function_inst_ids, func, i) {
609 idr_remove(&sdata->u.nan.function_inst_ids, i);
610 cfg80211_free_nan_func(func);
612 idr_destroy(&sdata->u.nan.function_inst_ids);
614 spin_unlock_bh(&sdata->u.nan.func_lock);
616 case NL80211_IFTYPE_P2P_DEVICE:
617 /* relies on synchronize_rcu() below */
618 RCU_INIT_POINTER(local->p2p_sdata, NULL);
621 cancel_work_sync(&sdata->work);
623 * When we get here, the interface is marked down.
624 * Free the remaining keys, if there are any
625 * (which can happen in AP mode if userspace sets
626 * keys before the interface is operating)
628 * Force the key freeing to always synchronize_net()
629 * to wait for the RX path in case it is using this
630 * interface enqueuing frames at this very time on
633 ieee80211_free_keys(sdata, true);
634 skb_queue_purge(&sdata->skb_queue);
635 skb_queue_purge(&sdata->status_queue);
638 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
639 for (i = 0; i < IEEE80211_MAX_QUEUES; i++) {
640 skb_queue_walk_safe(&local->pending[i], skb, tmp) {
641 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
642 if (info->control.vif == &sdata->vif) {
643 __skb_unlink(skb, &local->pending[i]);
644 ieee80211_free_txskb(&local->hw, skb);
648 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
650 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
651 ieee80211_txq_remove_vlan(local, sdata);
655 if (local->open_count == 0)
656 ieee80211_clear_tx_pending(local);
658 sdata->vif.bss_conf.beacon_int = 0;
661 * If the interface goes down while suspended, presumably because
662 * the device was unplugged and that happens before our resume,
663 * then the driver is already unconfigured and the remainder of
664 * this function isn't needed.
665 * XXX: what about WoWLAN? If the device has software state, e.g.
666 * memory allocated, it might expect teardown commands from
669 if (local->suspended) {
670 WARN_ON(local->wowlan);
671 WARN_ON(rcu_access_pointer(local->monitor_sdata));
675 switch (sdata->vif.type) {
676 case NL80211_IFTYPE_AP_VLAN:
678 case NL80211_IFTYPE_MONITOR:
679 if (local->monitors == 0)
680 ieee80211_del_virtual_monitor(local);
682 mutex_lock(&local->mtx);
683 ieee80211_recalc_idle(local);
684 mutex_unlock(&local->mtx);
686 if (!(sdata->u.mntr.flags & MONITOR_FLAG_ACTIVE))
692 drv_remove_interface(local, sdata);
695 ieee80211_recalc_ps(local);
698 flush_delayed_work(&local->scan_work);
700 if (local->open_count == 0) {
701 ieee80211_stop_device(local);
703 /* no reconfiguring after stop! */
707 /* do after stop to avoid reconfiguring when we stop anyway */
708 ieee80211_configure_filter(local);
709 ieee80211_hw_config(local, hw_reconf_flags);
711 if (local->monitors == local->open_count)
712 ieee80211_add_virtual_monitor(local);
715 static void ieee80211_stop_mbssid(struct ieee80211_sub_if_data *sdata)
717 struct ieee80211_sub_if_data *tx_sdata, *non_tx_sdata, *tmp_sdata;
718 struct ieee80211_vif *tx_vif = sdata->vif.mbssid_tx_vif;
723 tx_sdata = vif_to_sdata(tx_vif);
724 sdata->vif.mbssid_tx_vif = NULL;
726 list_for_each_entry_safe(non_tx_sdata, tmp_sdata,
727 &tx_sdata->local->interfaces, list) {
728 if (non_tx_sdata != sdata && non_tx_sdata != tx_sdata &&
729 non_tx_sdata->vif.mbssid_tx_vif == tx_vif &&
730 ieee80211_sdata_running(non_tx_sdata)) {
731 non_tx_sdata->vif.mbssid_tx_vif = NULL;
732 dev_close(non_tx_sdata->wdev.netdev);
736 if (sdata != tx_sdata && ieee80211_sdata_running(tx_sdata)) {
737 tx_sdata->vif.mbssid_tx_vif = NULL;
738 dev_close(tx_sdata->wdev.netdev);
742 static int ieee80211_stop(struct net_device *dev)
744 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
746 /* close dependent VLAN and MBSSID interfaces before locking wiphy */
747 if (sdata->vif.type == NL80211_IFTYPE_AP) {
748 struct ieee80211_sub_if_data *vlan, *tmpsdata;
750 list_for_each_entry_safe(vlan, tmpsdata, &sdata->u.ap.vlans,
752 dev_close(vlan->dev);
754 ieee80211_stop_mbssid(sdata);
757 cancel_work_sync(&sdata->activate_links_work);
759 wiphy_lock(sdata->local->hw.wiphy);
760 ieee80211_do_stop(sdata, true);
761 wiphy_unlock(sdata->local->hw.wiphy);
766 static void ieee80211_set_multicast_list(struct net_device *dev)
768 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
769 struct ieee80211_local *local = sdata->local;
770 int allmulti, sdata_allmulti;
772 allmulti = !!(dev->flags & IFF_ALLMULTI);
773 sdata_allmulti = !!(sdata->flags & IEEE80211_SDATA_ALLMULTI);
775 if (allmulti != sdata_allmulti) {
776 if (dev->flags & IFF_ALLMULTI)
777 atomic_inc(&local->iff_allmultis);
779 atomic_dec(&local->iff_allmultis);
780 sdata->flags ^= IEEE80211_SDATA_ALLMULTI;
783 spin_lock_bh(&local->filter_lock);
784 __hw_addr_sync(&local->mc_list, &dev->mc, dev->addr_len);
785 spin_unlock_bh(&local->filter_lock);
786 ieee80211_queue_work(&local->hw, &local->reconfig_filter);
790 * Called when the netdev is removed or, by the code below, before
791 * the interface type changes.
793 static void ieee80211_teardown_sdata(struct ieee80211_sub_if_data *sdata)
795 /* free extra data */
796 ieee80211_free_keys(sdata, false);
798 ieee80211_debugfs_remove_netdev(sdata);
800 ieee80211_destroy_frag_cache(&sdata->frags);
802 if (ieee80211_vif_is_mesh(&sdata->vif))
803 ieee80211_mesh_teardown_sdata(sdata);
805 ieee80211_vif_clear_links(sdata);
806 ieee80211_link_stop(&sdata->deflink);
809 static void ieee80211_uninit(struct net_device *dev)
811 ieee80211_teardown_sdata(IEEE80211_DEV_TO_SUB_IF(dev));
814 static u16 ieee80211_netdev_select_queue(struct net_device *dev,
816 struct net_device *sb_dev)
818 return ieee80211_select_queue(IEEE80211_DEV_TO_SUB_IF(dev), skb);
822 ieee80211_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
824 dev_fetch_sw_netstats(stats, dev->tstats);
827 static const struct net_device_ops ieee80211_dataif_ops = {
828 .ndo_open = ieee80211_open,
829 .ndo_stop = ieee80211_stop,
830 .ndo_uninit = ieee80211_uninit,
831 .ndo_start_xmit = ieee80211_subif_start_xmit,
832 .ndo_set_rx_mode = ieee80211_set_multicast_list,
833 .ndo_set_mac_address = ieee80211_change_mac,
834 .ndo_select_queue = ieee80211_netdev_select_queue,
835 .ndo_get_stats64 = ieee80211_get_stats64,
838 static u16 ieee80211_monitor_select_queue(struct net_device *dev,
840 struct net_device *sb_dev)
842 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
843 struct ieee80211_local *local = sdata->local;
844 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
845 struct ieee80211_hdr *hdr;
848 if (local->hw.queues < IEEE80211_NUM_ACS)
851 /* reset flags and info before parsing radiotap header */
852 memset(info, 0, sizeof(*info));
854 if (!ieee80211_parse_tx_radiotap(skb, dev))
855 return 0; /* doesn't matter, frame will be dropped */
857 len_rthdr = ieee80211_get_radiotap_len(skb->data);
858 hdr = (struct ieee80211_hdr *)(skb->data + len_rthdr);
859 if (skb->len < len_rthdr + 2 ||
860 skb->len < len_rthdr + ieee80211_hdrlen(hdr->frame_control))
861 return 0; /* doesn't matter, frame will be dropped */
863 return ieee80211_select_queue_80211(sdata, skb, hdr);
866 static const struct net_device_ops ieee80211_monitorif_ops = {
867 .ndo_open = ieee80211_open,
868 .ndo_stop = ieee80211_stop,
869 .ndo_uninit = ieee80211_uninit,
870 .ndo_start_xmit = ieee80211_monitor_start_xmit,
871 .ndo_set_rx_mode = ieee80211_set_multicast_list,
872 .ndo_set_mac_address = ieee80211_change_mac,
873 .ndo_select_queue = ieee80211_monitor_select_queue,
874 .ndo_get_stats64 = ieee80211_get_stats64,
877 static int ieee80211_netdev_fill_forward_path(struct net_device_path_ctx *ctx,
878 struct net_device_path *path)
880 struct ieee80211_sub_if_data *sdata;
881 struct ieee80211_local *local;
882 struct sta_info *sta;
885 sdata = IEEE80211_DEV_TO_SUB_IF(ctx->dev);
886 local = sdata->local;
888 if (!local->ops->net_fill_forward_path)
892 switch (sdata->vif.type) {
893 case NL80211_IFTYPE_AP_VLAN:
894 sta = rcu_dereference(sdata->u.vlan.sta);
897 if (sdata->wdev.use_4addr)
899 if (is_multicast_ether_addr(ctx->daddr))
901 sta = sta_info_get_bss(sdata, ctx->daddr);
903 case NL80211_IFTYPE_AP:
904 if (is_multicast_ether_addr(ctx->daddr))
906 sta = sta_info_get(sdata, ctx->daddr);
908 case NL80211_IFTYPE_STATION:
909 if (sdata->wdev.wiphy->flags & WIPHY_FLAG_SUPPORTS_TDLS) {
910 sta = sta_info_get(sdata, ctx->daddr);
911 if (sta && test_sta_flag(sta, WLAN_STA_TDLS_PEER)) {
912 if (!test_sta_flag(sta, WLAN_STA_TDLS_PEER_AUTH))
919 sta = sta_info_get(sdata, sdata->deflink.u.mgd.bssid);
928 ret = drv_net_fill_forward_path(local, sdata, &sta->sta, ctx, path);
935 static const struct net_device_ops ieee80211_dataif_8023_ops = {
936 .ndo_open = ieee80211_open,
937 .ndo_stop = ieee80211_stop,
938 .ndo_uninit = ieee80211_uninit,
939 .ndo_start_xmit = ieee80211_subif_start_xmit_8023,
940 .ndo_set_rx_mode = ieee80211_set_multicast_list,
941 .ndo_set_mac_address = ieee80211_change_mac,
942 .ndo_select_queue = ieee80211_netdev_select_queue,
943 .ndo_get_stats64 = ieee80211_get_stats64,
944 .ndo_fill_forward_path = ieee80211_netdev_fill_forward_path,
947 static bool ieee80211_iftype_supports_hdr_offload(enum nl80211_iftype iftype)
950 /* P2P GO and client are mapped to AP/STATION types */
951 case NL80211_IFTYPE_AP:
952 case NL80211_IFTYPE_STATION:
959 static bool ieee80211_set_sdata_offload_flags(struct ieee80211_sub_if_data *sdata)
961 struct ieee80211_local *local = sdata->local;
964 flags = sdata->vif.offload_flags;
966 if (ieee80211_hw_check(&local->hw, SUPPORTS_TX_ENCAP_OFFLOAD) &&
967 ieee80211_iftype_supports_hdr_offload(sdata->vif.type)) {
968 flags |= IEEE80211_OFFLOAD_ENCAP_ENABLED;
970 if (!ieee80211_hw_check(&local->hw, SUPPORTS_TX_FRAG) &&
971 local->hw.wiphy->frag_threshold != (u32)-1)
972 flags &= ~IEEE80211_OFFLOAD_ENCAP_ENABLED;
975 flags &= ~IEEE80211_OFFLOAD_ENCAP_ENABLED;
977 flags &= ~IEEE80211_OFFLOAD_ENCAP_ENABLED;
980 if (ieee80211_hw_check(&local->hw, SUPPORTS_RX_DECAP_OFFLOAD) &&
981 ieee80211_iftype_supports_hdr_offload(sdata->vif.type)) {
982 flags |= IEEE80211_OFFLOAD_DECAP_ENABLED;
984 if (local->monitors &&
985 !ieee80211_hw_check(&local->hw, SUPPORTS_CONC_MON_RX_DECAP))
986 flags &= ~IEEE80211_OFFLOAD_DECAP_ENABLED;
988 flags &= ~IEEE80211_OFFLOAD_DECAP_ENABLED;
991 if (sdata->vif.offload_flags == flags)
994 sdata->vif.offload_flags = flags;
995 ieee80211_check_fast_rx_iface(sdata);
999 static void ieee80211_set_vif_encap_ops(struct ieee80211_sub_if_data *sdata)
1001 struct ieee80211_local *local = sdata->local;
1002 struct ieee80211_sub_if_data *bss = sdata;
1005 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
1009 bss = container_of(sdata->bss, struct ieee80211_sub_if_data, u.ap);
1012 if (!ieee80211_hw_check(&local->hw, SUPPORTS_TX_ENCAP_OFFLOAD) ||
1013 !ieee80211_iftype_supports_hdr_offload(bss->vif.type))
1016 enabled = bss->vif.offload_flags & IEEE80211_OFFLOAD_ENCAP_ENABLED;
1017 if (sdata->wdev.use_4addr &&
1018 !(bss->vif.offload_flags & IEEE80211_OFFLOAD_ENCAP_4ADDR))
1021 sdata->dev->netdev_ops = enabled ? &ieee80211_dataif_8023_ops :
1022 &ieee80211_dataif_ops;
1025 static void ieee80211_recalc_sdata_offload(struct ieee80211_sub_if_data *sdata)
1027 struct ieee80211_local *local = sdata->local;
1028 struct ieee80211_sub_if_data *vsdata;
1030 if (ieee80211_set_sdata_offload_flags(sdata)) {
1031 drv_update_vif_offload(local, sdata);
1032 ieee80211_set_vif_encap_ops(sdata);
1035 list_for_each_entry(vsdata, &local->interfaces, list) {
1036 if (vsdata->vif.type != NL80211_IFTYPE_AP_VLAN ||
1037 vsdata->bss != &sdata->u.ap)
1040 ieee80211_set_vif_encap_ops(vsdata);
1044 void ieee80211_recalc_offload(struct ieee80211_local *local)
1046 struct ieee80211_sub_if_data *sdata;
1048 if (!ieee80211_hw_check(&local->hw, SUPPORTS_TX_ENCAP_OFFLOAD))
1051 mutex_lock(&local->iflist_mtx);
1053 list_for_each_entry(sdata, &local->interfaces, list) {
1054 if (!ieee80211_sdata_running(sdata))
1057 ieee80211_recalc_sdata_offload(sdata);
1060 mutex_unlock(&local->iflist_mtx);
1063 void ieee80211_adjust_monitor_flags(struct ieee80211_sub_if_data *sdata,
1066 struct ieee80211_local *local = sdata->local;
1067 u32 flags = sdata->u.mntr.flags;
1069 #define ADJUST(_f, _s) do { \
1070 if (flags & MONITOR_FLAG_##_f) \
1071 local->fif_##_s += offset; \
1074 ADJUST(FCSFAIL, fcsfail);
1075 ADJUST(PLCPFAIL, plcpfail);
1076 ADJUST(CONTROL, control);
1077 ADJUST(CONTROL, pspoll);
1078 ADJUST(OTHER_BSS, other_bss);
1083 static void ieee80211_set_default_queues(struct ieee80211_sub_if_data *sdata)
1085 struct ieee80211_local *local = sdata->local;
1088 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
1089 if (ieee80211_hw_check(&local->hw, QUEUE_CONTROL))
1090 sdata->vif.hw_queue[i] = IEEE80211_INVAL_HW_QUEUE;
1091 else if (local->hw.queues >= IEEE80211_NUM_ACS)
1092 sdata->vif.hw_queue[i] = i;
1094 sdata->vif.hw_queue[i] = 0;
1096 sdata->vif.cab_queue = IEEE80211_INVAL_HW_QUEUE;
1099 static void ieee80211_sdata_init(struct ieee80211_local *local,
1100 struct ieee80211_sub_if_data *sdata)
1102 sdata->local = local;
1105 * Initialize the default link, so we can use link_id 0 for non-MLD,
1106 * and that continues to work for non-MLD-aware drivers that use just
1107 * vif.bss_conf instead of vif.link_conf.
1109 * Note that we never change this, so if link ID 0 isn't used in an
1110 * MLD connection, we get a separate allocation for it.
1112 ieee80211_link_init(sdata, -1, &sdata->deflink, &sdata->vif.bss_conf);
1115 int ieee80211_add_virtual_monitor(struct ieee80211_local *local)
1117 struct ieee80211_sub_if_data *sdata;
1120 if (!ieee80211_hw_check(&local->hw, WANT_MONITOR_VIF))
1124 lockdep_assert_wiphy(local->hw.wiphy);
1126 if (local->monitor_sdata)
1129 sdata = kzalloc(sizeof(*sdata) + local->hw.vif_data_size, GFP_KERNEL);
1134 sdata->vif.type = NL80211_IFTYPE_MONITOR;
1135 snprintf(sdata->name, IFNAMSIZ, "%s-monitor",
1136 wiphy_name(local->hw.wiphy));
1137 sdata->wdev.iftype = NL80211_IFTYPE_MONITOR;
1139 ieee80211_sdata_init(local, sdata);
1141 ieee80211_set_default_queues(sdata);
1143 ret = drv_add_interface(local, sdata);
1145 /* ok .. stupid driver, it asked for this! */
1150 set_bit(SDATA_STATE_RUNNING, &sdata->state);
1152 ret = ieee80211_check_queues(sdata, NL80211_IFTYPE_MONITOR);
1158 mutex_lock(&local->iflist_mtx);
1159 rcu_assign_pointer(local->monitor_sdata, sdata);
1160 mutex_unlock(&local->iflist_mtx);
1162 mutex_lock(&local->mtx);
1163 ret = ieee80211_link_use_channel(&sdata->deflink, &local->monitor_chandef,
1164 IEEE80211_CHANCTX_EXCLUSIVE);
1165 mutex_unlock(&local->mtx);
1167 mutex_lock(&local->iflist_mtx);
1168 RCU_INIT_POINTER(local->monitor_sdata, NULL);
1169 mutex_unlock(&local->iflist_mtx);
1171 drv_remove_interface(local, sdata);
1176 skb_queue_head_init(&sdata->skb_queue);
1177 skb_queue_head_init(&sdata->status_queue);
1178 INIT_WORK(&sdata->work, ieee80211_iface_work);
1183 void ieee80211_del_virtual_monitor(struct ieee80211_local *local)
1185 struct ieee80211_sub_if_data *sdata;
1187 if (!ieee80211_hw_check(&local->hw, WANT_MONITOR_VIF))
1191 lockdep_assert_wiphy(local->hw.wiphy);
1193 mutex_lock(&local->iflist_mtx);
1195 sdata = rcu_dereference_protected(local->monitor_sdata,
1196 lockdep_is_held(&local->iflist_mtx));
1198 mutex_unlock(&local->iflist_mtx);
1202 RCU_INIT_POINTER(local->monitor_sdata, NULL);
1203 mutex_unlock(&local->iflist_mtx);
1207 mutex_lock(&local->mtx);
1208 ieee80211_link_release_channel(&sdata->deflink);
1209 mutex_unlock(&local->mtx);
1211 drv_remove_interface(local, sdata);
1217 * NOTE: Be very careful when changing this function, it must NOT return
1218 * an error on interface type changes that have been pre-checked, so most
1219 * checks should be in ieee80211_check_concurrent_iface.
1221 int ieee80211_do_open(struct wireless_dev *wdev, bool coming_up)
1223 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
1224 struct net_device *dev = wdev->netdev;
1225 struct ieee80211_local *local = sdata->local;
1228 u32 hw_reconf_flags = 0;
1230 switch (sdata->vif.type) {
1231 case NL80211_IFTYPE_AP_VLAN: {
1232 struct ieee80211_sub_if_data *master;
1237 mutex_lock(&local->mtx);
1238 list_add(&sdata->u.vlan.list, &sdata->bss->vlans);
1239 mutex_unlock(&local->mtx);
1241 master = container_of(sdata->bss,
1242 struct ieee80211_sub_if_data, u.ap);
1243 sdata->control_port_protocol =
1244 master->control_port_protocol;
1245 sdata->control_port_no_encrypt =
1246 master->control_port_no_encrypt;
1247 sdata->control_port_over_nl80211 =
1248 master->control_port_over_nl80211;
1249 sdata->control_port_no_preauth =
1250 master->control_port_no_preauth;
1251 sdata->vif.cab_queue = master->vif.cab_queue;
1252 memcpy(sdata->vif.hw_queue, master->vif.hw_queue,
1253 sizeof(sdata->vif.hw_queue));
1254 sdata->vif.bss_conf.chandef = master->vif.bss_conf.chandef;
1256 mutex_lock(&local->key_mtx);
1257 sdata->crypto_tx_tailroom_needed_cnt +=
1258 master->crypto_tx_tailroom_needed_cnt;
1259 mutex_unlock(&local->key_mtx);
1263 case NL80211_IFTYPE_AP:
1264 sdata->bss = &sdata->u.ap;
1266 case NL80211_IFTYPE_MESH_POINT:
1267 case NL80211_IFTYPE_STATION:
1268 case NL80211_IFTYPE_MONITOR:
1269 case NL80211_IFTYPE_ADHOC:
1270 case NL80211_IFTYPE_P2P_DEVICE:
1271 case NL80211_IFTYPE_OCB:
1272 case NL80211_IFTYPE_NAN:
1273 /* no special treatment */
1275 case NL80211_IFTYPE_UNSPECIFIED:
1276 case NUM_NL80211_IFTYPES:
1277 case NL80211_IFTYPE_P2P_CLIENT:
1278 case NL80211_IFTYPE_P2P_GO:
1279 case NL80211_IFTYPE_WDS:
1285 if (local->open_count == 0) {
1286 res = drv_start(local);
1289 /* we're brought up, everything changes */
1290 hw_reconf_flags = ~0;
1291 ieee80211_led_radio(local, true);
1292 ieee80211_mod_tpt_led_trig(local,
1293 IEEE80211_TPT_LEDTRIG_FL_RADIO, 0);
1297 * Copy the hopefully now-present MAC address to
1298 * this interface, if it has the special null one.
1300 if (dev && is_zero_ether_addr(dev->dev_addr)) {
1301 eth_hw_addr_set(dev, local->hw.wiphy->perm_addr);
1302 memcpy(dev->perm_addr, dev->dev_addr, ETH_ALEN);
1304 if (!is_valid_ether_addr(dev->dev_addr)) {
1305 res = -EADDRNOTAVAIL;
1310 switch (sdata->vif.type) {
1311 case NL80211_IFTYPE_AP_VLAN:
1312 /* no need to tell driver, but set carrier and chanctx */
1313 if (sdata->bss->active) {
1314 ieee80211_link_vlan_copy_chanctx(&sdata->deflink);
1315 netif_carrier_on(dev);
1316 ieee80211_set_vif_encap_ops(sdata);
1318 netif_carrier_off(dev);
1321 case NL80211_IFTYPE_MONITOR:
1322 if (sdata->u.mntr.flags & MONITOR_FLAG_COOK_FRAMES) {
1323 local->cooked_mntrs++;
1327 if (sdata->u.mntr.flags & MONITOR_FLAG_ACTIVE) {
1328 res = drv_add_interface(local, sdata);
1331 } else if (local->monitors == 0 && local->open_count == 0) {
1332 res = ieee80211_add_virtual_monitor(local);
1337 /* must be before the call to ieee80211_configure_filter */
1339 if (local->monitors == 1) {
1340 local->hw.conf.flags |= IEEE80211_CONF_MONITOR;
1341 hw_reconf_flags |= IEEE80211_CONF_CHANGE_MONITOR;
1344 ieee80211_adjust_monitor_flags(sdata, 1);
1345 ieee80211_configure_filter(local);
1346 ieee80211_recalc_offload(local);
1347 mutex_lock(&local->mtx);
1348 ieee80211_recalc_idle(local);
1349 mutex_unlock(&local->mtx);
1351 netif_carrier_on(dev);
1355 ieee80211_del_virtual_monitor(local);
1356 ieee80211_set_sdata_offload_flags(sdata);
1358 res = drv_add_interface(local, sdata);
1362 ieee80211_set_vif_encap_ops(sdata);
1363 res = ieee80211_check_queues(sdata,
1364 ieee80211_vif_type_p2p(&sdata->vif));
1366 goto err_del_interface;
1369 if (sdata->vif.type == NL80211_IFTYPE_AP) {
1370 local->fif_pspoll++;
1371 local->fif_probe_req++;
1373 ieee80211_configure_filter(local);
1374 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
1375 local->fif_probe_req++;
1378 if (sdata->vif.probe_req_reg)
1379 drv_config_iface_filter(local, sdata,
1383 if (sdata->vif.type != NL80211_IFTYPE_P2P_DEVICE &&
1384 sdata->vif.type != NL80211_IFTYPE_NAN)
1385 changed |= ieee80211_reset_erp_info(sdata);
1386 ieee80211_link_info_change_notify(sdata, &sdata->deflink,
1389 switch (sdata->vif.type) {
1390 case NL80211_IFTYPE_STATION:
1391 case NL80211_IFTYPE_ADHOC:
1392 case NL80211_IFTYPE_AP:
1393 case NL80211_IFTYPE_MESH_POINT:
1394 case NL80211_IFTYPE_OCB:
1395 netif_carrier_off(dev);
1397 case NL80211_IFTYPE_P2P_DEVICE:
1398 case NL80211_IFTYPE_NAN:
1406 * Set default queue parameters so drivers don't
1407 * need to initialise the hardware if the hardware
1408 * doesn't start up with sane defaults.
1409 * Enable QoS for anything but station interfaces.
1411 ieee80211_set_wmm_default(&sdata->deflink, true,
1412 sdata->vif.type != NL80211_IFTYPE_STATION);
1415 switch (sdata->vif.type) {
1416 case NL80211_IFTYPE_P2P_DEVICE:
1417 rcu_assign_pointer(local->p2p_sdata, sdata);
1419 case NL80211_IFTYPE_MONITOR:
1420 if (sdata->u.mntr.flags & MONITOR_FLAG_COOK_FRAMES)
1422 list_add_tail_rcu(&sdata->u.mntr.list, &local->mon_list);
1429 * set_multicast_list will be invoked by the networking core
1430 * which will check whether any increments here were done in
1431 * error and sync them down to the hardware as filter flags.
1433 if (sdata->flags & IEEE80211_SDATA_ALLMULTI)
1434 atomic_inc(&local->iff_allmultis);
1437 local->open_count++;
1439 if (hw_reconf_flags)
1440 ieee80211_hw_config(local, hw_reconf_flags);
1442 ieee80211_recalc_ps(local);
1444 if (sdata->vif.type == NL80211_IFTYPE_MONITOR ||
1445 sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1446 local->ops->wake_tx_queue) {
1447 /* XXX: for AP_VLAN, actually track AP queues */
1449 netif_tx_start_all_queues(dev);
1451 unsigned long flags;
1452 int n_acs = IEEE80211_NUM_ACS;
1455 if (local->hw.queues < IEEE80211_NUM_ACS)
1458 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
1459 if (sdata->vif.cab_queue == IEEE80211_INVAL_HW_QUEUE ||
1460 (local->queue_stop_reasons[sdata->vif.cab_queue] == 0 &&
1461 skb_queue_empty(&local->pending[sdata->vif.cab_queue]))) {
1462 for (ac = 0; ac < n_acs; ac++) {
1463 int ac_queue = sdata->vif.hw_queue[ac];
1465 if (local->queue_stop_reasons[ac_queue] == 0 &&
1466 skb_queue_empty(&local->pending[ac_queue]))
1467 netif_start_subqueue(dev, ac);
1470 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
1473 set_bit(SDATA_STATE_RUNNING, &sdata->state);
1477 drv_remove_interface(local, sdata);
1479 if (!local->open_count)
1483 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
1484 mutex_lock(&local->mtx);
1485 list_del(&sdata->u.vlan.list);
1486 mutex_unlock(&local->mtx);
1488 /* might already be clear but that doesn't matter */
1489 clear_bit(SDATA_STATE_RUNNING, &sdata->state);
1493 static void ieee80211_if_free(struct net_device *dev)
1495 free_percpu(dev->tstats);
1498 static void ieee80211_if_setup(struct net_device *dev)
1501 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
1502 dev->netdev_ops = &ieee80211_dataif_ops;
1503 dev->needs_free_netdev = true;
1504 dev->priv_destructor = ieee80211_if_free;
1507 static void ieee80211_if_setup_no_queue(struct net_device *dev)
1509 ieee80211_if_setup(dev);
1510 dev->priv_flags |= IFF_NO_QUEUE;
1513 static void ieee80211_iface_process_skb(struct ieee80211_local *local,
1514 struct ieee80211_sub_if_data *sdata,
1515 struct sk_buff *skb)
1517 struct ieee80211_mgmt *mgmt = (void *)skb->data;
1519 if (ieee80211_is_action(mgmt->frame_control) &&
1520 mgmt->u.action.category == WLAN_CATEGORY_BACK) {
1521 struct sta_info *sta;
1524 mutex_lock(&local->sta_mtx);
1525 sta = sta_info_get_bss(sdata, mgmt->sa);
1527 switch (mgmt->u.action.u.addba_req.action_code) {
1528 case WLAN_ACTION_ADDBA_REQ:
1529 ieee80211_process_addba_request(local, sta,
1532 case WLAN_ACTION_ADDBA_RESP:
1533 ieee80211_process_addba_resp(local, sta,
1536 case WLAN_ACTION_DELBA:
1537 ieee80211_process_delba(sdata, sta,
1545 mutex_unlock(&local->sta_mtx);
1546 } else if (ieee80211_is_action(mgmt->frame_control) &&
1547 mgmt->u.action.category == WLAN_CATEGORY_VHT) {
1548 switch (mgmt->u.action.u.vht_group_notif.action_code) {
1549 case WLAN_VHT_ACTION_OPMODE_NOTIF: {
1550 struct ieee80211_rx_status *status;
1551 enum nl80211_band band;
1552 struct sta_info *sta;
1555 status = IEEE80211_SKB_RXCB(skb);
1556 band = status->band;
1557 opmode = mgmt->u.action.u.vht_opmode_notif.operating_mode;
1559 mutex_lock(&local->sta_mtx);
1560 sta = sta_info_get_bss(sdata, mgmt->sa);
1563 ieee80211_vht_handle_opmode(sdata,
1567 mutex_unlock(&local->sta_mtx);
1570 case WLAN_VHT_ACTION_GROUPID_MGMT:
1571 ieee80211_process_mu_groups(sdata, &sdata->deflink,
1578 } else if (ieee80211_is_action(mgmt->frame_control) &&
1579 mgmt->u.action.category == WLAN_CATEGORY_S1G) {
1580 switch (mgmt->u.action.u.s1g.action_code) {
1581 case WLAN_S1G_TWT_TEARDOWN:
1582 case WLAN_S1G_TWT_SETUP:
1583 ieee80211_s1g_rx_twt_action(sdata, skb);
1588 } else if (ieee80211_is_ext(mgmt->frame_control)) {
1589 if (sdata->vif.type == NL80211_IFTYPE_STATION)
1590 ieee80211_sta_rx_queued_ext(sdata, skb);
1593 } else if (ieee80211_is_data_qos(mgmt->frame_control)) {
1594 struct ieee80211_hdr *hdr = (void *)mgmt;
1595 struct sta_info *sta;
1598 * So the frame isn't mgmt, but frame_control
1599 * is at the right place anyway, of course, so
1600 * the if statement is correct.
1602 * Warn if we have other data frame types here,
1603 * they must not get here.
1605 WARN_ON(hdr->frame_control &
1606 cpu_to_le16(IEEE80211_STYPE_NULLFUNC));
1607 WARN_ON(!(hdr->seq_ctrl &
1608 cpu_to_le16(IEEE80211_SCTL_FRAG)));
1610 * This was a fragment of a frame, received while
1611 * a block-ack session was active. That cannot be
1612 * right, so terminate the session.
1614 mutex_lock(&local->sta_mtx);
1615 sta = sta_info_get_bss(sdata, mgmt->sa);
1617 u16 tid = ieee80211_get_tid(hdr);
1619 __ieee80211_stop_rx_ba_session(
1620 sta, tid, WLAN_BACK_RECIPIENT,
1621 WLAN_REASON_QSTA_REQUIRE_SETUP,
1624 mutex_unlock(&local->sta_mtx);
1625 } else switch (sdata->vif.type) {
1626 case NL80211_IFTYPE_STATION:
1627 ieee80211_sta_rx_queued_mgmt(sdata, skb);
1629 case NL80211_IFTYPE_ADHOC:
1630 ieee80211_ibss_rx_queued_mgmt(sdata, skb);
1632 case NL80211_IFTYPE_MESH_POINT:
1633 if (!ieee80211_vif_is_mesh(&sdata->vif))
1635 ieee80211_mesh_rx_queued_mgmt(sdata, skb);
1638 WARN(1, "frame for unexpected interface type");
1643 static void ieee80211_iface_process_status(struct ieee80211_sub_if_data *sdata,
1644 struct sk_buff *skb)
1646 struct ieee80211_mgmt *mgmt = (void *)skb->data;
1648 if (ieee80211_is_action(mgmt->frame_control) &&
1649 mgmt->u.action.category == WLAN_CATEGORY_S1G) {
1650 switch (mgmt->u.action.u.s1g.action_code) {
1651 case WLAN_S1G_TWT_TEARDOWN:
1652 case WLAN_S1G_TWT_SETUP:
1653 ieee80211_s1g_status_twt_action(sdata, skb);
1661 static void ieee80211_iface_work(struct work_struct *work)
1663 struct ieee80211_sub_if_data *sdata =
1664 container_of(work, struct ieee80211_sub_if_data, work);
1665 struct ieee80211_local *local = sdata->local;
1666 struct sk_buff *skb;
1668 if (!ieee80211_sdata_running(sdata))
1671 if (test_bit(SCAN_SW_SCANNING, &local->scanning))
1674 if (!ieee80211_can_run_worker(local))
1677 /* first process frames */
1678 while ((skb = skb_dequeue(&sdata->skb_queue))) {
1679 kcov_remote_start_common(skb_get_kcov_handle(skb));
1681 if (skb->protocol == cpu_to_be16(ETH_P_TDLS))
1682 ieee80211_process_tdls_channel_switch(sdata, skb);
1684 ieee80211_iface_process_skb(local, sdata, skb);
1690 /* process status queue */
1691 while ((skb = skb_dequeue(&sdata->status_queue))) {
1692 kcov_remote_start_common(skb_get_kcov_handle(skb));
1694 ieee80211_iface_process_status(sdata, skb);
1700 /* then other type-dependent work */
1701 switch (sdata->vif.type) {
1702 case NL80211_IFTYPE_STATION:
1703 ieee80211_sta_work(sdata);
1705 case NL80211_IFTYPE_ADHOC:
1706 ieee80211_ibss_work(sdata);
1708 case NL80211_IFTYPE_MESH_POINT:
1709 if (!ieee80211_vif_is_mesh(&sdata->vif))
1711 ieee80211_mesh_work(sdata);
1713 case NL80211_IFTYPE_OCB:
1714 ieee80211_ocb_work(sdata);
1721 static void ieee80211_recalc_smps_work(struct work_struct *work)
1723 struct ieee80211_sub_if_data *sdata =
1724 container_of(work, struct ieee80211_sub_if_data, recalc_smps);
1726 ieee80211_recalc_smps(sdata, &sdata->deflink);
1729 static void ieee80211_activate_links_work(struct work_struct *work)
1731 struct ieee80211_sub_if_data *sdata =
1732 container_of(work, struct ieee80211_sub_if_data,
1733 activate_links_work);
1735 ieee80211_set_active_links(&sdata->vif, sdata->desired_active_links);
1739 * Helper function to initialise an interface to a specific type.
1741 static void ieee80211_setup_sdata(struct ieee80211_sub_if_data *sdata,
1742 enum nl80211_iftype type)
1744 static const u8 bssid_wildcard[ETH_ALEN] = {0xff, 0xff, 0xff,
1747 /* clear type-dependent unions */
1748 memset(&sdata->u, 0, sizeof(sdata->u));
1749 memset(&sdata->deflink.u, 0, sizeof(sdata->deflink.u));
1751 /* and set some type-dependent values */
1752 sdata->vif.type = type;
1753 sdata->vif.p2p = false;
1754 sdata->wdev.iftype = type;
1756 sdata->control_port_protocol = cpu_to_be16(ETH_P_PAE);
1757 sdata->control_port_no_encrypt = false;
1758 sdata->control_port_over_nl80211 = false;
1759 sdata->control_port_no_preauth = false;
1760 sdata->vif.cfg.idle = true;
1761 sdata->vif.bss_conf.txpower = INT_MIN; /* unset */
1763 sdata->noack_map = 0;
1765 /* only monitor/p2p-device differ */
1767 sdata->dev->netdev_ops = &ieee80211_dataif_ops;
1768 sdata->dev->type = ARPHRD_ETHER;
1771 skb_queue_head_init(&sdata->skb_queue);
1772 skb_queue_head_init(&sdata->status_queue);
1773 INIT_WORK(&sdata->work, ieee80211_iface_work);
1774 INIT_WORK(&sdata->recalc_smps, ieee80211_recalc_smps_work);
1775 INIT_WORK(&sdata->activate_links_work, ieee80211_activate_links_work);
1778 case NL80211_IFTYPE_P2P_GO:
1779 type = NL80211_IFTYPE_AP;
1780 sdata->vif.type = type;
1781 sdata->vif.p2p = true;
1783 case NL80211_IFTYPE_AP:
1784 skb_queue_head_init(&sdata->u.ap.ps.bc_buf);
1785 INIT_LIST_HEAD(&sdata->u.ap.vlans);
1786 sdata->vif.bss_conf.bssid = sdata->vif.addr;
1788 case NL80211_IFTYPE_P2P_CLIENT:
1789 type = NL80211_IFTYPE_STATION;
1790 sdata->vif.type = type;
1791 sdata->vif.p2p = true;
1793 case NL80211_IFTYPE_STATION:
1794 sdata->vif.bss_conf.bssid = sdata->deflink.u.mgd.bssid;
1795 ieee80211_sta_setup_sdata(sdata);
1797 case NL80211_IFTYPE_OCB:
1798 sdata->vif.bss_conf.bssid = bssid_wildcard;
1799 ieee80211_ocb_setup_sdata(sdata);
1801 case NL80211_IFTYPE_ADHOC:
1802 sdata->vif.bss_conf.bssid = sdata->u.ibss.bssid;
1803 ieee80211_ibss_setup_sdata(sdata);
1805 case NL80211_IFTYPE_MESH_POINT:
1806 if (ieee80211_vif_is_mesh(&sdata->vif))
1807 ieee80211_mesh_init_sdata(sdata);
1809 case NL80211_IFTYPE_MONITOR:
1810 sdata->dev->type = ARPHRD_IEEE80211_RADIOTAP;
1811 sdata->dev->netdev_ops = &ieee80211_monitorif_ops;
1812 sdata->u.mntr.flags = MONITOR_FLAG_CONTROL |
1813 MONITOR_FLAG_OTHER_BSS;
1815 case NL80211_IFTYPE_NAN:
1816 idr_init(&sdata->u.nan.function_inst_ids);
1817 spin_lock_init(&sdata->u.nan.func_lock);
1818 sdata->vif.bss_conf.bssid = sdata->vif.addr;
1820 case NL80211_IFTYPE_AP_VLAN:
1821 case NL80211_IFTYPE_P2P_DEVICE:
1822 sdata->vif.bss_conf.bssid = sdata->vif.addr;
1824 case NL80211_IFTYPE_UNSPECIFIED:
1825 case NL80211_IFTYPE_WDS:
1826 case NUM_NL80211_IFTYPES:
1831 /* need to do this after the switch so vif.type is correct */
1832 ieee80211_link_setup(&sdata->deflink);
1834 ieee80211_debugfs_add_netdev(sdata);
1837 static int ieee80211_runtime_change_iftype(struct ieee80211_sub_if_data *sdata,
1838 enum nl80211_iftype type)
1840 struct ieee80211_local *local = sdata->local;
1842 enum nl80211_iftype internal_type = type;
1847 if (!local->ops->change_interface)
1850 /* for now, don't support changing while links exist */
1851 if (sdata->vif.valid_links)
1854 switch (sdata->vif.type) {
1855 case NL80211_IFTYPE_AP:
1856 if (!list_empty(&sdata->u.ap.vlans))
1859 case NL80211_IFTYPE_STATION:
1860 case NL80211_IFTYPE_ADHOC:
1861 case NL80211_IFTYPE_OCB:
1863 * Could maybe also all others here?
1864 * Just not sure how that interacts
1865 * with the RX/config path e.g. for
1874 case NL80211_IFTYPE_AP:
1875 case NL80211_IFTYPE_STATION:
1876 case NL80211_IFTYPE_ADHOC:
1877 case NL80211_IFTYPE_OCB:
1879 * Could probably support everything
1883 case NL80211_IFTYPE_P2P_CLIENT:
1885 internal_type = NL80211_IFTYPE_STATION;
1887 case NL80211_IFTYPE_P2P_GO:
1889 internal_type = NL80211_IFTYPE_AP;
1895 ret = ieee80211_check_concurrent_iface(sdata, internal_type);
1899 ieee80211_stop_vif_queues(local, sdata,
1900 IEEE80211_QUEUE_STOP_REASON_IFTYPE_CHANGE);
1903 ieee80211_do_stop(sdata, false);
1905 ieee80211_teardown_sdata(sdata);
1907 ieee80211_set_sdata_offload_flags(sdata);
1908 ret = drv_change_interface(local, sdata, internal_type, p2p);
1910 type = ieee80211_vif_type_p2p(&sdata->vif);
1913 * Ignore return value here, there's not much we can do since
1914 * the driver changed the interface type internally already.
1915 * The warnings will hopefully make driver authors fix it :-)
1917 ieee80211_check_queues(sdata, type);
1919 ieee80211_setup_sdata(sdata, type);
1920 ieee80211_set_vif_encap_ops(sdata);
1922 err = ieee80211_do_open(&sdata->wdev, false);
1923 WARN(err, "type change: do_open returned %d", err);
1925 ieee80211_wake_vif_queues(local, sdata,
1926 IEEE80211_QUEUE_STOP_REASON_IFTYPE_CHANGE);
1930 int ieee80211_if_change_type(struct ieee80211_sub_if_data *sdata,
1931 enum nl80211_iftype type)
1937 if (type == ieee80211_vif_type_p2p(&sdata->vif))
1940 if (ieee80211_sdata_running(sdata)) {
1941 ret = ieee80211_runtime_change_iftype(sdata, type);
1945 /* Purge and reset type-dependent state. */
1946 ieee80211_teardown_sdata(sdata);
1947 ieee80211_setup_sdata(sdata, type);
1950 /* reset some values that shouldn't be kept across type changes */
1951 if (type == NL80211_IFTYPE_STATION)
1952 sdata->u.mgd.use_4addr = false;
1957 static void ieee80211_assign_perm_addr(struct ieee80211_local *local,
1958 u8 *perm_addr, enum nl80211_iftype type)
1960 struct ieee80211_sub_if_data *sdata;
1961 u64 mask, start, addr, val, inc;
1963 u8 tmp_addr[ETH_ALEN];
1966 /* default ... something at least */
1967 memcpy(perm_addr, local->hw.wiphy->perm_addr, ETH_ALEN);
1969 if (is_zero_ether_addr(local->hw.wiphy->addr_mask) &&
1970 local->hw.wiphy->n_addresses <= 1)
1973 mutex_lock(&local->iflist_mtx);
1976 case NL80211_IFTYPE_MONITOR:
1977 /* doesn't matter */
1979 case NL80211_IFTYPE_AP_VLAN:
1980 /* match up with an AP interface */
1981 list_for_each_entry(sdata, &local->interfaces, list) {
1982 if (sdata->vif.type != NL80211_IFTYPE_AP)
1984 memcpy(perm_addr, sdata->vif.addr, ETH_ALEN);
1987 /* keep default if no AP interface present */
1989 case NL80211_IFTYPE_P2P_CLIENT:
1990 case NL80211_IFTYPE_P2P_GO:
1991 if (ieee80211_hw_check(&local->hw, P2P_DEV_ADDR_FOR_INTF)) {
1992 list_for_each_entry(sdata, &local->interfaces, list) {
1993 if (sdata->vif.type != NL80211_IFTYPE_P2P_DEVICE)
1995 if (!ieee80211_sdata_running(sdata))
1997 memcpy(perm_addr, sdata->vif.addr, ETH_ALEN);
2003 /* assign a new address if possible -- try n_addresses first */
2004 for (i = 0; i < local->hw.wiphy->n_addresses; i++) {
2007 list_for_each_entry(sdata, &local->interfaces, list) {
2008 if (ether_addr_equal(local->hw.wiphy->addresses[i].addr,
2017 local->hw.wiphy->addresses[i].addr,
2023 /* try mask if available */
2024 if (is_zero_ether_addr(local->hw.wiphy->addr_mask))
2027 m = local->hw.wiphy->addr_mask;
2028 mask = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) |
2029 ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) |
2030 ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8);
2032 if (__ffs64(mask) + hweight64(mask) != fls64(mask)) {
2033 /* not a contiguous mask ... not handled now! */
2034 pr_info("not contiguous\n");
2039 * Pick address of existing interface in case user changed
2040 * MAC address manually, default to perm_addr.
2042 m = local->hw.wiphy->perm_addr;
2043 list_for_each_entry(sdata, &local->interfaces, list) {
2044 if (sdata->vif.type == NL80211_IFTYPE_MONITOR)
2046 m = sdata->vif.addr;
2049 start = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) |
2050 ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) |
2051 ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8);
2053 inc = 1ULL<<__ffs64(mask);
2054 val = (start & mask);
2055 addr = (start & ~mask) | (val & mask);
2059 tmp_addr[5] = addr >> 0*8;
2060 tmp_addr[4] = addr >> 1*8;
2061 tmp_addr[3] = addr >> 2*8;
2062 tmp_addr[2] = addr >> 3*8;
2063 tmp_addr[1] = addr >> 4*8;
2064 tmp_addr[0] = addr >> 5*8;
2068 list_for_each_entry(sdata, &local->interfaces, list) {
2069 if (ether_addr_equal(tmp_addr, sdata->vif.addr)) {
2076 memcpy(perm_addr, tmp_addr, ETH_ALEN);
2079 addr = (start & ~mask) | (val & mask);
2080 } while (addr != start);
2086 mutex_unlock(&local->iflist_mtx);
2089 int ieee80211_if_add(struct ieee80211_local *local, const char *name,
2090 unsigned char name_assign_type,
2091 struct wireless_dev **new_wdev, enum nl80211_iftype type,
2092 struct vif_params *params)
2094 struct net_device *ndev = NULL;
2095 struct ieee80211_sub_if_data *sdata = NULL;
2096 struct txq_info *txqi;
2097 void (*if_setup)(struct net_device *dev);
2103 if (type == NL80211_IFTYPE_P2P_DEVICE || type == NL80211_IFTYPE_NAN) {
2104 struct wireless_dev *wdev;
2106 sdata = kzalloc(sizeof(*sdata) + local->hw.vif_data_size,
2110 wdev = &sdata->wdev;
2113 strscpy(sdata->name, name, IFNAMSIZ);
2114 ieee80211_assign_perm_addr(local, wdev->address, type);
2115 memcpy(sdata->vif.addr, wdev->address, ETH_ALEN);
2116 ether_addr_copy(sdata->vif.bss_conf.addr, sdata->vif.addr);
2118 int size = ALIGN(sizeof(*sdata) + local->hw.vif_data_size,
2122 if (local->ops->wake_tx_queue &&
2123 type != NL80211_IFTYPE_AP_VLAN &&
2124 (type != NL80211_IFTYPE_MONITOR ||
2125 (params->flags & MONITOR_FLAG_ACTIVE)))
2126 txq_size += sizeof(struct txq_info) +
2127 local->hw.txq_data_size;
2129 if (local->ops->wake_tx_queue) {
2130 if_setup = ieee80211_if_setup_no_queue;
2132 if_setup = ieee80211_if_setup;
2133 if (local->hw.queues >= IEEE80211_NUM_ACS)
2134 txqs = IEEE80211_NUM_ACS;
2137 ndev = alloc_netdev_mqs(size + txq_size,
2138 name, name_assign_type,
2143 if (!local->ops->wake_tx_queue && local->hw.wiphy->tx_queue_len)
2144 ndev->tx_queue_len = local->hw.wiphy->tx_queue_len;
2146 dev_net_set(ndev, wiphy_net(local->hw.wiphy));
2148 ndev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
2149 if (!ndev->tstats) {
2154 ndev->needed_headroom = local->tx_headroom +
2155 4*6 /* four MAC addresses */
2156 + 2 + 2 + 2 + 2 /* ctl, dur, seq, qos */
2158 + 8 /* rfc1042/bridge tunnel */
2159 - ETH_HLEN /* ethernet hard_header_len */
2160 + IEEE80211_ENCRYPT_HEADROOM;
2161 ndev->needed_tailroom = IEEE80211_ENCRYPT_TAILROOM;
2163 ret = dev_alloc_name(ndev, ndev->name);
2165 ieee80211_if_free(ndev);
2170 ieee80211_assign_perm_addr(local, ndev->perm_addr, type);
2171 if (is_valid_ether_addr(params->macaddr))
2172 eth_hw_addr_set(ndev, params->macaddr);
2174 eth_hw_addr_set(ndev, ndev->perm_addr);
2175 SET_NETDEV_DEV(ndev, wiphy_dev(local->hw.wiphy));
2177 /* don't use IEEE80211_DEV_TO_SUB_IF -- it checks too much */
2178 sdata = netdev_priv(ndev);
2179 ndev->ieee80211_ptr = &sdata->wdev;
2180 memcpy(sdata->vif.addr, ndev->dev_addr, ETH_ALEN);
2181 ether_addr_copy(sdata->vif.bss_conf.addr, sdata->vif.addr);
2182 memcpy(sdata->name, ndev->name, IFNAMSIZ);
2185 txqi = netdev_priv(ndev) + size;
2186 ieee80211_txq_init(sdata, NULL, txqi, 0);
2192 /* initialise type-independent data */
2193 sdata->wdev.wiphy = local->hw.wiphy;
2195 ieee80211_sdata_init(local, sdata);
2197 ieee80211_init_frag_cache(&sdata->frags);
2199 INIT_LIST_HEAD(&sdata->key_list);
2201 INIT_DELAYED_WORK(&sdata->dec_tailroom_needed_wk,
2202 ieee80211_delayed_tailroom_dec);
2204 for (i = 0; i < NUM_NL80211_BANDS; i++) {
2205 struct ieee80211_supported_band *sband;
2206 sband = local->hw.wiphy->bands[i];
2207 sdata->rc_rateidx_mask[i] =
2208 sband ? (1 << sband->n_bitrates) - 1 : 0;
2213 memcpy(sdata->rc_rateidx_mcs_mask[i],
2214 sband->ht_cap.mcs.rx_mask,
2215 sizeof(sdata->rc_rateidx_mcs_mask[i]));
2217 cap = sband->vht_cap.vht_mcs.rx_mcs_map;
2218 vht_rate_mask = sdata->rc_rateidx_vht_mcs_mask[i];
2219 ieee80211_get_vht_mask_from_cap(cap, vht_rate_mask);
2221 memset(sdata->rc_rateidx_mcs_mask[i], 0,
2222 sizeof(sdata->rc_rateidx_mcs_mask[i]));
2223 memset(sdata->rc_rateidx_vht_mcs_mask[i], 0,
2224 sizeof(sdata->rc_rateidx_vht_mcs_mask[i]));
2228 ieee80211_set_default_queues(sdata);
2230 sdata->deflink.ap_power_level = IEEE80211_UNSET_POWER_LEVEL;
2231 sdata->deflink.user_power_level = local->user_power_level;
2233 /* setup type-dependent data */
2234 ieee80211_setup_sdata(sdata, type);
2237 ndev->ieee80211_ptr->use_4addr = params->use_4addr;
2238 if (type == NL80211_IFTYPE_STATION)
2239 sdata->u.mgd.use_4addr = params->use_4addr;
2241 ndev->features |= local->hw.netdev_features;
2242 ndev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
2243 ndev->hw_features |= ndev->features &
2244 MAC80211_SUPPORTED_FEATURES_TX;
2246 netdev_set_default_ethtool_ops(ndev, &ieee80211_ethtool_ops);
2248 /* MTU range is normally 256 - 2304, where the upper limit is
2249 * the maximum MSDU size. Monitor interfaces send and receive
2250 * MPDU and A-MSDU frames which may be much larger so we do
2251 * not impose an upper limit in that case.
2253 ndev->min_mtu = 256;
2254 if (type == NL80211_IFTYPE_MONITOR)
2257 ndev->max_mtu = local->hw.max_mtu;
2259 ret = cfg80211_register_netdevice(ndev);
2266 mutex_lock(&local->iflist_mtx);
2267 list_add_tail_rcu(&sdata->list, &local->interfaces);
2268 mutex_unlock(&local->iflist_mtx);
2271 *new_wdev = &sdata->wdev;
2276 void ieee80211_if_remove(struct ieee80211_sub_if_data *sdata)
2280 mutex_lock(&sdata->local->iflist_mtx);
2281 list_del_rcu(&sdata->list);
2282 mutex_unlock(&sdata->local->iflist_mtx);
2285 ieee80211_txq_purge(sdata->local, to_txq_info(sdata->vif.txq));
2289 cfg80211_unregister_wdev(&sdata->wdev);
2292 ieee80211_teardown_sdata(sdata);
2297 void ieee80211_sdata_stop(struct ieee80211_sub_if_data *sdata)
2299 if (WARN_ON_ONCE(!test_bit(SDATA_STATE_RUNNING, &sdata->state)))
2301 ieee80211_do_stop(sdata, true);
2304 void ieee80211_remove_interfaces(struct ieee80211_local *local)
2306 struct ieee80211_sub_if_data *sdata, *tmp;
2307 LIST_HEAD(unreg_list);
2308 LIST_HEAD(wdev_list);
2312 /* Before destroying the interfaces, make sure they're all stopped so
2313 * that the hardware is stopped. Otherwise, the driver might still be
2314 * iterating the interfaces during the shutdown, e.g. from a worker
2315 * or from RX processing or similar, and if it does so (using atomic
2316 * iteration) while we're manipulating the list, the iteration will
2319 * After this, the hardware should be stopped and the driver should
2320 * have stopped all of its activities, so that we can do RCU-unaware
2321 * manipulations of the interface list below.
2323 cfg80211_shutdown_all_interfaces(local->hw.wiphy);
2325 WARN(local->open_count, "%s: open count remains %d\n",
2326 wiphy_name(local->hw.wiphy), local->open_count);
2328 ieee80211_txq_teardown_flows(local);
2330 mutex_lock(&local->iflist_mtx);
2331 list_for_each_entry_safe(sdata, tmp, &local->interfaces, list) {
2332 list_del(&sdata->list);
2335 unregister_netdevice_queue(sdata->dev, &unreg_list);
2337 list_add(&sdata->list, &wdev_list);
2339 mutex_unlock(&local->iflist_mtx);
2341 unregister_netdevice_many(&unreg_list);
2343 wiphy_lock(local->hw.wiphy);
2344 list_for_each_entry_safe(sdata, tmp, &wdev_list, list) {
2345 list_del(&sdata->list);
2346 cfg80211_unregister_wdev(&sdata->wdev);
2349 wiphy_unlock(local->hw.wiphy);
2352 static int netdev_notify(struct notifier_block *nb,
2353 unsigned long state, void *ptr)
2355 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
2356 struct ieee80211_sub_if_data *sdata;
2358 if (state != NETDEV_CHANGENAME)
2361 if (!dev->ieee80211_ptr || !dev->ieee80211_ptr->wiphy)
2364 if (dev->ieee80211_ptr->wiphy->privid != mac80211_wiphy_privid)
2367 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
2368 memcpy(sdata->name, dev->name, IFNAMSIZ);
2369 ieee80211_debugfs_rename_netdev(sdata);
2374 static struct notifier_block mac80211_netdev_notifier = {
2375 .notifier_call = netdev_notify,
2378 int ieee80211_iface_init(void)
2380 return register_netdevice_notifier(&mac80211_netdev_notifier);
2383 void ieee80211_iface_exit(void)
2385 unregister_netdevice_notifier(&mac80211_netdev_notifier);
2388 void ieee80211_vif_inc_num_mcast(struct ieee80211_sub_if_data *sdata)
2390 if (sdata->vif.type == NL80211_IFTYPE_AP)
2391 atomic_inc(&sdata->u.ap.num_mcast_sta);
2392 else if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
2393 atomic_inc(&sdata->u.vlan.num_mcast_sta);
2396 void ieee80211_vif_dec_num_mcast(struct ieee80211_sub_if_data *sdata)
2398 if (sdata->vif.type == NL80211_IFTYPE_AP)
2399 atomic_dec(&sdata->u.ap.num_mcast_sta);
2400 else if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
2401 atomic_dec(&sdata->u.vlan.num_mcast_sta);