blob: 6db854505193ec178d60a657fa14534e8e5b25f5 [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"
Johannes Berg2c8dccc2008-04-08 15:14:40 -040022#include "led.h"
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +010023#include "mesh.h"
Johannes Berg571ecf62007-07-27 15:43:22 +020024#include "wep.h"
25#include "wpa.h"
26#include "tkip.h"
27#include "wme.h"
28
Ron Rindjunsky71364712007-12-25 17:00:36 +020029u8 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);
Johannes Bergb2e77712007-09-26 15:19:39 +020033/*
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{
Harvey Harrison182503a2008-06-22 16:45:29 -070064 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Bergb2e77712007-09-26 15:19:39 +020065
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;
Harvey Harrison87228f52008-06-11 14:21:59 -070070 if (ieee80211_is_ctl(hdr->frame_control) &&
71 !ieee80211_is_pspoll(hdr->frame_control) &&
72 !ieee80211_is_back_req(hdr->frame_control))
Johannes Bergb2e77712007-09-26 15:19:39 +020073 return 1;
74 return 0;
75}
76
Bruno Randolf601ae7f2008-05-08 19:22:43 +020077static 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;
146 pos++;
147
148 /* IEEE80211_RADIOTAP_RATE */
149 *pos = rate->bitrate / 5;
150 pos++;
151
152 /* IEEE80211_RADIOTAP_CHANNEL */
153 *(__le16 *)pos = cpu_to_le16(status->freq);
154 pos += 2;
155 if (status->band == IEEE80211_BAND_5GHZ)
156 *(__le16 *)pos = cpu_to_le16(IEEE80211_CHAN_OFDM |
157 IEEE80211_CHAN_5GHZ);
158 else
159 *(__le16 *)pos = cpu_to_le16(IEEE80211_CHAN_DYN |
160 IEEE80211_CHAN_2GHZ);
161 pos += 2;
162
163 /* IEEE80211_RADIOTAP_DBM_ANTSIGNAL */
164 if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM) {
165 *pos = status->signal;
166 rthdr->it_present |=
167 cpu_to_le32(1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL);
168 pos++;
169 }
170
171 /* IEEE80211_RADIOTAP_DBM_ANTNOISE */
172 if (local->hw.flags & IEEE80211_HW_NOISE_DBM) {
173 *pos = status->noise;
174 rthdr->it_present |=
175 cpu_to_le32(1 << IEEE80211_RADIOTAP_DBM_ANTNOISE);
176 pos++;
177 }
178
179 /* IEEE80211_RADIOTAP_LOCK_QUALITY is missing */
180
181 /* IEEE80211_RADIOTAP_ANTENNA */
182 *pos = status->antenna;
183 pos++;
184
185 /* IEEE80211_RADIOTAP_DB_ANTSIGNAL */
186 if (local->hw.flags & IEEE80211_HW_SIGNAL_DB) {
187 *pos = status->signal;
188 rthdr->it_present |=
189 cpu_to_le32(1 << IEEE80211_RADIOTAP_DB_ANTSIGNAL);
190 pos++;
191 }
192
193 /* IEEE80211_RADIOTAP_DB_ANTNOISE is not used */
194
195 /* IEEE80211_RADIOTAP_RX_FLAGS */
196 /* ensure 2 byte alignment for the 2 byte field as required */
197 if ((pos - (unsigned char *)rthdr) & 1)
198 pos++;
199 /* FIXME: when radiotap gets a 'bad PLCP' flag use it here */
200 if (status->flag & (RX_FLAG_FAILED_FCS_CRC | RX_FLAG_FAILED_PLCP_CRC))
201 *(__le16 *)pos |= cpu_to_le16(IEEE80211_RADIOTAP_F_RX_BADFCS);
202 pos += 2;
203}
204
Johannes Bergb2e77712007-09-26 15:19:39 +0200205/*
206 * This function copies a received frame to all monitor interfaces and
207 * returns a cleaned-up SKB that no longer includes the FCS nor the
208 * radiotap header the driver might have added.
209 */
210static struct sk_buff *
211ieee80211_rx_monitor(struct ieee80211_local *local, struct sk_buff *origskb,
Johannes Berg8318d782008-01-24 19:38:38 +0100212 struct ieee80211_rx_status *status,
213 struct ieee80211_rate *rate)
Johannes Bergb2e77712007-09-26 15:19:39 +0200214{
215 struct ieee80211_sub_if_data *sdata;
Johannes Bergb2e77712007-09-26 15:19:39 +0200216 int needed_headroom = 0;
Johannes Bergb2e77712007-09-26 15:19:39 +0200217 struct sk_buff *skb, *skb2;
218 struct net_device *prev_dev = NULL;
219 int present_fcs_len = 0;
220 int rtap_len = 0;
221
222 /*
223 * First, we may need to make a copy of the skb because
224 * (1) we need to modify it for radiotap (if not present), and
225 * (2) the other RX handlers will modify the skb we got.
226 *
227 * We don't need to, of course, if we aren't going to return
228 * the SKB because it has a bad FCS/PLCP checksum.
229 */
230 if (status->flag & RX_FLAG_RADIOTAP)
231 rtap_len = ieee80211_get_radiotap_len(origskb->data);
232 else
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200233 /* room for the radiotap header based on driver features */
234 needed_headroom = ieee80211_rx_radiotap_len(local, status);
Johannes Bergb2e77712007-09-26 15:19:39 +0200235
236 if (local->hw.flags & IEEE80211_HW_RX_INCLUDES_FCS)
237 present_fcs_len = FCS_LEN;
238
239 if (!local->monitors) {
240 if (should_drop_frame(status, origskb, present_fcs_len,
241 rtap_len)) {
242 dev_kfree_skb(origskb);
243 return NULL;
244 }
245
246 return remove_monitor_info(local, origskb, rtap_len);
247 }
248
249 if (should_drop_frame(status, origskb, present_fcs_len, rtap_len)) {
250 /* only need to expand headroom if necessary */
251 skb = origskb;
252 origskb = NULL;
253
254 /*
255 * This shouldn't trigger often because most devices have an
256 * RX header they pull before we get here, and that should
257 * be big enough for our radiotap information. We should
258 * probably export the length to drivers so that we can have
259 * them allocate enough headroom to start with.
260 */
261 if (skb_headroom(skb) < needed_headroom &&
Johannes Bergc49e5ea2007-12-11 21:33:42 +0100262 pskb_expand_head(skb, needed_headroom, 0, GFP_ATOMIC)) {
Johannes Bergb2e77712007-09-26 15:19:39 +0200263 dev_kfree_skb(skb);
264 return NULL;
265 }
266 } else {
267 /*
268 * Need to make a copy and possibly remove radiotap header
269 * and FCS from the original.
270 */
271 skb = skb_copy_expand(origskb, needed_headroom, 0, GFP_ATOMIC);
272
273 origskb = remove_monitor_info(local, origskb, rtap_len);
274
275 if (!skb)
276 return origskb;
277 }
278
279 /* if necessary, prepend radiotap information */
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200280 if (!(status->flag & RX_FLAG_RADIOTAP))
281 ieee80211_add_rx_radiotap_header(local, skb, status, rate,
282 needed_headroom);
Johannes Bergb2e77712007-09-26 15:19:39 +0200283
Johannes Bergce3edf6d02007-12-19 01:31:22 +0100284 skb_reset_mac_header(skb);
Johannes Bergb2e77712007-09-26 15:19:39 +0200285 skb->ip_summed = CHECKSUM_UNNECESSARY;
286 skb->pkt_type = PACKET_OTHERHOST;
287 skb->protocol = htons(ETH_P_802_2);
288
289 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
290 if (!netif_running(sdata->dev))
291 continue;
292
Johannes Berg51fb61e2007-12-19 01:31:27 +0100293 if (sdata->vif.type != IEEE80211_IF_TYPE_MNTR)
Johannes Bergb2e77712007-09-26 15:19:39 +0200294 continue;
295
Michael Wu3d30d942008-01-31 19:48:27 +0100296 if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES)
297 continue;
298
Johannes Bergb2e77712007-09-26 15:19:39 +0200299 if (prev_dev) {
300 skb2 = skb_clone(skb, GFP_ATOMIC);
301 if (skb2) {
302 skb2->dev = prev_dev;
303 netif_rx(skb2);
304 }
305 }
306
307 prev_dev = sdata->dev;
308 sdata->dev->stats.rx_packets++;
309 sdata->dev->stats.rx_bytes += skb->len;
310 }
311
312 if (prev_dev) {
313 skb->dev = prev_dev;
314 netif_rx(skb);
315 } else
316 dev_kfree_skb(skb);
317
318 return origskb;
319}
320
321
Johannes Berg5cf121c2008-02-25 16:27:43 +0100322static void ieee80211_parse_qos(struct ieee80211_rx_data *rx)
Johannes Berg6e0d1142007-07-27 15:43:22 +0200323{
Harvey Harrison238f74a2008-07-02 11:05:34 -0700324 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200325 int tid;
326
327 /* does the frame have a qos control field? */
Harvey Harrison238f74a2008-07-02 11:05:34 -0700328 if (ieee80211_is_data_qos(hdr->frame_control)) {
329 u8 *qc = ieee80211_get_qos_ctl(hdr);
Johannes Berg6e0d1142007-07-27 15:43:22 +0200330 /* frame has qos control */
Harvey Harrison238f74a2008-07-02 11:05:34 -0700331 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
332 if (*qc & IEEE80211_QOS_CONTROL_A_MSDU_PRESENT)
Johannes Berg5cf121c2008-02-25 16:27:43 +0100333 rx->flags |= IEEE80211_RX_AMSDU;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +0200334 else
Johannes Berg5cf121c2008-02-25 16:27:43 +0100335 rx->flags &= ~IEEE80211_RX_AMSDU;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200336 } else {
Johannes Berg1411f9b2008-07-10 10:11:02 +0200337 /*
338 * IEEE 802.11-2007, 7.1.3.4.1 ("Sequence Number field"):
339 *
340 * Sequence numbers for management frames, QoS data
341 * frames with a broadcast/multicast address in the
342 * Address 1 field, and all non-QoS data frames sent
343 * by QoS STAs are assigned using an additional single
344 * modulo-4096 counter, [...]
345 *
346 * We also use that counter for non-QoS STAs.
347 */
348 tid = NUM_RX_DATA_QUEUES - 1;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200349 }
Johannes Berg52865df2007-07-27 15:43:22 +0200350
Johannes Berg5cf121c2008-02-25 16:27:43 +0100351 rx->queue = tid;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200352 /* Set skb->priority to 1d tag if highest order bit of TID is not set.
353 * For now, set skb->priority to 0 for other cases. */
354 rx->skb->priority = (tid > 7) ? 0 : tid;
Johannes Berg38f37142008-01-29 17:07:43 +0100355}
Johannes Berg6e0d1142007-07-27 15:43:22 +0200356
Johannes Berg5cf121c2008-02-25 16:27:43 +0100357static void ieee80211_verify_ip_alignment(struct ieee80211_rx_data *rx)
Johannes Berg38f37142008-01-29 17:07:43 +0100358{
359#ifdef CONFIG_MAC80211_DEBUG_PACKET_ALIGNMENT
Harvey Harrisona7767f92008-07-02 16:30:51 -0700360 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg38f37142008-01-29 17:07:43 +0100361 int hdrlen;
362
Harvey Harrisona7767f92008-07-02 16:30:51 -0700363 if (!ieee80211_is_data_present(hdr->frame_control))
Johannes Berg38f37142008-01-29 17:07:43 +0100364 return;
365
366 /*
367 * Drivers are required to align the payload data in a way that
368 * guarantees that the contained IP header is aligned to a four-
369 * byte boundary. In the case of regular frames, this simply means
370 * aligning the payload to a four-byte boundary (because either
371 * the IP header is directly contained, or IV/RFC1042 headers that
372 * have a length divisible by four are in front of it.
373 *
374 * With A-MSDU frames, however, the payload data address must
375 * yield two modulo four because there are 14-byte 802.3 headers
376 * within the A-MSDU frames that push the IP header further back
377 * to a multiple of four again. Thankfully, the specs were sane
378 * enough this time around to require padding each A-MSDU subframe
379 * to a length that is a multiple of four.
380 *
381 * Padding like atheros hardware adds which is inbetween the 802.11
382 * header and the payload is not supported, the driver is required
383 * to move the 802.11 header further back in that case.
384 */
Harvey Harrisona7767f92008-07-02 16:30:51 -0700385 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berg5cf121c2008-02-25 16:27:43 +0100386 if (rx->flags & IEEE80211_RX_AMSDU)
Johannes Berg38f37142008-01-29 17:07:43 +0100387 hdrlen += ETH_HLEN;
388 WARN_ON_ONCE(((unsigned long)(rx->skb->data + hdrlen)) & 3);
389#endif
Johannes Berg6e0d1142007-07-27 15:43:22 +0200390}
391
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +0200392
Johannes Berg571ecf62007-07-27 15:43:22 +0200393/* rx handlers */
394
Johannes Berg49461622008-06-30 15:10:45 +0200395static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100396ieee80211_rx_h_passive_scan(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +0200397{
398 struct ieee80211_local *local = rx->local;
399 struct sk_buff *skb = rx->skb;
400
Zhu Yiece8edd2007-11-22 10:53:21 +0800401 if (unlikely(local->sta_hw_scanning))
Johannes Berg5cf121c2008-02-25 16:27:43 +0100402 return ieee80211_sta_rx_scan(rx->dev, skb, rx->status);
Zhu Yiece8edd2007-11-22 10:53:21 +0800403
404 if (unlikely(local->sta_sw_scanning)) {
405 /* drop all the other packets during a software scan anyway */
Johannes Berg5cf121c2008-02-25 16:27:43 +0100406 if (ieee80211_sta_rx_scan(rx->dev, skb, rx->status)
Johannes Berg9ae54c82008-01-31 19:48:20 +0100407 != RX_QUEUED)
Zhu Yiece8edd2007-11-22 10:53:21 +0800408 dev_kfree_skb(skb);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100409 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200410 }
411
Johannes Berg5cf121c2008-02-25 16:27:43 +0100412 if (unlikely(rx->flags & IEEE80211_RX_IN_SCAN)) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200413 /* scanning finished during invoking of handlers */
414 I802_DEBUG_INC(local->rx_handlers_drop_passive_scan);
Johannes Berge4c26ad2008-01-31 19:48:21 +0100415 return RX_DROP_UNUSABLE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200416 }
417
Johannes Berg9ae54c82008-01-31 19:48:20 +0100418 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200419}
420
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100421static ieee80211_rx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100422ieee80211_rx_mesh_check(struct ieee80211_rx_data *rx)
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100423{
Harvey Harrisona7767f92008-07-02 16:30:51 -0700424 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
425 unsigned int hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Bergd6d1a5a2008-02-25 16:24:38 +0100426
Harvey Harrisona7767f92008-07-02 16:30:51 -0700427 if (ieee80211_is_data(hdr->frame_control)) {
428 if (!ieee80211_has_a4(hdr->frame_control))
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100429 return RX_DROP_MONITOR;
430 if (memcmp(hdr->addr4, rx->dev->dev_addr, ETH_ALEN) == 0)
431 return RX_DROP_MONITOR;
432 }
433
434 /* If there is not an established peer link and this is not a peer link
435 * establisment frame, beacon or probe, drop the frame.
436 */
437
Luis Carlos Cobob4e08ea2008-02-29 15:46:08 -0800438 if (!rx->sta || sta_plink_state(rx->sta) != PLINK_ESTAB) {
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100439 struct ieee80211_mgmt *mgmt;
Johannes Bergd6d1a5a2008-02-25 16:24:38 +0100440
Harvey Harrisona7767f92008-07-02 16:30:51 -0700441 if (!ieee80211_is_mgmt(hdr->frame_control))
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100442 return RX_DROP_MONITOR;
443
Harvey Harrisona7767f92008-07-02 16:30:51 -0700444 if (ieee80211_is_action(hdr->frame_control)) {
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100445 mgmt = (struct ieee80211_mgmt *)hdr;
446 if (mgmt->u.action.category != PLINK_CATEGORY)
447 return RX_DROP_MONITOR;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100448 return RX_CONTINUE;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100449 }
450
Harvey Harrisona7767f92008-07-02 16:30:51 -0700451 if (ieee80211_is_probe_req(hdr->frame_control) ||
452 ieee80211_is_probe_resp(hdr->frame_control) ||
453 ieee80211_is_beacon(hdr->frame_control))
454 return RX_CONTINUE;
455
456 return RX_DROP_MONITOR;
457
458 }
459
460#define msh_h_get(h, l) ((struct ieee80211s_hdr *) ((u8 *)h + l))
461
462 if (ieee80211_is_data(hdr->frame_control) &&
463 is_multicast_ether_addr(hdr->addr1) &&
464 mesh_rmc_check(hdr->addr4, msh_h_get(hdr, hdrlen), rx->dev))
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100465 return RX_DROP_MONITOR;
Johannes Berg902acc72008-02-23 15:17:19 +0100466#undef msh_h_get
Johannes Bergd6d1a5a2008-02-25 16:24:38 +0100467
Johannes Berg902acc72008-02-23 15:17:19 +0100468 return RX_CONTINUE;
469}
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100470
471
Johannes Berg49461622008-06-30 15:10:45 +0200472static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100473ieee80211_rx_h_check(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +0200474{
Harvey Harrisona7767f92008-07-02 16:30:51 -0700475 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg571ecf62007-07-27 15:43:22 +0200476
477 /* Drop duplicate 802.11 retransmissions (IEEE 802.11 Chap. 9.2.9) */
478 if (rx->sta && !is_multicast_ether_addr(hdr->addr1)) {
Harvey Harrisona7767f92008-07-02 16:30:51 -0700479 if (unlikely(ieee80211_has_retry(hdr->frame_control) &&
Johannes Berg5cf121c2008-02-25 16:27:43 +0100480 rx->sta->last_seq_ctrl[rx->queue] ==
Johannes Berg571ecf62007-07-27 15:43:22 +0200481 hdr->seq_ctrl)) {
Johannes Berg5cf121c2008-02-25 16:27:43 +0100482 if (rx->flags & IEEE80211_RX_RA_MATCH) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200483 rx->local->dot11FrameDuplicateCount++;
484 rx->sta->num_duplicates++;
485 }
Johannes Berge4c26ad2008-01-31 19:48:21 +0100486 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +0200487 } else
Johannes Berg5cf121c2008-02-25 16:27:43 +0100488 rx->sta->last_seq_ctrl[rx->queue] = hdr->seq_ctrl;
Johannes Berg571ecf62007-07-27 15:43:22 +0200489 }
490
Johannes Berg571ecf62007-07-27 15:43:22 +0200491 if (unlikely(rx->skb->len < 16)) {
492 I802_DEBUG_INC(rx->local->rx_handlers_drop_short);
Johannes Berge4c26ad2008-01-31 19:48:21 +0100493 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +0200494 }
495
Johannes Berg571ecf62007-07-27 15:43:22 +0200496 /* Drop disallowed frame classes based on STA auth/assoc state;
497 * IEEE 802.11, Chap 5.5.
498 *
499 * 80211.o does filtering only based on association state, i.e., it
500 * drops Class 3 frames from not associated stations. hostapd sends
501 * deauth/disassoc frames when needed. In addition, hostapd is
502 * responsible for filtering on both auth and assoc states.
503 */
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100504
Johannes Berg902acc72008-02-23 15:17:19 +0100505 if (ieee80211_vif_is_mesh(&rx->sdata->vif))
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100506 return ieee80211_rx_mesh_check(rx);
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100507
Harvey Harrisona7767f92008-07-02 16:30:51 -0700508 if (unlikely((ieee80211_is_data(hdr->frame_control) ||
509 ieee80211_is_pspoll(hdr->frame_control)) &&
Johannes Berg51fb61e2007-12-19 01:31:27 +0100510 rx->sdata->vif.type != IEEE80211_IF_TYPE_IBSS &&
Johannes Berg07346f812008-05-03 01:02:02 +0200511 (!rx->sta || !test_sta_flags(rx->sta, WLAN_STA_ASSOC)))) {
Harvey Harrisona7767f92008-07-02 16:30:51 -0700512 if ((!ieee80211_has_fromds(hdr->frame_control) &&
513 !ieee80211_has_tods(hdr->frame_control) &&
514 ieee80211_is_data(hdr->frame_control)) ||
515 !(rx->flags & IEEE80211_RX_RA_MATCH)) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200516 /* Drop IBSS frames and frames for other hosts
517 * silently. */
Johannes Berge4c26ad2008-01-31 19:48:21 +0100518 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +0200519 }
520
Johannes Berge4c26ad2008-01-31 19:48:21 +0100521 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +0200522 }
523
Johannes Berg9ae54c82008-01-31 19:48:20 +0100524 return RX_CONTINUE;
Johannes Berg570bd532007-07-27 15:43:22 +0200525}
526
527
Johannes Berg49461622008-06-30 15:10:45 +0200528static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100529ieee80211_rx_h_decrypt(struct ieee80211_rx_data *rx)
Johannes Berg570bd532007-07-27 15:43:22 +0200530{
Harvey Harrisona7767f92008-07-02 16:30:51 -0700531 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg3017b802007-08-28 17:01:53 -0400532 int keyidx;
533 int hdrlen;
Johannes Berge4c26ad2008-01-31 19:48:21 +0100534 ieee80211_rx_result result = RX_DROP_UNUSABLE;
Johannes Bergd4e46a32007-09-14 11:10:24 -0400535 struct ieee80211_key *stakey = NULL;
Johannes Berg570bd532007-07-27 15:43:22 +0200536
Johannes Berg3017b802007-08-28 17:01:53 -0400537 /*
538 * Key selection 101
539 *
540 * There are three types of keys:
541 * - GTK (group keys)
542 * - PTK (pairwise keys)
543 * - STK (station-to-station pairwise keys)
544 *
545 * When selecting a key, we have to distinguish between multicast
546 * (including broadcast) and unicast frames, the latter can only
547 * use PTKs and STKs while the former always use GTKs. Unless, of
548 * course, actual WEP keys ("pre-RSNA") are used, then unicast
549 * frames can also use key indizes like GTKs. Hence, if we don't
550 * have a PTK/STK we check the key index for a WEP key.
551 *
Johannes Berg8dc06a12007-08-28 17:01:55 -0400552 * Note that in a regular BSS, multicast frames are sent by the
553 * AP only, associated stations unicast the frame to the AP first
554 * which then multicasts it on their behalf.
555 *
Johannes Berg3017b802007-08-28 17:01:53 -0400556 * There is also a slight problem in IBSS mode: GTKs are negotiated
557 * with each station, that is something we don't currently handle.
Johannes Berg8dc06a12007-08-28 17:01:55 -0400558 * The spec seems to expect that one negotiates the same key with
559 * every station but there's no such requirement; VLANs could be
560 * possible.
Johannes Berg3017b802007-08-28 17:01:53 -0400561 */
Johannes Berg571ecf62007-07-27 15:43:22 +0200562
Harvey Harrisona7767f92008-07-02 16:30:51 -0700563 if (!ieee80211_has_protected(hdr->frame_control))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100564 return RX_CONTINUE;
Johannes Berg3017b802007-08-28 17:01:53 -0400565
566 /*
Johannes Berg1990af82007-09-26 17:53:15 +0200567 * No point in finding a key and decrypting if the frame is neither
Johannes Berg3017b802007-08-28 17:01:53 -0400568 * addressed to us nor a multicast frame.
569 */
Johannes Berg5cf121c2008-02-25 16:27:43 +0100570 if (!(rx->flags & IEEE80211_RX_RA_MATCH))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100571 return RX_CONTINUE;
Johannes Berg3017b802007-08-28 17:01:53 -0400572
Johannes Bergd4e46a32007-09-14 11:10:24 -0400573 if (rx->sta)
574 stakey = rcu_dereference(rx->sta->key);
575
576 if (!is_multicast_ether_addr(hdr->addr1) && stakey) {
577 rx->key = stakey;
Johannes Berg571ecf62007-07-27 15:43:22 +0200578 } else {
Johannes Berg3017b802007-08-28 17:01:53 -0400579 /*
580 * The device doesn't give us the IV so we won't be
581 * able to look up the key. That's ok though, we
582 * don't need to decrypt the frame, we just won't
583 * be able to keep statistics accurate.
584 * Except for key threshold notifications, should
585 * we somehow allow the driver to tell us which key
586 * the hardware used if this flag is set?
587 */
Johannes Berg5cf121c2008-02-25 16:27:43 +0100588 if ((rx->status->flag & RX_FLAG_DECRYPTED) &&
589 (rx->status->flag & RX_FLAG_IV_STRIPPED))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100590 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200591
Harvey Harrisona7767f92008-07-02 16:30:51 -0700592 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berg571ecf62007-07-27 15:43:22 +0200593
Johannes Berg3017b802007-08-28 17:01:53 -0400594 if (rx->skb->len < 8 + hdrlen)
Johannes Berge4c26ad2008-01-31 19:48:21 +0100595 return RX_DROP_UNUSABLE; /* TODO: count this? */
Johannes Berg571ecf62007-07-27 15:43:22 +0200596
Johannes Berg3017b802007-08-28 17:01:53 -0400597 /*
598 * no need to call ieee80211_wep_get_keyidx,
599 * it verifies a bunch of things we've done already
600 */
601 keyidx = rx->skb->data[hdrlen + 3] >> 6;
602
Johannes Bergd4e46a32007-09-14 11:10:24 -0400603 rx->key = rcu_dereference(rx->sdata->keys[keyidx]);
Johannes Berg3017b802007-08-28 17:01:53 -0400604
605 /*
606 * RSNA-protected unicast frames should always be sent with
607 * pairwise or station-to-station keys, but for WEP we allow
608 * using a key index as well.
609 */
Johannes Berg8f20fc22007-08-28 17:01:54 -0400610 if (rx->key && rx->key->conf.alg != ALG_WEP &&
Johannes Berg3017b802007-08-28 17:01:53 -0400611 !is_multicast_ether_addr(hdr->addr1))
612 rx->key = NULL;
Johannes Berg571ecf62007-07-27 15:43:22 +0200613 }
614
Johannes Berg3017b802007-08-28 17:01:53 -0400615 if (rx->key) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200616 rx->key->tx_rx_count++;
Johannes Berg011bfcc2007-09-17 01:29:25 -0400617 /* TODO: add threshold stuff again */
Johannes Berg1990af82007-09-26 17:53:15 +0200618 } else {
Johannes Berge4c26ad2008-01-31 19:48:21 +0100619 return RX_DROP_MONITOR;
Johannes Berg70f08762007-09-26 17:53:14 +0200620 }
621
Johannes Berg1990af82007-09-26 17:53:15 +0200622 /* Check for weak IVs if possible */
623 if (rx->sta && rx->key->conf.alg == ALG_WEP &&
Harvey Harrisona7767f92008-07-02 16:30:51 -0700624 ieee80211_is_data(hdr->frame_control) &&
Johannes Berg5cf121c2008-02-25 16:27:43 +0100625 (!(rx->status->flag & RX_FLAG_IV_STRIPPED) ||
626 !(rx->status->flag & RX_FLAG_DECRYPTED)) &&
Johannes Berg1990af82007-09-26 17:53:15 +0200627 ieee80211_wep_is_weak_iv(rx->skb, rx->key))
628 rx->sta->wep_weak_iv_count++;
629
Johannes Berg70f08762007-09-26 17:53:14 +0200630 switch (rx->key->conf.alg) {
631 case ALG_WEP:
Mattias Nisslere2f036d2007-10-07 16:35:31 +0200632 result = ieee80211_crypto_wep_decrypt(rx);
633 break;
Johannes Berg70f08762007-09-26 17:53:14 +0200634 case ALG_TKIP:
Mattias Nisslere2f036d2007-10-07 16:35:31 +0200635 result = ieee80211_crypto_tkip_decrypt(rx);
636 break;
Johannes Berg70f08762007-09-26 17:53:14 +0200637 case ALG_CCMP:
Mattias Nisslere2f036d2007-10-07 16:35:31 +0200638 result = ieee80211_crypto_ccmp_decrypt(rx);
639 break;
Johannes Berg70f08762007-09-26 17:53:14 +0200640 }
641
Mattias Nisslere2f036d2007-10-07 16:35:31 +0200642 /* either the frame has been decrypted or will be dropped */
Johannes Berg5cf121c2008-02-25 16:27:43 +0100643 rx->status->flag |= RX_FLAG_DECRYPTED;
Mattias Nisslere2f036d2007-10-07 16:35:31 +0200644
645 return result;
Johannes Berg70f08762007-09-26 17:53:14 +0200646}
647
Johannes Berg571ecf62007-07-27 15:43:22 +0200648static void ap_sta_ps_start(struct net_device *dev, struct sta_info *sta)
649{
650 struct ieee80211_sub_if_data *sdata;
Joe Perches0795af52007-10-03 17:59:30 -0700651 DECLARE_MAC_BUF(mac);
652
Johannes Bergd0709a62008-02-25 16:27:46 +0100653 sdata = sta->sdata;
Johannes Berg571ecf62007-07-27 15:43:22 +0200654
Johannes Berg3e122be2008-07-09 14:40:34 +0200655 atomic_inc(&sdata->bss->num_sta_ps);
Johannes Berg07346f812008-05-03 01:02:02 +0200656 set_and_clear_sta_flags(sta, WLAN_STA_PS, WLAN_STA_PSPOLL);
Johannes Berg571ecf62007-07-27 15:43:22 +0200657#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Joe Perches0795af52007-10-03 17:59:30 -0700658 printk(KERN_DEBUG "%s: STA %s aid %d enters power save mode\n",
659 dev->name, print_mac(mac, sta->addr), sta->aid);
Johannes Berg571ecf62007-07-27 15:43:22 +0200660#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
661}
662
663static int ap_sta_ps_end(struct net_device *dev, struct sta_info *sta)
664{
665 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
666 struct sk_buff *skb;
667 int sent = 0;
668 struct ieee80211_sub_if_data *sdata;
Johannes Berge039fa42008-05-15 12:55:29 +0200669 struct ieee80211_tx_info *info;
Joe Perches0795af52007-10-03 17:59:30 -0700670 DECLARE_MAC_BUF(mac);
Johannes Berg571ecf62007-07-27 15:43:22 +0200671
Johannes Bergd0709a62008-02-25 16:27:46 +0100672 sdata = sta->sdata;
Johannes Berg004c8722008-02-20 11:21:35 +0100673
Johannes Berg3e122be2008-07-09 14:40:34 +0200674 atomic_dec(&sdata->bss->num_sta_ps);
Johannes Berg004c8722008-02-20 11:21:35 +0100675
Johannes Berg07346f812008-05-03 01:02:02 +0200676 clear_sta_flags(sta, WLAN_STA_PS | WLAN_STA_PSPOLL);
Johannes Berg004c8722008-02-20 11:21:35 +0100677
678 if (!skb_queue_empty(&sta->ps_tx_buf))
679 sta_info_clear_tim_bit(sta);
680
Johannes Berg571ecf62007-07-27 15:43:22 +0200681#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Joe Perches0795af52007-10-03 17:59:30 -0700682 printk(KERN_DEBUG "%s: STA %s aid %d exits power save mode\n",
683 dev->name, print_mac(mac, sta->addr), sta->aid);
Johannes Berg571ecf62007-07-27 15:43:22 +0200684#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
Johannes Berg004c8722008-02-20 11:21:35 +0100685
Johannes Berg571ecf62007-07-27 15:43:22 +0200686 /* Send all buffered frames to the station */
687 while ((skb = skb_dequeue(&sta->tx_filtered)) != NULL) {
Johannes Berge039fa42008-05-15 12:55:29 +0200688 info = IEEE80211_SKB_CB(skb);
Johannes Berg571ecf62007-07-27 15:43:22 +0200689 sent++;
Johannes Berge039fa42008-05-15 12:55:29 +0200690 info->flags |= IEEE80211_TX_CTL_REQUEUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200691 dev_queue_xmit(skb);
692 }
693 while ((skb = skb_dequeue(&sta->ps_tx_buf)) != NULL) {
Johannes Berge039fa42008-05-15 12:55:29 +0200694 info = IEEE80211_SKB_CB(skb);
Johannes Berg571ecf62007-07-27 15:43:22 +0200695 local->total_ps_buffered--;
696 sent++;
697#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Joe Perches0795af52007-10-03 17:59:30 -0700698 printk(KERN_DEBUG "%s: STA %s aid %d send PS frame "
Johannes Berg571ecf62007-07-27 15:43:22 +0200699 "since STA not sleeping anymore\n", dev->name,
Joe Perches0795af52007-10-03 17:59:30 -0700700 print_mac(mac, sta->addr), sta->aid);
Johannes Berg571ecf62007-07-27 15:43:22 +0200701#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
Johannes Berge039fa42008-05-15 12:55:29 +0200702 info->flags |= IEEE80211_TX_CTL_REQUEUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200703 dev_queue_xmit(skb);
704 }
705
706 return sent;
707}
708
Johannes Berg49461622008-06-30 15:10:45 +0200709static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100710ieee80211_rx_h_sta_process(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +0200711{
712 struct sta_info *sta = rx->sta;
713 struct net_device *dev = rx->dev;
Harvey Harrisona7767f92008-07-02 16:30:51 -0700714 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg571ecf62007-07-27 15:43:22 +0200715
716 if (!sta)
Johannes Berg9ae54c82008-01-31 19:48:20 +0100717 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200718
719 /* Update last_rx only for IBSS packets which are for the current
720 * BSSID to avoid keeping the current IBSS network alive in cases where
721 * other STAs are using different BSSID. */
Johannes Berg51fb61e2007-12-19 01:31:27 +0100722 if (rx->sdata->vif.type == IEEE80211_IF_TYPE_IBSS) {
Ron Rindjunsky71364712007-12-25 17:00:36 +0200723 u8 *bssid = ieee80211_get_bssid(hdr, rx->skb->len,
724 IEEE80211_IF_TYPE_IBSS);
Johannes Berg571ecf62007-07-27 15:43:22 +0200725 if (compare_ether_addr(bssid, rx->sdata->u.sta.bssid) == 0)
726 sta->last_rx = jiffies;
727 } else
728 if (!is_multicast_ether_addr(hdr->addr1) ||
Johannes Berg51fb61e2007-12-19 01:31:27 +0100729 rx->sdata->vif.type == IEEE80211_IF_TYPE_STA) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200730 /* Update last_rx only for unicast frames in order to prevent
731 * the Probe Request frames (the only broadcast frames from a
732 * STA in infrastructure mode) from keeping a connection alive.
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100733 * Mesh beacons will update last_rx when if they are found to
734 * match the current local configuration when processed.
Johannes Berg571ecf62007-07-27 15:43:22 +0200735 */
736 sta->last_rx = jiffies;
737 }
738
Johannes Berg5cf121c2008-02-25 16:27:43 +0100739 if (!(rx->flags & IEEE80211_RX_RA_MATCH))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100740 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200741
742 sta->rx_fragments++;
743 sta->rx_bytes += rx->skb->len;
Johannes Berg5cf121c2008-02-25 16:27:43 +0100744 sta->last_signal = rx->status->signal;
Bruno Randolf566bfe52008-05-08 19:15:40 +0200745 sta->last_qual = rx->status->qual;
Johannes Berg5cf121c2008-02-25 16:27:43 +0100746 sta->last_noise = rx->status->noise;
Johannes Berg571ecf62007-07-27 15:43:22 +0200747
Johannes Berg3e122be2008-07-09 14:40:34 +0200748 if (!ieee80211_has_morefrags(hdr->frame_control) &&
749 (rx->sdata->vif.type == IEEE80211_IF_TYPE_AP ||
750 rx->sdata->vif.type == IEEE80211_IF_TYPE_VLAN)) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200751 /* Change STA power saving mode only in the end of a frame
752 * exchange sequence */
Johannes Berg07346f812008-05-03 01:02:02 +0200753 if (test_sta_flags(sta, WLAN_STA_PS) &&
Harvey Harrisona7767f92008-07-02 16:30:51 -0700754 !ieee80211_has_pm(hdr->frame_control))
Johannes Berg5cf121c2008-02-25 16:27:43 +0100755 rx->sent_ps_buffered += ap_sta_ps_end(dev, sta);
Johannes Berg07346f812008-05-03 01:02:02 +0200756 else if (!test_sta_flags(sta, WLAN_STA_PS) &&
Harvey Harrisona7767f92008-07-02 16:30:51 -0700757 ieee80211_has_pm(hdr->frame_control))
Johannes Berg571ecf62007-07-27 15:43:22 +0200758 ap_sta_ps_start(dev, sta);
759 }
760
761 /* Drop data::nullfunc frames silently, since they are used only to
762 * control station power saving mode. */
Harvey Harrisona7767f92008-07-02 16:30:51 -0700763 if (ieee80211_is_nullfunc(hdr->frame_control)) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200764 I802_DEBUG_INC(rx->local->rx_handlers_drop_nullfunc);
765 /* Update counter and free packet here to avoid counting this
766 * as a dropped packed. */
767 sta->rx_packets++;
768 dev_kfree_skb(rx->skb);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100769 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200770 }
771
Johannes Berg9ae54c82008-01-31 19:48:20 +0100772 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200773} /* ieee80211_rx_h_sta_process */
774
Johannes Berg571ecf62007-07-27 15:43:22 +0200775static inline struct ieee80211_fragment_entry *
776ieee80211_reassemble_add(struct ieee80211_sub_if_data *sdata,
777 unsigned int frag, unsigned int seq, int rx_queue,
778 struct sk_buff **skb)
779{
780 struct ieee80211_fragment_entry *entry;
781 int idx;
782
783 idx = sdata->fragment_next;
784 entry = &sdata->fragments[sdata->fragment_next++];
785 if (sdata->fragment_next >= IEEE80211_FRAGMENT_MAX)
786 sdata->fragment_next = 0;
787
788 if (!skb_queue_empty(&entry->skb_list)) {
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200789#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg571ecf62007-07-27 15:43:22 +0200790 struct ieee80211_hdr *hdr =
791 (struct ieee80211_hdr *) entry->skb_list.next->data;
Joe Perches0795af52007-10-03 17:59:30 -0700792 DECLARE_MAC_BUF(mac);
793 DECLARE_MAC_BUF(mac2);
Johannes Berg571ecf62007-07-27 15:43:22 +0200794 printk(KERN_DEBUG "%s: RX reassembly removed oldest "
795 "fragment entry (idx=%d age=%lu seq=%d last_frag=%d "
Joe Perches0795af52007-10-03 17:59:30 -0700796 "addr1=%s addr2=%s\n",
Johannes Berg571ecf62007-07-27 15:43:22 +0200797 sdata->dev->name, idx,
798 jiffies - entry->first_frag_time, entry->seq,
Joe Perches0795af52007-10-03 17:59:30 -0700799 entry->last_frag, print_mac(mac, hdr->addr1),
800 print_mac(mac2, hdr->addr2));
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200801#endif
Johannes Berg571ecf62007-07-27 15:43:22 +0200802 __skb_queue_purge(&entry->skb_list);
803 }
804
805 __skb_queue_tail(&entry->skb_list, *skb); /* no need for locking */
806 *skb = NULL;
807 entry->first_frag_time = jiffies;
808 entry->seq = seq;
809 entry->rx_queue = rx_queue;
810 entry->last_frag = frag;
811 entry->ccmp = 0;
812 entry->extra_len = 0;
813
814 return entry;
815}
816
817static inline struct ieee80211_fragment_entry *
818ieee80211_reassemble_find(struct ieee80211_sub_if_data *sdata,
819 u16 fc, unsigned int frag, unsigned int seq,
820 int rx_queue, struct ieee80211_hdr *hdr)
821{
822 struct ieee80211_fragment_entry *entry;
823 int i, idx;
824
825 idx = sdata->fragment_next;
826 for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) {
827 struct ieee80211_hdr *f_hdr;
828 u16 f_fc;
829
830 idx--;
831 if (idx < 0)
832 idx = IEEE80211_FRAGMENT_MAX - 1;
833
834 entry = &sdata->fragments[idx];
835 if (skb_queue_empty(&entry->skb_list) || entry->seq != seq ||
836 entry->rx_queue != rx_queue ||
837 entry->last_frag + 1 != frag)
838 continue;
839
840 f_hdr = (struct ieee80211_hdr *) entry->skb_list.next->data;
841 f_fc = le16_to_cpu(f_hdr->frame_control);
842
843 if ((fc & IEEE80211_FCTL_FTYPE) != (f_fc & IEEE80211_FCTL_FTYPE) ||
844 compare_ether_addr(hdr->addr1, f_hdr->addr1) != 0 ||
845 compare_ether_addr(hdr->addr2, f_hdr->addr2) != 0)
846 continue;
847
S.Çağlar Onurab466232008-02-14 17:36:47 +0200848 if (time_after(jiffies, entry->first_frag_time + 2 * HZ)) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200849 __skb_queue_purge(&entry->skb_list);
850 continue;
851 }
852 return entry;
853 }
854
855 return NULL;
856}
857
Johannes Berg49461622008-06-30 15:10:45 +0200858static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100859ieee80211_rx_h_defragment(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +0200860{
861 struct ieee80211_hdr *hdr;
862 u16 sc;
863 unsigned int frag, seq;
864 struct ieee80211_fragment_entry *entry;
865 struct sk_buff *skb;
Joe Perches0795af52007-10-03 17:59:30 -0700866 DECLARE_MAC_BUF(mac);
Johannes Berg571ecf62007-07-27 15:43:22 +0200867
868 hdr = (struct ieee80211_hdr *) rx->skb->data;
869 sc = le16_to_cpu(hdr->seq_ctrl);
870 frag = sc & IEEE80211_SCTL_FRAG;
871
872 if (likely((!(rx->fc & IEEE80211_FCTL_MOREFRAGS) && frag == 0) ||
873 (rx->skb)->len < 24 ||
874 is_multicast_ether_addr(hdr->addr1))) {
875 /* not fragmented */
876 goto out;
877 }
878 I802_DEBUG_INC(rx->local->rx_handlers_fragments);
879
880 seq = (sc & IEEE80211_SCTL_SEQ) >> 4;
881
882 if (frag == 0) {
883 /* This is the first fragment of a new frame. */
884 entry = ieee80211_reassemble_add(rx->sdata, frag, seq,
Johannes Berg5cf121c2008-02-25 16:27:43 +0100885 rx->queue, &(rx->skb));
Johannes Berg8f20fc22007-08-28 17:01:54 -0400886 if (rx->key && rx->key->conf.alg == ALG_CCMP &&
Johannes Berg571ecf62007-07-27 15:43:22 +0200887 (rx->fc & IEEE80211_FCTL_PROTECTED)) {
888 /* Store CCMP PN so that we can verify that the next
889 * fragment has a sequential PN value. */
890 entry->ccmp = 1;
891 memcpy(entry->last_pn,
Johannes Berg5cf121c2008-02-25 16:27:43 +0100892 rx->key->u.ccmp.rx_pn[rx->queue],
Johannes Berg571ecf62007-07-27 15:43:22 +0200893 CCMP_PN_LEN);
894 }
Johannes Berg9ae54c82008-01-31 19:48:20 +0100895 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200896 }
897
898 /* This is a fragment for a frame that should already be pending in
899 * fragment cache. Add this fragment to the end of the pending entry.
900 */
901 entry = ieee80211_reassemble_find(rx->sdata, rx->fc, frag, seq,
Johannes Berg5cf121c2008-02-25 16:27:43 +0100902 rx->queue, hdr);
Johannes Berg571ecf62007-07-27 15:43:22 +0200903 if (!entry) {
904 I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
Johannes Berge4c26ad2008-01-31 19:48:21 +0100905 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +0200906 }
907
908 /* Verify that MPDUs within one MSDU have sequential PN values.
909 * (IEEE 802.11i, 8.3.3.4.5) */
910 if (entry->ccmp) {
911 int i;
912 u8 pn[CCMP_PN_LEN], *rpn;
Johannes Berg8f20fc22007-08-28 17:01:54 -0400913 if (!rx->key || rx->key->conf.alg != ALG_CCMP)
Johannes Berge4c26ad2008-01-31 19:48:21 +0100914 return RX_DROP_UNUSABLE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200915 memcpy(pn, entry->last_pn, CCMP_PN_LEN);
916 for (i = CCMP_PN_LEN - 1; i >= 0; i--) {
917 pn[i]++;
918 if (pn[i])
919 break;
920 }
Johannes Berg5cf121c2008-02-25 16:27:43 +0100921 rpn = rx->key->u.ccmp.rx_pn[rx->queue];
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200922 if (memcmp(pn, rpn, CCMP_PN_LEN))
Johannes Berge4c26ad2008-01-31 19:48:21 +0100923 return RX_DROP_UNUSABLE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200924 memcpy(entry->last_pn, pn, CCMP_PN_LEN);
925 }
926
927 skb_pull(rx->skb, ieee80211_get_hdrlen(rx->fc));
928 __skb_queue_tail(&entry->skb_list, rx->skb);
929 entry->last_frag = frag;
930 entry->extra_len += rx->skb->len;
931 if (rx->fc & IEEE80211_FCTL_MOREFRAGS) {
932 rx->skb = NULL;
Johannes Berg9ae54c82008-01-31 19:48:20 +0100933 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200934 }
935
936 rx->skb = __skb_dequeue(&entry->skb_list);
937 if (skb_tailroom(rx->skb) < entry->extra_len) {
938 I802_DEBUG_INC(rx->local->rx_expand_skb_head2);
939 if (unlikely(pskb_expand_head(rx->skb, 0, entry->extra_len,
940 GFP_ATOMIC))) {
941 I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
942 __skb_queue_purge(&entry->skb_list);
Johannes Berge4c26ad2008-01-31 19:48:21 +0100943 return RX_DROP_UNUSABLE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200944 }
945 }
946 while ((skb = __skb_dequeue(&entry->skb_list))) {
947 memcpy(skb_put(rx->skb, skb->len), skb->data, skb->len);
948 dev_kfree_skb(skb);
949 }
950
951 /* Complete frame has been reassembled - process it now */
Johannes Berg5cf121c2008-02-25 16:27:43 +0100952 rx->flags |= IEEE80211_RX_FRAGMENTED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200953
954 out:
955 if (rx->sta)
956 rx->sta->rx_packets++;
957 if (is_multicast_ether_addr(hdr->addr1))
958 rx->local->dot11MulticastReceivedFrameCount++;
959 else
960 ieee80211_led_rx(rx->local);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100961 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200962}
963
Johannes Berg49461622008-06-30 15:10:45 +0200964static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100965ieee80211_rx_h_ps_poll(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +0200966{
Ron Rindjunsky98f0b0a2007-12-18 17:23:53 +0200967 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(rx->dev);
Johannes Berg571ecf62007-07-27 15:43:22 +0200968 struct sk_buff *skb;
969 int no_pending_pkts;
Joe Perches0795af52007-10-03 17:59:30 -0700970 DECLARE_MAC_BUF(mac);
Johannes Berg571ecf62007-07-27 15:43:22 +0200971
972 if (likely(!rx->sta ||
973 (rx->fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_CTL ||
974 (rx->fc & IEEE80211_FCTL_STYPE) != IEEE80211_STYPE_PSPOLL ||
Johannes Berg5cf121c2008-02-25 16:27:43 +0100975 !(rx->flags & IEEE80211_RX_RA_MATCH)))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100976 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200977
Johannes Berg51fb61e2007-12-19 01:31:27 +0100978 if ((sdata->vif.type != IEEE80211_IF_TYPE_AP) &&
979 (sdata->vif.type != IEEE80211_IF_TYPE_VLAN))
Johannes Berge4c26ad2008-01-31 19:48:21 +0100980 return RX_DROP_UNUSABLE;
Ron Rindjunsky98f0b0a2007-12-18 17:23:53 +0200981
Johannes Berg571ecf62007-07-27 15:43:22 +0200982 skb = skb_dequeue(&rx->sta->tx_filtered);
983 if (!skb) {
984 skb = skb_dequeue(&rx->sta->ps_tx_buf);
985 if (skb)
986 rx->local->total_ps_buffered--;
987 }
988 no_pending_pkts = skb_queue_empty(&rx->sta->tx_filtered) &&
989 skb_queue_empty(&rx->sta->ps_tx_buf);
990
991 if (skb) {
992 struct ieee80211_hdr *hdr =
993 (struct ieee80211_hdr *) skb->data;
994
Johannes Berg4a9a66e2008-02-19 11:31:14 +0100995 /*
996 * Tell TX path to send one frame even though the STA may
997 * still remain is PS mode after this frame exchange.
998 */
Johannes Berg07346f812008-05-03 01:02:02 +0200999 set_sta_flags(rx->sta, WLAN_STA_PSPOLL);
Johannes Berg571ecf62007-07-27 15:43:22 +02001000
1001#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Joe Perches0795af52007-10-03 17:59:30 -07001002 printk(KERN_DEBUG "STA %s aid %d: PS Poll (entries after %d)\n",
1003 print_mac(mac, rx->sta->addr), rx->sta->aid,
Johannes Berg571ecf62007-07-27 15:43:22 +02001004 skb_queue_len(&rx->sta->ps_tx_buf));
1005#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
1006
1007 /* Use MoreData flag to indicate whether there are more
1008 * buffered frames for this STA */
Johannes Berg836341a2008-02-20 02:07:21 +01001009 if (no_pending_pkts)
Johannes Berg571ecf62007-07-27 15:43:22 +02001010 hdr->frame_control &= cpu_to_le16(~IEEE80211_FCTL_MOREDATA);
Johannes Berg836341a2008-02-20 02:07:21 +01001011 else
Johannes Berg571ecf62007-07-27 15:43:22 +02001012 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1013
1014 dev_queue_xmit(skb);
1015
Johannes Berg004c8722008-02-20 11:21:35 +01001016 if (no_pending_pkts)
1017 sta_info_clear_tim_bit(rx->sta);
Johannes Berg571ecf62007-07-27 15:43:22 +02001018#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Johannes Berg5cf121c2008-02-25 16:27:43 +01001019 } else if (!rx->sent_ps_buffered) {
Johannes Berg004c8722008-02-20 11:21:35 +01001020 /*
1021 * FIXME: This can be the result of a race condition between
1022 * us expiring a frame and the station polling for it.
1023 * Should we send it a null-func frame indicating we
1024 * have nothing buffered for it?
1025 */
Joe Perches0795af52007-10-03 17:59:30 -07001026 printk(KERN_DEBUG "%s: STA %s sent PS Poll even "
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001027 "though there are no buffered frames for it\n",
Joe Perches0795af52007-10-03 17:59:30 -07001028 rx->dev->name, print_mac(mac, rx->sta->addr));
Johannes Berg571ecf62007-07-27 15:43:22 +02001029#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
Johannes Berg571ecf62007-07-27 15:43:22 +02001030 }
1031
Johannes Berg9ae54c82008-01-31 19:48:20 +01001032 /* Free PS Poll skb here instead of returning RX_DROP that would
Johannes Berg571ecf62007-07-27 15:43:22 +02001033 * count as an dropped frame. */
1034 dev_kfree_skb(rx->skb);
1035
Johannes Berg9ae54c82008-01-31 19:48:20 +01001036 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001037}
1038
Johannes Berg49461622008-06-30 15:10:45 +02001039static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001040ieee80211_rx_h_remove_qos_control(struct ieee80211_rx_data *rx)
Johannes Berg6e0d1142007-07-27 15:43:22 +02001041{
Johannes Berg6e0d1142007-07-27 15:43:22 +02001042 u8 *data = rx->skb->data;
Harvey Harrison238f74a2008-07-02 11:05:34 -07001043 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)data;
Johannes Berg6e0d1142007-07-27 15:43:22 +02001044
Harvey Harrison238f74a2008-07-02 11:05:34 -07001045 if (!ieee80211_is_data_qos(hdr->frame_control))
Johannes Berg9ae54c82008-01-31 19:48:20 +01001046 return RX_CONTINUE;
Johannes Berg6e0d1142007-07-27 15:43:22 +02001047
1048 /* remove the qos control field, update frame type and meta-data */
Harvey Harrison238f74a2008-07-02 11:05:34 -07001049 memmove(data + IEEE80211_QOS_CTL_LEN, data,
1050 ieee80211_hdrlen(hdr->frame_control) - IEEE80211_QOS_CTL_LEN);
1051 hdr = (struct ieee80211_hdr *)skb_pull(rx->skb, IEEE80211_QOS_CTL_LEN);
Johannes Berg6e0d1142007-07-27 15:43:22 +02001052 /* change frame type to non QOS */
Harvey Harrison238f74a2008-07-02 11:05:34 -07001053 rx->fc &= ~IEEE80211_STYPE_QOS_DATA;
1054 hdr->frame_control &= ~cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
Johannes Berg6e0d1142007-07-27 15:43:22 +02001055
Johannes Berg9ae54c82008-01-31 19:48:20 +01001056 return RX_CONTINUE;
Johannes Berg6e0d1142007-07-27 15:43:22 +02001057}
1058
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001059static int
Johannes Berg5cf121c2008-02-25 16:27:43 +01001060ieee80211_802_1x_port_control(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001061{
Johannes Berg07346f812008-05-03 01:02:02 +02001062 if (unlikely(!rx->sta ||
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001063 !test_sta_flags(rx->sta, WLAN_STA_AUTHORIZED)))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001064 return -EACCES;
Johannes Berg571ecf62007-07-27 15:43:22 +02001065
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001066 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02001067}
1068
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001069static int
Johannes Berg5cf121c2008-02-25 16:27:43 +01001070ieee80211_drop_unencrypted(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001071{
Johannes Berg3017b802007-08-28 17:01:53 -04001072 /*
Johannes Berg7848ba72007-09-14 11:10:25 -04001073 * Pass through unencrypted frames if the hardware has
1074 * decrypted them already.
Johannes Berg3017b802007-08-28 17:01:53 -04001075 */
Johannes Berg5cf121c2008-02-25 16:27:43 +01001076 if (rx->status->flag & RX_FLAG_DECRYPTED)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001077 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02001078
1079 /* Drop unencrypted frames if key is set. */
1080 if (unlikely(!(rx->fc & IEEE80211_FCTL_PROTECTED) &&
1081 (rx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA &&
1082 (rx->fc & IEEE80211_FCTL_STYPE) != IEEE80211_STYPE_NULLFUNC &&
Johannes Bergb3fc9c62008-04-13 10:12:47 +02001083 (rx->key || rx->sdata->drop_unencrypted)))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001084 return -EACCES;
Johannes Bergb3fc9c62008-04-13 10:12:47 +02001085
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001086 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02001087}
1088
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001089static int
Johannes Berg5cf121c2008-02-25 16:27:43 +01001090ieee80211_data_to_8023(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001091{
1092 struct net_device *dev = rx->dev;
Johannes Berg571ecf62007-07-27 15:43:22 +02001093 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) rx->skb->data;
1094 u16 fc, hdrlen, ethertype;
1095 u8 *payload;
1096 u8 dst[ETH_ALEN];
Senthil Balasubramanianc97c23e2008-05-28 23:15:32 +05301097 u8 src[ETH_ALEN] __aligned(2);
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001098 struct sk_buff *skb = rx->skb;
Johannes Berg571ecf62007-07-27 15:43:22 +02001099 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Joe Perches0795af52007-10-03 17:59:30 -07001100 DECLARE_MAC_BUF(mac);
1101 DECLARE_MAC_BUF(mac2);
1102 DECLARE_MAC_BUF(mac3);
1103 DECLARE_MAC_BUF(mac4);
Johannes Berg571ecf62007-07-27 15:43:22 +02001104
1105 fc = rx->fc;
Johannes Berg571ecf62007-07-27 15:43:22 +02001106
1107 if (unlikely(!WLAN_FC_DATA_PRESENT(fc)))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001108 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001109
1110 hdrlen = ieee80211_get_hdrlen(fc);
1111
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001112 if (ieee80211_vif_is_mesh(&sdata->vif))
1113 hdrlen += ieee80211_get_mesh_hdrlen(
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001114 (struct ieee80211s_hdr *) (skb->data + hdrlen));
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001115
Johannes Berg571ecf62007-07-27 15:43:22 +02001116 /* convert IEEE 802.11 header + possible LLC headers into Ethernet
1117 * header
1118 * IEEE 802.11 address fields:
1119 * ToDS FromDS Addr1 Addr2 Addr3 Addr4
1120 * 0 0 DA SA BSSID n/a
1121 * 0 1 DA BSSID SA n/a
1122 * 1 0 BSSID SA DA n/a
1123 * 1 1 RA TA DA SA
1124 */
1125
1126 switch (fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) {
1127 case IEEE80211_FCTL_TODS:
1128 /* BSSID SA DA */
1129 memcpy(dst, hdr->addr3, ETH_ALEN);
1130 memcpy(src, hdr->addr2, ETH_ALEN);
1131
Johannes Berg51fb61e2007-12-19 01:31:27 +01001132 if (unlikely(sdata->vif.type != IEEE80211_IF_TYPE_AP &&
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001133 sdata->vif.type != IEEE80211_IF_TYPE_VLAN))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001134 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001135 break;
1136 case (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS):
1137 /* RA TA DA SA */
1138 memcpy(dst, hdr->addr3, ETH_ALEN);
1139 memcpy(src, hdr->addr4, ETH_ALEN);
1140
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001141 if (unlikely(sdata->vif.type != IEEE80211_IF_TYPE_WDS &&
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001142 sdata->vif.type != IEEE80211_IF_TYPE_MESH_POINT))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001143 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001144 break;
1145 case IEEE80211_FCTL_FROMDS:
1146 /* DA BSSID SA */
1147 memcpy(dst, hdr->addr1, ETH_ALEN);
1148 memcpy(src, hdr->addr3, ETH_ALEN);
1149
Johannes Berg51fb61e2007-12-19 01:31:27 +01001150 if (sdata->vif.type != IEEE80211_IF_TYPE_STA ||
John W. Linvilleb3316152007-08-28 17:01:55 -04001151 (is_multicast_ether_addr(dst) &&
1152 !compare_ether_addr(src, dev->dev_addr)))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001153 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001154 break;
1155 case 0:
1156 /* DA SA BSSID */
1157 memcpy(dst, hdr->addr1, ETH_ALEN);
1158 memcpy(src, hdr->addr2, ETH_ALEN);
1159
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001160 if (sdata->vif.type != IEEE80211_IF_TYPE_IBSS)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001161 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001162 break;
1163 }
1164
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001165 if (unlikely(skb->len - hdrlen < 8))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001166 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001167
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001168 payload = skb->data + hdrlen;
Johannes Berg571ecf62007-07-27 15:43:22 +02001169 ethertype = (payload[6] << 8) | payload[7];
1170
1171 if (likely((compare_ether_addr(payload, rfc1042_header) == 0 &&
1172 ethertype != ETH_P_AARP && ethertype != ETH_P_IPX) ||
1173 compare_ether_addr(payload, bridge_tunnel_header) == 0)) {
1174 /* remove RFC1042 or Bridge-Tunnel encapsulation and
1175 * replace EtherType */
1176 skb_pull(skb, hdrlen + 6);
1177 memcpy(skb_push(skb, ETH_ALEN), src, ETH_ALEN);
1178 memcpy(skb_push(skb, ETH_ALEN), dst, ETH_ALEN);
1179 } else {
1180 struct ethhdr *ehdr;
1181 __be16 len;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001182
Johannes Berg571ecf62007-07-27 15:43:22 +02001183 skb_pull(skb, hdrlen);
1184 len = htons(skb->len);
1185 ehdr = (struct ethhdr *) skb_push(skb, sizeof(struct ethhdr));
1186 memcpy(ehdr->h_dest, dst, ETH_ALEN);
1187 memcpy(ehdr->h_source, src, ETH_ALEN);
1188 ehdr->h_proto = len;
1189 }
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001190 return 0;
1191}
Johannes Berg571ecf62007-07-27 15:43:22 +02001192
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001193/*
1194 * requires that rx->skb is a frame with ethernet header
1195 */
Johannes Berg5cf121c2008-02-25 16:27:43 +01001196static bool ieee80211_frame_allowed(struct ieee80211_rx_data *rx)
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001197{
Senthil Balasubramanianc97c23e2008-05-28 23:15:32 +05301198 static const u8 pae_group_addr[ETH_ALEN] __aligned(2)
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001199 = { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x03 };
1200 struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
1201
1202 /*
1203 * Allow EAPOL frames to us/the PAE group address regardless
1204 * of whether the frame was encrypted or not.
1205 */
1206 if (ehdr->h_proto == htons(ETH_P_PAE) &&
1207 (compare_ether_addr(ehdr->h_dest, rx->dev->dev_addr) == 0 ||
1208 compare_ether_addr(ehdr->h_dest, pae_group_addr) == 0))
1209 return true;
1210
1211 if (ieee80211_802_1x_port_control(rx) ||
1212 ieee80211_drop_unencrypted(rx))
1213 return false;
1214
1215 return true;
1216}
1217
1218/*
1219 * requires that rx->skb is a frame with ethernet header
1220 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001221static void
Johannes Berg5cf121c2008-02-25 16:27:43 +01001222ieee80211_deliver_skb(struct ieee80211_rx_data *rx)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001223{
1224 struct net_device *dev = rx->dev;
1225 struct ieee80211_local *local = rx->local;
1226 struct sk_buff *skb, *xmit_skb;
1227 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001228 struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
1229 struct sta_info *dsta;
Johannes Berg571ecf62007-07-27 15:43:22 +02001230
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001231 skb = rx->skb;
1232 xmit_skb = NULL;
Johannes Berg571ecf62007-07-27 15:43:22 +02001233
Johannes Berg51fb61e2007-12-19 01:31:27 +01001234 if (local->bridge_packets && (sdata->vif.type == IEEE80211_IF_TYPE_AP ||
1235 sdata->vif.type == IEEE80211_IF_TYPE_VLAN) &&
Johannes Berg5cf121c2008-02-25 16:27:43 +01001236 (rx->flags & IEEE80211_RX_RA_MATCH)) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001237 if (is_multicast_ether_addr(ehdr->h_dest)) {
1238 /*
1239 * send multicast frames both to higher layers in
1240 * local net stack and back to the wireless medium
1241 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001242 xmit_skb = skb_copy(skb, GFP_ATOMIC);
1243 if (!xmit_skb && net_ratelimit())
Johannes Berg571ecf62007-07-27 15:43:22 +02001244 printk(KERN_DEBUG "%s: failed to clone "
1245 "multicast frame\n", dev->name);
1246 } else {
Johannes Berg571ecf62007-07-27 15:43:22 +02001247 dsta = sta_info_get(local, skb->data);
Johannes Bergd0709a62008-02-25 16:27:46 +01001248 if (dsta && dsta->sdata->dev == dev) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001249 /*
1250 * The destination station is associated to
1251 * this AP (in this VLAN), so send the frame
1252 * directly to it and do not pass it to local
1253 * net stack.
Johannes Berg571ecf62007-07-27 15:43:22 +02001254 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001255 xmit_skb = skb;
Johannes Berg571ecf62007-07-27 15:43:22 +02001256 skb = NULL;
1257 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001258 }
1259 }
1260
1261 if (skb) {
1262 /* deliver to local stack */
1263 skb->protocol = eth_type_trans(skb, dev);
1264 memset(skb->cb, 0, sizeof(skb->cb));
1265 netif_rx(skb);
1266 }
1267
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001268 if (xmit_skb) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001269 /* send to wireless media */
YOSHIFUJI Hideakif831e902007-12-12 03:54:23 +09001270 xmit_skb->protocol = htons(ETH_P_802_3);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001271 skb_reset_network_header(xmit_skb);
1272 skb_reset_mac_header(xmit_skb);
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001273 dev_queue_xmit(xmit_skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02001274 }
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001275}
1276
Johannes Berg49461622008-06-30 15:10:45 +02001277static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001278ieee80211_rx_h_amsdu(struct ieee80211_rx_data *rx)
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001279{
1280 struct net_device *dev = rx->dev;
1281 struct ieee80211_local *local = rx->local;
1282 u16 fc, ethertype;
1283 u8 *payload;
1284 struct sk_buff *skb = rx->skb, *frame = NULL;
1285 const struct ethhdr *eth;
1286 int remaining, err;
1287 u8 dst[ETH_ALEN];
1288 u8 src[ETH_ALEN];
1289 DECLARE_MAC_BUF(mac);
1290
1291 fc = rx->fc;
1292 if (unlikely((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA))
Johannes Berg9ae54c82008-01-31 19:48:20 +01001293 return RX_CONTINUE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001294
1295 if (unlikely(!WLAN_FC_DATA_PRESENT(fc)))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001296 return RX_DROP_MONITOR;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001297
Johannes Berg5cf121c2008-02-25 16:27:43 +01001298 if (!(rx->flags & IEEE80211_RX_AMSDU))
Johannes Berg9ae54c82008-01-31 19:48:20 +01001299 return RX_CONTINUE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001300
1301 err = ieee80211_data_to_8023(rx);
1302 if (unlikely(err))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001303 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001304
1305 skb->dev = dev;
1306
1307 dev->stats.rx_packets++;
1308 dev->stats.rx_bytes += skb->len;
1309
1310 /* skip the wrapping header */
1311 eth = (struct ethhdr *) skb_pull(skb, sizeof(struct ethhdr));
1312 if (!eth)
Johannes Berge4c26ad2008-01-31 19:48:21 +01001313 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001314
1315 while (skb != frame) {
1316 u8 padding;
1317 __be16 len = eth->h_proto;
1318 unsigned int subframe_len = sizeof(struct ethhdr) + ntohs(len);
1319
1320 remaining = skb->len;
1321 memcpy(dst, eth->h_dest, ETH_ALEN);
1322 memcpy(src, eth->h_source, ETH_ALEN);
1323
1324 padding = ((4 - subframe_len) & 0x3);
1325 /* the last MSDU has no padding */
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001326 if (subframe_len > remaining)
Johannes Berge4c26ad2008-01-31 19:48:21 +01001327 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001328
1329 skb_pull(skb, sizeof(struct ethhdr));
1330 /* if last subframe reuse skb */
1331 if (remaining <= subframe_len + padding)
1332 frame = skb;
1333 else {
1334 frame = dev_alloc_skb(local->hw.extra_tx_headroom +
1335 subframe_len);
1336
1337 if (frame == NULL)
Johannes Berge4c26ad2008-01-31 19:48:21 +01001338 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001339
1340 skb_reserve(frame, local->hw.extra_tx_headroom +
1341 sizeof(struct ethhdr));
1342 memcpy(skb_put(frame, ntohs(len)), skb->data,
1343 ntohs(len));
1344
1345 eth = (struct ethhdr *) skb_pull(skb, ntohs(len) +
1346 padding);
1347 if (!eth) {
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001348 dev_kfree_skb(frame);
Johannes Berge4c26ad2008-01-31 19:48:21 +01001349 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001350 }
1351 }
1352
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001353 skb_reset_network_header(frame);
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001354 frame->dev = dev;
1355 frame->priority = skb->priority;
1356 rx->skb = frame;
1357
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001358 payload = frame->data;
1359 ethertype = (payload[6] << 8) | payload[7];
1360
1361 if (likely((compare_ether_addr(payload, rfc1042_header) == 0 &&
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001362 ethertype != ETH_P_AARP && ethertype != ETH_P_IPX) ||
1363 compare_ether_addr(payload,
1364 bridge_tunnel_header) == 0)) {
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001365 /* remove RFC1042 or Bridge-Tunnel
1366 * encapsulation and replace EtherType */
1367 skb_pull(frame, 6);
1368 memcpy(skb_push(frame, ETH_ALEN), src, ETH_ALEN);
1369 memcpy(skb_push(frame, ETH_ALEN), dst, ETH_ALEN);
1370 } else {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001371 memcpy(skb_push(frame, sizeof(__be16)),
1372 &len, sizeof(__be16));
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001373 memcpy(skb_push(frame, ETH_ALEN), src, ETH_ALEN);
1374 memcpy(skb_push(frame, ETH_ALEN), dst, ETH_ALEN);
1375 }
1376
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001377 if (!ieee80211_frame_allowed(rx)) {
1378 if (skb == frame) /* last frame */
Johannes Berge4c26ad2008-01-31 19:48:21 +01001379 return RX_DROP_UNUSABLE;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001380 dev_kfree_skb(frame);
1381 continue;
1382 }
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001383
1384 ieee80211_deliver_skb(rx);
1385 }
1386
Johannes Berg9ae54c82008-01-31 19:48:20 +01001387 return RX_QUEUED;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001388}
1389
Johannes Berg49461622008-06-30 15:10:45 +02001390static ieee80211_rx_result debug_noinline
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001391ieee80211_rx_h_mesh_fwding(struct ieee80211_rx_data *rx)
1392{
1393 struct ieee80211_hdr *hdr;
1394 struct ieee80211s_hdr *mesh_hdr;
1395 unsigned int hdrlen;
1396 struct sk_buff *skb = rx->skb, *fwd_skb;
1397
1398 hdr = (struct ieee80211_hdr *) skb->data;
1399 hdrlen = ieee80211_hdrlen(hdr->frame_control);
1400 mesh_hdr = (struct ieee80211s_hdr *) (skb->data + hdrlen);
1401
1402 if (!ieee80211_is_data(hdr->frame_control))
1403 return RX_CONTINUE;
1404
1405 if (!mesh_hdr->ttl)
1406 /* illegal frame */
1407 return RX_DROP_MONITOR;
1408
1409 if (compare_ether_addr(rx->dev->dev_addr, hdr->addr3) == 0)
1410 return RX_CONTINUE;
1411
1412 mesh_hdr->ttl--;
1413
1414 if (rx->flags & IEEE80211_RX_RA_MATCH) {
1415 if (!mesh_hdr->ttl)
1416 IEEE80211_IFSTA_MESH_CTR_INC(&rx->sdata->u.sta,
1417 dropped_frames_ttl);
1418 else {
1419 struct ieee80211_hdr *fwd_hdr;
1420 fwd_skb = skb_copy(skb, GFP_ATOMIC);
1421
1422 if (!fwd_skb && net_ratelimit())
1423 printk(KERN_DEBUG "%s: failed to clone mesh frame\n",
1424 rx->dev->name);
1425
1426 fwd_hdr = (struct ieee80211_hdr *) fwd_skb->data;
1427 /*
1428 * Save TA to addr1 to send TA a path error if a
1429 * suitable next hop is not found
1430 */
1431 memcpy(fwd_hdr->addr1, fwd_hdr->addr2, ETH_ALEN);
1432 memcpy(fwd_hdr->addr2, rx->dev->dev_addr, ETH_ALEN);
1433 fwd_skb->dev = rx->local->mdev;
1434 fwd_skb->iif = rx->dev->ifindex;
1435 dev_queue_xmit(fwd_skb);
1436 }
1437 }
1438
1439 if (is_multicast_ether_addr(hdr->addr3) ||
1440 rx->dev->flags & IFF_PROMISC)
1441 return RX_CONTINUE;
1442 else
1443 return RX_DROP_MONITOR;
1444}
1445
1446
1447static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001448ieee80211_rx_h_data(struct ieee80211_rx_data *rx)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001449{
1450 struct net_device *dev = rx->dev;
1451 u16 fc;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001452 int err;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001453
1454 fc = rx->fc;
1455 if (unlikely((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA))
Johannes Berg9ae54c82008-01-31 19:48:20 +01001456 return RX_CONTINUE;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001457
1458 if (unlikely(!WLAN_FC_DATA_PRESENT(fc)))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001459 return RX_DROP_MONITOR;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001460
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001461 err = ieee80211_data_to_8023(rx);
1462 if (unlikely(err))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001463 return RX_DROP_UNUSABLE;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001464
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001465 if (!ieee80211_frame_allowed(rx))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001466 return RX_DROP_MONITOR;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001467
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001468 rx->skb->dev = dev;
1469
1470 dev->stats.rx_packets++;
1471 dev->stats.rx_bytes += rx->skb->len;
1472
1473 ieee80211_deliver_skb(rx);
Johannes Berg571ecf62007-07-27 15:43:22 +02001474
Johannes Berg9ae54c82008-01-31 19:48:20 +01001475 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001476}
1477
Johannes Berg49461622008-06-30 15:10:45 +02001478static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001479ieee80211_rx_h_ctrl(struct ieee80211_rx_data *rx)
Ron Rindjunsky71364712007-12-25 17:00:36 +02001480{
1481 struct ieee80211_local *local = rx->local;
1482 struct ieee80211_hw *hw = &local->hw;
1483 struct sk_buff *skb = rx->skb;
Harvey Harrisona7767f92008-07-02 16:30:51 -07001484 struct ieee80211_bar *bar = (struct ieee80211_bar *)skb->data;
Ron Rindjunsky71364712007-12-25 17:00:36 +02001485 struct tid_ampdu_rx *tid_agg_rx;
1486 u16 start_seq_num;
1487 u16 tid;
1488
Harvey Harrisona7767f92008-07-02 16:30:51 -07001489 if (likely(!ieee80211_is_ctl(bar->frame_control)))
Johannes Berg9ae54c82008-01-31 19:48:20 +01001490 return RX_CONTINUE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02001491
Harvey Harrisona7767f92008-07-02 16:30:51 -07001492 if (ieee80211_is_back_req(bar->frame_control)) {
Ron Rindjunsky71364712007-12-25 17:00:36 +02001493 if (!rx->sta)
Johannes Berg9ae54c82008-01-31 19:48:20 +01001494 return RX_CONTINUE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02001495 tid = le16_to_cpu(bar->control) >> 12;
Ron Rindjunskycee24a32008-03-26 20:36:03 +02001496 if (rx->sta->ampdu_mlme.tid_state_rx[tid]
1497 != HT_AGG_STATE_OPERATIONAL)
Johannes Berg9ae54c82008-01-31 19:48:20 +01001498 return RX_CONTINUE;
Ron Rindjunskycee24a32008-03-26 20:36:03 +02001499 tid_agg_rx = rx->sta->ampdu_mlme.tid_rx[tid];
Ron Rindjunsky71364712007-12-25 17:00:36 +02001500
1501 start_seq_num = le16_to_cpu(bar->start_seq_num) >> 4;
1502
1503 /* reset session timer */
1504 if (tid_agg_rx->timeout) {
1505 unsigned long expires =
1506 jiffies + (tid_agg_rx->timeout / 1000) * HZ;
1507 mod_timer(&tid_agg_rx->session_timer, expires);
1508 }
1509
1510 /* manage reordering buffer according to requested */
1511 /* sequence number */
1512 rcu_read_lock();
1513 ieee80211_sta_manage_reorder_buf(hw, tid_agg_rx, NULL,
1514 start_seq_num, 1);
1515 rcu_read_unlock();
Johannes Berge4c26ad2008-01-31 19:48:21 +01001516 return RX_DROP_UNUSABLE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02001517 }
1518
Johannes Berg9ae54c82008-01-31 19:48:20 +01001519 return RX_CONTINUE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02001520}
1521
Johannes Berg49461622008-06-30 15:10:45 +02001522static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001523ieee80211_rx_h_mgmt(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001524{
1525 struct ieee80211_sub_if_data *sdata;
1526
Johannes Berg5cf121c2008-02-25 16:27:43 +01001527 if (!(rx->flags & IEEE80211_RX_RA_MATCH))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001528 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +02001529
1530 sdata = IEEE80211_DEV_TO_SUB_IF(rx->dev);
Johannes Berg51fb61e2007-12-19 01:31:27 +01001531 if ((sdata->vif.type == IEEE80211_IF_TYPE_STA ||
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001532 sdata->vif.type == IEEE80211_IF_TYPE_IBSS ||
1533 sdata->vif.type == IEEE80211_IF_TYPE_MESH_POINT) &&
Johannes Bergddd3d2b2007-09-26 17:53:20 +02001534 !(sdata->flags & IEEE80211_SDATA_USERSPACE_MLME))
Johannes Berg5cf121c2008-02-25 16:27:43 +01001535 ieee80211_sta_rx_mgmt(rx->dev, rx->skb, rx->status);
Johannes Bergf9d540e2007-09-28 14:02:09 +02001536 else
Johannes Berge4c26ad2008-01-31 19:48:21 +01001537 return RX_DROP_MONITOR;
Johannes Bergf9d540e2007-09-28 14:02:09 +02001538
Johannes Berg9ae54c82008-01-31 19:48:20 +01001539 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001540}
1541
Johannes Berg571ecf62007-07-27 15:43:22 +02001542static void ieee80211_rx_michael_mic_report(struct net_device *dev,
1543 struct ieee80211_hdr *hdr,
Johannes Berg5cf121c2008-02-25 16:27:43 +01001544 struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001545{
Harvey Harrisona7767f92008-07-02 16:30:51 -07001546 int keyidx;
1547 unsigned int hdrlen;
Joe Perches0795af52007-10-03 17:59:30 -07001548 DECLARE_MAC_BUF(mac);
1549 DECLARE_MAC_BUF(mac2);
Johannes Berg571ecf62007-07-27 15:43:22 +02001550
Harvey Harrisona7767f92008-07-02 16:30:51 -07001551 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berg571ecf62007-07-27 15:43:22 +02001552 if (rx->skb->len >= hdrlen + 4)
1553 keyidx = rx->skb->data[hdrlen + 3] >> 6;
1554 else
1555 keyidx = -1;
1556
Johannes Berg8944b792008-01-31 19:48:26 +01001557 if (!rx->sta) {
Johannes Bergaa0daf02007-09-10 14:15:25 +02001558 /*
1559 * Some hardware seem to generate incorrect Michael MIC
1560 * reports; ignore them to avoid triggering countermeasures.
1561 */
Johannes Berg571ecf62007-07-27 15:43:22 +02001562 goto ignore;
1563 }
1564
Harvey Harrisona7767f92008-07-02 16:30:51 -07001565 if (!ieee80211_has_protected(hdr->frame_control))
Johannes Berg571ecf62007-07-27 15:43:22 +02001566 goto ignore;
Johannes Berg571ecf62007-07-27 15:43:22 +02001567
Johannes Berg51fb61e2007-12-19 01:31:27 +01001568 if (rx->sdata->vif.type == IEEE80211_IF_TYPE_AP && keyidx) {
Johannes Bergaa0daf02007-09-10 14:15:25 +02001569 /*
1570 * APs with pairwise keys should never receive Michael MIC
1571 * errors for non-zero keyidx because these are reserved for
1572 * group keys and only the AP is sending real multicast
1573 * frames in the BSS.
1574 */
Johannes Bergeb063c12007-08-28 17:01:53 -04001575 goto ignore;
Johannes Berg571ecf62007-07-27 15:43:22 +02001576 }
1577
Harvey Harrisona7767f92008-07-02 16:30:51 -07001578 if (!ieee80211_is_data(hdr->frame_control) &&
1579 !ieee80211_is_auth(hdr->frame_control))
Johannes Berg571ecf62007-07-27 15:43:22 +02001580 goto ignore;
Johannes Berg571ecf62007-07-27 15:43:22 +02001581
Johannes Bergeb063c12007-08-28 17:01:53 -04001582 mac80211_ev_michael_mic_failure(rx->dev, keyidx, hdr);
Johannes Berg571ecf62007-07-27 15:43:22 +02001583 ignore:
1584 dev_kfree_skb(rx->skb);
1585 rx->skb = NULL;
1586}
1587
Johannes Berg5cf121c2008-02-25 16:27:43 +01001588/* TODO: use IEEE80211_RX_FRAGMENTED */
1589static void ieee80211_rx_cooked_monitor(struct ieee80211_rx_data *rx)
Michael Wu3d30d942008-01-31 19:48:27 +01001590{
1591 struct ieee80211_sub_if_data *sdata;
1592 struct ieee80211_local *local = rx->local;
1593 struct ieee80211_rtap_hdr {
1594 struct ieee80211_radiotap_header hdr;
1595 u8 flags;
1596 u8 rate;
1597 __le16 chan_freq;
1598 __le16 chan_flags;
1599 } __attribute__ ((packed)) *rthdr;
1600 struct sk_buff *skb = rx->skb, *skb2;
1601 struct net_device *prev_dev = NULL;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001602 struct ieee80211_rx_status *status = rx->status;
Michael Wu3d30d942008-01-31 19:48:27 +01001603
Johannes Berg5cf121c2008-02-25 16:27:43 +01001604 if (rx->flags & IEEE80211_RX_CMNTR_REPORTED)
Michael Wu3d30d942008-01-31 19:48:27 +01001605 goto out_free_skb;
1606
1607 if (skb_headroom(skb) < sizeof(*rthdr) &&
1608 pskb_expand_head(skb, sizeof(*rthdr), 0, GFP_ATOMIC))
1609 goto out_free_skb;
1610
1611 rthdr = (void *)skb_push(skb, sizeof(*rthdr));
1612 memset(rthdr, 0, sizeof(*rthdr));
1613 rthdr->hdr.it_len = cpu_to_le16(sizeof(*rthdr));
1614 rthdr->hdr.it_present =
1615 cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
1616 (1 << IEEE80211_RADIOTAP_RATE) |
1617 (1 << IEEE80211_RADIOTAP_CHANNEL));
1618
Johannes Berg5cf121c2008-02-25 16:27:43 +01001619 rthdr->rate = rx->rate->bitrate / 5;
Michael Wu3d30d942008-01-31 19:48:27 +01001620 rthdr->chan_freq = cpu_to_le16(status->freq);
1621
1622 if (status->band == IEEE80211_BAND_5GHZ)
1623 rthdr->chan_flags = cpu_to_le16(IEEE80211_CHAN_OFDM |
1624 IEEE80211_CHAN_5GHZ);
1625 else
1626 rthdr->chan_flags = cpu_to_le16(IEEE80211_CHAN_DYN |
1627 IEEE80211_CHAN_2GHZ);
1628
1629 skb_set_mac_header(skb, 0);
1630 skb->ip_summed = CHECKSUM_UNNECESSARY;
1631 skb->pkt_type = PACKET_OTHERHOST;
1632 skb->protocol = htons(ETH_P_802_2);
1633
1634 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
1635 if (!netif_running(sdata->dev))
1636 continue;
1637
1638 if (sdata->vif.type != IEEE80211_IF_TYPE_MNTR ||
1639 !(sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES))
1640 continue;
1641
1642 if (prev_dev) {
1643 skb2 = skb_clone(skb, GFP_ATOMIC);
1644 if (skb2) {
1645 skb2->dev = prev_dev;
1646 netif_rx(skb2);
1647 }
1648 }
1649
1650 prev_dev = sdata->dev;
1651 sdata->dev->stats.rx_packets++;
1652 sdata->dev->stats.rx_bytes += skb->len;
1653 }
1654
1655 if (prev_dev) {
1656 skb->dev = prev_dev;
1657 netif_rx(skb);
1658 skb = NULL;
1659 } else
1660 goto out_free_skb;
1661
Johannes Berg5cf121c2008-02-25 16:27:43 +01001662 rx->flags |= IEEE80211_RX_CMNTR_REPORTED;
Michael Wu3d30d942008-01-31 19:48:27 +01001663 return;
1664
1665 out_free_skb:
1666 dev_kfree_skb(skb);
1667}
1668
Johannes Berg571ecf62007-07-27 15:43:22 +02001669
Johannes Berg8944b792008-01-31 19:48:26 +01001670static void ieee80211_invoke_rx_handlers(struct ieee80211_sub_if_data *sdata,
Johannes Berg5cf121c2008-02-25 16:27:43 +01001671 struct ieee80211_rx_data *rx,
Johannes Berg8944b792008-01-31 19:48:26 +01001672 struct sk_buff *skb)
Johannes Berg58905292008-01-31 19:48:25 +01001673{
Johannes Berg58905292008-01-31 19:48:25 +01001674 ieee80211_rx_result res = RX_DROP_MONITOR;
1675
Johannes Berg8944b792008-01-31 19:48:26 +01001676 rx->skb = skb;
1677 rx->sdata = sdata;
1678 rx->dev = sdata->dev;
1679
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001680#define CALL_RXH(rxh) \
1681 do { \
1682 res = rxh(rx); \
1683 if (res != RX_CONTINUE) \
1684 goto rxh_done; \
1685 } while (0);
Johannes Berg58905292008-01-31 19:48:25 +01001686
Johannes Berg49461622008-06-30 15:10:45 +02001687 CALL_RXH(ieee80211_rx_h_passive_scan)
1688 CALL_RXH(ieee80211_rx_h_check)
1689 CALL_RXH(ieee80211_rx_h_decrypt)
1690 CALL_RXH(ieee80211_rx_h_sta_process)
1691 CALL_RXH(ieee80211_rx_h_defragment)
1692 CALL_RXH(ieee80211_rx_h_ps_poll)
1693 CALL_RXH(ieee80211_rx_h_michael_mic_verify)
1694 /* must be after MMIC verify so header is counted in MPDU mic */
1695 CALL_RXH(ieee80211_rx_h_remove_qos_control)
1696 CALL_RXH(ieee80211_rx_h_amsdu)
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001697 if (ieee80211_vif_is_mesh(&sdata->vif))
1698 CALL_RXH(ieee80211_rx_h_mesh_fwding);
Johannes Berg49461622008-06-30 15:10:45 +02001699 CALL_RXH(ieee80211_rx_h_data)
1700 CALL_RXH(ieee80211_rx_h_ctrl)
1701 CALL_RXH(ieee80211_rx_h_mgmt)
Johannes Berg58905292008-01-31 19:48:25 +01001702
Johannes Berg49461622008-06-30 15:10:45 +02001703#undef CALL_RXH
1704
1705 rxh_done:
Johannes Berg58905292008-01-31 19:48:25 +01001706 switch (res) {
Michael Wu3d30d942008-01-31 19:48:27 +01001707 case RX_DROP_MONITOR:
Johannes Berg49461622008-06-30 15:10:45 +02001708 I802_DEBUG_INC(sdata->local->rx_handlers_drop);
1709 if (rx->sta)
1710 rx->sta->rx_dropped++;
1711 /* fall through */
1712 case RX_CONTINUE:
Michael Wu3d30d942008-01-31 19:48:27 +01001713 ieee80211_rx_cooked_monitor(rx);
1714 break;
1715 case RX_DROP_UNUSABLE:
Johannes Berg49461622008-06-30 15:10:45 +02001716 I802_DEBUG_INC(sdata->local->rx_handlers_drop);
1717 if (rx->sta)
1718 rx->sta->rx_dropped++;
Johannes Berg58905292008-01-31 19:48:25 +01001719 dev_kfree_skb(rx->skb);
1720 break;
Johannes Berg49461622008-06-30 15:10:45 +02001721 case RX_QUEUED:
1722 I802_DEBUG_INC(sdata->local->rx_handlers_queued);
1723 break;
Johannes Berg58905292008-01-31 19:48:25 +01001724 }
1725}
1726
Johannes Berg571ecf62007-07-27 15:43:22 +02001727/* main receive path */
1728
Johannes Berg23a24de2007-07-27 15:43:22 +02001729static int prepare_for_handlers(struct ieee80211_sub_if_data *sdata,
Johannes Berg5cf121c2008-02-25 16:27:43 +01001730 u8 *bssid, struct ieee80211_rx_data *rx,
Johannes Berg23a24de2007-07-27 15:43:22 +02001731 struct ieee80211_hdr *hdr)
1732{
1733 int multicast = is_multicast_ether_addr(hdr->addr1);
1734
Johannes Berg51fb61e2007-12-19 01:31:27 +01001735 switch (sdata->vif.type) {
Johannes Berg23a24de2007-07-27 15:43:22 +02001736 case IEEE80211_IF_TYPE_STA:
1737 if (!bssid)
1738 return 0;
1739 if (!ieee80211_bssid_match(bssid, sdata->u.sta.bssid)) {
Johannes Berg5cf121c2008-02-25 16:27:43 +01001740 if (!(rx->flags & IEEE80211_RX_IN_SCAN))
Johannes Berg23a24de2007-07-27 15:43:22 +02001741 return 0;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001742 rx->flags &= ~IEEE80211_RX_RA_MATCH;
Johannes Berg23a24de2007-07-27 15:43:22 +02001743 } else if (!multicast &&
1744 compare_ether_addr(sdata->dev->dev_addr,
1745 hdr->addr1) != 0) {
Johannes Berg4150c572007-09-17 01:29:23 -04001746 if (!(sdata->dev->flags & IFF_PROMISC))
Johannes Berg23a24de2007-07-27 15:43:22 +02001747 return 0;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001748 rx->flags &= ~IEEE80211_RX_RA_MATCH;
Johannes Berg23a24de2007-07-27 15:43:22 +02001749 }
1750 break;
1751 case IEEE80211_IF_TYPE_IBSS:
1752 if (!bssid)
1753 return 0;
Harvey Harrisona7767f92008-07-02 16:30:51 -07001754 if (ieee80211_is_beacon(hdr->frame_control)) {
Vladimir Koutny87291c02008-06-13 16:50:44 +02001755 if (!rx->sta)
1756 rx->sta = ieee80211_ibss_add_sta(sdata->dev,
1757 rx->skb, bssid, hdr->addr2,
1758 BIT(rx->status->rate_idx));
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001759 return 1;
Vladimir Koutny87291c02008-06-13 16:50:44 +02001760 }
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001761 else if (!ieee80211_bssid_match(bssid, sdata->u.sta.bssid)) {
Johannes Berg5cf121c2008-02-25 16:27:43 +01001762 if (!(rx->flags & IEEE80211_RX_IN_SCAN))
Johannes Berg23a24de2007-07-27 15:43:22 +02001763 return 0;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001764 rx->flags &= ~IEEE80211_RX_RA_MATCH;
Johannes Berg23a24de2007-07-27 15:43:22 +02001765 } else if (!multicast &&
1766 compare_ether_addr(sdata->dev->dev_addr,
1767 hdr->addr1) != 0) {
Johannes Berg4150c572007-09-17 01:29:23 -04001768 if (!(sdata->dev->flags & IFF_PROMISC))
Johannes Berg23a24de2007-07-27 15:43:22 +02001769 return 0;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001770 rx->flags &= ~IEEE80211_RX_RA_MATCH;
Johannes Berg23a24de2007-07-27 15:43:22 +02001771 } else if (!rx->sta)
1772 rx->sta = ieee80211_ibss_add_sta(sdata->dev, rx->skb,
Vladimir Koutny87291c02008-06-13 16:50:44 +02001773 bssid, hdr->addr2,
1774 BIT(rx->status->rate_idx));
Johannes Berg23a24de2007-07-27 15:43:22 +02001775 break;
Johannes Berg6032f932008-02-23 15:17:07 +01001776 case IEEE80211_IF_TYPE_MESH_POINT:
1777 if (!multicast &&
1778 compare_ether_addr(sdata->dev->dev_addr,
1779 hdr->addr1) != 0) {
1780 if (!(sdata->dev->flags & IFF_PROMISC))
1781 return 0;
1782
Johannes Berg5cf121c2008-02-25 16:27:43 +01001783 rx->flags &= ~IEEE80211_RX_RA_MATCH;
Johannes Berg6032f932008-02-23 15:17:07 +01001784 }
1785 break;
Johannes Bergfb1c1cd2007-09-26 15:19:43 +02001786 case IEEE80211_IF_TYPE_VLAN:
Johannes Berg23a24de2007-07-27 15:43:22 +02001787 case IEEE80211_IF_TYPE_AP:
1788 if (!bssid) {
1789 if (compare_ether_addr(sdata->dev->dev_addr,
1790 hdr->addr1))
1791 return 0;
1792 } else if (!ieee80211_bssid_match(bssid,
1793 sdata->dev->dev_addr)) {
Johannes Berg5cf121c2008-02-25 16:27:43 +01001794 if (!(rx->flags & IEEE80211_RX_IN_SCAN))
Johannes Berg23a24de2007-07-27 15:43:22 +02001795 return 0;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001796 rx->flags &= ~IEEE80211_RX_RA_MATCH;
Johannes Berg23a24de2007-07-27 15:43:22 +02001797 }
Johannes Berg23a24de2007-07-27 15:43:22 +02001798 break;
1799 case IEEE80211_IF_TYPE_WDS:
Harvey Harrisona7767f92008-07-02 16:30:51 -07001800 if (bssid || !ieee80211_is_data(hdr->frame_control))
Johannes Berg23a24de2007-07-27 15:43:22 +02001801 return 0;
1802 if (compare_ether_addr(sdata->u.wds.remote_addr, hdr->addr2))
1803 return 0;
1804 break;
Johannes Bergfb1c1cd2007-09-26 15:19:43 +02001805 case IEEE80211_IF_TYPE_MNTR:
1806 /* take everything */
1807 break;
Johannes Berga2897552007-09-28 14:01:25 +02001808 case IEEE80211_IF_TYPE_INVALID:
Johannes Bergfb1c1cd2007-09-26 15:19:43 +02001809 /* should never get here */
1810 WARN_ON(1);
1811 break;
Johannes Berg23a24de2007-07-27 15:43:22 +02001812 }
1813
1814 return 1;
1815}
1816
Johannes Berg571ecf62007-07-27 15:43:22 +02001817/*
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02001818 * This is the actual Rx frames handler. as it blongs to Rx path it must
1819 * be called with rcu_read_lock protection.
Johannes Berg571ecf62007-07-27 15:43:22 +02001820 */
Ron Rindjunsky71ebb4a2008-01-21 12:39:12 +02001821static void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw,
1822 struct sk_buff *skb,
1823 struct ieee80211_rx_status *status,
Johannes Berg8318d782008-01-24 19:38:38 +01001824 struct ieee80211_rate *rate)
Johannes Berg571ecf62007-07-27 15:43:22 +02001825{
1826 struct ieee80211_local *local = hw_to_local(hw);
1827 struct ieee80211_sub_if_data *sdata;
Johannes Berg571ecf62007-07-27 15:43:22 +02001828 struct ieee80211_hdr *hdr;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001829 struct ieee80211_rx_data rx;
Johannes Berg571ecf62007-07-27 15:43:22 +02001830 u16 type;
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02001831 int prepares;
Johannes Berg8e6f0032007-07-27 15:43:22 +02001832 struct ieee80211_sub_if_data *prev = NULL;
1833 struct sk_buff *skb_new;
1834 u8 *bssid;
Johannes Berg571ecf62007-07-27 15:43:22 +02001835
1836 hdr = (struct ieee80211_hdr *) skb->data;
1837 memset(&rx, 0, sizeof(rx));
1838 rx.skb = skb;
1839 rx.local = local;
1840
Johannes Berg5cf121c2008-02-25 16:27:43 +01001841 rx.status = status;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001842 rx.rate = rate;
Johannes Bergb2e77712007-09-26 15:19:39 +02001843 rx.fc = le16_to_cpu(hdr->frame_control);
Johannes Berg571ecf62007-07-27 15:43:22 +02001844 type = rx.fc & IEEE80211_FCTL_FTYPE;
Johannes Berg72abd812007-09-17 01:29:22 -04001845
Johannes Bergb2e77712007-09-26 15:19:39 +02001846 if (type == IEEE80211_FTYPE_DATA || type == IEEE80211_FTYPE_MGMT)
Johannes Berg571ecf62007-07-27 15:43:22 +02001847 local->dot11ReceivedFragmentCount++;
Johannes Berg571ecf62007-07-27 15:43:22 +02001848
Johannes Berg8944b792008-01-31 19:48:26 +01001849 rx.sta = sta_info_get(local, hdr->addr2);
1850 if (rx.sta) {
Johannes Bergd0709a62008-02-25 16:27:46 +01001851 rx.sdata = rx.sta->sdata;
1852 rx.dev = rx.sta->sdata->dev;
Johannes Bergb2e77712007-09-26 15:19:39 +02001853 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001854
Johannes Berg571ecf62007-07-27 15:43:22 +02001855 if ((status->flag & RX_FLAG_MMIC_ERROR)) {
Johannes Berg8944b792008-01-31 19:48:26 +01001856 ieee80211_rx_michael_mic_report(local->mdev, hdr, &rx);
Johannes Bergd0709a62008-02-25 16:27:46 +01001857 return;
Johannes Berg571ecf62007-07-27 15:43:22 +02001858 }
1859
Zhu Yiece8edd2007-11-22 10:53:21 +08001860 if (unlikely(local->sta_sw_scanning || local->sta_hw_scanning))
Johannes Berg5cf121c2008-02-25 16:27:43 +01001861 rx.flags |= IEEE80211_RX_IN_SCAN;
Johannes Berg571ecf62007-07-27 15:43:22 +02001862
Johannes Berg38f37142008-01-29 17:07:43 +01001863 ieee80211_parse_qos(&rx);
1864 ieee80211_verify_ip_alignment(&rx);
1865
Johannes Berg571ecf62007-07-27 15:43:22 +02001866 skb = rx.skb;
1867
Johannes Berg79010422007-09-18 17:29:21 -04001868 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Johannes Berg2a8a9a82007-08-28 17:01:52 -04001869 if (!netif_running(sdata->dev))
1870 continue;
1871
Johannes Berg51fb61e2007-12-19 01:31:27 +01001872 if (sdata->vif.type == IEEE80211_IF_TYPE_MNTR)
Johannes Bergb2e77712007-09-26 15:19:39 +02001873 continue;
1874
Johannes Berg51fb61e2007-12-19 01:31:27 +01001875 bssid = ieee80211_get_bssid(hdr, skb->len, sdata->vif.type);
Johannes Berg5cf121c2008-02-25 16:27:43 +01001876 rx.flags |= IEEE80211_RX_RA_MATCH;
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02001877 prepares = prepare_for_handlers(sdata, bssid, &rx, hdr);
Johannes Berg23a24de2007-07-27 15:43:22 +02001878
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02001879 if (!prepares)
Johannes Berg23a24de2007-07-27 15:43:22 +02001880 continue;
Johannes Berg8e6f0032007-07-27 15:43:22 +02001881
Johannes Berg340e11f2007-07-27 15:43:22 +02001882 /*
1883 * frame is destined for this interface, but if it's not
1884 * also for the previous one we handle that after the
1885 * loop to avoid copying the SKB once too much
1886 */
1887
1888 if (!prev) {
1889 prev = sdata;
1890 continue;
Johannes Berg8e6f0032007-07-27 15:43:22 +02001891 }
Johannes Berg340e11f2007-07-27 15:43:22 +02001892
1893 /*
1894 * frame was destined for the previous interface
1895 * so invoke RX handlers for it
1896 */
1897
1898 skb_new = skb_copy(skb, GFP_ATOMIC);
1899 if (!skb_new) {
1900 if (net_ratelimit())
1901 printk(KERN_DEBUG "%s: failed to copy "
Pavel Roskina4278e12008-05-12 09:02:24 -04001902 "multicast frame for %s\n",
Johannes Bergdd1cd4c2007-09-18 17:29:20 -04001903 wiphy_name(local->hw.wiphy),
1904 prev->dev->name);
Johannes Berg340e11f2007-07-27 15:43:22 +02001905 continue;
1906 }
Helmut Schaa69f817b2007-12-21 15:16:35 +01001907 rx.fc = le16_to_cpu(hdr->frame_control);
Johannes Berg8944b792008-01-31 19:48:26 +01001908 ieee80211_invoke_rx_handlers(prev, &rx, skb_new);
Johannes Berg8e6f0032007-07-27 15:43:22 +02001909 prev = sdata;
Johannes Berg571ecf62007-07-27 15:43:22 +02001910 }
Johannes Berg8e6f0032007-07-27 15:43:22 +02001911 if (prev) {
Helmut Schaa69f817b2007-12-21 15:16:35 +01001912 rx.fc = le16_to_cpu(hdr->frame_control);
Johannes Berg8944b792008-01-31 19:48:26 +01001913 ieee80211_invoke_rx_handlers(prev, &rx, skb);
Johannes Berg8e6f0032007-07-27 15:43:22 +02001914 } else
1915 dev_kfree_skb(skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02001916}
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02001917
Ron Rindjunskyb5807812007-12-25 17:00:35 +02001918#define SEQ_MODULO 0x1000
1919#define SEQ_MASK 0xfff
1920
1921static inline int seq_less(u16 sq1, u16 sq2)
1922{
1923 return (((sq1 - sq2) & SEQ_MASK) > (SEQ_MODULO >> 1));
1924}
1925
1926static inline u16 seq_inc(u16 sq)
1927{
1928 return ((sq + 1) & SEQ_MASK);
1929}
1930
1931static inline u16 seq_sub(u16 sq1, u16 sq2)
1932{
1933 return ((sq1 - sq2) & SEQ_MASK);
1934}
1935
1936
Ron Rindjunsky71364712007-12-25 17:00:36 +02001937/*
1938 * As it function blongs to Rx path it must be called with
1939 * the proper rcu_read_lock protection for its flow.
1940 */
Ron Rindjunskyb5807812007-12-25 17:00:35 +02001941u8 ieee80211_sta_manage_reorder_buf(struct ieee80211_hw *hw,
1942 struct tid_ampdu_rx *tid_agg_rx,
1943 struct sk_buff *skb, u16 mpdu_seq_num,
1944 int bar_req)
1945{
1946 struct ieee80211_local *local = hw_to_local(hw);
1947 struct ieee80211_rx_status status;
1948 u16 head_seq_num, buf_size;
1949 int index;
Johannes Berg8318d782008-01-24 19:38:38 +01001950 struct ieee80211_supported_band *sband;
1951 struct ieee80211_rate *rate;
Ron Rindjunskyb5807812007-12-25 17:00:35 +02001952
1953 buf_size = tid_agg_rx->buf_size;
1954 head_seq_num = tid_agg_rx->head_seq_num;
1955
1956 /* frame with out of date sequence number */
1957 if (seq_less(mpdu_seq_num, head_seq_num)) {
1958 dev_kfree_skb(skb);
1959 return 1;
1960 }
1961
1962 /* if frame sequence number exceeds our buffering window size or
1963 * block Ack Request arrived - release stored frames */
1964 if ((!seq_less(mpdu_seq_num, head_seq_num + buf_size)) || (bar_req)) {
1965 /* new head to the ordering buffer */
1966 if (bar_req)
1967 head_seq_num = mpdu_seq_num;
1968 else
1969 head_seq_num =
1970 seq_inc(seq_sub(mpdu_seq_num, buf_size));
1971 /* release stored frames up to new head to stack */
1972 while (seq_less(tid_agg_rx->head_seq_num, head_seq_num)) {
1973 index = seq_sub(tid_agg_rx->head_seq_num,
1974 tid_agg_rx->ssn)
1975 % tid_agg_rx->buf_size;
1976
1977 if (tid_agg_rx->reorder_buf[index]) {
1978 /* release the reordered frames to stack */
1979 memcpy(&status,
1980 tid_agg_rx->reorder_buf[index]->cb,
1981 sizeof(status));
Johannes Berg8318d782008-01-24 19:38:38 +01001982 sband = local->hw.wiphy->bands[status.band];
1983 rate = &sband->bitrates[status.rate_idx];
Ron Rindjunskyb5807812007-12-25 17:00:35 +02001984 __ieee80211_rx_handle_packet(hw,
1985 tid_agg_rx->reorder_buf[index],
Johannes Berg9e72ebd2008-05-21 17:33:42 +02001986 &status, rate);
Ron Rindjunskyb5807812007-12-25 17:00:35 +02001987 tid_agg_rx->stored_mpdu_num--;
1988 tid_agg_rx->reorder_buf[index] = NULL;
1989 }
1990 tid_agg_rx->head_seq_num =
1991 seq_inc(tid_agg_rx->head_seq_num);
1992 }
1993 if (bar_req)
1994 return 1;
1995 }
1996
1997 /* now the new frame is always in the range of the reordering */
1998 /* buffer window */
1999 index = seq_sub(mpdu_seq_num, tid_agg_rx->ssn)
2000 % tid_agg_rx->buf_size;
2001 /* check if we already stored this frame */
2002 if (tid_agg_rx->reorder_buf[index]) {
2003 dev_kfree_skb(skb);
2004 return 1;
2005 }
2006
2007 /* if arrived mpdu is in the right order and nothing else stored */
2008 /* release it immediately */
2009 if (mpdu_seq_num == tid_agg_rx->head_seq_num &&
2010 tid_agg_rx->stored_mpdu_num == 0) {
2011 tid_agg_rx->head_seq_num =
2012 seq_inc(tid_agg_rx->head_seq_num);
2013 return 0;
2014 }
2015
2016 /* put the frame in the reordering buffer */
2017 tid_agg_rx->reorder_buf[index] = skb;
2018 tid_agg_rx->stored_mpdu_num++;
2019 /* release the buffer until next missing frame */
2020 index = seq_sub(tid_agg_rx->head_seq_num, tid_agg_rx->ssn)
2021 % tid_agg_rx->buf_size;
2022 while (tid_agg_rx->reorder_buf[index]) {
2023 /* release the reordered frame back to stack */
2024 memcpy(&status, tid_agg_rx->reorder_buf[index]->cb,
2025 sizeof(status));
Johannes Berg8318d782008-01-24 19:38:38 +01002026 sband = local->hw.wiphy->bands[status.band];
2027 rate = &sband->bitrates[status.rate_idx];
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002028 __ieee80211_rx_handle_packet(hw, tid_agg_rx->reorder_buf[index],
Johannes Berg9e72ebd2008-05-21 17:33:42 +02002029 &status, rate);
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002030 tid_agg_rx->stored_mpdu_num--;
2031 tid_agg_rx->reorder_buf[index] = NULL;
2032 tid_agg_rx->head_seq_num = seq_inc(tid_agg_rx->head_seq_num);
2033 index = seq_sub(tid_agg_rx->head_seq_num,
2034 tid_agg_rx->ssn) % tid_agg_rx->buf_size;
2035 }
2036 return 1;
2037}
2038
Ron Rindjunsky71ebb4a2008-01-21 12:39:12 +02002039static u8 ieee80211_rx_reorder_ampdu(struct ieee80211_local *local,
2040 struct sk_buff *skb)
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002041{
2042 struct ieee80211_hw *hw = &local->hw;
2043 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
2044 struct sta_info *sta;
2045 struct tid_ampdu_rx *tid_agg_rx;
Harvey Harrison87228f52008-06-11 14:21:59 -07002046 u16 sc;
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002047 u16 mpdu_seq_num;
Harvey Harrison182503a2008-06-22 16:45:29 -07002048 u8 ret = 0;
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002049 int tid;
2050
2051 sta = sta_info_get(local, hdr->addr2);
2052 if (!sta)
2053 return ret;
2054
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002055 /* filter the QoS data rx stream according to
2056 * STA/TID and check if this STA/TID is on aggregation */
Harvey Harrison87228f52008-06-11 14:21:59 -07002057 if (!ieee80211_is_data_qos(hdr->frame_control))
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002058 goto end_reorder;
2059
Harvey Harrison238f74a2008-07-02 11:05:34 -07002060 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002061
Ron Rindjunskycee24a32008-03-26 20:36:03 +02002062 if (sta->ampdu_mlme.tid_state_rx[tid] != HT_AGG_STATE_OPERATIONAL)
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002063 goto end_reorder;
2064
Ron Rindjunskycee24a32008-03-26 20:36:03 +02002065 tid_agg_rx = sta->ampdu_mlme.tid_rx[tid];
2066
Emmanuel Grumbach2560b6e2008-07-10 00:47:19 +03002067 /* qos null data frames are excluded */
2068 if (unlikely(hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_NULLFUNC)))
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002069 goto end_reorder;
2070
2071 /* new un-ordered ampdu frame - process it */
2072
2073 /* reset session timer */
2074 if (tid_agg_rx->timeout) {
2075 unsigned long expires =
2076 jiffies + (tid_agg_rx->timeout / 1000) * HZ;
2077 mod_timer(&tid_agg_rx->session_timer, expires);
2078 }
2079
2080 /* if this mpdu is fragmented - terminate rx aggregation session */
2081 sc = le16_to_cpu(hdr->seq_ctrl);
2082 if (sc & IEEE80211_SCTL_FRAG) {
Johannes Bergd0709a62008-02-25 16:27:46 +01002083 ieee80211_sta_stop_rx_ba_session(sta->sdata->dev, sta->addr,
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002084 tid, 0, WLAN_REASON_QSTA_REQUIRE_SETUP);
2085 ret = 1;
2086 goto end_reorder;
2087 }
2088
2089 /* according to mpdu sequence number deal with reordering buffer */
2090 mpdu_seq_num = (sc & IEEE80211_SCTL_SEQ) >> 4;
2091 ret = ieee80211_sta_manage_reorder_buf(hw, tid_agg_rx, skb,
2092 mpdu_seq_num, 0);
Johannes Bergd0709a62008-02-25 16:27:46 +01002093 end_reorder:
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002094 return ret;
2095}
2096
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02002097/*
2098 * This is the receive path handler. It is called by a low level driver when an
2099 * 802.11 MPDU is received from the hardware.
2100 */
2101void __ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb,
2102 struct ieee80211_rx_status *status)
2103{
2104 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berg8318d782008-01-24 19:38:38 +01002105 struct ieee80211_rate *rate = NULL;
2106 struct ieee80211_supported_band *sband;
2107
2108 if (status->band < 0 ||
Adrian Bunk13d8fd22008-04-23 12:51:28 +03002109 status->band >= IEEE80211_NUM_BANDS) {
Johannes Berg8318d782008-01-24 19:38:38 +01002110 WARN_ON(1);
2111 return;
2112 }
2113
2114 sband = local->hw.wiphy->bands[status->band];
2115
2116 if (!sband ||
2117 status->rate_idx < 0 ||
2118 status->rate_idx >= sband->n_bitrates) {
2119 WARN_ON(1);
2120 return;
2121 }
2122
2123 rate = &sband->bitrates[status->rate_idx];
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02002124
2125 /*
2126 * key references and virtual interfaces are protected using RCU
2127 * and this requires that we are in a read-side RCU section during
2128 * receive processing
2129 */
2130 rcu_read_lock();
2131
2132 /*
2133 * Frames with failed FCS/PLCP checksum are not returned,
2134 * all other frames are returned without radiotap header
2135 * if it was previously present.
2136 * Also, frames with less than 16 bytes are dropped.
2137 */
Johannes Berg8318d782008-01-24 19:38:38 +01002138 skb = ieee80211_rx_monitor(local, skb, status, rate);
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02002139 if (!skb) {
2140 rcu_read_unlock();
2141 return;
2142 }
2143
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002144 if (!ieee80211_rx_reorder_ampdu(local, skb))
Johannes Berg9e72ebd2008-05-21 17:33:42 +02002145 __ieee80211_rx_handle_packet(hw, skb, status, rate);
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02002146
2147 rcu_read_unlock();
2148}
Johannes Berg571ecf62007-07-27 15:43:22 +02002149EXPORT_SYMBOL(__ieee80211_rx);
2150
2151/* This is a version of the rx handler that can be called from hard irq
2152 * context. Post the skb on the queue and schedule the tasklet */
2153void ieee80211_rx_irqsafe(struct ieee80211_hw *hw, struct sk_buff *skb,
2154 struct ieee80211_rx_status *status)
2155{
2156 struct ieee80211_local *local = hw_to_local(hw);
2157
2158 BUILD_BUG_ON(sizeof(struct ieee80211_rx_status) > sizeof(skb->cb));
2159
2160 skb->dev = local->mdev;
2161 /* copy status into skb->cb for use by tasklet */
2162 memcpy(skb->cb, status, sizeof(*status));
2163 skb->pkt_type = IEEE80211_RX_MSG;
2164 skb_queue_tail(&local->skb_queue, skb);
2165 tasklet_schedule(&local->tasklet);
2166}
2167EXPORT_SYMBOL(ieee80211_rx_irqsafe);