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/wireless.h>
32 #include <linux/etherdevice.h>
33 #include <asm/uaccess.h>
34 #include <linux/ctype.h>
36 #include <net/ieee80211.h>
38 static inline void ieee80211_monitor_rx(struct ieee80211_device
*ieee
,
40 struct ieee80211_rx_stats
*rx_stats
)
42 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*)skb
->data
;
43 u16 fc
= le16_to_cpu(hdr
->frame_ctl
);
46 skb
->mac
.raw
= skb
->data
;
47 skb_pull(skb
, ieee80211_get_hdrlen(fc
));
48 skb
->pkt_type
= PACKET_OTHERHOST
;
49 skb
->protocol
= __constant_htons(ETH_P_80211_RAW
);
50 memset(skb
->cb
, 0, sizeof(skb
->cb
));
54 /* Called only as a tasklet (software IRQ) */
55 static struct ieee80211_frag_entry
*ieee80211_frag_cache_find(struct
63 struct ieee80211_frag_entry
*entry
;
66 for (i
= 0; i
< IEEE80211_FRAG_CACHE_LEN
; i
++) {
67 entry
= &ieee
->frag_cache
[i
];
68 if (entry
->skb
!= NULL
&&
69 time_after(jiffies
, entry
->first_frag_time
+ 2 * HZ
)) {
70 IEEE80211_DEBUG_FRAG("expiring fragment cache entry "
71 "seq=%u last_frag=%u\n",
72 entry
->seq
, entry
->last_frag
);
73 dev_kfree_skb_any(entry
->skb
);
77 if (entry
->skb
!= NULL
&& entry
->seq
== seq
&&
78 (entry
->last_frag
+ 1 == frag
|| frag
== -1) &&
79 memcmp(entry
->src_addr
, src
, ETH_ALEN
) == 0 &&
80 memcmp(entry
->dst_addr
, dst
, ETH_ALEN
) == 0)
87 /* Called only as a tasklet (software IRQ) */
88 static struct sk_buff
*ieee80211_frag_cache_get(struct ieee80211_device
*ieee
,
89 struct ieee80211_hdr_4addr
*hdr
)
91 struct sk_buff
*skb
= NULL
;
93 unsigned int frag
, seq
;
94 struct ieee80211_frag_entry
*entry
;
96 sc
= le16_to_cpu(hdr
->seq_ctl
);
97 frag
= WLAN_GET_SEQ_FRAG(sc
);
98 seq
= WLAN_GET_SEQ_SEQ(sc
);
101 /* Reserve enough space to fit maximum frame length */
102 skb
= dev_alloc_skb(ieee
->dev
->mtu
+
103 sizeof(struct ieee80211_hdr_4addr
) +
106 8 /* WEP */ + ETH_ALEN
/* WDS */ );
110 entry
= &ieee
->frag_cache
[ieee
->frag_next_idx
];
111 ieee
->frag_next_idx
++;
112 if (ieee
->frag_next_idx
>= IEEE80211_FRAG_CACHE_LEN
)
113 ieee
->frag_next_idx
= 0;
115 if (entry
->skb
!= NULL
)
116 dev_kfree_skb_any(entry
->skb
);
118 entry
->first_frag_time
= jiffies
;
120 entry
->last_frag
= frag
;
122 memcpy(entry
->src_addr
, hdr
->addr2
, ETH_ALEN
);
123 memcpy(entry
->dst_addr
, hdr
->addr1
, ETH_ALEN
);
125 /* received a fragment of a frame for which the head fragment
126 * should have already been received */
127 entry
= ieee80211_frag_cache_find(ieee
, seq
, frag
, hdr
->addr2
,
130 entry
->last_frag
= frag
;
138 /* Called only as a tasklet (software IRQ) */
139 static int ieee80211_frag_cache_invalidate(struct ieee80211_device
*ieee
,
140 struct ieee80211_hdr_4addr
*hdr
)
144 struct ieee80211_frag_entry
*entry
;
146 sc
= le16_to_cpu(hdr
->seq_ctl
);
147 seq
= WLAN_GET_SEQ_SEQ(sc
);
149 entry
= ieee80211_frag_cache_find(ieee
, seq
, -1, hdr
->addr2
,
153 IEEE80211_DEBUG_FRAG("could not invalidate fragment cache "
154 "entry (seq=%u)\n", seq
);
163 /* ieee80211_rx_frame_mgtmt
165 * Responsible for handling management control frames
167 * Called by ieee80211_rx */
169 ieee80211_rx_frame_mgmt(struct ieee80211_device
*ieee
, struct sk_buff
*skb
,
170 struct ieee80211_rx_stats
*rx_stats
, u16 type
,
173 if (ieee
->iw_mode
== IW_MODE_MASTER
) {
174 printk(KERN_DEBUG
"%s: Master mode not yet suppported.\n",
178 hostap_update_sta_ps(ieee, (struct hostap_ieee80211_hdr_4addr *)
182 if (ieee
->hostapd
&& type
== WLAN_FC_TYPE_MGMT
) {
183 if (stype
== WLAN_FC_STYPE_BEACON
&&
184 ieee
->iw_mode
== IW_MODE_MASTER
) {
185 struct sk_buff
*skb2
;
186 /* Process beacon frames also in kernel driver to
187 * update STA(AP) table statistics */
188 skb2
= skb_clone(skb
, GFP_ATOMIC
);
190 hostap_rx(skb2
->dev
, skb2
, rx_stats
);
193 /* send management frames to the user space daemon for
195 ieee
->apdevstats
.rx_packets
++;
196 ieee
->apdevstats
.rx_bytes
+= skb
->len
;
197 prism2_rx_80211(ieee
->apdev
, skb
, rx_stats
, PRISM2_RX_MGMT
);
201 if (ieee
->iw_mode
== IW_MODE_MASTER
) {
202 if (type
!= WLAN_FC_TYPE_MGMT
&& type
!= WLAN_FC_TYPE_CTRL
) {
203 printk(KERN_DEBUG
"%s: unknown management frame "
204 "(type=0x%02x, stype=0x%02x) dropped\n",
205 skb
->dev
->name
, type
, stype
);
209 hostap_rx(skb
->dev
, skb
, rx_stats
);
213 printk(KERN_DEBUG
"%s: hostap_rx_frame_mgmt: management frame "
214 "received in non-Host AP mode\n", skb
->dev
->name
);
219 /* See IEEE 802.1H for LLC/SNAP encapsulation/decapsulation */
220 /* Ethernet-II snap header (RFC1042 for most EtherTypes) */
221 static unsigned char rfc1042_header
[] = { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
223 /* Bridge-Tunnel header (for EtherTypes ETH_P_AARP and ETH_P_IPX) */
224 static unsigned char bridge_tunnel_header
[] =
225 { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0xf8 };
226 /* No encapsulation header if EtherType < 0x600 (=length) */
228 /* Called by ieee80211_rx_frame_decrypt */
229 static int ieee80211_is_eapol_frame(struct ieee80211_device
*ieee
,
232 struct net_device
*dev
= ieee
->dev
;
234 struct ieee80211_hdr_3addr
*hdr
;
240 hdr
= (struct ieee80211_hdr_3addr
*)skb
->data
;
241 fc
= le16_to_cpu(hdr
->frame_ctl
);
243 /* check that the frame is unicast frame to us */
244 if ((fc
& (IEEE80211_FCTL_TODS
| IEEE80211_FCTL_FROMDS
)) ==
245 IEEE80211_FCTL_TODS
&&
246 memcmp(hdr
->addr1
, dev
->dev_addr
, ETH_ALEN
) == 0 &&
247 memcmp(hdr
->addr3
, dev
->dev_addr
, ETH_ALEN
) == 0) {
248 /* ToDS frame with own addr BSSID and DA */
249 } else if ((fc
& (IEEE80211_FCTL_TODS
| IEEE80211_FCTL_FROMDS
)) ==
250 IEEE80211_FCTL_FROMDS
&&
251 memcmp(hdr
->addr1
, dev
->dev_addr
, ETH_ALEN
) == 0) {
252 /* FromDS frame with own addr as DA */
256 if (skb
->len
< 24 + 8)
259 /* check for port access entity Ethernet type */
260 pos
= skb
->data
+ 24;
261 ethertype
= (pos
[6] << 8) | pos
[7];
262 if (ethertype
== ETH_P_PAE
)
268 /* Called only as a tasklet (software IRQ), by ieee80211_rx */
270 ieee80211_rx_frame_decrypt(struct ieee80211_device
*ieee
, struct sk_buff
*skb
,
271 struct ieee80211_crypt_data
*crypt
)
273 struct ieee80211_hdr_3addr
*hdr
;
276 if (crypt
== NULL
|| crypt
->ops
->decrypt_mpdu
== NULL
)
279 hdr
= (struct ieee80211_hdr_3addr
*)skb
->data
;
280 hdrlen
= ieee80211_get_hdrlen(le16_to_cpu(hdr
->frame_ctl
));
282 atomic_inc(&crypt
->refcnt
);
283 res
= crypt
->ops
->decrypt_mpdu(skb
, hdrlen
, crypt
->priv
);
284 atomic_dec(&crypt
->refcnt
);
286 IEEE80211_DEBUG_DROP("decryption failed (SA=" MAC_FMT
287 ") res=%d\n", MAC_ARG(hdr
->addr2
), res
);
289 IEEE80211_DEBUG_DROP("Decryption failed ICV "
290 "mismatch (key %d)\n",
291 skb
->data
[hdrlen
+ 3] >> 6);
292 ieee
->ieee_stats
.rx_discards_undecryptable
++;
299 /* Called only as a tasklet (software IRQ), by ieee80211_rx */
301 ieee80211_rx_frame_decrypt_msdu(struct ieee80211_device
*ieee
,
302 struct sk_buff
*skb
, int keyidx
,
303 struct ieee80211_crypt_data
*crypt
)
305 struct ieee80211_hdr_3addr
*hdr
;
308 if (crypt
== NULL
|| crypt
->ops
->decrypt_msdu
== NULL
)
311 hdr
= (struct ieee80211_hdr_3addr
*)skb
->data
;
312 hdrlen
= ieee80211_get_hdrlen(le16_to_cpu(hdr
->frame_ctl
));
314 atomic_inc(&crypt
->refcnt
);
315 res
= crypt
->ops
->decrypt_msdu(skb
, keyidx
, hdrlen
, crypt
->priv
);
316 atomic_dec(&crypt
->refcnt
);
318 printk(KERN_DEBUG
"%s: MSDU decryption/MIC verification failed"
319 " (SA=" MAC_FMT
" keyidx=%d)\n",
320 ieee
->dev
->name
, MAC_ARG(hdr
->addr2
), keyidx
);
327 /* All received frames are sent to this function. @skb contains the frame in
328 * IEEE 802.11 format, i.e., in the format it was sent over air.
329 * This function is called only as a tasklet (software IRQ). */
330 int ieee80211_rx(struct ieee80211_device
*ieee
, struct sk_buff
*skb
,
331 struct ieee80211_rx_stats
*rx_stats
)
333 struct net_device
*dev
= ieee
->dev
;
334 struct ieee80211_hdr_4addr
*hdr
;
336 u16 fc
, type
, stype
, sc
;
337 struct net_device_stats
*stats
;
342 struct net_device
*wds
= NULL
;
343 struct sk_buff
*skb2
= NULL
;
344 struct net_device
*wds
= NULL
;
345 int frame_authorized
= 0;
346 int from_assoc_ap
= 0;
351 struct ieee80211_crypt_data
*crypt
= NULL
;
354 hdr
= (struct ieee80211_hdr_4addr
*)skb
->data
;
355 stats
= &ieee
->stats
;
358 printk(KERN_INFO
"%s: SKB length < 10\n", dev
->name
);
362 fc
= le16_to_cpu(hdr
->frame_ctl
);
363 type
= WLAN_FC_GET_TYPE(fc
);
364 stype
= WLAN_FC_GET_STYPE(fc
);
365 sc
= le16_to_cpu(hdr
->seq_ctl
);
366 frag
= WLAN_GET_SEQ_FRAG(sc
);
367 hdrlen
= ieee80211_get_hdrlen(fc
);
369 /* Put this code here so that we avoid duplicating it in all
370 * Rx paths. - Jean II */
371 #ifdef IW_WIRELESS_SPY /* defined in iw_handler.h */
372 #ifdef CONFIG_NET_RADIO
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 /* CONFIG_NET_RADIO */
400 #endif /* IW_WIRELESS_SPY */
403 hostap_update_rx_stats(local
->ap
, hdr
, rx_stats
);
406 if (ieee
->iw_mode
== IW_MODE_MONITOR
) {
407 ieee80211_monitor_rx(ieee
, skb
, rx_stats
);
409 stats
->rx_bytes
+= skb
->len
;
413 if ((is_multicast_ether_addr(hdr
->addr1
) ||
414 is_broadcast_ether_addr(hdr
->addr2
)) ? ieee
->host_mc_decrypt
:
415 ieee
->host_decrypt
) {
417 if (skb
->len
>= hdrlen
+ 3)
418 idx
= skb
->data
[hdrlen
+ 3] >> 6;
419 crypt
= ieee
->crypt
[idx
];
423 /* Use station specific key to override default keys if the
424 * receiver address is a unicast address ("individual RA"). If
425 * bcrx_sta_key parameter is set, station specific key is used
426 * even with broad/multicast targets (this is against IEEE
427 * 802.11, but makes it easier to use different keys with
428 * stations that do not support WEP key mapping). */
430 if (!(hdr
->addr1
[0] & 0x01) || local
->bcrx_sta_key
)
431 (void)hostap_handle_sta_crypto(local
, hdr
, &crypt
,
435 /* allow NULL decrypt to indicate an station specific override
436 * for default encryption */
437 if (crypt
&& (crypt
->ops
== NULL
||
438 crypt
->ops
->decrypt_mpdu
== NULL
))
441 if (!crypt
&& (fc
& IEEE80211_FCTL_PROTECTED
)) {
442 /* This seems to be triggered by some (multicast?)
443 * frames from other than current BSS, so just drop the
444 * frames silently instead of filling system log with
446 IEEE80211_DEBUG_DROP("Decryption failed (not set)"
447 " (SA=" MAC_FMT
")\n",
448 MAC_ARG(hdr
->addr2
));
449 ieee
->ieee_stats
.rx_discards_undecryptable
++;
454 if (type
!= WLAN_FC_TYPE_DATA
) {
455 if (type
== WLAN_FC_TYPE_MGMT
&& stype
== WLAN_FC_STYPE_AUTH
&&
456 fc
& IEEE80211_FCTL_PROTECTED
&& ieee
->host_decrypt
&&
457 (keyidx
= hostap_rx_frame_decrypt(ieee
, skb
, crypt
)) < 0) {
458 printk(KERN_DEBUG
"%s: failed to decrypt mgmt::auth "
459 "from " MAC_FMT
"\n", dev
->name
,
460 MAC_ARG(hdr
->addr2
));
461 /* TODO: could inform hostapd about this so that it
462 * could send auth failure report */
466 if (ieee80211_rx_frame_mgmt(ieee
, skb
, rx_stats
, type
, stype
))
473 /* Data frame - extract src/dst addresses */
474 if (skb
->len
< IEEE80211_3ADDR_LEN
)
477 switch (fc
& (IEEE80211_FCTL_FROMDS
| IEEE80211_FCTL_TODS
)) {
478 case IEEE80211_FCTL_FROMDS
:
479 memcpy(dst
, hdr
->addr1
, ETH_ALEN
);
480 memcpy(src
, hdr
->addr3
, ETH_ALEN
);
482 case IEEE80211_FCTL_TODS
:
483 memcpy(dst
, hdr
->addr3
, ETH_ALEN
);
484 memcpy(src
, hdr
->addr2
, ETH_ALEN
);
486 case IEEE80211_FCTL_FROMDS
| IEEE80211_FCTL_TODS
:
487 if (skb
->len
< IEEE80211_4ADDR_LEN
)
489 memcpy(dst
, hdr
->addr3
, ETH_ALEN
);
490 memcpy(src
, hdr
->addr4
, ETH_ALEN
);
493 memcpy(dst
, hdr
->addr1
, ETH_ALEN
);
494 memcpy(src
, hdr
->addr2
, ETH_ALEN
);
499 if (hostap_rx_frame_wds(ieee
, hdr
, fc
, &wds
))
502 skb
->dev
= dev
= wds
;
503 stats
= hostap_get_stats(dev
);
506 if (ieee
->iw_mode
== IW_MODE_MASTER
&& !wds
&&
507 (fc
& (IEEE80211_FCTL_TODS
| IEEE80211_FCTL_FROMDS
)) ==
508 IEEE80211_FCTL_FROMDS
&& ieee
->stadev
509 && memcmp(hdr
->addr2
, ieee
->assoc_ap_addr
, ETH_ALEN
) == 0) {
510 /* Frame from BSSID of the AP for which we are a client */
511 skb
->dev
= dev
= ieee
->stadev
;
512 stats
= hostap_get_stats(dev
);
517 dev
->last_rx
= jiffies
;
520 if ((ieee
->iw_mode
== IW_MODE_MASTER
||
521 ieee
->iw_mode
== IW_MODE_REPEAT
) && !from_assoc_ap
) {
522 switch (hostap_handle_sta_rx(ieee
, dev
, skb
, rx_stats
,
524 case AP_RX_CONTINUE_NOT_AUTHORIZED
:
525 frame_authorized
= 0;
528 frame_authorized
= 1;
538 /* Nullfunc frames may have PS-bit set, so they must be passed to
539 * hostap_handle_sta_rx() before being dropped here. */
541 stype
&= ~IEEE80211_STYPE_QOS_DATA
;
543 if (stype
!= IEEE80211_STYPE_DATA
&&
544 stype
!= IEEE80211_STYPE_DATA_CFACK
&&
545 stype
!= IEEE80211_STYPE_DATA_CFPOLL
&&
546 stype
!= IEEE80211_STYPE_DATA_CFACKPOLL
) {
547 if (stype
!= IEEE80211_STYPE_NULLFUNC
)
548 IEEE80211_DEBUG_DROP("RX: dropped data frame "
549 "with no data (type=0x%02x, "
550 "subtype=0x%02x, len=%d)\n",
551 type
, stype
, skb
->len
);
555 /* skb: hdr + (possibly fragmented, possibly encrypted) payload */
557 if (ieee
->host_decrypt
&& (fc
& IEEE80211_FCTL_PROTECTED
) &&
558 (keyidx
= ieee80211_rx_frame_decrypt(ieee
, skb
, crypt
)) < 0)
561 hdr
= (struct ieee80211_hdr_4addr
*)skb
->data
;
563 /* skb: hdr + (possibly fragmented) plaintext payload */
564 // PR: FIXME: hostap has additional conditions in the "if" below:
565 // ieee->host_decrypt && (fc & IEEE80211_FCTL_PROTECTED) &&
566 if ((frag
!= 0 || (fc
& IEEE80211_FCTL_MOREFRAGS
))) {
568 struct sk_buff
*frag_skb
= ieee80211_frag_cache_get(ieee
, hdr
);
569 IEEE80211_DEBUG_FRAG("Rx Fragment received (%u)\n", frag
);
572 IEEE80211_DEBUG(IEEE80211_DL_RX
| IEEE80211_DL_FRAG
,
573 "Rx cannot get skb from fragment "
574 "cache (morefrag=%d seq=%u frag=%u)\n",
575 (fc
& IEEE80211_FCTL_MOREFRAGS
) != 0,
576 WLAN_GET_SEQ_SEQ(sc
), frag
);
584 if (frag_skb
->tail
+ flen
> frag_skb
->end
) {
585 printk(KERN_WARNING
"%s: host decrypted and "
586 "reassembled frame did not fit skb\n",
588 ieee80211_frag_cache_invalidate(ieee
, hdr
);
593 /* copy first fragment (including full headers) into
594 * beginning of the fragment cache skb */
595 memcpy(skb_put(frag_skb
, flen
), skb
->data
, flen
);
597 /* append frame payload to the end of the fragment
599 memcpy(skb_put(frag_skb
, flen
), skb
->data
+ hdrlen
,
602 dev_kfree_skb_any(skb
);
605 if (fc
& IEEE80211_FCTL_MOREFRAGS
) {
606 /* more fragments expected - leave the skb in fragment
607 * cache for now; it will be delivered to upper layers
608 * after all fragments have been received */
612 /* this was the last fragment and the frame will be
613 * delivered, so remove skb from fragment cache */
615 hdr
= (struct ieee80211_hdr_4addr
*)skb
->data
;
616 ieee80211_frag_cache_invalidate(ieee
, hdr
);
619 /* skb: hdr + (possible reassembled) full MSDU payload; possibly still
620 * encrypted/authenticated */
621 if (ieee
->host_decrypt
&& (fc
& IEEE80211_FCTL_PROTECTED
) &&
622 ieee80211_rx_frame_decrypt_msdu(ieee
, skb
, keyidx
, crypt
))
625 hdr
= (struct ieee80211_hdr_4addr
*)skb
->data
;
626 if (crypt
&& !(fc
& IEEE80211_FCTL_PROTECTED
) && !ieee
->open_wep
) {
627 if ( /*ieee->ieee802_1x && */
628 ieee80211_is_eapol_frame(ieee
, skb
)) {
629 /* pass unencrypted EAPOL frames even if encryption is
632 IEEE80211_DEBUG_DROP("encryption configured, but RX "
633 "frame not encrypted (SA=" MAC_FMT
634 ")\n", MAC_ARG(hdr
->addr2
));
639 if (crypt
&& !(fc
& IEEE80211_FCTL_PROTECTED
) && !ieee
->open_wep
&&
640 !ieee80211_is_eapol_frame(ieee
, skb
)) {
641 IEEE80211_DEBUG_DROP("dropped unencrypted RX data "
642 "frame from " MAC_FMT
643 " (drop_unencrypted=1)\n",
644 MAC_ARG(hdr
->addr2
));
648 /* skb: hdr + (possible reassembled) full plaintext payload */
650 payload
= skb
->data
+ hdrlen
;
651 ethertype
= (payload
[6] << 8) | payload
[7];
654 /* If IEEE 802.1X is used, check whether the port is authorized to send
655 * the received frame. */
656 if (ieee
->ieee802_1x
&& ieee
->iw_mode
== IW_MODE_MASTER
) {
657 if (ethertype
== ETH_P_PAE
) {
658 printk(KERN_DEBUG
"%s: RX: IEEE 802.1X frame\n",
660 if (ieee
->hostapd
&& ieee
->apdev
) {
661 /* Send IEEE 802.1X frames to the user
662 * space daemon for processing */
663 prism2_rx_80211(ieee
->apdev
, skb
, rx_stats
,
665 ieee
->apdevstats
.rx_packets
++;
666 ieee
->apdevstats
.rx_bytes
+= skb
->len
;
669 } else if (!frame_authorized
) {
670 printk(KERN_DEBUG
"%s: dropped frame from "
671 "unauthorized port (IEEE 802.1X): "
672 "ethertype=0x%04x\n", dev
->name
, ethertype
);
678 /* convert hdr + possible LLC headers into Ethernet header */
679 if (skb
->len
- hdrlen
>= 8 &&
680 ((memcmp(payload
, rfc1042_header
, SNAP_SIZE
) == 0 &&
681 ethertype
!= ETH_P_AARP
&& ethertype
!= ETH_P_IPX
) ||
682 memcmp(payload
, bridge_tunnel_header
, SNAP_SIZE
) == 0)) {
683 /* remove RFC1042 or Bridge-Tunnel encapsulation and
684 * replace EtherType */
685 skb_pull(skb
, hdrlen
+ SNAP_SIZE
);
686 memcpy(skb_push(skb
, ETH_ALEN
), src
, ETH_ALEN
);
687 memcpy(skb_push(skb
, ETH_ALEN
), dst
, ETH_ALEN
);
690 /* Leave Ethernet header part of hdr and full payload */
691 skb_pull(skb
, hdrlen
);
692 len
= htons(skb
->len
);
693 memcpy(skb_push(skb
, 2), &len
, 2);
694 memcpy(skb_push(skb
, ETH_ALEN
), src
, ETH_ALEN
);
695 memcpy(skb_push(skb
, ETH_ALEN
), dst
, ETH_ALEN
);
699 if (wds
&& ((fc
& (IEEE80211_FCTL_TODS
| IEEE80211_FCTL_FROMDS
)) ==
700 IEEE80211_FCTL_TODS
) && skb
->len
>= ETH_HLEN
+ ETH_ALEN
) {
701 /* Non-standard frame: get addr4 from its bogus location after
703 memcpy(skb
->data
+ ETH_ALEN
,
704 skb
->data
+ skb
->len
- ETH_ALEN
, ETH_ALEN
);
705 skb_trim(skb
, skb
->len
- ETH_ALEN
);
710 stats
->rx_bytes
+= skb
->len
;
713 if (ieee
->iw_mode
== IW_MODE_MASTER
&& !wds
&& ieee
->ap
->bridge_packets
) {
715 /* copy multicast frame both to the higher layers and
716 * to the wireless media */
717 ieee
->ap
->bridged_multicast
++;
718 skb2
= skb_clone(skb
, GFP_ATOMIC
);
720 printk(KERN_DEBUG
"%s: skb_clone failed for "
721 "multicast frame\n", dev
->name
);
722 } else if (hostap_is_sta_assoc(ieee
->ap
, dst
)) {
723 /* send frame directly to the associated STA using
724 * wireless media and not passing to higher layers */
725 ieee
->ap
->bridged_unicast
++;
732 /* send to wireless media */
733 skb2
->protocol
= __constant_htons(ETH_P_802_3
);
734 skb2
->mac
.raw
= skb2
->nh
.raw
= skb2
->data
;
735 /* skb2->nh.raw = skb2->data + ETH_HLEN; */
737 dev_queue_xmit(skb2
);
742 skb
->protocol
= eth_type_trans(skb
, dev
);
743 memset(skb
->cb
, 0, sizeof(skb
->cb
));
745 skb
->ip_summed
= CHECKSUM_NONE
; /* 802.11 crc not sufficient */
752 hostap_handle_sta_release(sta
);
759 /* Returning 0 indicates to caller that we have not handled the SKB--
760 * so it is still allocated and can be used again by underlying
761 * hardware as a DMA target */
765 #define MGMT_FRAME_FIXED_PART_LENGTH 0x24
767 static u8 qos_oui
[QOS_OUI_LEN
] = { 0x00, 0x50, 0xF2 };
770 * Make ther structure we read from the beacon packet has
773 static int ieee80211_verify_qos_info(struct ieee80211_qos_information_element
774 *info_element
, int sub_type
)
777 if (info_element
->qui_subtype
!= sub_type
)
779 if (memcmp(info_element
->qui
, qos_oui
, QOS_OUI_LEN
))
781 if (info_element
->qui_type
!= QOS_OUI_TYPE
)
783 if (info_element
->version
!= QOS_VERSION_1
)
790 * Parse a QoS parameter element
792 static int ieee80211_read_qos_param_element(struct ieee80211_qos_parameter_info
793 *element_param
, struct ieee80211_info_element
797 u16 size
= sizeof(struct ieee80211_qos_parameter_info
) - 2;
799 if ((info_element
== NULL
) || (element_param
== NULL
))
802 if (info_element
->id
== QOS_ELEMENT_ID
&& info_element
->len
== size
) {
803 memcpy(element_param
->info_element
.qui
, info_element
->data
,
805 element_param
->info_element
.elementID
= info_element
->id
;
806 element_param
->info_element
.length
= info_element
->len
;
810 ret
= ieee80211_verify_qos_info(&element_param
->info_element
,
811 QOS_OUI_PARAM_SUB_TYPE
);
816 * Parse a QoS information element
818 static int ieee80211_read_qos_info_element(struct
819 ieee80211_qos_information_element
820 *element_info
, struct ieee80211_info_element
824 u16 size
= sizeof(struct ieee80211_qos_information_element
) - 2;
826 if (element_info
== NULL
)
828 if (info_element
== NULL
)
831 if ((info_element
->id
== QOS_ELEMENT_ID
) && (info_element
->len
== size
)) {
832 memcpy(element_info
->qui
, info_element
->data
,
834 element_info
->elementID
= info_element
->id
;
835 element_info
->length
= info_element
->len
;
840 ret
= ieee80211_verify_qos_info(element_info
,
841 QOS_OUI_INFO_SUB_TYPE
);
846 * Write QoS parameters from the ac parameters.
848 static int ieee80211_qos_convert_ac_to_parameters(struct
849 ieee80211_qos_parameter_info
851 ieee80211_qos_parameters
856 struct ieee80211_qos_ac_parameter
*ac_params
;
861 for (i
= 0; i
< QOS_QUEUE_NUM
; i
++) {
862 ac_params
= &(param_elm
->ac_params_record
[i
]);
864 qos_param
->aifs
[i
] = (ac_params
->aci_aifsn
) & 0x0F;
865 qos_param
->aifs
[i
] -= (qos_param
->aifs
[i
] < 2) ? 0 : 2;
867 cw_min
= ac_params
->ecw_min_max
& 0x0F;
868 qos_param
->cw_min
[i
] = (u16
) ((1 << cw_min
) - 1);
870 cw_max
= (ac_params
->ecw_min_max
& 0xF0) >> 4;
871 qos_param
->cw_max
[i
] = (u16
) ((1 << cw_max
) - 1);
874 (ac_params
->aci_aifsn
& 0x10) ? 0x01 : 0x00;
876 txop
= le16_to_cpu(ac_params
->tx_op_limit
) * 32;
877 qos_param
->tx_op_limit
[i
] = (u16
) txop
;
883 * we have a generic data element which it may contain QoS information or
884 * parameters element. check the information element length to decide
887 static int ieee80211_parse_qos_info_param_IE(struct ieee80211_info_element
889 struct ieee80211_network
*network
)
892 struct ieee80211_qos_parameters
*qos_param
= NULL
;
893 struct ieee80211_qos_information_element qos_info_element
;
895 rc
= ieee80211_read_qos_info_element(&qos_info_element
, info_element
);
898 network
->qos_data
.param_count
= qos_info_element
.ac_info
& 0x0F;
899 network
->flags
|= NETWORK_HAS_QOS_INFORMATION
;
901 struct ieee80211_qos_parameter_info param_element
;
903 rc
= ieee80211_read_qos_param_element(¶m_element
,
906 qos_param
= &(network
->qos_data
.parameters
);
907 ieee80211_qos_convert_ac_to_parameters(¶m_element
,
909 network
->flags
|= NETWORK_HAS_QOS_PARAMETERS
;
910 network
->qos_data
.param_count
=
911 param_element
.info_element
.ac_info
& 0x0F;
916 IEEE80211_DEBUG_QOS("QoS is supported\n");
917 network
->qos_data
.supported
= 1;
922 static int ieee80211_parse_info_param(struct ieee80211_info_element
923 *info_element
, u16 length
,
924 struct ieee80211_network
*network
)
927 #ifdef CONFIG_IEEE80211_DEBUG
932 while (length
>= sizeof(*info_element
)) {
933 if (sizeof(*info_element
) + info_element
->len
> length
) {
934 IEEE80211_DEBUG_MGMT("Info elem: parse failed: "
935 "info_element->len + 2 > left : "
936 "info_element->len+2=%zd left=%d, id=%d.\n",
938 sizeof(*info_element
),
939 length
, info_element
->id
);
943 switch (info_element
->id
) {
945 if (ieee80211_is_empty_essid(info_element
->data
,
946 info_element
->len
)) {
947 network
->flags
|= NETWORK_EMPTY_ESSID
;
951 network
->ssid_len
= min(info_element
->len
,
952 (u8
) IW_ESSID_MAX_SIZE
);
953 memcpy(network
->ssid
, info_element
->data
,
955 if (network
->ssid_len
< IW_ESSID_MAX_SIZE
)
956 memset(network
->ssid
+ network
->ssid_len
, 0,
957 IW_ESSID_MAX_SIZE
- network
->ssid_len
);
959 IEEE80211_DEBUG_MGMT("MFIE_TYPE_SSID: '%s' len=%d.\n",
960 network
->ssid
, network
->ssid_len
);
963 case MFIE_TYPE_RATES
:
964 #ifdef CONFIG_IEEE80211_DEBUG
967 network
->rates_len
= min(info_element
->len
,
969 for (i
= 0; i
< network
->rates_len
; i
++) {
970 network
->rates
[i
] = info_element
->data
[i
];
971 #ifdef CONFIG_IEEE80211_DEBUG
972 p
+= snprintf(p
, sizeof(rates_str
) -
973 (p
- rates_str
), "%02X ",
976 if (ieee80211_is_ofdm_rate
977 (info_element
->data
[i
])) {
978 network
->flags
|= NETWORK_HAS_OFDM
;
979 if (info_element
->data
[i
] &
980 IEEE80211_BASIC_RATE_MASK
)
986 IEEE80211_DEBUG_MGMT("MFIE_TYPE_RATES: '%s' (%d)\n",
987 rates_str
, network
->rates_len
);
990 case MFIE_TYPE_RATES_EX
:
991 #ifdef CONFIG_IEEE80211_DEBUG
994 network
->rates_ex_len
= min(info_element
->len
,
995 MAX_RATES_EX_LENGTH
);
996 for (i
= 0; i
< network
->rates_ex_len
; i
++) {
997 network
->rates_ex
[i
] = info_element
->data
[i
];
998 #ifdef CONFIG_IEEE80211_DEBUG
999 p
+= snprintf(p
, sizeof(rates_str
) -
1000 (p
- rates_str
), "%02X ",
1003 if (ieee80211_is_ofdm_rate
1004 (info_element
->data
[i
])) {
1005 network
->flags
|= NETWORK_HAS_OFDM
;
1006 if (info_element
->data
[i
] &
1007 IEEE80211_BASIC_RATE_MASK
)
1013 IEEE80211_DEBUG_MGMT("MFIE_TYPE_RATES_EX: '%s' (%d)\n",
1014 rates_str
, network
->rates_ex_len
);
1017 case MFIE_TYPE_DS_SET
:
1018 IEEE80211_DEBUG_MGMT("MFIE_TYPE_DS_SET: %d\n",
1019 info_element
->data
[0]);
1020 network
->channel
= info_element
->data
[0];
1023 case MFIE_TYPE_FH_SET
:
1024 IEEE80211_DEBUG_MGMT("MFIE_TYPE_FH_SET: ignored\n");
1027 case MFIE_TYPE_CF_SET
:
1028 IEEE80211_DEBUG_MGMT("MFIE_TYPE_CF_SET: ignored\n");
1032 IEEE80211_DEBUG_MGMT("MFIE_TYPE_TIM: ignored\n");
1035 case MFIE_TYPE_ERP_INFO
:
1036 network
->erp_value
= info_element
->data
[0];
1037 IEEE80211_DEBUG_MGMT("MFIE_TYPE_ERP_SET: %d\n",
1038 network
->erp_value
);
1041 case MFIE_TYPE_IBSS_SET
:
1042 network
->atim_window
= info_element
->data
[0];
1043 IEEE80211_DEBUG_MGMT("MFIE_TYPE_IBSS_SET: %d\n",
1044 network
->atim_window
);
1047 case MFIE_TYPE_CHALLENGE
:
1048 IEEE80211_DEBUG_MGMT("MFIE_TYPE_CHALLENGE: ignored\n");
1051 case MFIE_TYPE_GENERIC
:
1052 IEEE80211_DEBUG_MGMT("MFIE_TYPE_GENERIC: %d bytes\n",
1054 if (!ieee80211_parse_qos_info_param_IE(info_element
,
1058 if (info_element
->len
>= 4 &&
1059 info_element
->data
[0] == 0x00 &&
1060 info_element
->data
[1] == 0x50 &&
1061 info_element
->data
[2] == 0xf2 &&
1062 info_element
->data
[3] == 0x01) {
1063 network
->wpa_ie_len
= min(info_element
->len
+ 2,
1065 memcpy(network
->wpa_ie
, info_element
,
1066 network
->wpa_ie_len
);
1071 IEEE80211_DEBUG_MGMT("MFIE_TYPE_RSN: %d bytes\n",
1073 network
->rsn_ie_len
= min(info_element
->len
+ 2,
1075 memcpy(network
->rsn_ie
, info_element
,
1076 network
->rsn_ie_len
);
1079 case MFIE_TYPE_QOS_PARAMETER
:
1081 "QoS Error need to parse QOS_PARAMETER IE\n");
1085 IEEE80211_DEBUG_MGMT("unsupported IE %d\n",
1090 length
-= sizeof(*info_element
) + info_element
->len
;
1092 (struct ieee80211_info_element
*)&info_element
->
1093 data
[info_element
->len
];
1099 static int ieee80211_handle_assoc_resp(struct ieee80211_device
*ieee
, struct ieee80211_assoc_response
1100 *frame
, struct ieee80211_rx_stats
*stats
)
1102 struct ieee80211_network network_resp
;
1103 struct ieee80211_network
*network
= &network_resp
;
1104 struct net_device
*dev
= ieee
->dev
;
1107 network
->qos_data
.active
= 0;
1108 network
->qos_data
.supported
= 0;
1109 network
->qos_data
.param_count
= 0;
1110 network
->qos_data
.old_param_count
= 0;
1112 //network->atim_window = le16_to_cpu(frame->aid) & (0x3FFF);
1113 network
->atim_window
= le16_to_cpu(frame
->aid
);
1114 network
->listen_interval
= le16_to_cpu(frame
->status
);
1115 memcpy(network
->bssid
, frame
->header
.addr3
, ETH_ALEN
);
1116 network
->capability
= le16_to_cpu(frame
->capability
);
1117 network
->last_scanned
= jiffies
;
1118 network
->rates_len
= network
->rates_ex_len
= 0;
1119 network
->last_associate
= 0;
1120 network
->ssid_len
= 0;
1121 network
->erp_value
=
1122 (network
->capability
& WLAN_CAPABILITY_IBSS
) ? 0x3 : 0x0;
1124 if (stats
->freq
== IEEE80211_52GHZ_BAND
) {
1125 /* for A band (No DS info) */
1126 network
->channel
= stats
->received_channel
;
1128 network
->flags
|= NETWORK_HAS_CCK
;
1130 network
->wpa_ie_len
= 0;
1131 network
->rsn_ie_len
= 0;
1133 if (ieee80211_parse_info_param
1134 (frame
->info_element
, stats
->len
- sizeof(*frame
), network
))
1138 if (stats
->freq
== IEEE80211_52GHZ_BAND
)
1139 network
->mode
= IEEE_A
;
1141 if (network
->flags
& NETWORK_HAS_OFDM
)
1142 network
->mode
|= IEEE_G
;
1143 if (network
->flags
& NETWORK_HAS_CCK
)
1144 network
->mode
|= IEEE_B
;
1147 if (ieee80211_is_empty_essid(network
->ssid
, network
->ssid_len
))
1148 network
->flags
|= NETWORK_EMPTY_ESSID
;
1150 memcpy(&network
->stats
, stats
, sizeof(network
->stats
));
1152 if (ieee
->handle_assoc_response
!= NULL
)
1153 ieee
->handle_assoc_response(dev
, frame
, network
);
1158 /***************************************************/
1160 static inline int ieee80211_network_init(struct ieee80211_device
*ieee
, struct ieee80211_probe_response
1162 struct ieee80211_network
*network
,
1163 struct ieee80211_rx_stats
*stats
)
1165 network
->qos_data
.active
= 0;
1166 network
->qos_data
.supported
= 0;
1167 network
->qos_data
.param_count
= 0;
1168 network
->qos_data
.old_param_count
= 0;
1170 /* Pull out fixed field data */
1171 memcpy(network
->bssid
, beacon
->header
.addr3
, ETH_ALEN
);
1172 network
->capability
= le16_to_cpu(beacon
->capability
);
1173 network
->last_scanned
= jiffies
;
1174 network
->time_stamp
[0] = le32_to_cpu(beacon
->time_stamp
[0]);
1175 network
->time_stamp
[1] = le32_to_cpu(beacon
->time_stamp
[1]);
1176 network
->beacon_interval
= le16_to_cpu(beacon
->beacon_interval
);
1177 /* Where to pull this? beacon->listen_interval; */
1178 network
->listen_interval
= 0x0A;
1179 network
->rates_len
= network
->rates_ex_len
= 0;
1180 network
->last_associate
= 0;
1181 network
->ssid_len
= 0;
1183 network
->atim_window
= 0;
1184 network
->erp_value
= (network
->capability
& WLAN_CAPABILITY_IBSS
) ?
1187 if (stats
->freq
== IEEE80211_52GHZ_BAND
) {
1188 /* for A band (No DS info) */
1189 network
->channel
= stats
->received_channel
;
1191 network
->flags
|= NETWORK_HAS_CCK
;
1193 network
->wpa_ie_len
= 0;
1194 network
->rsn_ie_len
= 0;
1196 if (ieee80211_parse_info_param
1197 (beacon
->info_element
, stats
->len
- sizeof(*beacon
), network
))
1201 if (stats
->freq
== IEEE80211_52GHZ_BAND
)
1202 network
->mode
= IEEE_A
;
1204 if (network
->flags
& NETWORK_HAS_OFDM
)
1205 network
->mode
|= IEEE_G
;
1206 if (network
->flags
& NETWORK_HAS_CCK
)
1207 network
->mode
|= IEEE_B
;
1210 if (network
->mode
== 0) {
1211 IEEE80211_DEBUG_SCAN("Filtered out '%s (" MAC_FMT
")' "
1213 escape_essid(network
->ssid
,
1215 MAC_ARG(network
->bssid
));
1219 if (ieee80211_is_empty_essid(network
->ssid
, network
->ssid_len
))
1220 network
->flags
|= NETWORK_EMPTY_ESSID
;
1222 memcpy(&network
->stats
, stats
, sizeof(network
->stats
));
1227 static inline int is_same_network(struct ieee80211_network
*src
,
1228 struct ieee80211_network
*dst
)
1230 /* A network is only a duplicate if the channel, BSSID, and ESSID
1231 * all match. We treat all <hidden> with the same BSSID and channel
1233 return ((src
->ssid_len
== dst
->ssid_len
) &&
1234 (src
->channel
== dst
->channel
) &&
1235 !memcmp(src
->bssid
, dst
->bssid
, ETH_ALEN
) &&
1236 !memcmp(src
->ssid
, dst
->ssid
, src
->ssid_len
));
1239 static inline void update_network(struct ieee80211_network
*dst
,
1240 struct ieee80211_network
*src
)
1245 memcpy(&dst
->stats
, &src
->stats
, sizeof(struct ieee80211_rx_stats
));
1246 dst
->capability
= src
->capability
;
1247 memcpy(dst
->rates
, src
->rates
, src
->rates_len
);
1248 dst
->rates_len
= src
->rates_len
;
1249 memcpy(dst
->rates_ex
, src
->rates_ex
, src
->rates_ex_len
);
1250 dst
->rates_ex_len
= src
->rates_ex_len
;
1252 dst
->mode
= src
->mode
;
1253 dst
->flags
= src
->flags
;
1254 dst
->time_stamp
[0] = src
->time_stamp
[0];
1255 dst
->time_stamp
[1] = src
->time_stamp
[1];
1257 dst
->beacon_interval
= src
->beacon_interval
;
1258 dst
->listen_interval
= src
->listen_interval
;
1259 dst
->atim_window
= src
->atim_window
;
1260 dst
->erp_value
= src
->erp_value
;
1262 memcpy(dst
->wpa_ie
, src
->wpa_ie
, src
->wpa_ie_len
);
1263 dst
->wpa_ie_len
= src
->wpa_ie_len
;
1264 memcpy(dst
->rsn_ie
, src
->rsn_ie
, src
->rsn_ie_len
);
1265 dst
->rsn_ie_len
= src
->rsn_ie_len
;
1267 dst
->last_scanned
= jiffies
;
1268 qos_active
= src
->qos_data
.active
;
1269 old_param
= dst
->qos_data
.old_param_count
;
1270 if (dst
->flags
& NETWORK_HAS_QOS_MASK
)
1271 memcpy(&dst
->qos_data
, &src
->qos_data
,
1272 sizeof(struct ieee80211_qos_data
));
1274 dst
->qos_data
.supported
= src
->qos_data
.supported
;
1275 dst
->qos_data
.param_count
= src
->qos_data
.param_count
;
1278 if (dst
->qos_data
.supported
== 1) {
1281 ("QoS the network %s is QoS supported\n",
1285 ("QoS the network is QoS supported\n");
1287 dst
->qos_data
.active
= qos_active
;
1288 dst
->qos_data
.old_param_count
= old_param
;
1290 /* dst->last_associate is not overwritten */
1293 static inline int is_beacon(int fc
)
1295 return (WLAN_FC_GET_STYPE(le16_to_cpu(fc
)) == IEEE80211_STYPE_BEACON
);
1298 static inline void ieee80211_process_probe_response(struct ieee80211_device
1300 ieee80211_probe_response
1301 *beacon
, struct ieee80211_rx_stats
1304 struct net_device
*dev
= ieee
->dev
;
1305 struct ieee80211_network network
;
1306 struct ieee80211_network
*target
;
1307 struct ieee80211_network
*oldest
= NULL
;
1308 #ifdef CONFIG_IEEE80211_DEBUG
1309 struct ieee80211_info_element
*info_element
= beacon
->info_element
;
1311 unsigned long flags
;
1313 IEEE80211_DEBUG_SCAN("'%s' (" MAC_FMT
1314 "): %c%c%c%c %c%c%c%c-%c%c%c%c %c%c%c%c\n",
1315 escape_essid(info_element
->data
,
1317 MAC_ARG(beacon
->header
.addr3
),
1318 (beacon
->capability
& (1 << 0xf)) ? '1' : '0',
1319 (beacon
->capability
& (1 << 0xe)) ? '1' : '0',
1320 (beacon
->capability
& (1 << 0xd)) ? '1' : '0',
1321 (beacon
->capability
& (1 << 0xc)) ? '1' : '0',
1322 (beacon
->capability
& (1 << 0xb)) ? '1' : '0',
1323 (beacon
->capability
& (1 << 0xa)) ? '1' : '0',
1324 (beacon
->capability
& (1 << 0x9)) ? '1' : '0',
1325 (beacon
->capability
& (1 << 0x8)) ? '1' : '0',
1326 (beacon
->capability
& (1 << 0x7)) ? '1' : '0',
1327 (beacon
->capability
& (1 << 0x6)) ? '1' : '0',
1328 (beacon
->capability
& (1 << 0x5)) ? '1' : '0',
1329 (beacon
->capability
& (1 << 0x4)) ? '1' : '0',
1330 (beacon
->capability
& (1 << 0x3)) ? '1' : '0',
1331 (beacon
->capability
& (1 << 0x2)) ? '1' : '0',
1332 (beacon
->capability
& (1 << 0x1)) ? '1' : '0',
1333 (beacon
->capability
& (1 << 0x0)) ? '1' : '0');
1335 if (ieee80211_network_init(ieee
, beacon
, &network
, stats
)) {
1336 IEEE80211_DEBUG_SCAN("Dropped '%s' (" MAC_FMT
") via %s.\n",
1337 escape_essid(info_element
->data
,
1339 MAC_ARG(beacon
->header
.addr3
),
1340 is_beacon(le16_to_cpu
1343 "BEACON" : "PROBE RESPONSE");
1347 /* The network parsed correctly -- so now we scan our known networks
1348 * to see if we can find it in our list.
1350 * NOTE: This search is definitely not optimized. Once its doing
1351 * the "right thing" we'll optimize it for efficiency if
1354 /* Search for this entry in the list and update it if it is
1357 spin_lock_irqsave(&ieee
->lock
, flags
);
1359 list_for_each_entry(target
, &ieee
->network_list
, list
) {
1360 if (is_same_network(target
, &network
))
1363 if ((oldest
== NULL
) ||
1364 (target
->last_scanned
< oldest
->last_scanned
))
1368 /* If we didn't find a match, then get a new network slot to initialize
1369 * with this beacon's information */
1370 if (&target
->list
== &ieee
->network_list
) {
1371 if (list_empty(&ieee
->network_free_list
)) {
1372 /* If there are no more slots, expire the oldest */
1373 list_del(&oldest
->list
);
1375 IEEE80211_DEBUG_SCAN("Expired '%s' (" MAC_FMT
") from "
1377 escape_essid(target
->ssid
,
1379 MAC_ARG(target
->bssid
));
1381 /* Otherwise just pull from the free list */
1382 target
= list_entry(ieee
->network_free_list
.next
,
1383 struct ieee80211_network
, list
);
1384 list_del(ieee
->network_free_list
.next
);
1387 #ifdef CONFIG_IEEE80211_DEBUG
1388 IEEE80211_DEBUG_SCAN("Adding '%s' (" MAC_FMT
") via %s.\n",
1389 escape_essid(network
.ssid
,
1391 MAC_ARG(network
.bssid
),
1392 is_beacon(le16_to_cpu
1395 "BEACON" : "PROBE RESPONSE");
1397 memcpy(target
, &network
, sizeof(*target
));
1398 list_add_tail(&target
->list
, &ieee
->network_list
);
1400 IEEE80211_DEBUG_SCAN("Updating '%s' (" MAC_FMT
") via %s.\n",
1401 escape_essid(target
->ssid
,
1403 MAC_ARG(target
->bssid
),
1404 is_beacon(le16_to_cpu
1407 "BEACON" : "PROBE RESPONSE");
1408 update_network(target
, &network
);
1411 spin_unlock_irqrestore(&ieee
->lock
, flags
);
1413 if (is_beacon(le16_to_cpu(beacon
->header
.frame_ctl
))) {
1414 if (ieee
->handle_beacon
!= NULL
)
1415 ieee
->handle_beacon(dev
, beacon
, &network
);
1417 if (ieee
->handle_probe_response
!= NULL
)
1418 ieee
->handle_probe_response(dev
, beacon
, &network
);
1422 void ieee80211_rx_mgt(struct ieee80211_device
*ieee
,
1423 struct ieee80211_hdr_4addr
*header
,
1424 struct ieee80211_rx_stats
*stats
)
1426 switch (WLAN_FC_GET_STYPE(le16_to_cpu(header
->frame_ctl
))) {
1427 case IEEE80211_STYPE_ASSOC_RESP
:
1428 IEEE80211_DEBUG_MGMT("received ASSOCIATION RESPONSE (%d)\n",
1429 WLAN_FC_GET_STYPE(le16_to_cpu
1430 (header
->frame_ctl
)));
1431 ieee80211_handle_assoc_resp(ieee
,
1432 (struct ieee80211_assoc_response
*)
1436 case IEEE80211_STYPE_REASSOC_RESP
:
1437 IEEE80211_DEBUG_MGMT("received REASSOCIATION RESPONSE (%d)\n",
1438 WLAN_FC_GET_STYPE(le16_to_cpu
1439 (header
->frame_ctl
)));
1442 case IEEE80211_STYPE_PROBE_REQ
:
1443 IEEE80211_DEBUG_MGMT("recieved auth (%d)\n",
1444 WLAN_FC_GET_STYPE(le16_to_cpu
1445 (header
->frame_ctl
)));
1447 if (ieee
->handle_probe_request
!= NULL
)
1448 ieee
->handle_probe_request(ieee
->dev
,
1450 ieee80211_probe_request
*)
1454 case IEEE80211_STYPE_PROBE_RESP
:
1455 IEEE80211_DEBUG_MGMT("received PROBE RESPONSE (%d)\n",
1456 WLAN_FC_GET_STYPE(le16_to_cpu
1457 (header
->frame_ctl
)));
1458 IEEE80211_DEBUG_SCAN("Probe response\n");
1459 ieee80211_process_probe_response(ieee
,
1461 ieee80211_probe_response
*)
1465 case IEEE80211_STYPE_BEACON
:
1466 IEEE80211_DEBUG_MGMT("received BEACON (%d)\n",
1467 WLAN_FC_GET_STYPE(le16_to_cpu
1468 (header
->frame_ctl
)));
1469 IEEE80211_DEBUG_SCAN("Beacon\n");
1470 ieee80211_process_probe_response(ieee
,
1472 ieee80211_probe_response
*)
1475 case IEEE80211_STYPE_AUTH
:
1477 IEEE80211_DEBUG_MGMT("recieved auth (%d)\n",
1478 WLAN_FC_GET_STYPE(le16_to_cpu
1479 (header
->frame_ctl
)));
1481 if (ieee
->handle_auth
!= NULL
)
1482 ieee
->handle_auth(ieee
->dev
,
1483 (struct ieee80211_auth
*)header
);
1486 case IEEE80211_STYPE_DISASSOC
:
1487 if (ieee
->handle_disassoc
!= NULL
)
1488 ieee
->handle_disassoc(ieee
->dev
,
1489 (struct ieee80211_disassoc
*)
1493 case IEEE80211_STYPE_DEAUTH
:
1494 printk("DEAUTH from AP\n");
1495 if (ieee
->handle_deauth
!= NULL
)
1496 ieee
->handle_deauth(ieee
->dev
, (struct ieee80211_auth
*)
1500 IEEE80211_DEBUG_MGMT("received UNKNOWN (%d)\n",
1501 WLAN_FC_GET_STYPE(le16_to_cpu
1502 (header
->frame_ctl
)));
1503 IEEE80211_WARNING("%s: Unknown management packet: %d\n",
1505 WLAN_FC_GET_STYPE(le16_to_cpu
1506 (header
->frame_ctl
)));
1511 EXPORT_SYMBOL(ieee80211_rx_mgt
);
1512 EXPORT_SYMBOL(ieee80211_rx
);