2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2005-2006, Devicescape Software, Inc.
4 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
5 * Copyright 2007 Johannes Berg <johannes@sipsolutions.net>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/jiffies.h>
13 #include <linux/kernel.h>
14 #include <linux/skbuff.h>
15 #include <linux/netdevice.h>
16 #include <linux/etherdevice.h>
17 #include <linux/rcupdate.h>
18 #include <net/mac80211.h>
19 #include <net/ieee80211_radiotap.h>
21 #include "ieee80211_i.h"
29 u8
ieee80211_sta_manage_reorder_buf(struct ieee80211_hw
*hw
,
30 struct tid_ampdu_rx
*tid_agg_rx
,
31 struct sk_buff
*skb
, u16 mpdu_seq_num
,
34 * monitor mode reception
36 * This function cleans up the SKB, i.e. it removes all the stuff
37 * only useful for monitoring.
39 static struct sk_buff
*remove_monitor_info(struct ieee80211_local
*local
,
43 skb_pull(skb
, rtap_len
);
45 if (local
->hw
.flags
& IEEE80211_HW_RX_INCLUDES_FCS
) {
46 if (likely(skb
->len
> FCS_LEN
))
47 skb_trim(skb
, skb
->len
- FCS_LEN
);
59 static inline int should_drop_frame(struct ieee80211_rx_status
*status
,
64 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*)skb
->data
;
66 if (status
->flag
& (RX_FLAG_FAILED_FCS_CRC
| RX_FLAG_FAILED_PLCP_CRC
))
68 if (unlikely(skb
->len
< 16 + present_fcs_len
+ radiotap_len
))
70 if (ieee80211_is_ctl(hdr
->frame_control
) &&
71 !ieee80211_is_pspoll(hdr
->frame_control
) &&
72 !ieee80211_is_back_req(hdr
->frame_control
))
78 ieee80211_rx_radiotap_len(struct ieee80211_local
*local
,
79 struct ieee80211_rx_status
*status
)
83 /* always present fields */
84 len
= sizeof(struct ieee80211_radiotap_header
) + 9;
86 if (status
->flag
& RX_FLAG_TSFT
)
88 if (local
->hw
.flags
& IEEE80211_HW_SIGNAL_DB
||
89 local
->hw
.flags
& IEEE80211_HW_SIGNAL_DBM
)
91 if (local
->hw
.flags
& IEEE80211_HW_NOISE_DBM
)
94 if (len
& 1) /* padding for RX_FLAGS if necessary */
97 /* make sure radiotap starts at a naturally aligned address */
99 len
= roundup(len
, 8);
105 * ieee80211_add_rx_radiotap_header - add radiotap header
107 * add a radiotap header containing all the fields which the hardware provided.
110 ieee80211_add_rx_radiotap_header(struct ieee80211_local
*local
,
112 struct ieee80211_rx_status
*status
,
113 struct ieee80211_rate
*rate
,
116 struct ieee80211_radiotap_header
*rthdr
;
119 rthdr
= (struct ieee80211_radiotap_header
*)skb_push(skb
, rtap_len
);
120 memset(rthdr
, 0, rtap_len
);
122 /* radiotap header, set always present flags */
124 cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS
) |
125 (1 << IEEE80211_RADIOTAP_RATE
) |
126 (1 << IEEE80211_RADIOTAP_CHANNEL
) |
127 (1 << IEEE80211_RADIOTAP_ANTENNA
) |
128 (1 << IEEE80211_RADIOTAP_RX_FLAGS
));
129 rthdr
->it_len
= cpu_to_le16(rtap_len
);
131 pos
= (unsigned char *)(rthdr
+1);
133 /* the order of the following fields is important */
135 /* IEEE80211_RADIOTAP_TSFT */
136 if (status
->flag
& RX_FLAG_TSFT
) {
137 *(__le64
*)pos
= cpu_to_le64(status
->mactime
);
139 cpu_to_le32(1 << IEEE80211_RADIOTAP_TSFT
);
143 /* IEEE80211_RADIOTAP_FLAGS */
144 if (local
->hw
.flags
& IEEE80211_HW_RX_INCLUDES_FCS
)
145 *pos
|= IEEE80211_RADIOTAP_F_FCS
;
146 if (status
->flag
& RX_FLAG_SHORTPRE
)
147 *pos
|= IEEE80211_RADIOTAP_F_SHORTPRE
;
150 /* IEEE80211_RADIOTAP_RATE */
151 *pos
= rate
->bitrate
/ 5;
154 /* IEEE80211_RADIOTAP_CHANNEL */
155 *(__le16
*)pos
= cpu_to_le16(status
->freq
);
157 if (status
->band
== IEEE80211_BAND_5GHZ
)
158 *(__le16
*)pos
= cpu_to_le16(IEEE80211_CHAN_OFDM
|
159 IEEE80211_CHAN_5GHZ
);
160 else if (rate
->flags
& IEEE80211_RATE_ERP_G
)
161 *(__le16
*)pos
= cpu_to_le16(IEEE80211_CHAN_OFDM
|
162 IEEE80211_CHAN_2GHZ
);
164 *(__le16
*)pos
= cpu_to_le16(IEEE80211_CHAN_CCK
|
165 IEEE80211_CHAN_2GHZ
);
168 /* IEEE80211_RADIOTAP_DBM_ANTSIGNAL */
169 if (local
->hw
.flags
& IEEE80211_HW_SIGNAL_DBM
) {
170 *pos
= status
->signal
;
172 cpu_to_le32(1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL
);
176 /* IEEE80211_RADIOTAP_DBM_ANTNOISE */
177 if (local
->hw
.flags
& IEEE80211_HW_NOISE_DBM
) {
178 *pos
= status
->noise
;
180 cpu_to_le32(1 << IEEE80211_RADIOTAP_DBM_ANTNOISE
);
184 /* IEEE80211_RADIOTAP_LOCK_QUALITY is missing */
186 /* IEEE80211_RADIOTAP_ANTENNA */
187 *pos
= status
->antenna
;
190 /* IEEE80211_RADIOTAP_DB_ANTSIGNAL */
191 if (local
->hw
.flags
& IEEE80211_HW_SIGNAL_DB
) {
192 *pos
= status
->signal
;
194 cpu_to_le32(1 << IEEE80211_RADIOTAP_DB_ANTSIGNAL
);
198 /* IEEE80211_RADIOTAP_DB_ANTNOISE is not used */
200 /* IEEE80211_RADIOTAP_RX_FLAGS */
201 /* ensure 2 byte alignment for the 2 byte field as required */
202 if ((pos
- (unsigned char *)rthdr
) & 1)
204 /* FIXME: when radiotap gets a 'bad PLCP' flag use it here */
205 if (status
->flag
& (RX_FLAG_FAILED_FCS_CRC
| RX_FLAG_FAILED_PLCP_CRC
))
206 *(__le16
*)pos
|= cpu_to_le16(IEEE80211_RADIOTAP_F_RX_BADFCS
);
211 * This function copies a received frame to all monitor interfaces and
212 * returns a cleaned-up SKB that no longer includes the FCS nor the
213 * radiotap header the driver might have added.
215 static struct sk_buff
*
216 ieee80211_rx_monitor(struct ieee80211_local
*local
, struct sk_buff
*origskb
,
217 struct ieee80211_rx_status
*status
,
218 struct ieee80211_rate
*rate
)
220 struct ieee80211_sub_if_data
*sdata
;
221 int needed_headroom
= 0;
222 struct sk_buff
*skb
, *skb2
;
223 struct net_device
*prev_dev
= NULL
;
224 int present_fcs_len
= 0;
228 * First, we may need to make a copy of the skb because
229 * (1) we need to modify it for radiotap (if not present), and
230 * (2) the other RX handlers will modify the skb we got.
232 * We don't need to, of course, if we aren't going to return
233 * the SKB because it has a bad FCS/PLCP checksum.
235 if (status
->flag
& RX_FLAG_RADIOTAP
)
236 rtap_len
= ieee80211_get_radiotap_len(origskb
->data
);
238 /* room for the radiotap header based on driver features */
239 needed_headroom
= ieee80211_rx_radiotap_len(local
, status
);
241 if (local
->hw
.flags
& IEEE80211_HW_RX_INCLUDES_FCS
)
242 present_fcs_len
= FCS_LEN
;
244 if (!local
->monitors
) {
245 if (should_drop_frame(status
, origskb
, present_fcs_len
,
247 dev_kfree_skb(origskb
);
251 return remove_monitor_info(local
, origskb
, rtap_len
);
254 if (should_drop_frame(status
, origskb
, present_fcs_len
, rtap_len
)) {
255 /* only need to expand headroom if necessary */
260 * This shouldn't trigger often because most devices have an
261 * RX header they pull before we get here, and that should
262 * be big enough for our radiotap information. We should
263 * probably export the length to drivers so that we can have
264 * them allocate enough headroom to start with.
266 if (skb_headroom(skb
) < needed_headroom
&&
267 pskb_expand_head(skb
, needed_headroom
, 0, GFP_ATOMIC
)) {
273 * Need to make a copy and possibly remove radiotap header
274 * and FCS from the original.
276 skb
= skb_copy_expand(origskb
, needed_headroom
, 0, GFP_ATOMIC
);
278 origskb
= remove_monitor_info(local
, origskb
, rtap_len
);
284 /* if necessary, prepend radiotap information */
285 if (!(status
->flag
& RX_FLAG_RADIOTAP
))
286 ieee80211_add_rx_radiotap_header(local
, skb
, status
, rate
,
289 skb_reset_mac_header(skb
);
290 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
291 skb
->pkt_type
= PACKET_OTHERHOST
;
292 skb
->protocol
= htons(ETH_P_802_2
);
294 list_for_each_entry_rcu(sdata
, &local
->interfaces
, list
) {
295 if (!netif_running(sdata
->dev
))
298 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_MNTR
)
301 if (sdata
->u
.mntr_flags
& MONITOR_FLAG_COOK_FRAMES
)
305 skb2
= skb_clone(skb
, GFP_ATOMIC
);
307 skb2
->dev
= prev_dev
;
312 prev_dev
= sdata
->dev
;
313 sdata
->dev
->stats
.rx_packets
++;
314 sdata
->dev
->stats
.rx_bytes
+= skb
->len
;
327 static void ieee80211_parse_qos(struct ieee80211_rx_data
*rx
)
329 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*)rx
->skb
->data
;
332 /* does the frame have a qos control field? */
333 if (ieee80211_is_data_qos(hdr
->frame_control
)) {
334 u8
*qc
= ieee80211_get_qos_ctl(hdr
);
335 /* frame has qos control */
336 tid
= *qc
& IEEE80211_QOS_CTL_TID_MASK
;
337 if (*qc
& IEEE80211_QOS_CONTROL_A_MSDU_PRESENT
)
338 rx
->flags
|= IEEE80211_RX_AMSDU
;
340 rx
->flags
&= ~IEEE80211_RX_AMSDU
;
343 * IEEE 802.11-2007, 7.1.3.4.1 ("Sequence Number field"):
345 * Sequence numbers for management frames, QoS data
346 * frames with a broadcast/multicast address in the
347 * Address 1 field, and all non-QoS data frames sent
348 * by QoS STAs are assigned using an additional single
349 * modulo-4096 counter, [...]
351 * We also use that counter for non-QoS STAs.
353 tid
= NUM_RX_DATA_QUEUES
- 1;
357 /* Set skb->priority to 1d tag if highest order bit of TID is not set.
358 * For now, set skb->priority to 0 for other cases. */
359 rx
->skb
->priority
= (tid
> 7) ? 0 : tid
;
362 static void ieee80211_verify_ip_alignment(struct ieee80211_rx_data
*rx
)
364 #ifdef CONFIG_MAC80211_DEBUG_PACKET_ALIGNMENT
365 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*)rx
->skb
->data
;
368 if (!ieee80211_is_data_present(hdr
->frame_control
))
372 * Drivers are required to align the payload data in a way that
373 * guarantees that the contained IP header is aligned to a four-
374 * byte boundary. In the case of regular frames, this simply means
375 * aligning the payload to a four-byte boundary (because either
376 * the IP header is directly contained, or IV/RFC1042 headers that
377 * have a length divisible by four are in front of it.
379 * With A-MSDU frames, however, the payload data address must
380 * yield two modulo four because there are 14-byte 802.3 headers
381 * within the A-MSDU frames that push the IP header further back
382 * to a multiple of four again. Thankfully, the specs were sane
383 * enough this time around to require padding each A-MSDU subframe
384 * to a length that is a multiple of four.
386 * Padding like atheros hardware adds which is inbetween the 802.11
387 * header and the payload is not supported, the driver is required
388 * to move the 802.11 header further back in that case.
390 hdrlen
= ieee80211_hdrlen(hdr
->frame_control
);
391 if (rx
->flags
& IEEE80211_RX_AMSDU
)
393 WARN_ON_ONCE(((unsigned long)(rx
->skb
->data
+ hdrlen
)) & 3);
400 static ieee80211_rx_result debug_noinline
401 ieee80211_rx_h_passive_scan(struct ieee80211_rx_data
*rx
)
403 struct ieee80211_local
*local
= rx
->local
;
404 struct sk_buff
*skb
= rx
->skb
;
406 if (unlikely(local
->sta_hw_scanning
))
407 return ieee80211_sta_rx_scan(rx
->sdata
, skb
, rx
->status
);
409 if (unlikely(local
->sta_sw_scanning
)) {
410 /* drop all the other packets during a software scan anyway */
411 if (ieee80211_sta_rx_scan(rx
->sdata
, skb
, rx
->status
)
417 if (unlikely(rx
->flags
& IEEE80211_RX_IN_SCAN
)) {
418 /* scanning finished during invoking of handlers */
419 I802_DEBUG_INC(local
->rx_handlers_drop_passive_scan
);
420 return RX_DROP_UNUSABLE
;
426 static ieee80211_rx_result
427 ieee80211_rx_mesh_check(struct ieee80211_rx_data
*rx
)
429 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*)rx
->skb
->data
;
430 unsigned int hdrlen
= ieee80211_hdrlen(hdr
->frame_control
);
432 if (ieee80211_is_data(hdr
->frame_control
)) {
433 if (!ieee80211_has_a4(hdr
->frame_control
))
434 return RX_DROP_MONITOR
;
435 if (memcmp(hdr
->addr4
, rx
->dev
->dev_addr
, ETH_ALEN
) == 0)
436 return RX_DROP_MONITOR
;
439 /* If there is not an established peer link and this is not a peer link
440 * establisment frame, beacon or probe, drop the frame.
443 if (!rx
->sta
|| sta_plink_state(rx
->sta
) != PLINK_ESTAB
) {
444 struct ieee80211_mgmt
*mgmt
;
446 if (!ieee80211_is_mgmt(hdr
->frame_control
))
447 return RX_DROP_MONITOR
;
449 if (ieee80211_is_action(hdr
->frame_control
)) {
450 mgmt
= (struct ieee80211_mgmt
*)hdr
;
451 if (mgmt
->u
.action
.category
!= PLINK_CATEGORY
)
452 return RX_DROP_MONITOR
;
456 if (ieee80211_is_probe_req(hdr
->frame_control
) ||
457 ieee80211_is_probe_resp(hdr
->frame_control
) ||
458 ieee80211_is_beacon(hdr
->frame_control
))
461 return RX_DROP_MONITOR
;
465 #define msh_h_get(h, l) ((struct ieee80211s_hdr *) ((u8 *)h + l))
467 if (ieee80211_is_data(hdr
->frame_control
) &&
468 is_multicast_ether_addr(hdr
->addr1
) &&
469 mesh_rmc_check(hdr
->addr4
, msh_h_get(hdr
, hdrlen
), rx
->sdata
))
470 return RX_DROP_MONITOR
;
477 static ieee80211_rx_result debug_noinline
478 ieee80211_rx_h_check(struct ieee80211_rx_data
*rx
)
480 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*)rx
->skb
->data
;
482 /* Drop duplicate 802.11 retransmissions (IEEE 802.11 Chap. 9.2.9) */
483 if (rx
->sta
&& !is_multicast_ether_addr(hdr
->addr1
)) {
484 if (unlikely(ieee80211_has_retry(hdr
->frame_control
) &&
485 rx
->sta
->last_seq_ctrl
[rx
->queue
] ==
487 if (rx
->flags
& IEEE80211_RX_RA_MATCH
) {
488 rx
->local
->dot11FrameDuplicateCount
++;
489 rx
->sta
->num_duplicates
++;
491 return RX_DROP_MONITOR
;
493 rx
->sta
->last_seq_ctrl
[rx
->queue
] = hdr
->seq_ctrl
;
496 if (unlikely(rx
->skb
->len
< 16)) {
497 I802_DEBUG_INC(rx
->local
->rx_handlers_drop_short
);
498 return RX_DROP_MONITOR
;
501 /* Drop disallowed frame classes based on STA auth/assoc state;
502 * IEEE 802.11, Chap 5.5.
504 * 80211.o does filtering only based on association state, i.e., it
505 * drops Class 3 frames from not associated stations. hostapd sends
506 * deauth/disassoc frames when needed. In addition, hostapd is
507 * responsible for filtering on both auth and assoc states.
510 if (ieee80211_vif_is_mesh(&rx
->sdata
->vif
))
511 return ieee80211_rx_mesh_check(rx
);
513 if (unlikely((ieee80211_is_data(hdr
->frame_control
) ||
514 ieee80211_is_pspoll(hdr
->frame_control
)) &&
515 rx
->sdata
->vif
.type
!= IEEE80211_IF_TYPE_IBSS
&&
516 (!rx
->sta
|| !test_sta_flags(rx
->sta
, WLAN_STA_ASSOC
)))) {
517 if ((!ieee80211_has_fromds(hdr
->frame_control
) &&
518 !ieee80211_has_tods(hdr
->frame_control
) &&
519 ieee80211_is_data(hdr
->frame_control
)) ||
520 !(rx
->flags
& IEEE80211_RX_RA_MATCH
)) {
521 /* Drop IBSS frames and frames for other hosts
523 return RX_DROP_MONITOR
;
526 return RX_DROP_MONITOR
;
533 static ieee80211_rx_result debug_noinline
534 ieee80211_rx_h_decrypt(struct ieee80211_rx_data
*rx
)
536 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*)rx
->skb
->data
;
539 ieee80211_rx_result result
= RX_DROP_UNUSABLE
;
540 struct ieee80211_key
*stakey
= NULL
;
545 * There are three types of keys:
547 * - PTK (pairwise keys)
548 * - STK (station-to-station pairwise keys)
550 * When selecting a key, we have to distinguish between multicast
551 * (including broadcast) and unicast frames, the latter can only
552 * use PTKs and STKs while the former always use GTKs. Unless, of
553 * course, actual WEP keys ("pre-RSNA") are used, then unicast
554 * frames can also use key indizes like GTKs. Hence, if we don't
555 * have a PTK/STK we check the key index for a WEP key.
557 * Note that in a regular BSS, multicast frames are sent by the
558 * AP only, associated stations unicast the frame to the AP first
559 * which then multicasts it on their behalf.
561 * There is also a slight problem in IBSS mode: GTKs are negotiated
562 * with each station, that is something we don't currently handle.
563 * The spec seems to expect that one negotiates the same key with
564 * every station but there's no such requirement; VLANs could be
568 if (!ieee80211_has_protected(hdr
->frame_control
))
572 * No point in finding a key and decrypting if the frame is neither
573 * addressed to us nor a multicast frame.
575 if (!(rx
->flags
& IEEE80211_RX_RA_MATCH
))
579 stakey
= rcu_dereference(rx
->sta
->key
);
581 if (!is_multicast_ether_addr(hdr
->addr1
) && stakey
) {
585 * The device doesn't give us the IV so we won't be
586 * able to look up the key. That's ok though, we
587 * don't need to decrypt the frame, we just won't
588 * be able to keep statistics accurate.
589 * Except for key threshold notifications, should
590 * we somehow allow the driver to tell us which key
591 * the hardware used if this flag is set?
593 if ((rx
->status
->flag
& RX_FLAG_DECRYPTED
) &&
594 (rx
->status
->flag
& RX_FLAG_IV_STRIPPED
))
597 hdrlen
= ieee80211_hdrlen(hdr
->frame_control
);
599 if (rx
->skb
->len
< 8 + hdrlen
)
600 return RX_DROP_UNUSABLE
; /* TODO: count this? */
603 * no need to call ieee80211_wep_get_keyidx,
604 * it verifies a bunch of things we've done already
606 keyidx
= rx
->skb
->data
[hdrlen
+ 3] >> 6;
608 rx
->key
= rcu_dereference(rx
->sdata
->keys
[keyidx
]);
611 * RSNA-protected unicast frames should always be sent with
612 * pairwise or station-to-station keys, but for WEP we allow
613 * using a key index as well.
615 if (rx
->key
&& rx
->key
->conf
.alg
!= ALG_WEP
&&
616 !is_multicast_ether_addr(hdr
->addr1
))
621 rx
->key
->tx_rx_count
++;
622 /* TODO: add threshold stuff again */
624 return RX_DROP_MONITOR
;
627 /* Check for weak IVs if possible */
628 if (rx
->sta
&& rx
->key
->conf
.alg
== ALG_WEP
&&
629 ieee80211_is_data(hdr
->frame_control
) &&
630 (!(rx
->status
->flag
& RX_FLAG_IV_STRIPPED
) ||
631 !(rx
->status
->flag
& RX_FLAG_DECRYPTED
)) &&
632 ieee80211_wep_is_weak_iv(rx
->skb
, rx
->key
))
633 rx
->sta
->wep_weak_iv_count
++;
635 switch (rx
->key
->conf
.alg
) {
637 result
= ieee80211_crypto_wep_decrypt(rx
);
640 result
= ieee80211_crypto_tkip_decrypt(rx
);
643 result
= ieee80211_crypto_ccmp_decrypt(rx
);
647 /* either the frame has been decrypted or will be dropped */
648 rx
->status
->flag
|= RX_FLAG_DECRYPTED
;
653 static void ap_sta_ps_start(struct net_device
*dev
, struct sta_info
*sta
)
655 struct ieee80211_sub_if_data
*sdata
;
656 DECLARE_MAC_BUF(mac
);
660 atomic_inc(&sdata
->bss
->num_sta_ps
);
661 set_and_clear_sta_flags(sta
, WLAN_STA_PS
, WLAN_STA_PSPOLL
);
662 #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
663 printk(KERN_DEBUG
"%s: STA %s aid %d enters power save mode\n",
664 dev
->name
, print_mac(mac
, sta
->addr
), sta
->aid
);
665 #endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
668 static int ap_sta_ps_end(struct net_device
*dev
, struct sta_info
*sta
)
670 struct ieee80211_local
*local
= wdev_priv(dev
->ieee80211_ptr
);
673 struct ieee80211_sub_if_data
*sdata
;
674 struct ieee80211_tx_info
*info
;
675 DECLARE_MAC_BUF(mac
);
679 atomic_dec(&sdata
->bss
->num_sta_ps
);
681 clear_sta_flags(sta
, WLAN_STA_PS
| WLAN_STA_PSPOLL
);
683 if (!skb_queue_empty(&sta
->ps_tx_buf
))
684 sta_info_clear_tim_bit(sta
);
686 #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
687 printk(KERN_DEBUG
"%s: STA %s aid %d exits power save mode\n",
688 dev
->name
, print_mac(mac
, sta
->addr
), sta
->aid
);
689 #endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
691 /* Send all buffered frames to the station */
692 while ((skb
= skb_dequeue(&sta
->tx_filtered
)) != NULL
) {
693 info
= IEEE80211_SKB_CB(skb
);
695 info
->flags
|= IEEE80211_TX_CTL_REQUEUE
;
698 while ((skb
= skb_dequeue(&sta
->ps_tx_buf
)) != NULL
) {
699 info
= IEEE80211_SKB_CB(skb
);
700 local
->total_ps_buffered
--;
702 #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
703 printk(KERN_DEBUG
"%s: STA %s aid %d send PS frame "
704 "since STA not sleeping anymore\n", dev
->name
,
705 print_mac(mac
, sta
->addr
), sta
->aid
);
706 #endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
707 info
->flags
|= IEEE80211_TX_CTL_REQUEUE
;
714 static ieee80211_rx_result debug_noinline
715 ieee80211_rx_h_sta_process(struct ieee80211_rx_data
*rx
)
717 struct sta_info
*sta
= rx
->sta
;
718 struct net_device
*dev
= rx
->dev
;
719 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*)rx
->skb
->data
;
724 /* Update last_rx only for IBSS packets which are for the current
725 * BSSID to avoid keeping the current IBSS network alive in cases where
726 * other STAs are using different BSSID. */
727 if (rx
->sdata
->vif
.type
== IEEE80211_IF_TYPE_IBSS
) {
728 u8
*bssid
= ieee80211_get_bssid(hdr
, rx
->skb
->len
,
729 IEEE80211_IF_TYPE_IBSS
);
730 if (compare_ether_addr(bssid
, rx
->sdata
->u
.sta
.bssid
) == 0)
731 sta
->last_rx
= jiffies
;
733 if (!is_multicast_ether_addr(hdr
->addr1
) ||
734 rx
->sdata
->vif
.type
== IEEE80211_IF_TYPE_STA
) {
735 /* Update last_rx only for unicast frames in order to prevent
736 * the Probe Request frames (the only broadcast frames from a
737 * STA in infrastructure mode) from keeping a connection alive.
738 * Mesh beacons will update last_rx when if they are found to
739 * match the current local configuration when processed.
741 sta
->last_rx
= jiffies
;
744 if (!(rx
->flags
& IEEE80211_RX_RA_MATCH
))
748 sta
->rx_bytes
+= rx
->skb
->len
;
749 sta
->last_signal
= rx
->status
->signal
;
750 sta
->last_qual
= rx
->status
->qual
;
751 sta
->last_noise
= rx
->status
->noise
;
753 if (!ieee80211_has_morefrags(hdr
->frame_control
) &&
754 (rx
->sdata
->vif
.type
== IEEE80211_IF_TYPE_AP
||
755 rx
->sdata
->vif
.type
== IEEE80211_IF_TYPE_VLAN
)) {
756 /* Change STA power saving mode only in the end of a frame
757 * exchange sequence */
758 if (test_sta_flags(sta
, WLAN_STA_PS
) &&
759 !ieee80211_has_pm(hdr
->frame_control
))
760 rx
->sent_ps_buffered
+= ap_sta_ps_end(dev
, sta
);
761 else if (!test_sta_flags(sta
, WLAN_STA_PS
) &&
762 ieee80211_has_pm(hdr
->frame_control
))
763 ap_sta_ps_start(dev
, sta
);
766 /* Drop data::nullfunc frames silently, since they are used only to
767 * control station power saving mode. */
768 if (ieee80211_is_nullfunc(hdr
->frame_control
)) {
769 I802_DEBUG_INC(rx
->local
->rx_handlers_drop_nullfunc
);
770 /* Update counter and free packet here to avoid counting this
771 * as a dropped packed. */
773 dev_kfree_skb(rx
->skb
);
778 } /* ieee80211_rx_h_sta_process */
780 static inline struct ieee80211_fragment_entry
*
781 ieee80211_reassemble_add(struct ieee80211_sub_if_data
*sdata
,
782 unsigned int frag
, unsigned int seq
, int rx_queue
,
783 struct sk_buff
**skb
)
785 struct ieee80211_fragment_entry
*entry
;
788 idx
= sdata
->fragment_next
;
789 entry
= &sdata
->fragments
[sdata
->fragment_next
++];
790 if (sdata
->fragment_next
>= IEEE80211_FRAGMENT_MAX
)
791 sdata
->fragment_next
= 0;
793 if (!skb_queue_empty(&entry
->skb_list
)) {
794 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
795 struct ieee80211_hdr
*hdr
=
796 (struct ieee80211_hdr
*) entry
->skb_list
.next
->data
;
797 DECLARE_MAC_BUF(mac
);
798 DECLARE_MAC_BUF(mac2
);
799 printk(KERN_DEBUG
"%s: RX reassembly removed oldest "
800 "fragment entry (idx=%d age=%lu seq=%d last_frag=%d "
801 "addr1=%s addr2=%s\n",
802 sdata
->dev
->name
, idx
,
803 jiffies
- entry
->first_frag_time
, entry
->seq
,
804 entry
->last_frag
, print_mac(mac
, hdr
->addr1
),
805 print_mac(mac2
, hdr
->addr2
));
807 __skb_queue_purge(&entry
->skb_list
);
810 __skb_queue_tail(&entry
->skb_list
, *skb
); /* no need for locking */
812 entry
->first_frag_time
= jiffies
;
814 entry
->rx_queue
= rx_queue
;
815 entry
->last_frag
= frag
;
817 entry
->extra_len
= 0;
822 static inline struct ieee80211_fragment_entry
*
823 ieee80211_reassemble_find(struct ieee80211_sub_if_data
*sdata
,
824 unsigned int frag
, unsigned int seq
,
825 int rx_queue
, struct ieee80211_hdr
*hdr
)
827 struct ieee80211_fragment_entry
*entry
;
830 idx
= sdata
->fragment_next
;
831 for (i
= 0; i
< IEEE80211_FRAGMENT_MAX
; i
++) {
832 struct ieee80211_hdr
*f_hdr
;
836 idx
= IEEE80211_FRAGMENT_MAX
- 1;
838 entry
= &sdata
->fragments
[idx
];
839 if (skb_queue_empty(&entry
->skb_list
) || entry
->seq
!= seq
||
840 entry
->rx_queue
!= rx_queue
||
841 entry
->last_frag
+ 1 != frag
)
844 f_hdr
= (struct ieee80211_hdr
*)entry
->skb_list
.next
->data
;
847 * Check ftype and addresses are equal, else check next fragment
849 if (((hdr
->frame_control
^ f_hdr
->frame_control
) &
850 cpu_to_le16(IEEE80211_FCTL_FTYPE
)) ||
851 compare_ether_addr(hdr
->addr1
, f_hdr
->addr1
) != 0 ||
852 compare_ether_addr(hdr
->addr2
, f_hdr
->addr2
) != 0)
855 if (time_after(jiffies
, entry
->first_frag_time
+ 2 * HZ
)) {
856 __skb_queue_purge(&entry
->skb_list
);
865 static ieee80211_rx_result debug_noinline
866 ieee80211_rx_h_defragment(struct ieee80211_rx_data
*rx
)
868 struct ieee80211_hdr
*hdr
;
871 unsigned int frag
, seq
;
872 struct ieee80211_fragment_entry
*entry
;
874 DECLARE_MAC_BUF(mac
);
876 hdr
= (struct ieee80211_hdr
*)rx
->skb
->data
;
877 fc
= hdr
->frame_control
;
878 sc
= le16_to_cpu(hdr
->seq_ctrl
);
879 frag
= sc
& IEEE80211_SCTL_FRAG
;
881 if (likely((!ieee80211_has_morefrags(fc
) && frag
== 0) ||
882 (rx
->skb
)->len
< 24 ||
883 is_multicast_ether_addr(hdr
->addr1
))) {
887 I802_DEBUG_INC(rx
->local
->rx_handlers_fragments
);
889 seq
= (sc
& IEEE80211_SCTL_SEQ
) >> 4;
892 /* This is the first fragment of a new frame. */
893 entry
= ieee80211_reassemble_add(rx
->sdata
, frag
, seq
,
894 rx
->queue
, &(rx
->skb
));
895 if (rx
->key
&& rx
->key
->conf
.alg
== ALG_CCMP
&&
896 ieee80211_has_protected(fc
)) {
897 /* Store CCMP PN so that we can verify that the next
898 * fragment has a sequential PN value. */
900 memcpy(entry
->last_pn
,
901 rx
->key
->u
.ccmp
.rx_pn
[rx
->queue
],
907 /* This is a fragment for a frame that should already be pending in
908 * fragment cache. Add this fragment to the end of the pending entry.
910 entry
= ieee80211_reassemble_find(rx
->sdata
, frag
, seq
, rx
->queue
, hdr
);
912 I802_DEBUG_INC(rx
->local
->rx_handlers_drop_defrag
);
913 return RX_DROP_MONITOR
;
916 /* Verify that MPDUs within one MSDU have sequential PN values.
917 * (IEEE 802.11i, 8.3.3.4.5) */
920 u8 pn
[CCMP_PN_LEN
], *rpn
;
921 if (!rx
->key
|| rx
->key
->conf
.alg
!= ALG_CCMP
)
922 return RX_DROP_UNUSABLE
;
923 memcpy(pn
, entry
->last_pn
, CCMP_PN_LEN
);
924 for (i
= CCMP_PN_LEN
- 1; i
>= 0; i
--) {
929 rpn
= rx
->key
->u
.ccmp
.rx_pn
[rx
->queue
];
930 if (memcmp(pn
, rpn
, CCMP_PN_LEN
))
931 return RX_DROP_UNUSABLE
;
932 memcpy(entry
->last_pn
, pn
, CCMP_PN_LEN
);
935 skb_pull(rx
->skb
, ieee80211_hdrlen(fc
));
936 __skb_queue_tail(&entry
->skb_list
, rx
->skb
);
937 entry
->last_frag
= frag
;
938 entry
->extra_len
+= rx
->skb
->len
;
939 if (ieee80211_has_morefrags(fc
)) {
944 rx
->skb
= __skb_dequeue(&entry
->skb_list
);
945 if (skb_tailroom(rx
->skb
) < entry
->extra_len
) {
946 I802_DEBUG_INC(rx
->local
->rx_expand_skb_head2
);
947 if (unlikely(pskb_expand_head(rx
->skb
, 0, entry
->extra_len
,
949 I802_DEBUG_INC(rx
->local
->rx_handlers_drop_defrag
);
950 __skb_queue_purge(&entry
->skb_list
);
951 return RX_DROP_UNUSABLE
;
954 while ((skb
= __skb_dequeue(&entry
->skb_list
))) {
955 memcpy(skb_put(rx
->skb
, skb
->len
), skb
->data
, skb
->len
);
959 /* Complete frame has been reassembled - process it now */
960 rx
->flags
|= IEEE80211_RX_FRAGMENTED
;
964 rx
->sta
->rx_packets
++;
965 if (is_multicast_ether_addr(hdr
->addr1
))
966 rx
->local
->dot11MulticastReceivedFrameCount
++;
968 ieee80211_led_rx(rx
->local
);
972 static ieee80211_rx_result debug_noinline
973 ieee80211_rx_h_ps_poll(struct ieee80211_rx_data
*rx
)
975 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(rx
->dev
);
978 DECLARE_MAC_BUF(mac
);
979 __le16 fc
= ((struct ieee80211_hdr
*)rx
->skb
->data
)->frame_control
;
981 if (likely(!rx
->sta
|| !ieee80211_is_pspoll(fc
) ||
982 !(rx
->flags
& IEEE80211_RX_RA_MATCH
)))
985 if ((sdata
->vif
.type
!= IEEE80211_IF_TYPE_AP
) &&
986 (sdata
->vif
.type
!= IEEE80211_IF_TYPE_VLAN
))
987 return RX_DROP_UNUSABLE
;
989 skb
= skb_dequeue(&rx
->sta
->tx_filtered
);
991 skb
= skb_dequeue(&rx
->sta
->ps_tx_buf
);
993 rx
->local
->total_ps_buffered
--;
995 no_pending_pkts
= skb_queue_empty(&rx
->sta
->tx_filtered
) &&
996 skb_queue_empty(&rx
->sta
->ps_tx_buf
);
999 struct ieee80211_hdr
*hdr
=
1000 (struct ieee80211_hdr
*) skb
->data
;
1003 * Tell TX path to send one frame even though the STA may
1004 * still remain is PS mode after this frame exchange.
1006 set_sta_flags(rx
->sta
, WLAN_STA_PSPOLL
);
1008 #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
1009 printk(KERN_DEBUG
"STA %s aid %d: PS Poll (entries after %d)\n",
1010 print_mac(mac
, rx
->sta
->addr
), rx
->sta
->aid
,
1011 skb_queue_len(&rx
->sta
->ps_tx_buf
));
1012 #endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
1014 /* Use MoreData flag to indicate whether there are more
1015 * buffered frames for this STA */
1016 if (no_pending_pkts
)
1017 hdr
->frame_control
&= cpu_to_le16(~IEEE80211_FCTL_MOREDATA
);
1019 hdr
->frame_control
|= cpu_to_le16(IEEE80211_FCTL_MOREDATA
);
1021 dev_queue_xmit(skb
);
1023 if (no_pending_pkts
)
1024 sta_info_clear_tim_bit(rx
->sta
);
1025 #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
1026 } else if (!rx
->sent_ps_buffered
) {
1028 * FIXME: This can be the result of a race condition between
1029 * us expiring a frame and the station polling for it.
1030 * Should we send it a null-func frame indicating we
1031 * have nothing buffered for it?
1033 printk(KERN_DEBUG
"%s: STA %s sent PS Poll even "
1034 "though there are no buffered frames for it\n",
1035 rx
->dev
->name
, print_mac(mac
, rx
->sta
->addr
));
1036 #endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
1039 /* Free PS Poll skb here instead of returning RX_DROP that would
1040 * count as an dropped frame. */
1041 dev_kfree_skb(rx
->skb
);
1046 static ieee80211_rx_result debug_noinline
1047 ieee80211_rx_h_remove_qos_control(struct ieee80211_rx_data
*rx
)
1049 u8
*data
= rx
->skb
->data
;
1050 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*)data
;
1052 if (!ieee80211_is_data_qos(hdr
->frame_control
))
1055 /* remove the qos control field, update frame type and meta-data */
1056 memmove(data
+ IEEE80211_QOS_CTL_LEN
, data
,
1057 ieee80211_hdrlen(hdr
->frame_control
) - IEEE80211_QOS_CTL_LEN
);
1058 hdr
= (struct ieee80211_hdr
*)skb_pull(rx
->skb
, IEEE80211_QOS_CTL_LEN
);
1059 /* change frame type to non QOS */
1060 hdr
->frame_control
&= ~cpu_to_le16(IEEE80211_STYPE_QOS_DATA
);
1066 ieee80211_802_1x_port_control(struct ieee80211_rx_data
*rx
)
1068 if (unlikely(!rx
->sta
||
1069 !test_sta_flags(rx
->sta
, WLAN_STA_AUTHORIZED
)))
1076 ieee80211_drop_unencrypted(struct ieee80211_rx_data
*rx
, __le16 fc
)
1079 * Pass through unencrypted frames if the hardware has
1080 * decrypted them already.
1082 if (rx
->status
->flag
& RX_FLAG_DECRYPTED
)
1085 /* Drop unencrypted frames if key is set. */
1086 if (unlikely(!ieee80211_has_protected(fc
) &&
1087 !ieee80211_is_nullfunc(fc
) &&
1088 (rx
->key
|| rx
->sdata
->drop_unencrypted
)))
1095 ieee80211_data_to_8023(struct ieee80211_rx_data
*rx
)
1097 struct net_device
*dev
= rx
->dev
;
1098 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*) rx
->skb
->data
;
1099 u16 hdrlen
, ethertype
;
1102 u8 src
[ETH_ALEN
] __aligned(2);
1103 struct sk_buff
*skb
= rx
->skb
;
1104 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1105 DECLARE_MAC_BUF(mac
);
1106 DECLARE_MAC_BUF(mac2
);
1107 DECLARE_MAC_BUF(mac3
);
1108 DECLARE_MAC_BUF(mac4
);
1110 if (unlikely(!ieee80211_is_data_present(hdr
->frame_control
)))
1113 hdrlen
= ieee80211_hdrlen(hdr
->frame_control
);
1115 if (ieee80211_vif_is_mesh(&sdata
->vif
))
1116 hdrlen
+= ieee80211_get_mesh_hdrlen(
1117 (struct ieee80211s_hdr
*) (skb
->data
+ hdrlen
));
1119 /* convert IEEE 802.11 header + possible LLC headers into Ethernet
1121 * IEEE 802.11 address fields:
1122 * ToDS FromDS Addr1 Addr2 Addr3 Addr4
1123 * 0 0 DA SA BSSID n/a
1124 * 0 1 DA BSSID SA n/a
1125 * 1 0 BSSID SA DA n/a
1128 memcpy(dst
, ieee80211_get_DA(hdr
), ETH_ALEN
);
1129 memcpy(src
, ieee80211_get_SA(hdr
), ETH_ALEN
);
1131 switch (hdr
->frame_control
&
1132 cpu_to_le16(IEEE80211_FCTL_TODS
| IEEE80211_FCTL_FROMDS
)) {
1133 case __constant_cpu_to_le16(IEEE80211_FCTL_TODS
):
1134 if (unlikely(sdata
->vif
.type
!= IEEE80211_IF_TYPE_AP
&&
1135 sdata
->vif
.type
!= IEEE80211_IF_TYPE_VLAN
))
1138 case __constant_cpu_to_le16(IEEE80211_FCTL_TODS
| IEEE80211_FCTL_FROMDS
):
1139 if (unlikely(sdata
->vif
.type
!= IEEE80211_IF_TYPE_WDS
&&
1140 sdata
->vif
.type
!= IEEE80211_IF_TYPE_MESH_POINT
))
1143 case __constant_cpu_to_le16(IEEE80211_FCTL_FROMDS
):
1144 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_STA
||
1145 (is_multicast_ether_addr(dst
) &&
1146 !compare_ether_addr(src
, dev
->dev_addr
)))
1149 case __constant_cpu_to_le16(0):
1150 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_IBSS
)
1155 if (unlikely(skb
->len
- hdrlen
< 8))
1158 payload
= skb
->data
+ hdrlen
;
1159 ethertype
= (payload
[6] << 8) | payload
[7];
1161 if (likely((compare_ether_addr(payload
, rfc1042_header
) == 0 &&
1162 ethertype
!= ETH_P_AARP
&& ethertype
!= ETH_P_IPX
) ||
1163 compare_ether_addr(payload
, bridge_tunnel_header
) == 0)) {
1164 /* remove RFC1042 or Bridge-Tunnel encapsulation and
1165 * replace EtherType */
1166 skb_pull(skb
, hdrlen
+ 6);
1167 memcpy(skb_push(skb
, ETH_ALEN
), src
, ETH_ALEN
);
1168 memcpy(skb_push(skb
, ETH_ALEN
), dst
, ETH_ALEN
);
1170 struct ethhdr
*ehdr
;
1173 skb_pull(skb
, hdrlen
);
1174 len
= htons(skb
->len
);
1175 ehdr
= (struct ethhdr
*) skb_push(skb
, sizeof(struct ethhdr
));
1176 memcpy(ehdr
->h_dest
, dst
, ETH_ALEN
);
1177 memcpy(ehdr
->h_source
, src
, ETH_ALEN
);
1178 ehdr
->h_proto
= len
;
1184 * requires that rx->skb is a frame with ethernet header
1186 static bool ieee80211_frame_allowed(struct ieee80211_rx_data
*rx
, __le16 fc
)
1188 static const u8 pae_group_addr
[ETH_ALEN
] __aligned(2)
1189 = { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x03 };
1190 struct ethhdr
*ehdr
= (struct ethhdr
*) rx
->skb
->data
;
1193 * Allow EAPOL frames to us/the PAE group address regardless
1194 * of whether the frame was encrypted or not.
1196 if (ehdr
->h_proto
== htons(ETH_P_PAE
) &&
1197 (compare_ether_addr(ehdr
->h_dest
, rx
->dev
->dev_addr
) == 0 ||
1198 compare_ether_addr(ehdr
->h_dest
, pae_group_addr
) == 0))
1201 if (ieee80211_802_1x_port_control(rx
) ||
1202 ieee80211_drop_unencrypted(rx
, fc
))
1209 * requires that rx->skb is a frame with ethernet header
1212 ieee80211_deliver_skb(struct ieee80211_rx_data
*rx
)
1214 struct net_device
*dev
= rx
->dev
;
1215 struct ieee80211_local
*local
= rx
->local
;
1216 struct sk_buff
*skb
, *xmit_skb
;
1217 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(dev
);
1218 struct ethhdr
*ehdr
= (struct ethhdr
*) rx
->skb
->data
;
1219 struct sta_info
*dsta
;
1224 if ((sdata
->vif
.type
== IEEE80211_IF_TYPE_AP
||
1225 sdata
->vif
.type
== IEEE80211_IF_TYPE_VLAN
) &&
1226 !(sdata
->flags
& IEEE80211_SDATA_DONT_BRIDGE_PACKETS
) &&
1227 (rx
->flags
& IEEE80211_RX_RA_MATCH
)) {
1228 if (is_multicast_ether_addr(ehdr
->h_dest
)) {
1230 * send multicast frames both to higher layers in
1231 * local net stack and back to the wireless medium
1233 xmit_skb
= skb_copy(skb
, GFP_ATOMIC
);
1234 if (!xmit_skb
&& net_ratelimit())
1235 printk(KERN_DEBUG
"%s: failed to clone "
1236 "multicast frame\n", dev
->name
);
1238 dsta
= sta_info_get(local
, skb
->data
);
1239 if (dsta
&& dsta
->sdata
->dev
== dev
) {
1241 * The destination station is associated to
1242 * this AP (in this VLAN), so send the frame
1243 * directly to it and do not pass it to local
1253 /* deliver to local stack */
1254 skb
->protocol
= eth_type_trans(skb
, dev
);
1255 memset(skb
->cb
, 0, sizeof(skb
->cb
));
1260 /* send to wireless media */
1261 xmit_skb
->protocol
= htons(ETH_P_802_3
);
1262 skb_reset_network_header(xmit_skb
);
1263 skb_reset_mac_header(xmit_skb
);
1264 dev_queue_xmit(xmit_skb
);
1268 static ieee80211_rx_result debug_noinline
1269 ieee80211_rx_h_amsdu(struct ieee80211_rx_data
*rx
)
1271 struct net_device
*dev
= rx
->dev
;
1272 struct ieee80211_local
*local
= rx
->local
;
1275 struct sk_buff
*skb
= rx
->skb
, *frame
= NULL
;
1276 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*)skb
->data
;
1277 __le16 fc
= hdr
->frame_control
;
1278 const struct ethhdr
*eth
;
1282 DECLARE_MAC_BUF(mac
);
1284 if (unlikely(!ieee80211_is_data(fc
)))
1287 if (unlikely(!ieee80211_is_data_present(fc
)))
1288 return RX_DROP_MONITOR
;
1290 if (!(rx
->flags
& IEEE80211_RX_AMSDU
))
1293 err
= ieee80211_data_to_8023(rx
);
1295 return RX_DROP_UNUSABLE
;
1299 dev
->stats
.rx_packets
++;
1300 dev
->stats
.rx_bytes
+= skb
->len
;
1302 /* skip the wrapping header */
1303 eth
= (struct ethhdr
*) skb_pull(skb
, sizeof(struct ethhdr
));
1305 return RX_DROP_UNUSABLE
;
1307 while (skb
!= frame
) {
1309 __be16 len
= eth
->h_proto
;
1310 unsigned int subframe_len
= sizeof(struct ethhdr
) + ntohs(len
);
1312 remaining
= skb
->len
;
1313 memcpy(dst
, eth
->h_dest
, ETH_ALEN
);
1314 memcpy(src
, eth
->h_source
, ETH_ALEN
);
1316 padding
= ((4 - subframe_len
) & 0x3);
1317 /* the last MSDU has no padding */
1318 if (subframe_len
> remaining
)
1319 return RX_DROP_UNUSABLE
;
1321 skb_pull(skb
, sizeof(struct ethhdr
));
1322 /* if last subframe reuse skb */
1323 if (remaining
<= subframe_len
+ padding
)
1326 frame
= dev_alloc_skb(local
->hw
.extra_tx_headroom
+
1330 return RX_DROP_UNUSABLE
;
1332 skb_reserve(frame
, local
->hw
.extra_tx_headroom
+
1333 sizeof(struct ethhdr
));
1334 memcpy(skb_put(frame
, ntohs(len
)), skb
->data
,
1337 eth
= (struct ethhdr
*) skb_pull(skb
, ntohs(len
) +
1340 dev_kfree_skb(frame
);
1341 return RX_DROP_UNUSABLE
;
1345 skb_reset_network_header(frame
);
1347 frame
->priority
= skb
->priority
;
1350 payload
= frame
->data
;
1351 ethertype
= (payload
[6] << 8) | payload
[7];
1353 if (likely((compare_ether_addr(payload
, rfc1042_header
) == 0 &&
1354 ethertype
!= ETH_P_AARP
&& ethertype
!= ETH_P_IPX
) ||
1355 compare_ether_addr(payload
,
1356 bridge_tunnel_header
) == 0)) {
1357 /* remove RFC1042 or Bridge-Tunnel
1358 * encapsulation and replace EtherType */
1360 memcpy(skb_push(frame
, ETH_ALEN
), src
, ETH_ALEN
);
1361 memcpy(skb_push(frame
, ETH_ALEN
), dst
, ETH_ALEN
);
1363 memcpy(skb_push(frame
, sizeof(__be16
)),
1364 &len
, sizeof(__be16
));
1365 memcpy(skb_push(frame
, ETH_ALEN
), src
, ETH_ALEN
);
1366 memcpy(skb_push(frame
, ETH_ALEN
), dst
, ETH_ALEN
);
1369 if (!ieee80211_frame_allowed(rx
, fc
)) {
1370 if (skb
== frame
) /* last frame */
1371 return RX_DROP_UNUSABLE
;
1372 dev_kfree_skb(frame
);
1376 ieee80211_deliver_skb(rx
);
1382 static ieee80211_rx_result debug_noinline
1383 ieee80211_rx_h_mesh_fwding(struct ieee80211_rx_data
*rx
)
1385 struct ieee80211_hdr
*hdr
;
1386 struct ieee80211s_hdr
*mesh_hdr
;
1387 unsigned int hdrlen
;
1388 struct sk_buff
*skb
= rx
->skb
, *fwd_skb
;
1390 hdr
= (struct ieee80211_hdr
*) skb
->data
;
1391 hdrlen
= ieee80211_hdrlen(hdr
->frame_control
);
1392 mesh_hdr
= (struct ieee80211s_hdr
*) (skb
->data
+ hdrlen
);
1394 if (!ieee80211_is_data(hdr
->frame_control
))
1399 return RX_DROP_MONITOR
;
1401 if (compare_ether_addr(rx
->dev
->dev_addr
, hdr
->addr3
) == 0)
1406 if (rx
->flags
& IEEE80211_RX_RA_MATCH
) {
1408 IEEE80211_IFSTA_MESH_CTR_INC(&rx
->sdata
->u
.mesh
,
1409 dropped_frames_ttl
);
1411 struct ieee80211_hdr
*fwd_hdr
;
1412 fwd_skb
= skb_copy(skb
, GFP_ATOMIC
);
1414 if (!fwd_skb
&& net_ratelimit())
1415 printk(KERN_DEBUG
"%s: failed to clone mesh frame\n",
1418 fwd_hdr
= (struct ieee80211_hdr
*) fwd_skb
->data
;
1420 * Save TA to addr1 to send TA a path error if a
1421 * suitable next hop is not found
1423 memcpy(fwd_hdr
->addr1
, fwd_hdr
->addr2
, ETH_ALEN
);
1424 memcpy(fwd_hdr
->addr2
, rx
->dev
->dev_addr
, ETH_ALEN
);
1425 fwd_skb
->dev
= rx
->local
->mdev
;
1426 fwd_skb
->iif
= rx
->dev
->ifindex
;
1427 dev_queue_xmit(fwd_skb
);
1431 if (is_multicast_ether_addr(hdr
->addr3
) ||
1432 rx
->dev
->flags
& IFF_PROMISC
)
1435 return RX_DROP_MONITOR
;
1439 static ieee80211_rx_result debug_noinline
1440 ieee80211_rx_h_data(struct ieee80211_rx_data
*rx
)
1442 struct net_device
*dev
= rx
->dev
;
1443 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*)rx
->skb
->data
;
1444 __le16 fc
= hdr
->frame_control
;
1447 if (unlikely(!ieee80211_is_data(hdr
->frame_control
)))
1450 if (unlikely(!ieee80211_is_data_present(hdr
->frame_control
)))
1451 return RX_DROP_MONITOR
;
1453 err
= ieee80211_data_to_8023(rx
);
1455 return RX_DROP_UNUSABLE
;
1457 if (!ieee80211_frame_allowed(rx
, fc
))
1458 return RX_DROP_MONITOR
;
1462 dev
->stats
.rx_packets
++;
1463 dev
->stats
.rx_bytes
+= rx
->skb
->len
;
1465 ieee80211_deliver_skb(rx
);
1470 static ieee80211_rx_result debug_noinline
1471 ieee80211_rx_h_ctrl(struct ieee80211_rx_data
*rx
)
1473 struct ieee80211_local
*local
= rx
->local
;
1474 struct ieee80211_hw
*hw
= &local
->hw
;
1475 struct sk_buff
*skb
= rx
->skb
;
1476 struct ieee80211_bar
*bar
= (struct ieee80211_bar
*)skb
->data
;
1477 struct tid_ampdu_rx
*tid_agg_rx
;
1481 if (likely(!ieee80211_is_ctl(bar
->frame_control
)))
1484 if (ieee80211_is_back_req(bar
->frame_control
)) {
1487 tid
= le16_to_cpu(bar
->control
) >> 12;
1488 if (rx
->sta
->ampdu_mlme
.tid_state_rx
[tid
]
1489 != HT_AGG_STATE_OPERATIONAL
)
1491 tid_agg_rx
= rx
->sta
->ampdu_mlme
.tid_rx
[tid
];
1493 start_seq_num
= le16_to_cpu(bar
->start_seq_num
) >> 4;
1495 /* reset session timer */
1496 if (tid_agg_rx
->timeout
) {
1497 unsigned long expires
=
1498 jiffies
+ (tid_agg_rx
->timeout
/ 1000) * HZ
;
1499 mod_timer(&tid_agg_rx
->session_timer
, expires
);
1502 /* manage reordering buffer according to requested */
1503 /* sequence number */
1505 ieee80211_sta_manage_reorder_buf(hw
, tid_agg_rx
, NULL
,
1508 return RX_DROP_UNUSABLE
;
1514 static ieee80211_rx_result debug_noinline
1515 ieee80211_rx_h_action(struct ieee80211_rx_data
*rx
)
1517 struct ieee80211_local
*local
= rx
->local
;
1518 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(rx
->dev
);
1519 struct ieee80211_mgmt
*mgmt
= (struct ieee80211_mgmt
*) rx
->skb
->data
;
1520 int len
= rx
->skb
->len
;
1522 if (!ieee80211_is_action(mgmt
->frame_control
))
1526 return RX_DROP_MONITOR
;
1528 if (!(rx
->flags
& IEEE80211_RX_RA_MATCH
))
1529 return RX_DROP_MONITOR
;
1531 /* all categories we currently handle have action_code */
1532 if (len
< IEEE80211_MIN_ACTION_SIZE
+ 1)
1533 return RX_DROP_MONITOR
;
1536 * FIXME: revisit this, I'm sure we should handle most
1537 * of these frames in other modes as well!
1539 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_STA
&&
1540 sdata
->vif
.type
!= IEEE80211_IF_TYPE_IBSS
)
1541 return RX_DROP_MONITOR
;
1543 switch (mgmt
->u
.action
.category
) {
1544 case WLAN_CATEGORY_BACK
:
1545 switch (mgmt
->u
.action
.u
.addba_req
.action_code
) {
1546 case WLAN_ACTION_ADDBA_REQ
:
1547 if (len
< (IEEE80211_MIN_ACTION_SIZE
+
1548 sizeof(mgmt
->u
.action
.u
.addba_req
)))
1549 return RX_DROP_MONITOR
;
1550 ieee80211_process_addba_request(local
, rx
->sta
, mgmt
, len
);
1552 case WLAN_ACTION_ADDBA_RESP
:
1553 if (len
< (IEEE80211_MIN_ACTION_SIZE
+
1554 sizeof(mgmt
->u
.action
.u
.addba_resp
)))
1555 return RX_DROP_MONITOR
;
1556 ieee80211_process_addba_resp(local
, rx
->sta
, mgmt
, len
);
1558 case WLAN_ACTION_DELBA
:
1559 if (len
< (IEEE80211_MIN_ACTION_SIZE
+
1560 sizeof(mgmt
->u
.action
.u
.delba
)))
1561 return RX_DROP_MONITOR
;
1562 ieee80211_process_delba(sdata
, rx
->sta
, mgmt
, len
);
1566 case WLAN_CATEGORY_SPECTRUM_MGMT
:
1567 if (local
->hw
.conf
.channel
->band
!= IEEE80211_BAND_5GHZ
)
1568 return RX_DROP_MONITOR
;
1569 switch (mgmt
->u
.action
.u
.measurement
.action_code
) {
1570 case WLAN_ACTION_SPCT_MSR_REQ
:
1571 if (len
< (IEEE80211_MIN_ACTION_SIZE
+
1572 sizeof(mgmt
->u
.action
.u
.measurement
)))
1573 return RX_DROP_MONITOR
;
1574 ieee80211_process_measurement_req(sdata
, mgmt
, len
);
1582 rx
->sta
->rx_packets
++;
1583 dev_kfree_skb(rx
->skb
);
1587 static ieee80211_rx_result debug_noinline
1588 ieee80211_rx_h_mgmt(struct ieee80211_rx_data
*rx
)
1590 struct ieee80211_sub_if_data
*sdata
= IEEE80211_DEV_TO_SUB_IF(rx
->dev
);
1592 if (!(rx
->flags
& IEEE80211_RX_RA_MATCH
))
1593 return RX_DROP_MONITOR
;
1595 if (ieee80211_vif_is_mesh(&sdata
->vif
))
1596 return ieee80211_mesh_rx_mgmt(sdata
, rx
->skb
, rx
->status
);
1598 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_STA
&&
1599 sdata
->vif
.type
!= IEEE80211_IF_TYPE_IBSS
)
1600 return RX_DROP_MONITOR
;
1602 if (sdata
->flags
& IEEE80211_SDATA_USERSPACE_MLME
)
1603 return RX_DROP_MONITOR
;
1605 ieee80211_sta_rx_mgmt(sdata
, rx
->skb
, rx
->status
);
1609 static void ieee80211_rx_michael_mic_report(struct net_device
*dev
,
1610 struct ieee80211_hdr
*hdr
,
1611 struct ieee80211_rx_data
*rx
)
1614 unsigned int hdrlen
;
1615 DECLARE_MAC_BUF(mac
);
1616 DECLARE_MAC_BUF(mac2
);
1618 hdrlen
= ieee80211_hdrlen(hdr
->frame_control
);
1619 if (rx
->skb
->len
>= hdrlen
+ 4)
1620 keyidx
= rx
->skb
->data
[hdrlen
+ 3] >> 6;
1626 * Some hardware seem to generate incorrect Michael MIC
1627 * reports; ignore them to avoid triggering countermeasures.
1632 if (!ieee80211_has_protected(hdr
->frame_control
))
1635 if (rx
->sdata
->vif
.type
== IEEE80211_IF_TYPE_AP
&& keyidx
) {
1637 * APs with pairwise keys should never receive Michael MIC
1638 * errors for non-zero keyidx because these are reserved for
1639 * group keys and only the AP is sending real multicast
1640 * frames in the BSS.
1645 if (!ieee80211_is_data(hdr
->frame_control
) &&
1646 !ieee80211_is_auth(hdr
->frame_control
))
1649 mac80211_ev_michael_mic_failure(rx
->sdata
, keyidx
, hdr
);
1651 dev_kfree_skb(rx
->skb
);
1655 /* TODO: use IEEE80211_RX_FRAGMENTED */
1656 static void ieee80211_rx_cooked_monitor(struct ieee80211_rx_data
*rx
)
1658 struct ieee80211_sub_if_data
*sdata
;
1659 struct ieee80211_local
*local
= rx
->local
;
1660 struct ieee80211_rtap_hdr
{
1661 struct ieee80211_radiotap_header hdr
;
1666 } __attribute__ ((packed
)) *rthdr
;
1667 struct sk_buff
*skb
= rx
->skb
, *skb2
;
1668 struct net_device
*prev_dev
= NULL
;
1669 struct ieee80211_rx_status
*status
= rx
->status
;
1671 if (rx
->flags
& IEEE80211_RX_CMNTR_REPORTED
)
1674 if (skb_headroom(skb
) < sizeof(*rthdr
) &&
1675 pskb_expand_head(skb
, sizeof(*rthdr
), 0, GFP_ATOMIC
))
1678 rthdr
= (void *)skb_push(skb
, sizeof(*rthdr
));
1679 memset(rthdr
, 0, sizeof(*rthdr
));
1680 rthdr
->hdr
.it_len
= cpu_to_le16(sizeof(*rthdr
));
1681 rthdr
->hdr
.it_present
=
1682 cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS
) |
1683 (1 << IEEE80211_RADIOTAP_RATE
) |
1684 (1 << IEEE80211_RADIOTAP_CHANNEL
));
1686 rthdr
->rate
= rx
->rate
->bitrate
/ 5;
1687 rthdr
->chan_freq
= cpu_to_le16(status
->freq
);
1689 if (status
->band
== IEEE80211_BAND_5GHZ
)
1690 rthdr
->chan_flags
= cpu_to_le16(IEEE80211_CHAN_OFDM
|
1691 IEEE80211_CHAN_5GHZ
);
1693 rthdr
->chan_flags
= cpu_to_le16(IEEE80211_CHAN_DYN
|
1694 IEEE80211_CHAN_2GHZ
);
1696 skb_set_mac_header(skb
, 0);
1697 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
1698 skb
->pkt_type
= PACKET_OTHERHOST
;
1699 skb
->protocol
= htons(ETH_P_802_2
);
1701 list_for_each_entry_rcu(sdata
, &local
->interfaces
, list
) {
1702 if (!netif_running(sdata
->dev
))
1705 if (sdata
->vif
.type
!= IEEE80211_IF_TYPE_MNTR
||
1706 !(sdata
->u
.mntr_flags
& MONITOR_FLAG_COOK_FRAMES
))
1710 skb2
= skb_clone(skb
, GFP_ATOMIC
);
1712 skb2
->dev
= prev_dev
;
1717 prev_dev
= sdata
->dev
;
1718 sdata
->dev
->stats
.rx_packets
++;
1719 sdata
->dev
->stats
.rx_bytes
+= skb
->len
;
1723 skb
->dev
= prev_dev
;
1729 rx
->flags
|= IEEE80211_RX_CMNTR_REPORTED
;
1737 static void ieee80211_invoke_rx_handlers(struct ieee80211_sub_if_data
*sdata
,
1738 struct ieee80211_rx_data
*rx
,
1739 struct sk_buff
*skb
)
1741 ieee80211_rx_result res
= RX_DROP_MONITOR
;
1745 rx
->dev
= sdata
->dev
;
1747 #define CALL_RXH(rxh) \
1750 if (res != RX_CONTINUE) \
1754 CALL_RXH(ieee80211_rx_h_passive_scan
)
1755 CALL_RXH(ieee80211_rx_h_check
)
1756 CALL_RXH(ieee80211_rx_h_decrypt
)
1757 CALL_RXH(ieee80211_rx_h_sta_process
)
1758 CALL_RXH(ieee80211_rx_h_defragment
)
1759 CALL_RXH(ieee80211_rx_h_ps_poll
)
1760 CALL_RXH(ieee80211_rx_h_michael_mic_verify
)
1761 /* must be after MMIC verify so header is counted in MPDU mic */
1762 CALL_RXH(ieee80211_rx_h_remove_qos_control
)
1763 CALL_RXH(ieee80211_rx_h_amsdu
)
1764 if (ieee80211_vif_is_mesh(&sdata
->vif
))
1765 CALL_RXH(ieee80211_rx_h_mesh_fwding
);
1766 CALL_RXH(ieee80211_rx_h_data
)
1767 CALL_RXH(ieee80211_rx_h_ctrl
)
1768 CALL_RXH(ieee80211_rx_h_action
)
1769 CALL_RXH(ieee80211_rx_h_mgmt
)
1775 case RX_DROP_MONITOR
:
1776 I802_DEBUG_INC(sdata
->local
->rx_handlers_drop
);
1778 rx
->sta
->rx_dropped
++;
1781 ieee80211_rx_cooked_monitor(rx
);
1783 case RX_DROP_UNUSABLE
:
1784 I802_DEBUG_INC(sdata
->local
->rx_handlers_drop
);
1786 rx
->sta
->rx_dropped
++;
1787 dev_kfree_skb(rx
->skb
);
1790 I802_DEBUG_INC(sdata
->local
->rx_handlers_queued
);
1795 /* main receive path */
1797 static int prepare_for_handlers(struct ieee80211_sub_if_data
*sdata
,
1798 u8
*bssid
, struct ieee80211_rx_data
*rx
,
1799 struct ieee80211_hdr
*hdr
)
1801 int multicast
= is_multicast_ether_addr(hdr
->addr1
);
1803 switch (sdata
->vif
.type
) {
1804 case IEEE80211_IF_TYPE_STA
:
1807 if (!ieee80211_bssid_match(bssid
, sdata
->u
.sta
.bssid
)) {
1808 if (!(rx
->flags
& IEEE80211_RX_IN_SCAN
))
1810 rx
->flags
&= ~IEEE80211_RX_RA_MATCH
;
1811 } else if (!multicast
&&
1812 compare_ether_addr(sdata
->dev
->dev_addr
,
1814 if (!(sdata
->dev
->flags
& IFF_PROMISC
))
1816 rx
->flags
&= ~IEEE80211_RX_RA_MATCH
;
1819 case IEEE80211_IF_TYPE_IBSS
:
1822 if (ieee80211_is_beacon(hdr
->frame_control
)) {
1825 else if (!ieee80211_bssid_match(bssid
, sdata
->u
.sta
.bssid
)) {
1826 if (!(rx
->flags
& IEEE80211_RX_IN_SCAN
))
1828 rx
->flags
&= ~IEEE80211_RX_RA_MATCH
;
1829 } else if (!multicast
&&
1830 compare_ether_addr(sdata
->dev
->dev_addr
,
1832 if (!(sdata
->dev
->flags
& IFF_PROMISC
))
1834 rx
->flags
&= ~IEEE80211_RX_RA_MATCH
;
1835 } else if (!rx
->sta
)
1836 rx
->sta
= ieee80211_ibss_add_sta(sdata
, rx
->skb
,
1838 BIT(rx
->status
->rate_idx
));
1840 case IEEE80211_IF_TYPE_MESH_POINT
:
1842 compare_ether_addr(sdata
->dev
->dev_addr
,
1844 if (!(sdata
->dev
->flags
& IFF_PROMISC
))
1847 rx
->flags
&= ~IEEE80211_RX_RA_MATCH
;
1850 case IEEE80211_IF_TYPE_VLAN
:
1851 case IEEE80211_IF_TYPE_AP
:
1853 if (compare_ether_addr(sdata
->dev
->dev_addr
,
1856 } else if (!ieee80211_bssid_match(bssid
,
1857 sdata
->dev
->dev_addr
)) {
1858 if (!(rx
->flags
& IEEE80211_RX_IN_SCAN
))
1860 rx
->flags
&= ~IEEE80211_RX_RA_MATCH
;
1863 case IEEE80211_IF_TYPE_WDS
:
1864 if (bssid
|| !ieee80211_is_data(hdr
->frame_control
))
1866 if (compare_ether_addr(sdata
->u
.wds
.remote_addr
, hdr
->addr2
))
1869 case IEEE80211_IF_TYPE_MNTR
:
1870 /* take everything */
1872 case IEEE80211_IF_TYPE_INVALID
:
1873 /* should never get here */
1882 * This is the actual Rx frames handler. as it blongs to Rx path it must
1883 * be called with rcu_read_lock protection.
1885 static void __ieee80211_rx_handle_packet(struct ieee80211_hw
*hw
,
1886 struct sk_buff
*skb
,
1887 struct ieee80211_rx_status
*status
,
1888 struct ieee80211_rate
*rate
)
1890 struct ieee80211_local
*local
= hw_to_local(hw
);
1891 struct ieee80211_sub_if_data
*sdata
;
1892 struct ieee80211_hdr
*hdr
;
1893 struct ieee80211_rx_data rx
;
1895 struct ieee80211_sub_if_data
*prev
= NULL
;
1896 struct sk_buff
*skb_new
;
1899 hdr
= (struct ieee80211_hdr
*)skb
->data
;
1900 memset(&rx
, 0, sizeof(rx
));
1907 if (ieee80211_is_data(hdr
->frame_control
) || ieee80211_is_mgmt(hdr
->frame_control
))
1908 local
->dot11ReceivedFragmentCount
++;
1910 rx
.sta
= sta_info_get(local
, hdr
->addr2
);
1912 rx
.sdata
= rx
.sta
->sdata
;
1913 rx
.dev
= rx
.sta
->sdata
->dev
;
1916 if ((status
->flag
& RX_FLAG_MMIC_ERROR
)) {
1917 ieee80211_rx_michael_mic_report(local
->mdev
, hdr
, &rx
);
1921 if (unlikely(local
->sta_sw_scanning
|| local
->sta_hw_scanning
))
1922 rx
.flags
|= IEEE80211_RX_IN_SCAN
;
1924 ieee80211_parse_qos(&rx
);
1925 ieee80211_verify_ip_alignment(&rx
);
1929 list_for_each_entry_rcu(sdata
, &local
->interfaces
, list
) {
1930 if (!netif_running(sdata
->dev
))
1933 if (sdata
->vif
.type
== IEEE80211_IF_TYPE_MNTR
)
1936 bssid
= ieee80211_get_bssid(hdr
, skb
->len
, sdata
->vif
.type
);
1937 rx
.flags
|= IEEE80211_RX_RA_MATCH
;
1938 prepares
= prepare_for_handlers(sdata
, bssid
, &rx
, hdr
);
1944 * frame is destined for this interface, but if it's not
1945 * also for the previous one we handle that after the
1946 * loop to avoid copying the SKB once too much
1955 * frame was destined for the previous interface
1956 * so invoke RX handlers for it
1959 skb_new
= skb_copy(skb
, GFP_ATOMIC
);
1961 if (net_ratelimit())
1962 printk(KERN_DEBUG
"%s: failed to copy "
1963 "multicast frame for %s\n",
1964 wiphy_name(local
->hw
.wiphy
),
1968 ieee80211_invoke_rx_handlers(prev
, &rx
, skb_new
);
1972 ieee80211_invoke_rx_handlers(prev
, &rx
, skb
);
1977 #define SEQ_MODULO 0x1000
1978 #define SEQ_MASK 0xfff
1980 static inline int seq_less(u16 sq1
, u16 sq2
)
1982 return (((sq1
- sq2
) & SEQ_MASK
) > (SEQ_MODULO
>> 1));
1985 static inline u16
seq_inc(u16 sq
)
1987 return ((sq
+ 1) & SEQ_MASK
);
1990 static inline u16
seq_sub(u16 sq1
, u16 sq2
)
1992 return ((sq1
- sq2
) & SEQ_MASK
);
1997 * As it function blongs to Rx path it must be called with
1998 * the proper rcu_read_lock protection for its flow.
2000 u8
ieee80211_sta_manage_reorder_buf(struct ieee80211_hw
*hw
,
2001 struct tid_ampdu_rx
*tid_agg_rx
,
2002 struct sk_buff
*skb
, u16 mpdu_seq_num
,
2005 struct ieee80211_local
*local
= hw_to_local(hw
);
2006 struct ieee80211_rx_status status
;
2007 u16 head_seq_num
, buf_size
;
2009 struct ieee80211_supported_band
*sband
;
2010 struct ieee80211_rate
*rate
;
2012 buf_size
= tid_agg_rx
->buf_size
;
2013 head_seq_num
= tid_agg_rx
->head_seq_num
;
2015 /* frame with out of date sequence number */
2016 if (seq_less(mpdu_seq_num
, head_seq_num
)) {
2021 /* if frame sequence number exceeds our buffering window size or
2022 * block Ack Request arrived - release stored frames */
2023 if ((!seq_less(mpdu_seq_num
, head_seq_num
+ buf_size
)) || (bar_req
)) {
2024 /* new head to the ordering buffer */
2026 head_seq_num
= mpdu_seq_num
;
2029 seq_inc(seq_sub(mpdu_seq_num
, buf_size
));
2030 /* release stored frames up to new head to stack */
2031 while (seq_less(tid_agg_rx
->head_seq_num
, head_seq_num
)) {
2032 index
= seq_sub(tid_agg_rx
->head_seq_num
,
2034 % tid_agg_rx
->buf_size
;
2036 if (tid_agg_rx
->reorder_buf
[index
]) {
2037 /* release the reordered frames to stack */
2039 tid_agg_rx
->reorder_buf
[index
]->cb
,
2041 sband
= local
->hw
.wiphy
->bands
[status
.band
];
2042 rate
= &sband
->bitrates
[status
.rate_idx
];
2043 __ieee80211_rx_handle_packet(hw
,
2044 tid_agg_rx
->reorder_buf
[index
],
2046 tid_agg_rx
->stored_mpdu_num
--;
2047 tid_agg_rx
->reorder_buf
[index
] = NULL
;
2049 tid_agg_rx
->head_seq_num
=
2050 seq_inc(tid_agg_rx
->head_seq_num
);
2056 /* now the new frame is always in the range of the reordering */
2058 index
= seq_sub(mpdu_seq_num
, tid_agg_rx
->ssn
)
2059 % tid_agg_rx
->buf_size
;
2060 /* check if we already stored this frame */
2061 if (tid_agg_rx
->reorder_buf
[index
]) {
2066 /* if arrived mpdu is in the right order and nothing else stored */
2067 /* release it immediately */
2068 if (mpdu_seq_num
== tid_agg_rx
->head_seq_num
&&
2069 tid_agg_rx
->stored_mpdu_num
== 0) {
2070 tid_agg_rx
->head_seq_num
=
2071 seq_inc(tid_agg_rx
->head_seq_num
);
2075 /* put the frame in the reordering buffer */
2076 tid_agg_rx
->reorder_buf
[index
] = skb
;
2077 tid_agg_rx
->stored_mpdu_num
++;
2078 /* release the buffer until next missing frame */
2079 index
= seq_sub(tid_agg_rx
->head_seq_num
, tid_agg_rx
->ssn
)
2080 % tid_agg_rx
->buf_size
;
2081 while (tid_agg_rx
->reorder_buf
[index
]) {
2082 /* release the reordered frame back to stack */
2083 memcpy(&status
, tid_agg_rx
->reorder_buf
[index
]->cb
,
2085 sband
= local
->hw
.wiphy
->bands
[status
.band
];
2086 rate
= &sband
->bitrates
[status
.rate_idx
];
2087 __ieee80211_rx_handle_packet(hw
, tid_agg_rx
->reorder_buf
[index
],
2089 tid_agg_rx
->stored_mpdu_num
--;
2090 tid_agg_rx
->reorder_buf
[index
] = NULL
;
2091 tid_agg_rx
->head_seq_num
= seq_inc(tid_agg_rx
->head_seq_num
);
2092 index
= seq_sub(tid_agg_rx
->head_seq_num
,
2093 tid_agg_rx
->ssn
) % tid_agg_rx
->buf_size
;
2098 static u8
ieee80211_rx_reorder_ampdu(struct ieee80211_local
*local
,
2099 struct sk_buff
*skb
)
2101 struct ieee80211_hw
*hw
= &local
->hw
;
2102 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*) skb
->data
;
2103 struct sta_info
*sta
;
2104 struct tid_ampdu_rx
*tid_agg_rx
;
2110 sta
= sta_info_get(local
, hdr
->addr2
);
2114 /* filter the QoS data rx stream according to
2115 * STA/TID and check if this STA/TID is on aggregation */
2116 if (!ieee80211_is_data_qos(hdr
->frame_control
))
2119 tid
= *ieee80211_get_qos_ctl(hdr
) & IEEE80211_QOS_CTL_TID_MASK
;
2121 if (sta
->ampdu_mlme
.tid_state_rx
[tid
] != HT_AGG_STATE_OPERATIONAL
)
2124 tid_agg_rx
= sta
->ampdu_mlme
.tid_rx
[tid
];
2126 /* qos null data frames are excluded */
2127 if (unlikely(hdr
->frame_control
& cpu_to_le16(IEEE80211_STYPE_NULLFUNC
)))
2130 /* new un-ordered ampdu frame - process it */
2132 /* reset session timer */
2133 if (tid_agg_rx
->timeout
) {
2134 unsigned long expires
=
2135 jiffies
+ (tid_agg_rx
->timeout
/ 1000) * HZ
;
2136 mod_timer(&tid_agg_rx
->session_timer
, expires
);
2139 /* if this mpdu is fragmented - terminate rx aggregation session */
2140 sc
= le16_to_cpu(hdr
->seq_ctrl
);
2141 if (sc
& IEEE80211_SCTL_FRAG
) {
2142 ieee80211_sta_stop_rx_ba_session(sta
->sdata
, sta
->addr
,
2143 tid
, 0, WLAN_REASON_QSTA_REQUIRE_SETUP
);
2148 /* according to mpdu sequence number deal with reordering buffer */
2149 mpdu_seq_num
= (sc
& IEEE80211_SCTL_SEQ
) >> 4;
2150 ret
= ieee80211_sta_manage_reorder_buf(hw
, tid_agg_rx
, skb
,
2157 * This is the receive path handler. It is called by a low level driver when an
2158 * 802.11 MPDU is received from the hardware.
2160 void __ieee80211_rx(struct ieee80211_hw
*hw
, struct sk_buff
*skb
,
2161 struct ieee80211_rx_status
*status
)
2163 struct ieee80211_local
*local
= hw_to_local(hw
);
2164 struct ieee80211_rate
*rate
= NULL
;
2165 struct ieee80211_supported_band
*sband
;
2167 if (status
->band
< 0 ||
2168 status
->band
>= IEEE80211_NUM_BANDS
) {
2173 sband
= local
->hw
.wiphy
->bands
[status
->band
];
2176 status
->rate_idx
< 0 ||
2177 status
->rate_idx
>= sband
->n_bitrates
) {
2182 rate
= &sband
->bitrates
[status
->rate_idx
];
2185 * key references and virtual interfaces are protected using RCU
2186 * and this requires that we are in a read-side RCU section during
2187 * receive processing
2192 * Frames with failed FCS/PLCP checksum are not returned,
2193 * all other frames are returned without radiotap header
2194 * if it was previously present.
2195 * Also, frames with less than 16 bytes are dropped.
2197 skb
= ieee80211_rx_monitor(local
, skb
, status
, rate
);
2203 if (!ieee80211_rx_reorder_ampdu(local
, skb
))
2204 __ieee80211_rx_handle_packet(hw
, skb
, status
, rate
);
2208 EXPORT_SYMBOL(__ieee80211_rx
);
2210 /* This is a version of the rx handler that can be called from hard irq
2211 * context. Post the skb on the queue and schedule the tasklet */
2212 void ieee80211_rx_irqsafe(struct ieee80211_hw
*hw
, struct sk_buff
*skb
,
2213 struct ieee80211_rx_status
*status
)
2215 struct ieee80211_local
*local
= hw_to_local(hw
);
2217 BUILD_BUG_ON(sizeof(struct ieee80211_rx_status
) > sizeof(skb
->cb
));
2219 skb
->dev
= local
->mdev
;
2220 /* copy status into skb->cb for use by tasklet */
2221 memcpy(skb
->cb
, status
, sizeof(*status
));
2222 skb
->pkt_type
= IEEE80211_RX_MSG
;
2223 skb_queue_tail(&local
->skb_queue
, skb
);
2224 tasklet_schedule(&local
->tasklet
);
2226 EXPORT_SYMBOL(ieee80211_rx_irqsafe
);