blob: 3b9ec4ef81c3baa6d44261dd339e4fe6964b56d9 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Jiri Bencf0706e82007-05-05 11:45:53 -07002/*
Johannes Bergc5d54fb2013-03-26 21:54:24 +01003 * Interface handling
Johannes Berg0d143fe2008-09-11 00:01:59 +02004 *
Jiri Bencf0706e82007-05-05 11:45:53 -07005 * Copyright 2002-2005, Instant802 Networks, Inc.
6 * Copyright 2005-2006, Devicescape Software, Inc.
7 * Copyright (c) 2006 Jiri Benc <jbenc@suse.cz>
Johannes Berg75636522008-07-09 14:40:35 +02008 * Copyright 2008, Johannes Berg <johannes@sipsolutions.net>
Johannes Bergd98ad832014-09-03 15:24:57 +03009 * Copyright 2013-2014 Intel Mobile Communications GmbH
Johannes Bergd2941df2016-10-20 08:52:50 +020010 * Copyright (c) 2016 Intel Deutschland GmbH
Ilan Peer52b48102020-01-31 13:12:56 +020011 * Copyright (C) 2018-2020 Intel Corporation
Jiri Bencf0706e82007-05-05 11:45:53 -070012 */
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070014#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 Bergcf0277e2010-01-05 18:00:58 +010019#include <net/ieee80211_radiotap.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070020#include "ieee80211_i.h"
21#include "sta_info.h"
Jiri Bence9f207f2007-05-05 11:46:38 -070022#include "debugfs_netdev.h"
Luis Carlos Coboee385852008-02-23 15:17:11 +010023#include "mesh.h"
Johannes Berg0d143fe2008-09-11 00:01:59 +020024#include "led.h"
Johannes Berg24487982009-04-23 18:52:52 +020025#include "driver-ops.h"
Johannes Bergcf0277e2010-01-05 18:00:58 +010026#include "wme.h"
Bill Jordan1be7fe82010-10-01 11:20:41 -040027#include "rate.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070028
Johannes Bergc771c9d2009-01-23 22:54:03 +010029/**
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 Erenfeld42bd20d2016-08-29 23:25:16 +030045static void ieee80211_iface_work(struct work_struct *work);
46
Johannes Berg1ea6f9c2012-10-24 10:59:25 +020047bool __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 Wunderlich0430c882013-07-08 16:55:55 +020059 power = ieee80211_chandef_max_power(&chanctx_conf->def);
Johannes Berg1ea6f9c2012-10-24 10:59:25 +020060 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 Bianconidb82d8a2015-01-14 12:55:08 +010077void ieee80211_recalc_txpower(struct ieee80211_sub_if_data *sdata,
78 bool update_bss)
Johannes Berg1ea6f9c2012-10-24 10:59:25 +020079{
Emmanuel Grumbach5ad11b52015-11-17 10:24:39 +020080 if (__ieee80211_recalc_txpower(sdata) ||
81 (update_bss && ieee80211_sdata_running(sdata)))
Johannes Berg1ea6f9c2012-10-24 10:59:25 +020082 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_TXPOWER);
83}
Johannes Bergc771c9d2009-01-23 22:54:03 +010084
Johannes Berg62a40a12013-04-08 11:52:34 +020085static u32 __ieee80211_idle_off(struct ieee80211_local *local)
Johannes Bergcc45ae542012-06-21 22:30:52 +020086{
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 Berg62a40a12013-04-08 11:52:34 +020094static u32 __ieee80211_idle_on(struct ieee80211_local *local)
Johannes Bergcc45ae542012-06-21 22:30:52 +020095{
96 if (local->hw.conf.flags & IEEE80211_CONF_IDLE)
97 return 0;
98
Emmanuel Grumbach3b24f4c2015-01-07 15:42:39 +020099 ieee80211_flush_queues(local, NULL, false);
Johannes Bergcc45ae542012-06-21 22:30:52 +0200100
101 local->hw.conf.flags |= IEEE80211_CONF_IDLE;
102 return IEEE80211_CONF_CHANGE_IDLE;
103}
104
Johannes Berg62a40a12013-04-08 11:52:34 +0200105static u32 __ieee80211_recalc_idle(struct ieee80211_local *local,
106 bool force_active)
Johannes Bergcc45ae542012-06-21 22:30:52 +0200107{
Johannes Berg1d5e1262014-02-12 11:29:32 +0100108 bool working, scanning, active;
Johannes Bergcc45ae542012-06-21 22:30:52 +0200109 unsigned int led_trig_start = 0, led_trig_stop = 0;
Johannes Bergcc45ae542012-06-21 22:30:52 +0200110
Johannes Bergcc45ae542012-06-21 22:30:52 +0200111 lockdep_assert_held(&local->mtx);
112
Johannes Berg62a40a12013-04-08 11:52:34 +0200113 active = force_active ||
114 !list_empty(&local->chanctx_list) ||
115 local->monitors;
Johannes Bergcc45ae542012-06-21 22:30:52 +0200116
Johannes Berg1d5e1262014-02-12 11:29:32 +0100117 working = !local->ops->remain_on_channel &&
118 !list_empty(&local->roc_list);
Johannes Bergcc45ae542012-06-21 22:30:52 +0200119
Johannes Bergf1e3e052013-02-06 23:57:57 +0100120 scanning = test_bit(SCAN_SW_SCANNING, &local->scanning) ||
121 test_bit(SCAN_ONCHANNEL_SCANNING, &local->scanning);
Johannes Bergcc45ae542012-06-21 22:30:52 +0200122
Johannes Bergcc45ae542012-06-21 22:30:52 +0200123 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 Bergfd0f9792013-02-07 00:14:51 +0100128 if (active)
Johannes Bergcc45ae542012-06-21 22:30:52 +0200129 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 Bergfd0f9792013-02-07 00:14:51 +0100135 if (working || scanning || active)
Johannes Berg62a40a12013-04-08 11:52:34 +0200136 return __ieee80211_idle_off(local);
137 return __ieee80211_idle_on(local);
138}
139
140u32 ieee80211_idle_off(struct ieee80211_local *local)
141{
142 return __ieee80211_recalc_idle(local, true);
143}
144
145void ieee80211_recalc_idle(struct ieee80211_local *local)
146{
147 u32 change = __ieee80211_recalc_idle(local, false);
Johannes Bergfd0f9792013-02-07 00:14:51 +0100148 if (change)
149 ieee80211_hw_config(local, change);
Johannes Bergcc45ae542012-06-21 22:30:52 +0200150}
151
John W. Linville3899ba92013-06-11 14:48:32 -0400152static int ieee80211_verify_mac(struct ieee80211_sub_if_data *sdata, u8 *addr,
Felix Fietkau31eba5b2013-05-28 13:01:53 +0200153 bool check_dup)
Helmut Schaa478622e2012-11-27 18:23:06 +0100154{
Helmut Schaaac209762013-05-27 10:43:09 +0200155 struct ieee80211_local *local = sdata->local;
156 struct ieee80211_sub_if_data *iter;
Helmut Schaa478622e2012-11-27 18:23:06 +0100157 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 Fietkau31eba5b2013-05-28 13:01:53 +0200174 if (!check_dup)
175 return ret;
Helmut Schaa478622e2012-11-27 18:23:06 +0100176
177 mutex_lock(&local->iflist_mtx);
Helmut Schaaac209762013-05-27 10:43:09 +0200178 list_for_each_entry(iter, &local->interfaces, list) {
179 if (iter == sdata)
Helmut Schaa478622e2012-11-27 18:23:06 +0100180 continue;
181
John W. Linville3899ba92013-06-11 14:48:32 -0400182 if (iter->vif.type == NL80211_IFTYPE_MONITOR &&
Aviya Erenfeldd8212182016-08-29 23:25:15 +0300183 !(iter->u.mntr.flags & MONITOR_FLAG_ACTIVE))
Helmut Schaaac209762013-05-27 10:43:09 +0200184 continue;
185
186 m = iter->vif.addr;
Helmut Schaa478622e2012-11-27 18:23:06 +0100187 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 Berg47846c92009-11-25 17:46:19 +0100201static 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 Valofc5f7572009-12-30 15:54:03 +0200204 struct sockaddr *sa = addr;
Felix Fietkau31eba5b2013-05-28 13:01:53 +0200205 bool check_dup = true;
Johannes Berg47846c92009-11-25 17:46:19 +0100206 int ret;
207
Johannes Berg9607e6b662009-12-23 13:15:31 +0100208 if (ieee80211_sdata_running(sdata))
Johannes Berg47846c92009-11-25 17:46:19 +0100209 return -EBUSY;
210
Felix Fietkau31eba5b2013-05-28 13:01:53 +0200211 if (sdata->vif.type == NL80211_IFTYPE_MONITOR &&
Aviya Erenfeldd8212182016-08-29 23:25:15 +0300212 !(sdata->u.mntr.flags & MONITOR_FLAG_ACTIVE))
Felix Fietkau31eba5b2013-05-28 13:01:53 +0200213 check_dup = false;
214
John W. Linville3899ba92013-06-11 14:48:32 -0400215 ret = ieee80211_verify_mac(sdata, sa->sa_data, check_dup);
Helmut Schaa478622e2012-11-27 18:23:06 +0100216 if (ret)
217 return ret;
218
Kalle Valofc5f7572009-12-30 15:54:03 +0200219 ret = eth_mac_addr(dev, sa);
Johannes Berg47846c92009-11-25 17:46:19 +0100220
221 if (ret == 0)
Kalle Valofc5f7572009-12-30 15:54:03 +0200222 memcpy(sdata->vif.addr, sa->sa_data, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100223
224 return ret;
225}
226
Johannes Berg0d143fe2008-09-11 00:01:59 +0200227static inline int identical_mac_addr_allowed(int type1, int type2)
228{
229 return type1 == NL80211_IFTYPE_MONITOR ||
230 type2 == NL80211_IFTYPE_MONITOR ||
Johannes Bergf142c6b2012-06-18 20:07:15 +0200231 type1 == NL80211_IFTYPE_P2P_DEVICE ||
232 type2 == NL80211_IFTYPE_P2P_DEVICE ||
Johannes Berg0d143fe2008-09-11 00:01:59 +0200233 (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 Berg87490f62010-08-27 12:35:57 +0200239static int ieee80211_check_concurrent_iface(struct ieee80211_sub_if_data *sdata,
240 enum nl80211_iftype iftype)
Johannes Berg0d143fe2008-09-11 00:01:59 +0200241{
Johannes Bergb4a4bf52008-09-26 13:34:54 +0200242 struct ieee80211_local *local = sdata->local;
Johannes Berg87490f62010-08-27 12:35:57 +0200243 struct ieee80211_sub_if_data *nsdata;
Luciano Coelhob6a55012014-02-27 11:07:21 +0200244 int ret;
Johannes Berg0d143fe2008-09-11 00:01:59 +0200245
Johannes Berg87490f62010-08-27 12:35:57 +0200246 ASSERT_RTNL();
Johannes Berg0d143fe2008-09-11 00:01:59 +0200247
248 /* we hold the RTNL here so can safely walk the list */
249 list_for_each_entry(nsdata, &local->interfaces, list) {
Johannes Berg371a2552012-06-19 15:54:05 +0200250 if (nsdata != sdata && ieee80211_sdata_running(nsdata)) {
Johannes Berg0d143fe2008-09-11 00:01:59 +0200251 /*
Rostislav Lisovy239281f2014-11-03 10:33:19 +0100252 * 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 Berg0d143fe2008-09-11 00:01:59 +0200261 * 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 Berg87490f62010-08-27 12:35:57 +0200270 if (iftype == NL80211_IFTYPE_ADHOC &&
Johannes Berg0d143fe2008-09-11 00:01:59 +0200271 nsdata->vif.type == NL80211_IFTYPE_ADHOC)
272 return -EBUSY;
Simon Wunderlich73da7d52013-07-11 16:09:06 +0200273 /*
274 * will not add another interface while any channel
275 * switch is active.
276 */
277 if (nsdata->vif.csa_active)
278 return -EBUSY;
Johannes Berg0d143fe2008-09-11 00:01:59 +0200279
280 /*
281 * The remaining checks are only performed for interfaces
282 * with the same MAC address.
283 */
Johannes Berg371a2552012-06-19 15:54:05 +0200284 if (!ether_addr_equal(sdata->vif.addr,
285 nsdata->vif.addr))
Johannes Berg0d143fe2008-09-11 00:01:59 +0200286 continue;
287
288 /*
289 * check whether it may have the same address
290 */
Johannes Berg87490f62010-08-27 12:35:57 +0200291 if (!identical_mac_addr_allowed(iftype,
Johannes Berg0d143fe2008-09-11 00:01:59 +0200292 nsdata->vif.type))
293 return -ENOTUNIQ;
294
295 /*
296 * can only add VLANs to enabled APs
297 */
Johannes Berg87490f62010-08-27 12:35:57 +0200298 if (iftype == NL80211_IFTYPE_AP_VLAN &&
Johannes Berg0d143fe2008-09-11 00:01:59 +0200299 nsdata->vif.type == NL80211_IFTYPE_AP)
300 sdata->bss = &nsdata->u.ap;
301 }
302 }
303
Luciano Coelhob6a55012014-02-27 11:07:21 +0200304 mutex_lock(&local->chanctx_mtx);
305 ret = ieee80211_check_combinations(sdata, NULL, 0, 0);
306 mutex_unlock(&local->chanctx_mtx);
307 return ret;
Johannes Berg87490f62010-08-27 12:35:57 +0200308}
309
Johannes Berga9865532013-08-26 09:30:32 +0200310static int ieee80211_check_queues(struct ieee80211_sub_if_data *sdata,
311 enum nl80211_iftype iftype)
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200312{
313 int n_queues = sdata->local->hw.queues;
314 int i;
315
Ayala Beker708d50e2016-09-20 17:31:14 +0300316 if (iftype == NL80211_IFTYPE_NAN)
317 return 0;
318
Johannes Berga9865532013-08-26 09:30:32 +0200319 if (iftype != NL80211_IFTYPE_P2P_DEVICE) {
Ilan Peer0ef24e52012-08-21 12:43:35 +0300320 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 Berg3a25a8c2012-04-03 16:28:50 +0200328 }
329
Johannes Berga9865532013-08-26 09:30:32 +0200330 if ((iftype != NL80211_IFTYPE_AP &&
331 iftype != NL80211_IFTYPE_P2P_GO &&
332 iftype != NL80211_IFTYPE_MESH_POINT) ||
Johannes Berg30686bf2015-06-02 21:39:54 +0200333 !ieee80211_hw_check(&sdata->local->hw, QUEUE_CONTROL)) {
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200334 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 Fietkau4b7afb52020-09-08 14:37:02 +0200347static 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
363static 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 Berg70d9c592020-11-09 10:57:46 +0100416 * For AP_VLANs stations may exist since there's nothing else that
Felix Fietkau4b7afb52020-09-08 14:37:02 +0200417 * would have removed them, but in other modes there shouldn't
418 * be any stations.
419 */
420 flushed = sta_info_flush(sdata);
Johannes Berg70d9c592020-11-09 10:57:46 +0100421 WARN_ON_ONCE(sdata->vif.type != NL80211_IFTYPE_AP_VLAN && flushed > 0);
Felix Fietkau4b7afb52020-09-08 14:37:02 +0200422
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 Berg70d9c592020-11-09 10:57:46 +0100548 * keys before the interface is operating)
Felix Fietkau4b7afb52020-09-08 14:37:02 +0200549 *
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
636static 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
645static 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 */
672static 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
689static void ieee80211_uninit(struct net_device *dev)
690{
691 ieee80211_teardown_sdata(IEEE80211_DEV_TO_SUB_IF(dev));
692}
693
694static 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
701static void
702ieee80211_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
703{
Heiner Kallweit64012972020-10-12 10:18:19 +0200704 dev_fetch_sw_netstats(stats, dev->tstats);
Felix Fietkau4b7afb52020-09-08 14:37:02 +0200705}
706
707static 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
718static 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
746static 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
757static 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 Fietkau6aea26c2020-09-08 14:36:53 +0200768static 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
780static 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 Fietkau4b7afb52020-09-08 14:37:02 +0200808static 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 Fietkau6aea26c2020-09-08 14:36:53 +0200833
834static 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
853void 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 Lamparter85416a42010-10-02 13:17:07 +0200872void ieee80211_adjust_monitor_flags(struct ieee80211_sub_if_data *sdata,
873 const int offset)
874{
875 struct ieee80211_local *local = sdata->local;
Aviya Erenfeldd8212182016-08-29 23:25:15 +0300876 u32 flags = sdata->u.mntr.flags;
Christian Lamparter85416a42010-10-02 13:17:07 +0200877
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 Berg3a25a8c2012-04-03 16:28:50 +0200892static 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 Berg30686bf2015-06-02 21:39:54 +0200898 if (ieee80211_hw_check(&local->hw, QUEUE_CONTROL))
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200899 sdata->vif.hw_queue[i] = IEEE80211_INVAL_HW_QUEUE;
Johannes Berga9d3c052012-05-07 17:45:29 +0200900 else if (local->hw.queues >= IEEE80211_NUM_ACS)
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200901 sdata->vif.hw_queue[i] = i;
Johannes Berga9d3c052012-05-07 17:45:29 +0200902 else
903 sdata->vif.hw_queue[i] = 0;
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200904 }
905 sdata->vif.cab_queue = IEEE80211_INVAL_HW_QUEUE;
906}
907
Johannes Berg3c3e21e2013-03-27 23:20:27 +0100908int ieee80211_add_virtual_monitor(struct ieee80211_local *local)
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200909{
910 struct ieee80211_sub_if_data *sdata;
Johannes Berg8b305782013-03-20 22:25:17 +0100911 int ret;
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200912
Johannes Berg30686bf2015-06-02 21:39:54 +0200913 if (!ieee80211_hw_check(&local->hw, WANT_MONITOR_VIF))
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200914 return 0;
915
Johannes Berg8b305782013-03-20 22:25:17 +0100916 ASSERT_RTNL();
Johannes Berg685fb722012-07-11 16:38:09 +0200917
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200918 if (local->monitor_sdata)
Johannes Berg8b305782013-03-20 22:25:17 +0100919 return 0;
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200920
921 sdata = kzalloc(sizeof(*sdata) + local->hw.vif_data_size, GFP_KERNEL);
Johannes Berg8b305782013-03-20 22:25:17 +0100922 if (!sdata)
923 return -ENOMEM;
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200924
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 Grumbach34171dc2014-05-25 15:35:41 +0300930 sdata->wdev.iftype = NL80211_IFTYPE_MONITOR;
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200931
Max Stepanov2475b1cc2013-03-24 14:23:27 +0200932 sdata->encrypt_headroom = IEEE80211_ENCRYPT_HEADROOM;
933
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200934 ieee80211_set_default_queues(sdata);
935
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200936 ret = drv_add_interface(local, sdata);
937 if (WARN_ON(ret)) {
938 /* ok .. stupid driver, it asked for this! */
939 kfree(sdata);
Johannes Berg8b305782013-03-20 22:25:17 +0100940 return ret;
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200941 }
942
Borwankar, Antarabdeca452020-11-29 17:30:53 +0200943 set_bit(SDATA_STATE_RUNNING, &sdata->state);
944
Johannes Berga9865532013-08-26 09:30:32 +0200945 ret = ieee80211_check_queues(sdata, NL80211_IFTYPE_MONITOR);
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200946 if (ret) {
947 kfree(sdata);
Johannes Berg8b305782013-03-20 22:25:17 +0100948 return ret;
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200949 }
950
Johannes Bergfab57a62014-01-29 13:28:02 +0100951 mutex_lock(&local->iflist_mtx);
952 rcu_assign_pointer(local->monitor_sdata, sdata);
953 mutex_unlock(&local->iflist_mtx);
954
Johannes Berg34a37402013-12-18 09:43:33 +0100955 mutex_lock(&local->mtx);
Johannes Berg4bf88532012-11-09 11:39:59 +0100956 ret = ieee80211_vif_use_channel(sdata, &local->monitor_chandef,
Johannes Berg55de9082012-07-26 17:24:39 +0200957 IEEE80211_CHANCTX_EXCLUSIVE);
Johannes Berg34a37402013-12-18 09:43:33 +0100958 mutex_unlock(&local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +0200959 if (ret) {
Johannes Bergfab57a62014-01-29 13:28:02 +0100960 mutex_lock(&local->iflist_mtx);
Monam Agarwal0c2bef462014-03-24 00:51:43 +0530961 RCU_INIT_POINTER(local->monitor_sdata, NULL);
Johannes Bergfab57a62014-01-29 13:28:02 +0100962 mutex_unlock(&local->iflist_mtx);
963 synchronize_net();
Johannes Berg55de9082012-07-26 17:24:39 +0200964 drv_remove_interface(local, sdata);
965 kfree(sdata);
Johannes Berg8b305782013-03-20 22:25:17 +0100966 return ret;
Johannes Berg55de9082012-07-26 17:24:39 +0200967 }
968
Aviya Erenfeld42bd20d2016-08-29 23:25:16 +0300969 skb_queue_head_init(&sdata->skb_queue);
970 INIT_WORK(&sdata->work, ieee80211_iface_work);
971
Johannes Berg8b305782013-03-20 22:25:17 +0100972 return 0;
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200973}
974
Johannes Berg3c3e21e2013-03-27 23:20:27 +0100975void ieee80211_del_virtual_monitor(struct ieee80211_local *local)
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200976{
977 struct ieee80211_sub_if_data *sdata;
978
Johannes Berg30686bf2015-06-02 21:39:54 +0200979 if (!ieee80211_hw_check(&local->hw, WANT_MONITOR_VIF))
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200980 return;
981
Johannes Berg8b305782013-03-20 22:25:17 +0100982 ASSERT_RTNL();
983
Johannes Berg685fb722012-07-11 16:38:09 +0200984 mutex_lock(&local->iflist_mtx);
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200985
Johannes Berg685fb722012-07-11 16:38:09 +0200986 sdata = rcu_dereference_protected(local->monitor_sdata,
987 lockdep_is_held(&local->iflist_mtx));
Johannes Berg8b305782013-03-20 22:25:17 +0100988 if (!sdata) {
989 mutex_unlock(&local->iflist_mtx);
990 return;
991 }
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200992
Monam Agarwal0c2bef462014-03-24 00:51:43 +0530993 RCU_INIT_POINTER(local->monitor_sdata, NULL);
Johannes Berg8b305782013-03-20 22:25:17 +0100994 mutex_unlock(&local->iflist_mtx);
995
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200996 synchronize_net();
997
Johannes Berg34a37402013-12-18 09:43:33 +0100998 mutex_lock(&local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +0200999 ieee80211_vif_release_channel(sdata);
Johannes Berg34a37402013-12-18 09:43:33 +01001000 mutex_unlock(&local->mtx);
Johannes Berg55de9082012-07-26 17:24:39 +02001001
Johannes Berg4b6f1dd2012-04-03 14:35:57 +02001002 drv_remove_interface(local, sdata);
1003
1004 kfree(sdata);
1005}
1006
Johannes Berg34d4bc42010-08-27 12:35:58 +02001007/*
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 Bergf142c6b2012-06-18 20:07:15 +02001012int ieee80211_do_open(struct wireless_dev *wdev, bool coming_up)
Johannes Berg87490f62010-08-27 12:35:57 +02001013{
Johannes Bergf142c6b2012-06-18 20:07:15 +02001014 struct ieee80211_sub_if_data *sdata = IEEE80211_WDEV_TO_SUB_IF(wdev);
1015 struct net_device *dev = wdev->netdev;
Johannes Berg87490f62010-08-27 12:35:57 +02001016 struct ieee80211_local *local = sdata->local;
Johannes Berg87490f62010-08-27 12:35:57 +02001017 u32 changed = 0;
1018 int res;
1019 u32 hw_reconf_flags = 0;
1020
Johannes Berg0d143fe2008-09-11 00:01:59 +02001021 switch (sdata->vif.type) {
Johannes Berg665c93a2011-11-04 11:18:11 +01001022 case NL80211_IFTYPE_AP_VLAN: {
1023 struct ieee80211_sub_if_data *master;
1024
Johannes Berg0d143fe2008-09-11 00:01:59 +02001025 if (!sdata->bss)
1026 return -ENOLINK;
Johannes Berg665c93a2011-11-04 11:18:11 +01001027
Michal Kazior4e141da2014-03-05 13:14:08 +01001028 mutex_lock(&local->mtx);
Johannes Berg0d143fe2008-09-11 00:01:59 +02001029 list_add(&sdata->u.vlan.list, &sdata->bss->vlans);
Michal Kazior4e141da2014-03-05 13:14:08 +01001030 mutex_unlock(&local->mtx);
Johannes Berg665c93a2011-11-04 11:18:11 +01001031
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 Kenzior018f6fb2018-03-26 12:52:51 -05001038 sdata->control_port_over_nl80211 =
1039 master->control_port_over_nl80211;
Markus Theil7f3f96c2020-03-12 10:10:54 +01001040 sdata->control_port_no_preauth =
1041 master->control_port_no_preauth;
Johannes Berg1351c5d2013-05-23 23:09:56 +02001042 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 Fietkau2967e032014-11-24 18:12:16 +01001045 sdata->vif.bss_conf.chandef = master->vif.bss_conf.chandef;
Michal Kaziorf9dca802015-05-13 09:16:48 +00001046
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 Berg0d143fe2008-09-11 00:01:59 +02001052 break;
Johannes Berg665c93a2011-11-04 11:18:11 +01001053 }
Johannes Berg0d143fe2008-09-11 00:01:59 +02001054 case NL80211_IFTYPE_AP:
1055 sdata->bss = &sdata->u.ap;
1056 break;
1057 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg0d143fe2008-09-11 00:01:59 +02001058 case NL80211_IFTYPE_STATION:
1059 case NL80211_IFTYPE_MONITOR:
1060 case NL80211_IFTYPE_ADHOC:
Johannes Bergf142c6b2012-06-18 20:07:15 +02001061 case NL80211_IFTYPE_P2P_DEVICE:
Rostislav Lisovy6e0bd6c2014-11-03 10:33:18 +01001062 case NL80211_IFTYPE_OCB:
Ayala Bekercb3b7d82016-09-20 17:31:13 +03001063 case NL80211_IFTYPE_NAN:
Johannes Berg0d143fe2008-09-11 00:01:59 +02001064 /* no special treatment */
1065 break;
1066 case NL80211_IFTYPE_UNSPECIFIED:
Johannes Berg2e161f782010-08-12 15:38:38 +02001067 case NUM_NL80211_IFTYPES:
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001068 case NL80211_IFTYPE_P2P_CLIENT:
1069 case NL80211_IFTYPE_P2P_GO:
Johannes Berg70d9c592020-11-09 10:57:46 +01001070 case NL80211_IFTYPE_WDS:
Johannes Berg0d143fe2008-09-11 00:01:59 +02001071 /* cannot happen */
1072 WARN_ON(1);
1073 break;
1074 }
1075
1076 if (local->open_count == 0) {
Johannes Berg24487982009-04-23 18:52:52 +02001077 res = drv_start(local);
Johannes Berg0d143fe2008-09-11 00:01:59 +02001078 if (res)
1079 goto err_del_bss;
Johannes Berge8975582008-10-09 12:18:51 +02001080 /* we're brought up, everything changes */
1081 hw_reconf_flags = ~0;
Johannes Berg1f87f7d2009-06-02 13:01:41 +02001082 ieee80211_led_radio(local, true);
Johannes Berg67408c82010-11-30 08:59:23 +01001083 ieee80211_mod_tpt_led_trig(local,
1084 IEEE80211_TPT_LEDTRIG_FL_RADIO, 0);
Johannes Berg0d143fe2008-09-11 00:01:59 +02001085 }
1086
1087 /*
Johannes Bergbf533e0b2010-08-27 12:35:56 +02001088 * Copy the hopefully now-present MAC address to
1089 * this interface, if it has the special null one.
Johannes Berg0d143fe2008-09-11 00:01:59 +02001090 */
Johannes Bergf142c6b2012-06-18 20:07:15 +02001091 if (dev && is_zero_ether_addr(dev->dev_addr)) {
Johannes Bergbf533e0b2010-08-27 12:35:56 +02001092 memcpy(dev->dev_addr,
1093 local->hw.wiphy->perm_addr,
1094 ETH_ALEN);
1095 memcpy(dev->perm_addr, dev->dev_addr, ETH_ALEN);
Johannes Berg0d143fe2008-09-11 00:01:59 +02001096
Johannes Bergbf533e0b2010-08-27 12:35:56 +02001097 if (!is_valid_ether_addr(dev->dev_addr)) {
Johannes Berg4d6c36f2012-04-03 14:45:54 +02001098 res = -EADDRNOTAVAIL;
1099 goto err_stop;
John W. Linville0adc23f2009-10-06 16:27:18 -04001100 }
Johannes Berg0d143fe2008-09-11 00:01:59 +02001101 }
1102
Johannes Berg0d143fe2008-09-11 00:01:59 +02001103 switch (sdata->vif.type) {
1104 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg4d76d212012-12-11 20:38:41 +01001105 /* 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 Berg3edaf3e2012-04-03 10:24:00 +02001108 netif_carrier_on(dev);
Felix Fietkau6aea26c2020-09-08 14:36:53 +02001109 ieee80211_set_vif_encap_ops(sdata);
Johannes Berg4d76d212012-12-11 20:38:41 +01001110 } else {
Johannes Berg3edaf3e2012-04-03 10:24:00 +02001111 netif_carrier_off(dev);
Johannes Berg4d76d212012-12-11 20:38:41 +01001112 }
Johannes Berg0d143fe2008-09-11 00:01:59 +02001113 break;
1114 case NL80211_IFTYPE_MONITOR:
Aviya Erenfeldd8212182016-08-29 23:25:15 +03001115 if (sdata->u.mntr.flags & MONITOR_FLAG_COOK_FRAMES) {
Johannes Berg0d143fe2008-09-11 00:01:59 +02001116 local->cooked_mntrs++;
1117 break;
1118 }
1119
Aviya Erenfeldd8212182016-08-29 23:25:15 +03001120 if (sdata->u.mntr.flags & MONITOR_FLAG_ACTIVE) {
Felix Fietkau31eba5b2013-05-28 13:01:53 +02001121 res = drv_add_interface(local, sdata);
1122 if (res)
1123 goto err_stop;
1124 } else if (local->monitors == 0 && local->open_count == 0) {
Johannes Berg075e0842012-07-12 19:28:31 +02001125 res = ieee80211_add_virtual_monitor(local);
1126 if (res)
1127 goto err_stop;
1128 }
1129
Johannes Berg0d143fe2008-09-11 00:01:59 +02001130 /* must be before the call to ieee80211_configure_filter */
1131 local->monitors++;
Johannes Berge8975582008-10-09 12:18:51 +02001132 if (local->monitors == 1) {
Johannes Berg0869aea02009-10-28 10:03:35 +01001133 local->hw.conf.flags |= IEEE80211_CONF_MONITOR;
1134 hw_reconf_flags |= IEEE80211_CONF_CHANGE_MONITOR;
Johannes Berge8975582008-10-09 12:18:51 +02001135 }
Johannes Berg0d143fe2008-09-11 00:01:59 +02001136
Christian Lamparter85416a42010-10-02 13:17:07 +02001137 ieee80211_adjust_monitor_flags(sdata, 1);
Johannes Berg0d143fe2008-09-11 00:01:59 +02001138 ieee80211_configure_filter(local);
Felix Fietkau6aea26c2020-09-08 14:36:53 +02001139 ieee80211_recalc_offload(local);
Felix Fietkau801d9292013-03-02 19:05:47 +01001140 mutex_lock(&local->mtx);
1141 ieee80211_recalc_idle(local);
1142 mutex_unlock(&local->mtx);
David Gnedt53e9b1d2010-07-19 20:44:02 +02001143
1144 netif_carrier_on(dev);
Johannes Berg0d143fe2008-09-11 00:01:59 +02001145 break;
Johannes Berg0d143fe2008-09-11 00:01:59 +02001146 default:
Johannes Berg34d4bc42010-08-27 12:35:58 +02001147 if (coming_up) {
Johannes Berg075e0842012-07-12 19:28:31 +02001148 ieee80211_del_virtual_monitor(local);
Felix Fietkau6aea26c2020-09-08 14:36:53 +02001149 ieee80211_set_sdata_offload_flags(sdata);
Johannes Berg075e0842012-07-12 19:28:31 +02001150
Johannes Berg7b7eab62011-11-03 14:41:13 +01001151 res = drv_add_interface(local, sdata);
Johannes Berg34d4bc42010-08-27 12:35:58 +02001152 if (res)
1153 goto err_stop;
Felix Fietkau6aea26c2020-09-08 14:36:53 +02001154
1155 ieee80211_set_vif_encap_ops(sdata);
Johannes Berga9865532013-08-26 09:30:32 +02001156 res = ieee80211_check_queues(sdata,
1157 ieee80211_vif_type_p2p(&sdata->vif));
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001158 if (res)
1159 goto err_del_interface;
Johannes Berg34d4bc42010-08-27 12:35:58 +02001160 }
Johannes Berg0d143fe2008-09-11 00:01:59 +02001161
Johannes Berg29cbe682010-12-03 09:20:44 +01001162 if (sdata->vif.type == NL80211_IFTYPE_AP) {
Igor Perminove3b90ca2009-08-04 16:48:51 +04001163 local->fif_pspoll++;
Johannes Berg7be50862010-10-13 12:06:24 +02001164 local->fif_probe_req++;
Igor Perminove3b90ca2009-08-04 16:48:51 +04001165
Igor Perminove3b90ca2009-08-04 16:48:51 +04001166 ieee80211_configure_filter(local);
Johannes Berg7be50862010-10-13 12:06:24 +02001167 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
1168 local->fif_probe_req++;
Andrey Yurovskya3c9aa52008-10-31 14:50:12 -07001169 }
Igor Perminove3b90ca2009-08-04 16:48:51 +04001170
Johannes Berg90e8f582020-04-17 11:18:31 +02001171 if (sdata->vif.probe_req_reg)
1172 drv_config_iface_filter(local, sdata,
1173 FIF_PROBE_REQ,
1174 FIF_PROBE_REQ);
1175
Ayala Beker708d50e2016-09-20 17:31:14 +03001176 if (sdata->vif.type != NL80211_IFTYPE_P2P_DEVICE &&
1177 sdata->vif.type != NL80211_IFTYPE_NAN)
Johannes Bergf142c6b2012-06-18 20:07:15 +02001178 changed |= ieee80211_reset_erp_info(sdata);
Johannes Berg0d143fe2008-09-11 00:01:59 +02001179 ieee80211_bss_info_change_notify(sdata, changed);
Johannes Berg0d143fe2008-09-11 00:01:59 +02001180
Johannes Bergc405c622012-07-30 19:44:12 +02001181 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 Lisovy6e0bd6c2014-11-03 10:33:18 +01001186 case NL80211_IFTYPE_OCB:
Johannes Berg0d143fe2008-09-11 00:01:59 +02001187 netif_carrier_off(dev);
Johannes Bergc405c622012-07-30 19:44:12 +02001188 break;
Johannes Bergf142c6b2012-06-18 20:07:15 +02001189 case NL80211_IFTYPE_P2P_DEVICE:
Ayala Bekercb3b7d82016-09-20 17:31:13 +03001190 case NL80211_IFTYPE_NAN:
Johannes Berg1411af12012-07-30 19:48:09 +02001191 break;
Johannes Bergc405c622012-07-30 19:44:12 +02001192 default:
Johannes Berga2310822013-03-26 22:10:02 +01001193 /* not reached */
1194 WARN_ON(1);
Johannes Bergc405c622012-07-30 19:44:12 +02001195 }
Eliad Peller59034592011-10-16 10:57:31 +02001196
1197 /*
Johannes Bergcec66282015-10-22 17:46:04 +02001198 * Set default queue parameters so drivers don't
Eliad Peller59034592011-10-16 10:57:31 +02001199 * need to initialise the hardware if the hardware
Johannes Bergcec66282015-10-22 17:46:04 +02001200 * doesn't start up with sane defaults.
1201 * Enable QoS for anything but station interfaces.
Eliad Peller59034592011-10-16 10:57:31 +02001202 */
Johannes Bergcec66282015-10-22 17:46:04 +02001203 ieee80211_set_wmm_default(sdata, true,
1204 sdata->vif.type != NL80211_IFTYPE_STATION);
Johannes Berg0d143fe2008-09-11 00:01:59 +02001205 }
1206
Johannes Berg2d2080c2010-09-15 15:13:13 +02001207 set_bit(SDATA_STATE_RUNNING, &sdata->state);
1208
Johannes Bergf64331d2017-04-13 13:28:18 +02001209 switch (sdata->vif.type) {
Johannes Bergf64331d2017-04-13 13:28:18 +02001210 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Bergf142c6b2012-06-18 20:07:15 +02001211 rcu_assign_pointer(local->p2p_sdata, sdata);
Johannes Bergf64331d2017-04-13 13:28:18 +02001212 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 Berg0d143fe2008-09-11 00:01:59 +02001220 }
1221
Johannes Berg0d143fe2008-09-11 00:01:59 +02001222 /*
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 Berg34d4bc42010-08-27 12:35:58 +02001230 if (coming_up)
1231 local->open_count++;
1232
Eliad Peller59034592011-10-16 10:57:31 +02001233 if (hw_reconf_flags)
Johannes Berge8975582008-10-09 12:18:51 +02001234 ieee80211_hw_config(local, hw_reconf_flags);
Johannes Berg0d143fe2008-09-11 00:01:59 +02001235
Johannes Berg4a733ef2015-10-14 18:02:43 +02001236 ieee80211_recalc_ps(local);
Johannes Berg965beda2009-04-16 13:17:24 +02001237
Johannes Berg2b436312013-05-23 21:04:38 +02001238 if (sdata->vif.type == NL80211_IFTYPE_MONITOR ||
Johannes Berg7d65f822017-03-29 14:15:24 +02001239 sdata->vif.type == NL80211_IFTYPE_AP_VLAN ||
1240 local->ops->wake_tx_queue) {
Johannes Berg2b436312013-05-23 21:04:38 +02001241 /* XXX: for AP_VLAN, actually track AP queues */
Chunho Lee89e9bfc2017-07-07 17:03:14 -07001242 if (dev)
1243 netif_tx_start_all_queues(dev);
Johannes Berg2b436312013-05-23 21:04:38 +02001244 } else if (dev) {
Johannes Berg2b730da2013-03-26 22:23:20 +01001245 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 Berg0d143fe2008-09-11 00:01:59 +02001266
1267 return 0;
1268 err_del_interface:
Johannes Berg7b7eab62011-11-03 14:41:13 +01001269 drv_remove_interface(local, sdata);
Johannes Berg0d143fe2008-09-11 00:01:59 +02001270 err_stop:
Johannes Berg24487982009-04-23 18:52:52 +02001271 if (!local->open_count)
1272 drv_stop(local);
Johannes Berg0d143fe2008-09-11 00:01:59 +02001273 err_del_bss:
1274 sdata->bss = NULL;
Michal Kazior4e141da2014-03-05 13:14:08 +01001275 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN) {
1276 mutex_lock(&local->mtx);
Johannes Berg0d143fe2008-09-11 00:01:59 +02001277 list_del(&sdata->u.vlan.list);
Michal Kazior4e141da2014-03-05 13:14:08 +01001278 mutex_unlock(&local->mtx);
1279 }
Johannes Berg4d6c36f2012-04-03 14:45:54 +02001280 /* might already be clear but that doesn't matter */
Johannes Berg2d2080c2010-09-15 15:13:13 +02001281 clear_bit(SDATA_STATE_RUNNING, &sdata->state);
Johannes Berg0d143fe2008-09-11 00:01:59 +02001282 return res;
1283}
1284
Johannes Berg5a490512015-04-22 17:10:38 +02001285static void ieee80211_if_free(struct net_device *dev)
1286{
1287 free_percpu(dev->tstats);
Johannes Berg5a490512015-04-22 17:10:38 +02001288}
1289
Johannes Berg587e7292009-01-30 13:35:22 +01001290static void ieee80211_if_setup(struct net_device *dev)
1291{
1292 ether_setup(dev);
Neil Horman550fd082011-07-26 06:05:38 +00001293 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
Johannes Berg587e7292009-01-30 13:35:22 +01001294 dev->netdev_ops = &ieee80211_dataif_ops;
David S. Millercf124db2017-05-08 12:52:56 -04001295 dev->needs_free_netdev = true;
1296 dev->priv_destructor = ieee80211_if_free;
Johannes Berg587e7292009-01-30 13:35:22 +01001297}
1298
Michal Kazior80a83cf2016-05-19 10:37:48 +02001299static 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 Berg1fa57d02010-06-10 10:21:32 +02001305static 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 Berg344eec62010-06-10 10:21:36 +02001311 struct sta_info *sta;
Johannes Berg1fa57d02010-06-10 10:21:32 +02001312
1313 if (!ieee80211_sdata_running(sdata))
1314 return;
1315
Andrei Otcheretianskifc58c472015-08-15 22:04:01 +03001316 if (test_bit(SCAN_SW_SCANNING, &local->scanning))
Johannes Berg1fa57d02010-06-10 10:21:32 +02001317 return;
1318
Emmanuel Grumbach4afaff12015-01-22 23:32:46 +02001319 if (!ieee80211_can_run_worker(local))
Johannes Berg1fa57d02010-06-10 10:21:32 +02001320 return;
1321
1322 /* first process frames */
1323 while ((skb = skb_dequeue(&sdata->skb_queue))) {
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02001324 struct ieee80211_mgmt *mgmt = (void *)skb->data;
1325
Aleksandr Nogikh261e4112020-10-29 17:36:20 +00001326 kcov_remote_start_common(skb_get_kcov_handle(skb));
Johannes Berg699cb582017-05-30 16:34:46 +02001327 if (ieee80211_is_action(mgmt->frame_control) &&
1328 mgmt->u.action.category == WLAN_CATEGORY_BACK) {
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02001329 int len = skb->len;
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02001330
Johannes Berga93e3642010-06-10 10:21:46 +02001331 mutex_lock(&local->sta_mtx);
Felix Fietkau875ae5f2010-07-17 15:59:07 +02001332 sta = sta_info_get_bss(sdata, mgmt->sa);
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02001333 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 Berga93e3642010-06-10 10:21:46 +02001352 mutex_unlock(&local->sta_mtx);
Sara Sharon23a1f8d2015-12-08 16:04:31 +02001353 } 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 Bergd2941df2016-10-20 08:52:50 +02001356 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 Sharon23a1f8d2015-12-08 16:04:31 +02001376 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 Pedersen09a740c2020-09-21 19:28:14 -07001383 } 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 Berg344eec62010-06-10 10:21:36 +02001388 } 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 Berga93e3642010-06-10 10:21:46 +02001407 mutex_lock(&local->sta_mtx);
Felix Fietkau875ae5f2010-07-17 15:59:07 +02001408 sta = sta_info_get_bss(sdata, mgmt->sa);
Johannes Berg344eec62010-06-10 10:21:36 +02001409 if (sta) {
Sara Sharona1f2ba04c2018-02-19 14:48:40 +02001410 u16 tid = ieee80211_get_tid(hdr);
Johannes Berg344eec62010-06-10 10:21:36 +02001411
1412 __ieee80211_stop_rx_ba_session(
1413 sta, tid, WLAN_BACK_RECIPIENT,
Johannes Berg53f73c02010-10-05 19:37:40 +02001414 WLAN_REASON_QSTA_REQUIRE_SETUP,
1415 true);
Johannes Berg344eec62010-06-10 10:21:36 +02001416 }
Johannes Berga93e3642010-06-10 10:21:46 +02001417 mutex_unlock(&local->sta_mtx);
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02001418 } else switch (sdata->vif.type) {
Johannes Berg1fa57d02010-06-10 10:21:32 +02001419 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 Berg1fa57d02010-06-10 10:21:32 +02001432 break;
1433 }
Johannes Berg36b3a622010-06-10 10:21:33 +02001434
1435 kfree_skb(skb);
Aleksandr Nogikh261e4112020-10-29 17:36:20 +00001436 kcov_remote_stop();
Johannes Berg1fa57d02010-06-10 10:21:32 +02001437 }
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 Lisovy239281f2014-11-03 10:33:19 +01001452 case NL80211_IFTYPE_OCB:
1453 ieee80211_ocb_work(sdata);
1454 break;
Johannes Berg1fa57d02010-06-10 10:21:32 +02001455 default:
1456 break;
1457 }
1458}
1459
Johannes Berg04ecd252012-09-11 14:34:12 +02001460static 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 Berg1fa57d02010-06-10 10:21:32 +02001467
Johannes Berg75636522008-07-09 14:40:35 +02001468/*
1469 * Helper function to initialise an interface to a specific type.
1470 */
1471static void ieee80211_setup_sdata(struct ieee80211_sub_if_data *sdata,
Johannes Berg05c914f2008-09-11 00:01:58 +02001472 enum nl80211_iftype type)
Johannes Berg75636522008-07-09 14:40:35 +02001473{
Rostislav Lisovy239281f2014-11-03 10:33:19 +01001474 static const u8 bssid_wildcard[ETH_ALEN] = {0xff, 0xff, 0xff,
1475 0xff, 0xff, 0xff};
1476
Johannes Berg75636522008-07-09 14:40:35 +02001477 /* 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 Berg2ca27bc2010-09-16 14:58:23 +02001482 sdata->vif.p2p = false;
Johannes Berg60719ff2008-09-16 14:55:09 +02001483 sdata->wdev.iftype = type;
Johannes Berg75636522008-07-09 14:40:35 +02001484
Johannes Berga621fa42010-08-27 14:26:54 +03001485 sdata->control_port_protocol = cpu_to_be16(ETH_P_PAE);
1486 sdata->control_port_no_encrypt = false;
Markus Theil7f3f96c2020-03-12 10:10:54 +01001487 sdata->control_port_over_nl80211 = false;
1488 sdata->control_port_no_preauth = false;
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001489 sdata->encrypt_headroom = IEEE80211_ENCRYPT_HEADROOM;
Avraham Sternd3a58df2014-05-22 12:17:47 +03001490 sdata->vif.bss_conf.idle = true;
Ben Greeardb6d9e92019-12-17 10:30:57 -08001491 sdata->vif.bss_conf.txpower = INT_MIN; /* unset */
Johannes Berga621fa42010-08-27 14:26:54 +03001492
Simon Wunderlichb53be792011-11-18 14:20:44 +01001493 sdata->noack_map = 0;
1494
Johannes Bergf142c6b2012-06-18 20:07:15 +02001495 /* 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 Berg75636522008-07-09 14:40:35 +02001500
Johannes Berg35f20c12010-06-10 10:21:30 +02001501 skb_queue_head_init(&sdata->skb_queue);
Johannes Berg1fa57d02010-06-10 10:21:32 +02001502 INIT_WORK(&sdata->work, ieee80211_iface_work);
Johannes Berg04ecd252012-09-11 14:34:12 +02001503 INIT_WORK(&sdata->recalc_smps, ieee80211_recalc_smps_work);
Simon Wunderlich73da7d52013-07-11 16:09:06 +02001504 INIT_WORK(&sdata->csa_finalize_work, ieee80211_csa_finalize_work);
Michal Kazior484298a2014-04-09 15:29:26 +02001505 INIT_LIST_HEAD(&sdata->assigned_chanctx_list);
Michal Kaziore3afb922014-04-09 15:29:27 +02001506 INIT_LIST_HEAD(&sdata->reserved_chanctx_list);
Johannes Berg35f20c12010-06-10 10:21:30 +02001507
Johannes Berg75636522008-07-09 14:40:35 +02001508 switch (type) {
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001509 case NL80211_IFTYPE_P2P_GO:
1510 type = NL80211_IFTYPE_AP;
1511 sdata->vif.type = type;
1512 sdata->vif.p2p = true;
Gustavo A. R. Silvafc0561d2020-07-07 15:45:48 -05001513 fallthrough;
Johannes Berg05c914f2008-09-11 00:01:58 +02001514 case NL80211_IFTYPE_AP:
Marco Porschd012a602012-10-10 12:39:50 -07001515 skb_queue_head_init(&sdata->u.ap.ps.bc_buf);
Johannes Berg75636522008-07-09 14:40:35 +02001516 INIT_LIST_HEAD(&sdata->u.ap.vlans);
Johannes Bergad2d2232012-12-14 14:34:25 +01001517 sdata->vif.bss_conf.bssid = sdata->vif.addr;
Johannes Berg75636522008-07-09 14:40:35 +02001518 break;
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001519 case NL80211_IFTYPE_P2P_CLIENT:
1520 type = NL80211_IFTYPE_STATION;
1521 sdata->vif.type = type;
1522 sdata->vif.p2p = true;
Gustavo A. R. Silvafc0561d2020-07-07 15:45:48 -05001523 fallthrough;
Johannes Berg05c914f2008-09-11 00:01:58 +02001524 case NL80211_IFTYPE_STATION:
Johannes Bergad2d2232012-12-14 14:34:25 +01001525 sdata->vif.bss_conf.bssid = sdata->u.mgd.bssid;
Johannes Berg9c6bd792008-09-11 00:01:52 +02001526 ieee80211_sta_setup_sdata(sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001527 break;
Rostislav Lisovy6e0bd6c2014-11-03 10:33:18 +01001528 case NL80211_IFTYPE_OCB:
Rostislav Lisovy239281f2014-11-03 10:33:19 +01001529 sdata->vif.bss_conf.bssid = bssid_wildcard;
1530 ieee80211_ocb_setup_sdata(sdata);
Rostislav Lisovy6e0bd6c2014-11-03 10:33:18 +01001531 break;
Johannes Berg46900292009-02-15 12:44:28 +01001532 case NL80211_IFTYPE_ADHOC:
Johannes Bergad2d2232012-12-14 14:34:25 +01001533 sdata->vif.bss_conf.bssid = sdata->u.ibss.bssid;
Johannes Berg46900292009-02-15 12:44:28 +01001534 ieee80211_ibss_setup_sdata(sdata);
1535 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001536 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg75636522008-07-09 14:40:35 +02001537 if (ieee80211_vif_is_mesh(&sdata->vif))
1538 ieee80211_mesh_init_sdata(sdata);
1539 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001540 case NL80211_IFTYPE_MONITOR:
Johannes Berg75636522008-07-09 14:40:35 +02001541 sdata->dev->type = ARPHRD_IEEE80211_RADIOTAP;
Johannes Berg587e7292009-01-30 13:35:22 +01001542 sdata->dev->netdev_ops = &ieee80211_monitorif_ops;
Aviya Erenfeldd8212182016-08-29 23:25:15 +03001543 sdata->u.mntr.flags = MONITOR_FLAG_CONTROL |
Johannes Berg75636522008-07-09 14:40:35 +02001544 MONITOR_FLAG_OTHER_BSS;
1545 break;
Ayala Beker167e33f2016-09-20 17:31:20 +03001546 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 Berg05c914f2008-09-11 00:01:58 +02001551 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg98104fde2012-06-16 00:19:54 +02001552 case NL80211_IFTYPE_P2P_DEVICE:
Johannes Bergad2d2232012-12-14 14:34:25 +01001553 sdata->vif.bss_conf.bssid = sdata->vif.addr;
Johannes Bergf142c6b2012-06-18 20:07:15 +02001554 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001555 case NL80211_IFTYPE_UNSPECIFIED:
Johannes Berg70d9c592020-11-09 10:57:46 +01001556 case NL80211_IFTYPE_WDS:
Johannes Berg2e161f782010-08-12 15:38:38 +02001557 case NUM_NL80211_IFTYPES:
Luca Coelhoc7976f52017-10-29 11:51:10 +02001558 WARN_ON(1);
Johannes Berg75636522008-07-09 14:40:35 +02001559 break;
1560 }
1561
1562 ieee80211_debugfs_add_netdev(sdata);
1563}
1564
Johannes Berg34d4bc42010-08-27 12:35:58 +02001565static 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 Berg2ca27bc2010-09-16 14:58:23 +02001570 enum nl80211_iftype internal_type = type;
1571 bool p2p = false;
Johannes Berg34d4bc42010-08-27 12:35:58 +02001572
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 Lisovy239281f2014-11-03 10:33:19 +01001582 case NL80211_IFTYPE_OCB:
Johannes Berg34d4bc42010-08-27 12:35:58 +02001583 /*
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 Lisovy239281f2014-11-03 10:33:19 +01001598 case NL80211_IFTYPE_OCB:
Johannes Berg34d4bc42010-08-27 12:35:58 +02001599 /*
1600 * Could probably support everything
Johannes Berg70d9c592020-11-09 10:57:46 +01001601 * but here.
Johannes Berg34d4bc42010-08-27 12:35:58 +02001602 */
1603 break;
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001604 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 Berg34d4bc42010-08-27 12:35:58 +02001612 default:
1613 return -EBUSY;
1614 }
1615
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001616 ret = ieee80211_check_concurrent_iface(sdata, internal_type);
Johannes Berg34d4bc42010-08-27 12:35:58 +02001617 if (ret)
1618 return ret;
1619
1620 ieee80211_do_stop(sdata, false);
1621
Johannes Bergf142c6b2012-06-18 20:07:15 +02001622 ieee80211_teardown_sdata(sdata);
Johannes Berg34d4bc42010-08-27 12:35:58 +02001623
Felix Fietkau6aea26c2020-09-08 14:36:53 +02001624 ieee80211_set_sdata_offload_flags(sdata);
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001625 ret = drv_change_interface(local, sdata, internal_type, p2p);
Johannes Berg34d4bc42010-08-27 12:35:58 +02001626 if (ret)
Johannes Berga9865532013-08-26 09:30:32 +02001627 type = ieee80211_vif_type_p2p(&sdata->vif);
Johannes Berg34d4bc42010-08-27 12:35:58 +02001628
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001629 /*
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 Berga9865532013-08-26 09:30:32 +02001634 ieee80211_check_queues(sdata, type);
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001635
Johannes Berg34d4bc42010-08-27 12:35:58 +02001636 ieee80211_setup_sdata(sdata, type);
Felix Fietkau6aea26c2020-09-08 14:36:53 +02001637 ieee80211_set_vif_encap_ops(sdata);
Johannes Berg34d4bc42010-08-27 12:35:58 +02001638
Johannes Bergf142c6b2012-06-18 20:07:15 +02001639 err = ieee80211_do_open(&sdata->wdev, false);
Johannes Berg34d4bc42010-08-27 12:35:58 +02001640 WARN(err, "type change: do_open returned %d", err);
1641
1642 return ret;
1643}
1644
Johannes Bergf3947e22008-07-09 14:40:36 +02001645int ieee80211_if_change_type(struct ieee80211_sub_if_data *sdata,
Johannes Berg05c914f2008-09-11 00:01:58 +02001646 enum nl80211_iftype type)
Johannes Berg75636522008-07-09 14:40:35 +02001647{
Johannes Berg34d4bc42010-08-27 12:35:58 +02001648 int ret;
1649
Johannes Bergf3947e22008-07-09 14:40:36 +02001650 ASSERT_RTNL();
1651
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001652 if (type == ieee80211_vif_type_p2p(&sdata->vif))
Johannes Bergf3947e22008-07-09 14:40:36 +02001653 return 0;
1654
Johannes Berg34d4bc42010-08-27 12:35:58 +02001655 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 Bergf142c6b2012-06-18 20:07:15 +02001661 ieee80211_teardown_sdata(sdata);
Johannes Berg34d4bc42010-08-27 12:35:58 +02001662 ieee80211_setup_sdata(sdata, type);
1663 }
Johannes Berg75636522008-07-09 14:40:35 +02001664
1665 /* reset some values that shouldn't be kept across type changes */
Johannes Berg9bc383d2009-11-19 11:55:19 +01001666 if (type == NL80211_IFTYPE_STATION)
1667 sdata->u.mgd.use_4addr = false;
Johannes Bergf3947e22008-07-09 14:40:36 +02001668
1669 return 0;
Johannes Berg75636522008-07-09 14:40:35 +02001670}
1671
Johannes Bergfa9029f2010-02-25 15:13:11 +01001672static void ieee80211_assign_perm_addr(struct ieee80211_local *local,
Johannes Bergf142c6b2012-06-18 20:07:15 +02001673 u8 *perm_addr, enum nl80211_iftype type)
Johannes Bergfa9029f2010-02-25 15:13:11 +01001674{
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 Bergf142c6b2012-06-18 20:07:15 +02001682 memcpy(perm_addr, local->hw.wiphy->perm_addr, ETH_ALEN);
Johannes Bergfa9029f2010-02-25 15:13:11 +01001683
1684 if (is_zero_ether_addr(local->hw.wiphy->addr_mask) &&
1685 local->hw.wiphy->n_addresses <= 1)
1686 return;
1687
Johannes Bergfa9029f2010-02-25 15:13:11 +01001688 mutex_lock(&local->iflist_mtx);
1689
1690 switch (type) {
1691 case NL80211_IFTYPE_MONITOR:
1692 /* doesn't matter */
1693 break;
Johannes Bergfa9029f2010-02-25 15:13:11 +01001694 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 Bergf142c6b2012-06-18 20:07:15 +02001699 memcpy(perm_addr, sdata->vif.addr, ETH_ALEN);
Johannes Bergfa9029f2010-02-25 15:13:11 +01001700 break;
1701 }
1702 /* keep default if no AP interface present */
1703 break;
Johannes Berg6d711172012-06-19 17:19:44 +02001704 case NL80211_IFTYPE_P2P_CLIENT:
1705 case NL80211_IFTYPE_P2P_GO:
Johannes Berg30686bf2015-06-02 21:39:54 +02001706 if (ieee80211_hw_check(&local->hw, P2P_DEV_ADDR_FOR_INTF)) {
Johannes Berg6d711172012-06-19 17:19:44 +02001707 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. Silvafc0561d2020-07-07 15:45:48 -05001716 fallthrough;
Johannes Bergfa9029f2010-02-25 15:13:11 +01001717 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) {
dingtianhong496d7e82013-12-26 19:40:56 +08001723 if (ether_addr_equal(local->hw.wiphy->addresses[i].addr,
1724 sdata->vif.addr)) {
Johannes Bergfa9029f2010-02-25 15:13:11 +01001725 used = true;
1726 break;
1727 }
1728 }
1729
1730 if (!used) {
Johannes Bergf142c6b2012-06-18 20:07:15 +02001731 memcpy(perm_addr,
Johannes Bergfa9029f2010-02-25 15:13:11 +01001732 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 Bergbdcbd8e2012-06-22 11:29:50 +02001749 pr_info("not contiguous\n");
Johannes Bergfa9029f2010-02-25 15:13:11 +01001750 break;
1751 }
1752
Helmut Schaaac209762013-05-27 10:43:09 +02001753 /*
1754 * Pick address of existing interface in case user changed
1755 * MAC address manually, default to perm_addr.
1756 */
Johannes Bergfa9029f2010-02-25 15:13:11 +01001757 m = local->hw.wiphy->perm_addr;
Helmut Schaaac209762013-05-27 10:43:09 +02001758 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 Bergfa9029f2010-02-25 15:13:11 +01001764 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) {
dingtianhong496d7e82013-12-26 19:40:56 +08001784 if (ether_addr_equal(tmp_addr, sdata->vif.addr)) {
Johannes Bergfa9029f2010-02-25 15:13:11 +01001785 used = true;
1786 break;
1787 }
1788 }
1789
1790 if (!used) {
Johannes Bergf142c6b2012-06-18 20:07:15 +02001791 memcpy(perm_addr, tmp_addr, ETH_ALEN);
Johannes Bergfa9029f2010-02-25 15:13:11 +01001792 break;
1793 }
1794 addr = (start & ~mask) | (val & mask);
1795 } while (addr != start);
1796
1797 break;
1798 }
1799
Johannes Berg6d711172012-06-19 17:19:44 +02001800 out_unlock:
Johannes Bergfa9029f2010-02-25 15:13:11 +01001801 mutex_unlock(&local->iflist_mtx);
1802}
1803
Johannes Berg3e122be2008-07-09 14:40:34 +02001804int ieee80211_if_add(struct ieee80211_local *local, const char *name,
Tom Gundersen6bab2e192015-03-18 11:13:39 +01001805 unsigned char name_assign_type,
Johannes Berg84efbb82012-06-16 00:00:26 +02001806 struct wireless_dev **new_wdev, enum nl80211_iftype type,
Luis Carlos Coboee385852008-02-23 15:17:11 +01001807 struct vif_params *params)
Jiri Bencf0706e82007-05-05 11:45:53 -07001808{
Johannes Bergf142c6b2012-06-18 20:07:15 +02001809 struct net_device *ndev = NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -07001810 struct ieee80211_sub_if_data *sdata = NULL;
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001811 struct txq_info *txqi;
Michal Kazior80a83cf2016-05-19 10:37:48 +02001812 void (*if_setup)(struct net_device *dev);
Johannes Berg75636522008-07-09 14:40:35 +02001813 int ret, i;
Johannes Bergded81f62012-03-28 11:04:26 +02001814 int txqs = 1;
Jiri Bencf0706e82007-05-05 11:45:53 -07001815
1816 ASSERT_RTNL();
Johannes Berg75636522008-07-09 14:40:35 +02001817
Ayala Beker708d50e2016-09-20 17:31:14 +03001818 if (type == NL80211_IFTYPE_P2P_DEVICE || type == NL80211_IFTYPE_NAN) {
Johannes Bergf142c6b2012-06-18 20:07:15 +02001819 struct wireless_dev *wdev;
Johannes Bergded81f62012-03-28 11:04:26 +02001820
Johannes Bergf142c6b2012-06-18 20:07:15 +02001821 sdata = kzalloc(sizeof(*sdata) + local->hw.vif_data_size,
1822 GFP_KERNEL);
1823 if (!sdata)
1824 return -ENOMEM;
1825 wdev = &sdata->wdev;
Jiri Bencf0706e82007-05-05 11:45:53 -07001826
Johannes Bergf142c6b2012-06-18 20:07:15 +02001827 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 Fietkauba8c3d62015-03-27 21:30:37 +01001832 int size = ALIGN(sizeof(*sdata) + local->hw.vif_data_size,
1833 sizeof(void *));
1834 int txq_size = 0;
1835
Johannes Berg79af1f82017-06-22 12:20:29 +02001836 if (local->ops->wake_tx_queue &&
1837 type != NL80211_IFTYPE_AP_VLAN &&
Felix Fietkau8105f9b2018-09-22 18:35:31 +02001838 (type != NL80211_IFTYPE_MONITOR ||
1839 (params->flags & MONITOR_FLAG_ACTIVE)))
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001840 txq_size += sizeof(struct txq_info) +
1841 local->hw.txq_data_size;
1842
Johannes Bergdbd50a82019-04-08 14:39:11 +02001843 if (local->ops->wake_tx_queue) {
Michal Kazior80a83cf2016-05-19 10:37:48 +02001844 if_setup = ieee80211_if_setup_no_queue;
Johannes Bergdbd50a82019-04-08 14:39:11 +02001845 } else {
Michal Kazior80a83cf2016-05-19 10:37:48 +02001846 if_setup = ieee80211_if_setup;
Johannes Bergdbd50a82019-04-08 14:39:11 +02001847 if (local->hw.queues >= IEEE80211_NUM_ACS)
1848 txqs = IEEE80211_NUM_ACS;
1849 }
Johannes Bergf3994ec2008-05-12 20:51:44 -07001850
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001851 ndev = alloc_netdev_mqs(size + txq_size,
Tom Gundersen6bab2e192015-03-18 11:13:39 +01001852 name, name_assign_type,
Michal Kazior80a83cf2016-05-19 10:37:48 +02001853 if_setup, txqs, 1);
Johannes Bergf142c6b2012-06-18 20:07:15 +02001854 if (!ndev)
1855 return -ENOMEM;
John Crispin1f6e0ba2020-02-11 13:26:04 +01001856
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 Bergf142c6b2012-06-18 20:07:15 +02001860 dev_net_set(ndev, wiphy_net(local->hw.wiphy));
Thadeu Lima de Souza Cascardo59e7e702011-06-02 17:28:37 -03001861
Johannes Berg5a490512015-04-22 17:10:38 +02001862 ndev->tstats = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
1863 if (!ndev->tstats) {
1864 free_netdev(ndev);
1865 return -ENOMEM;
1866 }
1867
Johannes Bergf142c6b2012-06-18 20:07:15 +02001868 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 Bencf0706e82007-05-05 11:45:53 -07001876
Johannes Bergf142c6b2012-06-18 20:07:15 +02001877 ret = dev_alloc_name(ndev, ndev->name);
1878 if (ret < 0) {
Johannes Berge6436be2016-04-26 13:47:08 +02001879 ieee80211_if_free(ndev);
Johannes Bergc7a61cb2017-06-09 21:33:09 +02001880 free_netdev(ndev);
Johannes Bergf142c6b2012-06-18 20:07:15 +02001881 return ret;
1882 }
1883
1884 ieee80211_assign_perm_addr(local, ndev->perm_addr, type);
Johannes Bergdd665d22018-12-15 11:03:11 +02001885 if (is_valid_ether_addr(params->macaddr))
Ben Greearb5dfae02014-10-22 12:23:06 -07001886 memcpy(ndev->dev_addr, params->macaddr, ETH_ALEN);
1887 else
1888 memcpy(ndev->dev_addr, ndev->perm_addr, ETH_ALEN);
Johannes Bergf142c6b2012-06-18 20:07:15 +02001889 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 Fietkauba8c3d62015-03-27 21:30:37 +01001897 if (txq_size) {
1898 txqi = netdev_priv(ndev) + size;
Michal Kaziorfa962b92016-05-19 10:37:49 +02001899 ieee80211_txq_init(sdata, NULL, txqi, 0);
Felix Fietkauba8c3d62015-03-27 21:30:37 +01001900 }
1901
Johannes Bergf142c6b2012-06-18 20:07:15 +02001902 sdata->dev = ndev;
1903 }
Johannes Berg75636522008-07-09 14:40:35 +02001904
1905 /* initialise type-independent data */
Jiri Bencf0706e82007-05-05 11:45:53 -07001906 sdata->wdev.wiphy = local->hw.wiphy;
Jiri Bencf0706e82007-05-05 11:45:53 -07001907 sdata->local = local;
Johannes Berg75636522008-07-09 14:40:35 +02001908
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 Wunderlich164eb022013-02-08 18:16:20 +01001914 INIT_DELAYED_WORK(&sdata->dfs_cac_timer_work,
1915 ieee80211_dfs_cac_timer_work);
Johannes Berg8d1f7ec2013-02-23 00:59:03 +01001916 INIT_DELAYED_WORK(&sdata->dec_tailroom_needed_wk,
1917 ieee80211_delayed_tailroom_dec);
Johannes Berg97f97b12012-12-13 22:54:58 +01001918
Johannes Berg57fbcce2016-04-12 15:56:15 +02001919 for (i = 0; i < NUM_NL80211_BANDS; i++) {
Jouni Malinen37eb0b12010-01-06 13:09:08 +02001920 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 Bianconib119ad62015-08-06 23:47:33 +02001924 if (sband) {
1925 __le16 cap;
1926 u16 *vht_rate_mask;
1927
Simon Wunderlich19468412012-01-28 17:25:33 +01001928 memcpy(sdata->rc_rateidx_mcs_mask[i],
1929 sband->ht_cap.mcs.rx_mask,
1930 sizeof(sdata->rc_rateidx_mcs_mask[i]));
Lorenzo Bianconib119ad62015-08-06 23:47:33 +02001931
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 Wunderlich19468412012-01-28 17:25:33 +01001936 memset(sdata->rc_rateidx_mcs_mask[i], 0,
1937 sizeof(sdata->rc_rateidx_mcs_mask[i]));
Lorenzo Bianconib119ad62015-08-06 23:47:33 +02001938 memset(sdata->rc_rateidx_vht_mcs_mask[i], 0,
1939 sizeof(sdata->rc_rateidx_vht_mcs_mask[i]));
1940 }
Jouni Malinen37eb0b12010-01-06 13:09:08 +02001941 }
Johannes Berg75636522008-07-09 14:40:35 +02001942
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001943 ieee80211_set_default_queues(sdata);
1944
Johannes Berg1ea6f9c2012-10-24 10:59:25 +02001945 sdata->ap_power_level = IEEE80211_UNSET_POWER_LEVEL;
1946 sdata->user_power_level = local->user_power_level;
1947
Max Stepanov2475b1cc2013-03-24 14:23:27 +02001948 sdata->encrypt_headroom = IEEE80211_ENCRYPT_HEADROOM;
1949
Johannes Berg75636522008-07-09 14:40:35 +02001950 /* setup type-dependent data */
1951 ieee80211_setup_sdata(sdata, type);
Jiri Bencf0706e82007-05-05 11:45:53 -07001952
Johannes Bergf142c6b2012-06-18 20:07:15 +02001953 if (ndev) {
Johannes Bergdd665d22018-12-15 11:03:11 +02001954 ndev->ieee80211_ptr->use_4addr = params->use_4addr;
1955 if (type == NL80211_IFTYPE_STATION)
1956 sdata->u.mgd.use_4addr = params->use_4addr;
Johannes Bergf142c6b2012-06-18 20:07:15 +02001957
1958 ndev->features |= local->hw.netdev_features;
Johannes Berg07b83d22020-01-31 13:12:46 +02001959 ndev->hw_features |= ndev->features &
1960 MAC80211_SUPPORTED_FEATURES_TX;
Johannes Bergf142c6b2012-06-18 20:07:15 +02001961
Johannes Bergb7ffbd72014-06-04 17:31:56 +02001962 netdev_set_default_ethtool_ops(ndev, &ieee80211_ethtool_ops);
1963
Jarod Wilson9c22b4a2016-10-20 13:55:18 -04001964 /* MTU range: 256 - 2304 */
1965 ndev->min_mtu = 256;
Wen Gong06354662019-09-06 10:48:57 +08001966 ndev->max_mtu = local->hw.max_mtu;
Jarod Wilson9c22b4a2016-10-20 13:55:18 -04001967
Johannes Bergf142c6b2012-06-18 20:07:15 +02001968 ret = register_netdevice(ndev);
1969 if (ret) {
David S. Millercf124db2017-05-08 12:52:56 -04001970 free_netdev(ndev);
Johannes Bergf142c6b2012-06-18 20:07:15 +02001971 return ret;
1972 }
Johannes Berg9bc383d2009-11-19 11:55:19 +01001973 }
1974
Johannes Bergc771c9d2009-01-23 22:54:03 +01001975 mutex_lock(&local->iflist_mtx);
Johannes Berg79010422007-09-18 17:29:21 -04001976 list_add_tail_rcu(&sdata->list, &local->interfaces);
Johannes Bergc771c9d2009-01-23 22:54:03 +01001977 mutex_unlock(&local->iflist_mtx);
Johannes Berg79010422007-09-18 17:29:21 -04001978
Johannes Berg84efbb82012-06-16 00:00:26 +02001979 if (new_wdev)
1980 *new_wdev = &sdata->wdev;
Jiri Bencf0706e82007-05-05 11:45:53 -07001981
Jiri Bencf0706e82007-05-05 11:45:53 -07001982 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -07001983}
1984
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001985void ieee80211_if_remove(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -07001986{
Jiri Bencf0706e82007-05-05 11:45:53 -07001987 ASSERT_RTNL();
Johannes Berg11a843b2007-08-28 17:01:55 -04001988
Johannes Bergc771c9d2009-01-23 22:54:03 +01001989 mutex_lock(&sdata->local->iflist_mtx);
Johannes Berg75636522008-07-09 14:40:35 +02001990 list_del_rcu(&sdata->list);
Johannes Bergc771c9d2009-01-23 22:54:03 +01001991 mutex_unlock(&sdata->local->iflist_mtx);
1992
Bhagavathi Perumal Sf1267cf2019-04-16 12:54:40 +05301993 if (sdata->vif.txq)
1994 ieee80211_txq_purge(sdata->local, to_txq_info(sdata->vif.txq));
1995
Johannes Berg75636522008-07-09 14:40:35 +02001996 synchronize_rcu();
Johannes Bergf142c6b2012-06-18 20:07:15 +02001997
1998 if (sdata->dev) {
1999 unregister_netdevice(sdata->dev);
2000 } else {
2001 cfg80211_unregister_wdev(&sdata->wdev);
Eliad Peller835112b2015-11-17 10:24:40 +02002002 ieee80211_teardown_sdata(sdata);
Johannes Bergf142c6b2012-06-18 20:07:15 +02002003 kfree(sdata);
2004 }
2005}
2006
2007void 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 Bencf0706e82007-05-05 11:45:53 -07002012}
2013
Johannes Berg75636522008-07-09 14:40:35 +02002014void ieee80211_remove_interfaces(struct ieee80211_local *local)
Jiri Bencf0706e82007-05-05 11:45:53 -07002015{
Johannes Berg75636522008-07-09 14:40:35 +02002016 struct ieee80211_sub_if_data *sdata, *tmp;
Eric Dumazetefe117a2009-11-05 11:06:40 +01002017 LIST_HEAD(unreg_list);
Johannes Bergf142c6b2012-06-18 20:07:15 +02002018 LIST_HEAD(wdev_list);
Jiri Bencf0706e82007-05-05 11:45:53 -07002019
2020 ASSERT_RTNL();
2021
Johannes Bergd8d90082015-07-08 15:41:50 +03002022 /* 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 Bergc8aa22d2013-05-24 01:06:09 +02002032 */
Johannes Bergd8d90082015-07-08 15:41:50 +03002033 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 Bergc8aa22d2013-05-24 01:06:09 +02002037
Sara Sharona50e5fb2018-12-15 11:03:10 +02002038 ieee80211_txq_teardown_flows(local);
2039
Eric Dumazetefe117a2009-11-05 11:06:40 +01002040 mutex_lock(&local->iflist_mtx);
Johannes Berg75636522008-07-09 14:40:35 +02002041 list_for_each_entry_safe(sdata, tmp, &local->interfaces, list) {
2042 list_del(&sdata->list);
Johannes Bergc771c9d2009-01-23 22:54:03 +01002043
Johannes Bergf142c6b2012-06-18 20:07:15 +02002044 if (sdata->dev)
2045 unregister_netdevice_queue(sdata->dev, &unreg_list);
2046 else
2047 list_add(&sdata->list, &wdev_list);
Jiri Bencf0706e82007-05-05 11:45:53 -07002048 }
Eric Dumazetefe117a2009-11-05 11:06:40 +01002049 mutex_unlock(&local->iflist_mtx);
2050 unregister_netdevice_many(&unreg_list);
Johannes Bergf142c6b2012-06-18 20:07:15 +02002051
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 Bencf0706e82007-05-05 11:45:53 -07002057}
Johannes Berg5cff20e2009-04-29 12:26:17 +02002058
Johannes Berg47846c92009-11-25 17:46:19 +01002059static int netdev_notify(struct notifier_block *nb,
Jiri Pirko351638e2013-05-28 01:30:21 +00002060 unsigned long state, void *ptr)
Johannes Berg47846c92009-11-25 17:46:19 +01002061{
Jiri Pirko351638e2013-05-28 01:30:21 +00002062 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Johannes Berg47846c92009-11-25 17:46:19 +01002063 struct ieee80211_sub_if_data *sdata;
2064
2065 if (state != NETDEV_CHANGENAME)
Zhao, Gang8bd811a2014-04-21 12:53:05 +08002066 return NOTIFY_DONE;
Johannes Berg47846c92009-11-25 17:46:19 +01002067
2068 if (!dev->ieee80211_ptr || !dev->ieee80211_ptr->wiphy)
Zhao, Gang8bd811a2014-04-21 12:53:05 +08002069 return NOTIFY_DONE;
Johannes Berg47846c92009-11-25 17:46:19 +01002070
2071 if (dev->ieee80211_ptr->wiphy->privid != mac80211_wiphy_privid)
Zhao, Gang8bd811a2014-04-21 12:53:05 +08002072 return NOTIFY_DONE;
Johannes Berg47846c92009-11-25 17:46:19 +01002073
2074 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg2f5265e2010-02-12 10:45:05 +01002075 memcpy(sdata->name, dev->name, IFNAMSIZ);
Johannes Berg47846c92009-11-25 17:46:19 +01002076 ieee80211_debugfs_rename_netdev(sdata);
Zhao, Gang8bd811a2014-04-21 12:53:05 +08002077
2078 return NOTIFY_OK;
Johannes Berg47846c92009-11-25 17:46:19 +01002079}
2080
2081static struct notifier_block mac80211_netdev_notifier = {
2082 .notifier_call = netdev_notify,
2083};
2084
2085int ieee80211_iface_init(void)
2086{
2087 return register_netdevice_notifier(&mac80211_netdev_notifier);
2088}
2089
2090void ieee80211_iface_exit(void)
2091{
2092 unregister_netdevice_notifier(&mac80211_netdev_notifier);
2093}
Michael Braun72f15d52016-10-10 19:12:21 +02002094
2095void 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
2103void 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}