[PATCH] mac80211: fix vlan bug
[powerpc.git] / net / mac80211 / ieee80211.c
1 /*
2  * Copyright 2002-2005, Instant802 Networks, Inc.
3  * Copyright 2005-2006, Devicescape Software, Inc.
4  * Copyright 2006-2007  Jiri Benc <jbenc@suse.cz>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  */
10
11 #include <net/mac80211.h>
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>
26
27 #include "ieee80211_common.h"
28 #include "ieee80211_i.h"
29 #include "ieee80211_rate.h"
30 #include "wep.h"
31 #include "wme.h"
32 #include "aes_ccm.h"
33 #include "ieee80211_led.h"
34 #include "cfg.h"
35 #include "debugfs.h"
36 #include "debugfs_netdev.h"
37
38 /*
39  * For seeing transmitted packets on monitor interfaces
40  * we have a radiotap header too.
41  */
42 struct ieee80211_tx_status_rtap_hdr {
43         struct ieee80211_radiotap_header hdr;
44         __le16 tx_flags;
45         u8 data_retries;
46 } __attribute__ ((packed));
47
48 /* common interface routines */
49
50 static int header_parse_80211(const struct sk_buff *skb, unsigned char *haddr)
51 {
52         memcpy(haddr, skb_mac_header(skb) + 10, ETH_ALEN); /* addr2 */
53         return ETH_ALEN;
54 }
55
56 /* must be called under mdev tx lock */
57 static void ieee80211_configure_filter(struct ieee80211_local *local)
58 {
59         unsigned int changed_flags;
60         unsigned int new_flags = 0;
61
62         if (local->iff_promiscs)
63                 new_flags |= FIF_PROMISC_IN_BSS;
64
65         if (local->iff_allmultis)
66                 new_flags |= FIF_ALLMULTI;
67
68         if (local->monitors)
69                 new_flags |= FIF_CONTROL |
70                              FIF_OTHER_BSS |
71                              FIF_BCN_PRBRESP_PROMISC;
72
73         changed_flags = local->filter_flags ^ new_flags;
74
75         /* be a bit nasty */
76         new_flags |= (1<<31);
77
78         local->ops->configure_filter(local_to_hw(local),
79                                      changed_flags, &new_flags,
80                                      local->mdev->mc_count,
81                                      local->mdev->mc_list);
82
83         WARN_ON(new_flags & (1<<31));
84
85         local->filter_flags = new_flags & ~(1<<31);
86 }
87
88 /* master interface */
89
90 static int ieee80211_master_open(struct net_device *dev)
91 {
92         struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
93         struct ieee80211_sub_if_data *sdata;
94         int res = -EOPNOTSUPP;
95
96         /* we hold the RTNL here so can safely walk the list */
97         list_for_each_entry(sdata, &local->interfaces, list) {
98                 if (sdata->dev != dev && netif_running(sdata->dev)) {
99                         res = 0;
100                         break;
101                 }
102         }
103         return res;
104 }
105
106 static int ieee80211_master_stop(struct net_device *dev)
107 {
108         struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
109         struct ieee80211_sub_if_data *sdata;
110
111         /* we hold the RTNL here so can safely walk the list */
112         list_for_each_entry(sdata, &local->interfaces, list)
113                 if (sdata->dev != dev && netif_running(sdata->dev))
114                         dev_close(sdata->dev);
115
116         return 0;
117 }
118
119 static void ieee80211_master_set_multicast_list(struct net_device *dev)
120 {
121         struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
122
123         ieee80211_configure_filter(local);
124 }
125
126 /* management interface */
127
128 static void
129 ieee80211_fill_frame_info(struct ieee80211_local *local,
130                           struct ieee80211_frame_info *fi,
131                           struct ieee80211_rx_status *status)
132 {
133         if (status) {
134                 struct timespec ts;
135                 struct ieee80211_rate *rate;
136
137                 jiffies_to_timespec(jiffies, &ts);
138                 fi->hosttime = cpu_to_be64((u64) ts.tv_sec * 1000000 +
139                                            ts.tv_nsec / 1000);
140                 fi->mactime = cpu_to_be64(status->mactime);
141                 switch (status->phymode) {
142                 case MODE_IEEE80211A:
143                         fi->phytype = htonl(ieee80211_phytype_ofdm_dot11_a);
144                         break;
145                 case MODE_IEEE80211B:
146                         fi->phytype = htonl(ieee80211_phytype_dsss_dot11_b);
147                         break;
148                 case MODE_IEEE80211G:
149                         fi->phytype = htonl(ieee80211_phytype_pbcc_dot11_g);
150                         break;
151                 default:
152                         fi->phytype = htonl(0xAAAAAAAA);
153                         break;
154                 }
155                 fi->channel = htonl(status->channel);
156                 rate = ieee80211_get_rate(local, status->phymode,
157                                           status->rate);
158                 if (rate) {
159                         fi->datarate = htonl(rate->rate);
160                         if (rate->flags & IEEE80211_RATE_PREAMBLE2) {
161                                 if (status->rate == rate->val)
162                                         fi->preamble = htonl(2); /* long */
163                                 else if (status->rate == rate->val2)
164                                         fi->preamble = htonl(1); /* short */
165                         } else
166                                 fi->preamble = htonl(0);
167                 } else {
168                         fi->datarate = htonl(0);
169                         fi->preamble = htonl(0);
170                 }
171
172                 fi->antenna = htonl(status->antenna);
173                 fi->priority = htonl(0xffffffff); /* no clue */
174                 fi->ssi_type = htonl(ieee80211_ssi_raw);
175                 fi->ssi_signal = htonl(status->ssi);
176                 fi->ssi_noise = 0x00000000;
177                 fi->encoding = 0;
178         } else {
179                 /* clear everything because we really don't know.
180                  * the msg_type field isn't present on monitor frames
181                  * so we don't know whether it will be present or not,
182                  * but it's ok to not clear it since it'll be assigned
183                  * anyway */
184                 memset(fi, 0, sizeof(*fi) - sizeof(fi->msg_type));
185
186                 fi->ssi_type = htonl(ieee80211_ssi_none);
187         }
188         fi->version = htonl(IEEE80211_FI_VERSION);
189         fi->length = cpu_to_be32(sizeof(*fi) - sizeof(fi->msg_type));
190 }
191
192 /* this routine is actually not just for this, but also
193  * for pushing fake 'management' frames into userspace.
194  * it shall be replaced by a netlink-based system. */
195 void
196 ieee80211_rx_mgmt(struct ieee80211_local *local, struct sk_buff *skb,
197                   struct ieee80211_rx_status *status, u32 msg_type)
198 {
199         struct ieee80211_frame_info *fi;
200         const size_t hlen = sizeof(struct ieee80211_frame_info);
201         struct net_device *dev = local->apdev;
202
203         skb->dev = dev;
204
205         if (skb_headroom(skb) < hlen) {
206                 I802_DEBUG_INC(local->rx_expand_skb_head);
207                 if (pskb_expand_head(skb, hlen, 0, GFP_ATOMIC)) {
208                         dev_kfree_skb(skb);
209                         return;
210                 }
211         }
212
213         fi = (struct ieee80211_frame_info *) skb_push(skb, hlen);
214
215         ieee80211_fill_frame_info(local, fi, status);
216         fi->msg_type = htonl(msg_type);
217
218         dev->stats.rx_packets++;
219         dev->stats.rx_bytes += skb->len;
220
221         skb_set_mac_header(skb, 0);
222         skb->ip_summed = CHECKSUM_UNNECESSARY;
223         skb->pkt_type = PACKET_OTHERHOST;
224         skb->protocol = htons(ETH_P_802_2);
225         memset(skb->cb, 0, sizeof(skb->cb));
226         netif_rx(skb);
227 }
228
229 static int ieee80211_mgmt_open(struct net_device *dev)
230 {
231         struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
232
233         if (!netif_running(local->mdev))
234                 return -EOPNOTSUPP;
235         return 0;
236 }
237
238 static int ieee80211_mgmt_stop(struct net_device *dev)
239 {
240         return 0;
241 }
242
243 static int ieee80211_change_mtu_apdev(struct net_device *dev, int new_mtu)
244 {
245         /* FIX: what would be proper limits for MTU?
246          * This interface uses 802.11 frames. */
247         if (new_mtu < 256 || new_mtu > IEEE80211_MAX_DATA_LEN) {
248                 printk(KERN_WARNING "%s: invalid MTU %d\n",
249                        dev->name, new_mtu);
250                 return -EINVAL;
251         }
252
253 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
254         printk(KERN_DEBUG "%s: setting MTU %d\n", dev->name, new_mtu);
255 #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
256         dev->mtu = new_mtu;
257         return 0;
258 }
259
260 void ieee80211_if_mgmt_setup(struct net_device *dev)
261 {
262         ether_setup(dev);
263         dev->hard_start_xmit = ieee80211_mgmt_start_xmit;
264         dev->change_mtu = ieee80211_change_mtu_apdev;
265         dev->open = ieee80211_mgmt_open;
266         dev->stop = ieee80211_mgmt_stop;
267         dev->type = ARPHRD_IEEE80211_PRISM;
268         dev->destructor = ieee80211_if_free;
269 }
270
271 /* regular interfaces */
272
273 static int ieee80211_change_mtu(struct net_device *dev, int new_mtu)
274 {
275         /* FIX: what would be proper limits for MTU?
276          * This interface uses 802.3 frames. */
277         if (new_mtu < 256 || new_mtu > IEEE80211_MAX_DATA_LEN - 24 - 6) {
278                 printk(KERN_WARNING "%s: invalid MTU %d\n",
279                        dev->name, new_mtu);
280                 return -EINVAL;
281         }
282
283 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
284         printk(KERN_DEBUG "%s: setting MTU %d\n", dev->name, new_mtu);
285 #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
286         dev->mtu = new_mtu;
287         return 0;
288 }
289
290 static inline int identical_mac_addr_allowed(int type1, int type2)
291 {
292         return (type1 == IEEE80211_IF_TYPE_MNTR ||
293                 type2 == IEEE80211_IF_TYPE_MNTR ||
294                 (type1 == IEEE80211_IF_TYPE_AP &&
295                  type2 == IEEE80211_IF_TYPE_WDS) ||
296                 (type1 == IEEE80211_IF_TYPE_WDS &&
297                  (type2 == IEEE80211_IF_TYPE_WDS ||
298                   type2 == IEEE80211_IF_TYPE_AP)) ||
299                 (type1 == IEEE80211_IF_TYPE_AP &&
300                  type2 == IEEE80211_IF_TYPE_VLAN) ||
301                 (type1 == IEEE80211_IF_TYPE_VLAN &&
302                  (type2 == IEEE80211_IF_TYPE_AP ||
303                   type2 == IEEE80211_IF_TYPE_VLAN)));
304 }
305
306 static int ieee80211_open(struct net_device *dev)
307 {
308         struct ieee80211_sub_if_data *sdata, *nsdata;
309         struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
310         struct ieee80211_if_init_conf conf;
311         int res;
312
313         sdata = IEEE80211_DEV_TO_SUB_IF(dev);
314
315         /* we hold the RTNL here so can safely walk the list */
316         list_for_each_entry(nsdata, &local->interfaces, list) {
317                 struct net_device *ndev = nsdata->dev;
318
319                 if (ndev != dev && ndev != local->mdev && netif_running(ndev) &&
320                     compare_ether_addr(dev->dev_addr, ndev->dev_addr) == 0) {
321                         /*
322                          * check whether it may have the same address
323                          */
324                         if (!identical_mac_addr_allowed(sdata->type,
325                                                         nsdata->type))
326                                 return -ENOTUNIQ;
327
328                         /*
329                          * can only add VLANs to enabled APs
330                          */
331                         if (sdata->type == IEEE80211_IF_TYPE_VLAN &&
332                             nsdata->type == IEEE80211_IF_TYPE_AP &&
333                             netif_running(nsdata->dev))
334                                 sdata->u.vlan.ap = nsdata;
335                 }
336         }
337
338         switch (sdata->type) {
339         case IEEE80211_IF_TYPE_WDS:
340                 if (is_zero_ether_addr(sdata->u.wds.remote_addr))
341                         return -ENOLINK;
342                 break;
343         case IEEE80211_IF_TYPE_VLAN:
344                 if (!sdata->u.vlan.ap)
345                         return -ENOLINK;
346                 break;
347         case IEEE80211_IF_TYPE_AP:
348         case IEEE80211_IF_TYPE_MGMT:
349         case IEEE80211_IF_TYPE_STA:
350         case IEEE80211_IF_TYPE_MNTR:
351         case IEEE80211_IF_TYPE_IBSS:
352                 /* no special treatment */
353                 break;
354         }
355
356         if (local->open_count == 0) {
357                 res = 0;
358                 if (local->ops->start)
359                         res = local->ops->start(local_to_hw(local));
360                 if (res)
361                         return res;
362         }
363
364         switch (sdata->type) {
365         case IEEE80211_IF_TYPE_VLAN:
366                 list_add(&sdata->u.vlan.list, &sdata->u.vlan.ap->u.ap.vlans);
367                 /* no need to tell driver */
368                 break;
369         case IEEE80211_IF_TYPE_MNTR:
370                 /* must be before the call to ieee80211_configure_filter */
371                 local->monitors++;
372                 if (local->monitors == 1) {
373                         netif_tx_lock_bh(local->mdev);
374                         ieee80211_configure_filter(local);
375                         netif_tx_unlock_bh(local->mdev);
376
377                         local->hw.conf.flags |= IEEE80211_CONF_RADIOTAP;
378                         ieee80211_hw_config(local);
379                 }
380                 break;
381         case IEEE80211_IF_TYPE_STA:
382         case IEEE80211_IF_TYPE_IBSS:
383                 sdata->u.sta.flags &= ~IEEE80211_STA_PREV_BSSID_SET;
384                 /* fall through */
385         default:
386                 conf.if_id = dev->ifindex;
387                 conf.type = sdata->type;
388                 conf.mac_addr = dev->dev_addr;
389                 res = local->ops->add_interface(local_to_hw(local), &conf);
390                 if (res && !local->open_count && local->ops->stop)
391                         local->ops->stop(local_to_hw(local));
392                 if (res)
393                         return res;
394
395                 ieee80211_if_config(dev);
396                 ieee80211_reset_erp_info(dev);
397                 ieee80211_enable_keys(sdata);
398
399                 if (sdata->type == IEEE80211_IF_TYPE_STA &&
400                     !local->user_space_mlme)
401                         netif_carrier_off(dev);
402                 else
403                         netif_carrier_on(dev);
404         }
405
406         if (local->open_count == 0) {
407                 res = dev_open(local->mdev);
408                 WARN_ON(res);
409                 if (local->apdev) {
410                         res = dev_open(local->apdev);
411                         WARN_ON(res);
412                 }
413                 tasklet_enable(&local->tx_pending_tasklet);
414                 tasklet_enable(&local->tasklet);
415         }
416
417         local->open_count++;
418
419         netif_start_queue(dev);
420
421         return 0;
422 }
423
424 static int ieee80211_stop(struct net_device *dev)
425 {
426         struct ieee80211_sub_if_data *sdata;
427         struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
428         struct ieee80211_if_init_conf conf;
429
430         sdata = IEEE80211_DEV_TO_SUB_IF(dev);
431
432         netif_stop_queue(dev);
433
434         dev_mc_unsync(local->mdev, dev);
435
436         /* down all dependent devices, that is VLANs */
437         if (sdata->type == IEEE80211_IF_TYPE_AP) {
438                 struct ieee80211_sub_if_data *vlan, *tmp;
439
440                 list_for_each_entry_safe(vlan, tmp, &sdata->u.ap.vlans,
441                                          u.vlan.list)
442                         dev_close(vlan->dev);
443                 WARN_ON(!list_empty(&sdata->u.ap.vlans));
444         }
445
446         local->open_count--;
447
448         switch (sdata->type) {
449         case IEEE80211_IF_TYPE_VLAN:
450                 list_del(&sdata->u.vlan.list);
451                 sdata->u.vlan.ap = NULL;
452                 /* no need to tell driver */
453                 break;
454         case IEEE80211_IF_TYPE_MNTR:
455                 local->monitors--;
456                 if (local->monitors == 0) {
457                         netif_tx_lock_bh(local->mdev);
458                         ieee80211_configure_filter(local);
459                         netif_tx_unlock_bh(local->mdev);
460
461                         local->hw.conf.flags |= IEEE80211_CONF_RADIOTAP;
462                         ieee80211_hw_config(local);
463                 }
464                 break;
465         case IEEE80211_IF_TYPE_STA:
466         case IEEE80211_IF_TYPE_IBSS:
467                 sdata->u.sta.state = IEEE80211_DISABLED;
468                 del_timer_sync(&sdata->u.sta.timer);
469                 /*
470                  * When we get here, the interface is marked down.
471                  * Call synchronize_rcu() to wait for the RX path
472                  * should it be using the interface and enqueuing
473                  * frames at this very time on another CPU.
474                  */
475                 synchronize_rcu();
476                 skb_queue_purge(&sdata->u.sta.skb_queue);
477
478                 if (!local->ops->hw_scan &&
479                     local->scan_dev == sdata->dev) {
480                         local->sta_scanning = 0;
481                         cancel_delayed_work(&local->scan_work);
482                 }
483                 flush_workqueue(local->hw.workqueue);
484                 /* fall through */
485         default:
486                 conf.if_id = dev->ifindex;
487                 conf.type = sdata->type;
488                 conf.mac_addr = dev->dev_addr;
489                 /* disable all keys for as long as this netdev is down */
490                 ieee80211_disable_keys(sdata);
491                 local->ops->remove_interface(local_to_hw(local), &conf);
492         }
493
494         if (local->open_count == 0) {
495                 if (netif_running(local->mdev))
496                         dev_close(local->mdev);
497
498                 if (local->apdev)
499                         dev_close(local->apdev);
500
501                 if (local->ops->stop)
502                         local->ops->stop(local_to_hw(local));
503
504                 tasklet_disable(&local->tx_pending_tasklet);
505                 tasklet_disable(&local->tasklet);
506         }
507
508         return 0;
509 }
510
511 static void ieee80211_set_multicast_list(struct net_device *dev)
512 {
513         struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
514         struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
515         int allmulti, promisc, sdata_allmulti, sdata_promisc;
516
517         allmulti = !!(dev->flags & IFF_ALLMULTI);
518         promisc = !!(dev->flags & IFF_PROMISC);
519         sdata_allmulti = sdata->flags & IEEE80211_SDATA_ALLMULTI;
520         sdata_promisc = sdata->flags & IEEE80211_SDATA_PROMISC;
521
522         if (allmulti != sdata_allmulti) {
523                 if (dev->flags & IFF_ALLMULTI)
524                         local->iff_allmultis++;
525                 else
526                         local->iff_allmultis--;
527                 sdata->flags ^= IEEE80211_SDATA_ALLMULTI;
528         }
529
530         if (promisc != sdata_promisc) {
531                 if (dev->flags & IFF_PROMISC)
532                         local->iff_promiscs++;
533                 else
534                         local->iff_promiscs--;
535                 sdata->flags ^= IEEE80211_SDATA_PROMISC;
536         }
537
538         dev_mc_sync(local->mdev, dev);
539 }
540
541 static const struct header_ops ieee80211_header_ops = {
542         .create         = eth_header,
543         .parse          = header_parse_80211,
544         .rebuild        = eth_rebuild_header,
545         .cache          = eth_header_cache,
546         .cache_update   = eth_header_cache_update,
547 };
548
549 /* Must not be called for mdev and apdev */
550 void ieee80211_if_setup(struct net_device *dev)
551 {
552         ether_setup(dev);
553         dev->header_ops = &ieee80211_header_ops;
554         dev->hard_start_xmit = ieee80211_subif_start_xmit;
555         dev->wireless_handlers = &ieee80211_iw_handler_def;
556         dev->set_multicast_list = ieee80211_set_multicast_list;
557         dev->change_mtu = ieee80211_change_mtu;
558         dev->open = ieee80211_open;
559         dev->stop = ieee80211_stop;
560         dev->destructor = ieee80211_if_free;
561 }
562
563 /* WDS specialties */
564
565 int ieee80211_if_update_wds(struct net_device *dev, u8 *remote_addr)
566 {
567         struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
568         struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
569         struct sta_info *sta;
570         DECLARE_MAC_BUF(mac);
571
572         if (compare_ether_addr(remote_addr, sdata->u.wds.remote_addr) == 0)
573                 return 0;
574
575         /* Create STA entry for the new peer */
576         sta = sta_info_add(local, dev, remote_addr, GFP_KERNEL);
577         if (!sta)
578                 return -ENOMEM;
579         sta_info_put(sta);
580
581         /* Remove STA entry for the old peer */
582         sta = sta_info_get(local, sdata->u.wds.remote_addr);
583         if (sta) {
584                 sta_info_free(sta);
585                 sta_info_put(sta);
586         } else {
587                 printk(KERN_DEBUG "%s: could not find STA entry for WDS link "
588                        "peer %s\n",
589                        dev->name, print_mac(mac, sdata->u.wds.remote_addr));
590         }
591
592         /* Update WDS link data */
593         memcpy(&sdata->u.wds.remote_addr, remote_addr, ETH_ALEN);
594
595         return 0;
596 }
597
598 /* everything else */
599
600 static int __ieee80211_if_config(struct net_device *dev,
601                                  struct sk_buff *beacon,
602                                  struct ieee80211_tx_control *control)
603 {
604         struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
605         struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
606         struct ieee80211_if_conf conf;
607
608         if (!local->ops->config_interface || !netif_running(dev))
609                 return 0;
610
611         memset(&conf, 0, sizeof(conf));
612         conf.type = sdata->type;
613         if (sdata->type == IEEE80211_IF_TYPE_STA ||
614             sdata->type == IEEE80211_IF_TYPE_IBSS) {
615                 conf.bssid = sdata->u.sta.bssid;
616                 conf.ssid = sdata->u.sta.ssid;
617                 conf.ssid_len = sdata->u.sta.ssid_len;
618                 conf.generic_elem = sdata->u.sta.extra_ie;
619                 conf.generic_elem_len = sdata->u.sta.extra_ie_len;
620         } else if (sdata->type == IEEE80211_IF_TYPE_AP) {
621                 conf.ssid = sdata->u.ap.ssid;
622                 conf.ssid_len = sdata->u.ap.ssid_len;
623                 conf.generic_elem = sdata->u.ap.generic_elem;
624                 conf.generic_elem_len = sdata->u.ap.generic_elem_len;
625                 conf.beacon = beacon;
626                 conf.beacon_control = control;
627         }
628         return local->ops->config_interface(local_to_hw(local),
629                                            dev->ifindex, &conf);
630 }
631
632 int ieee80211_if_config(struct net_device *dev)
633 {
634         return __ieee80211_if_config(dev, NULL, NULL);
635 }
636
637 int ieee80211_if_config_beacon(struct net_device *dev)
638 {
639         struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
640         struct ieee80211_tx_control control;
641         struct sk_buff *skb;
642
643         if (!(local->hw.flags & IEEE80211_HW_HOST_GEN_BEACON_TEMPLATE))
644                 return 0;
645         skb = ieee80211_beacon_get(local_to_hw(local), dev->ifindex, &control);
646         if (!skb)
647                 return -ENOMEM;
648         return __ieee80211_if_config(dev, skb, &control);
649 }
650
651 int ieee80211_hw_config(struct ieee80211_local *local)
652 {
653         struct ieee80211_hw_mode *mode;
654         struct ieee80211_channel *chan;
655         int ret = 0;
656
657         if (local->sta_scanning) {
658                 chan = local->scan_channel;
659                 mode = local->scan_hw_mode;
660         } else {
661                 chan = local->oper_channel;
662                 mode = local->oper_hw_mode;
663         }
664
665         local->hw.conf.channel = chan->chan;
666         local->hw.conf.channel_val = chan->val;
667         if (!local->hw.conf.power_level) {
668                 local->hw.conf.power_level = chan->power_level;
669         } else {
670                 local->hw.conf.power_level = min(chan->power_level,
671                                                  local->hw.conf.power_level);
672         }
673         local->hw.conf.freq = chan->freq;
674         local->hw.conf.phymode = mode->mode;
675         local->hw.conf.antenna_max = chan->antenna_max;
676         local->hw.conf.chan = chan;
677         local->hw.conf.mode = mode;
678
679 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
680         printk(KERN_DEBUG "HW CONFIG: channel=%d freq=%d "
681                "phymode=%d\n", local->hw.conf.channel, local->hw.conf.freq,
682                local->hw.conf.phymode);
683 #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
684
685         if (local->ops->config)
686                 ret = local->ops->config(local_to_hw(local), &local->hw.conf);
687
688         return ret;
689 }
690
691 void ieee80211_erp_info_change_notify(struct net_device *dev, u8 changes)
692 {
693         struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
694         struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
695         if (local->ops->erp_ie_changed)
696                 local->ops->erp_ie_changed(local_to_hw(local), changes,
697                         !!(sdata->flags & IEEE80211_SDATA_USE_PROTECTION),
698                         !(sdata->flags & IEEE80211_SDATA_SHORT_PREAMBLE));
699 }
700
701 void ieee80211_reset_erp_info(struct net_device *dev)
702 {
703         struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
704
705         sdata->flags &= ~(IEEE80211_SDATA_USE_PROTECTION |
706                         IEEE80211_SDATA_SHORT_PREAMBLE);
707         ieee80211_erp_info_change_notify(dev,
708                                          IEEE80211_ERP_CHANGE_PROTECTION |
709                                          IEEE80211_ERP_CHANGE_PREAMBLE);
710 }
711
712 void ieee80211_tx_status_irqsafe(struct ieee80211_hw *hw,
713                                  struct sk_buff *skb,
714                                  struct ieee80211_tx_status *status)
715 {
716         struct ieee80211_local *local = hw_to_local(hw);
717         struct ieee80211_tx_status *saved;
718         int tmp;
719
720         skb->dev = local->mdev;
721         saved = kmalloc(sizeof(struct ieee80211_tx_status), GFP_ATOMIC);
722         if (unlikely(!saved)) {
723                 if (net_ratelimit())
724                         printk(KERN_WARNING "%s: Not enough memory, "
725                                "dropping tx status", skb->dev->name);
726                 /* should be dev_kfree_skb_irq, but due to this function being
727                  * named _irqsafe instead of just _irq we can't be sure that
728                  * people won't call it from non-irq contexts */
729                 dev_kfree_skb_any(skb);
730                 return;
731         }
732         memcpy(saved, status, sizeof(struct ieee80211_tx_status));
733         /* copy pointer to saved status into skb->cb for use by tasklet */
734         memcpy(skb->cb, &saved, sizeof(saved));
735
736         skb->pkt_type = IEEE80211_TX_STATUS_MSG;
737         skb_queue_tail(status->control.flags & IEEE80211_TXCTL_REQ_TX_STATUS ?
738                        &local->skb_queue : &local->skb_queue_unreliable, skb);
739         tmp = skb_queue_len(&local->skb_queue) +
740                 skb_queue_len(&local->skb_queue_unreliable);
741         while (tmp > IEEE80211_IRQSAFE_QUEUE_LIMIT &&
742                (skb = skb_dequeue(&local->skb_queue_unreliable))) {
743                 memcpy(&saved, skb->cb, sizeof(saved));
744                 kfree(saved);
745                 dev_kfree_skb_irq(skb);
746                 tmp--;
747                 I802_DEBUG_INC(local->tx_status_drop);
748         }
749         tasklet_schedule(&local->tasklet);
750 }
751 EXPORT_SYMBOL(ieee80211_tx_status_irqsafe);
752
753 static void ieee80211_tasklet_handler(unsigned long data)
754 {
755         struct ieee80211_local *local = (struct ieee80211_local *) data;
756         struct sk_buff *skb;
757         struct ieee80211_rx_status rx_status;
758         struct ieee80211_tx_status *tx_status;
759
760         while ((skb = skb_dequeue(&local->skb_queue)) ||
761                (skb = skb_dequeue(&local->skb_queue_unreliable))) {
762                 switch (skb->pkt_type) {
763                 case IEEE80211_RX_MSG:
764                         /* status is in skb->cb */
765                         memcpy(&rx_status, skb->cb, sizeof(rx_status));
766                         /* Clear skb->type in order to not confuse kernel
767                          * netstack. */
768                         skb->pkt_type = 0;
769                         __ieee80211_rx(local_to_hw(local), skb, &rx_status);
770                         break;
771                 case IEEE80211_TX_STATUS_MSG:
772                         /* get pointer to saved status out of skb->cb */
773                         memcpy(&tx_status, skb->cb, sizeof(tx_status));
774                         skb->pkt_type = 0;
775                         ieee80211_tx_status(local_to_hw(local),
776                                             skb, tx_status);
777                         kfree(tx_status);
778                         break;
779                 default: /* should never get here! */
780                         printk(KERN_ERR "%s: Unknown message type (%d)\n",
781                                wiphy_name(local->hw.wiphy), skb->pkt_type);
782                         dev_kfree_skb(skb);
783                         break;
784                 }
785         }
786 }
787
788 /* Remove added headers (e.g., QoS control), encryption header/MIC, etc. to
789  * make a prepared TX frame (one that has been given to hw) to look like brand
790  * new IEEE 802.11 frame that is ready to go through TX processing again.
791  * Also, tx_packet_data in cb is restored from tx_control. */
792 static void ieee80211_remove_tx_extra(struct ieee80211_local *local,
793                                       struct ieee80211_key *key,
794                                       struct sk_buff *skb,
795                                       struct ieee80211_tx_control *control)
796 {
797         int hdrlen, iv_len, mic_len;
798         struct ieee80211_tx_packet_data *pkt_data;
799
800         pkt_data = (struct ieee80211_tx_packet_data *)skb->cb;
801         pkt_data->ifindex = control->ifindex;
802         pkt_data->flags = 0;
803         if (control->flags & IEEE80211_TXCTL_REQ_TX_STATUS)
804                 pkt_data->flags |= IEEE80211_TXPD_REQ_TX_STATUS;
805         if (control->flags & IEEE80211_TXCTL_DO_NOT_ENCRYPT)
806                 pkt_data->flags |= IEEE80211_TXPD_DO_NOT_ENCRYPT;
807         if (control->flags & IEEE80211_TXCTL_REQUEUE)
808                 pkt_data->flags |= IEEE80211_TXPD_REQUEUE;
809         if (control->type == IEEE80211_IF_TYPE_MGMT)
810                 pkt_data->flags |= IEEE80211_TXPD_MGMT_IFACE;
811         pkt_data->queue = control->queue;
812
813         hdrlen = ieee80211_get_hdrlen_from_skb(skb);
814
815         if (!key)
816                 goto no_key;
817
818         switch (key->conf.alg) {
819         case ALG_WEP:
820                 iv_len = WEP_IV_LEN;
821                 mic_len = WEP_ICV_LEN;
822                 break;
823         case ALG_TKIP:
824                 iv_len = TKIP_IV_LEN;
825                 mic_len = TKIP_ICV_LEN;
826                 break;
827         case ALG_CCMP:
828                 iv_len = CCMP_HDR_LEN;
829                 mic_len = CCMP_MIC_LEN;
830                 break;
831         default:
832                 goto no_key;
833         }
834
835         if (skb->len >= mic_len &&
836             !(key->flags & KEY_FLAG_UPLOADED_TO_HARDWARE))
837                 skb_trim(skb, skb->len - mic_len);
838         if (skb->len >= iv_len && skb->len > hdrlen) {
839                 memmove(skb->data + iv_len, skb->data, hdrlen);
840                 skb_pull(skb, iv_len);
841         }
842
843 no_key:
844         {
845                 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
846                 u16 fc = le16_to_cpu(hdr->frame_control);
847                 if ((fc & 0x8C) == 0x88) /* QoS Control Field */ {
848                         fc &= ~IEEE80211_STYPE_QOS_DATA;
849                         hdr->frame_control = cpu_to_le16(fc);
850                         memmove(skb->data + 2, skb->data, hdrlen - 2);
851                         skb_pull(skb, 2);
852                 }
853         }
854 }
855
856 void ieee80211_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb,
857                          struct ieee80211_tx_status *status)
858 {
859         struct sk_buff *skb2;
860         struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
861         struct ieee80211_local *local = hw_to_local(hw);
862         u16 frag, type;
863         u32 msg_type;
864         struct ieee80211_tx_status_rtap_hdr *rthdr;
865         struct ieee80211_sub_if_data *sdata;
866         int monitors;
867
868         if (!status) {
869                 printk(KERN_ERR
870                        "%s: ieee80211_tx_status called with NULL status\n",
871                        wiphy_name(local->hw.wiphy));
872                 dev_kfree_skb(skb);
873                 return;
874         }
875
876         if (status->excessive_retries) {
877                 struct sta_info *sta;
878                 sta = sta_info_get(local, hdr->addr1);
879                 if (sta) {
880                         if (sta->flags & WLAN_STA_PS) {
881                                 /* The STA is in power save mode, so assume
882                                  * that this TX packet failed because of that.
883                                  */
884                                 status->excessive_retries = 0;
885                                 status->flags |= IEEE80211_TX_STATUS_TX_FILTERED;
886                         }
887                         sta_info_put(sta);
888                 }
889         }
890
891         if (status->flags & IEEE80211_TX_STATUS_TX_FILTERED) {
892                 struct sta_info *sta;
893                 sta = sta_info_get(local, hdr->addr1);
894                 if (sta) {
895                         sta->tx_filtered_count++;
896
897                         /* Clear the TX filter mask for this STA when sending
898                          * the next packet. If the STA went to power save mode,
899                          * this will happen when it is waking up for the next
900                          * time. */
901                         sta->clear_dst_mask = 1;
902
903                         /* TODO: Is the WLAN_STA_PS flag always set here or is
904                          * the race between RX and TX status causing some
905                          * packets to be filtered out before 80211.o gets an
906                          * update for PS status? This seems to be the case, so
907                          * no changes are likely to be needed. */
908                         if (sta->flags & WLAN_STA_PS &&
909                             skb_queue_len(&sta->tx_filtered) <
910                             STA_MAX_TX_BUFFER) {
911                                 ieee80211_remove_tx_extra(local, sta->key,
912                                                           skb,
913                                                           &status->control);
914                                 skb_queue_tail(&sta->tx_filtered, skb);
915                         } else if (!(sta->flags & WLAN_STA_PS) &&
916                                    !(status->control.flags & IEEE80211_TXCTL_REQUEUE)) {
917                                 /* Software retry the packet once */
918                                 status->control.flags |= IEEE80211_TXCTL_REQUEUE;
919                                 ieee80211_remove_tx_extra(local, sta->key,
920                                                           skb,
921                                                           &status->control);
922                                 dev_queue_xmit(skb);
923                         } else {
924                                 if (net_ratelimit()) {
925                                         printk(KERN_DEBUG "%s: dropped TX "
926                                                "filtered frame queue_len=%d "
927                                                "PS=%d @%lu\n",
928                                                wiphy_name(local->hw.wiphy),
929                                                skb_queue_len(
930                                                        &sta->tx_filtered),
931                                                !!(sta->flags & WLAN_STA_PS),
932                                                jiffies);
933                                 }
934                                 dev_kfree_skb(skb);
935                         }
936                         sta_info_put(sta);
937                         return;
938                 }
939         } else {
940                 /* FIXME: STUPID to call this with both local and local->mdev */
941                 rate_control_tx_status(local, local->mdev, skb, status);
942         }
943
944         ieee80211_led_tx(local, 0);
945
946         /* SNMP counters
947          * Fragments are passed to low-level drivers as separate skbs, so these
948          * are actually fragments, not frames. Update frame counters only for
949          * the first fragment of the frame. */
950
951         frag = le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG;
952         type = le16_to_cpu(hdr->frame_control) & IEEE80211_FCTL_FTYPE;
953
954         if (status->flags & IEEE80211_TX_STATUS_ACK) {
955                 if (frag == 0) {
956                         local->dot11TransmittedFrameCount++;
957                         if (is_multicast_ether_addr(hdr->addr1))
958                                 local->dot11MulticastTransmittedFrameCount++;
959                         if (status->retry_count > 0)
960                                 local->dot11RetryCount++;
961                         if (status->retry_count > 1)
962                                 local->dot11MultipleRetryCount++;
963                 }
964
965                 /* This counter shall be incremented for an acknowledged MPDU
966                  * with an individual address in the address 1 field or an MPDU
967                  * with a multicast address in the address 1 field of type Data
968                  * or Management. */
969                 if (!is_multicast_ether_addr(hdr->addr1) ||
970                     type == IEEE80211_FTYPE_DATA ||
971                     type == IEEE80211_FTYPE_MGMT)
972                         local->dot11TransmittedFragmentCount++;
973         } else {
974                 if (frag == 0)
975                         local->dot11FailedCount++;
976         }
977
978         msg_type = (status->flags & IEEE80211_TX_STATUS_ACK) ?
979                 ieee80211_msg_tx_callback_ack : ieee80211_msg_tx_callback_fail;
980
981         /* this was a transmitted frame, but now we want to reuse it */
982         skb_orphan(skb);
983
984         if ((status->control.flags & IEEE80211_TXCTL_REQ_TX_STATUS) &&
985             local->apdev) {
986                 if (local->monitors) {
987                         skb2 = skb_clone(skb, GFP_ATOMIC);
988                 } else {
989                         skb2 = skb;
990                         skb = NULL;
991                 }
992
993                 if (skb2)
994                         /* Send frame to hostapd */
995                         ieee80211_rx_mgmt(local, skb2, NULL, msg_type);
996
997                 if (!skb)
998                         return;
999         }
1000
1001         if (!local->monitors) {
1002                 dev_kfree_skb(skb);
1003                 return;
1004         }
1005
1006         /* send frame to monitor interfaces now */
1007
1008         if (skb_headroom(skb) < sizeof(*rthdr)) {
1009                 printk(KERN_ERR "ieee80211_tx_status: headroom too small\n");
1010                 dev_kfree_skb(skb);
1011                 return;
1012         }
1013
1014         rthdr = (struct ieee80211_tx_status_rtap_hdr*)
1015                                 skb_push(skb, sizeof(*rthdr));
1016
1017         memset(rthdr, 0, sizeof(*rthdr));
1018         rthdr->hdr.it_len = cpu_to_le16(sizeof(*rthdr));
1019         rthdr->hdr.it_present =
1020                 cpu_to_le32((1 << IEEE80211_RADIOTAP_TX_FLAGS) |
1021                             (1 << IEEE80211_RADIOTAP_DATA_RETRIES));
1022
1023         if (!(status->flags & IEEE80211_TX_STATUS_ACK) &&
1024             !is_multicast_ether_addr(hdr->addr1))
1025                 rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_FAIL);
1026
1027         if ((status->control.flags & IEEE80211_TXCTL_USE_RTS_CTS) &&
1028             (status->control.flags & IEEE80211_TXCTL_USE_CTS_PROTECT))
1029                 rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_CTS);
1030         else if (status->control.flags & IEEE80211_TXCTL_USE_RTS_CTS)
1031                 rthdr->tx_flags |= cpu_to_le16(IEEE80211_RADIOTAP_F_TX_RTS);
1032
1033         rthdr->data_retries = status->retry_count;
1034
1035         rcu_read_lock();
1036         monitors = local->monitors;
1037         list_for_each_entry_rcu(sdata, &local->interfaces, list) {
1038                 /*
1039                  * Using the monitors counter is possibly racy, but
1040                  * if the value is wrong we simply either clone the skb
1041                  * once too much or forget sending it to one monitor iface
1042                  * The latter case isn't nice but fixing the race is much
1043                  * more complicated.
1044                  */
1045                 if (!monitors || !skb)
1046                         goto out;
1047
1048                 if (sdata->type == IEEE80211_IF_TYPE_MNTR) {
1049                         if (!netif_running(sdata->dev))
1050                                 continue;
1051                         monitors--;
1052                         if (monitors)
1053                                 skb2 = skb_clone(skb, GFP_ATOMIC);
1054                         else
1055                                 skb2 = NULL;
1056                         skb->dev = sdata->dev;
1057                         /* XXX: is this sufficient for BPF? */
1058                         skb_set_mac_header(skb, 0);
1059                         skb->ip_summed = CHECKSUM_UNNECESSARY;
1060                         skb->pkt_type = PACKET_OTHERHOST;
1061                         skb->protocol = htons(ETH_P_802_2);
1062                         memset(skb->cb, 0, sizeof(skb->cb));
1063                         netif_rx(skb);
1064                         skb = skb2;
1065                 }
1066         }
1067  out:
1068         rcu_read_unlock();
1069         if (skb)
1070                 dev_kfree_skb(skb);
1071 }
1072 EXPORT_SYMBOL(ieee80211_tx_status);
1073
1074 struct ieee80211_hw *ieee80211_alloc_hw(size_t priv_data_len,
1075                                         const struct ieee80211_ops *ops)
1076 {
1077         struct net_device *mdev;
1078         struct ieee80211_local *local;
1079         struct ieee80211_sub_if_data *sdata;
1080         int priv_size;
1081         struct wiphy *wiphy;
1082
1083         /* Ensure 32-byte alignment of our private data and hw private data.
1084          * We use the wiphy priv data for both our ieee80211_local and for
1085          * the driver's private data
1086          *
1087          * In memory it'll be like this:
1088          *
1089          * +-------------------------+
1090          * | struct wiphy           |
1091          * +-------------------------+
1092          * | struct ieee80211_local  |
1093          * +-------------------------+
1094          * | driver's private data   |
1095          * +-------------------------+
1096          *
1097          */
1098         priv_size = ((sizeof(struct ieee80211_local) +
1099                       NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST) +
1100                     priv_data_len;
1101
1102         wiphy = wiphy_new(&mac80211_config_ops, priv_size);
1103
1104         if (!wiphy)
1105                 return NULL;
1106
1107         wiphy->privid = mac80211_wiphy_privid;
1108
1109         local = wiphy_priv(wiphy);
1110         local->hw.wiphy = wiphy;
1111
1112         local->hw.priv = (char *)local +
1113                          ((sizeof(struct ieee80211_local) +
1114                            NETDEV_ALIGN_CONST) & ~NETDEV_ALIGN_CONST);
1115
1116         BUG_ON(!ops->tx);
1117         BUG_ON(!ops->start);
1118         BUG_ON(!ops->stop);
1119         BUG_ON(!ops->config);
1120         BUG_ON(!ops->add_interface);
1121         BUG_ON(!ops->remove_interface);
1122         BUG_ON(!ops->configure_filter);
1123         local->ops = ops;
1124
1125         /* for now, mdev needs sub_if_data :/ */
1126         mdev = alloc_netdev(sizeof(struct ieee80211_sub_if_data),
1127                             "wmaster%d", ether_setup);
1128         if (!mdev) {
1129                 wiphy_free(wiphy);
1130                 return NULL;
1131         }
1132
1133         sdata = IEEE80211_DEV_TO_SUB_IF(mdev);
1134         mdev->ieee80211_ptr = &sdata->wdev;
1135         sdata->wdev.wiphy = wiphy;
1136
1137         local->hw.queues = 1; /* default */
1138
1139         local->mdev = mdev;
1140         local->rx_pre_handlers = ieee80211_rx_pre_handlers;
1141         local->rx_handlers = ieee80211_rx_handlers;
1142         local->tx_handlers = ieee80211_tx_handlers;
1143
1144         local->bridge_packets = 1;
1145
1146         local->rts_threshold = IEEE80211_MAX_RTS_THRESHOLD;
1147         local->fragmentation_threshold = IEEE80211_MAX_FRAG_THRESHOLD;
1148         local->short_retry_limit = 7;
1149         local->long_retry_limit = 4;
1150         local->hw.conf.radio_enabled = 1;
1151
1152         local->enabled_modes = ~0;
1153
1154         INIT_LIST_HEAD(&local->modes_list);
1155
1156         INIT_LIST_HEAD(&local->interfaces);
1157
1158         INIT_DELAYED_WORK(&local->scan_work, ieee80211_sta_scan_work);
1159         ieee80211_rx_bss_list_init(mdev);
1160
1161         sta_info_init(local);
1162
1163         mdev->hard_start_xmit = ieee80211_master_start_xmit;
1164         mdev->open = ieee80211_master_open;
1165         mdev->stop = ieee80211_master_stop;
1166         mdev->type = ARPHRD_IEEE80211;
1167         mdev->header_ops = &ieee80211_header_ops;
1168         mdev->set_multicast_list = ieee80211_master_set_multicast_list;
1169
1170         sdata->type = IEEE80211_IF_TYPE_AP;
1171         sdata->dev = mdev;
1172         sdata->local = local;
1173         sdata->u.ap.force_unicast_rateidx = -1;
1174         sdata->u.ap.max_ratectrl_rateidx = -1;
1175         ieee80211_if_sdata_init(sdata);
1176         /* no RCU needed since we're still during init phase */
1177         list_add_tail(&sdata->list, &local->interfaces);
1178
1179         tasklet_init(&local->tx_pending_tasklet, ieee80211_tx_pending,
1180                      (unsigned long)local);
1181         tasklet_disable(&local->tx_pending_tasklet);
1182
1183         tasklet_init(&local->tasklet,
1184                      ieee80211_tasklet_handler,
1185                      (unsigned long) local);
1186         tasklet_disable(&local->tasklet);
1187
1188         skb_queue_head_init(&local->skb_queue);
1189         skb_queue_head_init(&local->skb_queue_unreliable);
1190
1191         return local_to_hw(local);
1192 }
1193 EXPORT_SYMBOL(ieee80211_alloc_hw);
1194
1195 int ieee80211_register_hw(struct ieee80211_hw *hw)
1196 {
1197         struct ieee80211_local *local = hw_to_local(hw);
1198         const char *name;
1199         int result;
1200
1201         result = wiphy_register(local->hw.wiphy);
1202         if (result < 0)
1203                 return result;
1204
1205         name = wiphy_dev(local->hw.wiphy)->driver->name;
1206         local->hw.workqueue = create_singlethread_workqueue(name);
1207         if (!local->hw.workqueue) {
1208                 result = -ENOMEM;
1209                 goto fail_workqueue;
1210         }
1211
1212         /*
1213          * The hardware needs headroom for sending the frame,
1214          * and we need some headroom for passing the frame to monitor
1215          * interfaces, but never both at the same time.
1216          */
1217         local->tx_headroom = max_t(unsigned int , local->hw.extra_tx_headroom,
1218                                    sizeof(struct ieee80211_tx_status_rtap_hdr));
1219
1220         debugfs_hw_add(local);
1221
1222         local->hw.conf.beacon_int = 1000;
1223
1224         local->wstats_flags |= local->hw.max_rssi ?
1225                                IW_QUAL_LEVEL_UPDATED : IW_QUAL_LEVEL_INVALID;
1226         local->wstats_flags |= local->hw.max_signal ?
1227                                IW_QUAL_QUAL_UPDATED : IW_QUAL_QUAL_INVALID;
1228         local->wstats_flags |= local->hw.max_noise ?
1229                                IW_QUAL_NOISE_UPDATED : IW_QUAL_NOISE_INVALID;
1230         if (local->hw.max_rssi < 0 || local->hw.max_noise < 0)
1231                 local->wstats_flags |= IW_QUAL_DBM;
1232
1233         result = sta_info_start(local);
1234         if (result < 0)
1235                 goto fail_sta_info;
1236
1237         rtnl_lock();
1238         result = dev_alloc_name(local->mdev, local->mdev->name);
1239         if (result < 0)
1240                 goto fail_dev;
1241
1242         memcpy(local->mdev->dev_addr, local->hw.wiphy->perm_addr, ETH_ALEN);
1243         SET_NETDEV_DEV(local->mdev, wiphy_dev(local->hw.wiphy));
1244
1245         result = register_netdevice(local->mdev);
1246         if (result < 0)
1247                 goto fail_dev;
1248
1249         ieee80211_debugfs_add_netdev(IEEE80211_DEV_TO_SUB_IF(local->mdev));
1250         ieee80211_if_set_type(local->mdev, IEEE80211_IF_TYPE_AP);
1251
1252         result = ieee80211_init_rate_ctrl_alg(local, NULL);
1253         if (result < 0) {
1254                 printk(KERN_DEBUG "%s: Failed to initialize rate control "
1255                        "algorithm\n", wiphy_name(local->hw.wiphy));
1256                 goto fail_rate;
1257         }
1258
1259         result = ieee80211_wep_init(local);
1260
1261         if (result < 0) {
1262                 printk(KERN_DEBUG "%s: Failed to initialize wep\n",
1263                        wiphy_name(local->hw.wiphy));
1264                 goto fail_wep;
1265         }
1266
1267         ieee80211_install_qdisc(local->mdev);
1268
1269         /* add one default STA interface */
1270         result = ieee80211_if_add(local->mdev, "wlan%d", NULL,
1271                                   IEEE80211_IF_TYPE_STA);
1272         if (result)
1273                 printk(KERN_WARNING "%s: Failed to add default virtual iface\n",
1274                        wiphy_name(local->hw.wiphy));
1275
1276         local->reg_state = IEEE80211_DEV_REGISTERED;
1277         rtnl_unlock();
1278
1279         ieee80211_led_init(local);
1280
1281         return 0;
1282
1283 fail_wep:
1284         rate_control_deinitialize(local);
1285 fail_rate:
1286         ieee80211_debugfs_remove_netdev(IEEE80211_DEV_TO_SUB_IF(local->mdev));
1287         unregister_netdevice(local->mdev);
1288 fail_dev:
1289         rtnl_unlock();
1290         sta_info_stop(local);
1291 fail_sta_info:
1292         debugfs_hw_del(local);
1293         destroy_workqueue(local->hw.workqueue);
1294 fail_workqueue:
1295         wiphy_unregister(local->hw.wiphy);
1296         return result;
1297 }
1298 EXPORT_SYMBOL(ieee80211_register_hw);
1299
1300 int ieee80211_register_hwmode(struct ieee80211_hw *hw,
1301                               struct ieee80211_hw_mode *mode)
1302 {
1303         struct ieee80211_local *local = hw_to_local(hw);
1304         struct ieee80211_rate *rate;
1305         int i;
1306
1307         INIT_LIST_HEAD(&mode->list);
1308         list_add_tail(&mode->list, &local->modes_list);
1309
1310         local->hw_modes |= (1 << mode->mode);
1311         for (i = 0; i < mode->num_rates; i++) {
1312                 rate = &(mode->rates[i]);
1313                 rate->rate_inv = CHAN_UTIL_RATE_LCM / rate->rate;
1314         }
1315         ieee80211_prepare_rates(local, mode);
1316
1317         if (!local->oper_hw_mode) {
1318                 /* Default to this mode */
1319                 local->hw.conf.phymode = mode->mode;
1320                 local->oper_hw_mode = local->scan_hw_mode = mode;
1321                 local->oper_channel = local->scan_channel = &mode->channels[0];
1322                 local->hw.conf.mode = local->oper_hw_mode;
1323                 local->hw.conf.chan = local->oper_channel;
1324         }
1325
1326         if (!(hw->flags & IEEE80211_HW_DEFAULT_REG_DOMAIN_CONFIGURED))
1327                 ieee80211_set_default_regdomain(mode);
1328
1329         return 0;
1330 }
1331 EXPORT_SYMBOL(ieee80211_register_hwmode);
1332
1333 void ieee80211_unregister_hw(struct ieee80211_hw *hw)
1334 {
1335         struct ieee80211_local *local = hw_to_local(hw);
1336         struct ieee80211_sub_if_data *sdata, *tmp;
1337         int i;
1338
1339         tasklet_kill(&local->tx_pending_tasklet);
1340         tasklet_kill(&local->tasklet);
1341
1342         rtnl_lock();
1343
1344         BUG_ON(local->reg_state != IEEE80211_DEV_REGISTERED);
1345
1346         local->reg_state = IEEE80211_DEV_UNREGISTERED;
1347         if (local->apdev)
1348                 ieee80211_if_del_mgmt(local);
1349
1350         /*
1351          * At this point, interface list manipulations are fine
1352          * because the driver cannot be handing us frames any
1353          * more and the tasklet is killed.
1354          */
1355
1356         /*
1357          * First, we remove all non-master interfaces. Do this because they
1358          * may have bss pointer dependency on the master, and when we free
1359          * the master these would be freed as well, breaking our list
1360          * iteration completely.
1361          */
1362         list_for_each_entry_safe(sdata, tmp, &local->interfaces, list) {
1363                 if (sdata->dev == local->mdev)
1364                         continue;
1365                 list_del(&sdata->list);
1366                 __ieee80211_if_del(local, sdata);
1367         }
1368
1369         /* then, finally, remove the master interface */
1370         __ieee80211_if_del(local, IEEE80211_DEV_TO_SUB_IF(local->mdev));
1371
1372         rtnl_unlock();
1373
1374         ieee80211_rx_bss_list_deinit(local->mdev);
1375         ieee80211_clear_tx_pending(local);
1376         sta_info_stop(local);
1377         rate_control_deinitialize(local);
1378         debugfs_hw_del(local);
1379
1380         for (i = 0; i < NUM_IEEE80211_MODES; i++) {
1381                 kfree(local->supp_rates[i]);
1382                 kfree(local->basic_rates[i]);
1383         }
1384
1385         if (skb_queue_len(&local->skb_queue)
1386                         || skb_queue_len(&local->skb_queue_unreliable))
1387                 printk(KERN_WARNING "%s: skb_queue not empty\n",
1388                        wiphy_name(local->hw.wiphy));
1389         skb_queue_purge(&local->skb_queue);
1390         skb_queue_purge(&local->skb_queue_unreliable);
1391
1392         destroy_workqueue(local->hw.workqueue);
1393         wiphy_unregister(local->hw.wiphy);
1394         ieee80211_wep_free(local);
1395         ieee80211_led_exit(local);
1396 }
1397 EXPORT_SYMBOL(ieee80211_unregister_hw);
1398
1399 void ieee80211_free_hw(struct ieee80211_hw *hw)
1400 {
1401         struct ieee80211_local *local = hw_to_local(hw);
1402
1403         ieee80211_if_free(local->mdev);
1404         wiphy_free(local->hw.wiphy);
1405 }
1406 EXPORT_SYMBOL(ieee80211_free_hw);
1407
1408 static int __init ieee80211_init(void)
1409 {
1410         struct sk_buff *skb;
1411         int ret;
1412
1413         BUILD_BUG_ON(sizeof(struct ieee80211_tx_packet_data) > sizeof(skb->cb));
1414
1415         ret = ieee80211_wme_register();
1416         if (ret) {
1417                 printk(KERN_DEBUG "ieee80211_init: failed to "
1418                        "initialize WME (err=%d)\n", ret);
1419                 return ret;
1420         }
1421
1422         ieee80211_debugfs_netdev_init();
1423         ieee80211_regdomain_init();
1424
1425         return 0;
1426 }
1427
1428 static void __exit ieee80211_exit(void)
1429 {
1430         ieee80211_wme_unregister();
1431         ieee80211_debugfs_netdev_exit();
1432 }
1433
1434
1435 subsys_initcall(ieee80211_init);
1436 module_exit(ieee80211_exit);
1437
1438 MODULE_DESCRIPTION("IEEE 802.11 subsystem");
1439 MODULE_LICENSE("GPL");