Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2 | /* |
Johannes Berg | c5d54fb | 2013-03-26 21:54:24 +0100 | [diff] [blame] | 3 | * Interface handling |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 4 | * |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 5 | * Copyright 2002-2005, Instant802 Networks, Inc. |
| 6 | * Copyright 2005-2006, Devicescape Software, Inc. |
| 7 | * Copyright (c) 2006 Jiri Benc <jbenc@suse.cz> |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 8 | * Copyright 2008, Johannes Berg <johannes@sipsolutions.net> |
Johannes Berg | d98ad83 | 2014-09-03 15:24:57 +0300 | [diff] [blame] | 9 | * Copyright 2013-2014 Intel Mobile Communications GmbH |
Johannes Berg | d2941df | 2016-10-20 08:52:50 +0200 | [diff] [blame] | 10 | * Copyright (c) 2016 Intel Deutschland GmbH |
Ilan Peer | 52b4810 | 2020-01-31 13:12:56 +0200 | [diff] [blame] | 11 | * Copyright (C) 2018-2020 Intel Corporation |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 12 | */ |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 13 | #include <linux/slab.h> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 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> |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 19 | #include <net/ieee80211_radiotap.h> |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 20 | #include "ieee80211_i.h" |
| 21 | #include "sta_info.h" |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 22 | #include "debugfs_netdev.h" |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 23 | #include "mesh.h" |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 24 | #include "led.h" |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 25 | #include "driver-ops.h" |
Johannes Berg | cf0277e | 2010-01-05 18:00:58 +0100 | [diff] [blame] | 26 | #include "wme.h" |
Bill Jordan | 1be7fe8 | 2010-10-01 11:20:41 -0400 | [diff] [blame] | 27 | #include "rate.h" |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 28 | |
Johannes Berg | c771c9d | 2009-01-23 22:54:03 +0100 | [diff] [blame] | 29 | /** |
| 30 | * DOC: Interface list locking |
| 31 | * |
| 32 | * The interface list in each struct ieee80211_local is protected |
| 33 | * three-fold: |
| 34 | * |
| 35 | * (1) modifications may only be done under the RTNL |
| 36 | * (2) modifications and readers are protected against each other by |
| 37 | * the iflist_mtx. |
| 38 | * (3) modifications are done in an RCU manner so atomic readers |
| 39 | * can traverse the list in RCU-safe blocks. |
| 40 | * |
| 41 | * As a consequence, reads (traversals) of the list can be protected |
| 42 | * by either the RTNL, the iflist_mtx or RCU. |
| 43 | */ |
| 44 | |
Aviya Erenfeld | 42bd20d | 2016-08-29 23:25:16 +0300 | [diff] [blame] | 45 | static void ieee80211_iface_work(struct work_struct *work); |
| 46 | |
Johannes Berg | 1ea6f9c | 2012-10-24 10:59:25 +0200 | [diff] [blame] | 47 | bool __ieee80211_recalc_txpower(struct ieee80211_sub_if_data *sdata) |
| 48 | { |
| 49 | struct ieee80211_chanctx_conf *chanctx_conf; |
| 50 | int power; |
| 51 | |
| 52 | rcu_read_lock(); |
| 53 | chanctx_conf = rcu_dereference(sdata->vif.chanctx_conf); |
| 54 | if (!chanctx_conf) { |
| 55 | rcu_read_unlock(); |
| 56 | return false; |
| 57 | } |
| 58 | |
Simon Wunderlich | 0430c88 | 2013-07-08 16:55:55 +0200 | [diff] [blame] | 59 | power = ieee80211_chandef_max_power(&chanctx_conf->def); |
Johannes Berg | 1ea6f9c | 2012-10-24 10:59:25 +0200 | [diff] [blame] | 60 | rcu_read_unlock(); |
| 61 | |
| 62 | if (sdata->user_power_level != IEEE80211_UNSET_POWER_LEVEL) |
| 63 | power = min(power, sdata->user_power_level); |
| 64 | |
| 65 | if (sdata->ap_power_level != IEEE80211_UNSET_POWER_LEVEL) |
| 66 | power = min(power, sdata->ap_power_level); |
| 67 | |
| 68 | if (power != sdata->vif.bss_conf.txpower) { |
| 69 | sdata->vif.bss_conf.txpower = power; |
| 70 | ieee80211_hw_config(sdata->local, 0); |
| 71 | return true; |
| 72 | } |
| 73 | |
| 74 | return false; |
| 75 | } |
| 76 | |
Lorenzo Bianconi | db82d8a | 2015-01-14 12:55:08 +0100 | [diff] [blame] | 77 | void ieee80211_recalc_txpower(struct ieee80211_sub_if_data *sdata, |
| 78 | bool update_bss) |
Johannes Berg | 1ea6f9c | 2012-10-24 10:59:25 +0200 | [diff] [blame] | 79 | { |
Emmanuel Grumbach | 5ad11b5 | 2015-11-17 10:24:39 +0200 | [diff] [blame] | 80 | if (__ieee80211_recalc_txpower(sdata) || |
| 81 | (update_bss && ieee80211_sdata_running(sdata))) |
Johannes Berg | 1ea6f9c | 2012-10-24 10:59:25 +0200 | [diff] [blame] | 82 | ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_TXPOWER); |
| 83 | } |
Johannes Berg | c771c9d | 2009-01-23 22:54:03 +0100 | [diff] [blame] | 84 | |
Johannes Berg | 62a40a1 | 2013-04-08 11:52:34 +0200 | [diff] [blame] | 85 | static u32 __ieee80211_idle_off(struct ieee80211_local *local) |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 86 | { |
| 87 | if (!(local->hw.conf.flags & IEEE80211_CONF_IDLE)) |
| 88 | return 0; |
| 89 | |
| 90 | local->hw.conf.flags &= ~IEEE80211_CONF_IDLE; |
| 91 | return IEEE80211_CONF_CHANGE_IDLE; |
| 92 | } |
| 93 | |
Johannes Berg | 62a40a1 | 2013-04-08 11:52:34 +0200 | [diff] [blame] | 94 | static u32 __ieee80211_idle_on(struct ieee80211_local *local) |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 95 | { |
| 96 | if (local->hw.conf.flags & IEEE80211_CONF_IDLE) |
| 97 | return 0; |
| 98 | |
Emmanuel Grumbach | 3b24f4c | 2015-01-07 15:42:39 +0200 | [diff] [blame] | 99 | ieee80211_flush_queues(local, NULL, false); |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 100 | |
| 101 | local->hw.conf.flags |= IEEE80211_CONF_IDLE; |
| 102 | return IEEE80211_CONF_CHANGE_IDLE; |
| 103 | } |
| 104 | |
Johannes Berg | 62a40a1 | 2013-04-08 11:52:34 +0200 | [diff] [blame] | 105 | static u32 __ieee80211_recalc_idle(struct ieee80211_local *local, |
| 106 | bool force_active) |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 107 | { |
Johannes Berg | 1d5e126 | 2014-02-12 11:29:32 +0100 | [diff] [blame] | 108 | bool working, scanning, active; |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 109 | unsigned int led_trig_start = 0, led_trig_stop = 0; |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 110 | |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 111 | lockdep_assert_held(&local->mtx); |
| 112 | |
Johannes Berg | 62a40a1 | 2013-04-08 11:52:34 +0200 | [diff] [blame] | 113 | active = force_active || |
| 114 | !list_empty(&local->chanctx_list) || |
| 115 | local->monitors; |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 116 | |
Johannes Berg | 1d5e126 | 2014-02-12 11:29:32 +0100 | [diff] [blame] | 117 | working = !local->ops->remain_on_channel && |
| 118 | !list_empty(&local->roc_list); |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 119 | |
Johannes Berg | f1e3e05 | 2013-02-06 23:57:57 +0100 | [diff] [blame] | 120 | scanning = test_bit(SCAN_SW_SCANNING, &local->scanning) || |
| 121 | test_bit(SCAN_ONCHANNEL_SCANNING, &local->scanning); |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 122 | |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 123 | if (working || scanning) |
| 124 | led_trig_start |= IEEE80211_TPT_LEDTRIG_FL_WORK; |
| 125 | else |
| 126 | led_trig_stop |= IEEE80211_TPT_LEDTRIG_FL_WORK; |
| 127 | |
Johannes Berg | fd0f979 | 2013-02-07 00:14:51 +0100 | [diff] [blame] | 128 | if (active) |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 129 | led_trig_start |= IEEE80211_TPT_LEDTRIG_FL_CONNECTED; |
| 130 | else |
| 131 | led_trig_stop |= IEEE80211_TPT_LEDTRIG_FL_CONNECTED; |
| 132 | |
| 133 | ieee80211_mod_tpt_led_trig(local, led_trig_start, led_trig_stop); |
| 134 | |
Johannes Berg | fd0f979 | 2013-02-07 00:14:51 +0100 | [diff] [blame] | 135 | if (working || scanning || active) |
Johannes Berg | 62a40a1 | 2013-04-08 11:52:34 +0200 | [diff] [blame] | 136 | return __ieee80211_idle_off(local); |
| 137 | return __ieee80211_idle_on(local); |
| 138 | } |
| 139 | |
| 140 | u32 ieee80211_idle_off(struct ieee80211_local *local) |
| 141 | { |
| 142 | return __ieee80211_recalc_idle(local, true); |
| 143 | } |
| 144 | |
| 145 | void ieee80211_recalc_idle(struct ieee80211_local *local) |
| 146 | { |
| 147 | u32 change = __ieee80211_recalc_idle(local, false); |
Johannes Berg | fd0f979 | 2013-02-07 00:14:51 +0100 | [diff] [blame] | 148 | if (change) |
| 149 | ieee80211_hw_config(local, change); |
Johannes Berg | cc45ae54 | 2012-06-21 22:30:52 +0200 | [diff] [blame] | 150 | } |
| 151 | |
John W. Linville | 3899ba9 | 2013-06-11 14:48:32 -0400 | [diff] [blame] | 152 | static int ieee80211_verify_mac(struct ieee80211_sub_if_data *sdata, u8 *addr, |
Felix Fietkau | 31eba5b | 2013-05-28 13:01:53 +0200 | [diff] [blame] | 153 | bool check_dup) |
Helmut Schaa | 478622e | 2012-11-27 18:23:06 +0100 | [diff] [blame] | 154 | { |
Helmut Schaa | ac20976 | 2013-05-27 10:43:09 +0200 | [diff] [blame] | 155 | struct ieee80211_local *local = sdata->local; |
| 156 | struct ieee80211_sub_if_data *iter; |
Helmut Schaa | 478622e | 2012-11-27 18:23:06 +0100 | [diff] [blame] | 157 | u64 new, mask, tmp; |
| 158 | u8 *m; |
| 159 | int ret = 0; |
| 160 | |
| 161 | if (is_zero_ether_addr(local->hw.wiphy->addr_mask)) |
| 162 | return 0; |
| 163 | |
| 164 | m = addr; |
| 165 | new = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) | |
| 166 | ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) | |
| 167 | ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8); |
| 168 | |
| 169 | m = local->hw.wiphy->addr_mask; |
| 170 | mask = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) | |
| 171 | ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) | |
| 172 | ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8); |
| 173 | |
Felix Fietkau | 31eba5b | 2013-05-28 13:01:53 +0200 | [diff] [blame] | 174 | if (!check_dup) |
| 175 | return ret; |
Helmut Schaa | 478622e | 2012-11-27 18:23:06 +0100 | [diff] [blame] | 176 | |
| 177 | mutex_lock(&local->iflist_mtx); |
Helmut Schaa | ac20976 | 2013-05-27 10:43:09 +0200 | [diff] [blame] | 178 | list_for_each_entry(iter, &local->interfaces, list) { |
| 179 | if (iter == sdata) |
Helmut Schaa | 478622e | 2012-11-27 18:23:06 +0100 | [diff] [blame] | 180 | continue; |
| 181 | |
John W. Linville | 3899ba9 | 2013-06-11 14:48:32 -0400 | [diff] [blame] | 182 | if (iter->vif.type == NL80211_IFTYPE_MONITOR && |
Aviya Erenfeld | d821218 | 2016-08-29 23:25:15 +0300 | [diff] [blame] | 183 | !(iter->u.mntr.flags & MONITOR_FLAG_ACTIVE)) |
Helmut Schaa | ac20976 | 2013-05-27 10:43:09 +0200 | [diff] [blame] | 184 | continue; |
| 185 | |
| 186 | m = iter->vif.addr; |
Helmut Schaa | 478622e | 2012-11-27 18:23:06 +0100 | [diff] [blame] | 187 | tmp = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) | |
| 188 | ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) | |
| 189 | ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8); |
| 190 | |
| 191 | if ((new & ~mask) != (tmp & ~mask)) { |
| 192 | ret = -EINVAL; |
| 193 | break; |
| 194 | } |
| 195 | } |
| 196 | mutex_unlock(&local->iflist_mtx); |
| 197 | |
| 198 | return ret; |
| 199 | } |
| 200 | |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 201 | static int ieee80211_change_mac(struct net_device *dev, void *addr) |
| 202 | { |
| 203 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Kalle Valo | fc5f757 | 2009-12-30 15:54:03 +0200 | [diff] [blame] | 204 | struct sockaddr *sa = addr; |
Felix Fietkau | 31eba5b | 2013-05-28 13:01:53 +0200 | [diff] [blame] | 205 | bool check_dup = true; |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 206 | int ret; |
| 207 | |
Johannes Berg | 9607e6b66 | 2009-12-23 13:15:31 +0100 | [diff] [blame] | 208 | if (ieee80211_sdata_running(sdata)) |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 209 | return -EBUSY; |
| 210 | |
Felix Fietkau | 31eba5b | 2013-05-28 13:01:53 +0200 | [diff] [blame] | 211 | if (sdata->vif.type == NL80211_IFTYPE_MONITOR && |
Aviya Erenfeld | d821218 | 2016-08-29 23:25:15 +0300 | [diff] [blame] | 212 | !(sdata->u.mntr.flags & MONITOR_FLAG_ACTIVE)) |
Felix Fietkau | 31eba5b | 2013-05-28 13:01:53 +0200 | [diff] [blame] | 213 | check_dup = false; |
| 214 | |
John W. Linville | 3899ba9 | 2013-06-11 14:48:32 -0400 | [diff] [blame] | 215 | ret = ieee80211_verify_mac(sdata, sa->sa_data, check_dup); |
Helmut Schaa | 478622e | 2012-11-27 18:23:06 +0100 | [diff] [blame] | 216 | if (ret) |
| 217 | return ret; |
| 218 | |
Kalle Valo | fc5f757 | 2009-12-30 15:54:03 +0200 | [diff] [blame] | 219 | ret = eth_mac_addr(dev, sa); |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 220 | |
| 221 | if (ret == 0) |
Kalle Valo | fc5f757 | 2009-12-30 15:54:03 +0200 | [diff] [blame] | 222 | memcpy(sdata->vif.addr, sa->sa_data, ETH_ALEN); |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 223 | |
| 224 | return ret; |
| 225 | } |
| 226 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 227 | static inline int identical_mac_addr_allowed(int type1, int type2) |
| 228 | { |
| 229 | return type1 == NL80211_IFTYPE_MONITOR || |
| 230 | type2 == NL80211_IFTYPE_MONITOR || |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 231 | type1 == NL80211_IFTYPE_P2P_DEVICE || |
| 232 | type2 == NL80211_IFTYPE_P2P_DEVICE || |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 233 | (type1 == NL80211_IFTYPE_AP && type2 == NL80211_IFTYPE_AP_VLAN) || |
| 234 | (type1 == NL80211_IFTYPE_AP_VLAN && |
| 235 | (type2 == NL80211_IFTYPE_AP || |
| 236 | type2 == NL80211_IFTYPE_AP_VLAN)); |
| 237 | } |
| 238 | |
Johannes Berg | 87490f6 | 2010-08-27 12:35:57 +0200 | [diff] [blame] | 239 | static int ieee80211_check_concurrent_iface(struct ieee80211_sub_if_data *sdata, |
| 240 | enum nl80211_iftype iftype) |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 241 | { |
Johannes Berg | b4a4bf5 | 2008-09-26 13:34:54 +0200 | [diff] [blame] | 242 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 87490f6 | 2010-08-27 12:35:57 +0200 | [diff] [blame] | 243 | struct ieee80211_sub_if_data *nsdata; |
Luciano Coelho | b6a5501 | 2014-02-27 11:07:21 +0200 | [diff] [blame] | 244 | int ret; |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 245 | |
Johannes Berg | 87490f6 | 2010-08-27 12:35:57 +0200 | [diff] [blame] | 246 | ASSERT_RTNL(); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 247 | |
| 248 | /* we hold the RTNL here so can safely walk the list */ |
| 249 | list_for_each_entry(nsdata, &local->interfaces, list) { |
Johannes Berg | 371a255 | 2012-06-19 15:54:05 +0200 | [diff] [blame] | 250 | if (nsdata != sdata && ieee80211_sdata_running(nsdata)) { |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 251 | /* |
Rostislav Lisovy | 239281f | 2014-11-03 10:33:19 +0100 | [diff] [blame] | 252 | * Only OCB and monitor mode may coexist |
| 253 | */ |
| 254 | if ((sdata->vif.type == NL80211_IFTYPE_OCB && |
| 255 | nsdata->vif.type != NL80211_IFTYPE_MONITOR) || |
| 256 | (sdata->vif.type != NL80211_IFTYPE_MONITOR && |
| 257 | nsdata->vif.type == NL80211_IFTYPE_OCB)) |
| 258 | return -EBUSY; |
| 259 | |
| 260 | /* |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 261 | * Allow only a single IBSS interface to be up at any |
| 262 | * time. This is restricted because beacon distribution |
| 263 | * cannot work properly if both are in the same IBSS. |
| 264 | * |
| 265 | * To remove this restriction we'd have to disallow them |
| 266 | * from setting the same SSID on different IBSS interfaces |
| 267 | * belonging to the same hardware. Then, however, we're |
| 268 | * faced with having to adopt two different TSF timers... |
| 269 | */ |
Johannes Berg | 87490f6 | 2010-08-27 12:35:57 +0200 | [diff] [blame] | 270 | if (iftype == NL80211_IFTYPE_ADHOC && |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 271 | nsdata->vif.type == NL80211_IFTYPE_ADHOC) |
| 272 | return -EBUSY; |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 273 | /* |
| 274 | * will not add another interface while any channel |
| 275 | * switch is active. |
| 276 | */ |
| 277 | if (nsdata->vif.csa_active) |
| 278 | return -EBUSY; |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 279 | |
| 280 | /* |
| 281 | * The remaining checks are only performed for interfaces |
| 282 | * with the same MAC address. |
| 283 | */ |
Johannes Berg | 371a255 | 2012-06-19 15:54:05 +0200 | [diff] [blame] | 284 | if (!ether_addr_equal(sdata->vif.addr, |
| 285 | nsdata->vif.addr)) |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 286 | continue; |
| 287 | |
| 288 | /* |
| 289 | * check whether it may have the same address |
| 290 | */ |
Johannes Berg | 87490f6 | 2010-08-27 12:35:57 +0200 | [diff] [blame] | 291 | if (!identical_mac_addr_allowed(iftype, |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 292 | nsdata->vif.type)) |
| 293 | return -ENOTUNIQ; |
| 294 | |
| 295 | /* |
| 296 | * can only add VLANs to enabled APs |
| 297 | */ |
Johannes Berg | 87490f6 | 2010-08-27 12:35:57 +0200 | [diff] [blame] | 298 | if (iftype == NL80211_IFTYPE_AP_VLAN && |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 299 | nsdata->vif.type == NL80211_IFTYPE_AP) |
| 300 | sdata->bss = &nsdata->u.ap; |
| 301 | } |
| 302 | } |
| 303 | |
Luciano Coelho | b6a5501 | 2014-02-27 11:07:21 +0200 | [diff] [blame] | 304 | mutex_lock(&local->chanctx_mtx); |
| 305 | ret = ieee80211_check_combinations(sdata, NULL, 0, 0); |
| 306 | mutex_unlock(&local->chanctx_mtx); |
| 307 | return ret; |
Johannes Berg | 87490f6 | 2010-08-27 12:35:57 +0200 | [diff] [blame] | 308 | } |
| 309 | |
Johannes Berg | a986553 | 2013-08-26 09:30:32 +0200 | [diff] [blame] | 310 | static int ieee80211_check_queues(struct ieee80211_sub_if_data *sdata, |
| 311 | enum nl80211_iftype iftype) |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 312 | { |
| 313 | int n_queues = sdata->local->hw.queues; |
| 314 | int i; |
| 315 | |
Ayala Beker | 708d50e | 2016-09-20 17:31:14 +0300 | [diff] [blame] | 316 | if (iftype == NL80211_IFTYPE_NAN) |
| 317 | return 0; |
| 318 | |
Johannes Berg | a986553 | 2013-08-26 09:30:32 +0200 | [diff] [blame] | 319 | if (iftype != NL80211_IFTYPE_P2P_DEVICE) { |
Ilan Peer | 0ef24e5 | 2012-08-21 12:43:35 +0300 | [diff] [blame] | 320 | for (i = 0; i < IEEE80211_NUM_ACS; i++) { |
| 321 | if (WARN_ON_ONCE(sdata->vif.hw_queue[i] == |
| 322 | IEEE80211_INVAL_HW_QUEUE)) |
| 323 | return -EINVAL; |
| 324 | if (WARN_ON_ONCE(sdata->vif.hw_queue[i] >= |
| 325 | n_queues)) |
| 326 | return -EINVAL; |
| 327 | } |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 328 | } |
| 329 | |
Johannes Berg | a986553 | 2013-08-26 09:30:32 +0200 | [diff] [blame] | 330 | if ((iftype != NL80211_IFTYPE_AP && |
| 331 | iftype != NL80211_IFTYPE_P2P_GO && |
| 332 | iftype != NL80211_IFTYPE_MESH_POINT) || |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 333 | !ieee80211_hw_check(&sdata->local->hw, QUEUE_CONTROL)) { |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 334 | sdata->vif.cab_queue = IEEE80211_INVAL_HW_QUEUE; |
| 335 | return 0; |
| 336 | } |
| 337 | |
| 338 | if (WARN_ON_ONCE(sdata->vif.cab_queue == IEEE80211_INVAL_HW_QUEUE)) |
| 339 | return -EINVAL; |
| 340 | |
| 341 | if (WARN_ON_ONCE(sdata->vif.cab_queue >= n_queues)) |
| 342 | return -EINVAL; |
| 343 | |
| 344 | return 0; |
| 345 | } |
| 346 | |
Felix Fietkau | 4b7afb5 | 2020-09-08 14:37:02 +0200 | [diff] [blame] | 347 | static int ieee80211_open(struct net_device *dev) |
| 348 | { |
| 349 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 350 | int err; |
| 351 | |
| 352 | /* fail early if user set an invalid address */ |
| 353 | if (!is_valid_ether_addr(dev->dev_addr)) |
| 354 | return -EADDRNOTAVAIL; |
| 355 | |
| 356 | err = ieee80211_check_concurrent_iface(sdata, sdata->vif.type); |
| 357 | if (err) |
| 358 | return err; |
| 359 | |
| 360 | return ieee80211_do_open(&sdata->wdev, true); |
| 361 | } |
| 362 | |
| 363 | static void ieee80211_do_stop(struct ieee80211_sub_if_data *sdata, |
| 364 | bool going_down) |
| 365 | { |
| 366 | struct ieee80211_local *local = sdata->local; |
| 367 | unsigned long flags; |
| 368 | struct sk_buff *skb, *tmp; |
| 369 | u32 hw_reconf_flags = 0; |
| 370 | int i, flushed; |
| 371 | struct ps_data *ps; |
| 372 | struct cfg80211_chan_def chandef; |
| 373 | bool cancel_scan; |
| 374 | struct cfg80211_nan_func *func; |
| 375 | |
| 376 | clear_bit(SDATA_STATE_RUNNING, &sdata->state); |
| 377 | |
| 378 | cancel_scan = rcu_access_pointer(local->scan_sdata) == sdata; |
| 379 | if (cancel_scan) |
| 380 | ieee80211_scan_cancel(local); |
| 381 | |
| 382 | /* |
| 383 | * Stop TX on this interface first. |
| 384 | */ |
| 385 | if (sdata->dev) |
| 386 | netif_tx_stop_all_queues(sdata->dev); |
| 387 | |
| 388 | ieee80211_roc_purge(local, sdata); |
| 389 | |
| 390 | switch (sdata->vif.type) { |
| 391 | case NL80211_IFTYPE_STATION: |
| 392 | ieee80211_mgd_stop(sdata); |
| 393 | break; |
| 394 | case NL80211_IFTYPE_ADHOC: |
| 395 | ieee80211_ibss_stop(sdata); |
| 396 | break; |
| 397 | case NL80211_IFTYPE_MONITOR: |
| 398 | if (sdata->u.mntr.flags & MONITOR_FLAG_COOK_FRAMES) |
| 399 | break; |
| 400 | list_del_rcu(&sdata->u.mntr.list); |
| 401 | break; |
| 402 | default: |
| 403 | break; |
| 404 | } |
| 405 | |
| 406 | /* |
| 407 | * Remove all stations associated with this interface. |
| 408 | * |
| 409 | * This must be done before calling ops->remove_interface() |
| 410 | * because otherwise we can later invoke ops->sta_notify() |
| 411 | * whenever the STAs are removed, and that invalidates driver |
| 412 | * assumptions about always getting a vif pointer that is valid |
| 413 | * (because if we remove a STA after ops->remove_interface() |
| 414 | * the driver will have removed the vif info already!) |
| 415 | * |
Johannes Berg | 70d9c59 | 2020-11-09 10:57:46 +0100 | [diff] [blame] | 416 | * For AP_VLANs stations may exist since there's nothing else that |
Felix Fietkau | 4b7afb5 | 2020-09-08 14:37:02 +0200 | [diff] [blame] | 417 | * would have removed them, but in other modes there shouldn't |
| 418 | * be any stations. |
| 419 | */ |
| 420 | flushed = sta_info_flush(sdata); |
Johannes Berg | 70d9c59 | 2020-11-09 10:57:46 +0100 | [diff] [blame] | 421 | WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_AP_VLAN && flushed > 0); |
Felix Fietkau | 4b7afb5 | 2020-09-08 14:37:02 +0200 | [diff] [blame] | 422 | |
| 423 | /* don't count this interface for allmulti while it is down */ |
| 424 | if (sdata->flags & IEEE80211_SDATA_ALLMULTI) |
| 425 | atomic_dec(&local->iff_allmultis); |
| 426 | |
| 427 | if (sdata->vif.type == NL80211_IFTYPE_AP) { |
| 428 | local->fif_pspoll--; |
| 429 | local->fif_probe_req--; |
| 430 | } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) { |
| 431 | local->fif_probe_req--; |
| 432 | } |
| 433 | |
| 434 | if (sdata->dev) { |
| 435 | netif_addr_lock_bh(sdata->dev); |
| 436 | spin_lock_bh(&local->filter_lock); |
| 437 | __hw_addr_unsync(&local->mc_list, &sdata->dev->mc, |
| 438 | sdata->dev->addr_len); |
| 439 | spin_unlock_bh(&local->filter_lock); |
| 440 | netif_addr_unlock_bh(sdata->dev); |
| 441 | } |
| 442 | |
| 443 | del_timer_sync(&local->dynamic_ps_timer); |
| 444 | cancel_work_sync(&local->dynamic_ps_enable_work); |
| 445 | |
| 446 | cancel_work_sync(&sdata->recalc_smps); |
| 447 | sdata_lock(sdata); |
| 448 | mutex_lock(&local->mtx); |
| 449 | sdata->vif.csa_active = false; |
| 450 | if (sdata->vif.type == NL80211_IFTYPE_STATION) |
| 451 | sdata->u.mgd.csa_waiting_bcn = false; |
| 452 | if (sdata->csa_block_tx) { |
| 453 | ieee80211_wake_vif_queues(local, sdata, |
| 454 | IEEE80211_QUEUE_STOP_REASON_CSA); |
| 455 | sdata->csa_block_tx = false; |
| 456 | } |
| 457 | mutex_unlock(&local->mtx); |
| 458 | sdata_unlock(sdata); |
| 459 | |
| 460 | cancel_work_sync(&sdata->csa_finalize_work); |
| 461 | |
| 462 | cancel_delayed_work_sync(&sdata->dfs_cac_timer_work); |
| 463 | |
| 464 | if (sdata->wdev.cac_started) { |
| 465 | chandef = sdata->vif.bss_conf.chandef; |
| 466 | WARN_ON(local->suspended); |
| 467 | mutex_lock(&local->mtx); |
| 468 | ieee80211_vif_release_channel(sdata); |
| 469 | mutex_unlock(&local->mtx); |
| 470 | cfg80211_cac_event(sdata->dev, &chandef, |
| 471 | NL80211_RADAR_CAC_ABORTED, |
| 472 | GFP_KERNEL); |
| 473 | } |
| 474 | |
| 475 | /* APs need special treatment */ |
| 476 | if (sdata->vif.type == NL80211_IFTYPE_AP) { |
| 477 | struct ieee80211_sub_if_data *vlan, *tmpsdata; |
| 478 | |
| 479 | /* down all dependent devices, that is VLANs */ |
| 480 | list_for_each_entry_safe(vlan, tmpsdata, &sdata->u.ap.vlans, |
| 481 | u.vlan.list) |
| 482 | dev_close(vlan->dev); |
| 483 | WARN_ON(!list_empty(&sdata->u.ap.vlans)); |
| 484 | } else if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) { |
| 485 | /* remove all packets in parent bc_buf pointing to this dev */ |
| 486 | ps = &sdata->bss->ps; |
| 487 | |
| 488 | spin_lock_irqsave(&ps->bc_buf.lock, flags); |
| 489 | skb_queue_walk_safe(&ps->bc_buf, skb, tmp) { |
| 490 | if (skb->dev == sdata->dev) { |
| 491 | __skb_unlink(skb, &ps->bc_buf); |
| 492 | local->total_ps_buffered--; |
| 493 | ieee80211_free_txskb(&local->hw, skb); |
| 494 | } |
| 495 | } |
| 496 | spin_unlock_irqrestore(&ps->bc_buf.lock, flags); |
| 497 | } |
| 498 | |
| 499 | if (going_down) |
| 500 | local->open_count--; |
| 501 | |
| 502 | switch (sdata->vif.type) { |
| 503 | case NL80211_IFTYPE_AP_VLAN: |
| 504 | mutex_lock(&local->mtx); |
| 505 | list_del(&sdata->u.vlan.list); |
| 506 | mutex_unlock(&local->mtx); |
| 507 | RCU_INIT_POINTER(sdata->vif.chanctx_conf, NULL); |
| 508 | /* see comment in the default case below */ |
| 509 | ieee80211_free_keys(sdata, true); |
| 510 | /* no need to tell driver */ |
| 511 | break; |
| 512 | case NL80211_IFTYPE_MONITOR: |
| 513 | if (sdata->u.mntr.flags & MONITOR_FLAG_COOK_FRAMES) { |
| 514 | local->cooked_mntrs--; |
| 515 | break; |
| 516 | } |
| 517 | |
| 518 | local->monitors--; |
| 519 | if (local->monitors == 0) { |
| 520 | local->hw.conf.flags &= ~IEEE80211_CONF_MONITOR; |
| 521 | hw_reconf_flags |= IEEE80211_CONF_CHANGE_MONITOR; |
| 522 | } |
| 523 | |
| 524 | ieee80211_adjust_monitor_flags(sdata, -1); |
| 525 | break; |
| 526 | case NL80211_IFTYPE_NAN: |
| 527 | /* clean all the functions */ |
| 528 | spin_lock_bh(&sdata->u.nan.func_lock); |
| 529 | |
| 530 | idr_for_each_entry(&sdata->u.nan.function_inst_ids, func, i) { |
| 531 | idr_remove(&sdata->u.nan.function_inst_ids, i); |
| 532 | cfg80211_free_nan_func(func); |
| 533 | } |
| 534 | idr_destroy(&sdata->u.nan.function_inst_ids); |
| 535 | |
| 536 | spin_unlock_bh(&sdata->u.nan.func_lock); |
| 537 | break; |
| 538 | case NL80211_IFTYPE_P2P_DEVICE: |
| 539 | /* relies on synchronize_rcu() below */ |
| 540 | RCU_INIT_POINTER(local->p2p_sdata, NULL); |
| 541 | fallthrough; |
| 542 | default: |
| 543 | cancel_work_sync(&sdata->work); |
| 544 | /* |
| 545 | * When we get here, the interface is marked down. |
| 546 | * Free the remaining keys, if there are any |
| 547 | * (which can happen in AP mode if userspace sets |
Johannes Berg | 70d9c59 | 2020-11-09 10:57:46 +0100 | [diff] [blame] | 548 | * keys before the interface is operating) |
Felix Fietkau | 4b7afb5 | 2020-09-08 14:37:02 +0200 | [diff] [blame] | 549 | * |
| 550 | * Force the key freeing to always synchronize_net() |
| 551 | * to wait for the RX path in case it is using this |
| 552 | * interface enqueuing frames at this very time on |
| 553 | * another CPU. |
| 554 | */ |
| 555 | ieee80211_free_keys(sdata, true); |
| 556 | skb_queue_purge(&sdata->skb_queue); |
| 557 | } |
| 558 | |
| 559 | spin_lock_irqsave(&local->queue_stop_reason_lock, flags); |
| 560 | for (i = 0; i < IEEE80211_MAX_QUEUES; i++) { |
| 561 | skb_queue_walk_safe(&local->pending[i], skb, tmp) { |
| 562 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 563 | if (info->control.vif == &sdata->vif) { |
| 564 | __skb_unlink(skb, &local->pending[i]); |
| 565 | ieee80211_free_txskb(&local->hw, skb); |
| 566 | } |
| 567 | } |
| 568 | } |
| 569 | spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags); |
| 570 | |
| 571 | if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) |
| 572 | ieee80211_txq_remove_vlan(local, sdata); |
| 573 | |
| 574 | sdata->bss = NULL; |
| 575 | |
| 576 | if (local->open_count == 0) |
| 577 | ieee80211_clear_tx_pending(local); |
| 578 | |
| 579 | sdata->vif.bss_conf.beacon_int = 0; |
| 580 | |
| 581 | /* |
| 582 | * If the interface goes down while suspended, presumably because |
| 583 | * the device was unplugged and that happens before our resume, |
| 584 | * then the driver is already unconfigured and the remainder of |
| 585 | * this function isn't needed. |
| 586 | * XXX: what about WoWLAN? If the device has software state, e.g. |
| 587 | * memory allocated, it might expect teardown commands from |
| 588 | * mac80211 here? |
| 589 | */ |
| 590 | if (local->suspended) { |
| 591 | WARN_ON(local->wowlan); |
| 592 | WARN_ON(rtnl_dereference(local->monitor_sdata)); |
| 593 | return; |
| 594 | } |
| 595 | |
| 596 | switch (sdata->vif.type) { |
| 597 | case NL80211_IFTYPE_AP_VLAN: |
| 598 | break; |
| 599 | case NL80211_IFTYPE_MONITOR: |
| 600 | if (local->monitors == 0) |
| 601 | ieee80211_del_virtual_monitor(local); |
| 602 | |
| 603 | mutex_lock(&local->mtx); |
| 604 | ieee80211_recalc_idle(local); |
| 605 | mutex_unlock(&local->mtx); |
| 606 | |
| 607 | if (!(sdata->u.mntr.flags & MONITOR_FLAG_ACTIVE)) |
| 608 | break; |
| 609 | |
| 610 | fallthrough; |
| 611 | default: |
| 612 | if (going_down) |
| 613 | drv_remove_interface(local, sdata); |
| 614 | } |
| 615 | |
| 616 | ieee80211_recalc_ps(local); |
| 617 | |
| 618 | if (cancel_scan) |
| 619 | flush_delayed_work(&local->scan_work); |
| 620 | |
| 621 | if (local->open_count == 0) { |
| 622 | ieee80211_stop_device(local); |
| 623 | |
| 624 | /* no reconfiguring after stop! */ |
| 625 | return; |
| 626 | } |
| 627 | |
| 628 | /* do after stop to avoid reconfiguring when we stop anyway */ |
| 629 | ieee80211_configure_filter(local); |
| 630 | ieee80211_hw_config(local, hw_reconf_flags); |
| 631 | |
| 632 | if (local->monitors == local->open_count) |
| 633 | ieee80211_add_virtual_monitor(local); |
| 634 | } |
| 635 | |
| 636 | static int ieee80211_stop(struct net_device *dev) |
| 637 | { |
| 638 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 639 | |
| 640 | ieee80211_do_stop(sdata, true); |
| 641 | |
| 642 | return 0; |
| 643 | } |
| 644 | |
| 645 | static void ieee80211_set_multicast_list(struct net_device *dev) |
| 646 | { |
| 647 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 648 | struct ieee80211_local *local = sdata->local; |
| 649 | int allmulti, sdata_allmulti; |
| 650 | |
| 651 | allmulti = !!(dev->flags & IFF_ALLMULTI); |
| 652 | sdata_allmulti = !!(sdata->flags & IEEE80211_SDATA_ALLMULTI); |
| 653 | |
| 654 | if (allmulti != sdata_allmulti) { |
| 655 | if (dev->flags & IFF_ALLMULTI) |
| 656 | atomic_inc(&local->iff_allmultis); |
| 657 | else |
| 658 | atomic_dec(&local->iff_allmultis); |
| 659 | sdata->flags ^= IEEE80211_SDATA_ALLMULTI; |
| 660 | } |
| 661 | |
| 662 | spin_lock_bh(&local->filter_lock); |
| 663 | __hw_addr_sync(&local->mc_list, &dev->mc, dev->addr_len); |
| 664 | spin_unlock_bh(&local->filter_lock); |
| 665 | ieee80211_queue_work(&local->hw, &local->reconfig_filter); |
| 666 | } |
| 667 | |
| 668 | /* |
| 669 | * Called when the netdev is removed or, by the code below, before |
| 670 | * the interface type changes. |
| 671 | */ |
| 672 | static void ieee80211_teardown_sdata(struct ieee80211_sub_if_data *sdata) |
| 673 | { |
| 674 | int i; |
| 675 | |
| 676 | /* free extra data */ |
| 677 | ieee80211_free_keys(sdata, false); |
| 678 | |
| 679 | ieee80211_debugfs_remove_netdev(sdata); |
| 680 | |
| 681 | for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) |
| 682 | __skb_queue_purge(&sdata->fragments[i].skb_list); |
| 683 | sdata->fragment_next = 0; |
| 684 | |
| 685 | if (ieee80211_vif_is_mesh(&sdata->vif)) |
| 686 | ieee80211_mesh_teardown_sdata(sdata); |
| 687 | } |
| 688 | |
| 689 | static void ieee80211_uninit(struct net_device *dev) |
| 690 | { |
| 691 | ieee80211_teardown_sdata(IEEE80211_DEV_TO_SUB_IF(dev)); |
| 692 | } |
| 693 | |
| 694 | static u16 ieee80211_netdev_select_queue(struct net_device *dev, |
| 695 | struct sk_buff *skb, |
| 696 | struct net_device *sb_dev) |
| 697 | { |
| 698 | return ieee80211_select_queue(IEEE80211_DEV_TO_SUB_IF(dev), skb); |
| 699 | } |
| 700 | |
| 701 | static void |
| 702 | ieee80211_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats) |
| 703 | { |
Heiner Kallweit | 6401297 | 2020-10-12 10:18:19 +0200 | [diff] [blame] | 704 | dev_fetch_sw_netstats(stats, dev->tstats); |
Felix Fietkau | 4b7afb5 | 2020-09-08 14:37:02 +0200 | [diff] [blame] | 705 | } |
| 706 | |
| 707 | static const struct net_device_ops ieee80211_dataif_ops = { |
| 708 | .ndo_open = ieee80211_open, |
| 709 | .ndo_stop = ieee80211_stop, |
| 710 | .ndo_uninit = ieee80211_uninit, |
| 711 | .ndo_start_xmit = ieee80211_subif_start_xmit, |
| 712 | .ndo_set_rx_mode = ieee80211_set_multicast_list, |
| 713 | .ndo_set_mac_address = ieee80211_change_mac, |
| 714 | .ndo_select_queue = ieee80211_netdev_select_queue, |
| 715 | .ndo_get_stats64 = ieee80211_get_stats64, |
| 716 | }; |
| 717 | |
| 718 | static u16 ieee80211_monitor_select_queue(struct net_device *dev, |
| 719 | struct sk_buff *skb, |
| 720 | struct net_device *sb_dev) |
| 721 | { |
| 722 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
| 723 | struct ieee80211_local *local = sdata->local; |
| 724 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
| 725 | struct ieee80211_hdr *hdr; |
| 726 | int len_rthdr; |
| 727 | |
| 728 | if (local->hw.queues < IEEE80211_NUM_ACS) |
| 729 | return 0; |
| 730 | |
| 731 | /* reset flags and info before parsing radiotap header */ |
| 732 | memset(info, 0, sizeof(*info)); |
| 733 | |
| 734 | if (!ieee80211_parse_tx_radiotap(skb, dev)) |
| 735 | return 0; /* doesn't matter, frame will be dropped */ |
| 736 | |
| 737 | len_rthdr = ieee80211_get_radiotap_len(skb->data); |
| 738 | hdr = (struct ieee80211_hdr *)(skb->data + len_rthdr); |
| 739 | if (skb->len < len_rthdr + 2 || |
| 740 | skb->len < len_rthdr + ieee80211_hdrlen(hdr->frame_control)) |
| 741 | return 0; /* doesn't matter, frame will be dropped */ |
| 742 | |
| 743 | return ieee80211_select_queue_80211(sdata, skb, hdr); |
| 744 | } |
| 745 | |
| 746 | static const struct net_device_ops ieee80211_monitorif_ops = { |
| 747 | .ndo_open = ieee80211_open, |
| 748 | .ndo_stop = ieee80211_stop, |
| 749 | .ndo_uninit = ieee80211_uninit, |
| 750 | .ndo_start_xmit = ieee80211_monitor_start_xmit, |
| 751 | .ndo_set_rx_mode = ieee80211_set_multicast_list, |
| 752 | .ndo_set_mac_address = ieee80211_change_mac, |
| 753 | .ndo_select_queue = ieee80211_monitor_select_queue, |
| 754 | .ndo_get_stats64 = ieee80211_get_stats64, |
| 755 | }; |
| 756 | |
| 757 | static const struct net_device_ops ieee80211_dataif_8023_ops = { |
| 758 | .ndo_open = ieee80211_open, |
| 759 | .ndo_stop = ieee80211_stop, |
| 760 | .ndo_uninit = ieee80211_uninit, |
| 761 | .ndo_start_xmit = ieee80211_subif_start_xmit_8023, |
| 762 | .ndo_set_rx_mode = ieee80211_set_multicast_list, |
| 763 | .ndo_set_mac_address = ieee80211_change_mac, |
| 764 | .ndo_select_queue = ieee80211_netdev_select_queue, |
| 765 | .ndo_get_stats64 = ieee80211_get_stats64, |
| 766 | }; |
| 767 | |
Felix Fietkau | 6aea26c | 2020-09-08 14:36:53 +0200 | [diff] [blame] | 768 | static bool ieee80211_iftype_supports_encap_offload(enum nl80211_iftype iftype) |
| 769 | { |
| 770 | switch (iftype) { |
| 771 | /* P2P GO and client are mapped to AP/STATION types */ |
| 772 | case NL80211_IFTYPE_AP: |
| 773 | case NL80211_IFTYPE_STATION: |
| 774 | return true; |
| 775 | default: |
| 776 | return false; |
| 777 | } |
| 778 | } |
| 779 | |
| 780 | static bool ieee80211_set_sdata_offload_flags(struct ieee80211_sub_if_data *sdata) |
| 781 | { |
| 782 | struct ieee80211_local *local = sdata->local; |
| 783 | u32 flags; |
| 784 | |
| 785 | flags = sdata->vif.offload_flags; |
| 786 | |
| 787 | if (ieee80211_hw_check(&local->hw, SUPPORTS_TX_ENCAP_OFFLOAD) && |
| 788 | ieee80211_iftype_supports_encap_offload(sdata->vif.type)) { |
| 789 | flags |= IEEE80211_OFFLOAD_ENCAP_ENABLED; |
| 790 | |
| 791 | if (!ieee80211_hw_check(&local->hw, SUPPORTS_TX_FRAG) && |
| 792 | local->hw.wiphy->frag_threshold != (u32)-1) |
| 793 | flags &= ~IEEE80211_OFFLOAD_ENCAP_ENABLED; |
| 794 | |
| 795 | if (local->monitors) |
| 796 | flags &= ~IEEE80211_OFFLOAD_ENCAP_ENABLED; |
| 797 | } else { |
| 798 | flags &= ~IEEE80211_OFFLOAD_ENCAP_ENABLED; |
| 799 | } |
| 800 | |
| 801 | if (sdata->vif.offload_flags == flags) |
| 802 | return false; |
| 803 | |
| 804 | sdata->vif.offload_flags = flags; |
| 805 | return true; |
| 806 | } |
| 807 | |
Felix Fietkau | 4b7afb5 | 2020-09-08 14:37:02 +0200 | [diff] [blame] | 808 | static void ieee80211_set_vif_encap_ops(struct ieee80211_sub_if_data *sdata) |
| 809 | { |
| 810 | struct ieee80211_local *local = sdata->local; |
| 811 | struct ieee80211_sub_if_data *bss = sdata; |
| 812 | bool enabled; |
| 813 | |
| 814 | if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) { |
| 815 | if (!sdata->bss) |
| 816 | return; |
| 817 | |
| 818 | bss = container_of(sdata->bss, struct ieee80211_sub_if_data, u.ap); |
| 819 | } |
| 820 | |
| 821 | if (!ieee80211_hw_check(&local->hw, SUPPORTS_TX_ENCAP_OFFLOAD) || |
| 822 | !ieee80211_iftype_supports_encap_offload(bss->vif.type)) |
| 823 | return; |
| 824 | |
| 825 | enabled = bss->vif.offload_flags & IEEE80211_OFFLOAD_ENCAP_ENABLED; |
| 826 | if (sdata->wdev.use_4addr && |
| 827 | !(bss->vif.offload_flags & IEEE80211_OFFLOAD_ENCAP_4ADDR)) |
| 828 | enabled = false; |
| 829 | |
| 830 | sdata->dev->netdev_ops = enabled ? &ieee80211_dataif_8023_ops : |
| 831 | &ieee80211_dataif_ops; |
| 832 | } |
Felix Fietkau | 6aea26c | 2020-09-08 14:36:53 +0200 | [diff] [blame] | 833 | |
| 834 | static void ieee80211_recalc_sdata_offload(struct ieee80211_sub_if_data *sdata) |
| 835 | { |
| 836 | struct ieee80211_local *local = sdata->local; |
| 837 | struct ieee80211_sub_if_data *vsdata; |
| 838 | |
| 839 | if (ieee80211_set_sdata_offload_flags(sdata)) { |
| 840 | drv_update_vif_offload(local, sdata); |
| 841 | ieee80211_set_vif_encap_ops(sdata); |
| 842 | } |
| 843 | |
| 844 | list_for_each_entry(vsdata, &local->interfaces, list) { |
| 845 | if (vsdata->vif.type != NL80211_IFTYPE_AP_VLAN || |
| 846 | vsdata->bss != &sdata->u.ap) |
| 847 | continue; |
| 848 | |
| 849 | ieee80211_set_vif_encap_ops(vsdata); |
| 850 | } |
| 851 | } |
| 852 | |
| 853 | void ieee80211_recalc_offload(struct ieee80211_local *local) |
| 854 | { |
| 855 | struct ieee80211_sub_if_data *sdata; |
| 856 | |
| 857 | if (!ieee80211_hw_check(&local->hw, SUPPORTS_TX_ENCAP_OFFLOAD)) |
| 858 | return; |
| 859 | |
| 860 | mutex_lock(&local->iflist_mtx); |
| 861 | |
| 862 | list_for_each_entry(sdata, &local->interfaces, list) { |
| 863 | if (!ieee80211_sdata_running(sdata)) |
| 864 | continue; |
| 865 | |
| 866 | ieee80211_recalc_sdata_offload(sdata); |
| 867 | } |
| 868 | |
| 869 | mutex_unlock(&local->iflist_mtx); |
| 870 | } |
| 871 | |
Christian Lamparter | 85416a4 | 2010-10-02 13:17:07 +0200 | [diff] [blame] | 872 | void ieee80211_adjust_monitor_flags(struct ieee80211_sub_if_data *sdata, |
| 873 | const int offset) |
| 874 | { |
| 875 | struct ieee80211_local *local = sdata->local; |
Aviya Erenfeld | d821218 | 2016-08-29 23:25:15 +0300 | [diff] [blame] | 876 | u32 flags = sdata->u.mntr.flags; |
Christian Lamparter | 85416a4 | 2010-10-02 13:17:07 +0200 | [diff] [blame] | 877 | |
| 878 | #define ADJUST(_f, _s) do { \ |
| 879 | if (flags & MONITOR_FLAG_##_f) \ |
| 880 | local->fif_##_s += offset; \ |
| 881 | } while (0) |
| 882 | |
| 883 | ADJUST(FCSFAIL, fcsfail); |
| 884 | ADJUST(PLCPFAIL, plcpfail); |
| 885 | ADJUST(CONTROL, control); |
| 886 | ADJUST(CONTROL, pspoll); |
| 887 | ADJUST(OTHER_BSS, other_bss); |
| 888 | |
| 889 | #undef ADJUST |
| 890 | } |
| 891 | |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 892 | static void ieee80211_set_default_queues(struct ieee80211_sub_if_data *sdata) |
| 893 | { |
| 894 | struct ieee80211_local *local = sdata->local; |
| 895 | int i; |
| 896 | |
| 897 | for (i = 0; i < IEEE80211_NUM_ACS; i++) { |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 898 | if (ieee80211_hw_check(&local->hw, QUEUE_CONTROL)) |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 899 | sdata->vif.hw_queue[i] = IEEE80211_INVAL_HW_QUEUE; |
Johannes Berg | a9d3c05 | 2012-05-07 17:45:29 +0200 | [diff] [blame] | 900 | else if (local->hw.queues >= IEEE80211_NUM_ACS) |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 901 | sdata->vif.hw_queue[i] = i; |
Johannes Berg | a9d3c05 | 2012-05-07 17:45:29 +0200 | [diff] [blame] | 902 | else |
| 903 | sdata->vif.hw_queue[i] = 0; |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 904 | } |
| 905 | sdata->vif.cab_queue = IEEE80211_INVAL_HW_QUEUE; |
| 906 | } |
| 907 | |
Johannes Berg | 3c3e21e | 2013-03-27 23:20:27 +0100 | [diff] [blame] | 908 | int ieee80211_add_virtual_monitor(struct ieee80211_local *local) |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 909 | { |
| 910 | struct ieee80211_sub_if_data *sdata; |
Johannes Berg | 8b30578 | 2013-03-20 22:25:17 +0100 | [diff] [blame] | 911 | int ret; |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 912 | |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 913 | if (!ieee80211_hw_check(&local->hw, WANT_MONITOR_VIF)) |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 914 | return 0; |
| 915 | |
Johannes Berg | 8b30578 | 2013-03-20 22:25:17 +0100 | [diff] [blame] | 916 | ASSERT_RTNL(); |
Johannes Berg | 685fb72 | 2012-07-11 16:38:09 +0200 | [diff] [blame] | 917 | |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 918 | if (local->monitor_sdata) |
Johannes Berg | 8b30578 | 2013-03-20 22:25:17 +0100 | [diff] [blame] | 919 | return 0; |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 920 | |
| 921 | sdata = kzalloc(sizeof(*sdata) + local->hw.vif_data_size, GFP_KERNEL); |
Johannes Berg | 8b30578 | 2013-03-20 22:25:17 +0100 | [diff] [blame] | 922 | if (!sdata) |
| 923 | return -ENOMEM; |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 924 | |
| 925 | /* set up data */ |
| 926 | sdata->local = local; |
| 927 | sdata->vif.type = NL80211_IFTYPE_MONITOR; |
| 928 | snprintf(sdata->name, IFNAMSIZ, "%s-monitor", |
| 929 | wiphy_name(local->hw.wiphy)); |
Emmanuel Grumbach | 34171dc | 2014-05-25 15:35:41 +0300 | [diff] [blame] | 930 | sdata->wdev.iftype = NL80211_IFTYPE_MONITOR; |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 931 | |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 932 | sdata->encrypt_headroom = IEEE80211_ENCRYPT_HEADROOM; |
| 933 | |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 934 | ieee80211_set_default_queues(sdata); |
| 935 | |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 936 | ret = drv_add_interface(local, sdata); |
| 937 | if (WARN_ON(ret)) { |
| 938 | /* ok .. stupid driver, it asked for this! */ |
| 939 | kfree(sdata); |
Johannes Berg | 8b30578 | 2013-03-20 22:25:17 +0100 | [diff] [blame] | 940 | return ret; |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 941 | } |
| 942 | |
Borwankar, Antara | bdeca45 | 2020-11-29 17:30:53 +0200 | [diff] [blame] | 943 | set_bit(SDATA_STATE_RUNNING, &sdata->state); |
| 944 | |
Johannes Berg | a986553 | 2013-08-26 09:30:32 +0200 | [diff] [blame] | 945 | ret = ieee80211_check_queues(sdata, NL80211_IFTYPE_MONITOR); |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 946 | if (ret) { |
| 947 | kfree(sdata); |
Johannes Berg | 8b30578 | 2013-03-20 22:25:17 +0100 | [diff] [blame] | 948 | return ret; |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 949 | } |
| 950 | |
Johannes Berg | fab57a6 | 2014-01-29 13:28:02 +0100 | [diff] [blame] | 951 | mutex_lock(&local->iflist_mtx); |
| 952 | rcu_assign_pointer(local->monitor_sdata, sdata); |
| 953 | mutex_unlock(&local->iflist_mtx); |
| 954 | |
Johannes Berg | 34a3740 | 2013-12-18 09:43:33 +0100 | [diff] [blame] | 955 | mutex_lock(&local->mtx); |
Johannes Berg | 4bf8853 | 2012-11-09 11:39:59 +0100 | [diff] [blame] | 956 | ret = ieee80211_vif_use_channel(sdata, &local->monitor_chandef, |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 957 | IEEE80211_CHANCTX_EXCLUSIVE); |
Johannes Berg | 34a3740 | 2013-12-18 09:43:33 +0100 | [diff] [blame] | 958 | mutex_unlock(&local->mtx); |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 959 | if (ret) { |
Johannes Berg | fab57a6 | 2014-01-29 13:28:02 +0100 | [diff] [blame] | 960 | mutex_lock(&local->iflist_mtx); |
Monam Agarwal | 0c2bef46 | 2014-03-24 00:51:43 +0530 | [diff] [blame] | 961 | RCU_INIT_POINTER(local->monitor_sdata, NULL); |
Johannes Berg | fab57a6 | 2014-01-29 13:28:02 +0100 | [diff] [blame] | 962 | mutex_unlock(&local->iflist_mtx); |
| 963 | synchronize_net(); |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 964 | drv_remove_interface(local, sdata); |
| 965 | kfree(sdata); |
Johannes Berg | 8b30578 | 2013-03-20 22:25:17 +0100 | [diff] [blame] | 966 | return ret; |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 967 | } |
| 968 | |
Aviya Erenfeld | 42bd20d | 2016-08-29 23:25:16 +0300 | [diff] [blame] | 969 | skb_queue_head_init(&sdata->skb_queue); |
| 970 | INIT_WORK(&sdata->work, ieee80211_iface_work); |
| 971 | |
Johannes Berg | 8b30578 | 2013-03-20 22:25:17 +0100 | [diff] [blame] | 972 | return 0; |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 973 | } |
| 974 | |
Johannes Berg | 3c3e21e | 2013-03-27 23:20:27 +0100 | [diff] [blame] | 975 | void ieee80211_del_virtual_monitor(struct ieee80211_local *local) |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 976 | { |
| 977 | struct ieee80211_sub_if_data *sdata; |
| 978 | |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 979 | if (!ieee80211_hw_check(&local->hw, WANT_MONITOR_VIF)) |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 980 | return; |
| 981 | |
Johannes Berg | 8b30578 | 2013-03-20 22:25:17 +0100 | [diff] [blame] | 982 | ASSERT_RTNL(); |
| 983 | |
Johannes Berg | 685fb72 | 2012-07-11 16:38:09 +0200 | [diff] [blame] | 984 | mutex_lock(&local->iflist_mtx); |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 985 | |
Johannes Berg | 685fb72 | 2012-07-11 16:38:09 +0200 | [diff] [blame] | 986 | sdata = rcu_dereference_protected(local->monitor_sdata, |
| 987 | lockdep_is_held(&local->iflist_mtx)); |
Johannes Berg | 8b30578 | 2013-03-20 22:25:17 +0100 | [diff] [blame] | 988 | if (!sdata) { |
| 989 | mutex_unlock(&local->iflist_mtx); |
| 990 | return; |
| 991 | } |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 992 | |
Monam Agarwal | 0c2bef46 | 2014-03-24 00:51:43 +0530 | [diff] [blame] | 993 | RCU_INIT_POINTER(local->monitor_sdata, NULL); |
Johannes Berg | 8b30578 | 2013-03-20 22:25:17 +0100 | [diff] [blame] | 994 | mutex_unlock(&local->iflist_mtx); |
| 995 | |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 996 | synchronize_net(); |
| 997 | |
Johannes Berg | 34a3740 | 2013-12-18 09:43:33 +0100 | [diff] [blame] | 998 | mutex_lock(&local->mtx); |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 999 | ieee80211_vif_release_channel(sdata); |
Johannes Berg | 34a3740 | 2013-12-18 09:43:33 +0100 | [diff] [blame] | 1000 | mutex_unlock(&local->mtx); |
Johannes Berg | 55de908 | 2012-07-26 17:24:39 +0200 | [diff] [blame] | 1001 | |
Johannes Berg | 4b6f1dd | 2012-04-03 14:35:57 +0200 | [diff] [blame] | 1002 | drv_remove_interface(local, sdata); |
| 1003 | |
| 1004 | kfree(sdata); |
| 1005 | } |
| 1006 | |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1007 | /* |
| 1008 | * NOTE: Be very careful when changing this function, it must NOT return |
| 1009 | * an error on interface type changes that have been pre-checked, so most |
| 1010 | * checks should be in ieee80211_check_concurrent_iface. |
| 1011 | */ |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1012 | int ieee80211_do_open(struct wireless_dev *wdev, bool coming_up) |
Johannes Berg | 87490f6 | 2010-08-27 12:35:57 +0200 | [diff] [blame] | 1013 | { |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1014 | struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev); |
| 1015 | struct net_device *dev = wdev->netdev; |
Johannes Berg | 87490f6 | 2010-08-27 12:35:57 +0200 | [diff] [blame] | 1016 | struct ieee80211_local *local = sdata->local; |
Johannes Berg | 87490f6 | 2010-08-27 12:35:57 +0200 | [diff] [blame] | 1017 | u32 changed = 0; |
| 1018 | int res; |
| 1019 | u32 hw_reconf_flags = 0; |
| 1020 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1021 | switch (sdata->vif.type) { |
Johannes Berg | 665c93a | 2011-11-04 11:18:11 +0100 | [diff] [blame] | 1022 | case NL80211_IFTYPE_AP_VLAN: { |
| 1023 | struct ieee80211_sub_if_data *master; |
| 1024 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1025 | if (!sdata->bss) |
| 1026 | return -ENOLINK; |
Johannes Berg | 665c93a | 2011-11-04 11:18:11 +0100 | [diff] [blame] | 1027 | |
Michal Kazior | 4e141da | 2014-03-05 13:14:08 +0100 | [diff] [blame] | 1028 | mutex_lock(&local->mtx); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1029 | list_add(&sdata->u.vlan.list, &sdata->bss->vlans); |
Michal Kazior | 4e141da | 2014-03-05 13:14:08 +0100 | [diff] [blame] | 1030 | mutex_unlock(&local->mtx); |
Johannes Berg | 665c93a | 2011-11-04 11:18:11 +0100 | [diff] [blame] | 1031 | |
| 1032 | master = container_of(sdata->bss, |
| 1033 | struct ieee80211_sub_if_data, u.ap); |
| 1034 | sdata->control_port_protocol = |
| 1035 | master->control_port_protocol; |
| 1036 | sdata->control_port_no_encrypt = |
| 1037 | master->control_port_no_encrypt; |
Denis Kenzior | 018f6fb | 2018-03-26 12:52:51 -0500 | [diff] [blame] | 1038 | sdata->control_port_over_nl80211 = |
| 1039 | master->control_port_over_nl80211; |
Markus Theil | 7f3f96c | 2020-03-12 10:10:54 +0100 | [diff] [blame] | 1040 | sdata->control_port_no_preauth = |
| 1041 | master->control_port_no_preauth; |
Johannes Berg | 1351c5d | 2013-05-23 23:09:56 +0200 | [diff] [blame] | 1042 | sdata->vif.cab_queue = master->vif.cab_queue; |
| 1043 | memcpy(sdata->vif.hw_queue, master->vif.hw_queue, |
| 1044 | sizeof(sdata->vif.hw_queue)); |
Felix Fietkau | 2967e03 | 2014-11-24 18:12:16 +0100 | [diff] [blame] | 1045 | sdata->vif.bss_conf.chandef = master->vif.bss_conf.chandef; |
Michal Kazior | f9dca80 | 2015-05-13 09:16:48 +0000 | [diff] [blame] | 1046 | |
| 1047 | mutex_lock(&local->key_mtx); |
| 1048 | sdata->crypto_tx_tailroom_needed_cnt += |
| 1049 | master->crypto_tx_tailroom_needed_cnt; |
| 1050 | mutex_unlock(&local->key_mtx); |
| 1051 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1052 | break; |
Johannes Berg | 665c93a | 2011-11-04 11:18:11 +0100 | [diff] [blame] | 1053 | } |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1054 | case NL80211_IFTYPE_AP: |
| 1055 | sdata->bss = &sdata->u.ap; |
| 1056 | break; |
| 1057 | case NL80211_IFTYPE_MESH_POINT: |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1058 | case NL80211_IFTYPE_STATION: |
| 1059 | case NL80211_IFTYPE_MONITOR: |
| 1060 | case NL80211_IFTYPE_ADHOC: |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1061 | case NL80211_IFTYPE_P2P_DEVICE: |
Rostislav Lisovy | 6e0bd6c | 2014-11-03 10:33:18 +0100 | [diff] [blame] | 1062 | case NL80211_IFTYPE_OCB: |
Ayala Beker | cb3b7d8 | 2016-09-20 17:31:13 +0300 | [diff] [blame] | 1063 | case NL80211_IFTYPE_NAN: |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1064 | /* no special treatment */ |
| 1065 | break; |
| 1066 | case NL80211_IFTYPE_UNSPECIFIED: |
Johannes Berg | 2e161f78 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 1067 | case NUM_NL80211_IFTYPES: |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 1068 | case NL80211_IFTYPE_P2P_CLIENT: |
| 1069 | case NL80211_IFTYPE_P2P_GO: |
Johannes Berg | 70d9c59 | 2020-11-09 10:57:46 +0100 | [diff] [blame] | 1070 | case NL80211_IFTYPE_WDS: |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1071 | /* cannot happen */ |
| 1072 | WARN_ON(1); |
| 1073 | break; |
| 1074 | } |
| 1075 | |
| 1076 | if (local->open_count == 0) { |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 1077 | res = drv_start(local); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1078 | if (res) |
| 1079 | goto err_del_bss; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 1080 | /* we're brought up, everything changes */ |
| 1081 | hw_reconf_flags = ~0; |
Johannes Berg | 1f87f7d | 2009-06-02 13:01:41 +0200 | [diff] [blame] | 1082 | ieee80211_led_radio(local, true); |
Johannes Berg | 67408c8 | 2010-11-30 08:59:23 +0100 | [diff] [blame] | 1083 | ieee80211_mod_tpt_led_trig(local, |
| 1084 | IEEE80211_TPT_LEDTRIG_FL_RADIO, 0); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1085 | } |
| 1086 | |
| 1087 | /* |
Johannes Berg | bf533e0b | 2010-08-27 12:35:56 +0200 | [diff] [blame] | 1088 | * Copy the hopefully now-present MAC address to |
| 1089 | * this interface, if it has the special null one. |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1090 | */ |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1091 | if (dev && is_zero_ether_addr(dev->dev_addr)) { |
Johannes Berg | bf533e0b | 2010-08-27 12:35:56 +0200 | [diff] [blame] | 1092 | memcpy(dev->dev_addr, |
| 1093 | local->hw.wiphy->perm_addr, |
| 1094 | ETH_ALEN); |
| 1095 | memcpy(dev->perm_addr, dev->dev_addr, ETH_ALEN); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1096 | |
Johannes Berg | bf533e0b | 2010-08-27 12:35:56 +0200 | [diff] [blame] | 1097 | if (!is_valid_ether_addr(dev->dev_addr)) { |
Johannes Berg | 4d6c36f | 2012-04-03 14:45:54 +0200 | [diff] [blame] | 1098 | res = -EADDRNOTAVAIL; |
| 1099 | goto err_stop; |
John W. Linville | 0adc23f | 2009-10-06 16:27:18 -0400 | [diff] [blame] | 1100 | } |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1101 | } |
| 1102 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1103 | switch (sdata->vif.type) { |
| 1104 | case NL80211_IFTYPE_AP_VLAN: |
Johannes Berg | 4d76d21 | 2012-12-11 20:38:41 +0100 | [diff] [blame] | 1105 | /* no need to tell driver, but set carrier and chanctx */ |
| 1106 | if (rtnl_dereference(sdata->bss->beacon)) { |
| 1107 | ieee80211_vif_vlan_copy_chanctx(sdata); |
Johannes Berg | 3edaf3e | 2012-04-03 10:24:00 +0200 | [diff] [blame] | 1108 | netif_carrier_on(dev); |
Felix Fietkau | 6aea26c | 2020-09-08 14:36:53 +0200 | [diff] [blame] | 1109 | ieee80211_set_vif_encap_ops(sdata); |
Johannes Berg | 4d76d21 | 2012-12-11 20:38:41 +0100 | [diff] [blame] | 1110 | } else { |
Johannes Berg | 3edaf3e | 2012-04-03 10:24:00 +0200 | [diff] [blame] | 1111 | netif_carrier_off(dev); |
Johannes Berg | 4d76d21 | 2012-12-11 20:38:41 +0100 | [diff] [blame] | 1112 | } |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1113 | break; |
| 1114 | case NL80211_IFTYPE_MONITOR: |
Aviya Erenfeld | d821218 | 2016-08-29 23:25:15 +0300 | [diff] [blame] | 1115 | if (sdata->u.mntr.flags & MONITOR_FLAG_COOK_FRAMES) { |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1116 | local->cooked_mntrs++; |
| 1117 | break; |
| 1118 | } |
| 1119 | |
Aviya Erenfeld | d821218 | 2016-08-29 23:25:15 +0300 | [diff] [blame] | 1120 | if (sdata->u.mntr.flags & MONITOR_FLAG_ACTIVE) { |
Felix Fietkau | 31eba5b | 2013-05-28 13:01:53 +0200 | [diff] [blame] | 1121 | res = drv_add_interface(local, sdata); |
| 1122 | if (res) |
| 1123 | goto err_stop; |
| 1124 | } else if (local->monitors == 0 && local->open_count == 0) { |
Johannes Berg | 075e084 | 2012-07-12 19:28:31 +0200 | [diff] [blame] | 1125 | res = ieee80211_add_virtual_monitor(local); |
| 1126 | if (res) |
| 1127 | goto err_stop; |
| 1128 | } |
| 1129 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1130 | /* must be before the call to ieee80211_configure_filter */ |
| 1131 | local->monitors++; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 1132 | if (local->monitors == 1) { |
Johannes Berg | 0869aea0 | 2009-10-28 10:03:35 +0100 | [diff] [blame] | 1133 | local->hw.conf.flags |= IEEE80211_CONF_MONITOR; |
| 1134 | hw_reconf_flags |= IEEE80211_CONF_CHANGE_MONITOR; |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 1135 | } |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1136 | |
Christian Lamparter | 85416a4 | 2010-10-02 13:17:07 +0200 | [diff] [blame] | 1137 | ieee80211_adjust_monitor_flags(sdata, 1); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1138 | ieee80211_configure_filter(local); |
Felix Fietkau | 6aea26c | 2020-09-08 14:36:53 +0200 | [diff] [blame] | 1139 | ieee80211_recalc_offload(local); |
Felix Fietkau | 801d929 | 2013-03-02 19:05:47 +0100 | [diff] [blame] | 1140 | mutex_lock(&local->mtx); |
| 1141 | ieee80211_recalc_idle(local); |
| 1142 | mutex_unlock(&local->mtx); |
David Gnedt | 53e9b1d | 2010-07-19 20:44:02 +0200 | [diff] [blame] | 1143 | |
| 1144 | netif_carrier_on(dev); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1145 | break; |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1146 | default: |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1147 | if (coming_up) { |
Johannes Berg | 075e084 | 2012-07-12 19:28:31 +0200 | [diff] [blame] | 1148 | ieee80211_del_virtual_monitor(local); |
Felix Fietkau | 6aea26c | 2020-09-08 14:36:53 +0200 | [diff] [blame] | 1149 | ieee80211_set_sdata_offload_flags(sdata); |
Johannes Berg | 075e084 | 2012-07-12 19:28:31 +0200 | [diff] [blame] | 1150 | |
Johannes Berg | 7b7eab6 | 2011-11-03 14:41:13 +0100 | [diff] [blame] | 1151 | res = drv_add_interface(local, sdata); |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1152 | if (res) |
| 1153 | goto err_stop; |
Felix Fietkau | 6aea26c | 2020-09-08 14:36:53 +0200 | [diff] [blame] | 1154 | |
| 1155 | ieee80211_set_vif_encap_ops(sdata); |
Johannes Berg | a986553 | 2013-08-26 09:30:32 +0200 | [diff] [blame] | 1156 | res = ieee80211_check_queues(sdata, |
| 1157 | ieee80211_vif_type_p2p(&sdata->vif)); |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 1158 | if (res) |
| 1159 | goto err_del_interface; |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1160 | } |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1161 | |
Johannes Berg | 29cbe68 | 2010-12-03 09:20:44 +0100 | [diff] [blame] | 1162 | if (sdata->vif.type == NL80211_IFTYPE_AP) { |
Igor Perminov | e3b90ca | 2009-08-04 16:48:51 +0400 | [diff] [blame] | 1163 | local->fif_pspoll++; |
Johannes Berg | 7be5086 | 2010-10-13 12:06:24 +0200 | [diff] [blame] | 1164 | local->fif_probe_req++; |
Igor Perminov | e3b90ca | 2009-08-04 16:48:51 +0400 | [diff] [blame] | 1165 | |
Igor Perminov | e3b90ca | 2009-08-04 16:48:51 +0400 | [diff] [blame] | 1166 | ieee80211_configure_filter(local); |
Johannes Berg | 7be5086 | 2010-10-13 12:06:24 +0200 | [diff] [blame] | 1167 | } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) { |
| 1168 | local->fif_probe_req++; |
Andrey Yurovsky | a3c9aa5 | 2008-10-31 14:50:12 -0700 | [diff] [blame] | 1169 | } |
Igor Perminov | e3b90ca | 2009-08-04 16:48:51 +0400 | [diff] [blame] | 1170 | |
Johannes Berg | 90e8f58 | 2020-04-17 11:18:31 +0200 | [diff] [blame] | 1171 | if (sdata->vif.probe_req_reg) |
| 1172 | drv_config_iface_filter(local, sdata, |
| 1173 | FIF_PROBE_REQ, |
| 1174 | FIF_PROBE_REQ); |
| 1175 | |
Ayala Beker | 708d50e | 2016-09-20 17:31:14 +0300 | [diff] [blame] | 1176 | if (sdata->vif.type != NL80211_IFTYPE_P2P_DEVICE && |
| 1177 | sdata->vif.type != NL80211_IFTYPE_NAN) |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1178 | changed |= ieee80211_reset_erp_info(sdata); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1179 | ieee80211_bss_info_change_notify(sdata, changed); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1180 | |
Johannes Berg | c405c62 | 2012-07-30 19:44:12 +0200 | [diff] [blame] | 1181 | switch (sdata->vif.type) { |
| 1182 | case NL80211_IFTYPE_STATION: |
| 1183 | case NL80211_IFTYPE_ADHOC: |
| 1184 | case NL80211_IFTYPE_AP: |
| 1185 | case NL80211_IFTYPE_MESH_POINT: |
Rostislav Lisovy | 6e0bd6c | 2014-11-03 10:33:18 +0100 | [diff] [blame] | 1186 | case NL80211_IFTYPE_OCB: |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1187 | netif_carrier_off(dev); |
Johannes Berg | c405c62 | 2012-07-30 19:44:12 +0200 | [diff] [blame] | 1188 | break; |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1189 | case NL80211_IFTYPE_P2P_DEVICE: |
Ayala Beker | cb3b7d8 | 2016-09-20 17:31:13 +0300 | [diff] [blame] | 1190 | case NL80211_IFTYPE_NAN: |
Johannes Berg | 1411af1 | 2012-07-30 19:48:09 +0200 | [diff] [blame] | 1191 | break; |
Johannes Berg | c405c62 | 2012-07-30 19:44:12 +0200 | [diff] [blame] | 1192 | default: |
Johannes Berg | a231082 | 2013-03-26 22:10:02 +0100 | [diff] [blame] | 1193 | /* not reached */ |
| 1194 | WARN_ON(1); |
Johannes Berg | c405c62 | 2012-07-30 19:44:12 +0200 | [diff] [blame] | 1195 | } |
Eliad Peller | 5903459 | 2011-10-16 10:57:31 +0200 | [diff] [blame] | 1196 | |
| 1197 | /* |
Johannes Berg | cec6628 | 2015-10-22 17:46:04 +0200 | [diff] [blame] | 1198 | * Set default queue parameters so drivers don't |
Eliad Peller | 5903459 | 2011-10-16 10:57:31 +0200 | [diff] [blame] | 1199 | * need to initialise the hardware if the hardware |
Johannes Berg | cec6628 | 2015-10-22 17:46:04 +0200 | [diff] [blame] | 1200 | * doesn't start up with sane defaults. |
| 1201 | * Enable QoS for anything but station interfaces. |
Eliad Peller | 5903459 | 2011-10-16 10:57:31 +0200 | [diff] [blame] | 1202 | */ |
Johannes Berg | cec6628 | 2015-10-22 17:46:04 +0200 | [diff] [blame] | 1203 | ieee80211_set_wmm_default(sdata, true, |
| 1204 | sdata->vif.type != NL80211_IFTYPE_STATION); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1205 | } |
| 1206 | |
Johannes Berg | 2d2080c | 2010-09-15 15:13:13 +0200 | [diff] [blame] | 1207 | set_bit(SDATA_STATE_RUNNING, &sdata->state); |
| 1208 | |
Johannes Berg | f64331d | 2017-04-13 13:28:18 +0200 | [diff] [blame] | 1209 | switch (sdata->vif.type) { |
Johannes Berg | f64331d | 2017-04-13 13:28:18 +0200 | [diff] [blame] | 1210 | case NL80211_IFTYPE_P2P_DEVICE: |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1211 | rcu_assign_pointer(local->p2p_sdata, sdata); |
Johannes Berg | f64331d | 2017-04-13 13:28:18 +0200 | [diff] [blame] | 1212 | break; |
| 1213 | case NL80211_IFTYPE_MONITOR: |
| 1214 | if (sdata->u.mntr.flags & MONITOR_FLAG_COOK_FRAMES) |
| 1215 | break; |
| 1216 | list_add_tail_rcu(&sdata->u.mntr.list, &local->mon_list); |
| 1217 | break; |
| 1218 | default: |
| 1219 | break; |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1220 | } |
| 1221 | |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1222 | /* |
| 1223 | * set_multicast_list will be invoked by the networking core |
| 1224 | * which will check whether any increments here were done in |
| 1225 | * error and sync them down to the hardware as filter flags. |
| 1226 | */ |
| 1227 | if (sdata->flags & IEEE80211_SDATA_ALLMULTI) |
| 1228 | atomic_inc(&local->iff_allmultis); |
| 1229 | |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1230 | if (coming_up) |
| 1231 | local->open_count++; |
| 1232 | |
Eliad Peller | 5903459 | 2011-10-16 10:57:31 +0200 | [diff] [blame] | 1233 | if (hw_reconf_flags) |
Johannes Berg | e897558 | 2008-10-09 12:18:51 +0200 | [diff] [blame] | 1234 | ieee80211_hw_config(local, hw_reconf_flags); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1235 | |
Johannes Berg | 4a733ef | 2015-10-14 18:02:43 +0200 | [diff] [blame] | 1236 | ieee80211_recalc_ps(local); |
Johannes Berg | 965beda | 2009-04-16 13:17:24 +0200 | [diff] [blame] | 1237 | |
Johannes Berg | 2b43631 | 2013-05-23 21:04:38 +0200 | [diff] [blame] | 1238 | if (sdata->vif.type == NL80211_IFTYPE_MONITOR || |
Johannes Berg | 7d65f82 | 2017-03-29 14:15:24 +0200 | [diff] [blame] | 1239 | sdata->vif.type == NL80211_IFTYPE_AP_VLAN || |
| 1240 | local->ops->wake_tx_queue) { |
Johannes Berg | 2b43631 | 2013-05-23 21:04:38 +0200 | [diff] [blame] | 1241 | /* XXX: for AP_VLAN, actually track AP queues */ |
Chunho Lee | 89e9bfc | 2017-07-07 17:03:14 -0700 | [diff] [blame] | 1242 | if (dev) |
| 1243 | netif_tx_start_all_queues(dev); |
Johannes Berg | 2b43631 | 2013-05-23 21:04:38 +0200 | [diff] [blame] | 1244 | } else if (dev) { |
Johannes Berg | 2b730da | 2013-03-26 22:23:20 +0100 | [diff] [blame] | 1245 | unsigned long flags; |
| 1246 | int n_acs = IEEE80211_NUM_ACS; |
| 1247 | int ac; |
| 1248 | |
| 1249 | if (local->hw.queues < IEEE80211_NUM_ACS) |
| 1250 | n_acs = 1; |
| 1251 | |
| 1252 | spin_lock_irqsave(&local->queue_stop_reason_lock, flags); |
| 1253 | if (sdata->vif.cab_queue == IEEE80211_INVAL_HW_QUEUE || |
| 1254 | (local->queue_stop_reasons[sdata->vif.cab_queue] == 0 && |
| 1255 | skb_queue_empty(&local->pending[sdata->vif.cab_queue]))) { |
| 1256 | for (ac = 0; ac < n_acs; ac++) { |
| 1257 | int ac_queue = sdata->vif.hw_queue[ac]; |
| 1258 | |
| 1259 | if (local->queue_stop_reasons[ac_queue] == 0 && |
| 1260 | skb_queue_empty(&local->pending[ac_queue])) |
| 1261 | netif_start_subqueue(dev, ac); |
| 1262 | } |
| 1263 | } |
| 1264 | spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags); |
| 1265 | } |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1266 | |
| 1267 | return 0; |
| 1268 | err_del_interface: |
Johannes Berg | 7b7eab6 | 2011-11-03 14:41:13 +0100 | [diff] [blame] | 1269 | drv_remove_interface(local, sdata); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1270 | err_stop: |
Johannes Berg | 2448798 | 2009-04-23 18:52:52 +0200 | [diff] [blame] | 1271 | if (!local->open_count) |
| 1272 | drv_stop(local); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1273 | err_del_bss: |
| 1274 | sdata->bss = NULL; |
Michal Kazior | 4e141da | 2014-03-05 13:14:08 +0100 | [diff] [blame] | 1275 | if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) { |
| 1276 | mutex_lock(&local->mtx); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1277 | list_del(&sdata->u.vlan.list); |
Michal Kazior | 4e141da | 2014-03-05 13:14:08 +0100 | [diff] [blame] | 1278 | mutex_unlock(&local->mtx); |
| 1279 | } |
Johannes Berg | 4d6c36f | 2012-04-03 14:45:54 +0200 | [diff] [blame] | 1280 | /* might already be clear but that doesn't matter */ |
Johannes Berg | 2d2080c | 2010-09-15 15:13:13 +0200 | [diff] [blame] | 1281 | clear_bit(SDATA_STATE_RUNNING, &sdata->state); |
Johannes Berg | 0d143fe | 2008-09-11 00:01:59 +0200 | [diff] [blame] | 1282 | return res; |
| 1283 | } |
| 1284 | |
Johannes Berg | 5a49051 | 2015-04-22 17:10:38 +0200 | [diff] [blame] | 1285 | static void ieee80211_if_free(struct net_device *dev) |
| 1286 | { |
| 1287 | free_percpu(dev->tstats); |
Johannes Berg | 5a49051 | 2015-04-22 17:10:38 +0200 | [diff] [blame] | 1288 | } |
| 1289 | |
Johannes Berg | 587e729 | 2009-01-30 13:35:22 +0100 | [diff] [blame] | 1290 | static void ieee80211_if_setup(struct net_device *dev) |
| 1291 | { |
| 1292 | ether_setup(dev); |
Neil Horman | 550fd08 | 2011-07-26 06:05:38 +0000 | [diff] [blame] | 1293 | dev->priv_flags &= ~IFF_TX_SKB_SHARING; |
Johannes Berg | 587e729 | 2009-01-30 13:35:22 +0100 | [diff] [blame] | 1294 | dev->netdev_ops = &ieee80211_dataif_ops; |
David S. Miller | cf124db | 2017-05-08 12:52:56 -0400 | [diff] [blame] | 1295 | dev->needs_free_netdev = true; |
| 1296 | dev->priv_destructor = ieee80211_if_free; |
Johannes Berg | 587e729 | 2009-01-30 13:35:22 +0100 | [diff] [blame] | 1297 | } |
| 1298 | |
Michal Kazior | 80a83cf | 2016-05-19 10:37:48 +0200 | [diff] [blame] | 1299 | static void ieee80211_if_setup_no_queue(struct net_device *dev) |
| 1300 | { |
| 1301 | ieee80211_if_setup(dev); |
| 1302 | dev->priv_flags |= IFF_NO_QUEUE; |
| 1303 | } |
| 1304 | |
Johannes Berg | 1fa57d0 | 2010-06-10 10:21:32 +0200 | [diff] [blame] | 1305 | static void ieee80211_iface_work(struct work_struct *work) |
| 1306 | { |
| 1307 | struct ieee80211_sub_if_data *sdata = |
| 1308 | container_of(work, struct ieee80211_sub_if_data, work); |
| 1309 | struct ieee80211_local *local = sdata->local; |
| 1310 | struct sk_buff *skb; |
Johannes Berg | 344eec6 | 2010-06-10 10:21:36 +0200 | [diff] [blame] | 1311 | struct sta_info *sta; |
Johannes Berg | 1fa57d0 | 2010-06-10 10:21:32 +0200 | [diff] [blame] | 1312 | |
| 1313 | if (!ieee80211_sdata_running(sdata)) |
| 1314 | return; |
| 1315 | |
Andrei Otcheretianski | fc58c47 | 2015-08-15 22:04:01 +0300 | [diff] [blame] | 1316 | if (test_bit(SCAN_SW_SCANNING, &local->scanning)) |
Johannes Berg | 1fa57d0 | 2010-06-10 10:21:32 +0200 | [diff] [blame] | 1317 | return; |
| 1318 | |
Emmanuel Grumbach | 4afaff1 | 2015-01-22 23:32:46 +0200 | [diff] [blame] | 1319 | if (!ieee80211_can_run_worker(local)) |
Johannes Berg | 1fa57d0 | 2010-06-10 10:21:32 +0200 | [diff] [blame] | 1320 | return; |
| 1321 | |
| 1322 | /* first process frames */ |
| 1323 | while ((skb = skb_dequeue(&sdata->skb_queue))) { |
Johannes Berg | bed7ee6e | 2010-06-10 10:21:35 +0200 | [diff] [blame] | 1324 | struct ieee80211_mgmt *mgmt = (void *)skb->data; |
| 1325 | |
Aleksandr Nogikh | 261e411 | 2020-10-29 17:36:20 +0000 | [diff] [blame] | 1326 | kcov_remote_start_common(skb_get_kcov_handle(skb)); |
Johannes Berg | 699cb58 | 2017-05-30 16:34:46 +0200 | [diff] [blame] | 1327 | if (ieee80211_is_action(mgmt->frame_control) && |
| 1328 | mgmt->u.action.category == WLAN_CATEGORY_BACK) { |
Johannes Berg | bed7ee6e | 2010-06-10 10:21:35 +0200 | [diff] [blame] | 1329 | int len = skb->len; |
Johannes Berg | bed7ee6e | 2010-06-10 10:21:35 +0200 | [diff] [blame] | 1330 | |
Johannes Berg | a93e364 | 2010-06-10 10:21:46 +0200 | [diff] [blame] | 1331 | mutex_lock(&local->sta_mtx); |
Felix Fietkau | 875ae5f | 2010-07-17 15:59:07 +0200 | [diff] [blame] | 1332 | sta = sta_info_get_bss(sdata, mgmt->sa); |
Johannes Berg | bed7ee6e | 2010-06-10 10:21:35 +0200 | [diff] [blame] | 1333 | if (sta) { |
| 1334 | switch (mgmt->u.action.u.addba_req.action_code) { |
| 1335 | case WLAN_ACTION_ADDBA_REQ: |
| 1336 | ieee80211_process_addba_request( |
| 1337 | local, sta, mgmt, len); |
| 1338 | break; |
| 1339 | case WLAN_ACTION_ADDBA_RESP: |
| 1340 | ieee80211_process_addba_resp(local, sta, |
| 1341 | mgmt, len); |
| 1342 | break; |
| 1343 | case WLAN_ACTION_DELBA: |
| 1344 | ieee80211_process_delba(sdata, sta, |
| 1345 | mgmt, len); |
| 1346 | break; |
| 1347 | default: |
| 1348 | WARN_ON(1); |
| 1349 | break; |
| 1350 | } |
| 1351 | } |
Johannes Berg | a93e364 | 2010-06-10 10:21:46 +0200 | [diff] [blame] | 1352 | mutex_unlock(&local->sta_mtx); |
Sara Sharon | 23a1f8d | 2015-12-08 16:04:31 +0200 | [diff] [blame] | 1353 | } else if (ieee80211_is_action(mgmt->frame_control) && |
| 1354 | mgmt->u.action.category == WLAN_CATEGORY_VHT) { |
| 1355 | switch (mgmt->u.action.u.vht_group_notif.action_code) { |
Johannes Berg | d2941df | 2016-10-20 08:52:50 +0200 | [diff] [blame] | 1356 | case WLAN_VHT_ACTION_OPMODE_NOTIF: { |
| 1357 | struct ieee80211_rx_status *status; |
| 1358 | enum nl80211_band band; |
| 1359 | u8 opmode; |
| 1360 | |
| 1361 | status = IEEE80211_SKB_RXCB(skb); |
| 1362 | band = status->band; |
| 1363 | opmode = mgmt->u.action.u.vht_opmode_notif.operating_mode; |
| 1364 | |
| 1365 | mutex_lock(&local->sta_mtx); |
| 1366 | sta = sta_info_get_bss(sdata, mgmt->sa); |
| 1367 | |
| 1368 | if (sta) |
| 1369 | ieee80211_vht_handle_opmode(sdata, sta, |
| 1370 | opmode, |
| 1371 | band); |
| 1372 | |
| 1373 | mutex_unlock(&local->sta_mtx); |
| 1374 | break; |
| 1375 | } |
Sara Sharon | 23a1f8d | 2015-12-08 16:04:31 +0200 | [diff] [blame] | 1376 | case WLAN_VHT_ACTION_GROUPID_MGMT: |
| 1377 | ieee80211_process_mu_groups(sdata, mgmt); |
| 1378 | break; |
| 1379 | default: |
| 1380 | WARN_ON(1); |
| 1381 | break; |
| 1382 | } |
Thomas Pedersen | 09a740c | 2020-09-21 19:28:14 -0700 | [diff] [blame] | 1383 | } else if (ieee80211_is_ext(mgmt->frame_control)) { |
| 1384 | if (sdata->vif.type == NL80211_IFTYPE_STATION) |
| 1385 | ieee80211_sta_rx_queued_ext(sdata, skb); |
| 1386 | else |
| 1387 | WARN_ON(1); |
Johannes Berg | 344eec6 | 2010-06-10 10:21:36 +0200 | [diff] [blame] | 1388 | } else if (ieee80211_is_data_qos(mgmt->frame_control)) { |
| 1389 | struct ieee80211_hdr *hdr = (void *)mgmt; |
| 1390 | /* |
| 1391 | * So the frame isn't mgmt, but frame_control |
| 1392 | * is at the right place anyway, of course, so |
| 1393 | * the if statement is correct. |
| 1394 | * |
| 1395 | * Warn if we have other data frame types here, |
| 1396 | * they must not get here. |
| 1397 | */ |
| 1398 | WARN_ON(hdr->frame_control & |
| 1399 | cpu_to_le16(IEEE80211_STYPE_NULLFUNC)); |
| 1400 | WARN_ON(!(hdr->seq_ctrl & |
| 1401 | cpu_to_le16(IEEE80211_SCTL_FRAG))); |
| 1402 | /* |
| 1403 | * This was a fragment of a frame, received while |
| 1404 | * a block-ack session was active. That cannot be |
| 1405 | * right, so terminate the session. |
| 1406 | */ |
Johannes Berg | a93e364 | 2010-06-10 10:21:46 +0200 | [diff] [blame] | 1407 | mutex_lock(&local->sta_mtx); |
Felix Fietkau | 875ae5f | 2010-07-17 15:59:07 +0200 | [diff] [blame] | 1408 | sta = sta_info_get_bss(sdata, mgmt->sa); |
Johannes Berg | 344eec6 | 2010-06-10 10:21:36 +0200 | [diff] [blame] | 1409 | if (sta) { |
Sara Sharon | a1f2ba04c | 2018-02-19 14:48:40 +0200 | [diff] [blame] | 1410 | u16 tid = ieee80211_get_tid(hdr); |
Johannes Berg | 344eec6 | 2010-06-10 10:21:36 +0200 | [diff] [blame] | 1411 | |
| 1412 | __ieee80211_stop_rx_ba_session( |
| 1413 | sta, tid, WLAN_BACK_RECIPIENT, |
Johannes Berg | 53f73c0 | 2010-10-05 19:37:40 +0200 | [diff] [blame] | 1414 | WLAN_REASON_QSTA_REQUIRE_SETUP, |
| 1415 | true); |
Johannes Berg | 344eec6 | 2010-06-10 10:21:36 +0200 | [diff] [blame] | 1416 | } |
Johannes Berg | a93e364 | 2010-06-10 10:21:46 +0200 | [diff] [blame] | 1417 | mutex_unlock(&local->sta_mtx); |
Johannes Berg | bed7ee6e | 2010-06-10 10:21:35 +0200 | [diff] [blame] | 1418 | } else switch (sdata->vif.type) { |
Johannes Berg | 1fa57d0 | 2010-06-10 10:21:32 +0200 | [diff] [blame] | 1419 | case NL80211_IFTYPE_STATION: |
| 1420 | ieee80211_sta_rx_queued_mgmt(sdata, skb); |
| 1421 | break; |
| 1422 | case NL80211_IFTYPE_ADHOC: |
| 1423 | ieee80211_ibss_rx_queued_mgmt(sdata, skb); |
| 1424 | break; |
| 1425 | case NL80211_IFTYPE_MESH_POINT: |
| 1426 | if (!ieee80211_vif_is_mesh(&sdata->vif)) |
| 1427 | break; |
| 1428 | ieee80211_mesh_rx_queued_mgmt(sdata, skb); |
| 1429 | break; |
| 1430 | default: |
| 1431 | WARN(1, "frame for unexpected interface type"); |
Johannes Berg | 1fa57d0 | 2010-06-10 10:21:32 +0200 | [diff] [blame] | 1432 | break; |
| 1433 | } |
Johannes Berg | 36b3a62 | 2010-06-10 10:21:33 +0200 | [diff] [blame] | 1434 | |
| 1435 | kfree_skb(skb); |
Aleksandr Nogikh | 261e411 | 2020-10-29 17:36:20 +0000 | [diff] [blame] | 1436 | kcov_remote_stop(); |
Johannes Berg | 1fa57d0 | 2010-06-10 10:21:32 +0200 | [diff] [blame] | 1437 | } |
| 1438 | |
| 1439 | /* then other type-dependent work */ |
| 1440 | switch (sdata->vif.type) { |
| 1441 | case NL80211_IFTYPE_STATION: |
| 1442 | ieee80211_sta_work(sdata); |
| 1443 | break; |
| 1444 | case NL80211_IFTYPE_ADHOC: |
| 1445 | ieee80211_ibss_work(sdata); |
| 1446 | break; |
| 1447 | case NL80211_IFTYPE_MESH_POINT: |
| 1448 | if (!ieee80211_vif_is_mesh(&sdata->vif)) |
| 1449 | break; |
| 1450 | ieee80211_mesh_work(sdata); |
| 1451 | break; |
Rostislav Lisovy | 239281f | 2014-11-03 10:33:19 +0100 | [diff] [blame] | 1452 | case NL80211_IFTYPE_OCB: |
| 1453 | ieee80211_ocb_work(sdata); |
| 1454 | break; |
Johannes Berg | 1fa57d0 | 2010-06-10 10:21:32 +0200 | [diff] [blame] | 1455 | default: |
| 1456 | break; |
| 1457 | } |
| 1458 | } |
| 1459 | |
Johannes Berg | 04ecd25 | 2012-09-11 14:34:12 +0200 | [diff] [blame] | 1460 | static void ieee80211_recalc_smps_work(struct work_struct *work) |
| 1461 | { |
| 1462 | struct ieee80211_sub_if_data *sdata = |
| 1463 | container_of(work, struct ieee80211_sub_if_data, recalc_smps); |
| 1464 | |
| 1465 | ieee80211_recalc_smps(sdata); |
| 1466 | } |
Johannes Berg | 1fa57d0 | 2010-06-10 10:21:32 +0200 | [diff] [blame] | 1467 | |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1468 | /* |
| 1469 | * Helper function to initialise an interface to a specific type. |
| 1470 | */ |
| 1471 | static void ieee80211_setup_sdata(struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1472 | enum nl80211_iftype type) |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1473 | { |
Rostislav Lisovy | 239281f | 2014-11-03 10:33:19 +0100 | [diff] [blame] | 1474 | static const u8 bssid_wildcard[ETH_ALEN] = {0xff, 0xff, 0xff, |
| 1475 | 0xff, 0xff, 0xff}; |
| 1476 | |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1477 | /* clear type-dependent union */ |
| 1478 | memset(&sdata->u, 0, sizeof(sdata->u)); |
| 1479 | |
| 1480 | /* and set some type-dependent values */ |
| 1481 | sdata->vif.type = type; |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 1482 | sdata->vif.p2p = false; |
Johannes Berg | 60719ff | 2008-09-16 14:55:09 +0200 | [diff] [blame] | 1483 | sdata->wdev.iftype = type; |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1484 | |
Johannes Berg | a621fa4 | 2010-08-27 14:26:54 +0300 | [diff] [blame] | 1485 | sdata->control_port_protocol = cpu_to_be16(ETH_P_PAE); |
| 1486 | sdata->control_port_no_encrypt = false; |
Markus Theil | 7f3f96c | 2020-03-12 10:10:54 +0100 | [diff] [blame] | 1487 | sdata->control_port_over_nl80211 = false; |
| 1488 | sdata->control_port_no_preauth = false; |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 1489 | sdata->encrypt_headroom = IEEE80211_ENCRYPT_HEADROOM; |
Avraham Stern | d3a58df | 2014-05-22 12:17:47 +0300 | [diff] [blame] | 1490 | sdata->vif.bss_conf.idle = true; |
Ben Greear | db6d9e9 | 2019-12-17 10:30:57 -0800 | [diff] [blame] | 1491 | sdata->vif.bss_conf.txpower = INT_MIN; /* unset */ |
Johannes Berg | a621fa4 | 2010-08-27 14:26:54 +0300 | [diff] [blame] | 1492 | |
Simon Wunderlich | b53be79 | 2011-11-18 14:20:44 +0100 | [diff] [blame] | 1493 | sdata->noack_map = 0; |
| 1494 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1495 | /* only monitor/p2p-device differ */ |
| 1496 | if (sdata->dev) { |
| 1497 | sdata->dev->netdev_ops = &ieee80211_dataif_ops; |
| 1498 | sdata->dev->type = ARPHRD_ETHER; |
| 1499 | } |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1500 | |
Johannes Berg | 35f20c1 | 2010-06-10 10:21:30 +0200 | [diff] [blame] | 1501 | skb_queue_head_init(&sdata->skb_queue); |
Johannes Berg | 1fa57d0 | 2010-06-10 10:21:32 +0200 | [diff] [blame] | 1502 | INIT_WORK(&sdata->work, ieee80211_iface_work); |
Johannes Berg | 04ecd25 | 2012-09-11 14:34:12 +0200 | [diff] [blame] | 1503 | INIT_WORK(&sdata->recalc_smps, ieee80211_recalc_smps_work); |
Simon Wunderlich | 73da7d5 | 2013-07-11 16:09:06 +0200 | [diff] [blame] | 1504 | INIT_WORK(&sdata->csa_finalize_work, ieee80211_csa_finalize_work); |
Michal Kazior | 484298a | 2014-04-09 15:29:26 +0200 | [diff] [blame] | 1505 | INIT_LIST_HEAD(&sdata->assigned_chanctx_list); |
Michal Kazior | e3afb92 | 2014-04-09 15:29:27 +0200 | [diff] [blame] | 1506 | INIT_LIST_HEAD(&sdata->reserved_chanctx_list); |
Johannes Berg | 35f20c1 | 2010-06-10 10:21:30 +0200 | [diff] [blame] | 1507 | |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1508 | switch (type) { |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 1509 | case NL80211_IFTYPE_P2P_GO: |
| 1510 | type = NL80211_IFTYPE_AP; |
| 1511 | sdata->vif.type = type; |
| 1512 | sdata->vif.p2p = true; |
Gustavo A. R. Silva | fc0561d | 2020-07-07 15:45:48 -0500 | [diff] [blame] | 1513 | fallthrough; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1514 | case NL80211_IFTYPE_AP: |
Marco Porsch | d012a60 | 2012-10-10 12:39:50 -0700 | [diff] [blame] | 1515 | skb_queue_head_init(&sdata->u.ap.ps.bc_buf); |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1516 | INIT_LIST_HEAD(&sdata->u.ap.vlans); |
Johannes Berg | ad2d223 | 2012-12-14 14:34:25 +0100 | [diff] [blame] | 1517 | sdata->vif.bss_conf.bssid = sdata->vif.addr; |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1518 | break; |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 1519 | case NL80211_IFTYPE_P2P_CLIENT: |
| 1520 | type = NL80211_IFTYPE_STATION; |
| 1521 | sdata->vif.type = type; |
| 1522 | sdata->vif.p2p = true; |
Gustavo A. R. Silva | fc0561d | 2020-07-07 15:45:48 -0500 | [diff] [blame] | 1523 | fallthrough; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1524 | case NL80211_IFTYPE_STATION: |
Johannes Berg | ad2d223 | 2012-12-14 14:34:25 +0100 | [diff] [blame] | 1525 | sdata->vif.bss_conf.bssid = sdata->u.mgd.bssid; |
Johannes Berg | 9c6bd79 | 2008-09-11 00:01:52 +0200 | [diff] [blame] | 1526 | ieee80211_sta_setup_sdata(sdata); |
Johannes Berg | 472dbc4 | 2008-09-11 00:01:49 +0200 | [diff] [blame] | 1527 | break; |
Rostislav Lisovy | 6e0bd6c | 2014-11-03 10:33:18 +0100 | [diff] [blame] | 1528 | case NL80211_IFTYPE_OCB: |
Rostislav Lisovy | 239281f | 2014-11-03 10:33:19 +0100 | [diff] [blame] | 1529 | sdata->vif.bss_conf.bssid = bssid_wildcard; |
| 1530 | ieee80211_ocb_setup_sdata(sdata); |
Rostislav Lisovy | 6e0bd6c | 2014-11-03 10:33:18 +0100 | [diff] [blame] | 1531 | break; |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 1532 | case NL80211_IFTYPE_ADHOC: |
Johannes Berg | ad2d223 | 2012-12-14 14:34:25 +0100 | [diff] [blame] | 1533 | sdata->vif.bss_conf.bssid = sdata->u.ibss.bssid; |
Johannes Berg | 4690029 | 2009-02-15 12:44:28 +0100 | [diff] [blame] | 1534 | ieee80211_ibss_setup_sdata(sdata); |
| 1535 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1536 | case NL80211_IFTYPE_MESH_POINT: |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1537 | if (ieee80211_vif_is_mesh(&sdata->vif)) |
| 1538 | ieee80211_mesh_init_sdata(sdata); |
| 1539 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1540 | case NL80211_IFTYPE_MONITOR: |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1541 | sdata->dev->type = ARPHRD_IEEE80211_RADIOTAP; |
Johannes Berg | 587e729 | 2009-01-30 13:35:22 +0100 | [diff] [blame] | 1542 | sdata->dev->netdev_ops = &ieee80211_monitorif_ops; |
Aviya Erenfeld | d821218 | 2016-08-29 23:25:15 +0300 | [diff] [blame] | 1543 | sdata->u.mntr.flags = MONITOR_FLAG_CONTROL | |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1544 | MONITOR_FLAG_OTHER_BSS; |
| 1545 | break; |
Ayala Beker | 167e33f | 2016-09-20 17:31:20 +0300 | [diff] [blame] | 1546 | case NL80211_IFTYPE_NAN: |
| 1547 | idr_init(&sdata->u.nan.function_inst_ids); |
| 1548 | spin_lock_init(&sdata->u.nan.func_lock); |
| 1549 | sdata->vif.bss_conf.bssid = sdata->vif.addr; |
| 1550 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1551 | case NL80211_IFTYPE_AP_VLAN: |
Johannes Berg | 98104fde | 2012-06-16 00:19:54 +0200 | [diff] [blame] | 1552 | case NL80211_IFTYPE_P2P_DEVICE: |
Johannes Berg | ad2d223 | 2012-12-14 14:34:25 +0100 | [diff] [blame] | 1553 | sdata->vif.bss_conf.bssid = sdata->vif.addr; |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1554 | break; |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1555 | case NL80211_IFTYPE_UNSPECIFIED: |
Johannes Berg | 70d9c59 | 2020-11-09 10:57:46 +0100 | [diff] [blame] | 1556 | case NL80211_IFTYPE_WDS: |
Johannes Berg | 2e161f78 | 2010-08-12 15:38:38 +0200 | [diff] [blame] | 1557 | case NUM_NL80211_IFTYPES: |
Luca Coelho | c7976f5 | 2017-10-29 11:51:10 +0200 | [diff] [blame] | 1558 | WARN_ON(1); |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1559 | break; |
| 1560 | } |
| 1561 | |
| 1562 | ieee80211_debugfs_add_netdev(sdata); |
| 1563 | } |
| 1564 | |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1565 | static int ieee80211_runtime_change_iftype(struct ieee80211_sub_if_data *sdata, |
| 1566 | enum nl80211_iftype type) |
| 1567 | { |
| 1568 | struct ieee80211_local *local = sdata->local; |
| 1569 | int ret, err; |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 1570 | enum nl80211_iftype internal_type = type; |
| 1571 | bool p2p = false; |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1572 | |
| 1573 | ASSERT_RTNL(); |
| 1574 | |
| 1575 | if (!local->ops->change_interface) |
| 1576 | return -EBUSY; |
| 1577 | |
| 1578 | switch (sdata->vif.type) { |
| 1579 | case NL80211_IFTYPE_AP: |
| 1580 | case NL80211_IFTYPE_STATION: |
| 1581 | case NL80211_IFTYPE_ADHOC: |
Rostislav Lisovy | 239281f | 2014-11-03 10:33:19 +0100 | [diff] [blame] | 1582 | case NL80211_IFTYPE_OCB: |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1583 | /* |
| 1584 | * Could maybe also all others here? |
| 1585 | * Just not sure how that interacts |
| 1586 | * with the RX/config path e.g. for |
| 1587 | * mesh. |
| 1588 | */ |
| 1589 | break; |
| 1590 | default: |
| 1591 | return -EBUSY; |
| 1592 | } |
| 1593 | |
| 1594 | switch (type) { |
| 1595 | case NL80211_IFTYPE_AP: |
| 1596 | case NL80211_IFTYPE_STATION: |
| 1597 | case NL80211_IFTYPE_ADHOC: |
Rostislav Lisovy | 239281f | 2014-11-03 10:33:19 +0100 | [diff] [blame] | 1598 | case NL80211_IFTYPE_OCB: |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1599 | /* |
| 1600 | * Could probably support everything |
Johannes Berg | 70d9c59 | 2020-11-09 10:57:46 +0100 | [diff] [blame] | 1601 | * but here. |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1602 | */ |
| 1603 | break; |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 1604 | case NL80211_IFTYPE_P2P_CLIENT: |
| 1605 | p2p = true; |
| 1606 | internal_type = NL80211_IFTYPE_STATION; |
| 1607 | break; |
| 1608 | case NL80211_IFTYPE_P2P_GO: |
| 1609 | p2p = true; |
| 1610 | internal_type = NL80211_IFTYPE_AP; |
| 1611 | break; |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1612 | default: |
| 1613 | return -EBUSY; |
| 1614 | } |
| 1615 | |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 1616 | ret = ieee80211_check_concurrent_iface(sdata, internal_type); |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1617 | if (ret) |
| 1618 | return ret; |
| 1619 | |
| 1620 | ieee80211_do_stop(sdata, false); |
| 1621 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1622 | ieee80211_teardown_sdata(sdata); |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1623 | |
Felix Fietkau | 6aea26c | 2020-09-08 14:36:53 +0200 | [diff] [blame] | 1624 | ieee80211_set_sdata_offload_flags(sdata); |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 1625 | ret = drv_change_interface(local, sdata, internal_type, p2p); |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1626 | if (ret) |
Johannes Berg | a986553 | 2013-08-26 09:30:32 +0200 | [diff] [blame] | 1627 | type = ieee80211_vif_type_p2p(&sdata->vif); |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1628 | |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 1629 | /* |
| 1630 | * Ignore return value here, there's not much we can do since |
| 1631 | * the driver changed the interface type internally already. |
| 1632 | * The warnings will hopefully make driver authors fix it :-) |
| 1633 | */ |
Johannes Berg | a986553 | 2013-08-26 09:30:32 +0200 | [diff] [blame] | 1634 | ieee80211_check_queues(sdata, type); |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 1635 | |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1636 | ieee80211_setup_sdata(sdata, type); |
Felix Fietkau | 6aea26c | 2020-09-08 14:36:53 +0200 | [diff] [blame] | 1637 | ieee80211_set_vif_encap_ops(sdata); |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1638 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1639 | err = ieee80211_do_open(&sdata->wdev, false); |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1640 | WARN(err, "type change: do_open returned %d", err); |
| 1641 | |
| 1642 | return ret; |
| 1643 | } |
| 1644 | |
Johannes Berg | f3947e2 | 2008-07-09 14:40:36 +0200 | [diff] [blame] | 1645 | int ieee80211_if_change_type(struct ieee80211_sub_if_data *sdata, |
Johannes Berg | 05c914f | 2008-09-11 00:01:58 +0200 | [diff] [blame] | 1646 | enum nl80211_iftype type) |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1647 | { |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1648 | int ret; |
| 1649 | |
Johannes Berg | f3947e2 | 2008-07-09 14:40:36 +0200 | [diff] [blame] | 1650 | ASSERT_RTNL(); |
| 1651 | |
Johannes Berg | 2ca27bc | 2010-09-16 14:58:23 +0200 | [diff] [blame] | 1652 | if (type == ieee80211_vif_type_p2p(&sdata->vif)) |
Johannes Berg | f3947e2 | 2008-07-09 14:40:36 +0200 | [diff] [blame] | 1653 | return 0; |
| 1654 | |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1655 | if (ieee80211_sdata_running(sdata)) { |
| 1656 | ret = ieee80211_runtime_change_iftype(sdata, type); |
| 1657 | if (ret) |
| 1658 | return ret; |
| 1659 | } else { |
| 1660 | /* Purge and reset type-dependent state. */ |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1661 | ieee80211_teardown_sdata(sdata); |
Johannes Berg | 34d4bc4 | 2010-08-27 12:35:58 +0200 | [diff] [blame] | 1662 | ieee80211_setup_sdata(sdata, type); |
| 1663 | } |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1664 | |
| 1665 | /* reset some values that shouldn't be kept across type changes */ |
Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 1666 | if (type == NL80211_IFTYPE_STATION) |
| 1667 | sdata->u.mgd.use_4addr = false; |
Johannes Berg | f3947e2 | 2008-07-09 14:40:36 +0200 | [diff] [blame] | 1668 | |
| 1669 | return 0; |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1670 | } |
| 1671 | |
Johannes Berg | fa9029f | 2010-02-25 15:13:11 +0100 | [diff] [blame] | 1672 | static void ieee80211_assign_perm_addr(struct ieee80211_local *local, |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1673 | u8 *perm_addr, enum nl80211_iftype type) |
Johannes Berg | fa9029f | 2010-02-25 15:13:11 +0100 | [diff] [blame] | 1674 | { |
| 1675 | struct ieee80211_sub_if_data *sdata; |
| 1676 | u64 mask, start, addr, val, inc; |
| 1677 | u8 *m; |
| 1678 | u8 tmp_addr[ETH_ALEN]; |
| 1679 | int i; |
| 1680 | |
| 1681 | /* default ... something at least */ |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1682 | memcpy(perm_addr, local->hw.wiphy->perm_addr, ETH_ALEN); |
Johannes Berg | fa9029f | 2010-02-25 15:13:11 +0100 | [diff] [blame] | 1683 | |
| 1684 | if (is_zero_ether_addr(local->hw.wiphy->addr_mask) && |
| 1685 | local->hw.wiphy->n_addresses <= 1) |
| 1686 | return; |
| 1687 | |
Johannes Berg | fa9029f | 2010-02-25 15:13:11 +0100 | [diff] [blame] | 1688 | mutex_lock(&local->iflist_mtx); |
| 1689 | |
| 1690 | switch (type) { |
| 1691 | case NL80211_IFTYPE_MONITOR: |
| 1692 | /* doesn't matter */ |
| 1693 | break; |
Johannes Berg | fa9029f | 2010-02-25 15:13:11 +0100 | [diff] [blame] | 1694 | case NL80211_IFTYPE_AP_VLAN: |
| 1695 | /* match up with an AP interface */ |
| 1696 | list_for_each_entry(sdata, &local->interfaces, list) { |
| 1697 | if (sdata->vif.type != NL80211_IFTYPE_AP) |
| 1698 | continue; |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1699 | memcpy(perm_addr, sdata->vif.addr, ETH_ALEN); |
Johannes Berg | fa9029f | 2010-02-25 15:13:11 +0100 | [diff] [blame] | 1700 | break; |
| 1701 | } |
| 1702 | /* keep default if no AP interface present */ |
| 1703 | break; |
Johannes Berg | 6d71117 | 2012-06-19 17:19:44 +0200 | [diff] [blame] | 1704 | case NL80211_IFTYPE_P2P_CLIENT: |
| 1705 | case NL80211_IFTYPE_P2P_GO: |
Johannes Berg | 30686bf | 2015-06-02 21:39:54 +0200 | [diff] [blame] | 1706 | if (ieee80211_hw_check(&local->hw, P2P_DEV_ADDR_FOR_INTF)) { |
Johannes Berg | 6d71117 | 2012-06-19 17:19:44 +0200 | [diff] [blame] | 1707 | list_for_each_entry(sdata, &local->interfaces, list) { |
| 1708 | if (sdata->vif.type != NL80211_IFTYPE_P2P_DEVICE) |
| 1709 | continue; |
| 1710 | if (!ieee80211_sdata_running(sdata)) |
| 1711 | continue; |
| 1712 | memcpy(perm_addr, sdata->vif.addr, ETH_ALEN); |
| 1713 | goto out_unlock; |
| 1714 | } |
| 1715 | } |
Gustavo A. R. Silva | fc0561d | 2020-07-07 15:45:48 -0500 | [diff] [blame] | 1716 | fallthrough; |
Johannes Berg | fa9029f | 2010-02-25 15:13:11 +0100 | [diff] [blame] | 1717 | default: |
| 1718 | /* assign a new address if possible -- try n_addresses first */ |
| 1719 | for (i = 0; i < local->hw.wiphy->n_addresses; i++) { |
| 1720 | bool used = false; |
| 1721 | |
| 1722 | list_for_each_entry(sdata, &local->interfaces, list) { |
dingtianhong | 496d7e8 | 2013-12-26 19:40:56 +0800 | [diff] [blame] | 1723 | if (ether_addr_equal(local->hw.wiphy->addresses[i].addr, |
| 1724 | sdata->vif.addr)) { |
Johannes Berg | fa9029f | 2010-02-25 15:13:11 +0100 | [diff] [blame] | 1725 | used = true; |
| 1726 | break; |
| 1727 | } |
| 1728 | } |
| 1729 | |
| 1730 | if (!used) { |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1731 | memcpy(perm_addr, |
Johannes Berg | fa9029f | 2010-02-25 15:13:11 +0100 | [diff] [blame] | 1732 | local->hw.wiphy->addresses[i].addr, |
| 1733 | ETH_ALEN); |
| 1734 | break; |
| 1735 | } |
| 1736 | } |
| 1737 | |
| 1738 | /* try mask if available */ |
| 1739 | if (is_zero_ether_addr(local->hw.wiphy->addr_mask)) |
| 1740 | break; |
| 1741 | |
| 1742 | m = local->hw.wiphy->addr_mask; |
| 1743 | mask = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) | |
| 1744 | ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) | |
| 1745 | ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8); |
| 1746 | |
| 1747 | if (__ffs64(mask) + hweight64(mask) != fls64(mask)) { |
| 1748 | /* not a contiguous mask ... not handled now! */ |
Johannes Berg | bdcbd8e | 2012-06-22 11:29:50 +0200 | [diff] [blame] | 1749 | pr_info("not contiguous\n"); |
Johannes Berg | fa9029f | 2010-02-25 15:13:11 +0100 | [diff] [blame] | 1750 | break; |
| 1751 | } |
| 1752 | |
Helmut Schaa | ac20976 | 2013-05-27 10:43:09 +0200 | [diff] [blame] | 1753 | /* |
| 1754 | * Pick address of existing interface in case user changed |
| 1755 | * MAC address manually, default to perm_addr. |
| 1756 | */ |
Johannes Berg | fa9029f | 2010-02-25 15:13:11 +0100 | [diff] [blame] | 1757 | m = local->hw.wiphy->perm_addr; |
Helmut Schaa | ac20976 | 2013-05-27 10:43:09 +0200 | [diff] [blame] | 1758 | list_for_each_entry(sdata, &local->interfaces, list) { |
| 1759 | if (sdata->vif.type == NL80211_IFTYPE_MONITOR) |
| 1760 | continue; |
| 1761 | m = sdata->vif.addr; |
| 1762 | break; |
| 1763 | } |
Johannes Berg | fa9029f | 2010-02-25 15:13:11 +0100 | [diff] [blame] | 1764 | start = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) | |
| 1765 | ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) | |
| 1766 | ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8); |
| 1767 | |
| 1768 | inc = 1ULL<<__ffs64(mask); |
| 1769 | val = (start & mask); |
| 1770 | addr = (start & ~mask) | (val & mask); |
| 1771 | do { |
| 1772 | bool used = false; |
| 1773 | |
| 1774 | tmp_addr[5] = addr >> 0*8; |
| 1775 | tmp_addr[4] = addr >> 1*8; |
| 1776 | tmp_addr[3] = addr >> 2*8; |
| 1777 | tmp_addr[2] = addr >> 3*8; |
| 1778 | tmp_addr[1] = addr >> 4*8; |
| 1779 | tmp_addr[0] = addr >> 5*8; |
| 1780 | |
| 1781 | val += inc; |
| 1782 | |
| 1783 | list_for_each_entry(sdata, &local->interfaces, list) { |
dingtianhong | 496d7e8 | 2013-12-26 19:40:56 +0800 | [diff] [blame] | 1784 | if (ether_addr_equal(tmp_addr, sdata->vif.addr)) { |
Johannes Berg | fa9029f | 2010-02-25 15:13:11 +0100 | [diff] [blame] | 1785 | used = true; |
| 1786 | break; |
| 1787 | } |
| 1788 | } |
| 1789 | |
| 1790 | if (!used) { |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1791 | memcpy(perm_addr, tmp_addr, ETH_ALEN); |
Johannes Berg | fa9029f | 2010-02-25 15:13:11 +0100 | [diff] [blame] | 1792 | break; |
| 1793 | } |
| 1794 | addr = (start & ~mask) | (val & mask); |
| 1795 | } while (addr != start); |
| 1796 | |
| 1797 | break; |
| 1798 | } |
| 1799 | |
Johannes Berg | 6d71117 | 2012-06-19 17:19:44 +0200 | [diff] [blame] | 1800 | out_unlock: |
Johannes Berg | fa9029f | 2010-02-25 15:13:11 +0100 | [diff] [blame] | 1801 | mutex_unlock(&local->iflist_mtx); |
| 1802 | } |
| 1803 | |
Johannes Berg | 3e122be | 2008-07-09 14:40:34 +0200 | [diff] [blame] | 1804 | int ieee80211_if_add(struct ieee80211_local *local, const char *name, |
Tom Gundersen | 6bab2e19 | 2015-03-18 11:13:39 +0100 | [diff] [blame] | 1805 | unsigned char name_assign_type, |
Johannes Berg | 84efbb8 | 2012-06-16 00:00:26 +0200 | [diff] [blame] | 1806 | struct wireless_dev **new_wdev, enum nl80211_iftype type, |
Luis Carlos Cobo | ee38585 | 2008-02-23 15:17:11 +0100 | [diff] [blame] | 1807 | struct vif_params *params) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1808 | { |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1809 | struct net_device *ndev = NULL; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1810 | struct ieee80211_sub_if_data *sdata = NULL; |
Felix Fietkau | ba8c3d6 | 2015-03-27 21:30:37 +0100 | [diff] [blame] | 1811 | struct txq_info *txqi; |
Michal Kazior | 80a83cf | 2016-05-19 10:37:48 +0200 | [diff] [blame] | 1812 | void (*if_setup)(struct net_device *dev); |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1813 | int ret, i; |
Johannes Berg | ded81f6 | 2012-03-28 11:04:26 +0200 | [diff] [blame] | 1814 | int txqs = 1; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1815 | |
| 1816 | ASSERT_RTNL(); |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1817 | |
Ayala Beker | 708d50e | 2016-09-20 17:31:14 +0300 | [diff] [blame] | 1818 | if (type == NL80211_IFTYPE_P2P_DEVICE || type == NL80211_IFTYPE_NAN) { |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1819 | struct wireless_dev *wdev; |
Johannes Berg | ded81f6 | 2012-03-28 11:04:26 +0200 | [diff] [blame] | 1820 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1821 | sdata = kzalloc(sizeof(*sdata) + local->hw.vif_data_size, |
| 1822 | GFP_KERNEL); |
| 1823 | if (!sdata) |
| 1824 | return -ENOMEM; |
| 1825 | wdev = &sdata->wdev; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1826 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1827 | sdata->dev = NULL; |
| 1828 | strlcpy(sdata->name, name, IFNAMSIZ); |
| 1829 | ieee80211_assign_perm_addr(local, wdev->address, type); |
| 1830 | memcpy(sdata->vif.addr, wdev->address, ETH_ALEN); |
| 1831 | } else { |
Felix Fietkau | ba8c3d6 | 2015-03-27 21:30:37 +0100 | [diff] [blame] | 1832 | int size = ALIGN(sizeof(*sdata) + local->hw.vif_data_size, |
| 1833 | sizeof(void *)); |
| 1834 | int txq_size = 0; |
| 1835 | |
Johannes Berg | 79af1f8 | 2017-06-22 12:20:29 +0200 | [diff] [blame] | 1836 | if (local->ops->wake_tx_queue && |
| 1837 | type != NL80211_IFTYPE_AP_VLAN && |
Felix Fietkau | 8105f9b | 2018-09-22 18:35:31 +0200 | [diff] [blame] | 1838 | (type != NL80211_IFTYPE_MONITOR || |
| 1839 | (params->flags & MONITOR_FLAG_ACTIVE))) |
Felix Fietkau | ba8c3d6 | 2015-03-27 21:30:37 +0100 | [diff] [blame] | 1840 | txq_size += sizeof(struct txq_info) + |
| 1841 | local->hw.txq_data_size; |
| 1842 | |
Johannes Berg | dbd50a8 | 2019-04-08 14:39:11 +0200 | [diff] [blame] | 1843 | if (local->ops->wake_tx_queue) { |
Michal Kazior | 80a83cf | 2016-05-19 10:37:48 +0200 | [diff] [blame] | 1844 | if_setup = ieee80211_if_setup_no_queue; |
Johannes Berg | dbd50a8 | 2019-04-08 14:39:11 +0200 | [diff] [blame] | 1845 | } else { |
Michal Kazior | 80a83cf | 2016-05-19 10:37:48 +0200 | [diff] [blame] | 1846 | if_setup = ieee80211_if_setup; |
Johannes Berg | dbd50a8 | 2019-04-08 14:39:11 +0200 | [diff] [blame] | 1847 | if (local->hw.queues >= IEEE80211_NUM_ACS) |
| 1848 | txqs = IEEE80211_NUM_ACS; |
| 1849 | } |
Johannes Berg | f3994ec | 2008-05-12 20:51:44 -0700 | [diff] [blame] | 1850 | |
Felix Fietkau | ba8c3d6 | 2015-03-27 21:30:37 +0100 | [diff] [blame] | 1851 | ndev = alloc_netdev_mqs(size + txq_size, |
Tom Gundersen | 6bab2e19 | 2015-03-18 11:13:39 +0100 | [diff] [blame] | 1852 | name, name_assign_type, |
Michal Kazior | 80a83cf | 2016-05-19 10:37:48 +0200 | [diff] [blame] | 1853 | if_setup, txqs, 1); |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1854 | if (!ndev) |
| 1855 | return -ENOMEM; |
John Crispin | 1f6e0ba | 2020-02-11 13:26:04 +0100 | [diff] [blame] | 1856 | |
| 1857 | if (!local->ops->wake_tx_queue && local->hw.wiphy->tx_queue_len) |
| 1858 | ndev->tx_queue_len = local->hw.wiphy->tx_queue_len; |
| 1859 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1860 | dev_net_set(ndev, wiphy_net(local->hw.wiphy)); |
Thadeu Lima de Souza Cascardo | 59e7e70 | 2011-06-02 17:28:37 -0300 | [diff] [blame] | 1861 | |
Johannes Berg | 5a49051 | 2015-04-22 17:10:38 +0200 | [diff] [blame] | 1862 | ndev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats); |
| 1863 | if (!ndev->tstats) { |
| 1864 | free_netdev(ndev); |
| 1865 | return -ENOMEM; |
| 1866 | } |
| 1867 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1868 | ndev->needed_headroom = local->tx_headroom + |
| 1869 | 4*6 /* four MAC addresses */ |
| 1870 | + 2 + 2 + 2 + 2 /* ctl, dur, seq, qos */ |
| 1871 | + 6 /* mesh */ |
| 1872 | + 8 /* rfc1042/bridge tunnel */ |
| 1873 | - ETH_HLEN /* ethernet hard_header_len */ |
| 1874 | + IEEE80211_ENCRYPT_HEADROOM; |
| 1875 | ndev->needed_tailroom = IEEE80211_ENCRYPT_TAILROOM; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1876 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1877 | ret = dev_alloc_name(ndev, ndev->name); |
| 1878 | if (ret < 0) { |
Johannes Berg | e6436be | 2016-04-26 13:47:08 +0200 | [diff] [blame] | 1879 | ieee80211_if_free(ndev); |
Johannes Berg | c7a61cb | 2017-06-09 21:33:09 +0200 | [diff] [blame] | 1880 | free_netdev(ndev); |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1881 | return ret; |
| 1882 | } |
| 1883 | |
| 1884 | ieee80211_assign_perm_addr(local, ndev->perm_addr, type); |
Johannes Berg | dd665d2 | 2018-12-15 11:03:11 +0200 | [diff] [blame] | 1885 | if (is_valid_ether_addr(params->macaddr)) |
Ben Greear | b5dfae0 | 2014-10-22 12:23:06 -0700 | [diff] [blame] | 1886 | memcpy(ndev->dev_addr, params->macaddr, ETH_ALEN); |
| 1887 | else |
| 1888 | memcpy(ndev->dev_addr, ndev->perm_addr, ETH_ALEN); |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1889 | SET_NETDEV_DEV(ndev, wiphy_dev(local->hw.wiphy)); |
| 1890 | |
| 1891 | /* don't use IEEE80211_DEV_TO_SUB_IF -- it checks too much */ |
| 1892 | sdata = netdev_priv(ndev); |
| 1893 | ndev->ieee80211_ptr = &sdata->wdev; |
| 1894 | memcpy(sdata->vif.addr, ndev->dev_addr, ETH_ALEN); |
| 1895 | memcpy(sdata->name, ndev->name, IFNAMSIZ); |
| 1896 | |
Felix Fietkau | ba8c3d6 | 2015-03-27 21:30:37 +0100 | [diff] [blame] | 1897 | if (txq_size) { |
| 1898 | txqi = netdev_priv(ndev) + size; |
Michal Kazior | fa962b9 | 2016-05-19 10:37:49 +0200 | [diff] [blame] | 1899 | ieee80211_txq_init(sdata, NULL, txqi, 0); |
Felix Fietkau | ba8c3d6 | 2015-03-27 21:30:37 +0100 | [diff] [blame] | 1900 | } |
| 1901 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1902 | sdata->dev = ndev; |
| 1903 | } |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1904 | |
| 1905 | /* initialise type-independent data */ |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1906 | sdata->wdev.wiphy = local->hw.wiphy; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1907 | sdata->local = local; |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1908 | |
| 1909 | for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) |
| 1910 | skb_queue_head_init(&sdata->fragments[i].skb_list); |
| 1911 | |
| 1912 | INIT_LIST_HEAD(&sdata->key_list); |
| 1913 | |
Simon Wunderlich | 164eb02 | 2013-02-08 18:16:20 +0100 | [diff] [blame] | 1914 | INIT_DELAYED_WORK(&sdata->dfs_cac_timer_work, |
| 1915 | ieee80211_dfs_cac_timer_work); |
Johannes Berg | 8d1f7ec | 2013-02-23 00:59:03 +0100 | [diff] [blame] | 1916 | INIT_DELAYED_WORK(&sdata->dec_tailroom_needed_wk, |
| 1917 | ieee80211_delayed_tailroom_dec); |
Johannes Berg | 97f97b1 | 2012-12-13 22:54:58 +0100 | [diff] [blame] | 1918 | |
Johannes Berg | 57fbcce | 2016-04-12 15:56:15 +0200 | [diff] [blame] | 1919 | for (i = 0; i < NUM_NL80211_BANDS; i++) { |
Jouni Malinen | 37eb0b1 | 2010-01-06 13:09:08 +0200 | [diff] [blame] | 1920 | struct ieee80211_supported_band *sband; |
| 1921 | sband = local->hw.wiphy->bands[i]; |
| 1922 | sdata->rc_rateidx_mask[i] = |
| 1923 | sband ? (1 << sband->n_bitrates) - 1 : 0; |
Lorenzo Bianconi | b119ad6 | 2015-08-06 23:47:33 +0200 | [diff] [blame] | 1924 | if (sband) { |
| 1925 | __le16 cap; |
| 1926 | u16 *vht_rate_mask; |
| 1927 | |
Simon Wunderlich | 1946841 | 2012-01-28 17:25:33 +0100 | [diff] [blame] | 1928 | memcpy(sdata->rc_rateidx_mcs_mask[i], |
| 1929 | sband->ht_cap.mcs.rx_mask, |
| 1930 | sizeof(sdata->rc_rateidx_mcs_mask[i])); |
Lorenzo Bianconi | b119ad6 | 2015-08-06 23:47:33 +0200 | [diff] [blame] | 1931 | |
| 1932 | cap = sband->vht_cap.vht_mcs.rx_mcs_map; |
| 1933 | vht_rate_mask = sdata->rc_rateidx_vht_mcs_mask[i]; |
| 1934 | ieee80211_get_vht_mask_from_cap(cap, vht_rate_mask); |
| 1935 | } else { |
Simon Wunderlich | 1946841 | 2012-01-28 17:25:33 +0100 | [diff] [blame] | 1936 | memset(sdata->rc_rateidx_mcs_mask[i], 0, |
| 1937 | sizeof(sdata->rc_rateidx_mcs_mask[i])); |
Lorenzo Bianconi | b119ad6 | 2015-08-06 23:47:33 +0200 | [diff] [blame] | 1938 | memset(sdata->rc_rateidx_vht_mcs_mask[i], 0, |
| 1939 | sizeof(sdata->rc_rateidx_vht_mcs_mask[i])); |
| 1940 | } |
Jouni Malinen | 37eb0b1 | 2010-01-06 13:09:08 +0200 | [diff] [blame] | 1941 | } |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1942 | |
Johannes Berg | 3a25a8c | 2012-04-03 16:28:50 +0200 | [diff] [blame] | 1943 | ieee80211_set_default_queues(sdata); |
| 1944 | |
Johannes Berg | 1ea6f9c | 2012-10-24 10:59:25 +0200 | [diff] [blame] | 1945 | sdata->ap_power_level = IEEE80211_UNSET_POWER_LEVEL; |
| 1946 | sdata->user_power_level = local->user_power_level; |
| 1947 | |
Max Stepanov | 2475b1cc | 2013-03-24 14:23:27 +0200 | [diff] [blame] | 1948 | sdata->encrypt_headroom = IEEE80211_ENCRYPT_HEADROOM; |
| 1949 | |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1950 | /* setup type-dependent data */ |
| 1951 | ieee80211_setup_sdata(sdata, type); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1952 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1953 | if (ndev) { |
Johannes Berg | dd665d2 | 2018-12-15 11:03:11 +0200 | [diff] [blame] | 1954 | ndev->ieee80211_ptr->use_4addr = params->use_4addr; |
| 1955 | if (type == NL80211_IFTYPE_STATION) |
| 1956 | sdata->u.mgd.use_4addr = params->use_4addr; |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1957 | |
| 1958 | ndev->features |= local->hw.netdev_features; |
Johannes Berg | 07b83d2 | 2020-01-31 13:12:46 +0200 | [diff] [blame] | 1959 | ndev->hw_features |= ndev->features & |
| 1960 | MAC80211_SUPPORTED_FEATURES_TX; |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1961 | |
Johannes Berg | b7ffbd7 | 2014-06-04 17:31:56 +0200 | [diff] [blame] | 1962 | netdev_set_default_ethtool_ops(ndev, &ieee80211_ethtool_ops); |
| 1963 | |
Jarod Wilson | 9c22b4a | 2016-10-20 13:55:18 -0400 | [diff] [blame] | 1964 | /* MTU range: 256 - 2304 */ |
| 1965 | ndev->min_mtu = 256; |
Wen Gong | 0635466 | 2019-09-06 10:48:57 +0800 | [diff] [blame] | 1966 | ndev->max_mtu = local->hw.max_mtu; |
Jarod Wilson | 9c22b4a | 2016-10-20 13:55:18 -0400 | [diff] [blame] | 1967 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1968 | ret = register_netdevice(ndev); |
| 1969 | if (ret) { |
David S. Miller | cf124db | 2017-05-08 12:52:56 -0400 | [diff] [blame] | 1970 | free_netdev(ndev); |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1971 | return ret; |
| 1972 | } |
Johannes Berg | 9bc383d | 2009-11-19 11:55:19 +0100 | [diff] [blame] | 1973 | } |
| 1974 | |
Johannes Berg | c771c9d | 2009-01-23 22:54:03 +0100 | [diff] [blame] | 1975 | mutex_lock(&local->iflist_mtx); |
Johannes Berg | 7901042 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 1976 | list_add_tail_rcu(&sdata->list, &local->interfaces); |
Johannes Berg | c771c9d | 2009-01-23 22:54:03 +0100 | [diff] [blame] | 1977 | mutex_unlock(&local->iflist_mtx); |
Johannes Berg | 7901042 | 2007-09-18 17:29:21 -0400 | [diff] [blame] | 1978 | |
Johannes Berg | 84efbb8 | 2012-06-16 00:00:26 +0200 | [diff] [blame] | 1979 | if (new_wdev) |
| 1980 | *new_wdev = &sdata->wdev; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1981 | |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1982 | return 0; |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1983 | } |
| 1984 | |
Jasper Bryant-Greene | f698d85 | 2008-08-03 12:04:37 +1200 | [diff] [blame] | 1985 | void ieee80211_if_remove(struct ieee80211_sub_if_data *sdata) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1986 | { |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 1987 | ASSERT_RTNL(); |
Johannes Berg | 11a843b | 2007-08-28 17:01:55 -0400 | [diff] [blame] | 1988 | |
Johannes Berg | c771c9d | 2009-01-23 22:54:03 +0100 | [diff] [blame] | 1989 | mutex_lock(&sdata->local->iflist_mtx); |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1990 | list_del_rcu(&sdata->list); |
Johannes Berg | c771c9d | 2009-01-23 22:54:03 +0100 | [diff] [blame] | 1991 | mutex_unlock(&sdata->local->iflist_mtx); |
| 1992 | |
Bhagavathi Perumal S | f1267cf | 2019-04-16 12:54:40 +0530 | [diff] [blame] | 1993 | if (sdata->vif.txq) |
| 1994 | ieee80211_txq_purge(sdata->local, to_txq_info(sdata->vif.txq)); |
| 1995 | |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 1996 | synchronize_rcu(); |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 1997 | |
| 1998 | if (sdata->dev) { |
| 1999 | unregister_netdevice(sdata->dev); |
| 2000 | } else { |
| 2001 | cfg80211_unregister_wdev(&sdata->wdev); |
Eliad Peller | 835112b | 2015-11-17 10:24:40 +0200 | [diff] [blame] | 2002 | ieee80211_teardown_sdata(sdata); |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 2003 | kfree(sdata); |
| 2004 | } |
| 2005 | } |
| 2006 | |
| 2007 | void ieee80211_sdata_stop(struct ieee80211_sub_if_data *sdata) |
| 2008 | { |
| 2009 | if (WARN_ON_ONCE(!test_bit(SDATA_STATE_RUNNING, &sdata->state))) |
| 2010 | return; |
| 2011 | ieee80211_do_stop(sdata, true); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2012 | } |
| 2013 | |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 2014 | void ieee80211_remove_interfaces(struct ieee80211_local *local) |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2015 | { |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 2016 | struct ieee80211_sub_if_data *sdata, *tmp; |
Eric Dumazet | efe117a | 2009-11-05 11:06:40 +0100 | [diff] [blame] | 2017 | LIST_HEAD(unreg_list); |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 2018 | LIST_HEAD(wdev_list); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2019 | |
| 2020 | ASSERT_RTNL(); |
| 2021 | |
Johannes Berg | d8d9008 | 2015-07-08 15:41:50 +0300 | [diff] [blame] | 2022 | /* Before destroying the interfaces, make sure they're all stopped so |
| 2023 | * that the hardware is stopped. Otherwise, the driver might still be |
| 2024 | * iterating the interfaces during the shutdown, e.g. from a worker |
| 2025 | * or from RX processing or similar, and if it does so (using atomic |
| 2026 | * iteration) while we're manipulating the list, the iteration will |
| 2027 | * crash. |
| 2028 | * |
| 2029 | * After this, the hardware should be stopped and the driver should |
| 2030 | * have stopped all of its activities, so that we can do RCU-unaware |
| 2031 | * manipulations of the interface list below. |
Johannes Berg | c8aa22d | 2013-05-24 01:06:09 +0200 | [diff] [blame] | 2032 | */ |
Johannes Berg | d8d9008 | 2015-07-08 15:41:50 +0300 | [diff] [blame] | 2033 | cfg80211_shutdown_all_interfaces(local->hw.wiphy); |
| 2034 | |
| 2035 | WARN(local->open_count, "%s: open count remains %d\n", |
| 2036 | wiphy_name(local->hw.wiphy), local->open_count); |
Johannes Berg | c8aa22d | 2013-05-24 01:06:09 +0200 | [diff] [blame] | 2037 | |
Sara Sharon | a50e5fb | 2018-12-15 11:03:10 +0200 | [diff] [blame] | 2038 | ieee80211_txq_teardown_flows(local); |
| 2039 | |
Eric Dumazet | efe117a | 2009-11-05 11:06:40 +0100 | [diff] [blame] | 2040 | mutex_lock(&local->iflist_mtx); |
Johannes Berg | 7563652 | 2008-07-09 14:40:35 +0200 | [diff] [blame] | 2041 | list_for_each_entry_safe(sdata, tmp, &local->interfaces, list) { |
| 2042 | list_del(&sdata->list); |
Johannes Berg | c771c9d | 2009-01-23 22:54:03 +0100 | [diff] [blame] | 2043 | |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 2044 | if (sdata->dev) |
| 2045 | unregister_netdevice_queue(sdata->dev, &unreg_list); |
| 2046 | else |
| 2047 | list_add(&sdata->list, &wdev_list); |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2048 | } |
Eric Dumazet | efe117a | 2009-11-05 11:06:40 +0100 | [diff] [blame] | 2049 | mutex_unlock(&local->iflist_mtx); |
| 2050 | unregister_netdevice_many(&unreg_list); |
Johannes Berg | f142c6b | 2012-06-18 20:07:15 +0200 | [diff] [blame] | 2051 | |
| 2052 | list_for_each_entry_safe(sdata, tmp, &wdev_list, list) { |
| 2053 | list_del(&sdata->list); |
| 2054 | cfg80211_unregister_wdev(&sdata->wdev); |
| 2055 | kfree(sdata); |
| 2056 | } |
Jiri Benc | f0706e8 | 2007-05-05 11:45:53 -0700 | [diff] [blame] | 2057 | } |
Johannes Berg | 5cff20e | 2009-04-29 12:26:17 +0200 | [diff] [blame] | 2058 | |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 2059 | static int netdev_notify(struct notifier_block *nb, |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 2060 | unsigned long state, void *ptr) |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 2061 | { |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 2062 | struct net_device *dev = netdev_notifier_info_to_dev(ptr); |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 2063 | struct ieee80211_sub_if_data *sdata; |
| 2064 | |
| 2065 | if (state != NETDEV_CHANGENAME) |
Zhao, Gang | 8bd811a | 2014-04-21 12:53:05 +0800 | [diff] [blame] | 2066 | return NOTIFY_DONE; |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 2067 | |
| 2068 | if (!dev->ieee80211_ptr || !dev->ieee80211_ptr->wiphy) |
Zhao, Gang | 8bd811a | 2014-04-21 12:53:05 +0800 | [diff] [blame] | 2069 | return NOTIFY_DONE; |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 2070 | |
| 2071 | if (dev->ieee80211_ptr->wiphy->privid != mac80211_wiphy_privid) |
Zhao, Gang | 8bd811a | 2014-04-21 12:53:05 +0800 | [diff] [blame] | 2072 | return NOTIFY_DONE; |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 2073 | |
| 2074 | sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
Johannes Berg | 2f5265e | 2010-02-12 10:45:05 +0100 | [diff] [blame] | 2075 | memcpy(sdata->name, dev->name, IFNAMSIZ); |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 2076 | ieee80211_debugfs_rename_netdev(sdata); |
Zhao, Gang | 8bd811a | 2014-04-21 12:53:05 +0800 | [diff] [blame] | 2077 | |
| 2078 | return NOTIFY_OK; |
Johannes Berg | 47846c9 | 2009-11-25 17:46:19 +0100 | [diff] [blame] | 2079 | } |
| 2080 | |
| 2081 | static struct notifier_block mac80211_netdev_notifier = { |
| 2082 | .notifier_call = netdev_notify, |
| 2083 | }; |
| 2084 | |
| 2085 | int ieee80211_iface_init(void) |
| 2086 | { |
| 2087 | return register_netdevice_notifier(&mac80211_netdev_notifier); |
| 2088 | } |
| 2089 | |
| 2090 | void ieee80211_iface_exit(void) |
| 2091 | { |
| 2092 | unregister_netdevice_notifier(&mac80211_netdev_notifier); |
| 2093 | } |
Michael Braun | 72f15d5 | 2016-10-10 19:12:21 +0200 | [diff] [blame] | 2094 | |
| 2095 | void ieee80211_vif_inc_num_mcast(struct ieee80211_sub_if_data *sdata) |
| 2096 | { |
| 2097 | if (sdata->vif.type == NL80211_IFTYPE_AP) |
| 2098 | atomic_inc(&sdata->u.ap.num_mcast_sta); |
| 2099 | else if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) |
| 2100 | atomic_inc(&sdata->u.vlan.num_mcast_sta); |
| 2101 | } |
| 2102 | |
| 2103 | void ieee80211_vif_dec_num_mcast(struct ieee80211_sub_if_data *sdata) |
| 2104 | { |
| 2105 | if (sdata->vif.type == NL80211_IFTYPE_AP) |
| 2106 | atomic_dec(&sdata->u.ap.num_mcast_sta); |
| 2107 | else if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) |
| 2108 | atomic_dec(&sdata->u.vlan.num_mcast_sta); |
| 2109 | } |