1 #include <linux/etherdevice.h>
2 #include <linux/slab.h>
3 #include <net/lib80211.h>
4 #include <linux/if_arp.h>
6 #include "hostap_80211.h"
10 /* See IEEE 802.1H for LLC/SNAP encapsulation/decapsulation */
11 /* Ethernet-II snap header (RFC1042 for most EtherTypes) */
12 static unsigned char rfc1042_header
[] =
13 { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
14 /* Bridge-Tunnel header (for EtherTypes ETH_P_AARP and ETH_P_IPX) */
15 static unsigned char bridge_tunnel_header
[] =
16 { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0xf8 };
17 /* No encapsulation header if EtherType < 0x600 (=length) */
19 void hostap_dump_rx_80211(const char *name
, struct sk_buff
*skb
,
20 struct hostap_80211_rx_status
*rx_stats
)
22 struct ieee80211_hdr
*hdr
;
25 hdr
= (struct ieee80211_hdr
*) skb
->data
;
27 printk(KERN_DEBUG
"%s: RX signal=%d noise=%d rate=%d len=%d "
29 name
, rx_stats
->signal
, rx_stats
->noise
, rx_stats
->rate
,
35 fc
= le16_to_cpu(hdr
->frame_control
);
36 printk(KERN_DEBUG
" FC=0x%04x (type=%d:%d)%s%s",
37 fc
, (fc
& IEEE80211_FCTL_FTYPE
) >> 2,
38 (fc
& IEEE80211_FCTL_STYPE
) >> 4,
39 fc
& IEEE80211_FCTL_TODS
? " [ToDS]" : "",
40 fc
& IEEE80211_FCTL_FROMDS
? " [FromDS]" : "");
42 if (skb
->len
< IEEE80211_DATA_HDR3_LEN
) {
47 printk(" dur=0x%04x seq=0x%04x\n", le16_to_cpu(hdr
->duration_id
),
48 le16_to_cpu(hdr
->seq_ctrl
));
50 printk(KERN_DEBUG
" A1=%pM", hdr
->addr1
);
51 printk(" A2=%pM", hdr
->addr2
);
52 printk(" A3=%pM", hdr
->addr3
);
54 printk(" A4=%pM", hdr
->addr4
);
59 /* Send RX frame to netif with 802.11 (and possible prism) header.
60 * Called from hardware or software IRQ context. */
61 int prism2_rx_80211(struct net_device
*dev
, struct sk_buff
*skb
,
62 struct hostap_80211_rx_status
*rx_stats
, int type
)
64 struct hostap_interface
*iface
;
66 int hdrlen
, phdrlen
, head_need
, tail_need
;
68 int prism_header
, ret
;
69 struct ieee80211_hdr
*fhdr
;
71 iface
= netdev_priv(dev
);
74 if (dev
->type
== ARPHRD_IEEE80211_PRISM
) {
75 if (local
->monitor_type
== PRISM2_MONITOR_PRISM
) {
77 phdrlen
= sizeof(struct linux_wlan_ng_prism_hdr
);
78 } else { /* local->monitor_type == PRISM2_MONITOR_CAPHDR */
80 phdrlen
= sizeof(struct linux_wlan_ng_cap_hdr
);
82 } else if (dev
->type
== ARPHRD_IEEE80211_RADIOTAP
) {
84 phdrlen
= sizeof(struct hostap_radiotap_rx
);
90 fhdr
= (struct ieee80211_hdr
*) skb
->data
;
91 fc
= le16_to_cpu(fhdr
->frame_control
);
93 if (type
== PRISM2_RX_MGMT
&& (fc
& IEEE80211_FCTL_VERS
)) {
94 printk(KERN_DEBUG
"%s: dropped management frame with header "
95 "version %d\n", dev
->name
, fc
& IEEE80211_FCTL_VERS
);
96 dev_kfree_skb_any(skb
);
100 hdrlen
= hostap_80211_get_hdrlen(fhdr
->frame_control
);
102 /* check if there is enough room for extra data; if not, expand skb
103 * buffer to be large enough for the changes */
106 #ifdef PRISM2_ADD_BOGUS_CRC
108 #endif /* PRISM2_ADD_BOGUS_CRC */
110 head_need
-= skb_headroom(skb
);
111 tail_need
-= skb_tailroom(skb
);
113 if (head_need
> 0 || tail_need
> 0) {
114 if (pskb_expand_head(skb
, head_need
> 0 ? head_need
: 0,
115 tail_need
> 0 ? tail_need
: 0,
117 printk(KERN_DEBUG
"%s: prism2_rx_80211 failed to "
118 "reallocate skb buffer\n", dev
->name
);
119 dev_kfree_skb_any(skb
);
124 /* We now have an skb with enough head and tail room, so just insert
127 #ifdef PRISM2_ADD_BOGUS_CRC
128 memset(skb_put(skb
, 4), 0xff, 4); /* Prism2 strips CRC */
129 #endif /* PRISM2_ADD_BOGUS_CRC */
131 if (prism_header
== 1) {
132 struct linux_wlan_ng_prism_hdr
*hdr
;
133 hdr
= (struct linux_wlan_ng_prism_hdr
*)
134 skb_push(skb
, phdrlen
);
135 memset(hdr
, 0, phdrlen
);
136 hdr
->msgcode
= LWNG_CAP_DID_BASE
;
137 hdr
->msglen
= sizeof(*hdr
);
138 memcpy(hdr
->devname
, dev
->name
, sizeof(hdr
->devname
));
139 #define LWNG_SETVAL(f,i,s,l,d) \
140 hdr->f.did = LWNG_CAP_DID_BASE | (i << 12); \
141 hdr->f.status = s; hdr->f.len = l; hdr->f.data = d
142 LWNG_SETVAL(hosttime
, 1, 0, 4, jiffies
);
143 LWNG_SETVAL(mactime
, 2, 0, 4, rx_stats
->mac_time
);
144 LWNG_SETVAL(channel
, 3, 1 /* no value */, 4, 0);
145 LWNG_SETVAL(rssi
, 4, 1 /* no value */, 4, 0);
146 LWNG_SETVAL(sq
, 5, 1 /* no value */, 4, 0);
147 LWNG_SETVAL(signal
, 6, 0, 4, rx_stats
->signal
);
148 LWNG_SETVAL(noise
, 7, 0, 4, rx_stats
->noise
);
149 LWNG_SETVAL(rate
, 8, 0, 4, rx_stats
->rate
/ 5);
150 LWNG_SETVAL(istx
, 9, 0, 4, 0);
151 LWNG_SETVAL(frmlen
, 10, 0, 4, skb
->len
- phdrlen
);
153 } else if (prism_header
== 2) {
154 struct linux_wlan_ng_cap_hdr
*hdr
;
155 hdr
= (struct linux_wlan_ng_cap_hdr
*)
156 skb_push(skb
, phdrlen
);
157 memset(hdr
, 0, phdrlen
);
158 hdr
->version
= htonl(LWNG_CAPHDR_VERSION
);
159 hdr
->length
= htonl(phdrlen
);
160 hdr
->mactime
= __cpu_to_be64(rx_stats
->mac_time
);
161 hdr
->hosttime
= __cpu_to_be64(jiffies
);
162 hdr
->phytype
= htonl(4); /* dss_dot11_b */
163 hdr
->channel
= htonl(local
->channel
);
164 hdr
->datarate
= htonl(rx_stats
->rate
);
165 hdr
->antenna
= htonl(0); /* unknown */
166 hdr
->priority
= htonl(0); /* unknown */
167 hdr
->ssi_type
= htonl(3); /* raw */
168 hdr
->ssi_signal
= htonl(rx_stats
->signal
);
169 hdr
->ssi_noise
= htonl(rx_stats
->noise
);
170 hdr
->preamble
= htonl(0); /* unknown */
171 hdr
->encoding
= htonl(1); /* cck */
172 } else if (prism_header
== 3) {
173 struct hostap_radiotap_rx
*hdr
;
174 hdr
= (struct hostap_radiotap_rx
*)skb_push(skb
, phdrlen
);
175 memset(hdr
, 0, phdrlen
);
176 hdr
->hdr
.it_len
= cpu_to_le16(phdrlen
);
177 hdr
->hdr
.it_present
=
178 cpu_to_le32((1 << IEEE80211_RADIOTAP_TSFT
) |
179 (1 << IEEE80211_RADIOTAP_CHANNEL
) |
180 (1 << IEEE80211_RADIOTAP_RATE
) |
181 (1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL
) |
182 (1 << IEEE80211_RADIOTAP_DBM_ANTNOISE
));
183 hdr
->tsft
= cpu_to_le64(rx_stats
->mac_time
);
184 hdr
->chan_freq
= cpu_to_le16(freq_list
[local
->channel
- 1]);
185 hdr
->chan_flags
= cpu_to_le16(IEEE80211_CHAN_CCK
|
186 IEEE80211_CHAN_2GHZ
);
187 hdr
->rate
= rx_stats
->rate
/ 5;
188 hdr
->dbm_antsignal
= rx_stats
->signal
;
189 hdr
->dbm_antnoise
= rx_stats
->noise
;
192 ret
= skb
->len
- phdrlen
;
194 skb_reset_mac_header(skb
);
195 skb_pull(skb
, hdrlen
);
197 skb_pull(skb
, phdrlen
);
198 skb
->pkt_type
= PACKET_OTHERHOST
;
199 skb
->protocol
= cpu_to_be16(ETH_P_802_2
);
200 memset(skb
->cb
, 0, sizeof(skb
->cb
));
207 /* Called only as a tasklet (software IRQ) */
208 static void monitor_rx(struct net_device
*dev
, struct sk_buff
*skb
,
209 struct hostap_80211_rx_status
*rx_stats
)
213 len
= prism2_rx_80211(dev
, skb
, rx_stats
, PRISM2_RX_MONITOR
);
214 dev
->stats
.rx_packets
++;
215 dev
->stats
.rx_bytes
+= len
;
219 /* Called only as a tasklet (software IRQ) */
220 static struct prism2_frag_entry
*
221 prism2_frag_cache_find(local_info_t
*local
, unsigned int seq
,
222 unsigned int frag
, u8
*src
, u8
*dst
)
224 struct prism2_frag_entry
*entry
;
227 for (i
= 0; i
< PRISM2_FRAG_CACHE_LEN
; i
++) {
228 entry
= &local
->frag_cache
[i
];
229 if (entry
->skb
!= NULL
&&
230 time_after(jiffies
, entry
->first_frag_time
+ 2 * HZ
)) {
231 printk(KERN_DEBUG
"%s: expiring fragment cache entry "
232 "seq=%u last_frag=%u\n",
233 local
->dev
->name
, entry
->seq
, entry
->last_frag
);
234 dev_kfree_skb(entry
->skb
);
238 if (entry
->skb
!= NULL
&& entry
->seq
== seq
&&
239 (entry
->last_frag
+ 1 == frag
|| frag
== -1) &&
240 memcmp(entry
->src_addr
, src
, ETH_ALEN
) == 0 &&
241 memcmp(entry
->dst_addr
, dst
, ETH_ALEN
) == 0)
249 /* Called only as a tasklet (software IRQ) */
250 static struct sk_buff
*
251 prism2_frag_cache_get(local_info_t
*local
, struct ieee80211_hdr
*hdr
)
253 struct sk_buff
*skb
= NULL
;
255 unsigned int frag
, seq
;
256 struct prism2_frag_entry
*entry
;
258 sc
= le16_to_cpu(hdr
->seq_ctrl
);
259 frag
= sc
& IEEE80211_SCTL_FRAG
;
260 seq
= (sc
& IEEE80211_SCTL_SEQ
) >> 4;
263 /* Reserve enough space to fit maximum frame length */
264 skb
= dev_alloc_skb(local
->dev
->mtu
+
265 sizeof(struct ieee80211_hdr
) +
268 8 /* WEP */ + ETH_ALEN
/* WDS */);
272 entry
= &local
->frag_cache
[local
->frag_next_idx
];
273 local
->frag_next_idx
++;
274 if (local
->frag_next_idx
>= PRISM2_FRAG_CACHE_LEN
)
275 local
->frag_next_idx
= 0;
277 if (entry
->skb
!= NULL
)
278 dev_kfree_skb(entry
->skb
);
280 entry
->first_frag_time
= jiffies
;
282 entry
->last_frag
= frag
;
284 memcpy(entry
->src_addr
, hdr
->addr2
, ETH_ALEN
);
285 memcpy(entry
->dst_addr
, hdr
->addr1
, ETH_ALEN
);
287 /* received a fragment of a frame for which the head fragment
288 * should have already been received */
289 entry
= prism2_frag_cache_find(local
, seq
, frag
, hdr
->addr2
,
292 entry
->last_frag
= frag
;
301 /* Called only as a tasklet (software IRQ) */
302 static int prism2_frag_cache_invalidate(local_info_t
*local
,
303 struct ieee80211_hdr
*hdr
)
307 struct prism2_frag_entry
*entry
;
309 sc
= le16_to_cpu(hdr
->seq_ctrl
);
310 seq
= (sc
& IEEE80211_SCTL_SEQ
) >> 4;
312 entry
= prism2_frag_cache_find(local
, seq
, -1, hdr
->addr2
, hdr
->addr1
);
315 printk(KERN_DEBUG
"%s: could not invalidate fragment cache "
317 local
->dev
->name
, seq
);
326 static struct hostap_bss_info
*__hostap_get_bss(local_info_t
*local
, u8
*bssid
,
327 u8
*ssid
, size_t ssid_len
)
329 struct list_head
*ptr
;
330 struct hostap_bss_info
*bss
;
332 list_for_each(ptr
, &local
->bss_list
) {
333 bss
= list_entry(ptr
, struct hostap_bss_info
, list
);
334 if (memcmp(bss
->bssid
, bssid
, ETH_ALEN
) == 0 &&
336 (ssid_len
== bss
->ssid_len
&&
337 memcmp(ssid
, bss
->ssid
, ssid_len
) == 0))) {
338 list_move(&bss
->list
, &local
->bss_list
);
347 static struct hostap_bss_info
*__hostap_add_bss(local_info_t
*local
, u8
*bssid
,
348 u8
*ssid
, size_t ssid_len
)
350 struct hostap_bss_info
*bss
;
352 if (local
->num_bss_info
>= HOSTAP_MAX_BSS_COUNT
) {
353 bss
= list_entry(local
->bss_list
.prev
,
354 struct hostap_bss_info
, list
);
355 list_del(&bss
->list
);
356 local
->num_bss_info
--;
358 bss
= kmalloc(sizeof(*bss
), GFP_ATOMIC
);
363 memset(bss
, 0, sizeof(*bss
));
364 memcpy(bss
->bssid
, bssid
, ETH_ALEN
);
365 memcpy(bss
->ssid
, ssid
, ssid_len
);
366 bss
->ssid_len
= ssid_len
;
367 local
->num_bss_info
++;
368 list_add(&bss
->list
, &local
->bss_list
);
373 static void __hostap_expire_bss(local_info_t
*local
)
375 struct hostap_bss_info
*bss
;
377 while (local
->num_bss_info
> 0) {
378 bss
= list_entry(local
->bss_list
.prev
,
379 struct hostap_bss_info
, list
);
380 if (!time_after(jiffies
, bss
->last_update
+ 60 * HZ
))
383 list_del(&bss
->list
);
384 local
->num_bss_info
--;
390 /* Both IEEE 802.11 Beacon and Probe Response frames have similar structure, so
391 * the same routine can be used to parse both of them. */
392 static void hostap_rx_sta_beacon(local_info_t
*local
, struct sk_buff
*skb
,
395 struct hostap_ieee80211_mgmt
*mgmt
;
398 u8
*ssid
= NULL
, *wpa
= NULL
, *rsn
= NULL
;
399 size_t ssid_len
= 0, wpa_len
= 0, rsn_len
= 0;
400 struct hostap_bss_info
*bss
;
402 if (skb
->len
< IEEE80211_MGMT_HDR_LEN
+ sizeof(mgmt
->u
.beacon
))
405 mgmt
= (struct hostap_ieee80211_mgmt
*) skb
->data
;
406 pos
= mgmt
->u
.beacon
.variable
;
407 left
= skb
->len
- (pos
- skb
->data
);
410 if (2 + pos
[1] > left
)
411 return; /* parse failed */
417 case WLAN_EID_GENERIC
:
419 pos
[2] == 0x00 && pos
[3] == 0x50 &&
420 pos
[4] == 0xf2 && pos
[5] == 1) {
422 wpa_len
= pos
[1] + 2;
427 rsn_len
= pos
[1] + 2;
429 case WLAN_EID_DS_PARAMS
:
438 if (wpa_len
> MAX_WPA_IE_LEN
)
439 wpa_len
= MAX_WPA_IE_LEN
;
440 if (rsn_len
> MAX_WPA_IE_LEN
)
441 rsn_len
= MAX_WPA_IE_LEN
;
442 if (ssid_len
> sizeof(bss
->ssid
))
443 ssid_len
= sizeof(bss
->ssid
);
445 spin_lock(&local
->lock
);
446 bss
= __hostap_get_bss(local
, mgmt
->bssid
, ssid
, ssid_len
);
448 bss
= __hostap_add_bss(local
, mgmt
->bssid
, ssid
, ssid_len
);
450 bss
->last_update
= jiffies
;
452 bss
->capab_info
= le16_to_cpu(mgmt
->u
.beacon
.capab_info
);
454 memcpy(bss
->wpa_ie
, wpa
, wpa_len
);
455 bss
->wpa_ie_len
= wpa_len
;
459 memcpy(bss
->rsn_ie
, rsn
, rsn_len
);
460 bss
->rsn_ie_len
= rsn_len
;
465 __hostap_expire_bss(local
);
466 spin_unlock(&local
->lock
);
471 hostap_rx_frame_mgmt(local_info_t
*local
, struct sk_buff
*skb
,
472 struct hostap_80211_rx_status
*rx_stats
, u16 type
,
475 if (local
->iw_mode
== IW_MODE_MASTER
)
476 hostap_update_sta_ps(local
, (struct ieee80211_hdr
*) skb
->data
);
478 if (local
->hostapd
&& type
== IEEE80211_FTYPE_MGMT
) {
479 if (stype
== IEEE80211_STYPE_BEACON
&&
480 local
->iw_mode
== IW_MODE_MASTER
) {
481 struct sk_buff
*skb2
;
482 /* Process beacon frames also in kernel driver to
483 * update STA(AP) table statistics */
484 skb2
= skb_clone(skb
, GFP_ATOMIC
);
486 hostap_rx(skb2
->dev
, skb2
, rx_stats
);
489 /* send management frames to the user space daemon for
491 local
->apdevstats
.rx_packets
++;
492 local
->apdevstats
.rx_bytes
+= skb
->len
;
493 if (local
->apdev
== NULL
)
495 prism2_rx_80211(local
->apdev
, skb
, rx_stats
, PRISM2_RX_MGMT
);
499 if (local
->iw_mode
== IW_MODE_MASTER
) {
500 if (type
!= IEEE80211_FTYPE_MGMT
&&
501 type
!= IEEE80211_FTYPE_CTL
) {
502 printk(KERN_DEBUG
"%s: unknown management frame "
503 "(type=0x%02x, stype=0x%02x) dropped\n",
504 skb
->dev
->name
, type
>> 2, stype
>> 4);
508 hostap_rx(skb
->dev
, skb
, rx_stats
);
510 } else if (type
== IEEE80211_FTYPE_MGMT
&&
511 (stype
== IEEE80211_STYPE_BEACON
||
512 stype
== IEEE80211_STYPE_PROBE_RESP
)) {
513 hostap_rx_sta_beacon(local
, skb
, stype
);
515 } else if (type
== IEEE80211_FTYPE_MGMT
&&
516 (stype
== IEEE80211_STYPE_ASSOC_RESP
||
517 stype
== IEEE80211_STYPE_REASSOC_RESP
)) {
518 /* Ignore (Re)AssocResp silently since these are not currently
519 * needed but are still received when WPA/RSN mode is enabled.
523 printk(KERN_DEBUG
"%s: hostap_rx_frame_mgmt: dropped unhandled"
524 " management frame in non-Host AP mode (type=%d:%d)\n",
525 skb
->dev
->name
, type
>> 2, stype
>> 4);
531 /* Called only as a tasklet (software IRQ) */
532 static struct net_device
*prism2_rx_get_wds(local_info_t
*local
,
535 struct hostap_interface
*iface
= NULL
;
536 struct list_head
*ptr
;
538 read_lock_bh(&local
->iface_lock
);
539 list_for_each(ptr
, &local
->hostap_interfaces
) {
540 iface
= list_entry(ptr
, struct hostap_interface
, list
);
541 if (iface
->type
== HOSTAP_INTERFACE_WDS
&&
542 memcmp(iface
->u
.wds
.remote_addr
, addr
, ETH_ALEN
) == 0)
546 read_unlock_bh(&local
->iface_lock
);
548 return iface
? iface
->dev
: NULL
;
553 hostap_rx_frame_wds(local_info_t
*local
, struct ieee80211_hdr
*hdr
, u16 fc
,
554 struct net_device
**wds
)
556 /* FIX: is this really supposed to accept WDS frames only in Master
557 * mode? What about Repeater or Managed with WDS frames? */
558 if ((fc
& (IEEE80211_FCTL_TODS
| IEEE80211_FCTL_FROMDS
)) !=
559 (IEEE80211_FCTL_TODS
| IEEE80211_FCTL_FROMDS
) &&
560 (local
->iw_mode
!= IW_MODE_MASTER
|| !(fc
& IEEE80211_FCTL_TODS
)))
561 return 0; /* not a WDS frame */
563 /* Possible WDS frame: either IEEE 802.11 compliant (if FromDS)
564 * or own non-standard frame with 4th address after payload */
565 if (memcmp(hdr
->addr1
, local
->dev
->dev_addr
, ETH_ALEN
) != 0 &&
566 (hdr
->addr1
[0] != 0xff || hdr
->addr1
[1] != 0xff ||
567 hdr
->addr1
[2] != 0xff || hdr
->addr1
[3] != 0xff ||
568 hdr
->addr1
[4] != 0xff || hdr
->addr1
[5] != 0xff)) {
569 /* RA (or BSSID) is not ours - drop */
570 PDEBUG(DEBUG_EXTRA2
, "%s: received WDS frame with "
571 "not own or broadcast %s=%pM\n",
573 fc
& IEEE80211_FCTL_FROMDS
? "RA" : "BSSID",
578 /* check if the frame came from a registered WDS connection */
579 *wds
= prism2_rx_get_wds(local
, hdr
->addr2
);
580 if (*wds
== NULL
&& fc
& IEEE80211_FCTL_FROMDS
&&
581 (local
->iw_mode
!= IW_MODE_INFRA
||
582 !(local
->wds_type
& HOSTAP_WDS_AP_CLIENT
) ||
583 memcmp(hdr
->addr2
, local
->bssid
, ETH_ALEN
) != 0)) {
584 /* require that WDS link has been registered with TA or the
585 * frame is from current AP when using 'AP client mode' */
586 PDEBUG(DEBUG_EXTRA
, "%s: received WDS[4 addr] frame "
587 "from unknown TA=%pM\n",
588 local
->dev
->name
, hdr
->addr2
);
589 if (local
->ap
&& local
->ap
->autom_ap_wds
)
590 hostap_wds_link_oper(local
, hdr
->addr2
, WDS_ADD
);
594 if (*wds
&& !(fc
& IEEE80211_FCTL_FROMDS
) && local
->ap
&&
595 hostap_is_sta_assoc(local
->ap
, hdr
->addr2
)) {
596 /* STA is actually associated with us even though it has a
597 * registered WDS link. Assume it is in 'AP client' mode.
598 * Since this is a 3-addr frame, assume it is not (bogus) WDS
599 * frame and process it like any normal ToDS frame from
608 static int hostap_is_eapol_frame(local_info_t
*local
, struct sk_buff
*skb
)
610 struct net_device
*dev
= local
->dev
;
612 struct ieee80211_hdr
*hdr
;
618 hdr
= (struct ieee80211_hdr
*) skb
->data
;
619 fc
= le16_to_cpu(hdr
->frame_control
);
621 /* check that the frame is unicast frame to us */
622 if ((fc
& (IEEE80211_FCTL_TODS
| IEEE80211_FCTL_FROMDS
)) ==
623 IEEE80211_FCTL_TODS
&&
624 memcmp(hdr
->addr1
, dev
->dev_addr
, ETH_ALEN
) == 0 &&
625 memcmp(hdr
->addr3
, dev
->dev_addr
, ETH_ALEN
) == 0) {
626 /* ToDS frame with own addr BSSID and DA */
627 } else if ((fc
& (IEEE80211_FCTL_TODS
| IEEE80211_FCTL_FROMDS
)) ==
628 IEEE80211_FCTL_FROMDS
&&
629 memcmp(hdr
->addr1
, dev
->dev_addr
, ETH_ALEN
) == 0) {
630 /* FromDS frame with own addr as DA */
634 if (skb
->len
< 24 + 8)
637 /* check for port access entity Ethernet type */
638 pos
= skb
->data
+ 24;
639 ethertype
= (pos
[6] << 8) | pos
[7];
640 if (ethertype
== ETH_P_PAE
)
647 /* Called only as a tasklet (software IRQ) */
649 hostap_rx_frame_decrypt(local_info_t
*local
, struct sk_buff
*skb
,
650 struct lib80211_crypt_data
*crypt
)
652 struct ieee80211_hdr
*hdr
;
655 if (crypt
== NULL
|| crypt
->ops
->decrypt_mpdu
== NULL
)
658 hdr
= (struct ieee80211_hdr
*) skb
->data
;
659 hdrlen
= hostap_80211_get_hdrlen(hdr
->frame_control
);
661 if (local
->tkip_countermeasures
&&
662 strcmp(crypt
->ops
->name
, "TKIP") == 0) {
663 if (net_ratelimit()) {
664 printk(KERN_DEBUG
"%s: TKIP countermeasures: dropped "
665 "received packet from %pM\n",
666 local
->dev
->name
, hdr
->addr2
);
671 atomic_inc(&crypt
->refcnt
);
672 res
= crypt
->ops
->decrypt_mpdu(skb
, hdrlen
, crypt
->priv
);
673 atomic_dec(&crypt
->refcnt
);
675 printk(KERN_DEBUG
"%s: decryption failed (SA=%pM) res=%d\n",
676 local
->dev
->name
, hdr
->addr2
, res
);
677 local
->comm_tallies
.rx_discards_wep_undecryptable
++;
685 /* Called only as a tasklet (software IRQ) */
687 hostap_rx_frame_decrypt_msdu(local_info_t
*local
, struct sk_buff
*skb
,
688 int keyidx
, struct lib80211_crypt_data
*crypt
)
690 struct ieee80211_hdr
*hdr
;
693 if (crypt
== NULL
|| crypt
->ops
->decrypt_msdu
== NULL
)
696 hdr
= (struct ieee80211_hdr
*) skb
->data
;
697 hdrlen
= hostap_80211_get_hdrlen(hdr
->frame_control
);
699 atomic_inc(&crypt
->refcnt
);
700 res
= crypt
->ops
->decrypt_msdu(skb
, keyidx
, hdrlen
, crypt
->priv
);
701 atomic_dec(&crypt
->refcnt
);
703 printk(KERN_DEBUG
"%s: MSDU decryption/MIC verification failed"
704 " (SA=%pM keyidx=%d)\n",
705 local
->dev
->name
, hdr
->addr2
, keyidx
);
713 /* All received frames are sent to this function. @skb contains the frame in
714 * IEEE 802.11 format, i.e., in the format it was sent over air.
715 * This function is called only as a tasklet (software IRQ). */
716 void hostap_80211_rx(struct net_device
*dev
, struct sk_buff
*skb
,
717 struct hostap_80211_rx_status
*rx_stats
)
719 struct hostap_interface
*iface
;
721 struct ieee80211_hdr
*hdr
;
723 u16 fc
, type
, stype
, sc
;
724 struct net_device
*wds
= NULL
;
727 struct sk_buff
*skb2
= NULL
;
729 int frame_authorized
= 0;
730 int from_assoc_ap
= 0;
733 struct lib80211_crypt_data
*crypt
= NULL
;
737 iface
= netdev_priv(dev
);
738 local
= iface
->local
;
739 iface
->stats
.rx_packets
++;
740 iface
->stats
.rx_bytes
+= skb
->len
;
742 /* dev is the master radio device; change this to be the default
743 * virtual interface (this may be changed to WDS device below) */
745 iface
= netdev_priv(dev
);
747 hdr
= (struct ieee80211_hdr
*) skb
->data
;
752 fc
= le16_to_cpu(hdr
->frame_control
);
753 type
= fc
& IEEE80211_FCTL_FTYPE
;
754 stype
= fc
& IEEE80211_FCTL_STYPE
;
755 sc
= le16_to_cpu(hdr
->seq_ctrl
);
756 frag
= sc
& IEEE80211_SCTL_FRAG
;
757 hdrlen
= hostap_80211_get_hdrlen(hdr
->frame_control
);
759 /* Put this code here so that we avoid duplicating it in all
760 * Rx paths. - Jean II */
761 #ifdef IW_WIRELESS_SPY /* defined in iw_handler.h */
762 /* If spy monitoring on */
763 if (iface
->spy_data
.spy_number
> 0) {
764 struct iw_quality wstats
;
765 wstats
.level
= rx_stats
->signal
;
766 wstats
.noise
= rx_stats
->noise
;
767 wstats
.updated
= IW_QUAL_LEVEL_UPDATED
| IW_QUAL_NOISE_UPDATED
768 | IW_QUAL_QUAL_INVALID
| IW_QUAL_DBM
;
769 /* Update spy records */
770 wireless_spy_update(dev
, hdr
->addr2
, &wstats
);
772 #endif /* IW_WIRELESS_SPY */
773 hostap_update_rx_stats(local
->ap
, hdr
, rx_stats
);
775 if (local
->iw_mode
== IW_MODE_MONITOR
) {
776 monitor_rx(dev
, skb
, rx_stats
);
780 if (local
->host_decrypt
) {
782 if (skb
->len
>= hdrlen
+ 3)
783 idx
= skb
->data
[hdrlen
+ 3] >> 6;
784 crypt
= local
->crypt_info
.crypt
[idx
];
787 /* Use station specific key to override default keys if the
788 * receiver address is a unicast address ("individual RA"). If
789 * bcrx_sta_key parameter is set, station specific key is used
790 * even with broad/multicast targets (this is against IEEE
791 * 802.11, but makes it easier to use different keys with
792 * stations that do not support WEP key mapping). */
794 if (!(hdr
->addr1
[0] & 0x01) || local
->bcrx_sta_key
)
795 (void) hostap_handle_sta_crypto(local
, hdr
, &crypt
,
798 /* allow NULL decrypt to indicate an station specific override
799 * for default encryption */
800 if (crypt
&& (crypt
->ops
== NULL
||
801 crypt
->ops
->decrypt_mpdu
== NULL
))
804 if (!crypt
&& (fc
& IEEE80211_FCTL_PROTECTED
)) {
806 /* This seems to be triggered by some (multicast?)
807 * frames from other than current BSS, so just drop the
808 * frames silently instead of filling system log with
810 printk(KERN_DEBUG
"%s: WEP decryption failed (not set)"
812 local
->dev
->name
, hdr
->addr2
);
814 local
->comm_tallies
.rx_discards_wep_undecryptable
++;
819 if (type
!= IEEE80211_FTYPE_DATA
) {
820 if (type
== IEEE80211_FTYPE_MGMT
&&
821 stype
== IEEE80211_STYPE_AUTH
&&
822 fc
& IEEE80211_FCTL_PROTECTED
&& local
->host_decrypt
&&
823 (keyidx
= hostap_rx_frame_decrypt(local
, skb
, crypt
)) < 0)
825 printk(KERN_DEBUG
"%s: failed to decrypt mgmt::auth "
826 "from %pM\n", dev
->name
, hdr
->addr2
);
827 /* TODO: could inform hostapd about this so that it
828 * could send auth failure report */
832 if (hostap_rx_frame_mgmt(local
, skb
, rx_stats
, type
, stype
))
838 /* Data frame - extract src/dst addresses */
839 if (skb
->len
< IEEE80211_DATA_HDR3_LEN
)
842 switch (fc
& (IEEE80211_FCTL_FROMDS
| IEEE80211_FCTL_TODS
)) {
843 case IEEE80211_FCTL_FROMDS
:
844 memcpy(dst
, hdr
->addr1
, ETH_ALEN
);
845 memcpy(src
, hdr
->addr3
, ETH_ALEN
);
847 case IEEE80211_FCTL_TODS
:
848 memcpy(dst
, hdr
->addr3
, ETH_ALEN
);
849 memcpy(src
, hdr
->addr2
, ETH_ALEN
);
851 case IEEE80211_FCTL_FROMDS
| IEEE80211_FCTL_TODS
:
852 if (skb
->len
< IEEE80211_DATA_HDR4_LEN
)
854 memcpy(dst
, hdr
->addr3
, ETH_ALEN
);
855 memcpy(src
, hdr
->addr4
, ETH_ALEN
);
858 memcpy(dst
, hdr
->addr1
, ETH_ALEN
);
859 memcpy(src
, hdr
->addr2
, ETH_ALEN
);
863 if (hostap_rx_frame_wds(local
, hdr
, fc
, &wds
))
866 skb
->dev
= dev
= wds
;
868 if (local
->iw_mode
== IW_MODE_MASTER
&& !wds
&&
869 (fc
& (IEEE80211_FCTL_TODS
| IEEE80211_FCTL_FROMDS
)) ==
870 IEEE80211_FCTL_FROMDS
&&
872 memcmp(hdr
->addr2
, local
->assoc_ap_addr
, ETH_ALEN
) == 0) {
873 /* Frame from BSSID of the AP for which we are a client */
874 skb
->dev
= dev
= local
->stadev
;
878 if ((local
->iw_mode
== IW_MODE_MASTER
||
879 local
->iw_mode
== IW_MODE_REPEAT
) &&
881 switch (hostap_handle_sta_rx(local
, dev
, skb
, rx_stats
,
883 case AP_RX_CONTINUE_NOT_AUTHORIZED
:
884 frame_authorized
= 0;
887 frame_authorized
= 1;
896 /* Nullfunc frames may have PS-bit set, so they must be passed to
897 * hostap_handle_sta_rx() before being dropped here. */
898 if (stype
!= IEEE80211_STYPE_DATA
&&
899 stype
!= IEEE80211_STYPE_DATA_CFACK
&&
900 stype
!= IEEE80211_STYPE_DATA_CFPOLL
&&
901 stype
!= IEEE80211_STYPE_DATA_CFACKPOLL
) {
902 if (stype
!= IEEE80211_STYPE_NULLFUNC
)
903 printk(KERN_DEBUG
"%s: RX: dropped data frame "
904 "with no data (type=0x%02x, subtype=0x%02x)\n",
905 dev
->name
, type
>> 2, stype
>> 4);
909 /* skb: hdr + (possibly fragmented, possibly encrypted) payload */
911 if (local
->host_decrypt
&& (fc
& IEEE80211_FCTL_PROTECTED
) &&
912 (keyidx
= hostap_rx_frame_decrypt(local
, skb
, crypt
)) < 0)
914 hdr
= (struct ieee80211_hdr
*) skb
->data
;
916 /* skb: hdr + (possibly fragmented) plaintext payload */
918 if (local
->host_decrypt
&& (fc
& IEEE80211_FCTL_PROTECTED
) &&
919 (frag
!= 0 || (fc
& IEEE80211_FCTL_MOREFRAGS
))) {
921 struct sk_buff
*frag_skb
=
922 prism2_frag_cache_get(local
, hdr
);
924 printk(KERN_DEBUG
"%s: Rx cannot get skb from "
925 "fragment cache (morefrag=%d seq=%u frag=%u)\n",
926 dev
->name
, (fc
& IEEE80211_FCTL_MOREFRAGS
) != 0,
927 (sc
& IEEE80211_SCTL_SEQ
) >> 4, frag
);
935 if (frag_skb
->tail
+ flen
> frag_skb
->end
) {
936 printk(KERN_WARNING
"%s: host decrypted and "
937 "reassembled frame did not fit skb\n",
939 prism2_frag_cache_invalidate(local
, hdr
);
944 /* copy first fragment (including full headers) into
945 * beginning of the fragment cache skb */
946 skb_copy_from_linear_data(skb
, skb_put(frag_skb
, flen
),
949 /* append frame payload to the end of the fragment
951 skb_copy_from_linear_data_offset(skb
, hdrlen
,
958 if (fc
& IEEE80211_FCTL_MOREFRAGS
) {
959 /* more fragments expected - leave the skb in fragment
960 * cache for now; it will be delivered to upper layers
961 * after all fragments have been received */
965 /* this was the last fragment and the frame will be
966 * delivered, so remove skb from fragment cache */
968 hdr
= (struct ieee80211_hdr
*) skb
->data
;
969 prism2_frag_cache_invalidate(local
, hdr
);
972 /* skb: hdr + (possible reassembled) full MSDU payload; possibly still
973 * encrypted/authenticated */
975 if (local
->host_decrypt
&& (fc
& IEEE80211_FCTL_PROTECTED
) &&
976 hostap_rx_frame_decrypt_msdu(local
, skb
, keyidx
, crypt
))
979 hdr
= (struct ieee80211_hdr
*) skb
->data
;
980 if (crypt
&& !(fc
& IEEE80211_FCTL_PROTECTED
) && !local
->open_wep
) {
981 if (local
->ieee_802_1x
&&
982 hostap_is_eapol_frame(local
, skb
)) {
983 /* pass unencrypted EAPOL frames even if encryption is
985 PDEBUG(DEBUG_EXTRA2
, "%s: RX: IEEE 802.1X - passing "
986 "unencrypted EAPOL frame\n", local
->dev
->name
);
988 printk(KERN_DEBUG
"%s: encryption configured, but RX "
989 "frame not encrypted (SA=%pM)\n",
990 local
->dev
->name
, hdr
->addr2
);
995 if (local
->drop_unencrypted
&& !(fc
& IEEE80211_FCTL_PROTECTED
) &&
996 !hostap_is_eapol_frame(local
, skb
)) {
997 if (net_ratelimit()) {
998 printk(KERN_DEBUG
"%s: dropped unencrypted RX data "
999 "frame from %pM (drop_unencrypted=1)\n",
1000 dev
->name
, hdr
->addr2
);
1005 /* skb: hdr + (possible reassembled) full plaintext payload */
1007 payload
= skb
->data
+ hdrlen
;
1008 ethertype
= (payload
[6] << 8) | payload
[7];
1010 /* If IEEE 802.1X is used, check whether the port is authorized to send
1011 * the received frame. */
1012 if (local
->ieee_802_1x
&& local
->iw_mode
== IW_MODE_MASTER
) {
1013 if (ethertype
== ETH_P_PAE
) {
1014 PDEBUG(DEBUG_EXTRA2
, "%s: RX: IEEE 802.1X frame\n",
1016 if (local
->hostapd
&& local
->apdev
) {
1017 /* Send IEEE 802.1X frames to the user
1018 * space daemon for processing */
1019 prism2_rx_80211(local
->apdev
, skb
, rx_stats
,
1021 local
->apdevstats
.rx_packets
++;
1022 local
->apdevstats
.rx_bytes
+= skb
->len
;
1025 } else if (!frame_authorized
) {
1026 printk(KERN_DEBUG
"%s: dropped frame from "
1027 "unauthorized port (IEEE 802.1X): "
1028 "ethertype=0x%04x\n",
1029 dev
->name
, ethertype
);
1034 /* convert hdr + possible LLC headers into Ethernet header */
1035 if (skb
->len
- hdrlen
>= 8 &&
1036 ((memcmp(payload
, rfc1042_header
, 6) == 0 &&
1037 ethertype
!= ETH_P_AARP
&& ethertype
!= ETH_P_IPX
) ||
1038 memcmp(payload
, bridge_tunnel_header
, 6) == 0)) {
1039 /* remove RFC1042 or Bridge-Tunnel encapsulation and
1040 * replace EtherType */
1041 skb_pull(skb
, hdrlen
+ 6);
1042 memcpy(skb_push(skb
, ETH_ALEN
), src
, ETH_ALEN
);
1043 memcpy(skb_push(skb
, ETH_ALEN
), dst
, ETH_ALEN
);
1046 /* Leave Ethernet header part of hdr and full payload */
1047 skb_pull(skb
, hdrlen
);
1048 len
= htons(skb
->len
);
1049 memcpy(skb_push(skb
, 2), &len
, 2);
1050 memcpy(skb_push(skb
, ETH_ALEN
), src
, ETH_ALEN
);
1051 memcpy(skb_push(skb
, ETH_ALEN
), dst
, ETH_ALEN
);
1054 if (wds
&& ((fc
& (IEEE80211_FCTL_TODS
| IEEE80211_FCTL_FROMDS
)) ==
1055 IEEE80211_FCTL_TODS
) &&
1056 skb
->len
>= ETH_HLEN
+ ETH_ALEN
) {
1057 /* Non-standard frame: get addr4 from its bogus location after
1059 skb_copy_from_linear_data_offset(skb
, skb
->len
- ETH_ALEN
,
1060 skb
->data
+ ETH_ALEN
,
1062 skb_trim(skb
, skb
->len
- ETH_ALEN
);
1065 dev
->stats
.rx_packets
++;
1066 dev
->stats
.rx_bytes
+= skb
->len
;
1068 if (local
->iw_mode
== IW_MODE_MASTER
&& !wds
&&
1069 local
->ap
->bridge_packets
) {
1070 if (dst
[0] & 0x01) {
1071 /* copy multicast frame both to the higher layers and
1072 * to the wireless media */
1073 local
->ap
->bridged_multicast
++;
1074 skb2
= skb_clone(skb
, GFP_ATOMIC
);
1076 printk(KERN_DEBUG
"%s: skb_clone failed for "
1077 "multicast frame\n", dev
->name
);
1078 } else if (hostap_is_sta_authorized(local
->ap
, dst
)) {
1079 /* send frame directly to the associated STA using
1080 * wireless media and not passing to higher layers */
1081 local
->ap
->bridged_unicast
++;
1088 /* send to wireless media */
1090 skb2
->protocol
= cpu_to_be16(ETH_P_802_3
);
1091 skb_reset_mac_header(skb2
);
1092 skb_reset_network_header(skb2
);
1093 /* skb2->network_header += ETH_HLEN; */
1094 dev_queue_xmit(skb2
);
1098 skb
->protocol
= eth_type_trans(skb
, dev
);
1099 memset(skb
->cb
, 0, sizeof(skb
->cb
));
1105 hostap_handle_sta_release(sta
);
1111 dev
->stats
.rx_dropped
++;
1116 EXPORT_SYMBOL(hostap_80211_rx
);