blob: c65a03ba809f8b3d14b1f257b96da4dca0f386b0 [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
Johannes Berg0d143fe2008-09-11 00:01:59 +02002 * Interface handling (except master interface)
3 *
Jiri Bencf0706e82007-05-05 11:45:53 -07004 * Copyright 2002-2005, Instant802 Networks, Inc.
5 * Copyright 2005-2006, Devicescape Software, Inc.
6 * Copyright (c) 2006 Jiri Benc <jbenc@suse.cz>
Johannes Berg75636522008-07-09 14:40:35 +02007 * Copyright 2008, Johannes Berg <johannes@sipsolutions.net>
Jiri Bencf0706e82007-05-05 11:45:53 -07008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
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
45
Johannes Bergcc45ae52012-06-21 22:30:52 +020046static u32 ieee80211_idle_off(struct ieee80211_local *local,
47 const char *reason)
48{
49 if (!(local->hw.conf.flags & IEEE80211_CONF_IDLE))
50 return 0;
51
52 local->hw.conf.flags &= ~IEEE80211_CONF_IDLE;
53 return IEEE80211_CONF_CHANGE_IDLE;
54}
55
56static u32 ieee80211_idle_on(struct ieee80211_local *local)
57{
58 if (local->hw.conf.flags & IEEE80211_CONF_IDLE)
59 return 0;
60
61 drv_flush(local, false);
62
63 local->hw.conf.flags |= IEEE80211_CONF_IDLE;
64 return IEEE80211_CONF_CHANGE_IDLE;
65}
66
67static u32 __ieee80211_recalc_idle(struct ieee80211_local *local)
68{
69 struct ieee80211_sub_if_data *sdata;
70 int count = 0;
71 bool working = false, scanning = false;
72 unsigned int led_trig_start = 0, led_trig_stop = 0;
73 struct ieee80211_roc_work *roc;
74
75#ifdef CONFIG_PROVE_LOCKING
76 WARN_ON(debug_locks && !lockdep_rtnl_is_held() &&
77 !lockdep_is_held(&local->iflist_mtx));
78#endif
79 lockdep_assert_held(&local->mtx);
80
81 list_for_each_entry(sdata, &local->interfaces, list) {
82 if (!ieee80211_sdata_running(sdata)) {
83 sdata->vif.bss_conf.idle = true;
84 continue;
85 }
86
87 sdata->old_idle = sdata->vif.bss_conf.idle;
88
89 /* do not count disabled managed interfaces */
90 if (sdata->vif.type == NL80211_IFTYPE_STATION &&
91 !sdata->u.mgd.associated &&
92 !sdata->u.mgd.auth_data &&
93 !sdata->u.mgd.assoc_data) {
94 sdata->vif.bss_conf.idle = true;
95 continue;
96 }
97 /* do not count unused IBSS interfaces */
98 if (sdata->vif.type == NL80211_IFTYPE_ADHOC &&
99 !sdata->u.ibss.ssid_len) {
100 sdata->vif.bss_conf.idle = true;
101 continue;
102 }
103 /* count everything else */
104 sdata->vif.bss_conf.idle = false;
105 count++;
106 }
107
108 if (!local->ops->remain_on_channel) {
109 list_for_each_entry(roc, &local->roc_list, list) {
110 working = true;
111 roc->sdata->vif.bss_conf.idle = false;
112 }
113 }
114
Johannes Berge2fd5db2012-07-06 21:39:28 +0200115 sdata = rcu_dereference_protected(local->scan_sdata,
116 lockdep_is_held(&local->mtx));
117 if (sdata && !(local->hw.flags & IEEE80211_HW_SCAN_WHILE_IDLE)) {
Johannes Bergcc45ae52012-06-21 22:30:52 +0200118 scanning = true;
Johannes Berge2fd5db2012-07-06 21:39:28 +0200119 sdata->vif.bss_conf.idle = false;
Johannes Bergcc45ae52012-06-21 22:30:52 +0200120 }
121
122 list_for_each_entry(sdata, &local->interfaces, list) {
123 if (sdata->vif.type == NL80211_IFTYPE_MONITOR ||
124 sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
125 continue;
126 if (sdata->old_idle == sdata->vif.bss_conf.idle)
127 continue;
128 if (!ieee80211_sdata_running(sdata))
129 continue;
130 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_IDLE);
131 }
132
133 if (working || scanning)
134 led_trig_start |= IEEE80211_TPT_LEDTRIG_FL_WORK;
135 else
136 led_trig_stop |= IEEE80211_TPT_LEDTRIG_FL_WORK;
137
138 if (count)
139 led_trig_start |= IEEE80211_TPT_LEDTRIG_FL_CONNECTED;
140 else
141 led_trig_stop |= IEEE80211_TPT_LEDTRIG_FL_CONNECTED;
142
143 ieee80211_mod_tpt_led_trig(local, led_trig_start, led_trig_stop);
144
145 if (working)
146 return ieee80211_idle_off(local, "working");
147 if (scanning)
148 return ieee80211_idle_off(local, "scanning");
149 if (!count)
150 return ieee80211_idle_on(local);
151 else
152 return ieee80211_idle_off(local, "in use");
153
154 return 0;
155}
156
157void ieee80211_recalc_idle(struct ieee80211_local *local)
158{
159 u32 chg;
160
161 mutex_lock(&local->iflist_mtx);
162 chg = __ieee80211_recalc_idle(local);
163 mutex_unlock(&local->iflist_mtx);
164 if (chg)
165 ieee80211_hw_config(local, chg);
166}
167
Johannes Berg0d143fe2008-09-11 00:01:59 +0200168static int ieee80211_change_mtu(struct net_device *dev, int new_mtu)
169{
170 int meshhdrlen;
171 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
172
173 meshhdrlen = (sdata->vif.type == NL80211_IFTYPE_MESH_POINT) ? 5 : 0;
174
175 /* FIX: what would be proper limits for MTU?
176 * This interface uses 802.3 frames. */
177 if (new_mtu < 256 ||
178 new_mtu > IEEE80211_MAX_DATA_LEN - 24 - 6 - meshhdrlen) {
179 return -EINVAL;
180 }
181
Johannes Berg0d143fe2008-09-11 00:01:59 +0200182 dev->mtu = new_mtu;
183 return 0;
184}
185
Johannes Berg47846c92009-11-25 17:46:19 +0100186static int ieee80211_change_mac(struct net_device *dev, void *addr)
187{
188 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Kalle Valofc5f7572009-12-30 15:54:03 +0200189 struct sockaddr *sa = addr;
Johannes Berg47846c92009-11-25 17:46:19 +0100190 int ret;
191
Johannes Berg9607e6b2009-12-23 13:15:31 +0100192 if (ieee80211_sdata_running(sdata))
Johannes Berg47846c92009-11-25 17:46:19 +0100193 return -EBUSY;
194
Kalle Valofc5f7572009-12-30 15:54:03 +0200195 ret = eth_mac_addr(dev, sa);
Johannes Berg47846c92009-11-25 17:46:19 +0100196
197 if (ret == 0)
Kalle Valofc5f7572009-12-30 15:54:03 +0200198 memcpy(sdata->vif.addr, sa->sa_data, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100199
200 return ret;
201}
202
Johannes Berg0d143fe2008-09-11 00:01:59 +0200203static inline int identical_mac_addr_allowed(int type1, int type2)
204{
205 return type1 == NL80211_IFTYPE_MONITOR ||
206 type2 == NL80211_IFTYPE_MONITOR ||
207 (type1 == NL80211_IFTYPE_AP && type2 == NL80211_IFTYPE_WDS) ||
208 (type1 == NL80211_IFTYPE_WDS &&
209 (type2 == NL80211_IFTYPE_WDS ||
210 type2 == NL80211_IFTYPE_AP)) ||
211 (type1 == NL80211_IFTYPE_AP && type2 == NL80211_IFTYPE_AP_VLAN) ||
212 (type1 == NL80211_IFTYPE_AP_VLAN &&
213 (type2 == NL80211_IFTYPE_AP ||
214 type2 == NL80211_IFTYPE_AP_VLAN));
215}
216
Johannes Berg87490f62010-08-27 12:35:57 +0200217static int ieee80211_check_concurrent_iface(struct ieee80211_sub_if_data *sdata,
218 enum nl80211_iftype iftype)
Johannes Berg0d143fe2008-09-11 00:01:59 +0200219{
Johannes Bergb4a4bf52008-09-26 13:34:54 +0200220 struct ieee80211_local *local = sdata->local;
Johannes Berg87490f62010-08-27 12:35:57 +0200221 struct ieee80211_sub_if_data *nsdata;
Johannes Berg0d143fe2008-09-11 00:01:59 +0200222
Johannes Berg87490f62010-08-27 12:35:57 +0200223 ASSERT_RTNL();
Johannes Berg0d143fe2008-09-11 00:01:59 +0200224
225 /* we hold the RTNL here so can safely walk the list */
226 list_for_each_entry(nsdata, &local->interfaces, list) {
Johannes Berg371a2552012-06-19 15:54:05 +0200227 if (nsdata != sdata && ieee80211_sdata_running(nsdata)) {
Johannes Berg0d143fe2008-09-11 00:01:59 +0200228 /*
229 * Allow only a single IBSS interface to be up at any
230 * time. This is restricted because beacon distribution
231 * cannot work properly if both are in the same IBSS.
232 *
233 * To remove this restriction we'd have to disallow them
234 * from setting the same SSID on different IBSS interfaces
235 * belonging to the same hardware. Then, however, we're
236 * faced with having to adopt two different TSF timers...
237 */
Johannes Berg87490f62010-08-27 12:35:57 +0200238 if (iftype == NL80211_IFTYPE_ADHOC &&
Johannes Berg0d143fe2008-09-11 00:01:59 +0200239 nsdata->vif.type == NL80211_IFTYPE_ADHOC)
240 return -EBUSY;
241
242 /*
243 * The remaining checks are only performed for interfaces
244 * with the same MAC address.
245 */
Johannes Berg371a2552012-06-19 15:54:05 +0200246 if (!ether_addr_equal(sdata->vif.addr,
247 nsdata->vif.addr))
Johannes Berg0d143fe2008-09-11 00:01:59 +0200248 continue;
249
250 /*
251 * check whether it may have the same address
252 */
Johannes Berg87490f62010-08-27 12:35:57 +0200253 if (!identical_mac_addr_allowed(iftype,
Johannes Berg0d143fe2008-09-11 00:01:59 +0200254 nsdata->vif.type))
255 return -ENOTUNIQ;
256
257 /*
258 * can only add VLANs to enabled APs
259 */
Johannes Berg87490f62010-08-27 12:35:57 +0200260 if (iftype == NL80211_IFTYPE_AP_VLAN &&
Johannes Berg0d143fe2008-09-11 00:01:59 +0200261 nsdata->vif.type == NL80211_IFTYPE_AP)
262 sdata->bss = &nsdata->u.ap;
263 }
264 }
265
Johannes Berg87490f62010-08-27 12:35:57 +0200266 return 0;
267}
268
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200269static int ieee80211_check_queues(struct ieee80211_sub_if_data *sdata)
270{
271 int n_queues = sdata->local->hw.queues;
272 int i;
273
274 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
275 if (WARN_ON_ONCE(sdata->vif.hw_queue[i] ==
276 IEEE80211_INVAL_HW_QUEUE))
277 return -EINVAL;
278 if (WARN_ON_ONCE(sdata->vif.hw_queue[i] >=
279 n_queues))
280 return -EINVAL;
281 }
282
Luciano Coelhobb3e10f2012-04-12 16:09:49 +0300283 if ((sdata->vif.type != NL80211_IFTYPE_AP) ||
284 !(sdata->local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)) {
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200285 sdata->vif.cab_queue = IEEE80211_INVAL_HW_QUEUE;
286 return 0;
287 }
288
289 if (WARN_ON_ONCE(sdata->vif.cab_queue == IEEE80211_INVAL_HW_QUEUE))
290 return -EINVAL;
291
292 if (WARN_ON_ONCE(sdata->vif.cab_queue >= n_queues))
293 return -EINVAL;
294
295 return 0;
296}
297
Christian Lamparter85416a42010-10-02 13:17:07 +0200298void ieee80211_adjust_monitor_flags(struct ieee80211_sub_if_data *sdata,
299 const int offset)
300{
301 struct ieee80211_local *local = sdata->local;
302 u32 flags = sdata->u.mntr_flags;
303
304#define ADJUST(_f, _s) do { \
305 if (flags & MONITOR_FLAG_##_f) \
306 local->fif_##_s += offset; \
307 } while (0)
308
309 ADJUST(FCSFAIL, fcsfail);
310 ADJUST(PLCPFAIL, plcpfail);
311 ADJUST(CONTROL, control);
312 ADJUST(CONTROL, pspoll);
313 ADJUST(OTHER_BSS, other_bss);
314
315#undef ADJUST
316}
317
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200318static void ieee80211_set_default_queues(struct ieee80211_sub_if_data *sdata)
319{
320 struct ieee80211_local *local = sdata->local;
321 int i;
322
323 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
324 if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)
325 sdata->vif.hw_queue[i] = IEEE80211_INVAL_HW_QUEUE;
Johannes Berga9d3c052012-05-07 17:45:29 +0200326 else if (local->hw.queues >= IEEE80211_NUM_ACS)
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200327 sdata->vif.hw_queue[i] = i;
Johannes Berga9d3c052012-05-07 17:45:29 +0200328 else
329 sdata->vif.hw_queue[i] = 0;
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200330 }
331 sdata->vif.cab_queue = IEEE80211_INVAL_HW_QUEUE;
332}
333
Johannes Berg075e0842012-07-12 19:28:31 +0200334static int ieee80211_add_virtual_monitor(struct ieee80211_local *local)
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200335{
336 struct ieee80211_sub_if_data *sdata;
Johannes Berg685fb722012-07-11 16:38:09 +0200337 int ret = 0;
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200338
339 if (!(local->hw.flags & IEEE80211_HW_WANT_MONITOR_VIF))
340 return 0;
341
Johannes Berg685fb722012-07-11 16:38:09 +0200342 mutex_lock(&local->iflist_mtx);
343
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200344 if (local->monitor_sdata)
Johannes Berg685fb722012-07-11 16:38:09 +0200345 goto out_unlock;
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200346
347 sdata = kzalloc(sizeof(*sdata) + local->hw.vif_data_size, GFP_KERNEL);
Johannes Berg685fb722012-07-11 16:38:09 +0200348 if (!sdata) {
349 ret = -ENOMEM;
350 goto out_unlock;
351 }
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200352
353 /* set up data */
354 sdata->local = local;
355 sdata->vif.type = NL80211_IFTYPE_MONITOR;
356 snprintf(sdata->name, IFNAMSIZ, "%s-monitor",
357 wiphy_name(local->hw.wiphy));
358
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200359 ieee80211_set_default_queues(sdata);
360
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200361 ret = drv_add_interface(local, sdata);
362 if (WARN_ON(ret)) {
363 /* ok .. stupid driver, it asked for this! */
364 kfree(sdata);
Johannes Berg685fb722012-07-11 16:38:09 +0200365 goto out_unlock;
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200366 }
367
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200368 ret = ieee80211_check_queues(sdata);
369 if (ret) {
370 kfree(sdata);
Johannes Berg685fb722012-07-11 16:38:09 +0200371 goto out_unlock;
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200372 }
373
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200374 rcu_assign_pointer(local->monitor_sdata, sdata);
Johannes Berg685fb722012-07-11 16:38:09 +0200375 out_unlock:
376 mutex_unlock(&local->iflist_mtx);
377 return ret;
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200378}
379
Johannes Berg075e0842012-07-12 19:28:31 +0200380static void ieee80211_del_virtual_monitor(struct ieee80211_local *local)
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200381{
382 struct ieee80211_sub_if_data *sdata;
383
384 if (!(local->hw.flags & IEEE80211_HW_WANT_MONITOR_VIF))
385 return;
386
Johannes Berg685fb722012-07-11 16:38:09 +0200387 mutex_lock(&local->iflist_mtx);
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200388
Johannes Berg685fb722012-07-11 16:38:09 +0200389 sdata = rcu_dereference_protected(local->monitor_sdata,
390 lockdep_is_held(&local->iflist_mtx));
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200391 if (!sdata)
Johannes Berg685fb722012-07-11 16:38:09 +0200392 goto out_unlock;
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200393
394 rcu_assign_pointer(local->monitor_sdata, NULL);
395 synchronize_net();
396
397 drv_remove_interface(local, sdata);
398
399 kfree(sdata);
Johannes Berg685fb722012-07-11 16:38:09 +0200400 out_unlock:
401 mutex_unlock(&local->iflist_mtx);
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200402}
403
Johannes Berg34d4bc4d2010-08-27 12:35:58 +0200404/*
405 * NOTE: Be very careful when changing this function, it must NOT return
406 * an error on interface type changes that have been pre-checked, so most
407 * checks should be in ieee80211_check_concurrent_iface.
408 */
409static int ieee80211_do_open(struct net_device *dev, bool coming_up)
Johannes Berg87490f62010-08-27 12:35:57 +0200410{
411 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
412 struct ieee80211_local *local = sdata->local;
413 struct sta_info *sta;
414 u32 changed = 0;
415 int res;
416 u32 hw_reconf_flags = 0;
417
Johannes Berg0d143fe2008-09-11 00:01:59 +0200418 switch (sdata->vif.type) {
419 case NL80211_IFTYPE_WDS:
420 if (!is_valid_ether_addr(sdata->u.wds.remote_addr))
421 return -ENOLINK;
422 break;
Johannes Berg665c93a2011-11-04 11:18:11 +0100423 case NL80211_IFTYPE_AP_VLAN: {
424 struct ieee80211_sub_if_data *master;
425
Johannes Berg0d143fe2008-09-11 00:01:59 +0200426 if (!sdata->bss)
427 return -ENOLINK;
Johannes Berg665c93a2011-11-04 11:18:11 +0100428
Johannes Berg0d143fe2008-09-11 00:01:59 +0200429 list_add(&sdata->u.vlan.list, &sdata->bss->vlans);
Johannes Berg665c93a2011-11-04 11:18:11 +0100430
431 master = container_of(sdata->bss,
432 struct ieee80211_sub_if_data, u.ap);
433 sdata->control_port_protocol =
434 master->control_port_protocol;
435 sdata->control_port_no_encrypt =
436 master->control_port_no_encrypt;
Johannes Berg0d143fe2008-09-11 00:01:59 +0200437 break;
Johannes Berg665c93a2011-11-04 11:18:11 +0100438 }
Johannes Berg0d143fe2008-09-11 00:01:59 +0200439 case NL80211_IFTYPE_AP:
440 sdata->bss = &sdata->u.ap;
441 break;
442 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg0d143fe2008-09-11 00:01:59 +0200443 case NL80211_IFTYPE_STATION:
444 case NL80211_IFTYPE_MONITOR:
445 case NL80211_IFTYPE_ADHOC:
446 /* no special treatment */
447 break;
448 case NL80211_IFTYPE_UNSPECIFIED:
Johannes Berg2e161f72010-08-12 15:38:38 +0200449 case NUM_NL80211_IFTYPES:
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200450 case NL80211_IFTYPE_P2P_CLIENT:
451 case NL80211_IFTYPE_P2P_GO:
Johannes Berg0d143fe2008-09-11 00:01:59 +0200452 /* cannot happen */
453 WARN_ON(1);
454 break;
455 }
456
457 if (local->open_count == 0) {
Johannes Berg24487982009-04-23 18:52:52 +0200458 res = drv_start(local);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200459 if (res)
460 goto err_del_bss;
John W. Linville4e6cbfd2010-07-29 16:14:13 -0400461 if (local->ops->napi_poll)
462 napi_enable(&local->napi);
Johannes Berge8975582008-10-09 12:18:51 +0200463 /* we're brought up, everything changes */
464 hw_reconf_flags = ~0;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200465 ieee80211_led_radio(local, true);
Johannes Berg67408c82010-11-30 08:59:23 +0100466 ieee80211_mod_tpt_led_trig(local,
467 IEEE80211_TPT_LEDTRIG_FL_RADIO, 0);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200468 }
469
470 /*
Johannes Bergbf533e02010-08-27 12:35:56 +0200471 * Copy the hopefully now-present MAC address to
472 * this interface, if it has the special null one.
Johannes Berg0d143fe2008-09-11 00:01:59 +0200473 */
Johannes Bergbf533e02010-08-27 12:35:56 +0200474 if (is_zero_ether_addr(dev->dev_addr)) {
475 memcpy(dev->dev_addr,
476 local->hw.wiphy->perm_addr,
477 ETH_ALEN);
478 memcpy(dev->perm_addr, dev->dev_addr, ETH_ALEN);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200479
Johannes Bergbf533e02010-08-27 12:35:56 +0200480 if (!is_valid_ether_addr(dev->dev_addr)) {
Johannes Berg4d6c36f2012-04-03 14:45:54 +0200481 res = -EADDRNOTAVAIL;
482 goto err_stop;
John W. Linville0adc23f2009-10-06 16:27:18 -0400483 }
Johannes Berg0d143fe2008-09-11 00:01:59 +0200484 }
485
Johannes Berg0d143fe2008-09-11 00:01:59 +0200486 switch (sdata->vif.type) {
487 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg3edaf3e2012-04-03 10:24:00 +0200488 /* no need to tell driver, but set carrier */
489 if (rtnl_dereference(sdata->bss->beacon))
490 netif_carrier_on(dev);
491 else
492 netif_carrier_off(dev);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200493 break;
494 case NL80211_IFTYPE_MONITOR:
495 if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) {
496 local->cooked_mntrs++;
497 break;
498 }
499
Johannes Berg075e0842012-07-12 19:28:31 +0200500 if (local->monitors == 0 && local->open_count == 0) {
501 res = ieee80211_add_virtual_monitor(local);
502 if (res)
503 goto err_stop;
504 }
505
Johannes Berg0d143fe2008-09-11 00:01:59 +0200506 /* must be before the call to ieee80211_configure_filter */
507 local->monitors++;
Johannes Berge8975582008-10-09 12:18:51 +0200508 if (local->monitors == 1) {
Johannes Berg0869aea2009-10-28 10:03:35 +0100509 local->hw.conf.flags |= IEEE80211_CONF_MONITOR;
510 hw_reconf_flags |= IEEE80211_CONF_CHANGE_MONITOR;
Johannes Berge8975582008-10-09 12:18:51 +0200511 }
Johannes Berg0d143fe2008-09-11 00:01:59 +0200512
Christian Lamparter85416a42010-10-02 13:17:07 +0200513 ieee80211_adjust_monitor_flags(sdata, 1);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200514 ieee80211_configure_filter(local);
David Gnedt53e9b1d2010-07-19 20:44:02 +0200515
516 netif_carrier_on(dev);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200517 break;
Johannes Berg0d143fe2008-09-11 00:01:59 +0200518 default:
Johannes Berg34d4bc4d2010-08-27 12:35:58 +0200519 if (coming_up) {
Johannes Berg075e0842012-07-12 19:28:31 +0200520 ieee80211_del_virtual_monitor(local);
521
Johannes Berg7b7eab62011-11-03 14:41:13 +0100522 res = drv_add_interface(local, sdata);
Johannes Berg34d4bc4d2010-08-27 12:35:58 +0200523 if (res)
524 goto err_stop;
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200525 res = ieee80211_check_queues(sdata);
526 if (res)
527 goto err_del_interface;
Johannes Berg34d4bc4d2010-08-27 12:35:58 +0200528 }
Johannes Berg0d143fe2008-09-11 00:01:59 +0200529
Johannes Berg29cbe682010-12-03 09:20:44 +0100530 if (sdata->vif.type == NL80211_IFTYPE_AP) {
Igor Perminove3b90ca2009-08-04 16:48:51 +0400531 local->fif_pspoll++;
Johannes Berg7be50862010-10-13 12:06:24 +0200532 local->fif_probe_req++;
Igor Perminove3b90ca2009-08-04 16:48:51 +0400533
Igor Perminove3b90ca2009-08-04 16:48:51 +0400534 ieee80211_configure_filter(local);
Johannes Berg7be50862010-10-13 12:06:24 +0200535 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
536 local->fif_probe_req++;
Andrey Yurovskya3c9aa52008-10-31 14:50:12 -0700537 }
Igor Perminove3b90ca2009-08-04 16:48:51 +0400538
Johannes Berg0d143fe2008-09-11 00:01:59 +0200539 changed |= ieee80211_reset_erp_info(sdata);
540 ieee80211_bss_info_change_notify(sdata, changed);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200541
Johannes Bergc405c622012-07-30 19:44:12 +0200542 switch (sdata->vif.type) {
543 case NL80211_IFTYPE_STATION:
544 case NL80211_IFTYPE_ADHOC:
545 case NL80211_IFTYPE_AP:
546 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg0d143fe2008-09-11 00:01:59 +0200547 netif_carrier_off(dev);
Johannes Bergc405c622012-07-30 19:44:12 +0200548 break;
549 default:
Johannes Berg0d143fe2008-09-11 00:01:59 +0200550 netif_carrier_on(dev);
Johannes Bergc405c622012-07-30 19:44:12 +0200551 }
Eliad Peller59034592011-10-16 10:57:31 +0200552
553 /*
554 * set default queue parameters so drivers don't
555 * need to initialise the hardware if the hardware
556 * doesn't start up with sane defaults
557 */
Johannes Berg3abead52012-03-02 15:56:59 +0100558 ieee80211_set_wmm_default(sdata, true);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200559 }
560
Johannes Berg2d2080c2010-09-15 15:13:13 +0200561 set_bit(SDATA_STATE_RUNNING, &sdata->state);
562
Johannes Berg0d143fe2008-09-11 00:01:59 +0200563 if (sdata->vif.type == NL80211_IFTYPE_WDS) {
564 /* Create STA entry for the WDS peer */
565 sta = sta_info_alloc(sdata, sdata->u.wds.remote_addr,
566 GFP_KERNEL);
567 if (!sta) {
568 res = -ENOMEM;
569 goto err_del_interface;
570 }
571
Johannes Berg83d5cc02012-01-12 09:31:10 +0100572 sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
573 sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC);
574 sta_info_pre_move_state(sta, IEEE80211_STA_AUTHORIZED);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200575
576 res = sta_info_insert(sta);
577 if (res) {
578 /* STA has been freed */
579 goto err_del_interface;
580 }
Bill Jordan1be7fe82010-10-01 11:20:41 -0400581
582 rate_control_rate_init(sta);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200583 }
584
Johannes Berg0d143fe2008-09-11 00:01:59 +0200585 /*
586 * set_multicast_list will be invoked by the networking core
587 * which will check whether any increments here were done in
588 * error and sync them down to the hardware as filter flags.
589 */
590 if (sdata->flags & IEEE80211_SDATA_ALLMULTI)
591 atomic_inc(&local->iff_allmultis);
592
593 if (sdata->flags & IEEE80211_SDATA_PROMISC)
594 atomic_inc(&local->iff_promiscs);
595
Johannes Berg7da7cc12010-08-05 17:02:38 +0200596 mutex_lock(&local->mtx);
Johannes Berg5cff20e2009-04-29 12:26:17 +0200597 hw_reconf_flags |= __ieee80211_recalc_idle(local);
Johannes Berg7da7cc12010-08-05 17:02:38 +0200598 mutex_unlock(&local->mtx);
Johannes Berg5cff20e2009-04-29 12:26:17 +0200599
Johannes Berg34d4bc4d2010-08-27 12:35:58 +0200600 if (coming_up)
601 local->open_count++;
602
Eliad Peller59034592011-10-16 10:57:31 +0200603 if (hw_reconf_flags)
Johannes Berge8975582008-10-09 12:18:51 +0200604 ieee80211_hw_config(local, hw_reconf_flags);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200605
Johannes Berg10f644a2009-04-16 13:17:25 +0200606 ieee80211_recalc_ps(local, -1);
Johannes Berg965beda2009-04-16 13:17:24 +0200607
John W. Linville8a5b33f2010-01-06 15:39:39 -0500608 netif_tx_start_all_queues(dev);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200609
610 return 0;
611 err_del_interface:
Johannes Berg7b7eab62011-11-03 14:41:13 +0100612 drv_remove_interface(local, sdata);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200613 err_stop:
Johannes Berg24487982009-04-23 18:52:52 +0200614 if (!local->open_count)
615 drv_stop(local);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200616 err_del_bss:
617 sdata->bss = NULL;
618 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
619 list_del(&sdata->u.vlan.list);
Johannes Berg4d6c36f2012-04-03 14:45:54 +0200620 /* might already be clear but that doesn't matter */
Johannes Berg2d2080c2010-09-15 15:13:13 +0200621 clear_bit(SDATA_STATE_RUNNING, &sdata->state);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200622 return res;
623}
624
Johannes Berg34d4bc4d2010-08-27 12:35:58 +0200625static int ieee80211_open(struct net_device *dev)
Johannes Berg0d143fe2008-09-11 00:01:59 +0200626{
627 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg34d4bc4d2010-08-27 12:35:58 +0200628 int err;
629
630 /* fail early if user set an invalid address */
Mohammed Shafi Shajakhan2fcf2822011-07-12 15:19:04 +0530631 if (!is_valid_ether_addr(dev->dev_addr))
Johannes Berg34d4bc4d2010-08-27 12:35:58 +0200632 return -EADDRNOTAVAIL;
633
634 err = ieee80211_check_concurrent_iface(sdata, sdata->vif.type);
635 if (err)
636 return err;
637
638 return ieee80211_do_open(dev, true);
639}
640
641static void ieee80211_do_stop(struct ieee80211_sub_if_data *sdata,
642 bool going_down)
643{
Johannes Berg0d143fe2008-09-11 00:01:59 +0200644 struct ieee80211_local *local = sdata->local;
Johannes Berg5061b0c2009-07-14 00:33:34 +0200645 unsigned long flags;
646 struct sk_buff *skb, *tmp;
Johannes Berge8975582008-10-09 12:18:51 +0200647 u32 hw_reconf_flags = 0;
Johannes Berg5061b0c2009-07-14 00:33:34 +0200648 int i;
Ben Greear2cf22b82011-01-31 11:30:09 -0800649 enum nl80211_channel_type orig_ct;
Johannes Berg0d143fe2008-09-11 00:01:59 +0200650
Rajkumar Manoharanc29acf22011-05-14 09:43:28 +0530651 clear_bit(SDATA_STATE_RUNNING, &sdata->state);
652
Johannes Berge2fd5db2012-07-06 21:39:28 +0200653 if (rcu_access_pointer(local->scan_sdata) == sdata)
Brian Cavagnolo352ffad2010-11-04 16:59:28 -0700654 ieee80211_scan_cancel(local);
655
Johannes Berg0d143fe2008-09-11 00:01:59 +0200656 /*
657 * Stop TX on this interface first.
658 */
Johannes Berg34d4bc4d2010-08-27 12:35:58 +0200659 netif_tx_stop_all_queues(sdata->dev);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200660
Johannes Berg2eb278e2012-06-05 14:28:42 +0200661 ieee80211_roc_purge(sdata);
Johannes Bergaf6b6372009-12-23 13:15:35 +0100662
663 /*
Johannes Berg0d143fe2008-09-11 00:01:59 +0200664 * Remove all stations associated with this interface.
665 *
666 * This must be done before calling ops->remove_interface()
667 * because otherwise we can later invoke ops->sta_notify()
668 * whenever the STAs are removed, and that invalidates driver
669 * assumptions about always getting a vif pointer that is valid
670 * (because if we remove a STA after ops->remove_interface()
671 * the driver will have removed the vif info already!)
672 *
Johannes Bergb9dcf712010-08-27 12:35:54 +0200673 * This is relevant only in AP, WDS and mesh modes, since in
674 * all other modes we've already removed all stations when
675 * disconnecting etc.
Johannes Berg0d143fe2008-09-11 00:01:59 +0200676 */
677 sta_info_flush(local, sdata);
678
679 /*
680 * Don't count this interface for promisc/allmulti while it
681 * is down. dev_mc_unsync() will invoke set_multicast_list
682 * on the master interface which will sync these down to the
683 * hardware as filter flags.
684 */
685 if (sdata->flags & IEEE80211_SDATA_ALLMULTI)
686 atomic_dec(&local->iff_allmultis);
687
688 if (sdata->flags & IEEE80211_SDATA_PROMISC)
689 atomic_dec(&local->iff_promiscs);
690
Johannes Berg7be50862010-10-13 12:06:24 +0200691 if (sdata->vif.type == NL80211_IFTYPE_AP) {
Igor Perminove3b90ca2009-08-04 16:48:51 +0400692 local->fif_pspoll--;
Johannes Berg7be50862010-10-13 12:06:24 +0200693 local->fif_probe_req--;
694 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
695 local->fif_probe_req--;
696 }
Igor Perminove3b90ca2009-08-04 16:48:51 +0400697
Johannes Berg34d4bc4d2010-08-27 12:35:58 +0200698 netif_addr_lock_bh(sdata->dev);
Johannes Berg3b8d81e2009-06-17 17:43:56 +0200699 spin_lock_bh(&local->filter_lock);
Johannes Berg34d4bc4d2010-08-27 12:35:58 +0200700 __hw_addr_unsync(&local->mc_list, &sdata->dev->mc,
701 sdata->dev->addr_len);
Johannes Berg3b8d81e2009-06-17 17:43:56 +0200702 spin_unlock_bh(&local->filter_lock);
Johannes Berg34d4bc4d2010-08-27 12:35:58 +0200703 netif_addr_unlock_bh(sdata->dev);
Johannes Berg3b8d81e2009-06-17 17:43:56 +0200704
Johannes Berg3ac64be2009-08-17 16:16:53 +0200705 ieee80211_configure_filter(local);
706
Vivek Natarajan7cbf0ba2008-12-24 00:34:37 -0800707 del_timer_sync(&local->dynamic_ps_timer);
708 cancel_work_sync(&local->dynamic_ps_enable_work);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200709
710 /* APs need special treatment */
711 if (sdata->vif.type == NL80211_IFTYPE_AP) {
Johannes Berg57c9fff2009-07-29 15:46:21 +0200712 struct ieee80211_sub_if_data *vlan, *tmpsdata;
Johannes Berg40b275b2011-05-13 14:15:49 +0200713 struct beacon_data *old_beacon =
714 rtnl_dereference(sdata->u.ap.beacon);
Arik Nemtsov02945822011-11-10 11:28:57 +0200715 struct sk_buff *old_probe_resp =
716 rtnl_dereference(sdata->u.ap.probe_resp);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200717
Johannes Bergb9dcf712010-08-27 12:35:54 +0200718 /* sdata_running will return false, so this will disable */
719 ieee80211_bss_info_change_notify(sdata,
720 BSS_CHANGED_BEACON_ENABLED);
721
Arik Nemtsov02945822011-11-10 11:28:57 +0200722 /* remove beacon and probe response */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000723 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
Arik Nemtsov02945822011-11-10 11:28:57 +0200724 RCU_INIT_POINTER(sdata->u.ap.probe_resp, NULL);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200725 synchronize_rcu();
726 kfree(old_beacon);
Dan Carpenter5e2e05d2011-11-15 09:33:09 +0300727 kfree_skb(old_probe_resp);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200728
729 /* down all dependent devices, that is VLANs */
Johannes Berg57c9fff2009-07-29 15:46:21 +0200730 list_for_each_entry_safe(vlan, tmpsdata, &sdata->u.ap.vlans,
Johannes Berg0d143fe2008-09-11 00:01:59 +0200731 u.vlan.list)
732 dev_close(vlan->dev);
733 WARN_ON(!list_empty(&sdata->u.ap.vlans));
Johannes Berg6f2d9332011-09-20 17:40:51 +0200734
735 /* free all potentially still buffered bcast frames */
736 local->total_ps_buffered -= skb_queue_len(&sdata->u.ap.ps_bc_buf);
737 skb_queue_purge(&sdata->u.ap.ps_bc_buf);
Eliad Pellerafa762f2012-04-23 14:45:15 +0300738 } else if (sdata->vif.type == NL80211_IFTYPE_STATION) {
739 ieee80211_mgd_stop(sdata);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200740 }
741
Johannes Berg34d4bc4d2010-08-27 12:35:58 +0200742 if (going_down)
743 local->open_count--;
Johannes Berg0d143fe2008-09-11 00:01:59 +0200744
745 switch (sdata->vif.type) {
746 case NL80211_IFTYPE_AP_VLAN:
747 list_del(&sdata->u.vlan.list);
748 /* no need to tell driver */
749 break;
750 case NL80211_IFTYPE_MONITOR:
751 if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) {
752 local->cooked_mntrs--;
753 break;
754 }
755
756 local->monitors--;
Johannes Berge8975582008-10-09 12:18:51 +0200757 if (local->monitors == 0) {
Johannes Berg0869aea2009-10-28 10:03:35 +0100758 local->hw.conf.flags &= ~IEEE80211_CONF_MONITOR;
759 hw_reconf_flags |= IEEE80211_CONF_CHANGE_MONITOR;
Johannes Berg075e0842012-07-12 19:28:31 +0200760 ieee80211_del_virtual_monitor(local);
Johannes Berge8975582008-10-09 12:18:51 +0200761 }
Johannes Berg0d143fe2008-09-11 00:01:59 +0200762
Christian Lamparter85416a42010-10-02 13:17:07 +0200763 ieee80211_adjust_monitor_flags(sdata, -1);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200764 ieee80211_configure_filter(local);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200765 break;
Johannes Berg0d143fe2008-09-11 00:01:59 +0200766 default:
Johannes Bergc1475ca2010-06-10 10:21:37 +0200767 flush_work(&sdata->work);
Johannes Berg35f20c12010-06-10 10:21:30 +0200768 /*
769 * When we get here, the interface is marked down.
770 * Call synchronize_rcu() to wait for the RX path
771 * should it be using the interface and enqueuing
772 * frames at this very time on another CPU.
773 */
774 synchronize_rcu();
775 skb_queue_purge(&sdata->skb_queue);
776
Bob Copeland97af7432009-07-29 10:13:03 +0200777 /*
Johannes Bergb9dcf712010-08-27 12:35:54 +0200778 * Disable beaconing here for mesh only, AP and IBSS
779 * are already taken care of.
Bob Copeland97af7432009-07-29 10:13:03 +0200780 */
Johannes Bergb9dcf712010-08-27 12:35:54 +0200781 if (sdata->vif.type == NL80211_IFTYPE_MESH_POINT)
Bob Copeland97af7432009-07-29 10:13:03 +0200782 ieee80211_bss_info_change_notify(sdata,
783 BSS_CHANGED_BEACON_ENABLED);
Bob Copeland97af7432009-07-29 10:13:03 +0200784
Johannes Bergb9dcf712010-08-27 12:35:54 +0200785 /*
786 * Free all remaining keys, there shouldn't be any,
787 * except maybe group keys in AP more or WDS?
788 */
Johannes Bergad0e2b52010-06-01 10:19:19 +0200789 ieee80211_free_keys(sdata);
Johannes Bergb9dcf712010-08-27 12:35:54 +0200790
Johannes Berg34d4bc4d2010-08-27 12:35:58 +0200791 if (going_down)
Johannes Berg7b7eab62011-11-03 14:41:13 +0100792 drv_remove_interface(local, sdata);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200793 }
794
795 sdata->bss = NULL;
796
Johannes Berg7da7cc12010-08-05 17:02:38 +0200797 mutex_lock(&local->mtx);
Johannes Berg5cff20e2009-04-29 12:26:17 +0200798 hw_reconf_flags |= __ieee80211_recalc_idle(local);
Johannes Berg7da7cc12010-08-05 17:02:38 +0200799 mutex_unlock(&local->mtx);
Johannes Berg5cff20e2009-04-29 12:26:17 +0200800
801 ieee80211_recalc_ps(local, -1);
802
Johannes Berg0d143fe2008-09-11 00:01:59 +0200803 if (local->open_count == 0) {
John W. Linville4e6cbfd2010-07-29 16:14:13 -0400804 if (local->ops->napi_poll)
805 napi_disable(&local->napi);
Johannes Bergea77f122009-08-21 14:44:45 +0200806 ieee80211_clear_tx_pending(local);
Johannes Berg84f6a012009-08-20 20:02:20 +0200807 ieee80211_stop_device(local);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200808
Johannes Berge8975582008-10-09 12:18:51 +0200809 /* no reconfiguring after stop! */
810 hw_reconf_flags = 0;
Johannes Berg0d143fe2008-09-11 00:01:59 +0200811 }
812
Ben Greear2cf22b82011-01-31 11:30:09 -0800813 /* Re-calculate channel-type, in case there are multiple vifs
814 * on different channel types.
815 */
816 orig_ct = local->_oper_channel_type;
817 ieee80211_set_channel_type(local, NULL, NL80211_CHAN_NO_HT);
818
Johannes Berge8975582008-10-09 12:18:51 +0200819 /* do after stop to avoid reconfiguring when we stop anyway */
Ben Greear2cf22b82011-01-31 11:30:09 -0800820 if (hw_reconf_flags || (orig_ct != local->_oper_channel_type))
Johannes Berge8975582008-10-09 12:18:51 +0200821 ieee80211_hw_config(local, hw_reconf_flags);
822
Johannes Berg5061b0c2009-07-14 00:33:34 +0200823 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
824 for (i = 0; i < IEEE80211_MAX_QUEUES; i++) {
825 skb_queue_walk_safe(&local->pending[i], skb, tmp) {
826 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
827 if (info->control.vif == &sdata->vif) {
828 __skb_unlink(skb, &local->pending[i]);
829 dev_kfree_skb_irq(skb);
830 }
831 }
832 }
833 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Johannes Berg075e0842012-07-12 19:28:31 +0200834
835 if (local->monitors == local->open_count && local->monitors > 0)
836 ieee80211_add_virtual_monitor(local);
Johannes Berg34d4bc4d2010-08-27 12:35:58 +0200837}
838
839static int ieee80211_stop(struct net_device *dev)
840{
841 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
842
843 ieee80211_do_stop(sdata, true);
Johannes Berg5061b0c2009-07-14 00:33:34 +0200844
Johannes Berg0d143fe2008-09-11 00:01:59 +0200845 return 0;
846}
847
848static void ieee80211_set_multicast_list(struct net_device *dev)
849{
Johannes Berg0d143fe2008-09-11 00:01:59 +0200850 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Bergb4a4bf52008-09-26 13:34:54 +0200851 struct ieee80211_local *local = sdata->local;
Johannes Berg0d143fe2008-09-11 00:01:59 +0200852 int allmulti, promisc, sdata_allmulti, sdata_promisc;
853
854 allmulti = !!(dev->flags & IFF_ALLMULTI);
855 promisc = !!(dev->flags & IFF_PROMISC);
856 sdata_allmulti = !!(sdata->flags & IEEE80211_SDATA_ALLMULTI);
857 sdata_promisc = !!(sdata->flags & IEEE80211_SDATA_PROMISC);
858
859 if (allmulti != sdata_allmulti) {
860 if (dev->flags & IFF_ALLMULTI)
861 atomic_inc(&local->iff_allmultis);
862 else
863 atomic_dec(&local->iff_allmultis);
864 sdata->flags ^= IEEE80211_SDATA_ALLMULTI;
865 }
866
867 if (promisc != sdata_promisc) {
868 if (dev->flags & IFF_PROMISC)
869 atomic_inc(&local->iff_promiscs);
870 else
871 atomic_dec(&local->iff_promiscs);
872 sdata->flags ^= IEEE80211_SDATA_PROMISC;
873 }
Johannes Berg3b8d81e2009-06-17 17:43:56 +0200874 spin_lock_bh(&local->filter_lock);
Jiri Pirko22bedad2010-04-01 21:22:57 +0000875 __hw_addr_sync(&local->mc_list, &dev->mc, dev->addr_len);
Johannes Berg3b8d81e2009-06-17 17:43:56 +0200876 spin_unlock_bh(&local->filter_lock);
Johannes Berg3ac64be2009-08-17 16:16:53 +0200877 ieee80211_queue_work(&local->hw, &local->reconfig_filter);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200878}
879
Johannes Berg75636522008-07-09 14:40:35 +0200880/*
881 * Called when the netdev is removed or, by the code below, before
882 * the interface type changes.
883 */
884static void ieee80211_teardown_sdata(struct net_device *dev)
Jiri Bencf0706e82007-05-05 11:45:53 -0700885{
Johannes Berg75636522008-07-09 14:40:35 +0200886 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
887 struct ieee80211_local *local = sdata->local;
Johannes Berg75636522008-07-09 14:40:35 +0200888 int flushed;
Jiri Bencf0706e82007-05-05 11:45:53 -0700889 int i;
890
Johannes Berg75636522008-07-09 14:40:35 +0200891 /* free extra data */
892 ieee80211_free_keys(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -0700893
Jouni Malinenaee14ce2008-09-09 16:33:15 +0200894 ieee80211_debugfs_remove_netdev(sdata);
895
Johannes Berg988c0f72008-04-17 19:21:22 +0200896 for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++)
Jiri Bencf0706e82007-05-05 11:45:53 -0700897 __skb_queue_purge(&sdata->fragments[i].skb_list);
Johannes Berg75636522008-07-09 14:40:35 +0200898 sdata->fragment_next = 0;
899
Johannes Bergb9dcf712010-08-27 12:35:54 +0200900 if (ieee80211_vif_is_mesh(&sdata->vif))
901 mesh_rmc_free(sdata);
Johannes Berg75636522008-07-09 14:40:35 +0200902
903 flushed = sta_info_flush(local, sdata);
904 WARN_ON(flushed);
Jiri Bencf0706e82007-05-05 11:45:53 -0700905}
906
Johannes Bergcf0277e2010-01-05 18:00:58 +0100907static u16 ieee80211_netdev_select_queue(struct net_device *dev,
908 struct sk_buff *skb)
909{
910 return ieee80211_select_queue(IEEE80211_DEV_TO_SUB_IF(dev), skb);
911}
912
Johannes Berg587e7292009-01-30 13:35:22 +0100913static const struct net_device_ops ieee80211_dataif_ops = {
914 .ndo_open = ieee80211_open,
915 .ndo_stop = ieee80211_stop,
916 .ndo_uninit = ieee80211_teardown_sdata,
917 .ndo_start_xmit = ieee80211_subif_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000918 .ndo_set_rx_mode = ieee80211_set_multicast_list,
Johannes Berg587e7292009-01-30 13:35:22 +0100919 .ndo_change_mtu = ieee80211_change_mtu,
Johannes Berg47846c92009-11-25 17:46:19 +0100920 .ndo_set_mac_address = ieee80211_change_mac,
Johannes Bergcf0277e2010-01-05 18:00:58 +0100921 .ndo_select_queue = ieee80211_netdev_select_queue,
Johannes Berg587e7292009-01-30 13:35:22 +0100922};
923
Johannes Bergcf0277e2010-01-05 18:00:58 +0100924static u16 ieee80211_monitor_select_queue(struct net_device *dev,
925 struct sk_buff *skb)
926{
927 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
928 struct ieee80211_local *local = sdata->local;
929 struct ieee80211_hdr *hdr;
930 struct ieee80211_radiotap_header *rtap = (void *)skb->data;
931
Johannes Berg32c5057b2012-03-28 11:04:29 +0200932 if (local->hw.queues < IEEE80211_NUM_ACS)
Johannes Bergcf0277e2010-01-05 18:00:58 +0100933 return 0;
934
935 if (skb->len < 4 ||
Johannes Bergb49bb572010-01-08 19:00:00 +0100936 skb->len < le16_to_cpu(rtap->it_len) + 2 /* frame control */)
Johannes Bergcf0277e2010-01-05 18:00:58 +0100937 return 0; /* doesn't matter, frame will be dropped */
938
Johannes Bergb49bb572010-01-08 19:00:00 +0100939 hdr = (void *)((u8 *)skb->data + le16_to_cpu(rtap->it_len));
Johannes Bergcf0277e2010-01-05 18:00:58 +0100940
Yoni Divinsky00e96de2012-06-20 15:39:13 +0300941 return ieee80211_select_queue_80211(sdata, skb, hdr);
Johannes Bergcf0277e2010-01-05 18:00:58 +0100942}
943
Johannes Berg587e7292009-01-30 13:35:22 +0100944static const struct net_device_ops ieee80211_monitorif_ops = {
945 .ndo_open = ieee80211_open,
946 .ndo_stop = ieee80211_stop,
947 .ndo_uninit = ieee80211_teardown_sdata,
948 .ndo_start_xmit = ieee80211_monitor_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000949 .ndo_set_rx_mode = ieee80211_set_multicast_list,
Johannes Berg587e7292009-01-30 13:35:22 +0100950 .ndo_change_mtu = ieee80211_change_mtu,
951 .ndo_set_mac_address = eth_mac_addr,
Johannes Bergcf0277e2010-01-05 18:00:58 +0100952 .ndo_select_queue = ieee80211_monitor_select_queue,
Johannes Berg587e7292009-01-30 13:35:22 +0100953};
954
955static void ieee80211_if_setup(struct net_device *dev)
956{
957 ether_setup(dev);
Neil Horman550fd082011-07-26 06:05:38 +0000958 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
Johannes Berg587e7292009-01-30 13:35:22 +0100959 dev->netdev_ops = &ieee80211_dataif_ops;
Johannes Berg587e7292009-01-30 13:35:22 +0100960 dev->destructor = free_netdev;
961}
962
Johannes Berg1fa57d02010-06-10 10:21:32 +0200963static void ieee80211_iface_work(struct work_struct *work)
964{
965 struct ieee80211_sub_if_data *sdata =
966 container_of(work, struct ieee80211_sub_if_data, work);
967 struct ieee80211_local *local = sdata->local;
968 struct sk_buff *skb;
Johannes Berg344eec62010-06-10 10:21:36 +0200969 struct sta_info *sta;
Johannes Bergc1475ca2010-06-10 10:21:37 +0200970 struct ieee80211_ra_tid *ra_tid;
Johannes Berg1fa57d02010-06-10 10:21:32 +0200971
972 if (!ieee80211_sdata_running(sdata))
973 return;
974
975 if (local->scanning)
976 return;
977
978 /*
979 * ieee80211_queue_work() should have picked up most cases,
980 * here we'll pick the rest.
981 */
982 if (WARN(local->suspended,
983 "interface work scheduled while going to suspend\n"))
984 return;
985
986 /* first process frames */
987 while ((skb = skb_dequeue(&sdata->skb_queue))) {
Johannes Bergbed7ee6e2010-06-10 10:21:35 +0200988 struct ieee80211_mgmt *mgmt = (void *)skb->data;
989
Johannes Bergc1475ca2010-06-10 10:21:37 +0200990 if (skb->pkt_type == IEEE80211_SDATA_QUEUE_AGG_START) {
991 ra_tid = (void *)&skb->cb;
992 ieee80211_start_tx_ba_cb(&sdata->vif, ra_tid->ra,
993 ra_tid->tid);
994 } else if (skb->pkt_type == IEEE80211_SDATA_QUEUE_AGG_STOP) {
995 ra_tid = (void *)&skb->cb;
996 ieee80211_stop_tx_ba_cb(&sdata->vif, ra_tid->ra,
997 ra_tid->tid);
998 } else if (ieee80211_is_action(mgmt->frame_control) &&
999 mgmt->u.action.category == WLAN_CATEGORY_BACK) {
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02001000 int len = skb->len;
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02001001
Johannes Berga93e3642010-06-10 10:21:46 +02001002 mutex_lock(&local->sta_mtx);
Felix Fietkau875ae5f2010-07-17 15:59:07 +02001003 sta = sta_info_get_bss(sdata, mgmt->sa);
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02001004 if (sta) {
1005 switch (mgmt->u.action.u.addba_req.action_code) {
1006 case WLAN_ACTION_ADDBA_REQ:
1007 ieee80211_process_addba_request(
1008 local, sta, mgmt, len);
1009 break;
1010 case WLAN_ACTION_ADDBA_RESP:
1011 ieee80211_process_addba_resp(local, sta,
1012 mgmt, len);
1013 break;
1014 case WLAN_ACTION_DELBA:
1015 ieee80211_process_delba(sdata, sta,
1016 mgmt, len);
1017 break;
1018 default:
1019 WARN_ON(1);
1020 break;
1021 }
1022 }
Johannes Berga93e3642010-06-10 10:21:46 +02001023 mutex_unlock(&local->sta_mtx);
Johannes Berg344eec62010-06-10 10:21:36 +02001024 } else if (ieee80211_is_data_qos(mgmt->frame_control)) {
1025 struct ieee80211_hdr *hdr = (void *)mgmt;
1026 /*
1027 * So the frame isn't mgmt, but frame_control
1028 * is at the right place anyway, of course, so
1029 * the if statement is correct.
1030 *
1031 * Warn if we have other data frame types here,
1032 * they must not get here.
1033 */
1034 WARN_ON(hdr->frame_control &
1035 cpu_to_le16(IEEE80211_STYPE_NULLFUNC));
1036 WARN_ON(!(hdr->seq_ctrl &
1037 cpu_to_le16(IEEE80211_SCTL_FRAG)));
1038 /*
1039 * This was a fragment of a frame, received while
1040 * a block-ack session was active. That cannot be
1041 * right, so terminate the session.
1042 */
Johannes Berga93e3642010-06-10 10:21:46 +02001043 mutex_lock(&local->sta_mtx);
Felix Fietkau875ae5f2010-07-17 15:59:07 +02001044 sta = sta_info_get_bss(sdata, mgmt->sa);
Johannes Berg344eec62010-06-10 10:21:36 +02001045 if (sta) {
1046 u16 tid = *ieee80211_get_qos_ctl(hdr) &
1047 IEEE80211_QOS_CTL_TID_MASK;
1048
1049 __ieee80211_stop_rx_ba_session(
1050 sta, tid, WLAN_BACK_RECIPIENT,
Johannes Berg53f73c02010-10-05 19:37:40 +02001051 WLAN_REASON_QSTA_REQUIRE_SETUP,
1052 true);
Johannes Berg344eec62010-06-10 10:21:36 +02001053 }
Johannes Berga93e3642010-06-10 10:21:46 +02001054 mutex_unlock(&local->sta_mtx);
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02001055 } else switch (sdata->vif.type) {
Johannes Berg1fa57d02010-06-10 10:21:32 +02001056 case NL80211_IFTYPE_STATION:
1057 ieee80211_sta_rx_queued_mgmt(sdata, skb);
1058 break;
1059 case NL80211_IFTYPE_ADHOC:
1060 ieee80211_ibss_rx_queued_mgmt(sdata, skb);
1061 break;
1062 case NL80211_IFTYPE_MESH_POINT:
1063 if (!ieee80211_vif_is_mesh(&sdata->vif))
1064 break;
1065 ieee80211_mesh_rx_queued_mgmt(sdata, skb);
1066 break;
1067 default:
1068 WARN(1, "frame for unexpected interface type");
Johannes Berg1fa57d02010-06-10 10:21:32 +02001069 break;
1070 }
Johannes Berg36b3a622010-06-10 10:21:33 +02001071
1072 kfree_skb(skb);
Johannes Berg1fa57d02010-06-10 10:21:32 +02001073 }
1074
1075 /* then other type-dependent work */
1076 switch (sdata->vif.type) {
1077 case NL80211_IFTYPE_STATION:
1078 ieee80211_sta_work(sdata);
1079 break;
1080 case NL80211_IFTYPE_ADHOC:
1081 ieee80211_ibss_work(sdata);
1082 break;
1083 case NL80211_IFTYPE_MESH_POINT:
1084 if (!ieee80211_vif_is_mesh(&sdata->vif))
1085 break;
1086 ieee80211_mesh_work(sdata);
1087 break;
1088 default:
1089 break;
1090 }
1091}
1092
1093
Johannes Berg75636522008-07-09 14:40:35 +02001094/*
1095 * Helper function to initialise an interface to a specific type.
1096 */
1097static void ieee80211_setup_sdata(struct ieee80211_sub_if_data *sdata,
Johannes Berg05c914f2008-09-11 00:01:58 +02001098 enum nl80211_iftype type)
Johannes Berg75636522008-07-09 14:40:35 +02001099{
Johannes Berg75636522008-07-09 14:40:35 +02001100 /* clear type-dependent union */
1101 memset(&sdata->u, 0, sizeof(sdata->u));
1102
1103 /* and set some type-dependent values */
1104 sdata->vif.type = type;
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001105 sdata->vif.p2p = false;
Johannes Berg587e7292009-01-30 13:35:22 +01001106 sdata->dev->netdev_ops = &ieee80211_dataif_ops;
Johannes Berg60719ff2008-09-16 14:55:09 +02001107 sdata->wdev.iftype = type;
Johannes Berg75636522008-07-09 14:40:35 +02001108
Johannes Berga621fa42010-08-27 14:26:54 +03001109 sdata->control_port_protocol = cpu_to_be16(ETH_P_PAE);
1110 sdata->control_port_no_encrypt = false;
1111
Simon Wunderlichb53be792011-11-18 14:20:44 +01001112 sdata->noack_map = 0;
1113
Johannes Berg75636522008-07-09 14:40:35 +02001114 /* only monitor differs */
1115 sdata->dev->type = ARPHRD_ETHER;
1116
Johannes Berg35f20c12010-06-10 10:21:30 +02001117 skb_queue_head_init(&sdata->skb_queue);
Johannes Berg1fa57d02010-06-10 10:21:32 +02001118 INIT_WORK(&sdata->work, ieee80211_iface_work);
Johannes Berg35f20c12010-06-10 10:21:30 +02001119
Johannes Berg75636522008-07-09 14:40:35 +02001120 switch (type) {
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001121 case NL80211_IFTYPE_P2P_GO:
1122 type = NL80211_IFTYPE_AP;
1123 sdata->vif.type = type;
1124 sdata->vif.p2p = true;
1125 /* fall through */
Johannes Berg05c914f2008-09-11 00:01:58 +02001126 case NL80211_IFTYPE_AP:
Johannes Berg75636522008-07-09 14:40:35 +02001127 skb_queue_head_init(&sdata->u.ap.ps_bc_buf);
1128 INIT_LIST_HEAD(&sdata->u.ap.vlans);
1129 break;
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001130 case NL80211_IFTYPE_P2P_CLIENT:
1131 type = NL80211_IFTYPE_STATION;
1132 sdata->vif.type = type;
1133 sdata->vif.p2p = true;
1134 /* fall through */
Johannes Berg05c914f2008-09-11 00:01:58 +02001135 case NL80211_IFTYPE_STATION:
Johannes Berg9c6bd792008-09-11 00:01:52 +02001136 ieee80211_sta_setup_sdata(sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001137 break;
Johannes Berg46900292009-02-15 12:44:28 +01001138 case NL80211_IFTYPE_ADHOC:
1139 ieee80211_ibss_setup_sdata(sdata);
1140 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001141 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg75636522008-07-09 14:40:35 +02001142 if (ieee80211_vif_is_mesh(&sdata->vif))
1143 ieee80211_mesh_init_sdata(sdata);
1144 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001145 case NL80211_IFTYPE_MONITOR:
Johannes Berg75636522008-07-09 14:40:35 +02001146 sdata->dev->type = ARPHRD_IEEE80211_RADIOTAP;
Johannes Berg587e7292009-01-30 13:35:22 +01001147 sdata->dev->netdev_ops = &ieee80211_monitorif_ops;
Johannes Berg75636522008-07-09 14:40:35 +02001148 sdata->u.mntr_flags = MONITOR_FLAG_CONTROL |
1149 MONITOR_FLAG_OTHER_BSS;
1150 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001151 case NL80211_IFTYPE_WDS:
1152 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg75636522008-07-09 14:40:35 +02001153 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001154 case NL80211_IFTYPE_UNSPECIFIED:
Johannes Berg2e161f72010-08-12 15:38:38 +02001155 case NUM_NL80211_IFTYPES:
Johannes Berg75636522008-07-09 14:40:35 +02001156 BUG();
1157 break;
1158 }
1159
1160 ieee80211_debugfs_add_netdev(sdata);
1161}
1162
Andrei Emeltchenko94c514f2012-04-24 14:18:28 +03001163static void ieee80211_clean_sdata(struct ieee80211_sub_if_data *sdata)
1164{
1165 switch (sdata->vif.type) {
1166 case NL80211_IFTYPE_MESH_POINT:
1167 mesh_path_flush_by_iface(sdata);
1168 break;
1169
1170 default:
1171 break;
1172 }
1173}
1174
Johannes Berg34d4bc4d2010-08-27 12:35:58 +02001175static int ieee80211_runtime_change_iftype(struct ieee80211_sub_if_data *sdata,
1176 enum nl80211_iftype type)
1177{
1178 struct ieee80211_local *local = sdata->local;
1179 int ret, err;
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001180 enum nl80211_iftype internal_type = type;
1181 bool p2p = false;
Johannes Berg34d4bc4d2010-08-27 12:35:58 +02001182
1183 ASSERT_RTNL();
1184
1185 if (!local->ops->change_interface)
1186 return -EBUSY;
1187
1188 switch (sdata->vif.type) {
1189 case NL80211_IFTYPE_AP:
1190 case NL80211_IFTYPE_STATION:
1191 case NL80211_IFTYPE_ADHOC:
1192 /*
1193 * Could maybe also all others here?
1194 * Just not sure how that interacts
1195 * with the RX/config path e.g. for
1196 * mesh.
1197 */
1198 break;
1199 default:
1200 return -EBUSY;
1201 }
1202
1203 switch (type) {
1204 case NL80211_IFTYPE_AP:
1205 case NL80211_IFTYPE_STATION:
1206 case NL80211_IFTYPE_ADHOC:
1207 /*
1208 * Could probably support everything
1209 * but WDS here (WDS do_open can fail
1210 * under memory pressure, which this
1211 * code isn't prepared to handle).
1212 */
1213 break;
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001214 case NL80211_IFTYPE_P2P_CLIENT:
1215 p2p = true;
1216 internal_type = NL80211_IFTYPE_STATION;
1217 break;
1218 case NL80211_IFTYPE_P2P_GO:
1219 p2p = true;
1220 internal_type = NL80211_IFTYPE_AP;
1221 break;
Johannes Berg34d4bc4d2010-08-27 12:35:58 +02001222 default:
1223 return -EBUSY;
1224 }
1225
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001226 ret = ieee80211_check_concurrent_iface(sdata, internal_type);
Johannes Berg34d4bc4d2010-08-27 12:35:58 +02001227 if (ret)
1228 return ret;
1229
1230 ieee80211_do_stop(sdata, false);
1231
1232 ieee80211_teardown_sdata(sdata->dev);
1233
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001234 ret = drv_change_interface(local, sdata, internal_type, p2p);
Johannes Berg34d4bc4d2010-08-27 12:35:58 +02001235 if (ret)
1236 type = sdata->vif.type;
1237
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001238 /*
1239 * Ignore return value here, there's not much we can do since
1240 * the driver changed the interface type internally already.
1241 * The warnings will hopefully make driver authors fix it :-)
1242 */
1243 ieee80211_check_queues(sdata);
1244
Johannes Berg34d4bc4d2010-08-27 12:35:58 +02001245 ieee80211_setup_sdata(sdata, type);
1246
1247 err = ieee80211_do_open(sdata->dev, false);
1248 WARN(err, "type change: do_open returned %d", err);
1249
1250 return ret;
1251}
1252
Johannes Bergf3947e22008-07-09 14:40:36 +02001253int ieee80211_if_change_type(struct ieee80211_sub_if_data *sdata,
Johannes Berg05c914f2008-09-11 00:01:58 +02001254 enum nl80211_iftype type)
Johannes Berg75636522008-07-09 14:40:35 +02001255{
Johannes Berg34d4bc4d2010-08-27 12:35:58 +02001256 int ret;
1257
Johannes Bergf3947e22008-07-09 14:40:36 +02001258 ASSERT_RTNL();
1259
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001260 if (type == ieee80211_vif_type_p2p(&sdata->vif))
Johannes Bergf3947e22008-07-09 14:40:36 +02001261 return 0;
1262
Johannes Berge60c7742008-11-26 23:31:40 +01001263 /* Setting ad-hoc mode on non-IBSS channel is not supported. */
Pavel Roskindcebf452008-12-22 16:39:36 -05001264 if (sdata->local->oper_channel->flags & IEEE80211_CHAN_NO_IBSS &&
1265 type == NL80211_IFTYPE_ADHOC)
Johannes Berge60c7742008-11-26 23:31:40 +01001266 return -EOPNOTSUPP;
1267
Johannes Berg34d4bc4d2010-08-27 12:35:58 +02001268 if (ieee80211_sdata_running(sdata)) {
1269 ret = ieee80211_runtime_change_iftype(sdata, type);
1270 if (ret)
1271 return ret;
1272 } else {
1273 /* Purge and reset type-dependent state. */
1274 ieee80211_teardown_sdata(sdata->dev);
1275 ieee80211_setup_sdata(sdata, type);
1276 }
Johannes Berg75636522008-07-09 14:40:35 +02001277
1278 /* reset some values that shouldn't be kept across type changes */
Johannes Bergbda39332008-10-11 01:51:51 +02001279 sdata->vif.bss_conf.basic_rates =
Johannes Berg96dd22a2008-09-11 00:01:57 +02001280 ieee80211_mandatory_rates(sdata->local,
Johannes Berg679ef4e2012-07-23 14:29:21 +02001281 sdata->local->oper_channel->band);
Johannes Berg75636522008-07-09 14:40:35 +02001282 sdata->drop_unencrypted = 0;
Johannes Berg9bc383d2009-11-19 11:55:19 +01001283 if (type == NL80211_IFTYPE_STATION)
1284 sdata->u.mgd.use_4addr = false;
Johannes Bergf3947e22008-07-09 14:40:36 +02001285
1286 return 0;
Johannes Berg75636522008-07-09 14:40:35 +02001287}
1288
Johannes Bergfa9029f2010-02-25 15:13:11 +01001289static void ieee80211_assign_perm_addr(struct ieee80211_local *local,
1290 struct net_device *dev,
1291 enum nl80211_iftype type)
1292{
1293 struct ieee80211_sub_if_data *sdata;
1294 u64 mask, start, addr, val, inc;
1295 u8 *m;
1296 u8 tmp_addr[ETH_ALEN];
1297 int i;
1298
1299 /* default ... something at least */
1300 memcpy(dev->perm_addr, local->hw.wiphy->perm_addr, ETH_ALEN);
1301
1302 if (is_zero_ether_addr(local->hw.wiphy->addr_mask) &&
1303 local->hw.wiphy->n_addresses <= 1)
1304 return;
1305
1306
1307 mutex_lock(&local->iflist_mtx);
1308
1309 switch (type) {
1310 case NL80211_IFTYPE_MONITOR:
1311 /* doesn't matter */
1312 break;
1313 case NL80211_IFTYPE_WDS:
1314 case NL80211_IFTYPE_AP_VLAN:
1315 /* match up with an AP interface */
1316 list_for_each_entry(sdata, &local->interfaces, list) {
1317 if (sdata->vif.type != NL80211_IFTYPE_AP)
1318 continue;
1319 memcpy(dev->perm_addr, sdata->vif.addr, ETH_ALEN);
1320 break;
1321 }
1322 /* keep default if no AP interface present */
1323 break;
1324 default:
1325 /* assign a new address if possible -- try n_addresses first */
1326 for (i = 0; i < local->hw.wiphy->n_addresses; i++) {
1327 bool used = false;
1328
1329 list_for_each_entry(sdata, &local->interfaces, list) {
1330 if (memcmp(local->hw.wiphy->addresses[i].addr,
1331 sdata->vif.addr, ETH_ALEN) == 0) {
1332 used = true;
1333 break;
1334 }
1335 }
1336
1337 if (!used) {
1338 memcpy(dev->perm_addr,
1339 local->hw.wiphy->addresses[i].addr,
1340 ETH_ALEN);
1341 break;
1342 }
1343 }
1344
1345 /* try mask if available */
1346 if (is_zero_ether_addr(local->hw.wiphy->addr_mask))
1347 break;
1348
1349 m = local->hw.wiphy->addr_mask;
1350 mask = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) |
1351 ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) |
1352 ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8);
1353
1354 if (__ffs64(mask) + hweight64(mask) != fls64(mask)) {
1355 /* not a contiguous mask ... not handled now! */
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001356 pr_info("not contiguous\n");
Johannes Bergfa9029f2010-02-25 15:13:11 +01001357 break;
1358 }
1359
1360 m = local->hw.wiphy->perm_addr;
1361 start = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) |
1362 ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) |
1363 ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8);
1364
1365 inc = 1ULL<<__ffs64(mask);
1366 val = (start & mask);
1367 addr = (start & ~mask) | (val & mask);
1368 do {
1369 bool used = false;
1370
1371 tmp_addr[5] = addr >> 0*8;
1372 tmp_addr[4] = addr >> 1*8;
1373 tmp_addr[3] = addr >> 2*8;
1374 tmp_addr[2] = addr >> 3*8;
1375 tmp_addr[1] = addr >> 4*8;
1376 tmp_addr[0] = addr >> 5*8;
1377
1378 val += inc;
1379
1380 list_for_each_entry(sdata, &local->interfaces, list) {
1381 if (memcmp(tmp_addr, sdata->vif.addr,
1382 ETH_ALEN) == 0) {
1383 used = true;
1384 break;
1385 }
1386 }
1387
1388 if (!used) {
1389 memcpy(dev->perm_addr, tmp_addr, ETH_ALEN);
1390 break;
1391 }
1392 addr = (start & ~mask) | (val & mask);
1393 } while (addr != start);
1394
1395 break;
1396 }
1397
1398 mutex_unlock(&local->iflist_mtx);
1399}
1400
Johannes Berg3e122be2008-07-09 14:40:34 +02001401int ieee80211_if_add(struct ieee80211_local *local, const char *name,
Johannes Berg84efbb82012-06-16 00:00:26 +02001402 struct wireless_dev **new_wdev, enum nl80211_iftype type,
Luis Carlos Coboee385852008-02-23 15:17:11 +01001403 struct vif_params *params)
Jiri Bencf0706e82007-05-05 11:45:53 -07001404{
1405 struct net_device *ndev;
Jiri Bencf0706e82007-05-05 11:45:53 -07001406 struct ieee80211_sub_if_data *sdata = NULL;
Johannes Berg75636522008-07-09 14:40:35 +02001407 int ret, i;
Johannes Bergded81f62012-03-28 11:04:26 +02001408 int txqs = 1;
Jiri Bencf0706e82007-05-05 11:45:53 -07001409
1410 ASSERT_RTNL();
Johannes Berg75636522008-07-09 14:40:35 +02001411
Johannes Bergded81f62012-03-28 11:04:26 +02001412 if (local->hw.queues >= IEEE80211_NUM_ACS)
1413 txqs = IEEE80211_NUM_ACS;
1414
Johannes Berg55d99052011-07-09 15:39:16 +02001415 ndev = alloc_netdev_mqs(sizeof(*sdata) + local->hw.vif_data_size,
Johannes Bergded81f62012-03-28 11:04:26 +02001416 name, ieee80211_if_setup, txqs, 1);
Jiri Bencf0706e82007-05-05 11:45:53 -07001417 if (!ndev)
1418 return -ENOMEM;
Johannes Berga272a722009-07-14 00:33:36 +02001419 dev_net_set(ndev, wiphy_net(local->hw.wiphy));
Jiri Bencf0706e82007-05-05 11:45:53 -07001420
Johannes Bergf3994ec2008-05-12 20:51:44 -07001421 ndev->needed_headroom = local->tx_headroom +
1422 4*6 /* four MAC addresses */
1423 + 2 + 2 + 2 + 2 /* ctl, dur, seq, qos */
1424 + 6 /* mesh */
1425 + 8 /* rfc1042/bridge tunnel */
1426 - ETH_HLEN /* ethernet hard_header_len */
1427 + IEEE80211_ENCRYPT_HEADROOM;
1428 ndev->needed_tailroom = IEEE80211_ENCRYPT_TAILROOM;
1429
Thadeu Lima de Souza Cascardo59e7e702011-06-02 17:28:37 -03001430 ret = dev_alloc_name(ndev, ndev->name);
1431 if (ret < 0)
1432 goto fail;
1433
Johannes Bergfa9029f2010-02-25 15:13:11 +01001434 ieee80211_assign_perm_addr(local, ndev, type);
1435 memcpy(ndev->dev_addr, ndev->perm_addr, ETH_ALEN);
Jiri Bencf0706e82007-05-05 11:45:53 -07001436 SET_NETDEV_DEV(ndev, wiphy_dev(local->hw.wiphy));
1437
Johannes Berg3e122be2008-07-09 14:40:34 +02001438 /* don't use IEEE80211_DEV_TO_SUB_IF because it checks too much */
1439 sdata = netdev_priv(ndev);
Jiri Bencf0706e82007-05-05 11:45:53 -07001440 ndev->ieee80211_ptr = &sdata->wdev;
Johannes Berg47846c92009-11-25 17:46:19 +01001441 memcpy(sdata->vif.addr, ndev->dev_addr, ETH_ALEN);
1442 memcpy(sdata->name, ndev->name, IFNAMSIZ);
Johannes Berg75636522008-07-09 14:40:35 +02001443
1444 /* initialise type-independent data */
Jiri Bencf0706e82007-05-05 11:45:53 -07001445 sdata->wdev.wiphy = local->hw.wiphy;
Jiri Bencf0706e82007-05-05 11:45:53 -07001446 sdata->local = local;
Johannes Berg75636522008-07-09 14:40:35 +02001447 sdata->dev = ndev;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001448#ifdef CONFIG_INET
1449 sdata->arp_filter_state = true;
1450#endif
Johannes Berg75636522008-07-09 14:40:35 +02001451
1452 for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++)
1453 skb_queue_head_init(&sdata->fragments[i].skb_list);
1454
1455 INIT_LIST_HEAD(&sdata->key_list);
1456
Jouni Malinen37eb0b12010-01-06 13:09:08 +02001457 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
1458 struct ieee80211_supported_band *sband;
1459 sband = local->hw.wiphy->bands[i];
1460 sdata->rc_rateidx_mask[i] =
1461 sband ? (1 << sband->n_bitrates) - 1 : 0;
Simon Wunderlich19468412012-01-28 17:25:33 +01001462 if (sband)
1463 memcpy(sdata->rc_rateidx_mcs_mask[i],
1464 sband->ht_cap.mcs.rx_mask,
1465 sizeof(sdata->rc_rateidx_mcs_mask[i]));
1466 else
1467 memset(sdata->rc_rateidx_mcs_mask[i], 0,
1468 sizeof(sdata->rc_rateidx_mcs_mask[i]));
Jouni Malinen37eb0b12010-01-06 13:09:08 +02001469 }
Johannes Berg75636522008-07-09 14:40:35 +02001470
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001471 ieee80211_set_default_queues(sdata);
1472
Johannes Berg75636522008-07-09 14:40:35 +02001473 /* setup type-dependent data */
1474 ieee80211_setup_sdata(sdata, type);
Jiri Bencf0706e82007-05-05 11:45:53 -07001475
Johannes Berg9bc383d2009-11-19 11:55:19 +01001476 if (params) {
1477 ndev->ieee80211_ptr->use_4addr = params->use_4addr;
1478 if (type == NL80211_IFTYPE_STATION)
1479 sdata->u.mgd.use_4addr = params->use_4addr;
1480 }
1481
Arik Nemtsov72d78722012-05-10 16:18:26 +03001482 ndev->features |= local->hw.netdev_features;
1483
Jiri Bencf0706e82007-05-05 11:45:53 -07001484 ret = register_netdevice(ndev);
1485 if (ret)
1486 goto fail;
1487
Johannes Bergc771c9d2009-01-23 22:54:03 +01001488 mutex_lock(&local->iflist_mtx);
Johannes Berg79010422007-09-18 17:29:21 -04001489 list_add_tail_rcu(&sdata->list, &local->interfaces);
Johannes Bergc771c9d2009-01-23 22:54:03 +01001490 mutex_unlock(&local->iflist_mtx);
Johannes Berg79010422007-09-18 17:29:21 -04001491
Johannes Berg84efbb82012-06-16 00:00:26 +02001492 if (new_wdev)
1493 *new_wdev = &sdata->wdev;
Jiri Bencf0706e82007-05-05 11:45:53 -07001494
Jiri Bencf0706e82007-05-05 11:45:53 -07001495 return 0;
1496
Johannes Berg75636522008-07-09 14:40:35 +02001497 fail:
Jiri Bencf0706e82007-05-05 11:45:53 -07001498 free_netdev(ndev);
1499 return ret;
1500}
1501
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001502void ieee80211_if_remove(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -07001503{
Jiri Bencf0706e82007-05-05 11:45:53 -07001504 ASSERT_RTNL();
Johannes Berg11a843b2007-08-28 17:01:55 -04001505
Johannes Bergc771c9d2009-01-23 22:54:03 +01001506 mutex_lock(&sdata->local->iflist_mtx);
Johannes Berg75636522008-07-09 14:40:35 +02001507 list_del_rcu(&sdata->list);
Johannes Bergc771c9d2009-01-23 22:54:03 +01001508 mutex_unlock(&sdata->local->iflist_mtx);
1509
Andrei Emeltchenko94c514f2012-04-24 14:18:28 +03001510 /* clean up type-dependent data */
1511 ieee80211_clean_sdata(sdata);
Javier Cardonaece1a2e2011-08-29 13:23:04 -07001512
Johannes Berg75636522008-07-09 14:40:35 +02001513 synchronize_rcu();
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001514 unregister_netdevice(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -07001515}
1516
Johannes Berg75636522008-07-09 14:40:35 +02001517/*
1518 * Remove all interfaces, may only be called at hardware unregistration
1519 * time because it doesn't do RCU-safe list removals.
1520 */
1521void ieee80211_remove_interfaces(struct ieee80211_local *local)
Jiri Bencf0706e82007-05-05 11:45:53 -07001522{
Johannes Berg75636522008-07-09 14:40:35 +02001523 struct ieee80211_sub_if_data *sdata, *tmp;
Eric Dumazetefe117a2009-11-05 11:06:40 +01001524 LIST_HEAD(unreg_list);
Jiri Bencf0706e82007-05-05 11:45:53 -07001525
1526 ASSERT_RTNL();
1527
Eric Dumazetefe117a2009-11-05 11:06:40 +01001528 mutex_lock(&local->iflist_mtx);
Johannes Berg75636522008-07-09 14:40:35 +02001529 list_for_each_entry_safe(sdata, tmp, &local->interfaces, list) {
1530 list_del(&sdata->list);
Johannes Bergc771c9d2009-01-23 22:54:03 +01001531
Andrei Emeltchenko94c514f2012-04-24 14:18:28 +03001532 ieee80211_clean_sdata(sdata);
Javier Cardonaece1a2e2011-08-29 13:23:04 -07001533
Eric Dumazetefe117a2009-11-05 11:06:40 +01001534 unregister_netdevice_queue(sdata->dev, &unreg_list);
Jiri Bencf0706e82007-05-05 11:45:53 -07001535 }
Eric Dumazetefe117a2009-11-05 11:06:40 +01001536 mutex_unlock(&local->iflist_mtx);
1537 unregister_netdevice_many(&unreg_list);
Eric W. Biederman5f04d502011-02-20 11:49:45 -08001538 list_del(&unreg_list);
Jiri Bencf0706e82007-05-05 11:45:53 -07001539}
Johannes Berg5cff20e2009-04-29 12:26:17 +02001540
Johannes Berg47846c92009-11-25 17:46:19 +01001541static int netdev_notify(struct notifier_block *nb,
1542 unsigned long state,
1543 void *ndev)
1544{
1545 struct net_device *dev = ndev;
1546 struct ieee80211_sub_if_data *sdata;
1547
1548 if (state != NETDEV_CHANGENAME)
1549 return 0;
1550
1551 if (!dev->ieee80211_ptr || !dev->ieee80211_ptr->wiphy)
1552 return 0;
1553
1554 if (dev->ieee80211_ptr->wiphy->privid != mac80211_wiphy_privid)
1555 return 0;
1556
1557 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1558
Johannes Berg2f5265e2010-02-12 10:45:05 +01001559 memcpy(sdata->name, dev->name, IFNAMSIZ);
Johannes Berg47846c92009-11-25 17:46:19 +01001560
1561 ieee80211_debugfs_rename_netdev(sdata);
1562 return 0;
1563}
1564
1565static struct notifier_block mac80211_netdev_notifier = {
1566 .notifier_call = netdev_notify,
1567};
1568
1569int ieee80211_iface_init(void)
1570{
1571 return register_netdevice_notifier(&mac80211_netdev_notifier);
1572}
1573
1574void ieee80211_iface_exit(void)
1575{
1576 unregister_netdevice_notifier(&mac80211_netdev_notifier);
1577}