mac80211: remove IEEE80211_FC helper
[linux-2.6-block.git] / net / mac80211 / rx.c
CommitLineData
571ecf67
JB
1/*
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
ab46623e 12#include <linux/jiffies.h>
571ecf67
JB
13#include <linux/kernel.h>
14#include <linux/skbuff.h>
15#include <linux/netdevice.h>
16#include <linux/etherdevice.h>
d4e46a3d 17#include <linux/rcupdate.h>
571ecf67
JB
18#include <net/mac80211.h>
19#include <net/ieee80211_radiotap.h>
20
21#include "ieee80211_i.h"
2c8dccc7 22#include "led.h"
33b64eb2 23#include "mesh.h"
571ecf67
JB
24#include "wep.h"
25#include "wpa.h"
26#include "tkip.h"
27#include "wme.h"
28
71364716
RR
29u8 ieee80211_sta_manage_reorder_buf(struct ieee80211_hw *hw,
30 struct tid_ampdu_rx *tid_agg_rx,
31 struct sk_buff *skb, u16 mpdu_seq_num,
32 int bar_req);
b2e7771e
JB
33/*
34 * monitor mode reception
35 *
36 * This function cleans up the SKB, i.e. it removes all the stuff
37 * only useful for monitoring.
38 */
39static struct sk_buff *remove_monitor_info(struct ieee80211_local *local,
40 struct sk_buff *skb,
41 int rtap_len)
42{
43 skb_pull(skb, rtap_len);
44
45 if (local->hw.flags & IEEE80211_HW_RX_INCLUDES_FCS) {
46 if (likely(skb->len > FCS_LEN))
47 skb_trim(skb, skb->len - FCS_LEN);
48 else {
49 /* driver bug */
50 WARN_ON(1);
51 dev_kfree_skb(skb);
52 skb = NULL;
53 }
54 }
55
56 return skb;
57}
58
59static inline int should_drop_frame(struct ieee80211_rx_status *status,
60 struct sk_buff *skb,
61 int present_fcs_len,
62 int radiotap_len)
63{
182503ab 64 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
b2e7771e
JB
65
66 if (status->flag & (RX_FLAG_FAILED_FCS_CRC | RX_FLAG_FAILED_PLCP_CRC))
67 return 1;
68 if (unlikely(skb->len < 16 + present_fcs_len + radiotap_len))
69 return 1;
87228f57
HH
70 if (ieee80211_is_ctl(hdr->frame_control) &&
71 !ieee80211_is_pspoll(hdr->frame_control) &&
72 !ieee80211_is_back_req(hdr->frame_control))
b2e7771e
JB
73 return 1;
74 return 0;
75}
76
601ae7f2
BR
77static int
78ieee80211_rx_radiotap_len(struct ieee80211_local *local,
79 struct ieee80211_rx_status *status)
80{
81 int len;
82
83 /* always present fields */
84 len = sizeof(struct ieee80211_radiotap_header) + 9;
85
86 if (status->flag & RX_FLAG_TSFT)
87 len += 8;
88 if (local->hw.flags & IEEE80211_HW_SIGNAL_DB ||
89 local->hw.flags & IEEE80211_HW_SIGNAL_DBM)
90 len += 1;
91 if (local->hw.flags & IEEE80211_HW_NOISE_DBM)
92 len += 1;
93
94 if (len & 1) /* padding for RX_FLAGS if necessary */
95 len++;
96
97 /* make sure radiotap starts at a naturally aligned address */
98 if (len % 8)
99 len = roundup(len, 8);
100
101 return len;
102}
103
104/**
105 * ieee80211_add_rx_radiotap_header - add radiotap header
106 *
107 * add a radiotap header containing all the fields which the hardware provided.
108 */
109static void
110ieee80211_add_rx_radiotap_header(struct ieee80211_local *local,
111 struct sk_buff *skb,
112 struct ieee80211_rx_status *status,
113 struct ieee80211_rate *rate,
114 int rtap_len)
115{
116 struct ieee80211_radiotap_header *rthdr;
117 unsigned char *pos;
118
119 rthdr = (struct ieee80211_radiotap_header *)skb_push(skb, rtap_len);
120 memset(rthdr, 0, rtap_len);
121
122 /* radiotap header, set always present flags */
123 rthdr->it_present =
124 cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
125 (1 << IEEE80211_RADIOTAP_RATE) |
126 (1 << IEEE80211_RADIOTAP_CHANNEL) |
127 (1 << IEEE80211_RADIOTAP_ANTENNA) |
128 (1 << IEEE80211_RADIOTAP_RX_FLAGS));
129 rthdr->it_len = cpu_to_le16(rtap_len);
130
131 pos = (unsigned char *)(rthdr+1);
132
133 /* the order of the following fields is important */
134
135 /* IEEE80211_RADIOTAP_TSFT */
136 if (status->flag & RX_FLAG_TSFT) {
137 *(__le64 *)pos = cpu_to_le64(status->mactime);
138 rthdr->it_present |=
139 cpu_to_le32(1 << IEEE80211_RADIOTAP_TSFT);
140 pos += 8;
141 }
142
143 /* IEEE80211_RADIOTAP_FLAGS */
144 if (local->hw.flags & IEEE80211_HW_RX_INCLUDES_FCS)
145 *pos |= IEEE80211_RADIOTAP_F_FCS;
b4f28bbb
BR
146 if (status->flag & RX_FLAG_SHORTPRE)
147 *pos |= IEEE80211_RADIOTAP_F_SHORTPRE;
601ae7f2
BR
148 pos++;
149
150 /* IEEE80211_RADIOTAP_RATE */
151 *pos = rate->bitrate / 5;
152 pos++;
153
154 /* IEEE80211_RADIOTAP_CHANNEL */
155 *(__le16 *)pos = cpu_to_le16(status->freq);
156 pos += 2;
157 if (status->band == IEEE80211_BAND_5GHZ)
158 *(__le16 *)pos = cpu_to_le16(IEEE80211_CHAN_OFDM |
159 IEEE80211_CHAN_5GHZ);
9deb1ae5
BR
160 else if (rate->flags & IEEE80211_RATE_ERP_G)
161 *(__le16 *)pos = cpu_to_le16(IEEE80211_CHAN_OFDM |
162 IEEE80211_CHAN_2GHZ);
601ae7f2 163 else
9deb1ae5 164 *(__le16 *)pos = cpu_to_le16(IEEE80211_CHAN_CCK |
601ae7f2
BR
165 IEEE80211_CHAN_2GHZ);
166 pos += 2;
167
168 /* IEEE80211_RADIOTAP_DBM_ANTSIGNAL */
169 if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM) {
170 *pos = status->signal;
171 rthdr->it_present |=
172 cpu_to_le32(1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL);
173 pos++;
174 }
175
176 /* IEEE80211_RADIOTAP_DBM_ANTNOISE */
177 if (local->hw.flags & IEEE80211_HW_NOISE_DBM) {
178 *pos = status->noise;
179 rthdr->it_present |=
180 cpu_to_le32(1 << IEEE80211_RADIOTAP_DBM_ANTNOISE);
181 pos++;
182 }
183
184 /* IEEE80211_RADIOTAP_LOCK_QUALITY is missing */
185
186 /* IEEE80211_RADIOTAP_ANTENNA */
187 *pos = status->antenna;
188 pos++;
189
190 /* IEEE80211_RADIOTAP_DB_ANTSIGNAL */
191 if (local->hw.flags & IEEE80211_HW_SIGNAL_DB) {
192 *pos = status->signal;
193 rthdr->it_present |=
194 cpu_to_le32(1 << IEEE80211_RADIOTAP_DB_ANTSIGNAL);
195 pos++;
196 }
197
198 /* IEEE80211_RADIOTAP_DB_ANTNOISE is not used */
199
200 /* IEEE80211_RADIOTAP_RX_FLAGS */
201 /* ensure 2 byte alignment for the 2 byte field as required */
202 if ((pos - (unsigned char *)rthdr) & 1)
203 pos++;
204 /* FIXME: when radiotap gets a 'bad PLCP' flag use it here */
205 if (status->flag & (RX_FLAG_FAILED_FCS_CRC | RX_FLAG_FAILED_PLCP_CRC))
206 *(__le16 *)pos |= cpu_to_le16(IEEE80211_RADIOTAP_F_RX_BADFCS);
207 pos += 2;
208}
209
b2e7771e
JB
210/*
211 * This function copies a received frame to all monitor interfaces and
212 * returns a cleaned-up SKB that no longer includes the FCS nor the
213 * radiotap header the driver might have added.
214 */
215static struct sk_buff *
216ieee80211_rx_monitor(struct ieee80211_local *local, struct sk_buff *origskb,
8318d78a
JB
217 struct ieee80211_rx_status *status,
218 struct ieee80211_rate *rate)
b2e7771e
JB
219{
220 struct ieee80211_sub_if_data *sdata;
b2e7771e 221 int needed_headroom = 0;
b2e7771e
JB
222 struct sk_buff *skb, *skb2;
223 struct net_device *prev_dev = NULL;
224 int present_fcs_len = 0;
225 int rtap_len = 0;
226
227 /*
228 * First, we may need to make a copy of the skb because
229 * (1) we need to modify it for radiotap (if not present), and
230 * (2) the other RX handlers will modify the skb we got.
231 *
232 * We don't need to, of course, if we aren't going to return
233 * the SKB because it has a bad FCS/PLCP checksum.
234 */
235 if (status->flag & RX_FLAG_RADIOTAP)
236 rtap_len = ieee80211_get_radiotap_len(origskb->data);
237 else
601ae7f2
BR
238 /* room for the radiotap header based on driver features */
239 needed_headroom = ieee80211_rx_radiotap_len(local, status);
b2e7771e
JB
240
241 if (local->hw.flags & IEEE80211_HW_RX_INCLUDES_FCS)
242 present_fcs_len = FCS_LEN;
243
244 if (!local->monitors) {
245 if (should_drop_frame(status, origskb, present_fcs_len,
246 rtap_len)) {
247 dev_kfree_skb(origskb);
248 return NULL;
249 }
250
251 return remove_monitor_info(local, origskb, rtap_len);
252 }
253
254 if (should_drop_frame(status, origskb, present_fcs_len, rtap_len)) {
255 /* only need to expand headroom if necessary */
256 skb = origskb;
257 origskb = NULL;
258
259 /*
260 * This shouldn't trigger often because most devices have an
261 * RX header they pull before we get here, and that should
262 * be big enough for our radiotap information. We should
263 * probably export the length to drivers so that we can have
264 * them allocate enough headroom to start with.
265 */
266 if (skb_headroom(skb) < needed_headroom &&
c49e5ea3 267 pskb_expand_head(skb, needed_headroom, 0, GFP_ATOMIC)) {
b2e7771e
JB
268 dev_kfree_skb(skb);
269 return NULL;
270 }
271 } else {
272 /*
273 * Need to make a copy and possibly remove radiotap header
274 * and FCS from the original.
275 */
276 skb = skb_copy_expand(origskb, needed_headroom, 0, GFP_ATOMIC);
277
278 origskb = remove_monitor_info(local, origskb, rtap_len);
279
280 if (!skb)
281 return origskb;
282 }
283
284 /* if necessary, prepend radiotap information */
601ae7f2
BR
285 if (!(status->flag & RX_FLAG_RADIOTAP))
286 ieee80211_add_rx_radiotap_header(local, skb, status, rate,
287 needed_headroom);
b2e7771e 288
ce3edf6d 289 skb_reset_mac_header(skb);
b2e7771e
JB
290 skb->ip_summed = CHECKSUM_UNNECESSARY;
291 skb->pkt_type = PACKET_OTHERHOST;
292 skb->protocol = htons(ETH_P_802_2);
293
294 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
295 if (!netif_running(sdata->dev))
296 continue;
297
51fb61e7 298 if (sdata->vif.type != IEEE80211_IF_TYPE_MNTR)
b2e7771e
JB
299 continue;
300
3d30d949
MW
301 if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES)
302 continue;
303
b2e7771e
JB
304 if (prev_dev) {
305 skb2 = skb_clone(skb, GFP_ATOMIC);
306 if (skb2) {
307 skb2->dev = prev_dev;
308 netif_rx(skb2);
309 }
310 }
311
312 prev_dev = sdata->dev;
313 sdata->dev->stats.rx_packets++;
314 sdata->dev->stats.rx_bytes += skb->len;
315 }
316
317 if (prev_dev) {
318 skb->dev = prev_dev;
319 netif_rx(skb);
320 } else
321 dev_kfree_skb(skb);
322
323 return origskb;
324}
325
326
5cf121c3 327static void ieee80211_parse_qos(struct ieee80211_rx_data *rx)
6e0d114d 328{
238f74a2 329 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
6e0d114d
JB
330 int tid;
331
332 /* does the frame have a qos control field? */
238f74a2
HH
333 if (ieee80211_is_data_qos(hdr->frame_control)) {
334 u8 *qc = ieee80211_get_qos_ctl(hdr);
6e0d114d 335 /* frame has qos control */
238f74a2
HH
336 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
337 if (*qc & IEEE80211_QOS_CONTROL_A_MSDU_PRESENT)
5cf121c3 338 rx->flags |= IEEE80211_RX_AMSDU;
fd4c7f2f 339 else
5cf121c3 340 rx->flags &= ~IEEE80211_RX_AMSDU;
6e0d114d 341 } else {
1411f9b5
JB
342 /*
343 * IEEE 802.11-2007, 7.1.3.4.1 ("Sequence Number field"):
344 *
345 * Sequence numbers for management frames, QoS data
346 * frames with a broadcast/multicast address in the
347 * Address 1 field, and all non-QoS data frames sent
348 * by QoS STAs are assigned using an additional single
349 * modulo-4096 counter, [...]
350 *
351 * We also use that counter for non-QoS STAs.
352 */
353 tid = NUM_RX_DATA_QUEUES - 1;
6e0d114d 354 }
52865dfd 355
5cf121c3 356 rx->queue = tid;
6e0d114d
JB
357 /* Set skb->priority to 1d tag if highest order bit of TID is not set.
358 * For now, set skb->priority to 0 for other cases. */
359 rx->skb->priority = (tid > 7) ? 0 : tid;
38f3714d 360}
6e0d114d 361
5cf121c3 362static void ieee80211_verify_ip_alignment(struct ieee80211_rx_data *rx)
38f3714d
JB
363{
364#ifdef CONFIG_MAC80211_DEBUG_PACKET_ALIGNMENT
a7767f95 365 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
38f3714d
JB
366 int hdrlen;
367
a7767f95 368 if (!ieee80211_is_data_present(hdr->frame_control))
38f3714d
JB
369 return;
370
371 /*
372 * Drivers are required to align the payload data in a way that
373 * guarantees that the contained IP header is aligned to a four-
374 * byte boundary. In the case of regular frames, this simply means
375 * aligning the payload to a four-byte boundary (because either
376 * the IP header is directly contained, or IV/RFC1042 headers that
377 * have a length divisible by four are in front of it.
378 *
379 * With A-MSDU frames, however, the payload data address must
380 * yield two modulo four because there are 14-byte 802.3 headers
381 * within the A-MSDU frames that push the IP header further back
382 * to a multiple of four again. Thankfully, the specs were sane
383 * enough this time around to require padding each A-MSDU subframe
384 * to a length that is a multiple of four.
385 *
386 * Padding like atheros hardware adds which is inbetween the 802.11
387 * header and the payload is not supported, the driver is required
388 * to move the 802.11 header further back in that case.
389 */
a7767f95 390 hdrlen = ieee80211_hdrlen(hdr->frame_control);
5cf121c3 391 if (rx->flags & IEEE80211_RX_AMSDU)
38f3714d
JB
392 hdrlen += ETH_HLEN;
393 WARN_ON_ONCE(((unsigned long)(rx->skb->data + hdrlen)) & 3);
394#endif
6e0d114d
JB
395}
396
6368e4b1 397
571ecf67
JB
398/* rx handlers */
399
49461622 400static ieee80211_rx_result debug_noinline
5cf121c3 401ieee80211_rx_h_passive_scan(struct ieee80211_rx_data *rx)
571ecf67
JB
402{
403 struct ieee80211_local *local = rx->local;
404 struct sk_buff *skb = rx->skb;
405
ece8eddd 406 if (unlikely(local->sta_hw_scanning))
5cf121c3 407 return ieee80211_sta_rx_scan(rx->dev, skb, rx->status);
ece8eddd
ZY
408
409 if (unlikely(local->sta_sw_scanning)) {
410 /* drop all the other packets during a software scan anyway */
5cf121c3 411 if (ieee80211_sta_rx_scan(rx->dev, skb, rx->status)
9ae54c84 412 != RX_QUEUED)
ece8eddd 413 dev_kfree_skb(skb);
9ae54c84 414 return RX_QUEUED;
571ecf67
JB
415 }
416
5cf121c3 417 if (unlikely(rx->flags & IEEE80211_RX_IN_SCAN)) {
571ecf67
JB
418 /* scanning finished during invoking of handlers */
419 I802_DEBUG_INC(local->rx_handlers_drop_passive_scan);
e4c26add 420 return RX_DROP_UNUSABLE;
571ecf67
JB
421 }
422
9ae54c84 423 return RX_CONTINUE;
571ecf67
JB
424}
425
33b64eb2 426static ieee80211_rx_result
5cf121c3 427ieee80211_rx_mesh_check(struct ieee80211_rx_data *rx)
33b64eb2 428{
a7767f95
HH
429 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
430 unsigned int hdrlen = ieee80211_hdrlen(hdr->frame_control);
d6d1a5a7 431
a7767f95
HH
432 if (ieee80211_is_data(hdr->frame_control)) {
433 if (!ieee80211_has_a4(hdr->frame_control))
33b64eb2
LCC
434 return RX_DROP_MONITOR;
435 if (memcmp(hdr->addr4, rx->dev->dev_addr, ETH_ALEN) == 0)
436 return RX_DROP_MONITOR;
437 }
438
439 /* If there is not an established peer link and this is not a peer link
440 * establisment frame, beacon or probe, drop the frame.
441 */
442
b4e08ea1 443 if (!rx->sta || sta_plink_state(rx->sta) != PLINK_ESTAB) {
33b64eb2 444 struct ieee80211_mgmt *mgmt;
d6d1a5a7 445
a7767f95 446 if (!ieee80211_is_mgmt(hdr->frame_control))
33b64eb2
LCC
447 return RX_DROP_MONITOR;
448
a7767f95 449 if (ieee80211_is_action(hdr->frame_control)) {
33b64eb2
LCC
450 mgmt = (struct ieee80211_mgmt *)hdr;
451 if (mgmt->u.action.category != PLINK_CATEGORY)
452 return RX_DROP_MONITOR;
33b64eb2 453 return RX_CONTINUE;
33b64eb2
LCC
454 }
455
a7767f95
HH
456 if (ieee80211_is_probe_req(hdr->frame_control) ||
457 ieee80211_is_probe_resp(hdr->frame_control) ||
458 ieee80211_is_beacon(hdr->frame_control))
459 return RX_CONTINUE;
460
461 return RX_DROP_MONITOR;
462
463 }
464
465#define msh_h_get(h, l) ((struct ieee80211s_hdr *) ((u8 *)h + l))
466
467 if (ieee80211_is_data(hdr->frame_control) &&
468 is_multicast_ether_addr(hdr->addr1) &&
469 mesh_rmc_check(hdr->addr4, msh_h_get(hdr, hdrlen), rx->dev))
33b64eb2 470 return RX_DROP_MONITOR;
902acc78 471#undef msh_h_get
d6d1a5a7 472
902acc78
JB
473 return RX_CONTINUE;
474}
33b64eb2
LCC
475
476
49461622 477static ieee80211_rx_result debug_noinline
5cf121c3 478ieee80211_rx_h_check(struct ieee80211_rx_data *rx)
571ecf67 479{
a7767f95 480 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
571ecf67
JB
481
482 /* Drop duplicate 802.11 retransmissions (IEEE 802.11 Chap. 9.2.9) */
483 if (rx->sta && !is_multicast_ether_addr(hdr->addr1)) {
a7767f95 484 if (unlikely(ieee80211_has_retry(hdr->frame_control) &&
5cf121c3 485 rx->sta->last_seq_ctrl[rx->queue] ==
571ecf67 486 hdr->seq_ctrl)) {
5cf121c3 487 if (rx->flags & IEEE80211_RX_RA_MATCH) {
571ecf67
JB
488 rx->local->dot11FrameDuplicateCount++;
489 rx->sta->num_duplicates++;
490 }
e4c26add 491 return RX_DROP_MONITOR;
571ecf67 492 } else
5cf121c3 493 rx->sta->last_seq_ctrl[rx->queue] = hdr->seq_ctrl;
571ecf67
JB
494 }
495
571ecf67
JB
496 if (unlikely(rx->skb->len < 16)) {
497 I802_DEBUG_INC(rx->local->rx_handlers_drop_short);
e4c26add 498 return RX_DROP_MONITOR;
571ecf67
JB
499 }
500
571ecf67
JB
501 /* Drop disallowed frame classes based on STA auth/assoc state;
502 * IEEE 802.11, Chap 5.5.
503 *
504 * 80211.o does filtering only based on association state, i.e., it
505 * drops Class 3 frames from not associated stations. hostapd sends
506 * deauth/disassoc frames when needed. In addition, hostapd is
507 * responsible for filtering on both auth and assoc states.
508 */
33b64eb2 509
902acc78 510 if (ieee80211_vif_is_mesh(&rx->sdata->vif))
33b64eb2 511 return ieee80211_rx_mesh_check(rx);
33b64eb2 512
a7767f95
HH
513 if (unlikely((ieee80211_is_data(hdr->frame_control) ||
514 ieee80211_is_pspoll(hdr->frame_control)) &&
51fb61e7 515 rx->sdata->vif.type != IEEE80211_IF_TYPE_IBSS &&
07346f81 516 (!rx->sta || !test_sta_flags(rx->sta, WLAN_STA_ASSOC)))) {
a7767f95
HH
517 if ((!ieee80211_has_fromds(hdr->frame_control) &&
518 !ieee80211_has_tods(hdr->frame_control) &&
519 ieee80211_is_data(hdr->frame_control)) ||
520 !(rx->flags & IEEE80211_RX_RA_MATCH)) {
571ecf67
JB
521 /* Drop IBSS frames and frames for other hosts
522 * silently. */
e4c26add 523 return RX_DROP_MONITOR;
571ecf67
JB
524 }
525
e4c26add 526 return RX_DROP_MONITOR;
571ecf67
JB
527 }
528
9ae54c84 529 return RX_CONTINUE;
570bd537
JB
530}
531
532
49461622 533static ieee80211_rx_result debug_noinline
5cf121c3 534ieee80211_rx_h_decrypt(struct ieee80211_rx_data *rx)
570bd537 535{
a7767f95 536 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
3017b80b
JB
537 int keyidx;
538 int hdrlen;
e4c26add 539 ieee80211_rx_result result = RX_DROP_UNUSABLE;
d4e46a3d 540 struct ieee80211_key *stakey = NULL;
570bd537 541
3017b80b
JB
542 /*
543 * Key selection 101
544 *
545 * There are three types of keys:
546 * - GTK (group keys)
547 * - PTK (pairwise keys)
548 * - STK (station-to-station pairwise keys)
549 *
550 * When selecting a key, we have to distinguish between multicast
551 * (including broadcast) and unicast frames, the latter can only
552 * use PTKs and STKs while the former always use GTKs. Unless, of
553 * course, actual WEP keys ("pre-RSNA") are used, then unicast
554 * frames can also use key indizes like GTKs. Hence, if we don't
555 * have a PTK/STK we check the key index for a WEP key.
556 *
8dc06a1c
JB
557 * Note that in a regular BSS, multicast frames are sent by the
558 * AP only, associated stations unicast the frame to the AP first
559 * which then multicasts it on their behalf.
560 *
3017b80b
JB
561 * There is also a slight problem in IBSS mode: GTKs are negotiated
562 * with each station, that is something we don't currently handle.
8dc06a1c
JB
563 * The spec seems to expect that one negotiates the same key with
564 * every station but there's no such requirement; VLANs could be
565 * possible.
3017b80b
JB
566 */
567
a7767f95 568 if (!ieee80211_has_protected(hdr->frame_control))
9ae54c84 569 return RX_CONTINUE;
571ecf67 570
3017b80b 571 /*
1990af8d 572 * No point in finding a key and decrypting if the frame is neither
3017b80b
JB
573 * addressed to us nor a multicast frame.
574 */
5cf121c3 575 if (!(rx->flags & IEEE80211_RX_RA_MATCH))
9ae54c84 576 return RX_CONTINUE;
3017b80b 577
d4e46a3d
JB
578 if (rx->sta)
579 stakey = rcu_dereference(rx->sta->key);
580
581 if (!is_multicast_ether_addr(hdr->addr1) && stakey) {
582 rx->key = stakey;
571ecf67 583 } else {
3017b80b
JB
584 /*
585 * The device doesn't give us the IV so we won't be
586 * able to look up the key. That's ok though, we
587 * don't need to decrypt the frame, we just won't
588 * be able to keep statistics accurate.
589 * Except for key threshold notifications, should
590 * we somehow allow the driver to tell us which key
591 * the hardware used if this flag is set?
592 */
5cf121c3
JB
593 if ((rx->status->flag & RX_FLAG_DECRYPTED) &&
594 (rx->status->flag & RX_FLAG_IV_STRIPPED))
9ae54c84 595 return RX_CONTINUE;
3017b80b 596
a7767f95 597 hdrlen = ieee80211_hdrlen(hdr->frame_control);
3017b80b
JB
598
599 if (rx->skb->len < 8 + hdrlen)
e4c26add 600 return RX_DROP_UNUSABLE; /* TODO: count this? */
3017b80b
JB
601
602 /*
603 * no need to call ieee80211_wep_get_keyidx,
604 * it verifies a bunch of things we've done already
605 */
606 keyidx = rx->skb->data[hdrlen + 3] >> 6;
607
d4e46a3d 608 rx->key = rcu_dereference(rx->sdata->keys[keyidx]);
3017b80b
JB
609
610 /*
611 * RSNA-protected unicast frames should always be sent with
612 * pairwise or station-to-station keys, but for WEP we allow
613 * using a key index as well.
614 */
8f20fc24 615 if (rx->key && rx->key->conf.alg != ALG_WEP &&
3017b80b
JB
616 !is_multicast_ether_addr(hdr->addr1))
617 rx->key = NULL;
571ecf67
JB
618 }
619
3017b80b 620 if (rx->key) {
571ecf67 621 rx->key->tx_rx_count++;
011bfcc4 622 /* TODO: add threshold stuff again */
1990af8d 623 } else {
e4c26add 624 return RX_DROP_MONITOR;
70f08765
JB
625 }
626
1990af8d
JB
627 /* Check for weak IVs if possible */
628 if (rx->sta && rx->key->conf.alg == ALG_WEP &&
a7767f95 629 ieee80211_is_data(hdr->frame_control) &&
5cf121c3
JB
630 (!(rx->status->flag & RX_FLAG_IV_STRIPPED) ||
631 !(rx->status->flag & RX_FLAG_DECRYPTED)) &&
1990af8d
JB
632 ieee80211_wep_is_weak_iv(rx->skb, rx->key))
633 rx->sta->wep_weak_iv_count++;
634
70f08765
JB
635 switch (rx->key->conf.alg) {
636 case ALG_WEP:
e2f036da
MN
637 result = ieee80211_crypto_wep_decrypt(rx);
638 break;
70f08765 639 case ALG_TKIP:
e2f036da
MN
640 result = ieee80211_crypto_tkip_decrypt(rx);
641 break;
70f08765 642 case ALG_CCMP:
e2f036da
MN
643 result = ieee80211_crypto_ccmp_decrypt(rx);
644 break;
70f08765
JB
645 }
646
e2f036da 647 /* either the frame has been decrypted or will be dropped */
5cf121c3 648 rx->status->flag |= RX_FLAG_DECRYPTED;
e2f036da
MN
649
650 return result;
70f08765
JB
651}
652
571ecf67
JB
653static void ap_sta_ps_start(struct net_device *dev, struct sta_info *sta)
654{
655 struct ieee80211_sub_if_data *sdata;
0795af57
JP
656 DECLARE_MAC_BUF(mac);
657
d0709a65 658 sdata = sta->sdata;
571ecf67 659
3e122be0 660 atomic_inc(&sdata->bss->num_sta_ps);
07346f81 661 set_and_clear_sta_flags(sta, WLAN_STA_PS, WLAN_STA_PSPOLL);
571ecf67 662#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
0795af57
JP
663 printk(KERN_DEBUG "%s: STA %s aid %d enters power save mode\n",
664 dev->name, print_mac(mac, sta->addr), sta->aid);
571ecf67
JB
665#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
666}
667
668static int ap_sta_ps_end(struct net_device *dev, struct sta_info *sta)
669{
670 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
671 struct sk_buff *skb;
672 int sent = 0;
673 struct ieee80211_sub_if_data *sdata;
e039fa4a 674 struct ieee80211_tx_info *info;
0795af57 675 DECLARE_MAC_BUF(mac);
571ecf67 676
d0709a65 677 sdata = sta->sdata;
004c872e 678
3e122be0 679 atomic_dec(&sdata->bss->num_sta_ps);
004c872e 680
07346f81 681 clear_sta_flags(sta, WLAN_STA_PS | WLAN_STA_PSPOLL);
004c872e
JB
682
683 if (!skb_queue_empty(&sta->ps_tx_buf))
684 sta_info_clear_tim_bit(sta);
685
571ecf67 686#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
0795af57
JP
687 printk(KERN_DEBUG "%s: STA %s aid %d exits power save mode\n",
688 dev->name, print_mac(mac, sta->addr), sta->aid);
571ecf67 689#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
004c872e 690
571ecf67
JB
691 /* Send all buffered frames to the station */
692 while ((skb = skb_dequeue(&sta->tx_filtered)) != NULL) {
e039fa4a 693 info = IEEE80211_SKB_CB(skb);
571ecf67 694 sent++;
e039fa4a 695 info->flags |= IEEE80211_TX_CTL_REQUEUE;
571ecf67
JB
696 dev_queue_xmit(skb);
697 }
698 while ((skb = skb_dequeue(&sta->ps_tx_buf)) != NULL) {
e039fa4a 699 info = IEEE80211_SKB_CB(skb);
571ecf67
JB
700 local->total_ps_buffered--;
701 sent++;
702#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
0795af57 703 printk(KERN_DEBUG "%s: STA %s aid %d send PS frame "
571ecf67 704 "since STA not sleeping anymore\n", dev->name,
0795af57 705 print_mac(mac, sta->addr), sta->aid);
571ecf67 706#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
e039fa4a 707 info->flags |= IEEE80211_TX_CTL_REQUEUE;
571ecf67
JB
708 dev_queue_xmit(skb);
709 }
710
711 return sent;
712}
713
49461622 714static ieee80211_rx_result debug_noinline
5cf121c3 715ieee80211_rx_h_sta_process(struct ieee80211_rx_data *rx)
571ecf67
JB
716{
717 struct sta_info *sta = rx->sta;
718 struct net_device *dev = rx->dev;
a7767f95 719 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
571ecf67
JB
720
721 if (!sta)
9ae54c84 722 return RX_CONTINUE;
571ecf67
JB
723
724 /* Update last_rx only for IBSS packets which are for the current
725 * BSSID to avoid keeping the current IBSS network alive in cases where
726 * other STAs are using different BSSID. */
51fb61e7 727 if (rx->sdata->vif.type == IEEE80211_IF_TYPE_IBSS) {
71364716
RR
728 u8 *bssid = ieee80211_get_bssid(hdr, rx->skb->len,
729 IEEE80211_IF_TYPE_IBSS);
571ecf67
JB
730 if (compare_ether_addr(bssid, rx->sdata->u.sta.bssid) == 0)
731 sta->last_rx = jiffies;
732 } else
733 if (!is_multicast_ether_addr(hdr->addr1) ||
51fb61e7 734 rx->sdata->vif.type == IEEE80211_IF_TYPE_STA) {
571ecf67
JB
735 /* Update last_rx only for unicast frames in order to prevent
736 * the Probe Request frames (the only broadcast frames from a
737 * STA in infrastructure mode) from keeping a connection alive.
33b64eb2
LCC
738 * Mesh beacons will update last_rx when if they are found to
739 * match the current local configuration when processed.
571ecf67
JB
740 */
741 sta->last_rx = jiffies;
742 }
743
5cf121c3 744 if (!(rx->flags & IEEE80211_RX_RA_MATCH))
9ae54c84 745 return RX_CONTINUE;
571ecf67
JB
746
747 sta->rx_fragments++;
748 sta->rx_bytes += rx->skb->len;
5cf121c3 749 sta->last_signal = rx->status->signal;
566bfe5a 750 sta->last_qual = rx->status->qual;
5cf121c3 751 sta->last_noise = rx->status->noise;
571ecf67 752
3e122be0
JB
753 if (!ieee80211_has_morefrags(hdr->frame_control) &&
754 (rx->sdata->vif.type == IEEE80211_IF_TYPE_AP ||
755 rx->sdata->vif.type == IEEE80211_IF_TYPE_VLAN)) {
571ecf67
JB
756 /* Change STA power saving mode only in the end of a frame
757 * exchange sequence */
07346f81 758 if (test_sta_flags(sta, WLAN_STA_PS) &&
a7767f95 759 !ieee80211_has_pm(hdr->frame_control))
5cf121c3 760 rx->sent_ps_buffered += ap_sta_ps_end(dev, sta);
07346f81 761 else if (!test_sta_flags(sta, WLAN_STA_PS) &&
a7767f95 762 ieee80211_has_pm(hdr->frame_control))
571ecf67
JB
763 ap_sta_ps_start(dev, sta);
764 }
765
766 /* Drop data::nullfunc frames silently, since they are used only to
767 * control station power saving mode. */
a7767f95 768 if (ieee80211_is_nullfunc(hdr->frame_control)) {
571ecf67
JB
769 I802_DEBUG_INC(rx->local->rx_handlers_drop_nullfunc);
770 /* Update counter and free packet here to avoid counting this
771 * as a dropped packed. */
772 sta->rx_packets++;
773 dev_kfree_skb(rx->skb);
9ae54c84 774 return RX_QUEUED;
571ecf67
JB
775 }
776
9ae54c84 777 return RX_CONTINUE;
571ecf67
JB
778} /* ieee80211_rx_h_sta_process */
779
571ecf67
JB
780static inline struct ieee80211_fragment_entry *
781ieee80211_reassemble_add(struct ieee80211_sub_if_data *sdata,
782 unsigned int frag, unsigned int seq, int rx_queue,
783 struct sk_buff **skb)
784{
785 struct ieee80211_fragment_entry *entry;
786 int idx;
787
788 idx = sdata->fragment_next;
789 entry = &sdata->fragments[sdata->fragment_next++];
790 if (sdata->fragment_next >= IEEE80211_FRAGMENT_MAX)
791 sdata->fragment_next = 0;
792
793 if (!skb_queue_empty(&entry->skb_list)) {
f4ea83dd 794#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
571ecf67
JB
795 struct ieee80211_hdr *hdr =
796 (struct ieee80211_hdr *) entry->skb_list.next->data;
0795af57
JP
797 DECLARE_MAC_BUF(mac);
798 DECLARE_MAC_BUF(mac2);
571ecf67
JB
799 printk(KERN_DEBUG "%s: RX reassembly removed oldest "
800 "fragment entry (idx=%d age=%lu seq=%d last_frag=%d "
0795af57 801 "addr1=%s addr2=%s\n",
571ecf67
JB
802 sdata->dev->name, idx,
803 jiffies - entry->first_frag_time, entry->seq,
0795af57
JP
804 entry->last_frag, print_mac(mac, hdr->addr1),
805 print_mac(mac2, hdr->addr2));
f4ea83dd 806#endif
571ecf67
JB
807 __skb_queue_purge(&entry->skb_list);
808 }
809
810 __skb_queue_tail(&entry->skb_list, *skb); /* no need for locking */
811 *skb = NULL;
812 entry->first_frag_time = jiffies;
813 entry->seq = seq;
814 entry->rx_queue = rx_queue;
815 entry->last_frag = frag;
816 entry->ccmp = 0;
817 entry->extra_len = 0;
818
819 return entry;
820}
821
822static inline struct ieee80211_fragment_entry *
823ieee80211_reassemble_find(struct ieee80211_sub_if_data *sdata,
b73d70ad 824 unsigned int frag, unsigned int seq,
571ecf67
JB
825 int rx_queue, struct ieee80211_hdr *hdr)
826{
827 struct ieee80211_fragment_entry *entry;
828 int i, idx;
829
830 idx = sdata->fragment_next;
831 for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) {
832 struct ieee80211_hdr *f_hdr;
571ecf67
JB
833
834 idx--;
835 if (idx < 0)
836 idx = IEEE80211_FRAGMENT_MAX - 1;
837
838 entry = &sdata->fragments[idx];
839 if (skb_queue_empty(&entry->skb_list) || entry->seq != seq ||
840 entry->rx_queue != rx_queue ||
841 entry->last_frag + 1 != frag)
842 continue;
843
b73d70ad 844 f_hdr = (struct ieee80211_hdr *)entry->skb_list.next->data;
571ecf67 845
b73d70ad
HH
846 /*
847 * Check ftype and addresses are equal, else check next fragment
848 */
849 if (((hdr->frame_control ^ f_hdr->frame_control) &
850 cpu_to_le16(IEEE80211_FCTL_FTYPE)) ||
571ecf67
JB
851 compare_ether_addr(hdr->addr1, f_hdr->addr1) != 0 ||
852 compare_ether_addr(hdr->addr2, f_hdr->addr2) != 0)
853 continue;
854
ab46623e 855 if (time_after(jiffies, entry->first_frag_time + 2 * HZ)) {
571ecf67
JB
856 __skb_queue_purge(&entry->skb_list);
857 continue;
858 }
859 return entry;
860 }
861
862 return NULL;
863}
864
49461622 865static ieee80211_rx_result debug_noinline
5cf121c3 866ieee80211_rx_h_defragment(struct ieee80211_rx_data *rx)
571ecf67
JB
867{
868 struct ieee80211_hdr *hdr;
869 u16 sc;
870 unsigned int frag, seq;
871 struct ieee80211_fragment_entry *entry;
872 struct sk_buff *skb;
0795af57 873 DECLARE_MAC_BUF(mac);
571ecf67 874
b73d70ad 875 hdr = (struct ieee80211_hdr *)rx->skb->data;
571ecf67
JB
876 sc = le16_to_cpu(hdr->seq_ctrl);
877 frag = sc & IEEE80211_SCTL_FRAG;
878
b73d70ad 879 if (likely((!ieee80211_has_morefrags(hdr->frame_control) && frag == 0) ||
571ecf67
JB
880 (rx->skb)->len < 24 ||
881 is_multicast_ether_addr(hdr->addr1))) {
882 /* not fragmented */
883 goto out;
884 }
885 I802_DEBUG_INC(rx->local->rx_handlers_fragments);
886
887 seq = (sc & IEEE80211_SCTL_SEQ) >> 4;
888
889 if (frag == 0) {
890 /* This is the first fragment of a new frame. */
891 entry = ieee80211_reassemble_add(rx->sdata, frag, seq,
5cf121c3 892 rx->queue, &(rx->skb));
8f20fc24 893 if (rx->key && rx->key->conf.alg == ALG_CCMP &&
b73d70ad 894 ieee80211_has_protected(hdr->frame_control)) {
571ecf67
JB
895 /* Store CCMP PN so that we can verify that the next
896 * fragment has a sequential PN value. */
897 entry->ccmp = 1;
898 memcpy(entry->last_pn,
5cf121c3 899 rx->key->u.ccmp.rx_pn[rx->queue],
571ecf67
JB
900 CCMP_PN_LEN);
901 }
9ae54c84 902 return RX_QUEUED;
571ecf67
JB
903 }
904
905 /* This is a fragment for a frame that should already be pending in
906 * fragment cache. Add this fragment to the end of the pending entry.
907 */
b73d70ad 908 entry = ieee80211_reassemble_find(rx->sdata, frag, seq, rx->queue, hdr);
571ecf67
JB
909 if (!entry) {
910 I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
e4c26add 911 return RX_DROP_MONITOR;
571ecf67
JB
912 }
913
914 /* Verify that MPDUs within one MSDU have sequential PN values.
915 * (IEEE 802.11i, 8.3.3.4.5) */
916 if (entry->ccmp) {
917 int i;
918 u8 pn[CCMP_PN_LEN], *rpn;
8f20fc24 919 if (!rx->key || rx->key->conf.alg != ALG_CCMP)
e4c26add 920 return RX_DROP_UNUSABLE;
571ecf67
JB
921 memcpy(pn, entry->last_pn, CCMP_PN_LEN);
922 for (i = CCMP_PN_LEN - 1; i >= 0; i--) {
923 pn[i]++;
924 if (pn[i])
925 break;
926 }
5cf121c3 927 rpn = rx->key->u.ccmp.rx_pn[rx->queue];
f4ea83dd 928 if (memcmp(pn, rpn, CCMP_PN_LEN))
e4c26add 929 return RX_DROP_UNUSABLE;
571ecf67
JB
930 memcpy(entry->last_pn, pn, CCMP_PN_LEN);
931 }
932
b73d70ad 933 skb_pull(rx->skb, ieee80211_hdrlen(hdr->frame_control));
571ecf67
JB
934 __skb_queue_tail(&entry->skb_list, rx->skb);
935 entry->last_frag = frag;
936 entry->extra_len += rx->skb->len;
937 if (rx->fc & IEEE80211_FCTL_MOREFRAGS) {
938 rx->skb = NULL;
9ae54c84 939 return RX_QUEUED;
571ecf67
JB
940 }
941
942 rx->skb = __skb_dequeue(&entry->skb_list);
943 if (skb_tailroom(rx->skb) < entry->extra_len) {
944 I802_DEBUG_INC(rx->local->rx_expand_skb_head2);
945 if (unlikely(pskb_expand_head(rx->skb, 0, entry->extra_len,
946 GFP_ATOMIC))) {
947 I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
948 __skb_queue_purge(&entry->skb_list);
e4c26add 949 return RX_DROP_UNUSABLE;
571ecf67
JB
950 }
951 }
952 while ((skb = __skb_dequeue(&entry->skb_list))) {
953 memcpy(skb_put(rx->skb, skb->len), skb->data, skb->len);
954 dev_kfree_skb(skb);
955 }
956
957 /* Complete frame has been reassembled - process it now */
5cf121c3 958 rx->flags |= IEEE80211_RX_FRAGMENTED;
571ecf67
JB
959
960 out:
961 if (rx->sta)
962 rx->sta->rx_packets++;
963 if (is_multicast_ether_addr(hdr->addr1))
964 rx->local->dot11MulticastReceivedFrameCount++;
965 else
966 ieee80211_led_rx(rx->local);
9ae54c84 967 return RX_CONTINUE;
571ecf67
JB
968}
969
49461622 970static ieee80211_rx_result debug_noinline
5cf121c3 971ieee80211_rx_h_ps_poll(struct ieee80211_rx_data *rx)
571ecf67 972{
98f0b0a3 973 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(rx->dev);
571ecf67
JB
974 struct sk_buff *skb;
975 int no_pending_pkts;
0795af57 976 DECLARE_MAC_BUF(mac);
571ecf67
JB
977
978 if (likely(!rx->sta ||
979 (rx->fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_CTL ||
980 (rx->fc & IEEE80211_FCTL_STYPE) != IEEE80211_STYPE_PSPOLL ||
5cf121c3 981 !(rx->flags & IEEE80211_RX_RA_MATCH)))
9ae54c84 982 return RX_CONTINUE;
571ecf67 983
51fb61e7
JB
984 if ((sdata->vif.type != IEEE80211_IF_TYPE_AP) &&
985 (sdata->vif.type != IEEE80211_IF_TYPE_VLAN))
e4c26add 986 return RX_DROP_UNUSABLE;
98f0b0a3 987
571ecf67
JB
988 skb = skb_dequeue(&rx->sta->tx_filtered);
989 if (!skb) {
990 skb = skb_dequeue(&rx->sta->ps_tx_buf);
991 if (skb)
992 rx->local->total_ps_buffered--;
993 }
994 no_pending_pkts = skb_queue_empty(&rx->sta->tx_filtered) &&
995 skb_queue_empty(&rx->sta->ps_tx_buf);
996
997 if (skb) {
998 struct ieee80211_hdr *hdr =
999 (struct ieee80211_hdr *) skb->data;
1000
4a9a66e9
JB
1001 /*
1002 * Tell TX path to send one frame even though the STA may
1003 * still remain is PS mode after this frame exchange.
1004 */
07346f81 1005 set_sta_flags(rx->sta, WLAN_STA_PSPOLL);
571ecf67
JB
1006
1007#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
0795af57
JP
1008 printk(KERN_DEBUG "STA %s aid %d: PS Poll (entries after %d)\n",
1009 print_mac(mac, rx->sta->addr), rx->sta->aid,
571ecf67
JB
1010 skb_queue_len(&rx->sta->ps_tx_buf));
1011#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
1012
1013 /* Use MoreData flag to indicate whether there are more
1014 * buffered frames for this STA */
836341a7 1015 if (no_pending_pkts)
571ecf67 1016 hdr->frame_control &= cpu_to_le16(~IEEE80211_FCTL_MOREDATA);
836341a7 1017 else
571ecf67
JB
1018 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1019
1020 dev_queue_xmit(skb);
1021
004c872e
JB
1022 if (no_pending_pkts)
1023 sta_info_clear_tim_bit(rx->sta);
571ecf67 1024#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
5cf121c3 1025 } else if (!rx->sent_ps_buffered) {
004c872e
JB
1026 /*
1027 * FIXME: This can be the result of a race condition between
1028 * us expiring a frame and the station polling for it.
1029 * Should we send it a null-func frame indicating we
1030 * have nothing buffered for it?
1031 */
0795af57 1032 printk(KERN_DEBUG "%s: STA %s sent PS Poll even "
f4ea83dd 1033 "though there are no buffered frames for it\n",
0795af57 1034 rx->dev->name, print_mac(mac, rx->sta->addr));
571ecf67 1035#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
571ecf67
JB
1036 }
1037
9ae54c84 1038 /* Free PS Poll skb here instead of returning RX_DROP that would
571ecf67
JB
1039 * count as an dropped frame. */
1040 dev_kfree_skb(rx->skb);
1041
9ae54c84 1042 return RX_QUEUED;
571ecf67
JB
1043}
1044
49461622 1045static ieee80211_rx_result debug_noinline
5cf121c3 1046ieee80211_rx_h_remove_qos_control(struct ieee80211_rx_data *rx)
6e0d114d 1047{
6e0d114d 1048 u8 *data = rx->skb->data;
238f74a2 1049 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)data;
6e0d114d 1050
238f74a2 1051 if (!ieee80211_is_data_qos(hdr->frame_control))
9ae54c84 1052 return RX_CONTINUE;
6e0d114d
JB
1053
1054 /* remove the qos control field, update frame type and meta-data */
238f74a2
HH
1055 memmove(data + IEEE80211_QOS_CTL_LEN, data,
1056 ieee80211_hdrlen(hdr->frame_control) - IEEE80211_QOS_CTL_LEN);
1057 hdr = (struct ieee80211_hdr *)skb_pull(rx->skb, IEEE80211_QOS_CTL_LEN);
6e0d114d 1058 /* change frame type to non QOS */
238f74a2
HH
1059 rx->fc &= ~IEEE80211_STYPE_QOS_DATA;
1060 hdr->frame_control &= ~cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
6e0d114d 1061
9ae54c84 1062 return RX_CONTINUE;
6e0d114d
JB
1063}
1064
76ee65bf 1065static int
5cf121c3 1066ieee80211_802_1x_port_control(struct ieee80211_rx_data *rx)
571ecf67 1067{
07346f81 1068 if (unlikely(!rx->sta ||
f4ea83dd 1069 !test_sta_flags(rx->sta, WLAN_STA_AUTHORIZED)))
76ee65bf 1070 return -EACCES;
571ecf67 1071
76ee65bf 1072 return 0;
571ecf67
JB
1073}
1074
76ee65bf 1075static int
5cf121c3 1076ieee80211_drop_unencrypted(struct ieee80211_rx_data *rx)
571ecf67 1077{
3017b80b 1078 /*
7848ba7d
JB
1079 * Pass through unencrypted frames if the hardware has
1080 * decrypted them already.
3017b80b 1081 */
5cf121c3 1082 if (rx->status->flag & RX_FLAG_DECRYPTED)
76ee65bf 1083 return 0;
571ecf67
JB
1084
1085 /* Drop unencrypted frames if key is set. */
1086 if (unlikely(!(rx->fc & IEEE80211_FCTL_PROTECTED) &&
1087 (rx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA &&
1088 (rx->fc & IEEE80211_FCTL_STYPE) != IEEE80211_STYPE_NULLFUNC &&
b3fc9c6c 1089 (rx->key || rx->sdata->drop_unencrypted)))
76ee65bf 1090 return -EACCES;
b3fc9c6c 1091
76ee65bf 1092 return 0;
571ecf67
JB
1093}
1094
76ee65bf 1095static int
5cf121c3 1096ieee80211_data_to_8023(struct ieee80211_rx_data *rx)
571ecf67
JB
1097{
1098 struct net_device *dev = rx->dev;
571ecf67 1099 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) rx->skb->data;
b73d70ad 1100 u16 hdrlen, ethertype;
571ecf67
JB
1101 u8 *payload;
1102 u8 dst[ETH_ALEN];
c97c23e3 1103 u8 src[ETH_ALEN] __aligned(2);
76ee65bf 1104 struct sk_buff *skb = rx->skb;
571ecf67 1105 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
0795af57
JP
1106 DECLARE_MAC_BUF(mac);
1107 DECLARE_MAC_BUF(mac2);
1108 DECLARE_MAC_BUF(mac3);
1109 DECLARE_MAC_BUF(mac4);
571ecf67 1110
b73d70ad 1111 if (unlikely(!ieee80211_is_data_present(hdr->frame_control)))
76ee65bf 1112 return -1;
571ecf67 1113
b73d70ad 1114 hdrlen = ieee80211_hdrlen(hdr->frame_control);
571ecf67 1115
e32f85f7
LCC
1116 if (ieee80211_vif_is_mesh(&sdata->vif))
1117 hdrlen += ieee80211_get_mesh_hdrlen(
33b64eb2 1118 (struct ieee80211s_hdr *) (skb->data + hdrlen));
33b64eb2 1119
571ecf67
JB
1120 /* convert IEEE 802.11 header + possible LLC headers into Ethernet
1121 * header
1122 * IEEE 802.11 address fields:
1123 * ToDS FromDS Addr1 Addr2 Addr3 Addr4
1124 * 0 0 DA SA BSSID n/a
1125 * 0 1 DA BSSID SA n/a
1126 * 1 0 BSSID SA DA n/a
1127 * 1 1 RA TA DA SA
1128 */
b73d70ad
HH
1129 memcpy(dst, ieee80211_get_DA(hdr), ETH_ALEN);
1130 memcpy(src, ieee80211_get_SA(hdr), ETH_ALEN);
571ecf67 1131
b73d70ad
HH
1132 switch (hdr->frame_control &
1133 cpu_to_le16(IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) {
1134 case __constant_cpu_to_le16(IEEE80211_FCTL_TODS):
51fb61e7 1135 if (unlikely(sdata->vif.type != IEEE80211_IF_TYPE_AP &&
f4ea83dd 1136 sdata->vif.type != IEEE80211_IF_TYPE_VLAN))
76ee65bf 1137 return -1;
571ecf67 1138 break;
b73d70ad
HH
1139 case __constant_cpu_to_le16(IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS):
1140 if (unlikely(sdata->vif.type != IEEE80211_IF_TYPE_WDS &&
f4ea83dd 1141 sdata->vif.type != IEEE80211_IF_TYPE_MESH_POINT))
76ee65bf 1142 return -1;
571ecf67 1143 break;
b73d70ad 1144 case __constant_cpu_to_le16(IEEE80211_FCTL_FROMDS):
51fb61e7 1145 if (sdata->vif.type != IEEE80211_IF_TYPE_STA ||
b3316157
JL
1146 (is_multicast_ether_addr(dst) &&
1147 !compare_ether_addr(src, dev->dev_addr)))
76ee65bf 1148 return -1;
571ecf67 1149 break;
b73d70ad 1150 case __constant_cpu_to_le16(0):
f4ea83dd 1151 if (sdata->vif.type != IEEE80211_IF_TYPE_IBSS)
76ee65bf 1152 return -1;
571ecf67
JB
1153 break;
1154 }
1155
f4ea83dd 1156 if (unlikely(skb->len - hdrlen < 8))
76ee65bf 1157 return -1;
571ecf67 1158
76ee65bf 1159 payload = skb->data + hdrlen;
571ecf67
JB
1160 ethertype = (payload[6] << 8) | payload[7];
1161
1162 if (likely((compare_ether_addr(payload, rfc1042_header) == 0 &&
1163 ethertype != ETH_P_AARP && ethertype != ETH_P_IPX) ||
1164 compare_ether_addr(payload, bridge_tunnel_header) == 0)) {
1165 /* remove RFC1042 or Bridge-Tunnel encapsulation and
1166 * replace EtherType */
1167 skb_pull(skb, hdrlen + 6);
1168 memcpy(skb_push(skb, ETH_ALEN), src, ETH_ALEN);
1169 memcpy(skb_push(skb, ETH_ALEN), dst, ETH_ALEN);
1170 } else {
1171 struct ethhdr *ehdr;
1172 __be16 len;
ce3edf6d 1173
571ecf67
JB
1174 skb_pull(skb, hdrlen);
1175 len = htons(skb->len);
1176 ehdr = (struct ethhdr *) skb_push(skb, sizeof(struct ethhdr));
1177 memcpy(ehdr->h_dest, dst, ETH_ALEN);
1178 memcpy(ehdr->h_source, src, ETH_ALEN);
1179 ehdr->h_proto = len;
1180 }
76ee65bf
RR
1181 return 0;
1182}
571ecf67 1183
ce3edf6d
JB
1184/*
1185 * requires that rx->skb is a frame with ethernet header
1186 */
5cf121c3 1187static bool ieee80211_frame_allowed(struct ieee80211_rx_data *rx)
ce3edf6d 1188{
c97c23e3 1189 static const u8 pae_group_addr[ETH_ALEN] __aligned(2)
ce3edf6d
JB
1190 = { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x03 };
1191 struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
1192
1193 /*
1194 * Allow EAPOL frames to us/the PAE group address regardless
1195 * of whether the frame was encrypted or not.
1196 */
1197 if (ehdr->h_proto == htons(ETH_P_PAE) &&
1198 (compare_ether_addr(ehdr->h_dest, rx->dev->dev_addr) == 0 ||
1199 compare_ether_addr(ehdr->h_dest, pae_group_addr) == 0))
1200 return true;
1201
1202 if (ieee80211_802_1x_port_control(rx) ||
1203 ieee80211_drop_unencrypted(rx))
1204 return false;
1205
1206 return true;
1207}
1208
1209/*
1210 * requires that rx->skb is a frame with ethernet header
1211 */
76ee65bf 1212static void
5cf121c3 1213ieee80211_deliver_skb(struct ieee80211_rx_data *rx)
76ee65bf
RR
1214{
1215 struct net_device *dev = rx->dev;
1216 struct ieee80211_local *local = rx->local;
1217 struct sk_buff *skb, *xmit_skb;
1218 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
ce3edf6d
JB
1219 struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
1220 struct sta_info *dsta;
571ecf67 1221
76ee65bf
RR
1222 skb = rx->skb;
1223 xmit_skb = NULL;
571ecf67 1224
51fb61e7
JB
1225 if (local->bridge_packets && (sdata->vif.type == IEEE80211_IF_TYPE_AP ||
1226 sdata->vif.type == IEEE80211_IF_TYPE_VLAN) &&
5cf121c3 1227 (rx->flags & IEEE80211_RX_RA_MATCH)) {
ce3edf6d
JB
1228 if (is_multicast_ether_addr(ehdr->h_dest)) {
1229 /*
1230 * send multicast frames both to higher layers in
1231 * local net stack and back to the wireless medium
1232 */
76ee65bf
RR
1233 xmit_skb = skb_copy(skb, GFP_ATOMIC);
1234 if (!xmit_skb && net_ratelimit())
571ecf67
JB
1235 printk(KERN_DEBUG "%s: failed to clone "
1236 "multicast frame\n", dev->name);
1237 } else {
571ecf67 1238 dsta = sta_info_get(local, skb->data);
d0709a65 1239 if (dsta && dsta->sdata->dev == dev) {
ce3edf6d
JB
1240 /*
1241 * The destination station is associated to
1242 * this AP (in this VLAN), so send the frame
1243 * directly to it and do not pass it to local
1244 * net stack.
571ecf67 1245 */
76ee65bf 1246 xmit_skb = skb;
571ecf67
JB
1247 skb = NULL;
1248 }
571ecf67
JB
1249 }
1250 }
1251
1252 if (skb) {
1253 /* deliver to local stack */
1254 skb->protocol = eth_type_trans(skb, dev);
1255 memset(skb->cb, 0, sizeof(skb->cb));
1256 netif_rx(skb);
1257 }
1258
76ee65bf 1259 if (xmit_skb) {
571ecf67 1260 /* send to wireless media */
f831e909 1261 xmit_skb->protocol = htons(ETH_P_802_3);
ce3edf6d
JB
1262 skb_reset_network_header(xmit_skb);
1263 skb_reset_mac_header(xmit_skb);
76ee65bf 1264 dev_queue_xmit(xmit_skb);
571ecf67 1265 }
76ee65bf
RR
1266}
1267
49461622 1268static ieee80211_rx_result debug_noinline
5cf121c3 1269ieee80211_rx_h_amsdu(struct ieee80211_rx_data *rx)
fd4c7f2f
RR
1270{
1271 struct net_device *dev = rx->dev;
1272 struct ieee80211_local *local = rx->local;
1273 u16 fc, ethertype;
1274 u8 *payload;
1275 struct sk_buff *skb = rx->skb, *frame = NULL;
1276 const struct ethhdr *eth;
1277 int remaining, err;
1278 u8 dst[ETH_ALEN];
1279 u8 src[ETH_ALEN];
1280 DECLARE_MAC_BUF(mac);
1281
1282 fc = rx->fc;
1283 if (unlikely((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA))
9ae54c84 1284 return RX_CONTINUE;
fd4c7f2f
RR
1285
1286 if (unlikely(!WLAN_FC_DATA_PRESENT(fc)))
e4c26add 1287 return RX_DROP_MONITOR;
fd4c7f2f 1288
5cf121c3 1289 if (!(rx->flags & IEEE80211_RX_AMSDU))
9ae54c84 1290 return RX_CONTINUE;
fd4c7f2f
RR
1291
1292 err = ieee80211_data_to_8023(rx);
1293 if (unlikely(err))
e4c26add 1294 return RX_DROP_UNUSABLE;
fd4c7f2f
RR
1295
1296 skb->dev = dev;
1297
1298 dev->stats.rx_packets++;
1299 dev->stats.rx_bytes += skb->len;
1300
1301 /* skip the wrapping header */
1302 eth = (struct ethhdr *) skb_pull(skb, sizeof(struct ethhdr));
1303 if (!eth)
e4c26add 1304 return RX_DROP_UNUSABLE;
fd4c7f2f
RR
1305
1306 while (skb != frame) {
1307 u8 padding;
1308 __be16 len = eth->h_proto;
1309 unsigned int subframe_len = sizeof(struct ethhdr) + ntohs(len);
1310
1311 remaining = skb->len;
1312 memcpy(dst, eth->h_dest, ETH_ALEN);
1313 memcpy(src, eth->h_source, ETH_ALEN);
1314
1315 padding = ((4 - subframe_len) & 0x3);
1316 /* the last MSDU has no padding */
f4ea83dd 1317 if (subframe_len > remaining)
e4c26add 1318 return RX_DROP_UNUSABLE;
fd4c7f2f
RR
1319
1320 skb_pull(skb, sizeof(struct ethhdr));
1321 /* if last subframe reuse skb */
1322 if (remaining <= subframe_len + padding)
1323 frame = skb;
1324 else {
1325 frame = dev_alloc_skb(local->hw.extra_tx_headroom +
1326 subframe_len);
1327
1328 if (frame == NULL)
e4c26add 1329 return RX_DROP_UNUSABLE;
fd4c7f2f
RR
1330
1331 skb_reserve(frame, local->hw.extra_tx_headroom +
1332 sizeof(struct ethhdr));
1333 memcpy(skb_put(frame, ntohs(len)), skb->data,
1334 ntohs(len));
1335
1336 eth = (struct ethhdr *) skb_pull(skb, ntohs(len) +
1337 padding);
1338 if (!eth) {
fd4c7f2f 1339 dev_kfree_skb(frame);
e4c26add 1340 return RX_DROP_UNUSABLE;
fd4c7f2f
RR
1341 }
1342 }
1343
ce3edf6d 1344 skb_reset_network_header(frame);
fd4c7f2f
RR
1345 frame->dev = dev;
1346 frame->priority = skb->priority;
1347 rx->skb = frame;
1348
fd4c7f2f
RR
1349 payload = frame->data;
1350 ethertype = (payload[6] << 8) | payload[7];
1351
1352 if (likely((compare_ether_addr(payload, rfc1042_header) == 0 &&
ce3edf6d
JB
1353 ethertype != ETH_P_AARP && ethertype != ETH_P_IPX) ||
1354 compare_ether_addr(payload,
1355 bridge_tunnel_header) == 0)) {
fd4c7f2f
RR
1356 /* remove RFC1042 or Bridge-Tunnel
1357 * encapsulation and replace EtherType */
1358 skb_pull(frame, 6);
1359 memcpy(skb_push(frame, ETH_ALEN), src, ETH_ALEN);
1360 memcpy(skb_push(frame, ETH_ALEN), dst, ETH_ALEN);
1361 } else {
ce3edf6d
JB
1362 memcpy(skb_push(frame, sizeof(__be16)),
1363 &len, sizeof(__be16));
fd4c7f2f
RR
1364 memcpy(skb_push(frame, ETH_ALEN), src, ETH_ALEN);
1365 memcpy(skb_push(frame, ETH_ALEN), dst, ETH_ALEN);
1366 }
1367
ce3edf6d
JB
1368 if (!ieee80211_frame_allowed(rx)) {
1369 if (skb == frame) /* last frame */
e4c26add 1370 return RX_DROP_UNUSABLE;
ce3edf6d
JB
1371 dev_kfree_skb(frame);
1372 continue;
1373 }
fd4c7f2f
RR
1374
1375 ieee80211_deliver_skb(rx);
1376 }
1377
9ae54c84 1378 return RX_QUEUED;
fd4c7f2f
RR
1379}
1380
e32f85f7
LCC
1381static ieee80211_rx_result debug_noinline
1382ieee80211_rx_h_mesh_fwding(struct ieee80211_rx_data *rx)
1383{
1384 struct ieee80211_hdr *hdr;
1385 struct ieee80211s_hdr *mesh_hdr;
1386 unsigned int hdrlen;
1387 struct sk_buff *skb = rx->skb, *fwd_skb;
1388
1389 hdr = (struct ieee80211_hdr *) skb->data;
1390 hdrlen = ieee80211_hdrlen(hdr->frame_control);
1391 mesh_hdr = (struct ieee80211s_hdr *) (skb->data + hdrlen);
1392
1393 if (!ieee80211_is_data(hdr->frame_control))
1394 return RX_CONTINUE;
1395
1396 if (!mesh_hdr->ttl)
1397 /* illegal frame */
1398 return RX_DROP_MONITOR;
1399
1400 if (compare_ether_addr(rx->dev->dev_addr, hdr->addr3) == 0)
1401 return RX_CONTINUE;
1402
1403 mesh_hdr->ttl--;
1404
1405 if (rx->flags & IEEE80211_RX_RA_MATCH) {
1406 if (!mesh_hdr->ttl)
1407 IEEE80211_IFSTA_MESH_CTR_INC(&rx->sdata->u.sta,
1408 dropped_frames_ttl);
1409 else {
1410 struct ieee80211_hdr *fwd_hdr;
1411 fwd_skb = skb_copy(skb, GFP_ATOMIC);
1412
1413 if (!fwd_skb && net_ratelimit())
1414 printk(KERN_DEBUG "%s: failed to clone mesh frame\n",
1415 rx->dev->name);
1416
1417 fwd_hdr = (struct ieee80211_hdr *) fwd_skb->data;
1418 /*
1419 * Save TA to addr1 to send TA a path error if a
1420 * suitable next hop is not found
1421 */
1422 memcpy(fwd_hdr->addr1, fwd_hdr->addr2, ETH_ALEN);
1423 memcpy(fwd_hdr->addr2, rx->dev->dev_addr, ETH_ALEN);
1424 fwd_skb->dev = rx->local->mdev;
1425 fwd_skb->iif = rx->dev->ifindex;
1426 dev_queue_xmit(fwd_skb);
1427 }
1428 }
1429
1430 if (is_multicast_ether_addr(hdr->addr3) ||
1431 rx->dev->flags & IFF_PROMISC)
1432 return RX_CONTINUE;
1433 else
1434 return RX_DROP_MONITOR;
1435}
1436
1437
49461622 1438static ieee80211_rx_result debug_noinline
5cf121c3 1439ieee80211_rx_h_data(struct ieee80211_rx_data *rx)
76ee65bf
RR
1440{
1441 struct net_device *dev = rx->dev;
1442 u16 fc;
ce3edf6d 1443 int err;
76ee65bf
RR
1444
1445 fc = rx->fc;
1446 if (unlikely((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA))
9ae54c84 1447 return RX_CONTINUE;
76ee65bf
RR
1448
1449 if (unlikely(!WLAN_FC_DATA_PRESENT(fc)))
e4c26add 1450 return RX_DROP_MONITOR;
76ee65bf 1451
76ee65bf
RR
1452 err = ieee80211_data_to_8023(rx);
1453 if (unlikely(err))
e4c26add 1454 return RX_DROP_UNUSABLE;
76ee65bf 1455
ce3edf6d 1456 if (!ieee80211_frame_allowed(rx))
e4c26add 1457 return RX_DROP_MONITOR;
ce3edf6d 1458
76ee65bf
RR
1459 rx->skb->dev = dev;
1460
1461 dev->stats.rx_packets++;
1462 dev->stats.rx_bytes += rx->skb->len;
1463
1464 ieee80211_deliver_skb(rx);
571ecf67 1465
9ae54c84 1466 return RX_QUEUED;
571ecf67
JB
1467}
1468
49461622 1469static ieee80211_rx_result debug_noinline
5cf121c3 1470ieee80211_rx_h_ctrl(struct ieee80211_rx_data *rx)
71364716
RR
1471{
1472 struct ieee80211_local *local = rx->local;
1473 struct ieee80211_hw *hw = &local->hw;
1474 struct sk_buff *skb = rx->skb;
a7767f95 1475 struct ieee80211_bar *bar = (struct ieee80211_bar *)skb->data;
71364716
RR
1476 struct tid_ampdu_rx *tid_agg_rx;
1477 u16 start_seq_num;
1478 u16 tid;
1479
a7767f95 1480 if (likely(!ieee80211_is_ctl(bar->frame_control)))
9ae54c84 1481 return RX_CONTINUE;
71364716 1482
a7767f95 1483 if (ieee80211_is_back_req(bar->frame_control)) {
71364716 1484 if (!rx->sta)
9ae54c84 1485 return RX_CONTINUE;
71364716 1486 tid = le16_to_cpu(bar->control) >> 12;
cee24a3e
RR
1487 if (rx->sta->ampdu_mlme.tid_state_rx[tid]
1488 != HT_AGG_STATE_OPERATIONAL)
9ae54c84 1489 return RX_CONTINUE;
cee24a3e 1490 tid_agg_rx = rx->sta->ampdu_mlme.tid_rx[tid];
71364716
RR
1491
1492 start_seq_num = le16_to_cpu(bar->start_seq_num) >> 4;
1493
1494 /* reset session timer */
1495 if (tid_agg_rx->timeout) {
1496 unsigned long expires =
1497 jiffies + (tid_agg_rx->timeout / 1000) * HZ;
1498 mod_timer(&tid_agg_rx->session_timer, expires);
1499 }
1500
1501 /* manage reordering buffer according to requested */
1502 /* sequence number */
1503 rcu_read_lock();
1504 ieee80211_sta_manage_reorder_buf(hw, tid_agg_rx, NULL,
1505 start_seq_num, 1);
1506 rcu_read_unlock();
e4c26add 1507 return RX_DROP_UNUSABLE;
71364716
RR
1508 }
1509
9ae54c84 1510 return RX_CONTINUE;
71364716
RR
1511}
1512
49461622 1513static ieee80211_rx_result debug_noinline
5cf121c3 1514ieee80211_rx_h_mgmt(struct ieee80211_rx_data *rx)
571ecf67
JB
1515{
1516 struct ieee80211_sub_if_data *sdata;
1517
5cf121c3 1518 if (!(rx->flags & IEEE80211_RX_RA_MATCH))
e4c26add 1519 return RX_DROP_MONITOR;
571ecf67
JB
1520
1521 sdata = IEEE80211_DEV_TO_SUB_IF(rx->dev);
51fb61e7 1522 if ((sdata->vif.type == IEEE80211_IF_TYPE_STA ||
33b64eb2
LCC
1523 sdata->vif.type == IEEE80211_IF_TYPE_IBSS ||
1524 sdata->vif.type == IEEE80211_IF_TYPE_MESH_POINT) &&
ddd3d2be 1525 !(sdata->flags & IEEE80211_SDATA_USERSPACE_MLME))
5cf121c3 1526 ieee80211_sta_rx_mgmt(rx->dev, rx->skb, rx->status);
f9d540ee 1527 else
e4c26add 1528 return RX_DROP_MONITOR;
f9d540ee 1529
9ae54c84 1530 return RX_QUEUED;
571ecf67
JB
1531}
1532
571ecf67
JB
1533static void ieee80211_rx_michael_mic_report(struct net_device *dev,
1534 struct ieee80211_hdr *hdr,
5cf121c3 1535 struct ieee80211_rx_data *rx)
571ecf67 1536{
a7767f95
HH
1537 int keyidx;
1538 unsigned int hdrlen;
0795af57
JP
1539 DECLARE_MAC_BUF(mac);
1540 DECLARE_MAC_BUF(mac2);
571ecf67 1541
a7767f95 1542 hdrlen = ieee80211_hdrlen(hdr->frame_control);
571ecf67
JB
1543 if (rx->skb->len >= hdrlen + 4)
1544 keyidx = rx->skb->data[hdrlen + 3] >> 6;
1545 else
1546 keyidx = -1;
1547
8944b79f 1548 if (!rx->sta) {
aa0daf0e
JB
1549 /*
1550 * Some hardware seem to generate incorrect Michael MIC
1551 * reports; ignore them to avoid triggering countermeasures.
1552 */
571ecf67
JB
1553 goto ignore;
1554 }
1555
a7767f95 1556 if (!ieee80211_has_protected(hdr->frame_control))
571ecf67 1557 goto ignore;
571ecf67 1558
51fb61e7 1559 if (rx->sdata->vif.type == IEEE80211_IF_TYPE_AP && keyidx) {
aa0daf0e
JB
1560 /*
1561 * APs with pairwise keys should never receive Michael MIC
1562 * errors for non-zero keyidx because these are reserved for
1563 * group keys and only the AP is sending real multicast
1564 * frames in the BSS.
1565 */
eb063c17 1566 goto ignore;
571ecf67
JB
1567 }
1568
a7767f95
HH
1569 if (!ieee80211_is_data(hdr->frame_control) &&
1570 !ieee80211_is_auth(hdr->frame_control))
571ecf67 1571 goto ignore;
571ecf67 1572
eb063c17 1573 mac80211_ev_michael_mic_failure(rx->dev, keyidx, hdr);
571ecf67
JB
1574 ignore:
1575 dev_kfree_skb(rx->skb);
1576 rx->skb = NULL;
1577}
1578
5cf121c3
JB
1579/* TODO: use IEEE80211_RX_FRAGMENTED */
1580static void ieee80211_rx_cooked_monitor(struct ieee80211_rx_data *rx)
3d30d949
MW
1581{
1582 struct ieee80211_sub_if_data *sdata;
1583 struct ieee80211_local *local = rx->local;
1584 struct ieee80211_rtap_hdr {
1585 struct ieee80211_radiotap_header hdr;
1586 u8 flags;
1587 u8 rate;
1588 __le16 chan_freq;
1589 __le16 chan_flags;
1590 } __attribute__ ((packed)) *rthdr;
1591 struct sk_buff *skb = rx->skb, *skb2;
1592 struct net_device *prev_dev = NULL;
5cf121c3 1593 struct ieee80211_rx_status *status = rx->status;
3d30d949 1594
5cf121c3 1595 if (rx->flags & IEEE80211_RX_CMNTR_REPORTED)
3d30d949
MW
1596 goto out_free_skb;
1597
1598 if (skb_headroom(skb) < sizeof(*rthdr) &&
1599 pskb_expand_head(skb, sizeof(*rthdr), 0, GFP_ATOMIC))
1600 goto out_free_skb;
1601
1602 rthdr = (void *)skb_push(skb, sizeof(*rthdr));
1603 memset(rthdr, 0, sizeof(*rthdr));
1604 rthdr->hdr.it_len = cpu_to_le16(sizeof(*rthdr));
1605 rthdr->hdr.it_present =
1606 cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
1607 (1 << IEEE80211_RADIOTAP_RATE) |
1608 (1 << IEEE80211_RADIOTAP_CHANNEL));
1609
5cf121c3 1610 rthdr->rate = rx->rate->bitrate / 5;
3d30d949
MW
1611 rthdr->chan_freq = cpu_to_le16(status->freq);
1612
1613 if (status->band == IEEE80211_BAND_5GHZ)
1614 rthdr->chan_flags = cpu_to_le16(IEEE80211_CHAN_OFDM |
1615 IEEE80211_CHAN_5GHZ);
1616 else
1617 rthdr->chan_flags = cpu_to_le16(IEEE80211_CHAN_DYN |
1618 IEEE80211_CHAN_2GHZ);
1619
1620 skb_set_mac_header(skb, 0);
1621 skb->ip_summed = CHECKSUM_UNNECESSARY;
1622 skb->pkt_type = PACKET_OTHERHOST;
1623 skb->protocol = htons(ETH_P_802_2);
1624
1625 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
1626 if (!netif_running(sdata->dev))
1627 continue;
1628
1629 if (sdata->vif.type != IEEE80211_IF_TYPE_MNTR ||
1630 !(sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES))
1631 continue;
1632
1633 if (prev_dev) {
1634 skb2 = skb_clone(skb, GFP_ATOMIC);
1635 if (skb2) {
1636 skb2->dev = prev_dev;
1637 netif_rx(skb2);
1638 }
1639 }
1640
1641 prev_dev = sdata->dev;
1642 sdata->dev->stats.rx_packets++;
1643 sdata->dev->stats.rx_bytes += skb->len;
1644 }
1645
1646 if (prev_dev) {
1647 skb->dev = prev_dev;
1648 netif_rx(skb);
1649 skb = NULL;
1650 } else
1651 goto out_free_skb;
1652
5cf121c3 1653 rx->flags |= IEEE80211_RX_CMNTR_REPORTED;
3d30d949
MW
1654 return;
1655
1656 out_free_skb:
1657 dev_kfree_skb(skb);
1658}
1659
571ecf67 1660
8944b79f 1661static void ieee80211_invoke_rx_handlers(struct ieee80211_sub_if_data *sdata,
5cf121c3 1662 struct ieee80211_rx_data *rx,
8944b79f 1663 struct sk_buff *skb)
58905290 1664{
58905290
JB
1665 ieee80211_rx_result res = RX_DROP_MONITOR;
1666
8944b79f
JB
1667 rx->skb = skb;
1668 rx->sdata = sdata;
1669 rx->dev = sdata->dev;
1670
e32f85f7
LCC
1671#define CALL_RXH(rxh) \
1672 do { \
1673 res = rxh(rx); \
1674 if (res != RX_CONTINUE) \
1675 goto rxh_done; \
1676 } while (0);
49461622
JB
1677
1678 CALL_RXH(ieee80211_rx_h_passive_scan)
1679 CALL_RXH(ieee80211_rx_h_check)
1680 CALL_RXH(ieee80211_rx_h_decrypt)
1681 CALL_RXH(ieee80211_rx_h_sta_process)
1682 CALL_RXH(ieee80211_rx_h_defragment)
1683 CALL_RXH(ieee80211_rx_h_ps_poll)
1684 CALL_RXH(ieee80211_rx_h_michael_mic_verify)
1685 /* must be after MMIC verify so header is counted in MPDU mic */
1686 CALL_RXH(ieee80211_rx_h_remove_qos_control)
1687 CALL_RXH(ieee80211_rx_h_amsdu)
e32f85f7
LCC
1688 if (ieee80211_vif_is_mesh(&sdata->vif))
1689 CALL_RXH(ieee80211_rx_h_mesh_fwding);
49461622
JB
1690 CALL_RXH(ieee80211_rx_h_data)
1691 CALL_RXH(ieee80211_rx_h_ctrl)
1692 CALL_RXH(ieee80211_rx_h_mgmt)
1693
1694#undef CALL_RXH
1695
1696 rxh_done:
58905290
JB
1697 switch (res) {
1698 case RX_DROP_MONITOR:
49461622
JB
1699 I802_DEBUG_INC(sdata->local->rx_handlers_drop);
1700 if (rx->sta)
1701 rx->sta->rx_dropped++;
1702 /* fall through */
1703 case RX_CONTINUE:
3d30d949
MW
1704 ieee80211_rx_cooked_monitor(rx);
1705 break;
58905290 1706 case RX_DROP_UNUSABLE:
49461622
JB
1707 I802_DEBUG_INC(sdata->local->rx_handlers_drop);
1708 if (rx->sta)
1709 rx->sta->rx_dropped++;
58905290
JB
1710 dev_kfree_skb(rx->skb);
1711 break;
49461622
JB
1712 case RX_QUEUED:
1713 I802_DEBUG_INC(sdata->local->rx_handlers_queued);
1714 break;
58905290
JB
1715 }
1716}
1717
571ecf67
JB
1718/* main receive path */
1719
23a24def 1720static int prepare_for_handlers(struct ieee80211_sub_if_data *sdata,
5cf121c3 1721 u8 *bssid, struct ieee80211_rx_data *rx,
23a24def
JB
1722 struct ieee80211_hdr *hdr)
1723{
1724 int multicast = is_multicast_ether_addr(hdr->addr1);
1725
51fb61e7 1726 switch (sdata->vif.type) {
23a24def
JB
1727 case IEEE80211_IF_TYPE_STA:
1728 if (!bssid)
1729 return 0;
1730 if (!ieee80211_bssid_match(bssid, sdata->u.sta.bssid)) {
5cf121c3 1731 if (!(rx->flags & IEEE80211_RX_IN_SCAN))
23a24def 1732 return 0;
5cf121c3 1733 rx->flags &= ~IEEE80211_RX_RA_MATCH;
23a24def
JB
1734 } else if (!multicast &&
1735 compare_ether_addr(sdata->dev->dev_addr,
1736 hdr->addr1) != 0) {
4150c572 1737 if (!(sdata->dev->flags & IFF_PROMISC))
23a24def 1738 return 0;
5cf121c3 1739 rx->flags &= ~IEEE80211_RX_RA_MATCH;
23a24def
JB
1740 }
1741 break;
1742 case IEEE80211_IF_TYPE_IBSS:
1743 if (!bssid)
1744 return 0;
a7767f95 1745 if (ieee80211_is_beacon(hdr->frame_control)) {
87291c02
VK
1746 if (!rx->sta)
1747 rx->sta = ieee80211_ibss_add_sta(sdata->dev,
1748 rx->skb, bssid, hdr->addr2,
1749 BIT(rx->status->rate_idx));
9d9bf77d 1750 return 1;
87291c02 1751 }
9d9bf77d 1752 else if (!ieee80211_bssid_match(bssid, sdata->u.sta.bssid)) {
5cf121c3 1753 if (!(rx->flags & IEEE80211_RX_IN_SCAN))
23a24def 1754 return 0;
5cf121c3 1755 rx->flags &= ~IEEE80211_RX_RA_MATCH;
23a24def
JB
1756 } else if (!multicast &&
1757 compare_ether_addr(sdata->dev->dev_addr,
1758 hdr->addr1) != 0) {
4150c572 1759 if (!(sdata->dev->flags & IFF_PROMISC))
23a24def 1760 return 0;
5cf121c3 1761 rx->flags &= ~IEEE80211_RX_RA_MATCH;
23a24def
JB
1762 } else if (!rx->sta)
1763 rx->sta = ieee80211_ibss_add_sta(sdata->dev, rx->skb,
87291c02
VK
1764 bssid, hdr->addr2,
1765 BIT(rx->status->rate_idx));
23a24def 1766 break;
6032f934
JB
1767 case IEEE80211_IF_TYPE_MESH_POINT:
1768 if (!multicast &&
1769 compare_ether_addr(sdata->dev->dev_addr,
1770 hdr->addr1) != 0) {
1771 if (!(sdata->dev->flags & IFF_PROMISC))
1772 return 0;
1773
5cf121c3 1774 rx->flags &= ~IEEE80211_RX_RA_MATCH;
6032f934
JB
1775 }
1776 break;
fb1c1cd6 1777 case IEEE80211_IF_TYPE_VLAN:
23a24def
JB
1778 case IEEE80211_IF_TYPE_AP:
1779 if (!bssid) {
1780 if (compare_ether_addr(sdata->dev->dev_addr,
1781 hdr->addr1))
1782 return 0;
1783 } else if (!ieee80211_bssid_match(bssid,
1784 sdata->dev->dev_addr)) {
5cf121c3 1785 if (!(rx->flags & IEEE80211_RX_IN_SCAN))
23a24def 1786 return 0;
5cf121c3 1787 rx->flags &= ~IEEE80211_RX_RA_MATCH;
23a24def 1788 }
23a24def
JB
1789 break;
1790 case IEEE80211_IF_TYPE_WDS:
a7767f95 1791 if (bssid || !ieee80211_is_data(hdr->frame_control))
23a24def
JB
1792 return 0;
1793 if (compare_ether_addr(sdata->u.wds.remote_addr, hdr->addr2))
1794 return 0;
1795 break;
fb1c1cd6
JB
1796 case IEEE80211_IF_TYPE_MNTR:
1797 /* take everything */
1798 break;
a2897552 1799 case IEEE80211_IF_TYPE_INVALID:
fb1c1cd6
JB
1800 /* should never get here */
1801 WARN_ON(1);
1802 break;
23a24def
JB
1803 }
1804
1805 return 1;
1806}
1807
571ecf67 1808/*
6368e4b1
RR
1809 * This is the actual Rx frames handler. as it blongs to Rx path it must
1810 * be called with rcu_read_lock protection.
571ecf67 1811 */
71ebb4aa
RR
1812static void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw,
1813 struct sk_buff *skb,
1814 struct ieee80211_rx_status *status,
8318d78a 1815 struct ieee80211_rate *rate)
571ecf67
JB
1816{
1817 struct ieee80211_local *local = hw_to_local(hw);
1818 struct ieee80211_sub_if_data *sdata;
571ecf67 1819 struct ieee80211_hdr *hdr;
5cf121c3 1820 struct ieee80211_rx_data rx;
571ecf67 1821 u16 type;
6368e4b1 1822 int prepares;
8e6f0032
JB
1823 struct ieee80211_sub_if_data *prev = NULL;
1824 struct sk_buff *skb_new;
1825 u8 *bssid;
571ecf67
JB
1826
1827 hdr = (struct ieee80211_hdr *) skb->data;
1828 memset(&rx, 0, sizeof(rx));
1829 rx.skb = skb;
1830 rx.local = local;
1831
5cf121c3 1832 rx.status = status;
5cf121c3 1833 rx.rate = rate;
b2e7771e 1834 rx.fc = le16_to_cpu(hdr->frame_control);
571ecf67 1835 type = rx.fc & IEEE80211_FCTL_FTYPE;
72abd81b 1836
b2e7771e 1837 if (type == IEEE80211_FTYPE_DATA || type == IEEE80211_FTYPE_MGMT)
571ecf67 1838 local->dot11ReceivedFragmentCount++;
571ecf67 1839
8944b79f
JB
1840 rx.sta = sta_info_get(local, hdr->addr2);
1841 if (rx.sta) {
d0709a65
JB
1842 rx.sdata = rx.sta->sdata;
1843 rx.dev = rx.sta->sdata->dev;
b2e7771e 1844 }
571ecf67 1845
571ecf67 1846 if ((status->flag & RX_FLAG_MMIC_ERROR)) {
8944b79f 1847 ieee80211_rx_michael_mic_report(local->mdev, hdr, &rx);
d0709a65 1848 return;
571ecf67
JB
1849 }
1850
ece8eddd 1851 if (unlikely(local->sta_sw_scanning || local->sta_hw_scanning))
5cf121c3 1852 rx.flags |= IEEE80211_RX_IN_SCAN;
571ecf67 1853
38f3714d
JB
1854 ieee80211_parse_qos(&rx);
1855 ieee80211_verify_ip_alignment(&rx);
1856
571ecf67
JB
1857 skb = rx.skb;
1858
79010420 1859 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
2a8a9a88
JB
1860 if (!netif_running(sdata->dev))
1861 continue;
1862
51fb61e7 1863 if (sdata->vif.type == IEEE80211_IF_TYPE_MNTR)
b2e7771e
JB
1864 continue;
1865
51fb61e7 1866 bssid = ieee80211_get_bssid(hdr, skb->len, sdata->vif.type);
5cf121c3 1867 rx.flags |= IEEE80211_RX_RA_MATCH;
6368e4b1 1868 prepares = prepare_for_handlers(sdata, bssid, &rx, hdr);
23a24def 1869
6368e4b1 1870 if (!prepares)
23a24def 1871 continue;
8e6f0032 1872
340e11f3
JB
1873 /*
1874 * frame is destined for this interface, but if it's not
1875 * also for the previous one we handle that after the
1876 * loop to avoid copying the SKB once too much
1877 */
1878
1879 if (!prev) {
1880 prev = sdata;
1881 continue;
8e6f0032 1882 }
340e11f3
JB
1883
1884 /*
1885 * frame was destined for the previous interface
1886 * so invoke RX handlers for it
1887 */
1888
1889 skb_new = skb_copy(skb, GFP_ATOMIC);
1890 if (!skb_new) {
1891 if (net_ratelimit())
1892 printk(KERN_DEBUG "%s: failed to copy "
a4278e18 1893 "multicast frame for %s\n",
dd1cd4c6
JB
1894 wiphy_name(local->hw.wiphy),
1895 prev->dev->name);
340e11f3
JB
1896 continue;
1897 }
69f817b6 1898 rx.fc = le16_to_cpu(hdr->frame_control);
8944b79f 1899 ieee80211_invoke_rx_handlers(prev, &rx, skb_new);
8e6f0032 1900 prev = sdata;
571ecf67 1901 }
8e6f0032 1902 if (prev) {
69f817b6 1903 rx.fc = le16_to_cpu(hdr->frame_control);
8944b79f 1904 ieee80211_invoke_rx_handlers(prev, &rx, skb);
8e6f0032
JB
1905 } else
1906 dev_kfree_skb(skb);
571ecf67 1907}
6368e4b1 1908
b580781e
RR
1909#define SEQ_MODULO 0x1000
1910#define SEQ_MASK 0xfff
1911
1912static inline int seq_less(u16 sq1, u16 sq2)
1913{
1914 return (((sq1 - sq2) & SEQ_MASK) > (SEQ_MODULO >> 1));
1915}
1916
1917static inline u16 seq_inc(u16 sq)
1918{
1919 return ((sq + 1) & SEQ_MASK);
1920}
1921
1922static inline u16 seq_sub(u16 sq1, u16 sq2)
1923{
1924 return ((sq1 - sq2) & SEQ_MASK);
1925}
1926
1927
71364716
RR
1928/*
1929 * As it function blongs to Rx path it must be called with
1930 * the proper rcu_read_lock protection for its flow.
1931 */
b580781e
RR
1932u8 ieee80211_sta_manage_reorder_buf(struct ieee80211_hw *hw,
1933 struct tid_ampdu_rx *tid_agg_rx,
1934 struct sk_buff *skb, u16 mpdu_seq_num,
1935 int bar_req)
1936{
1937 struct ieee80211_local *local = hw_to_local(hw);
1938 struct ieee80211_rx_status status;
1939 u16 head_seq_num, buf_size;
1940 int index;
8318d78a
JB
1941 struct ieee80211_supported_band *sband;
1942 struct ieee80211_rate *rate;
b580781e
RR
1943
1944 buf_size = tid_agg_rx->buf_size;
1945 head_seq_num = tid_agg_rx->head_seq_num;
1946
1947 /* frame with out of date sequence number */
1948 if (seq_less(mpdu_seq_num, head_seq_num)) {
1949 dev_kfree_skb(skb);
1950 return 1;
1951 }
1952
1953 /* if frame sequence number exceeds our buffering window size or
1954 * block Ack Request arrived - release stored frames */
1955 if ((!seq_less(mpdu_seq_num, head_seq_num + buf_size)) || (bar_req)) {
1956 /* new head to the ordering buffer */
1957 if (bar_req)
1958 head_seq_num = mpdu_seq_num;
1959 else
1960 head_seq_num =
1961 seq_inc(seq_sub(mpdu_seq_num, buf_size));
1962 /* release stored frames up to new head to stack */
1963 while (seq_less(tid_agg_rx->head_seq_num, head_seq_num)) {
1964 index = seq_sub(tid_agg_rx->head_seq_num,
1965 tid_agg_rx->ssn)
1966 % tid_agg_rx->buf_size;
1967
1968 if (tid_agg_rx->reorder_buf[index]) {
1969 /* release the reordered frames to stack */
1970 memcpy(&status,
1971 tid_agg_rx->reorder_buf[index]->cb,
1972 sizeof(status));
8318d78a
JB
1973 sband = local->hw.wiphy->bands[status.band];
1974 rate = &sband->bitrates[status.rate_idx];
b580781e
RR
1975 __ieee80211_rx_handle_packet(hw,
1976 tid_agg_rx->reorder_buf[index],
9e72ebd6 1977 &status, rate);
b580781e
RR
1978 tid_agg_rx->stored_mpdu_num--;
1979 tid_agg_rx->reorder_buf[index] = NULL;
1980 }
1981 tid_agg_rx->head_seq_num =
1982 seq_inc(tid_agg_rx->head_seq_num);
1983 }
1984 if (bar_req)
1985 return 1;
1986 }
1987
1988 /* now the new frame is always in the range of the reordering */
1989 /* buffer window */
1990 index = seq_sub(mpdu_seq_num, tid_agg_rx->ssn)
1991 % tid_agg_rx->buf_size;
1992 /* check if we already stored this frame */
1993 if (tid_agg_rx->reorder_buf[index]) {
1994 dev_kfree_skb(skb);
1995 return 1;
1996 }
1997
1998 /* if arrived mpdu is in the right order and nothing else stored */
1999 /* release it immediately */
2000 if (mpdu_seq_num == tid_agg_rx->head_seq_num &&
2001 tid_agg_rx->stored_mpdu_num == 0) {
2002 tid_agg_rx->head_seq_num =
2003 seq_inc(tid_agg_rx->head_seq_num);
2004 return 0;
2005 }
2006
2007 /* put the frame in the reordering buffer */
2008 tid_agg_rx->reorder_buf[index] = skb;
2009 tid_agg_rx->stored_mpdu_num++;
2010 /* release the buffer until next missing frame */
2011 index = seq_sub(tid_agg_rx->head_seq_num, tid_agg_rx->ssn)
2012 % tid_agg_rx->buf_size;
2013 while (tid_agg_rx->reorder_buf[index]) {
2014 /* release the reordered frame back to stack */
2015 memcpy(&status, tid_agg_rx->reorder_buf[index]->cb,
2016 sizeof(status));
8318d78a
JB
2017 sband = local->hw.wiphy->bands[status.band];
2018 rate = &sband->bitrates[status.rate_idx];
b580781e 2019 __ieee80211_rx_handle_packet(hw, tid_agg_rx->reorder_buf[index],
9e72ebd6 2020 &status, rate);
b580781e
RR
2021 tid_agg_rx->stored_mpdu_num--;
2022 tid_agg_rx->reorder_buf[index] = NULL;
2023 tid_agg_rx->head_seq_num = seq_inc(tid_agg_rx->head_seq_num);
2024 index = seq_sub(tid_agg_rx->head_seq_num,
2025 tid_agg_rx->ssn) % tid_agg_rx->buf_size;
2026 }
2027 return 1;
2028}
2029
71ebb4aa
RR
2030static u8 ieee80211_rx_reorder_ampdu(struct ieee80211_local *local,
2031 struct sk_buff *skb)
b580781e
RR
2032{
2033 struct ieee80211_hw *hw = &local->hw;
2034 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
2035 struct sta_info *sta;
2036 struct tid_ampdu_rx *tid_agg_rx;
87228f57 2037 u16 sc;
b580781e 2038 u16 mpdu_seq_num;
182503ab 2039 u8 ret = 0;
b580781e
RR
2040 int tid;
2041
2042 sta = sta_info_get(local, hdr->addr2);
2043 if (!sta)
2044 return ret;
2045
b580781e
RR
2046 /* filter the QoS data rx stream according to
2047 * STA/TID and check if this STA/TID is on aggregation */
87228f57 2048 if (!ieee80211_is_data_qos(hdr->frame_control))
b580781e
RR
2049 goto end_reorder;
2050
238f74a2 2051 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
b580781e 2052
cee24a3e 2053 if (sta->ampdu_mlme.tid_state_rx[tid] != HT_AGG_STATE_OPERATIONAL)
b580781e
RR
2054 goto end_reorder;
2055
cee24a3e
RR
2056 tid_agg_rx = sta->ampdu_mlme.tid_rx[tid];
2057
2560b6e2
EG
2058 /* qos null data frames are excluded */
2059 if (unlikely(hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_NULLFUNC)))
b580781e
RR
2060 goto end_reorder;
2061
2062 /* new un-ordered ampdu frame - process it */
2063
2064 /* reset session timer */
2065 if (tid_agg_rx->timeout) {
2066 unsigned long expires =
2067 jiffies + (tid_agg_rx->timeout / 1000) * HZ;
2068 mod_timer(&tid_agg_rx->session_timer, expires);
2069 }
2070
2071 /* if this mpdu is fragmented - terminate rx aggregation session */
2072 sc = le16_to_cpu(hdr->seq_ctrl);
2073 if (sc & IEEE80211_SCTL_FRAG) {
d0709a65 2074 ieee80211_sta_stop_rx_ba_session(sta->sdata->dev, sta->addr,
b580781e
RR
2075 tid, 0, WLAN_REASON_QSTA_REQUIRE_SETUP);
2076 ret = 1;
2077 goto end_reorder;
2078 }
2079
2080 /* according to mpdu sequence number deal with reordering buffer */
2081 mpdu_seq_num = (sc & IEEE80211_SCTL_SEQ) >> 4;
2082 ret = ieee80211_sta_manage_reorder_buf(hw, tid_agg_rx, skb,
2083 mpdu_seq_num, 0);
d0709a65 2084 end_reorder:
b580781e
RR
2085 return ret;
2086}
2087
6368e4b1
RR
2088/*
2089 * This is the receive path handler. It is called by a low level driver when an
2090 * 802.11 MPDU is received from the hardware.
2091 */
2092void __ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb,
2093 struct ieee80211_rx_status *status)
2094{
2095 struct ieee80211_local *local = hw_to_local(hw);
8318d78a
JB
2096 struct ieee80211_rate *rate = NULL;
2097 struct ieee80211_supported_band *sband;
2098
2099 if (status->band < 0 ||
13d8fd2d 2100 status->band >= IEEE80211_NUM_BANDS) {
8318d78a
JB
2101 WARN_ON(1);
2102 return;
2103 }
2104
2105 sband = local->hw.wiphy->bands[status->band];
2106
2107 if (!sband ||
2108 status->rate_idx < 0 ||
2109 status->rate_idx >= sband->n_bitrates) {
2110 WARN_ON(1);
2111 return;
2112 }
2113
2114 rate = &sband->bitrates[status->rate_idx];
6368e4b1
RR
2115
2116 /*
2117 * key references and virtual interfaces are protected using RCU
2118 * and this requires that we are in a read-side RCU section during
2119 * receive processing
2120 */
2121 rcu_read_lock();
2122
2123 /*
2124 * Frames with failed FCS/PLCP checksum are not returned,
2125 * all other frames are returned without radiotap header
2126 * if it was previously present.
2127 * Also, frames with less than 16 bytes are dropped.
2128 */
8318d78a 2129 skb = ieee80211_rx_monitor(local, skb, status, rate);
6368e4b1
RR
2130 if (!skb) {
2131 rcu_read_unlock();
2132 return;
2133 }
2134
b580781e 2135 if (!ieee80211_rx_reorder_ampdu(local, skb))
9e72ebd6 2136 __ieee80211_rx_handle_packet(hw, skb, status, rate);
6368e4b1
RR
2137
2138 rcu_read_unlock();
2139}
571ecf67
JB
2140EXPORT_SYMBOL(__ieee80211_rx);
2141
2142/* This is a version of the rx handler that can be called from hard irq
2143 * context. Post the skb on the queue and schedule the tasklet */
2144void ieee80211_rx_irqsafe(struct ieee80211_hw *hw, struct sk_buff *skb,
2145 struct ieee80211_rx_status *status)
2146{
2147 struct ieee80211_local *local = hw_to_local(hw);
2148
2149 BUILD_BUG_ON(sizeof(struct ieee80211_rx_status) > sizeof(skb->cb));
2150
2151 skb->dev = local->mdev;
2152 /* copy status into skb->cb for use by tasklet */
2153 memcpy(skb->cb, status, sizeof(*status));
2154 skb->pkt_type = IEEE80211_RX_MSG;
2155 skb_queue_tail(&local->skb_queue, skb);
2156 tasklet_schedule(&local->tasklet);
2157}
2158EXPORT_SYMBOL(ieee80211_rx_irqsafe);