blob: fab443d717eb9d2c66c7c1e9d5388bb6982a11e9 [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 {
Harvey Harrison238f74a2008-07-02 11:05:34 -0700337 if (unlikely(ieee80211_is_mgmt(hdr->frame_control))) {
Johannes Berg6e0d1142007-07-27 15:43:22 +0200338 /* Separate TID for management frames */
339 tid = NUM_RX_DATA_QUEUES - 1;
340 } else {
341 /* no qos control present */
342 tid = 0; /* 802.1d - Best Effort */
343 }
344 }
Johannes Berg52865df2007-07-27 15:43:22 +0200345
Johannes Berg5cf121c2008-02-25 16:27:43 +0100346 rx->queue = tid;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200347 /* Set skb->priority to 1d tag if highest order bit of TID is not set.
348 * For now, set skb->priority to 0 for other cases. */
349 rx->skb->priority = (tid > 7) ? 0 : tid;
Johannes Berg38f37142008-01-29 17:07:43 +0100350}
Johannes Berg6e0d1142007-07-27 15:43:22 +0200351
Johannes Berg5cf121c2008-02-25 16:27:43 +0100352static void ieee80211_verify_ip_alignment(struct ieee80211_rx_data *rx)
Johannes Berg38f37142008-01-29 17:07:43 +0100353{
354#ifdef CONFIG_MAC80211_DEBUG_PACKET_ALIGNMENT
Harvey Harrisona7767f92008-07-02 16:30:51 -0700355 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg38f37142008-01-29 17:07:43 +0100356 int hdrlen;
357
Harvey Harrisona7767f92008-07-02 16:30:51 -0700358 if (!ieee80211_is_data_present(hdr->frame_control))
Johannes Berg38f37142008-01-29 17:07:43 +0100359 return;
360
361 /*
362 * Drivers are required to align the payload data in a way that
363 * guarantees that the contained IP header is aligned to a four-
364 * byte boundary. In the case of regular frames, this simply means
365 * aligning the payload to a four-byte boundary (because either
366 * the IP header is directly contained, or IV/RFC1042 headers that
367 * have a length divisible by four are in front of it.
368 *
369 * With A-MSDU frames, however, the payload data address must
370 * yield two modulo four because there are 14-byte 802.3 headers
371 * within the A-MSDU frames that push the IP header further back
372 * to a multiple of four again. Thankfully, the specs were sane
373 * enough this time around to require padding each A-MSDU subframe
374 * to a length that is a multiple of four.
375 *
376 * Padding like atheros hardware adds which is inbetween the 802.11
377 * header and the payload is not supported, the driver is required
378 * to move the 802.11 header further back in that case.
379 */
Harvey Harrisona7767f92008-07-02 16:30:51 -0700380 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berg5cf121c2008-02-25 16:27:43 +0100381 if (rx->flags & IEEE80211_RX_AMSDU)
Johannes Berg38f37142008-01-29 17:07:43 +0100382 hdrlen += ETH_HLEN;
383 WARN_ON_ONCE(((unsigned long)(rx->skb->data + hdrlen)) & 3);
384#endif
Johannes Berg6e0d1142007-07-27 15:43:22 +0200385}
386
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +0200387
Johannes Berg571ecf62007-07-27 15:43:22 +0200388/* rx handlers */
389
Johannes Berg49461622008-06-30 15:10:45 +0200390static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100391ieee80211_rx_h_passive_scan(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +0200392{
393 struct ieee80211_local *local = rx->local;
394 struct sk_buff *skb = rx->skb;
395
Zhu Yiece8edd2007-11-22 10:53:21 +0800396 if (unlikely(local->sta_hw_scanning))
Johannes Berg5cf121c2008-02-25 16:27:43 +0100397 return ieee80211_sta_rx_scan(rx->dev, skb, rx->status);
Zhu Yiece8edd2007-11-22 10:53:21 +0800398
399 if (unlikely(local->sta_sw_scanning)) {
400 /* drop all the other packets during a software scan anyway */
Johannes Berg5cf121c2008-02-25 16:27:43 +0100401 if (ieee80211_sta_rx_scan(rx->dev, skb, rx->status)
Johannes Berg9ae54c82008-01-31 19:48:20 +0100402 != RX_QUEUED)
Zhu Yiece8edd2007-11-22 10:53:21 +0800403 dev_kfree_skb(skb);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100404 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200405 }
406
Johannes Berg5cf121c2008-02-25 16:27:43 +0100407 if (unlikely(rx->flags & IEEE80211_RX_IN_SCAN)) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200408 /* scanning finished during invoking of handlers */
409 I802_DEBUG_INC(local->rx_handlers_drop_passive_scan);
Johannes Berge4c26ad2008-01-31 19:48:21 +0100410 return RX_DROP_UNUSABLE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200411 }
412
Johannes Berg9ae54c82008-01-31 19:48:20 +0100413 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200414}
415
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100416static ieee80211_rx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100417ieee80211_rx_mesh_check(struct ieee80211_rx_data *rx)
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100418{
Harvey Harrisona7767f92008-07-02 16:30:51 -0700419 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
420 unsigned int hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Bergd6d1a5a2008-02-25 16:24:38 +0100421
Harvey Harrisona7767f92008-07-02 16:30:51 -0700422 if (ieee80211_is_data(hdr->frame_control)) {
423 if (!ieee80211_has_a4(hdr->frame_control))
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100424 return RX_DROP_MONITOR;
425 if (memcmp(hdr->addr4, rx->dev->dev_addr, ETH_ALEN) == 0)
426 return RX_DROP_MONITOR;
427 }
428
429 /* If there is not an established peer link and this is not a peer link
430 * establisment frame, beacon or probe, drop the frame.
431 */
432
Luis Carlos Cobob4e08ea2008-02-29 15:46:08 -0800433 if (!rx->sta || sta_plink_state(rx->sta) != PLINK_ESTAB) {
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100434 struct ieee80211_mgmt *mgmt;
Johannes Bergd6d1a5a2008-02-25 16:24:38 +0100435
Harvey Harrisona7767f92008-07-02 16:30:51 -0700436 if (!ieee80211_is_mgmt(hdr->frame_control))
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100437 return RX_DROP_MONITOR;
438
Harvey Harrisona7767f92008-07-02 16:30:51 -0700439 if (ieee80211_is_action(hdr->frame_control)) {
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100440 mgmt = (struct ieee80211_mgmt *)hdr;
441 if (mgmt->u.action.category != PLINK_CATEGORY)
442 return RX_DROP_MONITOR;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100443 return RX_CONTINUE;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100444 }
445
Harvey Harrisona7767f92008-07-02 16:30:51 -0700446 if (ieee80211_is_probe_req(hdr->frame_control) ||
447 ieee80211_is_probe_resp(hdr->frame_control) ||
448 ieee80211_is_beacon(hdr->frame_control))
449 return RX_CONTINUE;
450
451 return RX_DROP_MONITOR;
452
453 }
454
455#define msh_h_get(h, l) ((struct ieee80211s_hdr *) ((u8 *)h + l))
456
457 if (ieee80211_is_data(hdr->frame_control) &&
458 is_multicast_ether_addr(hdr->addr1) &&
459 mesh_rmc_check(hdr->addr4, msh_h_get(hdr, hdrlen), rx->dev))
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100460 return RX_DROP_MONITOR;
Johannes Berg902acc72008-02-23 15:17:19 +0100461#undef msh_h_get
Johannes Bergd6d1a5a2008-02-25 16:24:38 +0100462
Johannes Berg902acc72008-02-23 15:17:19 +0100463 return RX_CONTINUE;
464}
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100465
466
Johannes Berg49461622008-06-30 15:10:45 +0200467static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100468ieee80211_rx_h_check(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +0200469{
Harvey Harrisona7767f92008-07-02 16:30:51 -0700470 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg571ecf62007-07-27 15:43:22 +0200471
472 /* Drop duplicate 802.11 retransmissions (IEEE 802.11 Chap. 9.2.9) */
473 if (rx->sta && !is_multicast_ether_addr(hdr->addr1)) {
Harvey Harrisona7767f92008-07-02 16:30:51 -0700474 if (unlikely(ieee80211_has_retry(hdr->frame_control) &&
Johannes Berg5cf121c2008-02-25 16:27:43 +0100475 rx->sta->last_seq_ctrl[rx->queue] ==
Johannes Berg571ecf62007-07-27 15:43:22 +0200476 hdr->seq_ctrl)) {
Johannes Berg5cf121c2008-02-25 16:27:43 +0100477 if (rx->flags & IEEE80211_RX_RA_MATCH) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200478 rx->local->dot11FrameDuplicateCount++;
479 rx->sta->num_duplicates++;
480 }
Johannes Berge4c26ad2008-01-31 19:48:21 +0100481 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +0200482 } else
Johannes Berg5cf121c2008-02-25 16:27:43 +0100483 rx->sta->last_seq_ctrl[rx->queue] = hdr->seq_ctrl;
Johannes Berg571ecf62007-07-27 15:43:22 +0200484 }
485
Johannes Berg571ecf62007-07-27 15:43:22 +0200486 if (unlikely(rx->skb->len < 16)) {
487 I802_DEBUG_INC(rx->local->rx_handlers_drop_short);
Johannes Berge4c26ad2008-01-31 19:48:21 +0100488 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +0200489 }
490
Johannes Berg571ecf62007-07-27 15:43:22 +0200491 /* Drop disallowed frame classes based on STA auth/assoc state;
492 * IEEE 802.11, Chap 5.5.
493 *
494 * 80211.o does filtering only based on association state, i.e., it
495 * drops Class 3 frames from not associated stations. hostapd sends
496 * deauth/disassoc frames when needed. In addition, hostapd is
497 * responsible for filtering on both auth and assoc states.
498 */
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100499
Johannes Berg902acc72008-02-23 15:17:19 +0100500 if (ieee80211_vif_is_mesh(&rx->sdata->vif))
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100501 return ieee80211_rx_mesh_check(rx);
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100502
Harvey Harrisona7767f92008-07-02 16:30:51 -0700503 if (unlikely((ieee80211_is_data(hdr->frame_control) ||
504 ieee80211_is_pspoll(hdr->frame_control)) &&
Johannes Berg51fb61e2007-12-19 01:31:27 +0100505 rx->sdata->vif.type != IEEE80211_IF_TYPE_IBSS &&
Johannes Berg07346f812008-05-03 01:02:02 +0200506 (!rx->sta || !test_sta_flags(rx->sta, WLAN_STA_ASSOC)))) {
Harvey Harrisona7767f92008-07-02 16:30:51 -0700507 if ((!ieee80211_has_fromds(hdr->frame_control) &&
508 !ieee80211_has_tods(hdr->frame_control) &&
509 ieee80211_is_data(hdr->frame_control)) ||
510 !(rx->flags & IEEE80211_RX_RA_MATCH)) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200511 /* Drop IBSS frames and frames for other hosts
512 * silently. */
Johannes Berge4c26ad2008-01-31 19:48:21 +0100513 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +0200514 }
515
Johannes Berge4c26ad2008-01-31 19:48:21 +0100516 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +0200517 }
518
Johannes Berg9ae54c82008-01-31 19:48:20 +0100519 return RX_CONTINUE;
Johannes Berg570bd532007-07-27 15:43:22 +0200520}
521
522
Johannes Berg49461622008-06-30 15:10:45 +0200523static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100524ieee80211_rx_h_decrypt(struct ieee80211_rx_data *rx)
Johannes Berg570bd532007-07-27 15:43:22 +0200525{
Harvey Harrisona7767f92008-07-02 16:30:51 -0700526 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg3017b802007-08-28 17:01:53 -0400527 int keyidx;
528 int hdrlen;
Johannes Berge4c26ad2008-01-31 19:48:21 +0100529 ieee80211_rx_result result = RX_DROP_UNUSABLE;
Johannes Bergd4e46a32007-09-14 11:10:24 -0400530 struct ieee80211_key *stakey = NULL;
Johannes Berg570bd532007-07-27 15:43:22 +0200531
Johannes Berg3017b802007-08-28 17:01:53 -0400532 /*
533 * Key selection 101
534 *
535 * There are three types of keys:
536 * - GTK (group keys)
537 * - PTK (pairwise keys)
538 * - STK (station-to-station pairwise keys)
539 *
540 * When selecting a key, we have to distinguish between multicast
541 * (including broadcast) and unicast frames, the latter can only
542 * use PTKs and STKs while the former always use GTKs. Unless, of
543 * course, actual WEP keys ("pre-RSNA") are used, then unicast
544 * frames can also use key indizes like GTKs. Hence, if we don't
545 * have a PTK/STK we check the key index for a WEP key.
546 *
Johannes Berg8dc06a12007-08-28 17:01:55 -0400547 * Note that in a regular BSS, multicast frames are sent by the
548 * AP only, associated stations unicast the frame to the AP first
549 * which then multicasts it on their behalf.
550 *
Johannes Berg3017b802007-08-28 17:01:53 -0400551 * There is also a slight problem in IBSS mode: GTKs are negotiated
552 * with each station, that is something we don't currently handle.
Johannes Berg8dc06a12007-08-28 17:01:55 -0400553 * The spec seems to expect that one negotiates the same key with
554 * every station but there's no such requirement; VLANs could be
555 * possible.
Johannes Berg3017b802007-08-28 17:01:53 -0400556 */
Johannes Berg571ecf62007-07-27 15:43:22 +0200557
Harvey Harrisona7767f92008-07-02 16:30:51 -0700558 if (!ieee80211_has_protected(hdr->frame_control))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100559 return RX_CONTINUE;
Johannes Berg3017b802007-08-28 17:01:53 -0400560
561 /*
Johannes Berg1990af82007-09-26 17:53:15 +0200562 * No point in finding a key and decrypting if the frame is neither
Johannes Berg3017b802007-08-28 17:01:53 -0400563 * addressed to us nor a multicast frame.
564 */
Johannes Berg5cf121c2008-02-25 16:27:43 +0100565 if (!(rx->flags & IEEE80211_RX_RA_MATCH))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100566 return RX_CONTINUE;
Johannes Berg3017b802007-08-28 17:01:53 -0400567
Johannes Bergd4e46a32007-09-14 11:10:24 -0400568 if (rx->sta)
569 stakey = rcu_dereference(rx->sta->key);
570
571 if (!is_multicast_ether_addr(hdr->addr1) && stakey) {
572 rx->key = stakey;
Johannes Berg571ecf62007-07-27 15:43:22 +0200573 } else {
Johannes Berg3017b802007-08-28 17:01:53 -0400574 /*
575 * The device doesn't give us the IV so we won't be
576 * able to look up the key. That's ok though, we
577 * don't need to decrypt the frame, we just won't
578 * be able to keep statistics accurate.
579 * Except for key threshold notifications, should
580 * we somehow allow the driver to tell us which key
581 * the hardware used if this flag is set?
582 */
Johannes Berg5cf121c2008-02-25 16:27:43 +0100583 if ((rx->status->flag & RX_FLAG_DECRYPTED) &&
584 (rx->status->flag & RX_FLAG_IV_STRIPPED))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100585 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200586
Harvey Harrisona7767f92008-07-02 16:30:51 -0700587 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berg571ecf62007-07-27 15:43:22 +0200588
Johannes Berg3017b802007-08-28 17:01:53 -0400589 if (rx->skb->len < 8 + hdrlen)
Johannes Berge4c26ad2008-01-31 19:48:21 +0100590 return RX_DROP_UNUSABLE; /* TODO: count this? */
Johannes Berg571ecf62007-07-27 15:43:22 +0200591
Johannes Berg3017b802007-08-28 17:01:53 -0400592 /*
593 * no need to call ieee80211_wep_get_keyidx,
594 * it verifies a bunch of things we've done already
595 */
596 keyidx = rx->skb->data[hdrlen + 3] >> 6;
597
Johannes Bergd4e46a32007-09-14 11:10:24 -0400598 rx->key = rcu_dereference(rx->sdata->keys[keyidx]);
Johannes Berg3017b802007-08-28 17:01:53 -0400599
600 /*
601 * RSNA-protected unicast frames should always be sent with
602 * pairwise or station-to-station keys, but for WEP we allow
603 * using a key index as well.
604 */
Johannes Berg8f20fc22007-08-28 17:01:54 -0400605 if (rx->key && rx->key->conf.alg != ALG_WEP &&
Johannes Berg3017b802007-08-28 17:01:53 -0400606 !is_multicast_ether_addr(hdr->addr1))
607 rx->key = NULL;
Johannes Berg571ecf62007-07-27 15:43:22 +0200608 }
609
Johannes Berg3017b802007-08-28 17:01:53 -0400610 if (rx->key) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200611 rx->key->tx_rx_count++;
Johannes Berg011bfcc2007-09-17 01:29:25 -0400612 /* TODO: add threshold stuff again */
Johannes Berg1990af82007-09-26 17:53:15 +0200613 } else {
Johannes Berge4c26ad2008-01-31 19:48:21 +0100614 return RX_DROP_MONITOR;
Johannes Berg70f08762007-09-26 17:53:14 +0200615 }
616
Johannes Berg1990af82007-09-26 17:53:15 +0200617 /* Check for weak IVs if possible */
618 if (rx->sta && rx->key->conf.alg == ALG_WEP &&
Harvey Harrisona7767f92008-07-02 16:30:51 -0700619 ieee80211_is_data(hdr->frame_control) &&
Johannes Berg5cf121c2008-02-25 16:27:43 +0100620 (!(rx->status->flag & RX_FLAG_IV_STRIPPED) ||
621 !(rx->status->flag & RX_FLAG_DECRYPTED)) &&
Johannes Berg1990af82007-09-26 17:53:15 +0200622 ieee80211_wep_is_weak_iv(rx->skb, rx->key))
623 rx->sta->wep_weak_iv_count++;
624
Johannes Berg70f08762007-09-26 17:53:14 +0200625 switch (rx->key->conf.alg) {
626 case ALG_WEP:
Mattias Nisslere2f036d2007-10-07 16:35:31 +0200627 result = ieee80211_crypto_wep_decrypt(rx);
628 break;
Johannes Berg70f08762007-09-26 17:53:14 +0200629 case ALG_TKIP:
Mattias Nisslere2f036d2007-10-07 16:35:31 +0200630 result = ieee80211_crypto_tkip_decrypt(rx);
631 break;
Johannes Berg70f08762007-09-26 17:53:14 +0200632 case ALG_CCMP:
Mattias Nisslere2f036d2007-10-07 16:35:31 +0200633 result = ieee80211_crypto_ccmp_decrypt(rx);
634 break;
Johannes Berg70f08762007-09-26 17:53:14 +0200635 }
636
Mattias Nisslere2f036d2007-10-07 16:35:31 +0200637 /* either the frame has been decrypted or will be dropped */
Johannes Berg5cf121c2008-02-25 16:27:43 +0100638 rx->status->flag |= RX_FLAG_DECRYPTED;
Mattias Nisslere2f036d2007-10-07 16:35:31 +0200639
640 return result;
Johannes Berg70f08762007-09-26 17:53:14 +0200641}
642
Johannes Berg571ecf62007-07-27 15:43:22 +0200643static void ap_sta_ps_start(struct net_device *dev, struct sta_info *sta)
644{
645 struct ieee80211_sub_if_data *sdata;
Joe Perches0795af52007-10-03 17:59:30 -0700646 DECLARE_MAC_BUF(mac);
647
Johannes Bergd0709a62008-02-25 16:27:46 +0100648 sdata = sta->sdata;
Johannes Berg571ecf62007-07-27 15:43:22 +0200649
650 if (sdata->bss)
651 atomic_inc(&sdata->bss->num_sta_ps);
Johannes Berg07346f812008-05-03 01:02:02 +0200652 set_and_clear_sta_flags(sta, WLAN_STA_PS, WLAN_STA_PSPOLL);
Johannes Berg571ecf62007-07-27 15:43:22 +0200653#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Joe Perches0795af52007-10-03 17:59:30 -0700654 printk(KERN_DEBUG "%s: STA %s aid %d enters power save mode\n",
655 dev->name, print_mac(mac, sta->addr), sta->aid);
Johannes Berg571ecf62007-07-27 15:43:22 +0200656#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
657}
658
659static int ap_sta_ps_end(struct net_device *dev, struct sta_info *sta)
660{
661 struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
662 struct sk_buff *skb;
663 int sent = 0;
664 struct ieee80211_sub_if_data *sdata;
Johannes Berge039fa42008-05-15 12:55:29 +0200665 struct ieee80211_tx_info *info;
Joe Perches0795af52007-10-03 17:59:30 -0700666 DECLARE_MAC_BUF(mac);
Johannes Berg571ecf62007-07-27 15:43:22 +0200667
Johannes Bergd0709a62008-02-25 16:27:46 +0100668 sdata = sta->sdata;
Johannes Berg004c8722008-02-20 11:21:35 +0100669
Johannes Berg571ecf62007-07-27 15:43:22 +0200670 if (sdata->bss)
671 atomic_dec(&sdata->bss->num_sta_ps);
Johannes Berg004c8722008-02-20 11:21:35 +0100672
Johannes Berg07346f812008-05-03 01:02:02 +0200673 clear_sta_flags(sta, WLAN_STA_PS | WLAN_STA_PSPOLL);
Johannes Berg004c8722008-02-20 11:21:35 +0100674
675 if (!skb_queue_empty(&sta->ps_tx_buf))
676 sta_info_clear_tim_bit(sta);
677
Johannes Berg571ecf62007-07-27 15:43:22 +0200678#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Joe Perches0795af52007-10-03 17:59:30 -0700679 printk(KERN_DEBUG "%s: STA %s aid %d exits power save mode\n",
680 dev->name, print_mac(mac, sta->addr), sta->aid);
Johannes Berg571ecf62007-07-27 15:43:22 +0200681#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
Johannes Berg004c8722008-02-20 11:21:35 +0100682
Johannes Berg571ecf62007-07-27 15:43:22 +0200683 /* Send all buffered frames to the station */
684 while ((skb = skb_dequeue(&sta->tx_filtered)) != NULL) {
Johannes Berge039fa42008-05-15 12:55:29 +0200685 info = IEEE80211_SKB_CB(skb);
Johannes Berg571ecf62007-07-27 15:43:22 +0200686 sent++;
Johannes Berge039fa42008-05-15 12:55:29 +0200687 info->flags |= IEEE80211_TX_CTL_REQUEUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200688 dev_queue_xmit(skb);
689 }
690 while ((skb = skb_dequeue(&sta->ps_tx_buf)) != NULL) {
Johannes Berge039fa42008-05-15 12:55:29 +0200691 info = IEEE80211_SKB_CB(skb);
Johannes Berg571ecf62007-07-27 15:43:22 +0200692 local->total_ps_buffered--;
693 sent++;
694#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Joe Perches0795af52007-10-03 17:59:30 -0700695 printk(KERN_DEBUG "%s: STA %s aid %d send PS frame "
Johannes Berg571ecf62007-07-27 15:43:22 +0200696 "since STA not sleeping anymore\n", dev->name,
Joe Perches0795af52007-10-03 17:59:30 -0700697 print_mac(mac, sta->addr), sta->aid);
Johannes Berg571ecf62007-07-27 15:43:22 +0200698#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
Johannes Berge039fa42008-05-15 12:55:29 +0200699 info->flags |= IEEE80211_TX_CTL_REQUEUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200700 dev_queue_xmit(skb);
701 }
702
703 return sent;
704}
705
Johannes Berg49461622008-06-30 15:10:45 +0200706static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100707ieee80211_rx_h_sta_process(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +0200708{
709 struct sta_info *sta = rx->sta;
710 struct net_device *dev = rx->dev;
Harvey Harrisona7767f92008-07-02 16:30:51 -0700711 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg571ecf62007-07-27 15:43:22 +0200712
713 if (!sta)
Johannes Berg9ae54c82008-01-31 19:48:20 +0100714 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200715
716 /* Update last_rx only for IBSS packets which are for the current
717 * BSSID to avoid keeping the current IBSS network alive in cases where
718 * other STAs are using different BSSID. */
Johannes Berg51fb61e2007-12-19 01:31:27 +0100719 if (rx->sdata->vif.type == IEEE80211_IF_TYPE_IBSS) {
Ron Rindjunsky71364712007-12-25 17:00:36 +0200720 u8 *bssid = ieee80211_get_bssid(hdr, rx->skb->len,
721 IEEE80211_IF_TYPE_IBSS);
Johannes Berg571ecf62007-07-27 15:43:22 +0200722 if (compare_ether_addr(bssid, rx->sdata->u.sta.bssid) == 0)
723 sta->last_rx = jiffies;
724 } else
725 if (!is_multicast_ether_addr(hdr->addr1) ||
Johannes Berg51fb61e2007-12-19 01:31:27 +0100726 rx->sdata->vif.type == IEEE80211_IF_TYPE_STA) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200727 /* Update last_rx only for unicast frames in order to prevent
728 * the Probe Request frames (the only broadcast frames from a
729 * STA in infrastructure mode) from keeping a connection alive.
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100730 * Mesh beacons will update last_rx when if they are found to
731 * match the current local configuration when processed.
Johannes Berg571ecf62007-07-27 15:43:22 +0200732 */
733 sta->last_rx = jiffies;
734 }
735
Johannes Berg5cf121c2008-02-25 16:27:43 +0100736 if (!(rx->flags & IEEE80211_RX_RA_MATCH))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100737 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200738
739 sta->rx_fragments++;
740 sta->rx_bytes += rx->skb->len;
Johannes Berg5cf121c2008-02-25 16:27:43 +0100741 sta->last_signal = rx->status->signal;
Bruno Randolf566bfe52008-05-08 19:15:40 +0200742 sta->last_qual = rx->status->qual;
Johannes Berg5cf121c2008-02-25 16:27:43 +0100743 sta->last_noise = rx->status->noise;
Johannes Berg571ecf62007-07-27 15:43:22 +0200744
Harvey Harrisona7767f92008-07-02 16:30:51 -0700745 if (!ieee80211_has_morefrags(hdr->frame_control)) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200746 /* Change STA power saving mode only in the end of a frame
747 * exchange sequence */
Johannes Berg07346f812008-05-03 01:02:02 +0200748 if (test_sta_flags(sta, WLAN_STA_PS) &&
Harvey Harrisona7767f92008-07-02 16:30:51 -0700749 !ieee80211_has_pm(hdr->frame_control))
Johannes Berg5cf121c2008-02-25 16:27:43 +0100750 rx->sent_ps_buffered += ap_sta_ps_end(dev, sta);
Johannes Berg07346f812008-05-03 01:02:02 +0200751 else if (!test_sta_flags(sta, WLAN_STA_PS) &&
Harvey Harrisona7767f92008-07-02 16:30:51 -0700752 ieee80211_has_pm(hdr->frame_control))
Johannes Berg571ecf62007-07-27 15:43:22 +0200753 ap_sta_ps_start(dev, sta);
754 }
755
756 /* Drop data::nullfunc frames silently, since they are used only to
757 * control station power saving mode. */
Harvey Harrisona7767f92008-07-02 16:30:51 -0700758 if (ieee80211_is_nullfunc(hdr->frame_control)) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200759 I802_DEBUG_INC(rx->local->rx_handlers_drop_nullfunc);
760 /* Update counter and free packet here to avoid counting this
761 * as a dropped packed. */
762 sta->rx_packets++;
763 dev_kfree_skb(rx->skb);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100764 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200765 }
766
Johannes Berg9ae54c82008-01-31 19:48:20 +0100767 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200768} /* ieee80211_rx_h_sta_process */
769
Johannes Berg571ecf62007-07-27 15:43:22 +0200770static inline struct ieee80211_fragment_entry *
771ieee80211_reassemble_add(struct ieee80211_sub_if_data *sdata,
772 unsigned int frag, unsigned int seq, int rx_queue,
773 struct sk_buff **skb)
774{
775 struct ieee80211_fragment_entry *entry;
776 int idx;
777
778 idx = sdata->fragment_next;
779 entry = &sdata->fragments[sdata->fragment_next++];
780 if (sdata->fragment_next >= IEEE80211_FRAGMENT_MAX)
781 sdata->fragment_next = 0;
782
783 if (!skb_queue_empty(&entry->skb_list)) {
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200784#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg571ecf62007-07-27 15:43:22 +0200785 struct ieee80211_hdr *hdr =
786 (struct ieee80211_hdr *) entry->skb_list.next->data;
Joe Perches0795af52007-10-03 17:59:30 -0700787 DECLARE_MAC_BUF(mac);
788 DECLARE_MAC_BUF(mac2);
Johannes Berg571ecf62007-07-27 15:43:22 +0200789 printk(KERN_DEBUG "%s: RX reassembly removed oldest "
790 "fragment entry (idx=%d age=%lu seq=%d last_frag=%d "
Joe Perches0795af52007-10-03 17:59:30 -0700791 "addr1=%s addr2=%s\n",
Johannes Berg571ecf62007-07-27 15:43:22 +0200792 sdata->dev->name, idx,
793 jiffies - entry->first_frag_time, entry->seq,
Joe Perches0795af52007-10-03 17:59:30 -0700794 entry->last_frag, print_mac(mac, hdr->addr1),
795 print_mac(mac2, hdr->addr2));
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200796#endif
Johannes Berg571ecf62007-07-27 15:43:22 +0200797 __skb_queue_purge(&entry->skb_list);
798 }
799
800 __skb_queue_tail(&entry->skb_list, *skb); /* no need for locking */
801 *skb = NULL;
802 entry->first_frag_time = jiffies;
803 entry->seq = seq;
804 entry->rx_queue = rx_queue;
805 entry->last_frag = frag;
806 entry->ccmp = 0;
807 entry->extra_len = 0;
808
809 return entry;
810}
811
812static inline struct ieee80211_fragment_entry *
813ieee80211_reassemble_find(struct ieee80211_sub_if_data *sdata,
814 u16 fc, unsigned int frag, unsigned int seq,
815 int rx_queue, struct ieee80211_hdr *hdr)
816{
817 struct ieee80211_fragment_entry *entry;
818 int i, idx;
819
820 idx = sdata->fragment_next;
821 for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) {
822 struct ieee80211_hdr *f_hdr;
823 u16 f_fc;
824
825 idx--;
826 if (idx < 0)
827 idx = IEEE80211_FRAGMENT_MAX - 1;
828
829 entry = &sdata->fragments[idx];
830 if (skb_queue_empty(&entry->skb_list) || entry->seq != seq ||
831 entry->rx_queue != rx_queue ||
832 entry->last_frag + 1 != frag)
833 continue;
834
835 f_hdr = (struct ieee80211_hdr *) entry->skb_list.next->data;
836 f_fc = le16_to_cpu(f_hdr->frame_control);
837
838 if ((fc & IEEE80211_FCTL_FTYPE) != (f_fc & IEEE80211_FCTL_FTYPE) ||
839 compare_ether_addr(hdr->addr1, f_hdr->addr1) != 0 ||
840 compare_ether_addr(hdr->addr2, f_hdr->addr2) != 0)
841 continue;
842
S.Çağlar Onurab466232008-02-14 17:36:47 +0200843 if (time_after(jiffies, entry->first_frag_time + 2 * HZ)) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200844 __skb_queue_purge(&entry->skb_list);
845 continue;
846 }
847 return entry;
848 }
849
850 return NULL;
851}
852
Johannes Berg49461622008-06-30 15:10:45 +0200853static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100854ieee80211_rx_h_defragment(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +0200855{
856 struct ieee80211_hdr *hdr;
857 u16 sc;
858 unsigned int frag, seq;
859 struct ieee80211_fragment_entry *entry;
860 struct sk_buff *skb;
Joe Perches0795af52007-10-03 17:59:30 -0700861 DECLARE_MAC_BUF(mac);
Johannes Berg571ecf62007-07-27 15:43:22 +0200862
863 hdr = (struct ieee80211_hdr *) rx->skb->data;
864 sc = le16_to_cpu(hdr->seq_ctrl);
865 frag = sc & IEEE80211_SCTL_FRAG;
866
867 if (likely((!(rx->fc & IEEE80211_FCTL_MOREFRAGS) && frag == 0) ||
868 (rx->skb)->len < 24 ||
869 is_multicast_ether_addr(hdr->addr1))) {
870 /* not fragmented */
871 goto out;
872 }
873 I802_DEBUG_INC(rx->local->rx_handlers_fragments);
874
875 seq = (sc & IEEE80211_SCTL_SEQ) >> 4;
876
877 if (frag == 0) {
878 /* This is the first fragment of a new frame. */
879 entry = ieee80211_reassemble_add(rx->sdata, frag, seq,
Johannes Berg5cf121c2008-02-25 16:27:43 +0100880 rx->queue, &(rx->skb));
Johannes Berg8f20fc22007-08-28 17:01:54 -0400881 if (rx->key && rx->key->conf.alg == ALG_CCMP &&
Johannes Berg571ecf62007-07-27 15:43:22 +0200882 (rx->fc & IEEE80211_FCTL_PROTECTED)) {
883 /* Store CCMP PN so that we can verify that the next
884 * fragment has a sequential PN value. */
885 entry->ccmp = 1;
886 memcpy(entry->last_pn,
Johannes Berg5cf121c2008-02-25 16:27:43 +0100887 rx->key->u.ccmp.rx_pn[rx->queue],
Johannes Berg571ecf62007-07-27 15:43:22 +0200888 CCMP_PN_LEN);
889 }
Johannes Berg9ae54c82008-01-31 19:48:20 +0100890 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200891 }
892
893 /* This is a fragment for a frame that should already be pending in
894 * fragment cache. Add this fragment to the end of the pending entry.
895 */
896 entry = ieee80211_reassemble_find(rx->sdata, rx->fc, frag, seq,
Johannes Berg5cf121c2008-02-25 16:27:43 +0100897 rx->queue, hdr);
Johannes Berg571ecf62007-07-27 15:43:22 +0200898 if (!entry) {
899 I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
Johannes Berge4c26ad2008-01-31 19:48:21 +0100900 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +0200901 }
902
903 /* Verify that MPDUs within one MSDU have sequential PN values.
904 * (IEEE 802.11i, 8.3.3.4.5) */
905 if (entry->ccmp) {
906 int i;
907 u8 pn[CCMP_PN_LEN], *rpn;
Johannes Berg8f20fc22007-08-28 17:01:54 -0400908 if (!rx->key || rx->key->conf.alg != ALG_CCMP)
Johannes Berge4c26ad2008-01-31 19:48:21 +0100909 return RX_DROP_UNUSABLE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200910 memcpy(pn, entry->last_pn, CCMP_PN_LEN);
911 for (i = CCMP_PN_LEN - 1; i >= 0; i--) {
912 pn[i]++;
913 if (pn[i])
914 break;
915 }
Johannes Berg5cf121c2008-02-25 16:27:43 +0100916 rpn = rx->key->u.ccmp.rx_pn[rx->queue];
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200917 if (memcmp(pn, rpn, CCMP_PN_LEN))
Johannes Berge4c26ad2008-01-31 19:48:21 +0100918 return RX_DROP_UNUSABLE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200919 memcpy(entry->last_pn, pn, CCMP_PN_LEN);
920 }
921
922 skb_pull(rx->skb, ieee80211_get_hdrlen(rx->fc));
923 __skb_queue_tail(&entry->skb_list, rx->skb);
924 entry->last_frag = frag;
925 entry->extra_len += rx->skb->len;
926 if (rx->fc & IEEE80211_FCTL_MOREFRAGS) {
927 rx->skb = NULL;
Johannes Berg9ae54c82008-01-31 19:48:20 +0100928 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200929 }
930
931 rx->skb = __skb_dequeue(&entry->skb_list);
932 if (skb_tailroom(rx->skb) < entry->extra_len) {
933 I802_DEBUG_INC(rx->local->rx_expand_skb_head2);
934 if (unlikely(pskb_expand_head(rx->skb, 0, entry->extra_len,
935 GFP_ATOMIC))) {
936 I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
937 __skb_queue_purge(&entry->skb_list);
Johannes Berge4c26ad2008-01-31 19:48:21 +0100938 return RX_DROP_UNUSABLE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200939 }
940 }
941 while ((skb = __skb_dequeue(&entry->skb_list))) {
942 memcpy(skb_put(rx->skb, skb->len), skb->data, skb->len);
943 dev_kfree_skb(skb);
944 }
945
946 /* Complete frame has been reassembled - process it now */
Johannes Berg5cf121c2008-02-25 16:27:43 +0100947 rx->flags |= IEEE80211_RX_FRAGMENTED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200948
949 out:
950 if (rx->sta)
951 rx->sta->rx_packets++;
952 if (is_multicast_ether_addr(hdr->addr1))
953 rx->local->dot11MulticastReceivedFrameCount++;
954 else
955 ieee80211_led_rx(rx->local);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100956 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200957}
958
Johannes Berg49461622008-06-30 15:10:45 +0200959static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100960ieee80211_rx_h_ps_poll(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +0200961{
Ron Rindjunsky98f0b0a2007-12-18 17:23:53 +0200962 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(rx->dev);
Johannes Berg571ecf62007-07-27 15:43:22 +0200963 struct sk_buff *skb;
964 int no_pending_pkts;
Joe Perches0795af52007-10-03 17:59:30 -0700965 DECLARE_MAC_BUF(mac);
Johannes Berg571ecf62007-07-27 15:43:22 +0200966
967 if (likely(!rx->sta ||
968 (rx->fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_CTL ||
969 (rx->fc & IEEE80211_FCTL_STYPE) != IEEE80211_STYPE_PSPOLL ||
Johannes Berg5cf121c2008-02-25 16:27:43 +0100970 !(rx->flags & IEEE80211_RX_RA_MATCH)))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100971 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200972
Johannes Berg51fb61e2007-12-19 01:31:27 +0100973 if ((sdata->vif.type != IEEE80211_IF_TYPE_AP) &&
974 (sdata->vif.type != IEEE80211_IF_TYPE_VLAN))
Johannes Berge4c26ad2008-01-31 19:48:21 +0100975 return RX_DROP_UNUSABLE;
Ron Rindjunsky98f0b0a2007-12-18 17:23:53 +0200976
Johannes Berg571ecf62007-07-27 15:43:22 +0200977 skb = skb_dequeue(&rx->sta->tx_filtered);
978 if (!skb) {
979 skb = skb_dequeue(&rx->sta->ps_tx_buf);
980 if (skb)
981 rx->local->total_ps_buffered--;
982 }
983 no_pending_pkts = skb_queue_empty(&rx->sta->tx_filtered) &&
984 skb_queue_empty(&rx->sta->ps_tx_buf);
985
986 if (skb) {
987 struct ieee80211_hdr *hdr =
988 (struct ieee80211_hdr *) skb->data;
989
Johannes Berg4a9a66e2008-02-19 11:31:14 +0100990 /*
991 * Tell TX path to send one frame even though the STA may
992 * still remain is PS mode after this frame exchange.
993 */
Johannes Berg07346f812008-05-03 01:02:02 +0200994 set_sta_flags(rx->sta, WLAN_STA_PSPOLL);
Johannes Berg571ecf62007-07-27 15:43:22 +0200995
996#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Joe Perches0795af52007-10-03 17:59:30 -0700997 printk(KERN_DEBUG "STA %s aid %d: PS Poll (entries after %d)\n",
998 print_mac(mac, rx->sta->addr), rx->sta->aid,
Johannes Berg571ecf62007-07-27 15:43:22 +0200999 skb_queue_len(&rx->sta->ps_tx_buf));
1000#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
1001
1002 /* Use MoreData flag to indicate whether there are more
1003 * buffered frames for this STA */
Johannes Berg836341a2008-02-20 02:07:21 +01001004 if (no_pending_pkts)
Johannes Berg571ecf62007-07-27 15:43:22 +02001005 hdr->frame_control &= cpu_to_le16(~IEEE80211_FCTL_MOREDATA);
Johannes Berg836341a2008-02-20 02:07:21 +01001006 else
Johannes Berg571ecf62007-07-27 15:43:22 +02001007 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1008
1009 dev_queue_xmit(skb);
1010
Johannes Berg004c8722008-02-20 11:21:35 +01001011 if (no_pending_pkts)
1012 sta_info_clear_tim_bit(rx->sta);
Johannes Berg571ecf62007-07-27 15:43:22 +02001013#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Johannes Berg5cf121c2008-02-25 16:27:43 +01001014 } else if (!rx->sent_ps_buffered) {
Johannes Berg004c8722008-02-20 11:21:35 +01001015 /*
1016 * FIXME: This can be the result of a race condition between
1017 * us expiring a frame and the station polling for it.
1018 * Should we send it a null-func frame indicating we
1019 * have nothing buffered for it?
1020 */
Joe Perches0795af52007-10-03 17:59:30 -07001021 printk(KERN_DEBUG "%s: STA %s sent PS Poll even "
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001022 "though there are no buffered frames for it\n",
Joe Perches0795af52007-10-03 17:59:30 -07001023 rx->dev->name, print_mac(mac, rx->sta->addr));
Johannes Berg571ecf62007-07-27 15:43:22 +02001024#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
Johannes Berg571ecf62007-07-27 15:43:22 +02001025 }
1026
Johannes Berg9ae54c82008-01-31 19:48:20 +01001027 /* Free PS Poll skb here instead of returning RX_DROP that would
Johannes Berg571ecf62007-07-27 15:43:22 +02001028 * count as an dropped frame. */
1029 dev_kfree_skb(rx->skb);
1030
Johannes Berg9ae54c82008-01-31 19:48:20 +01001031 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001032}
1033
Johannes Berg49461622008-06-30 15:10:45 +02001034static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001035ieee80211_rx_h_remove_qos_control(struct ieee80211_rx_data *rx)
Johannes Berg6e0d1142007-07-27 15:43:22 +02001036{
Johannes Berg6e0d1142007-07-27 15:43:22 +02001037 u8 *data = rx->skb->data;
Harvey Harrison238f74a2008-07-02 11:05:34 -07001038 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)data;
Johannes Berg6e0d1142007-07-27 15:43:22 +02001039
Harvey Harrison238f74a2008-07-02 11:05:34 -07001040 if (!ieee80211_is_data_qos(hdr->frame_control))
Johannes Berg9ae54c82008-01-31 19:48:20 +01001041 return RX_CONTINUE;
Johannes Berg6e0d1142007-07-27 15:43:22 +02001042
1043 /* remove the qos control field, update frame type and meta-data */
Harvey Harrison238f74a2008-07-02 11:05:34 -07001044 memmove(data + IEEE80211_QOS_CTL_LEN, data,
1045 ieee80211_hdrlen(hdr->frame_control) - IEEE80211_QOS_CTL_LEN);
1046 hdr = (struct ieee80211_hdr *)skb_pull(rx->skb, IEEE80211_QOS_CTL_LEN);
Johannes Berg6e0d1142007-07-27 15:43:22 +02001047 /* change frame type to non QOS */
Harvey Harrison238f74a2008-07-02 11:05:34 -07001048 rx->fc &= ~IEEE80211_STYPE_QOS_DATA;
1049 hdr->frame_control &= ~cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
Johannes Berg6e0d1142007-07-27 15:43:22 +02001050
Johannes Berg9ae54c82008-01-31 19:48:20 +01001051 return RX_CONTINUE;
Johannes Berg6e0d1142007-07-27 15:43:22 +02001052}
1053
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001054static int
Johannes Berg5cf121c2008-02-25 16:27:43 +01001055ieee80211_802_1x_port_control(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001056{
Johannes Berg07346f812008-05-03 01:02:02 +02001057 if (unlikely(!rx->sta ||
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001058 !test_sta_flags(rx->sta, WLAN_STA_AUTHORIZED)))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001059 return -EACCES;
Johannes Berg571ecf62007-07-27 15:43:22 +02001060
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001061 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02001062}
1063
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001064static int
Johannes Berg5cf121c2008-02-25 16:27:43 +01001065ieee80211_drop_unencrypted(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001066{
Johannes Berg3017b802007-08-28 17:01:53 -04001067 /*
Johannes Berg7848ba72007-09-14 11:10:25 -04001068 * Pass through unencrypted frames if the hardware has
1069 * decrypted them already.
Johannes Berg3017b802007-08-28 17:01:53 -04001070 */
Johannes Berg5cf121c2008-02-25 16:27:43 +01001071 if (rx->status->flag & RX_FLAG_DECRYPTED)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001072 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02001073
1074 /* Drop unencrypted frames if key is set. */
1075 if (unlikely(!(rx->fc & IEEE80211_FCTL_PROTECTED) &&
1076 (rx->fc & IEEE80211_FCTL_FTYPE) == IEEE80211_FTYPE_DATA &&
1077 (rx->fc & IEEE80211_FCTL_STYPE) != IEEE80211_STYPE_NULLFUNC &&
Johannes Bergb3fc9c62008-04-13 10:12:47 +02001078 (rx->key || rx->sdata->drop_unencrypted)))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001079 return -EACCES;
Johannes Bergb3fc9c62008-04-13 10:12:47 +02001080
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001081 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02001082}
1083
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001084static int
Johannes Berg5cf121c2008-02-25 16:27:43 +01001085ieee80211_data_to_8023(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001086{
1087 struct net_device *dev = rx->dev;
Johannes Berg571ecf62007-07-27 15:43:22 +02001088 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) rx->skb->data;
1089 u16 fc, hdrlen, ethertype;
1090 u8 *payload;
1091 u8 dst[ETH_ALEN];
Senthil Balasubramanianc97c23e2008-05-28 23:15:32 +05301092 u8 src[ETH_ALEN] __aligned(2);
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001093 struct sk_buff *skb = rx->skb;
Johannes Berg571ecf62007-07-27 15:43:22 +02001094 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Joe Perches0795af52007-10-03 17:59:30 -07001095 DECLARE_MAC_BUF(mac);
1096 DECLARE_MAC_BUF(mac2);
1097 DECLARE_MAC_BUF(mac3);
1098 DECLARE_MAC_BUF(mac4);
Johannes Berg571ecf62007-07-27 15:43:22 +02001099
1100 fc = rx->fc;
Johannes Berg571ecf62007-07-27 15:43:22 +02001101
1102 if (unlikely(!WLAN_FC_DATA_PRESENT(fc)))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001103 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001104
1105 hdrlen = ieee80211_get_hdrlen(fc);
1106
Johannes Berg902acc72008-02-23 15:17:19 +01001107 if (ieee80211_vif_is_mesh(&sdata->vif)) {
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001108 int meshhdrlen = ieee80211_get_mesh_hdrlen(
1109 (struct ieee80211s_hdr *) (skb->data + hdrlen));
1110 /* Copy on cb:
1111 * - mesh header: to be used for mesh forwarding
1112 * decision. It will also be used as mesh header template at
1113 * tx.c:ieee80211_subif_start_xmit() if interface
1114 * type is mesh and skb->pkt_type == PACKET_OTHERHOST
1115 * - ta: to be used if a RERR needs to be sent.
1116 */
1117 memcpy(skb->cb, skb->data + hdrlen, meshhdrlen);
1118 memcpy(MESH_PREQ(skb), hdr->addr2, ETH_ALEN);
1119 hdrlen += meshhdrlen;
1120 }
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001121
Johannes Berg571ecf62007-07-27 15:43:22 +02001122 /* convert IEEE 802.11 header + possible LLC headers into Ethernet
1123 * header
1124 * IEEE 802.11 address fields:
1125 * ToDS FromDS Addr1 Addr2 Addr3 Addr4
1126 * 0 0 DA SA BSSID n/a
1127 * 0 1 DA BSSID SA n/a
1128 * 1 0 BSSID SA DA n/a
1129 * 1 1 RA TA DA SA
1130 */
1131
1132 switch (fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) {
1133 case IEEE80211_FCTL_TODS:
1134 /* BSSID SA DA */
1135 memcpy(dst, hdr->addr3, ETH_ALEN);
1136 memcpy(src, hdr->addr2, ETH_ALEN);
1137
Johannes Berg51fb61e2007-12-19 01:31:27 +01001138 if (unlikely(sdata->vif.type != IEEE80211_IF_TYPE_AP &&
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001139 sdata->vif.type != IEEE80211_IF_TYPE_VLAN))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001140 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001141 break;
1142 case (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS):
1143 /* RA TA DA SA */
1144 memcpy(dst, hdr->addr3, ETH_ALEN);
1145 memcpy(src, hdr->addr4, ETH_ALEN);
1146
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001147 if (unlikely(sdata->vif.type != IEEE80211_IF_TYPE_WDS &&
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001148 sdata->vif.type != IEEE80211_IF_TYPE_MESH_POINT))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001149 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001150 break;
1151 case IEEE80211_FCTL_FROMDS:
1152 /* DA BSSID SA */
1153 memcpy(dst, hdr->addr1, ETH_ALEN);
1154 memcpy(src, hdr->addr3, ETH_ALEN);
1155
Johannes Berg51fb61e2007-12-19 01:31:27 +01001156 if (sdata->vif.type != IEEE80211_IF_TYPE_STA ||
John W. Linvilleb3316152007-08-28 17:01:55 -04001157 (is_multicast_ether_addr(dst) &&
1158 !compare_ether_addr(src, dev->dev_addr)))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001159 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001160 break;
1161 case 0:
1162 /* DA SA BSSID */
1163 memcpy(dst, hdr->addr1, ETH_ALEN);
1164 memcpy(src, hdr->addr2, ETH_ALEN);
1165
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001166 if (sdata->vif.type != IEEE80211_IF_TYPE_IBSS)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001167 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001168 break;
1169 }
1170
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001171 if (unlikely(skb->len - hdrlen < 8))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001172 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001173
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001174 payload = skb->data + hdrlen;
Johannes Berg571ecf62007-07-27 15:43:22 +02001175 ethertype = (payload[6] << 8) | payload[7];
1176
1177 if (likely((compare_ether_addr(payload, rfc1042_header) == 0 &&
1178 ethertype != ETH_P_AARP && ethertype != ETH_P_IPX) ||
1179 compare_ether_addr(payload, bridge_tunnel_header) == 0)) {
1180 /* remove RFC1042 or Bridge-Tunnel encapsulation and
1181 * replace EtherType */
1182 skb_pull(skb, hdrlen + 6);
1183 memcpy(skb_push(skb, ETH_ALEN), src, ETH_ALEN);
1184 memcpy(skb_push(skb, ETH_ALEN), dst, ETH_ALEN);
1185 } else {
1186 struct ethhdr *ehdr;
1187 __be16 len;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001188
Johannes Berg571ecf62007-07-27 15:43:22 +02001189 skb_pull(skb, hdrlen);
1190 len = htons(skb->len);
1191 ehdr = (struct ethhdr *) skb_push(skb, sizeof(struct ethhdr));
1192 memcpy(ehdr->h_dest, dst, ETH_ALEN);
1193 memcpy(ehdr->h_source, src, ETH_ALEN);
1194 ehdr->h_proto = len;
1195 }
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001196 return 0;
1197}
Johannes Berg571ecf62007-07-27 15:43:22 +02001198
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001199/*
1200 * requires that rx->skb is a frame with ethernet header
1201 */
Johannes Berg5cf121c2008-02-25 16:27:43 +01001202static bool ieee80211_frame_allowed(struct ieee80211_rx_data *rx)
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001203{
Senthil Balasubramanianc97c23e2008-05-28 23:15:32 +05301204 static const u8 pae_group_addr[ETH_ALEN] __aligned(2)
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001205 = { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x03 };
1206 struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
1207
1208 /*
1209 * Allow EAPOL frames to us/the PAE group address regardless
1210 * of whether the frame was encrypted or not.
1211 */
1212 if (ehdr->h_proto == htons(ETH_P_PAE) &&
1213 (compare_ether_addr(ehdr->h_dest, rx->dev->dev_addr) == 0 ||
1214 compare_ether_addr(ehdr->h_dest, pae_group_addr) == 0))
1215 return true;
1216
1217 if (ieee80211_802_1x_port_control(rx) ||
1218 ieee80211_drop_unencrypted(rx))
1219 return false;
1220
1221 return true;
1222}
1223
1224/*
1225 * requires that rx->skb is a frame with ethernet header
1226 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001227static void
Johannes Berg5cf121c2008-02-25 16:27:43 +01001228ieee80211_deliver_skb(struct ieee80211_rx_data *rx)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001229{
1230 struct net_device *dev = rx->dev;
1231 struct ieee80211_local *local = rx->local;
1232 struct sk_buff *skb, *xmit_skb;
1233 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001234 struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
1235 struct sta_info *dsta;
Johannes Berg571ecf62007-07-27 15:43:22 +02001236
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001237 skb = rx->skb;
1238 xmit_skb = NULL;
Johannes Berg571ecf62007-07-27 15:43:22 +02001239
Johannes Berg51fb61e2007-12-19 01:31:27 +01001240 if (local->bridge_packets && (sdata->vif.type == IEEE80211_IF_TYPE_AP ||
1241 sdata->vif.type == IEEE80211_IF_TYPE_VLAN) &&
Johannes Berg5cf121c2008-02-25 16:27:43 +01001242 (rx->flags & IEEE80211_RX_RA_MATCH)) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001243 if (is_multicast_ether_addr(ehdr->h_dest)) {
1244 /*
1245 * send multicast frames both to higher layers in
1246 * local net stack and back to the wireless medium
1247 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001248 xmit_skb = skb_copy(skb, GFP_ATOMIC);
1249 if (!xmit_skb && net_ratelimit())
Johannes Berg571ecf62007-07-27 15:43:22 +02001250 printk(KERN_DEBUG "%s: failed to clone "
1251 "multicast frame\n", dev->name);
1252 } else {
Johannes Berg571ecf62007-07-27 15:43:22 +02001253 dsta = sta_info_get(local, skb->data);
Johannes Bergd0709a62008-02-25 16:27:46 +01001254 if (dsta && dsta->sdata->dev == dev) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001255 /*
1256 * The destination station is associated to
1257 * this AP (in this VLAN), so send the frame
1258 * directly to it and do not pass it to local
1259 * net stack.
Johannes Berg571ecf62007-07-27 15:43:22 +02001260 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001261 xmit_skb = skb;
Johannes Berg571ecf62007-07-27 15:43:22 +02001262 skb = NULL;
1263 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001264 }
1265 }
1266
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001267 /* Mesh forwarding */
Johannes Berg902acc72008-02-23 15:17:19 +01001268 if (ieee80211_vif_is_mesh(&sdata->vif)) {
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001269 u8 *mesh_ttl = &((struct ieee80211s_hdr *)skb->cb)->ttl;
1270 (*mesh_ttl)--;
1271
1272 if (is_multicast_ether_addr(skb->data)) {
1273 if (*mesh_ttl > 0) {
1274 xmit_skb = skb_copy(skb, GFP_ATOMIC);
Luis Carlos Cobo69687a02008-05-05 12:29:42 -07001275 if (xmit_skb)
1276 xmit_skb->pkt_type = PACKET_OTHERHOST;
1277 else if (net_ratelimit())
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001278 printk(KERN_DEBUG "%s: failed to clone "
1279 "multicast frame\n", dev->name);
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001280 } else
Johannes Berg902acc72008-02-23 15:17:19 +01001281 IEEE80211_IFSTA_MESH_CTR_INC(&sdata->u.sta,
1282 dropped_frames_ttl);
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001283 } else if (skb->pkt_type != PACKET_OTHERHOST &&
1284 compare_ether_addr(dev->dev_addr, skb->data) != 0) {
1285 if (*mesh_ttl == 0) {
Johannes Berg902acc72008-02-23 15:17:19 +01001286 IEEE80211_IFSTA_MESH_CTR_INC(&sdata->u.sta,
1287 dropped_frames_ttl);
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001288 dev_kfree_skb(skb);
1289 skb = NULL;
1290 } else {
1291 xmit_skb = skb;
1292 xmit_skb->pkt_type = PACKET_OTHERHOST;
1293 if (!(dev->flags & IFF_PROMISC))
1294 skb = NULL;
1295 }
1296 }
1297 }
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001298
Johannes Berg571ecf62007-07-27 15:43:22 +02001299 if (skb) {
1300 /* deliver to local stack */
1301 skb->protocol = eth_type_trans(skb, dev);
1302 memset(skb->cb, 0, sizeof(skb->cb));
1303 netif_rx(skb);
1304 }
1305
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001306 if (xmit_skb) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001307 /* send to wireless media */
YOSHIFUJI Hideakif831e902007-12-12 03:54:23 +09001308 xmit_skb->protocol = htons(ETH_P_802_3);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001309 skb_reset_network_header(xmit_skb);
1310 skb_reset_mac_header(xmit_skb);
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001311 dev_queue_xmit(xmit_skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02001312 }
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001313}
1314
Johannes Berg49461622008-06-30 15:10:45 +02001315static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001316ieee80211_rx_h_amsdu(struct ieee80211_rx_data *rx)
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001317{
1318 struct net_device *dev = rx->dev;
1319 struct ieee80211_local *local = rx->local;
1320 u16 fc, ethertype;
1321 u8 *payload;
1322 struct sk_buff *skb = rx->skb, *frame = NULL;
1323 const struct ethhdr *eth;
1324 int remaining, err;
1325 u8 dst[ETH_ALEN];
1326 u8 src[ETH_ALEN];
1327 DECLARE_MAC_BUF(mac);
1328
1329 fc = rx->fc;
1330 if (unlikely((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA))
Johannes Berg9ae54c82008-01-31 19:48:20 +01001331 return RX_CONTINUE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001332
1333 if (unlikely(!WLAN_FC_DATA_PRESENT(fc)))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001334 return RX_DROP_MONITOR;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001335
Johannes Berg5cf121c2008-02-25 16:27:43 +01001336 if (!(rx->flags & IEEE80211_RX_AMSDU))
Johannes Berg9ae54c82008-01-31 19:48:20 +01001337 return RX_CONTINUE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001338
1339 err = ieee80211_data_to_8023(rx);
1340 if (unlikely(err))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001341 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001342
1343 skb->dev = dev;
1344
1345 dev->stats.rx_packets++;
1346 dev->stats.rx_bytes += skb->len;
1347
1348 /* skip the wrapping header */
1349 eth = (struct ethhdr *) skb_pull(skb, sizeof(struct ethhdr));
1350 if (!eth)
Johannes Berge4c26ad2008-01-31 19:48:21 +01001351 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001352
1353 while (skb != frame) {
1354 u8 padding;
1355 __be16 len = eth->h_proto;
1356 unsigned int subframe_len = sizeof(struct ethhdr) + ntohs(len);
1357
1358 remaining = skb->len;
1359 memcpy(dst, eth->h_dest, ETH_ALEN);
1360 memcpy(src, eth->h_source, ETH_ALEN);
1361
1362 padding = ((4 - subframe_len) & 0x3);
1363 /* the last MSDU has no padding */
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001364 if (subframe_len > remaining)
Johannes Berge4c26ad2008-01-31 19:48:21 +01001365 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001366
1367 skb_pull(skb, sizeof(struct ethhdr));
1368 /* if last subframe reuse skb */
1369 if (remaining <= subframe_len + padding)
1370 frame = skb;
1371 else {
1372 frame = dev_alloc_skb(local->hw.extra_tx_headroom +
1373 subframe_len);
1374
1375 if (frame == NULL)
Johannes Berge4c26ad2008-01-31 19:48:21 +01001376 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001377
1378 skb_reserve(frame, local->hw.extra_tx_headroom +
1379 sizeof(struct ethhdr));
1380 memcpy(skb_put(frame, ntohs(len)), skb->data,
1381 ntohs(len));
1382
1383 eth = (struct ethhdr *) skb_pull(skb, ntohs(len) +
1384 padding);
1385 if (!eth) {
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001386 dev_kfree_skb(frame);
Johannes Berge4c26ad2008-01-31 19:48:21 +01001387 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001388 }
1389 }
1390
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001391 skb_reset_network_header(frame);
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001392 frame->dev = dev;
1393 frame->priority = skb->priority;
1394 rx->skb = frame;
1395
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001396 payload = frame->data;
1397 ethertype = (payload[6] << 8) | payload[7];
1398
1399 if (likely((compare_ether_addr(payload, rfc1042_header) == 0 &&
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001400 ethertype != ETH_P_AARP && ethertype != ETH_P_IPX) ||
1401 compare_ether_addr(payload,
1402 bridge_tunnel_header) == 0)) {
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001403 /* remove RFC1042 or Bridge-Tunnel
1404 * encapsulation and replace EtherType */
1405 skb_pull(frame, 6);
1406 memcpy(skb_push(frame, ETH_ALEN), src, ETH_ALEN);
1407 memcpy(skb_push(frame, ETH_ALEN), dst, ETH_ALEN);
1408 } else {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001409 memcpy(skb_push(frame, sizeof(__be16)),
1410 &len, sizeof(__be16));
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001411 memcpy(skb_push(frame, ETH_ALEN), src, ETH_ALEN);
1412 memcpy(skb_push(frame, ETH_ALEN), dst, ETH_ALEN);
1413 }
1414
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001415 if (!ieee80211_frame_allowed(rx)) {
1416 if (skb == frame) /* last frame */
Johannes Berge4c26ad2008-01-31 19:48:21 +01001417 return RX_DROP_UNUSABLE;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001418 dev_kfree_skb(frame);
1419 continue;
1420 }
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001421
1422 ieee80211_deliver_skb(rx);
1423 }
1424
Johannes Berg9ae54c82008-01-31 19:48:20 +01001425 return RX_QUEUED;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001426}
1427
Johannes Berg49461622008-06-30 15:10:45 +02001428static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001429ieee80211_rx_h_data(struct ieee80211_rx_data *rx)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001430{
1431 struct net_device *dev = rx->dev;
1432 u16 fc;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001433 int err;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001434
1435 fc = rx->fc;
1436 if (unlikely((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA))
Johannes Berg9ae54c82008-01-31 19:48:20 +01001437 return RX_CONTINUE;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001438
1439 if (unlikely(!WLAN_FC_DATA_PRESENT(fc)))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001440 return RX_DROP_MONITOR;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001441
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001442 err = ieee80211_data_to_8023(rx);
1443 if (unlikely(err))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001444 return RX_DROP_UNUSABLE;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001445
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001446 if (!ieee80211_frame_allowed(rx))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001447 return RX_DROP_MONITOR;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001448
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001449 rx->skb->dev = dev;
1450
1451 dev->stats.rx_packets++;
1452 dev->stats.rx_bytes += rx->skb->len;
1453
1454 ieee80211_deliver_skb(rx);
Johannes Berg571ecf62007-07-27 15:43:22 +02001455
Johannes Berg9ae54c82008-01-31 19:48:20 +01001456 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001457}
1458
Johannes Berg49461622008-06-30 15:10:45 +02001459static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001460ieee80211_rx_h_ctrl(struct ieee80211_rx_data *rx)
Ron Rindjunsky71364712007-12-25 17:00:36 +02001461{
1462 struct ieee80211_local *local = rx->local;
1463 struct ieee80211_hw *hw = &local->hw;
1464 struct sk_buff *skb = rx->skb;
Harvey Harrisona7767f92008-07-02 16:30:51 -07001465 struct ieee80211_bar *bar = (struct ieee80211_bar *)skb->data;
Ron Rindjunsky71364712007-12-25 17:00:36 +02001466 struct tid_ampdu_rx *tid_agg_rx;
1467 u16 start_seq_num;
1468 u16 tid;
1469
Harvey Harrisona7767f92008-07-02 16:30:51 -07001470 if (likely(!ieee80211_is_ctl(bar->frame_control)))
Johannes Berg9ae54c82008-01-31 19:48:20 +01001471 return RX_CONTINUE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02001472
Harvey Harrisona7767f92008-07-02 16:30:51 -07001473 if (ieee80211_is_back_req(bar->frame_control)) {
Ron Rindjunsky71364712007-12-25 17:00:36 +02001474 if (!rx->sta)
Johannes Berg9ae54c82008-01-31 19:48:20 +01001475 return RX_CONTINUE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02001476 tid = le16_to_cpu(bar->control) >> 12;
Ron Rindjunskycee24a32008-03-26 20:36:03 +02001477 if (rx->sta->ampdu_mlme.tid_state_rx[tid]
1478 != HT_AGG_STATE_OPERATIONAL)
Johannes Berg9ae54c82008-01-31 19:48:20 +01001479 return RX_CONTINUE;
Ron Rindjunskycee24a32008-03-26 20:36:03 +02001480 tid_agg_rx = rx->sta->ampdu_mlme.tid_rx[tid];
Ron Rindjunsky71364712007-12-25 17:00:36 +02001481
1482 start_seq_num = le16_to_cpu(bar->start_seq_num) >> 4;
1483
1484 /* reset session timer */
1485 if (tid_agg_rx->timeout) {
1486 unsigned long expires =
1487 jiffies + (tid_agg_rx->timeout / 1000) * HZ;
1488 mod_timer(&tid_agg_rx->session_timer, expires);
1489 }
1490
1491 /* manage reordering buffer according to requested */
1492 /* sequence number */
1493 rcu_read_lock();
1494 ieee80211_sta_manage_reorder_buf(hw, tid_agg_rx, NULL,
1495 start_seq_num, 1);
1496 rcu_read_unlock();
Johannes Berge4c26ad2008-01-31 19:48:21 +01001497 return RX_DROP_UNUSABLE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02001498 }
1499
Johannes Berg9ae54c82008-01-31 19:48:20 +01001500 return RX_CONTINUE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02001501}
1502
Johannes Berg49461622008-06-30 15:10:45 +02001503static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001504ieee80211_rx_h_mgmt(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001505{
1506 struct ieee80211_sub_if_data *sdata;
1507
Johannes Berg5cf121c2008-02-25 16:27:43 +01001508 if (!(rx->flags & IEEE80211_RX_RA_MATCH))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001509 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +02001510
1511 sdata = IEEE80211_DEV_TO_SUB_IF(rx->dev);
Johannes Berg51fb61e2007-12-19 01:31:27 +01001512 if ((sdata->vif.type == IEEE80211_IF_TYPE_STA ||
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +01001513 sdata->vif.type == IEEE80211_IF_TYPE_IBSS ||
1514 sdata->vif.type == IEEE80211_IF_TYPE_MESH_POINT) &&
Johannes Bergddd3d2b2007-09-26 17:53:20 +02001515 !(sdata->flags & IEEE80211_SDATA_USERSPACE_MLME))
Johannes Berg5cf121c2008-02-25 16:27:43 +01001516 ieee80211_sta_rx_mgmt(rx->dev, rx->skb, rx->status);
Johannes Bergf9d540e2007-09-28 14:02:09 +02001517 else
Johannes Berge4c26ad2008-01-31 19:48:21 +01001518 return RX_DROP_MONITOR;
Johannes Bergf9d540e2007-09-28 14:02:09 +02001519
Johannes Berg9ae54c82008-01-31 19:48:20 +01001520 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001521}
1522
Johannes Berg571ecf62007-07-27 15:43:22 +02001523static void ieee80211_rx_michael_mic_report(struct net_device *dev,
1524 struct ieee80211_hdr *hdr,
Johannes Berg5cf121c2008-02-25 16:27:43 +01001525 struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001526{
Harvey Harrisona7767f92008-07-02 16:30:51 -07001527 int keyidx;
1528 unsigned int hdrlen;
Joe Perches0795af52007-10-03 17:59:30 -07001529 DECLARE_MAC_BUF(mac);
1530 DECLARE_MAC_BUF(mac2);
Johannes Berg571ecf62007-07-27 15:43:22 +02001531
Harvey Harrisona7767f92008-07-02 16:30:51 -07001532 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berg571ecf62007-07-27 15:43:22 +02001533 if (rx->skb->len >= hdrlen + 4)
1534 keyidx = rx->skb->data[hdrlen + 3] >> 6;
1535 else
1536 keyidx = -1;
1537
Johannes Berg8944b792008-01-31 19:48:26 +01001538 if (!rx->sta) {
Johannes Bergaa0daf02007-09-10 14:15:25 +02001539 /*
1540 * Some hardware seem to generate incorrect Michael MIC
1541 * reports; ignore them to avoid triggering countermeasures.
1542 */
Johannes Berg571ecf62007-07-27 15:43:22 +02001543 goto ignore;
1544 }
1545
Harvey Harrisona7767f92008-07-02 16:30:51 -07001546 if (!ieee80211_has_protected(hdr->frame_control))
Johannes Berg571ecf62007-07-27 15:43:22 +02001547 goto ignore;
Johannes Berg571ecf62007-07-27 15:43:22 +02001548
Johannes Berg51fb61e2007-12-19 01:31:27 +01001549 if (rx->sdata->vif.type == IEEE80211_IF_TYPE_AP && keyidx) {
Johannes Bergaa0daf02007-09-10 14:15:25 +02001550 /*
1551 * APs with pairwise keys should never receive Michael MIC
1552 * errors for non-zero keyidx because these are reserved for
1553 * group keys and only the AP is sending real multicast
1554 * frames in the BSS.
1555 */
Johannes Bergeb063c12007-08-28 17:01:53 -04001556 goto ignore;
Johannes Berg571ecf62007-07-27 15:43:22 +02001557 }
1558
Harvey Harrisona7767f92008-07-02 16:30:51 -07001559 if (!ieee80211_is_data(hdr->frame_control) &&
1560 !ieee80211_is_auth(hdr->frame_control))
Johannes Berg571ecf62007-07-27 15:43:22 +02001561 goto ignore;
Johannes Berg571ecf62007-07-27 15:43:22 +02001562
Johannes Bergeb063c12007-08-28 17:01:53 -04001563 mac80211_ev_michael_mic_failure(rx->dev, keyidx, hdr);
Johannes Berg571ecf62007-07-27 15:43:22 +02001564 ignore:
1565 dev_kfree_skb(rx->skb);
1566 rx->skb = NULL;
1567}
1568
Johannes Berg5cf121c2008-02-25 16:27:43 +01001569/* TODO: use IEEE80211_RX_FRAGMENTED */
1570static void ieee80211_rx_cooked_monitor(struct ieee80211_rx_data *rx)
Michael Wu3d30d942008-01-31 19:48:27 +01001571{
1572 struct ieee80211_sub_if_data *sdata;
1573 struct ieee80211_local *local = rx->local;
1574 struct ieee80211_rtap_hdr {
1575 struct ieee80211_radiotap_header hdr;
1576 u8 flags;
1577 u8 rate;
1578 __le16 chan_freq;
1579 __le16 chan_flags;
1580 } __attribute__ ((packed)) *rthdr;
1581 struct sk_buff *skb = rx->skb, *skb2;
1582 struct net_device *prev_dev = NULL;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001583 struct ieee80211_rx_status *status = rx->status;
Michael Wu3d30d942008-01-31 19:48:27 +01001584
Johannes Berg5cf121c2008-02-25 16:27:43 +01001585 if (rx->flags & IEEE80211_RX_CMNTR_REPORTED)
Michael Wu3d30d942008-01-31 19:48:27 +01001586 goto out_free_skb;
1587
1588 if (skb_headroom(skb) < sizeof(*rthdr) &&
1589 pskb_expand_head(skb, sizeof(*rthdr), 0, GFP_ATOMIC))
1590 goto out_free_skb;
1591
1592 rthdr = (void *)skb_push(skb, sizeof(*rthdr));
1593 memset(rthdr, 0, sizeof(*rthdr));
1594 rthdr->hdr.it_len = cpu_to_le16(sizeof(*rthdr));
1595 rthdr->hdr.it_present =
1596 cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
1597 (1 << IEEE80211_RADIOTAP_RATE) |
1598 (1 << IEEE80211_RADIOTAP_CHANNEL));
1599
Johannes Berg5cf121c2008-02-25 16:27:43 +01001600 rthdr->rate = rx->rate->bitrate / 5;
Michael Wu3d30d942008-01-31 19:48:27 +01001601 rthdr->chan_freq = cpu_to_le16(status->freq);
1602
1603 if (status->band == IEEE80211_BAND_5GHZ)
1604 rthdr->chan_flags = cpu_to_le16(IEEE80211_CHAN_OFDM |
1605 IEEE80211_CHAN_5GHZ);
1606 else
1607 rthdr->chan_flags = cpu_to_le16(IEEE80211_CHAN_DYN |
1608 IEEE80211_CHAN_2GHZ);
1609
1610 skb_set_mac_header(skb, 0);
1611 skb->ip_summed = CHECKSUM_UNNECESSARY;
1612 skb->pkt_type = PACKET_OTHERHOST;
1613 skb->protocol = htons(ETH_P_802_2);
1614
1615 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
1616 if (!netif_running(sdata->dev))
1617 continue;
1618
1619 if (sdata->vif.type != IEEE80211_IF_TYPE_MNTR ||
1620 !(sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES))
1621 continue;
1622
1623 if (prev_dev) {
1624 skb2 = skb_clone(skb, GFP_ATOMIC);
1625 if (skb2) {
1626 skb2->dev = prev_dev;
1627 netif_rx(skb2);
1628 }
1629 }
1630
1631 prev_dev = sdata->dev;
1632 sdata->dev->stats.rx_packets++;
1633 sdata->dev->stats.rx_bytes += skb->len;
1634 }
1635
1636 if (prev_dev) {
1637 skb->dev = prev_dev;
1638 netif_rx(skb);
1639 skb = NULL;
1640 } else
1641 goto out_free_skb;
1642
Johannes Berg5cf121c2008-02-25 16:27:43 +01001643 rx->flags |= IEEE80211_RX_CMNTR_REPORTED;
Michael Wu3d30d942008-01-31 19:48:27 +01001644 return;
1645
1646 out_free_skb:
1647 dev_kfree_skb(skb);
1648}
1649
Johannes Berg571ecf62007-07-27 15:43:22 +02001650
Johannes Berg8944b792008-01-31 19:48:26 +01001651static void ieee80211_invoke_rx_handlers(struct ieee80211_sub_if_data *sdata,
Johannes Berg5cf121c2008-02-25 16:27:43 +01001652 struct ieee80211_rx_data *rx,
Johannes Berg8944b792008-01-31 19:48:26 +01001653 struct sk_buff *skb)
Johannes Berg58905292008-01-31 19:48:25 +01001654{
Johannes Berg58905292008-01-31 19:48:25 +01001655 ieee80211_rx_result res = RX_DROP_MONITOR;
1656
Johannes Berg8944b792008-01-31 19:48:26 +01001657 rx->skb = skb;
1658 rx->sdata = sdata;
1659 rx->dev = sdata->dev;
1660
Johannes Berg49461622008-06-30 15:10:45 +02001661#define CALL_RXH(rxh) \
1662 res = rxh(rx); \
1663 if (res != RX_CONTINUE) \
1664 goto rxh_done;
Johannes Berg58905292008-01-31 19:48:25 +01001665
Johannes Berg49461622008-06-30 15:10:45 +02001666 CALL_RXH(ieee80211_rx_h_passive_scan)
1667 CALL_RXH(ieee80211_rx_h_check)
1668 CALL_RXH(ieee80211_rx_h_decrypt)
1669 CALL_RXH(ieee80211_rx_h_sta_process)
1670 CALL_RXH(ieee80211_rx_h_defragment)
1671 CALL_RXH(ieee80211_rx_h_ps_poll)
1672 CALL_RXH(ieee80211_rx_h_michael_mic_verify)
1673 /* must be after MMIC verify so header is counted in MPDU mic */
1674 CALL_RXH(ieee80211_rx_h_remove_qos_control)
1675 CALL_RXH(ieee80211_rx_h_amsdu)
1676 CALL_RXH(ieee80211_rx_h_data)
1677 CALL_RXH(ieee80211_rx_h_ctrl)
1678 CALL_RXH(ieee80211_rx_h_mgmt)
Johannes Berg58905292008-01-31 19:48:25 +01001679
Johannes Berg49461622008-06-30 15:10:45 +02001680#undef CALL_RXH
1681
1682 rxh_done:
Johannes Berg58905292008-01-31 19:48:25 +01001683 switch (res) {
Michael Wu3d30d942008-01-31 19:48:27 +01001684 case RX_DROP_MONITOR:
Johannes Berg49461622008-06-30 15:10:45 +02001685 I802_DEBUG_INC(sdata->local->rx_handlers_drop);
1686 if (rx->sta)
1687 rx->sta->rx_dropped++;
1688 /* fall through */
1689 case RX_CONTINUE:
Michael Wu3d30d942008-01-31 19:48:27 +01001690 ieee80211_rx_cooked_monitor(rx);
1691 break;
1692 case RX_DROP_UNUSABLE:
Johannes Berg49461622008-06-30 15:10:45 +02001693 I802_DEBUG_INC(sdata->local->rx_handlers_drop);
1694 if (rx->sta)
1695 rx->sta->rx_dropped++;
Johannes Berg58905292008-01-31 19:48:25 +01001696 dev_kfree_skb(rx->skb);
1697 break;
Johannes Berg49461622008-06-30 15:10:45 +02001698 case RX_QUEUED:
1699 I802_DEBUG_INC(sdata->local->rx_handlers_queued);
1700 break;
Johannes Berg58905292008-01-31 19:48:25 +01001701 }
1702}
1703
Johannes Berg571ecf62007-07-27 15:43:22 +02001704/* main receive path */
1705
Johannes Berg23a24de2007-07-27 15:43:22 +02001706static int prepare_for_handlers(struct ieee80211_sub_if_data *sdata,
Johannes Berg5cf121c2008-02-25 16:27:43 +01001707 u8 *bssid, struct ieee80211_rx_data *rx,
Johannes Berg23a24de2007-07-27 15:43:22 +02001708 struct ieee80211_hdr *hdr)
1709{
1710 int multicast = is_multicast_ether_addr(hdr->addr1);
1711
Johannes Berg51fb61e2007-12-19 01:31:27 +01001712 switch (sdata->vif.type) {
Johannes Berg23a24de2007-07-27 15:43:22 +02001713 case IEEE80211_IF_TYPE_STA:
1714 if (!bssid)
1715 return 0;
1716 if (!ieee80211_bssid_match(bssid, sdata->u.sta.bssid)) {
Johannes Berg5cf121c2008-02-25 16:27:43 +01001717 if (!(rx->flags & IEEE80211_RX_IN_SCAN))
Johannes Berg23a24de2007-07-27 15:43:22 +02001718 return 0;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001719 rx->flags &= ~IEEE80211_RX_RA_MATCH;
Johannes Berg23a24de2007-07-27 15:43:22 +02001720 } else if (!multicast &&
1721 compare_ether_addr(sdata->dev->dev_addr,
1722 hdr->addr1) != 0) {
Johannes Berg4150c572007-09-17 01:29:23 -04001723 if (!(sdata->dev->flags & IFF_PROMISC))
Johannes Berg23a24de2007-07-27 15:43:22 +02001724 return 0;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001725 rx->flags &= ~IEEE80211_RX_RA_MATCH;
Johannes Berg23a24de2007-07-27 15:43:22 +02001726 }
1727 break;
1728 case IEEE80211_IF_TYPE_IBSS:
1729 if (!bssid)
1730 return 0;
Harvey Harrisona7767f92008-07-02 16:30:51 -07001731 if (ieee80211_is_beacon(hdr->frame_control)) {
Vladimir Koutny87291c02008-06-13 16:50:44 +02001732 if (!rx->sta)
1733 rx->sta = ieee80211_ibss_add_sta(sdata->dev,
1734 rx->skb, bssid, hdr->addr2,
1735 BIT(rx->status->rate_idx));
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001736 return 1;
Vladimir Koutny87291c02008-06-13 16:50:44 +02001737 }
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001738 else if (!ieee80211_bssid_match(bssid, sdata->u.sta.bssid)) {
Johannes Berg5cf121c2008-02-25 16:27:43 +01001739 if (!(rx->flags & IEEE80211_RX_IN_SCAN))
Johannes Berg23a24de2007-07-27 15:43:22 +02001740 return 0;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001741 rx->flags &= ~IEEE80211_RX_RA_MATCH;
Johannes Berg23a24de2007-07-27 15:43:22 +02001742 } else if (!multicast &&
1743 compare_ether_addr(sdata->dev->dev_addr,
1744 hdr->addr1) != 0) {
Johannes Berg4150c572007-09-17 01:29:23 -04001745 if (!(sdata->dev->flags & IFF_PROMISC))
Johannes Berg23a24de2007-07-27 15:43:22 +02001746 return 0;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001747 rx->flags &= ~IEEE80211_RX_RA_MATCH;
Johannes Berg23a24de2007-07-27 15:43:22 +02001748 } else if (!rx->sta)
1749 rx->sta = ieee80211_ibss_add_sta(sdata->dev, rx->skb,
Vladimir Koutny87291c02008-06-13 16:50:44 +02001750 bssid, hdr->addr2,
1751 BIT(rx->status->rate_idx));
Johannes Berg23a24de2007-07-27 15:43:22 +02001752 break;
Johannes Berg6032f932008-02-23 15:17:07 +01001753 case IEEE80211_IF_TYPE_MESH_POINT:
1754 if (!multicast &&
1755 compare_ether_addr(sdata->dev->dev_addr,
1756 hdr->addr1) != 0) {
1757 if (!(sdata->dev->flags & IFF_PROMISC))
1758 return 0;
1759
Johannes Berg5cf121c2008-02-25 16:27:43 +01001760 rx->flags &= ~IEEE80211_RX_RA_MATCH;
Johannes Berg6032f932008-02-23 15:17:07 +01001761 }
1762 break;
Johannes Bergfb1c1cd2007-09-26 15:19:43 +02001763 case IEEE80211_IF_TYPE_VLAN:
Johannes Berg23a24de2007-07-27 15:43:22 +02001764 case IEEE80211_IF_TYPE_AP:
1765 if (!bssid) {
1766 if (compare_ether_addr(sdata->dev->dev_addr,
1767 hdr->addr1))
1768 return 0;
1769 } else if (!ieee80211_bssid_match(bssid,
1770 sdata->dev->dev_addr)) {
Johannes Berg5cf121c2008-02-25 16:27:43 +01001771 if (!(rx->flags & IEEE80211_RX_IN_SCAN))
Johannes Berg23a24de2007-07-27 15:43:22 +02001772 return 0;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001773 rx->flags &= ~IEEE80211_RX_RA_MATCH;
Johannes Berg23a24de2007-07-27 15:43:22 +02001774 }
Jiri Slabybadffb72007-08-28 17:01:54 -04001775 if (sdata->dev == sdata->local->mdev &&
Johannes Berg5cf121c2008-02-25 16:27:43 +01001776 !(rx->flags & IEEE80211_RX_IN_SCAN))
Johannes Berg23a24de2007-07-27 15:43:22 +02001777 /* do not receive anything via
1778 * master device when not scanning */
1779 return 0;
1780 break;
1781 case IEEE80211_IF_TYPE_WDS:
Harvey Harrisona7767f92008-07-02 16:30:51 -07001782 if (bssid || !ieee80211_is_data(hdr->frame_control))
Johannes Berg23a24de2007-07-27 15:43:22 +02001783 return 0;
1784 if (compare_ether_addr(sdata->u.wds.remote_addr, hdr->addr2))
1785 return 0;
1786 break;
Johannes Bergfb1c1cd2007-09-26 15:19:43 +02001787 case IEEE80211_IF_TYPE_MNTR:
1788 /* take everything */
1789 break;
Johannes Berga2897552007-09-28 14:01:25 +02001790 case IEEE80211_IF_TYPE_INVALID:
Johannes Bergfb1c1cd2007-09-26 15:19:43 +02001791 /* should never get here */
1792 WARN_ON(1);
1793 break;
Johannes Berg23a24de2007-07-27 15:43:22 +02001794 }
1795
1796 return 1;
1797}
1798
Johannes Berg571ecf62007-07-27 15:43:22 +02001799/*
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02001800 * This is the actual Rx frames handler. as it blongs to Rx path it must
1801 * be called with rcu_read_lock protection.
Johannes Berg571ecf62007-07-27 15:43:22 +02001802 */
Ron Rindjunsky71ebb4a2008-01-21 12:39:12 +02001803static void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw,
1804 struct sk_buff *skb,
1805 struct ieee80211_rx_status *status,
Johannes Berg8318d782008-01-24 19:38:38 +01001806 struct ieee80211_rate *rate)
Johannes Berg571ecf62007-07-27 15:43:22 +02001807{
1808 struct ieee80211_local *local = hw_to_local(hw);
1809 struct ieee80211_sub_if_data *sdata;
Johannes Berg571ecf62007-07-27 15:43:22 +02001810 struct ieee80211_hdr *hdr;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001811 struct ieee80211_rx_data rx;
Johannes Berg571ecf62007-07-27 15:43:22 +02001812 u16 type;
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02001813 int prepares;
Johannes Berg8e6f0032007-07-27 15:43:22 +02001814 struct ieee80211_sub_if_data *prev = NULL;
1815 struct sk_buff *skb_new;
1816 u8 *bssid;
Johannes Berg571ecf62007-07-27 15:43:22 +02001817
1818 hdr = (struct ieee80211_hdr *) skb->data;
1819 memset(&rx, 0, sizeof(rx));
1820 rx.skb = skb;
1821 rx.local = local;
1822
Johannes Berg5cf121c2008-02-25 16:27:43 +01001823 rx.status = status;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001824 rx.rate = rate;
Johannes Bergb2e77712007-09-26 15:19:39 +02001825 rx.fc = le16_to_cpu(hdr->frame_control);
Johannes Berg571ecf62007-07-27 15:43:22 +02001826 type = rx.fc & IEEE80211_FCTL_FTYPE;
Johannes Berg72abd812007-09-17 01:29:22 -04001827
Johannes Bergb2e77712007-09-26 15:19:39 +02001828 if (type == IEEE80211_FTYPE_DATA || type == IEEE80211_FTYPE_MGMT)
Johannes Berg571ecf62007-07-27 15:43:22 +02001829 local->dot11ReceivedFragmentCount++;
Johannes Berg571ecf62007-07-27 15:43:22 +02001830
Johannes Berg8944b792008-01-31 19:48:26 +01001831 rx.sta = sta_info_get(local, hdr->addr2);
1832 if (rx.sta) {
Johannes Bergd0709a62008-02-25 16:27:46 +01001833 rx.sdata = rx.sta->sdata;
1834 rx.dev = rx.sta->sdata->dev;
Johannes Bergb2e77712007-09-26 15:19:39 +02001835 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001836
Johannes Berg571ecf62007-07-27 15:43:22 +02001837 if ((status->flag & RX_FLAG_MMIC_ERROR)) {
Johannes Berg8944b792008-01-31 19:48:26 +01001838 ieee80211_rx_michael_mic_report(local->mdev, hdr, &rx);
Johannes Bergd0709a62008-02-25 16:27:46 +01001839 return;
Johannes Berg571ecf62007-07-27 15:43:22 +02001840 }
1841
Zhu Yiece8edd2007-11-22 10:53:21 +08001842 if (unlikely(local->sta_sw_scanning || local->sta_hw_scanning))
Johannes Berg5cf121c2008-02-25 16:27:43 +01001843 rx.flags |= IEEE80211_RX_IN_SCAN;
Johannes Berg571ecf62007-07-27 15:43:22 +02001844
Johannes Berg38f37142008-01-29 17:07:43 +01001845 ieee80211_parse_qos(&rx);
1846 ieee80211_verify_ip_alignment(&rx);
1847
Johannes Berg571ecf62007-07-27 15:43:22 +02001848 skb = rx.skb;
1849
Johannes Berg79010422007-09-18 17:29:21 -04001850 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Johannes Berg2a8a9a82007-08-28 17:01:52 -04001851 if (!netif_running(sdata->dev))
1852 continue;
1853
Johannes Berg51fb61e2007-12-19 01:31:27 +01001854 if (sdata->vif.type == IEEE80211_IF_TYPE_MNTR)
Johannes Bergb2e77712007-09-26 15:19:39 +02001855 continue;
1856
Johannes Berg51fb61e2007-12-19 01:31:27 +01001857 bssid = ieee80211_get_bssid(hdr, skb->len, sdata->vif.type);
Johannes Berg5cf121c2008-02-25 16:27:43 +01001858 rx.flags |= IEEE80211_RX_RA_MATCH;
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02001859 prepares = prepare_for_handlers(sdata, bssid, &rx, hdr);
Johannes Berg23a24de2007-07-27 15:43:22 +02001860
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02001861 if (!prepares)
Johannes Berg23a24de2007-07-27 15:43:22 +02001862 continue;
Johannes Berg8e6f0032007-07-27 15:43:22 +02001863
Johannes Berg340e11f2007-07-27 15:43:22 +02001864 /*
1865 * frame is destined for this interface, but if it's not
1866 * also for the previous one we handle that after the
1867 * loop to avoid copying the SKB once too much
1868 */
1869
1870 if (!prev) {
1871 prev = sdata;
1872 continue;
Johannes Berg8e6f0032007-07-27 15:43:22 +02001873 }
Johannes Berg340e11f2007-07-27 15:43:22 +02001874
1875 /*
1876 * frame was destined for the previous interface
1877 * so invoke RX handlers for it
1878 */
1879
1880 skb_new = skb_copy(skb, GFP_ATOMIC);
1881 if (!skb_new) {
1882 if (net_ratelimit())
1883 printk(KERN_DEBUG "%s: failed to copy "
Pavel Roskina4278e12008-05-12 09:02:24 -04001884 "multicast frame for %s\n",
Johannes Bergdd1cd4c2007-09-18 17:29:20 -04001885 wiphy_name(local->hw.wiphy),
1886 prev->dev->name);
Johannes Berg340e11f2007-07-27 15:43:22 +02001887 continue;
1888 }
Helmut Schaa69f817b2007-12-21 15:16:35 +01001889 rx.fc = le16_to_cpu(hdr->frame_control);
Johannes Berg8944b792008-01-31 19:48:26 +01001890 ieee80211_invoke_rx_handlers(prev, &rx, skb_new);
Johannes Berg8e6f0032007-07-27 15:43:22 +02001891 prev = sdata;
Johannes Berg571ecf62007-07-27 15:43:22 +02001892 }
Johannes Berg8e6f0032007-07-27 15:43:22 +02001893 if (prev) {
Helmut Schaa69f817b2007-12-21 15:16:35 +01001894 rx.fc = le16_to_cpu(hdr->frame_control);
Johannes Berg8944b792008-01-31 19:48:26 +01001895 ieee80211_invoke_rx_handlers(prev, &rx, skb);
Johannes Berg8e6f0032007-07-27 15:43:22 +02001896 } else
1897 dev_kfree_skb(skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02001898}
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02001899
Ron Rindjunskyb5807812007-12-25 17:00:35 +02001900#define SEQ_MODULO 0x1000
1901#define SEQ_MASK 0xfff
1902
1903static inline int seq_less(u16 sq1, u16 sq2)
1904{
1905 return (((sq1 - sq2) & SEQ_MASK) > (SEQ_MODULO >> 1));
1906}
1907
1908static inline u16 seq_inc(u16 sq)
1909{
1910 return ((sq + 1) & SEQ_MASK);
1911}
1912
1913static inline u16 seq_sub(u16 sq1, u16 sq2)
1914{
1915 return ((sq1 - sq2) & SEQ_MASK);
1916}
1917
1918
Ron Rindjunsky71364712007-12-25 17:00:36 +02001919/*
1920 * As it function blongs to Rx path it must be called with
1921 * the proper rcu_read_lock protection for its flow.
1922 */
Ron Rindjunskyb5807812007-12-25 17:00:35 +02001923u8 ieee80211_sta_manage_reorder_buf(struct ieee80211_hw *hw,
1924 struct tid_ampdu_rx *tid_agg_rx,
1925 struct sk_buff *skb, u16 mpdu_seq_num,
1926 int bar_req)
1927{
1928 struct ieee80211_local *local = hw_to_local(hw);
1929 struct ieee80211_rx_status status;
1930 u16 head_seq_num, buf_size;
1931 int index;
Johannes Berg8318d782008-01-24 19:38:38 +01001932 struct ieee80211_supported_band *sband;
1933 struct ieee80211_rate *rate;
Ron Rindjunskyb5807812007-12-25 17:00:35 +02001934
1935 buf_size = tid_agg_rx->buf_size;
1936 head_seq_num = tid_agg_rx->head_seq_num;
1937
1938 /* frame with out of date sequence number */
1939 if (seq_less(mpdu_seq_num, head_seq_num)) {
1940 dev_kfree_skb(skb);
1941 return 1;
1942 }
1943
1944 /* if frame sequence number exceeds our buffering window size or
1945 * block Ack Request arrived - release stored frames */
1946 if ((!seq_less(mpdu_seq_num, head_seq_num + buf_size)) || (bar_req)) {
1947 /* new head to the ordering buffer */
1948 if (bar_req)
1949 head_seq_num = mpdu_seq_num;
1950 else
1951 head_seq_num =
1952 seq_inc(seq_sub(mpdu_seq_num, buf_size));
1953 /* release stored frames up to new head to stack */
1954 while (seq_less(tid_agg_rx->head_seq_num, head_seq_num)) {
1955 index = seq_sub(tid_agg_rx->head_seq_num,
1956 tid_agg_rx->ssn)
1957 % tid_agg_rx->buf_size;
1958
1959 if (tid_agg_rx->reorder_buf[index]) {
1960 /* release the reordered frames to stack */
1961 memcpy(&status,
1962 tid_agg_rx->reorder_buf[index]->cb,
1963 sizeof(status));
Johannes Berg8318d782008-01-24 19:38:38 +01001964 sband = local->hw.wiphy->bands[status.band];
1965 rate = &sband->bitrates[status.rate_idx];
Ron Rindjunskyb5807812007-12-25 17:00:35 +02001966 __ieee80211_rx_handle_packet(hw,
1967 tid_agg_rx->reorder_buf[index],
Johannes Berg9e72ebd2008-05-21 17:33:42 +02001968 &status, rate);
Ron Rindjunskyb5807812007-12-25 17:00:35 +02001969 tid_agg_rx->stored_mpdu_num--;
1970 tid_agg_rx->reorder_buf[index] = NULL;
1971 }
1972 tid_agg_rx->head_seq_num =
1973 seq_inc(tid_agg_rx->head_seq_num);
1974 }
1975 if (bar_req)
1976 return 1;
1977 }
1978
1979 /* now the new frame is always in the range of the reordering */
1980 /* buffer window */
1981 index = seq_sub(mpdu_seq_num, tid_agg_rx->ssn)
1982 % tid_agg_rx->buf_size;
1983 /* check if we already stored this frame */
1984 if (tid_agg_rx->reorder_buf[index]) {
1985 dev_kfree_skb(skb);
1986 return 1;
1987 }
1988
1989 /* if arrived mpdu is in the right order and nothing else stored */
1990 /* release it immediately */
1991 if (mpdu_seq_num == tid_agg_rx->head_seq_num &&
1992 tid_agg_rx->stored_mpdu_num == 0) {
1993 tid_agg_rx->head_seq_num =
1994 seq_inc(tid_agg_rx->head_seq_num);
1995 return 0;
1996 }
1997
1998 /* put the frame in the reordering buffer */
1999 tid_agg_rx->reorder_buf[index] = skb;
2000 tid_agg_rx->stored_mpdu_num++;
2001 /* release the buffer until next missing frame */
2002 index = seq_sub(tid_agg_rx->head_seq_num, tid_agg_rx->ssn)
2003 % tid_agg_rx->buf_size;
2004 while (tid_agg_rx->reorder_buf[index]) {
2005 /* release the reordered frame back to stack */
2006 memcpy(&status, tid_agg_rx->reorder_buf[index]->cb,
2007 sizeof(status));
Johannes Berg8318d782008-01-24 19:38:38 +01002008 sband = local->hw.wiphy->bands[status.band];
2009 rate = &sband->bitrates[status.rate_idx];
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002010 __ieee80211_rx_handle_packet(hw, tid_agg_rx->reorder_buf[index],
Johannes Berg9e72ebd2008-05-21 17:33:42 +02002011 &status, rate);
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002012 tid_agg_rx->stored_mpdu_num--;
2013 tid_agg_rx->reorder_buf[index] = NULL;
2014 tid_agg_rx->head_seq_num = seq_inc(tid_agg_rx->head_seq_num);
2015 index = seq_sub(tid_agg_rx->head_seq_num,
2016 tid_agg_rx->ssn) % tid_agg_rx->buf_size;
2017 }
2018 return 1;
2019}
2020
Ron Rindjunsky71ebb4a2008-01-21 12:39:12 +02002021static u8 ieee80211_rx_reorder_ampdu(struct ieee80211_local *local,
2022 struct sk_buff *skb)
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002023{
2024 struct ieee80211_hw *hw = &local->hw;
2025 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
2026 struct sta_info *sta;
2027 struct tid_ampdu_rx *tid_agg_rx;
Harvey Harrison87228f52008-06-11 14:21:59 -07002028 u16 sc;
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002029 u16 mpdu_seq_num;
Harvey Harrison182503a2008-06-22 16:45:29 -07002030 u8 ret = 0;
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002031 int tid;
2032
2033 sta = sta_info_get(local, hdr->addr2);
2034 if (!sta)
2035 return ret;
2036
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002037 /* filter the QoS data rx stream according to
2038 * STA/TID and check if this STA/TID is on aggregation */
Harvey Harrison87228f52008-06-11 14:21:59 -07002039 if (!ieee80211_is_data_qos(hdr->frame_control))
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002040 goto end_reorder;
2041
Harvey Harrison238f74a2008-07-02 11:05:34 -07002042 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002043
Ron Rindjunskycee24a32008-03-26 20:36:03 +02002044 if (sta->ampdu_mlme.tid_state_rx[tid] != HT_AGG_STATE_OPERATIONAL)
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002045 goto end_reorder;
2046
Ron Rindjunskycee24a32008-03-26 20:36:03 +02002047 tid_agg_rx = sta->ampdu_mlme.tid_rx[tid];
2048
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002049 /* null data frames are excluded */
Harvey Harrison87228f52008-06-11 14:21:59 -07002050 if (unlikely(ieee80211_is_nullfunc(hdr->frame_control)))
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002051 goto end_reorder;
2052
2053 /* new un-ordered ampdu frame - process it */
2054
2055 /* reset session timer */
2056 if (tid_agg_rx->timeout) {
2057 unsigned long expires =
2058 jiffies + (tid_agg_rx->timeout / 1000) * HZ;
2059 mod_timer(&tid_agg_rx->session_timer, expires);
2060 }
2061
2062 /* if this mpdu is fragmented - terminate rx aggregation session */
2063 sc = le16_to_cpu(hdr->seq_ctrl);
2064 if (sc & IEEE80211_SCTL_FRAG) {
Johannes Bergd0709a62008-02-25 16:27:46 +01002065 ieee80211_sta_stop_rx_ba_session(sta->sdata->dev, sta->addr,
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002066 tid, 0, WLAN_REASON_QSTA_REQUIRE_SETUP);
2067 ret = 1;
2068 goto end_reorder;
2069 }
2070
2071 /* according to mpdu sequence number deal with reordering buffer */
2072 mpdu_seq_num = (sc & IEEE80211_SCTL_SEQ) >> 4;
2073 ret = ieee80211_sta_manage_reorder_buf(hw, tid_agg_rx, skb,
2074 mpdu_seq_num, 0);
Johannes Bergd0709a62008-02-25 16:27:46 +01002075 end_reorder:
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002076 return ret;
2077}
2078
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02002079/*
2080 * This is the receive path handler. It is called by a low level driver when an
2081 * 802.11 MPDU is received from the hardware.
2082 */
2083void __ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb,
2084 struct ieee80211_rx_status *status)
2085{
2086 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berg8318d782008-01-24 19:38:38 +01002087 struct ieee80211_rate *rate = NULL;
2088 struct ieee80211_supported_band *sband;
2089
2090 if (status->band < 0 ||
Adrian Bunk13d8fd22008-04-23 12:51:28 +03002091 status->band >= IEEE80211_NUM_BANDS) {
Johannes Berg8318d782008-01-24 19:38:38 +01002092 WARN_ON(1);
2093 return;
2094 }
2095
2096 sband = local->hw.wiphy->bands[status->band];
2097
2098 if (!sband ||
2099 status->rate_idx < 0 ||
2100 status->rate_idx >= sband->n_bitrates) {
2101 WARN_ON(1);
2102 return;
2103 }
2104
2105 rate = &sband->bitrates[status->rate_idx];
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02002106
2107 /*
2108 * key references and virtual interfaces are protected using RCU
2109 * and this requires that we are in a read-side RCU section during
2110 * receive processing
2111 */
2112 rcu_read_lock();
2113
2114 /*
2115 * Frames with failed FCS/PLCP checksum are not returned,
2116 * all other frames are returned without radiotap header
2117 * if it was previously present.
2118 * Also, frames with less than 16 bytes are dropped.
2119 */
Johannes Berg8318d782008-01-24 19:38:38 +01002120 skb = ieee80211_rx_monitor(local, skb, status, rate);
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02002121 if (!skb) {
2122 rcu_read_unlock();
2123 return;
2124 }
2125
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002126 if (!ieee80211_rx_reorder_ampdu(local, skb))
Johannes Berg9e72ebd2008-05-21 17:33:42 +02002127 __ieee80211_rx_handle_packet(hw, skb, status, rate);
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02002128
2129 rcu_read_unlock();
2130}
Johannes Berg571ecf62007-07-27 15:43:22 +02002131EXPORT_SYMBOL(__ieee80211_rx);
2132
2133/* This is a version of the rx handler that can be called from hard irq
2134 * context. Post the skb on the queue and schedule the tasklet */
2135void ieee80211_rx_irqsafe(struct ieee80211_hw *hw, struct sk_buff *skb,
2136 struct ieee80211_rx_status *status)
2137{
2138 struct ieee80211_local *local = hw_to_local(hw);
2139
2140 BUILD_BUG_ON(sizeof(struct ieee80211_rx_status) > sizeof(skb->cb));
2141
2142 skb->dev = local->mdev;
2143 /* copy status into skb->cb for use by tasklet */
2144 memcpy(skb->cb, status, sizeof(*status));
2145 skb->pkt_type = IEEE80211_RX_MSG;
2146 skb_queue_tail(&local->skb_queue, skb);
2147 tasklet_schedule(&local->tasklet);
2148}
2149EXPORT_SYMBOL(ieee80211_rx_irqsafe);