blob: 0a6b4e1043cb7ea96ddfd4dbe3dcfca5080cac8b [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 Bergcc45ae542012-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
115 if (local->scan_sdata &&
116 !(local->hw.flags & IEEE80211_HW_SCAN_WHILE_IDLE)) {
117 scanning = true;
118 local->scan_sdata->vif.bss_conf.idle = false;
119 }
120
121 list_for_each_entry(sdata, &local->interfaces, list) {
122 if (sdata->vif.type == NL80211_IFTYPE_MONITOR ||
123 sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
124 continue;
125 if (sdata->old_idle == sdata->vif.bss_conf.idle)
126 continue;
127 if (!ieee80211_sdata_running(sdata))
128 continue;
129 ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_IDLE);
130 }
131
132 if (working || scanning)
133 led_trig_start |= IEEE80211_TPT_LEDTRIG_FL_WORK;
134 else
135 led_trig_stop |= IEEE80211_TPT_LEDTRIG_FL_WORK;
136
137 if (count)
138 led_trig_start |= IEEE80211_TPT_LEDTRIG_FL_CONNECTED;
139 else
140 led_trig_stop |= IEEE80211_TPT_LEDTRIG_FL_CONNECTED;
141
142 ieee80211_mod_tpt_led_trig(local, led_trig_start, led_trig_stop);
143
144 if (working)
145 return ieee80211_idle_off(local, "working");
146 if (scanning)
147 return ieee80211_idle_off(local, "scanning");
148 if (!count)
149 return ieee80211_idle_on(local);
150 else
151 return ieee80211_idle_off(local, "in use");
152
153 return 0;
154}
155
156void ieee80211_recalc_idle(struct ieee80211_local *local)
157{
158 u32 chg;
159
160 mutex_lock(&local->iflist_mtx);
161 chg = __ieee80211_recalc_idle(local);
162 mutex_unlock(&local->iflist_mtx);
163 if (chg)
164 ieee80211_hw_config(local, chg);
165}
166
Johannes Berg0d143fe2008-09-11 00:01:59 +0200167static int ieee80211_change_mtu(struct net_device *dev, int new_mtu)
168{
169 int meshhdrlen;
170 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
171
172 meshhdrlen = (sdata->vif.type == NL80211_IFTYPE_MESH_POINT) ? 5 : 0;
173
174 /* FIX: what would be proper limits for MTU?
175 * This interface uses 802.3 frames. */
176 if (new_mtu < 256 ||
177 new_mtu > IEEE80211_MAX_DATA_LEN - 24 - 6 - meshhdrlen) {
178 return -EINVAL;
179 }
180
Johannes Berg0d143fe2008-09-11 00:01:59 +0200181 dev->mtu = new_mtu;
182 return 0;
183}
184
Johannes Berg47846c92009-11-25 17:46:19 +0100185static int ieee80211_change_mac(struct net_device *dev, void *addr)
186{
187 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Kalle Valofc5f7572009-12-30 15:54:03 +0200188 struct sockaddr *sa = addr;
Johannes Berg47846c92009-11-25 17:46:19 +0100189 int ret;
190
Johannes Berg9607e6b662009-12-23 13:15:31 +0100191 if (ieee80211_sdata_running(sdata))
Johannes Berg47846c92009-11-25 17:46:19 +0100192 return -EBUSY;
193
Kalle Valofc5f7572009-12-30 15:54:03 +0200194 ret = eth_mac_addr(dev, sa);
Johannes Berg47846c92009-11-25 17:46:19 +0100195
196 if (ret == 0)
Kalle Valofc5f7572009-12-30 15:54:03 +0200197 memcpy(sdata->vif.addr, sa->sa_data, ETH_ALEN);
Johannes Berg47846c92009-11-25 17:46:19 +0100198
199 return ret;
200}
201
Johannes Berg0d143fe2008-09-11 00:01:59 +0200202static inline int identical_mac_addr_allowed(int type1, int type2)
203{
204 return type1 == NL80211_IFTYPE_MONITOR ||
205 type2 == NL80211_IFTYPE_MONITOR ||
206 (type1 == NL80211_IFTYPE_AP && type2 == NL80211_IFTYPE_WDS) ||
207 (type1 == NL80211_IFTYPE_WDS &&
208 (type2 == NL80211_IFTYPE_WDS ||
209 type2 == NL80211_IFTYPE_AP)) ||
210 (type1 == NL80211_IFTYPE_AP && type2 == NL80211_IFTYPE_AP_VLAN) ||
211 (type1 == NL80211_IFTYPE_AP_VLAN &&
212 (type2 == NL80211_IFTYPE_AP ||
213 type2 == NL80211_IFTYPE_AP_VLAN));
214}
215
Johannes Berg87490f62010-08-27 12:35:57 +0200216static int ieee80211_check_concurrent_iface(struct ieee80211_sub_if_data *sdata,
217 enum nl80211_iftype iftype)
Johannes Berg0d143fe2008-09-11 00:01:59 +0200218{
Johannes Bergb4a4bf52008-09-26 13:34:54 +0200219 struct ieee80211_local *local = sdata->local;
Johannes Berg87490f62010-08-27 12:35:57 +0200220 struct ieee80211_sub_if_data *nsdata;
Johannes Berg0d143fe2008-09-11 00:01:59 +0200221
Johannes Berg87490f62010-08-27 12:35:57 +0200222 ASSERT_RTNL();
Johannes Berg0d143fe2008-09-11 00:01:59 +0200223
224 /* we hold the RTNL here so can safely walk the list */
225 list_for_each_entry(nsdata, &local->interfaces, list) {
Johannes Berg371a2552012-06-19 15:54:05 +0200226 if (nsdata != sdata && ieee80211_sdata_running(nsdata)) {
Johannes Berg0d143fe2008-09-11 00:01:59 +0200227 /*
228 * Allow only a single IBSS interface to be up at any
229 * time. This is restricted because beacon distribution
230 * cannot work properly if both are in the same IBSS.
231 *
232 * To remove this restriction we'd have to disallow them
233 * from setting the same SSID on different IBSS interfaces
234 * belonging to the same hardware. Then, however, we're
235 * faced with having to adopt two different TSF timers...
236 */
Johannes Berg87490f62010-08-27 12:35:57 +0200237 if (iftype == NL80211_IFTYPE_ADHOC &&
Johannes Berg0d143fe2008-09-11 00:01:59 +0200238 nsdata->vif.type == NL80211_IFTYPE_ADHOC)
239 return -EBUSY;
240
241 /*
242 * The remaining checks are only performed for interfaces
243 * with the same MAC address.
244 */
Johannes Berg371a2552012-06-19 15:54:05 +0200245 if (!ether_addr_equal(sdata->vif.addr,
246 nsdata->vif.addr))
Johannes Berg0d143fe2008-09-11 00:01:59 +0200247 continue;
248
249 /*
250 * check whether it may have the same address
251 */
Johannes Berg87490f62010-08-27 12:35:57 +0200252 if (!identical_mac_addr_allowed(iftype,
Johannes Berg0d143fe2008-09-11 00:01:59 +0200253 nsdata->vif.type))
254 return -ENOTUNIQ;
255
256 /*
257 * can only add VLANs to enabled APs
258 */
Johannes Berg87490f62010-08-27 12:35:57 +0200259 if (iftype == NL80211_IFTYPE_AP_VLAN &&
Johannes Berg0d143fe2008-09-11 00:01:59 +0200260 nsdata->vif.type == NL80211_IFTYPE_AP)
261 sdata->bss = &nsdata->u.ap;
262 }
263 }
264
Johannes Berg87490f62010-08-27 12:35:57 +0200265 return 0;
266}
267
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200268static int ieee80211_check_queues(struct ieee80211_sub_if_data *sdata)
269{
270 int n_queues = sdata->local->hw.queues;
271 int i;
272
273 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
274 if (WARN_ON_ONCE(sdata->vif.hw_queue[i] ==
275 IEEE80211_INVAL_HW_QUEUE))
276 return -EINVAL;
277 if (WARN_ON_ONCE(sdata->vif.hw_queue[i] >=
278 n_queues))
279 return -EINVAL;
280 }
281
Luciano Coelhobb3e10f2012-04-12 16:09:49 +0300282 if ((sdata->vif.type != NL80211_IFTYPE_AP) ||
283 !(sdata->local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)) {
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200284 sdata->vif.cab_queue = IEEE80211_INVAL_HW_QUEUE;
285 return 0;
286 }
287
288 if (WARN_ON_ONCE(sdata->vif.cab_queue == IEEE80211_INVAL_HW_QUEUE))
289 return -EINVAL;
290
291 if (WARN_ON_ONCE(sdata->vif.cab_queue >= n_queues))
292 return -EINVAL;
293
294 return 0;
295}
296
Christian Lamparter85416a42010-10-02 13:17:07 +0200297void ieee80211_adjust_monitor_flags(struct ieee80211_sub_if_data *sdata,
298 const int offset)
299{
300 struct ieee80211_local *local = sdata->local;
301 u32 flags = sdata->u.mntr_flags;
302
303#define ADJUST(_f, _s) do { \
304 if (flags & MONITOR_FLAG_##_f) \
305 local->fif_##_s += offset; \
306 } while (0)
307
308 ADJUST(FCSFAIL, fcsfail);
309 ADJUST(PLCPFAIL, plcpfail);
310 ADJUST(CONTROL, control);
311 ADJUST(CONTROL, pspoll);
312 ADJUST(OTHER_BSS, other_bss);
313
314#undef ADJUST
315}
316
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200317static void ieee80211_set_default_queues(struct ieee80211_sub_if_data *sdata)
318{
319 struct ieee80211_local *local = sdata->local;
320 int i;
321
322 for (i = 0; i < IEEE80211_NUM_ACS; i++) {
323 if (local->hw.flags & IEEE80211_HW_QUEUE_CONTROL)
324 sdata->vif.hw_queue[i] = IEEE80211_INVAL_HW_QUEUE;
Johannes Berga9d3c052012-05-07 17:45:29 +0200325 else if (local->hw.queues >= IEEE80211_NUM_ACS)
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200326 sdata->vif.hw_queue[i] = i;
Johannes Berga9d3c052012-05-07 17:45:29 +0200327 else
328 sdata->vif.hw_queue[i] = 0;
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200329 }
330 sdata->vif.cab_queue = IEEE80211_INVAL_HW_QUEUE;
331}
332
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200333static int ieee80211_add_virtual_monitor(struct ieee80211_local *local)
334{
335 struct ieee80211_sub_if_data *sdata;
336 int ret;
337
338 if (!(local->hw.flags & IEEE80211_HW_WANT_MONITOR_VIF))
339 return 0;
340
341 if (local->monitor_sdata)
342 return 0;
343
344 sdata = kzalloc(sizeof(*sdata) + local->hw.vif_data_size, GFP_KERNEL);
345 if (!sdata)
346 return -ENOMEM;
347
348 /* set up data */
349 sdata->local = local;
350 sdata->vif.type = NL80211_IFTYPE_MONITOR;
351 snprintf(sdata->name, IFNAMSIZ, "%s-monitor",
352 wiphy_name(local->hw.wiphy));
353
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200354 ieee80211_set_default_queues(sdata);
355
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200356 ret = drv_add_interface(local, sdata);
357 if (WARN_ON(ret)) {
358 /* ok .. stupid driver, it asked for this! */
359 kfree(sdata);
360 return ret;
361 }
362
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200363 ret = ieee80211_check_queues(sdata);
364 if (ret) {
365 kfree(sdata);
366 return ret;
367 }
368
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200369 rcu_assign_pointer(local->monitor_sdata, sdata);
370
371 return 0;
372}
373
374static void ieee80211_del_virtual_monitor(struct ieee80211_local *local)
375{
376 struct ieee80211_sub_if_data *sdata;
377
378 if (!(local->hw.flags & IEEE80211_HW_WANT_MONITOR_VIF))
379 return;
380
381 sdata = rtnl_dereference(local->monitor_sdata);
382
383 if (!sdata)
384 return;
385
386 rcu_assign_pointer(local->monitor_sdata, NULL);
387 synchronize_net();
388
389 drv_remove_interface(local, sdata);
390
391 kfree(sdata);
392}
393
Johannes Berg34d4bc42010-08-27 12:35:58 +0200394/*
395 * NOTE: Be very careful when changing this function, it must NOT return
396 * an error on interface type changes that have been pre-checked, so most
397 * checks should be in ieee80211_check_concurrent_iface.
398 */
399static int ieee80211_do_open(struct net_device *dev, bool coming_up)
Johannes Berg87490f62010-08-27 12:35:57 +0200400{
401 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
402 struct ieee80211_local *local = sdata->local;
403 struct sta_info *sta;
404 u32 changed = 0;
405 int res;
406 u32 hw_reconf_flags = 0;
407
Johannes Berg0d143fe2008-09-11 00:01:59 +0200408 switch (sdata->vif.type) {
409 case NL80211_IFTYPE_WDS:
410 if (!is_valid_ether_addr(sdata->u.wds.remote_addr))
411 return -ENOLINK;
412 break;
Johannes Berg665c93a2011-11-04 11:18:11 +0100413 case NL80211_IFTYPE_AP_VLAN: {
414 struct ieee80211_sub_if_data *master;
415
Johannes Berg0d143fe2008-09-11 00:01:59 +0200416 if (!sdata->bss)
417 return -ENOLINK;
Johannes Berg665c93a2011-11-04 11:18:11 +0100418
Johannes Berg0d143fe2008-09-11 00:01:59 +0200419 list_add(&sdata->u.vlan.list, &sdata->bss->vlans);
Johannes Berg665c93a2011-11-04 11:18:11 +0100420
421 master = container_of(sdata->bss,
422 struct ieee80211_sub_if_data, u.ap);
423 sdata->control_port_protocol =
424 master->control_port_protocol;
425 sdata->control_port_no_encrypt =
426 master->control_port_no_encrypt;
Johannes Berg0d143fe2008-09-11 00:01:59 +0200427 break;
Johannes Berg665c93a2011-11-04 11:18:11 +0100428 }
Johannes Berg0d143fe2008-09-11 00:01:59 +0200429 case NL80211_IFTYPE_AP:
430 sdata->bss = &sdata->u.ap;
431 break;
432 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg0d143fe2008-09-11 00:01:59 +0200433 case NL80211_IFTYPE_STATION:
434 case NL80211_IFTYPE_MONITOR:
435 case NL80211_IFTYPE_ADHOC:
436 /* no special treatment */
437 break;
438 case NL80211_IFTYPE_UNSPECIFIED:
Johannes Berg2e161f782010-08-12 15:38:38 +0200439 case NUM_NL80211_IFTYPES:
Johannes Berg2ca27bc2010-09-16 14:58:23 +0200440 case NL80211_IFTYPE_P2P_CLIENT:
441 case NL80211_IFTYPE_P2P_GO:
Johannes Berg0d143fe2008-09-11 00:01:59 +0200442 /* cannot happen */
443 WARN_ON(1);
444 break;
445 }
446
447 if (local->open_count == 0) {
Johannes Berg24487982009-04-23 18:52:52 +0200448 res = drv_start(local);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200449 if (res)
450 goto err_del_bss;
John W. Linville4e6cbfd2010-07-29 16:14:13 -0400451 if (local->ops->napi_poll)
452 napi_enable(&local->napi);
Johannes Berge8975582008-10-09 12:18:51 +0200453 /* we're brought up, everything changes */
454 hw_reconf_flags = ~0;
Johannes Berg1f87f7d2009-06-02 13:01:41 +0200455 ieee80211_led_radio(local, true);
Johannes Berg67408c82010-11-30 08:59:23 +0100456 ieee80211_mod_tpt_led_trig(local,
457 IEEE80211_TPT_LEDTRIG_FL_RADIO, 0);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200458 }
459
460 /*
Johannes Bergbf533e0b2010-08-27 12:35:56 +0200461 * Copy the hopefully now-present MAC address to
462 * this interface, if it has the special null one.
Johannes Berg0d143fe2008-09-11 00:01:59 +0200463 */
Johannes Bergbf533e0b2010-08-27 12:35:56 +0200464 if (is_zero_ether_addr(dev->dev_addr)) {
465 memcpy(dev->dev_addr,
466 local->hw.wiphy->perm_addr,
467 ETH_ALEN);
468 memcpy(dev->perm_addr, dev->dev_addr, ETH_ALEN);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200469
Johannes Bergbf533e0b2010-08-27 12:35:56 +0200470 if (!is_valid_ether_addr(dev->dev_addr)) {
Johannes Berg4d6c36f2012-04-03 14:45:54 +0200471 res = -EADDRNOTAVAIL;
472 goto err_stop;
John W. Linville0adc23f2009-10-06 16:27:18 -0400473 }
Johannes Berg0d143fe2008-09-11 00:01:59 +0200474 }
475
Johannes Berg0d143fe2008-09-11 00:01:59 +0200476 switch (sdata->vif.type) {
477 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg3edaf3e2012-04-03 10:24:00 +0200478 /* no need to tell driver, but set carrier */
479 if (rtnl_dereference(sdata->bss->beacon))
480 netif_carrier_on(dev);
481 else
482 netif_carrier_off(dev);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200483 break;
484 case NL80211_IFTYPE_MONITOR:
485 if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) {
486 local->cooked_mntrs++;
487 break;
488 }
489
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200490 if (local->monitors == 0 && local->open_count == 0) {
491 res = ieee80211_add_virtual_monitor(local);
492 if (res)
493 goto err_stop;
494 }
495
Johannes Berg0d143fe2008-09-11 00:01:59 +0200496 /* must be before the call to ieee80211_configure_filter */
497 local->monitors++;
Johannes Berge8975582008-10-09 12:18:51 +0200498 if (local->monitors == 1) {
Johannes Berg0869aea02009-10-28 10:03:35 +0100499 local->hw.conf.flags |= IEEE80211_CONF_MONITOR;
500 hw_reconf_flags |= IEEE80211_CONF_CHANGE_MONITOR;
Johannes Berge8975582008-10-09 12:18:51 +0200501 }
Johannes Berg0d143fe2008-09-11 00:01:59 +0200502
Christian Lamparter85416a42010-10-02 13:17:07 +0200503 ieee80211_adjust_monitor_flags(sdata, 1);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200504 ieee80211_configure_filter(local);
David Gnedt53e9b1d2010-07-19 20:44:02 +0200505
506 netif_carrier_on(dev);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200507 break;
Johannes Berg0d143fe2008-09-11 00:01:59 +0200508 default:
Johannes Berg34d4bc42010-08-27 12:35:58 +0200509 if (coming_up) {
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200510 ieee80211_del_virtual_monitor(local);
511
Johannes Berg7b7eab62011-11-03 14:41:13 +0100512 res = drv_add_interface(local, sdata);
Johannes Berg34d4bc42010-08-27 12:35:58 +0200513 if (res)
514 goto err_stop;
Johannes Berg3a25a8c2012-04-03 16:28:50 +0200515 res = ieee80211_check_queues(sdata);
516 if (res)
517 goto err_del_interface;
Johannes Berg34d4bc42010-08-27 12:35:58 +0200518 }
Johannes Berg0d143fe2008-09-11 00:01:59 +0200519
Johannes Berg29cbe682010-12-03 09:20:44 +0100520 if (sdata->vif.type == NL80211_IFTYPE_AP) {
Igor Perminove3b90ca2009-08-04 16:48:51 +0400521 local->fif_pspoll++;
Johannes Berg7be50862010-10-13 12:06:24 +0200522 local->fif_probe_req++;
Igor Perminove3b90ca2009-08-04 16:48:51 +0400523
Igor Perminove3b90ca2009-08-04 16:48:51 +0400524 ieee80211_configure_filter(local);
Johannes Berg7be50862010-10-13 12:06:24 +0200525 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
526 local->fif_probe_req++;
Andrey Yurovskya3c9aa52008-10-31 14:50:12 -0700527 }
Igor Perminove3b90ca2009-08-04 16:48:51 +0400528
Johannes Berg0d143fe2008-09-11 00:01:59 +0200529 changed |= ieee80211_reset_erp_info(sdata);
530 ieee80211_bss_info_change_notify(sdata, changed);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200531
Eliad Peller86a2ea42011-11-08 15:36:59 +0200532 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
Johannes Berg3edaf3e2012-04-03 10:24:00 +0200533 sdata->vif.type == NL80211_IFTYPE_ADHOC ||
534 sdata->vif.type == NL80211_IFTYPE_AP)
Johannes Berg0d143fe2008-09-11 00:01:59 +0200535 netif_carrier_off(dev);
536 else
537 netif_carrier_on(dev);
Eliad Peller59034592011-10-16 10:57:31 +0200538
539 /*
540 * set default queue parameters so drivers don't
541 * need to initialise the hardware if the hardware
542 * doesn't start up with sane defaults
543 */
Johannes Berg3abead52012-03-02 15:56:59 +0100544 ieee80211_set_wmm_default(sdata, true);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200545 }
546
Johannes Berg2d2080c2010-09-15 15:13:13 +0200547 set_bit(SDATA_STATE_RUNNING, &sdata->state);
548
Johannes Berg0d143fe2008-09-11 00:01:59 +0200549 if (sdata->vif.type == NL80211_IFTYPE_WDS) {
550 /* Create STA entry for the WDS peer */
551 sta = sta_info_alloc(sdata, sdata->u.wds.remote_addr,
552 GFP_KERNEL);
553 if (!sta) {
554 res = -ENOMEM;
555 goto err_del_interface;
556 }
557
Johannes Berg83d5cc02012-01-12 09:31:10 +0100558 sta_info_pre_move_state(sta, IEEE80211_STA_AUTH);
559 sta_info_pre_move_state(sta, IEEE80211_STA_ASSOC);
560 sta_info_pre_move_state(sta, IEEE80211_STA_AUTHORIZED);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200561
562 res = sta_info_insert(sta);
563 if (res) {
564 /* STA has been freed */
565 goto err_del_interface;
566 }
Bill Jordan1be7fe82010-10-01 11:20:41 -0400567
568 rate_control_rate_init(sta);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200569 }
570
Johannes Berg0d143fe2008-09-11 00:01:59 +0200571 /*
572 * set_multicast_list will be invoked by the networking core
573 * which will check whether any increments here were done in
574 * error and sync them down to the hardware as filter flags.
575 */
576 if (sdata->flags & IEEE80211_SDATA_ALLMULTI)
577 atomic_inc(&local->iff_allmultis);
578
579 if (sdata->flags & IEEE80211_SDATA_PROMISC)
580 atomic_inc(&local->iff_promiscs);
581
Johannes Berg7da7cc12010-08-05 17:02:38 +0200582 mutex_lock(&local->mtx);
Johannes Berg5cff20e2009-04-29 12:26:17 +0200583 hw_reconf_flags |= __ieee80211_recalc_idle(local);
Johannes Berg7da7cc12010-08-05 17:02:38 +0200584 mutex_unlock(&local->mtx);
Johannes Berg5cff20e2009-04-29 12:26:17 +0200585
Johannes Berg34d4bc42010-08-27 12:35:58 +0200586 if (coming_up)
587 local->open_count++;
588
Eliad Peller59034592011-10-16 10:57:31 +0200589 if (hw_reconf_flags)
Johannes Berge8975582008-10-09 12:18:51 +0200590 ieee80211_hw_config(local, hw_reconf_flags);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200591
Johannes Berg10f644a2009-04-16 13:17:25 +0200592 ieee80211_recalc_ps(local, -1);
Johannes Berg965beda2009-04-16 13:17:24 +0200593
John W. Linville8a5b33f2010-01-06 15:39:39 -0500594 netif_tx_start_all_queues(dev);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200595
596 return 0;
597 err_del_interface:
Johannes Berg7b7eab62011-11-03 14:41:13 +0100598 drv_remove_interface(local, sdata);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200599 err_stop:
Johannes Berg24487982009-04-23 18:52:52 +0200600 if (!local->open_count)
601 drv_stop(local);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200602 err_del_bss:
603 sdata->bss = NULL;
604 if (sdata->vif.type == NL80211_IFTYPE_AP_VLAN)
605 list_del(&sdata->u.vlan.list);
Johannes Berg4d6c36f2012-04-03 14:45:54 +0200606 /* might already be clear but that doesn't matter */
Johannes Berg2d2080c2010-09-15 15:13:13 +0200607 clear_bit(SDATA_STATE_RUNNING, &sdata->state);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200608 return res;
609}
610
Johannes Berg34d4bc42010-08-27 12:35:58 +0200611static int ieee80211_open(struct net_device *dev)
Johannes Berg0d143fe2008-09-11 00:01:59 +0200612{
613 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Berg34d4bc42010-08-27 12:35:58 +0200614 int err;
615
616 /* fail early if user set an invalid address */
Mohammed Shafi Shajakhan2fcf28242011-07-12 15:19:04 +0530617 if (!is_valid_ether_addr(dev->dev_addr))
Johannes Berg34d4bc42010-08-27 12:35:58 +0200618 return -EADDRNOTAVAIL;
619
620 err = ieee80211_check_concurrent_iface(sdata, sdata->vif.type);
621 if (err)
622 return err;
623
624 return ieee80211_do_open(dev, true);
625}
626
627static void ieee80211_do_stop(struct ieee80211_sub_if_data *sdata,
628 bool going_down)
629{
Johannes Berg0d143fe2008-09-11 00:01:59 +0200630 struct ieee80211_local *local = sdata->local;
Johannes Berg5061b0c2009-07-14 00:33:34 +0200631 unsigned long flags;
632 struct sk_buff *skb, *tmp;
Johannes Berge8975582008-10-09 12:18:51 +0200633 u32 hw_reconf_flags = 0;
Johannes Berg5061b0c2009-07-14 00:33:34 +0200634 int i;
Ben Greear2cf22b82011-01-31 11:30:09 -0800635 enum nl80211_channel_type orig_ct;
Johannes Berg0d143fe2008-09-11 00:01:59 +0200636
Rajkumar Manoharanc29acf22011-05-14 09:43:28 +0530637 clear_bit(SDATA_STATE_RUNNING, &sdata->state);
638
Brian Cavagnolo352ffad2010-11-04 16:59:28 -0700639 if (local->scan_sdata == sdata)
640 ieee80211_scan_cancel(local);
641
Johannes Berg0d143fe2008-09-11 00:01:59 +0200642 /*
643 * Stop TX on this interface first.
644 */
Johannes Berg34d4bc42010-08-27 12:35:58 +0200645 netif_tx_stop_all_queues(sdata->dev);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200646
Johannes Berg2eb278e2012-06-05 14:28:42 +0200647 ieee80211_roc_purge(sdata);
Johannes Bergaf6b6372009-12-23 13:15:35 +0100648
649 /*
Johannes Berg0d143fe2008-09-11 00:01:59 +0200650 * Remove all stations associated with this interface.
651 *
652 * This must be done before calling ops->remove_interface()
653 * because otherwise we can later invoke ops->sta_notify()
654 * whenever the STAs are removed, and that invalidates driver
655 * assumptions about always getting a vif pointer that is valid
656 * (because if we remove a STA after ops->remove_interface()
657 * the driver will have removed the vif info already!)
658 *
Johannes Bergb9dcf712010-08-27 12:35:54 +0200659 * This is relevant only in AP, WDS and mesh modes, since in
660 * all other modes we've already removed all stations when
661 * disconnecting etc.
Johannes Berg0d143fe2008-09-11 00:01:59 +0200662 */
663 sta_info_flush(local, sdata);
664
665 /*
666 * Don't count this interface for promisc/allmulti while it
667 * is down. dev_mc_unsync() will invoke set_multicast_list
668 * on the master interface which will sync these down to the
669 * hardware as filter flags.
670 */
671 if (sdata->flags & IEEE80211_SDATA_ALLMULTI)
672 atomic_dec(&local->iff_allmultis);
673
674 if (sdata->flags & IEEE80211_SDATA_PROMISC)
675 atomic_dec(&local->iff_promiscs);
676
Johannes Berg7be50862010-10-13 12:06:24 +0200677 if (sdata->vif.type == NL80211_IFTYPE_AP) {
Igor Perminove3b90ca2009-08-04 16:48:51 +0400678 local->fif_pspoll--;
Johannes Berg7be50862010-10-13 12:06:24 +0200679 local->fif_probe_req--;
680 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC) {
681 local->fif_probe_req--;
682 }
Igor Perminove3b90ca2009-08-04 16:48:51 +0400683
Johannes Berg34d4bc42010-08-27 12:35:58 +0200684 netif_addr_lock_bh(sdata->dev);
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200685 spin_lock_bh(&local->filter_lock);
Johannes Berg34d4bc42010-08-27 12:35:58 +0200686 __hw_addr_unsync(&local->mc_list, &sdata->dev->mc,
687 sdata->dev->addr_len);
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200688 spin_unlock_bh(&local->filter_lock);
Johannes Berg34d4bc42010-08-27 12:35:58 +0200689 netif_addr_unlock_bh(sdata->dev);
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200690
Johannes Berg3ac64be2009-08-17 16:16:53 +0200691 ieee80211_configure_filter(local);
692
Vivek Natarajan7cbf0ba2008-12-24 00:34:37 -0800693 del_timer_sync(&local->dynamic_ps_timer);
694 cancel_work_sync(&local->dynamic_ps_enable_work);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200695
696 /* APs need special treatment */
697 if (sdata->vif.type == NL80211_IFTYPE_AP) {
Johannes Berg57c9fff2009-07-29 15:46:21 +0200698 struct ieee80211_sub_if_data *vlan, *tmpsdata;
Johannes Berg40b275b2011-05-13 14:15:49 +0200699 struct beacon_data *old_beacon =
700 rtnl_dereference(sdata->u.ap.beacon);
Arik Nemtsov02945822011-11-10 11:28:57 +0200701 struct sk_buff *old_probe_resp =
702 rtnl_dereference(sdata->u.ap.probe_resp);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200703
Johannes Bergb9dcf712010-08-27 12:35:54 +0200704 /* sdata_running will return false, so this will disable */
705 ieee80211_bss_info_change_notify(sdata,
706 BSS_CHANGED_BEACON_ENABLED);
707
Arik Nemtsov02945822011-11-10 11:28:57 +0200708 /* remove beacon and probe response */
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000709 RCU_INIT_POINTER(sdata->u.ap.beacon, NULL);
Arik Nemtsov02945822011-11-10 11:28:57 +0200710 RCU_INIT_POINTER(sdata->u.ap.probe_resp, NULL);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200711 synchronize_rcu();
712 kfree(old_beacon);
Dan Carpenter5e2e05d2011-11-15 09:33:09 +0300713 kfree_skb(old_probe_resp);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200714
715 /* down all dependent devices, that is VLANs */
Johannes Berg57c9fff2009-07-29 15:46:21 +0200716 list_for_each_entry_safe(vlan, tmpsdata, &sdata->u.ap.vlans,
Johannes Berg0d143fe2008-09-11 00:01:59 +0200717 u.vlan.list)
718 dev_close(vlan->dev);
719 WARN_ON(!list_empty(&sdata->u.ap.vlans));
Johannes Berg6f2d9332011-09-20 17:40:51 +0200720
721 /* free all potentially still buffered bcast frames */
722 local->total_ps_buffered -= skb_queue_len(&sdata->u.ap.ps_bc_buf);
723 skb_queue_purge(&sdata->u.ap.ps_bc_buf);
Eliad Pellerafa762f2012-04-23 14:45:15 +0300724 } else if (sdata->vif.type == NL80211_IFTYPE_STATION) {
725 ieee80211_mgd_stop(sdata);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200726 }
727
Johannes Berg34d4bc42010-08-27 12:35:58 +0200728 if (going_down)
729 local->open_count--;
Johannes Berg0d143fe2008-09-11 00:01:59 +0200730
731 switch (sdata->vif.type) {
732 case NL80211_IFTYPE_AP_VLAN:
733 list_del(&sdata->u.vlan.list);
734 /* no need to tell driver */
735 break;
736 case NL80211_IFTYPE_MONITOR:
737 if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES) {
738 local->cooked_mntrs--;
739 break;
740 }
741
742 local->monitors--;
Johannes Berge8975582008-10-09 12:18:51 +0200743 if (local->monitors == 0) {
Johannes Berg0869aea02009-10-28 10:03:35 +0100744 local->hw.conf.flags &= ~IEEE80211_CONF_MONITOR;
745 hw_reconf_flags |= IEEE80211_CONF_CHANGE_MONITOR;
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200746 ieee80211_del_virtual_monitor(local);
Johannes Berge8975582008-10-09 12:18:51 +0200747 }
Johannes Berg0d143fe2008-09-11 00:01:59 +0200748
Christian Lamparter85416a42010-10-02 13:17:07 +0200749 ieee80211_adjust_monitor_flags(sdata, -1);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200750 ieee80211_configure_filter(local);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200751 break;
Johannes Berg0d143fe2008-09-11 00:01:59 +0200752 default:
Johannes Bergc1475ca2010-06-10 10:21:37 +0200753 flush_work(&sdata->work);
Johannes Berg35f20c12010-06-10 10:21:30 +0200754 /*
755 * When we get here, the interface is marked down.
756 * Call synchronize_rcu() to wait for the RX path
757 * should it be using the interface and enqueuing
758 * frames at this very time on another CPU.
759 */
760 synchronize_rcu();
761 skb_queue_purge(&sdata->skb_queue);
762
Bob Copeland97af7432009-07-29 10:13:03 +0200763 /*
Johannes Bergb9dcf712010-08-27 12:35:54 +0200764 * Disable beaconing here for mesh only, AP and IBSS
765 * are already taken care of.
Bob Copeland97af7432009-07-29 10:13:03 +0200766 */
Johannes Bergb9dcf712010-08-27 12:35:54 +0200767 if (sdata->vif.type == NL80211_IFTYPE_MESH_POINT)
Bob Copeland97af7432009-07-29 10:13:03 +0200768 ieee80211_bss_info_change_notify(sdata,
769 BSS_CHANGED_BEACON_ENABLED);
Bob Copeland97af7432009-07-29 10:13:03 +0200770
Johannes Bergb9dcf712010-08-27 12:35:54 +0200771 /*
772 * Free all remaining keys, there shouldn't be any,
773 * except maybe group keys in AP more or WDS?
774 */
Johannes Bergad0e2b52010-06-01 10:19:19 +0200775 ieee80211_free_keys(sdata);
Johannes Bergb9dcf712010-08-27 12:35:54 +0200776
Johannes Berg34d4bc42010-08-27 12:35:58 +0200777 if (going_down)
Johannes Berg7b7eab62011-11-03 14:41:13 +0100778 drv_remove_interface(local, sdata);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200779 }
780
781 sdata->bss = NULL;
782
Johannes Berg7da7cc12010-08-05 17:02:38 +0200783 mutex_lock(&local->mtx);
Johannes Berg5cff20e2009-04-29 12:26:17 +0200784 hw_reconf_flags |= __ieee80211_recalc_idle(local);
Johannes Berg7da7cc12010-08-05 17:02:38 +0200785 mutex_unlock(&local->mtx);
Johannes Berg5cff20e2009-04-29 12:26:17 +0200786
787 ieee80211_recalc_ps(local, -1);
788
Johannes Berg0d143fe2008-09-11 00:01:59 +0200789 if (local->open_count == 0) {
John W. Linville4e6cbfd2010-07-29 16:14:13 -0400790 if (local->ops->napi_poll)
791 napi_disable(&local->napi);
Johannes Bergea77f122009-08-21 14:44:45 +0200792 ieee80211_clear_tx_pending(local);
Johannes Berg84f6a012009-08-20 20:02:20 +0200793 ieee80211_stop_device(local);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200794
Johannes Berge8975582008-10-09 12:18:51 +0200795 /* no reconfiguring after stop! */
796 hw_reconf_flags = 0;
Johannes Berg0d143fe2008-09-11 00:01:59 +0200797 }
798
Ben Greear2cf22b82011-01-31 11:30:09 -0800799 /* Re-calculate channel-type, in case there are multiple vifs
800 * on different channel types.
801 */
802 orig_ct = local->_oper_channel_type;
803 ieee80211_set_channel_type(local, NULL, NL80211_CHAN_NO_HT);
804
Johannes Berge8975582008-10-09 12:18:51 +0200805 /* do after stop to avoid reconfiguring when we stop anyway */
Ben Greear2cf22b82011-01-31 11:30:09 -0800806 if (hw_reconf_flags || (orig_ct != local->_oper_channel_type))
Johannes Berge8975582008-10-09 12:18:51 +0200807 ieee80211_hw_config(local, hw_reconf_flags);
808
Johannes Berg5061b0c2009-07-14 00:33:34 +0200809 spin_lock_irqsave(&local->queue_stop_reason_lock, flags);
810 for (i = 0; i < IEEE80211_MAX_QUEUES; i++) {
811 skb_queue_walk_safe(&local->pending[i], skb, tmp) {
812 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
813 if (info->control.vif == &sdata->vif) {
814 __skb_unlink(skb, &local->pending[i]);
815 dev_kfree_skb_irq(skb);
816 }
817 }
818 }
819 spin_unlock_irqrestore(&local->queue_stop_reason_lock, flags);
Johannes Berg4b6f1dd2012-04-03 14:35:57 +0200820
821 if (local->monitors == local->open_count && local->monitors > 0)
822 ieee80211_add_virtual_monitor(local);
Johannes Berg34d4bc42010-08-27 12:35:58 +0200823}
824
825static int ieee80211_stop(struct net_device *dev)
826{
827 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
828
829 ieee80211_do_stop(sdata, true);
Johannes Berg5061b0c2009-07-14 00:33:34 +0200830
Johannes Berg0d143fe2008-09-11 00:01:59 +0200831 return 0;
832}
833
834static void ieee80211_set_multicast_list(struct net_device *dev)
835{
Johannes Berg0d143fe2008-09-11 00:01:59 +0200836 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Bergb4a4bf52008-09-26 13:34:54 +0200837 struct ieee80211_local *local = sdata->local;
Johannes Berg0d143fe2008-09-11 00:01:59 +0200838 int allmulti, promisc, sdata_allmulti, sdata_promisc;
839
840 allmulti = !!(dev->flags & IFF_ALLMULTI);
841 promisc = !!(dev->flags & IFF_PROMISC);
842 sdata_allmulti = !!(sdata->flags & IEEE80211_SDATA_ALLMULTI);
843 sdata_promisc = !!(sdata->flags & IEEE80211_SDATA_PROMISC);
844
845 if (allmulti != sdata_allmulti) {
846 if (dev->flags & IFF_ALLMULTI)
847 atomic_inc(&local->iff_allmultis);
848 else
849 atomic_dec(&local->iff_allmultis);
850 sdata->flags ^= IEEE80211_SDATA_ALLMULTI;
851 }
852
853 if (promisc != sdata_promisc) {
854 if (dev->flags & IFF_PROMISC)
855 atomic_inc(&local->iff_promiscs);
856 else
857 atomic_dec(&local->iff_promiscs);
858 sdata->flags ^= IEEE80211_SDATA_PROMISC;
859 }
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200860 spin_lock_bh(&local->filter_lock);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000861 __hw_addr_sync(&local->mc_list, &dev->mc, dev->addr_len);
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200862 spin_unlock_bh(&local->filter_lock);
Johannes Berg3ac64be2009-08-17 16:16:53 +0200863 ieee80211_queue_work(&local->hw, &local->reconfig_filter);
Johannes Berg0d143fe2008-09-11 00:01:59 +0200864}
865
Johannes Berg75636522008-07-09 14:40:35 +0200866/*
867 * Called when the netdev is removed or, by the code below, before
868 * the interface type changes.
869 */
870static void ieee80211_teardown_sdata(struct net_device *dev)
Jiri Bencf0706e82007-05-05 11:45:53 -0700871{
Johannes Berg75636522008-07-09 14:40:35 +0200872 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
873 struct ieee80211_local *local = sdata->local;
Johannes Berg75636522008-07-09 14:40:35 +0200874 int flushed;
Jiri Bencf0706e82007-05-05 11:45:53 -0700875 int i;
876
Johannes Berg75636522008-07-09 14:40:35 +0200877 /* free extra data */
878 ieee80211_free_keys(sdata);
Jiri Bencf0706e82007-05-05 11:45:53 -0700879
Jouni Malinenaee14ce2008-09-09 16:33:15 +0200880 ieee80211_debugfs_remove_netdev(sdata);
881
Johannes Berg988c0f72008-04-17 19:21:22 +0200882 for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++)
Jiri Bencf0706e82007-05-05 11:45:53 -0700883 __skb_queue_purge(&sdata->fragments[i].skb_list);
Johannes Berg75636522008-07-09 14:40:35 +0200884 sdata->fragment_next = 0;
885
Johannes Bergb9dcf712010-08-27 12:35:54 +0200886 if (ieee80211_vif_is_mesh(&sdata->vif))
887 mesh_rmc_free(sdata);
Johannes Berg75636522008-07-09 14:40:35 +0200888
889 flushed = sta_info_flush(local, sdata);
890 WARN_ON(flushed);
Jiri Bencf0706e82007-05-05 11:45:53 -0700891}
892
Johannes Bergcf0277e2010-01-05 18:00:58 +0100893static u16 ieee80211_netdev_select_queue(struct net_device *dev,
894 struct sk_buff *skb)
895{
896 return ieee80211_select_queue(IEEE80211_DEV_TO_SUB_IF(dev), skb);
897}
898
Johannes Berg587e7292009-01-30 13:35:22 +0100899static const struct net_device_ops ieee80211_dataif_ops = {
900 .ndo_open = ieee80211_open,
901 .ndo_stop = ieee80211_stop,
902 .ndo_uninit = ieee80211_teardown_sdata,
903 .ndo_start_xmit = ieee80211_subif_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000904 .ndo_set_rx_mode = ieee80211_set_multicast_list,
Johannes Berg587e7292009-01-30 13:35:22 +0100905 .ndo_change_mtu = ieee80211_change_mtu,
Johannes Berg47846c92009-11-25 17:46:19 +0100906 .ndo_set_mac_address = ieee80211_change_mac,
Johannes Bergcf0277e2010-01-05 18:00:58 +0100907 .ndo_select_queue = ieee80211_netdev_select_queue,
Johannes Berg587e7292009-01-30 13:35:22 +0100908};
909
Johannes Bergcf0277e2010-01-05 18:00:58 +0100910static u16 ieee80211_monitor_select_queue(struct net_device *dev,
911 struct sk_buff *skb)
912{
913 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
914 struct ieee80211_local *local = sdata->local;
915 struct ieee80211_hdr *hdr;
916 struct ieee80211_radiotap_header *rtap = (void *)skb->data;
917
Johannes Berg32c50572012-03-28 11:04:29 +0200918 if (local->hw.queues < IEEE80211_NUM_ACS)
Johannes Bergcf0277e2010-01-05 18:00:58 +0100919 return 0;
920
921 if (skb->len < 4 ||
Johannes Bergb49bb572010-01-08 19:00:00 +0100922 skb->len < le16_to_cpu(rtap->it_len) + 2 /* frame control */)
Johannes Bergcf0277e2010-01-05 18:00:58 +0100923 return 0; /* doesn't matter, frame will be dropped */
924
Johannes Bergb49bb572010-01-08 19:00:00 +0100925 hdr = (void *)((u8 *)skb->data + le16_to_cpu(rtap->it_len));
Johannes Bergcf0277e2010-01-05 18:00:58 +0100926
Yoni Divinsky00e96de2012-06-20 15:39:13 +0300927 return ieee80211_select_queue_80211(sdata, skb, hdr);
Johannes Bergcf0277e2010-01-05 18:00:58 +0100928}
929
Johannes Berg587e7292009-01-30 13:35:22 +0100930static const struct net_device_ops ieee80211_monitorif_ops = {
931 .ndo_open = ieee80211_open,
932 .ndo_stop = ieee80211_stop,
933 .ndo_uninit = ieee80211_teardown_sdata,
934 .ndo_start_xmit = ieee80211_monitor_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000935 .ndo_set_rx_mode = ieee80211_set_multicast_list,
Johannes Berg587e7292009-01-30 13:35:22 +0100936 .ndo_change_mtu = ieee80211_change_mtu,
937 .ndo_set_mac_address = eth_mac_addr,
Johannes Bergcf0277e2010-01-05 18:00:58 +0100938 .ndo_select_queue = ieee80211_monitor_select_queue,
Johannes Berg587e7292009-01-30 13:35:22 +0100939};
940
941static void ieee80211_if_setup(struct net_device *dev)
942{
943 ether_setup(dev);
Neil Horman550fd082011-07-26 06:05:38 +0000944 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
Johannes Berg587e7292009-01-30 13:35:22 +0100945 dev->netdev_ops = &ieee80211_dataif_ops;
Johannes Berg587e7292009-01-30 13:35:22 +0100946 dev->destructor = free_netdev;
947}
948
Johannes Berg1fa57d02010-06-10 10:21:32 +0200949static void ieee80211_iface_work(struct work_struct *work)
950{
951 struct ieee80211_sub_if_data *sdata =
952 container_of(work, struct ieee80211_sub_if_data, work);
953 struct ieee80211_local *local = sdata->local;
954 struct sk_buff *skb;
Johannes Berg344eec62010-06-10 10:21:36 +0200955 struct sta_info *sta;
Johannes Bergc1475ca2010-06-10 10:21:37 +0200956 struct ieee80211_ra_tid *ra_tid;
Johannes Berg1fa57d02010-06-10 10:21:32 +0200957
958 if (!ieee80211_sdata_running(sdata))
959 return;
960
961 if (local->scanning)
962 return;
963
964 /*
965 * ieee80211_queue_work() should have picked up most cases,
966 * here we'll pick the rest.
967 */
968 if (WARN(local->suspended,
969 "interface work scheduled while going to suspend\n"))
970 return;
971
972 /* first process frames */
973 while ((skb = skb_dequeue(&sdata->skb_queue))) {
Johannes Bergbed7ee6e2010-06-10 10:21:35 +0200974 struct ieee80211_mgmt *mgmt = (void *)skb->data;
975
Johannes Bergc1475ca2010-06-10 10:21:37 +0200976 if (skb->pkt_type == IEEE80211_SDATA_QUEUE_AGG_START) {
977 ra_tid = (void *)&skb->cb;
978 ieee80211_start_tx_ba_cb(&sdata->vif, ra_tid->ra,
979 ra_tid->tid);
980 } else if (skb->pkt_type == IEEE80211_SDATA_QUEUE_AGG_STOP) {
981 ra_tid = (void *)&skb->cb;
982 ieee80211_stop_tx_ba_cb(&sdata->vif, ra_tid->ra,
983 ra_tid->tid);
984 } else if (ieee80211_is_action(mgmt->frame_control) &&
985 mgmt->u.action.category == WLAN_CATEGORY_BACK) {
Johannes Bergbed7ee6e2010-06-10 10:21:35 +0200986 int len = skb->len;
Johannes Bergbed7ee6e2010-06-10 10:21:35 +0200987
Johannes Berga93e3642010-06-10 10:21:46 +0200988 mutex_lock(&local->sta_mtx);
Felix Fietkau875ae5f2010-07-17 15:59:07 +0200989 sta = sta_info_get_bss(sdata, mgmt->sa);
Johannes Bergbed7ee6e2010-06-10 10:21:35 +0200990 if (sta) {
991 switch (mgmt->u.action.u.addba_req.action_code) {
992 case WLAN_ACTION_ADDBA_REQ:
993 ieee80211_process_addba_request(
994 local, sta, mgmt, len);
995 break;
996 case WLAN_ACTION_ADDBA_RESP:
997 ieee80211_process_addba_resp(local, sta,
998 mgmt, len);
999 break;
1000 case WLAN_ACTION_DELBA:
1001 ieee80211_process_delba(sdata, sta,
1002 mgmt, len);
1003 break;
1004 default:
1005 WARN_ON(1);
1006 break;
1007 }
1008 }
Johannes Berga93e3642010-06-10 10:21:46 +02001009 mutex_unlock(&local->sta_mtx);
Johannes Berg344eec62010-06-10 10:21:36 +02001010 } else if (ieee80211_is_data_qos(mgmt->frame_control)) {
1011 struct ieee80211_hdr *hdr = (void *)mgmt;
1012 /*
1013 * So the frame isn't mgmt, but frame_control
1014 * is at the right place anyway, of course, so
1015 * the if statement is correct.
1016 *
1017 * Warn if we have other data frame types here,
1018 * they must not get here.
1019 */
1020 WARN_ON(hdr->frame_control &
1021 cpu_to_le16(IEEE80211_STYPE_NULLFUNC));
1022 WARN_ON(!(hdr->seq_ctrl &
1023 cpu_to_le16(IEEE80211_SCTL_FRAG)));
1024 /*
1025 * This was a fragment of a frame, received while
1026 * a block-ack session was active. That cannot be
1027 * right, so terminate the session.
1028 */
Johannes Berga93e3642010-06-10 10:21:46 +02001029 mutex_lock(&local->sta_mtx);
Felix Fietkau875ae5f2010-07-17 15:59:07 +02001030 sta = sta_info_get_bss(sdata, mgmt->sa);
Johannes Berg344eec62010-06-10 10:21:36 +02001031 if (sta) {
1032 u16 tid = *ieee80211_get_qos_ctl(hdr) &
1033 IEEE80211_QOS_CTL_TID_MASK;
1034
1035 __ieee80211_stop_rx_ba_session(
1036 sta, tid, WLAN_BACK_RECIPIENT,
Johannes Berg53f73c02010-10-05 19:37:40 +02001037 WLAN_REASON_QSTA_REQUIRE_SETUP,
1038 true);
Johannes Berg344eec62010-06-10 10:21:36 +02001039 }
Johannes Berga93e3642010-06-10 10:21:46 +02001040 mutex_unlock(&local->sta_mtx);
Johannes Bergbed7ee6e2010-06-10 10:21:35 +02001041 } else switch (sdata->vif.type) {
Johannes Berg1fa57d02010-06-10 10:21:32 +02001042 case NL80211_IFTYPE_STATION:
1043 ieee80211_sta_rx_queued_mgmt(sdata, skb);
1044 break;
1045 case NL80211_IFTYPE_ADHOC:
1046 ieee80211_ibss_rx_queued_mgmt(sdata, skb);
1047 break;
1048 case NL80211_IFTYPE_MESH_POINT:
1049 if (!ieee80211_vif_is_mesh(&sdata->vif))
1050 break;
1051 ieee80211_mesh_rx_queued_mgmt(sdata, skb);
1052 break;
1053 default:
1054 WARN(1, "frame for unexpected interface type");
Johannes Berg1fa57d02010-06-10 10:21:32 +02001055 break;
1056 }
Johannes Berg36b3a622010-06-10 10:21:33 +02001057
1058 kfree_skb(skb);
Johannes Berg1fa57d02010-06-10 10:21:32 +02001059 }
1060
1061 /* then other type-dependent work */
1062 switch (sdata->vif.type) {
1063 case NL80211_IFTYPE_STATION:
1064 ieee80211_sta_work(sdata);
1065 break;
1066 case NL80211_IFTYPE_ADHOC:
1067 ieee80211_ibss_work(sdata);
1068 break;
1069 case NL80211_IFTYPE_MESH_POINT:
1070 if (!ieee80211_vif_is_mesh(&sdata->vif))
1071 break;
1072 ieee80211_mesh_work(sdata);
1073 break;
1074 default:
1075 break;
1076 }
1077}
1078
1079
Johannes Berg75636522008-07-09 14:40:35 +02001080/*
1081 * Helper function to initialise an interface to a specific type.
1082 */
1083static void ieee80211_setup_sdata(struct ieee80211_sub_if_data *sdata,
Johannes Berg05c914f2008-09-11 00:01:58 +02001084 enum nl80211_iftype type)
Johannes Berg75636522008-07-09 14:40:35 +02001085{
Johannes Berg75636522008-07-09 14:40:35 +02001086 /* clear type-dependent union */
1087 memset(&sdata->u, 0, sizeof(sdata->u));
1088
1089 /* and set some type-dependent values */
1090 sdata->vif.type = type;
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001091 sdata->vif.p2p = false;
Johannes Berg587e7292009-01-30 13:35:22 +01001092 sdata->dev->netdev_ops = &ieee80211_dataif_ops;
Johannes Berg60719ff2008-09-16 14:55:09 +02001093 sdata->wdev.iftype = type;
Johannes Berg75636522008-07-09 14:40:35 +02001094
Johannes Berga621fa42010-08-27 14:26:54 +03001095 sdata->control_port_protocol = cpu_to_be16(ETH_P_PAE);
1096 sdata->control_port_no_encrypt = false;
1097
Simon Wunderlichb53be792011-11-18 14:20:44 +01001098 sdata->noack_map = 0;
1099
Johannes Berg75636522008-07-09 14:40:35 +02001100 /* only monitor differs */
1101 sdata->dev->type = ARPHRD_ETHER;
1102
Johannes Berg35f20c12010-06-10 10:21:30 +02001103 skb_queue_head_init(&sdata->skb_queue);
Johannes Berg1fa57d02010-06-10 10:21:32 +02001104 INIT_WORK(&sdata->work, ieee80211_iface_work);
Johannes Berg35f20c12010-06-10 10:21:30 +02001105
Johannes Berg75636522008-07-09 14:40:35 +02001106 switch (type) {
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001107 case NL80211_IFTYPE_P2P_GO:
1108 type = NL80211_IFTYPE_AP;
1109 sdata->vif.type = type;
1110 sdata->vif.p2p = true;
1111 /* fall through */
Johannes Berg05c914f2008-09-11 00:01:58 +02001112 case NL80211_IFTYPE_AP:
Johannes Berg75636522008-07-09 14:40:35 +02001113 skb_queue_head_init(&sdata->u.ap.ps_bc_buf);
1114 INIT_LIST_HEAD(&sdata->u.ap.vlans);
1115 break;
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001116 case NL80211_IFTYPE_P2P_CLIENT:
1117 type = NL80211_IFTYPE_STATION;
1118 sdata->vif.type = type;
1119 sdata->vif.p2p = true;
1120 /* fall through */
Johannes Berg05c914f2008-09-11 00:01:58 +02001121 case NL80211_IFTYPE_STATION:
Johannes Berg9c6bd792008-09-11 00:01:52 +02001122 ieee80211_sta_setup_sdata(sdata);
Johannes Berg472dbc42008-09-11 00:01:49 +02001123 break;
Johannes Berg46900292009-02-15 12:44:28 +01001124 case NL80211_IFTYPE_ADHOC:
1125 ieee80211_ibss_setup_sdata(sdata);
1126 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001127 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg75636522008-07-09 14:40:35 +02001128 if (ieee80211_vif_is_mesh(&sdata->vif))
1129 ieee80211_mesh_init_sdata(sdata);
1130 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001131 case NL80211_IFTYPE_MONITOR:
Johannes Berg75636522008-07-09 14:40:35 +02001132 sdata->dev->type = ARPHRD_IEEE80211_RADIOTAP;
Johannes Berg587e7292009-01-30 13:35:22 +01001133 sdata->dev->netdev_ops = &ieee80211_monitorif_ops;
Johannes Berg75636522008-07-09 14:40:35 +02001134 sdata->u.mntr_flags = MONITOR_FLAG_CONTROL |
1135 MONITOR_FLAG_OTHER_BSS;
1136 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001137 case NL80211_IFTYPE_WDS:
1138 case NL80211_IFTYPE_AP_VLAN:
Johannes Berg75636522008-07-09 14:40:35 +02001139 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001140 case NL80211_IFTYPE_UNSPECIFIED:
Johannes Berg2e161f782010-08-12 15:38:38 +02001141 case NUM_NL80211_IFTYPES:
Johannes Berg75636522008-07-09 14:40:35 +02001142 BUG();
1143 break;
1144 }
1145
1146 ieee80211_debugfs_add_netdev(sdata);
1147}
1148
Andrei Emeltchenko94c514f2012-04-24 14:18:28 +03001149static void ieee80211_clean_sdata(struct ieee80211_sub_if_data *sdata)
1150{
1151 switch (sdata->vif.type) {
1152 case NL80211_IFTYPE_MESH_POINT:
1153 mesh_path_flush_by_iface(sdata);
1154 break;
1155
1156 default:
1157 break;
1158 }
1159}
1160
Johannes Berg34d4bc42010-08-27 12:35:58 +02001161static int ieee80211_runtime_change_iftype(struct ieee80211_sub_if_data *sdata,
1162 enum nl80211_iftype type)
1163{
1164 struct ieee80211_local *local = sdata->local;
1165 int ret, err;
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001166 enum nl80211_iftype internal_type = type;
1167 bool p2p = false;
Johannes Berg34d4bc42010-08-27 12:35:58 +02001168
1169 ASSERT_RTNL();
1170
1171 if (!local->ops->change_interface)
1172 return -EBUSY;
1173
1174 switch (sdata->vif.type) {
1175 case NL80211_IFTYPE_AP:
1176 case NL80211_IFTYPE_STATION:
1177 case NL80211_IFTYPE_ADHOC:
1178 /*
1179 * Could maybe also all others here?
1180 * Just not sure how that interacts
1181 * with the RX/config path e.g. for
1182 * mesh.
1183 */
1184 break;
1185 default:
1186 return -EBUSY;
1187 }
1188
1189 switch (type) {
1190 case NL80211_IFTYPE_AP:
1191 case NL80211_IFTYPE_STATION:
1192 case NL80211_IFTYPE_ADHOC:
1193 /*
1194 * Could probably support everything
1195 * but WDS here (WDS do_open can fail
1196 * under memory pressure, which this
1197 * code isn't prepared to handle).
1198 */
1199 break;
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001200 case NL80211_IFTYPE_P2P_CLIENT:
1201 p2p = true;
1202 internal_type = NL80211_IFTYPE_STATION;
1203 break;
1204 case NL80211_IFTYPE_P2P_GO:
1205 p2p = true;
1206 internal_type = NL80211_IFTYPE_AP;
1207 break;
Johannes Berg34d4bc42010-08-27 12:35:58 +02001208 default:
1209 return -EBUSY;
1210 }
1211
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001212 ret = ieee80211_check_concurrent_iface(sdata, internal_type);
Johannes Berg34d4bc42010-08-27 12:35:58 +02001213 if (ret)
1214 return ret;
1215
1216 ieee80211_do_stop(sdata, false);
1217
1218 ieee80211_teardown_sdata(sdata->dev);
1219
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001220 ret = drv_change_interface(local, sdata, internal_type, p2p);
Johannes Berg34d4bc42010-08-27 12:35:58 +02001221 if (ret)
1222 type = sdata->vif.type;
1223
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001224 /*
1225 * Ignore return value here, there's not much we can do since
1226 * the driver changed the interface type internally already.
1227 * The warnings will hopefully make driver authors fix it :-)
1228 */
1229 ieee80211_check_queues(sdata);
1230
Johannes Berg34d4bc42010-08-27 12:35:58 +02001231 ieee80211_setup_sdata(sdata, type);
1232
1233 err = ieee80211_do_open(sdata->dev, false);
1234 WARN(err, "type change: do_open returned %d", err);
1235
1236 return ret;
1237}
1238
Johannes Bergf3947e22008-07-09 14:40:36 +02001239int ieee80211_if_change_type(struct ieee80211_sub_if_data *sdata,
Johannes Berg05c914f2008-09-11 00:01:58 +02001240 enum nl80211_iftype type)
Johannes Berg75636522008-07-09 14:40:35 +02001241{
Johannes Berg34d4bc42010-08-27 12:35:58 +02001242 int ret;
1243
Johannes Bergf3947e22008-07-09 14:40:36 +02001244 ASSERT_RTNL();
1245
Johannes Berg2ca27bc2010-09-16 14:58:23 +02001246 if (type == ieee80211_vif_type_p2p(&sdata->vif))
Johannes Bergf3947e22008-07-09 14:40:36 +02001247 return 0;
1248
Johannes Berge60c7742008-11-26 23:31:40 +01001249 /* Setting ad-hoc mode on non-IBSS channel is not supported. */
Pavel Roskindcebf452008-12-22 16:39:36 -05001250 if (sdata->local->oper_channel->flags & IEEE80211_CHAN_NO_IBSS &&
1251 type == NL80211_IFTYPE_ADHOC)
Johannes Berge60c7742008-11-26 23:31:40 +01001252 return -EOPNOTSUPP;
1253
Johannes Berg34d4bc42010-08-27 12:35:58 +02001254 if (ieee80211_sdata_running(sdata)) {
1255 ret = ieee80211_runtime_change_iftype(sdata, type);
1256 if (ret)
1257 return ret;
1258 } else {
1259 /* Purge and reset type-dependent state. */
1260 ieee80211_teardown_sdata(sdata->dev);
1261 ieee80211_setup_sdata(sdata, type);
1262 }
Johannes Berg75636522008-07-09 14:40:35 +02001263
1264 /* reset some values that shouldn't be kept across type changes */
Johannes Bergbda39332008-10-11 01:51:51 +02001265 sdata->vif.bss_conf.basic_rates =
Johannes Berg96dd22a2008-09-11 00:01:57 +02001266 ieee80211_mandatory_rates(sdata->local,
1267 sdata->local->hw.conf.channel->band);
Johannes Berg75636522008-07-09 14:40:35 +02001268 sdata->drop_unencrypted = 0;
Johannes Berg9bc383d2009-11-19 11:55:19 +01001269 if (type == NL80211_IFTYPE_STATION)
1270 sdata->u.mgd.use_4addr = false;
Johannes Bergf3947e22008-07-09 14:40:36 +02001271
1272 return 0;
Johannes Berg75636522008-07-09 14:40:35 +02001273}
1274
Johannes Bergfa9029f2010-02-25 15:13:11 +01001275static void ieee80211_assign_perm_addr(struct ieee80211_local *local,
1276 struct net_device *dev,
1277 enum nl80211_iftype type)
1278{
1279 struct ieee80211_sub_if_data *sdata;
1280 u64 mask, start, addr, val, inc;
1281 u8 *m;
1282 u8 tmp_addr[ETH_ALEN];
1283 int i;
1284
1285 /* default ... something at least */
1286 memcpy(dev->perm_addr, local->hw.wiphy->perm_addr, ETH_ALEN);
1287
1288 if (is_zero_ether_addr(local->hw.wiphy->addr_mask) &&
1289 local->hw.wiphy->n_addresses <= 1)
1290 return;
1291
1292
1293 mutex_lock(&local->iflist_mtx);
1294
1295 switch (type) {
1296 case NL80211_IFTYPE_MONITOR:
1297 /* doesn't matter */
1298 break;
1299 case NL80211_IFTYPE_WDS:
1300 case NL80211_IFTYPE_AP_VLAN:
1301 /* match up with an AP interface */
1302 list_for_each_entry(sdata, &local->interfaces, list) {
1303 if (sdata->vif.type != NL80211_IFTYPE_AP)
1304 continue;
1305 memcpy(dev->perm_addr, sdata->vif.addr, ETH_ALEN);
1306 break;
1307 }
1308 /* keep default if no AP interface present */
1309 break;
1310 default:
1311 /* assign a new address if possible -- try n_addresses first */
1312 for (i = 0; i < local->hw.wiphy->n_addresses; i++) {
1313 bool used = false;
1314
1315 list_for_each_entry(sdata, &local->interfaces, list) {
1316 if (memcmp(local->hw.wiphy->addresses[i].addr,
1317 sdata->vif.addr, ETH_ALEN) == 0) {
1318 used = true;
1319 break;
1320 }
1321 }
1322
1323 if (!used) {
1324 memcpy(dev->perm_addr,
1325 local->hw.wiphy->addresses[i].addr,
1326 ETH_ALEN);
1327 break;
1328 }
1329 }
1330
1331 /* try mask if available */
1332 if (is_zero_ether_addr(local->hw.wiphy->addr_mask))
1333 break;
1334
1335 m = local->hw.wiphy->addr_mask;
1336 mask = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) |
1337 ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) |
1338 ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8);
1339
1340 if (__ffs64(mask) + hweight64(mask) != fls64(mask)) {
1341 /* not a contiguous mask ... not handled now! */
Johannes Bergbdcbd8e2012-06-22 11:29:50 +02001342 pr_info("not contiguous\n");
Johannes Bergfa9029f2010-02-25 15:13:11 +01001343 break;
1344 }
1345
1346 m = local->hw.wiphy->perm_addr;
1347 start = ((u64)m[0] << 5*8) | ((u64)m[1] << 4*8) |
1348 ((u64)m[2] << 3*8) | ((u64)m[3] << 2*8) |
1349 ((u64)m[4] << 1*8) | ((u64)m[5] << 0*8);
1350
1351 inc = 1ULL<<__ffs64(mask);
1352 val = (start & mask);
1353 addr = (start & ~mask) | (val & mask);
1354 do {
1355 bool used = false;
1356
1357 tmp_addr[5] = addr >> 0*8;
1358 tmp_addr[4] = addr >> 1*8;
1359 tmp_addr[3] = addr >> 2*8;
1360 tmp_addr[2] = addr >> 3*8;
1361 tmp_addr[1] = addr >> 4*8;
1362 tmp_addr[0] = addr >> 5*8;
1363
1364 val += inc;
1365
1366 list_for_each_entry(sdata, &local->interfaces, list) {
1367 if (memcmp(tmp_addr, sdata->vif.addr,
1368 ETH_ALEN) == 0) {
1369 used = true;
1370 break;
1371 }
1372 }
1373
1374 if (!used) {
1375 memcpy(dev->perm_addr, tmp_addr, ETH_ALEN);
1376 break;
1377 }
1378 addr = (start & ~mask) | (val & mask);
1379 } while (addr != start);
1380
1381 break;
1382 }
1383
1384 mutex_unlock(&local->iflist_mtx);
1385}
1386
Johannes Berg3e122be2008-07-09 14:40:34 +02001387int ieee80211_if_add(struct ieee80211_local *local, const char *name,
Johannes Berg05c914f2008-09-11 00:01:58 +02001388 struct net_device **new_dev, enum nl80211_iftype type,
Luis Carlos Coboee385852008-02-23 15:17:11 +01001389 struct vif_params *params)
Jiri Bencf0706e82007-05-05 11:45:53 -07001390{
1391 struct net_device *ndev;
Jiri Bencf0706e82007-05-05 11:45:53 -07001392 struct ieee80211_sub_if_data *sdata = NULL;
Johannes Berg75636522008-07-09 14:40:35 +02001393 int ret, i;
Johannes Bergded81f62012-03-28 11:04:26 +02001394 int txqs = 1;
Jiri Bencf0706e82007-05-05 11:45:53 -07001395
1396 ASSERT_RTNL();
Johannes Berg75636522008-07-09 14:40:35 +02001397
Johannes Bergded81f62012-03-28 11:04:26 +02001398 if (local->hw.queues >= IEEE80211_NUM_ACS)
1399 txqs = IEEE80211_NUM_ACS;
1400
Johannes Berg55d99052011-07-09 15:39:16 +02001401 ndev = alloc_netdev_mqs(sizeof(*sdata) + local->hw.vif_data_size,
Johannes Bergded81f62012-03-28 11:04:26 +02001402 name, ieee80211_if_setup, txqs, 1);
Jiri Bencf0706e82007-05-05 11:45:53 -07001403 if (!ndev)
1404 return -ENOMEM;
Johannes Berga272a722009-07-14 00:33:36 +02001405 dev_net_set(ndev, wiphy_net(local->hw.wiphy));
Jiri Bencf0706e82007-05-05 11:45:53 -07001406
Johannes Bergf3994ec2008-05-12 20:51:44 -07001407 ndev->needed_headroom = local->tx_headroom +
1408 4*6 /* four MAC addresses */
1409 + 2 + 2 + 2 + 2 /* ctl, dur, seq, qos */
1410 + 6 /* mesh */
1411 + 8 /* rfc1042/bridge tunnel */
1412 - ETH_HLEN /* ethernet hard_header_len */
1413 + IEEE80211_ENCRYPT_HEADROOM;
1414 ndev->needed_tailroom = IEEE80211_ENCRYPT_TAILROOM;
1415
Thadeu Lima de Souza Cascardo59e7e702011-06-02 17:28:37 -03001416 ret = dev_alloc_name(ndev, ndev->name);
1417 if (ret < 0)
1418 goto fail;
1419
Johannes Bergfa9029f2010-02-25 15:13:11 +01001420 ieee80211_assign_perm_addr(local, ndev, type);
1421 memcpy(ndev->dev_addr, ndev->perm_addr, ETH_ALEN);
Jiri Bencf0706e82007-05-05 11:45:53 -07001422 SET_NETDEV_DEV(ndev, wiphy_dev(local->hw.wiphy));
1423
Johannes Berg3e122be2008-07-09 14:40:34 +02001424 /* don't use IEEE80211_DEV_TO_SUB_IF because it checks too much */
1425 sdata = netdev_priv(ndev);
Jiri Bencf0706e82007-05-05 11:45:53 -07001426 ndev->ieee80211_ptr = &sdata->wdev;
Johannes Berg47846c92009-11-25 17:46:19 +01001427 memcpy(sdata->vif.addr, ndev->dev_addr, ETH_ALEN);
1428 memcpy(sdata->name, ndev->name, IFNAMSIZ);
Johannes Berg75636522008-07-09 14:40:35 +02001429
1430 /* initialise type-independent data */
Jiri Bencf0706e82007-05-05 11:45:53 -07001431 sdata->wdev.wiphy = local->hw.wiphy;
Jiri Bencf0706e82007-05-05 11:45:53 -07001432 sdata->local = local;
Johannes Berg75636522008-07-09 14:40:35 +02001433 sdata->dev = ndev;
Juuso Oikarinen68542962010-06-09 13:43:26 +03001434#ifdef CONFIG_INET
1435 sdata->arp_filter_state = true;
1436#endif
Johannes Berg75636522008-07-09 14:40:35 +02001437
1438 for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++)
1439 skb_queue_head_init(&sdata->fragments[i].skb_list);
1440
1441 INIT_LIST_HEAD(&sdata->key_list);
1442
Jouni Malinen37eb0b12010-01-06 13:09:08 +02001443 for (i = 0; i < IEEE80211_NUM_BANDS; i++) {
1444 struct ieee80211_supported_band *sband;
1445 sband = local->hw.wiphy->bands[i];
1446 sdata->rc_rateidx_mask[i] =
1447 sband ? (1 << sband->n_bitrates) - 1 : 0;
Simon Wunderlich19468412012-01-28 17:25:33 +01001448 if (sband)
1449 memcpy(sdata->rc_rateidx_mcs_mask[i],
1450 sband->ht_cap.mcs.rx_mask,
1451 sizeof(sdata->rc_rateidx_mcs_mask[i]));
1452 else
1453 memset(sdata->rc_rateidx_mcs_mask[i], 0,
1454 sizeof(sdata->rc_rateidx_mcs_mask[i]));
Jouni Malinen37eb0b12010-01-06 13:09:08 +02001455 }
Johannes Berg75636522008-07-09 14:40:35 +02001456
Johannes Berg3a25a8c2012-04-03 16:28:50 +02001457 ieee80211_set_default_queues(sdata);
1458
Johannes Berg75636522008-07-09 14:40:35 +02001459 /* setup type-dependent data */
1460 ieee80211_setup_sdata(sdata, type);
Jiri Bencf0706e82007-05-05 11:45:53 -07001461
Johannes Berg9bc383d2009-11-19 11:55:19 +01001462 if (params) {
1463 ndev->ieee80211_ptr->use_4addr = params->use_4addr;
1464 if (type == NL80211_IFTYPE_STATION)
1465 sdata->u.mgd.use_4addr = params->use_4addr;
1466 }
1467
Arik Nemtsov72d78722012-05-10 16:18:26 +03001468 ndev->features |= local->hw.netdev_features;
1469
Jiri Bencf0706e82007-05-05 11:45:53 -07001470 ret = register_netdevice(ndev);
1471 if (ret)
1472 goto fail;
1473
Johannes Bergc771c9d2009-01-23 22:54:03 +01001474 mutex_lock(&local->iflist_mtx);
Johannes Berg79010422007-09-18 17:29:21 -04001475 list_add_tail_rcu(&sdata->list, &local->interfaces);
Johannes Bergc771c9d2009-01-23 22:54:03 +01001476 mutex_unlock(&local->iflist_mtx);
Johannes Berg79010422007-09-18 17:29:21 -04001477
Jiri Bencf0706e82007-05-05 11:45:53 -07001478 if (new_dev)
1479 *new_dev = ndev;
Jiri Bencf0706e82007-05-05 11:45:53 -07001480
Jiri Bencf0706e82007-05-05 11:45:53 -07001481 return 0;
1482
Johannes Berg75636522008-07-09 14:40:35 +02001483 fail:
Jiri Bencf0706e82007-05-05 11:45:53 -07001484 free_netdev(ndev);
1485 return ret;
1486}
1487
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001488void ieee80211_if_remove(struct ieee80211_sub_if_data *sdata)
Jiri Bencf0706e82007-05-05 11:45:53 -07001489{
Jiri Bencf0706e82007-05-05 11:45:53 -07001490 ASSERT_RTNL();
Johannes Berg11a843b2007-08-28 17:01:55 -04001491
Johannes Bergc771c9d2009-01-23 22:54:03 +01001492 mutex_lock(&sdata->local->iflist_mtx);
Johannes Berg75636522008-07-09 14:40:35 +02001493 list_del_rcu(&sdata->list);
Johannes Bergc771c9d2009-01-23 22:54:03 +01001494 mutex_unlock(&sdata->local->iflist_mtx);
1495
Andrei Emeltchenko94c514f2012-04-24 14:18:28 +03001496 /* clean up type-dependent data */
1497 ieee80211_clean_sdata(sdata);
Javier Cardonaece1a2e2011-08-29 13:23:04 -07001498
Johannes Berg75636522008-07-09 14:40:35 +02001499 synchronize_rcu();
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001500 unregister_netdevice(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -07001501}
1502
Johannes Berg75636522008-07-09 14:40:35 +02001503/*
1504 * Remove all interfaces, may only be called at hardware unregistration
1505 * time because it doesn't do RCU-safe list removals.
1506 */
1507void ieee80211_remove_interfaces(struct ieee80211_local *local)
Jiri Bencf0706e82007-05-05 11:45:53 -07001508{
Johannes Berg75636522008-07-09 14:40:35 +02001509 struct ieee80211_sub_if_data *sdata, *tmp;
Eric Dumazetefe117a2009-11-05 11:06:40 +01001510 LIST_HEAD(unreg_list);
Jiri Bencf0706e82007-05-05 11:45:53 -07001511
1512 ASSERT_RTNL();
1513
Eric Dumazetefe117a2009-11-05 11:06:40 +01001514 mutex_lock(&local->iflist_mtx);
Johannes Berg75636522008-07-09 14:40:35 +02001515 list_for_each_entry_safe(sdata, tmp, &local->interfaces, list) {
1516 list_del(&sdata->list);
Johannes Bergc771c9d2009-01-23 22:54:03 +01001517
Andrei Emeltchenko94c514f2012-04-24 14:18:28 +03001518 ieee80211_clean_sdata(sdata);
Javier Cardonaece1a2e2011-08-29 13:23:04 -07001519
Eric Dumazetefe117a2009-11-05 11:06:40 +01001520 unregister_netdevice_queue(sdata->dev, &unreg_list);
Jiri Bencf0706e82007-05-05 11:45:53 -07001521 }
Eric Dumazetefe117a2009-11-05 11:06:40 +01001522 mutex_unlock(&local->iflist_mtx);
1523 unregister_netdevice_many(&unreg_list);
Eric W. Biederman5f04d502011-02-20 11:49:45 -08001524 list_del(&unreg_list);
Jiri Bencf0706e82007-05-05 11:45:53 -07001525}
Johannes Berg5cff20e2009-04-29 12:26:17 +02001526
Johannes Berg47846c92009-11-25 17:46:19 +01001527static int netdev_notify(struct notifier_block *nb,
1528 unsigned long state,
1529 void *ndev)
1530{
1531 struct net_device *dev = ndev;
1532 struct ieee80211_sub_if_data *sdata;
1533
1534 if (state != NETDEV_CHANGENAME)
1535 return 0;
1536
1537 if (!dev->ieee80211_ptr || !dev->ieee80211_ptr->wiphy)
1538 return 0;
1539
1540 if (dev->ieee80211_ptr->wiphy->privid != mac80211_wiphy_privid)
1541 return 0;
1542
1543 sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1544
Johannes Berg2f5265e2010-02-12 10:45:05 +01001545 memcpy(sdata->name, dev->name, IFNAMSIZ);
Johannes Berg47846c92009-11-25 17:46:19 +01001546
1547 ieee80211_debugfs_rename_netdev(sdata);
1548 return 0;
1549}
1550
1551static struct notifier_block mac80211_netdev_notifier = {
1552 .notifier_call = netdev_notify,
1553};
1554
1555int ieee80211_iface_init(void)
1556{
1557 return register_netdevice_notifier(&mac80211_netdev_notifier);
1558}
1559
1560void ieee80211_iface_exit(void)
1561{
1562 unregister_netdevice_notifier(&mac80211_netdev_notifier);
1563}