2 * Interface handling (except master interface)
4 * Copyright 2002-2005, Instant802 Networks, Inc.
5 * Copyright 2005-2006, Devicescape Software, Inc.
6 * Copyright (c) 2006 Jiri Benc <jbenc@suse.cz>
7 * Copyright 2008, Johannes Berg <johannes@sipsolutions.net>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
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 <net/mac80211.h>
19 #include <net/ieee80211_radiotap.h>
20 #include "ieee80211_i.h"
22 #include "debugfs_netdev.h"
25 #include "driver-ops.h"
30 * DOC: Interface list locking
32 * The interface list in each struct ieee80211_local is protected
35 * (1) modifications may only be done under the RTNL
36 * (2) modifications and readers are protected against each other by
38 * (3) modifications are done in an RCU manner so atomic readers
39 * can traverse the list in RCU-safe blocks.
41 * As a consequence, reads (traversals) of the list can be protected
42 * by either the RTNL, the iflist_mtx or RCU.
46 static u32 ieee80211_idle_off(struct ieee80211_local *local,
49 if (!(local->hw.conf.flags & IEEE80211_CONF_IDLE))
52 local->hw.conf.flags &= ~IEEE80211_CONF_IDLE;
53 return IEEE80211_CONF_CHANGE_IDLE;
56 static u32 ieee80211_idle_on(struct ieee80211_local *local)
58 if (local->hw.conf.flags & IEEE80211_CONF_IDLE)
61 drv_flush(local, false);
63 local->hw.conf.flags |= IEEE80211_CONF_IDLE;
64 return IEEE80211_CONF_CHANGE_IDLE;
67 static u32 __ieee80211_recalc_idle(struct ieee80211_local *local)
69 struct ieee80211_sub_if_data *sdata;
71 bool working = false, scanning = false;
72 unsigned int led_trig_start = 0, led_trig_stop = 0;
73 struct ieee80211_roc_work *roc;
75 #ifdef CONFIG_PROVE_LOCKING
76 WARN_ON(debug_locks && !lockdep_rtnl_is_held() &&
77 !lockdep_is_held(&local->iflist_mtx));
79 lockdep_assert_held(&local->mtx);
81 list_for_each_entry(sdata, &local->interfaces, list) {
82 if (!ieee80211_sdata_running(sdata)) {
83 sdata->vif.bss_conf.idle = true;
87 sdata->old_idle = sdata->vif.bss_conf.idle;
89 /* do not count disabled managed interfaces */
90 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
91 !sdata->u.mgd.associated &&
92 !sdata->u.mgd.auth_data &&
93 !sdata->u.mgd.assoc_data) {
94 sdata->vif.bss_conf.idle = true;
97 /* do not count unused IBSS interfaces */
98 if (sdata->vif.type == NL80211_IFTYPE_ADHOC &&
99 !sdata->u.ibss.ssid_len) {
100 sdata->vif.bss_conf.idle = true;
103 /* count everything else */
104 sdata->vif.bss_conf.idle = false;
108 if (!local->ops->remain_on_channel) {
109 list_for_each_entry(roc, &local->roc_list, list) {
111 roc->sdata->vif.bss_conf.idle = false;
115 sdata = rcu_dereference_protected(local->scan_sdata,
116 lockdep_is_held(&local->mtx));
117 if (sdata && !(local->hw.flags & IEEE80211_HW_SCAN_WHILE_IDLE)) {
119 sdata->vif.bss_conf.idle = false;
122 list_for_each_entry(sdata, &local->interfaces, list) {
123 if (sdata->vif.type == NL80211_IFTYPE_MONITOR ||
124 sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
126 if (sdata->old_idle == sdata->vif.bss_conf.idle)
128 if (!ieee80211_sdata_running(sdata))
130 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_IDLE);
133 if (working || scanning)
134 led_trig_start |= IEEE80211_TPT_LEDTRIG_FL_WORK;
136 led_trig_stop |= IEEE80211_TPT_LEDTRIG_FL_WORK;
139 led_trig_start |= IEEE80211_TPT_LEDTRIG_FL_CONNECTED;
141 led_trig_stop |= IEEE80211_TPT_LEDTRIG_FL_CONNECTED;
143 ieee80211_mod_tpt_led_trig(local, led_trig_start, led_trig_stop);
146 return ieee80211_idle_off(local, "working");
148 return ieee80211_idle_off(local, "scanning");
150 return ieee80211_idle_on(local);
152 return ieee80211_idle_off(local, "in use");
157 void ieee80211_recalc_idle(struct ieee80211_local *local)
161 mutex_lock(&local->iflist_mtx);
162 chg = __ieee80211_recalc_idle(local);
163 mutex_unlock(&local->iflist_mtx);
165 ieee80211_hw_config(local, chg);
168 static int ieee80211_change_mtu(struct net_device *dev, int new_mtu)
171 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
173 meshhdrlen = (sdata->vif.type == NL80211_IFTYPE_MESH_POINT) ? 5 : 0;
175 /* FIX: what would be proper limits for MTU?
176 * This interface uses 802.3 frames. */
178 new_mtu > IEEE80211_MAX_DATA_LEN - 24 - 6 - meshhdrlen) {
186 static int ieee80211_change_mac(struct net_device *dev, void *addr)
188 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
189 struct sockaddr *sa = addr;
192 if (ieee80211_sdata_running(sdata))
195 ret = eth_mac_addr(dev, sa);
198 memcpy(sdata->vif.addr, sa->sa_data, ETH_ALEN);
203 static inline int identical_mac_addr_allowed(int type1, int type2)
205 return type1 == NL80211_IFTYPE_MONITOR ||
206 type2 == NL80211_IFTYPE_MONITOR ||
207 (type1 == NL80211_IFTYPE_AP && type2 == NL80211_IFTYPE_WDS) ||
208 (type1 == NL80211_IFTYPE_WDS &&
209 (type2 == NL80211_IFTYPE_WDS ||
210 type2 == NL80211_IFTYPE_AP)) ||
211 (type1 == NL80211_IFTYPE_AP && type2 == NL80211_IFTYPE_AP_VLAN) ||
212 (type1 == NL80211_IFTYPE_AP_VLAN &&
213 (type2 == NL80211_IFTYPE_AP ||
214 type2 == NL80211_IFTYPE_AP_VLAN));
217 static int ieee80211_check_concurrent_iface(struct ieee80211_sub_if_data *sdata,
218 enum nl80211_iftype iftype)
220 struct ieee80211_local *local = sdata->local;
221 struct ieee80211_sub_if_data *nsdata;
225 /* we hold the RTNL here so can safely walk the list */
226 list_for_each_entry(nsdata, &local->interfaces, list) {
227 if (nsdata != sdata && ieee80211_sdata_running(nsdata)) {
229 * Allow only a single IBSS interface to be up at any
230 * time. This is restricted because beacon distribution
231 * cannot work properly if both are in the same IBSS.
233 * To remove this restriction we'd have to disallow them
234 * from setting the same SSID on different IBSS interfaces
235 * belonging to the same hardware. Then, however, we're
236 * faced with having to adopt two different TSF timers...
238 if (iftype == NL80211_IFTYPE_ADHOC &&
239 nsdata->vif.type == NL80211_IFTYPE_ADHOC)
243 * The remaining checks are only performed for interfaces
244 * with the same MAC address.
246 if (!ether_addr_equal(sdata->vif.addr,
251 * check whether it may have the same address
253 if (!identical_mac_addr_allowed(iftype,
258 * can only add VLANs to enabled APs
260 if (iftype == NL80211_IFTYPE_AP_VLAN &&
261 nsdata->vif.type == NL80211_IFTYPE_AP)
262 sdata->bss = &nsdata->u.ap;
269 static int ieee80211_check_queues(struct ieee80211_sub_if_data *sdata)
271 int n_queues = sdata->local->hw.queues;
274 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
275 if (WARN_ON_ONCE(sdata->vif.hw_queue[i] ==
276 IEEE80211_INVAL_HW_QUEUE))
278 if (WARN_ON_ONCE(sdata->vif.hw_queue[i] >=
283 if ((sdata->vif.type != NL80211_IFTYPE_AP) ||
284 !(sdata->local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)) {
285 sdata->vif.cab_queue = IEEE80211_INVAL_HW_QUEUE;
289 if (WARN_ON_ONCE(sdata->vif.cab_queue == IEEE80211_INVAL_HW_QUEUE))
292 if (WARN_ON_ONCE(sdata->vif.cab_queue >= n_queues))
298 void ieee80211_adjust_monitor_flags(struct ieee80211_sub_if_data *sdata,
301 struct ieee80211_local *local = sdata->local;
302 u32 flags = sdata->u.mntr_flags;
304 #define ADJUST(_f, _s) do { \
305 if (flags & MONITOR_FLAG_##_f) \
306 local->fif_##_s += offset; \
309 ADJUST(FCSFAIL, fcsfail);
310 ADJUST(PLCPFAIL, plcpfail);
311 ADJUST(CONTROL, control);
312 ADJUST(CONTROL, pspoll);
313 ADJUST(OTHER_BSS, other_bss);
318 static void ieee80211_set_default_queues(struct ieee80211_sub_if_data *sdata)
320 struct ieee80211_local *local = sdata->local;
323 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
324 if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)
325 sdata->vif.hw_queue[i] = IEEE80211_INVAL_HW_QUEUE;
326 else if (local->hw.queues >= IEEE80211_NUM_ACS)
327 sdata->vif.hw_queue[i] = i;
329 sdata->vif.hw_queue[i] = 0;
331 sdata->vif.cab_queue = IEEE80211_INVAL_HW_QUEUE;
334 static int ieee80211_add_virtual_monitor(struct ieee80211_local *local)
336 struct ieee80211_sub_if_data *sdata;
339 if (!(local->hw.flags & IEEE80211_HW_WANT_MONITOR_VIF))
342 mutex_lock(&local->iflist_mtx);
344 if (local->monitor_sdata)
347 sdata = kzalloc(sizeof(*sdata) + local->hw.vif_data_size, GFP_KERNEL);
354 sdata->local = local;
355 sdata->vif.type = NL80211_IFTYPE_MONITOR;
356 snprintf(sdata->name, IFNAMSIZ, "%s-monitor",
357 wiphy_name(local->hw.wiphy));
359 ieee80211_set_default_queues(sdata);
361 ret = drv_add_interface(local, sdata);
363 /* ok .. stupid driver, it asked for this! */
368 ret = ieee80211_check_queues(sdata);
374 rcu_assign_pointer(local->monitor_sdata, sdata);
376 mutex_unlock(&local->iflist_mtx);
380 static void ieee80211_del_virtual_monitor(struct ieee80211_local *local)
382 struct ieee80211_sub_if_data *sdata;
384 if (!(local->hw.flags & IEEE80211_HW_WANT_MONITOR_VIF))
387 mutex_lock(&local->iflist_mtx);
389 sdata = rcu_dereference_protected(local->monitor_sdata,
390 lockdep_is_held(&local->iflist_mtx));
394 rcu_assign_pointer(local->monitor_sdata, NULL);
397 drv_remove_interface(local, sdata);
401 mutex_unlock(&local->iflist_mtx);
405 * NOTE: Be very careful when changing this function, it must NOT return
406 * an error on interface type changes that have been pre-checked, so most
407 * checks should be in ieee80211_check_concurrent_iface.
409 static int ieee80211_do_open(struct net_device *dev, bool coming_up)
411 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
412 struct ieee80211_local *local = sdata->local;
413 struct sta_info *sta;
416 u32 hw_reconf_flags = 0;
418 switch (sdata->vif.type) {
419 case NL80211_IFTYPE_WDS:
420 if (!is_valid_ether_addr(sdata->u.wds.remote_addr))
423 case NL80211_IFTYPE_AP_VLAN: {
424 struct ieee80211_sub_if_data *master;
429 list_add(&sdata->u.vlan.list, &sdata->bss->vlans);
431 master = container_of(sdata->bss,
432 struct ieee80211_sub_if_data, u.ap);
433 sdata->control_port_protocol =
434 master->control_port_protocol;
435 sdata->control_port_no_encrypt =
436 master->control_port_no_encrypt;
439 case NL80211_IFTYPE_AP:
440 sdata->bss = &sdata->u.ap;
442 case NL80211_IFTYPE_MESH_POINT:
443 case NL80211_IFTYPE_STATION:
444 case NL80211_IFTYPE_MONITOR:
445 case NL80211_IFTYPE_ADHOC:
446 /* no special treatment */
448 case NL80211_IFTYPE_UNSPECIFIED:
449 case NUM_NL80211_IFTYPES:
450 case NL80211_IFTYPE_P2P_CLIENT:
451 case NL80211_IFTYPE_P2P_GO:
457 if (local->open_count == 0) {
458 res = drv_start(local);
461 if (local->ops->napi_poll)
462 napi_enable(&local->napi);
463 /* we're brought up, everything changes */
464 hw_reconf_flags = ~0;
465 ieee80211_led_radio(local, true);
466 ieee80211_mod_tpt_led_trig(local,
467 IEEE80211_TPT_LEDTRIG_FL_RADIO, 0);
471 * Copy the hopefully now-present MAC address to
472 * this interface, if it has the special null one.
474 if (is_zero_ether_addr(dev->dev_addr)) {
475 memcpy(dev->dev_addr,
476 local->hw.wiphy->perm_addr,
478 memcpy(dev->perm_addr, dev->dev_addr, ETH_ALEN);
480 if (!is_valid_ether_addr(dev->dev_addr)) {
481 res = -EADDRNOTAVAIL;
486 switch (sdata->vif.type) {
487 case NL80211_IFTYPE_AP_VLAN:
488 /* no need to tell driver, but set carrier */
489 if (rtnl_dereference(sdata->bss->beacon))
490 netif_carrier_on(dev);
492 netif_carrier_off(dev);
494 case NL80211_IFTYPE_MONITOR:
495 if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) {
496 local->cooked_mntrs++;
500 if (local->monitors == 0 && local->open_count == 0) {
501 res = ieee80211_add_virtual_monitor(local);
506 /* must be before the call to ieee80211_configure_filter */
508 if (local->monitors == 1) {
509 local->hw.conf.flags |= IEEE80211_CONF_MONITOR;
510 hw_reconf_flags |= IEEE80211_CONF_CHANGE_MONITOR;
513 ieee80211_adjust_monitor_flags(sdata, 1);
514 ieee80211_configure_filter(local);
516 netif_carrier_on(dev);
520 ieee80211_del_virtual_monitor(local);
522 res = drv_add_interface(local, sdata);
525 res = ieee80211_check_queues(sdata);
527 goto err_del_interface;
530 if (sdata->vif.type == NL80211_IFTYPE_AP) {
532 local->fif_probe_req++;
534 ieee80211_configure_filter(local);
535 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
536 local->fif_probe_req++;
539 changed |= ieee80211_reset_erp_info(sdata);
540 ieee80211_bss_info_change_notify(sdata, changed);
542 switch (sdata->vif.type) {
543 case NL80211_IFTYPE_STATION:
544 case NL80211_IFTYPE_ADHOC:
545 case NL80211_IFTYPE_AP:
546 case NL80211_IFTYPE_MESH_POINT:
547 netif_carrier_off(dev);
550 netif_carrier_on(dev);
554 * set default queue parameters so drivers don't
555 * need to initialise the hardware if the hardware
556 * doesn't start up with sane defaults
558 ieee80211_set_wmm_default(sdata, true);
561 set_bit(SDATA_STATE_RUNNING, &sdata->state);
563 if (sdata->vif.type == NL80211_IFTYPE_WDS) {
564 /* Create STA entry for the WDS peer */
565 sta = sta_info_alloc(sdata, sdata->u.wds.remote_addr,
569 goto err_del_interface;
572 sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
573 sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC);
574 sta_info_pre_move_state(sta, IEEE80211_STA_AUTHORIZED);
576 res = sta_info_insert(sta);
578 /* STA has been freed */
579 goto err_del_interface;
582 rate_control_rate_init(sta);
586 * set_multicast_list will be invoked by the networking core
587 * which will check whether any increments here were done in
588 * error and sync them down to the hardware as filter flags.
590 if (sdata->flags & IEEE80211_SDATA_ALLMULTI)
591 atomic_inc(&local->iff_allmultis);
593 if (sdata->flags & IEEE80211_SDATA_PROMISC)
594 atomic_inc(&local->iff_promiscs);
596 mutex_lock(&local->mtx);
597 hw_reconf_flags |= __ieee80211_recalc_idle(local);
598 mutex_unlock(&local->mtx);
604 ieee80211_hw_config(local, hw_reconf_flags);
606 ieee80211_recalc_ps(local, -1);
608 netif_tx_start_all_queues(dev);
612 drv_remove_interface(local, sdata);
614 if (!local->open_count)
618 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
619 list_del(&sdata->u.vlan.list);
620 /* might already be clear but that doesn't matter */
621 clear_bit(SDATA_STATE_RUNNING, &sdata->state);
625 static int ieee80211_open(struct net_device *dev)
627 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
630 /* fail early if user set an invalid address */
631 if (!is_valid_ether_addr(dev->dev_addr))
632 return -EADDRNOTAVAIL;
634 err = ieee80211_check_concurrent_iface(sdata, sdata->vif.type);
638 return ieee80211_do_open(dev, true);
641 static void ieee80211_do_stop(struct ieee80211_sub_if_data *sdata,
644 struct ieee80211_local *local = sdata->local;
646 struct sk_buff *skb, *tmp;
647 u32 hw_reconf_flags = 0;
649 enum nl80211_channel_type orig_ct;
651 clear_bit(SDATA_STATE_RUNNING, &sdata->state);
653 if (rcu_access_pointer(local->scan_sdata) == sdata)
654 ieee80211_scan_cancel(local);
657 * Stop TX on this interface first.
659 netif_tx_stop_all_queues(sdata->dev);
661 ieee80211_roc_purge(sdata);
664 * Remove all stations associated with this interface.
666 * This must be done before calling ops->remove_interface()
667 * because otherwise we can later invoke ops->sta_notify()
668 * whenever the STAs are removed, and that invalidates driver
669 * assumptions about always getting a vif pointer that is valid
670 * (because if we remove a STA after ops->remove_interface()
671 * the driver will have removed the vif info already!)
673 * This is relevant only in AP, WDS and mesh modes, since in
674 * all other modes we've already removed all stations when
677 sta_info_flush(local, sdata);
680 * Don't count this interface for promisc/allmulti while it
681 * is down. dev_mc_unsync() will invoke set_multicast_list
682 * on the master interface which will sync these down to the
683 * hardware as filter flags.
685 if (sdata->flags & IEEE80211_SDATA_ALLMULTI)
686 atomic_dec(&local->iff_allmultis);
688 if (sdata->flags & IEEE80211_SDATA_PROMISC)
689 atomic_dec(&local->iff_promiscs);
691 if (sdata->vif.type == NL80211_IFTYPE_AP) {
693 local->fif_probe_req--;
694 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
695 local->fif_probe_req--;
698 netif_addr_lock_bh(sdata->dev);
699 spin_lock_bh(&local->filter_lock);
700 __hw_addr_unsync(&local->mc_list, &sdata->dev->mc,
701 sdata->dev->addr_len);
702 spin_unlock_bh(&local->filter_lock);
703 netif_addr_unlock_bh(sdata->dev);
705 ieee80211_configure_filter(local);
707 del_timer_sync(&local->dynamic_ps_timer);
708 cancel_work_sync(&local->dynamic_ps_enable_work);
710 /* APs need special treatment */
711 if (sdata->vif.type == NL80211_IFTYPE_AP) {
712 struct ieee80211_sub_if_data *vlan, *tmpsdata;
713 struct beacon_data *old_beacon =
714 rtnl_dereference(sdata->u.ap.beacon);
715 struct sk_buff *old_probe_resp =
716 rtnl_dereference(sdata->u.ap.probe_resp);
718 /* sdata_running will return false, so this will disable */
719 ieee80211_bss_info_change_notify(sdata,
720 BSS_CHANGED_BEACON_ENABLED);
722 /* remove beacon and probe response */
723 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
724 RCU_INIT_POINTER(sdata->u.ap.probe_resp, NULL);
727 kfree_skb(old_probe_resp);
729 /* down all dependent devices, that is VLANs */
730 list_for_each_entry_safe(vlan, tmpsdata, &sdata->u.ap.vlans,
732 dev_close(vlan->dev);
733 WARN_ON(!list_empty(&sdata->u.ap.vlans));
735 /* free all potentially still buffered bcast frames */
736 local->total_ps_buffered -= skb_queue_len(&sdata->u.ap.ps_bc_buf);
737 skb_queue_purge(&sdata->u.ap.ps_bc_buf);
738 } else if (sdata->vif.type == NL80211_IFTYPE_STATION) {
739 ieee80211_mgd_stop(sdata);
745 switch (sdata->vif.type) {
746 case NL80211_IFTYPE_AP_VLAN:
747 list_del(&sdata->u.vlan.list);
748 /* no need to tell driver */
750 case NL80211_IFTYPE_MONITOR:
751 if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) {
752 local->cooked_mntrs--;
757 if (local->monitors == 0) {
758 local->hw.conf.flags &= ~IEEE80211_CONF_MONITOR;
759 hw_reconf_flags |= IEEE80211_CONF_CHANGE_MONITOR;
760 ieee80211_del_virtual_monitor(local);
763 ieee80211_adjust_monitor_flags(sdata, -1);
764 ieee80211_configure_filter(local);
767 flush_work(&sdata->work);
769 * When we get here, the interface is marked down.
770 * Call synchronize_rcu() to wait for the RX path
771 * should it be using the interface and enqueuing
772 * frames at this very time on another CPU.
775 skb_queue_purge(&sdata->skb_queue);
778 * Disable beaconing here for mesh only, AP and IBSS
779 * are already taken care of.
781 if (sdata->vif.type == NL80211_IFTYPE_MESH_POINT)
782 ieee80211_bss_info_change_notify(sdata,
783 BSS_CHANGED_BEACON_ENABLED);
786 * Free all remaining keys, there shouldn't be any,
787 * except maybe group keys in AP more or WDS?
789 ieee80211_free_keys(sdata);
792 drv_remove_interface(local, sdata);
797 mutex_lock(&local->mtx);
798 hw_reconf_flags |= __ieee80211_recalc_idle(local);
799 mutex_unlock(&local->mtx);
801 ieee80211_recalc_ps(local, -1);
803 if (local->open_count == 0) {
804 if (local->ops->napi_poll)
805 napi_disable(&local->napi);
806 ieee80211_clear_tx_pending(local);
807 ieee80211_stop_device(local);
809 /* no reconfiguring after stop! */
813 /* Re-calculate channel-type, in case there are multiple vifs
814 * on different channel types.
816 orig_ct = local->_oper_channel_type;
817 ieee80211_set_channel_type(local, NULL, NL80211_CHAN_NO_HT);
819 /* do after stop to avoid reconfiguring when we stop anyway */
820 if (hw_reconf_flags || (orig_ct != local->_oper_channel_type))
821 ieee80211_hw_config(local, hw_reconf_flags);
823 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
824 for (i = 0; i < IEEE80211_MAX_QUEUES; i++) {
825 skb_queue_walk_safe(&local->pending[i], skb, tmp) {
826 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
827 if (info->control.vif == &sdata->vif) {
828 __skb_unlink(skb, &local->pending[i]);
829 dev_kfree_skb_irq(skb);
833 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
835 if (local->monitors == local->open_count && local->monitors > 0)
836 ieee80211_add_virtual_monitor(local);
839 static int ieee80211_stop(struct net_device *dev)
841 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
843 ieee80211_do_stop(sdata, true);
848 static void ieee80211_set_multicast_list(struct net_device *dev)
850 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
851 struct ieee80211_local *local = sdata->local;
852 int allmulti, promisc, sdata_allmulti, sdata_promisc;
854 allmulti = !!(dev->flags & IFF_ALLMULTI);
855 promisc = !!(dev->flags & IFF_PROMISC);
856 sdata_allmulti = !!(sdata->flags & IEEE80211_SDATA_ALLMULTI);
857 sdata_promisc = !!(sdata->flags & IEEE80211_SDATA_PROMISC);
859 if (allmulti != sdata_allmulti) {
860 if (dev->flags & IFF_ALLMULTI)
861 atomic_inc(&local->iff_allmultis);
863 atomic_dec(&local->iff_allmultis);
864 sdata->flags ^= IEEE80211_SDATA_ALLMULTI;
867 if (promisc != sdata_promisc) {
868 if (dev->flags & IFF_PROMISC)
869 atomic_inc(&local->iff_promiscs);
871 atomic_dec(&local->iff_promiscs);
872 sdata->flags ^= IEEE80211_SDATA_PROMISC;
874 spin_lock_bh(&local->filter_lock);
875 __hw_addr_sync(&local->mc_list, &dev->mc, dev->addr_len);
876 spin_unlock_bh(&local->filter_lock);
877 ieee80211_queue_work(&local->hw, &local->reconfig_filter);
881 * Called when the netdev is removed or, by the code below, before
882 * the interface type changes.
884 static void ieee80211_teardown_sdata(struct net_device *dev)
886 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
887 struct ieee80211_local *local = sdata->local;
891 /* free extra data */
892 ieee80211_free_keys(sdata);
894 ieee80211_debugfs_remove_netdev(sdata);
896 for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++)
897 __skb_queue_purge(&sdata->fragments[i].skb_list);
898 sdata->fragment_next = 0;
900 if (ieee80211_vif_is_mesh(&sdata->vif))
901 mesh_rmc_free(sdata);
903 flushed = sta_info_flush(local, sdata);
907 static u16 ieee80211_netdev_select_queue(struct net_device *dev,
910 return ieee80211_select_queue(IEEE80211_DEV_TO_SUB_IF(dev), skb);
913 static const struct net_device_ops ieee80211_dataif_ops = {
914 .ndo_open = ieee80211_open,
915 .ndo_stop = ieee80211_stop,
916 .ndo_uninit = ieee80211_teardown_sdata,
917 .ndo_start_xmit = ieee80211_subif_start_xmit,
918 .ndo_set_rx_mode = ieee80211_set_multicast_list,
919 .ndo_change_mtu = ieee80211_change_mtu,
920 .ndo_set_mac_address = ieee80211_change_mac,
921 .ndo_select_queue = ieee80211_netdev_select_queue,
924 static u16 ieee80211_monitor_select_queue(struct net_device *dev,
927 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
928 struct ieee80211_local *local = sdata->local;
929 struct ieee80211_hdr *hdr;
930 struct ieee80211_radiotap_header *rtap = (void *)skb->data;
932 if (local->hw.queues < IEEE80211_NUM_ACS)
936 skb->len < le16_to_cpu(rtap->it_len) + 2 /* frame control */)
937 return 0; /* doesn't matter, frame will be dropped */
939 hdr = (void *)((u8 *)skb->data + le16_to_cpu(rtap->it_len));
941 return ieee80211_select_queue_80211(sdata, skb, hdr);
944 static const struct net_device_ops ieee80211_monitorif_ops = {
945 .ndo_open = ieee80211_open,
946 .ndo_stop = ieee80211_stop,
947 .ndo_uninit = ieee80211_teardown_sdata,
948 .ndo_start_xmit = ieee80211_monitor_start_xmit,
949 .ndo_set_rx_mode = ieee80211_set_multicast_list,
950 .ndo_change_mtu = ieee80211_change_mtu,
951 .ndo_set_mac_address = eth_mac_addr,
952 .ndo_select_queue = ieee80211_monitor_select_queue,
955 static void ieee80211_if_setup(struct net_device *dev)
958 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
959 dev->netdev_ops = &ieee80211_dataif_ops;
960 dev->destructor = free_netdev;
963 static void ieee80211_iface_work(struct work_struct *work)
965 struct ieee80211_sub_if_data *sdata =
966 container_of(work, struct ieee80211_sub_if_data, work);
967 struct ieee80211_local *local = sdata->local;
969 struct sta_info *sta;
970 struct ieee80211_ra_tid *ra_tid;
972 if (!ieee80211_sdata_running(sdata))
979 * ieee80211_queue_work() should have picked up most cases,
980 * here we'll pick the rest.
982 if (WARN(local->suspended,
983 "interface work scheduled while going to suspend\n"))
986 /* first process frames */
987 while ((skb = skb_dequeue(&sdata->skb_queue))) {
988 struct ieee80211_mgmt *mgmt = (void *)skb->data;
990 if (skb->pkt_type == IEEE80211_SDATA_QUEUE_AGG_START) {
991 ra_tid = (void *)&skb->cb;
992 ieee80211_start_tx_ba_cb(&sdata->vif, ra_tid->ra,
994 } else if (skb->pkt_type == IEEE80211_SDATA_QUEUE_AGG_STOP) {
995 ra_tid = (void *)&skb->cb;
996 ieee80211_stop_tx_ba_cb(&sdata->vif, ra_tid->ra,
998 } else if (ieee80211_is_action(mgmt->frame_control) &&
999 mgmt->u.action.category == WLAN_CATEGORY_BACK) {
1002 mutex_lock(&local->sta_mtx);
1003 sta = sta_info_get_bss(sdata, mgmt->sa);
1005 switch (mgmt->u.action.u.addba_req.action_code) {
1006 case WLAN_ACTION_ADDBA_REQ:
1007 ieee80211_process_addba_request(
1008 local, sta, mgmt, len);
1010 case WLAN_ACTION_ADDBA_RESP:
1011 ieee80211_process_addba_resp(local, sta,
1014 case WLAN_ACTION_DELBA:
1015 ieee80211_process_delba(sdata, sta,
1023 mutex_unlock(&local->sta_mtx);
1024 } else if (ieee80211_is_data_qos(mgmt->frame_control)) {
1025 struct ieee80211_hdr *hdr = (void *)mgmt;
1027 * So the frame isn't mgmt, but frame_control
1028 * is at the right place anyway, of course, so
1029 * the if statement is correct.
1031 * Warn if we have other data frame types here,
1032 * they must not get here.
1034 WARN_ON(hdr->frame_control &
1035 cpu_to_le16(IEEE80211_STYPE_NULLFUNC));
1036 WARN_ON(!(hdr->seq_ctrl &
1037 cpu_to_le16(IEEE80211_SCTL_FRAG)));
1039 * This was a fragment of a frame, received while
1040 * a block-ack session was active. That cannot be
1041 * right, so terminate the session.
1043 mutex_lock(&local->sta_mtx);
1044 sta = sta_info_get_bss(sdata, mgmt->sa);
1046 u16 tid = *ieee80211_get_qos_ctl(hdr) &
1047 IEEE80211_QOS_CTL_TID_MASK;
1049 __ieee80211_stop_rx_ba_session(
1050 sta, tid, WLAN_BACK_RECIPIENT,
1051 WLAN_REASON_QSTA_REQUIRE_SETUP,
1054 mutex_unlock(&local->sta_mtx);
1055 } else switch (sdata->vif.type) {
1056 case NL80211_IFTYPE_STATION:
1057 ieee80211_sta_rx_queued_mgmt(sdata, skb);
1059 case NL80211_IFTYPE_ADHOC:
1060 ieee80211_ibss_rx_queued_mgmt(sdata, skb);
1062 case NL80211_IFTYPE_MESH_POINT:
1063 if (!ieee80211_vif_is_mesh(&sdata->vif))
1065 ieee80211_mesh_rx_queued_mgmt(sdata, skb);
1068 WARN(1, "frame for unexpected interface type");
1075 /* then other type-dependent work */
1076 switch (sdata->vif.type) {
1077 case NL80211_IFTYPE_STATION:
1078 ieee80211_sta_work(sdata);
1080 case NL80211_IFTYPE_ADHOC:
1081 ieee80211_ibss_work(sdata);
1083 case NL80211_IFTYPE_MESH_POINT:
1084 if (!ieee80211_vif_is_mesh(&sdata->vif))
1086 ieee80211_mesh_work(sdata);
1095 * Helper function to initialise an interface to a specific type.
1097 static void ieee80211_setup_sdata(struct ieee80211_sub_if_data *sdata,
1098 enum nl80211_iftype type)
1100 /* clear type-dependent union */
1101 memset(&sdata->u, 0, sizeof(sdata->u));
1103 /* and set some type-dependent values */
1104 sdata->vif.type = type;
1105 sdata->vif.p2p = false;
1106 sdata->dev->netdev_ops = &ieee80211_dataif_ops;
1107 sdata->wdev.iftype = type;
1109 sdata->control_port_protocol = cpu_to_be16(ETH_P_PAE);
1110 sdata->control_port_no_encrypt = false;
1112 sdata->noack_map = 0;
1114 /* only monitor differs */
1115 sdata->dev->type = ARPHRD_ETHER;
1117 skb_queue_head_init(&sdata->skb_queue);
1118 INIT_WORK(&sdata->work, ieee80211_iface_work);
1121 case NL80211_IFTYPE_P2P_GO:
1122 type = NL80211_IFTYPE_AP;
1123 sdata->vif.type = type;
1124 sdata->vif.p2p = true;
1126 case NL80211_IFTYPE_AP:
1127 skb_queue_head_init(&sdata->u.ap.ps_bc_buf);
1128 INIT_LIST_HEAD(&sdata->u.ap.vlans);
1130 case NL80211_IFTYPE_P2P_CLIENT:
1131 type = NL80211_IFTYPE_STATION;
1132 sdata->vif.type = type;
1133 sdata->vif.p2p = true;
1135 case NL80211_IFTYPE_STATION:
1136 ieee80211_sta_setup_sdata(sdata);
1138 case NL80211_IFTYPE_ADHOC:
1139 ieee80211_ibss_setup_sdata(sdata);
1141 case NL80211_IFTYPE_MESH_POINT:
1142 if (ieee80211_vif_is_mesh(&sdata->vif))
1143 ieee80211_mesh_init_sdata(sdata);
1145 case NL80211_IFTYPE_MONITOR:
1146 sdata->dev->type = ARPHRD_IEEE80211_RADIOTAP;
1147 sdata->dev->netdev_ops = &ieee80211_monitorif_ops;
1148 sdata->u.mntr_flags = MONITOR_FLAG_CONTROL |
1149 MONITOR_FLAG_OTHER_BSS;
1151 case NL80211_IFTYPE_WDS:
1152 case NL80211_IFTYPE_AP_VLAN:
1154 case NL80211_IFTYPE_UNSPECIFIED:
1155 case NUM_NL80211_IFTYPES:
1160 ieee80211_debugfs_add_netdev(sdata);
1163 static void ieee80211_clean_sdata(struct ieee80211_sub_if_data *sdata)
1165 switch (sdata->vif.type) {
1166 case NL80211_IFTYPE_MESH_POINT:
1167 mesh_path_flush_by_iface(sdata);
1175 static int ieee80211_runtime_change_iftype(struct ieee80211_sub_if_data *sdata,
1176 enum nl80211_iftype type)
1178 struct ieee80211_local *local = sdata->local;
1180 enum nl80211_iftype internal_type = type;
1185 if (!local->ops->change_interface)
1188 switch (sdata->vif.type) {
1189 case NL80211_IFTYPE_AP:
1190 case NL80211_IFTYPE_STATION:
1191 case NL80211_IFTYPE_ADHOC:
1193 * Could maybe also all others here?
1194 * Just not sure how that interacts
1195 * with the RX/config path e.g. for
1204 case NL80211_IFTYPE_AP:
1205 case NL80211_IFTYPE_STATION:
1206 case NL80211_IFTYPE_ADHOC:
1208 * Could probably support everything
1209 * but WDS here (WDS do_open can fail
1210 * under memory pressure, which this
1211 * code isn't prepared to handle).
1214 case NL80211_IFTYPE_P2P_CLIENT:
1216 internal_type = NL80211_IFTYPE_STATION;
1218 case NL80211_IFTYPE_P2P_GO:
1220 internal_type = NL80211_IFTYPE_AP;
1226 ret = ieee80211_check_concurrent_iface(sdata, internal_type);
1230 ieee80211_do_stop(sdata, false);
1232 ieee80211_teardown_sdata(sdata->dev);
1234 ret = drv_change_interface(local, sdata, internal_type, p2p);
1236 type = sdata->vif.type;
1239 * Ignore return value here, there's not much we can do since
1240 * the driver changed the interface type internally already.
1241 * The warnings will hopefully make driver authors fix it :-)
1243 ieee80211_check_queues(sdata);
1245 ieee80211_setup_sdata(sdata, type);
1247 err = ieee80211_do_open(sdata->dev, false);
1248 WARN(err, "type change: do_open returned %d", err);
1253 int ieee80211_if_change_type(struct ieee80211_sub_if_data *sdata,
1254 enum nl80211_iftype type)
1260 if (type == ieee80211_vif_type_p2p(&sdata->vif))
1263 /* Setting ad-hoc mode on non-IBSS channel is not supported. */
1264 if (sdata->local->oper_channel->flags & IEEE80211_CHAN_NO_IBSS &&
1265 type == NL80211_IFTYPE_ADHOC)
1268 if (ieee80211_sdata_running(sdata)) {
1269 ret = ieee80211_runtime_change_iftype(sdata, type);
1273 /* Purge and reset type-dependent state. */
1274 ieee80211_teardown_sdata(sdata->dev);
1275 ieee80211_setup_sdata(sdata, type);
1278 /* reset some values that shouldn't be kept across type changes */
1279 sdata->vif.bss_conf.basic_rates =
1280 ieee80211_mandatory_rates(sdata->local,
1281 sdata->local->oper_channel->band);
1282 sdata->drop_unencrypted = 0;
1283 if (type == NL80211_IFTYPE_STATION)
1284 sdata->u.mgd.use_4addr = false;
1289 static void ieee80211_assign_perm_addr(struct ieee80211_local *local,
1290 struct net_device *dev,
1291 enum nl80211_iftype type)
1293 struct ieee80211_sub_if_data *sdata;
1294 u64 mask, start, addr, val, inc;
1296 u8 tmp_addr[ETH_ALEN];
1299 /* default ... something at least */
1300 memcpy(dev->perm_addr, local->hw.wiphy->perm_addr, ETH_ALEN);
1302 if (is_zero_ether_addr(local->hw.wiphy->addr_mask) &&
1303 local->hw.wiphy->n_addresses <= 1)
1307 mutex_lock(&local->iflist_mtx);
1310 case NL80211_IFTYPE_MONITOR:
1311 /* doesn't matter */
1313 case NL80211_IFTYPE_WDS:
1314 case NL80211_IFTYPE_AP_VLAN:
1315 /* match up with an AP interface */
1316 list_for_each_entry(sdata, &local->interfaces, list) {
1317 if (sdata->vif.type != NL80211_IFTYPE_AP)
1319 memcpy(dev->perm_addr, sdata->vif.addr, ETH_ALEN);
1322 /* keep default if no AP interface present */
1325 /* assign a new address if possible -- try n_addresses first */
1326 for (i = 0; i < local->hw.wiphy->n_addresses; i++) {
1329 list_for_each_entry(sdata, &local->interfaces, list) {
1330 if (memcmp(local->hw.wiphy->addresses[i].addr,
1331 sdata->vif.addr, ETH_ALEN) == 0) {
1338 memcpy(dev->perm_addr,
1339 local->hw.wiphy->addresses[i].addr,
1345 /* try mask if available */
1346 if (is_zero_ether_addr(local->hw.wiphy->addr_mask))
1349 m = local->hw.wiphy->addr_mask;
1350 mask = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) |
1351 ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) |
1352 ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8);
1354 if (__ffs64(mask) + hweight64(mask) != fls64(mask)) {
1355 /* not a contiguous mask ... not handled now! */
1356 pr_info("not contiguous\n");
1360 m = local->hw.wiphy->perm_addr;
1361 start = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) |
1362 ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) |
1363 ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8);
1365 inc = 1ULL<<__ffs64(mask);
1366 val = (start & mask);
1367 addr = (start & ~mask) | (val & mask);
1371 tmp_addr[5] = addr >> 0*8;
1372 tmp_addr[4] = addr >> 1*8;
1373 tmp_addr[3] = addr >> 2*8;
1374 tmp_addr[2] = addr >> 3*8;
1375 tmp_addr[1] = addr >> 4*8;
1376 tmp_addr[0] = addr >> 5*8;
1380 list_for_each_entry(sdata, &local->interfaces, list) {
1381 if (memcmp(tmp_addr, sdata->vif.addr,
1389 memcpy(dev->perm_addr, tmp_addr, ETH_ALEN);
1392 addr = (start & ~mask) | (val & mask);
1393 } while (addr != start);
1398 mutex_unlock(&local->iflist_mtx);
1401 int ieee80211_if_add(struct ieee80211_local *local, const char *name,
1402 struct wireless_dev **new_wdev, enum nl80211_iftype type,
1403 struct vif_params *params)
1405 struct net_device *ndev;
1406 struct ieee80211_sub_if_data *sdata = NULL;
1412 if (local->hw.queues >= IEEE80211_NUM_ACS)
1413 txqs = IEEE80211_NUM_ACS;
1415 ndev = alloc_netdev_mqs(sizeof(*sdata) + local->hw.vif_data_size,
1416 name, ieee80211_if_setup, txqs, 1);
1419 dev_net_set(ndev, wiphy_net(local->hw.wiphy));
1421 ndev->needed_headroom = local->tx_headroom +
1422 4*6 /* four MAC addresses */
1423 + 2 + 2 + 2 + 2 /* ctl, dur, seq, qos */
1425 + 8 /* rfc1042/bridge tunnel */
1426 - ETH_HLEN /* ethernet hard_header_len */
1427 + IEEE80211_ENCRYPT_HEADROOM;
1428 ndev->needed_tailroom = IEEE80211_ENCRYPT_TAILROOM;
1430 ret = dev_alloc_name(ndev, ndev->name);
1434 ieee80211_assign_perm_addr(local, ndev, type);
1435 memcpy(ndev->dev_addr, ndev->perm_addr, ETH_ALEN);
1436 SET_NETDEV_DEV(ndev, wiphy_dev(local->hw.wiphy));
1438 /* don't use IEEE80211_DEV_TO_SUB_IF because it checks too much */
1439 sdata = netdev_priv(ndev);
1440 ndev->ieee80211_ptr = &sdata->wdev;
1441 memcpy(sdata->vif.addr, ndev->dev_addr, ETH_ALEN);
1442 memcpy(sdata->name, ndev->name, IFNAMSIZ);
1444 /* initialise type-independent data */
1445 sdata->wdev.wiphy = local->hw.wiphy;
1446 sdata->local = local;
1449 sdata->arp_filter_state = true;
1452 for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++)
1453 skb_queue_head_init(&sdata->fragments[i].skb_list);
1455 INIT_LIST_HEAD(&sdata->key_list);
1457 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
1458 struct ieee80211_supported_band *sband;
1459 sband = local->hw.wiphy->bands[i];
1460 sdata->rc_rateidx_mask[i] =
1461 sband ? (1 << sband->n_bitrates) - 1 : 0;
1463 memcpy(sdata->rc_rateidx_mcs_mask[i],
1464 sband->ht_cap.mcs.rx_mask,
1465 sizeof(sdata->rc_rateidx_mcs_mask[i]));
1467 memset(sdata->rc_rateidx_mcs_mask[i], 0,
1468 sizeof(sdata->rc_rateidx_mcs_mask[i]));
1471 ieee80211_set_default_queues(sdata);
1473 /* setup type-dependent data */
1474 ieee80211_setup_sdata(sdata, type);
1477 ndev->ieee80211_ptr->use_4addr = params->use_4addr;
1478 if (type == NL80211_IFTYPE_STATION)
1479 sdata->u.mgd.use_4addr = params->use_4addr;
1482 ndev->features |= local->hw.netdev_features;
1484 ret = register_netdevice(ndev);
1488 mutex_lock(&local->iflist_mtx);
1489 list_add_tail_rcu(&sdata->list, &local->interfaces);
1490 mutex_unlock(&local->iflist_mtx);
1493 *new_wdev = &sdata->wdev;
1502 void ieee80211_if_remove(struct ieee80211_sub_if_data *sdata)
1506 mutex_lock(&sdata->local->iflist_mtx);
1507 list_del_rcu(&sdata->list);
1508 mutex_unlock(&sdata->local->iflist_mtx);
1510 /* clean up type-dependent data */
1511 ieee80211_clean_sdata(sdata);
1514 unregister_netdevice(sdata->dev);
1518 * Remove all interfaces, may only be called at hardware unregistration
1519 * time because it doesn't do RCU-safe list removals.
1521 void ieee80211_remove_interfaces(struct ieee80211_local *local)
1523 struct ieee80211_sub_if_data *sdata, *tmp;
1524 LIST_HEAD(unreg_list);
1528 mutex_lock(&local->iflist_mtx);
1529 list_for_each_entry_safe(sdata, tmp, &local->interfaces, list) {
1530 list_del(&sdata->list);
1532 ieee80211_clean_sdata(sdata);
1534 unregister_netdevice_queue(sdata->dev, &unreg_list);
1536 mutex_unlock(&local->iflist_mtx);
1537 unregister_netdevice_many(&unreg_list);
1538 list_del(&unreg_list);
1541 static int netdev_notify(struct notifier_block *nb,
1542 unsigned long state,
1545 struct net_device *dev = ndev;
1546 struct ieee80211_sub_if_data *sdata;
1548 if (state != NETDEV_CHANGENAME)
1551 if (!dev->ieee80211_ptr || !dev->ieee80211_ptr->wiphy)
1554 if (dev->ieee80211_ptr->wiphy->privid != mac80211_wiphy_privid)
1557 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1559 memcpy(sdata->name, dev->name, IFNAMSIZ);
1561 ieee80211_debugfs_rename_netdev(sdata);
1565 static struct notifier_block mac80211_netdev_notifier = {
1566 .notifier_call = netdev_notify,
1569 int ieee80211_iface_init(void)
1571 return register_netdevice_notifier(&mac80211_netdev_notifier);
1574 void ieee80211_iface_exit(void)
1576 unregister_netdevice_notifier(&mac80211_netdev_notifier);