blob: b729c005a2b3ef9e5681a16c39f908dcb1fb6ba8 [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) |
126 (1 << IEEE80211_RADIOTAP_RATE) |
127 (1 << IEEE80211_RADIOTAP_CHANNEL) |
128 (1 << IEEE80211_RADIOTAP_ANTENNA) |
129 (1 << IEEE80211_RADIOTAP_RX_FLAGS));
130 rthdr->it_len = cpu_to_le16(rtap_len);
131
132 pos = (unsigned char *)(rthdr+1);
133
134 /* the order of the following fields is important */
135
136 /* IEEE80211_RADIOTAP_TSFT */
137 if (status->flag & RX_FLAG_TSFT) {
138 *(__le64 *)pos = cpu_to_le64(status->mactime);
139 rthdr->it_present |=
140 cpu_to_le32(1 << IEEE80211_RADIOTAP_TSFT);
141 pos += 8;
142 }
143
144 /* IEEE80211_RADIOTAP_FLAGS */
145 if (local->hw.flags & IEEE80211_HW_RX_INCLUDES_FCS)
146 *pos |= IEEE80211_RADIOTAP_F_FCS;
Bruno Randolfb4f28bb2008-07-30 17:19:55 +0200147 if (status->flag & RX_FLAG_SHORTPRE)
148 *pos |= IEEE80211_RADIOTAP_F_SHORTPRE;
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200149 pos++;
150
151 /* IEEE80211_RADIOTAP_RATE */
Jouni Malinen0fb8ca42008-12-12 14:38:33 +0200152 if (status->flag & RX_FLAG_HT) {
153 /*
154 * TODO: add following information into radiotap header once
155 * suitable fields are defined for it:
156 * - MCS index (status->rate_idx)
157 * - HT40 (status->flag & RX_FLAG_40MHZ)
158 * - short-GI (status->flag & RX_FLAG_SHORT_GI)
159 */
160 *pos = 0;
161 } else
162 *pos = rate->bitrate / 5;
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200163 pos++;
164
165 /* IEEE80211_RADIOTAP_CHANNEL */
166 *(__le16 *)pos = cpu_to_le16(status->freq);
167 pos += 2;
168 if (status->band == IEEE80211_BAND_5GHZ)
169 *(__le16 *)pos = cpu_to_le16(IEEE80211_CHAN_OFDM |
170 IEEE80211_CHAN_5GHZ);
Bruno Randolf9deb1ae2008-07-30 17:20:06 +0200171 else if (rate->flags & IEEE80211_RATE_ERP_G)
172 *(__le16 *)pos = cpu_to_le16(IEEE80211_CHAN_OFDM |
173 IEEE80211_CHAN_2GHZ);
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200174 else
Bruno Randolf9deb1ae2008-07-30 17:20:06 +0200175 *(__le16 *)pos = cpu_to_le16(IEEE80211_CHAN_CCK |
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200176 IEEE80211_CHAN_2GHZ);
177 pos += 2;
178
179 /* IEEE80211_RADIOTAP_DBM_ANTSIGNAL */
180 if (local->hw.flags & IEEE80211_HW_SIGNAL_DBM) {
181 *pos = status->signal;
182 rthdr->it_present |=
183 cpu_to_le32(1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL);
184 pos++;
185 }
186
187 /* IEEE80211_RADIOTAP_DBM_ANTNOISE */
188 if (local->hw.flags & IEEE80211_HW_NOISE_DBM) {
189 *pos = status->noise;
190 rthdr->it_present |=
191 cpu_to_le32(1 << IEEE80211_RADIOTAP_DBM_ANTNOISE);
192 pos++;
193 }
194
195 /* IEEE80211_RADIOTAP_LOCK_QUALITY is missing */
196
197 /* IEEE80211_RADIOTAP_ANTENNA */
198 *pos = status->antenna;
199 pos++;
200
201 /* IEEE80211_RADIOTAP_DB_ANTSIGNAL */
202 if (local->hw.flags & IEEE80211_HW_SIGNAL_DB) {
203 *pos = status->signal;
204 rthdr->it_present |=
205 cpu_to_le32(1 << IEEE80211_RADIOTAP_DB_ANTSIGNAL);
206 pos++;
207 }
208
209 /* IEEE80211_RADIOTAP_DB_ANTNOISE is not used */
210
211 /* IEEE80211_RADIOTAP_RX_FLAGS */
212 /* ensure 2 byte alignment for the 2 byte field as required */
213 if ((pos - (unsigned char *)rthdr) & 1)
214 pos++;
215 /* FIXME: when radiotap gets a 'bad PLCP' flag use it here */
216 if (status->flag & (RX_FLAG_FAILED_FCS_CRC | RX_FLAG_FAILED_PLCP_CRC))
217 *(__le16 *)pos |= cpu_to_le16(IEEE80211_RADIOTAP_F_RX_BADFCS);
218 pos += 2;
219}
220
Johannes Bergb2e77712007-09-26 15:19:39 +0200221/*
222 * This function copies a received frame to all monitor interfaces and
223 * returns a cleaned-up SKB that no longer includes the FCS nor the
224 * radiotap header the driver might have added.
225 */
226static struct sk_buff *
227ieee80211_rx_monitor(struct ieee80211_local *local, struct sk_buff *origskb,
Johannes Berg8318d782008-01-24 19:38:38 +0100228 struct ieee80211_rx_status *status,
229 struct ieee80211_rate *rate)
Johannes Bergb2e77712007-09-26 15:19:39 +0200230{
231 struct ieee80211_sub_if_data *sdata;
Johannes Bergb2e77712007-09-26 15:19:39 +0200232 int needed_headroom = 0;
Johannes Bergb2e77712007-09-26 15:19:39 +0200233 struct sk_buff *skb, *skb2;
234 struct net_device *prev_dev = NULL;
235 int present_fcs_len = 0;
236 int rtap_len = 0;
237
238 /*
239 * First, we may need to make a copy of the skb because
240 * (1) we need to modify it for radiotap (if not present), and
241 * (2) the other RX handlers will modify the skb we got.
242 *
243 * We don't need to, of course, if we aren't going to return
244 * the SKB because it has a bad FCS/PLCP checksum.
245 */
246 if (status->flag & RX_FLAG_RADIOTAP)
247 rtap_len = ieee80211_get_radiotap_len(origskb->data);
248 else
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200249 /* room for the radiotap header based on driver features */
250 needed_headroom = ieee80211_rx_radiotap_len(local, status);
Johannes Bergb2e77712007-09-26 15:19:39 +0200251
252 if (local->hw.flags & IEEE80211_HW_RX_INCLUDES_FCS)
253 present_fcs_len = FCS_LEN;
254
255 if (!local->monitors) {
256 if (should_drop_frame(status, origskb, present_fcs_len,
257 rtap_len)) {
258 dev_kfree_skb(origskb);
259 return NULL;
260 }
261
262 return remove_monitor_info(local, origskb, rtap_len);
263 }
264
265 if (should_drop_frame(status, origskb, present_fcs_len, rtap_len)) {
266 /* only need to expand headroom if necessary */
267 skb = origskb;
268 origskb = NULL;
269
270 /*
271 * This shouldn't trigger often because most devices have an
272 * RX header they pull before we get here, and that should
273 * be big enough for our radiotap information. We should
274 * probably export the length to drivers so that we can have
275 * them allocate enough headroom to start with.
276 */
277 if (skb_headroom(skb) < needed_headroom &&
Johannes Bergc49e5ea2007-12-11 21:33:42 +0100278 pskb_expand_head(skb, needed_headroom, 0, GFP_ATOMIC)) {
Johannes Bergb2e77712007-09-26 15:19:39 +0200279 dev_kfree_skb(skb);
280 return NULL;
281 }
282 } else {
283 /*
284 * Need to make a copy and possibly remove radiotap header
285 * and FCS from the original.
286 */
287 skb = skb_copy_expand(origskb, needed_headroom, 0, GFP_ATOMIC);
288
289 origskb = remove_monitor_info(local, origskb, rtap_len);
290
291 if (!skb)
292 return origskb;
293 }
294
295 /* if necessary, prepend radiotap information */
Bruno Randolf601ae7f2008-05-08 19:22:43 +0200296 if (!(status->flag & RX_FLAG_RADIOTAP))
297 ieee80211_add_rx_radiotap_header(local, skb, status, rate,
298 needed_headroom);
Johannes Bergb2e77712007-09-26 15:19:39 +0200299
Johannes Bergce3edf6d02007-12-19 01:31:22 +0100300 skb_reset_mac_header(skb);
Johannes Bergb2e77712007-09-26 15:19:39 +0200301 skb->ip_summed = CHECKSUM_UNNECESSARY;
302 skb->pkt_type = PACKET_OTHERHOST;
303 skb->protocol = htons(ETH_P_802_2);
304
305 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
306 if (!netif_running(sdata->dev))
307 continue;
308
Johannes Berg05c914f2008-09-11 00:01:58 +0200309 if (sdata->vif.type != NL80211_IFTYPE_MONITOR)
Johannes Bergb2e77712007-09-26 15:19:39 +0200310 continue;
311
Michael Wu3d30d942008-01-31 19:48:27 +0100312 if (sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES)
313 continue;
314
Johannes Bergb2e77712007-09-26 15:19:39 +0200315 if (prev_dev) {
316 skb2 = skb_clone(skb, GFP_ATOMIC);
317 if (skb2) {
318 skb2->dev = prev_dev;
319 netif_rx(skb2);
320 }
321 }
322
323 prev_dev = sdata->dev;
324 sdata->dev->stats.rx_packets++;
325 sdata->dev->stats.rx_bytes += skb->len;
326 }
327
328 if (prev_dev) {
329 skb->dev = prev_dev;
330 netif_rx(skb);
331 } else
332 dev_kfree_skb(skb);
333
334 return origskb;
335}
336
337
Johannes Berg5cf121c2008-02-25 16:27:43 +0100338static void ieee80211_parse_qos(struct ieee80211_rx_data *rx)
Johannes Berg6e0d1142007-07-27 15:43:22 +0200339{
Harvey Harrison238f74a2008-07-02 11:05:34 -0700340 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200341 int tid;
342
343 /* does the frame have a qos control field? */
Harvey Harrison238f74a2008-07-02 11:05:34 -0700344 if (ieee80211_is_data_qos(hdr->frame_control)) {
345 u8 *qc = ieee80211_get_qos_ctl(hdr);
Johannes Berg6e0d1142007-07-27 15:43:22 +0200346 /* frame has qos control */
Harvey Harrison238f74a2008-07-02 11:05:34 -0700347 tid = *qc & IEEE80211_QOS_CTL_TID_MASK;
348 if (*qc & IEEE80211_QOS_CONTROL_A_MSDU_PRESENT)
Johannes Berg5cf121c2008-02-25 16:27:43 +0100349 rx->flags |= IEEE80211_RX_AMSDU;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +0200350 else
Johannes Berg5cf121c2008-02-25 16:27:43 +0100351 rx->flags &= ~IEEE80211_RX_AMSDU;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200352 } else {
Johannes Berg1411f9b2008-07-10 10:11:02 +0200353 /*
354 * IEEE 802.11-2007, 7.1.3.4.1 ("Sequence Number field"):
355 *
356 * Sequence numbers for management frames, QoS data
357 * frames with a broadcast/multicast address in the
358 * Address 1 field, and all non-QoS data frames sent
359 * by QoS STAs are assigned using an additional single
360 * modulo-4096 counter, [...]
361 *
362 * We also use that counter for non-QoS STAs.
363 */
364 tid = NUM_RX_DATA_QUEUES - 1;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200365 }
Johannes Berg52865dfd2007-07-27 15:43:22 +0200366
Johannes Berg5cf121c2008-02-25 16:27:43 +0100367 rx->queue = tid;
Johannes Berg6e0d1142007-07-27 15:43:22 +0200368 /* Set skb->priority to 1d tag if highest order bit of TID is not set.
369 * For now, set skb->priority to 0 for other cases. */
370 rx->skb->priority = (tid > 7) ? 0 : tid;
Johannes Berg38f37142008-01-29 17:07:43 +0100371}
Johannes Berg6e0d1142007-07-27 15:43:22 +0200372
Johannes Berg5cf121c2008-02-25 16:27:43 +0100373static void ieee80211_verify_ip_alignment(struct ieee80211_rx_data *rx)
Johannes Berg38f37142008-01-29 17:07:43 +0100374{
375#ifdef CONFIG_MAC80211_DEBUG_PACKET_ALIGNMENT
Harvey Harrisona7767f92008-07-02 16:30:51 -0700376 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg38f37142008-01-29 17:07:43 +0100377 int hdrlen;
378
Harvey Harrisona7767f92008-07-02 16:30:51 -0700379 if (!ieee80211_is_data_present(hdr->frame_control))
Johannes Berg38f37142008-01-29 17:07:43 +0100380 return;
381
382 /*
383 * Drivers are required to align the payload data in a way that
384 * guarantees that the contained IP header is aligned to a four-
385 * byte boundary. In the case of regular frames, this simply means
386 * aligning the payload to a four-byte boundary (because either
387 * the IP header is directly contained, or IV/RFC1042 headers that
388 * have a length divisible by four are in front of it.
389 *
390 * With A-MSDU frames, however, the payload data address must
391 * yield two modulo four because there are 14-byte 802.3 headers
392 * within the A-MSDU frames that push the IP header further back
393 * to a multiple of four again. Thankfully, the specs were sane
394 * enough this time around to require padding each A-MSDU subframe
395 * to a length that is a multiple of four.
396 *
397 * Padding like atheros hardware adds which is inbetween the 802.11
398 * header and the payload is not supported, the driver is required
399 * to move the 802.11 header further back in that case.
400 */
Harvey Harrisona7767f92008-07-02 16:30:51 -0700401 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berg5cf121c2008-02-25 16:27:43 +0100402 if (rx->flags & IEEE80211_RX_AMSDU)
Johannes Berg38f37142008-01-29 17:07:43 +0100403 hdrlen += ETH_HLEN;
404 WARN_ON_ONCE(((unsigned long)(rx->skb->data + hdrlen)) & 3);
405#endif
Johannes Berg6e0d1142007-07-27 15:43:22 +0200406}
407
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +0200408
Johannes Berg571ecf62007-07-27 15:43:22 +0200409/* rx handlers */
410
Johannes Berg49461622008-06-30 15:10:45 +0200411static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100412ieee80211_rx_h_passive_scan(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +0200413{
414 struct ieee80211_local *local = rx->local;
415 struct sk_buff *skb = rx->skb;
416
Johannes Bergc2b13452008-09-11 00:01:55 +0200417 if (unlikely(local->hw_scanning))
418 return ieee80211_scan_rx(rx->sdata, skb, rx->status);
Zhu Yiece8edd2007-11-22 10:53:21 +0800419
Johannes Bergc2b13452008-09-11 00:01:55 +0200420 if (unlikely(local->sw_scanning)) {
Zhu Yiece8edd2007-11-22 10:53:21 +0800421 /* drop all the other packets during a software scan anyway */
Johannes Bergc2b13452008-09-11 00:01:55 +0200422 if (ieee80211_scan_rx(rx->sdata, skb, rx->status)
Johannes Berg9ae54c82008-01-31 19:48:20 +0100423 != RX_QUEUED)
Zhu Yiece8edd2007-11-22 10:53:21 +0800424 dev_kfree_skb(skb);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100425 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200426 }
427
Johannes Berg5cf121c2008-02-25 16:27:43 +0100428 if (unlikely(rx->flags & IEEE80211_RX_IN_SCAN)) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200429 /* scanning finished during invoking of handlers */
430 I802_DEBUG_INC(local->rx_handlers_drop_passive_scan);
Johannes Berge4c26ad2008-01-31 19:48:21 +0100431 return RX_DROP_UNUSABLE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200432 }
433
Johannes Berg9ae54c82008-01-31 19:48:20 +0100434 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200435}
436
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100437static ieee80211_rx_result
Johannes Berg5cf121c2008-02-25 16:27:43 +0100438ieee80211_rx_mesh_check(struct ieee80211_rx_data *rx)
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100439{
Harvey Harrisona7767f92008-07-02 16:30:51 -0700440 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
441 unsigned int hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Bergd6d1a5a2008-02-25 16:24:38 +0100442
Harvey Harrisona7767f92008-07-02 16:30:51 -0700443 if (ieee80211_is_data(hdr->frame_control)) {
444 if (!ieee80211_has_a4(hdr->frame_control))
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100445 return RX_DROP_MONITOR;
446 if (memcmp(hdr->addr4, rx->dev->dev_addr, ETH_ALEN) == 0)
447 return RX_DROP_MONITOR;
448 }
449
450 /* If there is not an established peer link and this is not a peer link
451 * establisment frame, beacon or probe, drop the frame.
452 */
453
Luis Carlos Cobob4e08ea2008-02-29 15:46:08 -0800454 if (!rx->sta || sta_plink_state(rx->sta) != PLINK_ESTAB) {
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100455 struct ieee80211_mgmt *mgmt;
Johannes Bergd6d1a5a2008-02-25 16:24:38 +0100456
Harvey Harrisona7767f92008-07-02 16:30:51 -0700457 if (!ieee80211_is_mgmt(hdr->frame_control))
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100458 return RX_DROP_MONITOR;
459
Harvey Harrisona7767f92008-07-02 16:30:51 -0700460 if (ieee80211_is_action(hdr->frame_control)) {
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100461 mgmt = (struct ieee80211_mgmt *)hdr;
462 if (mgmt->u.action.category != PLINK_CATEGORY)
463 return RX_DROP_MONITOR;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100464 return RX_CONTINUE;
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100465 }
466
Harvey Harrisona7767f92008-07-02 16:30:51 -0700467 if (ieee80211_is_probe_req(hdr->frame_control) ||
468 ieee80211_is_probe_resp(hdr->frame_control) ||
469 ieee80211_is_beacon(hdr->frame_control))
470 return RX_CONTINUE;
471
472 return RX_DROP_MONITOR;
473
474 }
475
476#define msh_h_get(h, l) ((struct ieee80211s_hdr *) ((u8 *)h + l))
477
478 if (ieee80211_is_data(hdr->frame_control) &&
479 is_multicast_ether_addr(hdr->addr1) &&
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +1200480 mesh_rmc_check(hdr->addr4, msh_h_get(hdr, hdrlen), rx->sdata))
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100481 return RX_DROP_MONITOR;
Johannes Berg902acc72008-02-23 15:17:19 +0100482#undef msh_h_get
Johannes Bergd6d1a5a2008-02-25 16:24:38 +0100483
Johannes Berg902acc72008-02-23 15:17:19 +0100484 return RX_CONTINUE;
485}
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100486
487
Johannes Berg49461622008-06-30 15:10:45 +0200488static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100489ieee80211_rx_h_check(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +0200490{
Harvey Harrisona7767f92008-07-02 16:30:51 -0700491 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg571ecf62007-07-27 15:43:22 +0200492
493 /* Drop duplicate 802.11 retransmissions (IEEE 802.11 Chap. 9.2.9) */
494 if (rx->sta && !is_multicast_ether_addr(hdr->addr1)) {
Harvey Harrisona7767f92008-07-02 16:30:51 -0700495 if (unlikely(ieee80211_has_retry(hdr->frame_control) &&
Johannes Berg5cf121c2008-02-25 16:27:43 +0100496 rx->sta->last_seq_ctrl[rx->queue] ==
Johannes Berg571ecf62007-07-27 15:43:22 +0200497 hdr->seq_ctrl)) {
Johannes Berg5cf121c2008-02-25 16:27:43 +0100498 if (rx->flags & IEEE80211_RX_RA_MATCH) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200499 rx->local->dot11FrameDuplicateCount++;
500 rx->sta->num_duplicates++;
501 }
Johannes Berge4c26ad2008-01-31 19:48:21 +0100502 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +0200503 } else
Johannes Berg5cf121c2008-02-25 16:27:43 +0100504 rx->sta->last_seq_ctrl[rx->queue] = hdr->seq_ctrl;
Johannes Berg571ecf62007-07-27 15:43:22 +0200505 }
506
Johannes Berg571ecf62007-07-27 15:43:22 +0200507 if (unlikely(rx->skb->len < 16)) {
508 I802_DEBUG_INC(rx->local->rx_handlers_drop_short);
Johannes Berge4c26ad2008-01-31 19:48:21 +0100509 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +0200510 }
511
Johannes Berg571ecf62007-07-27 15:43:22 +0200512 /* Drop disallowed frame classes based on STA auth/assoc state;
513 * IEEE 802.11, Chap 5.5.
514 *
Johannes Bergccd7b362008-09-11 00:01:56 +0200515 * mac80211 filters only based on association state, i.e. it drops
516 * Class 3 frames from not associated stations. hostapd sends
Johannes Berg571ecf62007-07-27 15:43:22 +0200517 * deauth/disassoc frames when needed. In addition, hostapd is
518 * responsible for filtering on both auth and assoc states.
519 */
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100520
Johannes Berg902acc72008-02-23 15:17:19 +0100521 if (ieee80211_vif_is_mesh(&rx->sdata->vif))
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100522 return ieee80211_rx_mesh_check(rx);
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100523
Harvey Harrisona7767f92008-07-02 16:30:51 -0700524 if (unlikely((ieee80211_is_data(hdr->frame_control) ||
525 ieee80211_is_pspoll(hdr->frame_control)) &&
Johannes Berg05c914f2008-09-11 00:01:58 +0200526 rx->sdata->vif.type != NL80211_IFTYPE_ADHOC &&
Johannes Berg07346f812008-05-03 01:02:02 +0200527 (!rx->sta || !test_sta_flags(rx->sta, WLAN_STA_ASSOC)))) {
Harvey Harrisona7767f92008-07-02 16:30:51 -0700528 if ((!ieee80211_has_fromds(hdr->frame_control) &&
529 !ieee80211_has_tods(hdr->frame_control) &&
530 ieee80211_is_data(hdr->frame_control)) ||
531 !(rx->flags & IEEE80211_RX_RA_MATCH)) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200532 /* Drop IBSS frames and frames for other hosts
533 * silently. */
Johannes Berge4c26ad2008-01-31 19:48:21 +0100534 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +0200535 }
536
Johannes Berge4c26ad2008-01-31 19:48:21 +0100537 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +0200538 }
539
Johannes Berg9ae54c82008-01-31 19:48:20 +0100540 return RX_CONTINUE;
Johannes Berg570bd532007-07-27 15:43:22 +0200541}
542
543
Johannes Berg49461622008-06-30 15:10:45 +0200544static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100545ieee80211_rx_h_decrypt(struct ieee80211_rx_data *rx)
Johannes Berg570bd532007-07-27 15:43:22 +0200546{
Harvey Harrisona7767f92008-07-02 16:30:51 -0700547 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg3017b802007-08-28 17:01:53 -0400548 int keyidx;
549 int hdrlen;
Johannes Berge4c26ad2008-01-31 19:48:21 +0100550 ieee80211_rx_result result = RX_DROP_UNUSABLE;
Johannes Bergd4e46a32007-09-14 11:10:24 -0400551 struct ieee80211_key *stakey = NULL;
Johannes Berg570bd532007-07-27 15:43:22 +0200552
Johannes Berg3017b802007-08-28 17:01:53 -0400553 /*
554 * Key selection 101
555 *
556 * There are three types of keys:
557 * - GTK (group keys)
558 * - PTK (pairwise keys)
559 * - STK (station-to-station pairwise keys)
560 *
561 * When selecting a key, we have to distinguish between multicast
562 * (including broadcast) and unicast frames, the latter can only
563 * use PTKs and STKs while the former always use GTKs. Unless, of
564 * course, actual WEP keys ("pre-RSNA") are used, then unicast
565 * frames can also use key indizes like GTKs. Hence, if we don't
566 * have a PTK/STK we check the key index for a WEP key.
567 *
Johannes Berg8dc06a12007-08-28 17:01:55 -0400568 * Note that in a regular BSS, multicast frames are sent by the
569 * AP only, associated stations unicast the frame to the AP first
570 * which then multicasts it on their behalf.
571 *
Johannes Berg3017b802007-08-28 17:01:53 -0400572 * There is also a slight problem in IBSS mode: GTKs are negotiated
573 * with each station, that is something we don't currently handle.
Johannes Berg8dc06a12007-08-28 17:01:55 -0400574 * The spec seems to expect that one negotiates the same key with
575 * every station but there's no such requirement; VLANs could be
576 * possible.
Johannes Berg3017b802007-08-28 17:01:53 -0400577 */
Johannes Berg571ecf62007-07-27 15:43:22 +0200578
Harvey Harrisona7767f92008-07-02 16:30:51 -0700579 if (!ieee80211_has_protected(hdr->frame_control))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100580 return RX_CONTINUE;
Johannes Berg3017b802007-08-28 17:01:53 -0400581
582 /*
Johannes Berg1990af82007-09-26 17:53:15 +0200583 * No point in finding a key and decrypting if the frame is neither
Johannes Berg3017b802007-08-28 17:01:53 -0400584 * addressed to us nor a multicast frame.
585 */
Johannes Berg5cf121c2008-02-25 16:27:43 +0100586 if (!(rx->flags & IEEE80211_RX_RA_MATCH))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100587 return RX_CONTINUE;
Johannes Berg3017b802007-08-28 17:01:53 -0400588
Johannes Bergd4e46a32007-09-14 11:10:24 -0400589 if (rx->sta)
590 stakey = rcu_dereference(rx->sta->key);
591
592 if (!is_multicast_ether_addr(hdr->addr1) && stakey) {
593 rx->key = stakey;
Johannes Berg571ecf62007-07-27 15:43:22 +0200594 } else {
Johannes Berg3017b802007-08-28 17:01:53 -0400595 /*
596 * The device doesn't give us the IV so we won't be
597 * able to look up the key. That's ok though, we
598 * don't need to decrypt the frame, we just won't
599 * be able to keep statistics accurate.
600 * Except for key threshold notifications, should
601 * we somehow allow the driver to tell us which key
602 * the hardware used if this flag is set?
603 */
Johannes Berg5cf121c2008-02-25 16:27:43 +0100604 if ((rx->status->flag & RX_FLAG_DECRYPTED) &&
605 (rx->status->flag & RX_FLAG_IV_STRIPPED))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100606 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200607
Harvey Harrisona7767f92008-07-02 16:30:51 -0700608 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berg571ecf62007-07-27 15:43:22 +0200609
Johannes Berg3017b802007-08-28 17:01:53 -0400610 if (rx->skb->len < 8 + hdrlen)
Johannes Berge4c26ad2008-01-31 19:48:21 +0100611 return RX_DROP_UNUSABLE; /* TODO: count this? */
Johannes Berg571ecf62007-07-27 15:43:22 +0200612
Johannes Berg3017b802007-08-28 17:01:53 -0400613 /*
614 * no need to call ieee80211_wep_get_keyidx,
615 * it verifies a bunch of things we've done already
616 */
617 keyidx = rx->skb->data[hdrlen + 3] >> 6;
618
Johannes Bergd4e46a32007-09-14 11:10:24 -0400619 rx->key = rcu_dereference(rx->sdata->keys[keyidx]);
Johannes Berg3017b802007-08-28 17:01:53 -0400620
621 /*
622 * RSNA-protected unicast frames should always be sent with
623 * pairwise or station-to-station keys, but for WEP we allow
624 * using a key index as well.
625 */
Johannes Berg8f20fc22007-08-28 17:01:54 -0400626 if (rx->key && rx->key->conf.alg != ALG_WEP &&
Johannes Berg3017b802007-08-28 17:01:53 -0400627 !is_multicast_ether_addr(hdr->addr1))
628 rx->key = NULL;
Johannes Berg571ecf62007-07-27 15:43:22 +0200629 }
630
Johannes Berg3017b802007-08-28 17:01:53 -0400631 if (rx->key) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200632 rx->key->tx_rx_count++;
Johannes Berg011bfcc2007-09-17 01:29:25 -0400633 /* TODO: add threshold stuff again */
Johannes Berg1990af82007-09-26 17:53:15 +0200634 } else {
Johannes Berge4c26ad2008-01-31 19:48:21 +0100635 return RX_DROP_MONITOR;
Johannes Berg70f08762007-09-26 17:53:14 +0200636 }
637
Johannes Berg1990af82007-09-26 17:53:15 +0200638 /* Check for weak IVs if possible */
639 if (rx->sta && rx->key->conf.alg == ALG_WEP &&
Harvey Harrisona7767f92008-07-02 16:30:51 -0700640 ieee80211_is_data(hdr->frame_control) &&
Johannes Berg5cf121c2008-02-25 16:27:43 +0100641 (!(rx->status->flag & RX_FLAG_IV_STRIPPED) ||
642 !(rx->status->flag & RX_FLAG_DECRYPTED)) &&
Johannes Berg1990af82007-09-26 17:53:15 +0200643 ieee80211_wep_is_weak_iv(rx->skb, rx->key))
644 rx->sta->wep_weak_iv_count++;
645
Johannes Berg70f08762007-09-26 17:53:14 +0200646 switch (rx->key->conf.alg) {
647 case ALG_WEP:
Mattias Nisslere2f036d2007-10-07 16:35:31 +0200648 result = ieee80211_crypto_wep_decrypt(rx);
649 break;
Johannes Berg70f08762007-09-26 17:53:14 +0200650 case ALG_TKIP:
Mattias Nisslere2f036d2007-10-07 16:35:31 +0200651 result = ieee80211_crypto_tkip_decrypt(rx);
652 break;
Johannes Berg70f08762007-09-26 17:53:14 +0200653 case ALG_CCMP:
Mattias Nisslere2f036d2007-10-07 16:35:31 +0200654 result = ieee80211_crypto_ccmp_decrypt(rx);
655 break;
Johannes Berg70f08762007-09-26 17:53:14 +0200656 }
657
Mattias Nisslere2f036d2007-10-07 16:35:31 +0200658 /* either the frame has been decrypted or will be dropped */
Johannes Berg5cf121c2008-02-25 16:27:43 +0100659 rx->status->flag |= RX_FLAG_DECRYPTED;
Mattias Nisslere2f036d2007-10-07 16:35:31 +0200660
661 return result;
Johannes Berg70f08762007-09-26 17:53:14 +0200662}
663
Johannes Berg133b8222008-09-16 14:18:59 +0200664static void ap_sta_ps_start(struct sta_info *sta)
Johannes Berg571ecf62007-07-27 15:43:22 +0200665{
Johannes Berg133b8222008-09-16 14:18:59 +0200666 struct ieee80211_sub_if_data *sdata = sta->sdata;
Christian Lamparter4571d3b2008-11-30 00:48:41 +0100667 struct ieee80211_local *local = sdata->local;
Joe Perches0795af52007-10-03 17:59:30 -0700668
Johannes Berg3e122be2008-07-09 14:40:34 +0200669 atomic_inc(&sdata->bss->num_sta_ps);
Johannes Berg07346f812008-05-03 01:02:02 +0200670 set_and_clear_sta_flags(sta, WLAN_STA_PS, WLAN_STA_PSPOLL);
Christian Lamparter89fad572008-12-09 16:28:06 +0100671 if (local->ops->sta_notify)
672 local->ops->sta_notify(local_to_hw(local), &sdata->vif,
673 STA_NOTIFY_SLEEP, &sta->sta);
Johannes Berg571ecf62007-07-27 15:43:22 +0200674#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700675 printk(KERN_DEBUG "%s: STA %pM aid %d enters power save mode\n",
676 sdata->dev->name, sta->sta.addr, sta->sta.aid);
Johannes Berg571ecf62007-07-27 15:43:22 +0200677#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
678}
679
Johannes Berg133b8222008-09-16 14:18:59 +0200680static int ap_sta_ps_end(struct sta_info *sta)
Johannes Berg571ecf62007-07-27 15:43:22 +0200681{
Johannes Berg133b8222008-09-16 14:18:59 +0200682 struct ieee80211_sub_if_data *sdata = sta->sdata;
683 struct ieee80211_local *local = sdata->local;
Johannes Berg571ecf62007-07-27 15:43:22 +0200684 struct sk_buff *skb;
685 int sent = 0;
Johannes Berg571ecf62007-07-27 15:43:22 +0200686
Johannes Berg3e122be2008-07-09 14:40:34 +0200687 atomic_dec(&sdata->bss->num_sta_ps);
Johannes Berg004c8722008-02-20 11:21:35 +0100688
Johannes Berg07346f812008-05-03 01:02:02 +0200689 clear_sta_flags(sta, WLAN_STA_PS | WLAN_STA_PSPOLL);
Christian Lamparter89fad572008-12-09 16:28:06 +0100690 if (local->ops->sta_notify)
691 local->ops->sta_notify(local_to_hw(local), &sdata->vif,
692 STA_NOTIFY_AWAKE, &sta->sta);
Johannes Berg004c8722008-02-20 11:21:35 +0100693
694 if (!skb_queue_empty(&sta->ps_tx_buf))
695 sta_info_clear_tim_bit(sta);
696
Johannes Berg571ecf62007-07-27 15:43:22 +0200697#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700698 printk(KERN_DEBUG "%s: STA %pM aid %d exits power save mode\n",
699 sdata->dev->name, sta->sta.addr, sta->sta.aid);
Johannes Berg571ecf62007-07-27 15:43:22 +0200700#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
Johannes Berg004c8722008-02-20 11:21:35 +0100701
Johannes Berg571ecf62007-07-27 15:43:22 +0200702 /* Send all buffered frames to the station */
703 while ((skb = skb_dequeue(&sta->tx_filtered)) != NULL) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200704 sent++;
Sujith8b30b1f2008-10-24 09:55:27 +0530705 skb->requeue = 1;
Johannes Berg571ecf62007-07-27 15:43:22 +0200706 dev_queue_xmit(skb);
707 }
708 while ((skb = skb_dequeue(&sta->ps_tx_buf)) != NULL) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200709 local->total_ps_buffered--;
710 sent++;
711#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -0700712 printk(KERN_DEBUG "%s: STA %pM aid %d send PS frame "
Johannes Berg133b8222008-09-16 14:18:59 +0200713 "since STA not sleeping anymore\n", sdata->dev->name,
Johannes Berg0c68ae262008-10-27 15:56:10 -0700714 sta->sta.addr, sta->sta.aid);
Johannes Berg571ecf62007-07-27 15:43:22 +0200715#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
Sujith8b30b1f2008-10-24 09:55:27 +0530716 skb->requeue = 1;
Johannes Berg571ecf62007-07-27 15:43:22 +0200717 dev_queue_xmit(skb);
718 }
719
720 return sent;
721}
722
Johannes Berg49461622008-06-30 15:10:45 +0200723static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100724ieee80211_rx_h_sta_process(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +0200725{
726 struct sta_info *sta = rx->sta;
Harvey Harrisona7767f92008-07-02 16:30:51 -0700727 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
Johannes Berg571ecf62007-07-27 15:43:22 +0200728
729 if (!sta)
Johannes Berg9ae54c82008-01-31 19:48:20 +0100730 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200731
732 /* Update last_rx only for IBSS packets which are for the current
733 * BSSID to avoid keeping the current IBSS network alive in cases where
734 * other STAs are using different BSSID. */
Johannes Berg05c914f2008-09-11 00:01:58 +0200735 if (rx->sdata->vif.type == NL80211_IFTYPE_ADHOC) {
Ron Rindjunsky71364712007-12-25 17:00:36 +0200736 u8 *bssid = ieee80211_get_bssid(hdr, rx->skb->len,
Johannes Berg05c914f2008-09-11 00:01:58 +0200737 NL80211_IFTYPE_ADHOC);
Johannes Berg571ecf62007-07-27 15:43:22 +0200738 if (compare_ether_addr(bssid, rx->sdata->u.sta.bssid) == 0)
739 sta->last_rx = jiffies;
740 } else
741 if (!is_multicast_ether_addr(hdr->addr1) ||
Johannes Berg05c914f2008-09-11 00:01:58 +0200742 rx->sdata->vif.type == NL80211_IFTYPE_STATION) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200743 /* Update last_rx only for unicast frames in order to prevent
744 * the Probe Request frames (the only broadcast frames from a
745 * STA in infrastructure mode) from keeping a connection alive.
Luis Carlos Cobo33b64eb2008-02-23 15:17:10 +0100746 * Mesh beacons will update last_rx when if they are found to
747 * match the current local configuration when processed.
Johannes Berg571ecf62007-07-27 15:43:22 +0200748 */
749 sta->last_rx = jiffies;
750 }
751
Johannes Berg5cf121c2008-02-25 16:27:43 +0100752 if (!(rx->flags & IEEE80211_RX_RA_MATCH))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100753 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200754
755 sta->rx_fragments++;
756 sta->rx_bytes += rx->skb->len;
Johannes Berg5cf121c2008-02-25 16:27:43 +0100757 sta->last_signal = rx->status->signal;
Bruno Randolf566bfe52008-05-08 19:15:40 +0200758 sta->last_qual = rx->status->qual;
Johannes Berg5cf121c2008-02-25 16:27:43 +0100759 sta->last_noise = rx->status->noise;
Johannes Berg571ecf62007-07-27 15:43:22 +0200760
Johannes Berg72eaa432008-11-26 15:02:58 +0100761 /*
762 * Change STA power saving mode only at the end of a frame
763 * exchange sequence.
764 */
Johannes Berg3e122be2008-07-09 14:40:34 +0200765 if (!ieee80211_has_morefrags(hdr->frame_control) &&
Johannes Berg05c914f2008-09-11 00:01:58 +0200766 (rx->sdata->vif.type == NL80211_IFTYPE_AP ||
767 rx->sdata->vif.type == NL80211_IFTYPE_AP_VLAN)) {
Johannes Berg72eaa432008-11-26 15:02:58 +0100768 if (test_sta_flags(sta, WLAN_STA_PS)) {
769 /*
770 * Ignore doze->wake transitions that are
771 * indicated by non-data frames, the standard
772 * is unclear here, but for example going to
773 * PS mode and then scanning would cause a
774 * doze->wake transition for the probe request,
775 * and that is clearly undesirable.
776 */
777 if (ieee80211_is_data(hdr->frame_control) &&
778 !ieee80211_has_pm(hdr->frame_control))
779 rx->sent_ps_buffered += ap_sta_ps_end(sta);
780 } else {
781 if (ieee80211_has_pm(hdr->frame_control))
782 ap_sta_ps_start(sta);
783 }
Johannes Berg571ecf62007-07-27 15:43:22 +0200784 }
785
786 /* Drop data::nullfunc frames silently, since they are used only to
787 * control station power saving mode. */
Harvey Harrisona7767f92008-07-02 16:30:51 -0700788 if (ieee80211_is_nullfunc(hdr->frame_control)) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200789 I802_DEBUG_INC(rx->local->rx_handlers_drop_nullfunc);
790 /* Update counter and free packet here to avoid counting this
791 * as a dropped packed. */
792 sta->rx_packets++;
793 dev_kfree_skb(rx->skb);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100794 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200795 }
796
Johannes Berg9ae54c82008-01-31 19:48:20 +0100797 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200798} /* ieee80211_rx_h_sta_process */
799
Johannes Berg571ecf62007-07-27 15:43:22 +0200800static inline struct ieee80211_fragment_entry *
801ieee80211_reassemble_add(struct ieee80211_sub_if_data *sdata,
802 unsigned int frag, unsigned int seq, int rx_queue,
803 struct sk_buff **skb)
804{
805 struct ieee80211_fragment_entry *entry;
806 int idx;
807
808 idx = sdata->fragment_next;
809 entry = &sdata->fragments[sdata->fragment_next++];
810 if (sdata->fragment_next >= IEEE80211_FRAGMENT_MAX)
811 sdata->fragment_next = 0;
812
813 if (!skb_queue_empty(&entry->skb_list)) {
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200814#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
Johannes Berg571ecf62007-07-27 15:43:22 +0200815 struct ieee80211_hdr *hdr =
816 (struct ieee80211_hdr *) entry->skb_list.next->data;
817 printk(KERN_DEBUG "%s: RX reassembly removed oldest "
818 "fragment entry (idx=%d age=%lu seq=%d last_frag=%d "
Johannes Berg0c68ae262008-10-27 15:56:10 -0700819 "addr1=%pM addr2=%pM\n",
Johannes Berg571ecf62007-07-27 15:43:22 +0200820 sdata->dev->name, idx,
821 jiffies - entry->first_frag_time, entry->seq,
Johannes Berg0c68ae262008-10-27 15:56:10 -0700822 entry->last_frag, hdr->addr1, hdr->addr2);
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200823#endif
Johannes Berg571ecf62007-07-27 15:43:22 +0200824 __skb_queue_purge(&entry->skb_list);
825 }
826
827 __skb_queue_tail(&entry->skb_list, *skb); /* no need for locking */
828 *skb = NULL;
829 entry->first_frag_time = jiffies;
830 entry->seq = seq;
831 entry->rx_queue = rx_queue;
832 entry->last_frag = frag;
833 entry->ccmp = 0;
834 entry->extra_len = 0;
835
836 return entry;
837}
838
839static inline struct ieee80211_fragment_entry *
840ieee80211_reassemble_find(struct ieee80211_sub_if_data *sdata,
Harvey Harrisonb73d70a2008-07-15 18:44:12 -0700841 unsigned int frag, unsigned int seq,
Johannes Berg571ecf62007-07-27 15:43:22 +0200842 int rx_queue, struct ieee80211_hdr *hdr)
843{
844 struct ieee80211_fragment_entry *entry;
845 int i, idx;
846
847 idx = sdata->fragment_next;
848 for (i = 0; i < IEEE80211_FRAGMENT_MAX; i++) {
849 struct ieee80211_hdr *f_hdr;
Johannes Berg571ecf62007-07-27 15:43:22 +0200850
851 idx--;
852 if (idx < 0)
853 idx = IEEE80211_FRAGMENT_MAX - 1;
854
855 entry = &sdata->fragments[idx];
856 if (skb_queue_empty(&entry->skb_list) || entry->seq != seq ||
857 entry->rx_queue != rx_queue ||
858 entry->last_frag + 1 != frag)
859 continue;
860
Harvey Harrisonb73d70a2008-07-15 18:44:12 -0700861 f_hdr = (struct ieee80211_hdr *)entry->skb_list.next->data;
Johannes Berg571ecf62007-07-27 15:43:22 +0200862
Harvey Harrisonb73d70a2008-07-15 18:44:12 -0700863 /*
864 * Check ftype and addresses are equal, else check next fragment
865 */
866 if (((hdr->frame_control ^ f_hdr->frame_control) &
867 cpu_to_le16(IEEE80211_FCTL_FTYPE)) ||
Johannes Berg571ecf62007-07-27 15:43:22 +0200868 compare_ether_addr(hdr->addr1, f_hdr->addr1) != 0 ||
869 compare_ether_addr(hdr->addr2, f_hdr->addr2) != 0)
870 continue;
871
S.Çağlar Onurab466232008-02-14 17:36:47 +0200872 if (time_after(jiffies, entry->first_frag_time + 2 * HZ)) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200873 __skb_queue_purge(&entry->skb_list);
874 continue;
875 }
876 return entry;
877 }
878
879 return NULL;
880}
881
Johannes Berg49461622008-06-30 15:10:45 +0200882static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100883ieee80211_rx_h_defragment(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +0200884{
885 struct ieee80211_hdr *hdr;
886 u16 sc;
Harvey Harrison358c8d92008-07-15 18:44:13 -0700887 __le16 fc;
Johannes Berg571ecf62007-07-27 15:43:22 +0200888 unsigned int frag, seq;
889 struct ieee80211_fragment_entry *entry;
890 struct sk_buff *skb;
891
Harvey Harrisonb73d70a2008-07-15 18:44:12 -0700892 hdr = (struct ieee80211_hdr *)rx->skb->data;
Harvey Harrison358c8d92008-07-15 18:44:13 -0700893 fc = hdr->frame_control;
Johannes Berg571ecf62007-07-27 15:43:22 +0200894 sc = le16_to_cpu(hdr->seq_ctrl);
895 frag = sc & IEEE80211_SCTL_FRAG;
896
Harvey Harrison358c8d92008-07-15 18:44:13 -0700897 if (likely((!ieee80211_has_morefrags(fc) && frag == 0) ||
Johannes Berg571ecf62007-07-27 15:43:22 +0200898 (rx->skb)->len < 24 ||
899 is_multicast_ether_addr(hdr->addr1))) {
900 /* not fragmented */
901 goto out;
902 }
903 I802_DEBUG_INC(rx->local->rx_handlers_fragments);
904
905 seq = (sc & IEEE80211_SCTL_SEQ) >> 4;
906
907 if (frag == 0) {
908 /* This is the first fragment of a new frame. */
909 entry = ieee80211_reassemble_add(rx->sdata, frag, seq,
Johannes Berg5cf121c2008-02-25 16:27:43 +0100910 rx->queue, &(rx->skb));
Johannes Berg8f20fc22007-08-28 17:01:54 -0400911 if (rx->key && rx->key->conf.alg == ALG_CCMP &&
Harvey Harrison358c8d92008-07-15 18:44:13 -0700912 ieee80211_has_protected(fc)) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200913 /* Store CCMP PN so that we can verify that the next
914 * fragment has a sequential PN value. */
915 entry->ccmp = 1;
916 memcpy(entry->last_pn,
Johannes Berg5cf121c2008-02-25 16:27:43 +0100917 rx->key->u.ccmp.rx_pn[rx->queue],
Johannes Berg571ecf62007-07-27 15:43:22 +0200918 CCMP_PN_LEN);
919 }
Johannes Berg9ae54c82008-01-31 19:48:20 +0100920 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200921 }
922
923 /* This is a fragment for a frame that should already be pending in
924 * fragment cache. Add this fragment to the end of the pending entry.
925 */
Harvey Harrisonb73d70a2008-07-15 18:44:12 -0700926 entry = ieee80211_reassemble_find(rx->sdata, frag, seq, rx->queue, hdr);
Johannes Berg571ecf62007-07-27 15:43:22 +0200927 if (!entry) {
928 I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
Johannes Berge4c26ad2008-01-31 19:48:21 +0100929 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +0200930 }
931
932 /* Verify that MPDUs within one MSDU have sequential PN values.
933 * (IEEE 802.11i, 8.3.3.4.5) */
934 if (entry->ccmp) {
935 int i;
936 u8 pn[CCMP_PN_LEN], *rpn;
Johannes Berg8f20fc22007-08-28 17:01:54 -0400937 if (!rx->key || rx->key->conf.alg != ALG_CCMP)
Johannes Berge4c26ad2008-01-31 19:48:21 +0100938 return RX_DROP_UNUSABLE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200939 memcpy(pn, entry->last_pn, CCMP_PN_LEN);
940 for (i = CCMP_PN_LEN - 1; i >= 0; i--) {
941 pn[i]++;
942 if (pn[i])
943 break;
944 }
Johannes Berg5cf121c2008-02-25 16:27:43 +0100945 rpn = rx->key->u.ccmp.rx_pn[rx->queue];
Johannes Bergf4ea83d2008-06-30 15:10:46 +0200946 if (memcmp(pn, rpn, CCMP_PN_LEN))
Johannes Berge4c26ad2008-01-31 19:48:21 +0100947 return RX_DROP_UNUSABLE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200948 memcpy(entry->last_pn, pn, CCMP_PN_LEN);
949 }
950
Harvey Harrison358c8d92008-07-15 18:44:13 -0700951 skb_pull(rx->skb, ieee80211_hdrlen(fc));
Johannes Berg571ecf62007-07-27 15:43:22 +0200952 __skb_queue_tail(&entry->skb_list, rx->skb);
953 entry->last_frag = frag;
954 entry->extra_len += rx->skb->len;
Harvey Harrison358c8d92008-07-15 18:44:13 -0700955 if (ieee80211_has_morefrags(fc)) {
Johannes Berg571ecf62007-07-27 15:43:22 +0200956 rx->skb = NULL;
Johannes Berg9ae54c82008-01-31 19:48:20 +0100957 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200958 }
959
960 rx->skb = __skb_dequeue(&entry->skb_list);
961 if (skb_tailroom(rx->skb) < entry->extra_len) {
962 I802_DEBUG_INC(rx->local->rx_expand_skb_head2);
963 if (unlikely(pskb_expand_head(rx->skb, 0, entry->extra_len,
964 GFP_ATOMIC))) {
965 I802_DEBUG_INC(rx->local->rx_handlers_drop_defrag);
966 __skb_queue_purge(&entry->skb_list);
Johannes Berge4c26ad2008-01-31 19:48:21 +0100967 return RX_DROP_UNUSABLE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200968 }
969 }
970 while ((skb = __skb_dequeue(&entry->skb_list))) {
971 memcpy(skb_put(rx->skb, skb->len), skb->data, skb->len);
972 dev_kfree_skb(skb);
973 }
974
975 /* Complete frame has been reassembled - process it now */
Johannes Berg5cf121c2008-02-25 16:27:43 +0100976 rx->flags |= IEEE80211_RX_FRAGMENTED;
Johannes Berg571ecf62007-07-27 15:43:22 +0200977
978 out:
979 if (rx->sta)
980 rx->sta->rx_packets++;
981 if (is_multicast_ether_addr(hdr->addr1))
982 rx->local->dot11MulticastReceivedFrameCount++;
983 else
984 ieee80211_led_rx(rx->local);
Johannes Berg9ae54c82008-01-31 19:48:20 +0100985 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200986}
987
Johannes Berg49461622008-06-30 15:10:45 +0200988static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +0100989ieee80211_rx_h_ps_poll(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +0200990{
Ron Rindjunsky98f0b0a2007-12-18 17:23:53 +0200991 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(rx->dev);
Johannes Berg571ecf62007-07-27 15:43:22 +0200992 struct sk_buff *skb;
993 int no_pending_pkts;
Harvey Harrison358c8d92008-07-15 18:44:13 -0700994 __le16 fc = ((struct ieee80211_hdr *)rx->skb->data)->frame_control;
Johannes Berg571ecf62007-07-27 15:43:22 +0200995
Harvey Harrison358c8d92008-07-15 18:44:13 -0700996 if (likely(!rx->sta || !ieee80211_is_pspoll(fc) ||
Johannes Berg5cf121c2008-02-25 16:27:43 +0100997 !(rx->flags & IEEE80211_RX_RA_MATCH)))
Johannes Berg9ae54c82008-01-31 19:48:20 +0100998 return RX_CONTINUE;
Johannes Berg571ecf62007-07-27 15:43:22 +0200999
Johannes Berg05c914f2008-09-11 00:01:58 +02001000 if ((sdata->vif.type != NL80211_IFTYPE_AP) &&
1001 (sdata->vif.type != NL80211_IFTYPE_AP_VLAN))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001002 return RX_DROP_UNUSABLE;
Ron Rindjunsky98f0b0a2007-12-18 17:23:53 +02001003
Johannes Berg571ecf62007-07-27 15:43:22 +02001004 skb = skb_dequeue(&rx->sta->tx_filtered);
1005 if (!skb) {
1006 skb = skb_dequeue(&rx->sta->ps_tx_buf);
1007 if (skb)
1008 rx->local->total_ps_buffered--;
1009 }
1010 no_pending_pkts = skb_queue_empty(&rx->sta->tx_filtered) &&
1011 skb_queue_empty(&rx->sta->ps_tx_buf);
1012
1013 if (skb) {
1014 struct ieee80211_hdr *hdr =
1015 (struct ieee80211_hdr *) skb->data;
1016
Johannes Berg4a9a66e2008-02-19 11:31:14 +01001017 /*
1018 * Tell TX path to send one frame even though the STA may
1019 * still remain is PS mode after this frame exchange.
1020 */
Johannes Berg07346f812008-05-03 01:02:02 +02001021 set_sta_flags(rx->sta, WLAN_STA_PSPOLL);
Johannes Berg571ecf62007-07-27 15:43:22 +02001022
1023#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Johannes Berg0c68ae262008-10-27 15:56:10 -07001024 printk(KERN_DEBUG "STA %pM aid %d: PS Poll (entries after %d)\n",
1025 rx->sta->sta.addr, rx->sta->sta.aid,
Johannes Berg571ecf62007-07-27 15:43:22 +02001026 skb_queue_len(&rx->sta->ps_tx_buf));
1027#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
1028
1029 /* Use MoreData flag to indicate whether there are more
1030 * buffered frames for this STA */
Johannes Berg836341a2008-02-20 02:07:21 +01001031 if (no_pending_pkts)
Johannes Berg571ecf62007-07-27 15:43:22 +02001032 hdr->frame_control &= cpu_to_le16(~IEEE80211_FCTL_MOREDATA);
Johannes Berg836341a2008-02-20 02:07:21 +01001033 else
Johannes Berg571ecf62007-07-27 15:43:22 +02001034 hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_MOREDATA);
1035
1036 dev_queue_xmit(skb);
1037
Johannes Berg004c8722008-02-20 11:21:35 +01001038 if (no_pending_pkts)
1039 sta_info_clear_tim_bit(rx->sta);
Johannes Berg571ecf62007-07-27 15:43:22 +02001040#ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
Johannes Berg5cf121c2008-02-25 16:27:43 +01001041 } else if (!rx->sent_ps_buffered) {
Johannes Berg004c8722008-02-20 11:21:35 +01001042 /*
1043 * FIXME: This can be the result of a race condition between
1044 * us expiring a frame and the station polling for it.
1045 * Should we send it a null-func frame indicating we
1046 * have nothing buffered for it?
1047 */
Johannes Berg0c68ae262008-10-27 15:56:10 -07001048 printk(KERN_DEBUG "%s: STA %pM sent PS Poll even "
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001049 "though there are no buffered frames for it\n",
Johannes Berg0c68ae262008-10-27 15:56:10 -07001050 rx->dev->name, rx->sta->sta.addr);
Johannes Berg571ecf62007-07-27 15:43:22 +02001051#endif /* CONFIG_MAC80211_VERBOSE_PS_DEBUG */
Johannes Berg571ecf62007-07-27 15:43:22 +02001052 }
1053
Johannes Berg9ae54c82008-01-31 19:48:20 +01001054 /* Free PS Poll skb here instead of returning RX_DROP that would
Johannes Berg571ecf62007-07-27 15:43:22 +02001055 * count as an dropped frame. */
1056 dev_kfree_skb(rx->skb);
1057
Johannes Berg9ae54c82008-01-31 19:48:20 +01001058 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001059}
1060
Johannes Berg49461622008-06-30 15:10:45 +02001061static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001062ieee80211_rx_h_remove_qos_control(struct ieee80211_rx_data *rx)
Johannes Berg6e0d1142007-07-27 15:43:22 +02001063{
Johannes Berg6e0d1142007-07-27 15:43:22 +02001064 u8 *data = rx->skb->data;
Harvey Harrison238f74a2008-07-02 11:05:34 -07001065 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)data;
Johannes Berg6e0d1142007-07-27 15:43:22 +02001066
Harvey Harrison238f74a2008-07-02 11:05:34 -07001067 if (!ieee80211_is_data_qos(hdr->frame_control))
Johannes Berg9ae54c82008-01-31 19:48:20 +01001068 return RX_CONTINUE;
Johannes Berg6e0d1142007-07-27 15:43:22 +02001069
1070 /* remove the qos control field, update frame type and meta-data */
Harvey Harrison238f74a2008-07-02 11:05:34 -07001071 memmove(data + IEEE80211_QOS_CTL_LEN, data,
1072 ieee80211_hdrlen(hdr->frame_control) - IEEE80211_QOS_CTL_LEN);
1073 hdr = (struct ieee80211_hdr *)skb_pull(rx->skb, IEEE80211_QOS_CTL_LEN);
Johannes Berg6e0d1142007-07-27 15:43:22 +02001074 /* change frame type to non QOS */
Harvey Harrison238f74a2008-07-02 11:05:34 -07001075 hdr->frame_control &= ~cpu_to_le16(IEEE80211_STYPE_QOS_DATA);
Johannes Berg6e0d1142007-07-27 15:43:22 +02001076
Johannes Berg9ae54c82008-01-31 19:48:20 +01001077 return RX_CONTINUE;
Johannes Berg6e0d1142007-07-27 15:43:22 +02001078}
1079
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001080static int
Johannes Berg5cf121c2008-02-25 16:27:43 +01001081ieee80211_802_1x_port_control(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001082{
Johannes Berg07346f812008-05-03 01:02:02 +02001083 if (unlikely(!rx->sta ||
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001084 !test_sta_flags(rx->sta, WLAN_STA_AUTHORIZED)))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001085 return -EACCES;
Johannes Berg571ecf62007-07-27 15:43:22 +02001086
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001087 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02001088}
1089
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001090static int
Harvey Harrison358c8d92008-07-15 18:44:13 -07001091ieee80211_drop_unencrypted(struct ieee80211_rx_data *rx, __le16 fc)
Johannes Berg571ecf62007-07-27 15:43:22 +02001092{
Johannes Berg3017b802007-08-28 17:01:53 -04001093 /*
Johannes Berg7848ba72007-09-14 11:10:25 -04001094 * Pass through unencrypted frames if the hardware has
1095 * decrypted them already.
Johannes Berg3017b802007-08-28 17:01:53 -04001096 */
Johannes Berg5cf121c2008-02-25 16:27:43 +01001097 if (rx->status->flag & RX_FLAG_DECRYPTED)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001098 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02001099
1100 /* Drop unencrypted frames if key is set. */
Harvey Harrison358c8d92008-07-15 18:44:13 -07001101 if (unlikely(!ieee80211_has_protected(fc) &&
1102 !ieee80211_is_nullfunc(fc) &&
Johannes Bergb3fc9c62008-04-13 10:12:47 +02001103 (rx->key || rx->sdata->drop_unencrypted)))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001104 return -EACCES;
Johannes Bergb3fc9c62008-04-13 10:12:47 +02001105
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001106 return 0;
Johannes Berg571ecf62007-07-27 15:43:22 +02001107}
1108
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001109static int
Johannes Berg5cf121c2008-02-25 16:27:43 +01001110ieee80211_data_to_8023(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001111{
1112 struct net_device *dev = rx->dev;
Johannes Berg571ecf62007-07-27 15:43:22 +02001113 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) rx->skb->data;
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001114 u16 hdrlen, ethertype;
Johannes Berg571ecf62007-07-27 15:43:22 +02001115 u8 *payload;
1116 u8 dst[ETH_ALEN];
Senthil Balasubramanianc97c23e2008-05-28 23:15:32 +05301117 u8 src[ETH_ALEN] __aligned(2);
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001118 struct sk_buff *skb = rx->skb;
Johannes Berg571ecf62007-07-27 15:43:22 +02001119 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
1120
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001121 if (unlikely(!ieee80211_is_data_present(hdr->frame_control)))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001122 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001123
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001124 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berg571ecf62007-07-27 15:43:22 +02001125
1126 /* convert IEEE 802.11 header + possible LLC headers into Ethernet
1127 * header
1128 * IEEE 802.11 address fields:
1129 * ToDS FromDS Addr1 Addr2 Addr3 Addr4
1130 * 0 0 DA SA BSSID n/a
1131 * 0 1 DA BSSID SA n/a
1132 * 1 0 BSSID SA DA n/a
1133 * 1 1 RA TA DA SA
1134 */
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001135 memcpy(dst, ieee80211_get_DA(hdr), ETH_ALEN);
1136 memcpy(src, ieee80211_get_SA(hdr), ETH_ALEN);
Johannes Berg571ecf62007-07-27 15:43:22 +02001137
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001138 switch (hdr->frame_control &
1139 cpu_to_le16(IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) {
1140 case __constant_cpu_to_le16(IEEE80211_FCTL_TODS):
Johannes Berg05c914f2008-09-11 00:01:58 +02001141 if (unlikely(sdata->vif.type != NL80211_IFTYPE_AP &&
1142 sdata->vif.type != NL80211_IFTYPE_AP_VLAN))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001143 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001144 break;
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001145 case __constant_cpu_to_le16(IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS):
Johannes Berg05c914f2008-09-11 00:01:58 +02001146 if (unlikely(sdata->vif.type != NL80211_IFTYPE_WDS &&
1147 sdata->vif.type != NL80211_IFTYPE_MESH_POINT))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001148 return -1;
YanBo79617de2008-09-22 13:30:32 +08001149 if (ieee80211_vif_is_mesh(&sdata->vif)) {
1150 struct ieee80211s_hdr *meshdr = (struct ieee80211s_hdr *)
1151 (skb->data + hdrlen);
1152 hdrlen += ieee80211_get_mesh_hdrlen(meshdr);
1153 if (meshdr->flags & MESH_FLAGS_AE_A5_A6) {
1154 memcpy(dst, meshdr->eaddr1, ETH_ALEN);
1155 memcpy(src, meshdr->eaddr2, ETH_ALEN);
1156 }
1157 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001158 break;
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001159 case __constant_cpu_to_le16(IEEE80211_FCTL_FROMDS):
Johannes Berg05c914f2008-09-11 00:01:58 +02001160 if (sdata->vif.type != NL80211_IFTYPE_STATION ||
John W. Linvilleb3316152007-08-28 17:01:55 -04001161 (is_multicast_ether_addr(dst) &&
1162 !compare_ether_addr(src, dev->dev_addr)))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001163 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001164 break;
Harvey Harrisonb73d70a2008-07-15 18:44:12 -07001165 case __constant_cpu_to_le16(0):
Johannes Berg05c914f2008-09-11 00:01:58 +02001166 if (sdata->vif.type != NL80211_IFTYPE_ADHOC)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001167 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001168 break;
1169 }
1170
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001171 if (unlikely(skb->len - hdrlen < 8))
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001172 return -1;
Johannes Berg571ecf62007-07-27 15:43:22 +02001173
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001174 payload = skb->data + hdrlen;
Johannes Berg571ecf62007-07-27 15:43:22 +02001175 ethertype = (payload[6] << 8) | payload[7];
1176
1177 if (likely((compare_ether_addr(payload, rfc1042_header) == 0 &&
1178 ethertype != ETH_P_AARP && ethertype != ETH_P_IPX) ||
1179 compare_ether_addr(payload, bridge_tunnel_header) == 0)) {
1180 /* remove RFC1042 or Bridge-Tunnel encapsulation and
1181 * replace EtherType */
1182 skb_pull(skb, hdrlen + 6);
1183 memcpy(skb_push(skb, ETH_ALEN), src, ETH_ALEN);
1184 memcpy(skb_push(skb, ETH_ALEN), dst, ETH_ALEN);
1185 } else {
1186 struct ethhdr *ehdr;
1187 __be16 len;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001188
Johannes Berg571ecf62007-07-27 15:43:22 +02001189 skb_pull(skb, hdrlen);
1190 len = htons(skb->len);
1191 ehdr = (struct ethhdr *) skb_push(skb, sizeof(struct ethhdr));
1192 memcpy(ehdr->h_dest, dst, ETH_ALEN);
1193 memcpy(ehdr->h_source, src, ETH_ALEN);
1194 ehdr->h_proto = len;
1195 }
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001196 return 0;
1197}
Johannes Berg571ecf62007-07-27 15:43:22 +02001198
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001199/*
1200 * requires that rx->skb is a frame with ethernet header
1201 */
Harvey Harrison358c8d92008-07-15 18:44:13 -07001202static bool ieee80211_frame_allowed(struct ieee80211_rx_data *rx, __le16 fc)
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001203{
Senthil Balasubramanianc97c23e2008-05-28 23:15:32 +05301204 static const u8 pae_group_addr[ETH_ALEN] __aligned(2)
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001205 = { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x03 };
1206 struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
1207
1208 /*
1209 * Allow EAPOL frames to us/the PAE group address regardless
1210 * of whether the frame was encrypted or not.
1211 */
1212 if (ehdr->h_proto == htons(ETH_P_PAE) &&
1213 (compare_ether_addr(ehdr->h_dest, rx->dev->dev_addr) == 0 ||
1214 compare_ether_addr(ehdr->h_dest, pae_group_addr) == 0))
1215 return true;
1216
1217 if (ieee80211_802_1x_port_control(rx) ||
Harvey Harrison358c8d92008-07-15 18:44:13 -07001218 ieee80211_drop_unencrypted(rx, fc))
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001219 return false;
1220
1221 return true;
1222}
1223
1224/*
1225 * requires that rx->skb is a frame with ethernet header
1226 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001227static void
Johannes Berg5cf121c2008-02-25 16:27:43 +01001228ieee80211_deliver_skb(struct ieee80211_rx_data *rx)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001229{
1230 struct net_device *dev = rx->dev;
1231 struct ieee80211_local *local = rx->local;
1232 struct sk_buff *skb, *xmit_skb;
1233 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001234 struct ethhdr *ehdr = (struct ethhdr *) rx->skb->data;
1235 struct sta_info *dsta;
Johannes Berg571ecf62007-07-27 15:43:22 +02001236
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001237 skb = rx->skb;
1238 xmit_skb = NULL;
Johannes Berg571ecf62007-07-27 15:43:22 +02001239
Johannes Berg05c914f2008-09-11 00:01:58 +02001240 if ((sdata->vif.type == NL80211_IFTYPE_AP ||
1241 sdata->vif.type == NL80211_IFTYPE_AP_VLAN) &&
Johannes Berg213cd112008-09-11 00:01:54 +02001242 !(sdata->flags & IEEE80211_SDATA_DONT_BRIDGE_PACKETS) &&
Johannes Berg5cf121c2008-02-25 16:27:43 +01001243 (rx->flags & IEEE80211_RX_RA_MATCH)) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001244 if (is_multicast_ether_addr(ehdr->h_dest)) {
1245 /*
1246 * send multicast frames both to higher layers in
1247 * local net stack and back to the wireless medium
1248 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001249 xmit_skb = skb_copy(skb, GFP_ATOMIC);
1250 if (!xmit_skb && net_ratelimit())
Johannes Berg571ecf62007-07-27 15:43:22 +02001251 printk(KERN_DEBUG "%s: failed to clone "
1252 "multicast frame\n", dev->name);
1253 } else {
Johannes Berg571ecf62007-07-27 15:43:22 +02001254 dsta = sta_info_get(local, skb->data);
Johannes Bergd0709a62008-02-25 16:27:46 +01001255 if (dsta && dsta->sdata->dev == dev) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001256 /*
1257 * The destination station is associated to
1258 * this AP (in this VLAN), so send the frame
1259 * directly to it and do not pass it to local
1260 * net stack.
Johannes Berg571ecf62007-07-27 15:43:22 +02001261 */
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001262 xmit_skb = skb;
Johannes Berg571ecf62007-07-27 15:43:22 +02001263 skb = NULL;
1264 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001265 }
1266 }
1267
1268 if (skb) {
1269 /* deliver to local stack */
1270 skb->protocol = eth_type_trans(skb, dev);
1271 memset(skb->cb, 0, sizeof(skb->cb));
1272 netif_rx(skb);
1273 }
1274
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001275 if (xmit_skb) {
Johannes Berg571ecf62007-07-27 15:43:22 +02001276 /* send to wireless media */
YOSHIFUJI Hideakif831e902007-12-12 03:54:23 +09001277 xmit_skb->protocol = htons(ETH_P_802_3);
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001278 skb_reset_network_header(xmit_skb);
1279 skb_reset_mac_header(xmit_skb);
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001280 dev_queue_xmit(xmit_skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02001281 }
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001282}
1283
Johannes Berg49461622008-06-30 15:10:45 +02001284static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001285ieee80211_rx_h_amsdu(struct ieee80211_rx_data *rx)
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001286{
1287 struct net_device *dev = rx->dev;
1288 struct ieee80211_local *local = rx->local;
Harvey Harrison358c8d92008-07-15 18:44:13 -07001289 u16 ethertype;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001290 u8 *payload;
1291 struct sk_buff *skb = rx->skb, *frame = NULL;
Harvey Harrison358c8d92008-07-15 18:44:13 -07001292 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
1293 __le16 fc = hdr->frame_control;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001294 const struct ethhdr *eth;
1295 int remaining, err;
1296 u8 dst[ETH_ALEN];
1297 u8 src[ETH_ALEN];
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001298
Harvey Harrison358c8d92008-07-15 18:44:13 -07001299 if (unlikely(!ieee80211_is_data(fc)))
Johannes Berg9ae54c82008-01-31 19:48:20 +01001300 return RX_CONTINUE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001301
Harvey Harrison358c8d92008-07-15 18:44:13 -07001302 if (unlikely(!ieee80211_is_data_present(fc)))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001303 return RX_DROP_MONITOR;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001304
Johannes Berg5cf121c2008-02-25 16:27:43 +01001305 if (!(rx->flags & IEEE80211_RX_AMSDU))
Johannes Berg9ae54c82008-01-31 19:48:20 +01001306 return RX_CONTINUE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001307
1308 err = ieee80211_data_to_8023(rx);
1309 if (unlikely(err))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001310 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001311
1312 skb->dev = dev;
1313
1314 dev->stats.rx_packets++;
1315 dev->stats.rx_bytes += skb->len;
1316
1317 /* skip the wrapping header */
1318 eth = (struct ethhdr *) skb_pull(skb, sizeof(struct ethhdr));
1319 if (!eth)
Johannes Berge4c26ad2008-01-31 19:48:21 +01001320 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001321
1322 while (skb != frame) {
1323 u8 padding;
1324 __be16 len = eth->h_proto;
1325 unsigned int subframe_len = sizeof(struct ethhdr) + ntohs(len);
1326
1327 remaining = skb->len;
1328 memcpy(dst, eth->h_dest, ETH_ALEN);
1329 memcpy(src, eth->h_source, ETH_ALEN);
1330
1331 padding = ((4 - subframe_len) & 0x3);
1332 /* the last MSDU has no padding */
Johannes Bergf4ea83d2008-06-30 15:10:46 +02001333 if (subframe_len > remaining)
Johannes Berge4c26ad2008-01-31 19:48:21 +01001334 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001335
1336 skb_pull(skb, sizeof(struct ethhdr));
1337 /* if last subframe reuse skb */
1338 if (remaining <= subframe_len + padding)
1339 frame = skb;
1340 else {
1341 frame = dev_alloc_skb(local->hw.extra_tx_headroom +
1342 subframe_len);
1343
1344 if (frame == NULL)
Johannes Berge4c26ad2008-01-31 19:48:21 +01001345 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001346
1347 skb_reserve(frame, local->hw.extra_tx_headroom +
1348 sizeof(struct ethhdr));
1349 memcpy(skb_put(frame, ntohs(len)), skb->data,
1350 ntohs(len));
1351
1352 eth = (struct ethhdr *) skb_pull(skb, ntohs(len) +
1353 padding);
1354 if (!eth) {
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001355 dev_kfree_skb(frame);
Johannes Berge4c26ad2008-01-31 19:48:21 +01001356 return RX_DROP_UNUSABLE;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001357 }
1358 }
1359
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001360 skb_reset_network_header(frame);
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001361 frame->dev = dev;
1362 frame->priority = skb->priority;
1363 rx->skb = frame;
1364
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001365 payload = frame->data;
1366 ethertype = (payload[6] << 8) | payload[7];
1367
1368 if (likely((compare_ether_addr(payload, rfc1042_header) == 0 &&
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001369 ethertype != ETH_P_AARP && ethertype != ETH_P_IPX) ||
1370 compare_ether_addr(payload,
1371 bridge_tunnel_header) == 0)) {
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001372 /* remove RFC1042 or Bridge-Tunnel
1373 * encapsulation and replace EtherType */
1374 skb_pull(frame, 6);
1375 memcpy(skb_push(frame, ETH_ALEN), src, ETH_ALEN);
1376 memcpy(skb_push(frame, ETH_ALEN), dst, ETH_ALEN);
1377 } else {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001378 memcpy(skb_push(frame, sizeof(__be16)),
1379 &len, sizeof(__be16));
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001380 memcpy(skb_push(frame, ETH_ALEN), src, ETH_ALEN);
1381 memcpy(skb_push(frame, ETH_ALEN), dst, ETH_ALEN);
1382 }
1383
Harvey Harrison358c8d92008-07-15 18:44:13 -07001384 if (!ieee80211_frame_allowed(rx, fc)) {
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001385 if (skb == frame) /* last frame */
Johannes Berge4c26ad2008-01-31 19:48:21 +01001386 return RX_DROP_UNUSABLE;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001387 dev_kfree_skb(frame);
1388 continue;
1389 }
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001390
1391 ieee80211_deliver_skb(rx);
1392 }
1393
Johannes Berg9ae54c82008-01-31 19:48:20 +01001394 return RX_QUEUED;
Ron Rindjunskyfd4c7f22007-11-26 16:14:33 +02001395}
1396
Ingo Molnarbf94e172008-10-12 23:51:38 -07001397#ifdef CONFIG_MAC80211_MESH
Davide Pesaventob0dee572008-09-27 17:29:12 +02001398static ieee80211_rx_result
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001399ieee80211_rx_h_mesh_fwding(struct ieee80211_rx_data *rx)
1400{
1401 struct ieee80211_hdr *hdr;
1402 struct ieee80211s_hdr *mesh_hdr;
1403 unsigned int hdrlen;
1404 struct sk_buff *skb = rx->skb, *fwd_skb;
1405
1406 hdr = (struct ieee80211_hdr *) skb->data;
1407 hdrlen = ieee80211_hdrlen(hdr->frame_control);
1408 mesh_hdr = (struct ieee80211s_hdr *) (skb->data + hdrlen);
1409
1410 if (!ieee80211_is_data(hdr->frame_control))
1411 return RX_CONTINUE;
1412
1413 if (!mesh_hdr->ttl)
1414 /* illegal frame */
1415 return RX_DROP_MONITOR;
1416
YanBo79617de2008-09-22 13:30:32 +08001417 if (mesh_hdr->flags & MESH_FLAGS_AE_A5_A6){
1418 struct ieee80211_sub_if_data *sdata;
1419 struct mesh_path *mppath;
1420
1421 sdata = IEEE80211_DEV_TO_SUB_IF(rx->dev);
1422 rcu_read_lock();
1423 mppath = mpp_path_lookup(mesh_hdr->eaddr2, sdata);
1424 if (!mppath) {
1425 mpp_path_add(mesh_hdr->eaddr2, hdr->addr4, sdata);
1426 } else {
1427 spin_lock_bh(&mppath->state_lock);
1428 mppath->exp_time = jiffies;
1429 if (compare_ether_addr(mppath->mpp, hdr->addr4) != 0)
1430 memcpy(mppath->mpp, hdr->addr4, ETH_ALEN);
1431 spin_unlock_bh(&mppath->state_lock);
1432 }
1433 rcu_read_unlock();
1434 }
1435
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001436 if (compare_ether_addr(rx->dev->dev_addr, hdr->addr3) == 0)
1437 return RX_CONTINUE;
1438
1439 mesh_hdr->ttl--;
1440
1441 if (rx->flags & IEEE80211_RX_RA_MATCH) {
1442 if (!mesh_hdr->ttl)
Johannes Berg472dbc42008-09-11 00:01:49 +02001443 IEEE80211_IFSTA_MESH_CTR_INC(&rx->sdata->u.mesh,
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001444 dropped_frames_ttl);
1445 else {
1446 struct ieee80211_hdr *fwd_hdr;
1447 fwd_skb = skb_copy(skb, GFP_ATOMIC);
1448
1449 if (!fwd_skb && net_ratelimit())
1450 printk(KERN_DEBUG "%s: failed to clone mesh frame\n",
1451 rx->dev->name);
1452
1453 fwd_hdr = (struct ieee80211_hdr *) fwd_skb->data;
1454 /*
1455 * Save TA to addr1 to send TA a path error if a
1456 * suitable next hop is not found
1457 */
1458 memcpy(fwd_hdr->addr1, fwd_hdr->addr2, ETH_ALEN);
1459 memcpy(fwd_hdr->addr2, rx->dev->dev_addr, ETH_ALEN);
1460 fwd_skb->dev = rx->local->mdev;
1461 fwd_skb->iif = rx->dev->ifindex;
1462 dev_queue_xmit(fwd_skb);
1463 }
1464 }
1465
1466 if (is_multicast_ether_addr(hdr->addr3) ||
1467 rx->dev->flags & IFF_PROMISC)
1468 return RX_CONTINUE;
1469 else
1470 return RX_DROP_MONITOR;
1471}
Ingo Molnarbf94e172008-10-12 23:51:38 -07001472#endif
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001473
1474static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001475ieee80211_rx_h_data(struct ieee80211_rx_data *rx)
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001476{
1477 struct net_device *dev = rx->dev;
Harvey Harrison358c8d92008-07-15 18:44:13 -07001478 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
1479 __le16 fc = hdr->frame_control;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001480 int err;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001481
Harvey Harrison358c8d92008-07-15 18:44:13 -07001482 if (unlikely(!ieee80211_is_data(hdr->frame_control)))
Johannes Berg9ae54c82008-01-31 19:48:20 +01001483 return RX_CONTINUE;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001484
Harvey Harrison358c8d92008-07-15 18:44:13 -07001485 if (unlikely(!ieee80211_is_data_present(hdr->frame_control)))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001486 return RX_DROP_MONITOR;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001487
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001488 err = ieee80211_data_to_8023(rx);
1489 if (unlikely(err))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001490 return RX_DROP_UNUSABLE;
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001491
Harvey Harrison358c8d92008-07-15 18:44:13 -07001492 if (!ieee80211_frame_allowed(rx, fc))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001493 return RX_DROP_MONITOR;
Johannes Bergce3edf6d02007-12-19 01:31:22 +01001494
Ron Rindjunsky76ee65b2007-11-22 19:49:12 +02001495 rx->skb->dev = dev;
1496
1497 dev->stats.rx_packets++;
1498 dev->stats.rx_bytes += rx->skb->len;
1499
1500 ieee80211_deliver_skb(rx);
Johannes Berg571ecf62007-07-27 15:43:22 +02001501
Johannes Berg9ae54c82008-01-31 19:48:20 +01001502 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001503}
1504
Johannes Berg49461622008-06-30 15:10:45 +02001505static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001506ieee80211_rx_h_ctrl(struct ieee80211_rx_data *rx)
Ron Rindjunsky71364712007-12-25 17:00:36 +02001507{
1508 struct ieee80211_local *local = rx->local;
1509 struct ieee80211_hw *hw = &local->hw;
1510 struct sk_buff *skb = rx->skb;
Harvey Harrisona7767f92008-07-02 16:30:51 -07001511 struct ieee80211_bar *bar = (struct ieee80211_bar *)skb->data;
Ron Rindjunsky71364712007-12-25 17:00:36 +02001512 struct tid_ampdu_rx *tid_agg_rx;
1513 u16 start_seq_num;
1514 u16 tid;
1515
Harvey Harrisona7767f92008-07-02 16:30:51 -07001516 if (likely(!ieee80211_is_ctl(bar->frame_control)))
Johannes Berg9ae54c82008-01-31 19:48:20 +01001517 return RX_CONTINUE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02001518
Harvey Harrisona7767f92008-07-02 16:30:51 -07001519 if (ieee80211_is_back_req(bar->frame_control)) {
Ron Rindjunsky71364712007-12-25 17:00:36 +02001520 if (!rx->sta)
Johannes Berg9ae54c82008-01-31 19:48:20 +01001521 return RX_CONTINUE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02001522 tid = le16_to_cpu(bar->control) >> 12;
Ron Rindjunskycee24a32008-03-26 20:36:03 +02001523 if (rx->sta->ampdu_mlme.tid_state_rx[tid]
1524 != HT_AGG_STATE_OPERATIONAL)
Johannes Berg9ae54c82008-01-31 19:48:20 +01001525 return RX_CONTINUE;
Ron Rindjunskycee24a32008-03-26 20:36:03 +02001526 tid_agg_rx = rx->sta->ampdu_mlme.tid_rx[tid];
Ron Rindjunsky71364712007-12-25 17:00:36 +02001527
1528 start_seq_num = le16_to_cpu(bar->start_seq_num) >> 4;
1529
1530 /* reset session timer */
1531 if (tid_agg_rx->timeout) {
1532 unsigned long expires =
1533 jiffies + (tid_agg_rx->timeout / 1000) * HZ;
1534 mod_timer(&tid_agg_rx->session_timer, expires);
1535 }
1536
1537 /* manage reordering buffer according to requested */
1538 /* sequence number */
1539 rcu_read_lock();
1540 ieee80211_sta_manage_reorder_buf(hw, tid_agg_rx, NULL,
1541 start_seq_num, 1);
1542 rcu_read_unlock();
Johannes Berge4c26ad2008-01-31 19:48:21 +01001543 return RX_DROP_UNUSABLE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02001544 }
1545
Johannes Berg9ae54c82008-01-31 19:48:20 +01001546 return RX_CONTINUE;
Ron Rindjunsky71364712007-12-25 17:00:36 +02001547}
1548
Johannes Berg49461622008-06-30 15:10:45 +02001549static ieee80211_rx_result debug_noinline
Johannes Bergde1ede72008-09-09 14:42:50 +02001550ieee80211_rx_h_action(struct ieee80211_rx_data *rx)
1551{
1552 struct ieee80211_local *local = rx->local;
1553 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(rx->dev);
1554 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) rx->skb->data;
1555 int len = rx->skb->len;
1556
1557 if (!ieee80211_is_action(mgmt->frame_control))
1558 return RX_CONTINUE;
1559
1560 if (!rx->sta)
1561 return RX_DROP_MONITOR;
1562
1563 if (!(rx->flags & IEEE80211_RX_RA_MATCH))
1564 return RX_DROP_MONITOR;
1565
1566 /* all categories we currently handle have action_code */
1567 if (len < IEEE80211_MIN_ACTION_SIZE + 1)
1568 return RX_DROP_MONITOR;
1569
Johannes Bergde1ede72008-09-09 14:42:50 +02001570 switch (mgmt->u.action.category) {
1571 case WLAN_CATEGORY_BACK:
1572 switch (mgmt->u.action.u.addba_req.action_code) {
1573 case WLAN_ACTION_ADDBA_REQ:
1574 if (len < (IEEE80211_MIN_ACTION_SIZE +
1575 sizeof(mgmt->u.action.u.addba_req)))
1576 return RX_DROP_MONITOR;
1577 ieee80211_process_addba_request(local, rx->sta, mgmt, len);
1578 break;
1579 case WLAN_ACTION_ADDBA_RESP:
1580 if (len < (IEEE80211_MIN_ACTION_SIZE +
1581 sizeof(mgmt->u.action.u.addba_resp)))
1582 return RX_DROP_MONITOR;
1583 ieee80211_process_addba_resp(local, rx->sta, mgmt, len);
1584 break;
1585 case WLAN_ACTION_DELBA:
1586 if (len < (IEEE80211_MIN_ACTION_SIZE +
1587 sizeof(mgmt->u.action.u.delba)))
1588 return RX_DROP_MONITOR;
1589 ieee80211_process_delba(sdata, rx->sta, mgmt, len);
1590 break;
1591 }
Johannes Berg39192c02008-09-09 14:49:03 +02001592 break;
1593 case WLAN_CATEGORY_SPECTRUM_MGMT:
1594 if (local->hw.conf.channel->band != IEEE80211_BAND_5GHZ)
1595 return RX_DROP_MONITOR;
1596 switch (mgmt->u.action.u.measurement.action_code) {
1597 case WLAN_ACTION_SPCT_MSR_REQ:
1598 if (len < (IEEE80211_MIN_ACTION_SIZE +
1599 sizeof(mgmt->u.action.u.measurement)))
1600 return RX_DROP_MONITOR;
1601 ieee80211_process_measurement_req(sdata, mgmt, len);
1602 break;
1603 }
1604 break;
1605 default:
1606 return RX_CONTINUE;
Johannes Bergde1ede72008-09-09 14:42:50 +02001607 }
1608
Johannes Berg39192c02008-09-09 14:49:03 +02001609 rx->sta->rx_packets++;
1610 dev_kfree_skb(rx->skb);
1611 return RX_QUEUED;
Johannes Bergde1ede72008-09-09 14:42:50 +02001612}
1613
1614static ieee80211_rx_result debug_noinline
Johannes Berg5cf121c2008-02-25 16:27:43 +01001615ieee80211_rx_h_mgmt(struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001616{
Johannes Berg759ef3e2008-09-09 14:55:09 +02001617 struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(rx->dev);
Johannes Berg571ecf62007-07-27 15:43:22 +02001618
Johannes Berg5cf121c2008-02-25 16:27:43 +01001619 if (!(rx->flags & IEEE80211_RX_RA_MATCH))
Johannes Berge4c26ad2008-01-31 19:48:21 +01001620 return RX_DROP_MONITOR;
Johannes Berg571ecf62007-07-27 15:43:22 +02001621
Johannes Berg472dbc42008-09-11 00:01:49 +02001622 if (ieee80211_vif_is_mesh(&sdata->vif))
1623 return ieee80211_mesh_rx_mgmt(sdata, rx->skb, rx->status);
1624
Johannes Berg05c914f2008-09-11 00:01:58 +02001625 if (sdata->vif.type != NL80211_IFTYPE_STATION &&
1626 sdata->vif.type != NL80211_IFTYPE_ADHOC)
Johannes Berge4c26ad2008-01-31 19:48:21 +01001627 return RX_DROP_MONITOR;
Johannes Bergf9d540e2007-09-28 14:02:09 +02001628
Johannes Berg759ef3e2008-09-09 14:55:09 +02001629 if (sdata->flags & IEEE80211_SDATA_USERSPACE_MLME)
1630 return RX_DROP_MONITOR;
1631
1632 ieee80211_sta_rx_mgmt(sdata, rx->skb, rx->status);
Johannes Berg9ae54c82008-01-31 19:48:20 +01001633 return RX_QUEUED;
Johannes Berg571ecf62007-07-27 15:43:22 +02001634}
1635
Johannes Berg571ecf62007-07-27 15:43:22 +02001636static void ieee80211_rx_michael_mic_report(struct net_device *dev,
1637 struct ieee80211_hdr *hdr,
Johannes Berg5cf121c2008-02-25 16:27:43 +01001638 struct ieee80211_rx_data *rx)
Johannes Berg571ecf62007-07-27 15:43:22 +02001639{
Harvey Harrisona7767f92008-07-02 16:30:51 -07001640 int keyidx;
1641 unsigned int hdrlen;
Johannes Berg571ecf62007-07-27 15:43:22 +02001642
Harvey Harrisona7767f92008-07-02 16:30:51 -07001643 hdrlen = ieee80211_hdrlen(hdr->frame_control);
Johannes Berg571ecf62007-07-27 15:43:22 +02001644 if (rx->skb->len >= hdrlen + 4)
1645 keyidx = rx->skb->data[hdrlen + 3] >> 6;
1646 else
1647 keyidx = -1;
1648
Johannes Berg8944b792008-01-31 19:48:26 +01001649 if (!rx->sta) {
Johannes Bergaa0daf02007-09-10 14:15:25 +02001650 /*
1651 * Some hardware seem to generate incorrect Michael MIC
1652 * reports; ignore them to avoid triggering countermeasures.
1653 */
Johannes Berg571ecf62007-07-27 15:43:22 +02001654 goto ignore;
1655 }
1656
Harvey Harrisona7767f92008-07-02 16:30:51 -07001657 if (!ieee80211_has_protected(hdr->frame_control))
Johannes Berg571ecf62007-07-27 15:43:22 +02001658 goto ignore;
Johannes Berg571ecf62007-07-27 15:43:22 +02001659
Johannes Berg05c914f2008-09-11 00:01:58 +02001660 if (rx->sdata->vif.type == NL80211_IFTYPE_AP && keyidx) {
Johannes Bergaa0daf02007-09-10 14:15:25 +02001661 /*
1662 * APs with pairwise keys should never receive Michael MIC
1663 * errors for non-zero keyidx because these are reserved for
1664 * group keys and only the AP is sending real multicast
1665 * frames in the BSS.
1666 */
Johannes Bergeb063c12007-08-28 17:01:53 -04001667 goto ignore;
Johannes Berg571ecf62007-07-27 15:43:22 +02001668 }
1669
Harvey Harrisona7767f92008-07-02 16:30:51 -07001670 if (!ieee80211_is_data(hdr->frame_control) &&
1671 !ieee80211_is_auth(hdr->frame_control))
Johannes Berg571ecf62007-07-27 15:43:22 +02001672 goto ignore;
Johannes Berg571ecf62007-07-27 15:43:22 +02001673
Jasper Bryant-Greenef698d852008-08-03 12:04:37 +12001674 mac80211_ev_michael_mic_failure(rx->sdata, keyidx, hdr);
Johannes Berg571ecf62007-07-27 15:43:22 +02001675 ignore:
1676 dev_kfree_skb(rx->skb);
1677 rx->skb = NULL;
1678}
1679
Johannes Berg5cf121c2008-02-25 16:27:43 +01001680/* TODO: use IEEE80211_RX_FRAGMENTED */
1681static void ieee80211_rx_cooked_monitor(struct ieee80211_rx_data *rx)
Michael Wu3d30d942008-01-31 19:48:27 +01001682{
1683 struct ieee80211_sub_if_data *sdata;
1684 struct ieee80211_local *local = rx->local;
1685 struct ieee80211_rtap_hdr {
1686 struct ieee80211_radiotap_header hdr;
1687 u8 flags;
1688 u8 rate;
1689 __le16 chan_freq;
1690 __le16 chan_flags;
1691 } __attribute__ ((packed)) *rthdr;
1692 struct sk_buff *skb = rx->skb, *skb2;
1693 struct net_device *prev_dev = NULL;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001694 struct ieee80211_rx_status *status = rx->status;
Michael Wu3d30d942008-01-31 19:48:27 +01001695
Johannes Berg5cf121c2008-02-25 16:27:43 +01001696 if (rx->flags & IEEE80211_RX_CMNTR_REPORTED)
Michael Wu3d30d942008-01-31 19:48:27 +01001697 goto out_free_skb;
1698
1699 if (skb_headroom(skb) < sizeof(*rthdr) &&
1700 pskb_expand_head(skb, sizeof(*rthdr), 0, GFP_ATOMIC))
1701 goto out_free_skb;
1702
1703 rthdr = (void *)skb_push(skb, sizeof(*rthdr));
1704 memset(rthdr, 0, sizeof(*rthdr));
1705 rthdr->hdr.it_len = cpu_to_le16(sizeof(*rthdr));
1706 rthdr->hdr.it_present =
1707 cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
1708 (1 << IEEE80211_RADIOTAP_RATE) |
1709 (1 << IEEE80211_RADIOTAP_CHANNEL));
1710
Johannes Berg5cf121c2008-02-25 16:27:43 +01001711 rthdr->rate = rx->rate->bitrate / 5;
Michael Wu3d30d942008-01-31 19:48:27 +01001712 rthdr->chan_freq = cpu_to_le16(status->freq);
1713
1714 if (status->band == IEEE80211_BAND_5GHZ)
1715 rthdr->chan_flags = cpu_to_le16(IEEE80211_CHAN_OFDM |
1716 IEEE80211_CHAN_5GHZ);
1717 else
1718 rthdr->chan_flags = cpu_to_le16(IEEE80211_CHAN_DYN |
1719 IEEE80211_CHAN_2GHZ);
1720
1721 skb_set_mac_header(skb, 0);
1722 skb->ip_summed = CHECKSUM_UNNECESSARY;
1723 skb->pkt_type = PACKET_OTHERHOST;
1724 skb->protocol = htons(ETH_P_802_2);
1725
1726 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
1727 if (!netif_running(sdata->dev))
1728 continue;
1729
Johannes Berg05c914f2008-09-11 00:01:58 +02001730 if (sdata->vif.type != NL80211_IFTYPE_MONITOR ||
Michael Wu3d30d942008-01-31 19:48:27 +01001731 !(sdata->u.mntr_flags & MONITOR_FLAG_COOK_FRAMES))
1732 continue;
1733
1734 if (prev_dev) {
1735 skb2 = skb_clone(skb, GFP_ATOMIC);
1736 if (skb2) {
1737 skb2->dev = prev_dev;
1738 netif_rx(skb2);
1739 }
1740 }
1741
1742 prev_dev = sdata->dev;
1743 sdata->dev->stats.rx_packets++;
1744 sdata->dev->stats.rx_bytes += skb->len;
1745 }
1746
1747 if (prev_dev) {
1748 skb->dev = prev_dev;
1749 netif_rx(skb);
1750 skb = NULL;
1751 } else
1752 goto out_free_skb;
1753
Johannes Berg5cf121c2008-02-25 16:27:43 +01001754 rx->flags |= IEEE80211_RX_CMNTR_REPORTED;
Michael Wu3d30d942008-01-31 19:48:27 +01001755 return;
1756
1757 out_free_skb:
1758 dev_kfree_skb(skb);
1759}
1760
Johannes Berg571ecf62007-07-27 15:43:22 +02001761
Johannes Berg8944b792008-01-31 19:48:26 +01001762static void ieee80211_invoke_rx_handlers(struct ieee80211_sub_if_data *sdata,
Johannes Berg5cf121c2008-02-25 16:27:43 +01001763 struct ieee80211_rx_data *rx,
Johannes Berg8944b792008-01-31 19:48:26 +01001764 struct sk_buff *skb)
Johannes Berg58905292008-01-31 19:48:25 +01001765{
Johannes Berg58905292008-01-31 19:48:25 +01001766 ieee80211_rx_result res = RX_DROP_MONITOR;
1767
Johannes Berg8944b792008-01-31 19:48:26 +01001768 rx->skb = skb;
1769 rx->sdata = sdata;
1770 rx->dev = sdata->dev;
1771
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001772#define CALL_RXH(rxh) \
1773 do { \
1774 res = rxh(rx); \
1775 if (res != RX_CONTINUE) \
1776 goto rxh_done; \
1777 } while (0);
Johannes Berg58905292008-01-31 19:48:25 +01001778
Johannes Berg49461622008-06-30 15:10:45 +02001779 CALL_RXH(ieee80211_rx_h_passive_scan)
1780 CALL_RXH(ieee80211_rx_h_check)
1781 CALL_RXH(ieee80211_rx_h_decrypt)
1782 CALL_RXH(ieee80211_rx_h_sta_process)
1783 CALL_RXH(ieee80211_rx_h_defragment)
1784 CALL_RXH(ieee80211_rx_h_ps_poll)
1785 CALL_RXH(ieee80211_rx_h_michael_mic_verify)
1786 /* must be after MMIC verify so header is counted in MPDU mic */
1787 CALL_RXH(ieee80211_rx_h_remove_qos_control)
1788 CALL_RXH(ieee80211_rx_h_amsdu)
Ingo Molnarbf94e172008-10-12 23:51:38 -07001789#ifdef CONFIG_MAC80211_MESH
Luis Carlos Coboe32f85f2008-08-05 19:34:52 +02001790 if (ieee80211_vif_is_mesh(&sdata->vif))
1791 CALL_RXH(ieee80211_rx_h_mesh_fwding);
Ingo Molnarbf94e172008-10-12 23:51:38 -07001792#endif
Johannes Berg49461622008-06-30 15:10:45 +02001793 CALL_RXH(ieee80211_rx_h_data)
1794 CALL_RXH(ieee80211_rx_h_ctrl)
Johannes Bergde1ede72008-09-09 14:42:50 +02001795 CALL_RXH(ieee80211_rx_h_action)
Johannes Berg49461622008-06-30 15:10:45 +02001796 CALL_RXH(ieee80211_rx_h_mgmt)
Johannes Berg58905292008-01-31 19:48:25 +01001797
Johannes Berg49461622008-06-30 15:10:45 +02001798#undef CALL_RXH
1799
1800 rxh_done:
Johannes Berg58905292008-01-31 19:48:25 +01001801 switch (res) {
Michael Wu3d30d942008-01-31 19:48:27 +01001802 case RX_DROP_MONITOR:
Johannes Berg49461622008-06-30 15:10:45 +02001803 I802_DEBUG_INC(sdata->local->rx_handlers_drop);
1804 if (rx->sta)
1805 rx->sta->rx_dropped++;
1806 /* fall through */
1807 case RX_CONTINUE:
Michael Wu3d30d942008-01-31 19:48:27 +01001808 ieee80211_rx_cooked_monitor(rx);
1809 break;
1810 case RX_DROP_UNUSABLE:
Johannes Berg49461622008-06-30 15:10:45 +02001811 I802_DEBUG_INC(sdata->local->rx_handlers_drop);
1812 if (rx->sta)
1813 rx->sta->rx_dropped++;
Johannes Berg58905292008-01-31 19:48:25 +01001814 dev_kfree_skb(rx->skb);
1815 break;
Johannes Berg49461622008-06-30 15:10:45 +02001816 case RX_QUEUED:
1817 I802_DEBUG_INC(sdata->local->rx_handlers_queued);
1818 break;
Johannes Berg58905292008-01-31 19:48:25 +01001819 }
1820}
1821
Johannes Berg571ecf62007-07-27 15:43:22 +02001822/* main receive path */
1823
Johannes Berg23a24de2007-07-27 15:43:22 +02001824static int prepare_for_handlers(struct ieee80211_sub_if_data *sdata,
Johannes Berg5cf121c2008-02-25 16:27:43 +01001825 u8 *bssid, struct ieee80211_rx_data *rx,
Johannes Berg23a24de2007-07-27 15:43:22 +02001826 struct ieee80211_hdr *hdr)
1827{
1828 int multicast = is_multicast_ether_addr(hdr->addr1);
1829
Johannes Berg51fb61e2007-12-19 01:31:27 +01001830 switch (sdata->vif.type) {
Johannes Berg05c914f2008-09-11 00:01:58 +02001831 case NL80211_IFTYPE_STATION:
Johannes Berg23a24de2007-07-27 15:43:22 +02001832 if (!bssid)
1833 return 0;
1834 if (!ieee80211_bssid_match(bssid, sdata->u.sta.bssid)) {
Johannes Berg5cf121c2008-02-25 16:27:43 +01001835 if (!(rx->flags & IEEE80211_RX_IN_SCAN))
Johannes Berg23a24de2007-07-27 15:43:22 +02001836 return 0;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001837 rx->flags &= ~IEEE80211_RX_RA_MATCH;
Johannes Berg23a24de2007-07-27 15:43:22 +02001838 } else if (!multicast &&
1839 compare_ether_addr(sdata->dev->dev_addr,
1840 hdr->addr1) != 0) {
Johannes Berg4150c572007-09-17 01:29:23 -04001841 if (!(sdata->dev->flags & IFF_PROMISC))
Johannes Berg23a24de2007-07-27 15:43:22 +02001842 return 0;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001843 rx->flags &= ~IEEE80211_RX_RA_MATCH;
Johannes Berg23a24de2007-07-27 15:43:22 +02001844 }
1845 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001846 case NL80211_IFTYPE_ADHOC:
Johannes Berg23a24de2007-07-27 15:43:22 +02001847 if (!bssid)
1848 return 0;
Harvey Harrisona7767f92008-07-02 16:30:51 -07001849 if (ieee80211_is_beacon(hdr->frame_control)) {
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001850 return 1;
Vladimir Koutny87291c02008-06-13 16:50:44 +02001851 }
Bruno Randolf9d9bf772008-02-18 11:21:36 +09001852 else if (!ieee80211_bssid_match(bssid, sdata->u.sta.bssid)) {
Johannes Berg5cf121c2008-02-25 16:27:43 +01001853 if (!(rx->flags & IEEE80211_RX_IN_SCAN))
Johannes Berg23a24de2007-07-27 15:43:22 +02001854 return 0;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001855 rx->flags &= ~IEEE80211_RX_RA_MATCH;
Johannes Berg23a24de2007-07-27 15:43:22 +02001856 } else if (!multicast &&
1857 compare_ether_addr(sdata->dev->dev_addr,
1858 hdr->addr1) != 0) {
Johannes Berg4150c572007-09-17 01:29:23 -04001859 if (!(sdata->dev->flags & IFF_PROMISC))
Johannes Berg23a24de2007-07-27 15:43:22 +02001860 return 0;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001861 rx->flags &= ~IEEE80211_RX_RA_MATCH;
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02001862 } else if (!rx->sta) {
1863 int rate_idx;
1864 if (rx->status->flag & RX_FLAG_HT)
1865 rate_idx = 0; /* TODO: HT rates */
1866 else
1867 rate_idx = rx->status->rate_idx;
Rami Rosenab1f5c02008-12-11 14:00:25 +02001868 rx->sta = ieee80211_ibss_add_sta(sdata, bssid, hdr->addr2,
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02001869 BIT(rate_idx));
1870 }
Johannes Berg23a24de2007-07-27 15:43:22 +02001871 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001872 case NL80211_IFTYPE_MESH_POINT:
Johannes Berg6032f932008-02-23 15:17:07 +01001873 if (!multicast &&
1874 compare_ether_addr(sdata->dev->dev_addr,
1875 hdr->addr1) != 0) {
1876 if (!(sdata->dev->flags & IFF_PROMISC))
1877 return 0;
1878
Johannes Berg5cf121c2008-02-25 16:27:43 +01001879 rx->flags &= ~IEEE80211_RX_RA_MATCH;
Johannes Berg6032f932008-02-23 15:17:07 +01001880 }
1881 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001882 case NL80211_IFTYPE_AP_VLAN:
1883 case NL80211_IFTYPE_AP:
Johannes Berg23a24de2007-07-27 15:43:22 +02001884 if (!bssid) {
1885 if (compare_ether_addr(sdata->dev->dev_addr,
1886 hdr->addr1))
1887 return 0;
1888 } else if (!ieee80211_bssid_match(bssid,
1889 sdata->dev->dev_addr)) {
Johannes Berg5cf121c2008-02-25 16:27:43 +01001890 if (!(rx->flags & IEEE80211_RX_IN_SCAN))
Johannes Berg23a24de2007-07-27 15:43:22 +02001891 return 0;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001892 rx->flags &= ~IEEE80211_RX_RA_MATCH;
Johannes Berg23a24de2007-07-27 15:43:22 +02001893 }
Johannes Berg23a24de2007-07-27 15:43:22 +02001894 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001895 case NL80211_IFTYPE_WDS:
Harvey Harrisona7767f92008-07-02 16:30:51 -07001896 if (bssid || !ieee80211_is_data(hdr->frame_control))
Johannes Berg23a24de2007-07-27 15:43:22 +02001897 return 0;
1898 if (compare_ether_addr(sdata->u.wds.remote_addr, hdr->addr2))
1899 return 0;
1900 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001901 case NL80211_IFTYPE_MONITOR:
Johannes Bergfb1c1cd2007-09-26 15:19:43 +02001902 /* take everything */
1903 break;
Johannes Berg05c914f2008-09-11 00:01:58 +02001904 case NL80211_IFTYPE_UNSPECIFIED:
1905 case __NL80211_IFTYPE_AFTER_LAST:
Johannes Bergfb1c1cd2007-09-26 15:19:43 +02001906 /* should never get here */
1907 WARN_ON(1);
1908 break;
Johannes Berg23a24de2007-07-27 15:43:22 +02001909 }
1910
1911 return 1;
1912}
1913
Johannes Berg571ecf62007-07-27 15:43:22 +02001914/*
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02001915 * This is the actual Rx frames handler. as it blongs to Rx path it must
1916 * be called with rcu_read_lock protection.
Johannes Berg571ecf62007-07-27 15:43:22 +02001917 */
Ron Rindjunsky71ebb4a2008-01-21 12:39:12 +02001918static void __ieee80211_rx_handle_packet(struct ieee80211_hw *hw,
1919 struct sk_buff *skb,
1920 struct ieee80211_rx_status *status,
Johannes Berg8318d782008-01-24 19:38:38 +01001921 struct ieee80211_rate *rate)
Johannes Berg571ecf62007-07-27 15:43:22 +02001922{
1923 struct ieee80211_local *local = hw_to_local(hw);
1924 struct ieee80211_sub_if_data *sdata;
Johannes Berg571ecf62007-07-27 15:43:22 +02001925 struct ieee80211_hdr *hdr;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001926 struct ieee80211_rx_data rx;
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02001927 int prepares;
Johannes Berg8e6f00322007-07-27 15:43:22 +02001928 struct ieee80211_sub_if_data *prev = NULL;
1929 struct sk_buff *skb_new;
1930 u8 *bssid;
Johannes Berg571ecf62007-07-27 15:43:22 +02001931
Harvey Harrison358c8d92008-07-15 18:44:13 -07001932 hdr = (struct ieee80211_hdr *)skb->data;
Johannes Berg571ecf62007-07-27 15:43:22 +02001933 memset(&rx, 0, sizeof(rx));
1934 rx.skb = skb;
1935 rx.local = local;
1936
Johannes Berg5cf121c2008-02-25 16:27:43 +01001937 rx.status = status;
Johannes Berg5cf121c2008-02-25 16:27:43 +01001938 rx.rate = rate;
Johannes Berg72abd812007-09-17 01:29:22 -04001939
Harvey Harrison358c8d92008-07-15 18:44:13 -07001940 if (ieee80211_is_data(hdr->frame_control) || ieee80211_is_mgmt(hdr->frame_control))
Johannes Berg571ecf62007-07-27 15:43:22 +02001941 local->dot11ReceivedFragmentCount++;
Johannes Berg571ecf62007-07-27 15:43:22 +02001942
Johannes Berg8944b792008-01-31 19:48:26 +01001943 rx.sta = sta_info_get(local, hdr->addr2);
1944 if (rx.sta) {
Johannes Bergd0709a62008-02-25 16:27:46 +01001945 rx.sdata = rx.sta->sdata;
1946 rx.dev = rx.sta->sdata->dev;
Johannes Bergb2e77712007-09-26 15:19:39 +02001947 }
Johannes Berg571ecf62007-07-27 15:43:22 +02001948
Johannes Berg571ecf62007-07-27 15:43:22 +02001949 if ((status->flag & RX_FLAG_MMIC_ERROR)) {
Johannes Berg8944b792008-01-31 19:48:26 +01001950 ieee80211_rx_michael_mic_report(local->mdev, hdr, &rx);
Johannes Bergd0709a62008-02-25 16:27:46 +01001951 return;
Johannes Berg571ecf62007-07-27 15:43:22 +02001952 }
1953
Johannes Bergc2b13452008-09-11 00:01:55 +02001954 if (unlikely(local->sw_scanning || local->hw_scanning))
Johannes Berg5cf121c2008-02-25 16:27:43 +01001955 rx.flags |= IEEE80211_RX_IN_SCAN;
Johannes Berg571ecf62007-07-27 15:43:22 +02001956
Johannes Berg38f37142008-01-29 17:07:43 +01001957 ieee80211_parse_qos(&rx);
1958 ieee80211_verify_ip_alignment(&rx);
1959
Johannes Berg571ecf62007-07-27 15:43:22 +02001960 skb = rx.skb;
1961
Johannes Berg79010422007-09-18 17:29:21 -04001962 list_for_each_entry_rcu(sdata, &local->interfaces, list) {
Johannes Berg2a8a9a82007-08-28 17:01:52 -04001963 if (!netif_running(sdata->dev))
1964 continue;
1965
Johannes Berg05c914f2008-09-11 00:01:58 +02001966 if (sdata->vif.type == NL80211_IFTYPE_MONITOR)
Johannes Bergb2e77712007-09-26 15:19:39 +02001967 continue;
1968
Johannes Berg51fb61e2007-12-19 01:31:27 +01001969 bssid = ieee80211_get_bssid(hdr, skb->len, sdata->vif.type);
Johannes Berg5cf121c2008-02-25 16:27:43 +01001970 rx.flags |= IEEE80211_RX_RA_MATCH;
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02001971 prepares = prepare_for_handlers(sdata, bssid, &rx, hdr);
Johannes Berg23a24de2007-07-27 15:43:22 +02001972
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02001973 if (!prepares)
Johannes Berg23a24de2007-07-27 15:43:22 +02001974 continue;
Johannes Berg8e6f00322007-07-27 15:43:22 +02001975
Johannes Berg340e11f2007-07-27 15:43:22 +02001976 /*
1977 * frame is destined for this interface, but if it's not
1978 * also for the previous one we handle that after the
1979 * loop to avoid copying the SKB once too much
1980 */
1981
1982 if (!prev) {
1983 prev = sdata;
1984 continue;
Johannes Berg8e6f00322007-07-27 15:43:22 +02001985 }
Johannes Berg340e11f2007-07-27 15:43:22 +02001986
1987 /*
1988 * frame was destined for the previous interface
1989 * so invoke RX handlers for it
1990 */
1991
1992 skb_new = skb_copy(skb, GFP_ATOMIC);
1993 if (!skb_new) {
1994 if (net_ratelimit())
1995 printk(KERN_DEBUG "%s: failed to copy "
Pavel Roskina4278e12008-05-12 09:02:24 -04001996 "multicast frame for %s\n",
Johannes Bergdd1cd4c2007-09-18 17:29:20 -04001997 wiphy_name(local->hw.wiphy),
1998 prev->dev->name);
Johannes Berg340e11f2007-07-27 15:43:22 +02001999 continue;
2000 }
Johannes Berg8944b792008-01-31 19:48:26 +01002001 ieee80211_invoke_rx_handlers(prev, &rx, skb_new);
Johannes Berg8e6f00322007-07-27 15:43:22 +02002002 prev = sdata;
Johannes Berg571ecf62007-07-27 15:43:22 +02002003 }
Harvey Harrisona4b7d7b2008-07-15 18:44:14 -07002004 if (prev)
Johannes Berg8944b792008-01-31 19:48:26 +01002005 ieee80211_invoke_rx_handlers(prev, &rx, skb);
Harvey Harrisona4b7d7b2008-07-15 18:44:14 -07002006 else
Johannes Berg8e6f00322007-07-27 15:43:22 +02002007 dev_kfree_skb(skb);
Johannes Berg571ecf62007-07-27 15:43:22 +02002008}
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02002009
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002010#define SEQ_MODULO 0x1000
2011#define SEQ_MASK 0xfff
2012
2013static inline int seq_less(u16 sq1, u16 sq2)
2014{
Johannes Bergc6a1fa12008-10-07 12:04:32 +02002015 return ((sq1 - sq2) & SEQ_MASK) > (SEQ_MODULO >> 1);
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002016}
2017
2018static inline u16 seq_inc(u16 sq)
2019{
Johannes Bergc6a1fa12008-10-07 12:04:32 +02002020 return (sq + 1) & SEQ_MASK;
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002021}
2022
2023static inline u16 seq_sub(u16 sq1, u16 sq2)
2024{
Johannes Bergc6a1fa12008-10-07 12:04:32 +02002025 return (sq1 - sq2) & SEQ_MASK;
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002026}
2027
2028
Ron Rindjunsky71364712007-12-25 17:00:36 +02002029/*
2030 * As it function blongs to Rx path it must be called with
2031 * the proper rcu_read_lock protection for its flow.
2032 */
Johannes Bergc6a1fa12008-10-07 12:04:32 +02002033static u8 ieee80211_sta_manage_reorder_buf(struct ieee80211_hw *hw,
2034 struct tid_ampdu_rx *tid_agg_rx,
2035 struct sk_buff *skb,
2036 u16 mpdu_seq_num,
2037 int bar_req)
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002038{
2039 struct ieee80211_local *local = hw_to_local(hw);
2040 struct ieee80211_rx_status status;
2041 u16 head_seq_num, buf_size;
2042 int index;
Johannes Berg8318d782008-01-24 19:38:38 +01002043 struct ieee80211_supported_band *sband;
2044 struct ieee80211_rate *rate;
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002045
2046 buf_size = tid_agg_rx->buf_size;
2047 head_seq_num = tid_agg_rx->head_seq_num;
2048
2049 /* frame with out of date sequence number */
2050 if (seq_less(mpdu_seq_num, head_seq_num)) {
2051 dev_kfree_skb(skb);
2052 return 1;
2053 }
2054
2055 /* if frame sequence number exceeds our buffering window size or
2056 * block Ack Request arrived - release stored frames */
2057 if ((!seq_less(mpdu_seq_num, head_seq_num + buf_size)) || (bar_req)) {
2058 /* new head to the ordering buffer */
2059 if (bar_req)
2060 head_seq_num = mpdu_seq_num;
2061 else
2062 head_seq_num =
2063 seq_inc(seq_sub(mpdu_seq_num, buf_size));
2064 /* release stored frames up to new head to stack */
2065 while (seq_less(tid_agg_rx->head_seq_num, head_seq_num)) {
2066 index = seq_sub(tid_agg_rx->head_seq_num,
2067 tid_agg_rx->ssn)
2068 % tid_agg_rx->buf_size;
2069
2070 if (tid_agg_rx->reorder_buf[index]) {
2071 /* release the reordered frames to stack */
2072 memcpy(&status,
2073 tid_agg_rx->reorder_buf[index]->cb,
2074 sizeof(status));
Johannes Berg8318d782008-01-24 19:38:38 +01002075 sband = local->hw.wiphy->bands[status.band];
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02002076 if (status.flag & RX_FLAG_HT) {
2077 /* TODO: HT rates */
2078 rate = sband->bitrates;
2079 } else {
2080 rate = &sband->bitrates
2081 [status.rate_idx];
2082 }
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002083 __ieee80211_rx_handle_packet(hw,
2084 tid_agg_rx->reorder_buf[index],
Johannes Berg9e72ebd2008-05-21 17:33:42 +02002085 &status, rate);
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002086 tid_agg_rx->stored_mpdu_num--;
2087 tid_agg_rx->reorder_buf[index] = NULL;
2088 }
2089 tid_agg_rx->head_seq_num =
2090 seq_inc(tid_agg_rx->head_seq_num);
2091 }
2092 if (bar_req)
2093 return 1;
2094 }
2095
2096 /* now the new frame is always in the range of the reordering */
2097 /* buffer window */
2098 index = seq_sub(mpdu_seq_num, tid_agg_rx->ssn)
2099 % tid_agg_rx->buf_size;
2100 /* check if we already stored this frame */
2101 if (tid_agg_rx->reorder_buf[index]) {
2102 dev_kfree_skb(skb);
2103 return 1;
2104 }
2105
2106 /* if arrived mpdu is in the right order and nothing else stored */
2107 /* release it immediately */
2108 if (mpdu_seq_num == tid_agg_rx->head_seq_num &&
2109 tid_agg_rx->stored_mpdu_num == 0) {
2110 tid_agg_rx->head_seq_num =
2111 seq_inc(tid_agg_rx->head_seq_num);
2112 return 0;
2113 }
2114
2115 /* put the frame in the reordering buffer */
2116 tid_agg_rx->reorder_buf[index] = skb;
2117 tid_agg_rx->stored_mpdu_num++;
2118 /* release the buffer until next missing frame */
2119 index = seq_sub(tid_agg_rx->head_seq_num, tid_agg_rx->ssn)
2120 % tid_agg_rx->buf_size;
2121 while (tid_agg_rx->reorder_buf[index]) {
2122 /* release the reordered frame back to stack */
2123 memcpy(&status, tid_agg_rx->reorder_buf[index]->cb,
2124 sizeof(status));
Johannes Berg8318d782008-01-24 19:38:38 +01002125 sband = local->hw.wiphy->bands[status.band];
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02002126 if (status.flag & RX_FLAG_HT)
2127 rate = sband->bitrates; /* TODO: HT rates */
2128 else
2129 rate = &sband->bitrates[status.rate_idx];
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002130 __ieee80211_rx_handle_packet(hw, tid_agg_rx->reorder_buf[index],
Johannes Berg9e72ebd2008-05-21 17:33:42 +02002131 &status, rate);
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002132 tid_agg_rx->stored_mpdu_num--;
2133 tid_agg_rx->reorder_buf[index] = NULL;
2134 tid_agg_rx->head_seq_num = seq_inc(tid_agg_rx->head_seq_num);
2135 index = seq_sub(tid_agg_rx->head_seq_num,
2136 tid_agg_rx->ssn) % tid_agg_rx->buf_size;
2137 }
2138 return 1;
2139}
2140
Ron Rindjunsky71ebb4a2008-01-21 12:39:12 +02002141static u8 ieee80211_rx_reorder_ampdu(struct ieee80211_local *local,
2142 struct sk_buff *skb)
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002143{
2144 struct ieee80211_hw *hw = &local->hw;
2145 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
2146 struct sta_info *sta;
2147 struct tid_ampdu_rx *tid_agg_rx;
Harvey Harrison87228f52008-06-11 14:21:59 -07002148 u16 sc;
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002149 u16 mpdu_seq_num;
Harvey Harrison182503a2008-06-22 16:45:29 -07002150 u8 ret = 0;
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002151 int tid;
2152
2153 sta = sta_info_get(local, hdr->addr2);
2154 if (!sta)
2155 return ret;
2156
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002157 /* filter the QoS data rx stream according to
2158 * STA/TID and check if this STA/TID is on aggregation */
Harvey Harrison87228f52008-06-11 14:21:59 -07002159 if (!ieee80211_is_data_qos(hdr->frame_control))
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002160 goto end_reorder;
2161
Harvey Harrison238f74a2008-07-02 11:05:34 -07002162 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002163
Ron Rindjunskycee24a32008-03-26 20:36:03 +02002164 if (sta->ampdu_mlme.tid_state_rx[tid] != HT_AGG_STATE_OPERATIONAL)
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002165 goto end_reorder;
2166
Ron Rindjunskycee24a32008-03-26 20:36:03 +02002167 tid_agg_rx = sta->ampdu_mlme.tid_rx[tid];
2168
Emmanuel Grumbach2560b6e2008-07-10 00:47:19 +03002169 /* qos null data frames are excluded */
2170 if (unlikely(hdr->frame_control & cpu_to_le16(IEEE80211_STYPE_NULLFUNC)))
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002171 goto end_reorder;
2172
2173 /* new un-ordered ampdu frame - process it */
2174
2175 /* reset session timer */
2176 if (tid_agg_rx->timeout) {
2177 unsigned long expires =
2178 jiffies + (tid_agg_rx->timeout / 1000) * HZ;
2179 mod_timer(&tid_agg_rx->session_timer, expires);
2180 }
2181
2182 /* if this mpdu is fragmented - terminate rx aggregation session */
2183 sc = le16_to_cpu(hdr->seq_ctrl);
2184 if (sc & IEEE80211_SCTL_FRAG) {
Johannes Berg17741cd2008-09-11 00:02:02 +02002185 ieee80211_sta_stop_rx_ba_session(sta->sdata, sta->sta.addr,
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002186 tid, 0, WLAN_REASON_QSTA_REQUIRE_SETUP);
2187 ret = 1;
2188 goto end_reorder;
2189 }
2190
2191 /* according to mpdu sequence number deal with reordering buffer */
2192 mpdu_seq_num = (sc & IEEE80211_SCTL_SEQ) >> 4;
2193 ret = ieee80211_sta_manage_reorder_buf(hw, tid_agg_rx, skb,
2194 mpdu_seq_num, 0);
Johannes Bergd0709a62008-02-25 16:27:46 +01002195 end_reorder:
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002196 return ret;
2197}
2198
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02002199/*
2200 * This is the receive path handler. It is called by a low level driver when an
2201 * 802.11 MPDU is received from the hardware.
2202 */
2203void __ieee80211_rx(struct ieee80211_hw *hw, struct sk_buff *skb,
2204 struct ieee80211_rx_status *status)
2205{
2206 struct ieee80211_local *local = hw_to_local(hw);
Johannes Berg8318d782008-01-24 19:38:38 +01002207 struct ieee80211_rate *rate = NULL;
2208 struct ieee80211_supported_band *sband;
2209
2210 if (status->band < 0 ||
Adrian Bunk13d8fd22008-04-23 12:51:28 +03002211 status->band >= IEEE80211_NUM_BANDS) {
Johannes Berg8318d782008-01-24 19:38:38 +01002212 WARN_ON(1);
2213 return;
2214 }
2215
2216 sband = local->hw.wiphy->bands[status->band];
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02002217 if (!sband) {
Johannes Berg8318d782008-01-24 19:38:38 +01002218 WARN_ON(1);
2219 return;
2220 }
2221
Jouni Malinen0fb8ca42008-12-12 14:38:33 +02002222 if (status->flag & RX_FLAG_HT) {
2223 /* rate_idx is MCS index */
2224 if (WARN_ON(status->rate_idx < 0 ||
2225 status->rate_idx >= 76))
2226 return;
2227 /* HT rates are not in the table - use the highest legacy rate
2228 * for now since other parts of mac80211 may not yet be fully
2229 * MCS aware. */
2230 rate = &sband->bitrates[sband->n_bitrates - 1];
2231 } else {
2232 if (WARN_ON(status->rate_idx < 0 ||
2233 status->rate_idx >= sband->n_bitrates))
2234 return;
2235 rate = &sband->bitrates[status->rate_idx];
2236 }
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02002237
2238 /*
2239 * key references and virtual interfaces are protected using RCU
2240 * and this requires that we are in a read-side RCU section during
2241 * receive processing
2242 */
2243 rcu_read_lock();
2244
2245 /*
2246 * Frames with failed FCS/PLCP checksum are not returned,
2247 * all other frames are returned without radiotap header
2248 * if it was previously present.
2249 * Also, frames with less than 16 bytes are dropped.
2250 */
Johannes Berg8318d782008-01-24 19:38:38 +01002251 skb = ieee80211_rx_monitor(local, skb, status, rate);
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02002252 if (!skb) {
2253 rcu_read_unlock();
2254 return;
2255 }
2256
Ron Rindjunskyb5807812007-12-25 17:00:35 +02002257 if (!ieee80211_rx_reorder_ampdu(local, skb))
Johannes Berg9e72ebd2008-05-21 17:33:42 +02002258 __ieee80211_rx_handle_packet(hw, skb, status, rate);
Ron Rindjunsky6368e4b2007-12-24 13:36:39 +02002259
2260 rcu_read_unlock();
2261}
Johannes Berg571ecf62007-07-27 15:43:22 +02002262EXPORT_SYMBOL(__ieee80211_rx);
2263
2264/* This is a version of the rx handler that can be called from hard irq
2265 * context. Post the skb on the queue and schedule the tasklet */
2266void ieee80211_rx_irqsafe(struct ieee80211_hw *hw, struct sk_buff *skb,
2267 struct ieee80211_rx_status *status)
2268{
2269 struct ieee80211_local *local = hw_to_local(hw);
2270
2271 BUILD_BUG_ON(sizeof(struct ieee80211_rx_status) > sizeof(skb->cb));
2272
2273 skb->dev = local->mdev;
2274 /* copy status into skb->cb for use by tasklet */
2275 memcpy(skb->cb, status, sizeof(*status));
2276 skb->pkt_type = IEEE80211_RX_MSG;
2277 skb_queue_tail(&local->skb_queue, skb);
2278 tasklet_schedule(&local->tasklet);
2279}
2280EXPORT_SYMBOL(ieee80211_rx_irqsafe);