blob: d9265195656da0c97aa6a8c3ac938e22cb992731 [file] [log] [blame]
Jeff Garzikb4538722005-05-12 22:48:20 -04001/*
2 * Original code based Host AP (software wireless LAN access point) driver
3 * for Intersil Prism2/2.5/3 - hostap.o module, common routines
4 *
5 * Copyright (c) 2001-2002, SSH Communications Security Corp and Jouni Malinen
6 * <jkmaline@cc.hut.fi>
7 * Copyright (c) 2002-2003, Jouni Malinen <jkmaline@cc.hut.fi>
James Ketrenosebeaddc2005-09-21 11:58:43 -05008 * Copyright (c) 2004-2005, Intel Corporation
Jeff Garzikb4538722005-05-12 22:48:20 -04009 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation. See README and COPYING for
13 * more details.
14 */
15
16#include <linux/compiler.h>
Jeff Garzikb4538722005-05-12 22:48:20 -040017#include <linux/errno.h>
18#include <linux/if_arp.h>
19#include <linux/in6.h>
20#include <linux/in.h>
21#include <linux/ip.h>
22#include <linux/kernel.h>
23#include <linux/module.h>
24#include <linux/netdevice.h>
Jeff Garzikb4538722005-05-12 22:48:20 -040025#include <linux/proc_fs.h>
26#include <linux/skbuff.h>
27#include <linux/slab.h>
28#include <linux/tcp.h>
29#include <linux/types.h>
Jeff Garzikb4538722005-05-12 22:48:20 -040030#include <linux/wireless.h>
31#include <linux/etherdevice.h>
32#include <asm/uaccess.h>
33#include <linux/ctype.h>
34
35#include <net/ieee80211.h>
36
Arjan van de Ven858119e2006-01-14 13:20:43 -080037static void ieee80211_monitor_rx(struct ieee80211_device *ieee,
Jeff Garzikb4538722005-05-12 22:48:20 -040038 struct sk_buff *skb,
39 struct ieee80211_rx_stats *rx_stats)
40{
41 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
42 u16 fc = le16_to_cpu(hdr->frame_ctl);
43
44 skb->dev = ieee->dev;
45 skb->mac.raw = skb->data;
46 skb_pull(skb, ieee80211_get_hdrlen(fc));
47 skb->pkt_type = PACKET_OTHERHOST;
48 skb->protocol = __constant_htons(ETH_P_80211_RAW);
49 memset(skb->cb, 0, sizeof(skb->cb));
50 netif_rx(skb);
51}
52
Jeff Garzikb4538722005-05-12 22:48:20 -040053/* Called only as a tasklet (software IRQ) */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040054static struct ieee80211_frag_entry *ieee80211_frag_cache_find(struct
55 ieee80211_device
56 *ieee,
57 unsigned int seq,
58 unsigned int frag,
59 u8 * src,
60 u8 * dst)
Jeff Garzikb4538722005-05-12 22:48:20 -040061{
62 struct ieee80211_frag_entry *entry;
63 int i;
64
65 for (i = 0; i < IEEE80211_FRAG_CACHE_LEN; i++) {
66 entry = &ieee->frag_cache[i];
67 if (entry->skb != NULL &&
68 time_after(jiffies, entry->first_frag_time + 2 * HZ)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -040069 IEEE80211_DEBUG_FRAG("expiring fragment cache entry "
70 "seq=%u last_frag=%u\n",
71 entry->seq, entry->last_frag);
Jeff Garzikb4538722005-05-12 22:48:20 -040072 dev_kfree_skb_any(entry->skb);
73 entry->skb = NULL;
74 }
75
76 if (entry->skb != NULL && entry->seq == seq &&
77 (entry->last_frag + 1 == frag || frag == -1) &&
Kris Katterjohnd3f4a682006-01-09 16:01:43 -080078 !compare_ether_addr(entry->src_addr, src) &&
79 !compare_ether_addr(entry->dst_addr, dst))
Jeff Garzikb4538722005-05-12 22:48:20 -040080 return entry;
81 }
82
83 return NULL;
84}
85
86/* Called only as a tasklet (software IRQ) */
Jeff Garzik0edd5b42005-09-07 00:48:31 -040087static struct sk_buff *ieee80211_frag_cache_get(struct ieee80211_device *ieee,
James Ketrenosee34af32005-09-21 11:54:36 -050088 struct ieee80211_hdr_4addr *hdr)
Jeff Garzikb4538722005-05-12 22:48:20 -040089{
90 struct sk_buff *skb = NULL;
91 u16 sc;
92 unsigned int frag, seq;
93 struct ieee80211_frag_entry *entry;
94
95 sc = le16_to_cpu(hdr->seq_ctl);
96 frag = WLAN_GET_SEQ_FRAG(sc);
97 seq = WLAN_GET_SEQ_SEQ(sc);
98
99 if (frag == 0) {
100 /* Reserve enough space to fit maximum frame length */
101 skb = dev_alloc_skb(ieee->dev->mtu +
James Ketrenosee34af32005-09-21 11:54:36 -0500102 sizeof(struct ieee80211_hdr_4addr) +
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400103 8 /* LLC */ +
104 2 /* alignment */ +
105 8 /* WEP */ + ETH_ALEN /* WDS */ );
Jeff Garzikb4538722005-05-12 22:48:20 -0400106 if (skb == NULL)
107 return NULL;
108
109 entry = &ieee->frag_cache[ieee->frag_next_idx];
110 ieee->frag_next_idx++;
111 if (ieee->frag_next_idx >= IEEE80211_FRAG_CACHE_LEN)
112 ieee->frag_next_idx = 0;
113
114 if (entry->skb != NULL)
115 dev_kfree_skb_any(entry->skb);
116
117 entry->first_frag_time = jiffies;
118 entry->seq = seq;
119 entry->last_frag = frag;
120 entry->skb = skb;
121 memcpy(entry->src_addr, hdr->addr2, ETH_ALEN);
122 memcpy(entry->dst_addr, hdr->addr1, ETH_ALEN);
123 } else {
124 /* received a fragment of a frame for which the head fragment
125 * should have already been received */
126 entry = ieee80211_frag_cache_find(ieee, seq, frag, hdr->addr2,
127 hdr->addr1);
128 if (entry != NULL) {
129 entry->last_frag = frag;
130 skb = entry->skb;
131 }
132 }
133
134 return skb;
135}
136
Jeff Garzikb4538722005-05-12 22:48:20 -0400137/* Called only as a tasklet (software IRQ) */
138static int ieee80211_frag_cache_invalidate(struct ieee80211_device *ieee,
James Ketrenosee34af32005-09-21 11:54:36 -0500139 struct ieee80211_hdr_4addr *hdr)
Jeff Garzikb4538722005-05-12 22:48:20 -0400140{
141 u16 sc;
142 unsigned int seq;
143 struct ieee80211_frag_entry *entry;
144
145 sc = le16_to_cpu(hdr->seq_ctl);
146 seq = WLAN_GET_SEQ_SEQ(sc);
147
148 entry = ieee80211_frag_cache_find(ieee, seq, -1, hdr->addr2,
149 hdr->addr1);
150
151 if (entry == NULL) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400152 IEEE80211_DEBUG_FRAG("could not invalidate fragment cache "
153 "entry (seq=%u)\n", seq);
Jeff Garzikb4538722005-05-12 22:48:20 -0400154 return -1;
155 }
156
157 entry->skb = NULL;
158 return 0;
159}
160
Jeff Garzikb4538722005-05-12 22:48:20 -0400161#ifdef NOT_YET
162/* ieee80211_rx_frame_mgtmt
163 *
164 * Responsible for handling management control frames
165 *
166 * Called by ieee80211_rx */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800167static int
Jeff Garzikb4538722005-05-12 22:48:20 -0400168ieee80211_rx_frame_mgmt(struct ieee80211_device *ieee, struct sk_buff *skb,
169 struct ieee80211_rx_stats *rx_stats, u16 type,
170 u16 stype)
171{
172 if (ieee->iw_mode == IW_MODE_MASTER) {
173 printk(KERN_DEBUG "%s: Master mode not yet suppported.\n",
174 ieee->dev->name);
175 return 0;
176/*
James Ketrenosee34af32005-09-21 11:54:36 -0500177 hostap_update_sta_ps(ieee, (struct hostap_ieee80211_hdr_4addr *)
Jeff Garzikb4538722005-05-12 22:48:20 -0400178 skb->data);*/
179 }
180
181 if (ieee->hostapd && type == WLAN_FC_TYPE_MGMT) {
182 if (stype == WLAN_FC_STYPE_BEACON &&
183 ieee->iw_mode == IW_MODE_MASTER) {
184 struct sk_buff *skb2;
185 /* Process beacon frames also in kernel driver to
186 * update STA(AP) table statistics */
187 skb2 = skb_clone(skb, GFP_ATOMIC);
188 if (skb2)
189 hostap_rx(skb2->dev, skb2, rx_stats);
190 }
191
192 /* send management frames to the user space daemon for
193 * processing */
194 ieee->apdevstats.rx_packets++;
195 ieee->apdevstats.rx_bytes += skb->len;
196 prism2_rx_80211(ieee->apdev, skb, rx_stats, PRISM2_RX_MGMT);
197 return 0;
198 }
199
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400200 if (ieee->iw_mode == IW_MODE_MASTER) {
Jeff Garzikb4538722005-05-12 22:48:20 -0400201 if (type != WLAN_FC_TYPE_MGMT && type != WLAN_FC_TYPE_CTRL) {
202 printk(KERN_DEBUG "%s: unknown management frame "
203 "(type=0x%02x, stype=0x%02x) dropped\n",
204 skb->dev->name, type, stype);
205 return -1;
206 }
207
208 hostap_rx(skb->dev, skb, rx_stats);
209 return 0;
210 }
211
212 printk(KERN_DEBUG "%s: hostap_rx_frame_mgmt: management frame "
213 "received in non-Host AP mode\n", skb->dev->name);
214 return -1;
215}
216#endif
217
Jeff Garzikb4538722005-05-12 22:48:20 -0400218/* See IEEE 802.1H for LLC/SNAP encapsulation/decapsulation */
219/* Ethernet-II snap header (RFC1042 for most EtherTypes) */
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400220static unsigned char rfc1042_header[] = { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
221
Jeff Garzikb4538722005-05-12 22:48:20 -0400222/* Bridge-Tunnel header (for EtherTypes ETH_P_AARP and ETH_P_IPX) */
223static unsigned char bridge_tunnel_header[] =
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400224 { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0xf8 };
Jeff Garzikb4538722005-05-12 22:48:20 -0400225/* No encapsulation header if EtherType < 0x600 (=length) */
226
227/* Called by ieee80211_rx_frame_decrypt */
228static int ieee80211_is_eapol_frame(struct ieee80211_device *ieee,
229 struct sk_buff *skb)
230{
231 struct net_device *dev = ieee->dev;
232 u16 fc, ethertype;
James Ketrenosee34af32005-09-21 11:54:36 -0500233 struct ieee80211_hdr_3addr *hdr;
Jeff Garzikb4538722005-05-12 22:48:20 -0400234 u8 *pos;
235
236 if (skb->len < 24)
237 return 0;
238
James Ketrenosee34af32005-09-21 11:54:36 -0500239 hdr = (struct ieee80211_hdr_3addr *)skb->data;
Jeff Garzikb4538722005-05-12 22:48:20 -0400240 fc = le16_to_cpu(hdr->frame_ctl);
241
242 /* check that the frame is unicast frame to us */
243 if ((fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) ==
244 IEEE80211_FCTL_TODS &&
Kris Katterjohnd3f4a682006-01-09 16:01:43 -0800245 !compare_ether_addr(hdr->addr1, dev->dev_addr) &&
246 !compare_ether_addr(hdr->addr3, dev->dev_addr)) {
Jeff Garzikb4538722005-05-12 22:48:20 -0400247 /* ToDS frame with own addr BSSID and DA */
248 } else if ((fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) ==
249 IEEE80211_FCTL_FROMDS &&
Kris Katterjohnd3f4a682006-01-09 16:01:43 -0800250 !compare_ether_addr(hdr->addr1, dev->dev_addr)) {
Jeff Garzikb4538722005-05-12 22:48:20 -0400251 /* FromDS frame with own addr as DA */
252 } else
253 return 0;
254
255 if (skb->len < 24 + 8)
256 return 0;
257
258 /* check for port access entity Ethernet type */
259 pos = skb->data + 24;
260 ethertype = (pos[6] << 8) | pos[7];
261 if (ethertype == ETH_P_PAE)
262 return 1;
263
264 return 0;
265}
266
267/* Called only as a tasklet (software IRQ), by ieee80211_rx */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800268static int
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400269ieee80211_rx_frame_decrypt(struct ieee80211_device *ieee, struct sk_buff *skb,
Jeff Garzikb4538722005-05-12 22:48:20 -0400270 struct ieee80211_crypt_data *crypt)
271{
James Ketrenosee34af32005-09-21 11:54:36 -0500272 struct ieee80211_hdr_3addr *hdr;
Jeff Garzikb4538722005-05-12 22:48:20 -0400273 int res, hdrlen;
274
275 if (crypt == NULL || crypt->ops->decrypt_mpdu == NULL)
276 return 0;
277
James Ketrenosee34af32005-09-21 11:54:36 -0500278 hdr = (struct ieee80211_hdr_3addr *)skb->data;
Jeff Garzikb4538722005-05-12 22:48:20 -0400279 hdrlen = ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_ctl));
280
Jeff Garzikb4538722005-05-12 22:48:20 -0400281 atomic_inc(&crypt->refcnt);
282 res = crypt->ops->decrypt_mpdu(skb, hdrlen, crypt->priv);
283 atomic_dec(&crypt->refcnt);
284 if (res < 0) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400285 IEEE80211_DEBUG_DROP("decryption failed (SA=" MAC_FMT
286 ") res=%d\n", MAC_ARG(hdr->addr2), res);
Jeff Garzikb4538722005-05-12 22:48:20 -0400287 if (res == -2)
288 IEEE80211_DEBUG_DROP("Decryption failed ICV "
289 "mismatch (key %d)\n",
290 skb->data[hdrlen + 3] >> 6);
291 ieee->ieee_stats.rx_discards_undecryptable++;
292 return -1;
293 }
294
295 return res;
296}
297
Jeff Garzikb4538722005-05-12 22:48:20 -0400298/* Called only as a tasklet (software IRQ), by ieee80211_rx */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800299static int
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400300ieee80211_rx_frame_decrypt_msdu(struct ieee80211_device *ieee,
301 struct sk_buff *skb, int keyidx,
302 struct ieee80211_crypt_data *crypt)
Jeff Garzikb4538722005-05-12 22:48:20 -0400303{
James Ketrenosee34af32005-09-21 11:54:36 -0500304 struct ieee80211_hdr_3addr *hdr;
Jeff Garzikb4538722005-05-12 22:48:20 -0400305 int res, hdrlen;
306
307 if (crypt == NULL || crypt->ops->decrypt_msdu == NULL)
308 return 0;
309
James Ketrenosee34af32005-09-21 11:54:36 -0500310 hdr = (struct ieee80211_hdr_3addr *)skb->data;
Jeff Garzikb4538722005-05-12 22:48:20 -0400311 hdrlen = ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_ctl));
312
313 atomic_inc(&crypt->refcnt);
314 res = crypt->ops->decrypt_msdu(skb, keyidx, hdrlen, crypt->priv);
315 atomic_dec(&crypt->refcnt);
316 if (res < 0) {
317 printk(KERN_DEBUG "%s: MSDU decryption/MIC verification failed"
318 " (SA=" MAC_FMT " keyidx=%d)\n",
319 ieee->dev->name, MAC_ARG(hdr->addr2), keyidx);
320 return -1;
321 }
322
323 return 0;
324}
325
Jeff Garzikb4538722005-05-12 22:48:20 -0400326/* All received frames are sent to this function. @skb contains the frame in
327 * IEEE 802.11 format, i.e., in the format it was sent over air.
328 * This function is called only as a tasklet (software IRQ). */
329int ieee80211_rx(struct ieee80211_device *ieee, struct sk_buff *skb,
330 struct ieee80211_rx_stats *rx_stats)
331{
332 struct net_device *dev = ieee->dev;
James Ketrenosee34af32005-09-21 11:54:36 -0500333 struct ieee80211_hdr_4addr *hdr;
Jeff Garzikb4538722005-05-12 22:48:20 -0400334 size_t hdrlen;
335 u16 fc, type, stype, sc;
336 struct net_device_stats *stats;
337 unsigned int frag;
338 u8 *payload;
339 u16 ethertype;
340#ifdef NOT_YET
341 struct net_device *wds = NULL;
342 struct sk_buff *skb2 = NULL;
343 struct net_device *wds = NULL;
344 int frame_authorized = 0;
345 int from_assoc_ap = 0;
346 void *sta = NULL;
347#endif
348 u8 dst[ETH_ALEN];
349 u8 src[ETH_ALEN];
350 struct ieee80211_crypt_data *crypt = NULL;
351 int keyidx = 0;
Zhu Yib6daa252006-01-19 16:20:42 +0800352 int can_be_decrypted = 0;
Jeff Garzikb4538722005-05-12 22:48:20 -0400353
James Ketrenosee34af32005-09-21 11:54:36 -0500354 hdr = (struct ieee80211_hdr_4addr *)skb->data;
Jeff Garzikb4538722005-05-12 22:48:20 -0400355 stats = &ieee->stats;
356
357 if (skb->len < 10) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400358 printk(KERN_INFO "%s: SKB length < 10\n", dev->name);
Jeff Garzikb4538722005-05-12 22:48:20 -0400359 goto rx_dropped;
360 }
361
362 fc = le16_to_cpu(hdr->frame_ctl);
363 type = WLAN_FC_GET_TYPE(fc);
364 stype = WLAN_FC_GET_STYPE(fc);
365 sc = le16_to_cpu(hdr->seq_ctl);
366 frag = WLAN_GET_SEQ_FRAG(sc);
367 hdrlen = ieee80211_get_hdrlen(fc);
368
Jeff Garzikb4538722005-05-12 22:48:20 -0400369 /* Put this code here so that we avoid duplicating it in all
370 * Rx paths. - Jean II */
Horms8f7eb4072006-06-26 17:44:38 +0900371#ifdef CONFIG_WIRELESS_EXT
Jeff Garzikb4538722005-05-12 22:48:20 -0400372#ifdef IW_WIRELESS_SPY /* defined in iw_handler.h */
373 /* If spy monitoring on */
James Ketrenos74079fd2005-09-13 17:35:21 -0500374 if (ieee->spy_data.spy_number > 0) {
Jeff Garzikb4538722005-05-12 22:48:20 -0400375 struct iw_quality wstats;
James Ketrenos74079fd2005-09-13 17:35:21 -0500376
377 wstats.updated = 0;
378 if (rx_stats->mask & IEEE80211_STATMASK_RSSI) {
379 wstats.level = rx_stats->rssi;
380 wstats.updated |= IW_QUAL_LEVEL_UPDATED;
381 } else
382 wstats.updated |= IW_QUAL_LEVEL_INVALID;
383
384 if (rx_stats->mask & IEEE80211_STATMASK_NOISE) {
385 wstats.noise = rx_stats->noise;
386 wstats.updated |= IW_QUAL_NOISE_UPDATED;
387 } else
388 wstats.updated |= IW_QUAL_NOISE_INVALID;
389
390 if (rx_stats->mask & IEEE80211_STATMASK_SIGNAL) {
391 wstats.qual = rx_stats->signal;
392 wstats.updated |= IW_QUAL_QUAL_UPDATED;
393 } else
394 wstats.updated |= IW_QUAL_QUAL_INVALID;
395
Jeff Garzikb4538722005-05-12 22:48:20 -0400396 /* Update spy records */
James Ketrenos74079fd2005-09-13 17:35:21 -0500397 wireless_spy_update(ieee->dev, hdr->addr2, &wstats);
Jeff Garzikb4538722005-05-12 22:48:20 -0400398 }
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400399#endif /* IW_WIRELESS_SPY */
Horms8f7eb4072006-06-26 17:44:38 +0900400#endif /* CONFIG_WIRELESS_EXT */
James Ketrenos74079fd2005-09-13 17:35:21 -0500401
402#ifdef NOT_YET
Jeff Garzikb4538722005-05-12 22:48:20 -0400403 hostap_update_rx_stats(local->ap, hdr, rx_stats);
404#endif
405
Jeff Garzikb4538722005-05-12 22:48:20 -0400406 if (ieee->iw_mode == IW_MODE_MONITOR) {
Jeff Garzikb4538722005-05-12 22:48:20 -0400407 stats->rx_packets++;
408 stats->rx_bytes += skb->len;
Eric Sesterhenn60d48f12006-06-21 21:05:58 +0200409 ieee80211_monitor_rx(ieee, skb, rx_stats);
Jeff Garzikb4538722005-05-12 22:48:20 -0400410 return 1;
411 }
Jeff Garzikb4538722005-05-12 22:48:20 -0400412
Zhu Yib6daa252006-01-19 16:20:42 +0800413 can_be_decrypted = (is_multicast_ether_addr(hdr->addr1) ||
414 is_broadcast_ether_addr(hdr->addr2)) ?
415 ieee->host_mc_decrypt : ieee->host_decrypt;
416
417 if (can_be_decrypted) {
Zhu Yib6daa252006-01-19 16:20:42 +0800418 if (skb->len >= hdrlen + 3) {
419 /* Top two-bits of byte 3 are the key index */
Daniel Drakec9308b02006-09-27 03:50:31 +0100420 keyidx = skb->data[hdrlen + 3] >> 6;
Zhu Yib6daa252006-01-19 16:20:42 +0800421 }
422
Daniel Drakec9308b02006-09-27 03:50:31 +0100423 /* ieee->crypt[] is WEP_KEY (4) in length. Given that keyidx
424 * is only allowed 2-bits of storage, no value of keyidx can
425 * be provided via above code that would result in keyidx
Zhu Yib6daa252006-01-19 16:20:42 +0800426 * being out of range */
Daniel Drakec9308b02006-09-27 03:50:31 +0100427 crypt = ieee->crypt[keyidx];
Zhu Yib6daa252006-01-19 16:20:42 +0800428
Jeff Garzikb4538722005-05-12 22:48:20 -0400429#ifdef NOT_YET
430 sta = NULL;
431
432 /* Use station specific key to override default keys if the
433 * receiver address is a unicast address ("individual RA"). If
434 * bcrx_sta_key parameter is set, station specific key is used
435 * even with broad/multicast targets (this is against IEEE
436 * 802.11, but makes it easier to use different keys with
437 * stations that do not support WEP key mapping). */
438
439 if (!(hdr->addr1[0] & 0x01) || local->bcrx_sta_key)
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400440 (void)hostap_handle_sta_crypto(local, hdr, &crypt,
441 &sta);
Jeff Garzikb4538722005-05-12 22:48:20 -0400442#endif
443
444 /* allow NULL decrypt to indicate an station specific override
445 * for default encryption */
446 if (crypt && (crypt->ops == NULL ||
447 crypt->ops->decrypt_mpdu == NULL))
448 crypt = NULL;
449
Jiri Bencf13baae2005-08-25 20:11:46 -0400450 if (!crypt && (fc & IEEE80211_FCTL_PROTECTED)) {
Jeff Garzikb4538722005-05-12 22:48:20 -0400451 /* This seems to be triggered by some (multicast?)
452 * frames from other than current BSS, so just drop the
453 * frames silently instead of filling system log with
454 * these reports. */
455 IEEE80211_DEBUG_DROP("Decryption failed (not set)"
456 " (SA=" MAC_FMT ")\n",
457 MAC_ARG(hdr->addr2));
458 ieee->ieee_stats.rx_discards_undecryptable++;
459 goto rx_dropped;
460 }
461 }
Jeff Garzikb4538722005-05-12 22:48:20 -0400462#ifdef NOT_YET
463 if (type != WLAN_FC_TYPE_DATA) {
464 if (type == WLAN_FC_TYPE_MGMT && stype == WLAN_FC_STYPE_AUTH &&
Jiri Bencf13baae2005-08-25 20:11:46 -0400465 fc & IEEE80211_FCTL_PROTECTED && ieee->host_decrypt &&
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400466 (keyidx = hostap_rx_frame_decrypt(ieee, skb, crypt)) < 0) {
Jeff Garzikb4538722005-05-12 22:48:20 -0400467 printk(KERN_DEBUG "%s: failed to decrypt mgmt::auth "
468 "from " MAC_FMT "\n", dev->name,
469 MAC_ARG(hdr->addr2));
470 /* TODO: could inform hostapd about this so that it
471 * could send auth failure report */
472 goto rx_dropped;
473 }
474
475 if (ieee80211_rx_frame_mgmt(ieee, skb, rx_stats, type, stype))
476 goto rx_dropped;
477 else
478 goto rx_exit;
479 }
480#endif
481
482 /* Data frame - extract src/dst addresses */
Jiri Benc286d9742005-05-24 15:10:18 +0200483 if (skb->len < IEEE80211_3ADDR_LEN)
Jeff Garzikb4538722005-05-12 22:48:20 -0400484 goto rx_dropped;
485
486 switch (fc & (IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS)) {
487 case IEEE80211_FCTL_FROMDS:
488 memcpy(dst, hdr->addr1, ETH_ALEN);
489 memcpy(src, hdr->addr3, ETH_ALEN);
490 break;
491 case IEEE80211_FCTL_TODS:
492 memcpy(dst, hdr->addr3, ETH_ALEN);
493 memcpy(src, hdr->addr2, ETH_ALEN);
494 break;
495 case IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS:
Jiri Benc286d9742005-05-24 15:10:18 +0200496 if (skb->len < IEEE80211_4ADDR_LEN)
Jeff Garzikb4538722005-05-12 22:48:20 -0400497 goto rx_dropped;
498 memcpy(dst, hdr->addr3, ETH_ALEN);
499 memcpy(src, hdr->addr4, ETH_ALEN);
500 break;
501 case 0:
502 memcpy(dst, hdr->addr1, ETH_ALEN);
503 memcpy(src, hdr->addr2, ETH_ALEN);
504 break;
505 }
506
507#ifdef NOT_YET
508 if (hostap_rx_frame_wds(ieee, hdr, fc, &wds))
509 goto rx_dropped;
510 if (wds) {
511 skb->dev = dev = wds;
512 stats = hostap_get_stats(dev);
513 }
514
515 if (ieee->iw_mode == IW_MODE_MASTER && !wds &&
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400516 (fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) ==
517 IEEE80211_FCTL_FROMDS && ieee->stadev
Kris Katterjohnd3f4a682006-01-09 16:01:43 -0800518 && !compare_ether_addr(hdr->addr2, ieee->assoc_ap_addr)) {
Jeff Garzikb4538722005-05-12 22:48:20 -0400519 /* Frame from BSSID of the AP for which we are a client */
520 skb->dev = dev = ieee->stadev;
521 stats = hostap_get_stats(dev);
522 from_assoc_ap = 1;
523 }
524#endif
525
526 dev->last_rx = jiffies;
527
528#ifdef NOT_YET
529 if ((ieee->iw_mode == IW_MODE_MASTER ||
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400530 ieee->iw_mode == IW_MODE_REPEAT) && !from_assoc_ap) {
Jeff Garzikb4538722005-05-12 22:48:20 -0400531 switch (hostap_handle_sta_rx(ieee, dev, skb, rx_stats,
532 wds != NULL)) {
533 case AP_RX_CONTINUE_NOT_AUTHORIZED:
534 frame_authorized = 0;
535 break;
536 case AP_RX_CONTINUE:
537 frame_authorized = 1;
538 break;
539 case AP_RX_DROP:
540 goto rx_dropped;
541 case AP_RX_EXIT:
542 goto rx_exit;
543 }
544 }
545#endif
546
547 /* Nullfunc frames may have PS-bit set, so they must be passed to
548 * hostap_handle_sta_rx() before being dropped here. */
James Ketrenos9e8571a2005-09-21 11:56:33 -0500549
550 stype &= ~IEEE80211_STYPE_QOS_DATA;
551
Jeff Garzikb4538722005-05-12 22:48:20 -0400552 if (stype != IEEE80211_STYPE_DATA &&
553 stype != IEEE80211_STYPE_DATA_CFACK &&
554 stype != IEEE80211_STYPE_DATA_CFPOLL &&
555 stype != IEEE80211_STYPE_DATA_CFACKPOLL) {
556 if (stype != IEEE80211_STYPE_NULLFUNC)
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400557 IEEE80211_DEBUG_DROP("RX: dropped data frame "
558 "with no data (type=0x%02x, "
559 "subtype=0x%02x, len=%d)\n",
560 type, stype, skb->len);
Jeff Garzikb4538722005-05-12 22:48:20 -0400561 goto rx_dropped;
562 }
563
564 /* skb: hdr + (possibly fragmented, possibly encrypted) payload */
565
Zhu Yib6daa252006-01-19 16:20:42 +0800566 if ((fc & IEEE80211_FCTL_PROTECTED) && can_be_decrypted &&
Jeff Garzikb4538722005-05-12 22:48:20 -0400567 (keyidx = ieee80211_rx_frame_decrypt(ieee, skb, crypt)) < 0)
568 goto rx_dropped;
569
James Ketrenosee34af32005-09-21 11:54:36 -0500570 hdr = (struct ieee80211_hdr_4addr *)skb->data;
Jeff Garzikb4538722005-05-12 22:48:20 -0400571
572 /* skb: hdr + (possibly fragmented) plaintext payload */
573 // PR: FIXME: hostap has additional conditions in the "if" below:
Jiri Bencf13baae2005-08-25 20:11:46 -0400574 // ieee->host_decrypt && (fc & IEEE80211_FCTL_PROTECTED) &&
Denis Vlasenko9eafe762006-01-22 13:57:10 +0200575 if ((frag != 0) || (fc & IEEE80211_FCTL_MOREFRAGS)) {
Jeff Garzikb4538722005-05-12 22:48:20 -0400576 int flen;
577 struct sk_buff *frag_skb = ieee80211_frag_cache_get(ieee, hdr);
578 IEEE80211_DEBUG_FRAG("Rx Fragment received (%u)\n", frag);
579
580 if (!frag_skb) {
581 IEEE80211_DEBUG(IEEE80211_DL_RX | IEEE80211_DL_FRAG,
582 "Rx cannot get skb from fragment "
583 "cache (morefrag=%d seq=%u frag=%u)\n",
584 (fc & IEEE80211_FCTL_MOREFRAGS) != 0,
585 WLAN_GET_SEQ_SEQ(sc), frag);
586 goto rx_dropped;
587 }
588
589 flen = skb->len;
590 if (frag != 0)
591 flen -= hdrlen;
592
593 if (frag_skb->tail + flen > frag_skb->end) {
594 printk(KERN_WARNING "%s: host decrypted and "
595 "reassembled frame did not fit skb\n",
596 dev->name);
597 ieee80211_frag_cache_invalidate(ieee, hdr);
598 goto rx_dropped;
599 }
600
601 if (frag == 0) {
602 /* copy first fragment (including full headers) into
603 * beginning of the fragment cache skb */
604 memcpy(skb_put(frag_skb, flen), skb->data, flen);
605 } else {
606 /* append frame payload to the end of the fragment
607 * cache skb */
608 memcpy(skb_put(frag_skb, flen), skb->data + hdrlen,
609 flen);
610 }
611 dev_kfree_skb_any(skb);
612 skb = NULL;
613
614 if (fc & IEEE80211_FCTL_MOREFRAGS) {
615 /* more fragments expected - leave the skb in fragment
616 * cache for now; it will be delivered to upper layers
617 * after all fragments have been received */
618 goto rx_exit;
619 }
620
621 /* this was the last fragment and the frame will be
622 * delivered, so remove skb from fragment cache */
623 skb = frag_skb;
James Ketrenosee34af32005-09-21 11:54:36 -0500624 hdr = (struct ieee80211_hdr_4addr *)skb->data;
Jeff Garzikb4538722005-05-12 22:48:20 -0400625 ieee80211_frag_cache_invalidate(ieee, hdr);
626 }
627
628 /* skb: hdr + (possible reassembled) full MSDU payload; possibly still
629 * encrypted/authenticated */
Zhu Yib6daa252006-01-19 16:20:42 +0800630 if ((fc & IEEE80211_FCTL_PROTECTED) && can_be_decrypted &&
Jeff Garzikb4538722005-05-12 22:48:20 -0400631 ieee80211_rx_frame_decrypt_msdu(ieee, skb, keyidx, crypt))
632 goto rx_dropped;
633
James Ketrenosee34af32005-09-21 11:54:36 -0500634 hdr = (struct ieee80211_hdr_4addr *)skb->data;
Jiri Bencf13baae2005-08-25 20:11:46 -0400635 if (crypt && !(fc & IEEE80211_FCTL_PROTECTED) && !ieee->open_wep) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400636 if ( /*ieee->ieee802_1x && */
637 ieee80211_is_eapol_frame(ieee, skb)) {
Jeff Garzikb4538722005-05-12 22:48:20 -0400638 /* pass unencrypted EAPOL frames even if encryption is
639 * configured */
Jeff Garzikb4538722005-05-12 22:48:20 -0400640 } else {
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400641 IEEE80211_DEBUG_DROP("encryption configured, but RX "
642 "frame not encrypted (SA=" MAC_FMT
643 ")\n", MAC_ARG(hdr->addr2));
Jeff Garzikb4538722005-05-12 22:48:20 -0400644 goto rx_dropped;
645 }
646 }
647
Jiri Bencf13baae2005-08-25 20:11:46 -0400648 if (crypt && !(fc & IEEE80211_FCTL_PROTECTED) && !ieee->open_wep &&
Jeff Garzikb4538722005-05-12 22:48:20 -0400649 !ieee80211_is_eapol_frame(ieee, skb)) {
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400650 IEEE80211_DEBUG_DROP("dropped unencrypted RX data "
651 "frame from " MAC_FMT
652 " (drop_unencrypted=1)\n",
653 MAC_ARG(hdr->addr2));
Jeff Garzikb4538722005-05-12 22:48:20 -0400654 goto rx_dropped;
655 }
656
Daniel Drakec9308b02006-09-27 03:50:31 +0100657 /* If the frame was decrypted in hardware, we may need to strip off
658 * any security data (IV, ICV, etc) that was left behind */
659 if (!can_be_decrypted && (fc & IEEE80211_FCTL_PROTECTED) &&
660 ieee->host_strip_iv_icv) {
661 int trimlen = 0;
662
663 /* Top two-bits of byte 3 are the key index */
664 if (skb->len >= hdrlen + 3)
665 keyidx = skb->data[hdrlen + 3] >> 6;
666
667 /* To strip off any security data which appears before the
668 * payload, we simply increase hdrlen (as the header gets
669 * chopped off immediately below). For the security data which
670 * appears after the payload, we use skb_trim. */
671
672 switch (ieee->sec.encode_alg[keyidx]) {
673 case SEC_ALG_WEP:
674 /* 4 byte IV */
675 hdrlen += 4;
676 /* 4 byte ICV */
677 trimlen = 4;
678 break;
679 case SEC_ALG_TKIP:
680 /* 4 byte IV, 4 byte ExtIV */
681 hdrlen += 8;
682 /* 8 byte MIC, 4 byte ICV */
683 trimlen = 12;
684 break;
685 case SEC_ALG_CCMP:
686 /* 8 byte CCMP header */
687 hdrlen += 8;
688 /* 8 byte MIC */
689 trimlen = 8;
690 break;
691 }
692
693 if (skb->len < trimlen)
694 goto rx_dropped;
695
696 __skb_trim(skb, skb->len - trimlen);
697
698 if (skb->len < hdrlen)
699 goto rx_dropped;
700 }
701
Jeff Garzikb4538722005-05-12 22:48:20 -0400702 /* skb: hdr + (possible reassembled) full plaintext payload */
703
704 payload = skb->data + hdrlen;
705 ethertype = (payload[6] << 8) | payload[7];
706
707#ifdef NOT_YET
708 /* If IEEE 802.1X is used, check whether the port is authorized to send
709 * the received frame. */
710 if (ieee->ieee802_1x && ieee->iw_mode == IW_MODE_MASTER) {
711 if (ethertype == ETH_P_PAE) {
712 printk(KERN_DEBUG "%s: RX: IEEE 802.1X frame\n",
713 dev->name);
714 if (ieee->hostapd && ieee->apdev) {
715 /* Send IEEE 802.1X frames to the user
716 * space daemon for processing */
717 prism2_rx_80211(ieee->apdev, skb, rx_stats,
718 PRISM2_RX_MGMT);
719 ieee->apdevstats.rx_packets++;
720 ieee->apdevstats.rx_bytes += skb->len;
721 goto rx_exit;
722 }
723 } else if (!frame_authorized) {
724 printk(KERN_DEBUG "%s: dropped frame from "
725 "unauthorized port (IEEE 802.1X): "
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400726 "ethertype=0x%04x\n", dev->name, ethertype);
Jeff Garzikb4538722005-05-12 22:48:20 -0400727 goto rx_dropped;
728 }
729 }
730#endif
731
732 /* convert hdr + possible LLC headers into Ethernet header */
733 if (skb->len - hdrlen >= 8 &&
734 ((memcmp(payload, rfc1042_header, SNAP_SIZE) == 0 &&
735 ethertype != ETH_P_AARP && ethertype != ETH_P_IPX) ||
736 memcmp(payload, bridge_tunnel_header, SNAP_SIZE) == 0)) {
737 /* remove RFC1042 or Bridge-Tunnel encapsulation and
738 * replace EtherType */
739 skb_pull(skb, hdrlen + SNAP_SIZE);
740 memcpy(skb_push(skb, ETH_ALEN), src, ETH_ALEN);
741 memcpy(skb_push(skb, ETH_ALEN), dst, ETH_ALEN);
742 } else {
743 u16 len;
744 /* Leave Ethernet header part of hdr and full payload */
745 skb_pull(skb, hdrlen);
746 len = htons(skb->len);
747 memcpy(skb_push(skb, 2), &len, 2);
748 memcpy(skb_push(skb, ETH_ALEN), src, ETH_ALEN);
749 memcpy(skb_push(skb, ETH_ALEN), dst, ETH_ALEN);
750 }
751
752#ifdef NOT_YET
753 if (wds && ((fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) ==
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400754 IEEE80211_FCTL_TODS) && skb->len >= ETH_HLEN + ETH_ALEN) {
Jeff Garzikb4538722005-05-12 22:48:20 -0400755 /* Non-standard frame: get addr4 from its bogus location after
756 * the payload */
757 memcpy(skb->data + ETH_ALEN,
758 skb->data + skb->len - ETH_ALEN, ETH_ALEN);
759 skb_trim(skb, skb->len - ETH_ALEN);
760 }
761#endif
762
763 stats->rx_packets++;
764 stats->rx_bytes += skb->len;
765
766#ifdef NOT_YET
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400767 if (ieee->iw_mode == IW_MODE_MASTER && !wds && ieee->ap->bridge_packets) {
Jeff Garzikb4538722005-05-12 22:48:20 -0400768 if (dst[0] & 0x01) {
769 /* copy multicast frame both to the higher layers and
770 * to the wireless media */
771 ieee->ap->bridged_multicast++;
772 skb2 = skb_clone(skb, GFP_ATOMIC);
773 if (skb2 == NULL)
774 printk(KERN_DEBUG "%s: skb_clone failed for "
775 "multicast frame\n", dev->name);
776 } else if (hostap_is_sta_assoc(ieee->ap, dst)) {
777 /* send frame directly to the associated STA using
778 * wireless media and not passing to higher layers */
779 ieee->ap->bridged_unicast++;
780 skb2 = skb;
781 skb = NULL;
782 }
783 }
784
785 if (skb2 != NULL) {
786 /* send to wireless media */
787 skb2->protocol = __constant_htons(ETH_P_802_3);
788 skb2->mac.raw = skb2->nh.raw = skb2->data;
789 /* skb2->nh.raw = skb2->data + ETH_HLEN; */
790 skb2->dev = dev;
791 dev_queue_xmit(skb2);
792 }
Jeff Garzikb4538722005-05-12 22:48:20 -0400793#endif
794
795 if (skb) {
796 skb->protocol = eth_type_trans(skb, dev);
797 memset(skb->cb, 0, sizeof(skb->cb));
798 skb->dev = dev;
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400799 skb->ip_summed = CHECKSUM_NONE; /* 802.11 crc not sufficient */
Zhu Yid6529232006-01-19 16:20:49 +0800800 if (netif_rx(skb) == NET_RX_DROP) {
801 /* netif_rx always succeeds, but it might drop
802 * the packet. If it drops the packet, we log that
803 * in our stats. */
804 IEEE80211_DEBUG_DROP
805 ("RX: netif_rx dropped the packet\n");
806 stats->rx_dropped++;
807 }
Jeff Garzikb4538722005-05-12 22:48:20 -0400808 }
809
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400810 rx_exit:
Jeff Garzikb4538722005-05-12 22:48:20 -0400811#ifdef NOT_YET
812 if (sta)
813 hostap_handle_sta_release(sta);
814#endif
815 return 1;
816
Jeff Garzik0edd5b42005-09-07 00:48:31 -0400817 rx_dropped:
Jeff Garzikb4538722005-05-12 22:48:20 -0400818 stats->rx_dropped++;
819
820 /* Returning 0 indicates to caller that we have not handled the SKB--
821 * so it is still allocated and can be used again by underlying
822 * hardware as a DMA target */
823 return 0;
824}
825
Daniel Drakef2060f032006-07-18 21:38:05 +0100826/* Filter out unrelated packets, call ieee80211_rx[_mgt]
827 * This function takes over the skb, it should not be used again after calling
828 * this function. */
829void ieee80211_rx_any(struct ieee80211_device *ieee,
Denis Vlasenko1a995b452006-01-24 16:57:11 +0200830 struct sk_buff *skb, struct ieee80211_rx_stats *stats)
831{
832 struct ieee80211_hdr_4addr *hdr;
833 int is_packet_for_us;
834 u16 fc;
835
Daniel Drakef2060f032006-07-18 21:38:05 +0100836 if (ieee->iw_mode == IW_MODE_MONITOR) {
837 if (!ieee80211_rx(ieee, skb, stats))
838 dev_kfree_skb_irq(skb);
839 return;
840 }
841
842 if (skb->len < sizeof(struct ieee80211_hdr))
843 goto drop_free;
Denis Vlasenko1a995b452006-01-24 16:57:11 +0200844
845 hdr = (struct ieee80211_hdr_4addr *)skb->data;
846 fc = le16_to_cpu(hdr->frame_ctl);
847
848 if ((fc & IEEE80211_FCTL_VERS) != 0)
Daniel Drakef2060f032006-07-18 21:38:05 +0100849 goto drop_free;
Denis Vlasenko1a995b452006-01-24 16:57:11 +0200850
851 switch (fc & IEEE80211_FCTL_FTYPE) {
852 case IEEE80211_FTYPE_MGMT:
Daniel Drakef2060f032006-07-18 21:38:05 +0100853 if (skb->len < sizeof(struct ieee80211_hdr_3addr))
854 goto drop_free;
Denis Vlasenko1a995b452006-01-24 16:57:11 +0200855 ieee80211_rx_mgt(ieee, hdr, stats);
Daniel Drakef2060f032006-07-18 21:38:05 +0100856 dev_kfree_skb_irq(skb);
857 return;
Denis Vlasenko1a995b452006-01-24 16:57:11 +0200858 case IEEE80211_FTYPE_DATA:
859 break;
860 case IEEE80211_FTYPE_CTL:
Daniel Drakef2060f032006-07-18 21:38:05 +0100861 return;
Denis Vlasenko1a995b452006-01-24 16:57:11 +0200862 default:
Daniel Drakef2060f032006-07-18 21:38:05 +0100863 return;
Denis Vlasenko1a995b452006-01-24 16:57:11 +0200864 }
865
866 is_packet_for_us = 0;
867 switch (ieee->iw_mode) {
868 case IW_MODE_ADHOC:
869 /* our BSS and not from/to DS */
870 if (memcmp(hdr->addr3, ieee->bssid, ETH_ALEN) == 0)
871 if ((fc & (IEEE80211_FCTL_TODS+IEEE80211_FCTL_FROMDS)) == 0) {
872 /* promisc: get all */
873 if (ieee->dev->flags & IFF_PROMISC)
874 is_packet_for_us = 1;
875 /* to us */
876 else if (memcmp(hdr->addr1, ieee->dev->dev_addr, ETH_ALEN) == 0)
877 is_packet_for_us = 1;
878 /* mcast */
879 else if (is_multicast_ether_addr(hdr->addr1))
880 is_packet_for_us = 1;
881 }
882 break;
883 case IW_MODE_INFRA:
884 /* our BSS (== from our AP) and from DS */
885 if (memcmp(hdr->addr2, ieee->bssid, ETH_ALEN) == 0)
886 if ((fc & (IEEE80211_FCTL_TODS+IEEE80211_FCTL_FROMDS)) == IEEE80211_FCTL_FROMDS) {
887 /* promisc: get all */
888 if (ieee->dev->flags & IFF_PROMISC)
889 is_packet_for_us = 1;
890 /* to us */
891 else if (memcmp(hdr->addr1, ieee->dev->dev_addr, ETH_ALEN) == 0)
892 is_packet_for_us = 1;
893 /* mcast */
894 else if (is_multicast_ether_addr(hdr->addr1)) {
895 /* not our own packet bcasted from AP */
896 if (memcmp(hdr->addr3, ieee->dev->dev_addr, ETH_ALEN))
897 is_packet_for_us = 1;
898 }
899 }
900 break;
901 default:
902 /* ? */
903 break;
904 }
905
906 if (is_packet_for_us)
Daniel Drakef2060f032006-07-18 21:38:05 +0100907 if (!ieee80211_rx(ieee, skb, stats))
908 dev_kfree_skb_irq(skb);
909 return;
910
911drop_free:
912 dev_kfree_skb_irq(skb);
913 ieee->stats.rx_dropped++;
914 return;
Denis Vlasenko1a995b452006-01-24 16:57:11 +0200915}
916
Jeff Garzikb4538722005-05-12 22:48:20 -0400917#define MGMT_FRAME_FIXED_PART_LENGTH 0x24
918
James Ketrenos9e8571a2005-09-21 11:56:33 -0500919static u8 qos_oui[QOS_OUI_LEN] = { 0x00, 0x50, 0xF2 };
920
921/*
922* Make ther structure we read from the beacon packet has
923* the right values
924*/
925static int ieee80211_verify_qos_info(struct ieee80211_qos_information_element
926 *info_element, int sub_type)
927{
928
929 if (info_element->qui_subtype != sub_type)
930 return -1;
931 if (memcmp(info_element->qui, qos_oui, QOS_OUI_LEN))
932 return -1;
933 if (info_element->qui_type != QOS_OUI_TYPE)
934 return -1;
935 if (info_element->version != QOS_VERSION_1)
936 return -1;
937
938 return 0;
939}
940
941/*
942 * Parse a QoS parameter element
943 */
944static int ieee80211_read_qos_param_element(struct ieee80211_qos_parameter_info
945 *element_param, struct ieee80211_info_element
946 *info_element)
947{
948 int ret = 0;
949 u16 size = sizeof(struct ieee80211_qos_parameter_info) - 2;
950
951 if ((info_element == NULL) || (element_param == NULL))
952 return -1;
953
954 if (info_element->id == QOS_ELEMENT_ID && info_element->len == size) {
955 memcpy(element_param->info_element.qui, info_element->data,
956 info_element->len);
957 element_param->info_element.elementID = info_element->id;
958 element_param->info_element.length = info_element->len;
959 } else
960 ret = -1;
961 if (ret == 0)
962 ret = ieee80211_verify_qos_info(&element_param->info_element,
963 QOS_OUI_PARAM_SUB_TYPE);
964 return ret;
965}
966
967/*
968 * Parse a QoS information element
969 */
970static int ieee80211_read_qos_info_element(struct
971 ieee80211_qos_information_element
972 *element_info, struct ieee80211_info_element
973 *info_element)
974{
975 int ret = 0;
976 u16 size = sizeof(struct ieee80211_qos_information_element) - 2;
977
978 if (element_info == NULL)
979 return -1;
980 if (info_element == NULL)
981 return -1;
982
983 if ((info_element->id == QOS_ELEMENT_ID) && (info_element->len == size)) {
984 memcpy(element_info->qui, info_element->data,
985 info_element->len);
986 element_info->elementID = info_element->id;
987 element_info->length = info_element->len;
988 } else
989 ret = -1;
990
991 if (ret == 0)
992 ret = ieee80211_verify_qos_info(element_info,
993 QOS_OUI_INFO_SUB_TYPE);
994 return ret;
995}
996
997/*
998 * Write QoS parameters from the ac parameters.
999 */
1000static int ieee80211_qos_convert_ac_to_parameters(struct
1001 ieee80211_qos_parameter_info
1002 *param_elm, struct
1003 ieee80211_qos_parameters
1004 *qos_param)
1005{
1006 int rc = 0;
1007 int i;
1008 struct ieee80211_qos_ac_parameter *ac_params;
1009 u32 txop;
1010 u8 cw_min;
1011 u8 cw_max;
1012
1013 for (i = 0; i < QOS_QUEUE_NUM; i++) {
1014 ac_params = &(param_elm->ac_params_record[i]);
1015
1016 qos_param->aifs[i] = (ac_params->aci_aifsn) & 0x0F;
1017 qos_param->aifs[i] -= (qos_param->aifs[i] < 2) ? 0 : 2;
1018
1019 cw_min = ac_params->ecw_min_max & 0x0F;
1020 qos_param->cw_min[i] = (u16) ((1 << cw_min) - 1);
1021
1022 cw_max = (ac_params->ecw_min_max & 0xF0) >> 4;
1023 qos_param->cw_max[i] = (u16) ((1 << cw_max) - 1);
1024
1025 qos_param->flag[i] =
1026 (ac_params->aci_aifsn & 0x10) ? 0x01 : 0x00;
1027
1028 txop = le16_to_cpu(ac_params->tx_op_limit) * 32;
1029 qos_param->tx_op_limit[i] = (u16) txop;
1030 }
1031 return rc;
1032}
1033
1034/*
1035 * we have a generic data element which it may contain QoS information or
1036 * parameters element. check the information element length to decide
1037 * which type to read
1038 */
1039static int ieee80211_parse_qos_info_param_IE(struct ieee80211_info_element
1040 *info_element,
1041 struct ieee80211_network *network)
1042{
1043 int rc = 0;
1044 struct ieee80211_qos_parameters *qos_param = NULL;
1045 struct ieee80211_qos_information_element qos_info_element;
1046
1047 rc = ieee80211_read_qos_info_element(&qos_info_element, info_element);
1048
1049 if (rc == 0) {
1050 network->qos_data.param_count = qos_info_element.ac_info & 0x0F;
1051 network->flags |= NETWORK_HAS_QOS_INFORMATION;
1052 } else {
1053 struct ieee80211_qos_parameter_info param_element;
1054
1055 rc = ieee80211_read_qos_param_element(&param_element,
1056 info_element);
1057 if (rc == 0) {
1058 qos_param = &(network->qos_data.parameters);
1059 ieee80211_qos_convert_ac_to_parameters(&param_element,
1060 qos_param);
1061 network->flags |= NETWORK_HAS_QOS_PARAMETERS;
1062 network->qos_data.param_count =
1063 param_element.info_element.ac_info & 0x0F;
1064 }
1065 }
1066
1067 if (rc == 0) {
1068 IEEE80211_DEBUG_QOS("QoS is supported\n");
1069 network->qos_data.supported = 1;
1070 }
1071 return rc;
1072}
1073
Zhu Yid1b46b02006-01-19 16:22:15 +08001074#ifdef CONFIG_IEEE80211_DEBUG
1075#define MFIE_STRING(x) case MFIE_TYPE_ ##x: return #x
1076
1077static const char *get_info_element_string(u16 id)
1078{
1079 switch (id) {
1080 MFIE_STRING(SSID);
1081 MFIE_STRING(RATES);
1082 MFIE_STRING(FH_SET);
1083 MFIE_STRING(DS_SET);
1084 MFIE_STRING(CF_SET);
1085 MFIE_STRING(TIM);
1086 MFIE_STRING(IBSS_SET);
1087 MFIE_STRING(COUNTRY);
1088 MFIE_STRING(HOP_PARAMS);
1089 MFIE_STRING(HOP_TABLE);
1090 MFIE_STRING(REQUEST);
1091 MFIE_STRING(CHALLENGE);
1092 MFIE_STRING(POWER_CONSTRAINT);
1093 MFIE_STRING(POWER_CAPABILITY);
1094 MFIE_STRING(TPC_REQUEST);
1095 MFIE_STRING(TPC_REPORT);
1096 MFIE_STRING(SUPP_CHANNELS);
1097 MFIE_STRING(CSA);
1098 MFIE_STRING(MEASURE_REQUEST);
1099 MFIE_STRING(MEASURE_REPORT);
1100 MFIE_STRING(QUIET);
1101 MFIE_STRING(IBSS_DFS);
1102 MFIE_STRING(ERP_INFO);
1103 MFIE_STRING(RSN);
1104 MFIE_STRING(RATES_EX);
1105 MFIE_STRING(GENERIC);
1106 MFIE_STRING(QOS_PARAMETER);
1107 default:
1108 return "UNKNOWN";
1109 }
1110}
1111#endif
1112
James Ketrenosff0037b2005-10-03 10:23:42 -05001113static int ieee80211_parse_info_param(struct ieee80211_info_element
1114 *info_element, u16 length,
1115 struct ieee80211_network *network)
James Ketrenos9e8571a2005-09-21 11:56:33 -05001116{
Ivo van Doornff9e00f2005-10-03 10:19:25 -05001117 u8 i;
1118#ifdef CONFIG_IEEE80211_DEBUG
1119 char rates_str[64];
1120 char *p;
1121#endif
James Ketrenos9e8571a2005-09-21 11:56:33 -05001122
Ivo van Doornff9e00f2005-10-03 10:19:25 -05001123 while (length >= sizeof(*info_element)) {
1124 if (sizeof(*info_element) + info_element->len > length) {
Jiri Bencaec41a02006-10-18 19:34:40 +02001125 IEEE80211_DEBUG_MGMT("Info elem: parse failed: "
1126 "info_element->len + 2 > left : "
1127 "info_element->len+2=%zd left=%d, id=%d.\n",
1128 info_element->len +
1129 sizeof(*info_element),
1130 length, info_element->id);
Zhu Yif09fc442006-08-21 11:34:19 +08001131 /* We stop processing but don't return an error here
1132 * because some misbehaviour APs break this rule. ie.
1133 * Orinoco AP1000. */
1134 break;
James Ketrenos9e8571a2005-09-21 11:56:33 -05001135 }
1136
1137 switch (info_element->id) {
1138 case MFIE_TYPE_SSID:
1139 if (ieee80211_is_empty_essid(info_element->data,
1140 info_element->len)) {
1141 network->flags |= NETWORK_EMPTY_ESSID;
1142 break;
1143 }
1144
1145 network->ssid_len = min(info_element->len,
1146 (u8) IW_ESSID_MAX_SIZE);
1147 memcpy(network->ssid, info_element->data,
1148 network->ssid_len);
1149 if (network->ssid_len < IW_ESSID_MAX_SIZE)
1150 memset(network->ssid + network->ssid_len, 0,
1151 IW_ESSID_MAX_SIZE - network->ssid_len);
1152
Ivo van Doornff9e00f2005-10-03 10:19:25 -05001153 IEEE80211_DEBUG_MGMT("MFIE_TYPE_SSID: '%s' len=%d.\n",
James Ketrenosff0037b2005-10-03 10:23:42 -05001154 network->ssid, network->ssid_len);
James Ketrenos9e8571a2005-09-21 11:56:33 -05001155 break;
1156
Ivo van Doornff9e00f2005-10-03 10:19:25 -05001157 case MFIE_TYPE_RATES:
1158#ifdef CONFIG_IEEE80211_DEBUG
1159 p = rates_str;
1160#endif
1161 network->rates_len = min(info_element->len,
1162 MAX_RATES_LENGTH);
1163 for (i = 0; i < network->rates_len; i++) {
1164 network->rates[i] = info_element->data[i];
1165#ifdef CONFIG_IEEE80211_DEBUG
1166 p += snprintf(p, sizeof(rates_str) -
1167 (p - rates_str), "%02X ",
1168 network->rates[i]);
1169#endif
1170 if (ieee80211_is_ofdm_rate
1171 (info_element->data[i])) {
1172 network->flags |= NETWORK_HAS_OFDM;
1173 if (info_element->data[i] &
1174 IEEE80211_BASIC_RATE_MASK)
1175 network->flags &=
1176 ~NETWORK_HAS_CCK;
1177 }
1178 }
1179
1180 IEEE80211_DEBUG_MGMT("MFIE_TYPE_RATES: '%s' (%d)\n",
1181 rates_str, network->rates_len);
1182 break;
1183
1184 case MFIE_TYPE_RATES_EX:
1185#ifdef CONFIG_IEEE80211_DEBUG
1186 p = rates_str;
1187#endif
1188 network->rates_ex_len = min(info_element->len,
1189 MAX_RATES_EX_LENGTH);
1190 for (i = 0; i < network->rates_ex_len; i++) {
1191 network->rates_ex[i] = info_element->data[i];
1192#ifdef CONFIG_IEEE80211_DEBUG
1193 p += snprintf(p, sizeof(rates_str) -
1194 (p - rates_str), "%02X ",
1195 network->rates[i]);
1196#endif
1197 if (ieee80211_is_ofdm_rate
1198 (info_element->data[i])) {
1199 network->flags |= NETWORK_HAS_OFDM;
1200 if (info_element->data[i] &
1201 IEEE80211_BASIC_RATE_MASK)
1202 network->flags &=
1203 ~NETWORK_HAS_CCK;
1204 }
1205 }
1206
1207 IEEE80211_DEBUG_MGMT("MFIE_TYPE_RATES_EX: '%s' (%d)\n",
1208 rates_str, network->rates_ex_len);
1209 break;
1210
1211 case MFIE_TYPE_DS_SET:
1212 IEEE80211_DEBUG_MGMT("MFIE_TYPE_DS_SET: %d\n",
1213 info_element->data[0]);
1214 network->channel = info_element->data[0];
1215 break;
1216
1217 case MFIE_TYPE_FH_SET:
1218 IEEE80211_DEBUG_MGMT("MFIE_TYPE_FH_SET: ignored\n");
1219 break;
1220
1221 case MFIE_TYPE_CF_SET:
1222 IEEE80211_DEBUG_MGMT("MFIE_TYPE_CF_SET: ignored\n");
1223 break;
1224
James Ketrenos9e8571a2005-09-21 11:56:33 -05001225 case MFIE_TYPE_TIM:
Zhu Yi41a25c62006-01-19 16:22:23 +08001226 network->tim.tim_count = info_element->data[0];
1227 network->tim.tim_period = info_element->data[1];
1228 IEEE80211_DEBUG_MGMT("MFIE_TYPE_TIM: partially ignored\n");
Ivo van Doornff9e00f2005-10-03 10:19:25 -05001229 break;
1230
1231 case MFIE_TYPE_ERP_INFO:
1232 network->erp_value = info_element->data[0];
Daniel Draked8e2be92006-07-18 21:30:34 +01001233 network->flags |= NETWORK_HAS_ERP_VALUE;
Ivo van Doornff9e00f2005-10-03 10:19:25 -05001234 IEEE80211_DEBUG_MGMT("MFIE_TYPE_ERP_SET: %d\n",
1235 network->erp_value);
James Ketrenos9e8571a2005-09-21 11:56:33 -05001236 break;
1237
1238 case MFIE_TYPE_IBSS_SET:
Ivo van Doornff9e00f2005-10-03 10:19:25 -05001239 network->atim_window = info_element->data[0];
1240 IEEE80211_DEBUG_MGMT("MFIE_TYPE_IBSS_SET: %d\n",
1241 network->atim_window);
James Ketrenos9e8571a2005-09-21 11:56:33 -05001242 break;
1243
1244 case MFIE_TYPE_CHALLENGE:
Ivo van Doornff9e00f2005-10-03 10:19:25 -05001245 IEEE80211_DEBUG_MGMT("MFIE_TYPE_CHALLENGE: ignored\n");
James Ketrenos9e8571a2005-09-21 11:56:33 -05001246 break;
1247
1248 case MFIE_TYPE_GENERIC:
Ivo van Doornff9e00f2005-10-03 10:19:25 -05001249 IEEE80211_DEBUG_MGMT("MFIE_TYPE_GENERIC: %d bytes\n",
1250 info_element->len);
1251 if (!ieee80211_parse_qos_info_param_IE(info_element,
1252 network))
1253 break;
1254
1255 if (info_element->len >= 4 &&
1256 info_element->data[0] == 0x00 &&
1257 info_element->data[1] == 0x50 &&
1258 info_element->data[2] == 0xf2 &&
1259 info_element->data[3] == 0x01) {
1260 network->wpa_ie_len = min(info_element->len + 2,
1261 MAX_WPA_IE_LEN);
1262 memcpy(network->wpa_ie, info_element,
1263 network->wpa_ie_len);
1264 }
James Ketrenos9e8571a2005-09-21 11:56:33 -05001265 break;
1266
1267 case MFIE_TYPE_RSN:
Ivo van Doornff9e00f2005-10-03 10:19:25 -05001268 IEEE80211_DEBUG_MGMT("MFIE_TYPE_RSN: %d bytes\n",
1269 info_element->len);
1270 network->rsn_ie_len = min(info_element->len + 2,
1271 MAX_WPA_IE_LEN);
1272 memcpy(network->rsn_ie, info_element,
1273 network->rsn_ie_len);
James Ketrenos9e8571a2005-09-21 11:56:33 -05001274 break;
1275
1276 case MFIE_TYPE_QOS_PARAMETER:
James Ketrenosff0037b2005-10-03 10:23:42 -05001277 printk(KERN_ERR
1278 "QoS Error need to parse QOS_PARAMETER IE\n");
James Ketrenos9e8571a2005-09-21 11:56:33 -05001279 break;
Zhu Yid1b46b02006-01-19 16:22:15 +08001280 /* 802.11h */
1281 case MFIE_TYPE_POWER_CONSTRAINT:
1282 network->power_constraint = info_element->data[0];
1283 network->flags |= NETWORK_HAS_POWER_CONSTRAINT;
1284 break;
1285
1286 case MFIE_TYPE_CSA:
1287 network->power_constraint = info_element->data[0];
1288 network->flags |= NETWORK_HAS_CSA;
1289 break;
1290
1291 case MFIE_TYPE_QUIET:
1292 network->quiet.count = info_element->data[0];
1293 network->quiet.period = info_element->data[1];
1294 network->quiet.duration = info_element->data[2];
1295 network->quiet.offset = info_element->data[3];
1296 network->flags |= NETWORK_HAS_QUIET;
1297 break;
1298
1299 case MFIE_TYPE_IBSS_DFS:
1300 if (network->ibss_dfs)
1301 break;
1302 network->ibss_dfs =
1303 kmalloc(info_element->len, GFP_ATOMIC);
1304 if (!network->ibss_dfs)
1305 return 1;
1306 memcpy(network->ibss_dfs, info_element->data,
1307 info_element->len);
1308 network->flags |= NETWORK_HAS_IBSS_DFS;
1309 break;
1310
1311 case MFIE_TYPE_TPC_REPORT:
1312 network->tpc_report.transmit_power =
1313 info_element->data[0];
1314 network->tpc_report.link_margin = info_element->data[1];
1315 network->flags |= NETWORK_HAS_TPC_REPORT;
1316 break;
James Ketrenos9e8571a2005-09-21 11:56:33 -05001317
1318 default:
Zhu Yid1b46b02006-01-19 16:22:15 +08001319 IEEE80211_DEBUG_MGMT
1320 ("Unsupported info element: %s (%d)\n",
1321 get_info_element_string(info_element->id),
1322 info_element->id);
James Ketrenos9e8571a2005-09-21 11:56:33 -05001323 break;
1324 }
1325
Ivo van Doornff9e00f2005-10-03 10:19:25 -05001326 length -= sizeof(*info_element) + info_element->len;
James Ketrenosff0037b2005-10-03 10:23:42 -05001327 info_element =
1328 (struct ieee80211_info_element *)&info_element->
1329 data[info_element->len];
James Ketrenos9e8571a2005-09-21 11:56:33 -05001330 }
1331
Ivo van Doornff9e00f2005-10-03 10:19:25 -05001332 return 0;
1333}
1334
1335static int ieee80211_handle_assoc_resp(struct ieee80211_device *ieee, struct ieee80211_assoc_response
1336 *frame, struct ieee80211_rx_stats *stats)
1337{
Zhu Yid1b46b02006-01-19 16:22:15 +08001338 struct ieee80211_network network_resp = {
1339 .ibss_dfs = NULL,
1340 };
Ivo van Doornff9e00f2005-10-03 10:19:25 -05001341 struct ieee80211_network *network = &network_resp;
1342 struct net_device *dev = ieee->dev;
1343
1344 network->flags = 0;
1345 network->qos_data.active = 0;
1346 network->qos_data.supported = 0;
1347 network->qos_data.param_count = 0;
1348 network->qos_data.old_param_count = 0;
1349
1350 //network->atim_window = le16_to_cpu(frame->aid) & (0x3FFF);
1351 network->atim_window = le16_to_cpu(frame->aid);
1352 network->listen_interval = le16_to_cpu(frame->status);
Ivo van Doornc1bda442005-10-03 10:20:47 -05001353 memcpy(network->bssid, frame->header.addr3, ETH_ALEN);
1354 network->capability = le16_to_cpu(frame->capability);
1355 network->last_scanned = jiffies;
1356 network->rates_len = network->rates_ex_len = 0;
1357 network->last_associate = 0;
1358 network->ssid_len = 0;
James Ketrenosff0037b2005-10-03 10:23:42 -05001359 network->erp_value =
1360 (network->capability & WLAN_CAPABILITY_IBSS) ? 0x3 : 0x0;
Ivo van Doornc1bda442005-10-03 10:20:47 -05001361
1362 if (stats->freq == IEEE80211_52GHZ_BAND) {
1363 /* for A band (No DS info) */
1364 network->channel = stats->received_channel;
1365 } else
1366 network->flags |= NETWORK_HAS_CCK;
1367
1368 network->wpa_ie_len = 0;
1369 network->rsn_ie_len = 0;
Ivo van Doornff9e00f2005-10-03 10:19:25 -05001370
James Ketrenosff0037b2005-10-03 10:23:42 -05001371 if (ieee80211_parse_info_param
1372 (frame->info_element, stats->len - sizeof(*frame), network))
Ivo van Doornff9e00f2005-10-03 10:19:25 -05001373 return 1;
1374
Ivo van Doornc1bda442005-10-03 10:20:47 -05001375 network->mode = 0;
1376 if (stats->freq == IEEE80211_52GHZ_BAND)
1377 network->mode = IEEE_A;
1378 else {
1379 if (network->flags & NETWORK_HAS_OFDM)
1380 network->mode |= IEEE_G;
1381 if (network->flags & NETWORK_HAS_CCK)
1382 network->mode |= IEEE_B;
1383 }
1384
1385 if (ieee80211_is_empty_essid(network->ssid, network->ssid_len))
1386 network->flags |= NETWORK_EMPTY_ESSID;
1387
1388 memcpy(&network->stats, stats, sizeof(network->stats));
1389
James Ketrenos9e8571a2005-09-21 11:56:33 -05001390 if (ieee->handle_assoc_response != NULL)
1391 ieee->handle_assoc_response(dev, frame, network);
1392
1393 return 0;
1394}
1395
1396/***************************************************/
1397
Arjan van de Ven858119e2006-01-14 13:20:43 -08001398static int ieee80211_network_init(struct ieee80211_device *ieee, struct ieee80211_probe_response
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001399 *beacon,
1400 struct ieee80211_network *network,
1401 struct ieee80211_rx_stats *stats)
Jeff Garzikb4538722005-05-12 22:48:20 -04001402{
James Ketrenos9e8571a2005-09-21 11:56:33 -05001403 network->qos_data.active = 0;
1404 network->qos_data.supported = 0;
1405 network->qos_data.param_count = 0;
Ivo van Doornc1bda442005-10-03 10:20:47 -05001406 network->qos_data.old_param_count = 0;
Jeff Garzikb4538722005-05-12 22:48:20 -04001407
1408 /* Pull out fixed field data */
1409 memcpy(network->bssid, beacon->header.addr3, ETH_ALEN);
James Ketrenosfd278172005-09-13 17:25:51 -05001410 network->capability = le16_to_cpu(beacon->capability);
Jeff Garzikb4538722005-05-12 22:48:20 -04001411 network->last_scanned = jiffies;
James Ketrenosfd278172005-09-13 17:25:51 -05001412 network->time_stamp[0] = le32_to_cpu(beacon->time_stamp[0]);
1413 network->time_stamp[1] = le32_to_cpu(beacon->time_stamp[1]);
1414 network->beacon_interval = le16_to_cpu(beacon->beacon_interval);
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001415 /* Where to pull this? beacon->listen_interval; */
Jeff Garzikb4538722005-05-12 22:48:20 -04001416 network->listen_interval = 0x0A;
1417 network->rates_len = network->rates_ex_len = 0;
1418 network->last_associate = 0;
1419 network->ssid_len = 0;
1420 network->flags = 0;
1421 network->atim_window = 0;
James Ketrenos42c94e42005-09-21 11:58:29 -05001422 network->erp_value = (network->capability & WLAN_CAPABILITY_IBSS) ?
James Ketrenosccd0fda2005-09-21 11:58:32 -05001423 0x3 : 0x0;
Jeff Garzikb4538722005-05-12 22:48:20 -04001424
1425 if (stats->freq == IEEE80211_52GHZ_BAND) {
1426 /* for A band (No DS info) */
1427 network->channel = stats->received_channel;
1428 } else
1429 network->flags |= NETWORK_HAS_CCK;
1430
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001431 network->wpa_ie_len = 0;
1432 network->rsn_ie_len = 0;
Jeff Garzikb4538722005-05-12 22:48:20 -04001433
James Ketrenosff0037b2005-10-03 10:23:42 -05001434 if (ieee80211_parse_info_param
1435 (beacon->info_element, stats->len - sizeof(*beacon), network))
Ivo van Doornff9e00f2005-10-03 10:19:25 -05001436 return 1;
Jeff Garzikb4538722005-05-12 22:48:20 -04001437
1438 network->mode = 0;
1439 if (stats->freq == IEEE80211_52GHZ_BAND)
1440 network->mode = IEEE_A;
1441 else {
1442 if (network->flags & NETWORK_HAS_OFDM)
1443 network->mode |= IEEE_G;
1444 if (network->flags & NETWORK_HAS_CCK)
1445 network->mode |= IEEE_B;
1446 }
1447
1448 if (network->mode == 0) {
1449 IEEE80211_DEBUG_SCAN("Filtered out '%s (" MAC_FMT ")' "
1450 "network.\n",
1451 escape_essid(network->ssid,
1452 network->ssid_len),
1453 MAC_ARG(network->bssid));
1454 return 1;
1455 }
1456
1457 if (ieee80211_is_empty_essid(network->ssid, network->ssid_len))
1458 network->flags |= NETWORK_EMPTY_ESSID;
1459
1460 memcpy(&network->stats, stats, sizeof(network->stats));
1461
1462 return 0;
1463}
1464
1465static inline int is_same_network(struct ieee80211_network *src,
1466 struct ieee80211_network *dst)
1467{
1468 /* A network is only a duplicate if the channel, BSSID, and ESSID
1469 * all match. We treat all <hidden> with the same BSSID and channel
1470 * as one network */
1471 return ((src->ssid_len == dst->ssid_len) &&
1472 (src->channel == dst->channel) &&
Kris Katterjohnd3f4a682006-01-09 16:01:43 -08001473 !compare_ether_addr(src->bssid, dst->bssid) &&
Jeff Garzikb4538722005-05-12 22:48:20 -04001474 !memcmp(src->ssid, dst->ssid, src->ssid_len));
1475}
1476
Arjan van de Ven858119e2006-01-14 13:20:43 -08001477static void update_network(struct ieee80211_network *dst,
Jeff Garzikb4538722005-05-12 22:48:20 -04001478 struct ieee80211_network *src)
1479{
James Ketrenos9e8571a2005-09-21 11:56:33 -05001480 int qos_active;
1481 u8 old_param;
1482
Zhu Yid1b46b02006-01-19 16:22:15 +08001483 ieee80211_network_reset(dst);
1484 dst->ibss_dfs = src->ibss_dfs;
1485
James Ketrenosf44349f2006-03-08 13:14:45 -06001486 /* We only update the statistics if they were created by receiving
1487 * the network information on the actual channel the network is on.
1488 *
1489 * This keeps beacons received on neighbor channels from bringing
1490 * down the signal level of an AP. */
1491 if (dst->channel == src->stats.received_channel)
1492 memcpy(&dst->stats, &src->stats,
1493 sizeof(struct ieee80211_rx_stats));
1494 else
1495 IEEE80211_DEBUG_SCAN("Network " MAC_FMT " info received "
1496 "off channel (%d vs. %d)\n", MAC_ARG(src->bssid),
1497 dst->channel, src->stats.received_channel);
1498
Jeff Garzikb4538722005-05-12 22:48:20 -04001499 dst->capability = src->capability;
1500 memcpy(dst->rates, src->rates, src->rates_len);
1501 dst->rates_len = src->rates_len;
1502 memcpy(dst->rates_ex, src->rates_ex, src->rates_ex_len);
1503 dst->rates_ex_len = src->rates_ex_len;
1504
1505 dst->mode = src->mode;
1506 dst->flags = src->flags;
1507 dst->time_stamp[0] = src->time_stamp[0];
1508 dst->time_stamp[1] = src->time_stamp[1];
1509
1510 dst->beacon_interval = src->beacon_interval;
1511 dst->listen_interval = src->listen_interval;
1512 dst->atim_window = src->atim_window;
James Ketrenos42c94e42005-09-21 11:58:29 -05001513 dst->erp_value = src->erp_value;
Zhu Yi41a25c62006-01-19 16:22:23 +08001514 dst->tim = src->tim;
Jeff Garzikb4538722005-05-12 22:48:20 -04001515
1516 memcpy(dst->wpa_ie, src->wpa_ie, src->wpa_ie_len);
1517 dst->wpa_ie_len = src->wpa_ie_len;
1518 memcpy(dst->rsn_ie, src->rsn_ie, src->rsn_ie_len);
1519 dst->rsn_ie_len = src->rsn_ie_len;
1520
1521 dst->last_scanned = jiffies;
James Ketrenos9e8571a2005-09-21 11:56:33 -05001522 qos_active = src->qos_data.active;
1523 old_param = dst->qos_data.old_param_count;
1524 if (dst->flags & NETWORK_HAS_QOS_MASK)
1525 memcpy(&dst->qos_data, &src->qos_data,
1526 sizeof(struct ieee80211_qos_data));
1527 else {
1528 dst->qos_data.supported = src->qos_data.supported;
1529 dst->qos_data.param_count = src->qos_data.param_count;
1530 }
1531
1532 if (dst->qos_data.supported == 1) {
1533 if (dst->ssid_len)
1534 IEEE80211_DEBUG_QOS
1535 ("QoS the network %s is QoS supported\n",
1536 dst->ssid);
1537 else
1538 IEEE80211_DEBUG_QOS
1539 ("QoS the network is QoS supported\n");
1540 }
1541 dst->qos_data.active = qos_active;
1542 dst->qos_data.old_param_count = old_param;
1543
Jeff Garzikb4538722005-05-12 22:48:20 -04001544 /* dst->last_associate is not overwritten */
1545}
1546
Pete Zaitcev48328432006-02-26 23:43:20 -08001547static inline int is_beacon(__le16 fc)
James Ketrenos3f552bb2005-09-21 11:54:47 -05001548{
1549 return (WLAN_FC_GET_STYPE(le16_to_cpu(fc)) == IEEE80211_STYPE_BEACON);
1550}
1551
Arjan van de Ven858119e2006-01-14 13:20:43 -08001552static void ieee80211_process_probe_response(struct ieee80211_device
James Ketrenos74079fd2005-09-13 17:35:21 -05001553 *ieee, struct
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001554 ieee80211_probe_response
James Ketrenos74079fd2005-09-13 17:35:21 -05001555 *beacon, struct ieee80211_rx_stats
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001556 *stats)
Jeff Garzikb4538722005-05-12 22:48:20 -04001557{
James Ketrenos3f552bb2005-09-21 11:54:47 -05001558 struct net_device *dev = ieee->dev;
Zhu Yid1b46b02006-01-19 16:22:15 +08001559 struct ieee80211_network network = {
1560 .ibss_dfs = NULL,
1561 };
Jeff Garzikb4538722005-05-12 22:48:20 -04001562 struct ieee80211_network *target;
1563 struct ieee80211_network *oldest = NULL;
1564#ifdef CONFIG_IEEE80211_DEBUG
James Ketrenos68e4e032005-09-13 17:37:22 -05001565 struct ieee80211_info_element *info_element = beacon->info_element;
Jeff Garzikb4538722005-05-12 22:48:20 -04001566#endif
1567 unsigned long flags;
1568
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001569 IEEE80211_DEBUG_SCAN("'%s' (" MAC_FMT
1570 "): %c%c%c%c %c%c%c%c-%c%c%c%c %c%c%c%c\n",
1571 escape_essid(info_element->data,
1572 info_element->len),
1573 MAC_ARG(beacon->header.addr3),
1574 (beacon->capability & (1 << 0xf)) ? '1' : '0',
1575 (beacon->capability & (1 << 0xe)) ? '1' : '0',
1576 (beacon->capability & (1 << 0xd)) ? '1' : '0',
1577 (beacon->capability & (1 << 0xc)) ? '1' : '0',
1578 (beacon->capability & (1 << 0xb)) ? '1' : '0',
1579 (beacon->capability & (1 << 0xa)) ? '1' : '0',
1580 (beacon->capability & (1 << 0x9)) ? '1' : '0',
1581 (beacon->capability & (1 << 0x8)) ? '1' : '0',
1582 (beacon->capability & (1 << 0x7)) ? '1' : '0',
1583 (beacon->capability & (1 << 0x6)) ? '1' : '0',
1584 (beacon->capability & (1 << 0x5)) ? '1' : '0',
1585 (beacon->capability & (1 << 0x4)) ? '1' : '0',
1586 (beacon->capability & (1 << 0x3)) ? '1' : '0',
1587 (beacon->capability & (1 << 0x2)) ? '1' : '0',
1588 (beacon->capability & (1 << 0x1)) ? '1' : '0',
1589 (beacon->capability & (1 << 0x0)) ? '1' : '0');
Jeff Garzikb4538722005-05-12 22:48:20 -04001590
1591 if (ieee80211_network_init(ieee, beacon, &network, stats)) {
1592 IEEE80211_DEBUG_SCAN("Dropped '%s' (" MAC_FMT ") via %s.\n",
1593 escape_essid(info_element->data,
1594 info_element->len),
1595 MAC_ARG(beacon->header.addr3),
Pete Zaitcev48328432006-02-26 23:43:20 -08001596 is_beacon(beacon->header.frame_ctl) ?
James Ketrenos3f552bb2005-09-21 11:54:47 -05001597 "BEACON" : "PROBE RESPONSE");
Jeff Garzikb4538722005-05-12 22:48:20 -04001598 return;
1599 }
1600
1601 /* The network parsed correctly -- so now we scan our known networks
1602 * to see if we can find it in our list.
1603 *
1604 * NOTE: This search is definitely not optimized. Once its doing
1605 * the "right thing" we'll optimize it for efficiency if
1606 * necessary */
1607
1608 /* Search for this entry in the list and update it if it is
1609 * already there. */
1610
1611 spin_lock_irqsave(&ieee->lock, flags);
1612
1613 list_for_each_entry(target, &ieee->network_list, list) {
1614 if (is_same_network(target, &network))
1615 break;
1616
1617 if ((oldest == NULL) ||
1618 (target->last_scanned < oldest->last_scanned))
1619 oldest = target;
1620 }
1621
1622 /* If we didn't find a match, then get a new network slot to initialize
1623 * with this beacon's information */
1624 if (&target->list == &ieee->network_list) {
1625 if (list_empty(&ieee->network_free_list)) {
1626 /* If there are no more slots, expire the oldest */
1627 list_del(&oldest->list);
1628 target = oldest;
1629 IEEE80211_DEBUG_SCAN("Expired '%s' (" MAC_FMT ") from "
1630 "network list.\n",
1631 escape_essid(target->ssid,
1632 target->ssid_len),
1633 MAC_ARG(target->bssid));
Zhu Yid1b46b02006-01-19 16:22:15 +08001634 ieee80211_network_reset(target);
Jeff Garzikb4538722005-05-12 22:48:20 -04001635 } else {
1636 /* Otherwise just pull from the free list */
1637 target = list_entry(ieee->network_free_list.next,
1638 struct ieee80211_network, list);
1639 list_del(ieee->network_free_list.next);
1640 }
1641
Jeff Garzikb4538722005-05-12 22:48:20 -04001642#ifdef CONFIG_IEEE80211_DEBUG
1643 IEEE80211_DEBUG_SCAN("Adding '%s' (" MAC_FMT ") via %s.\n",
1644 escape_essid(network.ssid,
1645 network.ssid_len),
1646 MAC_ARG(network.bssid),
Pete Zaitcev48328432006-02-26 23:43:20 -08001647 is_beacon(beacon->header.frame_ctl) ?
James Ketrenos3f552bb2005-09-21 11:54:47 -05001648 "BEACON" : "PROBE RESPONSE");
Jeff Garzikb4538722005-05-12 22:48:20 -04001649#endif
1650 memcpy(target, &network, sizeof(*target));
Zhu Yid1b46b02006-01-19 16:22:15 +08001651 network.ibss_dfs = NULL;
Jeff Garzikb4538722005-05-12 22:48:20 -04001652 list_add_tail(&target->list, &ieee->network_list);
1653 } else {
1654 IEEE80211_DEBUG_SCAN("Updating '%s' (" MAC_FMT ") via %s.\n",
1655 escape_essid(target->ssid,
1656 target->ssid_len),
1657 MAC_ARG(target->bssid),
Pete Zaitcev48328432006-02-26 23:43:20 -08001658 is_beacon(beacon->header.frame_ctl) ?
James Ketrenos3f552bb2005-09-21 11:54:47 -05001659 "BEACON" : "PROBE RESPONSE");
Jeff Garzikb4538722005-05-12 22:48:20 -04001660 update_network(target, &network);
Zhu Yid1b46b02006-01-19 16:22:15 +08001661 network.ibss_dfs = NULL;
Jeff Garzikb4538722005-05-12 22:48:20 -04001662 }
1663
1664 spin_unlock_irqrestore(&ieee->lock, flags);
James Ketrenos3f552bb2005-09-21 11:54:47 -05001665
Pete Zaitcev48328432006-02-26 23:43:20 -08001666 if (is_beacon(beacon->header.frame_ctl)) {
James Ketrenos3f552bb2005-09-21 11:54:47 -05001667 if (ieee->handle_beacon != NULL)
Hong Liu72df16f2006-03-08 10:50:20 +08001668 ieee->handle_beacon(dev, beacon, target);
James Ketrenos3f552bb2005-09-21 11:54:47 -05001669 } else {
1670 if (ieee->handle_probe_response != NULL)
Hong Liu72df16f2006-03-08 10:50:20 +08001671 ieee->handle_probe_response(dev, beacon, target);
James Ketrenos3f552bb2005-09-21 11:54:47 -05001672 }
Jeff Garzikb4538722005-05-12 22:48:20 -04001673}
1674
1675void ieee80211_rx_mgt(struct ieee80211_device *ieee,
James Ketrenosee34af32005-09-21 11:54:36 -05001676 struct ieee80211_hdr_4addr *header,
Jeff Garzikb4538722005-05-12 22:48:20 -04001677 struct ieee80211_rx_stats *stats)
1678{
James Ketrenosfd278172005-09-13 17:25:51 -05001679 switch (WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl))) {
Jeff Garzikb4538722005-05-12 22:48:20 -04001680 case IEEE80211_STYPE_ASSOC_RESP:
1681 IEEE80211_DEBUG_MGMT("received ASSOCIATION RESPONSE (%d)\n",
James Ketrenosfd278172005-09-13 17:25:51 -05001682 WLAN_FC_GET_STYPE(le16_to_cpu
1683 (header->frame_ctl)));
James Ketrenos9e8571a2005-09-21 11:56:33 -05001684 ieee80211_handle_assoc_resp(ieee,
1685 (struct ieee80211_assoc_response *)
1686 header, stats);
Jeff Garzikb4538722005-05-12 22:48:20 -04001687 break;
1688
1689 case IEEE80211_STYPE_REASSOC_RESP:
1690 IEEE80211_DEBUG_MGMT("received REASSOCIATION RESPONSE (%d)\n",
James Ketrenosfd278172005-09-13 17:25:51 -05001691 WLAN_FC_GET_STYPE(le16_to_cpu
1692 (header->frame_ctl)));
Jeff Garzikb4538722005-05-12 22:48:20 -04001693 break;
1694
James Ketrenos42c94e42005-09-21 11:58:29 -05001695 case IEEE80211_STYPE_PROBE_REQ:
Larry Finger1a1fedf2006-01-30 09:42:24 -06001696 IEEE80211_DEBUG_MGMT("received auth (%d)\n",
James Ketrenos42c94e42005-09-21 11:58:29 -05001697 WLAN_FC_GET_STYPE(le16_to_cpu
1698 (header->frame_ctl)));
1699
1700 if (ieee->handle_probe_request != NULL)
1701 ieee->handle_probe_request(ieee->dev,
1702 (struct
1703 ieee80211_probe_request *)
1704 header, stats);
1705 break;
1706
Jeff Garzikb4538722005-05-12 22:48:20 -04001707 case IEEE80211_STYPE_PROBE_RESP:
1708 IEEE80211_DEBUG_MGMT("received PROBE RESPONSE (%d)\n",
James Ketrenosfd278172005-09-13 17:25:51 -05001709 WLAN_FC_GET_STYPE(le16_to_cpu
1710 (header->frame_ctl)));
Jeff Garzikb4538722005-05-12 22:48:20 -04001711 IEEE80211_DEBUG_SCAN("Probe response\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001712 ieee80211_process_probe_response(ieee,
1713 (struct
1714 ieee80211_probe_response *)
1715 header, stats);
Jeff Garzikb4538722005-05-12 22:48:20 -04001716 break;
1717
1718 case IEEE80211_STYPE_BEACON:
1719 IEEE80211_DEBUG_MGMT("received BEACON (%d)\n",
James Ketrenosfd278172005-09-13 17:25:51 -05001720 WLAN_FC_GET_STYPE(le16_to_cpu
1721 (header->frame_ctl)));
Jeff Garzikb4538722005-05-12 22:48:20 -04001722 IEEE80211_DEBUG_SCAN("Beacon\n");
Jeff Garzik0edd5b42005-09-07 00:48:31 -04001723 ieee80211_process_probe_response(ieee,
1724 (struct
1725 ieee80211_probe_response *)
1726 header, stats);
Jeff Garzikb4538722005-05-12 22:48:20 -04001727 break;
James Ketrenos3f552bb2005-09-21 11:54:47 -05001728 case IEEE80211_STYPE_AUTH:
1729
Larry Finger1a1fedf2006-01-30 09:42:24 -06001730 IEEE80211_DEBUG_MGMT("received auth (%d)\n",
James Ketrenos3f552bb2005-09-21 11:54:47 -05001731 WLAN_FC_GET_STYPE(le16_to_cpu
1732 (header->frame_ctl)));
1733
1734 if (ieee->handle_auth != NULL)
1735 ieee->handle_auth(ieee->dev,
1736 (struct ieee80211_auth *)header);
1737 break;
1738
1739 case IEEE80211_STYPE_DISASSOC:
1740 if (ieee->handle_disassoc != NULL)
1741 ieee->handle_disassoc(ieee->dev,
1742 (struct ieee80211_disassoc *)
1743 header);
1744 break;
Jeff Garzikb4538722005-05-12 22:48:20 -04001745
Zhu Yid1b46b02006-01-19 16:22:15 +08001746 case IEEE80211_STYPE_ACTION:
1747 IEEE80211_DEBUG_MGMT("ACTION\n");
1748 if (ieee->handle_action)
1749 ieee->handle_action(ieee->dev,
1750 (struct ieee80211_action *)
1751 header, stats);
1752 break;
1753
Larry Finger2f633db2006-01-30 23:25:10 -06001754 case IEEE80211_STYPE_REASSOC_REQ:
1755 IEEE80211_DEBUG_MGMT("received reassoc (%d)\n",
1756 WLAN_FC_GET_STYPE(le16_to_cpu
1757 (header->frame_ctl)));
1758
Zhu Yi7736b5b2006-04-13 17:17:47 +08001759 IEEE80211_DEBUG_MGMT("%s: IEEE80211_REASSOC_REQ received\n",
1760 ieee->dev->name);
Larry Finger2f633db2006-01-30 23:25:10 -06001761 if (ieee->handle_reassoc_request != NULL)
1762 ieee->handle_reassoc_request(ieee->dev,
1763 (struct ieee80211_reassoc_request *)
1764 header);
1765 break;
1766
1767 case IEEE80211_STYPE_ASSOC_REQ:
1768 IEEE80211_DEBUG_MGMT("received assoc (%d)\n",
1769 WLAN_FC_GET_STYPE(le16_to_cpu
1770 (header->frame_ctl)));
1771
Zhu Yi7736b5b2006-04-13 17:17:47 +08001772 IEEE80211_DEBUG_MGMT("%s: IEEE80211_ASSOC_REQ received\n",
1773 ieee->dev->name);
Larry Finger2f633db2006-01-30 23:25:10 -06001774 if (ieee->handle_assoc_request != NULL)
1775 ieee->handle_assoc_request(ieee->dev);
1776 break;
1777
James Ketrenos31b59ea2005-09-21 11:58:49 -05001778 case IEEE80211_STYPE_DEAUTH:
Zhu Yid1b46b02006-01-19 16:22:15 +08001779 IEEE80211_DEBUG_MGMT("DEAUTH\n");
James Ketrenos31b59ea2005-09-21 11:58:49 -05001780 if (ieee->handle_deauth != NULL)
Zhu Yid1b46b02006-01-19 16:22:15 +08001781 ieee->handle_deauth(ieee->dev,
1782 (struct ieee80211_deauth *)
James Ketrenos31b59ea2005-09-21 11:58:49 -05001783 header);
1784 break;
Jeff Garzikb4538722005-05-12 22:48:20 -04001785 default:
1786 IEEE80211_DEBUG_MGMT("received UNKNOWN (%d)\n",
James Ketrenosfd278172005-09-13 17:25:51 -05001787 WLAN_FC_GET_STYPE(le16_to_cpu
1788 (header->frame_ctl)));
Zhu Yi7736b5b2006-04-13 17:17:47 +08001789 IEEE80211_DEBUG_MGMT("%s: Unknown management packet: %d\n",
1790 ieee->dev->name,
1791 WLAN_FC_GET_STYPE(le16_to_cpu
1792 (header->frame_ctl)));
Jeff Garzikb4538722005-05-12 22:48:20 -04001793 break;
1794 }
1795}
1796
Daniel Drakef2060f032006-07-18 21:38:05 +01001797EXPORT_SYMBOL_GPL(ieee80211_rx_any);
Jeff Garzikb4538722005-05-12 22:48:20 -04001798EXPORT_SYMBOL(ieee80211_rx_mgt);
1799EXPORT_SYMBOL(ieee80211_rx);