blob: ffff54944f9d718b8fa8994634561bd0ec156588 [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>
Eric W. Biederman881d9662007-09-17 11:56:21 -070024#include <net/net_namespace.h>
Jiri Bencf0706e82007-05-05 11:45:53 -070025#include <net/cfg80211.h>
26
Jiri Bencf0706e82007-05-05 11:45:53 -070027#include "ieee80211_i.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040028#include "rate.h"
Luis Carlos Cobof7a92142008-02-23 15:17:18 +010029#include "mesh.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070030#include "wep.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070031#include "wme.h"
32#include "aes_ccm.h"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040033#include "led.h"
Michael Wue0eb6852007-09-18 17:29:21 -040034#include "cfg.h"
Jiri Bence9f207f2007-05-05 11:46:38 -070035#include "debugfs.h"
36#include "debugfs_netdev.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070037
Johannes Bergb306f452007-07-10 19:32:08 +020038/*
39 * For seeing transmitted packets on monitor interfaces
40 * we have a radiotap header too.
41 */
42struct ieee80211_tx_status_rtap_hdr {
43 struct ieee80211_radiotap_header hdr;
44 __le16 tx_flags;
45 u8 data_retries;
46} __attribute__ ((packed));
47
Jiri Bencf0706e82007-05-05 11:45:53 -070048
Johannes Berg4150c572007-09-17 01:29:23 -040049/* must be called under mdev tx lock */
Johannes Berg0d143fe2008-09-11 00:01:59 +020050void ieee80211_configure_filter(struct ieee80211_local *local)
Johannes Berg4150c572007-09-17 01:29:23 -040051{
52 unsigned int changed_flags;
53 unsigned int new_flags = 0;
54
Johannes Berg53918992007-09-26 15:19:47 +020055 if (atomic_read(&local->iff_promiscs))
Johannes Berg4150c572007-09-17 01:29:23 -040056 new_flags |= FIF_PROMISC_IN_BSS;
57
Johannes Berg53918992007-09-26 15:19:47 +020058 if (atomic_read(&local->iff_allmultis))
Johannes Berg4150c572007-09-17 01:29:23 -040059 new_flags |= FIF_ALLMULTI;
60
61 if (local->monitors)
Michael Wu8cc9a732008-01-31 19:48:23 +010062 new_flags |= FIF_BCN_PRBRESP_PROMISC;
63
64 if (local->fif_fcsfail)
65 new_flags |= FIF_FCSFAIL;
66
67 if (local->fif_plcpfail)
68 new_flags |= FIF_PLCPFAIL;
69
70 if (local->fif_control)
71 new_flags |= FIF_CONTROL;
72
73 if (local->fif_other_bss)
74 new_flags |= FIF_OTHER_BSS;
Johannes Berg4150c572007-09-17 01:29:23 -040075
76 changed_flags = local->filter_flags ^ new_flags;
77
78 /* be a bit nasty */
79 new_flags |= (1<<31);
80
81 local->ops->configure_filter(local_to_hw(local),
82 changed_flags, &new_flags,
83 local->mdev->mc_count,
84 local->mdev->mc_list);
85
86 WARN_ON(new_flags & (1<<31));
87
88 local->filter_flags = new_flags & ~(1<<31);
89}
90
Johannes Bergb2c258f2007-07-27 15:43:23 +020091/* master interface */
Jiri Bencf0706e82007-05-05 11:45:53 -070092
Johannes Berg0d143fe2008-09-11 00:01:59 +020093static int header_parse_80211(const struct sk_buff *skb, unsigned char *haddr)
94{
95 memcpy(haddr, skb_mac_header(skb) + 10, ETH_ALEN); /* addr2 */
96 return ETH_ALEN;
97}
98
99static const struct header_ops ieee80211_header_ops = {
100 .create = eth_header,
101 .parse = header_parse_80211,
102 .rebuild = eth_rebuild_header,
103 .cache = eth_header_cache,
104 .cache_update = eth_header_cache_update,
105};
106
Jiri Bencf0706e82007-05-05 11:45:53 -0700107static int ieee80211_master_open(struct net_device *dev)
108{
Johannes Berg133b8222008-09-16 14:18:59 +0200109 struct ieee80211_master_priv *mpriv = netdev_priv(dev);
110 struct ieee80211_local *local = mpriv->local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700111 struct ieee80211_sub_if_data *sdata;
112 int res = -EOPNOTSUPP;
113
Johannes Berg79010422007-09-18 17:29:21 -0400114 /* we hold the RTNL here so can safely walk the list */
115 list_for_each_entry(sdata, &local->interfaces, list) {
Johannes Berg3e122be2008-07-09 14:40:34 +0200116 if (netif_running(sdata->dev)) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700117 res = 0;
118 break;
119 }
120 }
Johannes Berg36d68252008-05-15 12:55:26 +0200121
122 if (res)
123 return res;
124
David S. Miller51cb6db2008-07-15 03:34:57 -0700125 netif_tx_start_all_queues(local->mdev);
Johannes Berg36d68252008-05-15 12:55:26 +0200126
127 return 0;
Jiri Bencf0706e82007-05-05 11:45:53 -0700128}
129
130static int ieee80211_master_stop(struct net_device *dev)
131{
Johannes Berg133b8222008-09-16 14:18:59 +0200132 struct ieee80211_master_priv *mpriv = netdev_priv(dev);
133 struct ieee80211_local *local = mpriv->local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700134 struct ieee80211_sub_if_data *sdata;
135
Johannes Berg79010422007-09-18 17:29:21 -0400136 /* we hold the RTNL here so can safely walk the list */
137 list_for_each_entry(sdata, &local->interfaces, list)
Johannes Berg3e122be2008-07-09 14:40:34 +0200138 if (netif_running(sdata->dev))
Jiri Bencf0706e82007-05-05 11:45:53 -0700139 dev_close(sdata->dev);
Jiri Bencf0706e82007-05-05 11:45:53 -0700140
141 return 0;
142}
143
Johannes Berg4150c572007-09-17 01:29:23 -0400144static void ieee80211_master_set_multicast_list(struct net_device *dev)
145{
Johannes Berg133b8222008-09-16 14:18:59 +0200146 struct ieee80211_master_priv *mpriv = netdev_priv(dev);
147 struct ieee80211_local *local = mpriv->local;
Johannes Berg4150c572007-09-17 01:29:23 -0400148
149 ieee80211_configure_filter(local);
150}
151
Johannes Bergb2c258f2007-07-27 15:43:23 +0200152/* everything else */
153
Johannes Berg9d139c82008-07-09 14:40:37 +0200154int ieee80211_if_config(struct ieee80211_sub_if_data *sdata, u32 changed)
Johannes Bergb2c258f2007-07-27 15:43:23 +0200155{
Johannes Berg9d139c82008-07-09 14:40:37 +0200156 struct ieee80211_local *local = sdata->local;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200157 struct ieee80211_if_conf conf;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200158
Johannes Berg9d139c82008-07-09 14:40:37 +0200159 if (WARN_ON(!netif_running(sdata->dev)))
160 return 0;
161
Johannes Berg7a725f72008-09-11 00:02:00 +0200162 if (WARN_ON(sdata->vif.type == NL80211_IFTYPE_AP_VLAN))
163 return -EINVAL;
164
Johannes Berg9d139c82008-07-09 14:40:37 +0200165 if (!local->ops->config_interface)
Johannes Bergb2c258f2007-07-27 15:43:23 +0200166 return 0;
167
168 memset(&conf, 0, sizeof(conf));
Johannes Berg9d139c82008-07-09 14:40:37 +0200169 conf.changed = changed;
170
Johannes Berg05c914f2008-09-11 00:01:58 +0200171 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
172 sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Johannes Berg4150c572007-09-17 01:29:23 -0400173 conf.bssid = sdata->u.sta.bssid;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200174 conf.ssid = sdata->u.sta.ssid;
175 conf.ssid_len = sdata->u.sta.ssid_len;
Johannes Berg05c914f2008-09-11 00:01:58 +0200176 } else if (sdata->vif.type == NL80211_IFTYPE_AP) {
Johannes Berg9d139c82008-07-09 14:40:37 +0200177 conf.bssid = sdata->dev->dev_addr;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200178 conf.ssid = sdata->u.ap.ssid;
179 conf.ssid_len = sdata->u.ap.ssid_len;
Johannes Berg9d139c82008-07-09 14:40:37 +0200180 } else if (ieee80211_vif_is_mesh(&sdata->vif)) {
181 u8 zero[ETH_ALEN] = { 0 };
182 conf.bssid = zero;
183 conf.ssid = zero;
184 conf.ssid_len = 0;
185 } else {
186 WARN_ON(1);
187 return -EINVAL;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200188 }
Johannes Berg9d139c82008-07-09 14:40:37 +0200189
190 if (WARN_ON(!conf.bssid && (changed & IEEE80211_IFCC_BSSID)))
191 return -EINVAL;
192
193 if (WARN_ON(!conf.ssid && (changed & IEEE80211_IFCC_SSID)))
194 return -EINVAL;
195
Johannes Bergb2c258f2007-07-27 15:43:23 +0200196 return local->ops->config_interface(local_to_hw(local),
Johannes Berg32bfd352007-12-19 01:31:26 +0100197 &sdata->vif, &conf);
Johannes Bergb2c258f2007-07-27 15:43:23 +0200198}
199
Johannes Berge8975582008-10-09 12:18:51 +0200200int ieee80211_hw_config(struct ieee80211_local *local, u32 changed)
Johannes Bergb2c258f2007-07-27 15:43:23 +0200201{
Johannes Bergb2c258f2007-07-27 15:43:23 +0200202 struct ieee80211_channel *chan;
203 int ret = 0;
Johannes Berge8975582008-10-09 12:18:51 +0200204 int power;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200205
Johannes Bergcb121ba2008-10-14 16:38:55 +0200206 might_sleep();
207
Johannes Bergc2b13452008-09-11 00:01:55 +0200208 if (local->sw_scanning)
Johannes Bergb2c258f2007-07-27 15:43:23 +0200209 chan = local->scan_channel;
Johannes Berg8318d782008-01-24 19:38:38 +0100210 else
Johannes Bergb2c258f2007-07-27 15:43:23 +0200211 chan = local->oper_channel;
Johannes Bergb2c258f2007-07-27 15:43:23 +0200212
Johannes Berge8975582008-10-09 12:18:51 +0200213 if (chan != local->hw.conf.channel) {
214 local->hw.conf.channel = chan;
215 changed |= IEEE80211_CONF_CHANGE_CHANNEL;
216 }
217
Johannes Berg8318d782008-01-24 19:38:38 +0100218
219 if (!local->hw.conf.power_level)
Johannes Berge8975582008-10-09 12:18:51 +0200220 power = chan->max_power;
Johannes Berg8318d782008-01-24 19:38:38 +0100221 else
Johannes Berge8975582008-10-09 12:18:51 +0200222 power = min(chan->max_power, local->hw.conf.power_level);
223 if (local->hw.conf.power_level != power) {
224 changed |= IEEE80211_CONF_CHANGE_POWER;
225 local->hw.conf.power_level = power;
226 }
Johannes Berg8318d782008-01-24 19:38:38 +0100227
Johannes Berge8975582008-10-09 12:18:51 +0200228 if (changed && local->open_count) {
229 ret = local->ops->config(local_to_hw(local), changed);
Johannes Bergd73782f2008-10-07 12:04:34 +0200230 /*
231 * HW reconfiguration should never fail, the driver has told
232 * us what it can support so it should live up to that promise.
233 */
234 WARN_ON(ret);
235 }
Johannes Bergb2c258f2007-07-27 15:43:23 +0200236
237 return ret;
238}
239
Johannes Berg471b3ef2007-12-28 14:32:58 +0100240void ieee80211_bss_info_change_notify(struct ieee80211_sub_if_data *sdata,
241 u32 changed)
Daniel Draked9430a32007-07-27 15:43:24 +0200242{
Johannes Berg471b3ef2007-12-28 14:32:58 +0100243 struct ieee80211_local *local = sdata->local;
244
Johannes Berg7a725f72008-09-11 00:02:00 +0200245 if (WARN_ON(sdata->vif.type == NL80211_IFTYPE_AP_VLAN))
246 return;
247
Johannes Berg471b3ef2007-12-28 14:32:58 +0100248 if (!changed)
249 return;
250
251 if (local->ops->bss_info_changed)
252 local->ops->bss_info_changed(local_to_hw(local),
253 &sdata->vif,
Johannes Bergbda39332008-10-11 01:51:51 +0200254 &sdata->vif.bss_conf,
Johannes Berg471b3ef2007-12-28 14:32:58 +0100255 changed);
Daniel Draked9430a32007-07-27 15:43:24 +0200256}
257
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200258u32 ieee80211_reset_erp_info(struct ieee80211_sub_if_data *sdata)
Daniel Draked9430a32007-07-27 15:43:24 +0200259{
Johannes Bergbda39332008-10-11 01:51:51 +0200260 sdata->vif.bss_conf.use_cts_prot = false;
261 sdata->vif.bss_conf.use_short_preamble = false;
262 sdata->vif.bss_conf.use_short_slot = false;
Johannes Berg7a5158e2008-10-08 10:59:33 +0200263 return BSS_CHANGED_ERP_CTS_PROT |
264 BSS_CHANGED_ERP_PREAMBLE |
265 BSS_CHANGED_ERP_SLOT;
Daniel Draked9430a32007-07-27 15:43:24 +0200266}
267
Jiri Bencf0706e82007-05-05 11:45:53 -0700268void ieee80211_tx_status_irqsafe(struct ieee80211_hw *hw,
Johannes Berge039fa42008-05-15 12:55:29 +0200269 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700270{
271 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berge039fa42008-05-15 12:55:29 +0200272 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700273 int tmp;
274
275 skb->dev = local->mdev;
Jiri Bencf0706e82007-05-05 11:45:53 -0700276 skb->pkt_type = IEEE80211_TX_STATUS_MSG;
Johannes Berge039fa42008-05-15 12:55:29 +0200277 skb_queue_tail(info->flags & IEEE80211_TX_CTL_REQ_TX_STATUS ?
Jiri Bencf0706e82007-05-05 11:45:53 -0700278 &local->skb_queue : &local->skb_queue_unreliable, skb);
279 tmp = skb_queue_len(&local->skb_queue) +
280 skb_queue_len(&local->skb_queue_unreliable);
281 while (tmp > IEEE80211_IRQSAFE_QUEUE_LIMIT &&
282 (skb = skb_dequeue(&local->skb_queue_unreliable))) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700283 dev_kfree_skb_irq(skb);
284 tmp--;
285 I802_DEBUG_INC(local->tx_status_drop);
286 }
287 tasklet_schedule(&local->tasklet);
288}
289EXPORT_SYMBOL(ieee80211_tx_status_irqsafe);
290
291static void ieee80211_tasklet_handler(unsigned long data)
292{
293 struct ieee80211_local *local = (struct ieee80211_local *) data;
294 struct sk_buff *skb;
295 struct ieee80211_rx_status rx_status;
Ron Rindjunskyeadc8d92008-01-28 14:07:17 +0200296 struct ieee80211_ra_tid *ra_tid;
Jiri Bencf0706e82007-05-05 11:45:53 -0700297
298 while ((skb = skb_dequeue(&local->skb_queue)) ||
299 (skb = skb_dequeue(&local->skb_queue_unreliable))) {
300 switch (skb->pkt_type) {
301 case IEEE80211_RX_MSG:
302 /* status is in skb->cb */
303 memcpy(&rx_status, skb->cb, sizeof(rx_status));
Johannes Berg51fb61e2007-12-19 01:31:27 +0100304 /* Clear skb->pkt_type in order to not confuse kernel
Jiri Bencf0706e82007-05-05 11:45:53 -0700305 * netstack. */
306 skb->pkt_type = 0;
307 __ieee80211_rx(local_to_hw(local), skb, &rx_status);
308 break;
309 case IEEE80211_TX_STATUS_MSG:
Jiri Bencf0706e82007-05-05 11:45:53 -0700310 skb->pkt_type = 0;
Johannes Berge039fa42008-05-15 12:55:29 +0200311 ieee80211_tx_status(local_to_hw(local), skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700312 break;
Ron Rindjunskyeadc8d92008-01-28 14:07:17 +0200313 case IEEE80211_DELBA_MSG:
314 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
315 ieee80211_stop_tx_ba_cb(local_to_hw(local),
316 ra_tid->ra, ra_tid->tid);
317 dev_kfree_skb(skb);
318 break;
319 case IEEE80211_ADDBA_MSG:
320 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
321 ieee80211_start_tx_ba_cb(local_to_hw(local),
322 ra_tid->ra, ra_tid->tid);
323 dev_kfree_skb(skb);
324 break ;
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200325 default:
326 WARN_ON(1);
Jiri Bencf0706e82007-05-05 11:45:53 -0700327 dev_kfree_skb(skb);
328 break;
329 }
330 }
331}
332
Jiri Bencf0706e82007-05-05 11:45:53 -0700333/* Remove added headers (e.g., QoS control), encryption header/MIC, etc. to
334 * make a prepared TX frame (one that has been given to hw) to look like brand
335 * new IEEE 802.11 frame that is ready to go through TX processing again.
Johannes Bergd0f09802008-07-29 11:32:07 +0200336 */
Jiri Bencf0706e82007-05-05 11:45:53 -0700337static void ieee80211_remove_tx_extra(struct ieee80211_local *local,
338 struct ieee80211_key *key,
Johannes Berge039fa42008-05-15 12:55:29 +0200339 struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700340{
Harvey Harrison62bf1d72008-07-15 18:44:05 -0700341 unsigned int hdrlen, iv_len, mic_len;
342 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Jiri Bencf0706e82007-05-05 11:45:53 -0700343
Harvey Harrison62bf1d72008-07-15 18:44:05 -0700344 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Jiri Bencf0706e82007-05-05 11:45:53 -0700345
346 if (!key)
347 goto no_key;
348
Johannes Berg8f20fc22007-08-28 17:01:54 -0400349 switch (key->conf.alg) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700350 case ALG_WEP:
351 iv_len = WEP_IV_LEN;
352 mic_len = WEP_ICV_LEN;
353 break;
354 case ALG_TKIP:
355 iv_len = TKIP_IV_LEN;
356 mic_len = TKIP_ICV_LEN;
357 break;
358 case ALG_CCMP:
359 iv_len = CCMP_HDR_LEN;
360 mic_len = CCMP_MIC_LEN;
361 break;
362 default:
363 goto no_key;
364 }
365
Harvey Harrison62bf1d72008-07-15 18:44:05 -0700366 if (skb->len >= hdrlen + mic_len &&
Johannes Berg11a843b2007-08-28 17:01:55 -0400367 !(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
Jiri Bencf0706e82007-05-05 11:45:53 -0700368 skb_trim(skb, skb->len - mic_len);
Harvey Harrison62bf1d72008-07-15 18:44:05 -0700369 if (skb->len >= hdrlen + iv_len) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700370 memmove(skb->data + iv_len, skb->data, hdrlen);
Harvey Harrison62bf1d72008-07-15 18:44:05 -0700371 hdr = (struct ieee80211_hdr *)skb_pull(skb, iv_len);
Jiri Bencf0706e82007-05-05 11:45:53 -0700372 }
373
374no_key:
Harvey Harrison62bf1d72008-07-15 18:44:05 -0700375 if (ieee80211_is_data_qos(hdr->frame_control)) {
376 hdr->frame_control &= ~cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
377 memmove(skb->data + IEEE80211_QOS_CTL_LEN, skb->data,
378 hdrlen - IEEE80211_QOS_CTL_LEN);
379 skb_pull(skb, IEEE80211_QOS_CTL_LEN);
Jiri Bencf0706e82007-05-05 11:45:53 -0700380 }
381}
382
Johannes Bergd46e1442008-02-20 23:59:33 +0100383static void ieee80211_handle_filtered_frame(struct ieee80211_local *local,
384 struct sta_info *sta,
Johannes Berge039fa42008-05-15 12:55:29 +0200385 struct sk_buff *skb)
Johannes Bergd46e1442008-02-20 23:59:33 +0100386{
Johannes Berge039fa42008-05-15 12:55:29 +0200387 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
388
Johannes Bergd46e1442008-02-20 23:59:33 +0100389 sta->tx_filtered_count++;
390
391 /*
392 * Clear the TX filter mask for this STA when sending the next
393 * packet. If the STA went to power save mode, this will happen
Yi Zhuf6d97102008-05-27 17:50:50 +0300394 * when it wakes up for the next time.
Johannes Bergd46e1442008-02-20 23:59:33 +0100395 */
Johannes Berg07346f812008-05-03 01:02:02 +0200396 set_sta_flags(sta, WLAN_STA_CLEAR_PS_FILT);
Johannes Bergd46e1442008-02-20 23:59:33 +0100397
398 /*
399 * This code races in the following way:
400 *
401 * (1) STA sends frame indicating it will go to sleep and does so
402 * (2) hardware/firmware adds STA to filter list, passes frame up
403 * (3) hardware/firmware processes TX fifo and suppresses a frame
404 * (4) we get TX status before having processed the frame and
405 * knowing that the STA has gone to sleep.
406 *
407 * This is actually quite unlikely even when both those events are
408 * processed from interrupts coming in quickly after one another or
409 * even at the same time because we queue both TX status events and
410 * RX frames to be processed by a tasklet and process them in the
411 * same order that they were received or TX status last. Hence, there
412 * is no race as long as the frame RX is processed before the next TX
413 * status, which drivers can ensure, see below.
414 *
415 * Note that this can only happen if the hardware or firmware can
416 * actually add STAs to the filter list, if this is done by the
417 * driver in response to set_tim() (which will only reduce the race
418 * this whole filtering tries to solve, not completely solve it)
419 * this situation cannot happen.
420 *
421 * To completely solve this race drivers need to make sure that they
422 * (a) don't mix the irq-safe/not irq-safe TX status/RX processing
423 * functions and
424 * (b) always process RX events before TX status events if ordering
425 * can be unknown, for example with different interrupt status
426 * bits.
427 */
Johannes Berg07346f812008-05-03 01:02:02 +0200428 if (test_sta_flags(sta, WLAN_STA_PS) &&
Johannes Bergd46e1442008-02-20 23:59:33 +0100429 skb_queue_len(&sta->tx_filtered) < STA_MAX_TX_BUFFER) {
Johannes Berge039fa42008-05-15 12:55:29 +0200430 ieee80211_remove_tx_extra(local, sta->key, skb);
Johannes Bergd46e1442008-02-20 23:59:33 +0100431 skb_queue_tail(&sta->tx_filtered, skb);
432 return;
433 }
434
Johannes Berg07346f812008-05-03 01:02:02 +0200435 if (!test_sta_flags(sta, WLAN_STA_PS) &&
Johannes Berge039fa42008-05-15 12:55:29 +0200436 !(info->flags & IEEE80211_TX_CTL_REQUEUE)) {
Johannes Bergd46e1442008-02-20 23:59:33 +0100437 /* Software retry the packet once */
Johannes Berge039fa42008-05-15 12:55:29 +0200438 info->flags |= IEEE80211_TX_CTL_REQUEUE;
439 ieee80211_remove_tx_extra(local, sta->key, skb);
Johannes Bergd46e1442008-02-20 23:59:33 +0100440 dev_queue_xmit(skb);
441 return;
442 }
443
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200444#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Bergd46e1442008-02-20 23:59:33 +0100445 if (net_ratelimit())
446 printk(KERN_DEBUG "%s: dropped TX filtered frame, "
447 "queue_len=%d PS=%d @%lu\n",
448 wiphy_name(local->hw.wiphy),
449 skb_queue_len(&sta->tx_filtered),
Johannes Berg07346f812008-05-03 01:02:02 +0200450 !!test_sta_flags(sta, WLAN_STA_PS), jiffies);
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200451#endif
Johannes Bergd46e1442008-02-20 23:59:33 +0100452 dev_kfree_skb(skb);
453}
454
Johannes Berge039fa42008-05-15 12:55:29 +0200455void ieee80211_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb)
Jiri Bencf0706e82007-05-05 11:45:53 -0700456{
457 struct sk_buff *skb2;
458 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
459 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berge039fa42008-05-15 12:55:29 +0200460 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700461 u16 frag, type;
Ron Rindjunsky429a3802008-07-01 14:16:03 +0300462 __le16 fc;
Johannes Berg4b7679a2008-09-18 18:14:18 +0200463 struct ieee80211_supported_band *sband;
Johannes Bergb306f452007-07-10 19:32:08 +0200464 struct ieee80211_tx_status_rtap_hdr *rthdr;
465 struct ieee80211_sub_if_data *sdata;
Michael Wu3d30d942008-01-31 19:48:27 +0100466 struct net_device *prev_dev = NULL;
Ron Rindjunsky429a3802008-07-01 14:16:03 +0300467 struct sta_info *sta;
Jiri Bencf0706e82007-05-05 11:45:53 -0700468
Johannes Bergd0709a62008-02-25 16:27:46 +0100469 rcu_read_lock();
470
Johannes Berg95dac0402008-09-11 02:03:28 +0200471 sta = sta_info_get(local, hdr->addr1);
472
473 if (sta) {
474 if (info->status.excessive_retries &&
475 test_sta_flags(sta, WLAN_STA_PS)) {
476 /*
477 * The STA is in power save mode, so assume
478 * that this TX packet failed because of that.
479 */
480 ieee80211_handle_filtered_frame(local, sta, skb);
481 rcu_read_unlock();
482 return;
Jiri Bencf0706e82007-05-05 11:45:53 -0700483 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700484
Johannes Berg95dac0402008-09-11 02:03:28 +0200485 fc = hdr->frame_control;
Ron Rindjunsky429a3802008-07-01 14:16:03 +0300486
Johannes Berg95dac0402008-09-11 02:03:28 +0200487 if ((info->flags & IEEE80211_TX_STAT_AMPDU_NO_BACK) &&
488 (ieee80211_is_data_qos(fc))) {
489 u16 tid, ssn;
490 u8 *qc;
491
Ron Rindjunsky429a3802008-07-01 14:16:03 +0300492 qc = ieee80211_get_qos_ctl(hdr);
493 tid = qc[0] & 0xf;
494 ssn = ((le16_to_cpu(hdr->seq_ctrl) + 0x10)
495 & IEEE80211_SCTL_SEQ);
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200496 ieee80211_send_bar(sta->sdata, hdr->addr1,
Ron Rindjunsky429a3802008-07-01 14:16:03 +0300497 tid, ssn);
498 }
Ron Rindjunsky429a3802008-07-01 14:16:03 +0300499
Johannes Berg95dac0402008-09-11 02:03:28 +0200500 if (info->flags & IEEE80211_TX_STAT_TX_FILTERED) {
Johannes Berge039fa42008-05-15 12:55:29 +0200501 ieee80211_handle_filtered_frame(local, sta, skb);
Johannes Bergd0709a62008-02-25 16:27:46 +0100502 rcu_read_unlock();
Jiri Bencf0706e82007-05-05 11:45:53 -0700503 return;
Johannes Berg95dac0402008-09-11 02:03:28 +0200504 } else {
505 if (info->status.excessive_retries)
506 sta->tx_retry_failed++;
507 sta->tx_retry_count += info->status.retry_count;
Jiri Bencf0706e82007-05-05 11:45:53 -0700508 }
Johannes Berg95dac0402008-09-11 02:03:28 +0200509
Johannes Berg4b7679a2008-09-18 18:14:18 +0200510 sband = local->hw.wiphy->bands[info->band];
511 rate_control_tx_status(local, sband, sta, skb);
Johannes Berg95dac0402008-09-11 02:03:28 +0200512 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700513
Johannes Bergd0709a62008-02-25 16:27:46 +0100514 rcu_read_unlock();
515
Jiri Bencf0706e82007-05-05 11:45:53 -0700516 ieee80211_led_tx(local, 0);
517
518 /* SNMP counters
519 * Fragments are passed to low-level drivers as separate skbs, so these
520 * are actually fragments, not frames. Update frame counters only for
521 * the first fragment of the frame. */
522
523 frag = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG;
524 type = le16_to_cpu(hdr->frame_control) & IEEE80211_FCTL_FTYPE;
525
Johannes Berge039fa42008-05-15 12:55:29 +0200526 if (info->flags & IEEE80211_TX_STAT_ACK) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700527 if (frag == 0) {
528 local->dot11TransmittedFrameCount++;
529 if (is_multicast_ether_addr(hdr->addr1))
530 local->dot11MulticastTransmittedFrameCount++;
Johannes Berge039fa42008-05-15 12:55:29 +0200531 if (info->status.retry_count > 0)
Jiri Bencf0706e82007-05-05 11:45:53 -0700532 local->dot11RetryCount++;
Johannes Berge039fa42008-05-15 12:55:29 +0200533 if (info->status.retry_count > 1)
Jiri Bencf0706e82007-05-05 11:45:53 -0700534 local->dot11MultipleRetryCount++;
535 }
536
537 /* This counter shall be incremented for an acknowledged MPDU
538 * with an individual address in the address 1 field or an MPDU
539 * with a multicast address in the address 1 field of type Data
540 * or Management. */
541 if (!is_multicast_ether_addr(hdr->addr1) ||
542 type == IEEE80211_FTYPE_DATA ||
543 type == IEEE80211_FTYPE_MGMT)
544 local->dot11TransmittedFragmentCount++;
545 } else {
546 if (frag == 0)
547 local->dot11FailedCount++;
548 }
549
Johannes Bergb306f452007-07-10 19:32:08 +0200550 /* this was a transmitted frame, but now we want to reuse it */
551 skb_orphan(skb);
552
Michael Wu3d30d942008-01-31 19:48:27 +0100553 /*
554 * This is a bit racy but we can avoid a lot of work
555 * with this test...
556 */
557 if (!local->monitors && !local->cooked_mntrs) {
Jiri Bencf0706e82007-05-05 11:45:53 -0700558 dev_kfree_skb(skb);
559 return;
560 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700561
Johannes Bergb306f452007-07-10 19:32:08 +0200562 /* send frame to monitor interfaces now */
563
564 if (skb_headroom(skb) < sizeof(*rthdr)) {
565 printk(KERN_ERR "ieee80211_tx_status: headroom too small\n");
566 dev_kfree_skb(skb);
567 return;
568 }
569
Johannes Berg988c0f72008-04-17 19:21:22 +0200570 rthdr = (struct ieee80211_tx_status_rtap_hdr *)
Johannes Bergb306f452007-07-10 19:32:08 +0200571 skb_push(skb, sizeof(*rthdr));
572
573 memset(rthdr, 0, sizeof(*rthdr));
574 rthdr->hdr.it_len = cpu_to_le16(sizeof(*rthdr));
575 rthdr->hdr.it_present =
576 cpu_to_le32((1 << IEEE80211_RADIOTAP_TX_FLAGS) |
577 (1 << IEEE80211_RADIOTAP_DATA_RETRIES));
578
Johannes Berge039fa42008-05-15 12:55:29 +0200579 if (!(info->flags & IEEE80211_TX_STAT_ACK) &&
Johannes Bergb306f452007-07-10 19:32:08 +0200580 !is_multicast_ether_addr(hdr->addr1))
581 rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_FAIL);
582
Johannes Berge039fa42008-05-15 12:55:29 +0200583 if ((info->flags & IEEE80211_TX_CTL_USE_RTS_CTS) &&
584 (info->flags & IEEE80211_TX_CTL_USE_CTS_PROTECT))
Johannes Bergb306f452007-07-10 19:32:08 +0200585 rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_CTS);
Johannes Berge039fa42008-05-15 12:55:29 +0200586 else if (info->flags & IEEE80211_TX_CTL_USE_RTS_CTS)
Johannes Bergb306f452007-07-10 19:32:08 +0200587 rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_RTS);
588
Johannes Berge039fa42008-05-15 12:55:29 +0200589 rthdr->data_retries = info->status.retry_count;
Johannes Bergb306f452007-07-10 19:32:08 +0200590
Michael Wu3d30d942008-01-31 19:48:27 +0100591 /* XXX: is this sufficient for BPF? */
592 skb_set_mac_header(skb, 0);
593 skb->ip_summed = CHECKSUM_UNNECESSARY;
594 skb->pkt_type = PACKET_OTHERHOST;
595 skb->protocol = htons(ETH_P_802_2);
596 memset(skb->cb, 0, sizeof(skb->cb));
Johannes Bergb306f452007-07-10 19:32:08 +0200597
Michael Wu3d30d942008-01-31 19:48:27 +0100598 rcu_read_lock();
599 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Johannes Berg05c914f2008-09-11 00:01:58 +0200600 if (sdata->vif.type == NL80211_IFTYPE_MONITOR) {
Johannes Bergb306f452007-07-10 19:32:08 +0200601 if (!netif_running(sdata->dev))
602 continue;
Michael Wu3d30d942008-01-31 19:48:27 +0100603
604 if (prev_dev) {
Johannes Berg79010422007-09-18 17:29:21 -0400605 skb2 = skb_clone(skb, GFP_ATOMIC);
Michael Wu3d30d942008-01-31 19:48:27 +0100606 if (skb2) {
607 skb2->dev = prev_dev;
608 netif_rx(skb2);
609 }
610 }
611
612 prev_dev = sdata->dev;
Johannes Bergb306f452007-07-10 19:32:08 +0200613 }
614 }
Michael Wu3d30d942008-01-31 19:48:27 +0100615 if (prev_dev) {
616 skb->dev = prev_dev;
617 netif_rx(skb);
618 skb = NULL;
619 }
Johannes Berg79010422007-09-18 17:29:21 -0400620 rcu_read_unlock();
Michael Wu3d30d942008-01-31 19:48:27 +0100621 dev_kfree_skb(skb);
Jiri Bencf0706e82007-05-05 11:45:53 -0700622}
623EXPORT_SYMBOL(ieee80211_tx_status);
624
Jiri Bencf0706e82007-05-05 11:45:53 -0700625struct ieee80211_hw *ieee80211_alloc_hw(size_t priv_data_len,
626 const struct ieee80211_ops *ops)
627{
Jiri Bencf0706e82007-05-05 11:45:53 -0700628 struct ieee80211_local *local;
Jiri Bencf0706e82007-05-05 11:45:53 -0700629 int priv_size;
630 struct wiphy *wiphy;
631
632 /* Ensure 32-byte alignment of our private data and hw private data.
633 * We use the wiphy priv data for both our ieee80211_local and for
634 * the driver's private data
635 *
636 * In memory it'll be like this:
637 *
638 * +-------------------------+
639 * | struct wiphy |
640 * +-------------------------+
641 * | struct ieee80211_local |
642 * +-------------------------+
643 * | driver's private data |
644 * +-------------------------+
645 *
646 */
647 priv_size = ((sizeof(struct ieee80211_local) +
648 NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST) +
649 priv_data_len;
650
651 wiphy = wiphy_new(&mac80211_config_ops, priv_size);
652
653 if (!wiphy)
654 return NULL;
655
656 wiphy->privid = mac80211_wiphy_privid;
657
658 local = wiphy_priv(wiphy);
659 local->hw.wiphy = wiphy;
660
661 local->hw.priv = (char *)local +
662 ((sizeof(struct ieee80211_local) +
663 NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST);
664
Johannes Berg4480f15c2007-07-10 19:32:10 +0200665 BUG_ON(!ops->tx);
Johannes Berg4150c572007-09-17 01:29:23 -0400666 BUG_ON(!ops->start);
667 BUG_ON(!ops->stop);
Johannes Berg4480f15c2007-07-10 19:32:10 +0200668 BUG_ON(!ops->config);
669 BUG_ON(!ops->add_interface);
Johannes Berg4150c572007-09-17 01:29:23 -0400670 BUG_ON(!ops->remove_interface);
671 BUG_ON(!ops->configure_filter);
Jiri Bencf0706e82007-05-05 11:45:53 -0700672 local->ops = ops;
673
Jiri Bencf0706e82007-05-05 11:45:53 -0700674 local->hw.queues = 1; /* default */
675
Jiri Bencf0706e82007-05-05 11:45:53 -0700676 local->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
677 local->fragmentation_threshold = IEEE80211_MAX_FRAG_THRESHOLD;
Johannes Berg9124b072008-10-14 19:17:54 +0200678 local->hw.conf.long_frame_max_tx_count = 4;
679 local->hw.conf.short_frame_max_tx_count = 7;
Johannes Berge8975582008-10-09 12:18:51 +0200680 local->hw.conf.radio_enabled = true;
Jiri Bencf0706e82007-05-05 11:45:53 -0700681
Johannes Berg79010422007-09-18 17:29:21 -0400682 INIT_LIST_HEAD(&local->interfaces);
Jiri Bencf0706e82007-05-05 11:45:53 -0700683
Johannes Bergb16bd152008-04-11 21:40:35 +0200684 spin_lock_init(&local->key_lock);
685
Johannes Bergc2b13452008-09-11 00:01:55 +0200686 INIT_DELAYED_WORK(&local->scan_work, ieee80211_scan_work);
Jiri Bencf0706e82007-05-05 11:45:53 -0700687
688 sta_info_init(local);
689
Jiri Bencf0706e82007-05-05 11:45:53 -0700690 tasklet_init(&local->tx_pending_tasklet, ieee80211_tx_pending,
691 (unsigned long)local);
692 tasklet_disable(&local->tx_pending_tasklet);
693
694 tasklet_init(&local->tasklet,
695 ieee80211_tasklet_handler,
696 (unsigned long) local);
697 tasklet_disable(&local->tasklet);
698
699 skb_queue_head_init(&local->skb_queue);
700 skb_queue_head_init(&local->skb_queue_unreliable);
701
702 return local_to_hw(local);
703}
704EXPORT_SYMBOL(ieee80211_alloc_hw);
705
706int ieee80211_register_hw(struct ieee80211_hw *hw)
707{
708 struct ieee80211_local *local = hw_to_local(hw);
709 const char *name;
710 int result;
Johannes Berg8318d782008-01-24 19:38:38 +0100711 enum ieee80211_band band;
Johannes Berg96d51052008-02-08 09:48:13 +0100712 struct net_device *mdev;
Johannes Berg133b8222008-09-16 14:18:59 +0200713 struct ieee80211_master_priv *mpriv;
Johannes Berg8318d782008-01-24 19:38:38 +0100714
715 /*
716 * generic code guarantees at least one band,
717 * set this very early because much code assumes
718 * that hw.conf.channel is assigned
719 */
720 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
721 struct ieee80211_supported_band *sband;
722
723 sband = local->hw.wiphy->bands[band];
724 if (sband) {
725 /* init channel we're on */
726 local->hw.conf.channel =
727 local->oper_channel =
728 local->scan_channel = &sband->channels[0];
729 break;
730 }
731 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700732
Luis R. Rodriguezf59ac042008-08-29 16:26:43 -0700733 /* if low-level driver supports AP, we also support VLAN */
734 if (local->hw.wiphy->interface_modes & BIT(NL80211_IFTYPE_AP))
735 local->hw.wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP_VLAN);
736
737 /* mac80211 always supports monitor */
738 local->hw.wiphy->interface_modes |= BIT(NL80211_IFTYPE_MONITOR);
739
Jiri Bencf0706e82007-05-05 11:45:53 -0700740 result = wiphy_register(local->hw.wiphy);
741 if (result < 0)
742 return result;
743
Johannes Berge2530082008-05-17 00:57:14 +0200744 /*
745 * We use the number of queues for feature tests (QoS, HT) internally
746 * so restrict them appropriately.
747 */
Johannes Berge2530082008-05-17 00:57:14 +0200748 if (hw->queues > IEEE80211_MAX_QUEUES)
749 hw->queues = IEEE80211_MAX_QUEUES;
750 if (hw->ampdu_queues > IEEE80211_MAX_AMPDU_QUEUES)
751 hw->ampdu_queues = IEEE80211_MAX_AMPDU_QUEUES;
752 if (hw->queues < 4)
753 hw->ampdu_queues = 0;
Johannes Berge2530082008-05-17 00:57:14 +0200754
Johannes Berg133b8222008-09-16 14:18:59 +0200755 mdev = alloc_netdev_mq(sizeof(struct ieee80211_master_priv),
Johannes Berge2530082008-05-17 00:57:14 +0200756 "wmaster%d", ether_setup,
757 ieee80211_num_queues(hw));
Johannes Berg96d51052008-02-08 09:48:13 +0100758 if (!mdev)
759 goto fail_mdev_alloc;
760
Johannes Berg133b8222008-09-16 14:18:59 +0200761 mpriv = netdev_priv(mdev);
762 mpriv->local = local;
Johannes Berg96d51052008-02-08 09:48:13 +0100763 local->mdev = mdev;
764
Johannes Berg3e122be2008-07-09 14:40:34 +0200765 ieee80211_rx_bss_list_init(local);
Johannes Berg96d51052008-02-08 09:48:13 +0100766
767 mdev->hard_start_xmit = ieee80211_master_start_xmit;
768 mdev->open = ieee80211_master_open;
769 mdev->stop = ieee80211_master_stop;
770 mdev->type = ARPHRD_IEEE80211;
771 mdev->header_ops = &ieee80211_header_ops;
772 mdev->set_multicast_list = ieee80211_master_set_multicast_list;
773
Jiri Bencf0706e82007-05-05 11:45:53 -0700774 name = wiphy_dev(local->hw.wiphy)->driver->name;
Johannes Berg59959a62008-06-26 19:59:56 +0200775 local->hw.workqueue = create_freezeable_workqueue(name);
Jiri Bencf0706e82007-05-05 11:45:53 -0700776 if (!local->hw.workqueue) {
777 result = -ENOMEM;
778 goto fail_workqueue;
779 }
780
Johannes Bergb306f452007-07-10 19:32:08 +0200781 /*
782 * The hardware needs headroom for sending the frame,
783 * and we need some headroom for passing the frame to monitor
784 * interfaces, but never both at the same time.
785 */
Jiri Benc33ccad32007-07-18 17:10:44 +0200786 local->tx_headroom = max_t(unsigned int , local->hw.extra_tx_headroom,
787 sizeof(struct ieee80211_tx_status_rtap_hdr));
Johannes Bergb306f452007-07-10 19:32:08 +0200788
Jiri Bence9f207f2007-05-05 11:46:38 -0700789 debugfs_hw_add(local);
790
Tomas Winklerdc0ae302008-06-12 22:38:37 +0300791 if (local->hw.conf.beacon_int < 10)
792 local->hw.conf.beacon_int = 100;
Jiri Bencf0706e82007-05-05 11:45:53 -0700793
Tomas Winklerea95bba2008-07-18 13:53:00 +0800794 if (local->hw.max_listen_interval == 0)
795 local->hw.max_listen_interval = 1;
796
797 local->hw.conf.listen_interval = local->hw.max_listen_interval;
798
Bruno Randolf566bfe52008-05-08 19:15:40 +0200799 local->wstats_flags |= local->hw.flags & (IEEE80211_HW_SIGNAL_UNSPEC |
800 IEEE80211_HW_SIGNAL_DB |
801 IEEE80211_HW_SIGNAL_DBM) ?
Jiri Bencf0706e82007-05-05 11:45:53 -0700802 IW_QUAL_QUAL_UPDATED : IW_QUAL_QUAL_INVALID;
Bruno Randolf566bfe52008-05-08 19:15:40 +0200803 local->wstats_flags |= local->hw.flags & IEEE80211_HW_NOISE_DBM ?
Jiri Bencf0706e82007-05-05 11:45:53 -0700804 IW_QUAL_NOISE_UPDATED : IW_QUAL_NOISE_INVALID;
Bruno Randolf566bfe52008-05-08 19:15:40 +0200805 if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM)
Jiri Bencf0706e82007-05-05 11:45:53 -0700806 local->wstats_flags |= IW_QUAL_DBM;
807
808 result = sta_info_start(local);
809 if (result < 0)
810 goto fail_sta_info;
811
812 rtnl_lock();
813 result = dev_alloc_name(local->mdev, local->mdev->name);
814 if (result < 0)
815 goto fail_dev;
816
817 memcpy(local->mdev->dev_addr, local->hw.wiphy->perm_addr, ETH_ALEN);
818 SET_NETDEV_DEV(local->mdev, wiphy_dev(local->hw.wiphy));
819
820 result = register_netdevice(local->mdev);
821 if (result < 0)
822 goto fail_dev;
823
Johannes Berg830f9032007-10-28 14:51:05 +0100824 result = ieee80211_init_rate_ctrl_alg(local,
825 hw->rate_control_algorithm);
Jiri Bencf0706e82007-05-05 11:45:53 -0700826 if (result < 0) {
827 printk(KERN_DEBUG "%s: Failed to initialize rate control "
Johannes Bergdd1cd4c2007-09-18 17:29:20 -0400828 "algorithm\n", wiphy_name(local->hw.wiphy));
Jiri Bencf0706e82007-05-05 11:45:53 -0700829 goto fail_rate;
830 }
831
832 result = ieee80211_wep_init(local);
833
834 if (result < 0) {
Jeremy Fitzhardinge023a04b2008-07-14 12:52:08 -0700835 printk(KERN_DEBUG "%s: Failed to initialize wep: %d\n",
836 wiphy_name(local->hw.wiphy), result);
Jiri Bencf0706e82007-05-05 11:45:53 -0700837 goto fail_wep;
838 }
839
David S. Miller51cb6db2008-07-15 03:34:57 -0700840 local->mdev->select_queue = ieee80211_select_queue;
Jiri Bencf0706e82007-05-05 11:45:53 -0700841
842 /* add one default STA interface */
Johannes Berg3e122be2008-07-09 14:40:34 +0200843 result = ieee80211_if_add(local, "wlan%d", NULL,
Johannes Berg05c914f2008-09-11 00:01:58 +0200844 NL80211_IFTYPE_STATION, NULL);
Jiri Bencf0706e82007-05-05 11:45:53 -0700845 if (result)
846 printk(KERN_WARNING "%s: Failed to add default virtual iface\n",
Johannes Bergdd1cd4c2007-09-18 17:29:20 -0400847 wiphy_name(local->hw.wiphy));
Jiri Bencf0706e82007-05-05 11:45:53 -0700848
Jiri Bencf0706e82007-05-05 11:45:53 -0700849 rtnl_unlock();
850
851 ieee80211_led_init(local);
852
853 return 0;
854
855fail_wep:
856 rate_control_deinitialize(local);
857fail_rate:
858 unregister_netdevice(local->mdev);
Pavel Emelyanov339a7c42008-05-04 17:59:30 -0700859 local->mdev = NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700860fail_dev:
861 rtnl_unlock();
862 sta_info_stop(local);
863fail_sta_info:
Jiri Bence9f207f2007-05-05 11:46:38 -0700864 debugfs_hw_del(local);
Jiri Bencf0706e82007-05-05 11:45:53 -0700865 destroy_workqueue(local->hw.workqueue);
866fail_workqueue:
Johannes Berg3e122be2008-07-09 14:40:34 +0200867 if (local->mdev)
868 free_netdev(local->mdev);
Johannes Berg96d51052008-02-08 09:48:13 +0100869fail_mdev_alloc:
Jiri Bencf0706e82007-05-05 11:45:53 -0700870 wiphy_unregister(local->hw.wiphy);
871 return result;
872}
873EXPORT_SYMBOL(ieee80211_register_hw);
874
Jiri Bencf0706e82007-05-05 11:45:53 -0700875void ieee80211_unregister_hw(struct ieee80211_hw *hw)
876{
877 struct ieee80211_local *local = hw_to_local(hw);
Jiri Bencf0706e82007-05-05 11:45:53 -0700878
879 tasklet_kill(&local->tx_pending_tasklet);
880 tasklet_kill(&local->tasklet);
881
882 rtnl_lock();
883
Johannes Berg79010422007-09-18 17:29:21 -0400884 /*
885 * At this point, interface list manipulations are fine
886 * because the driver cannot be handing us frames any
887 * more and the tasklet is killed.
888 */
Johannes Berg5b2812e2007-09-26 14:27:23 +0200889
Johannes Berg75636522008-07-09 14:40:35 +0200890 /* First, we remove all virtual interfaces. */
891 ieee80211_remove_interfaces(local);
Johannes Berg5b2812e2007-09-26 14:27:23 +0200892
893 /* then, finally, remove the master interface */
Johannes Berg3e122be2008-07-09 14:40:34 +0200894 unregister_netdevice(local->mdev);
Jiri Bencf0706e82007-05-05 11:45:53 -0700895
896 rtnl_unlock();
897
Johannes Berg3e122be2008-07-09 14:40:34 +0200898 ieee80211_rx_bss_list_deinit(local);
Jiri Bencf0706e82007-05-05 11:45:53 -0700899 ieee80211_clear_tx_pending(local);
900 sta_info_stop(local);
901 rate_control_deinitialize(local);
Jiri Bence9f207f2007-05-05 11:46:38 -0700902 debugfs_hw_del(local);
Jiri Bencf0706e82007-05-05 11:45:53 -0700903
Jiri Bencf0706e82007-05-05 11:45:53 -0700904 if (skb_queue_len(&local->skb_queue)
905 || skb_queue_len(&local->skb_queue_unreliable))
906 printk(KERN_WARNING "%s: skb_queue not empty\n",
Johannes Bergdd1cd4c2007-09-18 17:29:20 -0400907 wiphy_name(local->hw.wiphy));
Jiri Bencf0706e82007-05-05 11:45:53 -0700908 skb_queue_purge(&local->skb_queue);
909 skb_queue_purge(&local->skb_queue_unreliable);
910
911 destroy_workqueue(local->hw.workqueue);
912 wiphy_unregister(local->hw.wiphy);
913 ieee80211_wep_free(local);
914 ieee80211_led_exit(local);
Johannes Berg3e122be2008-07-09 14:40:34 +0200915 free_netdev(local->mdev);
Jiri Bencf0706e82007-05-05 11:45:53 -0700916}
917EXPORT_SYMBOL(ieee80211_unregister_hw);
918
919void ieee80211_free_hw(struct ieee80211_hw *hw)
920{
921 struct ieee80211_local *local = hw_to_local(hw);
922
Jiri Bencf0706e82007-05-05 11:45:53 -0700923 wiphy_free(local->hw.wiphy);
924}
925EXPORT_SYMBOL(ieee80211_free_hw);
926
Jiri Bencf0706e82007-05-05 11:45:53 -0700927static int __init ieee80211_init(void)
928{
929 struct sk_buff *skb;
930 int ret;
931
Johannes Berge039fa42008-05-15 12:55:29 +0200932 BUILD_BUG_ON(sizeof(struct ieee80211_tx_info) > sizeof(skb->cb));
933 BUILD_BUG_ON(offsetof(struct ieee80211_tx_info, driver_data) +
Johannes Bergc6a1fa12008-10-07 12:04:32 +0200934 IEEE80211_TX_INFO_DRIVER_DATA_SIZE > sizeof(skb->cb));
Jiri Bencf0706e82007-05-05 11:45:53 -0700935
Felix Fietkaucccf1292008-10-05 18:07:45 +0200936 ret = rc80211_minstrel_init();
937 if (ret)
938 return ret;
939
Johannes Berg4b475892008-01-02 15:17:03 +0100940 ret = rc80211_pid_init();
Mattias Nisslerad018372007-12-19 01:25:57 +0100941 if (ret)
David S. Miller51cb6db2008-07-15 03:34:57 -0700942 return ret;
Jiri Bencf0706e82007-05-05 11:45:53 -0700943
Jiri Bence9f207f2007-05-05 11:46:38 -0700944 ieee80211_debugfs_netdev_init();
945
Jiri Bencf0706e82007-05-05 11:45:53 -0700946 return 0;
947}
948
Jiri Bencf0706e82007-05-05 11:45:53 -0700949static void __exit ieee80211_exit(void)
950{
Johannes Berg4b475892008-01-02 15:17:03 +0100951 rc80211_pid_exit();
Felix Fietkaucccf1292008-10-05 18:07:45 +0200952 rc80211_minstrel_exit();
Johannes Bergac71c692007-10-28 14:17:44 +0100953
Johannes Berg3b967662008-04-08 17:56:52 +0200954 /*
955 * For key todo, it'll be empty by now but the work
956 * might still be scheduled.
957 */
958 flush_scheduled_work();
959
Luis Carlos Cobof7a92142008-02-23 15:17:18 +0100960 if (mesh_allocated)
961 ieee80211s_stop();
Johannes Berg902acc72008-02-23 15:17:19 +0100962
Jiri Bence9f207f2007-05-05 11:46:38 -0700963 ieee80211_debugfs_netdev_exit();
Jiri Bencf0706e82007-05-05 11:45:53 -0700964}
965
966
Johannes Bergca9938f2007-09-11 12:50:32 +0200967subsys_initcall(ieee80211_init);
Jiri Bencf0706e82007-05-05 11:45:53 -0700968module_exit(ieee80211_exit);
969
970MODULE_DESCRIPTION("IEEE 802.11 subsystem");
971MODULE_LICENSE("GPL");