2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
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.
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>
23 #include <linux/bitmap.h>
24 #include <net/net_namespace.h>
25 #include <net/cfg80211.h>
27 #include "ieee80211_i.h"
36 #include "debugfs_netdev.h"
39 * For seeing transmitted packets on monitor interfaces
40 * we have a radiotap header too.
42 struct ieee80211_tx_status_rtap_hdr {
43 struct ieee80211_radiotap_header hdr;
48 } __attribute__ ((packed));
51 /* must be called under mdev tx lock */
52 void ieee80211_configure_filter(struct ieee80211_local *local)
54 unsigned int changed_flags;
55 unsigned int new_flags = 0;
57 if (atomic_read(&local->iff_promiscs))
58 new_flags |= FIF_PROMISC_IN_BSS;
60 if (atomic_read(&local->iff_allmultis))
61 new_flags |= FIF_ALLMULTI;
64 new_flags |= FIF_BCN_PRBRESP_PROMISC;
66 if (local->fif_fcsfail)
67 new_flags |= FIF_FCSFAIL;
69 if (local->fif_plcpfail)
70 new_flags |= FIF_PLCPFAIL;
72 if (local->fif_control)
73 new_flags |= FIF_CONTROL;
75 if (local->fif_other_bss)
76 new_flags |= FIF_OTHER_BSS;
78 changed_flags = local->filter_flags ^ new_flags;
83 local->ops->configure_filter(local_to_hw(local),
84 changed_flags, &new_flags,
85 local->mdev->mc_count,
86 local->mdev->mc_list);
88 WARN_ON(new_flags & (1<<31));
90 local->filter_flags = new_flags & ~(1<<31);
93 /* master interface */
95 static int header_parse_80211(const struct sk_buff *skb, unsigned char *haddr)
97 memcpy(haddr, skb_mac_header(skb) + 10, ETH_ALEN); /* addr2 */
101 static const struct header_ops ieee80211_header_ops = {
102 .create = eth_header,
103 .parse = header_parse_80211,
104 .rebuild = eth_rebuild_header,
105 .cache = eth_header_cache,
106 .cache_update = eth_header_cache_update,
109 static int ieee80211_master_open(struct net_device *dev)
111 struct ieee80211_master_priv *mpriv = netdev_priv(dev);
112 struct ieee80211_local *local = mpriv->local;
113 struct ieee80211_sub_if_data *sdata;
114 int res = -EOPNOTSUPP;
116 /* we hold the RTNL here so can safely walk the list */
117 list_for_each_entry(sdata, &local->interfaces, list) {
118 if (netif_running(sdata->dev)) {
127 netif_tx_start_all_queues(local->mdev);
132 static int ieee80211_master_stop(struct net_device *dev)
134 struct ieee80211_master_priv *mpriv = netdev_priv(dev);
135 struct ieee80211_local *local = mpriv->local;
136 struct ieee80211_sub_if_data *sdata;
138 /* we hold the RTNL here so can safely walk the list */
139 list_for_each_entry(sdata, &local->interfaces, list)
140 if (netif_running(sdata->dev))
141 dev_close(sdata->dev);
146 static void ieee80211_master_set_multicast_list(struct net_device *dev)
148 struct ieee80211_master_priv *mpriv = netdev_priv(dev);
149 struct ieee80211_local *local = mpriv->local;
151 ieee80211_configure_filter(local);
154 /* everything else */
156 int ieee80211_if_config(struct ieee80211_sub_if_data *sdata, u32 changed)
158 struct ieee80211_local *local = sdata->local;
159 struct ieee80211_if_conf conf;
161 if (WARN_ON(!netif_running(sdata->dev)))
164 if (WARN_ON(sdata->vif.type == NL80211_IFTYPE_AP_VLAN))
167 if (!local->ops->config_interface)
170 memset(&conf, 0, sizeof(conf));
171 conf.changed = changed;
173 if (sdata->vif.type == NL80211_IFTYPE_STATION ||
174 sdata->vif.type == NL80211_IFTYPE_ADHOC)
175 conf.bssid = sdata->u.sta.bssid;
176 else if (sdata->vif.type == NL80211_IFTYPE_AP)
177 conf.bssid = sdata->dev->dev_addr;
178 else if (ieee80211_vif_is_mesh(&sdata->vif)) {
179 u8 zero[ETH_ALEN] = { 0 };
186 if (WARN_ON(!conf.bssid && (changed & IEEE80211_IFCC_BSSID)))
189 return local->ops->config_interface(local_to_hw(local),
193 int ieee80211_hw_config(struct ieee80211_local *local, u32 changed)
195 struct ieee80211_channel *chan;
201 if (local->sw_scanning)
202 chan = local->scan_channel;
204 chan = local->oper_channel;
206 if (chan != local->hw.conf.channel) {
207 local->hw.conf.channel = chan;
208 changed |= IEEE80211_CONF_CHANGE_CHANNEL;
212 if (!local->hw.conf.power_level)
213 power = chan->max_power;
215 power = min(chan->max_power, local->hw.conf.power_level);
216 if (local->hw.conf.power_level != power) {
217 changed |= IEEE80211_CONF_CHANGE_POWER;
218 local->hw.conf.power_level = power;
221 if (changed && local->open_count) {
222 ret = local->ops->config(local_to_hw(local), changed);
224 * HW reconfiguration should never fail, the driver has told
225 * us what it can support so it should live up to that promise.
233 void ieee80211_bss_info_change_notify(struct ieee80211_sub_if_data *sdata,
236 struct ieee80211_local *local = sdata->local;
238 if (WARN_ON(sdata->vif.type == NL80211_IFTYPE_AP_VLAN))
244 if (local->ops->bss_info_changed)
245 local->ops->bss_info_changed(local_to_hw(local),
247 &sdata->vif.bss_conf,
251 u32 ieee80211_reset_erp_info(struct ieee80211_sub_if_data *sdata)
253 sdata->vif.bss_conf.use_cts_prot = false;
254 sdata->vif.bss_conf.use_short_preamble = false;
255 sdata->vif.bss_conf.use_short_slot = false;
256 return BSS_CHANGED_ERP_CTS_PROT |
257 BSS_CHANGED_ERP_PREAMBLE |
258 BSS_CHANGED_ERP_SLOT;
261 void ieee80211_tx_status_irqsafe(struct ieee80211_hw *hw,
264 struct ieee80211_local *local = hw_to_local(hw);
265 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
268 skb->dev = local->mdev;
269 skb->pkt_type = IEEE80211_TX_STATUS_MSG;
270 skb_queue_tail(info->flags & IEEE80211_TX_CTL_REQ_TX_STATUS ?
271 &local->skb_queue : &local->skb_queue_unreliable, skb);
272 tmp = skb_queue_len(&local->skb_queue) +
273 skb_queue_len(&local->skb_queue_unreliable);
274 while (tmp > IEEE80211_IRQSAFE_QUEUE_LIMIT &&
275 (skb = skb_dequeue(&local->skb_queue_unreliable))) {
276 dev_kfree_skb_irq(skb);
278 I802_DEBUG_INC(local->tx_status_drop);
280 tasklet_schedule(&local->tasklet);
282 EXPORT_SYMBOL(ieee80211_tx_status_irqsafe);
284 static void ieee80211_tasklet_handler(unsigned long data)
286 struct ieee80211_local *local = (struct ieee80211_local *) data;
288 struct ieee80211_rx_status rx_status;
289 struct ieee80211_ra_tid *ra_tid;
291 while ((skb = skb_dequeue(&local->skb_queue)) ||
292 (skb = skb_dequeue(&local->skb_queue_unreliable))) {
293 switch (skb->pkt_type) {
294 case IEEE80211_RX_MSG:
295 /* status is in skb->cb */
296 memcpy(&rx_status, skb->cb, sizeof(rx_status));
297 /* Clear skb->pkt_type in order to not confuse kernel
300 __ieee80211_rx(local_to_hw(local), skb, &rx_status);
302 case IEEE80211_TX_STATUS_MSG:
304 ieee80211_tx_status(local_to_hw(local), skb);
306 case IEEE80211_DELBA_MSG:
307 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
308 ieee80211_stop_tx_ba_cb(local_to_hw(local),
309 ra_tid->ra, ra_tid->tid);
312 case IEEE80211_ADDBA_MSG:
313 ra_tid = (struct ieee80211_ra_tid *) &skb->cb;
314 ieee80211_start_tx_ba_cb(local_to_hw(local),
315 ra_tid->ra, ra_tid->tid);
326 /* Remove added headers (e.g., QoS control), encryption header/MIC, etc. to
327 * make a prepared TX frame (one that has been given to hw) to look like brand
328 * new IEEE 802.11 frame that is ready to go through TX processing again.
330 static void ieee80211_remove_tx_extra(struct ieee80211_local *local,
331 struct ieee80211_key *key,
334 unsigned int hdrlen, iv_len, mic_len;
335 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
337 hdrlen = ieee80211_hdrlen(hdr->frame_control);
342 switch (key->conf.alg) {
345 mic_len = WEP_ICV_LEN;
348 iv_len = TKIP_IV_LEN;
349 mic_len = TKIP_ICV_LEN;
352 iv_len = CCMP_HDR_LEN;
353 mic_len = CCMP_MIC_LEN;
359 if (skb->len >= hdrlen + mic_len &&
360 !(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
361 skb_trim(skb, skb->len - mic_len);
362 if (skb->len >= hdrlen + iv_len) {
363 memmove(skb->data + iv_len, skb->data, hdrlen);
364 hdr = (struct ieee80211_hdr *)skb_pull(skb, iv_len);
368 if (ieee80211_is_data_qos(hdr->frame_control)) {
369 hdr->frame_control &= ~cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
370 memmove(skb->data + IEEE80211_QOS_CTL_LEN, skb->data,
371 hdrlen - IEEE80211_QOS_CTL_LEN);
372 skb_pull(skb, IEEE80211_QOS_CTL_LEN);
376 static void ieee80211_handle_filtered_frame(struct ieee80211_local *local,
377 struct sta_info *sta,
380 sta->tx_filtered_count++;
383 * Clear the TX filter mask for this STA when sending the next
384 * packet. If the STA went to power save mode, this will happen
385 * when it wakes up for the next time.
387 set_sta_flags(sta, WLAN_STA_CLEAR_PS_FILT);
390 * This code races in the following way:
392 * (1) STA sends frame indicating it will go to sleep and does so
393 * (2) hardware/firmware adds STA to filter list, passes frame up
394 * (3) hardware/firmware processes TX fifo and suppresses a frame
395 * (4) we get TX status before having processed the frame and
396 * knowing that the STA has gone to sleep.
398 * This is actually quite unlikely even when both those events are
399 * processed from interrupts coming in quickly after one another or
400 * even at the same time because we queue both TX status events and
401 * RX frames to be processed by a tasklet and process them in the
402 * same order that they were received or TX status last. Hence, there
403 * is no race as long as the frame RX is processed before the next TX
404 * status, which drivers can ensure, see below.
406 * Note that this can only happen if the hardware or firmware can
407 * actually add STAs to the filter list, if this is done by the
408 * driver in response to set_tim() (which will only reduce the race
409 * this whole filtering tries to solve, not completely solve it)
410 * this situation cannot happen.
412 * To completely solve this race drivers need to make sure that they
413 * (a) don't mix the irq-safe/not irq-safe TX status/RX processing
415 * (b) always process RX events before TX status events if ordering
416 * can be unknown, for example with different interrupt status
419 if (test_sta_flags(sta, WLAN_STA_PS) &&
420 skb_queue_len(&sta->tx_filtered) < STA_MAX_TX_BUFFER) {
421 ieee80211_remove_tx_extra(local, sta->key, skb);
422 skb_queue_tail(&sta->tx_filtered, skb);
426 if (!test_sta_flags(sta, WLAN_STA_PS) && !skb->requeue) {
427 /* Software retry the packet once */
429 ieee80211_remove_tx_extra(local, sta->key, skb);
434 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
436 printk(KERN_DEBUG "%s: dropped TX filtered frame, "
437 "queue_len=%d PS=%d @%lu\n",
438 wiphy_name(local->hw.wiphy),
439 skb_queue_len(&sta->tx_filtered),
440 !!test_sta_flags(sta, WLAN_STA_PS), jiffies);
445 void ieee80211_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb)
447 struct sk_buff *skb2;
448 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
449 struct ieee80211_local *local = hw_to_local(hw);
450 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
453 struct ieee80211_supported_band *sband;
454 struct ieee80211_tx_status_rtap_hdr *rthdr;
455 struct ieee80211_sub_if_data *sdata;
456 struct net_device *prev_dev = NULL;
457 struct sta_info *sta;
458 int retry_count = -1, i;
460 for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) {
461 /* the HW cannot have attempted that rate */
462 if (i >= hw->max_rates) {
463 info->status.rates[i].idx = -1;
464 info->status.rates[i].count = 0;
467 retry_count += info->status.rates[i].count;
474 sband = local->hw.wiphy->bands[info->band];
476 sta = sta_info_get(local, hdr->addr1);
479 if (!(info->flags & IEEE80211_TX_STAT_ACK) &&
480 test_sta_flags(sta, WLAN_STA_PS)) {
482 * The STA is in power save mode, so assume
483 * that this TX packet failed because of that.
485 ieee80211_handle_filtered_frame(local, sta, skb);
490 fc = hdr->frame_control;
492 if ((info->flags & IEEE80211_TX_STAT_AMPDU_NO_BACK) &&
493 (ieee80211_is_data_qos(fc))) {
497 qc = ieee80211_get_qos_ctl(hdr);
499 ssn = ((le16_to_cpu(hdr->seq_ctrl) + 0x10)
500 & IEEE80211_SCTL_SEQ);
501 ieee80211_send_bar(sta->sdata, hdr->addr1,
505 if (info->flags & IEEE80211_TX_STAT_TX_FILTERED) {
506 ieee80211_handle_filtered_frame(local, sta, skb);
510 if (!(info->flags & IEEE80211_TX_STAT_ACK))
511 sta->tx_retry_failed++;
512 sta->tx_retry_count += retry_count;
515 rate_control_tx_status(local, sband, sta, skb);
520 ieee80211_led_tx(local, 0);
523 * Fragments are passed to low-level drivers as separate skbs, so these
524 * are actually fragments, not frames. Update frame counters only for
525 * the first fragment of the frame. */
527 frag = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG;
528 type = le16_to_cpu(hdr->frame_control) & IEEE80211_FCTL_FTYPE;
530 if (info->flags & IEEE80211_TX_STAT_ACK) {
532 local->dot11TransmittedFrameCount++;
533 if (is_multicast_ether_addr(hdr->addr1))
534 local->dot11MulticastTransmittedFrameCount++;
536 local->dot11RetryCount++;
538 local->dot11MultipleRetryCount++;
541 /* This counter shall be incremented for an acknowledged MPDU
542 * with an individual address in the address 1 field or an MPDU
543 * with a multicast address in the address 1 field of type Data
545 if (!is_multicast_ether_addr(hdr->addr1) ||
546 type == IEEE80211_FTYPE_DATA ||
547 type == IEEE80211_FTYPE_MGMT)
548 local->dot11TransmittedFragmentCount++;
551 local->dot11FailedCount++;
554 /* this was a transmitted frame, but now we want to reuse it */
558 * This is a bit racy but we can avoid a lot of work
561 if (!local->monitors && !local->cooked_mntrs) {
566 /* send frame to monitor interfaces now */
568 if (skb_headroom(skb) < sizeof(*rthdr)) {
569 printk(KERN_ERR "ieee80211_tx_status: headroom too small\n");
574 rthdr = (struct ieee80211_tx_status_rtap_hdr *)
575 skb_push(skb, sizeof(*rthdr));
577 memset(rthdr, 0, sizeof(*rthdr));
578 rthdr->hdr.it_len = cpu_to_le16(sizeof(*rthdr));
579 rthdr->hdr.it_present =
580 cpu_to_le32((1 << IEEE80211_RADIOTAP_TX_FLAGS) |
581 (1 << IEEE80211_RADIOTAP_DATA_RETRIES) |
582 (1 << IEEE80211_RADIOTAP_RATE));
584 if (!(info->flags & IEEE80211_TX_STAT_ACK) &&
585 !is_multicast_ether_addr(hdr->addr1))
586 rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_FAIL);
589 * XXX: Once radiotap gets the bitmap reset thing the vendor
590 * extensions proposal contains, we can actually report
591 * the whole set of tries we did.
593 if ((info->status.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS) ||
594 (info->status.rates[0].flags & IEEE80211_TX_RC_USE_CTS_PROTECT))
595 rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_CTS);
596 else if (info->status.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS)
597 rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_RTS);
598 if (info->status.rates[0].idx >= 0 &&
599 !(info->status.rates[0].flags & IEEE80211_TX_RC_MCS))
600 rthdr->rate = sband->bitrates[
601 info->status.rates[0].idx].bitrate / 5;
603 /* for now report the total retry_count */
604 rthdr->data_retries = retry_count;
606 /* XXX: is this sufficient for BPF? */
607 skb_set_mac_header(skb, 0);
608 skb->ip_summed = CHECKSUM_UNNECESSARY;
609 skb->pkt_type = PACKET_OTHERHOST;
610 skb->protocol = htons(ETH_P_802_2);
611 memset(skb->cb, 0, sizeof(skb->cb));
614 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
615 if (sdata->vif.type == NL80211_IFTYPE_MONITOR) {
616 if (!netif_running(sdata->dev))
620 skb2 = skb_clone(skb, GFP_ATOMIC);
622 skb2->dev = prev_dev;
627 prev_dev = sdata->dev;
638 EXPORT_SYMBOL(ieee80211_tx_status);
640 struct ieee80211_hw *ieee80211_alloc_hw(size_t priv_data_len,
641 const struct ieee80211_ops *ops)
643 struct ieee80211_local *local;
647 /* Ensure 32-byte alignment of our private data and hw private data.
648 * We use the wiphy priv data for both our ieee80211_local and for
649 * the driver's private data
651 * In memory it'll be like this:
653 * +-------------------------+
655 * +-------------------------+
656 * | struct ieee80211_local |
657 * +-------------------------+
658 * | driver's private data |
659 * +-------------------------+
662 priv_size = ((sizeof(struct ieee80211_local) +
663 NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST) +
666 wiphy = wiphy_new(&mac80211_config_ops, priv_size);
671 wiphy->privid = mac80211_wiphy_privid;
673 local = wiphy_priv(wiphy);
674 local->hw.wiphy = wiphy;
676 local->hw.priv = (char *)local +
677 ((sizeof(struct ieee80211_local) +
678 NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST);
683 BUG_ON(!ops->config);
684 BUG_ON(!ops->add_interface);
685 BUG_ON(!ops->remove_interface);
686 BUG_ON(!ops->configure_filter);
689 /* set up some defaults */
690 local->hw.queues = 1;
691 local->hw.max_rates = 1;
692 local->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
693 local->fragmentation_threshold = IEEE80211_MAX_FRAG_THRESHOLD;
694 local->hw.conf.long_frame_max_tx_count = 4;
695 local->hw.conf.short_frame_max_tx_count = 7;
696 local->hw.conf.radio_enabled = true;
698 INIT_LIST_HEAD(&local->interfaces);
700 spin_lock_init(&local->key_lock);
702 INIT_DELAYED_WORK(&local->scan_work, ieee80211_scan_work);
704 sta_info_init(local);
706 tasklet_init(&local->tx_pending_tasklet, ieee80211_tx_pending,
707 (unsigned long)local);
708 tasklet_disable(&local->tx_pending_tasklet);
710 tasklet_init(&local->tasklet,
711 ieee80211_tasklet_handler,
712 (unsigned long) local);
713 tasklet_disable(&local->tasklet);
715 skb_queue_head_init(&local->skb_queue);
716 skb_queue_head_init(&local->skb_queue_unreliable);
718 return local_to_hw(local);
720 EXPORT_SYMBOL(ieee80211_alloc_hw);
722 int ieee80211_register_hw(struct ieee80211_hw *hw)
724 struct ieee80211_local *local = hw_to_local(hw);
727 enum ieee80211_band band;
728 struct net_device *mdev;
729 struct ieee80211_master_priv *mpriv;
732 * generic code guarantees at least one band,
733 * set this very early because much code assumes
734 * that hw.conf.channel is assigned
736 for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
737 struct ieee80211_supported_band *sband;
739 sband = local->hw.wiphy->bands[band];
741 /* init channel we're on */
742 local->hw.conf.channel =
743 local->oper_channel =
744 local->scan_channel = &sband->channels[0];
749 /* if low-level driver supports AP, we also support VLAN */
750 if (local->hw.wiphy->interface_modes & BIT(NL80211_IFTYPE_AP))
751 local->hw.wiphy->interface_modes |= BIT(NL80211_IFTYPE_AP_VLAN);
753 /* mac80211 always supports monitor */
754 local->hw.wiphy->interface_modes |= BIT(NL80211_IFTYPE_MONITOR);
756 result = wiphy_register(local->hw.wiphy);
761 * We use the number of queues for feature tests (QoS, HT) internally
762 * so restrict them appropriately.
764 if (hw->queues > IEEE80211_MAX_QUEUES)
765 hw->queues = IEEE80211_MAX_QUEUES;
766 if (hw->ampdu_queues > IEEE80211_MAX_AMPDU_QUEUES)
767 hw->ampdu_queues = IEEE80211_MAX_AMPDU_QUEUES;
769 hw->ampdu_queues = 0;
771 mdev = alloc_netdev_mq(sizeof(struct ieee80211_master_priv),
772 "wmaster%d", ether_setup,
773 ieee80211_num_queues(hw));
775 goto fail_mdev_alloc;
777 mpriv = netdev_priv(mdev);
778 mpriv->local = local;
781 ieee80211_rx_bss_list_init(local);
783 mdev->hard_start_xmit = ieee80211_master_start_xmit;
784 mdev->open = ieee80211_master_open;
785 mdev->stop = ieee80211_master_stop;
786 mdev->type = ARPHRD_IEEE80211;
787 mdev->header_ops = &ieee80211_header_ops;
788 mdev->set_multicast_list = ieee80211_master_set_multicast_list;
790 name = wiphy_dev(local->hw.wiphy)->driver->name;
791 local->hw.workqueue = create_freezeable_workqueue(name);
792 if (!local->hw.workqueue) {
798 * The hardware needs headroom for sending the frame,
799 * and we need some headroom for passing the frame to monitor
800 * interfaces, but never both at the same time.
802 local->tx_headroom = max_t(unsigned int , local->hw.extra_tx_headroom,
803 sizeof(struct ieee80211_tx_status_rtap_hdr));
805 debugfs_hw_add(local);
807 if (local->hw.conf.beacon_int < 10)
808 local->hw.conf.beacon_int = 100;
810 if (local->hw.max_listen_interval == 0)
811 local->hw.max_listen_interval = 1;
813 local->hw.conf.listen_interval = local->hw.max_listen_interval;
815 local->wstats_flags |= local->hw.flags & (IEEE80211_HW_SIGNAL_UNSPEC |
816 IEEE80211_HW_SIGNAL_DB |
817 IEEE80211_HW_SIGNAL_DBM) ?
818 IW_QUAL_QUAL_UPDATED : IW_QUAL_QUAL_INVALID;
819 local->wstats_flags |= local->hw.flags & IEEE80211_HW_NOISE_DBM ?
820 IW_QUAL_NOISE_UPDATED : IW_QUAL_NOISE_INVALID;
821 if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM)
822 local->wstats_flags |= IW_QUAL_DBM;
824 result = sta_info_start(local);
829 result = dev_alloc_name(local->mdev, local->mdev->name);
833 memcpy(local->mdev->dev_addr, local->hw.wiphy->perm_addr, ETH_ALEN);
834 SET_NETDEV_DEV(local->mdev, wiphy_dev(local->hw.wiphy));
836 result = register_netdevice(local->mdev);
840 result = ieee80211_init_rate_ctrl_alg(local,
841 hw->rate_control_algorithm);
843 printk(KERN_DEBUG "%s: Failed to initialize rate control "
844 "algorithm\n", wiphy_name(local->hw.wiphy));
848 result = ieee80211_wep_init(local);
851 printk(KERN_DEBUG "%s: Failed to initialize wep: %d\n",
852 wiphy_name(local->hw.wiphy), result);
856 local->mdev->select_queue = ieee80211_select_queue;
858 /* add one default STA interface */
859 result = ieee80211_if_add(local, "wlan%d", NULL,
860 NL80211_IFTYPE_STATION, NULL);
862 printk(KERN_WARNING "%s: Failed to add default virtual iface\n",
863 wiphy_name(local->hw.wiphy));
867 ieee80211_led_init(local);
872 rate_control_deinitialize(local);
874 unregister_netdevice(local->mdev);
878 sta_info_stop(local);
880 debugfs_hw_del(local);
881 destroy_workqueue(local->hw.workqueue);
884 free_netdev(local->mdev);
886 wiphy_unregister(local->hw.wiphy);
889 EXPORT_SYMBOL(ieee80211_register_hw);
891 void ieee80211_unregister_hw(struct ieee80211_hw *hw)
893 struct ieee80211_local *local = hw_to_local(hw);
895 tasklet_kill(&local->tx_pending_tasklet);
896 tasklet_kill(&local->tasklet);
901 * At this point, interface list manipulations are fine
902 * because the driver cannot be handing us frames any
903 * more and the tasklet is killed.
906 /* First, we remove all virtual interfaces. */
907 ieee80211_remove_interfaces(local);
909 /* then, finally, remove the master interface */
910 unregister_netdevice(local->mdev);
914 ieee80211_rx_bss_list_deinit(local);
915 ieee80211_clear_tx_pending(local);
916 sta_info_stop(local);
917 rate_control_deinitialize(local);
918 debugfs_hw_del(local);
920 if (skb_queue_len(&local->skb_queue)
921 || skb_queue_len(&local->skb_queue_unreliable))
922 printk(KERN_WARNING "%s: skb_queue not empty\n",
923 wiphy_name(local->hw.wiphy));
924 skb_queue_purge(&local->skb_queue);
925 skb_queue_purge(&local->skb_queue_unreliable);
927 destroy_workqueue(local->hw.workqueue);
928 wiphy_unregister(local->hw.wiphy);
929 ieee80211_wep_free(local);
930 ieee80211_led_exit(local);
931 free_netdev(local->mdev);
933 EXPORT_SYMBOL(ieee80211_unregister_hw);
935 void ieee80211_free_hw(struct ieee80211_hw *hw)
937 struct ieee80211_local *local = hw_to_local(hw);
939 wiphy_free(local->hw.wiphy);
941 EXPORT_SYMBOL(ieee80211_free_hw);
943 static int __init ieee80211_init(void)
948 BUILD_BUG_ON(sizeof(struct ieee80211_tx_info) > sizeof(skb->cb));
949 BUILD_BUG_ON(offsetof(struct ieee80211_tx_info, driver_data) +
950 IEEE80211_TX_INFO_DRIVER_DATA_SIZE > sizeof(skb->cb));
952 ret = rc80211_minstrel_init();
956 ret = rc80211_pid_init();
960 ieee80211_debugfs_netdev_init();
965 static void __exit ieee80211_exit(void)
968 rc80211_minstrel_exit();
971 * For key todo, it'll be empty by now but the work
972 * might still be scheduled.
974 flush_scheduled_work();
979 ieee80211_debugfs_netdev_exit();
983 subsys_initcall(ieee80211_init);
984 module_exit(ieee80211_exit);
986 MODULE_DESCRIPTION("IEEE 802.11 subsystem");
987 MODULE_LICENSE("GPL");