1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16#include <linux/compiler.h>
17#include <linux/errno.h>
18#include <linux/if_arp.h>
19#include <linux/in6.h>
20#include <linux/gfp.h>
21#include <linux/in.h>
22#include <linux/ip.h>
23#include <linux/kernel.h>
24#include <linux/module.h>
25#include <linux/netdevice.h>
26#include <linux/proc_fs.h>
27#include <linux/skbuff.h>
28#include <linux/tcp.h>
29#include <linux/types.h>
30#include <linux/wireless.h>
31#include <linux/etherdevice.h>
32#include <asm/uaccess.h>
33#include <linux/ctype.h>
34
35#include <net/lib80211.h>
36
37#include "libipw.h"
38
39static void libipw_monitor_rx(struct libipw_device *ieee,
40 struct sk_buff *skb,
41 struct libipw_rx_stats *rx_stats)
42{
43 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
44 u16 fc = le16_to_cpu(hdr->frame_control);
45
46 skb->dev = ieee->dev;
47 skb_reset_mac_header(skb);
48 skb_pull(skb, libipw_get_hdrlen(fc));
49 skb->pkt_type = PACKET_OTHERHOST;
50 skb->protocol = htons(ETH_P_80211_RAW);
51 memset(skb->cb, 0, sizeof(skb->cb));
52 netif_rx(skb);
53}
54
55
56static struct libipw_frag_entry *libipw_frag_cache_find(struct
57 libipw_device
58 *ieee,
59 unsigned int seq,
60 unsigned int frag,
61 u8 * src,
62 u8 * dst)
63{
64 struct libipw_frag_entry *entry;
65 int i;
66
67 for (i = 0; i < LIBIPW_FRAG_CACHE_LEN; i++) {
68 entry = &ieee->frag_cache[i];
69 if (entry->skb != NULL &&
70 time_after(jiffies, entry->first_frag_time + 2 * HZ)) {
71 LIBIPW_DEBUG_FRAG("expiring fragment cache entry "
72 "seq=%u last_frag=%u\n",
73 entry->seq, entry->last_frag);
74 dev_kfree_skb_any(entry->skb);
75 entry->skb = NULL;
76 }
77
78 if (entry->skb != NULL && entry->seq == seq &&
79 (entry->last_frag + 1 == frag || frag == -1) &&
80 ether_addr_equal(entry->src_addr, src) &&
81 ether_addr_equal(entry->dst_addr, dst))
82 return entry;
83 }
84
85 return NULL;
86}
87
88
89static struct sk_buff *libipw_frag_cache_get(struct libipw_device *ieee,
90 struct libipw_hdr_4addr *hdr)
91{
92 struct sk_buff *skb = NULL;
93 u16 sc;
94 unsigned int frag, seq;
95 struct libipw_frag_entry *entry;
96
97 sc = le16_to_cpu(hdr->seq_ctl);
98 frag = WLAN_GET_SEQ_FRAG(sc);
99 seq = WLAN_GET_SEQ_SEQ(sc);
100
101 if (frag == 0) {
102
103 skb = dev_alloc_skb(ieee->dev->mtu +
104 sizeof(struct libipw_hdr_4addr) +
105 8 +
106 2 +
107 8 + ETH_ALEN );
108 if (skb == NULL)
109 return NULL;
110
111 entry = &ieee->frag_cache[ieee->frag_next_idx];
112 ieee->frag_next_idx++;
113 if (ieee->frag_next_idx >= LIBIPW_FRAG_CACHE_LEN)
114 ieee->frag_next_idx = 0;
115
116 if (entry->skb != NULL)
117 dev_kfree_skb_any(entry->skb);
118
119 entry->first_frag_time = jiffies;
120 entry->seq = seq;
121 entry->last_frag = frag;
122 entry->skb = skb;
123 memcpy(entry->src_addr, hdr->addr2, ETH_ALEN);
124 memcpy(entry->dst_addr, hdr->addr1, ETH_ALEN);
125 } else {
126
127
128 entry = libipw_frag_cache_find(ieee, seq, frag, hdr->addr2,
129 hdr->addr1);
130 if (entry != NULL) {
131 entry->last_frag = frag;
132 skb = entry->skb;
133 }
134 }
135
136 return skb;
137}
138
139
140static int libipw_frag_cache_invalidate(struct libipw_device *ieee,
141 struct libipw_hdr_4addr *hdr)
142{
143 u16 sc;
144 unsigned int seq;
145 struct libipw_frag_entry *entry;
146
147 sc = le16_to_cpu(hdr->seq_ctl);
148 seq = WLAN_GET_SEQ_SEQ(sc);
149
150 entry = libipw_frag_cache_find(ieee, seq, -1, hdr->addr2,
151 hdr->addr1);
152
153 if (entry == NULL) {
154 LIBIPW_DEBUG_FRAG("could not invalidate fragment cache "
155 "entry (seq=%u)\n", seq);
156 return -1;
157 }
158
159 entry->skb = NULL;
160 return 0;
161}
162
163#ifdef NOT_YET
164
165
166
167
168
169static int
170libipw_rx_frame_mgmt(struct libipw_device *ieee, struct sk_buff *skb,
171 struct libipw_rx_stats *rx_stats, u16 type,
172 u16 stype)
173{
174 if (ieee->iw_mode == IW_MODE_MASTER) {
175 printk(KERN_DEBUG "%s: Master mode not yet supported.\n",
176 ieee->dev->name);
177 return 0;
178
179
180
181 }
182
183 if (ieee->hostapd && type == WLAN_FC_TYPE_MGMT) {
184 if (stype == WLAN_FC_STYPE_BEACON &&
185 ieee->iw_mode == IW_MODE_MASTER) {
186 struct sk_buff *skb2;
187
188
189 skb2 = skb_clone(skb, GFP_ATOMIC);
190 if (skb2)
191 hostap_rx(skb2->dev, skb2, rx_stats);
192 }
193
194
195
196 ieee->apdevstats.rx_packets++;
197 ieee->apdevstats.rx_bytes += skb->len;
198 prism2_rx_80211(ieee->apdev, skb, rx_stats, PRISM2_RX_MGMT);
199 return 0;
200 }
201
202 if (ieee->iw_mode == IW_MODE_MASTER) {
203 if (type != WLAN_FC_TYPE_MGMT && type != WLAN_FC_TYPE_CTRL) {
204 printk(KERN_DEBUG "%s: unknown management frame "
205 "(type=0x%02x, stype=0x%02x) dropped\n",
206 skb->dev->name, type, stype);
207 return -1;
208 }
209
210 hostap_rx(skb->dev, skb, rx_stats);
211 return 0;
212 }
213
214 printk(KERN_DEBUG "%s: hostap_rx_frame_mgmt: management frame "
215 "received in non-Host AP mode\n", skb->dev->name);
216 return -1;
217}
218#endif
219
220
221
222static unsigned char libipw_rfc1042_header[] =
223 { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
224
225
226static unsigned char libipw_bridge_tunnel_header[] =
227 { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0xf8 };
228
229
230
231static int libipw_is_eapol_frame(struct libipw_device *ieee,
232 struct sk_buff *skb)
233{
234 struct net_device *dev = ieee->dev;
235 u16 fc, ethertype;
236 struct libipw_hdr_3addr *hdr;
237 u8 *pos;
238
239 if (skb->len < 24)
240 return 0;
241
242 hdr = (struct libipw_hdr_3addr *)skb->data;
243 fc = le16_to_cpu(hdr->frame_ctl);
244
245
246 if ((fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) ==
247 IEEE80211_FCTL_TODS &&
248 ether_addr_equal(hdr->addr1, dev->dev_addr) &&
249 ether_addr_equal(hdr->addr3, dev->dev_addr)) {
250
251 } else if ((fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) ==
252 IEEE80211_FCTL_FROMDS &&
253 ether_addr_equal(hdr->addr1, dev->dev_addr)) {
254
255 } else
256 return 0;
257
258 if (skb->len < 24 + 8)
259 return 0;
260
261
262 pos = skb->data + 24;
263 ethertype = (pos[6] << 8) | pos[7];
264 if (ethertype == ETH_P_PAE)
265 return 1;
266
267 return 0;
268}
269
270
271static int
272libipw_rx_frame_decrypt(struct libipw_device *ieee, struct sk_buff *skb,
273 struct lib80211_crypt_data *crypt)
274{
275 struct libipw_hdr_3addr *hdr;
276 int res, hdrlen;
277
278 if (crypt == NULL || crypt->ops->decrypt_mpdu == NULL)
279 return 0;
280
281 hdr = (struct libipw_hdr_3addr *)skb->data;
282 hdrlen = libipw_get_hdrlen(le16_to_cpu(hdr->frame_ctl));
283
284 atomic_inc(&crypt->refcnt);
285 res = crypt->ops->decrypt_mpdu(skb, hdrlen, crypt->priv);
286 atomic_dec(&crypt->refcnt);
287 if (res < 0) {
288 LIBIPW_DEBUG_DROP("decryption failed (SA=%pM) res=%d\n",
289 hdr->addr2, res);
290 if (res == -2)
291 LIBIPW_DEBUG_DROP("Decryption failed ICV "
292 "mismatch (key %d)\n",
293 skb->data[hdrlen + 3] >> 6);
294 ieee->ieee_stats.rx_discards_undecryptable++;
295 return -1;
296 }
297
298 return res;
299}
300
301
302static int
303libipw_rx_frame_decrypt_msdu(struct libipw_device *ieee,
304 struct sk_buff *skb, int keyidx,
305 struct lib80211_crypt_data *crypt)
306{
307 struct libipw_hdr_3addr *hdr;
308 int res, hdrlen;
309
310 if (crypt == NULL || crypt->ops->decrypt_msdu == NULL)
311 return 0;
312
313 hdr = (struct libipw_hdr_3addr *)skb->data;
314 hdrlen = libipw_get_hdrlen(le16_to_cpu(hdr->frame_ctl));
315
316 atomic_inc(&crypt->refcnt);
317 res = crypt->ops->decrypt_msdu(skb, keyidx, hdrlen, crypt->priv);
318 atomic_dec(&crypt->refcnt);
319 if (res < 0) {
320 printk(KERN_DEBUG "%s: MSDU decryption/MIC verification failed"
321 " (SA=%pM keyidx=%d)\n", ieee->dev->name, hdr->addr2,
322 keyidx);
323 return -1;
324 }
325
326 return 0;
327}
328
329
330
331
332int libipw_rx(struct libipw_device *ieee, struct sk_buff *skb,
333 struct libipw_rx_stats *rx_stats)
334{
335 struct net_device *dev = ieee->dev;
336 struct libipw_hdr_4addr *hdr;
337 size_t hdrlen;
338 u16 fc, type, stype, sc;
339 unsigned int frag;
340 u8 *payload;
341 u16 ethertype;
342#ifdef NOT_YET
343 struct net_device *wds = NULL;
344 struct sk_buff *skb2 = NULL;
345 struct net_device *wds = NULL;
346 int frame_authorized = 0;
347 int from_assoc_ap = 0;
348 void *sta = NULL;
349#endif
350 u8 dst[ETH_ALEN];
351 u8 src[ETH_ALEN];
352 struct lib80211_crypt_data *crypt = NULL;
353 int keyidx = 0;
354 int can_be_decrypted = 0;
355
356 hdr = (struct libipw_hdr_4addr *)skb->data;
357 if (skb->len < 10) {
358 printk(KERN_INFO "%s: SKB length < 10\n", dev->name);
359 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 = libipw_get_hdrlen(fc);
368
369 if (skb->len < hdrlen) {
370 printk(KERN_INFO "%s: invalid SKB length %d\n",
371 dev->name, skb->len);
372 goto rx_dropped;
373 }
374
375
376
377#ifdef CONFIG_WIRELESS_EXT
378#ifdef IW_WIRELESS_SPY
379
380 if (ieee->spy_data.spy_number > 0) {
381 struct iw_quality wstats;
382
383 wstats.updated = 0;
384 if (rx_stats->mask & LIBIPW_STATMASK_RSSI) {
385 wstats.level = rx_stats->signal;
386 wstats.updated |= IW_QUAL_LEVEL_UPDATED;
387 } else
388 wstats.updated |= IW_QUAL_LEVEL_INVALID;
389
390 if (rx_stats->mask & LIBIPW_STATMASK_NOISE) {
391 wstats.noise = rx_stats->noise;
392 wstats.updated |= IW_QUAL_NOISE_UPDATED;
393 } else
394 wstats.updated |= IW_QUAL_NOISE_INVALID;
395
396 if (rx_stats->mask & LIBIPW_STATMASK_SIGNAL) {
397 wstats.qual = rx_stats->signal;
398 wstats.updated |= IW_QUAL_QUAL_UPDATED;
399 } else
400 wstats.updated |= IW_QUAL_QUAL_INVALID;
401
402
403 wireless_spy_update(ieee->dev, hdr->addr2, &wstats);
404 }
405#endif
406#endif
407
408#ifdef NOT_YET
409 hostap_update_rx_stats(local->ap, hdr, rx_stats);
410#endif
411
412 if (ieee->iw_mode == IW_MODE_MONITOR) {
413 dev->stats.rx_packets++;
414 dev->stats.rx_bytes += skb->len;
415 libipw_monitor_rx(ieee, skb, rx_stats);
416 return 1;
417 }
418
419 can_be_decrypted = (is_multicast_ether_addr(hdr->addr1) ||
420 is_broadcast_ether_addr(hdr->addr2)) ?
421 ieee->host_mc_decrypt : ieee->host_decrypt;
422
423 if (can_be_decrypted) {
424 if (skb->len >= hdrlen + 3) {
425
426 keyidx = skb->data[hdrlen + 3] >> 6;
427 }
428
429
430
431
432
433 crypt = ieee->crypt_info.crypt[keyidx];
434
435#ifdef NOT_YET
436 sta = NULL;
437
438
439
440
441
442
443
444
445 if (is_unicast_ether_addr(hdr->addr1) || local->bcrx_sta_key)
446 (void)hostap_handle_sta_crypto(local, hdr, &crypt,
447 &sta);
448#endif
449
450
451
452 if (crypt && (crypt->ops == NULL ||
453 crypt->ops->decrypt_mpdu == NULL))
454 crypt = NULL;
455
456 if (!crypt && (fc & IEEE80211_FCTL_PROTECTED)) {
457
458
459
460
461 LIBIPW_DEBUG_DROP("Decryption failed (not set)"
462 " (SA=%pM)\n", hdr->addr2);
463 ieee->ieee_stats.rx_discards_undecryptable++;
464 goto rx_dropped;
465 }
466 }
467#ifdef NOT_YET
468 if (type != WLAN_FC_TYPE_DATA) {
469 if (type == WLAN_FC_TYPE_MGMT && stype == WLAN_FC_STYPE_AUTH &&
470 fc & IEEE80211_FCTL_PROTECTED && ieee->host_decrypt &&
471 (keyidx = hostap_rx_frame_decrypt(ieee, skb, crypt)) < 0) {
472 printk(KERN_DEBUG "%s: failed to decrypt mgmt::auth "
473 "from %pM\n", dev->name, hdr->addr2);
474
475
476 goto rx_dropped;
477 }
478
479 if (libipw_rx_frame_mgmt(ieee, skb, rx_stats, type, stype))
480 goto rx_dropped;
481 else
482 goto rx_exit;
483 }
484#endif
485
486 if (sc == ieee->prev_seq_ctl)
487 goto rx_dropped;
488 else
489 ieee->prev_seq_ctl = sc;
490
491
492 if (skb->len < LIBIPW_3ADDR_LEN)
493 goto rx_dropped;
494
495 switch (fc & (IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS)) {
496 case IEEE80211_FCTL_FROMDS:
497 memcpy(dst, hdr->addr1, ETH_ALEN);
498 memcpy(src, hdr->addr3, ETH_ALEN);
499 break;
500 case IEEE80211_FCTL_TODS:
501 memcpy(dst, hdr->addr3, ETH_ALEN);
502 memcpy(src, hdr->addr2, ETH_ALEN);
503 break;
504 case IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS:
505 if (skb->len < LIBIPW_4ADDR_LEN)
506 goto rx_dropped;
507 memcpy(dst, hdr->addr3, ETH_ALEN);
508 memcpy(src, hdr->addr4, ETH_ALEN);
509 break;
510 case 0:
511 memcpy(dst, hdr->addr1, ETH_ALEN);
512 memcpy(src, hdr->addr2, ETH_ALEN);
513 break;
514 }
515
516#ifdef NOT_YET
517 if (hostap_rx_frame_wds(ieee, hdr, fc, &wds))
518 goto rx_dropped;
519 if (wds) {
520 skb->dev = dev = wds;
521 stats = hostap_get_stats(dev);
522 }
523
524 if (ieee->iw_mode == IW_MODE_MASTER && !wds &&
525 (fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) ==
526 IEEE80211_FCTL_FROMDS && ieee->stadev &&
527 ether_addr_equal(hdr->addr2, ieee->assoc_ap_addr)) {
528
529 skb->dev = dev = ieee->stadev;
530 stats = hostap_get_stats(dev);
531 from_assoc_ap = 1;
532 }
533#endif
534
535#ifdef NOT_YET
536 if ((ieee->iw_mode == IW_MODE_MASTER ||
537 ieee->iw_mode == IW_MODE_REPEAT) && !from_assoc_ap) {
538 switch (hostap_handle_sta_rx(ieee, dev, skb, rx_stats,
539 wds != NULL)) {
540 case AP_RX_CONTINUE_NOT_AUTHORIZED:
541 frame_authorized = 0;
542 break;
543 case AP_RX_CONTINUE:
544 frame_authorized = 1;
545 break;
546 case AP_RX_DROP:
547 goto rx_dropped;
548 case AP_RX_EXIT:
549 goto rx_exit;
550 }
551 }
552#endif
553
554
555
556
557 stype &= ~IEEE80211_STYPE_QOS_DATA;
558
559 if (stype != IEEE80211_STYPE_DATA &&
560 stype != IEEE80211_STYPE_DATA_CFACK &&
561 stype != IEEE80211_STYPE_DATA_CFPOLL &&
562 stype != IEEE80211_STYPE_DATA_CFACKPOLL) {
563 if (stype != IEEE80211_STYPE_NULLFUNC)
564 LIBIPW_DEBUG_DROP("RX: dropped data frame "
565 "with no data (type=0x%02x, "
566 "subtype=0x%02x, len=%d)\n",
567 type, stype, skb->len);
568 goto rx_dropped;
569 }
570
571
572
573 if ((fc & IEEE80211_FCTL_PROTECTED) && can_be_decrypted &&
574 (keyidx = libipw_rx_frame_decrypt(ieee, skb, crypt)) < 0)
575 goto rx_dropped;
576
577 hdr = (struct libipw_hdr_4addr *)skb->data;
578
579
580
581
582 if ((frag != 0) || (fc & IEEE80211_FCTL_MOREFRAGS)) {
583 int flen;
584 struct sk_buff *frag_skb = libipw_frag_cache_get(ieee, hdr);
585 LIBIPW_DEBUG_FRAG("Rx Fragment received (%u)\n", frag);
586
587 if (!frag_skb) {
588 LIBIPW_DEBUG(LIBIPW_DL_RX | LIBIPW_DL_FRAG,
589 "Rx cannot get skb from fragment "
590 "cache (morefrag=%d seq=%u frag=%u)\n",
591 (fc & IEEE80211_FCTL_MOREFRAGS) != 0,
592 WLAN_GET_SEQ_SEQ(sc), frag);
593 goto rx_dropped;
594 }
595
596 flen = skb->len;
597 if (frag != 0)
598 flen -= hdrlen;
599
600 if (frag_skb->tail + flen > frag_skb->end) {
601 printk(KERN_WARNING "%s: host decrypted and "
602 "reassembled frame did not fit skb\n",
603 dev->name);
604 libipw_frag_cache_invalidate(ieee, hdr);
605 goto rx_dropped;
606 }
607
608 if (frag == 0) {
609
610
611 skb_copy_from_linear_data(skb, skb_put(frag_skb, flen), flen);
612 } else {
613
614
615 skb_copy_from_linear_data_offset(skb, hdrlen,
616 skb_put(frag_skb, flen), flen);
617 }
618 dev_kfree_skb_any(skb);
619 skb = NULL;
620
621 if (fc & IEEE80211_FCTL_MOREFRAGS) {
622
623
624
625 goto rx_exit;
626 }
627
628
629
630 skb = frag_skb;
631 hdr = (struct libipw_hdr_4addr *)skb->data;
632 libipw_frag_cache_invalidate(ieee, hdr);
633 }
634
635
636
637 if ((fc & IEEE80211_FCTL_PROTECTED) && can_be_decrypted &&
638 libipw_rx_frame_decrypt_msdu(ieee, skb, keyidx, crypt))
639 goto rx_dropped;
640
641 hdr = (struct libipw_hdr_4addr *)skb->data;
642 if (crypt && !(fc & IEEE80211_FCTL_PROTECTED) && !ieee->open_wep) {
643 if (
644 libipw_is_eapol_frame(ieee, skb)) {
645
646
647 } else {
648 LIBIPW_DEBUG_DROP("encryption configured, but RX "
649 "frame not encrypted (SA=%pM)\n",
650 hdr->addr2);
651 goto rx_dropped;
652 }
653 }
654
655 if (crypt && !(fc & IEEE80211_FCTL_PROTECTED) && !ieee->open_wep &&
656 !libipw_is_eapol_frame(ieee, skb)) {
657 LIBIPW_DEBUG_DROP("dropped unencrypted RX data "
658 "frame from %pM (drop_unencrypted=1)\n",
659 hdr->addr2);
660 goto rx_dropped;
661 }
662
663
664
665 if (!can_be_decrypted && (fc & IEEE80211_FCTL_PROTECTED) &&
666 ieee->host_strip_iv_icv) {
667 int trimlen = 0;
668
669
670 if (skb->len >= hdrlen + 3)
671 keyidx = skb->data[hdrlen + 3] >> 6;
672
673
674
675
676
677
678 switch (ieee->sec.encode_alg[keyidx]) {
679 case SEC_ALG_WEP:
680
681 hdrlen += 4;
682
683 trimlen = 4;
684 break;
685 case SEC_ALG_TKIP:
686
687 hdrlen += 8;
688
689 trimlen = 12;
690 break;
691 case SEC_ALG_CCMP:
692
693 hdrlen += 8;
694
695 trimlen = 8;
696 break;
697 }
698
699 if (skb->len < trimlen)
700 goto rx_dropped;
701
702 __skb_trim(skb, skb->len - trimlen);
703
704 if (skb->len < hdrlen)
705 goto rx_dropped;
706 }
707
708
709
710 payload = skb->data + hdrlen;
711 ethertype = (payload[6] << 8) | payload[7];
712
713#ifdef NOT_YET
714
715
716 if (ieee->ieee802_1x && ieee->iw_mode == IW_MODE_MASTER) {
717 if (ethertype == ETH_P_PAE) {
718 printk(KERN_DEBUG "%s: RX: IEEE 802.1X frame\n",
719 dev->name);
720 if (ieee->hostapd && ieee->apdev) {
721
722
723 prism2_rx_80211(ieee->apdev, skb, rx_stats,
724 PRISM2_RX_MGMT);
725 ieee->apdevstats.rx_packets++;
726 ieee->apdevstats.rx_bytes += skb->len;
727 goto rx_exit;
728 }
729 } else if (!frame_authorized) {
730 printk(KERN_DEBUG "%s: dropped frame from "
731 "unauthorized port (IEEE 802.1X): "
732 "ethertype=0x%04x\n", dev->name, ethertype);
733 goto rx_dropped;
734 }
735 }
736#endif
737
738
739 if (skb->len - hdrlen >= 8 &&
740 ((memcmp(payload, libipw_rfc1042_header, SNAP_SIZE) == 0 &&
741 ethertype != ETH_P_AARP && ethertype != ETH_P_IPX) ||
742 memcmp(payload, libipw_bridge_tunnel_header, SNAP_SIZE) == 0)) {
743
744
745 skb_pull(skb, hdrlen + SNAP_SIZE);
746 memcpy(skb_push(skb, ETH_ALEN), src, ETH_ALEN);
747 memcpy(skb_push(skb, ETH_ALEN), dst, ETH_ALEN);
748 } else {
749 __be16 len;
750
751 skb_pull(skb, hdrlen);
752 len = htons(skb->len);
753 memcpy(skb_push(skb, 2), &len, 2);
754 memcpy(skb_push(skb, ETH_ALEN), src, ETH_ALEN);
755 memcpy(skb_push(skb, ETH_ALEN), dst, ETH_ALEN);
756 }
757
758#ifdef NOT_YET
759 if (wds && ((fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) ==
760 IEEE80211_FCTL_TODS) && skb->len >= ETH_HLEN + ETH_ALEN) {
761
762
763 skb_copy_to_linear_data_offset(skb, ETH_ALEN,
764 skb->data + skb->len - ETH_ALEN,
765 ETH_ALEN);
766 skb_trim(skb, skb->len - ETH_ALEN);
767 }
768#endif
769
770 dev->stats.rx_packets++;
771 dev->stats.rx_bytes += skb->len;
772
773#ifdef NOT_YET
774 if (ieee->iw_mode == IW_MODE_MASTER && !wds && ieee->ap->bridge_packets) {
775 if (is_multicast_ether_addr(dst)) {
776
777
778 ieee->ap->bridged_multicast++;
779 skb2 = skb_clone(skb, GFP_ATOMIC);
780 if (skb2 == NULL)
781 printk(KERN_DEBUG "%s: skb_clone failed for "
782 "multicast frame\n", dev->name);
783 } else if (hostap_is_sta_assoc(ieee->ap, dst)) {
784
785
786 ieee->ap->bridged_unicast++;
787 skb2 = skb;
788 skb = NULL;
789 }
790 }
791
792 if (skb2 != NULL) {
793
794 skb2->dev = dev;
795 skb2->protocol = htons(ETH_P_802_3);
796 skb_reset_mac_header(skb2);
797 skb_reset_network_header(skb2);
798
799 dev_queue_xmit(skb2);
800 }
801#endif
802
803 if (skb) {
804 skb->protocol = eth_type_trans(skb, dev);
805 memset(skb->cb, 0, sizeof(skb->cb));
806 skb->ip_summed = CHECKSUM_NONE;
807 if (netif_rx(skb) == NET_RX_DROP) {
808
809
810
811 LIBIPW_DEBUG_DROP
812 ("RX: netif_rx dropped the packet\n");
813 dev->stats.rx_dropped++;
814 }
815 }
816
817 rx_exit:
818#ifdef NOT_YET
819 if (sta)
820 hostap_handle_sta_release(sta);
821#endif
822 return 1;
823
824 rx_dropped:
825 dev->stats.rx_dropped++;
826
827
828
829
830 return 0;
831}
832
833
834
835
836void libipw_rx_any(struct libipw_device *ieee,
837 struct sk_buff *skb, struct libipw_rx_stats *stats)
838{
839 struct libipw_hdr_4addr *hdr;
840 int is_packet_for_us;
841 u16 fc;
842
843 if (ieee->iw_mode == IW_MODE_MONITOR) {
844 if (!libipw_rx(ieee, skb, stats))
845 dev_kfree_skb_irq(skb);
846 return;
847 }
848
849 if (skb->len < sizeof(struct ieee80211_hdr))
850 goto drop_free;
851
852 hdr = (struct libipw_hdr_4addr *)skb->data;
853 fc = le16_to_cpu(hdr->frame_ctl);
854
855 if ((fc & IEEE80211_FCTL_VERS) != 0)
856 goto drop_free;
857
858 switch (fc & IEEE80211_FCTL_FTYPE) {
859 case IEEE80211_FTYPE_MGMT:
860 if (skb->len < sizeof(struct libipw_hdr_3addr))
861 goto drop_free;
862 libipw_rx_mgt(ieee, hdr, stats);
863 dev_kfree_skb_irq(skb);
864 return;
865 case IEEE80211_FTYPE_DATA:
866 break;
867 case IEEE80211_FTYPE_CTL:
868 return;
869 default:
870 return;
871 }
872
873 is_packet_for_us = 0;
874 switch (ieee->iw_mode) {
875 case IW_MODE_ADHOC:
876
877 if (ether_addr_equal(hdr->addr3, ieee->bssid))
878 if ((fc & (IEEE80211_FCTL_TODS+IEEE80211_FCTL_FROMDS)) == 0) {
879
880 if (ieee->dev->flags & IFF_PROMISC)
881 is_packet_for_us = 1;
882
883 else if (ether_addr_equal(hdr->addr1, ieee->dev->dev_addr))
884 is_packet_for_us = 1;
885
886 else if (is_multicast_ether_addr(hdr->addr1))
887 is_packet_for_us = 1;
888 }
889 break;
890 case IW_MODE_INFRA:
891
892 if (ether_addr_equal(hdr->addr2, ieee->bssid))
893 if ((fc & (IEEE80211_FCTL_TODS+IEEE80211_FCTL_FROMDS)) == IEEE80211_FCTL_FROMDS) {
894
895 if (ieee->dev->flags & IFF_PROMISC)
896 is_packet_for_us = 1;
897
898 else if (ether_addr_equal(hdr->addr1, ieee->dev->dev_addr))
899 is_packet_for_us = 1;
900
901 else if (is_multicast_ether_addr(hdr->addr1)) {
902
903 if (!ether_addr_equal(hdr->addr3, ieee->dev->dev_addr))
904 is_packet_for_us = 1;
905 }
906 }
907 break;
908 default:
909
910 break;
911 }
912
913 if (is_packet_for_us)
914 if (!libipw_rx(ieee, skb, stats))
915 dev_kfree_skb_irq(skb);
916 return;
917
918drop_free:
919 dev_kfree_skb_irq(skb);
920 ieee->dev->stats.rx_dropped++;
921}
922
923#define MGMT_FRAME_FIXED_PART_LENGTH 0x24
924
925static u8 qos_oui[QOS_OUI_LEN] = { 0x00, 0x50, 0xF2 };
926
927
928
929
930
931static int libipw_verify_qos_info(struct libipw_qos_information_element
932 *info_element, int sub_type)
933{
934
935 if (info_element->qui_subtype != sub_type)
936 return -1;
937 if (memcmp(info_element->qui, qos_oui, QOS_OUI_LEN))
938 return -1;
939 if (info_element->qui_type != QOS_OUI_TYPE)
940 return -1;
941 if (info_element->version != QOS_VERSION_1)
942 return -1;
943
944 return 0;
945}
946
947
948
949
950static int libipw_read_qos_param_element(struct libipw_qos_parameter_info
951 *element_param, struct libipw_info_element
952 *info_element)
953{
954 int ret = 0;
955 u16 size = sizeof(struct libipw_qos_parameter_info) - 2;
956
957 if ((info_element == NULL) || (element_param == NULL))
958 return -1;
959
960 if (info_element->id == QOS_ELEMENT_ID && info_element->len == size) {
961 memcpy(element_param->info_element.qui, info_element->data,
962 info_element->len);
963 element_param->info_element.elementID = info_element->id;
964 element_param->info_element.length = info_element->len;
965 } else
966 ret = -1;
967 if (ret == 0)
968 ret = libipw_verify_qos_info(&element_param->info_element,
969 QOS_OUI_PARAM_SUB_TYPE);
970 return ret;
971}
972
973
974
975
976static int libipw_read_qos_info_element(struct
977 libipw_qos_information_element
978 *element_info, struct libipw_info_element
979 *info_element)
980{
981 int ret = 0;
982 u16 size = sizeof(struct libipw_qos_information_element) - 2;
983
984 if (element_info == NULL)
985 return -1;
986 if (info_element == NULL)
987 return -1;
988
989 if ((info_element->id == QOS_ELEMENT_ID) && (info_element->len == size)) {
990 memcpy(element_info->qui, info_element->data,
991 info_element->len);
992 element_info->elementID = info_element->id;
993 element_info->length = info_element->len;
994 } else
995 ret = -1;
996
997 if (ret == 0)
998 ret = libipw_verify_qos_info(element_info,
999 QOS_OUI_INFO_SUB_TYPE);
1000 return ret;
1001}
1002
1003
1004
1005
1006static int libipw_qos_convert_ac_to_parameters(struct
1007 libipw_qos_parameter_info
1008 *param_elm, struct
1009 libipw_qos_parameters
1010 *qos_param)
1011{
1012 int rc = 0;
1013 int i;
1014 struct libipw_qos_ac_parameter *ac_params;
1015 u32 txop;
1016 u8 cw_min;
1017 u8 cw_max;
1018
1019 for (i = 0; i < QOS_QUEUE_NUM; i++) {
1020 ac_params = &(param_elm->ac_params_record[i]);
1021
1022 qos_param->aifs[i] = (ac_params->aci_aifsn) & 0x0F;
1023 qos_param->aifs[i] -= (qos_param->aifs[i] < 2) ? 0 : 2;
1024
1025 cw_min = ac_params->ecw_min_max & 0x0F;
1026 qos_param->cw_min[i] = cpu_to_le16((1 << cw_min) - 1);
1027
1028 cw_max = (ac_params->ecw_min_max & 0xF0) >> 4;
1029 qos_param->cw_max[i] = cpu_to_le16((1 << cw_max) - 1);
1030
1031 qos_param->flag[i] =
1032 (ac_params->aci_aifsn & 0x10) ? 0x01 : 0x00;
1033
1034 txop = le16_to_cpu(ac_params->tx_op_limit) * 32;
1035 qos_param->tx_op_limit[i] = cpu_to_le16(txop);
1036 }
1037 return rc;
1038}
1039
1040
1041
1042
1043
1044
1045static int libipw_parse_qos_info_param_IE(struct libipw_info_element
1046 *info_element,
1047 struct libipw_network *network)
1048{
1049 int rc = 0;
1050 struct libipw_qos_parameters *qos_param = NULL;
1051 struct libipw_qos_information_element qos_info_element;
1052
1053 rc = libipw_read_qos_info_element(&qos_info_element, info_element);
1054
1055 if (rc == 0) {
1056 network->qos_data.param_count = qos_info_element.ac_info & 0x0F;
1057 network->flags |= NETWORK_HAS_QOS_INFORMATION;
1058 } else {
1059 struct libipw_qos_parameter_info param_element;
1060
1061 rc = libipw_read_qos_param_element(¶m_element,
1062 info_element);
1063 if (rc == 0) {
1064 qos_param = &(network->qos_data.parameters);
1065 libipw_qos_convert_ac_to_parameters(¶m_element,
1066 qos_param);
1067 network->flags |= NETWORK_HAS_QOS_PARAMETERS;
1068 network->qos_data.param_count =
1069 param_element.info_element.ac_info & 0x0F;
1070 }
1071 }
1072
1073 if (rc == 0) {
1074 LIBIPW_DEBUG_QOS("QoS is supported\n");
1075 network->qos_data.supported = 1;
1076 }
1077 return rc;
1078}
1079
1080#ifdef CONFIG_LIBIPW_DEBUG
1081#define MFIE_STRING(x) case WLAN_EID_ ##x: return #x
1082
1083static const char *get_info_element_string(u16 id)
1084{
1085 switch (id) {
1086 MFIE_STRING(SSID);
1087 MFIE_STRING(SUPP_RATES);
1088 MFIE_STRING(FH_PARAMS);
1089 MFIE_STRING(DS_PARAMS);
1090 MFIE_STRING(CF_PARAMS);
1091 MFIE_STRING(TIM);
1092 MFIE_STRING(IBSS_PARAMS);
1093 MFIE_STRING(COUNTRY);
1094 MFIE_STRING(HP_PARAMS);
1095 MFIE_STRING(HP_TABLE);
1096 MFIE_STRING(REQUEST);
1097 MFIE_STRING(CHALLENGE);
1098 MFIE_STRING(PWR_CONSTRAINT);
1099 MFIE_STRING(PWR_CAPABILITY);
1100 MFIE_STRING(TPC_REQUEST);
1101 MFIE_STRING(TPC_REPORT);
1102 MFIE_STRING(SUPPORTED_CHANNELS);
1103 MFIE_STRING(CHANNEL_SWITCH);
1104 MFIE_STRING(MEASURE_REQUEST);
1105 MFIE_STRING(MEASURE_REPORT);
1106 MFIE_STRING(QUIET);
1107 MFIE_STRING(IBSS_DFS);
1108 MFIE_STRING(ERP_INFO);
1109 MFIE_STRING(RSN);
1110 MFIE_STRING(EXT_SUPP_RATES);
1111 MFIE_STRING(VENDOR_SPECIFIC);
1112 MFIE_STRING(QOS_PARAMETER);
1113 default:
1114 return "UNKNOWN";
1115 }
1116}
1117#endif
1118
1119static int libipw_parse_info_param(struct libipw_info_element
1120 *info_element, u16 length,
1121 struct libipw_network *network)
1122{
1123 u8 i;
1124#ifdef CONFIG_LIBIPW_DEBUG
1125 char rates_str[64];
1126 char *p;
1127#endif
1128
1129 while (length >= sizeof(*info_element)) {
1130 if (sizeof(*info_element) + info_element->len > length) {
1131 LIBIPW_DEBUG_MGMT("Info elem: parse failed: "
1132 "info_element->len + 2 > left : "
1133 "info_element->len+2=%zd left=%d, id=%d.\n",
1134 info_element->len +
1135 sizeof(*info_element),
1136 length, info_element->id);
1137
1138
1139
1140 break;
1141 }
1142
1143 switch (info_element->id) {
1144 case WLAN_EID_SSID:
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
1153 LIBIPW_DEBUG_MGMT("WLAN_EID_SSID: '%*pE' len=%d.\n",
1154 network->ssid_len, network->ssid,
1155 network->ssid_len);
1156 break;
1157
1158 case WLAN_EID_SUPP_RATES:
1159#ifdef CONFIG_LIBIPW_DEBUG
1160 p = rates_str;
1161#endif
1162 network->rates_len = min(info_element->len,
1163 MAX_RATES_LENGTH);
1164 for (i = 0; i < network->rates_len; i++) {
1165 network->rates[i] = info_element->data[i];
1166#ifdef CONFIG_LIBIPW_DEBUG
1167 p += snprintf(p, sizeof(rates_str) -
1168 (p - rates_str), "%02X ",
1169 network->rates[i]);
1170#endif
1171 if (libipw_is_ofdm_rate
1172 (info_element->data[i])) {
1173 network->flags |= NETWORK_HAS_OFDM;
1174 if (info_element->data[i] &
1175 LIBIPW_BASIC_RATE_MASK)
1176 network->flags &=
1177 ~NETWORK_HAS_CCK;
1178 }
1179 }
1180
1181 LIBIPW_DEBUG_MGMT("WLAN_EID_SUPP_RATES: '%s' (%d)\n",
1182 rates_str, network->rates_len);
1183 break;
1184
1185 case WLAN_EID_EXT_SUPP_RATES:
1186#ifdef CONFIG_LIBIPW_DEBUG
1187 p = rates_str;
1188#endif
1189 network->rates_ex_len = min(info_element->len,
1190 MAX_RATES_EX_LENGTH);
1191 for (i = 0; i < network->rates_ex_len; i++) {
1192 network->rates_ex[i] = info_element->data[i];
1193#ifdef CONFIG_LIBIPW_DEBUG
1194 p += snprintf(p, sizeof(rates_str) -
1195 (p - rates_str), "%02X ",
1196 network->rates_ex[i]);
1197#endif
1198 if (libipw_is_ofdm_rate
1199 (info_element->data[i])) {
1200 network->flags |= NETWORK_HAS_OFDM;
1201 if (info_element->data[i] &
1202 LIBIPW_BASIC_RATE_MASK)
1203 network->flags &=
1204 ~NETWORK_HAS_CCK;
1205 }
1206 }
1207
1208 LIBIPW_DEBUG_MGMT("WLAN_EID_EXT_SUPP_RATES: '%s' (%d)\n",
1209 rates_str, network->rates_ex_len);
1210 break;
1211
1212 case WLAN_EID_DS_PARAMS:
1213 LIBIPW_DEBUG_MGMT("WLAN_EID_DS_PARAMS: %d\n",
1214 info_element->data[0]);
1215 network->channel = info_element->data[0];
1216 break;
1217
1218 case WLAN_EID_FH_PARAMS:
1219 LIBIPW_DEBUG_MGMT("WLAN_EID_FH_PARAMS: ignored\n");
1220 break;
1221
1222 case WLAN_EID_CF_PARAMS:
1223 LIBIPW_DEBUG_MGMT("WLAN_EID_CF_PARAMS: ignored\n");
1224 break;
1225
1226 case WLAN_EID_TIM:
1227 network->tim.tim_count = info_element->data[0];
1228 network->tim.tim_period = info_element->data[1];
1229 LIBIPW_DEBUG_MGMT("WLAN_EID_TIM: partially ignored\n");
1230 break;
1231
1232 case WLAN_EID_ERP_INFO:
1233 network->erp_value = info_element->data[0];
1234 network->flags |= NETWORK_HAS_ERP_VALUE;
1235 LIBIPW_DEBUG_MGMT("MFIE_TYPE_ERP_SET: %d\n",
1236 network->erp_value);
1237 break;
1238
1239 case WLAN_EID_IBSS_PARAMS:
1240 network->atim_window = info_element->data[0];
1241 LIBIPW_DEBUG_MGMT("WLAN_EID_IBSS_PARAMS: %d\n",
1242 network->atim_window);
1243 break;
1244
1245 case WLAN_EID_CHALLENGE:
1246 LIBIPW_DEBUG_MGMT("WLAN_EID_CHALLENGE: ignored\n");
1247 break;
1248
1249 case WLAN_EID_VENDOR_SPECIFIC:
1250 LIBIPW_DEBUG_MGMT("WLAN_EID_VENDOR_SPECIFIC: %d bytes\n",
1251 info_element->len);
1252 if (!libipw_parse_qos_info_param_IE(info_element,
1253 network))
1254 break;
1255
1256 if (info_element->len >= 4 &&
1257 info_element->data[0] == 0x00 &&
1258 info_element->data[1] == 0x50 &&
1259 info_element->data[2] == 0xf2 &&
1260 info_element->data[3] == 0x01) {
1261 network->wpa_ie_len = min(info_element->len + 2,
1262 MAX_WPA_IE_LEN);
1263 memcpy(network->wpa_ie, info_element,
1264 network->wpa_ie_len);
1265 }
1266 break;
1267
1268 case WLAN_EID_RSN:
1269 LIBIPW_DEBUG_MGMT("WLAN_EID_RSN: %d bytes\n",
1270 info_element->len);
1271 network->rsn_ie_len = min(info_element->len + 2,
1272 MAX_WPA_IE_LEN);
1273 memcpy(network->rsn_ie, info_element,
1274 network->rsn_ie_len);
1275 break;
1276
1277 case WLAN_EID_QOS_PARAMETER:
1278 printk(KERN_ERR
1279 "QoS Error need to parse QOS_PARAMETER IE\n");
1280 break;
1281
1282 case WLAN_EID_PWR_CONSTRAINT:
1283 network->power_constraint = info_element->data[0];
1284 network->flags |= NETWORK_HAS_POWER_CONSTRAINT;
1285 break;
1286
1287 case WLAN_EID_CHANNEL_SWITCH:
1288 network->power_constraint = info_element->data[0];
1289 network->flags |= NETWORK_HAS_CSA;
1290 break;
1291
1292 case WLAN_EID_QUIET:
1293 network->quiet.count = info_element->data[0];
1294 network->quiet.period = info_element->data[1];
1295 network->quiet.duration = info_element->data[2];
1296 network->quiet.offset = info_element->data[3];
1297 network->flags |= NETWORK_HAS_QUIET;
1298 break;
1299
1300 case WLAN_EID_IBSS_DFS:
1301 network->flags |= NETWORK_HAS_IBSS_DFS;
1302 break;
1303
1304 case WLAN_EID_TPC_REPORT:
1305 network->tpc_report.transmit_power =
1306 info_element->data[0];
1307 network->tpc_report.link_margin = info_element->data[1];
1308 network->flags |= NETWORK_HAS_TPC_REPORT;
1309 break;
1310
1311 default:
1312 LIBIPW_DEBUG_MGMT
1313 ("Unsupported info element: %s (%d)\n",
1314 get_info_element_string(info_element->id),
1315 info_element->id);
1316 break;
1317 }
1318
1319 length -= sizeof(*info_element) + info_element->len;
1320 info_element =
1321 (struct libipw_info_element *)&info_element->
1322 data[info_element->len];
1323 }
1324
1325 return 0;
1326}
1327
1328static int libipw_handle_assoc_resp(struct libipw_device *ieee, struct libipw_assoc_response
1329 *frame, struct libipw_rx_stats *stats)
1330{
1331 struct libipw_network network_resp = { };
1332 struct libipw_network *network = &network_resp;
1333 struct net_device *dev = ieee->dev;
1334
1335 network->flags = 0;
1336 network->qos_data.active = 0;
1337 network->qos_data.supported = 0;
1338 network->qos_data.param_count = 0;
1339 network->qos_data.old_param_count = 0;
1340
1341
1342 network->atim_window = le16_to_cpu(frame->aid);
1343 network->listen_interval = le16_to_cpu(frame->status);
1344 memcpy(network->bssid, frame->header.addr3, ETH_ALEN);
1345 network->capability = le16_to_cpu(frame->capability);
1346 network->last_scanned = jiffies;
1347 network->rates_len = network->rates_ex_len = 0;
1348 network->last_associate = 0;
1349 network->ssid_len = 0;
1350 network->erp_value =
1351 (network->capability & WLAN_CAPABILITY_IBSS) ? 0x3 : 0x0;
1352
1353 if (stats->freq == LIBIPW_52GHZ_BAND) {
1354
1355 network->channel = stats->received_channel;
1356 } else
1357 network->flags |= NETWORK_HAS_CCK;
1358
1359 network->wpa_ie_len = 0;
1360 network->rsn_ie_len = 0;
1361
1362 if (libipw_parse_info_param
1363 (frame->info_element, stats->len - sizeof(*frame), network))
1364 return 1;
1365
1366 network->mode = 0;
1367 if (stats->freq == LIBIPW_52GHZ_BAND)
1368 network->mode = IEEE_A;
1369 else {
1370 if (network->flags & NETWORK_HAS_OFDM)
1371 network->mode |= IEEE_G;
1372 if (network->flags & NETWORK_HAS_CCK)
1373 network->mode |= IEEE_B;
1374 }
1375
1376 memcpy(&network->stats, stats, sizeof(network->stats));
1377
1378 if (ieee->handle_assoc_response != NULL)
1379 ieee->handle_assoc_response(dev, frame, network);
1380
1381 return 0;
1382}
1383
1384
1385
1386static int libipw_network_init(struct libipw_device *ieee, struct libipw_probe_response
1387 *beacon,
1388 struct libipw_network *network,
1389 struct libipw_rx_stats *stats)
1390{
1391 network->qos_data.active = 0;
1392 network->qos_data.supported = 0;
1393 network->qos_data.param_count = 0;
1394 network->qos_data.old_param_count = 0;
1395
1396
1397 memcpy(network->bssid, beacon->header.addr3, ETH_ALEN);
1398 network->capability = le16_to_cpu(beacon->capability);
1399 network->last_scanned = jiffies;
1400 network->time_stamp[0] = le32_to_cpu(beacon->time_stamp[0]);
1401 network->time_stamp[1] = le32_to_cpu(beacon->time_stamp[1]);
1402 network->beacon_interval = le16_to_cpu(beacon->beacon_interval);
1403
1404 network->listen_interval = 0x0A;
1405 network->rates_len = network->rates_ex_len = 0;
1406 network->last_associate = 0;
1407 network->ssid_len = 0;
1408 network->flags = 0;
1409 network->atim_window = 0;
1410 network->erp_value = (network->capability & WLAN_CAPABILITY_IBSS) ?
1411 0x3 : 0x0;
1412
1413 if (stats->freq == LIBIPW_52GHZ_BAND) {
1414
1415 network->channel = stats->received_channel;
1416 } else
1417 network->flags |= NETWORK_HAS_CCK;
1418
1419 network->wpa_ie_len = 0;
1420 network->rsn_ie_len = 0;
1421
1422 if (libipw_parse_info_param
1423 (beacon->info_element, stats->len - sizeof(*beacon), network))
1424 return 1;
1425
1426 network->mode = 0;
1427 if (stats->freq == LIBIPW_52GHZ_BAND)
1428 network->mode = IEEE_A;
1429 else {
1430 if (network->flags & NETWORK_HAS_OFDM)
1431 network->mode |= IEEE_G;
1432 if (network->flags & NETWORK_HAS_CCK)
1433 network->mode |= IEEE_B;
1434 }
1435
1436 if (network->mode == 0) {
1437 LIBIPW_DEBUG_SCAN("Filtered out '%*pE (%pM)' network.\n",
1438 network->ssid_len, network->ssid,
1439 network->bssid);
1440 return 1;
1441 }
1442
1443 memcpy(&network->stats, stats, sizeof(network->stats));
1444
1445 return 0;
1446}
1447
1448static inline int is_same_network(struct libipw_network *src,
1449 struct libipw_network *dst)
1450{
1451
1452
1453
1454 return ((src->ssid_len == dst->ssid_len) &&
1455 (src->channel == dst->channel) &&
1456 ether_addr_equal_64bits(src->bssid, dst->bssid) &&
1457 !memcmp(src->ssid, dst->ssid, src->ssid_len));
1458}
1459
1460static void update_network(struct libipw_network *dst,
1461 struct libipw_network *src)
1462{
1463 int qos_active;
1464 u8 old_param;
1465
1466
1467
1468
1469
1470
1471 if (dst->channel == src->stats.received_channel)
1472 memcpy(&dst->stats, &src->stats,
1473 sizeof(struct libipw_rx_stats));
1474 else
1475 LIBIPW_DEBUG_SCAN("Network %pM info received "
1476 "off channel (%d vs. %d)\n", src->bssid,
1477 dst->channel, src->stats.received_channel);
1478
1479 dst->capability = src->capability;
1480 memcpy(dst->rates, src->rates, src->rates_len);
1481 dst->rates_len = src->rates_len;
1482 memcpy(dst->rates_ex, src->rates_ex, src->rates_ex_len);
1483 dst->rates_ex_len = src->rates_ex_len;
1484
1485 dst->mode = src->mode;
1486 dst->flags = src->flags;
1487 dst->time_stamp[0] = src->time_stamp[0];
1488 dst->time_stamp[1] = src->time_stamp[1];
1489
1490 dst->beacon_interval = src->beacon_interval;
1491 dst->listen_interval = src->listen_interval;
1492 dst->atim_window = src->atim_window;
1493 dst->erp_value = src->erp_value;
1494 dst->tim = src->tim;
1495
1496 memcpy(dst->wpa_ie, src->wpa_ie, src->wpa_ie_len);
1497 dst->wpa_ie_len = src->wpa_ie_len;
1498 memcpy(dst->rsn_ie, src->rsn_ie, src->rsn_ie_len);
1499 dst->rsn_ie_len = src->rsn_ie_len;
1500
1501 dst->last_scanned = jiffies;
1502 qos_active = src->qos_data.active;
1503 old_param = dst->qos_data.old_param_count;
1504 if (dst->flags & NETWORK_HAS_QOS_MASK)
1505 memcpy(&dst->qos_data, &src->qos_data,
1506 sizeof(struct libipw_qos_data));
1507 else {
1508 dst->qos_data.supported = src->qos_data.supported;
1509 dst->qos_data.param_count = src->qos_data.param_count;
1510 }
1511
1512 if (dst->qos_data.supported == 1) {
1513 if (dst->ssid_len)
1514 LIBIPW_DEBUG_QOS
1515 ("QoS the network %s is QoS supported\n",
1516 dst->ssid);
1517 else
1518 LIBIPW_DEBUG_QOS
1519 ("QoS the network is QoS supported\n");
1520 }
1521 dst->qos_data.active = qos_active;
1522 dst->qos_data.old_param_count = old_param;
1523
1524
1525}
1526
1527static inline int is_beacon(__le16 fc)
1528{
1529 return (WLAN_FC_GET_STYPE(le16_to_cpu(fc)) == IEEE80211_STYPE_BEACON);
1530}
1531
1532static void libipw_process_probe_response(struct libipw_device
1533 *ieee, struct
1534 libipw_probe_response
1535 *beacon, struct libipw_rx_stats
1536 *stats)
1537{
1538 struct net_device *dev = ieee->dev;
1539 struct libipw_network network = { };
1540 struct libipw_network *target;
1541 struct libipw_network *oldest = NULL;
1542#ifdef CONFIG_LIBIPW_DEBUG
1543 struct libipw_info_element *info_element = beacon->info_element;
1544#endif
1545 unsigned long flags;
1546
1547 LIBIPW_DEBUG_SCAN("'%*pE' (%pM): %c%c%c%c %c%c%c%c-%c%c%c%c %c%c%c%c\n",
1548 info_element->len, info_element->data,
1549 beacon->header.addr3,
1550 (beacon->capability & cpu_to_le16(1 << 0xf)) ? '1' : '0',
1551 (beacon->capability & cpu_to_le16(1 << 0xe)) ? '1' : '0',
1552 (beacon->capability & cpu_to_le16(1 << 0xd)) ? '1' : '0',
1553 (beacon->capability & cpu_to_le16(1 << 0xc)) ? '1' : '0',
1554 (beacon->capability & cpu_to_le16(1 << 0xb)) ? '1' : '0',
1555 (beacon->capability & cpu_to_le16(1 << 0xa)) ? '1' : '0',
1556 (beacon->capability & cpu_to_le16(1 << 0x9)) ? '1' : '0',
1557 (beacon->capability & cpu_to_le16(1 << 0x8)) ? '1' : '0',
1558 (beacon->capability & cpu_to_le16(1 << 0x7)) ? '1' : '0',
1559 (beacon->capability & cpu_to_le16(1 << 0x6)) ? '1' : '0',
1560 (beacon->capability & cpu_to_le16(1 << 0x5)) ? '1' : '0',
1561 (beacon->capability & cpu_to_le16(1 << 0x4)) ? '1' : '0',
1562 (beacon->capability & cpu_to_le16(1 << 0x3)) ? '1' : '0',
1563 (beacon->capability & cpu_to_le16(1 << 0x2)) ? '1' : '0',
1564 (beacon->capability & cpu_to_le16(1 << 0x1)) ? '1' : '0',
1565 (beacon->capability & cpu_to_le16(1 << 0x0)) ? '1' : '0');
1566
1567 if (libipw_network_init(ieee, beacon, &network, stats)) {
1568 LIBIPW_DEBUG_SCAN("Dropped '%*pE' (%pM) via %s.\n",
1569 info_element->len, info_element->data,
1570 beacon->header.addr3,
1571 is_beacon(beacon->header.frame_ctl) ?
1572 "BEACON" : "PROBE RESPONSE");
1573 return;
1574 }
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586 spin_lock_irqsave(&ieee->lock, flags);
1587
1588 list_for_each_entry(target, &ieee->network_list, list) {
1589 if (is_same_network(target, &network))
1590 break;
1591
1592 if ((oldest == NULL) ||
1593 time_before(target->last_scanned, oldest->last_scanned))
1594 oldest = target;
1595 }
1596
1597
1598
1599 if (&target->list == &ieee->network_list) {
1600 if (list_empty(&ieee->network_free_list)) {
1601
1602 list_del(&oldest->list);
1603 target = oldest;
1604 LIBIPW_DEBUG_SCAN("Expired '%*pE' (%pM) from network list.\n",
1605 target->ssid_len, target->ssid,
1606 target->bssid);
1607 } else {
1608
1609 target = list_entry(ieee->network_free_list.next,
1610 struct libipw_network, list);
1611 list_del(ieee->network_free_list.next);
1612 }
1613
1614#ifdef CONFIG_LIBIPW_DEBUG
1615 LIBIPW_DEBUG_SCAN("Adding '%*pE' (%pM) via %s.\n",
1616 network.ssid_len, network.ssid,
1617 network.bssid,
1618 is_beacon(beacon->header.frame_ctl) ?
1619 "BEACON" : "PROBE RESPONSE");
1620#endif
1621 memcpy(target, &network, sizeof(*target));
1622 list_add_tail(&target->list, &ieee->network_list);
1623 } else {
1624 LIBIPW_DEBUG_SCAN("Updating '%*pE' (%pM) via %s.\n",
1625 target->ssid_len, target->ssid,
1626 target->bssid,
1627 is_beacon(beacon->header.frame_ctl) ?
1628 "BEACON" : "PROBE RESPONSE");
1629 update_network(target, &network);
1630 }
1631
1632 spin_unlock_irqrestore(&ieee->lock, flags);
1633
1634 if (is_beacon(beacon->header.frame_ctl)) {
1635 if (ieee->handle_beacon != NULL)
1636 ieee->handle_beacon(dev, beacon, target);
1637 } else {
1638 if (ieee->handle_probe_response != NULL)
1639 ieee->handle_probe_response(dev, beacon, target);
1640 }
1641}
1642
1643void libipw_rx_mgt(struct libipw_device *ieee,
1644 struct libipw_hdr_4addr *header,
1645 struct libipw_rx_stats *stats)
1646{
1647 switch (WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl))) {
1648 case IEEE80211_STYPE_ASSOC_RESP:
1649 LIBIPW_DEBUG_MGMT("received ASSOCIATION RESPONSE (%d)\n",
1650 WLAN_FC_GET_STYPE(le16_to_cpu
1651 (header->frame_ctl)));
1652 libipw_handle_assoc_resp(ieee,
1653 (struct libipw_assoc_response *)
1654 header, stats);
1655 break;
1656
1657 case IEEE80211_STYPE_REASSOC_RESP:
1658 LIBIPW_DEBUG_MGMT("received REASSOCIATION RESPONSE (%d)\n",
1659 WLAN_FC_GET_STYPE(le16_to_cpu
1660 (header->frame_ctl)));
1661 break;
1662
1663 case IEEE80211_STYPE_PROBE_REQ:
1664 LIBIPW_DEBUG_MGMT("received auth (%d)\n",
1665 WLAN_FC_GET_STYPE(le16_to_cpu
1666 (header->frame_ctl)));
1667
1668 if (ieee->handle_probe_request != NULL)
1669 ieee->handle_probe_request(ieee->dev,
1670 (struct
1671 libipw_probe_request *)
1672 header, stats);
1673 break;
1674
1675 case IEEE80211_STYPE_PROBE_RESP:
1676 LIBIPW_DEBUG_MGMT("received PROBE RESPONSE (%d)\n",
1677 WLAN_FC_GET_STYPE(le16_to_cpu
1678 (header->frame_ctl)));
1679 LIBIPW_DEBUG_SCAN("Probe response\n");
1680 libipw_process_probe_response(ieee,
1681 (struct
1682 libipw_probe_response *)
1683 header, stats);
1684 break;
1685
1686 case IEEE80211_STYPE_BEACON:
1687 LIBIPW_DEBUG_MGMT("received BEACON (%d)\n",
1688 WLAN_FC_GET_STYPE(le16_to_cpu
1689 (header->frame_ctl)));
1690 LIBIPW_DEBUG_SCAN("Beacon\n");
1691 libipw_process_probe_response(ieee,
1692 (struct
1693 libipw_probe_response *)
1694 header, stats);
1695 break;
1696 case IEEE80211_STYPE_AUTH:
1697
1698 LIBIPW_DEBUG_MGMT("received auth (%d)\n",
1699 WLAN_FC_GET_STYPE(le16_to_cpu
1700 (header->frame_ctl)));
1701
1702 if (ieee->handle_auth != NULL)
1703 ieee->handle_auth(ieee->dev,
1704 (struct libipw_auth *)header);
1705 break;
1706
1707 case IEEE80211_STYPE_DISASSOC:
1708 if (ieee->handle_disassoc != NULL)
1709 ieee->handle_disassoc(ieee->dev,
1710 (struct libipw_disassoc *)
1711 header);
1712 break;
1713
1714 case IEEE80211_STYPE_ACTION:
1715 LIBIPW_DEBUG_MGMT("ACTION\n");
1716 if (ieee->handle_action)
1717 ieee->handle_action(ieee->dev,
1718 (struct libipw_action *)
1719 header, stats);
1720 break;
1721
1722 case IEEE80211_STYPE_REASSOC_REQ:
1723 LIBIPW_DEBUG_MGMT("received reassoc (%d)\n",
1724 WLAN_FC_GET_STYPE(le16_to_cpu
1725 (header->frame_ctl)));
1726
1727 LIBIPW_DEBUG_MGMT("%s: LIBIPW_REASSOC_REQ received\n",
1728 ieee->dev->name);
1729 if (ieee->handle_reassoc_request != NULL)
1730 ieee->handle_reassoc_request(ieee->dev,
1731 (struct libipw_reassoc_request *)
1732 header);
1733 break;
1734
1735 case IEEE80211_STYPE_ASSOC_REQ:
1736 LIBIPW_DEBUG_MGMT("received assoc (%d)\n",
1737 WLAN_FC_GET_STYPE(le16_to_cpu
1738 (header->frame_ctl)));
1739
1740 LIBIPW_DEBUG_MGMT("%s: LIBIPW_ASSOC_REQ received\n",
1741 ieee->dev->name);
1742 if (ieee->handle_assoc_request != NULL)
1743 ieee->handle_assoc_request(ieee->dev);
1744 break;
1745
1746 case IEEE80211_STYPE_DEAUTH:
1747 LIBIPW_DEBUG_MGMT("DEAUTH\n");
1748 if (ieee->handle_deauth != NULL)
1749 ieee->handle_deauth(ieee->dev,
1750 (struct libipw_deauth *)
1751 header);
1752 break;
1753 default:
1754 LIBIPW_DEBUG_MGMT("received UNKNOWN (%d)\n",
1755 WLAN_FC_GET_STYPE(le16_to_cpu
1756 (header->frame_ctl)));
1757 LIBIPW_DEBUG_MGMT("%s: Unknown management packet: %d\n",
1758 ieee->dev->name,
1759 WLAN_FC_GET_STYPE(le16_to_cpu
1760 (header->frame_ctl)));
1761 break;
1762 }
1763}
1764
1765EXPORT_SYMBOL_GPL(libipw_rx_any);
1766EXPORT_SYMBOL(libipw_rx_mgt);
1767EXPORT_SYMBOL(libipw_rx);
1768