iwlagn: fix witespace damage
[deliverable/linux.git] / net / mac80211 / main.c
CommitLineData
f0706e82
JB
1/*
2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#include <net/mac80211.h>
f0706e82
JB
12#include <linux/module.h>
13#include <linux/init.h>
14#include <linux/netdevice.h>
15#include <linux/types.h>
16#include <linux/slab.h>
17#include <linux/skbuff.h>
18#include <linux/etherdevice.h>
19#include <linux/if_arp.h>
f0706e82 20#include <linux/rtnetlink.h>
f0706e82 21#include <linux/bitmap.h>
10f644a4 22#include <linux/pm_qos_params.h>
68542962 23#include <linux/inetdevice.h>
881d966b 24#include <net/net_namespace.h>
f0706e82
JB
25#include <net/cfg80211.h>
26
f0706e82 27#include "ieee80211_i.h"
24487981 28#include "driver-ops.h"
2c8dccc7 29#include "rate.h"
f7a92144 30#include "mesh.h"
f0706e82 31#include "wep.h"
2c8dccc7 32#include "led.h"
e0eb6859 33#include "cfg.h"
e9f207f0 34#include "debugfs.h"
f0706e82 35
f38fd12f
JB
36
37bool ieee80211_disable_40mhz_24ghz;
38module_param(ieee80211_disable_40mhz_24ghz, bool, 0644);
39MODULE_PARM_DESC(ieee80211_disable_40mhz_24ghz,
40 "Disable 40MHz support in the 2.4GHz band");
41
0d143fe1 42void ieee80211_configure_filter(struct ieee80211_local *local)
4150c572 43{
3ac64bee 44 u64 mc;
4150c572
JB
45 unsigned int changed_flags;
46 unsigned int new_flags = 0;
47
53918994 48 if (atomic_read(&local->iff_promiscs))
4150c572
JB
49 new_flags |= FIF_PROMISC_IN_BSS;
50
53918994 51 if (atomic_read(&local->iff_allmultis))
4150c572
JB
52 new_flags |= FIF_ALLMULTI;
53
3ac64bee 54 if (local->monitors || local->scanning)
8cc9a739
MW
55 new_flags |= FIF_BCN_PRBRESP_PROMISC;
56
7be5086d
JB
57 if (local->fif_probe_req || local->probe_req_reg)
58 new_flags |= FIF_PROBE_REQ;
59
8cc9a739
MW
60 if (local->fif_fcsfail)
61 new_flags |= FIF_FCSFAIL;
62
63 if (local->fif_plcpfail)
64 new_flags |= FIF_PLCPFAIL;
65
66 if (local->fif_control)
67 new_flags |= FIF_CONTROL;
68
69 if (local->fif_other_bss)
70 new_flags |= FIF_OTHER_BSS;
4150c572 71
e3b90ca2
IP
72 if (local->fif_pspoll)
73 new_flags |= FIF_PSPOLL;
74
3ac64bee 75 spin_lock_bh(&local->filter_lock);
4150c572
JB
76 changed_flags = local->filter_flags ^ new_flags;
77
22bedad3 78 mc = drv_prepare_multicast(local, &local->mc_list);
3ac64bee
JB
79 spin_unlock_bh(&local->filter_lock);
80
4150c572
JB
81 /* be a bit nasty */
82 new_flags |= (1<<31);
83
3ac64bee 84 drv_configure_filter(local, changed_flags, &new_flags, mc);
4150c572
JB
85
86 WARN_ON(new_flags & (1<<31));
87
88 local->filter_flags = new_flags & ~(1<<31);
89}
90
3ac64bee
JB
91static void ieee80211_reconfig_filter(struct work_struct *work)
92{
93 struct ieee80211_local *local =
94 container_of(work, struct ieee80211_local, reconfig_filter);
95
96 ieee80211_configure_filter(local);
97}
98
e8975581 99int ieee80211_hw_config(struct ieee80211_local *local, u32 changed)
b2c258fb 100{
58905ca5 101 struct ieee80211_channel *chan, *scan_chan;
b2c258fb 102 int ret = 0;
e8975581 103 int power;
094d05dc 104 enum nl80211_channel_type channel_type;
ffd2778b 105 u32 offchannel_flag;
f0706e82 106
cb121bad
JB
107 might_sleep();
108
58905ca5
JB
109 scan_chan = local->scan_channel;
110
ffd2778b 111 offchannel_flag = local->hw.conf.flags & IEEE80211_CONF_OFFCHANNEL;
58905ca5
JB
112 if (scan_chan) {
113 chan = scan_chan;
094d05dc 114 channel_type = NL80211_CHAN_NO_HT;
45521245 115 local->hw.conf.flags |= IEEE80211_CONF_OFFCHANNEL;
8d4780eb
LR
116 } else if (local->tmp_channel &&
117 local->oper_channel != local->tmp_channel) {
b8bc4b0a
JB
118 chan = scan_chan = local->tmp_channel;
119 channel_type = local->tmp_channel_type;
45521245 120 local->hw.conf.flags |= IEEE80211_CONF_OFFCHANNEL;
72bdcf34 121 } else {
b2c258fb 122 chan = local->oper_channel;
0aaffa9b 123 channel_type = local->_oper_channel_type;
45521245 124 local->hw.conf.flags &= ~IEEE80211_CONF_OFFCHANNEL;
72bdcf34 125 }
ffd2778b 126 offchannel_flag ^= local->hw.conf.flags & IEEE80211_CONF_OFFCHANNEL;
f0706e82 127
ffd2778b 128 if (offchannel_flag || chan != local->hw.conf.channel ||
4797938c 129 channel_type != local->hw.conf.channel_type) {
e8975581 130 local->hw.conf.channel = chan;
4797938c 131 local->hw.conf.channel_type = channel_type;
e8975581
JB
132 changed |= IEEE80211_CONF_CHANGE_CHANNEL;
133 }
8318d78a 134
0f78231b
JB
135 if (!conf_is_ht(&local->hw.conf)) {
136 /*
137 * mac80211.h documents that this is only valid
138 * when the channel is set to an HT type, and
139 * that otherwise STATIC is used.
140 */
141 local->hw.conf.smps_mode = IEEE80211_SMPS_STATIC;
142 } else if (local->hw.conf.smps_mode != local->smps_mode) {
143 local->hw.conf.smps_mode = local->smps_mode;
144 changed |= IEEE80211_CONF_CHANGE_SMPS;
145 }
146
58905ca5 147 if (scan_chan)
e8975581 148 power = chan->max_power;
8318d78a 149 else
a8302de9
VT
150 power = local->power_constr_level ?
151 (chan->max_power - local->power_constr_level) :
152 chan->max_power;
153
47afbaf5 154 if (local->user_power_level >= 0)
a8302de9
VT
155 power = min(power, local->user_power_level);
156
e8975581
JB
157 if (local->hw.conf.power_level != power) {
158 changed |= IEEE80211_CONF_CHANGE_POWER;
159 local->hw.conf.power_level = power;
160 }
b2c258fb 161
e8975581 162 if (changed && local->open_count) {
24487981 163 ret = drv_config(local, changed);
d73782fd 164 /*
447107fb 165 * Goal:
d73782fd
JB
166 * HW reconfiguration should never fail, the driver has told
167 * us what it can support so it should live up to that promise.
447107fb
RC
168 *
169 * Current status:
170 * rfkill is not integrated with mac80211 and a
171 * configuration command can thus fail if hardware rfkill
172 * is enabled
173 *
174 * FIXME: integrate rfkill with mac80211 and then add this
175 * WARN_ON() back
176 *
d73782fd 177 */
447107fb 178 /* WARN_ON(ret); */
d73782fd 179 }
f0706e82 180
b2c258fb
JB
181 return ret;
182}
f0706e82 183
471b3efd
JB
184void ieee80211_bss_info_change_notify(struct ieee80211_sub_if_data *sdata,
185 u32 changed)
d9430a32 186{
471b3efd 187 struct ieee80211_local *local = sdata->local;
9cef8737 188 static const u8 zero[ETH_ALEN] = { 0 };
471b3efd
JB
189
190 if (!changed)
191 return;
192
9cef8737
JB
193 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
194 /*
195 * While not associated, claim a BSSID of all-zeroes
196 * so that drivers don't do any weird things with the
197 * BSSID at that time.
198 */
199 if (sdata->vif.bss_conf.assoc)
200 sdata->vif.bss_conf.bssid = sdata->u.mgd.bssid;
201 else
202 sdata->vif.bss_conf.bssid = zero;
203 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
2d0ddec5
JB
204 sdata->vif.bss_conf.bssid = sdata->u.ibss.bssid;
205 else if (sdata->vif.type == NL80211_IFTYPE_AP)
47846c9b 206 sdata->vif.bss_conf.bssid = sdata->vif.addr;
1be7fe8d
BJ
207 else if (sdata->vif.type == NL80211_IFTYPE_WDS)
208 sdata->vif.bss_conf.bssid = NULL;
2d0ddec5 209 else if (ieee80211_vif_is_mesh(&sdata->vif)) {
2d0ddec5
JB
210 sdata->vif.bss_conf.bssid = zero;
211 } else {
212 WARN_ON(1);
213 return;
214 }
215
216 switch (sdata->vif.type) {
217 case NL80211_IFTYPE_AP:
218 case NL80211_IFTYPE_ADHOC:
1be7fe8d 219 case NL80211_IFTYPE_WDS:
2d0ddec5
JB
220 case NL80211_IFTYPE_MESH_POINT:
221 break;
222 default:
223 /* do not warn to simplify caller in scan.c */
224 changed &= ~BSS_CHANGED_BEACON_ENABLED;
225 if (WARN_ON(changed & BSS_CHANGED_BEACON))
226 return;
227 break;
228 }
229
230 if (changed & BSS_CHANGED_BEACON_ENABLED) {
9607e6b6 231 if (local->quiescing || !ieee80211_sdata_running(sdata) ||
97af7432 232 test_bit(SCAN_SW_SCANNING, &local->scanning)) {
2d0ddec5
JB
233 sdata->vif.bss_conf.enable_beacon = false;
234 } else {
235 /*
236 * Beacon should be enabled, but AP mode must
237 * check whether there is a beacon configured.
238 */
239 switch (sdata->vif.type) {
240 case NL80211_IFTYPE_AP:
241 sdata->vif.bss_conf.enable_beacon =
0379185b 242 !!sdata->u.ap.beacon;
2d0ddec5
JB
243 break;
244 case NL80211_IFTYPE_ADHOC:
245 sdata->vif.bss_conf.enable_beacon =
0379185b 246 !!sdata->u.ibss.presp;
2d0ddec5 247 break;
7659a193 248#ifdef CONFIG_MAC80211_MESH
2d0ddec5 249 case NL80211_IFTYPE_MESH_POINT:
29cbe68c
JB
250 sdata->vif.bss_conf.enable_beacon =
251 !!sdata->u.mesh.mesh_id_len;
2d0ddec5 252 break;
7659a193 253#endif
2d0ddec5
JB
254 default:
255 /* not reached */
256 WARN_ON(1);
257 break;
258 }
259 }
260 }
261
12375ef9 262 drv_bss_info_changed(local, sdata, &sdata->vif.bss_conf, changed);
d9430a32
DD
263}
264
f698d856 265u32 ieee80211_reset_erp_info(struct ieee80211_sub_if_data *sdata)
d9430a32 266{
bda3933a
JB
267 sdata->vif.bss_conf.use_cts_prot = false;
268 sdata->vif.bss_conf.use_short_preamble = false;
269 sdata->vif.bss_conf.use_short_slot = false;
7a5158ef
JB
270 return BSS_CHANGED_ERP_CTS_PROT |
271 BSS_CHANGED_ERP_PREAMBLE |
272 BSS_CHANGED_ERP_SLOT;
d9430a32
DD
273}
274
f0706e82
JB
275static void ieee80211_tasklet_handler(unsigned long data)
276{
277 struct ieee80211_local *local = (struct ieee80211_local *) data;
278 struct sk_buff *skb;
f0706e82
JB
279
280 while ((skb = skb_dequeue(&local->skb_queue)) ||
281 (skb = skb_dequeue(&local->skb_queue_unreliable))) {
282 switch (skb->pkt_type) {
283 case IEEE80211_RX_MSG:
51fb61e7 284 /* Clear skb->pkt_type in order to not confuse kernel
f0706e82
JB
285 * netstack. */
286 skb->pkt_type = 0;
f1d58c25 287 ieee80211_rx(local_to_hw(local), skb);
f0706e82
JB
288 break;
289 case IEEE80211_TX_STATUS_MSG:
f0706e82 290 skb->pkt_type = 0;
e039fa4a 291 ieee80211_tx_status(local_to_hw(local), skb);
f0706e82 292 break;
f4ea83dd 293 default:
5e3f3089
LF
294 WARN(1, "mac80211: Packet is of unknown type %d\n",
295 skb->pkt_type);
f0706e82
JB
296 dev_kfree_skb(skb);
297 break;
298 }
299 }
300}
301
f2753ddb
JB
302static void ieee80211_restart_work(struct work_struct *work)
303{
304 struct ieee80211_local *local =
305 container_of(work, struct ieee80211_local, restart_work);
306
bc86863d
SG
307 /* wait for scan work complete */
308 flush_workqueue(local->workqueue);
309
310 mutex_lock(&local->mtx);
311 WARN(test_bit(SCAN_HW_SCANNING, &local->scanning),
312 "%s called with hardware scan in progress\n", __func__);
313 mutex_unlock(&local->mtx);
314
f2753ddb 315 rtnl_lock();
4136c422 316 ieee80211_scan_cancel(local);
f2753ddb
JB
317 ieee80211_reconfig(local);
318 rtnl_unlock();
319}
320
321void ieee80211_restart_hw(struct ieee80211_hw *hw)
322{
323 struct ieee80211_local *local = hw_to_local(hw);
324
b5878a2d
JB
325 trace_api_restart_hw(local);
326
18145c69 327 /* use this reason, ieee80211_reconfig will unblock it */
f2753ddb
JB
328 ieee80211_stop_queues_by_reason(hw,
329 IEEE80211_QUEUE_STOP_REASON_SUSPEND);
330
331 schedule_work(&local->restart_work);
332}
333EXPORT_SYMBOL(ieee80211_restart_hw);
334
0f78231b
JB
335static void ieee80211_recalc_smps_work(struct work_struct *work)
336{
337 struct ieee80211_local *local =
338 container_of(work, struct ieee80211_local, recalc_smps);
339
340 mutex_lock(&local->iflist_mtx);
025e6be2 341 ieee80211_recalc_smps(local);
0f78231b
JB
342 mutex_unlock(&local->iflist_mtx);
343}
344
26b36cfe 345#ifdef CONFIG_INET
2b2c009e
JO
346static int ieee80211_ifa_changed(struct notifier_block *nb,
347 unsigned long data, void *arg)
348{
349 struct in_ifaddr *ifa = arg;
350 struct ieee80211_local *local =
351 container_of(nb, struct ieee80211_local,
352 ifa_notifier);
353 struct net_device *ndev = ifa->ifa_dev->dev;
354 struct wireless_dev *wdev = ndev->ieee80211_ptr;
68542962 355 struct in_device *idev;
2b2c009e 356 struct ieee80211_sub_if_data *sdata;
68542962 357 struct ieee80211_bss_conf *bss_conf;
2b2c009e 358 struct ieee80211_if_managed *ifmgd;
68542962 359 int c = 0;
2b2c009e
JO
360
361 /* Make sure it's our interface that got changed */
362 if (!wdev)
363 return NOTIFY_DONE;
364
365 if (wdev->wiphy != local->hw.wiphy)
366 return NOTIFY_DONE;
367
2b2c009e 368 sdata = IEEE80211_DEV_TO_SUB_IF(ndev);
68542962 369 bss_conf = &sdata->vif.bss_conf;
2b2c009e 370
26a58456
JB
371 if (!ieee80211_sdata_running(sdata))
372 return NOTIFY_DONE;
373
2b2c009e
JO
374 /* ARP filtering is only supported in managed mode */
375 if (sdata->vif.type != NL80211_IFTYPE_STATION)
376 return NOTIFY_DONE;
377
95ae6b22 378 idev = __in_dev_get_rtnl(sdata->dev);
68542962
JO
379 if (!idev)
380 return NOTIFY_DONE;
381
2b2c009e
JO
382 ifmgd = &sdata->u.mgd;
383 mutex_lock(&ifmgd->mtx);
68542962
JO
384
385 /* Copy the addresses to the bss_conf list */
386 ifa = idev->ifa_list;
387 while (c < IEEE80211_BSS_ARP_ADDR_LIST_LEN && ifa) {
388 bss_conf->arp_addr_list[c] = ifa->ifa_address;
389 ifa = ifa->ifa_next;
390 c++;
391 }
392
393 /* If not all addresses fit the list, disable filtering */
394 if (ifa) {
395 sdata->arp_filter_state = false;
396 c = 0;
397 } else {
398 sdata->arp_filter_state = true;
399 }
400 bss_conf->arp_addr_cnt = c;
401
402 /* Configure driver only if associated */
403 if (ifmgd->associated) {
404 bss_conf->arp_filter_enabled = sdata->arp_filter_state;
405 ieee80211_bss_info_change_notify(sdata,
406 BSS_CHANGED_ARP_FILTER);
407 }
408
2b2c009e
JO
409 mutex_unlock(&ifmgd->mtx);
410
411 return NOTIFY_DONE;
412}
26b36cfe 413#endif
2b2c009e 414
4e6cbfd0
JL
415static int ieee80211_napi_poll(struct napi_struct *napi, int budget)
416{
417 struct ieee80211_local *local =
418 container_of(napi, struct ieee80211_local, napi);
419
420 return local->ops->napi_poll(&local->hw, budget);
421}
422
423void ieee80211_napi_schedule(struct ieee80211_hw *hw)
424{
425 struct ieee80211_local *local = hw_to_local(hw);
426
427 napi_schedule(&local->napi);
428}
429EXPORT_SYMBOL(ieee80211_napi_schedule);
430
431void ieee80211_napi_complete(struct ieee80211_hw *hw)
432{
433 struct ieee80211_local *local = hw_to_local(hw);
434
435 napi_complete(&local->napi);
436}
437EXPORT_SYMBOL(ieee80211_napi_complete);
438
2e161f78
JB
439/* There isn't a lot of sense in it, but you can transmit anything you like */
440static const struct ieee80211_txrx_stypes
441ieee80211_default_mgmt_stypes[NUM_NL80211_IFTYPES] = {
442 [NL80211_IFTYPE_ADHOC] = {
443 .tx = 0xffff,
444 .rx = BIT(IEEE80211_STYPE_ACTION >> 4),
445 },
446 [NL80211_IFTYPE_STATION] = {
447 .tx = 0xffff,
448 .rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
449 BIT(IEEE80211_STYPE_PROBE_REQ >> 4),
450 },
451 [NL80211_IFTYPE_AP] = {
452 .tx = 0xffff,
453 .rx = BIT(IEEE80211_STYPE_ASSOC_REQ >> 4) |
454 BIT(IEEE80211_STYPE_REASSOC_REQ >> 4) |
455 BIT(IEEE80211_STYPE_PROBE_REQ >> 4) |
456 BIT(IEEE80211_STYPE_DISASSOC >> 4) |
457 BIT(IEEE80211_STYPE_AUTH >> 4) |
458 BIT(IEEE80211_STYPE_DEAUTH >> 4) |
459 BIT(IEEE80211_STYPE_ACTION >> 4),
460 },
461 [NL80211_IFTYPE_AP_VLAN] = {
462 /* copy AP */
463 .tx = 0xffff,
464 .rx = BIT(IEEE80211_STYPE_ASSOC_REQ >> 4) |
465 BIT(IEEE80211_STYPE_REASSOC_REQ >> 4) |
466 BIT(IEEE80211_STYPE_PROBE_REQ >> 4) |
467 BIT(IEEE80211_STYPE_DISASSOC >> 4) |
468 BIT(IEEE80211_STYPE_AUTH >> 4) |
469 BIT(IEEE80211_STYPE_DEAUTH >> 4) |
2ca27bcf
JB
470 BIT(IEEE80211_STYPE_ACTION >> 4),
471 },
472 [NL80211_IFTYPE_P2P_CLIENT] = {
473 .tx = 0xffff,
474 .rx = BIT(IEEE80211_STYPE_ACTION >> 4) |
475 BIT(IEEE80211_STYPE_PROBE_REQ >> 4),
476 },
477 [NL80211_IFTYPE_P2P_GO] = {
478 .tx = 0xffff,
479 .rx = BIT(IEEE80211_STYPE_ASSOC_REQ >> 4) |
480 BIT(IEEE80211_STYPE_REASSOC_REQ >> 4) |
481 BIT(IEEE80211_STYPE_PROBE_REQ >> 4) |
2e161f78
JB
482 BIT(IEEE80211_STYPE_DISASSOC >> 4) |
483 BIT(IEEE80211_STYPE_AUTH >> 4) |
484 BIT(IEEE80211_STYPE_DEAUTH >> 4) |
485 BIT(IEEE80211_STYPE_ACTION >> 4),
486 },
487};
488
f0706e82
JB
489struct ieee80211_hw *ieee80211_alloc_hw(size_t priv_data_len,
490 const struct ieee80211_ops *ops)
491{
f0706e82 492 struct ieee80211_local *local;
96f5e66e 493 int priv_size, i;
f0706e82
JB
494 struct wiphy *wiphy;
495
496 /* Ensure 32-byte alignment of our private data and hw private data.
497 * We use the wiphy priv data for both our ieee80211_local and for
498 * the driver's private data
499 *
500 * In memory it'll be like this:
501 *
502 * +-------------------------+
503 * | struct wiphy |
504 * +-------------------------+
505 * | struct ieee80211_local |
506 * +-------------------------+
507 * | driver's private data |
508 * +-------------------------+
509 *
510 */
1ce8e7b5 511 priv_size = ALIGN(sizeof(*local), NETDEV_ALIGN) + priv_data_len;
f0706e82
JB
512
513 wiphy = wiphy_new(&mac80211_config_ops, priv_size);
514
515 if (!wiphy)
516 return NULL;
517
2e161f78
JB
518 wiphy->mgmt_stypes = ieee80211_default_mgmt_stypes;
519
207aba60
JB
520 wiphy->privid = mac80211_wiphy_privid;
521
9bc383de
JB
522 wiphy->flags |= WIPHY_FLAG_NETNS_OK |
523 WIPHY_FLAG_4ADDR_AP |
f7e0104c
JB
524 WIPHY_FLAG_4ADDR_STATION |
525 WIPHY_FLAG_SUPPORTS_SEPARATE_DEFAULT_KEYS;
207aba60
JB
526
527 if (!ops->set_key)
528 wiphy->flags |= WIPHY_FLAG_IBSS_RSN;
18a83659 529
0c1ad2ca 530 wiphy->bss_priv_size = sizeof(struct ieee80211_bss);
f0706e82
JB
531
532 local = wiphy_priv(wiphy);
de95a54b 533
f0706e82
JB
534 local->hw.wiphy = wiphy;
535
1ce8e7b5 536 local->hw.priv = (char *)local + ALIGN(sizeof(*local), NETDEV_ALIGN);
f0706e82 537
4480f15c 538 BUG_ON(!ops->tx);
4150c572
JB
539 BUG_ON(!ops->start);
540 BUG_ON(!ops->stop);
4480f15c
JB
541 BUG_ON(!ops->config);
542 BUG_ON(!ops->add_interface);
4150c572
JB
543 BUG_ON(!ops->remove_interface);
544 BUG_ON(!ops->configure_filter);
f0706e82
JB
545 local->ops = ops;
546
e6a9854b
JB
547 /* set up some defaults */
548 local->hw.queues = 1;
549 local->hw.max_rates = 1;
78be49ec 550 local->hw.max_report_rates = 0;
b9a5f8ca
JM
551 local->hw.conf.long_frame_max_tx_count = wiphy->retry_long;
552 local->hw.conf.short_frame_max_tx_count = wiphy->retry_short;
c428c892 553 local->user_power_level = -1;
50ae0cf1
KV
554 local->uapsd_queues = IEEE80211_DEFAULT_UAPSD_QUEUES;
555 local->uapsd_max_sp_len = IEEE80211_DEFAULT_MAX_SP_LEN;
f0706e82 556
79010420 557 INIT_LIST_HEAD(&local->interfaces);
2f787b0b
YH
558
559 __hw_addr_init(&local->mc_list);
560
c771c9d8 561 mutex_init(&local->iflist_mtx);
a1699b75 562 mutex_init(&local->mtx);
f0706e82 563
ad0e2b5a 564 mutex_init(&local->key_mtx);
3b8d81e0 565 spin_lock_init(&local->filter_lock);
ce7c9111
KV
566 spin_lock_init(&local->queue_stop_reason_lock);
567
c2b13452 568 INIT_DELAYED_WORK(&local->scan_work, ieee80211_scan_work);
f0706e82 569
af6b6374
JB
570 ieee80211_work_init(local);
571
f2753ddb
JB
572 INIT_WORK(&local->restart_work, ieee80211_restart_work);
573
3ac64bee 574 INIT_WORK(&local->reconfig_filter, ieee80211_reconfig_filter);
0f78231b
JB
575 INIT_WORK(&local->recalc_smps, ieee80211_recalc_smps_work);
576 local->smps_mode = IEEE80211_SMPS_OFF;
3ac64bee 577
520eb820
KV
578 INIT_WORK(&local->dynamic_ps_enable_work,
579 ieee80211_dynamic_ps_enable_work);
580 INIT_WORK(&local->dynamic_ps_disable_work,
581 ieee80211_dynamic_ps_disable_work);
582 setup_timer(&local->dynamic_ps_timer,
583 ieee80211_dynamic_ps_timer, (unsigned long) local);
584
f0706e82
JB
585 sta_info_init(local);
586
a6a67db2 587 for (i = 0; i < IEEE80211_MAX_QUEUES; i++) {
2a577d98 588 skb_queue_head_init(&local->pending[i]);
a6a67db2
JB
589 atomic_set(&local->agg_queue_stop[i], 0);
590 }
f0706e82
JB
591 tasklet_init(&local->tx_pending_tasklet, ieee80211_tx_pending,
592 (unsigned long)local);
f0706e82
JB
593
594 tasklet_init(&local->tasklet,
595 ieee80211_tasklet_handler,
596 (unsigned long) local);
f0706e82
JB
597
598 skb_queue_head_init(&local->skb_queue);
599 skb_queue_head_init(&local->skb_queue_unreliable);
600
4e6cbfd0
JL
601 /* init dummy netdev for use w/ NAPI */
602 init_dummy_netdev(&local->napi_dev);
603
f0706e82
JB
604 return local_to_hw(local);
605}
606EXPORT_SYMBOL(ieee80211_alloc_hw);
607
608int ieee80211_register_hw(struct ieee80211_hw *hw)
609{
610 struct ieee80211_local *local = hw_to_local(hw);
f0706e82 611 int result;
8318d78a 612 enum ieee80211_band band;
be4a4b6a 613 int channels, max_bitrates;
5ef2d41a 614 bool supp_ht;
25e47c18 615 static const u32 cipher_suites[] = {
5daa8a8e 616 /* keep WEP first, it may be removed below */
25e47c18
JB
617 WLAN_CIPHER_SUITE_WEP40,
618 WLAN_CIPHER_SUITE_WEP104,
619 WLAN_CIPHER_SUITE_TKIP,
620 WLAN_CIPHER_SUITE_CCMP,
621
622 /* keep last -- depends on hw flags! */
623 WLAN_CIPHER_SUITE_AES_CMAC
624 };
8318d78a 625
78be49ec
HS
626 if (hw->max_report_rates == 0)
627 hw->max_report_rates = hw->max_rates;
628
8318d78a
JB
629 /*
630 * generic code guarantees at least one band,
631 * set this very early because much code assumes
632 * that hw.conf.channel is assigned
633 */
2a519311 634 channels = 0;
de95a54b 635 max_bitrates = 0;
5ef2d41a 636 supp_ht = false;
8318d78a
JB
637 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
638 struct ieee80211_supported_band *sband;
639
640 sband = local->hw.wiphy->bands[band];
de95a54b
JB
641 if (!sband)
642 continue;
643 if (!local->oper_channel) {
8318d78a
JB
644 /* init channel we're on */
645 local->hw.conf.channel =
58905ca5
JB
646 local->oper_channel = &sband->channels[0];
647 local->hw.conf.channel_type = NL80211_CHAN_NO_HT;
8318d78a 648 }
de95a54b
JB
649 channels += sband->n_channels;
650
651 if (max_bitrates < sband->n_bitrates)
652 max_bitrates = sband->n_bitrates;
5ef2d41a 653 supp_ht = supp_ht || sband->ht_cap.ht_supported;
8318d78a 654 }
f0706e82 655
5ba63533
JB
656 local->int_scan_req = kzalloc(sizeof(*local->int_scan_req) +
657 sizeof(void *) * channels, GFP_KERNEL);
658 if (!local->int_scan_req)
2a519311
JB
659 return -ENOMEM;
660
f59ac048
LR
661 /* if low-level driver supports AP, we also support VLAN */
662 if (local->hw.wiphy->interface_modes & BIT(NL80211_IFTYPE_AP))
663 local->hw.wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP_VLAN);
664
665 /* mac80211 always supports monitor */
666 local->hw.wiphy->interface_modes |= BIT(NL80211_IFTYPE_MONITOR);
667
5eb5a52d
JB
668#ifndef CONFIG_MAC80211_MESH
669 /* mesh depends on Kconfig, but drivers should set it if they want */
670 local->hw.wiphy->interface_modes &= ~BIT(NL80211_IFTYPE_MESH_POINT);
671#endif
672
a621fa4d
JB
673 /* mac80211 supports control port protocol changing */
674 local->hw.wiphy->flags |= WIPHY_FLAG_CONTROL_PORT_PROTOCOL;
675
77965c97
JB
676 if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM)
677 local->hw.wiphy->signal_type = CFG80211_SIGNAL_TYPE_MBM;
678 else if (local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC)
679 local->hw.wiphy->signal_type = CFG80211_SIGNAL_TYPE_UNSPEC;
680
ab13315a
KV
681 WARN((local->hw.flags & IEEE80211_HW_SUPPORTS_UAPSD)
682 && (local->hw.flags & IEEE80211_HW_PS_NULLFUNC_STACK),
683 "U-APSD not supported with HW_PS_NULLFUNC_STACK\n");
684
de95a54b
JB
685 /*
686 * Calculate scan IE length -- we need this to alloc
687 * memory and to subtract from the driver limit. It
dc9f48ce 688 * includes the DS Params, (extended) supported rates, and HT
de95a54b
JB
689 * information -- SSID is the driver's responsibility.
690 */
dc9f48ce
JM
691 local->scan_ies_len = 4 + max_bitrates /* (ext) supp rates */ +
692 3 /* DS Params */;
5ef2d41a
JB
693 if (supp_ht)
694 local->scan_ies_len += 2 + sizeof(struct ieee80211_ht_cap);
de95a54b
JB
695
696 if (!local->ops->hw_scan) {
697 /* For hw_scan, driver needs to set these up. */
698 local->hw.wiphy->max_scan_ssids = 4;
699 local->hw.wiphy->max_scan_ie_len = IEEE80211_MAX_DATA_LEN;
700 }
701
702 /*
703 * If the driver supports any scan IEs, then assume the
704 * limit includes the IEs mac80211 will add, otherwise
705 * leave it at zero and let the driver sort it out; we
706 * still pass our IEs to the driver but userspace will
707 * not be allowed to in that case.
708 */
709 if (local->hw.wiphy->max_scan_ie_len)
710 local->hw.wiphy->max_scan_ie_len -= local->scan_ies_len;
711
3ffc2a90
JB
712 /* Set up cipher suites unless driver already did */
713 if (!local->hw.wiphy->cipher_suites) {
714 local->hw.wiphy->cipher_suites = cipher_suites;
715 local->hw.wiphy->n_cipher_suites = ARRAY_SIZE(cipher_suites);
716 if (!(local->hw.flags & IEEE80211_HW_MFP_CAPABLE))
717 local->hw.wiphy->n_cipher_suites--;
718 }
5daa8a8e 719 if (IS_ERR(local->wep_tx_tfm) || IS_ERR(local->wep_rx_tfm)) {
3ffc2a90
JB
720 if (local->hw.wiphy->cipher_suites == cipher_suites) {
721 local->hw.wiphy->cipher_suites += 2;
722 local->hw.wiphy->n_cipher_suites -= 2;
723 } else {
724 u32 *suites;
725 int r, w = 0;
726
727 /* Filter out WEP */
728
729 suites = kmemdup(
730 local->hw.wiphy->cipher_suites,
731 sizeof(u32) * local->hw.wiphy->n_cipher_suites,
732 GFP_KERNEL);
733 if (!suites)
734 return -ENOMEM;
735 for (r = 0; r < local->hw.wiphy->n_cipher_suites; r++) {
736 u32 suite = local->hw.wiphy->cipher_suites[r];
737 if (suite == WLAN_CIPHER_SUITE_WEP40 ||
738 suite == WLAN_CIPHER_SUITE_WEP104)
739 continue;
740 suites[w++] = suite;
741 }
742 local->hw.wiphy->cipher_suites = suites;
743 local->hw.wiphy->n_cipher_suites = w;
744 local->wiphy_ciphers_allocated = true;
745 }
5daa8a8e 746 }
25e47c18 747
f0706e82
JB
748 result = wiphy_register(local->hw.wiphy);
749 if (result < 0)
2a519311 750 goto fail_wiphy_register;
f0706e82 751
e2530083
JB
752 /*
753 * We use the number of queues for feature tests (QoS, HT) internally
754 * so restrict them appropriately.
755 */
e2530083
JB
756 if (hw->queues > IEEE80211_MAX_QUEUES)
757 hw->queues = IEEE80211_MAX_QUEUES;
e2530083 758
42935eca 759 local->workqueue =
99b88a0e 760 alloc_ordered_workqueue(wiphy_name(local->hw.wiphy), 0);
42935eca 761 if (!local->workqueue) {
f0706e82
JB
762 result = -ENOMEM;
763 goto fail_workqueue;
764 }
765
b306f453
JB
766 /*
767 * The hardware needs headroom for sending the frame,
768 * and we need some headroom for passing the frame to monitor
769 * interfaces, but never both at the same time.
770 */
d24deb25
GW
771 BUILD_BUG_ON(IEEE80211_TX_STATUS_HEADROOM !=
772 sizeof(struct ieee80211_tx_status_rtap_hdr));
33ccad35
JB
773 local->tx_headroom = max_t(unsigned int , local->hw.extra_tx_headroom,
774 sizeof(struct ieee80211_tx_status_rtap_hdr));
b306f453 775
e9f207f0
JB
776 debugfs_hw_add(local);
777
b446918b
HS
778 /*
779 * if the driver doesn't specify a max listen interval we
780 * use 5 which should be a safe default
781 */
ea95bba4 782 if (local->hw.max_listen_interval == 0)
b446918b 783 local->hw.max_listen_interval = 5;
ea95bba4
TW
784
785 local->hw.conf.listen_interval = local->hw.max_listen_interval;
786
ff616381 787 local->dynamic_ps_forced_timeout = -1;
195e294d 788
f0706e82
JB
789 result = sta_info_start(local);
790 if (result < 0)
791 goto fail_sta_info;
792
d4c4a9a1 793 result = ieee80211_wep_init(local);
3473187d 794 if (result < 0)
0fb9a9ec
JP
795 wiphy_debug(local->hw.wiphy, "Failed to initialize wep: %d\n",
796 result);
d4c4a9a1 797
f0706e82 798 rtnl_lock();
f0706e82 799
830f9038
JB
800 result = ieee80211_init_rate_ctrl_alg(local,
801 hw->rate_control_algorithm);
f0706e82 802 if (result < 0) {
0fb9a9ec
JP
803 wiphy_debug(local->hw.wiphy,
804 "Failed to initialize rate control algorithm\n");
f0706e82
JB
805 goto fail_rate;
806 }
807
8dffff21
JB
808 /* add one default STA interface if supported */
809 if (local->hw.wiphy->interface_modes & BIT(NL80211_IFTYPE_STATION)) {
810 result = ieee80211_if_add(local, "wlan%d", NULL,
811 NL80211_IFTYPE_STATION, NULL);
812 if (result)
0fb9a9ec
JP
813 wiphy_warn(local->hw.wiphy,
814 "Failed to add default virtual iface\n");
8dffff21 815 }
f0706e82 816
f0706e82
JB
817 rtnl_unlock();
818
819 ieee80211_led_init(local);
820
10f644a4
JB
821 local->network_latency_notifier.notifier_call =
822 ieee80211_max_network_latency;
823 result = pm_qos_add_notifier(PM_QOS_NETWORK_LATENCY,
824 &local->network_latency_notifier);
10f644a4
JB
825 if (result) {
826 rtnl_lock();
827 goto fail_pm_qos;
828 }
829
26b36cfe 830#ifdef CONFIG_INET
2b2c009e
JO
831 local->ifa_notifier.notifier_call = ieee80211_ifa_changed;
832 result = register_inetaddr_notifier(&local->ifa_notifier);
833 if (result)
834 goto fail_ifa;
26b36cfe 835#endif
2b2c009e 836
4e6cbfd0
JL
837 netif_napi_add(&local->napi_dev, &local->napi, ieee80211_napi_poll,
838 local->hw.napi_weight);
839
f0706e82
JB
840 return 0;
841
93c08c32 842#ifdef CONFIG_INET
2b2c009e
JO
843 fail_ifa:
844 pm_qos_remove_notifier(PM_QOS_NETWORK_LATENCY,
845 &local->network_latency_notifier);
846 rtnl_lock();
93c08c32 847#endif
10f644a4
JB
848 fail_pm_qos:
849 ieee80211_led_exit(local);
850 ieee80211_remove_interfaces(local);
10f644a4 851 fail_rate:
f0706e82 852 rtnl_unlock();
d4c4a9a1 853 ieee80211_wep_free(local);
f0706e82 854 sta_info_stop(local);
10f644a4 855 fail_sta_info:
42935eca 856 destroy_workqueue(local->workqueue);
10f644a4 857 fail_workqueue:
f0706e82 858 wiphy_unregister(local->hw.wiphy);
10f644a4 859 fail_wiphy_register:
3ffc2a90
JB
860 if (local->wiphy_ciphers_allocated)
861 kfree(local->hw.wiphy->cipher_suites);
11ba964d 862 kfree(local->int_scan_req);
f0706e82
JB
863 return result;
864}
865EXPORT_SYMBOL(ieee80211_register_hw);
866
f0706e82
JB
867void ieee80211_unregister_hw(struct ieee80211_hw *hw)
868{
869 struct ieee80211_local *local = hw_to_local(hw);
f0706e82
JB
870
871 tasklet_kill(&local->tx_pending_tasklet);
872 tasklet_kill(&local->tasklet);
873
10f644a4
JB
874 pm_qos_remove_notifier(PM_QOS_NETWORK_LATENCY,
875 &local->network_latency_notifier);
26b36cfe 876#ifdef CONFIG_INET
2b2c009e 877 unregister_inetaddr_notifier(&local->ifa_notifier);
26b36cfe 878#endif
10f644a4 879
f0706e82
JB
880 rtnl_lock();
881
79010420
JB
882 /*
883 * At this point, interface list manipulations are fine
884 * because the driver cannot be handing us frames any
885 * more and the tasklet is killed.
886 */
75636525 887 ieee80211_remove_interfaces(local);
5b2812e9 888
f0706e82
JB
889 rtnl_unlock();
890
071249b1
JB
891 /*
892 * Now all work items will be gone, but the
893 * timer might still be armed, so delete it
894 */
895 del_timer_sync(&local->work_timer);
896
258086a4 897 cancel_work_sync(&local->restart_work);
3ac64bee
JB
898 cancel_work_sync(&local->reconfig_filter);
899
f0706e82
JB
900 ieee80211_clear_tx_pending(local);
901 sta_info_stop(local);
902 rate_control_deinitialize(local);
903
f64f9e71
JP
904 if (skb_queue_len(&local->skb_queue) ||
905 skb_queue_len(&local->skb_queue_unreliable))
0fb9a9ec 906 wiphy_warn(local->hw.wiphy, "skb_queue not empty\n");
f0706e82
JB
907 skb_queue_purge(&local->skb_queue);
908 skb_queue_purge(&local->skb_queue_unreliable);
909
42935eca 910 destroy_workqueue(local->workqueue);
f0706e82
JB
911 wiphy_unregister(local->hw.wiphy);
912 ieee80211_wep_free(local);
913 ieee80211_led_exit(local);
5ba63533 914 kfree(local->int_scan_req);
f0706e82
JB
915}
916EXPORT_SYMBOL(ieee80211_unregister_hw);
917
918void ieee80211_free_hw(struct ieee80211_hw *hw)
919{
920 struct ieee80211_local *local = hw_to_local(hw);
921
c771c9d8 922 mutex_destroy(&local->iflist_mtx);
a1699b75 923 mutex_destroy(&local->mtx);
c771c9d8 924
3ffc2a90
JB
925 if (local->wiphy_ciphers_allocated)
926 kfree(local->hw.wiphy->cipher_suites);
927
f0706e82
JB
928 wiphy_free(local->hw.wiphy);
929}
930EXPORT_SYMBOL(ieee80211_free_hw);
931
f0706e82
JB
932static int __init ieee80211_init(void)
933{
934 struct sk_buff *skb;
935 int ret;
936
e039fa4a
JB
937 BUILD_BUG_ON(sizeof(struct ieee80211_tx_info) > sizeof(skb->cb));
938 BUILD_BUG_ON(offsetof(struct ieee80211_tx_info, driver_data) +
c6a1fa12 939 IEEE80211_TX_INFO_DRIVER_DATA_SIZE > sizeof(skb->cb));
f0706e82 940
cccf129f
FF
941 ret = rc80211_minstrel_init();
942 if (ret)
943 return ret;
944
ec8aa669
FF
945 ret = rc80211_minstrel_ht_init();
946 if (ret)
947 goto err_minstrel;
948
4b475898 949 ret = rc80211_pid_init();
ad018375 950 if (ret)
47846c9b 951 goto err_pid;
f0706e82 952
47846c9b
JB
953 ret = ieee80211_iface_init();
954 if (ret)
955 goto err_netdev;
e9f207f0 956
f0706e82 957 return 0;
47846c9b
JB
958 err_netdev:
959 rc80211_pid_exit();
960 err_pid:
ec8aa669
FF
961 rc80211_minstrel_ht_exit();
962 err_minstrel:
47846c9b
JB
963 rc80211_minstrel_exit();
964
965 return ret;
f0706e82
JB
966}
967
f0706e82
JB
968static void __exit ieee80211_exit(void)
969{
4b475898 970 rc80211_pid_exit();
ec8aa669 971 rc80211_minstrel_ht_exit();
cccf129f 972 rc80211_minstrel_exit();
ac71c691 973
f7a92144
LCC
974 if (mesh_allocated)
975 ieee80211s_stop();
902acc78 976
47846c9b 977 ieee80211_iface_exit();
f0706e82
JB
978}
979
980
ca9938fe 981subsys_initcall(ieee80211_init);
f0706e82
JB
982module_exit(ieee80211_exit);
983
984MODULE_DESCRIPTION("IEEE 802.11 subsystem");
985MODULE_LICENSE("GPL");
This page took 0.46651 seconds and 5 git commands to generate.