blob: ddb966f5888217ce23cdbc6fed120ba6ba628697 [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
Johannes Bergc6a1fa12008-10-07 12:04:32 +020029static u8 ieee80211_sta_manage_reorder_buf(struct ieee80211_hw *hw,
30 struct tid_ampdu_rx *tid_agg_rx,
31 struct sk_buff *skb,
32 u16 mpdu_seq_num,
33 int bar_req);
Johannes Bergb2e77712007-09-26 15:19:39 +020034/*
35 * monitor mode reception
36 *
37 * This function cleans up the SKB, i.e. it removes all the stuff
38 * only useful for monitoring.
39 */
40static struct sk_buff *remove_monitor_info(struct ieee80211_local *local,
41 struct sk_buff *skb,
42 int rtap_len)
43{
44 skb_pull(skb, rtap_len);
45
46 if (local->hw.flags & IEEE80211_HW_RX_INCLUDES_FCS) {
47 if (likely(skb->len > FCS_LEN))
48 skb_trim(skb, skb->len - FCS_LEN);
49 else {
50 /* driver bug */
51 WARN_ON(1);
52 dev_kfree_skb(skb);
53 skb = NULL;
54 }
55 }
56
57 return skb;
58}
59
60static inline int should_drop_frame(struct ieee80211_rx_status *status,
61 struct sk_buff *skb,
62 int present_fcs_len,
63 int radiotap_len)
64{
Harvey Harrison182503a2008-06-22 16:45:29 -070065 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
Johannes Bergb2e77712007-09-26 15:19:39 +020066
67 if (status->flag & (RX_FLAG_FAILED_FCS_CRC | RX_FLAG_FAILED_PLCP_CRC))
68 return 1;
69 if (unlikely(skb->len < 16 + present_fcs_len + radiotap_len))
70 return 1;
Harvey Harrison87228f52008-06-11 14:21:59 -070071 if (ieee80211_is_ctl(hdr->frame_control) &&
72 !ieee80211_is_pspoll(hdr->frame_control) &&
73 !ieee80211_is_back_req(hdr->frame_control))
Johannes Bergb2e77712007-09-26 15:19:39 +020074 return 1;
75 return 0;
76}
77
Bruno Randolf601ae7f2008-05-08 19:22:43 +020078static int
79ieee80211_rx_radiotap_len(struct ieee80211_local *local,
80 struct ieee80211_rx_status *status)
81{
82 int len;
83
84 /* always present fields */
85 len = sizeof(struct ieee80211_radiotap_header) + 9;
86
87 if (status->flag & RX_FLAG_TSFT)
88 len += 8;
89 if (local->hw.flags & IEEE80211_HW_SIGNAL_DB ||
90 local->hw.flags & IEEE80211_HW_SIGNAL_DBM)
91 len += 1;
92 if (local->hw.flags & IEEE80211_HW_NOISE_DBM)
93 len += 1;
94
95 if (len & 1) /* padding for RX_FLAGS if necessary */
96 len++;
97
98 /* make sure radiotap starts at a naturally aligned address */
99 if (len % 8)
100 len = roundup(len, 8);
101
102 return len;
103}
104
105/**
106 * ieee80211_add_rx_radiotap_header - add radiotap header
107 *
108 * add a radiotap header containing all the fields which the hardware provided.
109 */
110static void
111ieee80211_add_rx_radiotap_header(struct ieee80211_local *local,
112 struct sk_buff *skb,
113 struct ieee80211_rx_status *status,
114 struct ieee80211_rate *rate,
115 int rtap_len)
116{
117 struct ieee80211_radiotap_header *rthdr;
118 unsigned char *pos;
119
120 rthdr = (struct ieee80211_radiotap_header *)skb_push(skb, rtap_len);
121 memset(rthdr, 0, rtap_len);
122
123 /* radiotap header, set always present flags */
124 rthdr->it_present =
125 cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200126 (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;
Bruno Randolfb4f28bb2008-07-30 17:19:55 +0200146 if (status->flag & RX_FLAG_SHORTPRE)
147 *pos |= IEEE80211_RADIOTAP_F_SHORTPRE;
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200148 pos++;
149
150 /* IEEE80211_RADIOTAP_RATE */
Jouni Malinen0fb8ca42008-12-12 14:38:33 +0200151 if (status->flag & RX_FLAG_HT) {
152 /*
153 * TODO: add following information into radiotap header once
154 * suitable fields are defined for it:
155 * - MCS index (status->rate_idx)
156 * - HT40 (status->flag & RX_FLAG_40MHZ)
157 * - short-GI (status->flag & RX_FLAG_SHORT_GI)
158 */
159 *pos = 0;
Jouni Malinen8d6f6582008-12-15 10:37:50 +0200160 } else {
161 rthdr->it_present |= (1 << IEEE80211_RADIOTAP_RATE);
Jouni Malinen0fb8ca42008-12-12 14:38:33 +0200162 *pos = rate->bitrate / 5;
Jouni Malinen8d6f6582008-12-15 10:37:50 +0200163 }
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200164 pos++;
165
166 /* IEEE80211_RADIOTAP_CHANNEL */
167 *(__le16 *)pos = cpu_to_le16(status->freq);
168 pos += 2;
169 if (status->band == IEEE80211_BAND_5GHZ)
170 *(__le16 *)pos = cpu_to_le16(IEEE80211_CHAN_OFDM |
171 IEEE80211_CHAN_5GHZ);
Bruno Randolf9deb1ae2008-07-30 17:20:06 +0200172 else if (rate->flags & IEEE80211_RATE_ERP_G)
173 *(__le16 *)pos = cpu_to_le16(IEEE80211_CHAN_OFDM |
174 IEEE80211_CHAN_2GHZ);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200175 else
Bruno Randolf9deb1ae2008-07-30 17:20:06 +0200176 *(__le16 *)pos = cpu_to_le16(IEEE80211_CHAN_CCK |
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200177 IEEE80211_CHAN_2GHZ);
178 pos += 2;
179
180 /* IEEE80211_RADIOTAP_DBM_ANTSIGNAL */
181 if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM) {
182 *pos = status->signal;
183 rthdr->it_present |=
184 cpu_to_le32(1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL);
185 pos++;
186 }
187
188 /* IEEE80211_RADIOTAP_DBM_ANTNOISE */
189 if (local->hw.flags & IEEE80211_HW_NOISE_DBM) {
190 *pos = status->noise;
191 rthdr->it_present |=
192 cpu_to_le32(1 << IEEE80211_RADIOTAP_DBM_ANTNOISE);
193 pos++;
194 }
195
196 /* IEEE80211_RADIOTAP_LOCK_QUALITY is missing */
197
198 /* IEEE80211_RADIOTAP_ANTENNA */
199 *pos = status->antenna;
200 pos++;
201
202 /* IEEE80211_RADIOTAP_DB_ANTSIGNAL */
203 if (local->hw.flags & IEEE80211_HW_SIGNAL_DB) {
204 *pos = status->signal;
205 rthdr->it_present |=
206 cpu_to_le32(1 << IEEE80211_RADIOTAP_DB_ANTSIGNAL);
207 pos++;
208 }
209
210 /* IEEE80211_RADIOTAP_DB_ANTNOISE is not used */
211
212 /* IEEE80211_RADIOTAP_RX_FLAGS */
213 /* ensure 2 byte alignment for the 2 byte field as required */
214 if ((pos - (unsigned char *)rthdr) & 1)
215 pos++;
216 /* FIXME: when radiotap gets a 'bad PLCP' flag use it here */
217 if (status->flag & (RX_FLAG_FAILED_FCS_CRC | RX_FLAG_FAILED_PLCP_CRC))
218 *(__le16 *)pos |= cpu_to_le16(IEEE80211_RADIOTAP_F_RX_BADFCS);
219 pos += 2;
220}
221
Johannes Bergb2e77712007-09-26 15:19:39 +0200222/*
223 * This function copies a received frame to all monitor interfaces and
224 * returns a cleaned-up SKB that no longer includes the FCS nor the
225 * radiotap header the driver might have added.
226 */
227static struct sk_buff *
228ieee80211_rx_monitor(struct ieee80211_local *local, struct sk_buff *origskb,
Johannes Berg8318d782008-01-24 19:38:38 +0100229 struct ieee80211_rx_status *status,
230 struct ieee80211_rate *rate)
Johannes Bergb2e77712007-09-26 15:19:39 +0200231{
232 struct ieee80211_sub_if_data *sdata;
Johannes Bergb2e77712007-09-26 15:19:39 +0200233 int needed_headroom = 0;
Johannes Bergb2e77712007-09-26 15:19:39 +0200234 struct sk_buff *skb, *skb2;
235 struct net_device *prev_dev = NULL;
236 int present_fcs_len = 0;
237 int rtap_len = 0;
238
239 /*
240 * First, we may need to make a copy of the skb because
241 * (1) we need to modify it for radiotap (if not present), and
242 * (2) the other RX handlers will modify the skb we got.
243 *
244 * We don't need to, of course, if we aren't going to return
245 * the SKB because it has a bad FCS/PLCP checksum.
246 */
247 if (status->flag & RX_FLAG_RADIOTAP)
248 rtap_len = ieee80211_get_radiotap_len(origskb->data);
249 else
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200250 /* room for the radiotap header based on driver features */
251 needed_headroom = ieee80211_rx_radiotap_len(local, status);
Johannes Bergb2e77712007-09-26 15:19:39 +0200252
253 if (local->hw.flags & IEEE80211_HW_RX_INCLUDES_FCS)
254 present_fcs_len = FCS_LEN;
255
256 if (!local->monitors) {
257 if (should_drop_frame(status, origskb, present_fcs_len,
258 rtap_len)) {
259 dev_kfree_skb(origskb);
260 return NULL;
261 }
262
263 return remove_monitor_info(local, origskb, rtap_len);
264 }
265
266 if (should_drop_frame(status, origskb, present_fcs_len, rtap_len)) {
267 /* only need to expand headroom if necessary */
268 skb = origskb;
269 origskb = NULL;
270
271 /*
272 * This shouldn't trigger often because most devices have an
273 * RX header they pull before we get here, and that should
274 * be big enough for our radiotap information. We should
275 * probably export the length to drivers so that we can have
276 * them allocate enough headroom to start with.
277 */
278 if (skb_headroom(skb) < needed_headroom &&
Johannes Bergc49e5ea2007-12-11 21:33:42 +0100279 pskb_expand_head(skb, needed_headroom, 0, GFP_ATOMIC)) {
Johannes Bergb2e77712007-09-26 15:19:39 +0200280 dev_kfree_skb(skb);
281 return NULL;
282 }
283 } else {
284 /*
285 * Need to make a copy and possibly remove radiotap header
286 * and FCS from the original.
287 */
288 skb = skb_copy_expand(origskb, needed_headroom, 0, GFP_ATOMIC);
289
290 origskb = remove_monitor_info(local, origskb, rtap_len);
291
292 if (!skb)
293 return origskb;
294 }
295
296 /* if necessary, prepend radiotap information */
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200297 if (!(status->flag & RX_FLAG_RADIOTAP))
298 ieee80211_add_rx_radiotap_header(local, skb, status, rate,
299 needed_headroom);
Johannes Bergb2e77712007-09-26 15:19:39 +0200300
Johannes Bergce3edf6d02007-12-19 01:31:22 +0100301 skb_reset_mac_header(skb);
Johannes Bergb2e77712007-09-26 15:19:39 +0200302 skb->ip_summed = CHECKSUM_UNNECESSARY;
303 skb->pkt_type = PACKET_OTHERHOST;
304 skb->protocol = htons(ETH_P_802_2);
305
306 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
307 if (!netif_running(sdata->dev))
308 continue;
309
Johannes Berg05c914f2008-09-11 00:01:58 +0200310 if (sdata->vif.type != NL80211_IFTYPE_MONITOR)
Johannes Bergb2e77712007-09-26 15:19:39 +0200311 continue;
312
Michael Wu3d30d942008-01-31 19:48:27 +0100313 if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES)
314 continue;
315
Johannes Bergb2e77712007-09-26 15:19:39 +0200316 if (prev_dev) {
317 skb2 = skb_clone(skb, GFP_ATOMIC);
318 if (skb2) {
319 skb2->dev = prev_dev;
320 netif_rx(skb2);
321 }
322 }
323
324 prev_dev = sdata->dev;
325 sdata->dev->stats.rx_packets++;
326 sdata->dev->stats.rx_bytes += skb->len;
327 }
328
329 if (prev_dev) {
330 skb->dev = prev_dev;
331 netif_rx(skb);
332 } else
333 dev_kfree_skb(skb);
334
335 return origskb;
336}
337
338
Johannes Berg5cf121c2008-02-25 16:27:43 +0100339static void ieee80211_parse_qos(struct ieee80211_rx_data *rx)
Johannes Berg6e0d1142007-07-27 15:43:22 +0200340{
Harvey Harrison238f74a2008-07-02 11:05:34 -0700341 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200342 int tid;
343
344 /* does the frame have a qos control field? */
Harvey Harrison238f74a2008-07-02 11:05:34 -0700345 if (ieee80211_is_data_qos(hdr->frame_control)) {
346 u8 *qc = ieee80211_get_qos_ctl(hdr);
Johannes Berg6e0d1142007-07-27 15:43:22 +0200347 /* frame has qos control */
Harvey Harrison238f74a2008-07-02 11:05:34 -0700348 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
349 if (*qc & IEEE80211_QOS_CONTROL_A_MSDU_PRESENT)
Johannes Berg5cf121c2008-02-25 16:27:43 +0100350 rx->flags |= IEEE80211_RX_AMSDU;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +0200351 else
Johannes Berg5cf121c2008-02-25 16:27:43 +0100352 rx->flags &= ~IEEE80211_RX_AMSDU;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200353 } else {
Johannes Berg1411f9b2008-07-10 10:11:02 +0200354 /*
355 * IEEE 802.11-2007, 7.1.3.4.1 ("Sequence Number field"):
356 *
357 * Sequence numbers for management frames, QoS data
358 * frames with a broadcast/multicast address in the
359 * Address 1 field, and all non-QoS data frames sent
360 * by QoS STAs are assigned using an additional single
361 * modulo-4096 counter, [...]
362 *
363 * We also use that counter for non-QoS STAs.
364 */
365 tid = NUM_RX_DATA_QUEUES - 1;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200366 }
Johannes Berg52865df2007-07-27 15:43:22 +0200367
Johannes Berg5cf121c2008-02-25 16:27:43 +0100368 rx->queue = tid;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200369 /* Set skb->priority to 1d tag if highest order bit of TID is not set.
370 * For now, set skb->priority to 0 for other cases. */
371 rx->skb->priority = (tid > 7) ? 0 : tid;
Johannes Berg38f37142008-01-29 17:07:43 +0100372}
Johannes Berg6e0d1142007-07-27 15:43:22 +0200373
Johannes Berg5cf121c2008-02-25 16:27:43 +0100374static void ieee80211_verify_ip_alignment(struct ieee80211_rx_data *rx)
Johannes Berg38f37142008-01-29 17:07:43 +0100375{
376#ifdef CONFIG_MAC80211_DEBUG_PACKET_ALIGNMENT
Harvey Harrisona7767f92008-07-02 16:30:51 -0700377 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg38f37142008-01-29 17:07:43 +0100378 int hdrlen;
379
Harvey Harrisona7767f92008-07-02 16:30:51 -0700380 if (!ieee80211_is_data_present(hdr->frame_control))
Johannes Berg38f37142008-01-29 17:07:43 +0100381 return;
382
383 /*
384 * Drivers are required to align the payload data in a way that
385 * guarantees that the contained IP header is aligned to a four-
386 * byte boundary. In the case of regular frames, this simply means
387 * aligning the payload to a four-byte boundary (because either
388 * the IP header is directly contained, or IV/RFC1042 headers that
389 * have a length divisible by four are in front of it.
390 *
391 * With A-MSDU frames, however, the payload data address must
392 * yield two modulo four because there are 14-byte 802.3 headers
393 * within the A-MSDU frames that push the IP header further back
394 * to a multiple of four again. Thankfully, the specs were sane
395 * enough this time around to require padding each A-MSDU subframe
396 * to a length that is a multiple of four.
397 *
398 * Padding like atheros hardware adds which is inbetween the 802.11
399 * header and the payload is not supported, the driver is required
400 * to move the 802.11 header further back in that case.
401 */
Harvey Harrisona7767f92008-07-02 16:30:51 -0700402 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berg5cf121c2008-02-25 16:27:43 +0100403 if (rx->flags & IEEE80211_RX_AMSDU)
Johannes Berg38f37142008-01-29 17:07:43 +0100404 hdrlen += ETH_HLEN;
405 WARN_ON_ONCE(((unsigned long)(rx->skb->data + hdrlen)) & 3);
406#endif
Johannes Berg6e0d1142007-07-27 15:43:22 +0200407}
408
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +0200409
Johannes Berg571ecf62007-07-27 15:43:22 +0200410/* rx handlers */
411
Johannes Berg49461622008-06-30 15:10:45 +0200412static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100413ieee80211_rx_h_passive_scan(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +0200414{
415 struct ieee80211_local *local = rx->local;
416 struct sk_buff *skb = rx->skb;
417
Johannes Bergc2b13452008-09-11 00:01:55 +0200418 if (unlikely(local->hw_scanning))
419 return ieee80211_scan_rx(rx->sdata, skb, rx->status);
Zhu Yiece8edd2007-11-22 10:53:21 +0800420
Johannes Bergc2b13452008-09-11 00:01:55 +0200421 if (unlikely(local->sw_scanning)) {
Zhu Yiece8edd2007-11-22 10:53:21 +0800422 /* drop all the other packets during a software scan anyway */
Johannes Bergc2b13452008-09-11 00:01:55 +0200423 if (ieee80211_scan_rx(rx->sdata, skb, rx->status)
Johannes Berg9ae54c82008-01-31 19:48:20 +0100424 != RX_QUEUED)
Zhu Yiece8edd2007-11-22 10:53:21 +0800425 dev_kfree_skb(skb);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100426 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200427 }
428
Johannes Berg5cf121c2008-02-25 16:27:43 +0100429 if (unlikely(rx->flags & IEEE80211_RX_IN_SCAN)) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200430 /* scanning finished during invoking of handlers */
431 I802_DEBUG_INC(local->rx_handlers_drop_passive_scan);
Johannes Berge4c26ad2008-01-31 19:48:21 +0100432 return RX_DROP_UNUSABLE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200433 }
434
Johannes Berg9ae54c82008-01-31 19:48:20 +0100435 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200436}
437
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100438static ieee80211_rx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100439ieee80211_rx_mesh_check(struct ieee80211_rx_data *rx)
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100440{
Harvey Harrisona7767f92008-07-02 16:30:51 -0700441 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
442 unsigned int hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Bergd6d1a5a2008-02-25 16:24:38 +0100443
Harvey Harrisona7767f92008-07-02 16:30:51 -0700444 if (ieee80211_is_data(hdr->frame_control)) {
445 if (!ieee80211_has_a4(hdr->frame_control))
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100446 return RX_DROP_MONITOR;
447 if (memcmp(hdr->addr4, rx->dev->dev_addr, ETH_ALEN) == 0)
448 return RX_DROP_MONITOR;
449 }
450
451 /* If there is not an established peer link and this is not a peer link
452 * establisment frame, beacon or probe, drop the frame.
453 */
454
Luis Carlos Cobob4e08ea2008-02-29 15:46:08 -0800455 if (!rx->sta || sta_plink_state(rx->sta) != PLINK_ESTAB) {
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100456 struct ieee80211_mgmt *mgmt;
Johannes Bergd6d1a5a2008-02-25 16:24:38 +0100457
Harvey Harrisona7767f92008-07-02 16:30:51 -0700458 if (!ieee80211_is_mgmt(hdr->frame_control))
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100459 return RX_DROP_MONITOR;
460
Harvey Harrisona7767f92008-07-02 16:30:51 -0700461 if (ieee80211_is_action(hdr->frame_control)) {
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100462 mgmt = (struct ieee80211_mgmt *)hdr;
463 if (mgmt->u.action.category != PLINK_CATEGORY)
464 return RX_DROP_MONITOR;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100465 return RX_CONTINUE;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100466 }
467
Harvey Harrisona7767f92008-07-02 16:30:51 -0700468 if (ieee80211_is_probe_req(hdr->frame_control) ||
469 ieee80211_is_probe_resp(hdr->frame_control) ||
470 ieee80211_is_beacon(hdr->frame_control))
471 return RX_CONTINUE;
472
473 return RX_DROP_MONITOR;
474
475 }
476
477#define msh_h_get(h, l) ((struct ieee80211s_hdr *) ((u8 *)h + l))
478
479 if (ieee80211_is_data(hdr->frame_control) &&
480 is_multicast_ether_addr(hdr->addr1) &&
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200481 mesh_rmc_check(hdr->addr4, msh_h_get(hdr, hdrlen), rx->sdata))
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100482 return RX_DROP_MONITOR;
Johannes Berg902acc72008-02-23 15:17:19 +0100483#undef msh_h_get
Johannes Bergd6d1a5a2008-02-25 16:24:38 +0100484
Johannes Berg902acc72008-02-23 15:17:19 +0100485 return RX_CONTINUE;
486}
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100487
488
Johannes Berg49461622008-06-30 15:10:45 +0200489static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100490ieee80211_rx_h_check(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +0200491{
Harvey Harrisona7767f92008-07-02 16:30:51 -0700492 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg571ecf62007-07-27 15:43:22 +0200493
494 /* Drop duplicate 802.11 retransmissions (IEEE 802.11 Chap. 9.2.9) */
495 if (rx->sta && !is_multicast_ether_addr(hdr->addr1)) {
Harvey Harrisona7767f92008-07-02 16:30:51 -0700496 if (unlikely(ieee80211_has_retry(hdr->frame_control) &&
Johannes Berg5cf121c2008-02-25 16:27:43 +0100497 rx->sta->last_seq_ctrl[rx->queue] ==
Johannes Berg571ecf62007-07-27 15:43:22 +0200498 hdr->seq_ctrl)) {
Johannes Berg5cf121c2008-02-25 16:27:43 +0100499 if (rx->flags & IEEE80211_RX_RA_MATCH) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200500 rx->local->dot11FrameDuplicateCount++;
501 rx->sta->num_duplicates++;
502 }
Johannes Berge4c26ad2008-01-31 19:48:21 +0100503 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +0200504 } else
Johannes Berg5cf121c2008-02-25 16:27:43 +0100505 rx->sta->last_seq_ctrl[rx->queue] = hdr->seq_ctrl;
Johannes Berg571ecf62007-07-27 15:43:22 +0200506 }
507
Johannes Berg571ecf62007-07-27 15:43:22 +0200508 if (unlikely(rx->skb->len < 16)) {
509 I802_DEBUG_INC(rx->local->rx_handlers_drop_short);
Johannes Berge4c26ad2008-01-31 19:48:21 +0100510 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +0200511 }
512
Johannes Berg571ecf62007-07-27 15:43:22 +0200513 /* Drop disallowed frame classes based on STA auth/assoc state;
514 * IEEE 802.11, Chap 5.5.
515 *
Johannes Bergccd7b362008-09-11 00:01:56 +0200516 * mac80211 filters only based on association state, i.e. it drops
517 * Class 3 frames from not associated stations. hostapd sends
Johannes Berg571ecf62007-07-27 15:43:22 +0200518 * deauth/disassoc frames when needed. In addition, hostapd is
519 * responsible for filtering on both auth and assoc states.
520 */
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100521
Johannes Berg902acc72008-02-23 15:17:19 +0100522 if (ieee80211_vif_is_mesh(&rx->sdata->vif))
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100523 return ieee80211_rx_mesh_check(rx);
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100524
Harvey Harrisona7767f92008-07-02 16:30:51 -0700525 if (unlikely((ieee80211_is_data(hdr->frame_control) ||
526 ieee80211_is_pspoll(hdr->frame_control)) &&
Johannes Berg05c914f2008-09-11 00:01:58 +0200527 rx->sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Johannes Berg07346f812008-05-03 01:02:02 +0200528 (!rx->sta || !test_sta_flags(rx->sta, WLAN_STA_ASSOC)))) {
Harvey Harrisona7767f92008-07-02 16:30:51 -0700529 if ((!ieee80211_has_fromds(hdr->frame_control) &&
530 !ieee80211_has_tods(hdr->frame_control) &&
531 ieee80211_is_data(hdr->frame_control)) ||
532 !(rx->flags & IEEE80211_RX_RA_MATCH)) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200533 /* Drop IBSS frames and frames for other hosts
534 * silently. */
Johannes Berge4c26ad2008-01-31 19:48:21 +0100535 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +0200536 }
537
Johannes Berge4c26ad2008-01-31 19:48:21 +0100538 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +0200539 }
540
Johannes Berg9ae54c82008-01-31 19:48:20 +0100541 return RX_CONTINUE;
Johannes Berg570bd532007-07-27 15:43:22 +0200542}
543
544
Johannes Berg49461622008-06-30 15:10:45 +0200545static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100546ieee80211_rx_h_decrypt(struct ieee80211_rx_data *rx)
Johannes Berg570bd532007-07-27 15:43:22 +0200547{
Harvey Harrisona7767f92008-07-02 16:30:51 -0700548 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg3017b802007-08-28 17:01:53 -0400549 int keyidx;
550 int hdrlen;
Johannes Berge4c26ad2008-01-31 19:48:21 +0100551 ieee80211_rx_result result = RX_DROP_UNUSABLE;
Johannes Bergd4e46a32007-09-14 11:10:24 -0400552 struct ieee80211_key *stakey = NULL;
Johannes Berg570bd532007-07-27 15:43:22 +0200553
Johannes Berg3017b802007-08-28 17:01:53 -0400554 /*
555 * Key selection 101
556 *
557 * There are three types of keys:
558 * - GTK (group keys)
559 * - PTK (pairwise keys)
560 * - STK (station-to-station pairwise keys)
561 *
562 * When selecting a key, we have to distinguish between multicast
563 * (including broadcast) and unicast frames, the latter can only
564 * use PTKs and STKs while the former always use GTKs. Unless, of
565 * course, actual WEP keys ("pre-RSNA") are used, then unicast
566 * frames can also use key indizes like GTKs. Hence, if we don't
567 * have a PTK/STK we check the key index for a WEP key.
568 *
Johannes Berg8dc06a12007-08-28 17:01:55 -0400569 * Note that in a regular BSS, multicast frames are sent by the
570 * AP only, associated stations unicast the frame to the AP first
571 * which then multicasts it on their behalf.
572 *
Johannes Berg3017b802007-08-28 17:01:53 -0400573 * There is also a slight problem in IBSS mode: GTKs are negotiated
574 * with each station, that is something we don't currently handle.
Johannes Berg8dc06a12007-08-28 17:01:55 -0400575 * The spec seems to expect that one negotiates the same key with
576 * every station but there's no such requirement; VLANs could be
577 * possible.
Johannes Berg3017b802007-08-28 17:01:53 -0400578 */
Johannes Berg571ecf62007-07-27 15:43:22 +0200579
Harvey Harrisona7767f92008-07-02 16:30:51 -0700580 if (!ieee80211_has_protected(hdr->frame_control))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100581 return RX_CONTINUE;
Johannes Berg3017b802007-08-28 17:01:53 -0400582
583 /*
Johannes Berg1990af82007-09-26 17:53:15 +0200584 * No point in finding a key and decrypting if the frame is neither
Johannes Berg3017b802007-08-28 17:01:53 -0400585 * addressed to us nor a multicast frame.
586 */
Johannes Berg5cf121c2008-02-25 16:27:43 +0100587 if (!(rx->flags & IEEE80211_RX_RA_MATCH))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100588 return RX_CONTINUE;
Johannes Berg3017b802007-08-28 17:01:53 -0400589
Johannes Bergd4e46a32007-09-14 11:10:24 -0400590 if (rx->sta)
591 stakey = rcu_dereference(rx->sta->key);
592
593 if (!is_multicast_ether_addr(hdr->addr1) && stakey) {
594 rx->key = stakey;
Johannes Berg571ecf62007-07-27 15:43:22 +0200595 } else {
Johannes Berg3017b802007-08-28 17:01:53 -0400596 /*
597 * The device doesn't give us the IV so we won't be
598 * able to look up the key. That's ok though, we
599 * don't need to decrypt the frame, we just won't
600 * be able to keep statistics accurate.
601 * Except for key threshold notifications, should
602 * we somehow allow the driver to tell us which key
603 * the hardware used if this flag is set?
604 */
Johannes Berg5cf121c2008-02-25 16:27:43 +0100605 if ((rx->status->flag & RX_FLAG_DECRYPTED) &&
606 (rx->status->flag & RX_FLAG_IV_STRIPPED))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100607 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200608
Harvey Harrisona7767f92008-07-02 16:30:51 -0700609 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berg571ecf62007-07-27 15:43:22 +0200610
Johannes Berg3017b802007-08-28 17:01:53 -0400611 if (rx->skb->len < 8 + hdrlen)
Johannes Berge4c26ad2008-01-31 19:48:21 +0100612 return RX_DROP_UNUSABLE; /* TODO: count this? */
Johannes Berg571ecf62007-07-27 15:43:22 +0200613
Johannes Berg3017b802007-08-28 17:01:53 -0400614 /*
615 * no need to call ieee80211_wep_get_keyidx,
616 * it verifies a bunch of things we've done already
617 */
618 keyidx = rx->skb->data[hdrlen + 3] >> 6;
619
Johannes Bergd4e46a32007-09-14 11:10:24 -0400620 rx->key = rcu_dereference(rx->sdata->keys[keyidx]);
Johannes Berg3017b802007-08-28 17:01:53 -0400621
622 /*
623 * RSNA-protected unicast frames should always be sent with
624 * pairwise or station-to-station keys, but for WEP we allow
625 * using a key index as well.
626 */
Johannes Berg8f20fc22007-08-28 17:01:54 -0400627 if (rx->key && rx->key->conf.alg != ALG_WEP &&
Johannes Berg3017b802007-08-28 17:01:53 -0400628 !is_multicast_ether_addr(hdr->addr1))
629 rx->key = NULL;
Johannes Berg571ecf62007-07-27 15:43:22 +0200630 }
631
Johannes Berg3017b802007-08-28 17:01:53 -0400632 if (rx->key) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200633 rx->key->tx_rx_count++;
Johannes Berg011bfcc2007-09-17 01:29:25 -0400634 /* TODO: add threshold stuff again */
Johannes Berg1990af82007-09-26 17:53:15 +0200635 } else {
Johannes Berge4c26ad2008-01-31 19:48:21 +0100636 return RX_DROP_MONITOR;
Johannes Berg70f08762007-09-26 17:53:14 +0200637 }
638
Johannes Berg1990af82007-09-26 17:53:15 +0200639 /* Check for weak IVs if possible */
640 if (rx->sta && rx->key->conf.alg == ALG_WEP &&
Harvey Harrisona7767f92008-07-02 16:30:51 -0700641 ieee80211_is_data(hdr->frame_control) &&
Johannes Berg5cf121c2008-02-25 16:27:43 +0100642 (!(rx->status->flag & RX_FLAG_IV_STRIPPED) ||
643 !(rx->status->flag & RX_FLAG_DECRYPTED)) &&
Johannes Berg1990af82007-09-26 17:53:15 +0200644 ieee80211_wep_is_weak_iv(rx->skb, rx->key))
645 rx->sta->wep_weak_iv_count++;
646
Johannes Berg70f08762007-09-26 17:53:14 +0200647 switch (rx->key->conf.alg) {
648 case ALG_WEP:
Mattias Nisslere2f036d2007-10-07 16:35:31 +0200649 result = ieee80211_crypto_wep_decrypt(rx);
650 break;
Johannes Berg70f08762007-09-26 17:53:14 +0200651 case ALG_TKIP:
Mattias Nisslere2f036d2007-10-07 16:35:31 +0200652 result = ieee80211_crypto_tkip_decrypt(rx);
653 break;
Johannes Berg70f08762007-09-26 17:53:14 +0200654 case ALG_CCMP:
Mattias Nisslere2f036d2007-10-07 16:35:31 +0200655 result = ieee80211_crypto_ccmp_decrypt(rx);
656 break;
Johannes Berg70f08762007-09-26 17:53:14 +0200657 }
658
Mattias Nisslere2f036d2007-10-07 16:35:31 +0200659 /* either the frame has been decrypted or will be dropped */
Johannes Berg5cf121c2008-02-25 16:27:43 +0100660 rx->status->flag |= RX_FLAG_DECRYPTED;
Mattias Nisslere2f036d2007-10-07 16:35:31 +0200661
662 return result;
Johannes Berg70f08762007-09-26 17:53:14 +0200663}
664
Johannes Berg133b8222008-09-16 14:18:59 +0200665static void ap_sta_ps_start(struct sta_info *sta)
Johannes Berg571ecf62007-07-27 15:43:22 +0200666{
Johannes Berg133b8222008-09-16 14:18:59 +0200667 struct ieee80211_sub_if_data *sdata = sta->sdata;
Christian Lamparter4571d3b2008-11-30 00:48:41 +0100668 struct ieee80211_local *local = sdata->local;
Joe Perches0795af52007-10-03 17:59:30 -0700669
Johannes Berg3e122be2008-07-09 14:40:34 +0200670 atomic_inc(&sdata->bss->num_sta_ps);
Johannes Berg07346f812008-05-03 01:02:02 +0200671 set_and_clear_sta_flags(sta, WLAN_STA_PS, WLAN_STA_PSPOLL);
Christian Lamparter89fad572008-12-09 16:28:06 +0100672 if (local->ops->sta_notify)
673 local->ops->sta_notify(local_to_hw(local), &sdata->vif,
674 STA_NOTIFY_SLEEP, &sta->sta);
Johannes Berg571ecf62007-07-27 15:43:22 +0200675#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700676 printk(KERN_DEBUG "%s: STA %pM aid %d enters power save mode\n",
677 sdata->dev->name, sta->sta.addr, sta->sta.aid);
Johannes Berg571ecf62007-07-27 15:43:22 +0200678#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
679}
680
Johannes Berg133b8222008-09-16 14:18:59 +0200681static int ap_sta_ps_end(struct sta_info *sta)
Johannes Berg571ecf62007-07-27 15:43:22 +0200682{
Johannes Berg133b8222008-09-16 14:18:59 +0200683 struct ieee80211_sub_if_data *sdata = sta->sdata;
684 struct ieee80211_local *local = sdata->local;
Johannes Berg571ecf62007-07-27 15:43:22 +0200685 struct sk_buff *skb;
686 int sent = 0;
Johannes Berg571ecf62007-07-27 15:43:22 +0200687
Johannes Berg3e122be2008-07-09 14:40:34 +0200688 atomic_dec(&sdata->bss->num_sta_ps);
Johannes Berg004c8722008-02-20 11:21:35 +0100689
Johannes Berg07346f812008-05-03 01:02:02 +0200690 clear_sta_flags(sta, WLAN_STA_PS | WLAN_STA_PSPOLL);
Christian Lamparter89fad572008-12-09 16:28:06 +0100691 if (local->ops->sta_notify)
692 local->ops->sta_notify(local_to_hw(local), &sdata->vif,
693 STA_NOTIFY_AWAKE, &sta->sta);
Johannes Berg004c8722008-02-20 11:21:35 +0100694
695 if (!skb_queue_empty(&sta->ps_tx_buf))
696 sta_info_clear_tim_bit(sta);
697
Johannes Berg571ecf62007-07-27 15:43:22 +0200698#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700699 printk(KERN_DEBUG "%s: STA %pM aid %d exits power save mode\n",
700 sdata->dev->name, sta->sta.addr, sta->sta.aid);
Johannes Berg571ecf62007-07-27 15:43:22 +0200701#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
Johannes Berg004c8722008-02-20 11:21:35 +0100702
Johannes Berg571ecf62007-07-27 15:43:22 +0200703 /* Send all buffered frames to the station */
704 while ((skb = skb_dequeue(&sta->tx_filtered)) != NULL) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200705 sent++;
Sujith8b30b1f2008-10-24 09:55:27 +0530706 skb->requeue = 1;
Johannes Berg571ecf62007-07-27 15:43:22 +0200707 dev_queue_xmit(skb);
708 }
709 while ((skb = skb_dequeue(&sta->ps_tx_buf)) != NULL) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200710 local->total_ps_buffered--;
711 sent++;
712#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700713 printk(KERN_DEBUG "%s: STA %pM aid %d send PS frame "
Johannes Berg133b8222008-09-16 14:18:59 +0200714 "since STA not sleeping anymore\n", sdata->dev->name,
Johannes Berg0c68ae262008-10-27 15:56:10 -0700715 sta->sta.addr, sta->sta.aid);
Johannes Berg571ecf62007-07-27 15:43:22 +0200716#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
Sujith8b30b1f2008-10-24 09:55:27 +0530717 skb->requeue = 1;
Johannes Berg571ecf62007-07-27 15:43:22 +0200718 dev_queue_xmit(skb);
719 }
720
721 return sent;
722}
723
Johannes Berg49461622008-06-30 15:10:45 +0200724static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100725ieee80211_rx_h_sta_process(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +0200726{
727 struct sta_info *sta = rx->sta;
Harvey Harrisona7767f92008-07-02 16:30:51 -0700728 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg571ecf62007-07-27 15:43:22 +0200729
730 if (!sta)
Johannes Berg9ae54c82008-01-31 19:48:20 +0100731 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200732
733 /* Update last_rx only for IBSS packets which are for the current
734 * BSSID to avoid keeping the current IBSS network alive in cases where
735 * other STAs are using different BSSID. */
Johannes Berg05c914f2008-09-11 00:01:58 +0200736 if (rx->sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Ron Rindjunsky71364712007-12-25 17:00:36 +0200737 u8 *bssid = ieee80211_get_bssid(hdr, rx->skb->len,
Johannes Berg05c914f2008-09-11 00:01:58 +0200738 NL80211_IFTYPE_ADHOC);
Johannes Berg571ecf62007-07-27 15:43:22 +0200739 if (compare_ether_addr(bssid, rx->sdata->u.sta.bssid) == 0)
740 sta->last_rx = jiffies;
741 } else
742 if (!is_multicast_ether_addr(hdr->addr1) ||
Johannes Berg05c914f2008-09-11 00:01:58 +0200743 rx->sdata->vif.type == NL80211_IFTYPE_STATION) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200744 /* Update last_rx only for unicast frames in order to prevent
745 * the Probe Request frames (the only broadcast frames from a
746 * STA in infrastructure mode) from keeping a connection alive.
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100747 * Mesh beacons will update last_rx when if they are found to
748 * match the current local configuration when processed.
Johannes Berg571ecf62007-07-27 15:43:22 +0200749 */
750 sta->last_rx = jiffies;
751 }
752
Johannes Berg5cf121c2008-02-25 16:27:43 +0100753 if (!(rx->flags & IEEE80211_RX_RA_MATCH))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100754 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200755
756 sta->rx_fragments++;
757 sta->rx_bytes += rx->skb->len;
Johannes Berg5cf121c2008-02-25 16:27:43 +0100758 sta->last_signal = rx->status->signal;
Bruno Randolf566bfe52008-05-08 19:15:40 +0200759 sta->last_qual = rx->status->qual;
Johannes Berg5cf121c2008-02-25 16:27:43 +0100760 sta->last_noise = rx->status->noise;
Johannes Berg571ecf62007-07-27 15:43:22 +0200761
Johannes Berg72eaa432008-11-26 15:02:58 +0100762 /*
763 * Change STA power saving mode only at the end of a frame
764 * exchange sequence.
765 */
Johannes Berg3e122be2008-07-09 14:40:34 +0200766 if (!ieee80211_has_morefrags(hdr->frame_control) &&
Johannes Berg05c914f2008-09-11 00:01:58 +0200767 (rx->sdata->vif.type == NL80211_IFTYPE_AP ||
768 rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN)) {
Johannes Berg72eaa432008-11-26 15:02:58 +0100769 if (test_sta_flags(sta, WLAN_STA_PS)) {
770 /*
771 * Ignore doze->wake transitions that are
772 * indicated by non-data frames, the standard
773 * is unclear here, but for example going to
774 * PS mode and then scanning would cause a
775 * doze->wake transition for the probe request,
776 * and that is clearly undesirable.
777 */
778 if (ieee80211_is_data(hdr->frame_control) &&
779 !ieee80211_has_pm(hdr->frame_control))
780 rx->sent_ps_buffered += ap_sta_ps_end(sta);
781 } else {
782 if (ieee80211_has_pm(hdr->frame_control))
783 ap_sta_ps_start(sta);
784 }
Johannes Berg571ecf62007-07-27 15:43:22 +0200785 }
786
787 /* Drop data::nullfunc frames silently, since they are used only to
788 * control station power saving mode. */
Harvey Harrisona7767f92008-07-02 16:30:51 -0700789 if (ieee80211_is_nullfunc(hdr->frame_control)) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200790 I802_DEBUG_INC(rx->local->rx_handlers_drop_nullfunc);
791 /* Update counter and free packet here to avoid counting this
792 * as a dropped packed. */
793 sta->rx_packets++;
794 dev_kfree_skb(rx->skb);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100795 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200796 }
797
Johannes Berg9ae54c82008-01-31 19:48:20 +0100798 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200799} /* ieee80211_rx_h_sta_process */
800
Johannes Berg571ecf62007-07-27 15:43:22 +0200801static inline struct ieee80211_fragment_entry *
802ieee80211_reassemble_add(struct ieee80211_sub_if_data *sdata,
803 unsigned int frag, unsigned int seq, int rx_queue,
804 struct sk_buff **skb)
805{
806 struct ieee80211_fragment_entry *entry;
807 int idx;
808
809 idx = sdata->fragment_next;
810 entry = &sdata->fragments[sdata->fragment_next++];
811 if (sdata->fragment_next >= IEEE80211_FRAGMENT_MAX)
812 sdata->fragment_next = 0;
813
814 if (!skb_queue_empty(&entry->skb_list)) {
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200815#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg571ecf62007-07-27 15:43:22 +0200816 struct ieee80211_hdr *hdr =
817 (struct ieee80211_hdr *) entry->skb_list.next->data;
818 printk(KERN_DEBUG "%s: RX reassembly removed oldest "
819 "fragment entry (idx=%d age=%lu seq=%d last_frag=%d "
Johannes Berg0c68ae262008-10-27 15:56:10 -0700820 "addr1=%pM addr2=%pM\n",
Johannes Berg571ecf62007-07-27 15:43:22 +0200821 sdata->dev->name, idx,
822 jiffies - entry->first_frag_time, entry->seq,
Johannes Berg0c68ae262008-10-27 15:56:10 -0700823 entry->last_frag, hdr->addr1, hdr->addr2);
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200824#endif
Johannes Berg571ecf62007-07-27 15:43:22 +0200825 __skb_queue_purge(&entry->skb_list);
826 }
827
828 __skb_queue_tail(&entry->skb_list, *skb); /* no need for locking */
829 *skb = NULL;
830 entry->first_frag_time = jiffies;
831 entry->seq = seq;
832 entry->rx_queue = rx_queue;
833 entry->last_frag = frag;
834 entry->ccmp = 0;
835 entry->extra_len = 0;
836
837 return entry;
838}
839
840static inline struct ieee80211_fragment_entry *
841ieee80211_reassemble_find(struct ieee80211_sub_if_data *sdata,
Harvey Harrisonb73d70a2008-07-15 18:44:12 -0700842 unsigned int frag, unsigned int seq,
Johannes Berg571ecf62007-07-27 15:43:22 +0200843 int rx_queue, struct ieee80211_hdr *hdr)
844{
845 struct ieee80211_fragment_entry *entry;
846 int i, idx;
847
848 idx = sdata->fragment_next;
849 for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) {
850 struct ieee80211_hdr *f_hdr;
Johannes Berg571ecf62007-07-27 15:43:22 +0200851
852 idx--;
853 if (idx < 0)
854 idx = IEEE80211_FRAGMENT_MAX - 1;
855
856 entry = &sdata->fragments[idx];
857 if (skb_queue_empty(&entry->skb_list) || entry->seq != seq ||
858 entry->rx_queue != rx_queue ||
859 entry->last_frag + 1 != frag)
860 continue;
861
Harvey Harrisonb73d70a2008-07-15 18:44:12 -0700862 f_hdr = (struct ieee80211_hdr *)entry->skb_list.next->data;
Johannes Berg571ecf62007-07-27 15:43:22 +0200863
Harvey Harrisonb73d70a2008-07-15 18:44:12 -0700864 /*
865 * Check ftype and addresses are equal, else check next fragment
866 */
867 if (((hdr->frame_control ^ f_hdr->frame_control) &
868 cpu_to_le16(IEEE80211_FCTL_FTYPE)) ||
Johannes Berg571ecf62007-07-27 15:43:22 +0200869 compare_ether_addr(hdr->addr1, f_hdr->addr1) != 0 ||
870 compare_ether_addr(hdr->addr2, f_hdr->addr2) != 0)
871 continue;
872
S.Çağlar Onurab466232008-02-14 17:36:47 +0200873 if (time_after(jiffies, entry->first_frag_time + 2 * HZ)) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200874 __skb_queue_purge(&entry->skb_list);
875 continue;
876 }
877 return entry;
878 }
879
880 return NULL;
881}
882
Johannes Berg49461622008-06-30 15:10:45 +0200883static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100884ieee80211_rx_h_defragment(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +0200885{
886 struct ieee80211_hdr *hdr;
887 u16 sc;
Harvey Harrison358c8d92008-07-15 18:44:13 -0700888 __le16 fc;
Johannes Berg571ecf62007-07-27 15:43:22 +0200889 unsigned int frag, seq;
890 struct ieee80211_fragment_entry *entry;
891 struct sk_buff *skb;
892
Harvey Harrisonb73d70a2008-07-15 18:44:12 -0700893 hdr = (struct ieee80211_hdr *)rx->skb->data;
Harvey Harrison358c8d92008-07-15 18:44:13 -0700894 fc = hdr->frame_control;
Johannes Berg571ecf62007-07-27 15:43:22 +0200895 sc = le16_to_cpu(hdr->seq_ctrl);
896 frag = sc & IEEE80211_SCTL_FRAG;
897
Harvey Harrison358c8d92008-07-15 18:44:13 -0700898 if (likely((!ieee80211_has_morefrags(fc) && frag == 0) ||
Johannes Berg571ecf62007-07-27 15:43:22 +0200899 (rx->skb)->len < 24 ||
900 is_multicast_ether_addr(hdr->addr1))) {
901 /* not fragmented */
902 goto out;
903 }
904 I802_DEBUG_INC(rx->local->rx_handlers_fragments);
905
906 seq = (sc & IEEE80211_SCTL_SEQ) >> 4;
907
908 if (frag == 0) {
909 /* This is the first fragment of a new frame. */
910 entry = ieee80211_reassemble_add(rx->sdata, frag, seq,
Johannes Berg5cf121c2008-02-25 16:27:43 +0100911 rx->queue, &(rx->skb));
Johannes Berg8f20fc22007-08-28 17:01:54 -0400912 if (rx->key && rx->key->conf.alg == ALG_CCMP &&
Harvey Harrison358c8d92008-07-15 18:44:13 -0700913 ieee80211_has_protected(fc)) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200914 /* Store CCMP PN so that we can verify that the next
915 * fragment has a sequential PN value. */
916 entry->ccmp = 1;
917 memcpy(entry->last_pn,
Johannes Berg5cf121c2008-02-25 16:27:43 +0100918 rx->key->u.ccmp.rx_pn[rx->queue],
Johannes Berg571ecf62007-07-27 15:43:22 +0200919 CCMP_PN_LEN);
920 }
Johannes Berg9ae54c82008-01-31 19:48:20 +0100921 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200922 }
923
924 /* This is a fragment for a frame that should already be pending in
925 * fragment cache. Add this fragment to the end of the pending entry.
926 */
Harvey Harrisonb73d70a2008-07-15 18:44:12 -0700927 entry = ieee80211_reassemble_find(rx->sdata, frag, seq, rx->queue, hdr);
Johannes Berg571ecf62007-07-27 15:43:22 +0200928 if (!entry) {
929 I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
Johannes Berge4c26ad2008-01-31 19:48:21 +0100930 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +0200931 }
932
933 /* Verify that MPDUs within one MSDU have sequential PN values.
934 * (IEEE 802.11i, 8.3.3.4.5) */
935 if (entry->ccmp) {
936 int i;
937 u8 pn[CCMP_PN_LEN], *rpn;
Johannes Berg8f20fc22007-08-28 17:01:54 -0400938 if (!rx->key || rx->key->conf.alg != ALG_CCMP)
Johannes Berge4c26ad2008-01-31 19:48:21 +0100939 return RX_DROP_UNUSABLE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200940 memcpy(pn, entry->last_pn, CCMP_PN_LEN);
941 for (i = CCMP_PN_LEN - 1; i >= 0; i--) {
942 pn[i]++;
943 if (pn[i])
944 break;
945 }
Johannes Berg5cf121c2008-02-25 16:27:43 +0100946 rpn = rx->key->u.ccmp.rx_pn[rx->queue];
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200947 if (memcmp(pn, rpn, CCMP_PN_LEN))
Johannes Berge4c26ad2008-01-31 19:48:21 +0100948 return RX_DROP_UNUSABLE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200949 memcpy(entry->last_pn, pn, CCMP_PN_LEN);
950 }
951
Harvey Harrison358c8d92008-07-15 18:44:13 -0700952 skb_pull(rx->skb, ieee80211_hdrlen(fc));
Johannes Berg571ecf62007-07-27 15:43:22 +0200953 __skb_queue_tail(&entry->skb_list, rx->skb);
954 entry->last_frag = frag;
955 entry->extra_len += rx->skb->len;
Harvey Harrison358c8d92008-07-15 18:44:13 -0700956 if (ieee80211_has_morefrags(fc)) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200957 rx->skb = NULL;
Johannes Berg9ae54c82008-01-31 19:48:20 +0100958 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200959 }
960
961 rx->skb = __skb_dequeue(&entry->skb_list);
962 if (skb_tailroom(rx->skb) < entry->extra_len) {
963 I802_DEBUG_INC(rx->local->rx_expand_skb_head2);
964 if (unlikely(pskb_expand_head(rx->skb, 0, entry->extra_len,
965 GFP_ATOMIC))) {
966 I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
967 __skb_queue_purge(&entry->skb_list);
Johannes Berge4c26ad2008-01-31 19:48:21 +0100968 return RX_DROP_UNUSABLE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200969 }
970 }
971 while ((skb = __skb_dequeue(&entry->skb_list))) {
972 memcpy(skb_put(rx->skb, skb->len), skb->data, skb->len);
973 dev_kfree_skb(skb);
974 }
975
976 /* Complete frame has been reassembled - process it now */
Johannes Berg5cf121c2008-02-25 16:27:43 +0100977 rx->flags |= IEEE80211_RX_FRAGMENTED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200978
979 out:
980 if (rx->sta)
981 rx->sta->rx_packets++;
982 if (is_multicast_ether_addr(hdr->addr1))
983 rx->local->dot11MulticastReceivedFrameCount++;
984 else
985 ieee80211_led_rx(rx->local);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100986 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200987}
988
Johannes Berg49461622008-06-30 15:10:45 +0200989static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100990ieee80211_rx_h_ps_poll(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +0200991{
Ron Rindjunsky98f0b0a2007-12-18 17:23:53 +0200992 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(rx->dev);
Johannes Berg571ecf62007-07-27 15:43:22 +0200993 struct sk_buff *skb;
994 int no_pending_pkts;
Harvey Harrison358c8d92008-07-15 18:44:13 -0700995 __le16 fc = ((struct ieee80211_hdr *)rx->skb->data)->frame_control;
Johannes Berg571ecf62007-07-27 15:43:22 +0200996
Harvey Harrison358c8d92008-07-15 18:44:13 -0700997 if (likely(!rx->sta || !ieee80211_is_pspoll(fc) ||
Johannes Berg5cf121c2008-02-25 16:27:43 +0100998 !(rx->flags & IEEE80211_RX_RA_MATCH)))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100999 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +02001000
Johannes Berg05c914f2008-09-11 00:01:58 +02001001 if ((sdata->vif.type != NL80211_IFTYPE_AP) &&
1002 (sdata->vif.type != NL80211_IFTYPE_AP_VLAN))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001003 return RX_DROP_UNUSABLE;
Ron Rindjunsky98f0b0a2007-12-18 17:23:53 +02001004
Johannes Berg571ecf62007-07-27 15:43:22 +02001005 skb = skb_dequeue(&rx->sta->tx_filtered);
1006 if (!skb) {
1007 skb = skb_dequeue(&rx->sta->ps_tx_buf);
1008 if (skb)
1009 rx->local->total_ps_buffered--;
1010 }
1011 no_pending_pkts = skb_queue_empty(&rx->sta->tx_filtered) &&
1012 skb_queue_empty(&rx->sta->ps_tx_buf);
1013
1014 if (skb) {
1015 struct ieee80211_hdr *hdr =
1016 (struct ieee80211_hdr *) skb->data;
1017
Johannes Berg4a9a66e2008-02-19 11:31:14 +01001018 /*
1019 * Tell TX path to send one frame even though the STA may
1020 * still remain is PS mode after this frame exchange.
1021 */
Johannes Berg07346f812008-05-03 01:02:02 +02001022 set_sta_flags(rx->sta, WLAN_STA_PSPOLL);
Johannes Berg571ecf62007-07-27 15:43:22 +02001023
1024#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07001025 printk(KERN_DEBUG "STA %pM aid %d: PS Poll (entries after %d)\n",
1026 rx->sta->sta.addr, rx->sta->sta.aid,
Johannes Berg571ecf62007-07-27 15:43:22 +02001027 skb_queue_len(&rx->sta->ps_tx_buf));
1028#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
1029
1030 /* Use MoreData flag to indicate whether there are more
1031 * buffered frames for this STA */
Johannes Berg836341a2008-02-20 02:07:21 +01001032 if (no_pending_pkts)
Johannes Berg571ecf62007-07-27 15:43:22 +02001033 hdr->frame_control &= cpu_to_le16(~IEEE80211_FCTL_MOREDATA);
Johannes Berg836341a2008-02-20 02:07:21 +01001034 else
Johannes Berg571ecf62007-07-27 15:43:22 +02001035 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1036
1037 dev_queue_xmit(skb);
1038
Johannes Berg004c8722008-02-20 11:21:35 +01001039 if (no_pending_pkts)
1040 sta_info_clear_tim_bit(rx->sta);
Johannes Berg571ecf62007-07-27 15:43:22 +02001041#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Johannes Berg5cf121c2008-02-25 16:27:43 +01001042 } else if (!rx->sent_ps_buffered) {
Johannes Berg004c8722008-02-20 11:21:35 +01001043 /*
1044 * FIXME: This can be the result of a race condition between
1045 * us expiring a frame and the station polling for it.
1046 * Should we send it a null-func frame indicating we
1047 * have nothing buffered for it?
1048 */
Johannes Berg0c68ae262008-10-27 15:56:10 -07001049 printk(KERN_DEBUG "%s: STA %pM sent PS Poll even "
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001050 "though there are no buffered frames for it\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -07001051 rx->dev->name, rx->sta->sta.addr);
Johannes Berg571ecf62007-07-27 15:43:22 +02001052#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
Johannes Berg571ecf62007-07-27 15:43:22 +02001053 }
1054
Johannes Berg9ae54c82008-01-31 19:48:20 +01001055 /* Free PS Poll skb here instead of returning RX_DROP that would
Johannes Berg571ecf62007-07-27 15:43:22 +02001056 * count as an dropped frame. */
1057 dev_kfree_skb(rx->skb);
1058
Johannes Berg9ae54c82008-01-31 19:48:20 +01001059 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001060}
1061
Johannes Berg49461622008-06-30 15:10:45 +02001062static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001063ieee80211_rx_h_remove_qos_control(struct ieee80211_rx_data *rx)
Johannes Berg6e0d1142007-07-27 15:43:22 +02001064{
Johannes Berg6e0d1142007-07-27 15:43:22 +02001065 u8 *data = rx->skb->data;
Harvey Harrison238f74a2008-07-02 11:05:34 -07001066 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)data;
Johannes Berg6e0d1142007-07-27 15:43:22 +02001067
Harvey Harrison238f74a2008-07-02 11:05:34 -07001068 if (!ieee80211_is_data_qos(hdr->frame_control))
Johannes Berg9ae54c82008-01-31 19:48:20 +01001069 return RX_CONTINUE;
Johannes Berg6e0d1142007-07-27 15:43:22 +02001070
1071 /* remove the qos control field, update frame type and meta-data */
Harvey Harrison238f74a2008-07-02 11:05:34 -07001072 memmove(data + IEEE80211_QOS_CTL_LEN, data,
1073 ieee80211_hdrlen(hdr->frame_control) - IEEE80211_QOS_CTL_LEN);
1074 hdr = (struct ieee80211_hdr *)skb_pull(rx->skb, IEEE80211_QOS_CTL_LEN);
Johannes Berg6e0d1142007-07-27 15:43:22 +02001075 /* change frame type to non QOS */
Harvey Harrison238f74a2008-07-02 11:05:34 -07001076 hdr->frame_control &= ~cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
Johannes Berg6e0d1142007-07-27 15:43:22 +02001077
Johannes Berg9ae54c82008-01-31 19:48:20 +01001078 return RX_CONTINUE;
Johannes Berg6e0d1142007-07-27 15:43:22 +02001079}
1080
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001081static int
Johannes Berg5cf121c2008-02-25 16:27:43 +01001082ieee80211_802_1x_port_control(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001083{
Johannes Berg07346f812008-05-03 01:02:02 +02001084 if (unlikely(!rx->sta ||
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001085 !test_sta_flags(rx->sta, WLAN_STA_AUTHORIZED)))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001086 return -EACCES;
Johannes Berg571ecf62007-07-27 15:43:22 +02001087
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001088 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02001089}
1090
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001091static int
Harvey Harrison358c8d92008-07-15 18:44:13 -07001092ieee80211_drop_unencrypted(struct ieee80211_rx_data *rx, __le16 fc)
Johannes Berg571ecf62007-07-27 15:43:22 +02001093{
Johannes Berg3017b802007-08-28 17:01:53 -04001094 /*
Johannes Berg7848ba72007-09-14 11:10:25 -04001095 * Pass through unencrypted frames if the hardware has
1096 * decrypted them already.
Johannes Berg3017b802007-08-28 17:01:53 -04001097 */
Johannes Berg5cf121c2008-02-25 16:27:43 +01001098 if (rx->status->flag & RX_FLAG_DECRYPTED)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001099 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02001100
1101 /* Drop unencrypted frames if key is set. */
Harvey Harrison358c8d92008-07-15 18:44:13 -07001102 if (unlikely(!ieee80211_has_protected(fc) &&
1103 !ieee80211_is_nullfunc(fc) &&
Johannes Bergb3fc9c62008-04-13 10:12:47 +02001104 (rx->key || rx->sdata->drop_unencrypted)))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001105 return -EACCES;
Johannes Bergb3fc9c62008-04-13 10:12:47 +02001106
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001107 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02001108}
1109
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001110static int
Johannes Berg5cf121c2008-02-25 16:27:43 +01001111ieee80211_data_to_8023(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001112{
1113 struct net_device *dev = rx->dev;
Johannes Berg571ecf62007-07-27 15:43:22 +02001114 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) rx->skb->data;
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001115 u16 hdrlen, ethertype;
Johannes Berg571ecf62007-07-27 15:43:22 +02001116 u8 *payload;
1117 u8 dst[ETH_ALEN];
Senthil Balasubramanianc97c23e2008-05-28 23:15:32 +05301118 u8 src[ETH_ALEN] __aligned(2);
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001119 struct sk_buff *skb = rx->skb;
Johannes Berg571ecf62007-07-27 15:43:22 +02001120 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1121
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001122 if (unlikely(!ieee80211_is_data_present(hdr->frame_control)))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001123 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001124
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001125 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berg571ecf62007-07-27 15:43:22 +02001126
1127 /* convert IEEE 802.11 header + possible LLC headers into Ethernet
1128 * header
1129 * IEEE 802.11 address fields:
1130 * ToDS FromDS Addr1 Addr2 Addr3 Addr4
1131 * 0 0 DA SA BSSID n/a
1132 * 0 1 DA BSSID SA n/a
1133 * 1 0 BSSID SA DA n/a
1134 * 1 1 RA TA DA SA
1135 */
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001136 memcpy(dst, ieee80211_get_DA(hdr), ETH_ALEN);
1137 memcpy(src, ieee80211_get_SA(hdr), ETH_ALEN);
Johannes Berg571ecf62007-07-27 15:43:22 +02001138
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001139 switch (hdr->frame_control &
1140 cpu_to_le16(IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) {
1141 case __constant_cpu_to_le16(IEEE80211_FCTL_TODS):
Johannes Berg05c914f2008-09-11 00:01:58 +02001142 if (unlikely(sdata->vif.type != NL80211_IFTYPE_AP &&
1143 sdata->vif.type != NL80211_IFTYPE_AP_VLAN))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001144 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001145 break;
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001146 case __constant_cpu_to_le16(IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS):
Johannes Berg05c914f2008-09-11 00:01:58 +02001147 if (unlikely(sdata->vif.type != NL80211_IFTYPE_WDS &&
1148 sdata->vif.type != NL80211_IFTYPE_MESH_POINT))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001149 return -1;
YanBo79617de2008-09-22 13:30:32 +08001150 if (ieee80211_vif_is_mesh(&sdata->vif)) {
1151 struct ieee80211s_hdr *meshdr = (struct ieee80211s_hdr *)
1152 (skb->data + hdrlen);
1153 hdrlen += ieee80211_get_mesh_hdrlen(meshdr);
1154 if (meshdr->flags & MESH_FLAGS_AE_A5_A6) {
1155 memcpy(dst, meshdr->eaddr1, ETH_ALEN);
1156 memcpy(src, meshdr->eaddr2, ETH_ALEN);
1157 }
1158 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001159 break;
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001160 case __constant_cpu_to_le16(IEEE80211_FCTL_FROMDS):
Johannes Berg05c914f2008-09-11 00:01:58 +02001161 if (sdata->vif.type != NL80211_IFTYPE_STATION ||
John W. Linvilleb3316152007-08-28 17:01:55 -04001162 (is_multicast_ether_addr(dst) &&
1163 !compare_ether_addr(src, dev->dev_addr)))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001164 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001165 break;
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001166 case __constant_cpu_to_le16(0):
Johannes Berg05c914f2008-09-11 00:01:58 +02001167 if (sdata->vif.type != NL80211_IFTYPE_ADHOC)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001168 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001169 break;
1170 }
1171
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001172 if (unlikely(skb->len - hdrlen < 8))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001173 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001174
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001175 payload = skb->data + hdrlen;
Johannes Berg571ecf62007-07-27 15:43:22 +02001176 ethertype = (payload[6] << 8) | payload[7];
1177
1178 if (likely((compare_ether_addr(payload, rfc1042_header) == 0 &&
1179 ethertype != ETH_P_AARP && ethertype != ETH_P_IPX) ||
1180 compare_ether_addr(payload, bridge_tunnel_header) == 0)) {
1181 /* remove RFC1042 or Bridge-Tunnel encapsulation and
1182 * replace EtherType */
1183 skb_pull(skb, hdrlen + 6);
1184 memcpy(skb_push(skb, ETH_ALEN), src, ETH_ALEN);
1185 memcpy(skb_push(skb, ETH_ALEN), dst, ETH_ALEN);
1186 } else {
1187 struct ethhdr *ehdr;
1188 __be16 len;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001189
Johannes Berg571ecf62007-07-27 15:43:22 +02001190 skb_pull(skb, hdrlen);
1191 len = htons(skb->len);
1192 ehdr = (struct ethhdr *) skb_push(skb, sizeof(struct ethhdr));
1193 memcpy(ehdr->h_dest, dst, ETH_ALEN);
1194 memcpy(ehdr->h_source, src, ETH_ALEN);
1195 ehdr->h_proto = len;
1196 }
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001197 return 0;
1198}
Johannes Berg571ecf62007-07-27 15:43:22 +02001199
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001200/*
1201 * requires that rx->skb is a frame with ethernet header
1202 */
Harvey Harrison358c8d92008-07-15 18:44:13 -07001203static bool ieee80211_frame_allowed(struct ieee80211_rx_data *rx, __le16 fc)
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001204{
Senthil Balasubramanianc97c23e2008-05-28 23:15:32 +05301205 static const u8 pae_group_addr[ETH_ALEN] __aligned(2)
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001206 = { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x03 };
1207 struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
1208
1209 /*
1210 * Allow EAPOL frames to us/the PAE group address regardless
1211 * of whether the frame was encrypted or not.
1212 */
1213 if (ehdr->h_proto == htons(ETH_P_PAE) &&
1214 (compare_ether_addr(ehdr->h_dest, rx->dev->dev_addr) == 0 ||
1215 compare_ether_addr(ehdr->h_dest, pae_group_addr) == 0))
1216 return true;
1217
1218 if (ieee80211_802_1x_port_control(rx) ||
Harvey Harrison358c8d92008-07-15 18:44:13 -07001219 ieee80211_drop_unencrypted(rx, fc))
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001220 return false;
1221
1222 return true;
1223}
1224
1225/*
1226 * requires that rx->skb is a frame with ethernet header
1227 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001228static void
Johannes Berg5cf121c2008-02-25 16:27:43 +01001229ieee80211_deliver_skb(struct ieee80211_rx_data *rx)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001230{
1231 struct net_device *dev = rx->dev;
1232 struct ieee80211_local *local = rx->local;
1233 struct sk_buff *skb, *xmit_skb;
1234 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001235 struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
1236 struct sta_info *dsta;
Johannes Berg571ecf62007-07-27 15:43:22 +02001237
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001238 skb = rx->skb;
1239 xmit_skb = NULL;
Johannes Berg571ecf62007-07-27 15:43:22 +02001240
Johannes Berg05c914f2008-09-11 00:01:58 +02001241 if ((sdata->vif.type == NL80211_IFTYPE_AP ||
1242 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
Johannes Berg213cd112008-09-11 00:01:54 +02001243 !(sdata->flags & IEEE80211_SDATA_DONT_BRIDGE_PACKETS) &&
Johannes Berg5cf121c2008-02-25 16:27:43 +01001244 (rx->flags & IEEE80211_RX_RA_MATCH)) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001245 if (is_multicast_ether_addr(ehdr->h_dest)) {
1246 /*
1247 * send multicast frames both to higher layers in
1248 * local net stack and back to the wireless medium
1249 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001250 xmit_skb = skb_copy(skb, GFP_ATOMIC);
1251 if (!xmit_skb && net_ratelimit())
Johannes Berg571ecf62007-07-27 15:43:22 +02001252 printk(KERN_DEBUG "%s: failed to clone "
1253 "multicast frame\n", dev->name);
1254 } else {
Johannes Berg571ecf62007-07-27 15:43:22 +02001255 dsta = sta_info_get(local, skb->data);
Johannes Bergd0709a62008-02-25 16:27:46 +01001256 if (dsta && dsta->sdata->dev == dev) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001257 /*
1258 * The destination station is associated to
1259 * this AP (in this VLAN), so send the frame
1260 * directly to it and do not pass it to local
1261 * net stack.
Johannes Berg571ecf62007-07-27 15:43:22 +02001262 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001263 xmit_skb = skb;
Johannes Berg571ecf62007-07-27 15:43:22 +02001264 skb = NULL;
1265 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001266 }
1267 }
1268
1269 if (skb) {
1270 /* deliver to local stack */
1271 skb->protocol = eth_type_trans(skb, dev);
1272 memset(skb->cb, 0, sizeof(skb->cb));
1273 netif_rx(skb);
1274 }
1275
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001276 if (xmit_skb) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001277 /* send to wireless media */
YOSHIFUJI Hideakif831e902007-12-12 03:54:23 +09001278 xmit_skb->protocol = htons(ETH_P_802_3);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001279 skb_reset_network_header(xmit_skb);
1280 skb_reset_mac_header(xmit_skb);
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001281 dev_queue_xmit(xmit_skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02001282 }
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001283}
1284
Johannes Berg49461622008-06-30 15:10:45 +02001285static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001286ieee80211_rx_h_amsdu(struct ieee80211_rx_data *rx)
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001287{
1288 struct net_device *dev = rx->dev;
1289 struct ieee80211_local *local = rx->local;
Harvey Harrison358c8d92008-07-15 18:44:13 -07001290 u16 ethertype;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001291 u8 *payload;
1292 struct sk_buff *skb = rx->skb, *frame = NULL;
Harvey Harrison358c8d92008-07-15 18:44:13 -07001293 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1294 __le16 fc = hdr->frame_control;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001295 const struct ethhdr *eth;
1296 int remaining, err;
1297 u8 dst[ETH_ALEN];
1298 u8 src[ETH_ALEN];
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001299
Harvey Harrison358c8d92008-07-15 18:44:13 -07001300 if (unlikely(!ieee80211_is_data(fc)))
Johannes Berg9ae54c82008-01-31 19:48:20 +01001301 return RX_CONTINUE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001302
Harvey Harrison358c8d92008-07-15 18:44:13 -07001303 if (unlikely(!ieee80211_is_data_present(fc)))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001304 return RX_DROP_MONITOR;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001305
Johannes Berg5cf121c2008-02-25 16:27:43 +01001306 if (!(rx->flags & IEEE80211_RX_AMSDU))
Johannes Berg9ae54c82008-01-31 19:48:20 +01001307 return RX_CONTINUE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001308
1309 err = ieee80211_data_to_8023(rx);
1310 if (unlikely(err))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001311 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001312
1313 skb->dev = dev;
1314
1315 dev->stats.rx_packets++;
1316 dev->stats.rx_bytes += skb->len;
1317
1318 /* skip the wrapping header */
1319 eth = (struct ethhdr *) skb_pull(skb, sizeof(struct ethhdr));
1320 if (!eth)
Johannes Berge4c26ad2008-01-31 19:48:21 +01001321 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001322
1323 while (skb != frame) {
1324 u8 padding;
1325 __be16 len = eth->h_proto;
1326 unsigned int subframe_len = sizeof(struct ethhdr) + ntohs(len);
1327
1328 remaining = skb->len;
1329 memcpy(dst, eth->h_dest, ETH_ALEN);
1330 memcpy(src, eth->h_source, ETH_ALEN);
1331
1332 padding = ((4 - subframe_len) & 0x3);
1333 /* the last MSDU has no padding */
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001334 if (subframe_len > remaining)
Johannes Berge4c26ad2008-01-31 19:48:21 +01001335 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001336
1337 skb_pull(skb, sizeof(struct ethhdr));
1338 /* if last subframe reuse skb */
1339 if (remaining <= subframe_len + padding)
1340 frame = skb;
1341 else {
1342 frame = dev_alloc_skb(local->hw.extra_tx_headroom +
1343 subframe_len);
1344
1345 if (frame == NULL)
Johannes Berge4c26ad2008-01-31 19:48:21 +01001346 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001347
1348 skb_reserve(frame, local->hw.extra_tx_headroom +
1349 sizeof(struct ethhdr));
1350 memcpy(skb_put(frame, ntohs(len)), skb->data,
1351 ntohs(len));
1352
1353 eth = (struct ethhdr *) skb_pull(skb, ntohs(len) +
1354 padding);
1355 if (!eth) {
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001356 dev_kfree_skb(frame);
Johannes Berge4c26ad2008-01-31 19:48:21 +01001357 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001358 }
1359 }
1360
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001361 skb_reset_network_header(frame);
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001362 frame->dev = dev;
1363 frame->priority = skb->priority;
1364 rx->skb = frame;
1365
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001366 payload = frame->data;
1367 ethertype = (payload[6] << 8) | payload[7];
1368
1369 if (likely((compare_ether_addr(payload, rfc1042_header) == 0 &&
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001370 ethertype != ETH_P_AARP && ethertype != ETH_P_IPX) ||
1371 compare_ether_addr(payload,
1372 bridge_tunnel_header) == 0)) {
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001373 /* remove RFC1042 or Bridge-Tunnel
1374 * encapsulation and replace EtherType */
1375 skb_pull(frame, 6);
1376 memcpy(skb_push(frame, ETH_ALEN), src, ETH_ALEN);
1377 memcpy(skb_push(frame, ETH_ALEN), dst, ETH_ALEN);
1378 } else {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001379 memcpy(skb_push(frame, sizeof(__be16)),
1380 &len, sizeof(__be16));
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001381 memcpy(skb_push(frame, ETH_ALEN), src, ETH_ALEN);
1382 memcpy(skb_push(frame, ETH_ALEN), dst, ETH_ALEN);
1383 }
1384
Harvey Harrison358c8d92008-07-15 18:44:13 -07001385 if (!ieee80211_frame_allowed(rx, fc)) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001386 if (skb == frame) /* last frame */
Johannes Berge4c26ad2008-01-31 19:48:21 +01001387 return RX_DROP_UNUSABLE;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001388 dev_kfree_skb(frame);
1389 continue;
1390 }
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001391
1392 ieee80211_deliver_skb(rx);
1393 }
1394
Johannes Berg9ae54c82008-01-31 19:48:20 +01001395 return RX_QUEUED;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001396}
1397
Ingo Molnarbf94e172008-10-12 23:51:38 -07001398#ifdef CONFIG_MAC80211_MESH
Davide Pesaventob0dee572008-09-27 17:29:12 +02001399static ieee80211_rx_result
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001400ieee80211_rx_h_mesh_fwding(struct ieee80211_rx_data *rx)
1401{
1402 struct ieee80211_hdr *hdr;
1403 struct ieee80211s_hdr *mesh_hdr;
1404 unsigned int hdrlen;
1405 struct sk_buff *skb = rx->skb, *fwd_skb;
1406
1407 hdr = (struct ieee80211_hdr *) skb->data;
1408 hdrlen = ieee80211_hdrlen(hdr->frame_control);
1409 mesh_hdr = (struct ieee80211s_hdr *) (skb->data + hdrlen);
1410
1411 if (!ieee80211_is_data(hdr->frame_control))
1412 return RX_CONTINUE;
1413
1414 if (!mesh_hdr->ttl)
1415 /* illegal frame */
1416 return RX_DROP_MONITOR;
1417
YanBo79617de2008-09-22 13:30:32 +08001418 if (mesh_hdr->flags & MESH_FLAGS_AE_A5_A6){
1419 struct ieee80211_sub_if_data *sdata;
1420 struct mesh_path *mppath;
1421
1422 sdata = IEEE80211_DEV_TO_SUB_IF(rx->dev);
1423 rcu_read_lock();
1424 mppath = mpp_path_lookup(mesh_hdr->eaddr2, sdata);
1425 if (!mppath) {
1426 mpp_path_add(mesh_hdr->eaddr2, hdr->addr4, sdata);
1427 } else {
1428 spin_lock_bh(&mppath->state_lock);
1429 mppath->exp_time = jiffies;
1430 if (compare_ether_addr(mppath->mpp, hdr->addr4) != 0)
1431 memcpy(mppath->mpp, hdr->addr4, ETH_ALEN);
1432 spin_unlock_bh(&mppath->state_lock);
1433 }
1434 rcu_read_unlock();
1435 }
1436
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001437 if (compare_ether_addr(rx->dev->dev_addr, hdr->addr3) == 0)
1438 return RX_CONTINUE;
1439
1440 mesh_hdr->ttl--;
1441
1442 if (rx->flags & IEEE80211_RX_RA_MATCH) {
1443 if (!mesh_hdr->ttl)
Johannes Berg472dbc42008-09-11 00:01:49 +02001444 IEEE80211_IFSTA_MESH_CTR_INC(&rx->sdata->u.mesh,
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001445 dropped_frames_ttl);
1446 else {
1447 struct ieee80211_hdr *fwd_hdr;
1448 fwd_skb = skb_copy(skb, GFP_ATOMIC);
1449
1450 if (!fwd_skb && net_ratelimit())
1451 printk(KERN_DEBUG "%s: failed to clone mesh frame\n",
1452 rx->dev->name);
1453
1454 fwd_hdr = (struct ieee80211_hdr *) fwd_skb->data;
1455 /*
1456 * Save TA to addr1 to send TA a path error if a
1457 * suitable next hop is not found
1458 */
1459 memcpy(fwd_hdr->addr1, fwd_hdr->addr2, ETH_ALEN);
1460 memcpy(fwd_hdr->addr2, rx->dev->dev_addr, ETH_ALEN);
1461 fwd_skb->dev = rx->local->mdev;
1462 fwd_skb->iif = rx->dev->ifindex;
1463 dev_queue_xmit(fwd_skb);
1464 }
1465 }
1466
1467 if (is_multicast_ether_addr(hdr->addr3) ||
1468 rx->dev->flags & IFF_PROMISC)
1469 return RX_CONTINUE;
1470 else
1471 return RX_DROP_MONITOR;
1472}
Ingo Molnarbf94e172008-10-12 23:51:38 -07001473#endif
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001474
1475static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001476ieee80211_rx_h_data(struct ieee80211_rx_data *rx)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001477{
1478 struct net_device *dev = rx->dev;
Harvey Harrison358c8d92008-07-15 18:44:13 -07001479 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
1480 __le16 fc = hdr->frame_control;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001481 int err;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001482
Harvey Harrison358c8d92008-07-15 18:44:13 -07001483 if (unlikely(!ieee80211_is_data(hdr->frame_control)))
Johannes Berg9ae54c82008-01-31 19:48:20 +01001484 return RX_CONTINUE;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001485
Harvey Harrison358c8d92008-07-15 18:44:13 -07001486 if (unlikely(!ieee80211_is_data_present(hdr->frame_control)))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001487 return RX_DROP_MONITOR;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001488
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001489 err = ieee80211_data_to_8023(rx);
1490 if (unlikely(err))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001491 return RX_DROP_UNUSABLE;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001492
Harvey Harrison358c8d92008-07-15 18:44:13 -07001493 if (!ieee80211_frame_allowed(rx, fc))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001494 return RX_DROP_MONITOR;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001495
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001496 rx->skb->dev = dev;
1497
1498 dev->stats.rx_packets++;
1499 dev->stats.rx_bytes += rx->skb->len;
1500
1501 ieee80211_deliver_skb(rx);
Johannes Berg571ecf62007-07-27 15:43:22 +02001502
Johannes Berg9ae54c82008-01-31 19:48:20 +01001503 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001504}
1505
Johannes Berg49461622008-06-30 15:10:45 +02001506static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001507ieee80211_rx_h_ctrl(struct ieee80211_rx_data *rx)
Ron Rindjunsky71364712007-12-25 17:00:36 +02001508{
1509 struct ieee80211_local *local = rx->local;
1510 struct ieee80211_hw *hw = &local->hw;
1511 struct sk_buff *skb = rx->skb;
Harvey Harrisona7767f92008-07-02 16:30:51 -07001512 struct ieee80211_bar *bar = (struct ieee80211_bar *)skb->data;
Ron Rindjunsky71364712007-12-25 17:00:36 +02001513 struct tid_ampdu_rx *tid_agg_rx;
1514 u16 start_seq_num;
1515 u16 tid;
1516
Harvey Harrisona7767f92008-07-02 16:30:51 -07001517 if (likely(!ieee80211_is_ctl(bar->frame_control)))
Johannes Berg9ae54c82008-01-31 19:48:20 +01001518 return RX_CONTINUE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02001519
Harvey Harrisona7767f92008-07-02 16:30:51 -07001520 if (ieee80211_is_back_req(bar->frame_control)) {
Ron Rindjunsky71364712007-12-25 17:00:36 +02001521 if (!rx->sta)
Johannes Berg9ae54c82008-01-31 19:48:20 +01001522 return RX_CONTINUE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02001523 tid = le16_to_cpu(bar->control) >> 12;
Ron Rindjunskycee24a32008-03-26 20:36:03 +02001524 if (rx->sta->ampdu_mlme.tid_state_rx[tid]
1525 != HT_AGG_STATE_OPERATIONAL)
Johannes Berg9ae54c82008-01-31 19:48:20 +01001526 return RX_CONTINUE;
Ron Rindjunskycee24a32008-03-26 20:36:03 +02001527 tid_agg_rx = rx->sta->ampdu_mlme.tid_rx[tid];
Ron Rindjunsky71364712007-12-25 17:00:36 +02001528
1529 start_seq_num = le16_to_cpu(bar->start_seq_num) >> 4;
1530
1531 /* reset session timer */
1532 if (tid_agg_rx->timeout) {
1533 unsigned long expires =
1534 jiffies + (tid_agg_rx->timeout / 1000) * HZ;
1535 mod_timer(&tid_agg_rx->session_timer, expires);
1536 }
1537
1538 /* manage reordering buffer according to requested */
1539 /* sequence number */
1540 rcu_read_lock();
1541 ieee80211_sta_manage_reorder_buf(hw, tid_agg_rx, NULL,
1542 start_seq_num, 1);
1543 rcu_read_unlock();
Johannes Berge4c26ad2008-01-31 19:48:21 +01001544 return RX_DROP_UNUSABLE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02001545 }
1546
Johannes Berg9ae54c82008-01-31 19:48:20 +01001547 return RX_CONTINUE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02001548}
1549
Johannes Berg49461622008-06-30 15:10:45 +02001550static ieee80211_rx_result debug_noinline
Johannes Bergde1ede7a2008-09-09 14:42:50 +02001551ieee80211_rx_h_action(struct ieee80211_rx_data *rx)
1552{
1553 struct ieee80211_local *local = rx->local;
1554 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(rx->dev);
Sujithc481ec92009-01-06 09:28:37 +05301555 struct ieee80211_if_sta *ifsta = &sdata->u.sta;
Johannes Bergde1ede7a2008-09-09 14:42:50 +02001556 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data;
Sujithc481ec92009-01-06 09:28:37 +05301557 struct ieee80211_bss *bss;
Johannes Bergde1ede7a2008-09-09 14:42:50 +02001558 int len = rx->skb->len;
1559
1560 if (!ieee80211_is_action(mgmt->frame_control))
1561 return RX_CONTINUE;
1562
1563 if (!rx->sta)
1564 return RX_DROP_MONITOR;
1565
1566 if (!(rx->flags & IEEE80211_RX_RA_MATCH))
1567 return RX_DROP_MONITOR;
1568
1569 /* all categories we currently handle have action_code */
1570 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
1571 return RX_DROP_MONITOR;
1572
Johannes Bergde1ede7a2008-09-09 14:42:50 +02001573 switch (mgmt->u.action.category) {
1574 case WLAN_CATEGORY_BACK:
1575 switch (mgmt->u.action.u.addba_req.action_code) {
1576 case WLAN_ACTION_ADDBA_REQ:
1577 if (len < (IEEE80211_MIN_ACTION_SIZE +
1578 sizeof(mgmt->u.action.u.addba_req)))
1579 return RX_DROP_MONITOR;
1580 ieee80211_process_addba_request(local, rx->sta, mgmt, len);
1581 break;
1582 case WLAN_ACTION_ADDBA_RESP:
1583 if (len < (IEEE80211_MIN_ACTION_SIZE +
1584 sizeof(mgmt->u.action.u.addba_resp)))
1585 return RX_DROP_MONITOR;
1586 ieee80211_process_addba_resp(local, rx->sta, mgmt, len);
1587 break;
1588 case WLAN_ACTION_DELBA:
1589 if (len < (IEEE80211_MIN_ACTION_SIZE +
1590 sizeof(mgmt->u.action.u.delba)))
1591 return RX_DROP_MONITOR;
1592 ieee80211_process_delba(sdata, rx->sta, mgmt, len);
1593 break;
1594 }
Johannes Berg39192c02008-09-09 14:49:03 +02001595 break;
1596 case WLAN_CATEGORY_SPECTRUM_MGMT:
1597 if (local->hw.conf.channel->band != IEEE80211_BAND_5GHZ)
1598 return RX_DROP_MONITOR;
1599 switch (mgmt->u.action.u.measurement.action_code) {
1600 case WLAN_ACTION_SPCT_MSR_REQ:
1601 if (len < (IEEE80211_MIN_ACTION_SIZE +
1602 sizeof(mgmt->u.action.u.measurement)))
1603 return RX_DROP_MONITOR;
1604 ieee80211_process_measurement_req(sdata, mgmt, len);
1605 break;
Sujithc481ec92009-01-06 09:28:37 +05301606 case WLAN_ACTION_SPCT_CHL_SWITCH:
1607 if (len < (IEEE80211_MIN_ACTION_SIZE +
1608 sizeof(mgmt->u.action.u.chan_switch)))
1609 return RX_DROP_MONITOR;
1610
1611 if (memcmp(mgmt->bssid, ifsta->bssid, ETH_ALEN) != 0)
1612 return RX_DROP_MONITOR;
1613
1614 bss = ieee80211_rx_bss_get(local, ifsta->bssid,
1615 local->hw.conf.channel->center_freq,
1616 ifsta->ssid, ifsta->ssid_len);
1617 if (!bss)
1618 return RX_DROP_MONITOR;
1619
1620 ieee80211_process_chanswitch(sdata,
1621 &mgmt->u.action.u.chan_switch.sw_elem, bss);
1622 ieee80211_rx_bss_put(local, bss);
1623 break;
Johannes Berg39192c02008-09-09 14:49:03 +02001624 }
1625 break;
1626 default:
1627 return RX_CONTINUE;
Johannes Bergde1ede7a2008-09-09 14:42:50 +02001628 }
1629
Johannes Berg39192c02008-09-09 14:49:03 +02001630 rx->sta->rx_packets++;
1631 dev_kfree_skb(rx->skb);
1632 return RX_QUEUED;
Johannes Bergde1ede7a2008-09-09 14:42:50 +02001633}
1634
1635static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001636ieee80211_rx_h_mgmt(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001637{
Johannes Berg759ef3e2008-09-09 14:55:09 +02001638 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(rx->dev);
Johannes Berg571ecf62007-07-27 15:43:22 +02001639
Johannes Berg5cf121c2008-02-25 16:27:43 +01001640 if (!(rx->flags & IEEE80211_RX_RA_MATCH))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001641 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +02001642
Johannes Berg472dbc42008-09-11 00:01:49 +02001643 if (ieee80211_vif_is_mesh(&sdata->vif))
1644 return ieee80211_mesh_rx_mgmt(sdata, rx->skb, rx->status);
1645
Johannes Berg05c914f2008-09-11 00:01:58 +02001646 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
1647 sdata->vif.type != NL80211_IFTYPE_ADHOC)
Johannes Berge4c26ad2008-01-31 19:48:21 +01001648 return RX_DROP_MONITOR;
Johannes Bergf9d540e2007-09-28 14:02:09 +02001649
Johannes Berg759ef3e2008-09-09 14:55:09 +02001650 if (sdata->flags & IEEE80211_SDATA_USERSPACE_MLME)
1651 return RX_DROP_MONITOR;
1652
1653 ieee80211_sta_rx_mgmt(sdata, rx->skb, rx->status);
Johannes Berg9ae54c82008-01-31 19:48:20 +01001654 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001655}
1656
Johannes Berg571ecf62007-07-27 15:43:22 +02001657static void ieee80211_rx_michael_mic_report(struct net_device *dev,
1658 struct ieee80211_hdr *hdr,
Johannes Berg5cf121c2008-02-25 16:27:43 +01001659 struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001660{
Harvey Harrisona7767f92008-07-02 16:30:51 -07001661 int keyidx;
1662 unsigned int hdrlen;
Johannes Berg571ecf62007-07-27 15:43:22 +02001663
Harvey Harrisona7767f92008-07-02 16:30:51 -07001664 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berg571ecf62007-07-27 15:43:22 +02001665 if (rx->skb->len >= hdrlen + 4)
1666 keyidx = rx->skb->data[hdrlen + 3] >> 6;
1667 else
1668 keyidx = -1;
1669
Johannes Berg8944b792008-01-31 19:48:26 +01001670 if (!rx->sta) {
Johannes Bergaa0daf02007-09-10 14:15:25 +02001671 /*
1672 * Some hardware seem to generate incorrect Michael MIC
1673 * reports; ignore them to avoid triggering countermeasures.
1674 */
Johannes Berg571ecf62007-07-27 15:43:22 +02001675 goto ignore;
1676 }
1677
Harvey Harrisona7767f92008-07-02 16:30:51 -07001678 if (!ieee80211_has_protected(hdr->frame_control))
Johannes Berg571ecf62007-07-27 15:43:22 +02001679 goto ignore;
Johannes Berg571ecf62007-07-27 15:43:22 +02001680
Johannes Berg05c914f2008-09-11 00:01:58 +02001681 if (rx->sdata->vif.type == NL80211_IFTYPE_AP && keyidx) {
Johannes Bergaa0daf02007-09-10 14:15:25 +02001682 /*
1683 * APs with pairwise keys should never receive Michael MIC
1684 * errors for non-zero keyidx because these are reserved for
1685 * group keys and only the AP is sending real multicast
1686 * frames in the BSS.
1687 */
Johannes Bergeb063c12007-08-28 17:01:53 -04001688 goto ignore;
Johannes Berg571ecf62007-07-27 15:43:22 +02001689 }
1690
Harvey Harrisona7767f92008-07-02 16:30:51 -07001691 if (!ieee80211_is_data(hdr->frame_control) &&
1692 !ieee80211_is_auth(hdr->frame_control))
Johannes Berg571ecf62007-07-27 15:43:22 +02001693 goto ignore;
Johannes Berg571ecf62007-07-27 15:43:22 +02001694
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001695 mac80211_ev_michael_mic_failure(rx->sdata, keyidx, hdr);
Johannes Berg571ecf62007-07-27 15:43:22 +02001696 ignore:
1697 dev_kfree_skb(rx->skb);
1698 rx->skb = NULL;
1699}
1700
Johannes Berg5cf121c2008-02-25 16:27:43 +01001701/* TODO: use IEEE80211_RX_FRAGMENTED */
1702static void ieee80211_rx_cooked_monitor(struct ieee80211_rx_data *rx)
Michael Wu3d30d942008-01-31 19:48:27 +01001703{
1704 struct ieee80211_sub_if_data *sdata;
1705 struct ieee80211_local *local = rx->local;
1706 struct ieee80211_rtap_hdr {
1707 struct ieee80211_radiotap_header hdr;
1708 u8 flags;
1709 u8 rate;
1710 __le16 chan_freq;
1711 __le16 chan_flags;
1712 } __attribute__ ((packed)) *rthdr;
1713 struct sk_buff *skb = rx->skb, *skb2;
1714 struct net_device *prev_dev = NULL;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001715 struct ieee80211_rx_status *status = rx->status;
Michael Wu3d30d942008-01-31 19:48:27 +01001716
Johannes Berg5cf121c2008-02-25 16:27:43 +01001717 if (rx->flags & IEEE80211_RX_CMNTR_REPORTED)
Michael Wu3d30d942008-01-31 19:48:27 +01001718 goto out_free_skb;
1719
1720 if (skb_headroom(skb) < sizeof(*rthdr) &&
1721 pskb_expand_head(skb, sizeof(*rthdr), 0, GFP_ATOMIC))
1722 goto out_free_skb;
1723
1724 rthdr = (void *)skb_push(skb, sizeof(*rthdr));
1725 memset(rthdr, 0, sizeof(*rthdr));
1726 rthdr->hdr.it_len = cpu_to_le16(sizeof(*rthdr));
1727 rthdr->hdr.it_present =
1728 cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
1729 (1 << IEEE80211_RADIOTAP_RATE) |
1730 (1 << IEEE80211_RADIOTAP_CHANNEL));
1731
Johannes Berg5cf121c2008-02-25 16:27:43 +01001732 rthdr->rate = rx->rate->bitrate / 5;
Michael Wu3d30d942008-01-31 19:48:27 +01001733 rthdr->chan_freq = cpu_to_le16(status->freq);
1734
1735 if (status->band == IEEE80211_BAND_5GHZ)
1736 rthdr->chan_flags = cpu_to_le16(IEEE80211_CHAN_OFDM |
1737 IEEE80211_CHAN_5GHZ);
1738 else
1739 rthdr->chan_flags = cpu_to_le16(IEEE80211_CHAN_DYN |
1740 IEEE80211_CHAN_2GHZ);
1741
1742 skb_set_mac_header(skb, 0);
1743 skb->ip_summed = CHECKSUM_UNNECESSARY;
1744 skb->pkt_type = PACKET_OTHERHOST;
1745 skb->protocol = htons(ETH_P_802_2);
1746
1747 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
1748 if (!netif_running(sdata->dev))
1749 continue;
1750
Johannes Berg05c914f2008-09-11 00:01:58 +02001751 if (sdata->vif.type != NL80211_IFTYPE_MONITOR ||
Michael Wu3d30d942008-01-31 19:48:27 +01001752 !(sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES))
1753 continue;
1754
1755 if (prev_dev) {
1756 skb2 = skb_clone(skb, GFP_ATOMIC);
1757 if (skb2) {
1758 skb2->dev = prev_dev;
1759 netif_rx(skb2);
1760 }
1761 }
1762
1763 prev_dev = sdata->dev;
1764 sdata->dev->stats.rx_packets++;
1765 sdata->dev->stats.rx_bytes += skb->len;
1766 }
1767
1768 if (prev_dev) {
1769 skb->dev = prev_dev;
1770 netif_rx(skb);
1771 skb = NULL;
1772 } else
1773 goto out_free_skb;
1774
Johannes Berg5cf121c2008-02-25 16:27:43 +01001775 rx->flags |= IEEE80211_RX_CMNTR_REPORTED;
Michael Wu3d30d942008-01-31 19:48:27 +01001776 return;
1777
1778 out_free_skb:
1779 dev_kfree_skb(skb);
1780}
1781
Johannes Berg571ecf62007-07-27 15:43:22 +02001782
Johannes Berg8944b792008-01-31 19:48:26 +01001783static void ieee80211_invoke_rx_handlers(struct ieee80211_sub_if_data *sdata,
Johannes Berg5cf121c2008-02-25 16:27:43 +01001784 struct ieee80211_rx_data *rx,
Johannes Berg8944b792008-01-31 19:48:26 +01001785 struct sk_buff *skb)
Johannes Berg58905292008-01-31 19:48:25 +01001786{
Johannes Berg58905292008-01-31 19:48:25 +01001787 ieee80211_rx_result res = RX_DROP_MONITOR;
1788
Johannes Berg8944b792008-01-31 19:48:26 +01001789 rx->skb = skb;
1790 rx->sdata = sdata;
1791 rx->dev = sdata->dev;
1792
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001793#define CALL_RXH(rxh) \
1794 do { \
1795 res = rxh(rx); \
1796 if (res != RX_CONTINUE) \
1797 goto rxh_done; \
1798 } while (0);
Johannes Berg58905292008-01-31 19:48:25 +01001799
Johannes Berg49461622008-06-30 15:10:45 +02001800 CALL_RXH(ieee80211_rx_h_passive_scan)
1801 CALL_RXH(ieee80211_rx_h_check)
1802 CALL_RXH(ieee80211_rx_h_decrypt)
1803 CALL_RXH(ieee80211_rx_h_sta_process)
1804 CALL_RXH(ieee80211_rx_h_defragment)
1805 CALL_RXH(ieee80211_rx_h_ps_poll)
1806 CALL_RXH(ieee80211_rx_h_michael_mic_verify)
1807 /* must be after MMIC verify so header is counted in MPDU mic */
1808 CALL_RXH(ieee80211_rx_h_remove_qos_control)
1809 CALL_RXH(ieee80211_rx_h_amsdu)
Ingo Molnarbf94e172008-10-12 23:51:38 -07001810#ifdef CONFIG_MAC80211_MESH
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001811 if (ieee80211_vif_is_mesh(&sdata->vif))
1812 CALL_RXH(ieee80211_rx_h_mesh_fwding);
Ingo Molnarbf94e172008-10-12 23:51:38 -07001813#endif
Johannes Berg49461622008-06-30 15:10:45 +02001814 CALL_RXH(ieee80211_rx_h_data)
1815 CALL_RXH(ieee80211_rx_h_ctrl)
Johannes Bergde1ede7a2008-09-09 14:42:50 +02001816 CALL_RXH(ieee80211_rx_h_action)
Johannes Berg49461622008-06-30 15:10:45 +02001817 CALL_RXH(ieee80211_rx_h_mgmt)
Johannes Berg58905292008-01-31 19:48:25 +01001818
Johannes Berg49461622008-06-30 15:10:45 +02001819#undef CALL_RXH
1820
1821 rxh_done:
Johannes Berg58905292008-01-31 19:48:25 +01001822 switch (res) {
Michael Wu3d30d942008-01-31 19:48:27 +01001823 case RX_DROP_MONITOR:
Johannes Berg49461622008-06-30 15:10:45 +02001824 I802_DEBUG_INC(sdata->local->rx_handlers_drop);
1825 if (rx->sta)
1826 rx->sta->rx_dropped++;
1827 /* fall through */
1828 case RX_CONTINUE:
Michael Wu3d30d942008-01-31 19:48:27 +01001829 ieee80211_rx_cooked_monitor(rx);
1830 break;
1831 case RX_DROP_UNUSABLE:
Johannes Berg49461622008-06-30 15:10:45 +02001832 I802_DEBUG_INC(sdata->local->rx_handlers_drop);
1833 if (rx->sta)
1834 rx->sta->rx_dropped++;
Johannes Berg58905292008-01-31 19:48:25 +01001835 dev_kfree_skb(rx->skb);
1836 break;
Johannes Berg49461622008-06-30 15:10:45 +02001837 case RX_QUEUED:
1838 I802_DEBUG_INC(sdata->local->rx_handlers_queued);
1839 break;
Johannes Berg58905292008-01-31 19:48:25 +01001840 }
1841}
1842
Johannes Berg571ecf62007-07-27 15:43:22 +02001843/* main receive path */
1844
Johannes Berg23a24de2007-07-27 15:43:22 +02001845static int prepare_for_handlers(struct ieee80211_sub_if_data *sdata,
Johannes Berg5cf121c2008-02-25 16:27:43 +01001846 u8 *bssid, struct ieee80211_rx_data *rx,
Johannes Berg23a24de2007-07-27 15:43:22 +02001847 struct ieee80211_hdr *hdr)
1848{
1849 int multicast = is_multicast_ether_addr(hdr->addr1);
1850
Johannes Berg51fb61e2007-12-19 01:31:27 +01001851 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02001852 case NL80211_IFTYPE_STATION:
Johannes Berg23a24de2007-07-27 15:43:22 +02001853 if (!bssid)
1854 return 0;
1855 if (!ieee80211_bssid_match(bssid, sdata->u.sta.bssid)) {
Johannes Berg5cf121c2008-02-25 16:27:43 +01001856 if (!(rx->flags & IEEE80211_RX_IN_SCAN))
Johannes Berg23a24de2007-07-27 15:43:22 +02001857 return 0;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001858 rx->flags &= ~IEEE80211_RX_RA_MATCH;
Johannes Berg23a24de2007-07-27 15:43:22 +02001859 } else if (!multicast &&
1860 compare_ether_addr(sdata->dev->dev_addr,
1861 hdr->addr1) != 0) {
Johannes Berg4150c572007-09-17 01:29:23 -04001862 if (!(sdata->dev->flags & IFF_PROMISC))
Johannes Berg23a24de2007-07-27 15:43:22 +02001863 return 0;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001864 rx->flags &= ~IEEE80211_RX_RA_MATCH;
Johannes Berg23a24de2007-07-27 15:43:22 +02001865 }
1866 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001867 case NL80211_IFTYPE_ADHOC:
Johannes Berg23a24de2007-07-27 15:43:22 +02001868 if (!bssid)
1869 return 0;
Harvey Harrisona7767f92008-07-02 16:30:51 -07001870 if (ieee80211_is_beacon(hdr->frame_control)) {
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001871 return 1;
Vladimir Koutny87291c02008-06-13 16:50:44 +02001872 }
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001873 else if (!ieee80211_bssid_match(bssid, sdata->u.sta.bssid)) {
Johannes Berg5cf121c2008-02-25 16:27:43 +01001874 if (!(rx->flags & IEEE80211_RX_IN_SCAN))
Johannes Berg23a24de2007-07-27 15:43:22 +02001875 return 0;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001876 rx->flags &= ~IEEE80211_RX_RA_MATCH;
Johannes Berg23a24de2007-07-27 15:43:22 +02001877 } else if (!multicast &&
1878 compare_ether_addr(sdata->dev->dev_addr,
1879 hdr->addr1) != 0) {
Johannes Berg4150c572007-09-17 01:29:23 -04001880 if (!(sdata->dev->flags & IFF_PROMISC))
Johannes Berg23a24de2007-07-27 15:43:22 +02001881 return 0;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001882 rx->flags &= ~IEEE80211_RX_RA_MATCH;
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02001883 } else if (!rx->sta) {
1884 int rate_idx;
1885 if (rx->status->flag & RX_FLAG_HT)
1886 rate_idx = 0; /* TODO: HT rates */
1887 else
1888 rate_idx = rx->status->rate_idx;
Rami Rosenab1f5c02008-12-11 14:00:25 +02001889 rx->sta = ieee80211_ibss_add_sta(sdata, bssid, hdr->addr2,
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02001890 BIT(rate_idx));
1891 }
Johannes Berg23a24de2007-07-27 15:43:22 +02001892 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001893 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg6032f932008-02-23 15:17:07 +01001894 if (!multicast &&
1895 compare_ether_addr(sdata->dev->dev_addr,
1896 hdr->addr1) != 0) {
1897 if (!(sdata->dev->flags & IFF_PROMISC))
1898 return 0;
1899
Johannes Berg5cf121c2008-02-25 16:27:43 +01001900 rx->flags &= ~IEEE80211_RX_RA_MATCH;
Johannes Berg6032f932008-02-23 15:17:07 +01001901 }
1902 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001903 case NL80211_IFTYPE_AP_VLAN:
1904 case NL80211_IFTYPE_AP:
Johannes Berg23a24de2007-07-27 15:43:22 +02001905 if (!bssid) {
1906 if (compare_ether_addr(sdata->dev->dev_addr,
1907 hdr->addr1))
1908 return 0;
1909 } else if (!ieee80211_bssid_match(bssid,
1910 sdata->dev->dev_addr)) {
Johannes Berg5cf121c2008-02-25 16:27:43 +01001911 if (!(rx->flags & IEEE80211_RX_IN_SCAN))
Johannes Berg23a24de2007-07-27 15:43:22 +02001912 return 0;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001913 rx->flags &= ~IEEE80211_RX_RA_MATCH;
Johannes Berg23a24de2007-07-27 15:43:22 +02001914 }
Johannes Berg23a24de2007-07-27 15:43:22 +02001915 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001916 case NL80211_IFTYPE_WDS:
Harvey Harrisona7767f92008-07-02 16:30:51 -07001917 if (bssid || !ieee80211_is_data(hdr->frame_control))
Johannes Berg23a24de2007-07-27 15:43:22 +02001918 return 0;
1919 if (compare_ether_addr(sdata->u.wds.remote_addr, hdr->addr2))
1920 return 0;
1921 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001922 case NL80211_IFTYPE_MONITOR:
Johannes Bergfb1c1cd2007-09-26 15:19:43 +02001923 /* take everything */
1924 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001925 case NL80211_IFTYPE_UNSPECIFIED:
1926 case __NL80211_IFTYPE_AFTER_LAST:
Johannes Bergfb1c1cd2007-09-26 15:19:43 +02001927 /* should never get here */
1928 WARN_ON(1);
1929 break;
Johannes Berg23a24de2007-07-27 15:43:22 +02001930 }
1931
1932 return 1;
1933}
1934
Johannes Berg571ecf62007-07-27 15:43:22 +02001935/*
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02001936 * This is the actual Rx frames handler. as it blongs to Rx path it must
1937 * be called with rcu_read_lock protection.
Johannes Berg571ecf62007-07-27 15:43:22 +02001938 */
Ron Rindjunsky71ebb4a2008-01-21 12:39:12 +02001939static void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw,
1940 struct sk_buff *skb,
1941 struct ieee80211_rx_status *status,
Johannes Berg8318d782008-01-24 19:38:38 +01001942 struct ieee80211_rate *rate)
Johannes Berg571ecf62007-07-27 15:43:22 +02001943{
1944 struct ieee80211_local *local = hw_to_local(hw);
1945 struct ieee80211_sub_if_data *sdata;
Johannes Berg571ecf62007-07-27 15:43:22 +02001946 struct ieee80211_hdr *hdr;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001947 struct ieee80211_rx_data rx;
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02001948 int prepares;
Johannes Berg8e6f0032007-07-27 15:43:22 +02001949 struct ieee80211_sub_if_data *prev = NULL;
1950 struct sk_buff *skb_new;
1951 u8 *bssid;
Johannes Berg571ecf62007-07-27 15:43:22 +02001952
Harvey Harrison358c8d92008-07-15 18:44:13 -07001953 hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berg571ecf62007-07-27 15:43:22 +02001954 memset(&rx, 0, sizeof(rx));
1955 rx.skb = skb;
1956 rx.local = local;
1957
Johannes Berg5cf121c2008-02-25 16:27:43 +01001958 rx.status = status;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001959 rx.rate = rate;
Johannes Berg72abd812007-09-17 01:29:22 -04001960
Harvey Harrison358c8d92008-07-15 18:44:13 -07001961 if (ieee80211_is_data(hdr->frame_control) || ieee80211_is_mgmt(hdr->frame_control))
Johannes Berg571ecf62007-07-27 15:43:22 +02001962 local->dot11ReceivedFragmentCount++;
Johannes Berg571ecf62007-07-27 15:43:22 +02001963
Johannes Berg8944b792008-01-31 19:48:26 +01001964 rx.sta = sta_info_get(local, hdr->addr2);
1965 if (rx.sta) {
Johannes Bergd0709a62008-02-25 16:27:46 +01001966 rx.sdata = rx.sta->sdata;
1967 rx.dev = rx.sta->sdata->dev;
Johannes Bergb2e77712007-09-26 15:19:39 +02001968 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001969
Johannes Berg571ecf62007-07-27 15:43:22 +02001970 if ((status->flag & RX_FLAG_MMIC_ERROR)) {
Johannes Berg8944b792008-01-31 19:48:26 +01001971 ieee80211_rx_michael_mic_report(local->mdev, hdr, &rx);
Johannes Bergd0709a62008-02-25 16:27:46 +01001972 return;
Johannes Berg571ecf62007-07-27 15:43:22 +02001973 }
1974
Johannes Bergc2b13452008-09-11 00:01:55 +02001975 if (unlikely(local->sw_scanning || local->hw_scanning))
Johannes Berg5cf121c2008-02-25 16:27:43 +01001976 rx.flags |= IEEE80211_RX_IN_SCAN;
Johannes Berg571ecf62007-07-27 15:43:22 +02001977
Johannes Berg38f37142008-01-29 17:07:43 +01001978 ieee80211_parse_qos(&rx);
1979 ieee80211_verify_ip_alignment(&rx);
1980
Johannes Berg571ecf62007-07-27 15:43:22 +02001981 skb = rx.skb;
1982
Johannes Berg79010422007-09-18 17:29:21 -04001983 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Johannes Berg2a8a9a82007-08-28 17:01:52 -04001984 if (!netif_running(sdata->dev))
1985 continue;
1986
Johannes Berg05c914f2008-09-11 00:01:58 +02001987 if (sdata->vif.type == NL80211_IFTYPE_MONITOR)
Johannes Bergb2e77712007-09-26 15:19:39 +02001988 continue;
1989
Johannes Berg51fb61e2007-12-19 01:31:27 +01001990 bssid = ieee80211_get_bssid(hdr, skb->len, sdata->vif.type);
Johannes Berg5cf121c2008-02-25 16:27:43 +01001991 rx.flags |= IEEE80211_RX_RA_MATCH;
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02001992 prepares = prepare_for_handlers(sdata, bssid, &rx, hdr);
Johannes Berg23a24de2007-07-27 15:43:22 +02001993
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02001994 if (!prepares)
Johannes Berg23a24de2007-07-27 15:43:22 +02001995 continue;
Johannes Berg8e6f0032007-07-27 15:43:22 +02001996
Johannes Berg340e11f2007-07-27 15:43:22 +02001997 /*
1998 * frame is destined for this interface, but if it's not
1999 * also for the previous one we handle that after the
2000 * loop to avoid copying the SKB once too much
2001 */
2002
2003 if (!prev) {
2004 prev = sdata;
2005 continue;
Johannes Berg8e6f0032007-07-27 15:43:22 +02002006 }
Johannes Berg340e11f2007-07-27 15:43:22 +02002007
2008 /*
2009 * frame was destined for the previous interface
2010 * so invoke RX handlers for it
2011 */
2012
2013 skb_new = skb_copy(skb, GFP_ATOMIC);
2014 if (!skb_new) {
2015 if (net_ratelimit())
2016 printk(KERN_DEBUG "%s: failed to copy "
Pavel Roskina4278e12008-05-12 09:02:24 -04002017 "multicast frame for %s\n",
Johannes Bergdd1cd4c2007-09-18 17:29:20 -04002018 wiphy_name(local->hw.wiphy),
2019 prev->dev->name);
Johannes Berg340e11f2007-07-27 15:43:22 +02002020 continue;
2021 }
Johannes Berg8944b792008-01-31 19:48:26 +01002022 ieee80211_invoke_rx_handlers(prev, &rx, skb_new);
Johannes Berg8e6f0032007-07-27 15:43:22 +02002023 prev = sdata;
Johannes Berg571ecf62007-07-27 15:43:22 +02002024 }
Harvey Harrisona4b7d7b2008-07-15 18:44:14 -07002025 if (prev)
Johannes Berg8944b792008-01-31 19:48:26 +01002026 ieee80211_invoke_rx_handlers(prev, &rx, skb);
Harvey Harrisona4b7d7b2008-07-15 18:44:14 -07002027 else
Johannes Berg8e6f0032007-07-27 15:43:22 +02002028 dev_kfree_skb(skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02002029}
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02002030
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002031#define SEQ_MODULO 0x1000
2032#define SEQ_MASK 0xfff
2033
2034static inline int seq_less(u16 sq1, u16 sq2)
2035{
Johannes Bergc6a1fa12008-10-07 12:04:32 +02002036 return ((sq1 - sq2) & SEQ_MASK) > (SEQ_MODULO >> 1);
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002037}
2038
2039static inline u16 seq_inc(u16 sq)
2040{
Johannes Bergc6a1fa12008-10-07 12:04:32 +02002041 return (sq + 1) & SEQ_MASK;
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002042}
2043
2044static inline u16 seq_sub(u16 sq1, u16 sq2)
2045{
Johannes Bergc6a1fa12008-10-07 12:04:32 +02002046 return (sq1 - sq2) & SEQ_MASK;
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002047}
2048
2049
Ron Rindjunsky71364712007-12-25 17:00:36 +02002050/*
2051 * As it function blongs to Rx path it must be called with
2052 * the proper rcu_read_lock protection for its flow.
2053 */
Johannes Bergc6a1fa12008-10-07 12:04:32 +02002054static u8 ieee80211_sta_manage_reorder_buf(struct ieee80211_hw *hw,
2055 struct tid_ampdu_rx *tid_agg_rx,
2056 struct sk_buff *skb,
2057 u16 mpdu_seq_num,
2058 int bar_req)
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002059{
2060 struct ieee80211_local *local = hw_to_local(hw);
2061 struct ieee80211_rx_status status;
2062 u16 head_seq_num, buf_size;
2063 int index;
Johannes Berg8318d782008-01-24 19:38:38 +01002064 struct ieee80211_supported_band *sband;
2065 struct ieee80211_rate *rate;
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002066
2067 buf_size = tid_agg_rx->buf_size;
2068 head_seq_num = tid_agg_rx->head_seq_num;
2069
2070 /* frame with out of date sequence number */
2071 if (seq_less(mpdu_seq_num, head_seq_num)) {
2072 dev_kfree_skb(skb);
2073 return 1;
2074 }
2075
2076 /* if frame sequence number exceeds our buffering window size or
2077 * block Ack Request arrived - release stored frames */
2078 if ((!seq_less(mpdu_seq_num, head_seq_num + buf_size)) || (bar_req)) {
2079 /* new head to the ordering buffer */
2080 if (bar_req)
2081 head_seq_num = mpdu_seq_num;
2082 else
2083 head_seq_num =
2084 seq_inc(seq_sub(mpdu_seq_num, buf_size));
2085 /* release stored frames up to new head to stack */
2086 while (seq_less(tid_agg_rx->head_seq_num, head_seq_num)) {
2087 index = seq_sub(tid_agg_rx->head_seq_num,
2088 tid_agg_rx->ssn)
2089 % tid_agg_rx->buf_size;
2090
2091 if (tid_agg_rx->reorder_buf[index]) {
2092 /* release the reordered frames to stack */
2093 memcpy(&status,
2094 tid_agg_rx->reorder_buf[index]->cb,
2095 sizeof(status));
Johannes Berg8318d782008-01-24 19:38:38 +01002096 sband = local->hw.wiphy->bands[status.band];
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02002097 if (status.flag & RX_FLAG_HT) {
2098 /* TODO: HT rates */
2099 rate = sband->bitrates;
2100 } else {
2101 rate = &sband->bitrates
2102 [status.rate_idx];
2103 }
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002104 __ieee80211_rx_handle_packet(hw,
2105 tid_agg_rx->reorder_buf[index],
Johannes Berg9e72ebd2008-05-21 17:33:42 +02002106 &status, rate);
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002107 tid_agg_rx->stored_mpdu_num--;
2108 tid_agg_rx->reorder_buf[index] = NULL;
2109 }
2110 tid_agg_rx->head_seq_num =
2111 seq_inc(tid_agg_rx->head_seq_num);
2112 }
2113 if (bar_req)
2114 return 1;
2115 }
2116
2117 /* now the new frame is always in the range of the reordering */
2118 /* buffer window */
2119 index = seq_sub(mpdu_seq_num, tid_agg_rx->ssn)
2120 % tid_agg_rx->buf_size;
2121 /* check if we already stored this frame */
2122 if (tid_agg_rx->reorder_buf[index]) {
2123 dev_kfree_skb(skb);
2124 return 1;
2125 }
2126
2127 /* if arrived mpdu is in the right order and nothing else stored */
2128 /* release it immediately */
2129 if (mpdu_seq_num == tid_agg_rx->head_seq_num &&
2130 tid_agg_rx->stored_mpdu_num == 0) {
2131 tid_agg_rx->head_seq_num =
2132 seq_inc(tid_agg_rx->head_seq_num);
2133 return 0;
2134 }
2135
2136 /* put the frame in the reordering buffer */
2137 tid_agg_rx->reorder_buf[index] = skb;
2138 tid_agg_rx->stored_mpdu_num++;
2139 /* release the buffer until next missing frame */
2140 index = seq_sub(tid_agg_rx->head_seq_num, tid_agg_rx->ssn)
2141 % tid_agg_rx->buf_size;
2142 while (tid_agg_rx->reorder_buf[index]) {
2143 /* release the reordered frame back to stack */
2144 memcpy(&status, tid_agg_rx->reorder_buf[index]->cb,
2145 sizeof(status));
Johannes Berg8318d782008-01-24 19:38:38 +01002146 sband = local->hw.wiphy->bands[status.band];
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02002147 if (status.flag & RX_FLAG_HT)
2148 rate = sband->bitrates; /* TODO: HT rates */
2149 else
2150 rate = &sband->bitrates[status.rate_idx];
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002151 __ieee80211_rx_handle_packet(hw, tid_agg_rx->reorder_buf[index],
Johannes Berg9e72ebd2008-05-21 17:33:42 +02002152 &status, rate);
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002153 tid_agg_rx->stored_mpdu_num--;
2154 tid_agg_rx->reorder_buf[index] = NULL;
2155 tid_agg_rx->head_seq_num = seq_inc(tid_agg_rx->head_seq_num);
2156 index = seq_sub(tid_agg_rx->head_seq_num,
2157 tid_agg_rx->ssn) % tid_agg_rx->buf_size;
2158 }
2159 return 1;
2160}
2161
Ron Rindjunsky71ebb4a2008-01-21 12:39:12 +02002162static u8 ieee80211_rx_reorder_ampdu(struct ieee80211_local *local,
2163 struct sk_buff *skb)
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002164{
2165 struct ieee80211_hw *hw = &local->hw;
2166 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
2167 struct sta_info *sta;
2168 struct tid_ampdu_rx *tid_agg_rx;
Harvey Harrison87228f52008-06-11 14:21:59 -07002169 u16 sc;
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002170 u16 mpdu_seq_num;
Harvey Harrison182503a2008-06-22 16:45:29 -07002171 u8 ret = 0;
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002172 int tid;
2173
2174 sta = sta_info_get(local, hdr->addr2);
2175 if (!sta)
2176 return ret;
2177
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002178 /* filter the QoS data rx stream according to
2179 * STA/TID and check if this STA/TID is on aggregation */
Harvey Harrison87228f52008-06-11 14:21:59 -07002180 if (!ieee80211_is_data_qos(hdr->frame_control))
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002181 goto end_reorder;
2182
Harvey Harrison238f74a2008-07-02 11:05:34 -07002183 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002184
Ron Rindjunskycee24a32008-03-26 20:36:03 +02002185 if (sta->ampdu_mlme.tid_state_rx[tid] != HT_AGG_STATE_OPERATIONAL)
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002186 goto end_reorder;
2187
Ron Rindjunskycee24a32008-03-26 20:36:03 +02002188 tid_agg_rx = sta->ampdu_mlme.tid_rx[tid];
2189
Emmanuel Grumbach2560b6e2008-07-10 00:47:19 +03002190 /* qos null data frames are excluded */
2191 if (unlikely(hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_NULLFUNC)))
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002192 goto end_reorder;
2193
2194 /* new un-ordered ampdu frame - process it */
2195
2196 /* reset session timer */
2197 if (tid_agg_rx->timeout) {
2198 unsigned long expires =
2199 jiffies + (tid_agg_rx->timeout / 1000) * HZ;
2200 mod_timer(&tid_agg_rx->session_timer, expires);
2201 }
2202
2203 /* if this mpdu is fragmented - terminate rx aggregation session */
2204 sc = le16_to_cpu(hdr->seq_ctrl);
2205 if (sc & IEEE80211_SCTL_FRAG) {
Johannes Berg17741cd2008-09-11 00:02:02 +02002206 ieee80211_sta_stop_rx_ba_session(sta->sdata, sta->sta.addr,
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002207 tid, 0, WLAN_REASON_QSTA_REQUIRE_SETUP);
2208 ret = 1;
2209 goto end_reorder;
2210 }
2211
2212 /* according to mpdu sequence number deal with reordering buffer */
2213 mpdu_seq_num = (sc & IEEE80211_SCTL_SEQ) >> 4;
2214 ret = ieee80211_sta_manage_reorder_buf(hw, tid_agg_rx, skb,
2215 mpdu_seq_num, 0);
Johannes Bergd0709a62008-02-25 16:27:46 +01002216 end_reorder:
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002217 return ret;
2218}
2219
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02002220/*
2221 * This is the receive path handler. It is called by a low level driver when an
2222 * 802.11 MPDU is received from the hardware.
2223 */
2224void __ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb,
2225 struct ieee80211_rx_status *status)
2226{
2227 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berg8318d782008-01-24 19:38:38 +01002228 struct ieee80211_rate *rate = NULL;
2229 struct ieee80211_supported_band *sband;
2230
2231 if (status->band < 0 ||
Adrian Bunk13d8fd22008-04-23 12:51:28 +03002232 status->band >= IEEE80211_NUM_BANDS) {
Johannes Berg8318d782008-01-24 19:38:38 +01002233 WARN_ON(1);
2234 return;
2235 }
2236
2237 sband = local->hw.wiphy->bands[status->band];
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02002238 if (!sband) {
Johannes Berg8318d782008-01-24 19:38:38 +01002239 WARN_ON(1);
2240 return;
2241 }
2242
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02002243 if (status->flag & RX_FLAG_HT) {
2244 /* rate_idx is MCS index */
2245 if (WARN_ON(status->rate_idx < 0 ||
2246 status->rate_idx >= 76))
2247 return;
2248 /* HT rates are not in the table - use the highest legacy rate
2249 * for now since other parts of mac80211 may not yet be fully
2250 * MCS aware. */
2251 rate = &sband->bitrates[sband->n_bitrates - 1];
2252 } else {
2253 if (WARN_ON(status->rate_idx < 0 ||
2254 status->rate_idx >= sband->n_bitrates))
2255 return;
2256 rate = &sband->bitrates[status->rate_idx];
2257 }
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02002258
2259 /*
2260 * key references and virtual interfaces are protected using RCU
2261 * and this requires that we are in a read-side RCU section during
2262 * receive processing
2263 */
2264 rcu_read_lock();
2265
2266 /*
2267 * Frames with failed FCS/PLCP checksum are not returned,
2268 * all other frames are returned without radiotap header
2269 * if it was previously present.
2270 * Also, frames with less than 16 bytes are dropped.
2271 */
Johannes Berg8318d782008-01-24 19:38:38 +01002272 skb = ieee80211_rx_monitor(local, skb, status, rate);
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02002273 if (!skb) {
2274 rcu_read_unlock();
2275 return;
2276 }
2277
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002278 if (!ieee80211_rx_reorder_ampdu(local, skb))
Johannes Berg9e72ebd2008-05-21 17:33:42 +02002279 __ieee80211_rx_handle_packet(hw, skb, status, rate);
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02002280
2281 rcu_read_unlock();
2282}
Johannes Berg571ecf62007-07-27 15:43:22 +02002283EXPORT_SYMBOL(__ieee80211_rx);
2284
2285/* This is a version of the rx handler that can be called from hard irq
2286 * context. Post the skb on the queue and schedule the tasklet */
2287void ieee80211_rx_irqsafe(struct ieee80211_hw *hw, struct sk_buff *skb,
2288 struct ieee80211_rx_status *status)
2289{
2290 struct ieee80211_local *local = hw_to_local(hw);
2291
2292 BUILD_BUG_ON(sizeof(struct ieee80211_rx_status) > sizeof(skb->cb));
2293
2294 skb->dev = local->mdev;
2295 /* copy status into skb->cb for use by tasklet */
2296 memcpy(skb->cb, status, sizeof(*status));
2297 skb->pkt_type = IEEE80211_RX_MSG;
2298 skb_queue_tail(&local->skb_queue, skb);
2299 tasklet_schedule(&local->tasklet);
2300}
2301EXPORT_SYMBOL(ieee80211_rx_irqsafe);