blob: 22e07385ff60a97ab9fb1603246eb62772f0916f [file] [log] [blame]
Jiri Bencf0706e82007-05-05 11:45:53 -07001/*
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>
12#include <net/ieee80211_radiotap.h>
13#include <linux/module.h>
14#include <linux/init.h>
15#include <linux/netdevice.h>
16#include <linux/types.h>
17#include <linux/slab.h>
18#include <linux/skbuff.h>
19#include <linux/etherdevice.h>
20#include <linux/if_arp.h>
21#include <linux/wireless.h>
22#include <linux/rtnetlink.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070023#include <linux/bitmap.h>
Johannes Berg10f644a2009-04-16 13:17:25 +020024#include <linux/pm_qos_params.h>
Eric W. Biederman881d9662007-09-17 11:56:21 -070025#include <net/net_namespace.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070026#include <net/cfg80211.h>
27
Jiri Bencf0706e82007-05-05 11:45:53 -070028#include "ieee80211_i.h"
Johannes Berg24487982009-04-23 18:52:52 +020029#include "driver-ops.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040030#include "rate.h"
Luis Carlos Cobof7a92142008-02-23 15:17:18 +010031#include "mesh.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070032#include "wep.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070033#include "wme.h"
34#include "aes_ccm.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040035#include "led.h"
Michael Wue0eb6852007-09-18 17:29:21 -040036#include "cfg.h"
Jiri Bence9f207f2007-05-05 11:46:38 -070037#include "debugfs.h"
38#include "debugfs_netdev.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070039
Johannes Bergb306f452007-07-10 19:32:08 +020040/*
41 * For seeing transmitted packets on monitor interfaces
42 * we have a radiotap header too.
43 */
44struct ieee80211_tx_status_rtap_hdr {
45 struct ieee80211_radiotap_header hdr;
Johannes Berge6a98542008-10-21 12:40:02 +020046 u8 rate;
47 u8 padding_for_rate;
Johannes Bergb306f452007-07-10 19:32:08 +020048 __le16 tx_flags;
49 u8 data_retries;
50} __attribute__ ((packed));
51
Jiri Bencf0706e82007-05-05 11:45:53 -070052
Johannes Berg4150c572007-09-17 01:29:23 -040053/* must be called under mdev tx lock */
Johannes Berg0d143fe2008-09-11 00:01:59 +020054void ieee80211_configure_filter(struct ieee80211_local *local)
Johannes Berg4150c572007-09-17 01:29:23 -040055{
56 unsigned int changed_flags;
57 unsigned int new_flags = 0;
58
Johannes Berg53918992007-09-26 15:19:47 +020059 if (atomic_read(&local->iff_promiscs))
Johannes Berg4150c572007-09-17 01:29:23 -040060 new_flags |= FIF_PROMISC_IN_BSS;
61
Johannes Berg53918992007-09-26 15:19:47 +020062 if (atomic_read(&local->iff_allmultis))
Johannes Berg4150c572007-09-17 01:29:23 -040063 new_flags |= FIF_ALLMULTI;
64
65 if (local->monitors)
Michael Wu8cc9a732008-01-31 19:48:23 +010066 new_flags |= FIF_BCN_PRBRESP_PROMISC;
67
68 if (local->fif_fcsfail)
69 new_flags |= FIF_FCSFAIL;
70
71 if (local->fif_plcpfail)
72 new_flags |= FIF_PLCPFAIL;
73
74 if (local->fif_control)
75 new_flags |= FIF_CONTROL;
76
77 if (local->fif_other_bss)
78 new_flags |= FIF_OTHER_BSS;
Johannes Berg4150c572007-09-17 01:29:23 -040079
80 changed_flags = local->filter_flags ^ new_flags;
81
82 /* be a bit nasty */
83 new_flags |= (1<<31);
84
Johannes Berg24487982009-04-23 18:52:52 +020085 drv_configure_filter(local, changed_flags, &new_flags,
Johannes Berg3b8d81e02009-06-17 17:43:56 +020086 local->mc_count,
87 local->mc_list);
Johannes Berg4150c572007-09-17 01:29:23 -040088
89 WARN_ON(new_flags & (1<<31));
90
91 local->filter_flags = new_flags & ~(1<<31);
92}
93
Johannes Berge8975582008-10-09 12:18:51 +020094int ieee80211_hw_config(struct ieee80211_local *local, u32 changed)
Johannes Bergb2c258f2007-07-27 15:43:23 +020095{
Johannes Berg58905ca2009-05-07 14:23:01 +020096 struct ieee80211_channel *chan, *scan_chan;
Johannes Bergb2c258f2007-07-27 15:43:23 +020097 int ret = 0;
Johannes Berge8975582008-10-09 12:18:51 +020098 int power;
Sujith094d05d2008-12-12 11:57:43 +053099 enum nl80211_channel_type channel_type;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200100
Johannes Bergcb121ba2008-10-14 16:38:55 +0200101 might_sleep();
102
Johannes Berg58905ca2009-05-07 14:23:01 +0200103 scan_chan = local->scan_channel;
104
105 if (scan_chan) {
106 chan = scan_chan;
Sujith094d05d2008-12-12 11:57:43 +0530107 channel_type = NL80211_CHAN_NO_HT;
Jouni Malinen72bdcf32008-11-26 16:15:24 +0200108 } else {
Johannes Bergb2c258f2007-07-27 15:43:23 +0200109 chan = local->oper_channel;
Sujith094d05d2008-12-12 11:57:43 +0530110 channel_type = local->oper_channel_type;
Johannes Berge8975582008-10-09 12:18:51 +0200111 }
112
Jouni Malinen72bdcf32008-11-26 16:15:24 +0200113 if (chan != local->hw.conf.channel ||
Johannes Berg47979382009-01-07 10:13:27 +0100114 channel_type != local->hw.conf.channel_type) {
Jouni Malinen72bdcf32008-11-26 16:15:24 +0200115 local->hw.conf.channel = chan;
Johannes Berg47979382009-01-07 10:13:27 +0100116 local->hw.conf.channel_type = channel_type;
Jouni Malinen72bdcf32008-11-26 16:15:24 +0200117 changed |= IEEE80211_CONF_CHANGE_CHANNEL;
118 }
Johannes Berg8318d782008-01-24 19:38:38 +0100119
Johannes Berg58905ca2009-05-07 14:23:01 +0200120 if (scan_chan)
Johannes Berge8975582008-10-09 12:18:51 +0200121 power = chan->max_power;
Johannes Berg8318d782008-01-24 19:38:38 +0100122 else
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +0530123 power = local->power_constr_level ?
124 (chan->max_power - local->power_constr_level) :
125 chan->max_power;
126
Johannes Berg47afbaf2009-04-07 15:22:28 +0200127 if (local->user_power_level >= 0)
Vasanthakumar Thiagarajana8302de2009-01-09 18:14:15 +0530128 power = min(power, local->user_power_level);
129
Johannes Berge8975582008-10-09 12:18:51 +0200130 if (local->hw.conf.power_level != power) {
131 changed |= IEEE80211_CONF_CHANGE_POWER;
132 local->hw.conf.power_level = power;
133 }
Johannes Berg8318d782008-01-24 19:38:38 +0100134
Johannes Berge8975582008-10-09 12:18:51 +0200135 if (changed && local->open_count) {
Johannes Berg24487982009-04-23 18:52:52 +0200136 ret = drv_config(local, changed);
Johannes Bergd73782f2008-10-07 12:04:34 +0200137 /*
Reinette Chatre447107f2008-12-04 14:49:08 -0800138 * Goal:
Johannes Bergd73782f2008-10-07 12:04:34 +0200139 * HW reconfiguration should never fail, the driver has told
140 * us what it can support so it should live up to that promise.
Reinette Chatre447107f2008-12-04 14:49:08 -0800141 *
142 * Current status:
143 * rfkill is not integrated with mac80211 and a
144 * configuration command can thus fail if hardware rfkill
145 * is enabled
146 *
147 * FIXME: integrate rfkill with mac80211 and then add this
148 * WARN_ON() back
149 *
Johannes Bergd73782f2008-10-07 12:04:34 +0200150 */
Reinette Chatre447107f2008-12-04 14:49:08 -0800151 /* WARN_ON(ret); */
Johannes Bergd73782f2008-10-07 12:04:34 +0200152 }
Johannes Bergb2c258f2007-07-27 15:43:23 +0200153
154 return ret;
155}
156
Johannes Berg471b3ef2007-12-28 14:32:58 +0100157void ieee80211_bss_info_change_notify(struct ieee80211_sub_if_data *sdata,
158 u32 changed)
Daniel Draked9430a32007-07-27 15:43:24 +0200159{
Johannes Berg471b3ef2007-12-28 14:32:58 +0100160 struct ieee80211_local *local = sdata->local;
Johannes Berg9cef8732009-05-14 13:10:14 +0200161 static const u8 zero[ETH_ALEN] = { 0 };
Johannes Berg471b3ef2007-12-28 14:32:58 +0100162
163 if (!changed)
164 return;
165
Johannes Berg9cef8732009-05-14 13:10:14 +0200166 if (sdata->vif.type == NL80211_IFTYPE_STATION) {
167 /*
168 * While not associated, claim a BSSID of all-zeroes
169 * so that drivers don't do any weird things with the
170 * BSSID at that time.
171 */
172 if (sdata->vif.bss_conf.assoc)
173 sdata->vif.bss_conf.bssid = sdata->u.mgd.bssid;
174 else
175 sdata->vif.bss_conf.bssid = zero;
176 } else if (sdata->vif.type == NL80211_IFTYPE_ADHOC)
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200177 sdata->vif.bss_conf.bssid = sdata->u.ibss.bssid;
178 else if (sdata->vif.type == NL80211_IFTYPE_AP)
179 sdata->vif.bss_conf.bssid = sdata->dev->dev_addr;
180 else if (ieee80211_vif_is_mesh(&sdata->vif)) {
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200181 sdata->vif.bss_conf.bssid = zero;
182 } else {
183 WARN_ON(1);
184 return;
185 }
186
187 switch (sdata->vif.type) {
188 case NL80211_IFTYPE_AP:
189 case NL80211_IFTYPE_ADHOC:
190 case NL80211_IFTYPE_MESH_POINT:
191 break;
192 default:
193 /* do not warn to simplify caller in scan.c */
194 changed &= ~BSS_CHANGED_BEACON_ENABLED;
195 if (WARN_ON(changed & BSS_CHANGED_BEACON))
196 return;
197 break;
198 }
199
200 if (changed & BSS_CHANGED_BEACON_ENABLED) {
Bob Copeland97af7432009-07-29 10:13:03 +0200201 if (local->quiescing || !netif_running(sdata->dev) ||
202 test_bit(SCAN_SW_SCANNING, &local->scanning)) {
Johannes Berg2d0ddec2009-04-23 16:13:26 +0200203 sdata->vif.bss_conf.enable_beacon = false;
204 } else {
205 /*
206 * Beacon should be enabled, but AP mode must
207 * check whether there is a beacon configured.
208 */
209 switch (sdata->vif.type) {
210 case NL80211_IFTYPE_AP:
211 sdata->vif.bss_conf.enable_beacon =
212 !!rcu_dereference(sdata->u.ap.beacon);
213 break;
214 case NL80211_IFTYPE_ADHOC:
215 sdata->vif.bss_conf.enable_beacon =
216 !!rcu_dereference(sdata->u.ibss.presp);
217 break;
218 case NL80211_IFTYPE_MESH_POINT:
219 sdata->vif.bss_conf.enable_beacon = true;
220 break;
221 default:
222 /* not reached */
223 WARN_ON(1);
224 break;
225 }
226 }
227 }
228
Johannes Berg24487982009-04-23 18:52:52 +0200229 drv_bss_info_changed(local, &sdata->vif,
230 &sdata->vif.bss_conf, changed);
Johannes Berg57c4d7b2009-04-23 16:10:04 +0200231
Johannes Berge535c752009-05-23 11:18:45 +0200232 /* DEPRECATED */
233 local->hw.conf.beacon_int = sdata->vif.bss_conf.beacon_int;
Daniel Draked9430a32007-07-27 15:43:24 +0200234}
235
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200236u32 ieee80211_reset_erp_info(struct ieee80211_sub_if_data *sdata)
Daniel Draked9430a32007-07-27 15:43:24 +0200237{
Johannes Bergbda39332008-10-11 01:51:51 +0200238 sdata->vif.bss_conf.use_cts_prot = false;
239 sdata->vif.bss_conf.use_short_preamble = false;
240 sdata->vif.bss_conf.use_short_slot = false;
Johannes Berg7a5158e2008-10-08 10:59:33 +0200241 return BSS_CHANGED_ERP_CTS_PROT |
242 BSS_CHANGED_ERP_PREAMBLE |
243 BSS_CHANGED_ERP_SLOT;
Daniel Draked9430a32007-07-27 15:43:24 +0200244}
245
Jiri Bencf0706e82007-05-05 11:45:53 -0700246void ieee80211_tx_status_irqsafe(struct ieee80211_hw *hw,
Johannes Berge039fa42008-05-15 12:55:29 +0200247 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700248{
249 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berge039fa42008-05-15 12:55:29 +0200250 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700251 int tmp;
252
Jiri Bencf0706e82007-05-05 11:45:53 -0700253 skb->pkt_type = IEEE80211_TX_STATUS_MSG;
Johannes Berge039fa42008-05-15 12:55:29 +0200254 skb_queue_tail(info->flags & IEEE80211_TX_CTL_REQ_TX_STATUS ?
Jiri Bencf0706e82007-05-05 11:45:53 -0700255 &local->skb_queue : &local->skb_queue_unreliable, skb);
256 tmp = skb_queue_len(&local->skb_queue) +
257 skb_queue_len(&local->skb_queue_unreliable);
258 while (tmp > IEEE80211_IRQSAFE_QUEUE_LIMIT &&
259 (skb = skb_dequeue(&local->skb_queue_unreliable))) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700260 dev_kfree_skb_irq(skb);
261 tmp--;
262 I802_DEBUG_INC(local->tx_status_drop);
263 }
264 tasklet_schedule(&local->tasklet);
265}
266EXPORT_SYMBOL(ieee80211_tx_status_irqsafe);
267
268static void ieee80211_tasklet_handler(unsigned long data)
269{
270 struct ieee80211_local *local = (struct ieee80211_local *) data;
271 struct sk_buff *skb;
Ron Rindjunskyeadc8d92008-01-28 14:07:17 +0200272 struct ieee80211_ra_tid *ra_tid;
Jiri Bencf0706e82007-05-05 11:45:53 -0700273
274 while ((skb = skb_dequeue(&local->skb_queue)) ||
275 (skb = skb_dequeue(&local->skb_queue_unreliable))) {
276 switch (skb->pkt_type) {
277 case IEEE80211_RX_MSG:
Johannes Berg51fb61e2007-12-19 01:31:27 +0100278 /* Clear skb->pkt_type in order to not confuse kernel
Jiri Bencf0706e82007-05-05 11:45:53 -0700279 * netstack. */
280 skb->pkt_type = 0;
Johannes Bergf1d58c22009-06-17 13:13:00 +0200281 ieee80211_rx(local_to_hw(local), skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700282 break;
283 case IEEE80211_TX_STATUS_MSG:
Jiri Bencf0706e82007-05-05 11:45:53 -0700284 skb->pkt_type = 0;
Johannes Berge039fa42008-05-15 12:55:29 +0200285 ieee80211_tx_status(local_to_hw(local), skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700286 break;
Ron Rindjunskyeadc8d92008-01-28 14:07:17 +0200287 case IEEE80211_DELBA_MSG:
288 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
289 ieee80211_stop_tx_ba_cb(local_to_hw(local),
290 ra_tid->ra, ra_tid->tid);
291 dev_kfree_skb(skb);
292 break;
293 case IEEE80211_ADDBA_MSG:
294 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
295 ieee80211_start_tx_ba_cb(local_to_hw(local),
296 ra_tid->ra, ra_tid->tid);
297 dev_kfree_skb(skb);
298 break ;
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200299 default:
Larry Finger5e3f3082008-12-17 14:26:59 -0600300 WARN(1, "mac80211: Packet is of unknown type %d\n",
301 skb->pkt_type);
Jiri Bencf0706e82007-05-05 11:45:53 -0700302 dev_kfree_skb(skb);
303 break;
304 }
305 }
306}
307
Johannes Bergd46e1442008-02-20 23:59:33 +0100308static void ieee80211_handle_filtered_frame(struct ieee80211_local *local,
309 struct sta_info *sta,
Johannes Berge039fa42008-05-15 12:55:29 +0200310 struct sk_buff *skb)
Johannes Bergd46e1442008-02-20 23:59:33 +0100311{
Johannes Berg8f77f382009-06-07 21:58:37 +0200312 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
313
Johannes Berg4da163a2009-07-27 20:28:40 +0200314 /*
315 * XXX: This is temporary!
316 *
317 * The problem here is that when we get here, the driver will
318 * quite likely have pretty much overwritten info->control by
319 * using info->driver_data or info->rate_driver_data. Thus,
320 * when passing out the frame to the driver again, we would be
321 * passing completely bogus data since the driver would then
322 * expect a properly filled info->control. In mac80211 itself
323 * the same problem occurs, since we need info->control.vif
324 * internally.
325 *
326 * To fix this, we should send the frame through TX processing
327 * again. However, it's not that simple, since the frame will
328 * have been software-encrypted (if applicable) already, and
329 * encrypting it again doesn't do much good. So to properly do
330 * that, we not only have to skip the actual 'raw' encryption
331 * (key selection etc. still has to be done!) but also the
332 * sequence number assignment since that impacts the crypto
333 * encapsulation, of course.
334 *
335 * Hence, for now, fix the bug by just dropping the frame.
336 */
337 goto drop;
338
Johannes Bergd46e1442008-02-20 23:59:33 +0100339 sta->tx_filtered_count++;
340
341 /*
342 * Clear the TX filter mask for this STA when sending the next
343 * packet. If the STA went to power save mode, this will happen
Yi Zhuf6d97102008-05-27 17:50:50 +0300344 * when it wakes up for the next time.
Johannes Bergd46e1442008-02-20 23:59:33 +0100345 */
Johannes Berg07346f812008-05-03 01:02:02 +0200346 set_sta_flags(sta, WLAN_STA_CLEAR_PS_FILT);
Johannes Bergd46e1442008-02-20 23:59:33 +0100347
348 /*
349 * This code races in the following way:
350 *
351 * (1) STA sends frame indicating it will go to sleep and does so
352 * (2) hardware/firmware adds STA to filter list, passes frame up
353 * (3) hardware/firmware processes TX fifo and suppresses a frame
354 * (4) we get TX status before having processed the frame and
355 * knowing that the STA has gone to sleep.
356 *
357 * This is actually quite unlikely even when both those events are
358 * processed from interrupts coming in quickly after one another or
359 * even at the same time because we queue both TX status events and
360 * RX frames to be processed by a tasklet and process them in the
361 * same order that they were received or TX status last. Hence, there
362 * is no race as long as the frame RX is processed before the next TX
363 * status, which drivers can ensure, see below.
364 *
365 * Note that this can only happen if the hardware or firmware can
366 * actually add STAs to the filter list, if this is done by the
367 * driver in response to set_tim() (which will only reduce the race
368 * this whole filtering tries to solve, not completely solve it)
369 * this situation cannot happen.
370 *
371 * To completely solve this race drivers need to make sure that they
372 * (a) don't mix the irq-safe/not irq-safe TX status/RX processing
373 * functions and
374 * (b) always process RX events before TX status events if ordering
375 * can be unknown, for example with different interrupt status
376 * bits.
377 */
Johannes Berg07346f812008-05-03 01:02:02 +0200378 if (test_sta_flags(sta, WLAN_STA_PS) &&
Johannes Bergd46e1442008-02-20 23:59:33 +0100379 skb_queue_len(&sta->tx_filtered) < STA_MAX_TX_BUFFER) {
Johannes Bergd46e1442008-02-20 23:59:33 +0100380 skb_queue_tail(&sta->tx_filtered, skb);
381 return;
382 }
383
Johannes Berg8f77f382009-06-07 21:58:37 +0200384 if (!test_sta_flags(sta, WLAN_STA_PS) &&
385 !(info->flags & IEEE80211_TX_INTFL_RETRIED)) {
Johannes Bergd46e1442008-02-20 23:59:33 +0100386 /* Software retry the packet once */
Johannes Berg8f77f382009-06-07 21:58:37 +0200387 info->flags |= IEEE80211_TX_INTFL_RETRIED;
388 ieee80211_add_pending_skb(local, skb);
Johannes Bergd46e1442008-02-20 23:59:33 +0100389 return;
390 }
391
Johannes Berg4da163a2009-07-27 20:28:40 +0200392 drop:
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200393#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Bergd46e1442008-02-20 23:59:33 +0100394 if (net_ratelimit())
395 printk(KERN_DEBUG "%s: dropped TX filtered frame, "
396 "queue_len=%d PS=%d @%lu\n",
397 wiphy_name(local->hw.wiphy),
398 skb_queue_len(&sta->tx_filtered),
Johannes Berg07346f812008-05-03 01:02:02 +0200399 !!test_sta_flags(sta, WLAN_STA_PS), jiffies);
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200400#endif
Johannes Bergd46e1442008-02-20 23:59:33 +0100401 dev_kfree_skb(skb);
402}
403
Johannes Berge039fa42008-05-15 12:55:29 +0200404void ieee80211_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700405{
406 struct sk_buff *skb2;
407 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
408 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berge039fa42008-05-15 12:55:29 +0200409 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700410 u16 frag, type;
Ron Rindjunsky429a3802008-07-01 14:16:03 +0300411 __le16 fc;
Johannes Berg4b7679a2008-09-18 18:14:18 +0200412 struct ieee80211_supported_band *sband;
Johannes Bergb306f452007-07-10 19:32:08 +0200413 struct ieee80211_tx_status_rtap_hdr *rthdr;
414 struct ieee80211_sub_if_data *sdata;
Michael Wu3d30d942008-01-31 19:48:27 +0100415 struct net_device *prev_dev = NULL;
Ron Rindjunsky429a3802008-07-01 14:16:03 +0300416 struct sta_info *sta;
Johannes Berge6a98542008-10-21 12:40:02 +0200417 int retry_count = -1, i;
418
419 for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
420 /* the HW cannot have attempted that rate */
421 if (i >= hw->max_rates) {
422 info->status.rates[i].idx = -1;
423 info->status.rates[i].count = 0;
424 }
425
426 retry_count += info->status.rates[i].count;
427 }
428 if (retry_count < 0)
429 retry_count = 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700430
Johannes Bergd0709a62008-02-25 16:27:46 +0100431 rcu_read_lock();
432
Johannes Berge6a98542008-10-21 12:40:02 +0200433 sband = local->hw.wiphy->bands[info->band];
434
Johannes Berg95dac0402008-09-11 02:03:28 +0200435 sta = sta_info_get(local, hdr->addr1);
436
437 if (sta) {
Johannes Berge6a98542008-10-21 12:40:02 +0200438 if (!(info->flags & IEEE80211_TX_STAT_ACK) &&
Johannes Berg95dac0402008-09-11 02:03:28 +0200439 test_sta_flags(sta, WLAN_STA_PS)) {
440 /*
441 * The STA is in power save mode, so assume
442 * that this TX packet failed because of that.
443 */
444 ieee80211_handle_filtered_frame(local, sta, skb);
445 rcu_read_unlock();
446 return;
Jiri Bencf0706e82007-05-05 11:45:53 -0700447 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700448
Johannes Berg95dac0402008-09-11 02:03:28 +0200449 fc = hdr->frame_control;
Ron Rindjunsky429a3802008-07-01 14:16:03 +0300450
Johannes Berg95dac0402008-09-11 02:03:28 +0200451 if ((info->flags & IEEE80211_TX_STAT_AMPDU_NO_BACK) &&
452 (ieee80211_is_data_qos(fc))) {
453 u16 tid, ssn;
454 u8 *qc;
455
Ron Rindjunsky429a3802008-07-01 14:16:03 +0300456 qc = ieee80211_get_qos_ctl(hdr);
457 tid = qc[0] & 0xf;
458 ssn = ((le16_to_cpu(hdr->seq_ctrl) + 0x10)
459 & IEEE80211_SCTL_SEQ);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200460 ieee80211_send_bar(sta->sdata, hdr->addr1,
Ron Rindjunsky429a3802008-07-01 14:16:03 +0300461 tid, ssn);
462 }
Ron Rindjunsky429a3802008-07-01 14:16:03 +0300463
Johannes Berg95dac0402008-09-11 02:03:28 +0200464 if (info->flags & IEEE80211_TX_STAT_TX_FILTERED) {
Johannes Berge039fa42008-05-15 12:55:29 +0200465 ieee80211_handle_filtered_frame(local, sta, skb);
Johannes Bergd0709a62008-02-25 16:27:46 +0100466 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -0700467 return;
Johannes Berg95dac0402008-09-11 02:03:28 +0200468 } else {
Johannes Berge6a98542008-10-21 12:40:02 +0200469 if (!(info->flags & IEEE80211_TX_STAT_ACK))
Johannes Berg95dac0402008-09-11 02:03:28 +0200470 sta->tx_retry_failed++;
Johannes Berge6a98542008-10-21 12:40:02 +0200471 sta->tx_retry_count += retry_count;
Jiri Bencf0706e82007-05-05 11:45:53 -0700472 }
Johannes Berg95dac0402008-09-11 02:03:28 +0200473
Johannes Berg4b7679a2008-09-18 18:14:18 +0200474 rate_control_tx_status(local, sband, sta, skb);
Johannes Berg95dac0402008-09-11 02:03:28 +0200475 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700476
Johannes Bergd0709a62008-02-25 16:27:46 +0100477 rcu_read_unlock();
478
Jiri Bencf0706e82007-05-05 11:45:53 -0700479 ieee80211_led_tx(local, 0);
480
481 /* SNMP counters
482 * Fragments are passed to low-level drivers as separate skbs, so these
483 * are actually fragments, not frames. Update frame counters only for
484 * the first fragment of the frame. */
485
486 frag = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG;
487 type = le16_to_cpu(hdr->frame_control) & IEEE80211_FCTL_FTYPE;
488
Johannes Berge039fa42008-05-15 12:55:29 +0200489 if (info->flags & IEEE80211_TX_STAT_ACK) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700490 if (frag == 0) {
491 local->dot11TransmittedFrameCount++;
492 if (is_multicast_ether_addr(hdr->addr1))
493 local->dot11MulticastTransmittedFrameCount++;
Johannes Berge6a98542008-10-21 12:40:02 +0200494 if (retry_count > 0)
Jiri Bencf0706e82007-05-05 11:45:53 -0700495 local->dot11RetryCount++;
Johannes Berge6a98542008-10-21 12:40:02 +0200496 if (retry_count > 1)
Jiri Bencf0706e82007-05-05 11:45:53 -0700497 local->dot11MultipleRetryCount++;
498 }
499
500 /* This counter shall be incremented for an acknowledged MPDU
501 * with an individual address in the address 1 field or an MPDU
502 * with a multicast address in the address 1 field of type Data
503 * or Management. */
504 if (!is_multicast_ether_addr(hdr->addr1) ||
505 type == IEEE80211_FTYPE_DATA ||
506 type == IEEE80211_FTYPE_MGMT)
507 local->dot11TransmittedFragmentCount++;
508 } else {
509 if (frag == 0)
510 local->dot11FailedCount++;
511 }
512
Johannes Bergb306f452007-07-10 19:32:08 +0200513 /* this was a transmitted frame, but now we want to reuse it */
514 skb_orphan(skb);
515
Michael Wu3d30d942008-01-31 19:48:27 +0100516 /*
517 * This is a bit racy but we can avoid a lot of work
518 * with this test...
519 */
520 if (!local->monitors && !local->cooked_mntrs) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700521 dev_kfree_skb(skb);
522 return;
523 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700524
Johannes Bergb306f452007-07-10 19:32:08 +0200525 /* send frame to monitor interfaces now */
526
527 if (skb_headroom(skb) < sizeof(*rthdr)) {
528 printk(KERN_ERR "ieee80211_tx_status: headroom too small\n");
529 dev_kfree_skb(skb);
530 return;
531 }
532
Johannes Berg988c0f72008-04-17 19:21:22 +0200533 rthdr = (struct ieee80211_tx_status_rtap_hdr *)
Johannes Bergb306f452007-07-10 19:32:08 +0200534 skb_push(skb, sizeof(*rthdr));
535
536 memset(rthdr, 0, sizeof(*rthdr));
537 rthdr->hdr.it_len = cpu_to_le16(sizeof(*rthdr));
538 rthdr->hdr.it_present =
539 cpu_to_le32((1 << IEEE80211_RADIOTAP_TX_FLAGS) |
Johannes Berge6a98542008-10-21 12:40:02 +0200540 (1 << IEEE80211_RADIOTAP_DATA_RETRIES) |
541 (1 << IEEE80211_RADIOTAP_RATE));
Johannes Bergb306f452007-07-10 19:32:08 +0200542
Johannes Berge039fa42008-05-15 12:55:29 +0200543 if (!(info->flags & IEEE80211_TX_STAT_ACK) &&
Johannes Bergb306f452007-07-10 19:32:08 +0200544 !is_multicast_ether_addr(hdr->addr1))
545 rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_FAIL);
546
Johannes Berge6a98542008-10-21 12:40:02 +0200547 /*
548 * XXX: Once radiotap gets the bitmap reset thing the vendor
549 * extensions proposal contains, we can actually report
550 * the whole set of tries we did.
551 */
552 if ((info->status.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS) ||
553 (info->status.rates[0].flags & IEEE80211_TX_RC_USE_CTS_PROTECT))
Johannes Bergb306f452007-07-10 19:32:08 +0200554 rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_CTS);
Johannes Berge6a98542008-10-21 12:40:02 +0200555 else if (info->status.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS)
Johannes Bergb306f452007-07-10 19:32:08 +0200556 rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_RTS);
Johannes Berge6a98542008-10-21 12:40:02 +0200557 if (info->status.rates[0].idx >= 0 &&
558 !(info->status.rates[0].flags & IEEE80211_TX_RC_MCS))
559 rthdr->rate = sband->bitrates[
560 info->status.rates[0].idx].bitrate / 5;
Johannes Bergb306f452007-07-10 19:32:08 +0200561
Johannes Berge6a98542008-10-21 12:40:02 +0200562 /* for now report the total retry_count */
563 rthdr->data_retries = retry_count;
Johannes Bergb306f452007-07-10 19:32:08 +0200564
Michael Wu3d30d942008-01-31 19:48:27 +0100565 /* XXX: is this sufficient for BPF? */
566 skb_set_mac_header(skb, 0);
567 skb->ip_summed = CHECKSUM_UNNECESSARY;
568 skb->pkt_type = PACKET_OTHERHOST;
569 skb->protocol = htons(ETH_P_802_2);
570 memset(skb->cb, 0, sizeof(skb->cb));
Johannes Bergb306f452007-07-10 19:32:08 +0200571
Michael Wu3d30d942008-01-31 19:48:27 +0100572 rcu_read_lock();
573 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200574 if (sdata->vif.type == NL80211_IFTYPE_MONITOR) {
Johannes Bergb306f452007-07-10 19:32:08 +0200575 if (!netif_running(sdata->dev))
576 continue;
Michael Wu3d30d942008-01-31 19:48:27 +0100577
578 if (prev_dev) {
Johannes Berg79010422007-09-18 17:29:21 -0400579 skb2 = skb_clone(skb, GFP_ATOMIC);
Michael Wu3d30d942008-01-31 19:48:27 +0100580 if (skb2) {
581 skb2->dev = prev_dev;
582 netif_rx(skb2);
583 }
584 }
585
586 prev_dev = sdata->dev;
Johannes Bergb306f452007-07-10 19:32:08 +0200587 }
588 }
Michael Wu3d30d942008-01-31 19:48:27 +0100589 if (prev_dev) {
590 skb->dev = prev_dev;
591 netif_rx(skb);
592 skb = NULL;
593 }
Johannes Berg79010422007-09-18 17:29:21 -0400594 rcu_read_unlock();
Michael Wu3d30d942008-01-31 19:48:27 +0100595 dev_kfree_skb(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700596}
597EXPORT_SYMBOL(ieee80211_tx_status);
598
Johannes Bergf2753dd2009-04-14 10:09:24 +0200599static void ieee80211_restart_work(struct work_struct *work)
600{
601 struct ieee80211_local *local =
602 container_of(work, struct ieee80211_local, restart_work);
603
604 rtnl_lock();
605 ieee80211_reconfig(local);
606 rtnl_unlock();
607}
608
609void ieee80211_restart_hw(struct ieee80211_hw *hw)
610{
611 struct ieee80211_local *local = hw_to_local(hw);
612
613 /* use this reason, __ieee80211_resume will unblock it */
614 ieee80211_stop_queues_by_reason(hw,
615 IEEE80211_QUEUE_STOP_REASON_SUSPEND);
616
617 schedule_work(&local->restart_work);
618}
619EXPORT_SYMBOL(ieee80211_restart_hw);
620
Jiri Bencf0706e82007-05-05 11:45:53 -0700621struct ieee80211_hw *ieee80211_alloc_hw(size_t priv_data_len,
622 const struct ieee80211_ops *ops)
623{
Jiri Bencf0706e82007-05-05 11:45:53 -0700624 struct ieee80211_local *local;
Johannes Berg96f5e662009-02-12 00:51:53 +0100625 int priv_size, i;
Jiri Bencf0706e82007-05-05 11:45:53 -0700626 struct wiphy *wiphy;
627
628 /* Ensure 32-byte alignment of our private data and hw private data.
629 * We use the wiphy priv data for both our ieee80211_local and for
630 * the driver's private data
631 *
632 * In memory it'll be like this:
633 *
634 * +-------------------------+
635 * | struct wiphy |
636 * +-------------------------+
637 * | struct ieee80211_local |
638 * +-------------------------+
639 * | driver's private data |
640 * +-------------------------+
641 *
642 */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +0000643 priv_size = ALIGN(sizeof(*local), NETDEV_ALIGN) + priv_data_len;
Jiri Bencf0706e82007-05-05 11:45:53 -0700644
645 wiphy = wiphy_new(&mac80211_config_ops, priv_size);
646
647 if (!wiphy)
648 return NULL;
649
Johannes Berga272a722009-07-14 00:33:36 +0200650 wiphy->netnsok = true;
Jiri Bencf0706e82007-05-05 11:45:53 -0700651 wiphy->privid = mac80211_wiphy_privid;
Johannes Berg18a83652009-03-31 12:12:05 +0200652
Johannes Berg00d3f142009-02-10 21:26:00 +0100653 /* Yes, putting cfg80211_bss into ieee80211_bss is a hack */
654 wiphy->bss_priv_size = sizeof(struct ieee80211_bss) -
655 sizeof(struct cfg80211_bss);
Jiri Bencf0706e82007-05-05 11:45:53 -0700656
657 local = wiphy_priv(wiphy);
Johannes Bergde95a542009-04-01 11:58:36 +0200658
Jiri Bencf0706e82007-05-05 11:45:53 -0700659 local->hw.wiphy = wiphy;
660
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +0000661 local->hw.priv = (char *)local + ALIGN(sizeof(*local), NETDEV_ALIGN);
Jiri Bencf0706e82007-05-05 11:45:53 -0700662
Johannes Berg4480f15c2007-07-10 19:32:10 +0200663 BUG_ON(!ops->tx);
Johannes Berg4150c572007-09-17 01:29:23 -0400664 BUG_ON(!ops->start);
665 BUG_ON(!ops->stop);
Johannes Berg4480f15c2007-07-10 19:32:10 +0200666 BUG_ON(!ops->config);
667 BUG_ON(!ops->add_interface);
Johannes Berg4150c572007-09-17 01:29:23 -0400668 BUG_ON(!ops->remove_interface);
669 BUG_ON(!ops->configure_filter);
Jiri Bencf0706e82007-05-05 11:45:53 -0700670 local->ops = ops;
671
Johannes Berge6a98542008-10-21 12:40:02 +0200672 /* set up some defaults */
673 local->hw.queues = 1;
674 local->hw.max_rates = 1;
Jouni Malinenb9a5f8ca2009-04-20 18:39:05 +0200675 local->hw.conf.long_frame_max_tx_count = wiphy->retry_long;
676 local->hw.conf.short_frame_max_tx_count = wiphy->retry_short;
Johannes Berge8975582008-10-09 12:18:51 +0200677 local->hw.conf.radio_enabled = true;
Johannes Bergc428c892009-04-29 00:28:18 +0200678 local->user_power_level = -1;
Jiri Bencf0706e82007-05-05 11:45:53 -0700679
Johannes Berg79010422007-09-18 17:29:21 -0400680 INIT_LIST_HEAD(&local->interfaces);
Johannes Bergc771c9d2009-01-23 22:54:03 +0100681 mutex_init(&local->iflist_mtx);
Johannes Bergf3b85252009-04-23 16:01:47 +0200682 mutex_init(&local->scan_mtx);
Jiri Bencf0706e82007-05-05 11:45:53 -0700683
Johannes Bergb16bd152008-04-11 21:40:35 +0200684 spin_lock_init(&local->key_lock);
Johannes Berg3b8d81e02009-06-17 17:43:56 +0200685 spin_lock_init(&local->filter_lock);
Kalle Valoce7c9112008-12-18 23:35:20 +0200686 spin_lock_init(&local->queue_stop_reason_lock);
687
Johannes Bergc2b13452008-09-11 00:01:55 +0200688 INIT_DELAYED_WORK(&local->scan_work, ieee80211_scan_work);
Jiri Bencf0706e82007-05-05 11:45:53 -0700689
Johannes Bergf2753dd2009-04-14 10:09:24 +0200690 INIT_WORK(&local->restart_work, ieee80211_restart_work);
691
Kalle Valo520eb822008-12-18 23:35:27 +0200692 INIT_WORK(&local->dynamic_ps_enable_work,
693 ieee80211_dynamic_ps_enable_work);
694 INIT_WORK(&local->dynamic_ps_disable_work,
695 ieee80211_dynamic_ps_disable_work);
696 setup_timer(&local->dynamic_ps_timer,
697 ieee80211_dynamic_ps_timer, (unsigned long) local);
698
Jiri Bencf0706e82007-05-05 11:45:53 -0700699 sta_info_init(local);
700
Johannes Berg2a577d92009-03-23 17:28:37 +0100701 for (i = 0; i < IEEE80211_MAX_QUEUES; i++)
702 skb_queue_head_init(&local->pending[i]);
Jiri Bencf0706e82007-05-05 11:45:53 -0700703 tasklet_init(&local->tx_pending_tasklet, ieee80211_tx_pending,
704 (unsigned long)local);
705 tasklet_disable(&local->tx_pending_tasklet);
706
707 tasklet_init(&local->tasklet,
708 ieee80211_tasklet_handler,
709 (unsigned long) local);
710 tasklet_disable(&local->tasklet);
711
712 skb_queue_head_init(&local->skb_queue);
713 skb_queue_head_init(&local->skb_queue_unreliable);
714
Johannes Bergcd8ffc82009-03-23 17:28:41 +0100715 spin_lock_init(&local->ampdu_lock);
716
Jiri Bencf0706e82007-05-05 11:45:53 -0700717 return local_to_hw(local);
718}
719EXPORT_SYMBOL(ieee80211_alloc_hw);
720
721int ieee80211_register_hw(struct ieee80211_hw *hw)
722{
723 struct ieee80211_local *local = hw_to_local(hw);
Jiri Bencf0706e82007-05-05 11:45:53 -0700724 int result;
Johannes Berg8318d782008-01-24 19:38:38 +0100725 enum ieee80211_band band;
Johannes Bergde95a542009-04-01 11:58:36 +0200726 int channels, i, j, max_bitrates;
Johannes Berg5ef2d412009-03-31 12:12:07 +0200727 bool supp_ht;
Johannes Berg25e47c12009-04-02 20:14:06 +0200728 static const u32 cipher_suites[] = {
729 WLAN_CIPHER_SUITE_WEP40,
730 WLAN_CIPHER_SUITE_WEP104,
731 WLAN_CIPHER_SUITE_TKIP,
732 WLAN_CIPHER_SUITE_CCMP,
733
734 /* keep last -- depends on hw flags! */
735 WLAN_CIPHER_SUITE_AES_CMAC
736 };
Johannes Berg8318d782008-01-24 19:38:38 +0100737
738 /*
739 * generic code guarantees at least one band,
740 * set this very early because much code assumes
741 * that hw.conf.channel is assigned
742 */
Johannes Berg2a519312009-02-10 21:25:55 +0100743 channels = 0;
Johannes Bergde95a542009-04-01 11:58:36 +0200744 max_bitrates = 0;
Johannes Berg5ef2d412009-03-31 12:12:07 +0200745 supp_ht = false;
Johannes Berg8318d782008-01-24 19:38:38 +0100746 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
747 struct ieee80211_supported_band *sband;
748
749 sband = local->hw.wiphy->bands[band];
Johannes Bergde95a542009-04-01 11:58:36 +0200750 if (!sband)
751 continue;
752 if (!local->oper_channel) {
Johannes Berg8318d782008-01-24 19:38:38 +0100753 /* init channel we're on */
754 local->hw.conf.channel =
Johannes Berg58905ca2009-05-07 14:23:01 +0200755 local->oper_channel = &sband->channels[0];
756 local->hw.conf.channel_type = NL80211_CHAN_NO_HT;
Johannes Berg8318d782008-01-24 19:38:38 +0100757 }
Johannes Bergde95a542009-04-01 11:58:36 +0200758 channels += sband->n_channels;
759
760 if (max_bitrates < sband->n_bitrates)
761 max_bitrates = sband->n_bitrates;
Johannes Berg5ef2d412009-03-31 12:12:07 +0200762 supp_ht = supp_ht || sband->ht_cap.ht_supported;
Johannes Berg8318d782008-01-24 19:38:38 +0100763 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700764
Johannes Berg2a519312009-02-10 21:25:55 +0100765 local->int_scan_req.n_channels = channels;
766 local->int_scan_req.channels = kzalloc(sizeof(void *) * channels, GFP_KERNEL);
767 if (!local->int_scan_req.channels)
768 return -ENOMEM;
769
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -0700770 /* if low-level driver supports AP, we also support VLAN */
771 if (local->hw.wiphy->interface_modes & BIT(NL80211_IFTYPE_AP))
772 local->hw.wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP_VLAN);
773
774 /* mac80211 always supports monitor */
775 local->hw.wiphy->interface_modes |= BIT(NL80211_IFTYPE_MONITOR);
776
Johannes Berg77965c92009-02-18 18:45:06 +0100777 if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM)
778 local->hw.wiphy->signal_type = CFG80211_SIGNAL_TYPE_MBM;
779 else if (local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC)
780 local->hw.wiphy->signal_type = CFG80211_SIGNAL_TYPE_UNSPEC;
781
Johannes Bergde95a542009-04-01 11:58:36 +0200782 /*
783 * Calculate scan IE length -- we need this to alloc
784 * memory and to subtract from the driver limit. It
785 * includes the (extended) supported rates and HT
786 * information -- SSID is the driver's responsibility.
787 */
788 local->scan_ies_len = 4 + max_bitrates; /* (ext) supp rates */
Johannes Berg5ef2d412009-03-31 12:12:07 +0200789 if (supp_ht)
790 local->scan_ies_len += 2 + sizeof(struct ieee80211_ht_cap);
Johannes Bergde95a542009-04-01 11:58:36 +0200791
792 if (!local->ops->hw_scan) {
793 /* For hw_scan, driver needs to set these up. */
794 local->hw.wiphy->max_scan_ssids = 4;
795 local->hw.wiphy->max_scan_ie_len = IEEE80211_MAX_DATA_LEN;
796 }
797
798 /*
799 * If the driver supports any scan IEs, then assume the
800 * limit includes the IEs mac80211 will add, otherwise
801 * leave it at zero and let the driver sort it out; we
802 * still pass our IEs to the driver but userspace will
803 * not be allowed to in that case.
804 */
805 if (local->hw.wiphy->max_scan_ie_len)
806 local->hw.wiphy->max_scan_ie_len -= local->scan_ies_len;
807
Johannes Berg25e47c12009-04-02 20:14:06 +0200808 local->hw.wiphy->cipher_suites = cipher_suites;
809 local->hw.wiphy->n_cipher_suites = ARRAY_SIZE(cipher_suites);
810 if (!(local->hw.flags & IEEE80211_HW_MFP_CAPABLE))
811 local->hw.wiphy->n_cipher_suites--;
812
Jiri Bencf0706e82007-05-05 11:45:53 -0700813 result = wiphy_register(local->hw.wiphy);
814 if (result < 0)
Johannes Berg2a519312009-02-10 21:25:55 +0100815 goto fail_wiphy_register;
Jiri Bencf0706e82007-05-05 11:45:53 -0700816
Johannes Berge2530082008-05-17 00:57:14 +0200817 /*
818 * We use the number of queues for feature tests (QoS, HT) internally
819 * so restrict them appropriately.
820 */
Johannes Berge2530082008-05-17 00:57:14 +0200821 if (hw->queues > IEEE80211_MAX_QUEUES)
822 hw->queues = IEEE80211_MAX_QUEUES;
Johannes Berge2530082008-05-17 00:57:14 +0200823
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400824 local->workqueue =
Bob Copeland30d3ef42009-01-23 23:09:35 -0500825 create_singlethread_workqueue(wiphy_name(local->hw.wiphy));
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400826 if (!local->workqueue) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700827 result = -ENOMEM;
828 goto fail_workqueue;
829 }
830
Johannes Bergb306f452007-07-10 19:32:08 +0200831 /*
832 * The hardware needs headroom for sending the frame,
833 * and we need some headroom for passing the frame to monitor
834 * interfaces, but never both at the same time.
835 */
Jiri Benc33ccad32007-07-18 17:10:44 +0200836 local->tx_headroom = max_t(unsigned int , local->hw.extra_tx_headroom,
837 sizeof(struct ieee80211_tx_status_rtap_hdr));
Johannes Bergb306f452007-07-10 19:32:08 +0200838
Jiri Bence9f207f2007-05-05 11:46:38 -0700839 debugfs_hw_add(local);
840
Tomas Winklerea95bba2008-07-18 13:53:00 +0800841 if (local->hw.max_listen_interval == 0)
842 local->hw.max_listen_interval = 1;
843
844 local->hw.conf.listen_interval = local->hw.max_listen_interval;
845
Jiri Bencf0706e82007-05-05 11:45:53 -0700846 result = sta_info_start(local);
847 if (result < 0)
848 goto fail_sta_info;
849
Alan Jenkinsd4c4a9a2009-04-29 11:41:24 +0100850 result = ieee80211_wep_init(local);
851 if (result < 0) {
852 printk(KERN_DEBUG "%s: Failed to initialize wep: %d\n",
853 wiphy_name(local->hw.wiphy), result);
854 goto fail_wep;
855 }
856
Jiri Bencf0706e82007-05-05 11:45:53 -0700857 rtnl_lock();
Jiri Bencf0706e82007-05-05 11:45:53 -0700858
Johannes Berg830f9032007-10-28 14:51:05 +0100859 result = ieee80211_init_rate_ctrl_alg(local,
860 hw->rate_control_algorithm);
Jiri Bencf0706e82007-05-05 11:45:53 -0700861 if (result < 0) {
862 printk(KERN_DEBUG "%s: Failed to initialize rate control "
Johannes Bergdd1cd4c2007-09-18 17:29:20 -0400863 "algorithm\n", wiphy_name(local->hw.wiphy));
Jiri Bencf0706e82007-05-05 11:45:53 -0700864 goto fail_rate;
865 }
866
Johannes Berg8dffff22008-12-09 00:10:30 +0100867 /* add one default STA interface if supported */
868 if (local->hw.wiphy->interface_modes & BIT(NL80211_IFTYPE_STATION)) {
869 result = ieee80211_if_add(local, "wlan%d", NULL,
870 NL80211_IFTYPE_STATION, NULL);
871 if (result)
872 printk(KERN_WARNING "%s: Failed to add default virtual iface\n",
873 wiphy_name(local->hw.wiphy));
874 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700875
Jiri Bencf0706e82007-05-05 11:45:53 -0700876 rtnl_unlock();
877
878 ieee80211_led_init(local);
879
Johannes Berg2a519312009-02-10 21:25:55 +0100880 /* alloc internal scan request */
881 i = 0;
882 local->int_scan_req.ssids = &local->scan_ssid;
883 local->int_scan_req.n_ssids = 1;
884 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
885 if (!hw->wiphy->bands[band])
886 continue;
887 for (j = 0; j < hw->wiphy->bands[band]->n_channels; j++) {
888 local->int_scan_req.channels[i] =
889 &hw->wiphy->bands[band]->channels[j];
890 i++;
891 }
892 }
893
Johannes Berg10f644a2009-04-16 13:17:25 +0200894 local->network_latency_notifier.notifier_call =
895 ieee80211_max_network_latency;
896 result = pm_qos_add_notifier(PM_QOS_NETWORK_LATENCY,
897 &local->network_latency_notifier);
898
899 if (result) {
900 rtnl_lock();
901 goto fail_pm_qos;
902 }
903
Jiri Bencf0706e82007-05-05 11:45:53 -0700904 return 0;
905
Johannes Berg10f644a2009-04-16 13:17:25 +0200906 fail_pm_qos:
907 ieee80211_led_exit(local);
908 ieee80211_remove_interfaces(local);
Johannes Berg10f644a2009-04-16 13:17:25 +0200909 fail_rate:
Jiri Bencf0706e82007-05-05 11:45:53 -0700910 rtnl_unlock();
Alan Jenkinsd4c4a9a2009-04-29 11:41:24 +0100911 ieee80211_wep_free(local);
David S. Milleraba74532009-04-29 20:30:35 -0700912 fail_wep:
Jiri Bencf0706e82007-05-05 11:45:53 -0700913 sta_info_stop(local);
Johannes Berg10f644a2009-04-16 13:17:25 +0200914 fail_sta_info:
Jiri Bence9f207f2007-05-05 11:46:38 -0700915 debugfs_hw_del(local);
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400916 destroy_workqueue(local->workqueue);
Johannes Berg10f644a2009-04-16 13:17:25 +0200917 fail_workqueue:
Jiri Bencf0706e82007-05-05 11:45:53 -0700918 wiphy_unregister(local->hw.wiphy);
Johannes Berg10f644a2009-04-16 13:17:25 +0200919 fail_wiphy_register:
Johannes Berg2a519312009-02-10 21:25:55 +0100920 kfree(local->int_scan_req.channels);
Jiri Bencf0706e82007-05-05 11:45:53 -0700921 return result;
922}
923EXPORT_SYMBOL(ieee80211_register_hw);
924
Jiri Bencf0706e82007-05-05 11:45:53 -0700925void ieee80211_unregister_hw(struct ieee80211_hw *hw)
926{
927 struct ieee80211_local *local = hw_to_local(hw);
Jiri Bencf0706e82007-05-05 11:45:53 -0700928
929 tasklet_kill(&local->tx_pending_tasklet);
930 tasklet_kill(&local->tasklet);
931
Johannes Berg10f644a2009-04-16 13:17:25 +0200932 pm_qos_remove_notifier(PM_QOS_NETWORK_LATENCY,
933 &local->network_latency_notifier);
934
Jiri Bencf0706e82007-05-05 11:45:53 -0700935 rtnl_lock();
936
Johannes Berg79010422007-09-18 17:29:21 -0400937 /*
938 * At this point, interface list manipulations are fine
939 * because the driver cannot be handing us frames any
940 * more and the tasklet is killed.
941 */
Johannes Berg75636522008-07-09 14:40:35 +0200942 ieee80211_remove_interfaces(local);
Johannes Berg5b2812e2007-09-26 14:27:23 +0200943
Jiri Bencf0706e82007-05-05 11:45:53 -0700944 rtnl_unlock();
945
Jiri Bencf0706e82007-05-05 11:45:53 -0700946 ieee80211_clear_tx_pending(local);
947 sta_info_stop(local);
948 rate_control_deinitialize(local);
Jiri Bence9f207f2007-05-05 11:46:38 -0700949 debugfs_hw_del(local);
Jiri Bencf0706e82007-05-05 11:45:53 -0700950
Jiri Bencf0706e82007-05-05 11:45:53 -0700951 if (skb_queue_len(&local->skb_queue)
952 || skb_queue_len(&local->skb_queue_unreliable))
953 printk(KERN_WARNING "%s: skb_queue not empty\n",
Johannes Bergdd1cd4c2007-09-18 17:29:20 -0400954 wiphy_name(local->hw.wiphy));
Jiri Bencf0706e82007-05-05 11:45:53 -0700955 skb_queue_purge(&local->skb_queue);
956 skb_queue_purge(&local->skb_queue_unreliable);
957
Luis R. Rodriguez42935ec2009-07-29 20:08:07 -0400958 destroy_workqueue(local->workqueue);
Jiri Bencf0706e82007-05-05 11:45:53 -0700959 wiphy_unregister(local->hw.wiphy);
960 ieee80211_wep_free(local);
961 ieee80211_led_exit(local);
Johannes Berg2a519312009-02-10 21:25:55 +0100962 kfree(local->int_scan_req.channels);
Jiri Bencf0706e82007-05-05 11:45:53 -0700963}
964EXPORT_SYMBOL(ieee80211_unregister_hw);
965
966void ieee80211_free_hw(struct ieee80211_hw *hw)
967{
968 struct ieee80211_local *local = hw_to_local(hw);
969
Johannes Bergc771c9d2009-01-23 22:54:03 +0100970 mutex_destroy(&local->iflist_mtx);
Johannes Bergf3b85252009-04-23 16:01:47 +0200971 mutex_destroy(&local->scan_mtx);
Johannes Bergc771c9d2009-01-23 22:54:03 +0100972
Jiri Bencf0706e82007-05-05 11:45:53 -0700973 wiphy_free(local->hw.wiphy);
974}
975EXPORT_SYMBOL(ieee80211_free_hw);
976
Jiri Bencf0706e82007-05-05 11:45:53 -0700977static int __init ieee80211_init(void)
978{
979 struct sk_buff *skb;
980 int ret;
981
Johannes Berge039fa42008-05-15 12:55:29 +0200982 BUILD_BUG_ON(sizeof(struct ieee80211_tx_info) > sizeof(skb->cb));
983 BUILD_BUG_ON(offsetof(struct ieee80211_tx_info, driver_data) +
Johannes Bergc6a1fa12008-10-07 12:04:32 +0200984 IEEE80211_TX_INFO_DRIVER_DATA_SIZE > sizeof(skb->cb));
Jiri Bencf0706e82007-05-05 11:45:53 -0700985
Felix Fietkaucccf1292008-10-05 18:07:45 +0200986 ret = rc80211_minstrel_init();
987 if (ret)
988 return ret;
989
Johannes Berg4b475892008-01-02 15:17:03 +0100990 ret = rc80211_pid_init();
Mattias Nisslerad018372007-12-19 01:25:57 +0100991 if (ret)
David S. Miller51cb6db2008-07-15 03:34:57 -0700992 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -0700993
Jiri Bence9f207f2007-05-05 11:46:38 -0700994 ieee80211_debugfs_netdev_init();
995
Jiri Bencf0706e82007-05-05 11:45:53 -0700996 return 0;
997}
998
Jiri Bencf0706e82007-05-05 11:45:53 -0700999static void __exit ieee80211_exit(void)
1000{
Johannes Berg4b475892008-01-02 15:17:03 +01001001 rc80211_pid_exit();
Felix Fietkaucccf1292008-10-05 18:07:45 +02001002 rc80211_minstrel_exit();
Johannes Bergac71c692007-10-28 14:17:44 +01001003
Johannes Berg3b967662008-04-08 17:56:52 +02001004 /*
1005 * For key todo, it'll be empty by now but the work
1006 * might still be scheduled.
1007 */
1008 flush_scheduled_work();
1009
Luis Carlos Cobof7a92142008-02-23 15:17:18 +01001010 if (mesh_allocated)
1011 ieee80211s_stop();
Johannes Berg902acc72008-02-23 15:17:19 +01001012
Jiri Bence9f207f2007-05-05 11:46:38 -07001013 ieee80211_debugfs_netdev_exit();
Jiri Bencf0706e82007-05-05 11:45:53 -07001014}
1015
1016
Johannes Bergca9938f2007-09-11 12:50:32 +02001017subsys_initcall(ieee80211_init);
Jiri Bencf0706e82007-05-05 11:45:53 -07001018module_exit(ieee80211_exit);
1019
1020MODULE_DESCRIPTION("IEEE 802.11 subsystem");
1021MODULE_LICENSE("GPL");