2 * Original code based Host AP (software wireless LAN access point) driver
3 * for Intersil Prism2/2.5/3 - hostap.o module, common routines
5 * Copyright (c) 2001-2002, SSH Communications Security Corp and Jouni Malinen
7 * Copyright (c) 2002-2003, Jouni Malinen <jkmaline@cc.hut.fi>
8 * Copyright (c) 2004-2005, Intel Corporation
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation. See README and COPYING for
16 #include <linux/compiler.h>
17 #include <linux/config.h>
18 #include <linux/errno.h>
19 #include <linux/if_arp.h>
20 #include <linux/in6.h>
23 #include <linux/kernel.h>
24 #include <linux/module.h>
25 #include <linux/netdevice.h>
26 #include <linux/proc_fs.h>
27 #include <linux/skbuff.h>
28 #include <linux/slab.h>
29 #include <linux/tcp.h>
30 #include <linux/types.h>
31 #include <linux/version.h>
32 #include <linux/wireless.h>
33 #include <linux/etherdevice.h>
34 #include <asm/uaccess.h>
35 #include <linux/ctype.h>
37 #include <net/ieee80211.h>
39 static inline void ieee80211_monitor_rx(struct ieee80211_device *ieee,
41 struct ieee80211_rx_stats *rx_stats)
43 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
44 u16 fc = le16_to_cpu(hdr->frame_ctl);
47 skb->mac.raw = skb->data;
48 skb_pull(skb, ieee80211_get_hdrlen(fc));
49 skb->pkt_type = PACKET_OTHERHOST;
50 skb->protocol = __constant_htons(ETH_P_80211_RAW);
51 memset(skb->cb, 0, sizeof(skb->cb));
55 /* Called only as a tasklet (software IRQ) */
56 static struct ieee80211_frag_entry *ieee80211_frag_cache_find(struct
64 struct ieee80211_frag_entry *entry;
67 for (i = 0; i < IEEE80211_FRAG_CACHE_LEN; i++) {
68 entry = &ieee->frag_cache[i];
69 if (entry->skb != NULL &&
70 time_after(jiffies, entry->first_frag_time + 2 * HZ)) {
71 IEEE80211_DEBUG_FRAG("expiring fragment cache entry "
72 "seq=%u last_frag=%u\n",
73 entry->seq, entry->last_frag);
74 dev_kfree_skb_any(entry->skb);
78 if (entry->skb != NULL && entry->seq == seq &&
79 (entry->last_frag + 1 == frag || frag == -1) &&
80 memcmp(entry->src_addr, src, ETH_ALEN) == 0 &&
81 memcmp(entry->dst_addr, dst, ETH_ALEN) == 0)
88 /* Called only as a tasklet (software IRQ) */
89 static struct sk_buff *ieee80211_frag_cache_get(struct ieee80211_device *ieee,
90 struct ieee80211_hdr_4addr *hdr)
92 struct sk_buff *skb = NULL;
94 unsigned int frag, seq;
95 struct ieee80211_frag_entry *entry;
97 sc = le16_to_cpu(hdr->seq_ctl);
98 frag = WLAN_GET_SEQ_FRAG(sc);
99 seq = WLAN_GET_SEQ_SEQ(sc);
102 /* Reserve enough space to fit maximum frame length */
103 skb = dev_alloc_skb(ieee->dev->mtu +
104 sizeof(struct ieee80211_hdr_4addr) +
107 8 /* WEP */ + ETH_ALEN /* WDS */ );
111 entry = &ieee->frag_cache[ieee->frag_next_idx];
112 ieee->frag_next_idx++;
113 if (ieee->frag_next_idx >= IEEE80211_FRAG_CACHE_LEN)
114 ieee->frag_next_idx = 0;
116 if (entry->skb != NULL)
117 dev_kfree_skb_any(entry->skb);
119 entry->first_frag_time = jiffies;
121 entry->last_frag = frag;
123 memcpy(entry->src_addr, hdr->addr2, ETH_ALEN);
124 memcpy(entry->dst_addr, hdr->addr1, ETH_ALEN);
126 /* received a fragment of a frame for which the head fragment
127 * should have already been received */
128 entry = ieee80211_frag_cache_find(ieee, seq, frag, hdr->addr2,
131 entry->last_frag = frag;
139 /* Called only as a tasklet (software IRQ) */
140 static int ieee80211_frag_cache_invalidate(struct ieee80211_device *ieee,
141 struct ieee80211_hdr_4addr *hdr)
145 struct ieee80211_frag_entry *entry;
147 sc = le16_to_cpu(hdr->seq_ctl);
148 seq = WLAN_GET_SEQ_SEQ(sc);
150 entry = ieee80211_frag_cache_find(ieee, seq, -1, hdr->addr2,
154 IEEE80211_DEBUG_FRAG("could not invalidate fragment cache "
155 "entry (seq=%u)\n", seq);
164 /* ieee80211_rx_frame_mgtmt
166 * Responsible for handling management control frames
168 * Called by ieee80211_rx */
170 ieee80211_rx_frame_mgmt(struct ieee80211_device *ieee, struct sk_buff *skb,
171 struct ieee80211_rx_stats *rx_stats, u16 type,
174 if (ieee->iw_mode == IW_MODE_MASTER) {
175 printk(KERN_DEBUG "%s: Master mode not yet suppported.\n",
179 hostap_update_sta_ps(ieee, (struct hostap_ieee80211_hdr_4addr *)
183 if (ieee->hostapd && type == WLAN_FC_TYPE_MGMT) {
184 if (stype == WLAN_FC_STYPE_BEACON &&
185 ieee->iw_mode == IW_MODE_MASTER) {
186 struct sk_buff *skb2;
187 /* Process beacon frames also in kernel driver to
188 * update STA(AP) table statistics */
189 skb2 = skb_clone(skb, GFP_ATOMIC);
191 hostap_rx(skb2->dev, skb2, rx_stats);
194 /* send management frames to the user space daemon for
196 ieee->apdevstats.rx_packets++;
197 ieee->apdevstats.rx_bytes += skb->len;
198 prism2_rx_80211(ieee->apdev, skb, rx_stats, PRISM2_RX_MGMT);
202 if (ieee->iw_mode == IW_MODE_MASTER) {
203 if (type != WLAN_FC_TYPE_MGMT && type != WLAN_FC_TYPE_CTRL) {
204 printk(KERN_DEBUG "%s: unknown management frame "
205 "(type=0x%02x, stype=0x%02x) dropped\n",
206 skb->dev->name, type, stype);
210 hostap_rx(skb->dev, skb, rx_stats);
214 printk(KERN_DEBUG "%s: hostap_rx_frame_mgmt: management frame "
215 "received in non-Host AP mode\n", skb->dev->name);
220 /* See IEEE 802.1H for LLC/SNAP encapsulation/decapsulation */
221 /* Ethernet-II snap header (RFC1042 for most EtherTypes) */
222 static unsigned char rfc1042_header[] = { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
224 /* Bridge-Tunnel header (for EtherTypes ETH_P_AARP and ETH_P_IPX) */
225 static unsigned char bridge_tunnel_header[] =
226 { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0xf8 };
227 /* No encapsulation header if EtherType < 0x600 (=length) */
229 /* Called by ieee80211_rx_frame_decrypt */
230 static int ieee80211_is_eapol_frame(struct ieee80211_device *ieee,
233 struct net_device *dev = ieee->dev;
235 struct ieee80211_hdr_3addr *hdr;
241 hdr = (struct ieee80211_hdr_3addr *)skb->data;
242 fc = le16_to_cpu(hdr->frame_ctl);
244 /* check that the frame is unicast frame to us */
245 if ((fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) ==
246 IEEE80211_FCTL_TODS &&
247 memcmp(hdr->addr1, dev->dev_addr, ETH_ALEN) == 0 &&
248 memcmp(hdr->addr3, dev->dev_addr, ETH_ALEN) == 0) {
249 /* ToDS frame with own addr BSSID and DA */
250 } else if ((fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) ==
251 IEEE80211_FCTL_FROMDS &&
252 memcmp(hdr->addr1, dev->dev_addr, ETH_ALEN) == 0) {
253 /* FromDS frame with own addr as DA */
257 if (skb->len < 24 + 8)
260 /* check for port access entity Ethernet type */
261 pos = skb->data + 24;
262 ethertype = (pos[6] << 8) | pos[7];
263 if (ethertype == ETH_P_PAE)
269 /* Called only as a tasklet (software IRQ), by ieee80211_rx */
271 ieee80211_rx_frame_decrypt(struct ieee80211_device *ieee, struct sk_buff *skb,
272 struct ieee80211_crypt_data *crypt)
274 struct ieee80211_hdr_3addr *hdr;
277 if (crypt == NULL || crypt->ops->decrypt_mpdu == NULL)
280 hdr = (struct ieee80211_hdr_3addr *)skb->data;
281 hdrlen = ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_ctl));
283 atomic_inc(&crypt->refcnt);
284 res = crypt->ops->decrypt_mpdu(skb, hdrlen, crypt->priv);
285 atomic_dec(&crypt->refcnt);
287 IEEE80211_DEBUG_DROP("decryption failed (SA=" MAC_FMT
288 ") res=%d\n", MAC_ARG(hdr->addr2), res);
290 IEEE80211_DEBUG_DROP("Decryption failed ICV "
291 "mismatch (key %d)\n",
292 skb->data[hdrlen + 3] >> 6);
293 ieee->ieee_stats.rx_discards_undecryptable++;
300 /* Called only as a tasklet (software IRQ), by ieee80211_rx */
302 ieee80211_rx_frame_decrypt_msdu(struct ieee80211_device *ieee,
303 struct sk_buff *skb, int keyidx,
304 struct ieee80211_crypt_data *crypt)
306 struct ieee80211_hdr_3addr *hdr;
309 if (crypt == NULL || crypt->ops->decrypt_msdu == NULL)
312 hdr = (struct ieee80211_hdr_3addr *)skb->data;
313 hdrlen = ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_ctl));
315 atomic_inc(&crypt->refcnt);
316 res = crypt->ops->decrypt_msdu(skb, keyidx, hdrlen, crypt->priv);
317 atomic_dec(&crypt->refcnt);
319 printk(KERN_DEBUG "%s: MSDU decryption/MIC verification failed"
320 " (SA=" MAC_FMT " keyidx=%d)\n",
321 ieee->dev->name, MAC_ARG(hdr->addr2), keyidx);
328 /* All received frames are sent to this function. @skb contains the frame in
329 * IEEE 802.11 format, i.e., in the format it was sent over air.
330 * This function is called only as a tasklet (software IRQ). */
331 int ieee80211_rx(struct ieee80211_device *ieee, struct sk_buff *skb,
332 struct ieee80211_rx_stats *rx_stats)
334 struct net_device *dev = ieee->dev;
335 struct ieee80211_hdr_4addr *hdr;
337 u16 fc, type, stype, sc;
338 struct net_device_stats *stats;
343 struct net_device *wds = NULL;
344 struct sk_buff *skb2 = NULL;
345 struct net_device *wds = NULL;
346 int frame_authorized = 0;
347 int from_assoc_ap = 0;
352 struct ieee80211_crypt_data *crypt = NULL;
355 hdr = (struct ieee80211_hdr_4addr *)skb->data;
356 stats = &ieee->stats;
359 printk(KERN_INFO "%s: SKB length < 10\n", dev->name);
363 fc = le16_to_cpu(hdr->frame_ctl);
364 type = WLAN_FC_GET_TYPE(fc);
365 stype = WLAN_FC_GET_STYPE(fc);
366 sc = le16_to_cpu(hdr->seq_ctl);
367 frag = WLAN_GET_SEQ_FRAG(sc);
368 hdrlen = ieee80211_get_hdrlen(fc);
370 /* Put this code here so that we avoid duplicating it in all
371 * Rx paths. - Jean II */
372 #ifdef IW_WIRELESS_SPY /* defined in iw_handler.h */
373 /* If spy monitoring on */
374 if (ieee->spy_data.spy_number > 0) {
375 struct iw_quality wstats;
378 if (rx_stats->mask & IEEE80211_STATMASK_RSSI) {
379 wstats.level = rx_stats->rssi;
380 wstats.updated |= IW_QUAL_LEVEL_UPDATED;
382 wstats.updated |= IW_QUAL_LEVEL_INVALID;
384 if (rx_stats->mask & IEEE80211_STATMASK_NOISE) {
385 wstats.noise = rx_stats->noise;
386 wstats.updated |= IW_QUAL_NOISE_UPDATED;
388 wstats.updated |= IW_QUAL_NOISE_INVALID;
390 if (rx_stats->mask & IEEE80211_STATMASK_SIGNAL) {
391 wstats.qual = rx_stats->signal;
392 wstats.updated |= IW_QUAL_QUAL_UPDATED;
394 wstats.updated |= IW_QUAL_QUAL_INVALID;
396 /* Update spy records */
397 wireless_spy_update(ieee->dev, hdr->addr2, &wstats);
399 #endif /* IW_WIRELESS_SPY */
402 hostap_update_rx_stats(local->ap, hdr, rx_stats);
405 if (ieee->iw_mode == IW_MODE_MONITOR) {
406 ieee80211_monitor_rx(ieee, skb, rx_stats);
408 stats->rx_bytes += skb->len;
412 if (is_multicast_ether_addr(hdr->addr1) ? ieee->host_mc_decrypt :
413 ieee->host_decrypt) {
415 if (skb->len >= hdrlen + 3)
416 idx = skb->data[hdrlen + 3] >> 6;
417 crypt = ieee->crypt[idx];
421 /* Use station specific key to override default keys if the
422 * receiver address is a unicast address ("individual RA"). If
423 * bcrx_sta_key parameter is set, station specific key is used
424 * even with broad/multicast targets (this is against IEEE
425 * 802.11, but makes it easier to use different keys with
426 * stations that do not support WEP key mapping). */
428 if (!(hdr->addr1[0] & 0x01) || local->bcrx_sta_key)
429 (void)hostap_handle_sta_crypto(local, hdr, &crypt,
433 /* allow NULL decrypt to indicate an station specific override
434 * for default encryption */
435 if (crypt && (crypt->ops == NULL ||
436 crypt->ops->decrypt_mpdu == NULL))
439 if (!crypt && (fc & IEEE80211_FCTL_PROTECTED)) {
440 /* This seems to be triggered by some (multicast?)
441 * frames from other than current BSS, so just drop the
442 * frames silently instead of filling system log with
444 IEEE80211_DEBUG_DROP("Decryption failed (not set)"
445 " (SA=" MAC_FMT ")\n",
446 MAC_ARG(hdr->addr2));
447 ieee->ieee_stats.rx_discards_undecryptable++;
452 if (type != WLAN_FC_TYPE_DATA) {
453 if (type == WLAN_FC_TYPE_MGMT && stype == WLAN_FC_STYPE_AUTH &&
454 fc & IEEE80211_FCTL_PROTECTED && ieee->host_decrypt &&
455 (keyidx = hostap_rx_frame_decrypt(ieee, skb, crypt)) < 0) {
456 printk(KERN_DEBUG "%s: failed to decrypt mgmt::auth "
457 "from " MAC_FMT "\n", dev->name,
458 MAC_ARG(hdr->addr2));
459 /* TODO: could inform hostapd about this so that it
460 * could send auth failure report */
464 if (ieee80211_rx_frame_mgmt(ieee, skb, rx_stats, type, stype))
471 /* Data frame - extract src/dst addresses */
472 if (skb->len < IEEE80211_3ADDR_LEN)
475 switch (fc & (IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS)) {
476 case IEEE80211_FCTL_FROMDS:
477 memcpy(dst, hdr->addr1, ETH_ALEN);
478 memcpy(src, hdr->addr3, ETH_ALEN);
480 case IEEE80211_FCTL_TODS:
481 memcpy(dst, hdr->addr3, ETH_ALEN);
482 memcpy(src, hdr->addr2, ETH_ALEN);
484 case IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS:
485 if (skb->len < IEEE80211_4ADDR_LEN)
487 memcpy(dst, hdr->addr3, ETH_ALEN);
488 memcpy(src, hdr->addr4, ETH_ALEN);
491 memcpy(dst, hdr->addr1, ETH_ALEN);
492 memcpy(src, hdr->addr2, ETH_ALEN);
497 if (hostap_rx_frame_wds(ieee, hdr, fc, &wds))
500 skb->dev = dev = wds;
501 stats = hostap_get_stats(dev);
504 if (ieee->iw_mode == IW_MODE_MASTER && !wds &&
505 (fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) ==
506 IEEE80211_FCTL_FROMDS && ieee->stadev
507 && memcmp(hdr->addr2, ieee->assoc_ap_addr, ETH_ALEN) == 0) {
508 /* Frame from BSSID of the AP for which we are a client */
509 skb->dev = dev = ieee->stadev;
510 stats = hostap_get_stats(dev);
515 dev->last_rx = jiffies;
518 if ((ieee->iw_mode == IW_MODE_MASTER ||
519 ieee->iw_mode == IW_MODE_REPEAT) && !from_assoc_ap) {
520 switch (hostap_handle_sta_rx(ieee, dev, skb, rx_stats,
522 case AP_RX_CONTINUE_NOT_AUTHORIZED:
523 frame_authorized = 0;
526 frame_authorized = 1;
536 /* Nullfunc frames may have PS-bit set, so they must be passed to
537 * hostap_handle_sta_rx() before being dropped here. */
539 stype &= ~IEEE80211_STYPE_QOS_DATA;
541 if (stype != IEEE80211_STYPE_DATA &&
542 stype != IEEE80211_STYPE_DATA_CFACK &&
543 stype != IEEE80211_STYPE_DATA_CFPOLL &&
544 stype != IEEE80211_STYPE_DATA_CFACKPOLL) {
545 if (stype != IEEE80211_STYPE_NULLFUNC)
546 IEEE80211_DEBUG_DROP("RX: dropped data frame "
547 "with no data (type=0x%02x, "
548 "subtype=0x%02x, len=%d)\n",
549 type, stype, skb->len);
553 /* skb: hdr + (possibly fragmented, possibly encrypted) payload */
555 if (ieee->host_decrypt && (fc & IEEE80211_FCTL_PROTECTED) &&
556 (keyidx = ieee80211_rx_frame_decrypt(ieee, skb, crypt)) < 0)
559 hdr = (struct ieee80211_hdr_4addr *)skb->data;
561 /* skb: hdr + (possibly fragmented) plaintext payload */
562 // PR: FIXME: hostap has additional conditions in the "if" below:
563 // ieee->host_decrypt && (fc & IEEE80211_FCTL_PROTECTED) &&
564 if ((frag != 0 || (fc & IEEE80211_FCTL_MOREFRAGS))) {
566 struct sk_buff *frag_skb = ieee80211_frag_cache_get(ieee, hdr);
567 IEEE80211_DEBUG_FRAG("Rx Fragment received (%u)\n", frag);
570 IEEE80211_DEBUG(IEEE80211_DL_RX | IEEE80211_DL_FRAG,
571 "Rx cannot get skb from fragment "
572 "cache (morefrag=%d seq=%u frag=%u)\n",
573 (fc & IEEE80211_FCTL_MOREFRAGS) != 0,
574 WLAN_GET_SEQ_SEQ(sc), frag);
582 if (frag_skb->tail + flen > frag_skb->end) {
583 printk(KERN_WARNING "%s: host decrypted and "
584 "reassembled frame did not fit skb\n",
586 ieee80211_frag_cache_invalidate(ieee, hdr);
591 /* copy first fragment (including full headers) into
592 * beginning of the fragment cache skb */
593 memcpy(skb_put(frag_skb, flen), skb->data, flen);
595 /* append frame payload to the end of the fragment
597 memcpy(skb_put(frag_skb, flen), skb->data + hdrlen,
600 dev_kfree_skb_any(skb);
603 if (fc & IEEE80211_FCTL_MOREFRAGS) {
604 /* more fragments expected - leave the skb in fragment
605 * cache for now; it will be delivered to upper layers
606 * after all fragments have been received */
610 /* this was the last fragment and the frame will be
611 * delivered, so remove skb from fragment cache */
613 hdr = (struct ieee80211_hdr_4addr *)skb->data;
614 ieee80211_frag_cache_invalidate(ieee, hdr);
617 /* skb: hdr + (possible reassembled) full MSDU payload; possibly still
618 * encrypted/authenticated */
619 if (ieee->host_decrypt && (fc & IEEE80211_FCTL_PROTECTED) &&
620 ieee80211_rx_frame_decrypt_msdu(ieee, skb, keyidx, crypt))
623 hdr = (struct ieee80211_hdr_4addr *)skb->data;
624 if (crypt && !(fc & IEEE80211_FCTL_PROTECTED) && !ieee->open_wep) {
625 if ( /*ieee->ieee802_1x && */
626 ieee80211_is_eapol_frame(ieee, skb)) {
627 /* pass unencrypted EAPOL frames even if encryption is
630 IEEE80211_DEBUG_DROP("encryption configured, but RX "
631 "frame not encrypted (SA=" MAC_FMT
632 ")\n", MAC_ARG(hdr->addr2));
637 if (crypt && !(fc & IEEE80211_FCTL_PROTECTED) && !ieee->open_wep &&
638 !ieee80211_is_eapol_frame(ieee, skb)) {
639 IEEE80211_DEBUG_DROP("dropped unencrypted RX data "
640 "frame from " MAC_FMT
641 " (drop_unencrypted=1)\n",
642 MAC_ARG(hdr->addr2));
646 /* skb: hdr + (possible reassembled) full plaintext payload */
648 payload = skb->data + hdrlen;
649 ethertype = (payload[6] << 8) | payload[7];
652 /* If IEEE 802.1X is used, check whether the port is authorized to send
653 * the received frame. */
654 if (ieee->ieee802_1x && ieee->iw_mode == IW_MODE_MASTER) {
655 if (ethertype == ETH_P_PAE) {
656 printk(KERN_DEBUG "%s: RX: IEEE 802.1X frame\n",
658 if (ieee->hostapd && ieee->apdev) {
659 /* Send IEEE 802.1X frames to the user
660 * space daemon for processing */
661 prism2_rx_80211(ieee->apdev, skb, rx_stats,
663 ieee->apdevstats.rx_packets++;
664 ieee->apdevstats.rx_bytes += skb->len;
667 } else if (!frame_authorized) {
668 printk(KERN_DEBUG "%s: dropped frame from "
669 "unauthorized port (IEEE 802.1X): "
670 "ethertype=0x%04x\n", dev->name, ethertype);
676 /* convert hdr + possible LLC headers into Ethernet header */
677 if (skb->len - hdrlen >= 8 &&
678 ((memcmp(payload, rfc1042_header, SNAP_SIZE) == 0 &&
679 ethertype != ETH_P_AARP && ethertype != ETH_P_IPX) ||
680 memcmp(payload, bridge_tunnel_header, SNAP_SIZE) == 0)) {
681 /* remove RFC1042 or Bridge-Tunnel encapsulation and
682 * replace EtherType */
683 skb_pull(skb, hdrlen + SNAP_SIZE);
684 memcpy(skb_push(skb, ETH_ALEN), src, ETH_ALEN);
685 memcpy(skb_push(skb, ETH_ALEN), dst, ETH_ALEN);
688 /* Leave Ethernet header part of hdr and full payload */
689 skb_pull(skb, hdrlen);
690 len = htons(skb->len);
691 memcpy(skb_push(skb, 2), &len, 2);
692 memcpy(skb_push(skb, ETH_ALEN), src, ETH_ALEN);
693 memcpy(skb_push(skb, ETH_ALEN), dst, ETH_ALEN);
697 if (wds && ((fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) ==
698 IEEE80211_FCTL_TODS) && skb->len >= ETH_HLEN + ETH_ALEN) {
699 /* Non-standard frame: get addr4 from its bogus location after
701 memcpy(skb->data + ETH_ALEN,
702 skb->data + skb->len - ETH_ALEN, ETH_ALEN);
703 skb_trim(skb, skb->len - ETH_ALEN);
708 stats->rx_bytes += skb->len;
711 if (ieee->iw_mode == IW_MODE_MASTER && !wds && ieee->ap->bridge_packets) {
713 /* copy multicast frame both to the higher layers and
714 * to the wireless media */
715 ieee->ap->bridged_multicast++;
716 skb2 = skb_clone(skb, GFP_ATOMIC);
718 printk(KERN_DEBUG "%s: skb_clone failed for "
719 "multicast frame\n", dev->name);
720 } else if (hostap_is_sta_assoc(ieee->ap, dst)) {
721 /* send frame directly to the associated STA using
722 * wireless media and not passing to higher layers */
723 ieee->ap->bridged_unicast++;
730 /* send to wireless media */
731 skb2->protocol = __constant_htons(ETH_P_802_3);
732 skb2->mac.raw = skb2->nh.raw = skb2->data;
733 /* skb2->nh.raw = skb2->data + ETH_HLEN; */
735 dev_queue_xmit(skb2);
740 skb->protocol = eth_type_trans(skb, dev);
741 memset(skb->cb, 0, sizeof(skb->cb));
743 skb->ip_summed = CHECKSUM_NONE; /* 802.11 crc not sufficient */
750 hostap_handle_sta_release(sta);
757 /* Returning 0 indicates to caller that we have not handled the SKB--
758 * so it is still allocated and can be used again by underlying
759 * hardware as a DMA target */
763 #define MGMT_FRAME_FIXED_PART_LENGTH 0x24
765 static u8 qos_oui[QOS_OUI_LEN] = { 0x00, 0x50, 0xF2 };
768 * Make ther structure we read from the beacon packet has
771 static int ieee80211_verify_qos_info(struct ieee80211_qos_information_element
772 *info_element, int sub_type)
775 if (info_element->qui_subtype != sub_type)
777 if (memcmp(info_element->qui, qos_oui, QOS_OUI_LEN))
779 if (info_element->qui_type != QOS_OUI_TYPE)
781 if (info_element->version != QOS_VERSION_1)
788 * Parse a QoS parameter element
790 static int ieee80211_read_qos_param_element(struct ieee80211_qos_parameter_info
791 *element_param, struct ieee80211_info_element
795 u16 size = sizeof(struct ieee80211_qos_parameter_info) - 2;
797 if ((info_element == NULL) || (element_param == NULL))
800 if (info_element->id == QOS_ELEMENT_ID && info_element->len == size) {
801 memcpy(element_param->info_element.qui, info_element->data,
803 element_param->info_element.elementID = info_element->id;
804 element_param->info_element.length = info_element->len;
808 ret = ieee80211_verify_qos_info(&element_param->info_element,
809 QOS_OUI_PARAM_SUB_TYPE);
814 * Parse a QoS information element
816 static int ieee80211_read_qos_info_element(struct
817 ieee80211_qos_information_element
818 *element_info, struct ieee80211_info_element
822 u16 size = sizeof(struct ieee80211_qos_information_element) - 2;
824 if (element_info == NULL)
826 if (info_element == NULL)
829 if ((info_element->id == QOS_ELEMENT_ID) && (info_element->len == size)) {
830 memcpy(element_info->qui, info_element->data,
832 element_info->elementID = info_element->id;
833 element_info->length = info_element->len;
838 ret = ieee80211_verify_qos_info(element_info,
839 QOS_OUI_INFO_SUB_TYPE);
844 * Write QoS parameters from the ac parameters.
846 static int ieee80211_qos_convert_ac_to_parameters(struct
847 ieee80211_qos_parameter_info
849 ieee80211_qos_parameters
854 struct ieee80211_qos_ac_parameter *ac_params;
859 for (i = 0; i < QOS_QUEUE_NUM; i++) {
860 ac_params = &(param_elm->ac_params_record[i]);
862 qos_param->aifs[i] = (ac_params->aci_aifsn) & 0x0F;
863 qos_param->aifs[i] -= (qos_param->aifs[i] < 2) ? 0 : 2;
865 cw_min = ac_params->ecw_min_max & 0x0F;
866 qos_param->cw_min[i] = (u16) ((1 << cw_min) - 1);
868 cw_max = (ac_params->ecw_min_max & 0xF0) >> 4;
869 qos_param->cw_max[i] = (u16) ((1 << cw_max) - 1);
872 (ac_params->aci_aifsn & 0x10) ? 0x01 : 0x00;
874 txop = le16_to_cpu(ac_params->tx_op_limit) * 32;
875 qos_param->tx_op_limit[i] = (u16) txop;
881 * we have a generic data element which it may contain QoS information or
882 * parameters element. check the information element length to decide
885 static int ieee80211_parse_qos_info_param_IE(struct ieee80211_info_element
887 struct ieee80211_network *network)
890 struct ieee80211_qos_parameters *qos_param = NULL;
891 struct ieee80211_qos_information_element qos_info_element;
893 rc = ieee80211_read_qos_info_element(&qos_info_element, info_element);
896 network->qos_data.param_count = qos_info_element.ac_info & 0x0F;
897 network->flags |= NETWORK_HAS_QOS_INFORMATION;
899 struct ieee80211_qos_parameter_info param_element;
901 rc = ieee80211_read_qos_param_element(¶m_element,
904 qos_param = &(network->qos_data.parameters);
905 ieee80211_qos_convert_ac_to_parameters(¶m_element,
907 network->flags |= NETWORK_HAS_QOS_PARAMETERS;
908 network->qos_data.param_count =
909 param_element.info_element.ac_info & 0x0F;
914 IEEE80211_DEBUG_QOS("QoS is supported\n");
915 network->qos_data.supported = 1;
920 static int ieee80211_handle_assoc_resp(struct ieee80211_device *ieee, struct ieee80211_assoc_response
921 *frame, struct ieee80211_rx_stats *stats)
923 struct ieee80211_network network_resp;
924 struct ieee80211_network *network = &network_resp;
925 struct ieee80211_info_element *info_element;
926 struct net_device *dev = ieee->dev;
930 network->qos_data.active = 0;
931 network->qos_data.supported = 0;
932 network->qos_data.param_count = 0;
933 network->qos_data.old_param_count = 0;
935 //network->atim_window = le16_to_cpu(frame->aid) & (0x3FFF);
936 network->atim_window = le16_to_cpu(frame->aid);
937 network->listen_interval = le16_to_cpu(frame->status);
939 info_element = frame->info_element;
940 left = stats->len - sizeof(*frame);
942 while (left >= sizeof(struct ieee80211_info_element)) {
943 if (sizeof(struct ieee80211_info_element) +
944 info_element->len > left) {
945 IEEE80211_DEBUG_QOS("ASSOC RESP: parse failed: "
946 "info_element->len + 2 > left : "
947 "info_element->len+2=%zd left=%d, id=%d.\n",
950 ieee80211_info_element),
951 left, info_element->id);
955 switch (info_element->id) {
957 if (ieee80211_is_empty_essid(info_element->data,
958 info_element->len)) {
959 network->flags |= NETWORK_EMPTY_ESSID;
963 network->ssid_len = min(info_element->len,
964 (u8) IW_ESSID_MAX_SIZE);
965 memcpy(network->ssid, info_element->data,
967 if (network->ssid_len < IW_ESSID_MAX_SIZE)
968 memset(network->ssid + network->ssid_len, 0,
969 IW_ESSID_MAX_SIZE - network->ssid_len);
971 IEEE80211_DEBUG_QOS("MFIE_TYPE_SSID: '%s' len=%d.\n",
972 network->ssid, network->ssid_len);
976 IEEE80211_DEBUG_QOS("MFIE_TYPE_TIM: ignored\n");
979 case MFIE_TYPE_IBSS_SET:
980 IEEE80211_DEBUG_QOS("MFIE_TYPE_IBSS_SET: ignored\n");
983 case MFIE_TYPE_CHALLENGE:
984 IEEE80211_DEBUG_QOS("MFIE_TYPE_CHALLENGE: ignored\n");
987 case MFIE_TYPE_GENERIC:
988 IEEE80211_DEBUG_QOS("MFIE_TYPE_GENERIC: %d bytes\n",
990 ieee80211_parse_qos_info_param_IE(info_element,
995 IEEE80211_DEBUG_QOS("MFIE_TYPE_RSN: %d bytes\n",
999 case MFIE_TYPE_QOS_PARAMETER:
1000 printk("QoS Error need to parse QOS_PARAMETER IE\n");
1004 IEEE80211_DEBUG_QOS("unsupported IE %d\n",
1009 left -= sizeof(struct ieee80211_info_element) +
1011 info_element = (struct ieee80211_info_element *)
1012 &info_element->data[info_element->len];
1015 if (ieee->handle_assoc_response != NULL)
1016 ieee->handle_assoc_response(dev, frame, network);
1021 /***************************************************/
1023 static inline int ieee80211_network_init(struct ieee80211_device *ieee, struct ieee80211_probe_response
1025 struct ieee80211_network *network,
1026 struct ieee80211_rx_stats *stats)
1028 #ifdef CONFIG_IEEE80211_DEBUG
1032 struct ieee80211_info_element *info_element;
1035 network->qos_data.active = 0;
1036 network->qos_data.supported = 0;
1037 network->qos_data.param_count = 0;
1039 /* Pull out fixed field data */
1040 memcpy(network->bssid, beacon->header.addr3, ETH_ALEN);
1041 network->capability = le16_to_cpu(beacon->capability);
1042 network->last_scanned = jiffies;
1043 network->time_stamp[0] = le32_to_cpu(beacon->time_stamp[0]);
1044 network->time_stamp[1] = le32_to_cpu(beacon->time_stamp[1]);
1045 network->beacon_interval = le16_to_cpu(beacon->beacon_interval);
1046 /* Where to pull this? beacon->listen_interval; */
1047 network->listen_interval = 0x0A;
1048 network->rates_len = network->rates_ex_len = 0;
1049 network->last_associate = 0;
1050 network->ssid_len = 0;
1052 network->atim_window = 0;
1053 network->erp_value = (network->capability & WLAN_CAPABILITY_IBSS) ?
1056 if (stats->freq == IEEE80211_52GHZ_BAND) {
1057 /* for A band (No DS info) */
1058 network->channel = stats->received_channel;
1060 network->flags |= NETWORK_HAS_CCK;
1062 network->wpa_ie_len = 0;
1063 network->rsn_ie_len = 0;
1065 info_element = beacon->info_element;
1066 left = stats->len - sizeof(*beacon);
1067 while (left >= sizeof(*info_element)) {
1068 if (sizeof(*info_element) + info_element->len > left) {
1069 IEEE80211_DEBUG_SCAN
1070 ("SCAN: parse failed: info_element->len + 2 > left : info_element->len+2=%Zd left=%d.\n",
1071 info_element->len + sizeof(*info_element), left);
1075 switch (info_element->id) {
1076 case MFIE_TYPE_SSID:
1077 if (ieee80211_is_empty_essid(info_element->data,
1078 info_element->len)) {
1079 network->flags |= NETWORK_EMPTY_ESSID;
1083 network->ssid_len = min(info_element->len,
1084 (u8) IW_ESSID_MAX_SIZE);
1085 memcpy(network->ssid, info_element->data,
1087 if (network->ssid_len < IW_ESSID_MAX_SIZE)
1088 memset(network->ssid + network->ssid_len, 0,
1089 IW_ESSID_MAX_SIZE - network->ssid_len);
1091 IEEE80211_DEBUG_SCAN("MFIE_TYPE_SSID: '%s' len=%d.\n",
1092 network->ssid, network->ssid_len);
1095 case MFIE_TYPE_RATES:
1096 #ifdef CONFIG_IEEE80211_DEBUG
1099 network->rates_len = min(info_element->len,
1101 for (i = 0; i < network->rates_len; i++) {
1102 network->rates[i] = info_element->data[i];
1103 #ifdef CONFIG_IEEE80211_DEBUG
1104 p += snprintf(p, sizeof(rates_str) -
1105 (p - rates_str), "%02X ",
1108 if (ieee80211_is_ofdm_rate
1109 (info_element->data[i])) {
1110 network->flags |= NETWORK_HAS_OFDM;
1111 if (info_element->data[i] &
1112 IEEE80211_BASIC_RATE_MASK)
1118 IEEE80211_DEBUG_SCAN("MFIE_TYPE_RATES: '%s' (%d)\n",
1119 rates_str, network->rates_len);
1122 case MFIE_TYPE_RATES_EX:
1123 #ifdef CONFIG_IEEE80211_DEBUG
1126 network->rates_ex_len = min(info_element->len,
1127 MAX_RATES_EX_LENGTH);
1128 for (i = 0; i < network->rates_ex_len; i++) {
1129 network->rates_ex[i] = info_element->data[i];
1130 #ifdef CONFIG_IEEE80211_DEBUG
1131 p += snprintf(p, sizeof(rates_str) -
1132 (p - rates_str), "%02X ",
1135 if (ieee80211_is_ofdm_rate
1136 (info_element->data[i])) {
1137 network->flags |= NETWORK_HAS_OFDM;
1138 if (info_element->data[i] &
1139 IEEE80211_BASIC_RATE_MASK)
1145 IEEE80211_DEBUG_SCAN("MFIE_TYPE_RATES_EX: '%s' (%d)\n",
1146 rates_str, network->rates_ex_len);
1149 case MFIE_TYPE_DS_SET:
1150 IEEE80211_DEBUG_SCAN("MFIE_TYPE_DS_SET: %d\n",
1151 info_element->data[0]);
1152 if (stats->freq == IEEE80211_24GHZ_BAND)
1153 network->channel = info_element->data[0];
1156 case MFIE_TYPE_FH_SET:
1157 IEEE80211_DEBUG_SCAN("MFIE_TYPE_FH_SET: ignored\n");
1160 case MFIE_TYPE_CF_SET:
1161 IEEE80211_DEBUG_SCAN("MFIE_TYPE_CF_SET: ignored\n");
1165 IEEE80211_DEBUG_SCAN("MFIE_TYPE_TIM: ignored\n");
1168 case MFIE_TYPE_ERP_INFO:
1169 network->erp_value = info_element->data[0];
1170 IEEE80211_DEBUG_SCAN("MFIE_TYPE_ERP_SET: %d\n",
1171 network->erp_value);
1174 case MFIE_TYPE_IBSS_SET:
1175 network->atim_window = info_element->data[0];
1176 IEEE80211_DEBUG_SCAN("MFIE_TYPE_IBSS_SET: %d\n",
1177 network->atim_window);
1180 case MFIE_TYPE_CHALLENGE:
1181 IEEE80211_DEBUG_SCAN("MFIE_TYPE_CHALLENGE: ignored\n");
1184 case MFIE_TYPE_GENERIC:
1185 IEEE80211_DEBUG_SCAN("MFIE_TYPE_GENERIC: %d bytes\n",
1187 if (!ieee80211_parse_qos_info_param_IE(info_element,
1191 if (info_element->len >= 4 &&
1192 info_element->data[0] == 0x00 &&
1193 info_element->data[1] == 0x50 &&
1194 info_element->data[2] == 0xf2 &&
1195 info_element->data[3] == 0x01) {
1196 network->wpa_ie_len = min(info_element->len + 2,
1198 memcpy(network->wpa_ie, info_element,
1199 network->wpa_ie_len);
1204 IEEE80211_DEBUG_SCAN("MFIE_TYPE_RSN: %d bytes\n",
1206 network->rsn_ie_len = min(info_element->len + 2,
1208 memcpy(network->rsn_ie, info_element,
1209 network->rsn_ie_len);
1212 case MFIE_TYPE_QOS_PARAMETER:
1214 "QoS Error need to parse QOS_PARAMETER IE\n");
1218 IEEE80211_DEBUG_SCAN("unsupported IE %d\n",
1223 left -= sizeof(*info_element) + info_element->len;
1224 info_element = (struct ieee80211_info_element *)
1225 &info_element->data[info_element->len];
1229 if (stats->freq == IEEE80211_52GHZ_BAND)
1230 network->mode = IEEE_A;
1232 if (network->flags & NETWORK_HAS_OFDM)
1233 network->mode |= IEEE_G;
1234 if (network->flags & NETWORK_HAS_CCK)
1235 network->mode |= IEEE_B;
1238 if (network->mode == 0) {
1239 IEEE80211_DEBUG_SCAN("Filtered out '%s (" MAC_FMT ")' "
1241 escape_essid(network->ssid,
1243 MAC_ARG(network->bssid));
1247 if (ieee80211_is_empty_essid(network->ssid, network->ssid_len))
1248 network->flags |= NETWORK_EMPTY_ESSID;
1250 memcpy(&network->stats, stats, sizeof(network->stats));
1255 static inline int is_same_network(struct ieee80211_network *src,
1256 struct ieee80211_network *dst)
1258 /* A network is only a duplicate if the channel, BSSID, and ESSID
1259 * all match. We treat all <hidden> with the same BSSID and channel
1261 return ((src->ssid_len == dst->ssid_len) &&
1262 (src->channel == dst->channel) &&
1263 !memcmp(src->bssid, dst->bssid, ETH_ALEN) &&
1264 !memcmp(src->ssid, dst->ssid, src->ssid_len));
1267 static inline void update_network(struct ieee80211_network *dst,
1268 struct ieee80211_network *src)
1273 memcpy(&dst->stats, &src->stats, sizeof(struct ieee80211_rx_stats));
1274 dst->capability = src->capability;
1275 memcpy(dst->rates, src->rates, src->rates_len);
1276 dst->rates_len = src->rates_len;
1277 memcpy(dst->rates_ex, src->rates_ex, src->rates_ex_len);
1278 dst->rates_ex_len = src->rates_ex_len;
1280 dst->mode = src->mode;
1281 dst->flags = src->flags;
1282 dst->time_stamp[0] = src->time_stamp[0];
1283 dst->time_stamp[1] = src->time_stamp[1];
1285 dst->beacon_interval = src->beacon_interval;
1286 dst->listen_interval = src->listen_interval;
1287 dst->atim_window = src->atim_window;
1288 dst->erp_value = src->erp_value;
1290 memcpy(dst->wpa_ie, src->wpa_ie, src->wpa_ie_len);
1291 dst->wpa_ie_len = src->wpa_ie_len;
1292 memcpy(dst->rsn_ie, src->rsn_ie, src->rsn_ie_len);
1293 dst->rsn_ie_len = src->rsn_ie_len;
1295 dst->last_scanned = jiffies;
1296 qos_active = src->qos_data.active;
1297 old_param = dst->qos_data.old_param_count;
1298 if (dst->flags & NETWORK_HAS_QOS_MASK)
1299 memcpy(&dst->qos_data, &src->qos_data,
1300 sizeof(struct ieee80211_qos_data));
1302 dst->qos_data.supported = src->qos_data.supported;
1303 dst->qos_data.param_count = src->qos_data.param_count;
1306 if (dst->qos_data.supported == 1) {
1309 ("QoS the network %s is QoS supported\n",
1313 ("QoS the network is QoS supported\n");
1315 dst->qos_data.active = qos_active;
1316 dst->qos_data.old_param_count = old_param;
1318 /* dst->last_associate is not overwritten */
1321 static inline int is_beacon(int fc)
1323 return (WLAN_FC_GET_STYPE(le16_to_cpu(fc)) == IEEE80211_STYPE_BEACON);
1326 static inline void ieee80211_process_probe_response(struct ieee80211_device
1328 ieee80211_probe_response
1329 *beacon, struct ieee80211_rx_stats
1332 struct net_device *dev = ieee->dev;
1333 struct ieee80211_network network;
1334 struct ieee80211_network *target;
1335 struct ieee80211_network *oldest = NULL;
1336 #ifdef CONFIG_IEEE80211_DEBUG
1337 struct ieee80211_info_element *info_element = beacon->info_element;
1339 unsigned long flags;
1341 IEEE80211_DEBUG_SCAN("'%s' (" MAC_FMT
1342 "): %c%c%c%c %c%c%c%c-%c%c%c%c %c%c%c%c\n",
1343 escape_essid(info_element->data,
1345 MAC_ARG(beacon->header.addr3),
1346 (beacon->capability & (1 << 0xf)) ? '1' : '0',
1347 (beacon->capability & (1 << 0xe)) ? '1' : '0',
1348 (beacon->capability & (1 << 0xd)) ? '1' : '0',
1349 (beacon->capability & (1 << 0xc)) ? '1' : '0',
1350 (beacon->capability & (1 << 0xb)) ? '1' : '0',
1351 (beacon->capability & (1 << 0xa)) ? '1' : '0',
1352 (beacon->capability & (1 << 0x9)) ? '1' : '0',
1353 (beacon->capability & (1 << 0x8)) ? '1' : '0',
1354 (beacon->capability & (1 << 0x7)) ? '1' : '0',
1355 (beacon->capability & (1 << 0x6)) ? '1' : '0',
1356 (beacon->capability & (1 << 0x5)) ? '1' : '0',
1357 (beacon->capability & (1 << 0x4)) ? '1' : '0',
1358 (beacon->capability & (1 << 0x3)) ? '1' : '0',
1359 (beacon->capability & (1 << 0x2)) ? '1' : '0',
1360 (beacon->capability & (1 << 0x1)) ? '1' : '0',
1361 (beacon->capability & (1 << 0x0)) ? '1' : '0');
1363 if (ieee80211_network_init(ieee, beacon, &network, stats)) {
1364 IEEE80211_DEBUG_SCAN("Dropped '%s' (" MAC_FMT ") via %s.\n",
1365 escape_essid(info_element->data,
1367 MAC_ARG(beacon->header.addr3),
1368 is_beacon(le16_to_cpu
1371 "BEACON" : "PROBE RESPONSE");
1375 /* The network parsed correctly -- so now we scan our known networks
1376 * to see if we can find it in our list.
1378 * NOTE: This search is definitely not optimized. Once its doing
1379 * the "right thing" we'll optimize it for efficiency if
1382 /* Search for this entry in the list and update it if it is
1385 spin_lock_irqsave(&ieee->lock, flags);
1387 list_for_each_entry(target, &ieee->network_list, list) {
1388 if (is_same_network(target, &network))
1391 if ((oldest == NULL) ||
1392 (target->last_scanned < oldest->last_scanned))
1396 /* If we didn't find a match, then get a new network slot to initialize
1397 * with this beacon's information */
1398 if (&target->list == &ieee->network_list) {
1399 if (list_empty(&ieee->network_free_list)) {
1400 /* If there are no more slots, expire the oldest */
1401 list_del(&oldest->list);
1403 IEEE80211_DEBUG_SCAN("Expired '%s' (" MAC_FMT ") from "
1405 escape_essid(target->ssid,
1407 MAC_ARG(target->bssid));
1409 /* Otherwise just pull from the free list */
1410 target = list_entry(ieee->network_free_list.next,
1411 struct ieee80211_network, list);
1412 list_del(ieee->network_free_list.next);
1415 #ifdef CONFIG_IEEE80211_DEBUG
1416 IEEE80211_DEBUG_SCAN("Adding '%s' (" MAC_FMT ") via %s.\n",
1417 escape_essid(network.ssid,
1419 MAC_ARG(network.bssid),
1420 is_beacon(le16_to_cpu
1423 "BEACON" : "PROBE RESPONSE");
1425 memcpy(target, &network, sizeof(*target));
1426 list_add_tail(&target->list, &ieee->network_list);
1428 IEEE80211_DEBUG_SCAN("Updating '%s' (" MAC_FMT ") via %s.\n",
1429 escape_essid(target->ssid,
1431 MAC_ARG(target->bssid),
1432 is_beacon(le16_to_cpu
1435 "BEACON" : "PROBE RESPONSE");
1436 update_network(target, &network);
1439 spin_unlock_irqrestore(&ieee->lock, flags);
1441 if (is_beacon(le16_to_cpu(beacon->header.frame_ctl))) {
1442 if (ieee->handle_beacon != NULL)
1443 ieee->handle_beacon(dev, beacon, &network);
1445 if (ieee->handle_probe_response != NULL)
1446 ieee->handle_probe_response(dev, beacon, &network);
1450 void ieee80211_rx_mgt(struct ieee80211_device *ieee,
1451 struct ieee80211_hdr_4addr *header,
1452 struct ieee80211_rx_stats *stats)
1454 switch (WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl))) {
1455 case IEEE80211_STYPE_ASSOC_RESP:
1456 IEEE80211_DEBUG_MGMT("received ASSOCIATION RESPONSE (%d)\n",
1457 WLAN_FC_GET_STYPE(le16_to_cpu
1458 (header->frame_ctl)));
1459 ieee80211_handle_assoc_resp(ieee,
1460 (struct ieee80211_assoc_response *)
1464 case IEEE80211_STYPE_REASSOC_RESP:
1465 IEEE80211_DEBUG_MGMT("received REASSOCIATION RESPONSE (%d)\n",
1466 WLAN_FC_GET_STYPE(le16_to_cpu
1467 (header->frame_ctl)));
1470 case IEEE80211_STYPE_PROBE_REQ:
1471 IEEE80211_DEBUG_MGMT("recieved auth (%d)\n",
1472 WLAN_FC_GET_STYPE(le16_to_cpu
1473 (header->frame_ctl)));
1475 if (ieee->handle_probe_request != NULL)
1476 ieee->handle_probe_request(ieee->dev,
1478 ieee80211_probe_request *)
1482 case IEEE80211_STYPE_PROBE_RESP:
1483 IEEE80211_DEBUG_MGMT("received PROBE RESPONSE (%d)\n",
1484 WLAN_FC_GET_STYPE(le16_to_cpu
1485 (header->frame_ctl)));
1486 IEEE80211_DEBUG_SCAN("Probe response\n");
1487 ieee80211_process_probe_response(ieee,
1489 ieee80211_probe_response *)
1493 case IEEE80211_STYPE_BEACON:
1494 IEEE80211_DEBUG_MGMT("received BEACON (%d)\n",
1495 WLAN_FC_GET_STYPE(le16_to_cpu
1496 (header->frame_ctl)));
1497 IEEE80211_DEBUG_SCAN("Beacon\n");
1498 ieee80211_process_probe_response(ieee,
1500 ieee80211_probe_response *)
1503 case IEEE80211_STYPE_AUTH:
1505 IEEE80211_DEBUG_MGMT("recieved auth (%d)\n",
1506 WLAN_FC_GET_STYPE(le16_to_cpu
1507 (header->frame_ctl)));
1509 if (ieee->handle_auth != NULL)
1510 ieee->handle_auth(ieee->dev,
1511 (struct ieee80211_auth *)header);
1514 case IEEE80211_STYPE_DISASSOC:
1515 if (ieee->handle_disassoc != NULL)
1516 ieee->handle_disassoc(ieee->dev,
1517 (struct ieee80211_disassoc *)
1521 case IEEE80211_STYPE_DEAUTH:
1522 printk("DEAUTH from AP\n");
1523 if (ieee->handle_deauth != NULL)
1524 ieee->handle_deauth(ieee->dev, (struct ieee80211_auth *)
1528 IEEE80211_DEBUG_MGMT("received UNKNOWN (%d)\n",
1529 WLAN_FC_GET_STYPE(le16_to_cpu
1530 (header->frame_ctl)));
1531 IEEE80211_WARNING("%s: Unknown management packet: %d\n",
1533 WLAN_FC_GET_STYPE(le16_to_cpu
1534 (header->frame_ctl)));
1539 EXPORT_SYMBOL(ieee80211_rx_mgt);
1540 EXPORT_SYMBOL(ieee80211_rx);