blob: 472b19fc9143385c7f853b3ecf36e7846b3f1aac [file] [log] [blame]
Johannes Berg571ecf62007-07-27 15:43:22 +02001/*
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>
6 *
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.
10 */
11
S.Çağlar Onurab466232008-02-14 17:36:47 +020012#include <linux/jiffies.h>
Johannes Berg571ecf62007-07-27 15:43:22 +020013#include <linux/kernel.h>
14#include <linux/skbuff.h>
15#include <linux/netdevice.h>
16#include <linux/etherdevice.h>
Johannes Bergd4e46a32007-09-14 11:10:24 -040017#include <linux/rcupdate.h>
Johannes Berg571ecf62007-07-27 15:43:22 +020018#include <net/mac80211.h>
19#include <net/ieee80211_radiotap.h>
20
21#include "ieee80211_i.h"
22#include "ieee80211_led.h"
Johannes Berg571ecf62007-07-27 15:43:22 +020023#include "wep.h"
24#include "wpa.h"
25#include "tkip.h"
26#include "wme.h"
27
Ron Rindjunsky71364712007-12-25 17:00:36 +020028u8 ieee80211_sta_manage_reorder_buf(struct ieee80211_hw *hw,
29 struct tid_ampdu_rx *tid_agg_rx,
30 struct sk_buff *skb, u16 mpdu_seq_num,
31 int bar_req);
Johannes Bergb2e77712007-09-26 15:19:39 +020032/*
33 * monitor mode reception
34 *
35 * This function cleans up the SKB, i.e. it removes all the stuff
36 * only useful for monitoring.
37 */
38static struct sk_buff *remove_monitor_info(struct ieee80211_local *local,
39 struct sk_buff *skb,
40 int rtap_len)
41{
42 skb_pull(skb, rtap_len);
43
44 if (local->hw.flags & IEEE80211_HW_RX_INCLUDES_FCS) {
45 if (likely(skb->len > FCS_LEN))
46 skb_trim(skb, skb->len - FCS_LEN);
47 else {
48 /* driver bug */
49 WARN_ON(1);
50 dev_kfree_skb(skb);
51 skb = NULL;
52 }
53 }
54
55 return skb;
56}
57
58static inline int should_drop_frame(struct ieee80211_rx_status *status,
59 struct sk_buff *skb,
60 int present_fcs_len,
61 int radiotap_len)
62{
63 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
64
65 if (status->flag & (RX_FLAG_FAILED_FCS_CRC | RX_FLAG_FAILED_PLCP_CRC))
66 return 1;
67 if (unlikely(skb->len < 16 + present_fcs_len + radiotap_len))
68 return 1;
Ron Rindjunsky98f0b0a2007-12-18 17:23:53 +020069 if (((hdr->frame_control & cpu_to_le16(IEEE80211_FCTL_FTYPE)) ==
70 cpu_to_le16(IEEE80211_FTYPE_CTL)) &&
71 ((hdr->frame_control & cpu_to_le16(IEEE80211_FCTL_STYPE)) !=
Ron Rindjunsky71364712007-12-25 17:00:36 +020072 cpu_to_le16(IEEE80211_STYPE_PSPOLL)) &&
73 ((hdr->frame_control & cpu_to_le16(IEEE80211_FCTL_STYPE)) !=
74 cpu_to_le16(IEEE80211_STYPE_BACK_REQ)))
Johannes Bergb2e77712007-09-26 15:19:39 +020075 return 1;
76 return 0;
77}
78
79/*
80 * This function copies a received frame to all monitor interfaces and
81 * returns a cleaned-up SKB that no longer includes the FCS nor the
82 * radiotap header the driver might have added.
83 */
84static struct sk_buff *
85ieee80211_rx_monitor(struct ieee80211_local *local, struct sk_buff *origskb,
Johannes Berg8318d782008-01-24 19:38:38 +010086 struct ieee80211_rx_status *status,
87 struct ieee80211_rate *rate)
Johannes Bergb2e77712007-09-26 15:19:39 +020088{
89 struct ieee80211_sub_if_data *sdata;
Johannes Bergb2e77712007-09-26 15:19:39 +020090 int needed_headroom = 0;
Johannes Bergc49e5ea2007-12-11 21:33:42 +010091 struct ieee80211_radiotap_header *rthdr;
92 __le64 *rttsft = NULL;
93 struct ieee80211_rtap_fixed_data {
Johannes Bergb2e77712007-09-26 15:19:39 +020094 u8 flags;
95 u8 rate;
96 __le16 chan_freq;
97 __le16 chan_flags;
98 u8 antsignal;
99 u8 padding_for_rxflags;
100 __le16 rx_flags;
Johannes Bergc49e5ea2007-12-11 21:33:42 +0100101 } __attribute__ ((packed)) *rtfixed;
Johannes Bergb2e77712007-09-26 15:19:39 +0200102 struct sk_buff *skb, *skb2;
103 struct net_device *prev_dev = NULL;
104 int present_fcs_len = 0;
105 int rtap_len = 0;
106
107 /*
108 * First, we may need to make a copy of the skb because
109 * (1) we need to modify it for radiotap (if not present), and
110 * (2) the other RX handlers will modify the skb we got.
111 *
112 * We don't need to, of course, if we aren't going to return
113 * the SKB because it has a bad FCS/PLCP checksum.
114 */
115 if (status->flag & RX_FLAG_RADIOTAP)
116 rtap_len = ieee80211_get_radiotap_len(origskb->data);
117 else
Johannes Bergc49e5ea2007-12-11 21:33:42 +0100118 /* room for radiotap header, always present fields and TSFT */
119 needed_headroom = sizeof(*rthdr) + sizeof(*rtfixed) + 8;
Johannes Bergb2e77712007-09-26 15:19:39 +0200120
121 if (local->hw.flags & IEEE80211_HW_RX_INCLUDES_FCS)
122 present_fcs_len = FCS_LEN;
123
124 if (!local->monitors) {
125 if (should_drop_frame(status, origskb, present_fcs_len,
126 rtap_len)) {
127 dev_kfree_skb(origskb);
128 return NULL;
129 }
130
131 return remove_monitor_info(local, origskb, rtap_len);
132 }
133
134 if (should_drop_frame(status, origskb, present_fcs_len, rtap_len)) {
135 /* only need to expand headroom if necessary */
136 skb = origskb;
137 origskb = NULL;
138
139 /*
140 * This shouldn't trigger often because most devices have an
141 * RX header they pull before we get here, and that should
142 * be big enough for our radiotap information. We should
143 * probably export the length to drivers so that we can have
144 * them allocate enough headroom to start with.
145 */
146 if (skb_headroom(skb) < needed_headroom &&
Johannes Bergc49e5ea2007-12-11 21:33:42 +0100147 pskb_expand_head(skb, needed_headroom, 0, GFP_ATOMIC)) {
Johannes Bergb2e77712007-09-26 15:19:39 +0200148 dev_kfree_skb(skb);
149 return NULL;
150 }
151 } else {
152 /*
153 * Need to make a copy and possibly remove radiotap header
154 * and FCS from the original.
155 */
156 skb = skb_copy_expand(origskb, needed_headroom, 0, GFP_ATOMIC);
157
158 origskb = remove_monitor_info(local, origskb, rtap_len);
159
160 if (!skb)
161 return origskb;
162 }
163
164 /* if necessary, prepend radiotap information */
165 if (!(status->flag & RX_FLAG_RADIOTAP)) {
Johannes Bergc49e5ea2007-12-11 21:33:42 +0100166 rtfixed = (void *) skb_push(skb, sizeof(*rtfixed));
167 rtap_len = sizeof(*rthdr) + sizeof(*rtfixed);
168 if (status->flag & RX_FLAG_TSFT) {
169 rttsft = (void *) skb_push(skb, sizeof(*rttsft));
170 rtap_len += 8;
171 }
Johannes Bergb2e77712007-09-26 15:19:39 +0200172 rthdr = (void *) skb_push(skb, sizeof(*rthdr));
173 memset(rthdr, 0, sizeof(*rthdr));
Johannes Bergc49e5ea2007-12-11 21:33:42 +0100174 memset(rtfixed, 0, sizeof(*rtfixed));
175 rthdr->it_present =
Johannes Bergb2e77712007-09-26 15:19:39 +0200176 cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
177 (1 << IEEE80211_RADIOTAP_RATE) |
178 (1 << IEEE80211_RADIOTAP_CHANNEL) |
179 (1 << IEEE80211_RADIOTAP_DB_ANTSIGNAL) |
180 (1 << IEEE80211_RADIOTAP_RX_FLAGS));
Johannes Bergc49e5ea2007-12-11 21:33:42 +0100181 rtfixed->flags = 0;
182 if (local->hw.flags & IEEE80211_HW_RX_INCLUDES_FCS)
183 rtfixed->flags |= IEEE80211_RADIOTAP_F_FCS;
184
185 if (rttsft) {
186 *rttsft = cpu_to_le64(status->mactime);
187 rthdr->it_present |=
188 cpu_to_le32(1 << IEEE80211_RADIOTAP_TSFT);
189 }
Johannes Bergb2e77712007-09-26 15:19:39 +0200190
191 /* FIXME: when radiotap gets a 'bad PLCP' flag use it here */
Johannes Bergc49e5ea2007-12-11 21:33:42 +0100192 rtfixed->rx_flags = 0;
Johannes Bergb2e77712007-09-26 15:19:39 +0200193 if (status->flag &
194 (RX_FLAG_FAILED_FCS_CRC | RX_FLAG_FAILED_PLCP_CRC))
Johannes Bergc49e5ea2007-12-11 21:33:42 +0100195 rtfixed->rx_flags |=
Johannes Bergb2e77712007-09-26 15:19:39 +0200196 cpu_to_le16(IEEE80211_RADIOTAP_F_RX_BADFCS);
197
Johannes Berg8318d782008-01-24 19:38:38 +0100198 rtfixed->rate = rate->bitrate / 5;
Johannes Bergb2e77712007-09-26 15:19:39 +0200199
Johannes Bergc49e5ea2007-12-11 21:33:42 +0100200 rtfixed->chan_freq = cpu_to_le16(status->freq);
Johannes Bergb2e77712007-09-26 15:19:39 +0200201
Johannes Berg8318d782008-01-24 19:38:38 +0100202 if (status->band == IEEE80211_BAND_5GHZ)
Johannes Bergc49e5ea2007-12-11 21:33:42 +0100203 rtfixed->chan_flags =
Johannes Bergb2e77712007-09-26 15:19:39 +0200204 cpu_to_le16(IEEE80211_CHAN_OFDM |
205 IEEE80211_CHAN_5GHZ);
206 else
Johannes Bergc49e5ea2007-12-11 21:33:42 +0100207 rtfixed->chan_flags =
Johannes Bergb2e77712007-09-26 15:19:39 +0200208 cpu_to_le16(IEEE80211_CHAN_DYN |
209 IEEE80211_CHAN_2GHZ);
210
Johannes Bergc49e5ea2007-12-11 21:33:42 +0100211 rtfixed->antsignal = status->ssi;
212 rthdr->it_len = cpu_to_le16(rtap_len);
Johannes Bergb2e77712007-09-26 15:19:39 +0200213 }
214
Johannes Bergce3edf6d02007-12-19 01:31:22 +0100215 skb_reset_mac_header(skb);
Johannes Bergb2e77712007-09-26 15:19:39 +0200216 skb->ip_summed = CHECKSUM_UNNECESSARY;
217 skb->pkt_type = PACKET_OTHERHOST;
218 skb->protocol = htons(ETH_P_802_2);
219
220 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
221 if (!netif_running(sdata->dev))
222 continue;
223
Johannes Berg51fb61e2007-12-19 01:31:27 +0100224 if (sdata->vif.type != IEEE80211_IF_TYPE_MNTR)
Johannes Bergb2e77712007-09-26 15:19:39 +0200225 continue;
226
Michael Wu3d30d942008-01-31 19:48:27 +0100227 if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES)
228 continue;
229
Johannes Bergb2e77712007-09-26 15:19:39 +0200230 if (prev_dev) {
231 skb2 = skb_clone(skb, GFP_ATOMIC);
232 if (skb2) {
233 skb2->dev = prev_dev;
234 netif_rx(skb2);
235 }
236 }
237
238 prev_dev = sdata->dev;
239 sdata->dev->stats.rx_packets++;
240 sdata->dev->stats.rx_bytes += skb->len;
241 }
242
243 if (prev_dev) {
244 skb->dev = prev_dev;
245 netif_rx(skb);
246 } else
247 dev_kfree_skb(skb);
248
249 return origskb;
250}
251
252
Johannes Berg38f37142008-01-29 17:07:43 +0100253static void ieee80211_parse_qos(struct ieee80211_txrx_data *rx)
Johannes Berg6e0d1142007-07-27 15:43:22 +0200254{
255 u8 *data = rx->skb->data;
256 int tid;
257
258 /* does the frame have a qos control field? */
259 if (WLAN_FC_IS_QOS_DATA(rx->fc)) {
260 u8 *qc = data + ieee80211_get_hdrlen(rx->fc) - QOS_CONTROL_LEN;
261 /* frame has qos control */
262 tid = qc[0] & QOS_CONTROL_TID_MASK;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +0200263 if (qc[0] & IEEE80211_QOS_CONTROL_A_MSDU_PRESENT)
Ron Rindjunsky64bd4b62007-11-29 10:35:53 +0200264 rx->flags |= IEEE80211_TXRXD_RX_AMSDU;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +0200265 else
Ron Rindjunsky64bd4b62007-11-29 10:35:53 +0200266 rx->flags &= ~IEEE80211_TXRXD_RX_AMSDU;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200267 } else {
268 if (unlikely((rx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_MGMT)) {
269 /* Separate TID for management frames */
270 tid = NUM_RX_DATA_QUEUES - 1;
271 } else {
272 /* no qos control present */
273 tid = 0; /* 802.1d - Best Effort */
274 }
275 }
Johannes Berg52865df2007-07-27 15:43:22 +0200276
Johannes Berg6e0d1142007-07-27 15:43:22 +0200277 I802_DEBUG_INC(rx->local->wme_rx_queue[tid]);
Johannes Berg52865df2007-07-27 15:43:22 +0200278 /* only a debug counter, sta might not be assigned properly yet */
279 if (rx->sta)
Johannes Berg6e0d1142007-07-27 15:43:22 +0200280 I802_DEBUG_INC(rx->sta->wme_rx_queue[tid]);
Johannes Berg6e0d1142007-07-27 15:43:22 +0200281
282 rx->u.rx.queue = tid;
283 /* Set skb->priority to 1d tag if highest order bit of TID is not set.
284 * For now, set skb->priority to 0 for other cases. */
285 rx->skb->priority = (tid > 7) ? 0 : tid;
Johannes Berg38f37142008-01-29 17:07:43 +0100286}
Johannes Berg6e0d1142007-07-27 15:43:22 +0200287
Johannes Berg38f37142008-01-29 17:07:43 +0100288static void ieee80211_verify_ip_alignment(struct ieee80211_txrx_data *rx)
289{
290#ifdef CONFIG_MAC80211_DEBUG_PACKET_ALIGNMENT
291 int hdrlen;
292
293 if (!WLAN_FC_DATA_PRESENT(rx->fc))
294 return;
295
296 /*
297 * Drivers are required to align the payload data in a way that
298 * guarantees that the contained IP header is aligned to a four-
299 * byte boundary. In the case of regular frames, this simply means
300 * aligning the payload to a four-byte boundary (because either
301 * the IP header is directly contained, or IV/RFC1042 headers that
302 * have a length divisible by four are in front of it.
303 *
304 * With A-MSDU frames, however, the payload data address must
305 * yield two modulo four because there are 14-byte 802.3 headers
306 * within the A-MSDU frames that push the IP header further back
307 * to a multiple of four again. Thankfully, the specs were sane
308 * enough this time around to require padding each A-MSDU subframe
309 * to a length that is a multiple of four.
310 *
311 * Padding like atheros hardware adds which is inbetween the 802.11
312 * header and the payload is not supported, the driver is required
313 * to move the 802.11 header further back in that case.
314 */
315 hdrlen = ieee80211_get_hdrlen(rx->fc);
316 if (rx->flags & IEEE80211_TXRXD_RX_AMSDU)
317 hdrlen += ETH_HLEN;
318 WARN_ON_ONCE(((unsigned long)(rx->skb->data + hdrlen)) & 3);
319#endif
Johannes Berg6e0d1142007-07-27 15:43:22 +0200320}
321
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +0200322
Ron Rindjunsky71ebb4a2008-01-21 12:39:12 +0200323static u32 ieee80211_rx_load_stats(struct ieee80211_local *local,
Johannes Berg8318d782008-01-24 19:38:38 +0100324 struct sk_buff *skb,
325 struct ieee80211_rx_status *status,
326 struct ieee80211_rate *rate)
Johannes Berg571ecf62007-07-27 15:43:22 +0200327{
Johannes Berg571ecf62007-07-27 15:43:22 +0200328 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
329 u32 load = 0, hdrtime;
Johannes Berg571ecf62007-07-27 15:43:22 +0200330
331 /* Estimate total channel use caused by this frame */
332
Johannes Berg571ecf62007-07-27 15:43:22 +0200333 /* 1 bit at 1 Mbit/s takes 1 usec; in channel_use values,
334 * 1 usec = 1/8 * (1080 / 10) = 13.5 */
335
Johannes Berg8318d782008-01-24 19:38:38 +0100336 if (status->band == IEEE80211_BAND_5GHZ ||
337 (status->band == IEEE80211_BAND_5GHZ &&
338 rate->flags & IEEE80211_RATE_ERP_G))
Johannes Berg571ecf62007-07-27 15:43:22 +0200339 hdrtime = CHAN_UTIL_HDR_SHORT;
340 else
341 hdrtime = CHAN_UTIL_HDR_LONG;
342
343 load = hdrtime;
344 if (!is_multicast_ether_addr(hdr->addr1))
345 load += hdrtime;
346
Johannes Berg8318d782008-01-24 19:38:38 +0100347 /* TODO: optimise again */
348 load += skb->len * CHAN_UTIL_RATE_LCM / rate->bitrate;
Johannes Berg571ecf62007-07-27 15:43:22 +0200349
350 /* Divide channel_use by 8 to avoid wrapping around the counter */
351 load >>= CHAN_UTIL_SHIFT;
Johannes Berg571ecf62007-07-27 15:43:22 +0200352
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +0200353 return load;
Johannes Berg571ecf62007-07-27 15:43:22 +0200354}
355
Johannes Berg571ecf62007-07-27 15:43:22 +0200356/* rx handlers */
357
Johannes Berg9ae54c82008-01-31 19:48:20 +0100358static ieee80211_rx_result
Johannes Berg571ecf62007-07-27 15:43:22 +0200359ieee80211_rx_h_if_stats(struct ieee80211_txrx_data *rx)
360{
Johannes Berg52865df2007-07-27 15:43:22 +0200361 if (rx->sta)
362 rx->sta->channel_use_raw += rx->u.rx.load;
Johannes Berg571ecf62007-07-27 15:43:22 +0200363 rx->sdata->channel_use_raw += rx->u.rx.load;
Johannes Berg9ae54c82008-01-31 19:48:20 +0100364 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200365}
366
Johannes Berg9ae54c82008-01-31 19:48:20 +0100367static ieee80211_rx_result
Johannes Berg571ecf62007-07-27 15:43:22 +0200368ieee80211_rx_h_passive_scan(struct ieee80211_txrx_data *rx)
369{
370 struct ieee80211_local *local = rx->local;
371 struct sk_buff *skb = rx->skb;
372
Zhu Yiece8edd2007-11-22 10:53:21 +0800373 if (unlikely(local->sta_hw_scanning))
374 return ieee80211_sta_rx_scan(rx->dev, skb, rx->u.rx.status);
375
376 if (unlikely(local->sta_sw_scanning)) {
377 /* drop all the other packets during a software scan anyway */
378 if (ieee80211_sta_rx_scan(rx->dev, skb, rx->u.rx.status)
Johannes Berg9ae54c82008-01-31 19:48:20 +0100379 != RX_QUEUED)
Zhu Yiece8edd2007-11-22 10:53:21 +0800380 dev_kfree_skb(skb);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100381 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200382 }
383
Jiri Slabybadffb72007-08-28 17:01:54 -0400384 if (unlikely(rx->flags & IEEE80211_TXRXD_RXIN_SCAN)) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200385 /* scanning finished during invoking of handlers */
386 I802_DEBUG_INC(local->rx_handlers_drop_passive_scan);
Johannes Berge4c26ad2008-01-31 19:48:21 +0100387 return RX_DROP_UNUSABLE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200388 }
389
Johannes Berg9ae54c82008-01-31 19:48:20 +0100390 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200391}
392
Johannes Berg9ae54c82008-01-31 19:48:20 +0100393static ieee80211_rx_result
Johannes Berg571ecf62007-07-27 15:43:22 +0200394ieee80211_rx_h_check(struct ieee80211_txrx_data *rx)
395{
396 struct ieee80211_hdr *hdr;
Johannes Berg571ecf62007-07-27 15:43:22 +0200397 hdr = (struct ieee80211_hdr *) rx->skb->data;
398
399 /* Drop duplicate 802.11 retransmissions (IEEE 802.11 Chap. 9.2.9) */
400 if (rx->sta && !is_multicast_ether_addr(hdr->addr1)) {
401 if (unlikely(rx->fc & IEEE80211_FCTL_RETRY &&
402 rx->sta->last_seq_ctrl[rx->u.rx.queue] ==
403 hdr->seq_ctrl)) {
Jiri Slabybadffb72007-08-28 17:01:54 -0400404 if (rx->flags & IEEE80211_TXRXD_RXRA_MATCH) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200405 rx->local->dot11FrameDuplicateCount++;
406 rx->sta->num_duplicates++;
407 }
Johannes Berge4c26ad2008-01-31 19:48:21 +0100408 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +0200409 } else
410 rx->sta->last_seq_ctrl[rx->u.rx.queue] = hdr->seq_ctrl;
411 }
412
Johannes Berg571ecf62007-07-27 15:43:22 +0200413 if (unlikely(rx->skb->len < 16)) {
414 I802_DEBUG_INC(rx->local->rx_handlers_drop_short);
Johannes Berge4c26ad2008-01-31 19:48:21 +0100415 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +0200416 }
417
Johannes Berg571ecf62007-07-27 15:43:22 +0200418 /* Drop disallowed frame classes based on STA auth/assoc state;
419 * IEEE 802.11, Chap 5.5.
420 *
421 * 80211.o does filtering only based on association state, i.e., it
422 * drops Class 3 frames from not associated stations. hostapd sends
423 * deauth/disassoc frames when needed. In addition, hostapd is
424 * responsible for filtering on both auth and assoc states.
425 */
426 if (unlikely(((rx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA ||
427 ((rx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_CTL &&
428 (rx->fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_PSPOLL)) &&
Johannes Berg51fb61e2007-12-19 01:31:27 +0100429 rx->sdata->vif.type != IEEE80211_IF_TYPE_IBSS &&
Johannes Berg571ecf62007-07-27 15:43:22 +0200430 (!rx->sta || !(rx->sta->flags & WLAN_STA_ASSOC)))) {
431 if ((!(rx->fc & IEEE80211_FCTL_FROMDS) &&
432 !(rx->fc & IEEE80211_FCTL_TODS) &&
433 (rx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA)
Jiri Slabybadffb72007-08-28 17:01:54 -0400434 || !(rx->flags & IEEE80211_TXRXD_RXRA_MATCH)) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200435 /* Drop IBSS frames and frames for other hosts
436 * silently. */
Johannes Berge4c26ad2008-01-31 19:48:21 +0100437 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +0200438 }
439
Johannes Berge4c26ad2008-01-31 19:48:21 +0100440 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +0200441 }
442
Johannes Berg9ae54c82008-01-31 19:48:20 +0100443 return RX_CONTINUE;
Johannes Berg570bd532007-07-27 15:43:22 +0200444}
445
446
Johannes Berg9ae54c82008-01-31 19:48:20 +0100447static ieee80211_rx_result
Johannes Berg1990af82007-09-26 17:53:15 +0200448ieee80211_rx_h_decrypt(struct ieee80211_txrx_data *rx)
Johannes Berg570bd532007-07-27 15:43:22 +0200449{
450 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) rx->skb->data;
Johannes Berg3017b802007-08-28 17:01:53 -0400451 int keyidx;
452 int hdrlen;
Johannes Berge4c26ad2008-01-31 19:48:21 +0100453 ieee80211_rx_result result = RX_DROP_UNUSABLE;
Johannes Bergd4e46a32007-09-14 11:10:24 -0400454 struct ieee80211_key *stakey = NULL;
Johannes Berg570bd532007-07-27 15:43:22 +0200455
Johannes Berg3017b802007-08-28 17:01:53 -0400456 /*
457 * Key selection 101
458 *
459 * There are three types of keys:
460 * - GTK (group keys)
461 * - PTK (pairwise keys)
462 * - STK (station-to-station pairwise keys)
463 *
464 * When selecting a key, we have to distinguish between multicast
465 * (including broadcast) and unicast frames, the latter can only
466 * use PTKs and STKs while the former always use GTKs. Unless, of
467 * course, actual WEP keys ("pre-RSNA") are used, then unicast
468 * frames can also use key indizes like GTKs. Hence, if we don't
469 * have a PTK/STK we check the key index for a WEP key.
470 *
Johannes Berg8dc06a12007-08-28 17:01:55 -0400471 * Note that in a regular BSS, multicast frames are sent by the
472 * AP only, associated stations unicast the frame to the AP first
473 * which then multicasts it on their behalf.
474 *
Johannes Berg3017b802007-08-28 17:01:53 -0400475 * There is also a slight problem in IBSS mode: GTKs are negotiated
476 * with each station, that is something we don't currently handle.
Johannes Berg8dc06a12007-08-28 17:01:55 -0400477 * The spec seems to expect that one negotiates the same key with
478 * every station but there's no such requirement; VLANs could be
479 * possible.
Johannes Berg3017b802007-08-28 17:01:53 -0400480 */
Johannes Berg571ecf62007-07-27 15:43:22 +0200481
Johannes Berg3017b802007-08-28 17:01:53 -0400482 if (!(rx->fc & IEEE80211_FCTL_PROTECTED))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100483 return RX_CONTINUE;
Johannes Berg3017b802007-08-28 17:01:53 -0400484
485 /*
Johannes Berg1990af82007-09-26 17:53:15 +0200486 * No point in finding a key and decrypting if the frame is neither
Johannes Berg3017b802007-08-28 17:01:53 -0400487 * addressed to us nor a multicast frame.
488 */
Jiri Slabybadffb72007-08-28 17:01:54 -0400489 if (!(rx->flags & IEEE80211_TXRXD_RXRA_MATCH))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100490 return RX_CONTINUE;
Johannes Berg3017b802007-08-28 17:01:53 -0400491
Johannes Bergd4e46a32007-09-14 11:10:24 -0400492 if (rx->sta)
493 stakey = rcu_dereference(rx->sta->key);
494
495 if (!is_multicast_ether_addr(hdr->addr1) && stakey) {
496 rx->key = stakey;
Johannes Berg571ecf62007-07-27 15:43:22 +0200497 } else {
Johannes Berg3017b802007-08-28 17:01:53 -0400498 /*
499 * The device doesn't give us the IV so we won't be
500 * able to look up the key. That's ok though, we
501 * don't need to decrypt the frame, we just won't
502 * be able to keep statistics accurate.
503 * Except for key threshold notifications, should
504 * we somehow allow the driver to tell us which key
505 * the hardware used if this flag is set?
506 */
Johannes Berg7848ba72007-09-14 11:10:25 -0400507 if ((rx->u.rx.status->flag & RX_FLAG_DECRYPTED) &&
508 (rx->u.rx.status->flag & RX_FLAG_IV_STRIPPED))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100509 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200510
Johannes Berg3017b802007-08-28 17:01:53 -0400511 hdrlen = ieee80211_get_hdrlen(rx->fc);
Johannes Berg571ecf62007-07-27 15:43:22 +0200512
Johannes Berg3017b802007-08-28 17:01:53 -0400513 if (rx->skb->len < 8 + hdrlen)
Johannes Berge4c26ad2008-01-31 19:48:21 +0100514 return RX_DROP_UNUSABLE; /* TODO: count this? */
Johannes Berg571ecf62007-07-27 15:43:22 +0200515
Johannes Berg3017b802007-08-28 17:01:53 -0400516 /*
517 * no need to call ieee80211_wep_get_keyidx,
518 * it verifies a bunch of things we've done already
519 */
520 keyidx = rx->skb->data[hdrlen + 3] >> 6;
521
Johannes Bergd4e46a32007-09-14 11:10:24 -0400522 rx->key = rcu_dereference(rx->sdata->keys[keyidx]);
Johannes Berg3017b802007-08-28 17:01:53 -0400523
524 /*
525 * RSNA-protected unicast frames should always be sent with
526 * pairwise or station-to-station keys, but for WEP we allow
527 * using a key index as well.
528 */
Johannes Berg8f20fc22007-08-28 17:01:54 -0400529 if (rx->key && rx->key->conf.alg != ALG_WEP &&
Johannes Berg3017b802007-08-28 17:01:53 -0400530 !is_multicast_ether_addr(hdr->addr1))
531 rx->key = NULL;
Johannes Berg571ecf62007-07-27 15:43:22 +0200532 }
533
Johannes Berg3017b802007-08-28 17:01:53 -0400534 if (rx->key) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200535 rx->key->tx_rx_count++;
Johannes Berg011bfcc2007-09-17 01:29:25 -0400536 /* TODO: add threshold stuff again */
Johannes Berg1990af82007-09-26 17:53:15 +0200537 } else {
John W. Linville7f3ad892007-11-06 17:12:31 -0500538#ifdef CONFIG_MAC80211_DEBUG
Johannes Berg70f08762007-09-26 17:53:14 +0200539 if (net_ratelimit())
540 printk(KERN_DEBUG "%s: RX protected frame,"
541 " but have no key\n", rx->dev->name);
John W. Linville7f3ad892007-11-06 17:12:31 -0500542#endif /* CONFIG_MAC80211_DEBUG */
Johannes Berge4c26ad2008-01-31 19:48:21 +0100543 return RX_DROP_MONITOR;
Johannes Berg70f08762007-09-26 17:53:14 +0200544 }
545
Johannes Berg1990af82007-09-26 17:53:15 +0200546 /* Check for weak IVs if possible */
547 if (rx->sta && rx->key->conf.alg == ALG_WEP &&
548 ((rx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA) &&
549 (!(rx->u.rx.status->flag & RX_FLAG_IV_STRIPPED) ||
550 !(rx->u.rx.status->flag & RX_FLAG_DECRYPTED)) &&
551 ieee80211_wep_is_weak_iv(rx->skb, rx->key))
552 rx->sta->wep_weak_iv_count++;
553
Johannes Berg70f08762007-09-26 17:53:14 +0200554 switch (rx->key->conf.alg) {
555 case ALG_WEP:
Mattias Nisslere2f036d2007-10-07 16:35:31 +0200556 result = ieee80211_crypto_wep_decrypt(rx);
557 break;
Johannes Berg70f08762007-09-26 17:53:14 +0200558 case ALG_TKIP:
Mattias Nisslere2f036d2007-10-07 16:35:31 +0200559 result = ieee80211_crypto_tkip_decrypt(rx);
560 break;
Johannes Berg70f08762007-09-26 17:53:14 +0200561 case ALG_CCMP:
Mattias Nisslere2f036d2007-10-07 16:35:31 +0200562 result = ieee80211_crypto_ccmp_decrypt(rx);
563 break;
Johannes Berg70f08762007-09-26 17:53:14 +0200564 }
565
Mattias Nisslere2f036d2007-10-07 16:35:31 +0200566 /* either the frame has been decrypted or will be dropped */
567 rx->u.rx.status->flag |= RX_FLAG_DECRYPTED;
568
569 return result;
Johannes Berg70f08762007-09-26 17:53:14 +0200570}
571
Johannes Berg571ecf62007-07-27 15:43:22 +0200572static void ap_sta_ps_start(struct net_device *dev, struct sta_info *sta)
573{
574 struct ieee80211_sub_if_data *sdata;
Joe Perches0795af52007-10-03 17:59:30 -0700575 DECLARE_MAC_BUF(mac);
576
Johannes Berg571ecf62007-07-27 15:43:22 +0200577 sdata = IEEE80211_DEV_TO_SUB_IF(sta->dev);
578
579 if (sdata->bss)
580 atomic_inc(&sdata->bss->num_sta_ps);
581 sta->flags |= WLAN_STA_PS;
582 sta->pspoll = 0;
583#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Joe Perches0795af52007-10-03 17:59:30 -0700584 printk(KERN_DEBUG "%s: STA %s aid %d enters power save mode\n",
585 dev->name, print_mac(mac, sta->addr), sta->aid);
Johannes Berg571ecf62007-07-27 15:43:22 +0200586#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
587}
588
589static int ap_sta_ps_end(struct net_device *dev, struct sta_info *sta)
590{
591 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
592 struct sk_buff *skb;
593 int sent = 0;
594 struct ieee80211_sub_if_data *sdata;
595 struct ieee80211_tx_packet_data *pkt_data;
Joe Perches0795af52007-10-03 17:59:30 -0700596 DECLARE_MAC_BUF(mac);
Johannes Berg571ecf62007-07-27 15:43:22 +0200597
598 sdata = IEEE80211_DEV_TO_SUB_IF(sta->dev);
599 if (sdata->bss)
600 atomic_dec(&sdata->bss->num_sta_ps);
601 sta->flags &= ~(WLAN_STA_PS | WLAN_STA_TIM);
602 sta->pspoll = 0;
603 if (!skb_queue_empty(&sta->ps_tx_buf)) {
604 if (local->ops->set_tim)
605 local->ops->set_tim(local_to_hw(local), sta->aid, 0);
606 if (sdata->bss)
607 bss_tim_clear(local, sdata->bss, sta->aid);
608 }
609#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Joe Perches0795af52007-10-03 17:59:30 -0700610 printk(KERN_DEBUG "%s: STA %s aid %d exits power save mode\n",
611 dev->name, print_mac(mac, sta->addr), sta->aid);
Johannes Berg571ecf62007-07-27 15:43:22 +0200612#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
613 /* Send all buffered frames to the station */
614 while ((skb = skb_dequeue(&sta->tx_filtered)) != NULL) {
615 pkt_data = (struct ieee80211_tx_packet_data *) skb->cb;
616 sent++;
Jiri Slabye8bf9642007-08-28 17:01:54 -0400617 pkt_data->flags |= IEEE80211_TXPD_REQUEUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200618 dev_queue_xmit(skb);
619 }
620 while ((skb = skb_dequeue(&sta->ps_tx_buf)) != NULL) {
621 pkt_data = (struct ieee80211_tx_packet_data *) skb->cb;
622 local->total_ps_buffered--;
623 sent++;
624#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Joe Perches0795af52007-10-03 17:59:30 -0700625 printk(KERN_DEBUG "%s: STA %s aid %d send PS frame "
Johannes Berg571ecf62007-07-27 15:43:22 +0200626 "since STA not sleeping anymore\n", dev->name,
Joe Perches0795af52007-10-03 17:59:30 -0700627 print_mac(mac, sta->addr), sta->aid);
Johannes Berg571ecf62007-07-27 15:43:22 +0200628#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
Jiri Slabye8bf9642007-08-28 17:01:54 -0400629 pkt_data->flags |= IEEE80211_TXPD_REQUEUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200630 dev_queue_xmit(skb);
631 }
632
633 return sent;
634}
635
Johannes Berg9ae54c82008-01-31 19:48:20 +0100636static ieee80211_rx_result
Johannes Berg571ecf62007-07-27 15:43:22 +0200637ieee80211_rx_h_sta_process(struct ieee80211_txrx_data *rx)
638{
639 struct sta_info *sta = rx->sta;
640 struct net_device *dev = rx->dev;
641 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) rx->skb->data;
642
643 if (!sta)
Johannes Berg9ae54c82008-01-31 19:48:20 +0100644 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200645
646 /* Update last_rx only for IBSS packets which are for the current
647 * BSSID to avoid keeping the current IBSS network alive in cases where
648 * other STAs are using different BSSID. */
Johannes Berg51fb61e2007-12-19 01:31:27 +0100649 if (rx->sdata->vif.type == IEEE80211_IF_TYPE_IBSS) {
Ron Rindjunsky71364712007-12-25 17:00:36 +0200650 u8 *bssid = ieee80211_get_bssid(hdr, rx->skb->len,
651 IEEE80211_IF_TYPE_IBSS);
Johannes Berg571ecf62007-07-27 15:43:22 +0200652 if (compare_ether_addr(bssid, rx->sdata->u.sta.bssid) == 0)
653 sta->last_rx = jiffies;
654 } else
655 if (!is_multicast_ether_addr(hdr->addr1) ||
Johannes Berg51fb61e2007-12-19 01:31:27 +0100656 rx->sdata->vif.type == IEEE80211_IF_TYPE_STA) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200657 /* Update last_rx only for unicast frames in order to prevent
658 * the Probe Request frames (the only broadcast frames from a
659 * STA in infrastructure mode) from keeping a connection alive.
660 */
661 sta->last_rx = jiffies;
662 }
663
Jiri Slabybadffb72007-08-28 17:01:54 -0400664 if (!(rx->flags & IEEE80211_TXRXD_RXRA_MATCH))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100665 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200666
667 sta->rx_fragments++;
668 sta->rx_bytes += rx->skb->len;
Larry Finger6c55aa92007-08-28 17:01:55 -0400669 sta->last_rssi = rx->u.rx.status->ssi;
670 sta->last_signal = rx->u.rx.status->signal;
671 sta->last_noise = rx->u.rx.status->noise;
Johannes Berg571ecf62007-07-27 15:43:22 +0200672
673 if (!(rx->fc & IEEE80211_FCTL_MOREFRAGS)) {
674 /* Change STA power saving mode only in the end of a frame
675 * exchange sequence */
676 if ((sta->flags & WLAN_STA_PS) && !(rx->fc & IEEE80211_FCTL_PM))
677 rx->u.rx.sent_ps_buffered += ap_sta_ps_end(dev, sta);
678 else if (!(sta->flags & WLAN_STA_PS) &&
679 (rx->fc & IEEE80211_FCTL_PM))
680 ap_sta_ps_start(dev, sta);
681 }
682
683 /* Drop data::nullfunc frames silently, since they are used only to
684 * control station power saving mode. */
685 if ((rx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA &&
686 (rx->fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_NULLFUNC) {
687 I802_DEBUG_INC(rx->local->rx_handlers_drop_nullfunc);
688 /* Update counter and free packet here to avoid counting this
689 * as a dropped packed. */
690 sta->rx_packets++;
691 dev_kfree_skb(rx->skb);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100692 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200693 }
694
Johannes Berg9ae54c82008-01-31 19:48:20 +0100695 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200696} /* ieee80211_rx_h_sta_process */
697
Johannes Berg571ecf62007-07-27 15:43:22 +0200698static inline struct ieee80211_fragment_entry *
699ieee80211_reassemble_add(struct ieee80211_sub_if_data *sdata,
700 unsigned int frag, unsigned int seq, int rx_queue,
701 struct sk_buff **skb)
702{
703 struct ieee80211_fragment_entry *entry;
704 int idx;
705
706 idx = sdata->fragment_next;
707 entry = &sdata->fragments[sdata->fragment_next++];
708 if (sdata->fragment_next >= IEEE80211_FRAGMENT_MAX)
709 sdata->fragment_next = 0;
710
711 if (!skb_queue_empty(&entry->skb_list)) {
712#ifdef CONFIG_MAC80211_DEBUG
713 struct ieee80211_hdr *hdr =
714 (struct ieee80211_hdr *) entry->skb_list.next->data;
Joe Perches0795af52007-10-03 17:59:30 -0700715 DECLARE_MAC_BUF(mac);
716 DECLARE_MAC_BUF(mac2);
Johannes Berg571ecf62007-07-27 15:43:22 +0200717 printk(KERN_DEBUG "%s: RX reassembly removed oldest "
718 "fragment entry (idx=%d age=%lu seq=%d last_frag=%d "
Joe Perches0795af52007-10-03 17:59:30 -0700719 "addr1=%s addr2=%s\n",
Johannes Berg571ecf62007-07-27 15:43:22 +0200720 sdata->dev->name, idx,
721 jiffies - entry->first_frag_time, entry->seq,
Joe Perches0795af52007-10-03 17:59:30 -0700722 entry->last_frag, print_mac(mac, hdr->addr1),
723 print_mac(mac2, hdr->addr2));
Johannes Berg571ecf62007-07-27 15:43:22 +0200724#endif /* CONFIG_MAC80211_DEBUG */
725 __skb_queue_purge(&entry->skb_list);
726 }
727
728 __skb_queue_tail(&entry->skb_list, *skb); /* no need for locking */
729 *skb = NULL;
730 entry->first_frag_time = jiffies;
731 entry->seq = seq;
732 entry->rx_queue = rx_queue;
733 entry->last_frag = frag;
734 entry->ccmp = 0;
735 entry->extra_len = 0;
736
737 return entry;
738}
739
740static inline struct ieee80211_fragment_entry *
741ieee80211_reassemble_find(struct ieee80211_sub_if_data *sdata,
742 u16 fc, unsigned int frag, unsigned int seq,
743 int rx_queue, struct ieee80211_hdr *hdr)
744{
745 struct ieee80211_fragment_entry *entry;
746 int i, idx;
747
748 idx = sdata->fragment_next;
749 for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) {
750 struct ieee80211_hdr *f_hdr;
751 u16 f_fc;
752
753 idx--;
754 if (idx < 0)
755 idx = IEEE80211_FRAGMENT_MAX - 1;
756
757 entry = &sdata->fragments[idx];
758 if (skb_queue_empty(&entry->skb_list) || entry->seq != seq ||
759 entry->rx_queue != rx_queue ||
760 entry->last_frag + 1 != frag)
761 continue;
762
763 f_hdr = (struct ieee80211_hdr *) entry->skb_list.next->data;
764 f_fc = le16_to_cpu(f_hdr->frame_control);
765
766 if ((fc & IEEE80211_FCTL_FTYPE) != (f_fc & IEEE80211_FCTL_FTYPE) ||
767 compare_ether_addr(hdr->addr1, f_hdr->addr1) != 0 ||
768 compare_ether_addr(hdr->addr2, f_hdr->addr2) != 0)
769 continue;
770
S.Çağlar Onurab466232008-02-14 17:36:47 +0200771 if (time_after(jiffies, entry->first_frag_time + 2 * HZ)) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200772 __skb_queue_purge(&entry->skb_list);
773 continue;
774 }
775 return entry;
776 }
777
778 return NULL;
779}
780
Johannes Berg9ae54c82008-01-31 19:48:20 +0100781static ieee80211_rx_result
Johannes Berg571ecf62007-07-27 15:43:22 +0200782ieee80211_rx_h_defragment(struct ieee80211_txrx_data *rx)
783{
784 struct ieee80211_hdr *hdr;
785 u16 sc;
786 unsigned int frag, seq;
787 struct ieee80211_fragment_entry *entry;
788 struct sk_buff *skb;
Joe Perches0795af52007-10-03 17:59:30 -0700789 DECLARE_MAC_BUF(mac);
Johannes Berg571ecf62007-07-27 15:43:22 +0200790
791 hdr = (struct ieee80211_hdr *) rx->skb->data;
792 sc = le16_to_cpu(hdr->seq_ctrl);
793 frag = sc & IEEE80211_SCTL_FRAG;
794
795 if (likely((!(rx->fc & IEEE80211_FCTL_MOREFRAGS) && frag == 0) ||
796 (rx->skb)->len < 24 ||
797 is_multicast_ether_addr(hdr->addr1))) {
798 /* not fragmented */
799 goto out;
800 }
801 I802_DEBUG_INC(rx->local->rx_handlers_fragments);
802
803 seq = (sc & IEEE80211_SCTL_SEQ) >> 4;
804
805 if (frag == 0) {
806 /* This is the first fragment of a new frame. */
807 entry = ieee80211_reassemble_add(rx->sdata, frag, seq,
808 rx->u.rx.queue, &(rx->skb));
Johannes Berg8f20fc22007-08-28 17:01:54 -0400809 if (rx->key && rx->key->conf.alg == ALG_CCMP &&
Johannes Berg571ecf62007-07-27 15:43:22 +0200810 (rx->fc & IEEE80211_FCTL_PROTECTED)) {
811 /* Store CCMP PN so that we can verify that the next
812 * fragment has a sequential PN value. */
813 entry->ccmp = 1;
814 memcpy(entry->last_pn,
815 rx->key->u.ccmp.rx_pn[rx->u.rx.queue],
816 CCMP_PN_LEN);
817 }
Johannes Berg9ae54c82008-01-31 19:48:20 +0100818 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200819 }
820
821 /* This is a fragment for a frame that should already be pending in
822 * fragment cache. Add this fragment to the end of the pending entry.
823 */
824 entry = ieee80211_reassemble_find(rx->sdata, rx->fc, frag, seq,
825 rx->u.rx.queue, hdr);
826 if (!entry) {
827 I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
Johannes Berge4c26ad2008-01-31 19:48:21 +0100828 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +0200829 }
830
831 /* Verify that MPDUs within one MSDU have sequential PN values.
832 * (IEEE 802.11i, 8.3.3.4.5) */
833 if (entry->ccmp) {
834 int i;
835 u8 pn[CCMP_PN_LEN], *rpn;
Johannes Berg8f20fc22007-08-28 17:01:54 -0400836 if (!rx->key || rx->key->conf.alg != ALG_CCMP)
Johannes Berge4c26ad2008-01-31 19:48:21 +0100837 return RX_DROP_UNUSABLE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200838 memcpy(pn, entry->last_pn, CCMP_PN_LEN);
839 for (i = CCMP_PN_LEN - 1; i >= 0; i--) {
840 pn[i]++;
841 if (pn[i])
842 break;
843 }
844 rpn = rx->key->u.ccmp.rx_pn[rx->u.rx.queue];
845 if (memcmp(pn, rpn, CCMP_PN_LEN) != 0) {
Johannes Berg1a84f3f2007-08-28 17:01:52 -0400846 if (net_ratelimit())
847 printk(KERN_DEBUG "%s: defrag: CCMP PN not "
Joe Perches0795af52007-10-03 17:59:30 -0700848 "sequential A2=%s"
Johannes Berg1a84f3f2007-08-28 17:01:52 -0400849 " PN=%02x%02x%02x%02x%02x%02x "
850 "(expected %02x%02x%02x%02x%02x%02x)\n",
Joe Perches0795af52007-10-03 17:59:30 -0700851 rx->dev->name, print_mac(mac, hdr->addr2),
Johannes Berg1a84f3f2007-08-28 17:01:52 -0400852 rpn[0], rpn[1], rpn[2], rpn[3], rpn[4],
853 rpn[5], pn[0], pn[1], pn[2], pn[3],
854 pn[4], pn[5]);
Johannes Berge4c26ad2008-01-31 19:48:21 +0100855 return RX_DROP_UNUSABLE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200856 }
857 memcpy(entry->last_pn, pn, CCMP_PN_LEN);
858 }
859
860 skb_pull(rx->skb, ieee80211_get_hdrlen(rx->fc));
861 __skb_queue_tail(&entry->skb_list, rx->skb);
862 entry->last_frag = frag;
863 entry->extra_len += rx->skb->len;
864 if (rx->fc & IEEE80211_FCTL_MOREFRAGS) {
865 rx->skb = NULL;
Johannes Berg9ae54c82008-01-31 19:48:20 +0100866 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200867 }
868
869 rx->skb = __skb_dequeue(&entry->skb_list);
870 if (skb_tailroom(rx->skb) < entry->extra_len) {
871 I802_DEBUG_INC(rx->local->rx_expand_skb_head2);
872 if (unlikely(pskb_expand_head(rx->skb, 0, entry->extra_len,
873 GFP_ATOMIC))) {
874 I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
875 __skb_queue_purge(&entry->skb_list);
Johannes Berge4c26ad2008-01-31 19:48:21 +0100876 return RX_DROP_UNUSABLE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200877 }
878 }
879 while ((skb = __skb_dequeue(&entry->skb_list))) {
880 memcpy(skb_put(rx->skb, skb->len), skb->data, skb->len);
881 dev_kfree_skb(skb);
882 }
883
884 /* Complete frame has been reassembled - process it now */
Jiri Slabybadffb72007-08-28 17:01:54 -0400885 rx->flags |= IEEE80211_TXRXD_FRAGMENTED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200886
887 out:
888 if (rx->sta)
889 rx->sta->rx_packets++;
890 if (is_multicast_ether_addr(hdr->addr1))
891 rx->local->dot11MulticastReceivedFrameCount++;
892 else
893 ieee80211_led_rx(rx->local);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100894 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200895}
896
Johannes Berg9ae54c82008-01-31 19:48:20 +0100897static ieee80211_rx_result
Johannes Berg571ecf62007-07-27 15:43:22 +0200898ieee80211_rx_h_ps_poll(struct ieee80211_txrx_data *rx)
899{
Ron Rindjunsky98f0b0a2007-12-18 17:23:53 +0200900 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(rx->dev);
Johannes Berg571ecf62007-07-27 15:43:22 +0200901 struct sk_buff *skb;
902 int no_pending_pkts;
Joe Perches0795af52007-10-03 17:59:30 -0700903 DECLARE_MAC_BUF(mac);
Johannes Berg571ecf62007-07-27 15:43:22 +0200904
905 if (likely(!rx->sta ||
906 (rx->fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_CTL ||
907 (rx->fc & IEEE80211_FCTL_STYPE) != IEEE80211_STYPE_PSPOLL ||
Jiri Slabybadffb72007-08-28 17:01:54 -0400908 !(rx->flags & IEEE80211_TXRXD_RXRA_MATCH)))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100909 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200910
Johannes Berg51fb61e2007-12-19 01:31:27 +0100911 if ((sdata->vif.type != IEEE80211_IF_TYPE_AP) &&
912 (sdata->vif.type != IEEE80211_IF_TYPE_VLAN))
Johannes Berge4c26ad2008-01-31 19:48:21 +0100913 return RX_DROP_UNUSABLE;
Ron Rindjunsky98f0b0a2007-12-18 17:23:53 +0200914
Johannes Berg571ecf62007-07-27 15:43:22 +0200915 skb = skb_dequeue(&rx->sta->tx_filtered);
916 if (!skb) {
917 skb = skb_dequeue(&rx->sta->ps_tx_buf);
918 if (skb)
919 rx->local->total_ps_buffered--;
920 }
921 no_pending_pkts = skb_queue_empty(&rx->sta->tx_filtered) &&
922 skb_queue_empty(&rx->sta->ps_tx_buf);
923
924 if (skb) {
925 struct ieee80211_hdr *hdr =
926 (struct ieee80211_hdr *) skb->data;
927
928 /* tell TX path to send one frame even though the STA may
929 * still remain is PS mode after this frame exchange */
930 rx->sta->pspoll = 1;
931
932#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Joe Perches0795af52007-10-03 17:59:30 -0700933 printk(KERN_DEBUG "STA %s aid %d: PS Poll (entries after %d)\n",
934 print_mac(mac, rx->sta->addr), rx->sta->aid,
Johannes Berg571ecf62007-07-27 15:43:22 +0200935 skb_queue_len(&rx->sta->ps_tx_buf));
936#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
937
938 /* Use MoreData flag to indicate whether there are more
939 * buffered frames for this STA */
940 if (no_pending_pkts) {
941 hdr->frame_control &= cpu_to_le16(~IEEE80211_FCTL_MOREDATA);
942 rx->sta->flags &= ~WLAN_STA_TIM;
943 } else
944 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREDATA);
945
946 dev_queue_xmit(skb);
947
948 if (no_pending_pkts) {
949 if (rx->local->ops->set_tim)
950 rx->local->ops->set_tim(local_to_hw(rx->local),
951 rx->sta->aid, 0);
952 if (rx->sdata->bss)
953 bss_tim_clear(rx->local, rx->sdata->bss, rx->sta->aid);
954 }
955#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
956 } else if (!rx->u.rx.sent_ps_buffered) {
Joe Perches0795af52007-10-03 17:59:30 -0700957 printk(KERN_DEBUG "%s: STA %s sent PS Poll even "
Johannes Berg571ecf62007-07-27 15:43:22 +0200958 "though there is no buffered frames for it\n",
Joe Perches0795af52007-10-03 17:59:30 -0700959 rx->dev->name, print_mac(mac, rx->sta->addr));
Johannes Berg571ecf62007-07-27 15:43:22 +0200960#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
961
962 }
963
Johannes Berg9ae54c82008-01-31 19:48:20 +0100964 /* Free PS Poll skb here instead of returning RX_DROP that would
Johannes Berg571ecf62007-07-27 15:43:22 +0200965 * count as an dropped frame. */
966 dev_kfree_skb(rx->skb);
967
Johannes Berg9ae54c82008-01-31 19:48:20 +0100968 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200969}
970
Johannes Berg9ae54c82008-01-31 19:48:20 +0100971static ieee80211_rx_result
Johannes Berg6e0d1142007-07-27 15:43:22 +0200972ieee80211_rx_h_remove_qos_control(struct ieee80211_txrx_data *rx)
973{
974 u16 fc = rx->fc;
975 u8 *data = rx->skb->data;
976 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) data;
977
978 if (!WLAN_FC_IS_QOS_DATA(fc))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100979 return RX_CONTINUE;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200980
981 /* remove the qos control field, update frame type and meta-data */
982 memmove(data + 2, data, ieee80211_get_hdrlen(fc) - 2);
983 hdr = (struct ieee80211_hdr *) skb_pull(rx->skb, 2);
984 /* change frame type to non QOS */
985 rx->fc = fc &= ~IEEE80211_STYPE_QOS_DATA;
986 hdr->frame_control = cpu_to_le16(fc);
987
Johannes Berg9ae54c82008-01-31 19:48:20 +0100988 return RX_CONTINUE;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200989}
990
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +0200991static int
Johannes Bergce3edf6d02007-12-19 01:31:22 +0100992ieee80211_802_1x_port_control(struct ieee80211_txrx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +0200993{
Johannes Berg238814f2008-01-28 17:19:37 +0100994 if (unlikely(!rx->sta || !(rx->sta->flags & WLAN_STA_AUTHORIZED))) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200995#ifdef CONFIG_MAC80211_DEBUG
Johannes Berg238814f2008-01-28 17:19:37 +0100996 if (net_ratelimit())
997 printk(KERN_DEBUG "%s: dropped frame "
998 "(unauthorized port)\n", rx->dev->name);
Johannes Berg571ecf62007-07-27 15:43:22 +0200999#endif /* CONFIG_MAC80211_DEBUG */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001000 return -EACCES;
Johannes Berg571ecf62007-07-27 15:43:22 +02001001 }
1002
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001003 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02001004}
1005
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001006static int
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001007ieee80211_drop_unencrypted(struct ieee80211_txrx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001008{
Johannes Berg3017b802007-08-28 17:01:53 -04001009 /*
Johannes Berg7848ba72007-09-14 11:10:25 -04001010 * Pass through unencrypted frames if the hardware has
1011 * decrypted them already.
Johannes Berg3017b802007-08-28 17:01:53 -04001012 */
Johannes Berg7848ba72007-09-14 11:10:25 -04001013 if (rx->u.rx.status->flag & RX_FLAG_DECRYPTED)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001014 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02001015
1016 /* Drop unencrypted frames if key is set. */
1017 if (unlikely(!(rx->fc & IEEE80211_FCTL_PROTECTED) &&
1018 (rx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA &&
1019 (rx->fc & IEEE80211_FCTL_STYPE) != IEEE80211_STYPE_NULLFUNC &&
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001020 (rx->key || rx->sdata->drop_unencrypted))) {
Johannes Berg1a84f3f2007-08-28 17:01:52 -04001021 if (net_ratelimit())
1022 printk(KERN_DEBUG "%s: RX non-WEP frame, but expected "
1023 "encryption\n", rx->dev->name);
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001024 return -EACCES;
Johannes Berg571ecf62007-07-27 15:43:22 +02001025 }
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001026 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02001027}
1028
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001029static int
1030ieee80211_data_to_8023(struct ieee80211_txrx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001031{
1032 struct net_device *dev = rx->dev;
Johannes Berg571ecf62007-07-27 15:43:22 +02001033 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) rx->skb->data;
1034 u16 fc, hdrlen, ethertype;
1035 u8 *payload;
1036 u8 dst[ETH_ALEN];
1037 u8 src[ETH_ALEN];
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001038 struct sk_buff *skb = rx->skb;
Johannes Berg571ecf62007-07-27 15:43:22 +02001039 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Joe Perches0795af52007-10-03 17:59:30 -07001040 DECLARE_MAC_BUF(mac);
1041 DECLARE_MAC_BUF(mac2);
1042 DECLARE_MAC_BUF(mac3);
1043 DECLARE_MAC_BUF(mac4);
Johannes Berg571ecf62007-07-27 15:43:22 +02001044
1045 fc = rx->fc;
Johannes Berg571ecf62007-07-27 15:43:22 +02001046
1047 if (unlikely(!WLAN_FC_DATA_PRESENT(fc)))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001048 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001049
1050 hdrlen = ieee80211_get_hdrlen(fc);
1051
1052 /* convert IEEE 802.11 header + possible LLC headers into Ethernet
1053 * header
1054 * IEEE 802.11 address fields:
1055 * ToDS FromDS Addr1 Addr2 Addr3 Addr4
1056 * 0 0 DA SA BSSID n/a
1057 * 0 1 DA BSSID SA n/a
1058 * 1 0 BSSID SA DA n/a
1059 * 1 1 RA TA DA SA
1060 */
1061
1062 switch (fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) {
1063 case IEEE80211_FCTL_TODS:
1064 /* BSSID SA DA */
1065 memcpy(dst, hdr->addr3, ETH_ALEN);
1066 memcpy(src, hdr->addr2, ETH_ALEN);
1067
Johannes Berg51fb61e2007-12-19 01:31:27 +01001068 if (unlikely(sdata->vif.type != IEEE80211_IF_TYPE_AP &&
1069 sdata->vif.type != IEEE80211_IF_TYPE_VLAN)) {
Johannes Berg1a84f3f2007-08-28 17:01:52 -04001070 if (net_ratelimit())
1071 printk(KERN_DEBUG "%s: dropped ToDS frame "
Joe Perches0795af52007-10-03 17:59:30 -07001072 "(BSSID=%s SA=%s DA=%s)\n",
Johannes Berg1a84f3f2007-08-28 17:01:52 -04001073 dev->name,
Joe Perches0795af52007-10-03 17:59:30 -07001074 print_mac(mac, hdr->addr1),
1075 print_mac(mac2, hdr->addr2),
1076 print_mac(mac3, hdr->addr3));
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001077 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001078 }
1079 break;
1080 case (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS):
1081 /* RA TA DA SA */
1082 memcpy(dst, hdr->addr3, ETH_ALEN);
1083 memcpy(src, hdr->addr4, ETH_ALEN);
1084
Johannes Berg51fb61e2007-12-19 01:31:27 +01001085 if (unlikely(sdata->vif.type != IEEE80211_IF_TYPE_WDS)) {
Johannes Berg1a84f3f2007-08-28 17:01:52 -04001086 if (net_ratelimit())
1087 printk(KERN_DEBUG "%s: dropped FromDS&ToDS "
Joe Perches0795af52007-10-03 17:59:30 -07001088 "frame (RA=%s TA=%s DA=%s SA=%s)\n",
Johannes Berg1a84f3f2007-08-28 17:01:52 -04001089 rx->dev->name,
Joe Perches0795af52007-10-03 17:59:30 -07001090 print_mac(mac, hdr->addr1),
1091 print_mac(mac2, hdr->addr2),
1092 print_mac(mac3, hdr->addr3),
1093 print_mac(mac4, hdr->addr4));
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001094 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001095 }
1096 break;
1097 case IEEE80211_FCTL_FROMDS:
1098 /* DA BSSID SA */
1099 memcpy(dst, hdr->addr1, ETH_ALEN);
1100 memcpy(src, hdr->addr3, ETH_ALEN);
1101
Johannes Berg51fb61e2007-12-19 01:31:27 +01001102 if (sdata->vif.type != IEEE80211_IF_TYPE_STA ||
John W. Linvilleb3316152007-08-28 17:01:55 -04001103 (is_multicast_ether_addr(dst) &&
1104 !compare_ether_addr(src, dev->dev_addr)))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001105 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001106 break;
1107 case 0:
1108 /* DA SA BSSID */
1109 memcpy(dst, hdr->addr1, ETH_ALEN);
1110 memcpy(src, hdr->addr2, ETH_ALEN);
1111
Johannes Berg51fb61e2007-12-19 01:31:27 +01001112 if (sdata->vif.type != IEEE80211_IF_TYPE_IBSS) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001113 if (net_ratelimit()) {
Joe Perches0795af52007-10-03 17:59:30 -07001114 printk(KERN_DEBUG "%s: dropped IBSS frame "
1115 "(DA=%s SA=%s BSSID=%s)\n",
1116 dev->name,
1117 print_mac(mac, hdr->addr1),
1118 print_mac(mac2, hdr->addr2),
1119 print_mac(mac3, hdr->addr3));
Johannes Berg571ecf62007-07-27 15:43:22 +02001120 }
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001121 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001122 }
1123 break;
1124 }
1125
Johannes Berg571ecf62007-07-27 15:43:22 +02001126 if (unlikely(skb->len - hdrlen < 8)) {
1127 if (net_ratelimit()) {
1128 printk(KERN_DEBUG "%s: RX too short data frame "
1129 "payload\n", dev->name);
1130 }
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001131 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001132 }
1133
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001134 payload = skb->data + hdrlen;
Johannes Berg571ecf62007-07-27 15:43:22 +02001135 ethertype = (payload[6] << 8) | payload[7];
1136
1137 if (likely((compare_ether_addr(payload, rfc1042_header) == 0 &&
1138 ethertype != ETH_P_AARP && ethertype != ETH_P_IPX) ||
1139 compare_ether_addr(payload, bridge_tunnel_header) == 0)) {
1140 /* remove RFC1042 or Bridge-Tunnel encapsulation and
1141 * replace EtherType */
1142 skb_pull(skb, hdrlen + 6);
1143 memcpy(skb_push(skb, ETH_ALEN), src, ETH_ALEN);
1144 memcpy(skb_push(skb, ETH_ALEN), dst, ETH_ALEN);
1145 } else {
1146 struct ethhdr *ehdr;
1147 __be16 len;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001148
Johannes Berg571ecf62007-07-27 15:43:22 +02001149 skb_pull(skb, hdrlen);
1150 len = htons(skb->len);
1151 ehdr = (struct ethhdr *) skb_push(skb, sizeof(struct ethhdr));
1152 memcpy(ehdr->h_dest, dst, ETH_ALEN);
1153 memcpy(ehdr->h_source, src, ETH_ALEN);
1154 ehdr->h_proto = len;
1155 }
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001156 return 0;
1157}
Johannes Berg571ecf62007-07-27 15:43:22 +02001158
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001159/*
1160 * requires that rx->skb is a frame with ethernet header
1161 */
1162static bool ieee80211_frame_allowed(struct ieee80211_txrx_data *rx)
1163{
1164 static const u8 pae_group_addr[ETH_ALEN]
1165 = { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x03 };
1166 struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
1167
1168 /*
1169 * Allow EAPOL frames to us/the PAE group address regardless
1170 * of whether the frame was encrypted or not.
1171 */
1172 if (ehdr->h_proto == htons(ETH_P_PAE) &&
1173 (compare_ether_addr(ehdr->h_dest, rx->dev->dev_addr) == 0 ||
1174 compare_ether_addr(ehdr->h_dest, pae_group_addr) == 0))
1175 return true;
1176
1177 if (ieee80211_802_1x_port_control(rx) ||
1178 ieee80211_drop_unencrypted(rx))
1179 return false;
1180
1181 return true;
1182}
1183
1184/*
1185 * requires that rx->skb is a frame with ethernet header
1186 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001187static void
1188ieee80211_deliver_skb(struct ieee80211_txrx_data *rx)
1189{
1190 struct net_device *dev = rx->dev;
1191 struct ieee80211_local *local = rx->local;
1192 struct sk_buff *skb, *xmit_skb;
1193 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001194 struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
1195 struct sta_info *dsta;
Johannes Berg571ecf62007-07-27 15:43:22 +02001196
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001197 skb = rx->skb;
1198 xmit_skb = NULL;
Johannes Berg571ecf62007-07-27 15:43:22 +02001199
Johannes Berg51fb61e2007-12-19 01:31:27 +01001200 if (local->bridge_packets && (sdata->vif.type == IEEE80211_IF_TYPE_AP ||
1201 sdata->vif.type == IEEE80211_IF_TYPE_VLAN) &&
Jiri Slabybadffb72007-08-28 17:01:54 -04001202 (rx->flags & IEEE80211_TXRXD_RXRA_MATCH)) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001203 if (is_multicast_ether_addr(ehdr->h_dest)) {
1204 /*
1205 * send multicast frames both to higher layers in
1206 * local net stack and back to the wireless medium
1207 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001208 xmit_skb = skb_copy(skb, GFP_ATOMIC);
1209 if (!xmit_skb && net_ratelimit())
Johannes Berg571ecf62007-07-27 15:43:22 +02001210 printk(KERN_DEBUG "%s: failed to clone "
1211 "multicast frame\n", dev->name);
1212 } else {
Johannes Berg571ecf62007-07-27 15:43:22 +02001213 dsta = sta_info_get(local, skb->data);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001214 if (dsta && dsta->dev == dev) {
1215 /*
1216 * The destination station is associated to
1217 * this AP (in this VLAN), so send the frame
1218 * directly to it and do not pass it to local
1219 * net stack.
Johannes Berg571ecf62007-07-27 15:43:22 +02001220 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001221 xmit_skb = skb;
Johannes Berg571ecf62007-07-27 15:43:22 +02001222 skb = NULL;
1223 }
1224 if (dsta)
1225 sta_info_put(dsta);
1226 }
1227 }
1228
1229 if (skb) {
1230 /* deliver to local stack */
1231 skb->protocol = eth_type_trans(skb, dev);
1232 memset(skb->cb, 0, sizeof(skb->cb));
1233 netif_rx(skb);
1234 }
1235
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001236 if (xmit_skb) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001237 /* send to wireless media */
YOSHIFUJI Hideakif831e902007-12-12 03:54:23 +09001238 xmit_skb->protocol = htons(ETH_P_802_3);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001239 skb_reset_network_header(xmit_skb);
1240 skb_reset_mac_header(xmit_skb);
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001241 dev_queue_xmit(xmit_skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02001242 }
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001243}
1244
Johannes Berg9ae54c82008-01-31 19:48:20 +01001245static ieee80211_rx_result
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001246ieee80211_rx_h_amsdu(struct ieee80211_txrx_data *rx)
1247{
1248 struct net_device *dev = rx->dev;
1249 struct ieee80211_local *local = rx->local;
1250 u16 fc, ethertype;
1251 u8 *payload;
1252 struct sk_buff *skb = rx->skb, *frame = NULL;
1253 const struct ethhdr *eth;
1254 int remaining, err;
1255 u8 dst[ETH_ALEN];
1256 u8 src[ETH_ALEN];
1257 DECLARE_MAC_BUF(mac);
1258
1259 fc = rx->fc;
1260 if (unlikely((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA))
Johannes Berg9ae54c82008-01-31 19:48:20 +01001261 return RX_CONTINUE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001262
1263 if (unlikely(!WLAN_FC_DATA_PRESENT(fc)))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001264 return RX_DROP_MONITOR;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001265
Ron Rindjunsky64bd4b62007-11-29 10:35:53 +02001266 if (!(rx->flags & IEEE80211_TXRXD_RX_AMSDU))
Johannes Berg9ae54c82008-01-31 19:48:20 +01001267 return RX_CONTINUE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001268
1269 err = ieee80211_data_to_8023(rx);
1270 if (unlikely(err))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001271 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001272
1273 skb->dev = dev;
1274
1275 dev->stats.rx_packets++;
1276 dev->stats.rx_bytes += skb->len;
1277
1278 /* skip the wrapping header */
1279 eth = (struct ethhdr *) skb_pull(skb, sizeof(struct ethhdr));
1280 if (!eth)
Johannes Berge4c26ad2008-01-31 19:48:21 +01001281 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001282
1283 while (skb != frame) {
1284 u8 padding;
1285 __be16 len = eth->h_proto;
1286 unsigned int subframe_len = sizeof(struct ethhdr) + ntohs(len);
1287
1288 remaining = skb->len;
1289 memcpy(dst, eth->h_dest, ETH_ALEN);
1290 memcpy(src, eth->h_source, ETH_ALEN);
1291
1292 padding = ((4 - subframe_len) & 0x3);
1293 /* the last MSDU has no padding */
1294 if (subframe_len > remaining) {
1295 printk(KERN_DEBUG "%s: wrong buffer size", dev->name);
Johannes Berge4c26ad2008-01-31 19:48:21 +01001296 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001297 }
1298
1299 skb_pull(skb, sizeof(struct ethhdr));
1300 /* if last subframe reuse skb */
1301 if (remaining <= subframe_len + padding)
1302 frame = skb;
1303 else {
1304 frame = dev_alloc_skb(local->hw.extra_tx_headroom +
1305 subframe_len);
1306
1307 if (frame == NULL)
Johannes Berge4c26ad2008-01-31 19:48:21 +01001308 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001309
1310 skb_reserve(frame, local->hw.extra_tx_headroom +
1311 sizeof(struct ethhdr));
1312 memcpy(skb_put(frame, ntohs(len)), skb->data,
1313 ntohs(len));
1314
1315 eth = (struct ethhdr *) skb_pull(skb, ntohs(len) +
1316 padding);
1317 if (!eth) {
1318 printk(KERN_DEBUG "%s: wrong buffer size ",
1319 dev->name);
1320 dev_kfree_skb(frame);
Johannes Berge4c26ad2008-01-31 19:48:21 +01001321 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001322 }
1323 }
1324
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001325 skb_reset_network_header(frame);
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001326 frame->dev = dev;
1327 frame->priority = skb->priority;
1328 rx->skb = frame;
1329
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001330 payload = frame->data;
1331 ethertype = (payload[6] << 8) | payload[7];
1332
1333 if (likely((compare_ether_addr(payload, rfc1042_header) == 0 &&
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001334 ethertype != ETH_P_AARP && ethertype != ETH_P_IPX) ||
1335 compare_ether_addr(payload,
1336 bridge_tunnel_header) == 0)) {
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001337 /* remove RFC1042 or Bridge-Tunnel
1338 * encapsulation and replace EtherType */
1339 skb_pull(frame, 6);
1340 memcpy(skb_push(frame, ETH_ALEN), src, ETH_ALEN);
1341 memcpy(skb_push(frame, ETH_ALEN), dst, ETH_ALEN);
1342 } else {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001343 memcpy(skb_push(frame, sizeof(__be16)),
1344 &len, sizeof(__be16));
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001345 memcpy(skb_push(frame, ETH_ALEN), src, ETH_ALEN);
1346 memcpy(skb_push(frame, ETH_ALEN), dst, ETH_ALEN);
1347 }
1348
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001349 if (!ieee80211_frame_allowed(rx)) {
1350 if (skb == frame) /* last frame */
Johannes Berge4c26ad2008-01-31 19:48:21 +01001351 return RX_DROP_UNUSABLE;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001352 dev_kfree_skb(frame);
1353 continue;
1354 }
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001355
1356 ieee80211_deliver_skb(rx);
1357 }
1358
Johannes Berg9ae54c82008-01-31 19:48:20 +01001359 return RX_QUEUED;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001360}
1361
Johannes Berg9ae54c82008-01-31 19:48:20 +01001362static ieee80211_rx_result
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001363ieee80211_rx_h_data(struct ieee80211_txrx_data *rx)
1364{
1365 struct net_device *dev = rx->dev;
1366 u16 fc;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001367 int err;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001368
1369 fc = rx->fc;
1370 if (unlikely((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA))
Johannes Berg9ae54c82008-01-31 19:48:20 +01001371 return RX_CONTINUE;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001372
1373 if (unlikely(!WLAN_FC_DATA_PRESENT(fc)))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001374 return RX_DROP_MONITOR;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001375
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001376 err = ieee80211_data_to_8023(rx);
1377 if (unlikely(err))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001378 return RX_DROP_UNUSABLE;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001379
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001380 if (!ieee80211_frame_allowed(rx))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001381 return RX_DROP_MONITOR;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001382
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001383 rx->skb->dev = dev;
1384
1385 dev->stats.rx_packets++;
1386 dev->stats.rx_bytes += rx->skb->len;
1387
1388 ieee80211_deliver_skb(rx);
Johannes Berg571ecf62007-07-27 15:43:22 +02001389
Johannes Berg9ae54c82008-01-31 19:48:20 +01001390 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001391}
1392
Johannes Berg9ae54c82008-01-31 19:48:20 +01001393static ieee80211_rx_result
Ron Rindjunsky71364712007-12-25 17:00:36 +02001394ieee80211_rx_h_ctrl(struct ieee80211_txrx_data *rx)
1395{
1396 struct ieee80211_local *local = rx->local;
1397 struct ieee80211_hw *hw = &local->hw;
1398 struct sk_buff *skb = rx->skb;
1399 struct ieee80211_bar *bar = (struct ieee80211_bar *) skb->data;
1400 struct tid_ampdu_rx *tid_agg_rx;
1401 u16 start_seq_num;
1402 u16 tid;
1403
1404 if (likely((rx->fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_CTL))
Johannes Berg9ae54c82008-01-31 19:48:20 +01001405 return RX_CONTINUE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02001406
1407 if ((rx->fc & IEEE80211_FCTL_STYPE) == IEEE80211_STYPE_BACK_REQ) {
1408 if (!rx->sta)
Johannes Berg9ae54c82008-01-31 19:48:20 +01001409 return RX_CONTINUE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02001410 tid = le16_to_cpu(bar->control) >> 12;
1411 tid_agg_rx = &(rx->sta->ampdu_mlme.tid_rx[tid]);
1412 if (tid_agg_rx->state != HT_AGG_STATE_OPERATIONAL)
Johannes Berg9ae54c82008-01-31 19:48:20 +01001413 return RX_CONTINUE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02001414
1415 start_seq_num = le16_to_cpu(bar->start_seq_num) >> 4;
1416
1417 /* reset session timer */
1418 if (tid_agg_rx->timeout) {
1419 unsigned long expires =
1420 jiffies + (tid_agg_rx->timeout / 1000) * HZ;
1421 mod_timer(&tid_agg_rx->session_timer, expires);
1422 }
1423
1424 /* manage reordering buffer according to requested */
1425 /* sequence number */
1426 rcu_read_lock();
1427 ieee80211_sta_manage_reorder_buf(hw, tid_agg_rx, NULL,
1428 start_seq_num, 1);
1429 rcu_read_unlock();
Johannes Berge4c26ad2008-01-31 19:48:21 +01001430 return RX_DROP_UNUSABLE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02001431 }
1432
Johannes Berg9ae54c82008-01-31 19:48:20 +01001433 return RX_CONTINUE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02001434}
1435
Johannes Berg9ae54c82008-01-31 19:48:20 +01001436static ieee80211_rx_result
Johannes Berg571ecf62007-07-27 15:43:22 +02001437ieee80211_rx_h_mgmt(struct ieee80211_txrx_data *rx)
1438{
1439 struct ieee80211_sub_if_data *sdata;
1440
Jiri Slabybadffb72007-08-28 17:01:54 -04001441 if (!(rx->flags & IEEE80211_TXRXD_RXRA_MATCH))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001442 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +02001443
1444 sdata = IEEE80211_DEV_TO_SUB_IF(rx->dev);
Johannes Berg51fb61e2007-12-19 01:31:27 +01001445 if ((sdata->vif.type == IEEE80211_IF_TYPE_STA ||
1446 sdata->vif.type == IEEE80211_IF_TYPE_IBSS) &&
Johannes Bergddd3d2b2007-09-26 17:53:20 +02001447 !(sdata->flags & IEEE80211_SDATA_USERSPACE_MLME))
Johannes Berg571ecf62007-07-27 15:43:22 +02001448 ieee80211_sta_rx_mgmt(rx->dev, rx->skb, rx->u.rx.status);
Johannes Bergf9d540e2007-09-28 14:02:09 +02001449 else
Johannes Berge4c26ad2008-01-31 19:48:21 +01001450 return RX_DROP_MONITOR;
Johannes Bergf9d540e2007-09-28 14:02:09 +02001451
Johannes Berg9ae54c82008-01-31 19:48:20 +01001452 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001453}
1454
Johannes Berg571ecf62007-07-27 15:43:22 +02001455static void ieee80211_rx_michael_mic_report(struct net_device *dev,
1456 struct ieee80211_hdr *hdr,
Johannes Berg571ecf62007-07-27 15:43:22 +02001457 struct ieee80211_txrx_data *rx)
1458{
1459 int keyidx, hdrlen;
Joe Perches0795af52007-10-03 17:59:30 -07001460 DECLARE_MAC_BUF(mac);
1461 DECLARE_MAC_BUF(mac2);
Johannes Berg571ecf62007-07-27 15:43:22 +02001462
1463 hdrlen = ieee80211_get_hdrlen_from_skb(rx->skb);
1464 if (rx->skb->len >= hdrlen + 4)
1465 keyidx = rx->skb->data[hdrlen + 3] >> 6;
1466 else
1467 keyidx = -1;
1468
Johannes Berg1a84f3f2007-08-28 17:01:52 -04001469 if (net_ratelimit())
1470 printk(KERN_DEBUG "%s: TKIP hwaccel reported Michael MIC "
Joe Perches0795af52007-10-03 17:59:30 -07001471 "failure from %s to %s keyidx=%d\n",
1472 dev->name, print_mac(mac, hdr->addr2),
1473 print_mac(mac2, hdr->addr1), keyidx);
Johannes Berg571ecf62007-07-27 15:43:22 +02001474
Johannes Berg8944b792008-01-31 19:48:26 +01001475 if (!rx->sta) {
Johannes Bergaa0daf02007-09-10 14:15:25 +02001476 /*
1477 * Some hardware seem to generate incorrect Michael MIC
1478 * reports; ignore them to avoid triggering countermeasures.
1479 */
Johannes Berg1a84f3f2007-08-28 17:01:52 -04001480 if (net_ratelimit())
1481 printk(KERN_DEBUG "%s: ignored spurious Michael MIC "
Joe Perches0795af52007-10-03 17:59:30 -07001482 "error for unknown address %s\n",
1483 dev->name, print_mac(mac, hdr->addr2));
Johannes Berg571ecf62007-07-27 15:43:22 +02001484 goto ignore;
1485 }
1486
1487 if (!(rx->fc & IEEE80211_FCTL_PROTECTED)) {
Johannes Berg1a84f3f2007-08-28 17:01:52 -04001488 if (net_ratelimit())
1489 printk(KERN_DEBUG "%s: ignored spurious Michael MIC "
Johannes Bergaa0daf02007-09-10 14:15:25 +02001490 "error for a frame with no PROTECTED flag (src "
Joe Perches0795af52007-10-03 17:59:30 -07001491 "%s)\n", dev->name, print_mac(mac, hdr->addr2));
Johannes Berg571ecf62007-07-27 15:43:22 +02001492 goto ignore;
1493 }
1494
Johannes Berg51fb61e2007-12-19 01:31:27 +01001495 if (rx->sdata->vif.type == IEEE80211_IF_TYPE_AP && keyidx) {
Johannes Bergaa0daf02007-09-10 14:15:25 +02001496 /*
1497 * APs with pairwise keys should never receive Michael MIC
1498 * errors for non-zero keyidx because these are reserved for
1499 * group keys and only the AP is sending real multicast
1500 * frames in the BSS.
1501 */
Johannes Bergeb063c12007-08-28 17:01:53 -04001502 if (net_ratelimit())
1503 printk(KERN_DEBUG "%s: ignored Michael MIC error for "
1504 "a frame with non-zero keyidx (%d)"
Joe Perches0795af52007-10-03 17:59:30 -07001505 " (src %s)\n", dev->name, keyidx,
1506 print_mac(mac, hdr->addr2));
Johannes Bergeb063c12007-08-28 17:01:53 -04001507 goto ignore;
Johannes Berg571ecf62007-07-27 15:43:22 +02001508 }
1509
1510 if ((rx->fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA &&
1511 ((rx->fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_MGMT ||
1512 (rx->fc & IEEE80211_FCTL_STYPE) != IEEE80211_STYPE_AUTH)) {
Johannes Berg1a84f3f2007-08-28 17:01:52 -04001513 if (net_ratelimit())
1514 printk(KERN_DEBUG "%s: ignored spurious Michael MIC "
1515 "error for a frame that cannot be encrypted "
Joe Perches0795af52007-10-03 17:59:30 -07001516 "(fc=0x%04x) (src %s)\n",
1517 dev->name, rx->fc, print_mac(mac, hdr->addr2));
Johannes Berg571ecf62007-07-27 15:43:22 +02001518 goto ignore;
1519 }
1520
Johannes Bergeb063c12007-08-28 17:01:53 -04001521 mac80211_ev_michael_mic_failure(rx->dev, keyidx, hdr);
Johannes Berg571ecf62007-07-27 15:43:22 +02001522 ignore:
1523 dev_kfree_skb(rx->skb);
1524 rx->skb = NULL;
1525}
1526
Michael Wu3d30d942008-01-31 19:48:27 +01001527static void ieee80211_rx_cooked_monitor(struct ieee80211_txrx_data *rx)
1528{
1529 struct ieee80211_sub_if_data *sdata;
1530 struct ieee80211_local *local = rx->local;
1531 struct ieee80211_rtap_hdr {
1532 struct ieee80211_radiotap_header hdr;
1533 u8 flags;
1534 u8 rate;
1535 __le16 chan_freq;
1536 __le16 chan_flags;
1537 } __attribute__ ((packed)) *rthdr;
1538 struct sk_buff *skb = rx->skb, *skb2;
1539 struct net_device *prev_dev = NULL;
1540 struct ieee80211_rx_status *status = rx->u.rx.status;
1541
1542 if (rx->flags & IEEE80211_TXRXD_RX_CMNTR_REPORTED)
1543 goto out_free_skb;
1544
1545 if (skb_headroom(skb) < sizeof(*rthdr) &&
1546 pskb_expand_head(skb, sizeof(*rthdr), 0, GFP_ATOMIC))
1547 goto out_free_skb;
1548
1549 rthdr = (void *)skb_push(skb, sizeof(*rthdr));
1550 memset(rthdr, 0, sizeof(*rthdr));
1551 rthdr->hdr.it_len = cpu_to_le16(sizeof(*rthdr));
1552 rthdr->hdr.it_present =
1553 cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
1554 (1 << IEEE80211_RADIOTAP_RATE) |
1555 (1 << IEEE80211_RADIOTAP_CHANNEL));
1556
1557 rthdr->rate = rx->u.rx.rate->bitrate / 5;
1558 rthdr->chan_freq = cpu_to_le16(status->freq);
1559
1560 if (status->band == IEEE80211_BAND_5GHZ)
1561 rthdr->chan_flags = cpu_to_le16(IEEE80211_CHAN_OFDM |
1562 IEEE80211_CHAN_5GHZ);
1563 else
1564 rthdr->chan_flags = cpu_to_le16(IEEE80211_CHAN_DYN |
1565 IEEE80211_CHAN_2GHZ);
1566
1567 skb_set_mac_header(skb, 0);
1568 skb->ip_summed = CHECKSUM_UNNECESSARY;
1569 skb->pkt_type = PACKET_OTHERHOST;
1570 skb->protocol = htons(ETH_P_802_2);
1571
1572 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
1573 if (!netif_running(sdata->dev))
1574 continue;
1575
1576 if (sdata->vif.type != IEEE80211_IF_TYPE_MNTR ||
1577 !(sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES))
1578 continue;
1579
1580 if (prev_dev) {
1581 skb2 = skb_clone(skb, GFP_ATOMIC);
1582 if (skb2) {
1583 skb2->dev = prev_dev;
1584 netif_rx(skb2);
1585 }
1586 }
1587
1588 prev_dev = sdata->dev;
1589 sdata->dev->stats.rx_packets++;
1590 sdata->dev->stats.rx_bytes += skb->len;
1591 }
1592
1593 if (prev_dev) {
1594 skb->dev = prev_dev;
1595 netif_rx(skb);
1596 skb = NULL;
1597 } else
1598 goto out_free_skb;
1599
1600 rx->flags |= IEEE80211_TXRXD_RX_CMNTR_REPORTED;
1601 return;
1602
1603 out_free_skb:
1604 dev_kfree_skb(skb);
1605}
1606
Johannes Berg58905292008-01-31 19:48:25 +01001607typedef ieee80211_rx_result (*ieee80211_rx_handler)(struct ieee80211_txrx_data *);
1608static ieee80211_rx_handler ieee80211_rx_handlers[] =
Johannes Berg571ecf62007-07-27 15:43:22 +02001609{
1610 ieee80211_rx_h_if_stats,
Johannes Berg571ecf62007-07-27 15:43:22 +02001611 ieee80211_rx_h_passive_scan,
1612 ieee80211_rx_h_check,
Johannes Berg4f0d18e2007-09-26 15:19:40 +02001613 ieee80211_rx_h_decrypt,
Johannes Berg70f08762007-09-26 17:53:14 +02001614 ieee80211_rx_h_sta_process,
Johannes Berg571ecf62007-07-27 15:43:22 +02001615 ieee80211_rx_h_defragment,
1616 ieee80211_rx_h_ps_poll,
1617 ieee80211_rx_h_michael_mic_verify,
1618 /* this must be after decryption - so header is counted in MPDU mic
1619 * must be before pae and data, so QOS_DATA format frames
1620 * are not passed to user space by these functions
1621 */
1622 ieee80211_rx_h_remove_qos_control,
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001623 ieee80211_rx_h_amsdu,
Johannes Berg571ecf62007-07-27 15:43:22 +02001624 ieee80211_rx_h_data,
Ron Rindjunsky71364712007-12-25 17:00:36 +02001625 ieee80211_rx_h_ctrl,
Johannes Berg571ecf62007-07-27 15:43:22 +02001626 ieee80211_rx_h_mgmt,
1627 NULL
1628};
1629
Johannes Berg8944b792008-01-31 19:48:26 +01001630static void ieee80211_invoke_rx_handlers(struct ieee80211_sub_if_data *sdata,
Johannes Berg58905292008-01-31 19:48:25 +01001631 struct ieee80211_txrx_data *rx,
Johannes Berg8944b792008-01-31 19:48:26 +01001632 struct sk_buff *skb)
Johannes Berg58905292008-01-31 19:48:25 +01001633{
1634 ieee80211_rx_handler *handler;
1635 ieee80211_rx_result res = RX_DROP_MONITOR;
1636
Johannes Berg8944b792008-01-31 19:48:26 +01001637 rx->skb = skb;
1638 rx->sdata = sdata;
1639 rx->dev = sdata->dev;
1640
Johannes Berg58905292008-01-31 19:48:25 +01001641 for (handler = ieee80211_rx_handlers; *handler != NULL; handler++) {
1642 res = (*handler)(rx);
1643
1644 switch (res) {
1645 case RX_CONTINUE:
1646 continue;
1647 case RX_DROP_UNUSABLE:
1648 case RX_DROP_MONITOR:
Johannes Berg8944b792008-01-31 19:48:26 +01001649 I802_DEBUG_INC(sdata->local->rx_handlers_drop);
1650 if (rx->sta)
1651 rx->sta->rx_dropped++;
Johannes Berg58905292008-01-31 19:48:25 +01001652 break;
1653 case RX_QUEUED:
Johannes Berg8944b792008-01-31 19:48:26 +01001654 I802_DEBUG_INC(sdata->local->rx_handlers_queued);
Johannes Berg58905292008-01-31 19:48:25 +01001655 break;
1656 }
1657 break;
1658 }
1659
1660 switch (res) {
Johannes Berg58905292008-01-31 19:48:25 +01001661 case RX_CONTINUE:
Michael Wu3d30d942008-01-31 19:48:27 +01001662 case RX_DROP_MONITOR:
1663 ieee80211_rx_cooked_monitor(rx);
1664 break;
1665 case RX_DROP_UNUSABLE:
Johannes Berg58905292008-01-31 19:48:25 +01001666 dev_kfree_skb(rx->skb);
1667 break;
1668 }
1669}
1670
Johannes Berg571ecf62007-07-27 15:43:22 +02001671/* main receive path */
1672
Johannes Berg23a24de2007-07-27 15:43:22 +02001673static int prepare_for_handlers(struct ieee80211_sub_if_data *sdata,
1674 u8 *bssid, struct ieee80211_txrx_data *rx,
1675 struct ieee80211_hdr *hdr)
1676{
1677 int multicast = is_multicast_ether_addr(hdr->addr1);
1678
Johannes Berg51fb61e2007-12-19 01:31:27 +01001679 switch (sdata->vif.type) {
Johannes Berg23a24de2007-07-27 15:43:22 +02001680 case IEEE80211_IF_TYPE_STA:
1681 if (!bssid)
1682 return 0;
1683 if (!ieee80211_bssid_match(bssid, sdata->u.sta.bssid)) {
Jiri Slabybadffb72007-08-28 17:01:54 -04001684 if (!(rx->flags & IEEE80211_TXRXD_RXIN_SCAN))
Johannes Berg23a24de2007-07-27 15:43:22 +02001685 return 0;
Jiri Slabybadffb72007-08-28 17:01:54 -04001686 rx->flags &= ~IEEE80211_TXRXD_RXRA_MATCH;
Johannes Berg23a24de2007-07-27 15:43:22 +02001687 } else if (!multicast &&
1688 compare_ether_addr(sdata->dev->dev_addr,
1689 hdr->addr1) != 0) {
Johannes Berg4150c572007-09-17 01:29:23 -04001690 if (!(sdata->dev->flags & IFF_PROMISC))
Johannes Berg23a24de2007-07-27 15:43:22 +02001691 return 0;
Jiri Slabybadffb72007-08-28 17:01:54 -04001692 rx->flags &= ~IEEE80211_TXRXD_RXRA_MATCH;
Johannes Berg23a24de2007-07-27 15:43:22 +02001693 }
1694 break;
1695 case IEEE80211_IF_TYPE_IBSS:
1696 if (!bssid)
1697 return 0;
1698 if (!ieee80211_bssid_match(bssid, sdata->u.sta.bssid)) {
Jiri Slabybadffb72007-08-28 17:01:54 -04001699 if (!(rx->flags & IEEE80211_TXRXD_RXIN_SCAN))
Johannes Berg23a24de2007-07-27 15:43:22 +02001700 return 0;
Jiri Slabybadffb72007-08-28 17:01:54 -04001701 rx->flags &= ~IEEE80211_TXRXD_RXRA_MATCH;
Johannes Berg23a24de2007-07-27 15:43:22 +02001702 } else if (!multicast &&
1703 compare_ether_addr(sdata->dev->dev_addr,
1704 hdr->addr1) != 0) {
Johannes Berg4150c572007-09-17 01:29:23 -04001705 if (!(sdata->dev->flags & IFF_PROMISC))
Johannes Berg23a24de2007-07-27 15:43:22 +02001706 return 0;
Jiri Slabybadffb72007-08-28 17:01:54 -04001707 rx->flags &= ~IEEE80211_TXRXD_RXRA_MATCH;
Johannes Berg23a24de2007-07-27 15:43:22 +02001708 } else if (!rx->sta)
1709 rx->sta = ieee80211_ibss_add_sta(sdata->dev, rx->skb,
1710 bssid, hdr->addr2);
1711 break;
Johannes Bergfb1c1cd2007-09-26 15:19:43 +02001712 case IEEE80211_IF_TYPE_VLAN:
Johannes Berg23a24de2007-07-27 15:43:22 +02001713 case IEEE80211_IF_TYPE_AP:
1714 if (!bssid) {
1715 if (compare_ether_addr(sdata->dev->dev_addr,
1716 hdr->addr1))
1717 return 0;
1718 } else if (!ieee80211_bssid_match(bssid,
1719 sdata->dev->dev_addr)) {
Jiri Slabybadffb72007-08-28 17:01:54 -04001720 if (!(rx->flags & IEEE80211_TXRXD_RXIN_SCAN))
Johannes Berg23a24de2007-07-27 15:43:22 +02001721 return 0;
Jiri Slabybadffb72007-08-28 17:01:54 -04001722 rx->flags &= ~IEEE80211_TXRXD_RXRA_MATCH;
Johannes Berg23a24de2007-07-27 15:43:22 +02001723 }
Jiri Slabybadffb72007-08-28 17:01:54 -04001724 if (sdata->dev == sdata->local->mdev &&
1725 !(rx->flags & IEEE80211_TXRXD_RXIN_SCAN))
Johannes Berg23a24de2007-07-27 15:43:22 +02001726 /* do not receive anything via
1727 * master device when not scanning */
1728 return 0;
1729 break;
1730 case IEEE80211_IF_TYPE_WDS:
1731 if (bssid ||
1732 (rx->fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA)
1733 return 0;
1734 if (compare_ether_addr(sdata->u.wds.remote_addr, hdr->addr2))
1735 return 0;
1736 break;
Johannes Bergfb1c1cd2007-09-26 15:19:43 +02001737 case IEEE80211_IF_TYPE_MNTR:
1738 /* take everything */
1739 break;
Johannes Berga2897552007-09-28 14:01:25 +02001740 case IEEE80211_IF_TYPE_INVALID:
Johannes Bergfb1c1cd2007-09-26 15:19:43 +02001741 /* should never get here */
1742 WARN_ON(1);
1743 break;
Johannes Berg23a24de2007-07-27 15:43:22 +02001744 }
1745
1746 return 1;
1747}
1748
Johannes Berg571ecf62007-07-27 15:43:22 +02001749/*
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02001750 * This is the actual Rx frames handler. as it blongs to Rx path it must
1751 * be called with rcu_read_lock protection.
Johannes Berg571ecf62007-07-27 15:43:22 +02001752 */
Ron Rindjunsky71ebb4a2008-01-21 12:39:12 +02001753static void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw,
1754 struct sk_buff *skb,
1755 struct ieee80211_rx_status *status,
Johannes Berg8318d782008-01-24 19:38:38 +01001756 u32 load,
1757 struct ieee80211_rate *rate)
Johannes Berg571ecf62007-07-27 15:43:22 +02001758{
1759 struct ieee80211_local *local = hw_to_local(hw);
1760 struct ieee80211_sub_if_data *sdata;
Johannes Berg571ecf62007-07-27 15:43:22 +02001761 struct ieee80211_hdr *hdr;
1762 struct ieee80211_txrx_data rx;
1763 u16 type;
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02001764 int prepares;
Johannes Berg8e6f0032007-07-27 15:43:22 +02001765 struct ieee80211_sub_if_data *prev = NULL;
1766 struct sk_buff *skb_new;
1767 u8 *bssid;
Johannes Berg571ecf62007-07-27 15:43:22 +02001768
1769 hdr = (struct ieee80211_hdr *) skb->data;
1770 memset(&rx, 0, sizeof(rx));
1771 rx.skb = skb;
1772 rx.local = local;
1773
1774 rx.u.rx.status = status;
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02001775 rx.u.rx.load = load;
Johannes Berg8318d782008-01-24 19:38:38 +01001776 rx.u.rx.rate = rate;
Johannes Bergb2e77712007-09-26 15:19:39 +02001777 rx.fc = le16_to_cpu(hdr->frame_control);
Johannes Berg571ecf62007-07-27 15:43:22 +02001778 type = rx.fc & IEEE80211_FCTL_FTYPE;
Johannes Berg72abd812007-09-17 01:29:22 -04001779
Johannes Bergb2e77712007-09-26 15:19:39 +02001780 if (type == IEEE80211_FTYPE_DATA || type == IEEE80211_FTYPE_MGMT)
Johannes Berg571ecf62007-07-27 15:43:22 +02001781 local->dot11ReceivedFragmentCount++;
Johannes Berg571ecf62007-07-27 15:43:22 +02001782
Johannes Berg8944b792008-01-31 19:48:26 +01001783 rx.sta = sta_info_get(local, hdr->addr2);
1784 if (rx.sta) {
Johannes Bergb2e77712007-09-26 15:19:39 +02001785 rx.dev = rx.sta->dev;
1786 rx.sdata = IEEE80211_DEV_TO_SUB_IF(rx.dev);
1787 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001788
Johannes Berg571ecf62007-07-27 15:43:22 +02001789 if ((status->flag & RX_FLAG_MMIC_ERROR)) {
Johannes Berg8944b792008-01-31 19:48:26 +01001790 ieee80211_rx_michael_mic_report(local->mdev, hdr, &rx);
Johannes Berg571ecf62007-07-27 15:43:22 +02001791 goto end;
1792 }
1793
Zhu Yiece8edd2007-11-22 10:53:21 +08001794 if (unlikely(local->sta_sw_scanning || local->sta_hw_scanning))
Jiri Slabybadffb72007-08-28 17:01:54 -04001795 rx.flags |= IEEE80211_TXRXD_RXIN_SCAN;
Johannes Berg571ecf62007-07-27 15:43:22 +02001796
Johannes Berg38f37142008-01-29 17:07:43 +01001797 ieee80211_parse_qos(&rx);
1798 ieee80211_verify_ip_alignment(&rx);
1799
Johannes Berg571ecf62007-07-27 15:43:22 +02001800 skb = rx.skb;
1801
Johannes Berg79010422007-09-18 17:29:21 -04001802 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Johannes Berg2a8a9a82007-08-28 17:01:52 -04001803 if (!netif_running(sdata->dev))
1804 continue;
1805
Johannes Berg51fb61e2007-12-19 01:31:27 +01001806 if (sdata->vif.type == IEEE80211_IF_TYPE_MNTR)
Johannes Bergb2e77712007-09-26 15:19:39 +02001807 continue;
1808
Johannes Berg51fb61e2007-12-19 01:31:27 +01001809 bssid = ieee80211_get_bssid(hdr, skb->len, sdata->vif.type);
Johannes Bergb2e77712007-09-26 15:19:39 +02001810 rx.flags |= IEEE80211_TXRXD_RXRA_MATCH;
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02001811 prepares = prepare_for_handlers(sdata, bssid, &rx, hdr);
Johannes Berg23a24de2007-07-27 15:43:22 +02001812
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02001813 if (!prepares)
Johannes Berg23a24de2007-07-27 15:43:22 +02001814 continue;
Johannes Berg8e6f0032007-07-27 15:43:22 +02001815
Johannes Berg340e11f2007-07-27 15:43:22 +02001816 /*
1817 * frame is destined for this interface, but if it's not
1818 * also for the previous one we handle that after the
1819 * loop to avoid copying the SKB once too much
1820 */
1821
1822 if (!prev) {
1823 prev = sdata;
1824 continue;
Johannes Berg8e6f0032007-07-27 15:43:22 +02001825 }
Johannes Berg340e11f2007-07-27 15:43:22 +02001826
1827 /*
1828 * frame was destined for the previous interface
1829 * so invoke RX handlers for it
1830 */
1831
1832 skb_new = skb_copy(skb, GFP_ATOMIC);
1833 if (!skb_new) {
1834 if (net_ratelimit())
1835 printk(KERN_DEBUG "%s: failed to copy "
1836 "multicast frame for %s",
Johannes Bergdd1cd4c2007-09-18 17:29:20 -04001837 wiphy_name(local->hw.wiphy),
1838 prev->dev->name);
Johannes Berg340e11f2007-07-27 15:43:22 +02001839 continue;
1840 }
Helmut Schaa69f817b2007-12-21 15:16:35 +01001841 rx.fc = le16_to_cpu(hdr->frame_control);
Johannes Berg8944b792008-01-31 19:48:26 +01001842 ieee80211_invoke_rx_handlers(prev, &rx, skb_new);
Johannes Berg8e6f0032007-07-27 15:43:22 +02001843 prev = sdata;
Johannes Berg571ecf62007-07-27 15:43:22 +02001844 }
Johannes Berg8e6f0032007-07-27 15:43:22 +02001845 if (prev) {
Helmut Schaa69f817b2007-12-21 15:16:35 +01001846 rx.fc = le16_to_cpu(hdr->frame_control);
Johannes Berg8944b792008-01-31 19:48:26 +01001847 ieee80211_invoke_rx_handlers(prev, &rx, skb);
Johannes Berg8e6f0032007-07-27 15:43:22 +02001848 } else
1849 dev_kfree_skb(skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02001850
Johannes Berg8e6f0032007-07-27 15:43:22 +02001851 end:
Johannes Berg8944b792008-01-31 19:48:26 +01001852 if (rx.sta)
1853 sta_info_put(rx.sta);
Johannes Berg571ecf62007-07-27 15:43:22 +02001854}
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02001855
Ron Rindjunskyb5807812007-12-25 17:00:35 +02001856#define SEQ_MODULO 0x1000
1857#define SEQ_MASK 0xfff
1858
1859static inline int seq_less(u16 sq1, u16 sq2)
1860{
1861 return (((sq1 - sq2) & SEQ_MASK) > (SEQ_MODULO >> 1));
1862}
1863
1864static inline u16 seq_inc(u16 sq)
1865{
1866 return ((sq + 1) & SEQ_MASK);
1867}
1868
1869static inline u16 seq_sub(u16 sq1, u16 sq2)
1870{
1871 return ((sq1 - sq2) & SEQ_MASK);
1872}
1873
1874
Ron Rindjunsky71364712007-12-25 17:00:36 +02001875/*
1876 * As it function blongs to Rx path it must be called with
1877 * the proper rcu_read_lock protection for its flow.
1878 */
Ron Rindjunskyb5807812007-12-25 17:00:35 +02001879u8 ieee80211_sta_manage_reorder_buf(struct ieee80211_hw *hw,
1880 struct tid_ampdu_rx *tid_agg_rx,
1881 struct sk_buff *skb, u16 mpdu_seq_num,
1882 int bar_req)
1883{
1884 struct ieee80211_local *local = hw_to_local(hw);
1885 struct ieee80211_rx_status status;
1886 u16 head_seq_num, buf_size;
1887 int index;
1888 u32 pkt_load;
Johannes Berg8318d782008-01-24 19:38:38 +01001889 struct ieee80211_supported_band *sband;
1890 struct ieee80211_rate *rate;
Ron Rindjunskyb5807812007-12-25 17:00:35 +02001891
1892 buf_size = tid_agg_rx->buf_size;
1893 head_seq_num = tid_agg_rx->head_seq_num;
1894
1895 /* frame with out of date sequence number */
1896 if (seq_less(mpdu_seq_num, head_seq_num)) {
1897 dev_kfree_skb(skb);
1898 return 1;
1899 }
1900
1901 /* if frame sequence number exceeds our buffering window size or
1902 * block Ack Request arrived - release stored frames */
1903 if ((!seq_less(mpdu_seq_num, head_seq_num + buf_size)) || (bar_req)) {
1904 /* new head to the ordering buffer */
1905 if (bar_req)
1906 head_seq_num = mpdu_seq_num;
1907 else
1908 head_seq_num =
1909 seq_inc(seq_sub(mpdu_seq_num, buf_size));
1910 /* release stored frames up to new head to stack */
1911 while (seq_less(tid_agg_rx->head_seq_num, head_seq_num)) {
1912 index = seq_sub(tid_agg_rx->head_seq_num,
1913 tid_agg_rx->ssn)
1914 % tid_agg_rx->buf_size;
1915
1916 if (tid_agg_rx->reorder_buf[index]) {
1917 /* release the reordered frames to stack */
1918 memcpy(&status,
1919 tid_agg_rx->reorder_buf[index]->cb,
1920 sizeof(status));
Johannes Berg8318d782008-01-24 19:38:38 +01001921 sband = local->hw.wiphy->bands[status.band];
1922 rate = &sband->bitrates[status.rate_idx];
Ron Rindjunskyb5807812007-12-25 17:00:35 +02001923 pkt_load = ieee80211_rx_load_stats(local,
1924 tid_agg_rx->reorder_buf[index],
Johannes Berg8318d782008-01-24 19:38:38 +01001925 &status, rate);
Ron Rindjunskyb5807812007-12-25 17:00:35 +02001926 __ieee80211_rx_handle_packet(hw,
1927 tid_agg_rx->reorder_buf[index],
Johannes Berg8318d782008-01-24 19:38:38 +01001928 &status, pkt_load, rate);
Ron Rindjunskyb5807812007-12-25 17:00:35 +02001929 tid_agg_rx->stored_mpdu_num--;
1930 tid_agg_rx->reorder_buf[index] = NULL;
1931 }
1932 tid_agg_rx->head_seq_num =
1933 seq_inc(tid_agg_rx->head_seq_num);
1934 }
1935 if (bar_req)
1936 return 1;
1937 }
1938
1939 /* now the new frame is always in the range of the reordering */
1940 /* buffer window */
1941 index = seq_sub(mpdu_seq_num, tid_agg_rx->ssn)
1942 % tid_agg_rx->buf_size;
1943 /* check if we already stored this frame */
1944 if (tid_agg_rx->reorder_buf[index]) {
1945 dev_kfree_skb(skb);
1946 return 1;
1947 }
1948
1949 /* if arrived mpdu is in the right order and nothing else stored */
1950 /* release it immediately */
1951 if (mpdu_seq_num == tid_agg_rx->head_seq_num &&
1952 tid_agg_rx->stored_mpdu_num == 0) {
1953 tid_agg_rx->head_seq_num =
1954 seq_inc(tid_agg_rx->head_seq_num);
1955 return 0;
1956 }
1957
1958 /* put the frame in the reordering buffer */
1959 tid_agg_rx->reorder_buf[index] = skb;
1960 tid_agg_rx->stored_mpdu_num++;
1961 /* release the buffer until next missing frame */
1962 index = seq_sub(tid_agg_rx->head_seq_num, tid_agg_rx->ssn)
1963 % tid_agg_rx->buf_size;
1964 while (tid_agg_rx->reorder_buf[index]) {
1965 /* release the reordered frame back to stack */
1966 memcpy(&status, tid_agg_rx->reorder_buf[index]->cb,
1967 sizeof(status));
Johannes Berg8318d782008-01-24 19:38:38 +01001968 sband = local->hw.wiphy->bands[status.band];
1969 rate = &sband->bitrates[status.rate_idx];
Ron Rindjunskyb5807812007-12-25 17:00:35 +02001970 pkt_load = ieee80211_rx_load_stats(local,
1971 tid_agg_rx->reorder_buf[index],
Johannes Berg8318d782008-01-24 19:38:38 +01001972 &status, rate);
Ron Rindjunskyb5807812007-12-25 17:00:35 +02001973 __ieee80211_rx_handle_packet(hw, tid_agg_rx->reorder_buf[index],
Johannes Berg8318d782008-01-24 19:38:38 +01001974 &status, pkt_load, rate);
Ron Rindjunskyb5807812007-12-25 17:00:35 +02001975 tid_agg_rx->stored_mpdu_num--;
1976 tid_agg_rx->reorder_buf[index] = NULL;
1977 tid_agg_rx->head_seq_num = seq_inc(tid_agg_rx->head_seq_num);
1978 index = seq_sub(tid_agg_rx->head_seq_num,
1979 tid_agg_rx->ssn) % tid_agg_rx->buf_size;
1980 }
1981 return 1;
1982}
1983
Ron Rindjunsky71ebb4a2008-01-21 12:39:12 +02001984static u8 ieee80211_rx_reorder_ampdu(struct ieee80211_local *local,
1985 struct sk_buff *skb)
Ron Rindjunskyb5807812007-12-25 17:00:35 +02001986{
1987 struct ieee80211_hw *hw = &local->hw;
1988 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1989 struct sta_info *sta;
1990 struct tid_ampdu_rx *tid_agg_rx;
1991 u16 fc, sc;
1992 u16 mpdu_seq_num;
1993 u8 ret = 0, *qc;
1994 int tid;
1995
1996 sta = sta_info_get(local, hdr->addr2);
1997 if (!sta)
1998 return ret;
1999
2000 fc = le16_to_cpu(hdr->frame_control);
2001
2002 /* filter the QoS data rx stream according to
2003 * STA/TID and check if this STA/TID is on aggregation */
2004 if (!WLAN_FC_IS_QOS_DATA(fc))
2005 goto end_reorder;
2006
2007 qc = skb->data + ieee80211_get_hdrlen(fc) - QOS_CONTROL_LEN;
2008 tid = qc[0] & QOS_CONTROL_TID_MASK;
2009 tid_agg_rx = &(sta->ampdu_mlme.tid_rx[tid]);
2010
2011 if (tid_agg_rx->state != HT_AGG_STATE_OPERATIONAL)
2012 goto end_reorder;
2013
2014 /* null data frames are excluded */
Ron Rindjunsky8b6bbe72008-01-23 18:17:13 +02002015 if (unlikely(fc & IEEE80211_STYPE_NULLFUNC))
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002016 goto end_reorder;
2017
2018 /* new un-ordered ampdu frame - process it */
2019
2020 /* reset session timer */
2021 if (tid_agg_rx->timeout) {
2022 unsigned long expires =
2023 jiffies + (tid_agg_rx->timeout / 1000) * HZ;
2024 mod_timer(&tid_agg_rx->session_timer, expires);
2025 }
2026
2027 /* if this mpdu is fragmented - terminate rx aggregation session */
2028 sc = le16_to_cpu(hdr->seq_ctrl);
2029 if (sc & IEEE80211_SCTL_FRAG) {
2030 ieee80211_sta_stop_rx_ba_session(sta->dev, sta->addr,
2031 tid, 0, WLAN_REASON_QSTA_REQUIRE_SETUP);
2032 ret = 1;
2033 goto end_reorder;
2034 }
2035
2036 /* according to mpdu sequence number deal with reordering buffer */
2037 mpdu_seq_num = (sc & IEEE80211_SCTL_SEQ) >> 4;
2038 ret = ieee80211_sta_manage_reorder_buf(hw, tid_agg_rx, skb,
2039 mpdu_seq_num, 0);
2040end_reorder:
2041 if (sta)
2042 sta_info_put(sta);
2043 return ret;
2044}
2045
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02002046/*
2047 * This is the receive path handler. It is called by a low level driver when an
2048 * 802.11 MPDU is received from the hardware.
2049 */
2050void __ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb,
2051 struct ieee80211_rx_status *status)
2052{
2053 struct ieee80211_local *local = hw_to_local(hw);
2054 u32 pkt_load;
Johannes Berg8318d782008-01-24 19:38:38 +01002055 struct ieee80211_rate *rate = NULL;
2056 struct ieee80211_supported_band *sband;
2057
2058 if (status->band < 0 ||
2059 status->band > IEEE80211_NUM_BANDS) {
2060 WARN_ON(1);
2061 return;
2062 }
2063
2064 sband = local->hw.wiphy->bands[status->band];
2065
2066 if (!sband ||
2067 status->rate_idx < 0 ||
2068 status->rate_idx >= sband->n_bitrates) {
2069 WARN_ON(1);
2070 return;
2071 }
2072
2073 rate = &sband->bitrates[status->rate_idx];
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02002074
2075 /*
2076 * key references and virtual interfaces are protected using RCU
2077 * and this requires that we are in a read-side RCU section during
2078 * receive processing
2079 */
2080 rcu_read_lock();
2081
2082 /*
2083 * Frames with failed FCS/PLCP checksum are not returned,
2084 * all other frames are returned without radiotap header
2085 * if it was previously present.
2086 * Also, frames with less than 16 bytes are dropped.
2087 */
Johannes Berg8318d782008-01-24 19:38:38 +01002088 skb = ieee80211_rx_monitor(local, skb, status, rate);
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02002089 if (!skb) {
2090 rcu_read_unlock();
2091 return;
2092 }
2093
Johannes Berg8318d782008-01-24 19:38:38 +01002094 pkt_load = ieee80211_rx_load_stats(local, skb, status, rate);
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002095 local->channel_use_raw += pkt_load;
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02002096
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002097 if (!ieee80211_rx_reorder_ampdu(local, skb))
Johannes Berg8318d782008-01-24 19:38:38 +01002098 __ieee80211_rx_handle_packet(hw, skb, status, pkt_load, rate);
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02002099
2100 rcu_read_unlock();
2101}
Johannes Berg571ecf62007-07-27 15:43:22 +02002102EXPORT_SYMBOL(__ieee80211_rx);
2103
2104/* This is a version of the rx handler that can be called from hard irq
2105 * context. Post the skb on the queue and schedule the tasklet */
2106void ieee80211_rx_irqsafe(struct ieee80211_hw *hw, struct sk_buff *skb,
2107 struct ieee80211_rx_status *status)
2108{
2109 struct ieee80211_local *local = hw_to_local(hw);
2110
2111 BUILD_BUG_ON(sizeof(struct ieee80211_rx_status) > sizeof(skb->cb));
2112
2113 skb->dev = local->mdev;
2114 /* copy status into skb->cb for use by tasklet */
2115 memcpy(skb->cb, status, sizeof(*status));
2116 skb->pkt_type = IEEE80211_RX_MSG;
2117 skb_queue_tail(&local->skb_queue, skb);
2118 tasklet_schedule(&local->tasklet);
2119}
2120EXPORT_SYMBOL(ieee80211_rx_irqsafe);