]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - net/ieee80211/ieee80211_rx.c
[ETH]: Make eth_type_trans set skb->dev like the other *_type_trans
[linux-2.6-omap-h63xx.git] / net / ieee80211 / ieee80211_rx.c
1 /*
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>
8  * Copyright (c) 2004-2005, Intel Corporation
9  *
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>
17 #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>
25 #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>
30 #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
37 static void ieee80211_monitor_rx(struct ieee80211_device *ieee,
38                                         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
53 /* Called only as a tasklet (software IRQ) */
54 static 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)
61 {
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)) {
69                         IEEE80211_DEBUG_FRAG("expiring fragment cache entry "
70                                              "seq=%u last_frag=%u\n",
71                                              entry->seq, entry->last_frag);
72                         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) &&
78                     !compare_ether_addr(entry->src_addr, src) &&
79                     !compare_ether_addr(entry->dst_addr, dst))
80                         return entry;
81         }
82
83         return NULL;
84 }
85
86 /* Called only as a tasklet (software IRQ) */
87 static struct sk_buff *ieee80211_frag_cache_get(struct ieee80211_device *ieee,
88                                                 struct ieee80211_hdr_4addr *hdr)
89 {
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 +
102                                     sizeof(struct ieee80211_hdr_4addr) +
103                                     8 /* LLC */  +
104                                     2 /* alignment */  +
105                                     8 /* WEP */  + ETH_ALEN /* WDS */ );
106                 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
137 /* Called only as a tasklet (software IRQ) */
138 static int ieee80211_frag_cache_invalidate(struct ieee80211_device *ieee,
139                                            struct ieee80211_hdr_4addr *hdr)
140 {
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) {
152                 IEEE80211_DEBUG_FRAG("could not invalidate fragment cache "
153                                      "entry (seq=%u)\n", seq);
154                 return -1;
155         }
156
157         entry->skb = NULL;
158         return 0;
159 }
160
161 #ifdef NOT_YET
162 /* ieee80211_rx_frame_mgtmt
163  *
164  * Responsible for handling management control frames
165  *
166  * Called by ieee80211_rx */
167 static int
168 ieee80211_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 /*
177   hostap_update_sta_ps(ieee, (struct hostap_ieee80211_hdr_4addr *)
178   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
200         if (ieee->iw_mode == IW_MODE_MASTER) {
201                 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
218 /* See IEEE 802.1H for LLC/SNAP encapsulation/decapsulation */
219 /* Ethernet-II snap header (RFC1042 for most EtherTypes) */
220 static unsigned char rfc1042_header[] = { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
221
222 /* Bridge-Tunnel header (for EtherTypes ETH_P_AARP and ETH_P_IPX) */
223 static unsigned char bridge_tunnel_header[] =
224     { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0xf8 };
225 /* No encapsulation header if EtherType < 0x600 (=length) */
226
227 /* Called by ieee80211_rx_frame_decrypt */
228 static 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;
233         struct ieee80211_hdr_3addr *hdr;
234         u8 *pos;
235
236         if (skb->len < 24)
237                 return 0;
238
239         hdr = (struct ieee80211_hdr_3addr *)skb->data;
240         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 &&
245             !compare_ether_addr(hdr->addr1, dev->dev_addr) &&
246             !compare_ether_addr(hdr->addr3, dev->dev_addr)) {
247                 /* ToDS frame with own addr BSSID and DA */
248         } else if ((fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) ==
249                    IEEE80211_FCTL_FROMDS &&
250                    !compare_ether_addr(hdr->addr1, dev->dev_addr)) {
251                 /* 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 */
268 static int
269 ieee80211_rx_frame_decrypt(struct ieee80211_device *ieee, struct sk_buff *skb,
270                            struct ieee80211_crypt_data *crypt)
271 {
272         struct ieee80211_hdr_3addr *hdr;
273         int res, hdrlen;
274
275         if (crypt == NULL || crypt->ops->decrypt_mpdu == NULL)
276                 return 0;
277
278         hdr = (struct ieee80211_hdr_3addr *)skb->data;
279         hdrlen = ieee80211_get_hdrlen(le16_to_cpu(hdr->frame_ctl));
280
281         atomic_inc(&crypt->refcnt);
282         res = crypt->ops->decrypt_mpdu(skb, hdrlen, crypt->priv);
283         atomic_dec(&crypt->refcnt);
284         if (res < 0) {
285                 IEEE80211_DEBUG_DROP("decryption failed (SA=" MAC_FMT
286                                      ") res=%d\n", MAC_ARG(hdr->addr2), res);
287                 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
298 /* Called only as a tasklet (software IRQ), by ieee80211_rx */
299 static int
300 ieee80211_rx_frame_decrypt_msdu(struct ieee80211_device *ieee,
301                                 struct sk_buff *skb, int keyidx,
302                                 struct ieee80211_crypt_data *crypt)
303 {
304         struct ieee80211_hdr_3addr *hdr;
305         int res, hdrlen;
306
307         if (crypt == NULL || crypt->ops->decrypt_msdu == NULL)
308                 return 0;
309
310         hdr = (struct ieee80211_hdr_3addr *)skb->data;
311         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
326 /* 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). */
329 int 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;
333         struct ieee80211_hdr_4addr *hdr;
334         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;
352         int can_be_decrypted = 0;
353
354         hdr = (struct ieee80211_hdr_4addr *)skb->data;
355         stats = &ieee->stats;
356
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 = ieee80211_get_hdrlen(fc);
368
369         /* Put this code here so that we avoid duplicating it in all
370          * Rx paths. - Jean II */
371 #ifdef CONFIG_WIRELESS_EXT
372 #ifdef IW_WIRELESS_SPY          /* defined in iw_handler.h */
373         /* If spy monitoring on */
374         if (ieee->spy_data.spy_number > 0) {
375                 struct iw_quality wstats;
376
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
396                 /* Update spy records */
397                 wireless_spy_update(ieee->dev, hdr->addr2, &wstats);
398         }
399 #endif                          /* IW_WIRELESS_SPY */
400 #endif                          /* CONFIG_WIRELESS_EXT */
401
402 #ifdef NOT_YET
403         hostap_update_rx_stats(local->ap, hdr, rx_stats);
404 #endif
405
406         if (ieee->iw_mode == IW_MODE_MONITOR) {
407                 stats->rx_packets++;
408                 stats->rx_bytes += skb->len;
409                 ieee80211_monitor_rx(ieee, skb, rx_stats);
410                 return 1;
411         }
412
413         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) {
418                 if (skb->len >= hdrlen + 3) {
419                         /* Top two-bits of byte 3 are the key index */
420                         keyidx = skb->data[hdrlen + 3] >> 6;
421                 }
422
423                 /* 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
426                  * being out of range */
427                 crypt = ieee->crypt[keyidx];
428
429 #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)
440                         (void)hostap_handle_sta_crypto(local, hdr, &crypt,
441                                                        &sta);
442 #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
450                 if (!crypt && (fc & IEEE80211_FCTL_PROTECTED)) {
451                         /* 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         }
462 #ifdef NOT_YET
463         if (type != WLAN_FC_TYPE_DATA) {
464                 if (type == WLAN_FC_TYPE_MGMT && stype == WLAN_FC_STYPE_AUTH &&
465                     fc & IEEE80211_FCTL_PROTECTED && ieee->host_decrypt &&
466                     (keyidx = hostap_rx_frame_decrypt(ieee, skb, crypt)) < 0) {
467                         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         /* drop duplicate 802.11 retransmissions (IEEE 802.11 Chap. 9.29) */
482         if (sc == ieee->prev_seq_ctl)
483                 goto rx_dropped;
484         else
485                 ieee->prev_seq_ctl = sc;
486
487         /* Data frame - extract src/dst addresses */
488         if (skb->len < IEEE80211_3ADDR_LEN)
489                 goto rx_dropped;
490
491         switch (fc & (IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS)) {
492         case IEEE80211_FCTL_FROMDS:
493                 memcpy(dst, hdr->addr1, ETH_ALEN);
494                 memcpy(src, hdr->addr3, ETH_ALEN);
495                 break;
496         case IEEE80211_FCTL_TODS:
497                 memcpy(dst, hdr->addr3, ETH_ALEN);
498                 memcpy(src, hdr->addr2, ETH_ALEN);
499                 break;
500         case IEEE80211_FCTL_FROMDS | IEEE80211_FCTL_TODS:
501                 if (skb->len < IEEE80211_4ADDR_LEN)
502                         goto rx_dropped;
503                 memcpy(dst, hdr->addr3, ETH_ALEN);
504                 memcpy(src, hdr->addr4, ETH_ALEN);
505                 break;
506         case 0:
507                 memcpy(dst, hdr->addr1, ETH_ALEN);
508                 memcpy(src, hdr->addr2, ETH_ALEN);
509                 break;
510         }
511
512 #ifdef NOT_YET
513         if (hostap_rx_frame_wds(ieee, hdr, fc, &wds))
514                 goto rx_dropped;
515         if (wds) {
516                 skb->dev = dev = wds;
517                 stats = hostap_get_stats(dev);
518         }
519
520         if (ieee->iw_mode == IW_MODE_MASTER && !wds &&
521             (fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) ==
522             IEEE80211_FCTL_FROMDS && ieee->stadev
523             && !compare_ether_addr(hdr->addr2, ieee->assoc_ap_addr)) {
524                 /* Frame from BSSID of the AP for which we are a client */
525                 skb->dev = dev = ieee->stadev;
526                 stats = hostap_get_stats(dev);
527                 from_assoc_ap = 1;
528         }
529 #endif
530
531         dev->last_rx = jiffies;
532
533 #ifdef NOT_YET
534         if ((ieee->iw_mode == IW_MODE_MASTER ||
535              ieee->iw_mode == IW_MODE_REPEAT) && !from_assoc_ap) {
536                 switch (hostap_handle_sta_rx(ieee, dev, skb, rx_stats,
537                                              wds != NULL)) {
538                 case AP_RX_CONTINUE_NOT_AUTHORIZED:
539                         frame_authorized = 0;
540                         break;
541                 case AP_RX_CONTINUE:
542                         frame_authorized = 1;
543                         break;
544                 case AP_RX_DROP:
545                         goto rx_dropped;
546                 case AP_RX_EXIT:
547                         goto rx_exit;
548                 }
549         }
550 #endif
551
552         /* Nullfunc frames may have PS-bit set, so they must be passed to
553          * hostap_handle_sta_rx() before being dropped here. */
554
555         stype &= ~IEEE80211_STYPE_QOS_DATA;
556
557         if (stype != IEEE80211_STYPE_DATA &&
558             stype != IEEE80211_STYPE_DATA_CFACK &&
559             stype != IEEE80211_STYPE_DATA_CFPOLL &&
560             stype != IEEE80211_STYPE_DATA_CFACKPOLL) {
561                 if (stype != IEEE80211_STYPE_NULLFUNC)
562                         IEEE80211_DEBUG_DROP("RX: dropped data frame "
563                                              "with no data (type=0x%02x, "
564                                              "subtype=0x%02x, len=%d)\n",
565                                              type, stype, skb->len);
566                 goto rx_dropped;
567         }
568
569         /* skb: hdr + (possibly fragmented, possibly encrypted) payload */
570
571         if ((fc & IEEE80211_FCTL_PROTECTED) && can_be_decrypted &&
572             (keyidx = ieee80211_rx_frame_decrypt(ieee, skb, crypt)) < 0)
573                 goto rx_dropped;
574
575         hdr = (struct ieee80211_hdr_4addr *)skb->data;
576
577         /* skb: hdr + (possibly fragmented) plaintext payload */
578         // PR: FIXME: hostap has additional conditions in the "if" below:
579         // ieee->host_decrypt && (fc & IEEE80211_FCTL_PROTECTED) &&
580         if ((frag != 0) || (fc & IEEE80211_FCTL_MOREFRAGS)) {
581                 int flen;
582                 struct sk_buff *frag_skb = ieee80211_frag_cache_get(ieee, hdr);
583                 IEEE80211_DEBUG_FRAG("Rx Fragment received (%u)\n", frag);
584
585                 if (!frag_skb) {
586                         IEEE80211_DEBUG(IEEE80211_DL_RX | IEEE80211_DL_FRAG,
587                                         "Rx cannot get skb from fragment "
588                                         "cache (morefrag=%d seq=%u frag=%u)\n",
589                                         (fc & IEEE80211_FCTL_MOREFRAGS) != 0,
590                                         WLAN_GET_SEQ_SEQ(sc), frag);
591                         goto rx_dropped;
592                 }
593
594                 flen = skb->len;
595                 if (frag != 0)
596                         flen -= hdrlen;
597
598                 if (frag_skb->tail + flen > frag_skb->end) {
599                         printk(KERN_WARNING "%s: host decrypted and "
600                                "reassembled frame did not fit skb\n",
601                                dev->name);
602                         ieee80211_frag_cache_invalidate(ieee, hdr);
603                         goto rx_dropped;
604                 }
605
606                 if (frag == 0) {
607                         /* copy first fragment (including full headers) into
608                          * beginning of the fragment cache skb */
609                         memcpy(skb_put(frag_skb, flen), skb->data, flen);
610                 } else {
611                         /* append frame payload to the end of the fragment
612                          * cache skb */
613                         memcpy(skb_put(frag_skb, flen), skb->data + hdrlen,
614                                flen);
615                 }
616                 dev_kfree_skb_any(skb);
617                 skb = NULL;
618
619                 if (fc & IEEE80211_FCTL_MOREFRAGS) {
620                         /* more fragments expected - leave the skb in fragment
621                          * cache for now; it will be delivered to upper layers
622                          * after all fragments have been received */
623                         goto rx_exit;
624                 }
625
626                 /* this was the last fragment and the frame will be
627                  * delivered, so remove skb from fragment cache */
628                 skb = frag_skb;
629                 hdr = (struct ieee80211_hdr_4addr *)skb->data;
630                 ieee80211_frag_cache_invalidate(ieee, hdr);
631         }
632
633         /* skb: hdr + (possible reassembled) full MSDU payload; possibly still
634          * encrypted/authenticated */
635         if ((fc & IEEE80211_FCTL_PROTECTED) && can_be_decrypted &&
636             ieee80211_rx_frame_decrypt_msdu(ieee, skb, keyidx, crypt))
637                 goto rx_dropped;
638
639         hdr = (struct ieee80211_hdr_4addr *)skb->data;
640         if (crypt && !(fc & IEEE80211_FCTL_PROTECTED) && !ieee->open_wep) {
641                 if (            /*ieee->ieee802_1x && */
642                            ieee80211_is_eapol_frame(ieee, skb)) {
643                         /* pass unencrypted EAPOL frames even if encryption is
644                          * configured */
645                 } else {
646                         IEEE80211_DEBUG_DROP("encryption configured, but RX "
647                                              "frame not encrypted (SA=" MAC_FMT
648                                              ")\n", MAC_ARG(hdr->addr2));
649                         goto rx_dropped;
650                 }
651         }
652
653         if (crypt && !(fc & IEEE80211_FCTL_PROTECTED) && !ieee->open_wep &&
654             !ieee80211_is_eapol_frame(ieee, skb)) {
655                 IEEE80211_DEBUG_DROP("dropped unencrypted RX data "
656                                      "frame from " MAC_FMT
657                                      " (drop_unencrypted=1)\n",
658                                      MAC_ARG(hdr->addr2));
659                 goto rx_dropped;
660         }
661
662         /* If the frame was decrypted in hardware, we may need to strip off
663          * any security data (IV, ICV, etc) that was left behind */
664         if (!can_be_decrypted && (fc & IEEE80211_FCTL_PROTECTED) &&
665             ieee->host_strip_iv_icv) {
666                 int trimlen = 0;
667
668                 /* Top two-bits of byte 3 are the key index */
669                 if (skb->len >= hdrlen + 3)
670                         keyidx = skb->data[hdrlen + 3] >> 6;
671
672                 /* To strip off any security data which appears before the
673                  * payload, we simply increase hdrlen (as the header gets
674                  * chopped off immediately below). For the security data which
675                  * appears after the payload, we use skb_trim. */
676
677                 switch (ieee->sec.encode_alg[keyidx]) {
678                 case SEC_ALG_WEP:
679                         /* 4 byte IV */
680                         hdrlen += 4;
681                         /* 4 byte ICV */
682                         trimlen = 4;
683                         break;
684                 case SEC_ALG_TKIP:
685                         /* 4 byte IV, 4 byte ExtIV */
686                         hdrlen += 8;
687                         /* 8 byte MIC, 4 byte ICV */
688                         trimlen = 12;
689                         break;
690                 case SEC_ALG_CCMP:
691                         /* 8 byte CCMP header */
692                         hdrlen += 8;
693                         /* 8 byte MIC */
694                         trimlen = 8;
695                         break;
696                 }
697
698                 if (skb->len < trimlen)
699                         goto rx_dropped;
700
701                 __skb_trim(skb, skb->len - trimlen);
702
703                 if (skb->len < hdrlen)
704                         goto rx_dropped;
705         }
706
707         /* skb: hdr + (possible reassembled) full plaintext payload */
708
709         payload = skb->data + hdrlen;
710         ethertype = (payload[6] << 8) | payload[7];
711
712 #ifdef NOT_YET
713         /* If IEEE 802.1X is used, check whether the port is authorized to send
714          * the received frame. */
715         if (ieee->ieee802_1x && ieee->iw_mode == IW_MODE_MASTER) {
716                 if (ethertype == ETH_P_PAE) {
717                         printk(KERN_DEBUG "%s: RX: IEEE 802.1X frame\n",
718                                dev->name);
719                         if (ieee->hostapd && ieee->apdev) {
720                                 /* Send IEEE 802.1X frames to the user
721                                  * space daemon for processing */
722                                 prism2_rx_80211(ieee->apdev, skb, rx_stats,
723                                                 PRISM2_RX_MGMT);
724                                 ieee->apdevstats.rx_packets++;
725                                 ieee->apdevstats.rx_bytes += skb->len;
726                                 goto rx_exit;
727                         }
728                 } else if (!frame_authorized) {
729                         printk(KERN_DEBUG "%s: dropped frame from "
730                                "unauthorized port (IEEE 802.1X): "
731                                "ethertype=0x%04x\n", dev->name, ethertype);
732                         goto rx_dropped;
733                 }
734         }
735 #endif
736
737         /* convert hdr + possible LLC headers into Ethernet header */
738         if (skb->len - hdrlen >= 8 &&
739             ((memcmp(payload, rfc1042_header, SNAP_SIZE) == 0 &&
740               ethertype != ETH_P_AARP && ethertype != ETH_P_IPX) ||
741              memcmp(payload, bridge_tunnel_header, SNAP_SIZE) == 0)) {
742                 /* remove RFC1042 or Bridge-Tunnel encapsulation and
743                  * replace EtherType */
744                 skb_pull(skb, hdrlen + SNAP_SIZE);
745                 memcpy(skb_push(skb, ETH_ALEN), src, ETH_ALEN);
746                 memcpy(skb_push(skb, ETH_ALEN), dst, ETH_ALEN);
747         } else {
748                 u16 len;
749                 /* Leave Ethernet header part of hdr and full payload */
750                 skb_pull(skb, hdrlen);
751                 len = htons(skb->len);
752                 memcpy(skb_push(skb, 2), &len, 2);
753                 memcpy(skb_push(skb, ETH_ALEN), src, ETH_ALEN);
754                 memcpy(skb_push(skb, ETH_ALEN), dst, ETH_ALEN);
755         }
756
757 #ifdef NOT_YET
758         if (wds && ((fc & (IEEE80211_FCTL_TODS | IEEE80211_FCTL_FROMDS)) ==
759                     IEEE80211_FCTL_TODS) && skb->len >= ETH_HLEN + ETH_ALEN) {
760                 /* Non-standard frame: get addr4 from its bogus location after
761                  * the payload */
762                 memcpy(skb->data + ETH_ALEN,
763                        skb->data + skb->len - ETH_ALEN, ETH_ALEN);
764                 skb_trim(skb, skb->len - ETH_ALEN);
765         }
766 #endif
767
768         stats->rx_packets++;
769         stats->rx_bytes += skb->len;
770
771 #ifdef NOT_YET
772         if (ieee->iw_mode == IW_MODE_MASTER && !wds && ieee->ap->bridge_packets) {
773                 if (dst[0] & 0x01) {
774                         /* copy multicast frame both to the higher layers and
775                          * to the wireless media */
776                         ieee->ap->bridged_multicast++;
777                         skb2 = skb_clone(skb, GFP_ATOMIC);
778                         if (skb2 == NULL)
779                                 printk(KERN_DEBUG "%s: skb_clone failed for "
780                                        "multicast frame\n", dev->name);
781                 } else if (hostap_is_sta_assoc(ieee->ap, dst)) {
782                         /* send frame directly to the associated STA using
783                          * wireless media and not passing to higher layers */
784                         ieee->ap->bridged_unicast++;
785                         skb2 = skb;
786                         skb = NULL;
787                 }
788         }
789
790         if (skb2 != NULL) {
791                 /* send to wireless media */
792                 skb2->protocol = __constant_htons(ETH_P_802_3);
793                 skb2->mac.raw = skb2->nh.raw = skb2->data;
794                 /* skb2->nh.raw = skb2->data + ETH_HLEN; */
795                 skb2->dev = dev;
796                 dev_queue_xmit(skb2);
797         }
798 #endif
799
800         if (skb) {
801                 skb->protocol = eth_type_trans(skb, dev);
802                 memset(skb->cb, 0, sizeof(skb->cb));
803                 skb->ip_summed = CHECKSUM_NONE; /* 802.11 crc not sufficient */
804                 if (netif_rx(skb) == NET_RX_DROP) {
805                         /* netif_rx always succeeds, but it might drop
806                          * the packet.  If it drops the packet, we log that
807                          * in our stats. */
808                         IEEE80211_DEBUG_DROP
809                             ("RX: netif_rx dropped the packet\n");
810                         stats->rx_dropped++;
811                 }
812         }
813
814       rx_exit:
815 #ifdef NOT_YET
816         if (sta)
817                 hostap_handle_sta_release(sta);
818 #endif
819         return 1;
820
821       rx_dropped:
822         stats->rx_dropped++;
823
824         /* Returning 0 indicates to caller that we have not handled the SKB--
825          * so it is still allocated and can be used again by underlying
826          * hardware as a DMA target */
827         return 0;
828 }
829
830 /* Filter out unrelated packets, call ieee80211_rx[_mgt]
831  * This function takes over the skb, it should not be used again after calling
832  * this function. */
833 void ieee80211_rx_any(struct ieee80211_device *ieee,
834                      struct sk_buff *skb, struct ieee80211_rx_stats *stats)
835 {
836         struct ieee80211_hdr_4addr *hdr;
837         int is_packet_for_us;
838         u16 fc;
839
840         if (ieee->iw_mode == IW_MODE_MONITOR) {
841                 if (!ieee80211_rx(ieee, skb, stats))
842                         dev_kfree_skb_irq(skb);
843                 return;
844         }
845
846         if (skb->len < sizeof(struct ieee80211_hdr))
847                 goto drop_free;
848
849         hdr = (struct ieee80211_hdr_4addr *)skb->data;
850         fc = le16_to_cpu(hdr->frame_ctl);
851
852         if ((fc & IEEE80211_FCTL_VERS) != 0)
853                 goto drop_free;
854
855         switch (fc & IEEE80211_FCTL_FTYPE) {
856         case IEEE80211_FTYPE_MGMT:
857                 if (skb->len < sizeof(struct ieee80211_hdr_3addr))
858                         goto drop_free;
859                 ieee80211_rx_mgt(ieee, hdr, stats);
860                 dev_kfree_skb_irq(skb);
861                 return;
862         case IEEE80211_FTYPE_DATA:
863                 break;
864         case IEEE80211_FTYPE_CTL:
865                 return;
866         default:
867                 return;
868         }
869
870         is_packet_for_us = 0;
871         switch (ieee->iw_mode) {
872         case IW_MODE_ADHOC:
873                 /* our BSS and not from/to DS */
874                 if (memcmp(hdr->addr3, ieee->bssid, ETH_ALEN) == 0)
875                 if ((fc & (IEEE80211_FCTL_TODS+IEEE80211_FCTL_FROMDS)) == 0) {
876                         /* promisc: get all */
877                         if (ieee->dev->flags & IFF_PROMISC)
878                                 is_packet_for_us = 1;
879                         /* to us */
880                         else if (memcmp(hdr->addr1, ieee->dev->dev_addr, ETH_ALEN) == 0)
881                                 is_packet_for_us = 1;
882                         /* mcast */
883                         else if (is_multicast_ether_addr(hdr->addr1))
884                                 is_packet_for_us = 1;
885                 }
886                 break;
887         case IW_MODE_INFRA:
888                 /* our BSS (== from our AP) and from DS */
889                 if (memcmp(hdr->addr2, ieee->bssid, ETH_ALEN) == 0)
890                 if ((fc & (IEEE80211_FCTL_TODS+IEEE80211_FCTL_FROMDS)) == IEEE80211_FCTL_FROMDS) {
891                         /* promisc: get all */
892                         if (ieee->dev->flags & IFF_PROMISC)
893                                 is_packet_for_us = 1;
894                         /* to us */
895                         else if (memcmp(hdr->addr1, ieee->dev->dev_addr, ETH_ALEN) == 0)
896                                 is_packet_for_us = 1;
897                         /* mcast */
898                         else if (is_multicast_ether_addr(hdr->addr1)) {
899                                 /* not our own packet bcasted from AP */
900                                 if (memcmp(hdr->addr3, ieee->dev->dev_addr, ETH_ALEN))
901                                         is_packet_for_us = 1;
902                         }
903                 }
904                 break;
905         default:
906                 /* ? */
907                 break;
908         }
909
910         if (is_packet_for_us)
911                 if (!ieee80211_rx(ieee, skb, stats))
912                         dev_kfree_skb_irq(skb);
913         return;
914
915 drop_free:
916         dev_kfree_skb_irq(skb);
917         ieee->stats.rx_dropped++;
918         return;
919 }
920
921 #define MGMT_FRAME_FIXED_PART_LENGTH            0x24
922
923 static u8 qos_oui[QOS_OUI_LEN] = { 0x00, 0x50, 0xF2 };
924
925 /*
926 * Make ther structure we read from the beacon packet has
927 * the right values
928 */
929 static int ieee80211_verify_qos_info(struct ieee80211_qos_information_element
930                                      *info_element, int sub_type)
931 {
932
933         if (info_element->qui_subtype != sub_type)
934                 return -1;
935         if (memcmp(info_element->qui, qos_oui, QOS_OUI_LEN))
936                 return -1;
937         if (info_element->qui_type != QOS_OUI_TYPE)
938                 return -1;
939         if (info_element->version != QOS_VERSION_1)
940                 return -1;
941
942         return 0;
943 }
944
945 /*
946  * Parse a QoS parameter element
947  */
948 static int ieee80211_read_qos_param_element(struct ieee80211_qos_parameter_info
949                                             *element_param, struct ieee80211_info_element
950                                             *info_element)
951 {
952         int ret = 0;
953         u16 size = sizeof(struct ieee80211_qos_parameter_info) - 2;
954
955         if ((info_element == NULL) || (element_param == NULL))
956                 return -1;
957
958         if (info_element->id == QOS_ELEMENT_ID && info_element->len == size) {
959                 memcpy(element_param->info_element.qui, info_element->data,
960                        info_element->len);
961                 element_param->info_element.elementID = info_element->id;
962                 element_param->info_element.length = info_element->len;
963         } else
964                 ret = -1;
965         if (ret == 0)
966                 ret = ieee80211_verify_qos_info(&element_param->info_element,
967                                                 QOS_OUI_PARAM_SUB_TYPE);
968         return ret;
969 }
970
971 /*
972  * Parse a QoS information element
973  */
974 static int ieee80211_read_qos_info_element(struct
975                                            ieee80211_qos_information_element
976                                            *element_info, struct ieee80211_info_element
977                                            *info_element)
978 {
979         int ret = 0;
980         u16 size = sizeof(struct ieee80211_qos_information_element) - 2;
981
982         if (element_info == NULL)
983                 return -1;
984         if (info_element == NULL)
985                 return -1;
986
987         if ((info_element->id == QOS_ELEMENT_ID) && (info_element->len == size)) {
988                 memcpy(element_info->qui, info_element->data,
989                        info_element->len);
990                 element_info->elementID = info_element->id;
991                 element_info->length = info_element->len;
992         } else
993                 ret = -1;
994
995         if (ret == 0)
996                 ret = ieee80211_verify_qos_info(element_info,
997                                                 QOS_OUI_INFO_SUB_TYPE);
998         return ret;
999 }
1000
1001 /*
1002  * Write QoS parameters from the ac parameters.
1003  */
1004 static int ieee80211_qos_convert_ac_to_parameters(struct
1005                                                   ieee80211_qos_parameter_info
1006                                                   *param_elm, struct
1007                                                   ieee80211_qos_parameters
1008                                                   *qos_param)
1009 {
1010         int rc = 0;
1011         int i;
1012         struct ieee80211_qos_ac_parameter *ac_params;
1013         u32 txop;
1014         u8 cw_min;
1015         u8 cw_max;
1016
1017         for (i = 0; i < QOS_QUEUE_NUM; i++) {
1018                 ac_params = &(param_elm->ac_params_record[i]);
1019
1020                 qos_param->aifs[i] = (ac_params->aci_aifsn) & 0x0F;
1021                 qos_param->aifs[i] -= (qos_param->aifs[i] < 2) ? 0 : 2;
1022
1023                 cw_min = ac_params->ecw_min_max & 0x0F;
1024                 qos_param->cw_min[i] = (u16) ((1 << cw_min) - 1);
1025
1026                 cw_max = (ac_params->ecw_min_max & 0xF0) >> 4;
1027                 qos_param->cw_max[i] = (u16) ((1 << cw_max) - 1);
1028
1029                 qos_param->flag[i] =
1030                     (ac_params->aci_aifsn & 0x10) ? 0x01 : 0x00;
1031
1032                 txop = le16_to_cpu(ac_params->tx_op_limit) * 32;
1033                 qos_param->tx_op_limit[i] = (u16) txop;
1034         }
1035         return rc;
1036 }
1037
1038 /*
1039  * we have a generic data element which it may contain QoS information or
1040  * parameters element. check the information element length to decide
1041  * which type to read
1042  */
1043 static int ieee80211_parse_qos_info_param_IE(struct ieee80211_info_element
1044                                              *info_element,
1045                                              struct ieee80211_network *network)
1046 {
1047         int rc = 0;
1048         struct ieee80211_qos_parameters *qos_param = NULL;
1049         struct ieee80211_qos_information_element qos_info_element;
1050
1051         rc = ieee80211_read_qos_info_element(&qos_info_element, info_element);
1052
1053         if (rc == 0) {
1054                 network->qos_data.param_count = qos_info_element.ac_info & 0x0F;
1055                 network->flags |= NETWORK_HAS_QOS_INFORMATION;
1056         } else {
1057                 struct ieee80211_qos_parameter_info param_element;
1058
1059                 rc = ieee80211_read_qos_param_element(&param_element,
1060                                                       info_element);
1061                 if (rc == 0) {
1062                         qos_param = &(network->qos_data.parameters);
1063                         ieee80211_qos_convert_ac_to_parameters(&param_element,
1064                                                                qos_param);
1065                         network->flags |= NETWORK_HAS_QOS_PARAMETERS;
1066                         network->qos_data.param_count =
1067                             param_element.info_element.ac_info & 0x0F;
1068                 }
1069         }
1070
1071         if (rc == 0) {
1072                 IEEE80211_DEBUG_QOS("QoS is supported\n");
1073                 network->qos_data.supported = 1;
1074         }
1075         return rc;
1076 }
1077
1078 #ifdef CONFIG_IEEE80211_DEBUG
1079 #define MFIE_STRING(x) case MFIE_TYPE_ ##x: return #x
1080
1081 static const char *get_info_element_string(u16 id)
1082 {
1083         switch (id) {
1084                 MFIE_STRING(SSID);
1085                 MFIE_STRING(RATES);
1086                 MFIE_STRING(FH_SET);
1087                 MFIE_STRING(DS_SET);
1088                 MFIE_STRING(CF_SET);
1089                 MFIE_STRING(TIM);
1090                 MFIE_STRING(IBSS_SET);
1091                 MFIE_STRING(COUNTRY);
1092                 MFIE_STRING(HOP_PARAMS);
1093                 MFIE_STRING(HOP_TABLE);
1094                 MFIE_STRING(REQUEST);
1095                 MFIE_STRING(CHALLENGE);
1096                 MFIE_STRING(POWER_CONSTRAINT);
1097                 MFIE_STRING(POWER_CAPABILITY);
1098                 MFIE_STRING(TPC_REQUEST);
1099                 MFIE_STRING(TPC_REPORT);
1100                 MFIE_STRING(SUPP_CHANNELS);
1101                 MFIE_STRING(CSA);
1102                 MFIE_STRING(MEASURE_REQUEST);
1103                 MFIE_STRING(MEASURE_REPORT);
1104                 MFIE_STRING(QUIET);
1105                 MFIE_STRING(IBSS_DFS);
1106                 MFIE_STRING(ERP_INFO);
1107                 MFIE_STRING(RSN);
1108                 MFIE_STRING(RATES_EX);
1109                 MFIE_STRING(GENERIC);
1110                 MFIE_STRING(QOS_PARAMETER);
1111         default:
1112                 return "UNKNOWN";
1113         }
1114 }
1115 #endif
1116
1117 static int ieee80211_parse_info_param(struct ieee80211_info_element
1118                                       *info_element, u16 length,
1119                                       struct ieee80211_network *network)
1120 {
1121         u8 i;
1122 #ifdef CONFIG_IEEE80211_DEBUG
1123         char rates_str[64];
1124         char *p;
1125 #endif
1126
1127         while (length >= sizeof(*info_element)) {
1128                 if (sizeof(*info_element) + info_element->len > length) {
1129                         IEEE80211_DEBUG_MGMT("Info elem: parse failed: "
1130                                              "info_element->len + 2 > left : "
1131                                              "info_element->len+2=%zd left=%d, id=%d.\n",
1132                                              info_element->len +
1133                                              sizeof(*info_element),
1134                                              length, info_element->id);
1135                         /* We stop processing but don't return an error here
1136                          * because some misbehaviour APs break this rule. ie.
1137                          * Orinoco AP1000. */
1138                         break;
1139                 }
1140
1141                 switch (info_element->id) {
1142                 case MFIE_TYPE_SSID:
1143                         if (ieee80211_is_empty_essid(info_element->data,
1144                                                      info_element->len)) {
1145                                 network->flags |= NETWORK_EMPTY_ESSID;
1146                                 break;
1147                         }
1148
1149                         network->ssid_len = min(info_element->len,
1150                                                 (u8) IW_ESSID_MAX_SIZE);
1151                         memcpy(network->ssid, info_element->data,
1152                                network->ssid_len);
1153                         if (network->ssid_len < IW_ESSID_MAX_SIZE)
1154                                 memset(network->ssid + network->ssid_len, 0,
1155                                        IW_ESSID_MAX_SIZE - network->ssid_len);
1156
1157                         IEEE80211_DEBUG_MGMT("MFIE_TYPE_SSID: '%s' len=%d.\n",
1158                                              network->ssid, network->ssid_len);
1159                         break;
1160
1161                 case MFIE_TYPE_RATES:
1162 #ifdef CONFIG_IEEE80211_DEBUG
1163                         p = rates_str;
1164 #endif
1165                         network->rates_len = min(info_element->len,
1166                                                  MAX_RATES_LENGTH);
1167                         for (i = 0; i < network->rates_len; i++) {
1168                                 network->rates[i] = info_element->data[i];
1169 #ifdef CONFIG_IEEE80211_DEBUG
1170                                 p += snprintf(p, sizeof(rates_str) -
1171                                               (p - rates_str), "%02X ",
1172                                               network->rates[i]);
1173 #endif
1174                                 if (ieee80211_is_ofdm_rate
1175                                     (info_element->data[i])) {
1176                                         network->flags |= NETWORK_HAS_OFDM;
1177                                         if (info_element->data[i] &
1178                                             IEEE80211_BASIC_RATE_MASK)
1179                                                 network->flags &=
1180                                                     ~NETWORK_HAS_CCK;
1181                                 }
1182                         }
1183
1184                         IEEE80211_DEBUG_MGMT("MFIE_TYPE_RATES: '%s' (%d)\n",
1185                                              rates_str, network->rates_len);
1186                         break;
1187
1188                 case MFIE_TYPE_RATES_EX:
1189 #ifdef CONFIG_IEEE80211_DEBUG
1190                         p = rates_str;
1191 #endif
1192                         network->rates_ex_len = min(info_element->len,
1193                                                     MAX_RATES_EX_LENGTH);
1194                         for (i = 0; i < network->rates_ex_len; i++) {
1195                                 network->rates_ex[i] = info_element->data[i];
1196 #ifdef CONFIG_IEEE80211_DEBUG
1197                                 p += snprintf(p, sizeof(rates_str) -
1198                                               (p - rates_str), "%02X ",
1199                                               network->rates[i]);
1200 #endif
1201                                 if (ieee80211_is_ofdm_rate
1202                                     (info_element->data[i])) {
1203                                         network->flags |= NETWORK_HAS_OFDM;
1204                                         if (info_element->data[i] &
1205                                             IEEE80211_BASIC_RATE_MASK)
1206                                                 network->flags &=
1207                                                     ~NETWORK_HAS_CCK;
1208                                 }
1209                         }
1210
1211                         IEEE80211_DEBUG_MGMT("MFIE_TYPE_RATES_EX: '%s' (%d)\n",
1212                                              rates_str, network->rates_ex_len);
1213                         break;
1214
1215                 case MFIE_TYPE_DS_SET:
1216                         IEEE80211_DEBUG_MGMT("MFIE_TYPE_DS_SET: %d\n",
1217                                              info_element->data[0]);
1218                         network->channel = info_element->data[0];
1219                         break;
1220
1221                 case MFIE_TYPE_FH_SET:
1222                         IEEE80211_DEBUG_MGMT("MFIE_TYPE_FH_SET: ignored\n");
1223                         break;
1224
1225                 case MFIE_TYPE_CF_SET:
1226                         IEEE80211_DEBUG_MGMT("MFIE_TYPE_CF_SET: ignored\n");
1227                         break;
1228
1229                 case MFIE_TYPE_TIM:
1230                         network->tim.tim_count = info_element->data[0];
1231                         network->tim.tim_period = info_element->data[1];
1232                         IEEE80211_DEBUG_MGMT("MFIE_TYPE_TIM: partially ignored\n");
1233                         break;
1234
1235                 case MFIE_TYPE_ERP_INFO:
1236                         network->erp_value = info_element->data[0];
1237                         network->flags |= NETWORK_HAS_ERP_VALUE;
1238                         IEEE80211_DEBUG_MGMT("MFIE_TYPE_ERP_SET: %d\n",
1239                                              network->erp_value);
1240                         break;
1241
1242                 case MFIE_TYPE_IBSS_SET:
1243                         network->atim_window = info_element->data[0];
1244                         IEEE80211_DEBUG_MGMT("MFIE_TYPE_IBSS_SET: %d\n",
1245                                              network->atim_window);
1246                         break;
1247
1248                 case MFIE_TYPE_CHALLENGE:
1249                         IEEE80211_DEBUG_MGMT("MFIE_TYPE_CHALLENGE: ignored\n");
1250                         break;
1251
1252                 case MFIE_TYPE_GENERIC:
1253                         IEEE80211_DEBUG_MGMT("MFIE_TYPE_GENERIC: %d bytes\n",
1254                                              info_element->len);
1255                         if (!ieee80211_parse_qos_info_param_IE(info_element,
1256                                                                network))
1257                                 break;
1258
1259                         if (info_element->len >= 4 &&
1260                             info_element->data[0] == 0x00 &&
1261                             info_element->data[1] == 0x50 &&
1262                             info_element->data[2] == 0xf2 &&
1263                             info_element->data[3] == 0x01) {
1264                                 network->wpa_ie_len = min(info_element->len + 2,
1265                                                           MAX_WPA_IE_LEN);
1266                                 memcpy(network->wpa_ie, info_element,
1267                                        network->wpa_ie_len);
1268                         }
1269                         break;
1270
1271                 case MFIE_TYPE_RSN:
1272                         IEEE80211_DEBUG_MGMT("MFIE_TYPE_RSN: %d bytes\n",
1273                                              info_element->len);
1274                         network->rsn_ie_len = min(info_element->len + 2,
1275                                                   MAX_WPA_IE_LEN);
1276                         memcpy(network->rsn_ie, info_element,
1277                                network->rsn_ie_len);
1278                         break;
1279
1280                 case MFIE_TYPE_QOS_PARAMETER:
1281                         printk(KERN_ERR
1282                                "QoS Error need to parse QOS_PARAMETER IE\n");
1283                         break;
1284                         /* 802.11h */
1285                 case MFIE_TYPE_POWER_CONSTRAINT:
1286                         network->power_constraint = info_element->data[0];
1287                         network->flags |= NETWORK_HAS_POWER_CONSTRAINT;
1288                         break;
1289
1290                 case MFIE_TYPE_CSA:
1291                         network->power_constraint = info_element->data[0];
1292                         network->flags |= NETWORK_HAS_CSA;
1293                         break;
1294
1295                 case MFIE_TYPE_QUIET:
1296                         network->quiet.count = info_element->data[0];
1297                         network->quiet.period = info_element->data[1];
1298                         network->quiet.duration = info_element->data[2];
1299                         network->quiet.offset = info_element->data[3];
1300                         network->flags |= NETWORK_HAS_QUIET;
1301                         break;
1302
1303                 case MFIE_TYPE_IBSS_DFS:
1304                         if (network->ibss_dfs)
1305                                 break;
1306                         network->ibss_dfs = kmemdup(info_element->data,
1307                                                     info_element->len,
1308                                                     GFP_ATOMIC);
1309                         if (!network->ibss_dfs)
1310                                 return 1;
1311                         network->flags |= NETWORK_HAS_IBSS_DFS;
1312                         break;
1313
1314                 case MFIE_TYPE_TPC_REPORT:
1315                         network->tpc_report.transmit_power =
1316                             info_element->data[0];
1317                         network->tpc_report.link_margin = info_element->data[1];
1318                         network->flags |= NETWORK_HAS_TPC_REPORT;
1319                         break;
1320
1321                 default:
1322                         IEEE80211_DEBUG_MGMT
1323                             ("Unsupported info element: %s (%d)\n",
1324                              get_info_element_string(info_element->id),
1325                              info_element->id);
1326                         break;
1327                 }
1328
1329                 length -= sizeof(*info_element) + info_element->len;
1330                 info_element =
1331                     (struct ieee80211_info_element *)&info_element->
1332                     data[info_element->len];
1333         }
1334
1335         return 0;
1336 }
1337
1338 static int ieee80211_handle_assoc_resp(struct ieee80211_device *ieee, struct ieee80211_assoc_response
1339                                        *frame, struct ieee80211_rx_stats *stats)
1340 {
1341         struct ieee80211_network network_resp = {
1342                 .ibss_dfs = NULL,
1343         };
1344         struct ieee80211_network *network = &network_resp;
1345         struct net_device *dev = ieee->dev;
1346
1347         network->flags = 0;
1348         network->qos_data.active = 0;
1349         network->qos_data.supported = 0;
1350         network->qos_data.param_count = 0;
1351         network->qos_data.old_param_count = 0;
1352
1353         //network->atim_window = le16_to_cpu(frame->aid) & (0x3FFF);
1354         network->atim_window = le16_to_cpu(frame->aid);
1355         network->listen_interval = le16_to_cpu(frame->status);
1356         memcpy(network->bssid, frame->header.addr3, ETH_ALEN);
1357         network->capability = le16_to_cpu(frame->capability);
1358         network->last_scanned = jiffies;
1359         network->rates_len = network->rates_ex_len = 0;
1360         network->last_associate = 0;
1361         network->ssid_len = 0;
1362         network->erp_value =
1363             (network->capability & WLAN_CAPABILITY_IBSS) ? 0x3 : 0x0;
1364
1365         if (stats->freq == IEEE80211_52GHZ_BAND) {
1366                 /* for A band (No DS info) */
1367                 network->channel = stats->received_channel;
1368         } else
1369                 network->flags |= NETWORK_HAS_CCK;
1370
1371         network->wpa_ie_len = 0;
1372         network->rsn_ie_len = 0;
1373
1374         if (ieee80211_parse_info_param
1375             (frame->info_element, stats->len - sizeof(*frame), network))
1376                 return 1;
1377
1378         network->mode = 0;
1379         if (stats->freq == IEEE80211_52GHZ_BAND)
1380                 network->mode = IEEE_A;
1381         else {
1382                 if (network->flags & NETWORK_HAS_OFDM)
1383                         network->mode |= IEEE_G;
1384                 if (network->flags & NETWORK_HAS_CCK)
1385                         network->mode |= IEEE_B;
1386         }
1387
1388         if (ieee80211_is_empty_essid(network->ssid, network->ssid_len))
1389                 network->flags |= NETWORK_EMPTY_ESSID;
1390
1391         memcpy(&network->stats, stats, sizeof(network->stats));
1392
1393         if (ieee->handle_assoc_response != NULL)
1394                 ieee->handle_assoc_response(dev, frame, network);
1395
1396         return 0;
1397 }
1398
1399 /***************************************************/
1400
1401 static int ieee80211_network_init(struct ieee80211_device *ieee, struct ieee80211_probe_response
1402                                          *beacon,
1403                                          struct ieee80211_network *network,
1404                                          struct ieee80211_rx_stats *stats)
1405 {
1406         network->qos_data.active = 0;
1407         network->qos_data.supported = 0;
1408         network->qos_data.param_count = 0;
1409         network->qos_data.old_param_count = 0;
1410
1411         /* Pull out fixed field data */
1412         memcpy(network->bssid, beacon->header.addr3, ETH_ALEN);
1413         network->capability = le16_to_cpu(beacon->capability);
1414         network->last_scanned = jiffies;
1415         network->time_stamp[0] = le32_to_cpu(beacon->time_stamp[0]);
1416         network->time_stamp[1] = le32_to_cpu(beacon->time_stamp[1]);
1417         network->beacon_interval = le16_to_cpu(beacon->beacon_interval);
1418         /* Where to pull this? beacon->listen_interval; */
1419         network->listen_interval = 0x0A;
1420         network->rates_len = network->rates_ex_len = 0;
1421         network->last_associate = 0;
1422         network->ssid_len = 0;
1423         network->flags = 0;
1424         network->atim_window = 0;
1425         network->erp_value = (network->capability & WLAN_CAPABILITY_IBSS) ?
1426             0x3 : 0x0;
1427
1428         if (stats->freq == IEEE80211_52GHZ_BAND) {
1429                 /* for A band (No DS info) */
1430                 network->channel = stats->received_channel;
1431         } else
1432                 network->flags |= NETWORK_HAS_CCK;
1433
1434         network->wpa_ie_len = 0;
1435         network->rsn_ie_len = 0;
1436
1437         if (ieee80211_parse_info_param
1438             (beacon->info_element, stats->len - sizeof(*beacon), network))
1439                 return 1;
1440
1441         network->mode = 0;
1442         if (stats->freq == IEEE80211_52GHZ_BAND)
1443                 network->mode = IEEE_A;
1444         else {
1445                 if (network->flags & NETWORK_HAS_OFDM)
1446                         network->mode |= IEEE_G;
1447                 if (network->flags & NETWORK_HAS_CCK)
1448                         network->mode |= IEEE_B;
1449         }
1450
1451         if (network->mode == 0) {
1452                 IEEE80211_DEBUG_SCAN("Filtered out '%s (" MAC_FMT ")' "
1453                                      "network.\n",
1454                                      escape_essid(network->ssid,
1455                                                   network->ssid_len),
1456                                      MAC_ARG(network->bssid));
1457                 return 1;
1458         }
1459
1460         if (ieee80211_is_empty_essid(network->ssid, network->ssid_len))
1461                 network->flags |= NETWORK_EMPTY_ESSID;
1462
1463         memcpy(&network->stats, stats, sizeof(network->stats));
1464
1465         return 0;
1466 }
1467
1468 static inline int is_same_network(struct ieee80211_network *src,
1469                                   struct ieee80211_network *dst)
1470 {
1471         /* A network is only a duplicate if the channel, BSSID, and ESSID
1472          * all match.  We treat all <hidden> with the same BSSID and channel
1473          * as one network */
1474         return ((src->ssid_len == dst->ssid_len) &&
1475                 (src->channel == dst->channel) &&
1476                 !compare_ether_addr(src->bssid, dst->bssid) &&
1477                 !memcmp(src->ssid, dst->ssid, src->ssid_len));
1478 }
1479
1480 static void update_network(struct ieee80211_network *dst,
1481                                   struct ieee80211_network *src)
1482 {
1483         int qos_active;
1484         u8 old_param;
1485
1486         ieee80211_network_reset(dst);
1487         dst->ibss_dfs = src->ibss_dfs;
1488
1489         /* We only update the statistics if they were created by receiving
1490          * the network information on the actual channel the network is on.
1491          *
1492          * This keeps beacons received on neighbor channels from bringing
1493          * down the signal level of an AP. */
1494         if (dst->channel == src->stats.received_channel)
1495                 memcpy(&dst->stats, &src->stats,
1496                        sizeof(struct ieee80211_rx_stats));
1497         else
1498                 IEEE80211_DEBUG_SCAN("Network " MAC_FMT " info received "
1499                         "off channel (%d vs. %d)\n", MAC_ARG(src->bssid),
1500                         dst->channel, src->stats.received_channel);
1501
1502         dst->capability = src->capability;
1503         memcpy(dst->rates, src->rates, src->rates_len);
1504         dst->rates_len = src->rates_len;
1505         memcpy(dst->rates_ex, src->rates_ex, src->rates_ex_len);
1506         dst->rates_ex_len = src->rates_ex_len;
1507
1508         dst->mode = src->mode;
1509         dst->flags = src->flags;
1510         dst->time_stamp[0] = src->time_stamp[0];
1511         dst->time_stamp[1] = src->time_stamp[1];
1512
1513         dst->beacon_interval = src->beacon_interval;
1514         dst->listen_interval = src->listen_interval;
1515         dst->atim_window = src->atim_window;
1516         dst->erp_value = src->erp_value;
1517         dst->tim = src->tim;
1518
1519         memcpy(dst->wpa_ie, src->wpa_ie, src->wpa_ie_len);
1520         dst->wpa_ie_len = src->wpa_ie_len;
1521         memcpy(dst->rsn_ie, src->rsn_ie, src->rsn_ie_len);
1522         dst->rsn_ie_len = src->rsn_ie_len;
1523
1524         dst->last_scanned = jiffies;
1525         qos_active = src->qos_data.active;
1526         old_param = dst->qos_data.old_param_count;
1527         if (dst->flags & NETWORK_HAS_QOS_MASK)
1528                 memcpy(&dst->qos_data, &src->qos_data,
1529                        sizeof(struct ieee80211_qos_data));
1530         else {
1531                 dst->qos_data.supported = src->qos_data.supported;
1532                 dst->qos_data.param_count = src->qos_data.param_count;
1533         }
1534
1535         if (dst->qos_data.supported == 1) {
1536                 if (dst->ssid_len)
1537                         IEEE80211_DEBUG_QOS
1538                             ("QoS the network %s is QoS supported\n",
1539                              dst->ssid);
1540                 else
1541                         IEEE80211_DEBUG_QOS
1542                             ("QoS the network is QoS supported\n");
1543         }
1544         dst->qos_data.active = qos_active;
1545         dst->qos_data.old_param_count = old_param;
1546
1547         /* dst->last_associate is not overwritten */
1548 }
1549
1550 static inline int is_beacon(__le16 fc)
1551 {
1552         return (WLAN_FC_GET_STYPE(le16_to_cpu(fc)) == IEEE80211_STYPE_BEACON);
1553 }
1554
1555 static void ieee80211_process_probe_response(struct ieee80211_device
1556                                                     *ieee, struct
1557                                                     ieee80211_probe_response
1558                                                     *beacon, struct ieee80211_rx_stats
1559                                                     *stats)
1560 {
1561         struct net_device *dev = ieee->dev;
1562         struct ieee80211_network network = {
1563                 .ibss_dfs = NULL,
1564         };
1565         struct ieee80211_network *target;
1566         struct ieee80211_network *oldest = NULL;
1567 #ifdef CONFIG_IEEE80211_DEBUG
1568         struct ieee80211_info_element *info_element = beacon->info_element;
1569 #endif
1570         unsigned long flags;
1571
1572         IEEE80211_DEBUG_SCAN("'%s' (" MAC_FMT
1573                              "): %c%c%c%c %c%c%c%c-%c%c%c%c %c%c%c%c\n",
1574                              escape_essid(info_element->data,
1575                                           info_element->len),
1576                              MAC_ARG(beacon->header.addr3),
1577                              (beacon->capability & (1 << 0xf)) ? '1' : '0',
1578                              (beacon->capability & (1 << 0xe)) ? '1' : '0',
1579                              (beacon->capability & (1 << 0xd)) ? '1' : '0',
1580                              (beacon->capability & (1 << 0xc)) ? '1' : '0',
1581                              (beacon->capability & (1 << 0xb)) ? '1' : '0',
1582                              (beacon->capability & (1 << 0xa)) ? '1' : '0',
1583                              (beacon->capability & (1 << 0x9)) ? '1' : '0',
1584                              (beacon->capability & (1 << 0x8)) ? '1' : '0',
1585                              (beacon->capability & (1 << 0x7)) ? '1' : '0',
1586                              (beacon->capability & (1 << 0x6)) ? '1' : '0',
1587                              (beacon->capability & (1 << 0x5)) ? '1' : '0',
1588                              (beacon->capability & (1 << 0x4)) ? '1' : '0',
1589                              (beacon->capability & (1 << 0x3)) ? '1' : '0',
1590                              (beacon->capability & (1 << 0x2)) ? '1' : '0',
1591                              (beacon->capability & (1 << 0x1)) ? '1' : '0',
1592                              (beacon->capability & (1 << 0x0)) ? '1' : '0');
1593
1594         if (ieee80211_network_init(ieee, beacon, &network, stats)) {
1595                 IEEE80211_DEBUG_SCAN("Dropped '%s' (" MAC_FMT ") via %s.\n",
1596                                      escape_essid(info_element->data,
1597                                                   info_element->len),
1598                                      MAC_ARG(beacon->header.addr3),
1599                                      is_beacon(beacon->header.frame_ctl) ?
1600                                      "BEACON" : "PROBE RESPONSE");
1601                 return;
1602         }
1603
1604         /* The network parsed correctly -- so now we scan our known networks
1605          * to see if we can find it in our list.
1606          *
1607          * NOTE:  This search is definitely not optimized.  Once its doing
1608          *        the "right thing" we'll optimize it for efficiency if
1609          *        necessary */
1610
1611         /* Search for this entry in the list and update it if it is
1612          * already there. */
1613
1614         spin_lock_irqsave(&ieee->lock, flags);
1615
1616         list_for_each_entry(target, &ieee->network_list, list) {
1617                 if (is_same_network(target, &network))
1618                         break;
1619
1620                 if ((oldest == NULL) ||
1621                     (target->last_scanned < oldest->last_scanned))
1622                         oldest = target;
1623         }
1624
1625         /* If we didn't find a match, then get a new network slot to initialize
1626          * with this beacon's information */
1627         if (&target->list == &ieee->network_list) {
1628                 if (list_empty(&ieee->network_free_list)) {
1629                         /* If there are no more slots, expire the oldest */
1630                         list_del(&oldest->list);
1631                         target = oldest;
1632                         IEEE80211_DEBUG_SCAN("Expired '%s' (" MAC_FMT ") from "
1633                                              "network list.\n",
1634                                              escape_essid(target->ssid,
1635                                                           target->ssid_len),
1636                                              MAC_ARG(target->bssid));
1637                         ieee80211_network_reset(target);
1638                 } else {
1639                         /* Otherwise just pull from the free list */
1640                         target = list_entry(ieee->network_free_list.next,
1641                                             struct ieee80211_network, list);
1642                         list_del(ieee->network_free_list.next);
1643                 }
1644
1645 #ifdef CONFIG_IEEE80211_DEBUG
1646                 IEEE80211_DEBUG_SCAN("Adding '%s' (" MAC_FMT ") via %s.\n",
1647                                      escape_essid(network.ssid,
1648                                                   network.ssid_len),
1649                                      MAC_ARG(network.bssid),
1650                                      is_beacon(beacon->header.frame_ctl) ?
1651                                      "BEACON" : "PROBE RESPONSE");
1652 #endif
1653                 memcpy(target, &network, sizeof(*target));
1654                 network.ibss_dfs = NULL;
1655                 list_add_tail(&target->list, &ieee->network_list);
1656         } else {
1657                 IEEE80211_DEBUG_SCAN("Updating '%s' (" MAC_FMT ") via %s.\n",
1658                                      escape_essid(target->ssid,
1659                                                   target->ssid_len),
1660                                      MAC_ARG(target->bssid),
1661                                      is_beacon(beacon->header.frame_ctl) ?
1662                                      "BEACON" : "PROBE RESPONSE");
1663                 update_network(target, &network);
1664                 network.ibss_dfs = NULL;
1665         }
1666
1667         spin_unlock_irqrestore(&ieee->lock, flags);
1668
1669         if (is_beacon(beacon->header.frame_ctl)) {
1670                 if (ieee->handle_beacon != NULL)
1671                         ieee->handle_beacon(dev, beacon, target);
1672         } else {
1673                 if (ieee->handle_probe_response != NULL)
1674                         ieee->handle_probe_response(dev, beacon, target);
1675         }
1676 }
1677
1678 void ieee80211_rx_mgt(struct ieee80211_device *ieee,
1679                       struct ieee80211_hdr_4addr *header,
1680                       struct ieee80211_rx_stats *stats)
1681 {
1682         switch (WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl))) {
1683         case IEEE80211_STYPE_ASSOC_RESP:
1684                 IEEE80211_DEBUG_MGMT("received ASSOCIATION RESPONSE (%d)\n",
1685                                      WLAN_FC_GET_STYPE(le16_to_cpu
1686                                                        (header->frame_ctl)));
1687                 ieee80211_handle_assoc_resp(ieee,
1688                                             (struct ieee80211_assoc_response *)
1689                                             header, stats);
1690                 break;
1691
1692         case IEEE80211_STYPE_REASSOC_RESP:
1693                 IEEE80211_DEBUG_MGMT("received REASSOCIATION RESPONSE (%d)\n",
1694                                      WLAN_FC_GET_STYPE(le16_to_cpu
1695                                                        (header->frame_ctl)));
1696                 break;
1697
1698         case IEEE80211_STYPE_PROBE_REQ:
1699                 IEEE80211_DEBUG_MGMT("received auth (%d)\n",
1700                                      WLAN_FC_GET_STYPE(le16_to_cpu
1701                                                        (header->frame_ctl)));
1702
1703                 if (ieee->handle_probe_request != NULL)
1704                         ieee->handle_probe_request(ieee->dev,
1705                                                    (struct
1706                                                     ieee80211_probe_request *)
1707                                                    header, stats);
1708                 break;
1709
1710         case IEEE80211_STYPE_PROBE_RESP:
1711                 IEEE80211_DEBUG_MGMT("received PROBE RESPONSE (%d)\n",
1712                                      WLAN_FC_GET_STYPE(le16_to_cpu
1713                                                        (header->frame_ctl)));
1714                 IEEE80211_DEBUG_SCAN("Probe response\n");
1715                 ieee80211_process_probe_response(ieee,
1716                                                  (struct
1717                                                   ieee80211_probe_response *)
1718                                                  header, stats);
1719                 break;
1720
1721         case IEEE80211_STYPE_BEACON:
1722                 IEEE80211_DEBUG_MGMT("received BEACON (%d)\n",
1723                                      WLAN_FC_GET_STYPE(le16_to_cpu
1724                                                        (header->frame_ctl)));
1725                 IEEE80211_DEBUG_SCAN("Beacon\n");
1726                 ieee80211_process_probe_response(ieee,
1727                                                  (struct
1728                                                   ieee80211_probe_response *)
1729                                                  header, stats);
1730                 break;
1731         case IEEE80211_STYPE_AUTH:
1732
1733                 IEEE80211_DEBUG_MGMT("received auth (%d)\n",
1734                                      WLAN_FC_GET_STYPE(le16_to_cpu
1735                                                        (header->frame_ctl)));
1736
1737                 if (ieee->handle_auth != NULL)
1738                         ieee->handle_auth(ieee->dev,
1739                                           (struct ieee80211_auth *)header);
1740                 break;
1741
1742         case IEEE80211_STYPE_DISASSOC:
1743                 if (ieee->handle_disassoc != NULL)
1744                         ieee->handle_disassoc(ieee->dev,
1745                                               (struct ieee80211_disassoc *)
1746                                               header);
1747                 break;
1748
1749         case IEEE80211_STYPE_ACTION:
1750                 IEEE80211_DEBUG_MGMT("ACTION\n");
1751                 if (ieee->handle_action)
1752                         ieee->handle_action(ieee->dev,
1753                                             (struct ieee80211_action *)
1754                                             header, stats);
1755                 break;
1756
1757         case IEEE80211_STYPE_REASSOC_REQ:
1758                 IEEE80211_DEBUG_MGMT("received reassoc (%d)\n",
1759                                      WLAN_FC_GET_STYPE(le16_to_cpu
1760                                                        (header->frame_ctl)));
1761
1762                 IEEE80211_DEBUG_MGMT("%s: IEEE80211_REASSOC_REQ received\n",
1763                                      ieee->dev->name);
1764                 if (ieee->handle_reassoc_request != NULL)
1765                         ieee->handle_reassoc_request(ieee->dev,
1766                                                     (struct ieee80211_reassoc_request *)
1767                                                      header);
1768                 break;
1769
1770         case IEEE80211_STYPE_ASSOC_REQ:
1771                 IEEE80211_DEBUG_MGMT("received assoc (%d)\n",
1772                                      WLAN_FC_GET_STYPE(le16_to_cpu
1773                                                        (header->frame_ctl)));
1774
1775                 IEEE80211_DEBUG_MGMT("%s: IEEE80211_ASSOC_REQ received\n",
1776                                      ieee->dev->name);
1777                 if (ieee->handle_assoc_request != NULL)
1778                         ieee->handle_assoc_request(ieee->dev);
1779                 break;
1780
1781         case IEEE80211_STYPE_DEAUTH:
1782                 IEEE80211_DEBUG_MGMT("DEAUTH\n");
1783                 if (ieee->handle_deauth != NULL)
1784                         ieee->handle_deauth(ieee->dev,
1785                                             (struct ieee80211_deauth *)
1786                                             header);
1787                 break;
1788         default:
1789                 IEEE80211_DEBUG_MGMT("received UNKNOWN (%d)\n",
1790                                      WLAN_FC_GET_STYPE(le16_to_cpu
1791                                                        (header->frame_ctl)));
1792                 IEEE80211_DEBUG_MGMT("%s: Unknown management packet: %d\n",
1793                                      ieee->dev->name,
1794                                      WLAN_FC_GET_STYPE(le16_to_cpu
1795                                                        (header->frame_ctl)));
1796                 break;
1797         }
1798 }
1799
1800 EXPORT_SYMBOL_GPL(ieee80211_rx_any);
1801 EXPORT_SYMBOL(ieee80211_rx_mgt);
1802 EXPORT_SYMBOL(ieee80211_rx);