]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/staging/rtl8192e/rtllib_rx.c
Merge tag 'v4.10-rc2' into drm-intel-next-queued
[karo-tx-linux.git] / drivers / staging / rtl8192e / rtllib_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, 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   Few modifications for Realtek's Wi-Fi drivers by
17   Andrea Merello <andrea.merello@gmail.com>
18
19   A special thanks goes to Realtek for their support !
20
21 ******************************************************************************/
22
23
24 #include <linux/compiler.h>
25 #include <linux/errno.h>
26 #include <linux/if_arp.h>
27 #include <linux/in6.h>
28 #include <linux/in.h>
29 #include <linux/ip.h>
30 #include <linux/kernel.h>
31 #include <linux/module.h>
32 #include <linux/netdevice.h>
33 #include <linux/pci.h>
34 #include <linux/proc_fs.h>
35 #include <linux/skbuff.h>
36 #include <linux/slab.h>
37 #include <linux/tcp.h>
38 #include <linux/types.h>
39 #include <linux/wireless.h>
40 #include <linux/etherdevice.h>
41 #include <linux/uaccess.h>
42 #include <linux/ctype.h>
43
44 #include "rtllib.h"
45 #include "dot11d.h"
46
47 static void rtllib_rx_mgt(struct rtllib_device *ieee, struct sk_buff *skb,
48                           struct rtllib_rx_stats *stats);
49
50 static inline void rtllib_monitor_rx(struct rtllib_device *ieee,
51                                      struct sk_buff *skb,
52                                      struct rtllib_rx_stats *rx_status,
53                                      size_t hdr_length)
54 {
55         skb->dev = ieee->dev;
56         skb_reset_mac_header(skb);
57         skb_pull(skb, hdr_length);
58         skb->pkt_type = PACKET_OTHERHOST;
59         skb->protocol = htons(ETH_P_80211_RAW);
60         memset(skb->cb, 0, sizeof(skb->cb));
61         netif_rx(skb);
62 }
63
64 /* Called only as a tasklet (software IRQ) */
65 static struct rtllib_frag_entry *
66 rtllib_frag_cache_find(struct rtllib_device *ieee, unsigned int seq,
67                           unsigned int frag, u8 tid, u8 *src, u8 *dst)
68 {
69         struct rtllib_frag_entry *entry;
70         int i;
71
72         for (i = 0; i < RTLLIB_FRAG_CACHE_LEN; i++) {
73                 entry = &ieee->frag_cache[tid][i];
74                 if (entry->skb != NULL &&
75                     time_after(jiffies, entry->first_frag_time + 2 * HZ)) {
76                         netdev_dbg(ieee->dev,
77                                    "expiring fragment cache entry seq=%u last_frag=%u\n",
78                                    entry->seq, entry->last_frag);
79                         dev_kfree_skb_any(entry->skb);
80                         entry->skb = NULL;
81                 }
82
83                 if (entry->skb != NULL && entry->seq == seq &&
84                     (entry->last_frag + 1 == frag || frag == -1) &&
85                     memcmp(entry->src_addr, src, ETH_ALEN) == 0 &&
86                     memcmp(entry->dst_addr, dst, ETH_ALEN) == 0)
87                         return entry;
88         }
89
90         return NULL;
91 }
92
93 /* Called only as a tasklet (software IRQ) */
94 static struct sk_buff *
95 rtllib_frag_cache_get(struct rtllib_device *ieee,
96                          struct rtllib_hdr_4addr *hdr)
97 {
98         struct sk_buff *skb = NULL;
99         u16 fc = le16_to_cpu(hdr->frame_ctl);
100         u16 sc = le16_to_cpu(hdr->seq_ctl);
101         unsigned int frag = WLAN_GET_SEQ_FRAG(sc);
102         unsigned int seq = WLAN_GET_SEQ_SEQ(sc);
103         struct rtllib_frag_entry *entry;
104         struct rtllib_hdr_3addrqos *hdr_3addrqos;
105         struct rtllib_hdr_4addrqos *hdr_4addrqos;
106         u8 tid;
107
108         if (((fc & RTLLIB_FCTL_DSTODS) == RTLLIB_FCTL_DSTODS) &&
109             RTLLIB_QOS_HAS_SEQ(fc)) {
110                 hdr_4addrqos = (struct rtllib_hdr_4addrqos *)hdr;
111                 tid = le16_to_cpu(hdr_4addrqos->qos_ctl) & RTLLIB_QCTL_TID;
112                 tid = UP2AC(tid);
113                 tid++;
114         } else if (RTLLIB_QOS_HAS_SEQ(fc)) {
115                 hdr_3addrqos = (struct rtllib_hdr_3addrqos *)hdr;
116                 tid = le16_to_cpu(hdr_3addrqos->qos_ctl) & RTLLIB_QCTL_TID;
117                 tid = UP2AC(tid);
118                 tid++;
119         } else {
120                 tid = 0;
121         }
122
123         if (frag == 0) {
124                 /* Reserve enough space to fit maximum frame length */
125                 skb = dev_alloc_skb(ieee->dev->mtu +
126                                     sizeof(struct rtllib_hdr_4addr) +
127                                     8 /* LLC */ +
128                                     2 /* alignment */ +
129                                     8 /* WEP */ +
130                                     ETH_ALEN /* WDS */ +
131                                     /* QOS Control */
132                                     (RTLLIB_QOS_HAS_SEQ(fc) ? 2 : 0));
133                 if (!skb)
134                         return NULL;
135
136                 entry = &ieee->frag_cache[tid][ieee->frag_next_idx[tid]];
137                 ieee->frag_next_idx[tid]++;
138                 if (ieee->frag_next_idx[tid] >= RTLLIB_FRAG_CACHE_LEN)
139                         ieee->frag_next_idx[tid] = 0;
140
141                 if (entry->skb != NULL)
142                         dev_kfree_skb_any(entry->skb);
143
144                 entry->first_frag_time = jiffies;
145                 entry->seq = seq;
146                 entry->last_frag = frag;
147                 entry->skb = skb;
148                 ether_addr_copy(entry->src_addr, hdr->addr2);
149                 ether_addr_copy(entry->dst_addr, hdr->addr1);
150         } else {
151                 /* received a fragment of a frame for which the head fragment
152                  * should have already been received
153                  */
154                 entry = rtllib_frag_cache_find(ieee, seq, frag, tid, hdr->addr2,
155                                                   hdr->addr1);
156                 if (entry != NULL) {
157                         entry->last_frag = frag;
158                         skb = entry->skb;
159                 }
160         }
161
162         return skb;
163 }
164
165
166 /* Called only as a tasklet (software IRQ) */
167 static int rtllib_frag_cache_invalidate(struct rtllib_device *ieee,
168                                            struct rtllib_hdr_4addr *hdr)
169 {
170         u16 fc = le16_to_cpu(hdr->frame_ctl);
171         u16 sc = le16_to_cpu(hdr->seq_ctl);
172         unsigned int seq = WLAN_GET_SEQ_SEQ(sc);
173         struct rtllib_frag_entry *entry;
174         struct rtllib_hdr_3addrqos *hdr_3addrqos;
175         struct rtllib_hdr_4addrqos *hdr_4addrqos;
176         u8 tid;
177
178         if (((fc & RTLLIB_FCTL_DSTODS) == RTLLIB_FCTL_DSTODS) &&
179             RTLLIB_QOS_HAS_SEQ(fc)) {
180                 hdr_4addrqos = (struct rtllib_hdr_4addrqos *)hdr;
181                 tid = le16_to_cpu(hdr_4addrqos->qos_ctl) & RTLLIB_QCTL_TID;
182                 tid = UP2AC(tid);
183                 tid++;
184         } else if (RTLLIB_QOS_HAS_SEQ(fc)) {
185                 hdr_3addrqos = (struct rtllib_hdr_3addrqos *)hdr;
186                 tid = le16_to_cpu(hdr_3addrqos->qos_ctl) & RTLLIB_QCTL_TID;
187                 tid = UP2AC(tid);
188                 tid++;
189         } else {
190                 tid = 0;
191         }
192
193         entry = rtllib_frag_cache_find(ieee, seq, -1, tid, hdr->addr2,
194                                           hdr->addr1);
195
196         if (entry == NULL) {
197                 netdev_dbg(ieee->dev,
198                            "Couldn't invalidate fragment cache entry (seq=%u)\n",
199                            seq);
200                 return -1;
201         }
202
203         entry->skb = NULL;
204         return 0;
205 }
206
207 /* rtllib_rx_frame_mgtmt
208  *
209  * Responsible for handling management control frames
210  *
211  * Called by rtllib_rx
212  */
213 static inline int
214 rtllib_rx_frame_mgmt(struct rtllib_device *ieee, struct sk_buff *skb,
215                         struct rtllib_rx_stats *rx_stats, u16 type,
216                         u16 stype)
217 {
218         /* On the struct stats definition there is written that
219          * this is not mandatory.... but seems that the probe
220          * response parser uses it
221          */
222         struct rtllib_hdr_3addr *hdr = (struct rtllib_hdr_3addr *)skb->data;
223
224         rx_stats->len = skb->len;
225         rtllib_rx_mgt(ieee, skb, rx_stats);
226         if ((memcmp(hdr->addr1, ieee->dev->dev_addr, ETH_ALEN))) {
227                 dev_kfree_skb_any(skb);
228                 return 0;
229         }
230         rtllib_rx_frame_softmac(ieee, skb, rx_stats, type, stype);
231
232         dev_kfree_skb_any(skb);
233
234         return 0;
235 }
236
237 /* See IEEE 802.1H for LLC/SNAP encapsulation/decapsulation
238  * Ethernet-II snap header (RFC1042 for most EtherTypes)
239  */
240 static unsigned char rfc1042_header[] = {
241         0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00
242 };
243 /* Bridge-Tunnel header (for EtherTypes ETH_P_AARP and ETH_P_IPX) */
244 static unsigned char bridge_tunnel_header[] = {
245         0xaa, 0xaa, 0x03, 0x00, 0x00, 0xf8
246 };
247 /* No encapsulation header if EtherType < 0x600 (=length) */
248
249 /* Called by rtllib_rx_frame_decrypt */
250 static int rtllib_is_eapol_frame(struct rtllib_device *ieee,
251                                     struct sk_buff *skb, size_t hdrlen)
252 {
253         struct net_device *dev = ieee->dev;
254         u16 fc, ethertype;
255         struct rtllib_hdr_4addr *hdr;
256         u8 *pos;
257
258         if (skb->len < 24)
259                 return 0;
260
261         hdr = (struct rtllib_hdr_4addr *) skb->data;
262         fc = le16_to_cpu(hdr->frame_ctl);
263
264         /* check that the frame is unicast frame to us */
265         if ((fc & (RTLLIB_FCTL_TODS | RTLLIB_FCTL_FROMDS)) ==
266             RTLLIB_FCTL_TODS &&
267             memcmp(hdr->addr1, dev->dev_addr, ETH_ALEN) == 0 &&
268             memcmp(hdr->addr3, dev->dev_addr, ETH_ALEN) == 0) {
269                 /* ToDS frame with own addr BSSID and DA */
270         } else if ((fc & (RTLLIB_FCTL_TODS | RTLLIB_FCTL_FROMDS)) ==
271                    RTLLIB_FCTL_FROMDS &&
272                    memcmp(hdr->addr1, dev->dev_addr, ETH_ALEN) == 0) {
273                 /* FromDS frame with own addr as DA */
274         } else
275                 return 0;
276
277         if (skb->len < 24 + 8)
278                 return 0;
279
280         /* check for port access entity Ethernet type */
281         pos = skb->data + hdrlen;
282         ethertype = (pos[6] << 8) | pos[7];
283         if (ethertype == ETH_P_PAE)
284                 return 1;
285
286         return 0;
287 }
288
289 /* Called only as a tasklet (software IRQ), by rtllib_rx */
290 static inline int
291 rtllib_rx_frame_decrypt(struct rtllib_device *ieee, struct sk_buff *skb,
292                         struct lib80211_crypt_data *crypt)
293 {
294         struct rtllib_hdr_4addr *hdr;
295         int res, hdrlen;
296
297         if (crypt == NULL || crypt->ops->decrypt_mpdu == NULL)
298                 return 0;
299
300         if (ieee->hwsec_active) {
301                 struct cb_desc *tcb_desc = (struct cb_desc *)
302                                                 (skb->cb + MAX_DEV_ADDR_SIZE);
303
304                 tcb_desc->bHwSec = 1;
305
306                 if (ieee->need_sw_enc)
307                         tcb_desc->bHwSec = 0;
308         }
309
310         hdr = (struct rtllib_hdr_4addr *) skb->data;
311         hdrlen = rtllib_get_hdrlen(le16_to_cpu(hdr->frame_ctl));
312
313         atomic_inc(&crypt->refcnt);
314         res = crypt->ops->decrypt_mpdu(skb, hdrlen, crypt->priv);
315         atomic_dec(&crypt->refcnt);
316         if (res < 0) {
317                 netdev_dbg(ieee->dev, "decryption failed (SA= %pM) res=%d\n",
318                            hdr->addr2, res);
319                 if (res == -2)
320                         netdev_dbg(ieee->dev,
321                                    "Decryption failed ICV mismatch (key %d)\n",
322                                    skb->data[hdrlen + 3] >> 6);
323                 return -1;
324         }
325
326         return res;
327 }
328
329
330 /* Called only as a tasklet (software IRQ), by rtllib_rx */
331 static inline int
332 rtllib_rx_frame_decrypt_msdu(struct rtllib_device *ieee, struct sk_buff *skb,
333                              int keyidx, struct lib80211_crypt_data *crypt)
334 {
335         struct rtllib_hdr_4addr *hdr;
336         int res, hdrlen;
337
338         if (crypt == NULL || crypt->ops->decrypt_msdu == NULL)
339                 return 0;
340         if (ieee->hwsec_active) {
341                 struct cb_desc *tcb_desc = (struct cb_desc *)
342                                                 (skb->cb + MAX_DEV_ADDR_SIZE);
343
344                 tcb_desc->bHwSec = 1;
345
346                 if (ieee->need_sw_enc)
347                         tcb_desc->bHwSec = 0;
348         }
349
350         hdr = (struct rtllib_hdr_4addr *) skb->data;
351         hdrlen = rtllib_get_hdrlen(le16_to_cpu(hdr->frame_ctl));
352
353         atomic_inc(&crypt->refcnt);
354         res = crypt->ops->decrypt_msdu(skb, keyidx, hdrlen, crypt->priv);
355         atomic_dec(&crypt->refcnt);
356         if (res < 0) {
357                 netdev_dbg(ieee->dev,
358                            "MSDU decryption/MIC verification failed (SA= %pM keyidx=%d)\n",
359                            hdr->addr2, keyidx);
360                 return -1;
361         }
362
363         return 0;
364 }
365
366
367 /* this function is stolen from ipw2200 driver*/
368 #define IEEE_PACKET_RETRY_TIME (5*HZ)
369 static int is_duplicate_packet(struct rtllib_device *ieee,
370                                       struct rtllib_hdr_4addr *header)
371 {
372         u16 fc = le16_to_cpu(header->frame_ctl);
373         u16 sc = le16_to_cpu(header->seq_ctl);
374         u16 seq = WLAN_GET_SEQ_SEQ(sc);
375         u16 frag = WLAN_GET_SEQ_FRAG(sc);
376         u16 *last_seq, *last_frag;
377         unsigned long *last_time;
378         struct rtllib_hdr_3addrqos *hdr_3addrqos;
379         struct rtllib_hdr_4addrqos *hdr_4addrqos;
380         u8 tid;
381
382         if (((fc & RTLLIB_FCTL_DSTODS) == RTLLIB_FCTL_DSTODS) &&
383             RTLLIB_QOS_HAS_SEQ(fc)) {
384                 hdr_4addrqos = (struct rtllib_hdr_4addrqos *)header;
385                 tid = le16_to_cpu(hdr_4addrqos->qos_ctl) & RTLLIB_QCTL_TID;
386                 tid = UP2AC(tid);
387                 tid++;
388         } else if (RTLLIB_QOS_HAS_SEQ(fc)) {
389                 hdr_3addrqos = (struct rtllib_hdr_3addrqos *)header;
390                 tid = le16_to_cpu(hdr_3addrqos->qos_ctl) & RTLLIB_QCTL_TID;
391                 tid = UP2AC(tid);
392                 tid++;
393         } else {
394                 tid = 0;
395         }
396
397         switch (ieee->iw_mode) {
398         case IW_MODE_ADHOC:
399         {
400                 struct list_head *p;
401                 struct ieee_ibss_seq *entry = NULL;
402                 u8 *mac = header->addr2;
403                 int index = mac[5] % IEEE_IBSS_MAC_HASH_SIZE;
404
405                 list_for_each(p, &ieee->ibss_mac_hash[index]) {
406                         entry = list_entry(p, struct ieee_ibss_seq, list);
407                         if (!memcmp(entry->mac, mac, ETH_ALEN))
408                                 break;
409                 }
410                 if (p == &ieee->ibss_mac_hash[index]) {
411                         entry = kmalloc(sizeof(struct ieee_ibss_seq),
412                                         GFP_ATOMIC);
413                         if (!entry)
414                                 return 0;
415
416                         ether_addr_copy(entry->mac, mac);
417                         entry->seq_num[tid] = seq;
418                         entry->frag_num[tid] = frag;
419                         entry->packet_time[tid] = jiffies;
420                         list_add(&entry->list, &ieee->ibss_mac_hash[index]);
421                         return 0;
422                 }
423                 last_seq = &entry->seq_num[tid];
424                 last_frag = &entry->frag_num[tid];
425                 last_time = &entry->packet_time[tid];
426                 break;
427         }
428
429         case IW_MODE_INFRA:
430                 last_seq = &ieee->last_rxseq_num[tid];
431                 last_frag = &ieee->last_rxfrag_num[tid];
432                 last_time = &ieee->last_packet_time[tid];
433                 break;
434         default:
435                 return 0;
436         }
437
438         if ((*last_seq == seq) &&
439             time_after(*last_time + IEEE_PACKET_RETRY_TIME, jiffies)) {
440                 if (*last_frag == frag)
441                         goto drop;
442                 if (*last_frag + 1 != frag)
443                         /* out-of-order fragment */
444                         goto drop;
445         } else
446                 *last_seq = seq;
447
448         *last_frag = frag;
449         *last_time = jiffies;
450         return 0;
451
452 drop:
453
454         return 1;
455 }
456
457 static bool AddReorderEntry(struct rx_ts_record *pTS,
458                             struct rx_reorder_entry *pReorderEntry)
459 {
460         struct list_head *pList = &pTS->RxPendingPktList;
461
462         while (pList->next != &pTS->RxPendingPktList) {
463                 if (SN_LESS(pReorderEntry->SeqNum, ((struct rx_reorder_entry *)
464                     list_entry(pList->next, struct rx_reorder_entry,
465                     List))->SeqNum))
466                         pList = pList->next;
467                 else if (SN_EQUAL(pReorderEntry->SeqNum,
468                         ((struct rx_reorder_entry *)list_entry(pList->next,
469                         struct rx_reorder_entry, List))->SeqNum))
470                         return false;
471                 else
472                         break;
473         }
474         pReorderEntry->List.next = pList->next;
475         pReorderEntry->List.next->prev = &pReorderEntry->List;
476         pReorderEntry->List.prev = pList;
477         pList->next = &pReorderEntry->List;
478
479         return true;
480 }
481
482 void rtllib_indicate_packets(struct rtllib_device *ieee,
483                              struct rtllib_rxb **prxbIndicateArray, u8 index)
484 {
485         struct net_device_stats *stats = &ieee->stats;
486         u8 i = 0, j = 0;
487         u16 ethertype;
488
489         for (j = 0; j < index; j++) {
490                 struct rtllib_rxb *prxb = prxbIndicateArray[j];
491
492                 for (i = 0; i < prxb->nr_subframes; i++) {
493                         struct sk_buff *sub_skb = prxb->subframes[i];
494
495                 /* convert hdr + possible LLC headers into Ethernet header */
496                         ethertype = (sub_skb->data[6] << 8) | sub_skb->data[7];
497                         if (sub_skb->len >= 8 &&
498                             ((memcmp(sub_skb->data, rfc1042_header,
499                                      SNAP_SIZE) == 0 &&
500                               ethertype != ETH_P_AARP &&
501                               ethertype != ETH_P_IPX) ||
502                             memcmp(sub_skb->data, bridge_tunnel_header,
503                                    SNAP_SIZE) == 0)) {
504                                 /* remove RFC1042 or Bridge-Tunnel encapsulation
505                                  * and replace EtherType
506                                  */
507                                 skb_pull(sub_skb, SNAP_SIZE);
508                                 memcpy(skb_push(sub_skb, ETH_ALEN), prxb->src, ETH_ALEN);
509                                 memcpy(skb_push(sub_skb, ETH_ALEN), prxb->dst, ETH_ALEN);
510                         } else {
511                                 u16 len;
512                         /* Leave Ethernet header part of hdr and full payload */
513                                 len = sub_skb->len;
514                                 memcpy(skb_push(sub_skb, 2), &len, 2);
515                                 memcpy(skb_push(sub_skb, ETH_ALEN), prxb->src, ETH_ALEN);
516                                 memcpy(skb_push(sub_skb, ETH_ALEN), prxb->dst, ETH_ALEN);
517                         }
518
519                         /* Indicate the packets to upper layer */
520                         if (sub_skb) {
521                                 stats->rx_packets++;
522                                 stats->rx_bytes += sub_skb->len;
523
524                                 memset(sub_skb->cb, 0, sizeof(sub_skb->cb));
525                                 sub_skb->protocol = eth_type_trans(sub_skb,
526                                                                    ieee->dev);
527                                 sub_skb->dev = ieee->dev;
528                                 sub_skb->dev->stats.rx_packets++;
529                                 sub_skb->dev->stats.rx_bytes += sub_skb->len;
530                                 /* 802.11 crc not sufficient */
531                                 sub_skb->ip_summed = CHECKSUM_NONE;
532                                 ieee->last_rx_ps_time = jiffies;
533                                 netif_rx(sub_skb);
534                         }
535                 }
536                 kfree(prxb);
537                 prxb = NULL;
538         }
539 }
540
541 void rtllib_FlushRxTsPendingPkts(struct rtllib_device *ieee,
542                                  struct rx_ts_record *pTS)
543 {
544         struct rx_reorder_entry *pRxReorderEntry;
545         u8 RfdCnt = 0;
546
547         del_timer_sync(&pTS->RxPktPendingTimer);
548         while (!list_empty(&pTS->RxPendingPktList)) {
549                 if (RfdCnt >= REORDER_WIN_SIZE) {
550                         netdev_info(ieee->dev,
551                                     "-------------->%s() error! RfdCnt >= REORDER_WIN_SIZE\n",
552                                     __func__);
553                         break;
554                 }
555
556                 pRxReorderEntry = (struct rx_reorder_entry *)
557                                   list_entry(pTS->RxPendingPktList.prev,
558                                              struct rx_reorder_entry, List);
559                 netdev_dbg(ieee->dev, "%s(): Indicate SeqNum %d!\n", __func__,
560                            pRxReorderEntry->SeqNum);
561                 list_del_init(&pRxReorderEntry->List);
562
563                 ieee->RfdArray[RfdCnt] = pRxReorderEntry->prxb;
564
565                 RfdCnt = RfdCnt + 1;
566                 list_add_tail(&pRxReorderEntry->List,
567                               &ieee->RxReorder_Unused_List);
568         }
569         rtllib_indicate_packets(ieee, ieee->RfdArray, RfdCnt);
570
571         pTS->RxIndicateSeq = 0xffff;
572 }
573
574 static void RxReorderIndicatePacket(struct rtllib_device *ieee,
575                                     struct rtllib_rxb *prxb,
576                                     struct rx_ts_record *pTS, u16 SeqNum)
577 {
578         struct rt_hi_throughput *pHTInfo = ieee->pHTInfo;
579         struct rx_reorder_entry *pReorderEntry = NULL;
580         u8 WinSize = pHTInfo->RxReorderWinSize;
581         u16 WinEnd = 0;
582         u8 index = 0;
583         bool bMatchWinStart = false, bPktInBuf = false;
584         unsigned long flags;
585
586         netdev_dbg(ieee->dev,
587                    "%s(): Seq is %d, pTS->RxIndicateSeq is %d, WinSize is %d\n",
588                    __func__, SeqNum, pTS->RxIndicateSeq, WinSize);
589
590         spin_lock_irqsave(&(ieee->reorder_spinlock), flags);
591
592         WinEnd = (pTS->RxIndicateSeq + WinSize - 1) % 4096;
593         /* Rx Reorder initialize condition.*/
594         if (pTS->RxIndicateSeq == 0xffff)
595                 pTS->RxIndicateSeq = SeqNum;
596
597         /* Drop out the packet which SeqNum is smaller than WinStart */
598         if (SN_LESS(SeqNum, pTS->RxIndicateSeq)) {
599                 netdev_dbg(ieee->dev,
600                            "Packet Drop! IndicateSeq: %d, NewSeq: %d\n",
601                            pTS->RxIndicateSeq, SeqNum);
602                 pHTInfo->RxReorderDropCounter++;
603                 {
604                         int i;
605
606                         for (i = 0; i < prxb->nr_subframes; i++)
607                                 dev_kfree_skb(prxb->subframes[i]);
608                         kfree(prxb);
609                         prxb = NULL;
610                 }
611                 spin_unlock_irqrestore(&(ieee->reorder_spinlock), flags);
612                 return;
613         }
614
615         /* Sliding window manipulation. Conditions includes:
616          * 1. Incoming SeqNum is equal to WinStart =>Window shift 1
617          * 2. Incoming SeqNum is larger than the WinEnd => Window shift N
618          */
619         if (SN_EQUAL(SeqNum, pTS->RxIndicateSeq)) {
620                 pTS->RxIndicateSeq = (pTS->RxIndicateSeq + 1) % 4096;
621                 bMatchWinStart = true;
622         } else if (SN_LESS(WinEnd, SeqNum)) {
623                 if (SeqNum >= (WinSize - 1))
624                         pTS->RxIndicateSeq = SeqNum + 1 - WinSize;
625                 else
626                         pTS->RxIndicateSeq = 4095 -
627                                              (WinSize - (SeqNum + 1)) + 1;
628                 netdev_dbg(ieee->dev,
629                            "Window Shift! IndicateSeq: %d, NewSeq: %d\n",
630                            pTS->RxIndicateSeq, SeqNum);
631         }
632
633         /* Indication process.
634          * After Packet dropping and Sliding Window shifting as above, we can
635          * now just indicate the packets with the SeqNum smaller than latest
636          * WinStart and struct buffer other packets.
637          *
638          * For Rx Reorder condition:
639          * 1. All packets with SeqNum smaller than WinStart => Indicate
640          * 2. All packets with SeqNum larger than or equal to
641          *       WinStart => Buffer it.
642          */
643         if (bMatchWinStart) {
644                 /* Current packet is going to be indicated.*/
645                 netdev_dbg(ieee->dev,
646                            "Packets indication! IndicateSeq: %d, NewSeq: %d\n",
647                            pTS->RxIndicateSeq, SeqNum);
648                 ieee->prxbIndicateArray[0] = prxb;
649                 index = 1;
650         } else {
651                 /* Current packet is going to be inserted into pending list.*/
652                 if (!list_empty(&ieee->RxReorder_Unused_List)) {
653                         pReorderEntry = (struct rx_reorder_entry *)
654                                         list_entry(ieee->RxReorder_Unused_List.next,
655                                         struct rx_reorder_entry, List);
656                         list_del_init(&pReorderEntry->List);
657
658                         /* Make a reorder entry and insert
659                          * into a the packet list.
660                          */
661                         pReorderEntry->SeqNum = SeqNum;
662                         pReorderEntry->prxb = prxb;
663
664                         if (!AddReorderEntry(pTS, pReorderEntry)) {
665                                 int i;
666
667                                 netdev_dbg(ieee->dev,
668                                            "%s(): Duplicate packet is dropped. IndicateSeq: %d, NewSeq: %d\n",
669                                            __func__, pTS->RxIndicateSeq,
670                                            SeqNum);
671                                 list_add_tail(&pReorderEntry->List,
672                                               &ieee->RxReorder_Unused_List);
673
674                                 for (i = 0; i < prxb->nr_subframes; i++)
675                                         dev_kfree_skb(prxb->subframes[i]);
676                                 kfree(prxb);
677                                 prxb = NULL;
678                         } else {
679                                 netdev_dbg(ieee->dev,
680                                            "Pkt insert into struct buffer. IndicateSeq: %d, NewSeq: %d\n",
681                                            pTS->RxIndicateSeq, SeqNum);
682                         }
683                 } else {
684                         /* Packets are dropped if there are not enough reorder
685                          * entries. This part should be modified!! We can just
686                          * indicate all the packets in struct buffer and get
687                          * reorder entries.
688                          */
689                         netdev_err(ieee->dev,
690                                    "%s(): There is no reorder entry! Packet is dropped!\n",
691                                    __func__);
692                         {
693                                 int i;
694
695                                 for (i = 0; i < prxb->nr_subframes; i++)
696                                         dev_kfree_skb(prxb->subframes[i]);
697                                 kfree(prxb);
698                                 prxb = NULL;
699                         }
700                 }
701         }
702
703         /* Check if there is any packet need indicate.*/
704         while (!list_empty(&pTS->RxPendingPktList)) {
705                 netdev_dbg(ieee->dev, "%s(): start RREORDER indicate\n",
706                            __func__);
707
708                 pReorderEntry = (struct rx_reorder_entry *)
709                                         list_entry(pTS->RxPendingPktList.prev,
710                                                    struct rx_reorder_entry,
711                                                    List);
712                 if (SN_LESS(pReorderEntry->SeqNum, pTS->RxIndicateSeq) ||
713                     SN_EQUAL(pReorderEntry->SeqNum, pTS->RxIndicateSeq)) {
714                         /* This protect struct buffer from overflow. */
715                         if (index >= REORDER_WIN_SIZE) {
716                                 netdev_err(ieee->dev,
717                                            "%s(): Buffer overflow!\n",
718                                            __func__);
719                                 bPktInBuf = true;
720                                 break;
721                         }
722
723                         list_del_init(&pReorderEntry->List);
724
725                         if (SN_EQUAL(pReorderEntry->SeqNum, pTS->RxIndicateSeq))
726                                 pTS->RxIndicateSeq = (pTS->RxIndicateSeq + 1) %
727                                                      4096;
728
729                         ieee->prxbIndicateArray[index] = pReorderEntry->prxb;
730                         netdev_dbg(ieee->dev, "%s(): Indicate SeqNum %d!\n",
731                                    __func__, pReorderEntry->SeqNum);
732                         index++;
733
734                         list_add_tail(&pReorderEntry->List,
735                                       &ieee->RxReorder_Unused_List);
736                 } else {
737                         bPktInBuf = true;
738                         break;
739                 }
740         }
741
742         /* Handling pending timer. Set this timer to prevent from long time
743          * Rx buffering.
744          */
745         if (index > 0) {
746                 if (timer_pending(&pTS->RxPktPendingTimer))
747                         del_timer_sync(&pTS->RxPktPendingTimer);
748                 pTS->RxTimeoutIndicateSeq = 0xffff;
749
750                 if (index > REORDER_WIN_SIZE) {
751                         netdev_err(ieee->dev,
752                                    "%s(): Rx Reorder struct buffer full!\n",
753                                    __func__);
754                         spin_unlock_irqrestore(&(ieee->reorder_spinlock),
755                                                flags);
756                         return;
757                 }
758                 rtllib_indicate_packets(ieee, ieee->prxbIndicateArray, index);
759                 bPktInBuf = false;
760         }
761
762         if (bPktInBuf && pTS->RxTimeoutIndicateSeq == 0xffff) {
763                 netdev_dbg(ieee->dev, "%s(): SET rx timeout timer\n", __func__);
764                 pTS->RxTimeoutIndicateSeq = pTS->RxIndicateSeq;
765                 mod_timer(&pTS->RxPktPendingTimer, jiffies +
766                           msecs_to_jiffies(pHTInfo->RxReorderPendingTime));
767         }
768         spin_unlock_irqrestore(&(ieee->reorder_spinlock), flags);
769 }
770
771 static u8 parse_subframe(struct rtllib_device *ieee, struct sk_buff *skb,
772                          struct rtllib_rx_stats *rx_stats,
773                          struct rtllib_rxb *rxb, u8 *src, u8 *dst)
774 {
775         struct rtllib_hdr_3addr  *hdr = (struct rtllib_hdr_3addr *)skb->data;
776         u16             fc = le16_to_cpu(hdr->frame_ctl);
777
778         u16             LLCOffset = sizeof(struct rtllib_hdr_3addr);
779         u16             ChkLength;
780         bool            bIsAggregateFrame = false;
781         u16             nSubframe_Length;
782         u8              nPadding_Length = 0;
783         u16             SeqNum = 0;
784         struct sk_buff *sub_skb;
785         u8           *data_ptr;
786         /* just for debug purpose */
787         SeqNum = WLAN_GET_SEQ_SEQ(le16_to_cpu(hdr->seq_ctl));
788         if ((RTLLIB_QOS_HAS_SEQ(fc)) &&
789            (((union frameqos *)(skb->data + RTLLIB_3ADDR_LEN))->field.reserved))
790                 bIsAggregateFrame = true;
791
792         if (RTLLIB_QOS_HAS_SEQ(fc))
793                 LLCOffset += 2;
794         if (rx_stats->bContainHTC)
795                 LLCOffset += sHTCLng;
796
797         ChkLength = LLCOffset;
798
799         if (skb->len <= ChkLength)
800                 return 0;
801
802         skb_pull(skb, LLCOffset);
803         ieee->bIsAggregateFrame = bIsAggregateFrame;
804         if (!bIsAggregateFrame) {
805                 rxb->nr_subframes = 1;
806
807                 /* altered by clark 3/30/2010
808                  * The struct buffer size of the skb indicated to upper layer
809                  * must be less than 5000, or the defraged IP datagram
810                  * in the IP layer will exceed "ipfrag_high_tresh" and be
811                  * discarded. so there must not use the function
812                  * "skb_copy" and "skb_clone" for "skb".
813                  */
814
815                 /* Allocate new skb for releasing to upper layer */
816                 sub_skb = dev_alloc_skb(RTLLIB_SKBBUFFER_SIZE);
817                 if (!sub_skb)
818                         return 0;
819                 skb_reserve(sub_skb, 12);
820                 data_ptr = (u8 *)skb_put(sub_skb, skb->len);
821                 memcpy(data_ptr, skb->data, skb->len);
822                 sub_skb->dev = ieee->dev;
823
824                 rxb->subframes[0] = sub_skb;
825
826                 memcpy(rxb->src, src, ETH_ALEN);
827                 memcpy(rxb->dst, dst, ETH_ALEN);
828                 rxb->subframes[0]->dev = ieee->dev;
829                 return 1;
830         }
831
832         rxb->nr_subframes = 0;
833         memcpy(rxb->src, src, ETH_ALEN);
834         memcpy(rxb->dst, dst, ETH_ALEN);
835         while (skb->len > ETHERNET_HEADER_SIZE) {
836                 /* Offset 12 denote 2 mac address */
837                 nSubframe_Length = *((u16 *)(skb->data + 12));
838                 nSubframe_Length = (nSubframe_Length >> 8) +
839                                    (nSubframe_Length << 8);
840
841                 if (skb->len < (ETHERNET_HEADER_SIZE + nSubframe_Length)) {
842                         netdev_info(ieee->dev,
843                                     "%s: A-MSDU parse error!! pRfd->nTotalSubframe : %d\n",
844                                     __func__, rxb->nr_subframes);
845                         netdev_info(ieee->dev,
846                                     "%s: A-MSDU parse error!! Subframe Length: %d\n",
847                                     __func__, nSubframe_Length);
848                         netdev_info(ieee->dev,
849                                     "nRemain_Length is %d and nSubframe_Length is : %d\n",
850                                     skb->len, nSubframe_Length);
851                         netdev_info(ieee->dev,
852                                     "The Packet SeqNum is %d\n",
853                                     SeqNum);
854                         return 0;
855                 }
856
857                 /* move the data point to data content */
858                 skb_pull(skb, ETHERNET_HEADER_SIZE);
859
860                 /* altered by clark 3/30/2010
861                  * The struct buffer size of the skb indicated to upper layer
862                  * must be less than 5000, or the defraged IP datagram
863                  * in the IP layer will exceed "ipfrag_high_tresh" and be
864                  * discarded. so there must not use the function
865                  * "skb_copy" and "skb_clone" for "skb".
866                  */
867
868                 /* Allocate new skb for releasing to upper layer */
869                 sub_skb = dev_alloc_skb(nSubframe_Length + 12);
870                 if (!sub_skb)
871                         return 0;
872                 skb_reserve(sub_skb, 12);
873                 data_ptr = (u8 *)skb_put(sub_skb, nSubframe_Length);
874                 memcpy(data_ptr, skb->data, nSubframe_Length);
875
876                 sub_skb->dev = ieee->dev;
877                 rxb->subframes[rxb->nr_subframes++] = sub_skb;
878                 if (rxb->nr_subframes >= MAX_SUBFRAME_COUNT) {
879                         netdev_dbg(ieee->dev,
880                                    "ParseSubframe(): Too many Subframes! Packets dropped!\n");
881                         break;
882                 }
883                 skb_pull(skb, nSubframe_Length);
884
885                 if (skb->len != 0) {
886                         nPadding_Length = 4 - ((nSubframe_Length +
887                                           ETHERNET_HEADER_SIZE) % 4);
888                         if (nPadding_Length == 4)
889                                 nPadding_Length = 0;
890
891                         if (skb->len < nPadding_Length)
892                                 return 0;
893
894                         skb_pull(skb, nPadding_Length);
895                 }
896         }
897
898         return rxb->nr_subframes;
899 }
900
901
902 static size_t rtllib_rx_get_hdrlen(struct rtllib_device *ieee,
903                                    struct sk_buff *skb,
904                                    struct rtllib_rx_stats *rx_stats)
905 {
906         struct rtllib_hdr_4addr *hdr = (struct rtllib_hdr_4addr *)skb->data;
907         u16 fc = le16_to_cpu(hdr->frame_ctl);
908         size_t hdrlen;
909
910         hdrlen = rtllib_get_hdrlen(fc);
911         if (HTCCheck(ieee, skb->data)) {
912                 if (net_ratelimit())
913                         netdev_info(ieee->dev, "%s: find HTCControl!\n",
914                                     __func__);
915                 hdrlen += 4;
916                 rx_stats->bContainHTC = true;
917         }
918
919          if (RTLLIB_QOS_HAS_SEQ(fc))
920                 rx_stats->bIsQosData = true;
921
922         return hdrlen;
923 }
924
925 static int rtllib_rx_check_duplicate(struct rtllib_device *ieee,
926                                      struct sk_buff *skb, u8 multicast)
927 {
928         struct rtllib_hdr_4addr *hdr = (struct rtllib_hdr_4addr *)skb->data;
929         u16 fc, sc;
930         u8 frag, type, stype;
931
932         fc = le16_to_cpu(hdr->frame_ctl);
933         type = WLAN_FC_GET_TYPE(fc);
934         stype = WLAN_FC_GET_STYPE(fc);
935         sc = le16_to_cpu(hdr->seq_ctl);
936         frag = WLAN_GET_SEQ_FRAG(sc);
937
938         if ((ieee->pHTInfo->bCurRxReorderEnable == false) ||
939                 !ieee->current_network.qos_data.active ||
940                 !IsDataFrame(skb->data) ||
941                 IsLegacyDataFrame(skb->data)) {
942                 if (!((type == RTLLIB_FTYPE_MGMT) &&
943                       (stype == RTLLIB_STYPE_BEACON))) {
944                         if (is_duplicate_packet(ieee, hdr))
945                                 return -1;
946                 }
947         } else {
948                 struct rx_ts_record *pRxTS = NULL;
949
950                 if (GetTs(ieee, (struct ts_common_info **) &pRxTS, hdr->addr2,
951                         (u8)Frame_QoSTID((u8 *)(skb->data)), RX_DIR, true)) {
952                         if ((fc & (1<<11)) && (frag == pRxTS->RxLastFragNum) &&
953                             (WLAN_GET_SEQ_SEQ(sc) == pRxTS->RxLastSeqNum))
954                                 return -1;
955                         pRxTS->RxLastFragNum = frag;
956                         pRxTS->RxLastSeqNum = WLAN_GET_SEQ_SEQ(sc);
957                 } else {
958                         netdev_warn(ieee->dev, "%s(): No TS! Skip the check!\n",
959                                     __func__);
960                         return -1;
961                 }
962         }
963
964         return 0;
965 }
966
967 static void rtllib_rx_extract_addr(struct rtllib_device *ieee,
968                                    struct rtllib_hdr_4addr *hdr, u8 *dst,
969                                    u8 *src, u8 *bssid)
970 {
971         u16 fc = le16_to_cpu(hdr->frame_ctl);
972
973         switch (fc & (RTLLIB_FCTL_FROMDS | RTLLIB_FCTL_TODS)) {
974         case RTLLIB_FCTL_FROMDS:
975                 ether_addr_copy(dst, hdr->addr1);
976                 ether_addr_copy(src, hdr->addr3);
977                 ether_addr_copy(bssid, hdr->addr2);
978                 break;
979         case RTLLIB_FCTL_TODS:
980                 ether_addr_copy(dst, hdr->addr3);
981                 ether_addr_copy(src, hdr->addr2);
982                 ether_addr_copy(bssid, hdr->addr1);
983                 break;
984         case RTLLIB_FCTL_FROMDS | RTLLIB_FCTL_TODS:
985                 ether_addr_copy(dst, hdr->addr3);
986                 ether_addr_copy(src, hdr->addr4);
987                 ether_addr_copy(bssid, ieee->current_network.bssid);
988                 break;
989         default:
990                 ether_addr_copy(dst, hdr->addr1);
991                 ether_addr_copy(src, hdr->addr2);
992                 ether_addr_copy(bssid, hdr->addr3);
993                 break;
994         }
995 }
996
997 static int rtllib_rx_data_filter(struct rtllib_device *ieee, u16 fc,
998                                  u8 *dst, u8 *src, u8 *bssid, u8 *addr2)
999 {
1000         u8 type, stype;
1001
1002         type = WLAN_FC_GET_TYPE(fc);
1003         stype = WLAN_FC_GET_STYPE(fc);
1004
1005         /* Filter frames from different BSS */
1006         if (((fc & RTLLIB_FCTL_DSTODS) != RTLLIB_FCTL_DSTODS) &&
1007             !ether_addr_equal(ieee->current_network.bssid, bssid) &&
1008             !is_zero_ether_addr(ieee->current_network.bssid)) {
1009                 return -1;
1010         }
1011
1012         /* Filter packets sent by an STA that will be forwarded by AP */
1013         if (ieee->IntelPromiscuousModeInfo.bPromiscuousOn  &&
1014                 ieee->IntelPromiscuousModeInfo.bFilterSourceStationFrame) {
1015                 if ((fc & RTLLIB_FCTL_TODS) && !(fc & RTLLIB_FCTL_FROMDS) &&
1016                     !ether_addr_equal(dst, ieee->current_network.bssid) &&
1017                     ether_addr_equal(bssid, ieee->current_network.bssid)) {
1018                         return -1;
1019                 }
1020         }
1021
1022         /* Nullfunc frames may have PS-bit set, so they must be passed to
1023          * hostap_handle_sta_rx() before being dropped here.
1024          */
1025         if (!ieee->IntelPromiscuousModeInfo.bPromiscuousOn) {
1026                 if (stype != RTLLIB_STYPE_DATA &&
1027                     stype != RTLLIB_STYPE_DATA_CFACK &&
1028                     stype != RTLLIB_STYPE_DATA_CFPOLL &&
1029                     stype != RTLLIB_STYPE_DATA_CFACKPOLL &&
1030                     stype != RTLLIB_STYPE_QOS_DATA) {
1031                         if (stype != RTLLIB_STYPE_NULLFUNC)
1032                                 netdev_dbg(ieee->dev,
1033                                            "RX: dropped data frame with no data (type=0x%02x, subtype=0x%02x)\n",
1034                                            type, stype);
1035                         return -1;
1036                 }
1037         }
1038
1039         if (ieee->iw_mode != IW_MODE_MESH) {
1040                 /* packets from our adapter are dropped (echo) */
1041                 if (!memcmp(src, ieee->dev->dev_addr, ETH_ALEN))
1042                         return -1;
1043
1044                 /* {broad,multi}cast packets to our BSS go through */
1045                 if (is_multicast_ether_addr(dst)) {
1046                         if (memcmp(bssid, ieee->current_network.bssid,
1047                                    ETH_ALEN))
1048                                 return -1;
1049                 }
1050         }
1051         return 0;
1052 }
1053
1054 static int rtllib_rx_get_crypt(struct rtllib_device *ieee, struct sk_buff *skb,
1055                         struct lib80211_crypt_data **crypt, size_t hdrlen)
1056 {
1057         struct rtllib_hdr_4addr *hdr = (struct rtllib_hdr_4addr *)skb->data;
1058         u16 fc = le16_to_cpu(hdr->frame_ctl);
1059         int idx = 0;
1060
1061         if (ieee->host_decrypt) {
1062                 if (skb->len >= hdrlen + 3)
1063                         idx = skb->data[hdrlen + 3] >> 6;
1064
1065                 *crypt = ieee->crypt_info.crypt[idx];
1066                 /* allow NULL decrypt to indicate an station specific override
1067                  * for default encryption
1068                  */
1069                 if (*crypt && ((*crypt)->ops == NULL ||
1070                               (*crypt)->ops->decrypt_mpdu == NULL))
1071                         *crypt = NULL;
1072
1073                 if (!*crypt && (fc & RTLLIB_FCTL_WEP)) {
1074                         /* This seems to be triggered by some (multicast?)
1075                          * frames from other than current BSS, so just drop the
1076                          * frames silently instead of filling system log with
1077                          * these reports.
1078                          */
1079                         netdev_dbg(ieee->dev,
1080                                    "Decryption failed (not set) (SA= %pM)\n",
1081                                    hdr->addr2);
1082                         return -1;
1083                 }
1084         }
1085
1086         return 0;
1087 }
1088
1089 static int rtllib_rx_decrypt(struct rtllib_device *ieee, struct sk_buff *skb,
1090                       struct rtllib_rx_stats *rx_stats,
1091                       struct lib80211_crypt_data *crypt, size_t hdrlen)
1092 {
1093         struct rtllib_hdr_4addr *hdr;
1094         int keyidx = 0;
1095         u16 fc, sc;
1096         u8 frag;
1097
1098         hdr = (struct rtllib_hdr_4addr *)skb->data;
1099         fc = le16_to_cpu(hdr->frame_ctl);
1100         sc = le16_to_cpu(hdr->seq_ctl);
1101         frag = WLAN_GET_SEQ_FRAG(sc);
1102
1103         if ((!rx_stats->Decrypted))
1104                 ieee->need_sw_enc = 1;
1105         else
1106                 ieee->need_sw_enc = 0;
1107
1108         keyidx = rtllib_rx_frame_decrypt(ieee, skb, crypt);
1109         if (ieee->host_decrypt && (fc & RTLLIB_FCTL_WEP) && (keyidx < 0)) {
1110                 netdev_info(ieee->dev, "%s: decrypt frame error\n", __func__);
1111                 return -1;
1112         }
1113
1114         hdr = (struct rtllib_hdr_4addr *) skb->data;
1115         if ((frag != 0 || (fc & RTLLIB_FCTL_MOREFRAGS))) {
1116                 int flen;
1117                 struct sk_buff *frag_skb = rtllib_frag_cache_get(ieee, hdr);
1118
1119                 netdev_dbg(ieee->dev, "Rx Fragment received (%u)\n", frag);
1120
1121                 if (!frag_skb) {
1122                         netdev_dbg(ieee->dev,
1123                                    "Rx cannot get skb from fragment cache (morefrag=%d seq=%u frag=%u)\n",
1124                                    (fc & RTLLIB_FCTL_MOREFRAGS) != 0,
1125                                    WLAN_GET_SEQ_SEQ(sc), frag);
1126                         return -1;
1127                 }
1128                 flen = skb->len;
1129                 if (frag != 0)
1130                         flen -= hdrlen;
1131
1132                 if (frag_skb->tail + flen > frag_skb->end) {
1133                         netdev_warn(ieee->dev,
1134                                     "%s: host decrypted and reassembled frame did not fit skb\n",
1135                                     __func__);
1136                         rtllib_frag_cache_invalidate(ieee, hdr);
1137                         return -1;
1138                 }
1139
1140                 if (frag == 0) {
1141                         /* copy first fragment (including full headers) into
1142                          * beginning of the fragment cache skb
1143                          */
1144                         memcpy(skb_put(frag_skb, flen), skb->data, flen);
1145                 } else {
1146                         /* append frame payload to the end of the fragment
1147                          * cache skb
1148                          */
1149                         memcpy(skb_put(frag_skb, flen), skb->data + hdrlen,
1150                                flen);
1151                 }
1152                 dev_kfree_skb_any(skb);
1153                 skb = NULL;
1154
1155                 if (fc & RTLLIB_FCTL_MOREFRAGS) {
1156                         /* more fragments expected - leave the skb in fragment
1157                          * cache for now; it will be delivered to upper layers
1158                          * after all fragments have been received
1159                          */
1160                         return -2;
1161                 }
1162
1163                 /* this was the last fragment and the frame will be
1164                  * delivered, so remove skb from fragment cache
1165                  */
1166                 skb = frag_skb;
1167                 hdr = (struct rtllib_hdr_4addr *) skb->data;
1168                 rtllib_frag_cache_invalidate(ieee, hdr);
1169         }
1170
1171         /* skb: hdr + (possible reassembled) full MSDU payload; possibly still
1172          * encrypted/authenticated
1173          */
1174         if (ieee->host_decrypt && (fc & RTLLIB_FCTL_WEP) &&
1175                 rtllib_rx_frame_decrypt_msdu(ieee, skb, keyidx, crypt)) {
1176                 netdev_info(ieee->dev, "%s: ==>decrypt msdu error\n", __func__);
1177                 return -1;
1178         }
1179
1180         hdr = (struct rtllib_hdr_4addr *) skb->data;
1181         if (crypt && !(fc & RTLLIB_FCTL_WEP) && !ieee->open_wep) {
1182                 if (/*ieee->ieee802_1x &&*/
1183                     rtllib_is_eapol_frame(ieee, skb, hdrlen)) {
1184
1185                         /* pass unencrypted EAPOL frames even if encryption is
1186                          * configured
1187                          */
1188                         struct eapol *eap = (struct eapol *)(skb->data +
1189                                 24);
1190                         netdev_dbg(ieee->dev,
1191                                    "RX: IEEE 802.1X EAPOL frame: %s\n",
1192                                    eap_get_type(eap->type));
1193                 } else {
1194                         netdev_dbg(ieee->dev,
1195                                    "encryption configured, but RX frame not encrypted (SA= %pM)\n",
1196                                    hdr->addr2);
1197                         return -1;
1198                 }
1199         }
1200
1201         if (crypt && !(fc & RTLLIB_FCTL_WEP) &&
1202             rtllib_is_eapol_frame(ieee, skb, hdrlen)) {
1203                 struct eapol *eap = (struct eapol *)(skb->data + 24);
1204
1205                 netdev_dbg(ieee->dev, "RX: IEEE 802.1X EAPOL frame: %s\n",
1206                            eap_get_type(eap->type));
1207         }
1208
1209         if (crypt && !(fc & RTLLIB_FCTL_WEP) && !ieee->open_wep &&
1210             !rtllib_is_eapol_frame(ieee, skb, hdrlen)) {
1211                 netdev_dbg(ieee->dev,
1212                            "dropped unencrypted RX data frame from %pM (drop_unencrypted=1)\n",
1213                            hdr->addr2);
1214                 return -1;
1215         }
1216
1217         if (rtllib_is_eapol_frame(ieee, skb, hdrlen))
1218                 netdev_warn(ieee->dev, "RX: IEEE802.1X EAPOL frame!\n");
1219
1220         return 0;
1221 }
1222
1223 static void rtllib_rx_check_leave_lps(struct rtllib_device *ieee, u8 unicast,
1224                                       u8 nr_subframes)
1225 {
1226         if (unicast) {
1227
1228                 if (ieee->state == RTLLIB_LINKED) {
1229                         if (((ieee->LinkDetectInfo.NumRxUnicastOkInPeriod +
1230                             ieee->LinkDetectInfo.NumTxOkInPeriod) > 8) ||
1231                             (ieee->LinkDetectInfo.NumRxUnicastOkInPeriod > 2)) {
1232                                 if (ieee->LeisurePSLeave)
1233                                         ieee->LeisurePSLeave(ieee->dev);
1234                         }
1235                 }
1236         }
1237         ieee->last_rx_ps_time = jiffies;
1238 }
1239
1240 static void rtllib_rx_indicate_pkt_legacy(struct rtllib_device *ieee,
1241                 struct rtllib_rx_stats *rx_stats,
1242                 struct rtllib_rxb *rxb,
1243                 u8 *dst,
1244                 u8 *src)
1245 {
1246         struct net_device *dev = ieee->dev;
1247         u16 ethertype;
1248         int i = 0;
1249
1250         if (rxb == NULL) {
1251                 netdev_info(dev, "%s: rxb is NULL!!\n", __func__);
1252                 return;
1253         }
1254
1255         for (i = 0; i < rxb->nr_subframes; i++) {
1256                 struct sk_buff *sub_skb = rxb->subframes[i];
1257
1258                 if (sub_skb) {
1259                         /* convert hdr + possible LLC headers
1260                          * into Ethernet header
1261                          */
1262                         ethertype = (sub_skb->data[6] << 8) | sub_skb->data[7];
1263                         if (sub_skb->len >= 8 &&
1264                                 ((memcmp(sub_skb->data, rfc1042_header, SNAP_SIZE) == 0 &&
1265                                 ethertype != ETH_P_AARP && ethertype != ETH_P_IPX) ||
1266                                 memcmp(sub_skb->data, bridge_tunnel_header, SNAP_SIZE) == 0)) {
1267                                 /* remove RFC1042 or Bridge-Tunnel encapsulation
1268                                  * and replace EtherType
1269                                  */
1270                                 skb_pull(sub_skb, SNAP_SIZE);
1271                                 ether_addr_copy(skb_push(sub_skb, ETH_ALEN),
1272                                                 src);
1273                                 ether_addr_copy(skb_push(sub_skb, ETH_ALEN),
1274                                                 dst);
1275                         } else {
1276                                 u16 len;
1277                                 /* Leave Ethernet header part of hdr
1278                                  * and full payload
1279                                  */
1280                                 len = sub_skb->len;
1281                                 memcpy(skb_push(sub_skb, 2), &len, 2);
1282                                 ether_addr_copy(skb_push(sub_skb, ETH_ALEN),
1283                                                 src);
1284                                 ether_addr_copy(skb_push(sub_skb, ETH_ALEN),
1285                                                 dst);
1286                         }
1287
1288                         ieee->stats.rx_packets++;
1289                         ieee->stats.rx_bytes += sub_skb->len;
1290
1291                         if (is_multicast_ether_addr(dst))
1292                                 ieee->stats.multicast++;
1293
1294                         /* Indicate the packets to upper layer */
1295                         memset(sub_skb->cb, 0, sizeof(sub_skb->cb));
1296                         sub_skb->protocol = eth_type_trans(sub_skb, dev);
1297                         sub_skb->dev = dev;
1298                         sub_skb->dev->stats.rx_packets++;
1299                         sub_skb->dev->stats.rx_bytes += sub_skb->len;
1300                         /* 802.11 crc not sufficient */
1301                         sub_skb->ip_summed = CHECKSUM_NONE;
1302                         netif_rx(sub_skb);
1303                 }
1304         }
1305         kfree(rxb);
1306 }
1307
1308 static int rtllib_rx_InfraAdhoc(struct rtllib_device *ieee, struct sk_buff *skb,
1309                  struct rtllib_rx_stats *rx_stats)
1310 {
1311         struct net_device *dev = ieee->dev;
1312         struct rtllib_hdr_4addr *hdr = (struct rtllib_hdr_4addr *)skb->data;
1313         struct lib80211_crypt_data *crypt = NULL;
1314         struct rtllib_rxb *rxb = NULL;
1315         struct rx_ts_record *pTS = NULL;
1316         u16 fc, sc, SeqNum = 0;
1317         u8 type, stype, multicast = 0, unicast = 0, nr_subframes = 0, TID = 0;
1318         u8 *payload;
1319         u8 dst[ETH_ALEN];
1320         u8 src[ETH_ALEN];
1321         u8 bssid[ETH_ALEN] = {0};
1322
1323         size_t hdrlen = 0;
1324         bool bToOtherSTA = false;
1325         int ret = 0, i = 0;
1326
1327         hdr = (struct rtllib_hdr_4addr *)skb->data;
1328         fc = le16_to_cpu(hdr->frame_ctl);
1329         type = WLAN_FC_GET_TYPE(fc);
1330         stype = WLAN_FC_GET_STYPE(fc);
1331         sc = le16_to_cpu(hdr->seq_ctl);
1332
1333         /*Filter pkt not to me*/
1334         multicast = is_multicast_ether_addr(hdr->addr1);
1335         unicast = !multicast;
1336         if (unicast && !ether_addr_equal(dev->dev_addr, hdr->addr1)) {
1337                 if (ieee->bNetPromiscuousMode)
1338                         bToOtherSTA = true;
1339                 else
1340                         goto rx_dropped;
1341         }
1342
1343         /*Filter pkt has too small length */
1344         hdrlen = rtllib_rx_get_hdrlen(ieee, skb, rx_stats);
1345         if (skb->len < hdrlen) {
1346                 netdev_info(dev,
1347                             "%s():ERR!!! skb->len is smaller than hdrlen\n",
1348                             __func__);
1349                 goto rx_dropped;
1350         }
1351
1352         /* Filter Duplicate pkt */
1353         ret = rtllib_rx_check_duplicate(ieee, skb, multicast);
1354         if (ret < 0)
1355                 goto rx_dropped;
1356
1357         /* Filter CTRL Frame */
1358         if (type == RTLLIB_FTYPE_CTL)
1359                 goto rx_dropped;
1360
1361         /* Filter MGNT Frame */
1362         if (type == RTLLIB_FTYPE_MGMT) {
1363                 if (bToOtherSTA)
1364                         goto rx_dropped;
1365                 if (rtllib_rx_frame_mgmt(ieee, skb, rx_stats, type, stype))
1366                         goto rx_dropped;
1367                 else
1368                         goto rx_exit;
1369         }
1370
1371         /* Filter WAPI DATA Frame */
1372
1373         /* Update statstics for AP roaming */
1374         if (!bToOtherSTA) {
1375                 ieee->LinkDetectInfo.NumRecvDataInPeriod++;
1376                 ieee->LinkDetectInfo.NumRxOkInPeriod++;
1377         }
1378         dev->last_rx = jiffies;
1379
1380         /* Data frame - extract src/dst addresses */
1381         rtllib_rx_extract_addr(ieee, hdr, dst, src, bssid);
1382
1383         /* Filter Data frames */
1384         ret = rtllib_rx_data_filter(ieee, fc, dst, src, bssid, hdr->addr2);
1385         if (ret < 0)
1386                 goto rx_dropped;
1387
1388         if (skb->len == hdrlen)
1389                 goto rx_dropped;
1390
1391         /* Send pspoll based on moredata */
1392         if ((ieee->iw_mode == IW_MODE_INFRA)  &&
1393             (ieee->sta_sleep == LPS_IS_SLEEP) &&
1394             (ieee->polling) && (!bToOtherSTA)) {
1395                 if (WLAN_FC_MORE_DATA(fc)) {
1396                         /* more data bit is set, let's request a new frame
1397                          * from the AP
1398                          */
1399                         rtllib_sta_ps_send_pspoll_frame(ieee);
1400                 } else {
1401                         ieee->polling =  false;
1402                 }
1403         }
1404
1405         /* Get crypt if encrypted */
1406         ret = rtllib_rx_get_crypt(ieee, skb, &crypt, hdrlen);
1407         if (ret == -1)
1408                 goto rx_dropped;
1409
1410         /* Decrypt data frame (including reassemble) */
1411         ret = rtllib_rx_decrypt(ieee, skb, rx_stats, crypt, hdrlen);
1412         if (ret == -1)
1413                 goto rx_dropped;
1414         else if (ret == -2)
1415                 goto rx_exit;
1416
1417         /* Get TS for Rx Reorder  */
1418         hdr = (struct rtllib_hdr_4addr *) skb->data;
1419         if (ieee->current_network.qos_data.active && IsQoSDataFrame(skb->data)
1420                 && !is_multicast_ether_addr(hdr->addr1)
1421                 && (!bToOtherSTA)) {
1422                 TID = Frame_QoSTID(skb->data);
1423                 SeqNum = WLAN_GET_SEQ_SEQ(sc);
1424                 GetTs(ieee, (struct ts_common_info **) &pTS, hdr->addr2, TID,
1425                       RX_DIR, true);
1426                 if (TID != 0 && TID != 3)
1427                         ieee->bis_any_nonbepkts = true;
1428         }
1429
1430         /* Parse rx data frame (For AMSDU) */
1431         /* skb: hdr + (possible reassembled) full plaintext payload */
1432         payload = skb->data + hdrlen;
1433         rxb = kmalloc(sizeof(struct rtllib_rxb), GFP_ATOMIC);
1434         if (!rxb)
1435                 goto rx_dropped;
1436
1437         /* to parse amsdu packets */
1438         /* qos data packets & reserved bit is 1 */
1439         if (parse_subframe(ieee, skb, rx_stats, rxb, src, dst) == 0) {
1440                 /* only to free rxb, and not submit the packets
1441                  * to upper layer
1442                  */
1443                 for (i = 0; i < rxb->nr_subframes; i++)
1444                         dev_kfree_skb(rxb->subframes[i]);
1445                 kfree(rxb);
1446                 rxb = NULL;
1447                 goto rx_dropped;
1448         }
1449
1450         /* Update WAPI PN */
1451
1452         /* Check if leave LPS */
1453         if (!bToOtherSTA) {
1454                 if (ieee->bIsAggregateFrame)
1455                         nr_subframes = rxb->nr_subframes;
1456                 else
1457                         nr_subframes = 1;
1458                 if (unicast)
1459                         ieee->LinkDetectInfo.NumRxUnicastOkInPeriod += nr_subframes;
1460                 rtllib_rx_check_leave_lps(ieee, unicast, nr_subframes);
1461         }
1462
1463         /* Indicate packets to upper layer or Rx Reorder */
1464         if (ieee->pHTInfo->bCurRxReorderEnable == false || pTS == NULL ||
1465             bToOtherSTA)
1466                 rtllib_rx_indicate_pkt_legacy(ieee, rx_stats, rxb, dst, src);
1467         else
1468                 RxReorderIndicatePacket(ieee, rxb, pTS, SeqNum);
1469
1470         dev_kfree_skb(skb);
1471
1472  rx_exit:
1473         return 1;
1474
1475  rx_dropped:
1476         ieee->stats.rx_dropped++;
1477
1478         /* Returning 0 indicates to caller that we have not handled the SKB--
1479          * so it is still allocated and can be used again by underlying
1480          * hardware as a DMA target
1481          */
1482         return 0;
1483 }
1484
1485 static int rtllib_rx_Master(struct rtllib_device *ieee, struct sk_buff *skb,
1486                  struct rtllib_rx_stats *rx_stats)
1487 {
1488         return 0;
1489 }
1490
1491 static int rtllib_rx_Monitor(struct rtllib_device *ieee, struct sk_buff *skb,
1492                  struct rtllib_rx_stats *rx_stats)
1493 {
1494         struct rtllib_hdr_4addr *hdr = (struct rtllib_hdr_4addr *)skb->data;
1495         u16 fc = le16_to_cpu(hdr->frame_ctl);
1496         size_t hdrlen = rtllib_get_hdrlen(fc);
1497
1498         if (skb->len < hdrlen) {
1499                 netdev_info(ieee->dev,
1500                             "%s():ERR!!! skb->len is smaller than hdrlen\n",
1501                             __func__);
1502                 return 0;
1503         }
1504
1505         if (HTCCheck(ieee, skb->data)) {
1506                 if (net_ratelimit())
1507                         netdev_info(ieee->dev, "%s: Find HTCControl!\n",
1508                                     __func__);
1509                 hdrlen += 4;
1510         }
1511
1512         rtllib_monitor_rx(ieee, skb, rx_stats, hdrlen);
1513         ieee->stats.rx_packets++;
1514         ieee->stats.rx_bytes += skb->len;
1515
1516         return 1;
1517 }
1518
1519 static int rtllib_rx_Mesh(struct rtllib_device *ieee, struct sk_buff *skb,
1520                  struct rtllib_rx_stats *rx_stats)
1521 {
1522         return 0;
1523 }
1524
1525 /* All received frames are sent to this function. @skb contains the frame in
1526  * IEEE 802.11 format, i.e., in the format it was sent over air.
1527  * This function is called only as a tasklet (software IRQ).
1528  */
1529 int rtllib_rx(struct rtllib_device *ieee, struct sk_buff *skb,
1530                  struct rtllib_rx_stats *rx_stats)
1531 {
1532         int ret = 0;
1533
1534         if (!ieee || !skb || !rx_stats) {
1535                 pr_info("%s: Input parameters NULL!\n", __func__);
1536                 goto rx_dropped;
1537         }
1538         if (skb->len < 10) {
1539                 netdev_info(ieee->dev, "%s: SKB length < 10\n", __func__);
1540                 goto rx_dropped;
1541         }
1542
1543         switch (ieee->iw_mode) {
1544         case IW_MODE_ADHOC:
1545         case IW_MODE_INFRA:
1546                 ret = rtllib_rx_InfraAdhoc(ieee, skb, rx_stats);
1547                 break;
1548         case IW_MODE_MASTER:
1549         case IW_MODE_REPEAT:
1550                 ret = rtllib_rx_Master(ieee, skb, rx_stats);
1551                 break;
1552         case IW_MODE_MONITOR:
1553                 ret = rtllib_rx_Monitor(ieee, skb, rx_stats);
1554                 break;
1555         case IW_MODE_MESH:
1556                 ret = rtllib_rx_Mesh(ieee, skb, rx_stats);
1557                 break;
1558         default:
1559                 netdev_info(ieee->dev, "%s: ERR iw mode!!!\n", __func__);
1560                 break;
1561         }
1562
1563         return ret;
1564
1565  rx_dropped:
1566         if (ieee)
1567                 ieee->stats.rx_dropped++;
1568         return 0;
1569 }
1570 EXPORT_SYMBOL(rtllib_rx);
1571
1572 static u8 qos_oui[QOS_OUI_LEN] = { 0x00, 0x50, 0xF2 };
1573
1574 /* Make ther structure we read from the beacon packet has the right values */
1575 static int rtllib_verify_qos_info(struct rtllib_qos_information_element
1576                                      *info_element, int sub_type)
1577 {
1578
1579         if (info_element->qui_subtype != sub_type)
1580                 return -1;
1581         if (memcmp(info_element->qui, qos_oui, QOS_OUI_LEN))
1582                 return -1;
1583         if (info_element->qui_type != QOS_OUI_TYPE)
1584                 return -1;
1585         if (info_element->version != QOS_VERSION_1)
1586                 return -1;
1587
1588         return 0;
1589 }
1590
1591
1592 /* Parse a QoS parameter element */
1593 static int rtllib_read_qos_param_element(struct rtllib_qos_parameter_info
1594                                                         *element_param,
1595                                          struct rtllib_info_element
1596                                                         *info_element)
1597 {
1598         int ret = 0;
1599         u16 size = sizeof(struct rtllib_qos_parameter_info) - 2;
1600
1601         if ((info_element == NULL) || (element_param == NULL))
1602                 return -1;
1603
1604         if (info_element->id == QOS_ELEMENT_ID && info_element->len == size) {
1605                 memcpy(element_param->info_element.qui, info_element->data,
1606                        info_element->len);
1607                 element_param->info_element.elementID = info_element->id;
1608                 element_param->info_element.length = info_element->len;
1609         } else
1610                 ret = -1;
1611         if (ret == 0)
1612                 ret = rtllib_verify_qos_info(&element_param->info_element,
1613                                                 QOS_OUI_PARAM_SUB_TYPE);
1614         return ret;
1615 }
1616
1617 /* Parse a QoS information element */
1618 static int rtllib_read_qos_info_element(struct rtllib_qos_information_element
1619                                                         *element_info,
1620                                         struct rtllib_info_element
1621                                                         *info_element)
1622 {
1623         int ret = 0;
1624         u16 size = sizeof(struct rtllib_qos_information_element) - 2;
1625
1626         if (element_info == NULL)
1627                 return -1;
1628         if (info_element == NULL)
1629                 return -1;
1630
1631         if ((info_element->id == QOS_ELEMENT_ID) &&
1632             (info_element->len == size)) {
1633                 memcpy(element_info->qui, info_element->data,
1634                        info_element->len);
1635                 element_info->elementID = info_element->id;
1636                 element_info->length = info_element->len;
1637         } else
1638                 ret = -1;
1639
1640         if (ret == 0)
1641                 ret = rtllib_verify_qos_info(element_info,
1642                                              QOS_OUI_INFO_SUB_TYPE);
1643         return ret;
1644 }
1645
1646
1647 /* Write QoS parameters from the ac parameters. */
1648 static int rtllib_qos_convert_ac_to_parameters(struct rtllib_qos_parameter_info *param_elm,
1649                                                struct rtllib_qos_data *qos_data)
1650 {
1651         struct rtllib_qos_ac_parameter *ac_params;
1652         struct rtllib_qos_parameters *qos_param = &(qos_data->parameters);
1653         int i;
1654         u8 aci;
1655         u8 acm;
1656
1657         qos_data->wmm_acm = 0;
1658         for (i = 0; i < QOS_QUEUE_NUM; i++) {
1659                 ac_params = &(param_elm->ac_params_record[i]);
1660
1661                 aci = (ac_params->aci_aifsn & 0x60) >> 5;
1662                 acm = (ac_params->aci_aifsn & 0x10) >> 4;
1663
1664                 if (aci >= QOS_QUEUE_NUM)
1665                         continue;
1666                 switch (aci) {
1667                 case 1:
1668                         /* BIT(0) | BIT(3) */
1669                         if (acm)
1670                                 qos_data->wmm_acm |= (0x01<<0)|(0x01<<3);
1671                         break;
1672                 case 2:
1673                         /* BIT(4) | BIT(5) */
1674                         if (acm)
1675                                 qos_data->wmm_acm |= (0x01<<4)|(0x01<<5);
1676                         break;
1677                 case 3:
1678                         /* BIT(6) | BIT(7) */
1679                         if (acm)
1680                                 qos_data->wmm_acm |= (0x01<<6)|(0x01<<7);
1681                         break;
1682                 case 0:
1683                 default:
1684                         /* BIT(1) | BIT(2) */
1685                         if (acm)
1686                                 qos_data->wmm_acm |= (0x01<<1)|(0x01<<2);
1687                         break;
1688                 }
1689
1690                 qos_param->aifs[aci] = (ac_params->aci_aifsn) & 0x0f;
1691
1692                 /* WMM spec P.11: The minimum value for AIFSN shall be 2 */
1693                 qos_param->aifs[aci] = max_t(u8, qos_param->aifs[aci], 2);
1694
1695                 qos_param->cw_min[aci] = cpu_to_le16(ac_params->ecw_min_max &
1696                                                      0x0F);
1697
1698                 qos_param->cw_max[aci] = cpu_to_le16((ac_params->ecw_min_max &
1699                                                       0xF0) >> 4);
1700
1701                 qos_param->flag[aci] =
1702                     (ac_params->aci_aifsn & 0x10) ? 0x01 : 0x00;
1703                 qos_param->tx_op_limit[aci] = ac_params->tx_op_limit;
1704         }
1705         return 0;
1706 }
1707
1708 /* we have a generic data element which it may contain QoS information or
1709  * parameters element. check the information element length to decide
1710  * which type to read
1711  */
1712 static int rtllib_parse_qos_info_param_IE(struct rtllib_device *ieee,
1713                                           struct rtllib_info_element
1714                                              *info_element,
1715                                           struct rtllib_network *network)
1716 {
1717         int rc = 0;
1718         struct rtllib_qos_information_element qos_info_element;
1719
1720         rc = rtllib_read_qos_info_element(&qos_info_element, info_element);
1721
1722         if (rc == 0) {
1723                 network->qos_data.param_count = qos_info_element.ac_info & 0x0F;
1724                 network->flags |= NETWORK_HAS_QOS_INFORMATION;
1725         } else {
1726                 struct rtllib_qos_parameter_info param_element;
1727
1728                 rc = rtllib_read_qos_param_element(&param_element,
1729                                                       info_element);
1730                 if (rc == 0) {
1731                         rtllib_qos_convert_ac_to_parameters(&param_element,
1732                                                                &(network->qos_data));
1733                         network->flags |= NETWORK_HAS_QOS_PARAMETERS;
1734                         network->qos_data.param_count =
1735                             param_element.info_element.ac_info & 0x0F;
1736                 }
1737         }
1738
1739         if (rc == 0) {
1740                 netdev_dbg(ieee->dev, "QoS is supported\n");
1741                 network->qos_data.supported = 1;
1742         }
1743         return rc;
1744 }
1745
1746 static const char *get_info_element_string(u16 id)
1747 {
1748         switch (id) {
1749         case MFIE_TYPE_SSID:
1750                 return "SSID";
1751         case MFIE_TYPE_RATES:
1752                 return "RATES";
1753         case MFIE_TYPE_FH_SET:
1754                 return "FH_SET";
1755         case MFIE_TYPE_DS_SET:
1756                 return "DS_SET";
1757         case MFIE_TYPE_CF_SET:
1758                 return "CF_SET";
1759         case MFIE_TYPE_TIM:
1760                 return "TIM";
1761         case MFIE_TYPE_IBSS_SET:
1762                 return "IBSS_SET";
1763         case MFIE_TYPE_COUNTRY:
1764                 return "COUNTRY";
1765         case MFIE_TYPE_HOP_PARAMS:
1766                 return "HOP_PARAMS";
1767         case MFIE_TYPE_HOP_TABLE:
1768                 return "HOP_TABLE";
1769         case MFIE_TYPE_REQUEST:
1770                 return "REQUEST";
1771         case MFIE_TYPE_CHALLENGE:
1772                 return "CHALLENGE";
1773         case MFIE_TYPE_POWER_CONSTRAINT:
1774                 return "POWER_CONSTRAINT";
1775         case MFIE_TYPE_POWER_CAPABILITY:
1776                 return "POWER_CAPABILITY";
1777         case MFIE_TYPE_TPC_REQUEST:
1778                 return "TPC_REQUEST";
1779         case MFIE_TYPE_TPC_REPORT:
1780                 return "TPC_REPORT";
1781         case MFIE_TYPE_SUPP_CHANNELS:
1782                 return "SUPP_CHANNELS";
1783         case MFIE_TYPE_CSA:
1784                 return "CSA";
1785         case MFIE_TYPE_MEASURE_REQUEST:
1786                 return "MEASURE_REQUEST";
1787         case MFIE_TYPE_MEASURE_REPORT:
1788                 return "MEASURE_REPORT";
1789         case MFIE_TYPE_QUIET:
1790                 return "QUIET";
1791         case MFIE_TYPE_IBSS_DFS:
1792                 return "IBSS_DFS";
1793         case MFIE_TYPE_RSN:
1794                 return "RSN";
1795         case MFIE_TYPE_RATES_EX:
1796                 return "RATES_EX";
1797         case MFIE_TYPE_GENERIC:
1798                 return "GENERIC";
1799         case MFIE_TYPE_QOS_PARAMETER:
1800                 return "QOS_PARAMETER";
1801         default:
1802                 return "UNKNOWN";
1803         }
1804 }
1805
1806 static inline void rtllib_extract_country_ie(
1807         struct rtllib_device *ieee,
1808         struct rtllib_info_element *info_element,
1809         struct rtllib_network *network,
1810         u8 *addr2)
1811 {
1812         if (IS_DOT11D_ENABLE(ieee)) {
1813                 if (info_element->len != 0) {
1814                         memcpy(network->CountryIeBuf, info_element->data,
1815                                info_element->len);
1816                         network->CountryIeLen = info_element->len;
1817
1818                         if (!IS_COUNTRY_IE_VALID(ieee)) {
1819                                 if (rtllib_act_scanning(ieee, false) &&
1820                                     ieee->FirstIe_InScan)
1821                                         netdev_info(ieee->dev,
1822                                                     "Received beacon ContryIE, SSID: <%s>\n",
1823                                                     network->ssid);
1824                                 Dot11d_UpdateCountryIe(ieee, addr2,
1825                                                        info_element->len,
1826                                                        info_element->data);
1827                         }
1828                 }
1829
1830                 if (IS_EQUAL_CIE_SRC(ieee, addr2))
1831                         UPDATE_CIE_WATCHDOG(ieee);
1832         }
1833 }
1834
1835 static void rtllib_parse_mife_generic(struct rtllib_device *ieee,
1836                                       struct rtllib_info_element *info_element,
1837                                       struct rtllib_network *network,
1838                                       u16 *tmp_htcap_len,
1839                                       u16 *tmp_htinfo_len)
1840 {
1841         u16 ht_realtek_agg_len = 0;
1842         u8  ht_realtek_agg_buf[MAX_IE_LEN];
1843
1844         if (!rtllib_parse_qos_info_param_IE(ieee, info_element, network))
1845                 return;
1846         if (info_element->len >= 4 &&
1847             info_element->data[0] == 0x00 &&
1848             info_element->data[1] == 0x50 &&
1849             info_element->data[2] == 0xf2 &&
1850             info_element->data[3] == 0x01) {
1851                 network->wpa_ie_len = min(info_element->len + 2,
1852                                           MAX_WPA_IE_LEN);
1853                 memcpy(network->wpa_ie, info_element, network->wpa_ie_len);
1854                 return;
1855         }
1856         if (info_element->len == 7 &&
1857             info_element->data[0] == 0x00 &&
1858             info_element->data[1] == 0xe0 &&
1859             info_element->data[2] == 0x4c &&
1860             info_element->data[3] == 0x01 &&
1861             info_element->data[4] == 0x02)
1862                 network->Turbo_Enable = 1;
1863
1864         if (*tmp_htcap_len == 0) {
1865                 if (info_element->len >= 4 &&
1866                     info_element->data[0] == 0x00 &&
1867                     info_element->data[1] == 0x90 &&
1868                     info_element->data[2] == 0x4c &&
1869                     info_element->data[3] == 0x033) {
1870                         *tmp_htcap_len = min_t(u8, info_element->len,
1871                                                MAX_IE_LEN);
1872                         if (*tmp_htcap_len != 0) {
1873                                 network->bssht.bdHTSpecVer = HT_SPEC_VER_EWC;
1874                                 network->bssht.bdHTCapLen = min_t(u16, *tmp_htcap_len, sizeof(network->bssht.bdHTCapBuf));
1875                                 memcpy(network->bssht.bdHTCapBuf,
1876                                        info_element->data,
1877                                        network->bssht.bdHTCapLen);
1878                         }
1879                 }
1880                 if (*tmp_htcap_len != 0) {
1881                         network->bssht.bdSupportHT = true;
1882                         network->bssht.bdHT1R = ((((struct ht_capab_ele *)(network->bssht.bdHTCapBuf))->MCS[1]) == 0);
1883                 } else {
1884                         network->bssht.bdSupportHT = false;
1885                         network->bssht.bdHT1R = false;
1886                 }
1887         }
1888
1889
1890         if (*tmp_htinfo_len == 0) {
1891                 if (info_element->len >= 4 &&
1892                     info_element->data[0] == 0x00 &&
1893                     info_element->data[1] == 0x90 &&
1894                     info_element->data[2] == 0x4c &&
1895                     info_element->data[3] == 0x034) {
1896                         *tmp_htinfo_len = min_t(u8, info_element->len,
1897                                                 MAX_IE_LEN);
1898                         if (*tmp_htinfo_len != 0) {
1899                                 network->bssht.bdHTSpecVer = HT_SPEC_VER_EWC;
1900                                 network->bssht.bdHTInfoLen = min_t(u16, *tmp_htinfo_len, sizeof(network->bssht.bdHTInfoBuf));
1901                                 memcpy(network->bssht.bdHTInfoBuf,
1902                                        info_element->data,
1903                                        network->bssht.bdHTInfoLen);
1904                         }
1905                 }
1906         }
1907
1908         if (network->bssht.bdSupportHT) {
1909                 if (info_element->len >= 4 &&
1910                     info_element->data[0] == 0x00 &&
1911                     info_element->data[1] == 0xe0 &&
1912                     info_element->data[2] == 0x4c &&
1913                     info_element->data[3] == 0x02) {
1914                         ht_realtek_agg_len = min_t(u8, info_element->len,
1915                                                    MAX_IE_LEN);
1916                         memcpy(ht_realtek_agg_buf, info_element->data,
1917                                info_element->len);
1918                 }
1919                 if (ht_realtek_agg_len >= 5) {
1920                         network->realtek_cap_exit = true;
1921                         network->bssht.bdRT2RTAggregation = true;
1922
1923                         if ((ht_realtek_agg_buf[4] == 1) &&
1924                             (ht_realtek_agg_buf[5] & 0x02))
1925                                 network->bssht.bdRT2RTLongSlotTime = true;
1926
1927                         if ((ht_realtek_agg_buf[4] == 1) &&
1928                             (ht_realtek_agg_buf[5] & RT_HT_CAP_USE_92SE))
1929                                 network->bssht.RT2RT_HT_Mode |= RT_HT_CAP_USE_92SE;
1930                 }
1931         }
1932         if (ht_realtek_agg_len >= 5) {
1933                 if ((ht_realtek_agg_buf[5] & RT_HT_CAP_USE_SOFTAP))
1934                         network->bssht.RT2RT_HT_Mode |= RT_HT_CAP_USE_SOFTAP;
1935         }
1936
1937         if ((info_element->len >= 3 &&
1938              info_element->data[0] == 0x00 &&
1939              info_element->data[1] == 0x05 &&
1940              info_element->data[2] == 0xb5) ||
1941              (info_element->len >= 3 &&
1942              info_element->data[0] == 0x00 &&
1943              info_element->data[1] == 0x0a &&
1944              info_element->data[2] == 0xf7) ||
1945              (info_element->len >= 3 &&
1946              info_element->data[0] == 0x00 &&
1947              info_element->data[1] == 0x10 &&
1948              info_element->data[2] == 0x18)) {
1949                 network->broadcom_cap_exist = true;
1950         }
1951         if (info_element->len >= 3 &&
1952             info_element->data[0] == 0x00 &&
1953             info_element->data[1] == 0x0c &&
1954             info_element->data[2] == 0x43)
1955                 network->ralink_cap_exist = true;
1956         if ((info_element->len >= 3 &&
1957              info_element->data[0] == 0x00 &&
1958              info_element->data[1] == 0x03 &&
1959              info_element->data[2] == 0x7f) ||
1960              (info_element->len >= 3 &&
1961              info_element->data[0] == 0x00 &&
1962              info_element->data[1] == 0x13 &&
1963              info_element->data[2] == 0x74))
1964                 network->atheros_cap_exist = true;
1965
1966         if ((info_element->len >= 3 &&
1967              info_element->data[0] == 0x00 &&
1968              info_element->data[1] == 0x50 &&
1969              info_element->data[2] == 0x43))
1970                 network->marvell_cap_exist = true;
1971         if (info_element->len >= 3 &&
1972             info_element->data[0] == 0x00 &&
1973             info_element->data[1] == 0x40 &&
1974             info_element->data[2] == 0x96)
1975                 network->cisco_cap_exist = true;
1976
1977
1978         if (info_element->len >= 3 &&
1979             info_element->data[0] == 0x00 &&
1980             info_element->data[1] == 0x0a &&
1981             info_element->data[2] == 0xf5)
1982                 network->airgo_cap_exist = true;
1983
1984         if (info_element->len > 4 &&
1985             info_element->data[0] == 0x00 &&
1986             info_element->data[1] == 0x40 &&
1987             info_element->data[2] == 0x96 &&
1988             info_element->data[3] == 0x01) {
1989                 if (info_element->len == 6) {
1990                         memcpy(network->CcxRmState, &info_element[4], 2);
1991                         if (network->CcxRmState[0] != 0)
1992                                 network->bCcxRmEnable = true;
1993                         else
1994                                 network->bCcxRmEnable = false;
1995                         network->MBssidMask = network->CcxRmState[1] & 0x07;
1996                         if (network->MBssidMask != 0) {
1997                                 network->bMBssidValid = true;
1998                                 network->MBssidMask = 0xff <<
1999                                                       (network->MBssidMask);
2000                                 ether_addr_copy(network->MBssid,
2001                                                 network->bssid);
2002                                 network->MBssid[5] &= network->MBssidMask;
2003                         } else {
2004                                 network->bMBssidValid = false;
2005                         }
2006                 } else {
2007                         network->bCcxRmEnable = false;
2008                 }
2009         }
2010         if (info_element->len > 4  &&
2011             info_element->data[0] == 0x00 &&
2012             info_element->data[1] == 0x40 &&
2013             info_element->data[2] == 0x96 &&
2014             info_element->data[3] == 0x03) {
2015                 if (info_element->len == 5) {
2016                         network->bWithCcxVerNum = true;
2017                         network->BssCcxVerNumber = info_element->data[4];
2018                 } else {
2019                         network->bWithCcxVerNum = false;
2020                         network->BssCcxVerNumber = 0;
2021                 }
2022         }
2023         if (info_element->len > 4  &&
2024             info_element->data[0] == 0x00 &&
2025             info_element->data[1] == 0x50 &&
2026             info_element->data[2] == 0xf2 &&
2027             info_element->data[3] == 0x04) {
2028                 netdev_dbg(ieee->dev, "MFIE_TYPE_WZC: %d bytes\n",
2029                            info_element->len);
2030                 network->wzc_ie_len = min(info_element->len+2, MAX_WZC_IE_LEN);
2031                 memcpy(network->wzc_ie, info_element, network->wzc_ie_len);
2032         }
2033 }
2034
2035 static void rtllib_parse_mfie_ht_cap(struct rtllib_info_element *info_element,
2036                                      struct rtllib_network *network,
2037                                      u16 *tmp_htcap_len)
2038 {
2039         struct bss_ht *ht = &network->bssht;
2040
2041         *tmp_htcap_len = min_t(u8, info_element->len, MAX_IE_LEN);
2042         if (*tmp_htcap_len != 0) {
2043                 ht->bdHTSpecVer = HT_SPEC_VER_EWC;
2044                 ht->bdHTCapLen = min_t(u16, *tmp_htcap_len,
2045                                        sizeof(ht->bdHTCapBuf));
2046                 memcpy(ht->bdHTCapBuf, info_element->data, ht->bdHTCapLen);
2047
2048                 ht->bdSupportHT = true;
2049                 ht->bdHT1R = ((((struct ht_capab_ele *)
2050                                 ht->bdHTCapBuf))->MCS[1]) == 0;
2051
2052                 ht->bdBandWidth = (enum ht_channel_width)
2053                                              (((struct ht_capab_ele *)
2054                                              (ht->bdHTCapBuf))->ChlWidth);
2055         } else {
2056                 ht->bdSupportHT = false;
2057                 ht->bdHT1R = false;
2058                 ht->bdBandWidth = HT_CHANNEL_WIDTH_20;
2059         }
2060 }
2061
2062 int rtllib_parse_info_param(struct rtllib_device *ieee,
2063                 struct rtllib_info_element *info_element,
2064                 u16 length,
2065                 struct rtllib_network *network,
2066                 struct rtllib_rx_stats *stats)
2067 {
2068         u8 i;
2069         short offset;
2070         u16     tmp_htcap_len = 0;
2071         u16     tmp_htinfo_len = 0;
2072         char rates_str[64];
2073         char *p;
2074
2075         while (length >= sizeof(*info_element)) {
2076                 if (sizeof(*info_element) + info_element->len > length) {
2077                         netdev_dbg(ieee->dev,
2078                                    "Info elem: parse failed: info_element->len + 2 > left : info_element->len+2=%zd left=%d, id=%d.\n",
2079                                    info_element->len + sizeof(*info_element),
2080                                    length, info_element->id);
2081                         /* We stop processing but don't return an error here
2082                          * because some misbehaviour APs break this rule. ie.
2083                          * Orinoco AP1000.
2084                          */
2085                         break;
2086                 }
2087
2088                 switch (info_element->id) {
2089                 case MFIE_TYPE_SSID:
2090                         if (rtllib_is_empty_essid(info_element->data,
2091                                                      info_element->len)) {
2092                                 network->flags |= NETWORK_EMPTY_ESSID;
2093                                 break;
2094                         }
2095
2096                         network->ssid_len = min(info_element->len,
2097                                                 (u8) IW_ESSID_MAX_SIZE);
2098                         memcpy(network->ssid, info_element->data,
2099                                network->ssid_len);
2100                         if (network->ssid_len < IW_ESSID_MAX_SIZE)
2101                                 memset(network->ssid + network->ssid_len, 0,
2102                                        IW_ESSID_MAX_SIZE - network->ssid_len);
2103
2104                         netdev_dbg(ieee->dev, "MFIE_TYPE_SSID: '%s' len=%d.\n",
2105                                    network->ssid, network->ssid_len);
2106                         break;
2107
2108                 case MFIE_TYPE_RATES:
2109                         p = rates_str;
2110                         network->rates_len = min(info_element->len,
2111                                                  MAX_RATES_LENGTH);
2112                         for (i = 0; i < network->rates_len; i++) {
2113                                 network->rates[i] = info_element->data[i];
2114                                 p += snprintf(p, sizeof(rates_str) -
2115                                               (p - rates_str), "%02X ",
2116                                               network->rates[i]);
2117                                 if (rtllib_is_ofdm_rate
2118                                     (info_element->data[i])) {
2119                                         network->flags |= NETWORK_HAS_OFDM;
2120                                         if (info_element->data[i] &
2121                                             RTLLIB_BASIC_RATE_MASK)
2122                                                 network->flags &=
2123                                                     ~NETWORK_HAS_CCK;
2124                                 }
2125
2126                                 if (rtllib_is_cck_rate
2127                                     (info_element->data[i])) {
2128                                         network->flags |= NETWORK_HAS_CCK;
2129                                 }
2130                         }
2131
2132                         netdev_dbg(ieee->dev, "MFIE_TYPE_RATES: '%s' (%d)\n",
2133                                    rates_str, network->rates_len);
2134                         break;
2135
2136                 case MFIE_TYPE_RATES_EX:
2137                         p = rates_str;
2138                         network->rates_ex_len = min(info_element->len,
2139                                                     MAX_RATES_EX_LENGTH);
2140                         for (i = 0; i < network->rates_ex_len; i++) {
2141                                 network->rates_ex[i] = info_element->data[i];
2142                                 p += snprintf(p, sizeof(rates_str) -
2143                                               (p - rates_str), "%02X ",
2144                                               network->rates_ex[i]);
2145                                 if (rtllib_is_ofdm_rate
2146                                     (info_element->data[i])) {
2147                                         network->flags |= NETWORK_HAS_OFDM;
2148                                         if (info_element->data[i] &
2149                                             RTLLIB_BASIC_RATE_MASK)
2150                                                 network->flags &=
2151                                                     ~NETWORK_HAS_CCK;
2152                                 }
2153                         }
2154
2155                         netdev_dbg(ieee->dev, "MFIE_TYPE_RATES_EX: '%s' (%d)\n",
2156                                    rates_str, network->rates_ex_len);
2157                         break;
2158
2159                 case MFIE_TYPE_DS_SET:
2160                         netdev_dbg(ieee->dev, "MFIE_TYPE_DS_SET: %d\n",
2161                                    info_element->data[0]);
2162                         network->channel = info_element->data[0];
2163                         break;
2164
2165                 case MFIE_TYPE_FH_SET:
2166                         netdev_dbg(ieee->dev, "MFIE_TYPE_FH_SET: ignored\n");
2167                         break;
2168
2169                 case MFIE_TYPE_CF_SET:
2170                         netdev_dbg(ieee->dev, "MFIE_TYPE_CF_SET: ignored\n");
2171                         break;
2172
2173                 case MFIE_TYPE_TIM:
2174                         if (info_element->len < 4)
2175                                 break;
2176
2177                         network->tim.tim_count = info_element->data[0];
2178                         network->tim.tim_period = info_element->data[1];
2179
2180                         network->dtim_period = info_element->data[1];
2181                         if (ieee->state != RTLLIB_LINKED)
2182                                 break;
2183                         network->last_dtim_sta_time = jiffies;
2184
2185                         network->dtim_data = RTLLIB_DTIM_VALID;
2186
2187
2188                         if (info_element->data[2] & 1)
2189                                 network->dtim_data |= RTLLIB_DTIM_MBCAST;
2190
2191                         offset = (info_element->data[2] >> 1)*2;
2192
2193
2194                         if (ieee->assoc_id < 8*offset ||
2195                             ieee->assoc_id > 8*(offset + info_element->len - 3))
2196                                 break;
2197
2198                         offset = (ieee->assoc_id / 8) - offset;
2199                         if (info_element->data[3 + offset] &
2200                            (1 << (ieee->assoc_id % 8)))
2201                                 network->dtim_data |= RTLLIB_DTIM_UCAST;
2202
2203                         network->listen_interval = network->dtim_period;
2204                         break;
2205
2206                 case MFIE_TYPE_ERP:
2207                         network->erp_value = info_element->data[0];
2208                         network->flags |= NETWORK_HAS_ERP_VALUE;
2209                         netdev_dbg(ieee->dev, "MFIE_TYPE_ERP_SET: %d\n",
2210                                    network->erp_value);
2211                         break;
2212                 case MFIE_TYPE_IBSS_SET:
2213                         network->atim_window = info_element->data[0];
2214                         netdev_dbg(ieee->dev, "MFIE_TYPE_IBSS_SET: %d\n",
2215                                    network->atim_window);
2216                         break;
2217
2218                 case MFIE_TYPE_CHALLENGE:
2219                         netdev_dbg(ieee->dev, "MFIE_TYPE_CHALLENGE: ignored\n");
2220                         break;
2221
2222                 case MFIE_TYPE_GENERIC:
2223                         netdev_dbg(ieee->dev, "MFIE_TYPE_GENERIC: %d bytes\n",
2224                                    info_element->len);
2225
2226                         rtllib_parse_mife_generic(ieee, info_element, network,
2227                                                   &tmp_htcap_len,
2228                                                   &tmp_htinfo_len);
2229                         break;
2230
2231                 case MFIE_TYPE_RSN:
2232                         netdev_dbg(ieee->dev, "MFIE_TYPE_RSN: %d bytes\n",
2233                                    info_element->len);
2234                         network->rsn_ie_len = min(info_element->len + 2,
2235                                                   MAX_WPA_IE_LEN);
2236                         memcpy(network->rsn_ie, info_element,
2237                                network->rsn_ie_len);
2238                         break;
2239
2240                 case MFIE_TYPE_HT_CAP:
2241                         netdev_dbg(ieee->dev, "MFIE_TYPE_HT_CAP: %d bytes\n",
2242                                    info_element->len);
2243
2244                         rtllib_parse_mfie_ht_cap(info_element, network,
2245                                                  &tmp_htcap_len);
2246                         break;
2247
2248
2249                 case MFIE_TYPE_HT_INFO:
2250                         netdev_dbg(ieee->dev, "MFIE_TYPE_HT_INFO: %d bytes\n",
2251                                    info_element->len);
2252                         tmp_htinfo_len = min_t(u8, info_element->len,
2253                                                MAX_IE_LEN);
2254                         if (tmp_htinfo_len) {
2255                                 network->bssht.bdHTSpecVer = HT_SPEC_VER_IEEE;
2256                                 network->bssht.bdHTInfoLen = tmp_htinfo_len >
2257                                         sizeof(network->bssht.bdHTInfoBuf) ?
2258                                         sizeof(network->bssht.bdHTInfoBuf) :
2259                                         tmp_htinfo_len;
2260                                 memcpy(network->bssht.bdHTInfoBuf,
2261                                        info_element->data,
2262                                        network->bssht.bdHTInfoLen);
2263                         }
2264                         break;
2265
2266                 case MFIE_TYPE_AIRONET:
2267                         netdev_dbg(ieee->dev, "MFIE_TYPE_AIRONET: %d bytes\n",
2268                                    info_element->len);
2269                         if (info_element->len > IE_CISCO_FLAG_POSITION) {
2270                                 network->bWithAironetIE = true;
2271
2272                                 if ((info_element->data[IE_CISCO_FLAG_POSITION]
2273                                      & SUPPORT_CKIP_MIC) ||
2274                                      (info_element->data[IE_CISCO_FLAG_POSITION]
2275                                      & SUPPORT_CKIP_PK))
2276                                         network->bCkipSupported = true;
2277                                 else
2278                                         network->bCkipSupported = false;
2279                         } else {
2280                                 network->bWithAironetIE = false;
2281                                 network->bCkipSupported = false;
2282                         }
2283                         break;
2284                 case MFIE_TYPE_QOS_PARAMETER:
2285                         netdev_err(ieee->dev,
2286                                    "QoS Error need to parse QOS_PARAMETER IE\n");
2287                         break;
2288
2289                 case MFIE_TYPE_COUNTRY:
2290                         netdev_dbg(ieee->dev, "MFIE_TYPE_COUNTRY: %d bytes\n",
2291                                    info_element->len);
2292                         rtllib_extract_country_ie(ieee, info_element, network,
2293                                                   network->bssid);
2294                         break;
2295 /* TODO */
2296                 default:
2297                         netdev_dbg(ieee->dev,
2298                                    "Unsupported info element: %s (%d)\n",
2299                                    get_info_element_string(info_element->id),
2300                                    info_element->id);
2301                         break;
2302                 }
2303
2304                 length -= sizeof(*info_element) + info_element->len;
2305                 info_element =
2306                     (struct rtllib_info_element *)&info_element->
2307                     data[info_element->len];
2308         }
2309
2310         if (!network->atheros_cap_exist && !network->broadcom_cap_exist &&
2311             !network->cisco_cap_exist && !network->ralink_cap_exist &&
2312             !network->bssht.bdRT2RTAggregation)
2313                 network->unknown_cap_exist = true;
2314         else
2315                 network->unknown_cap_exist = false;
2316         return 0;
2317 }
2318
2319 static long rtllib_translate_todbm(u8 signal_strength_index)
2320 {
2321         long    signal_power;
2322
2323         signal_power = (long)((signal_strength_index + 1) >> 1);
2324         signal_power -= 95;
2325
2326         return signal_power;
2327 }
2328
2329 static inline int rtllib_network_init(
2330         struct rtllib_device *ieee,
2331         struct rtllib_probe_response *beacon,
2332         struct rtllib_network *network,
2333         struct rtllib_rx_stats *stats)
2334 {
2335         memset(&network->qos_data, 0, sizeof(struct rtllib_qos_data));
2336
2337         /* Pull out fixed field data */
2338         ether_addr_copy(network->bssid, beacon->header.addr3);
2339         network->capability = le16_to_cpu(beacon->capability);
2340         network->last_scanned = jiffies;
2341         network->time_stamp[0] = beacon->time_stamp[0];
2342         network->time_stamp[1] = beacon->time_stamp[1];
2343         network->beacon_interval = le16_to_cpu(beacon->beacon_interval);
2344         /* Where to pull this? beacon->listen_interval;*/
2345         network->listen_interval = 0x0A;
2346         network->rates_len = network->rates_ex_len = 0;
2347         network->ssid_len = 0;
2348         network->hidden_ssid_len = 0;
2349         memset(network->hidden_ssid, 0, sizeof(network->hidden_ssid));
2350         network->flags = 0;
2351         network->atim_window = 0;
2352         network->erp_value = (network->capability & WLAN_CAPABILITY_IBSS) ?
2353             0x3 : 0x0;
2354         network->berp_info_valid = false;
2355         network->broadcom_cap_exist = false;
2356         network->ralink_cap_exist = false;
2357         network->atheros_cap_exist = false;
2358         network->cisco_cap_exist = false;
2359         network->unknown_cap_exist = false;
2360         network->realtek_cap_exit = false;
2361         network->marvell_cap_exist = false;
2362         network->airgo_cap_exist = false;
2363         network->Turbo_Enable = 0;
2364         network->SignalStrength = stats->SignalStrength;
2365         network->RSSI = stats->SignalStrength;
2366         network->CountryIeLen = 0;
2367         memset(network->CountryIeBuf, 0, MAX_IE_LEN);
2368         HTInitializeBssDesc(&network->bssht);
2369         if (stats->freq == RTLLIB_52GHZ_BAND) {
2370                 /* for A band (No DS info) */
2371                 network->channel = stats->received_channel;
2372         } else
2373                 network->flags |= NETWORK_HAS_CCK;
2374
2375         network->wpa_ie_len = 0;
2376         network->rsn_ie_len = 0;
2377         network->wzc_ie_len = 0;
2378
2379         if (rtllib_parse_info_param(ieee,
2380                         beacon->info_element,
2381                         (stats->len - sizeof(*beacon)),
2382                         network,
2383                         stats))
2384                 return 1;
2385
2386         network->mode = 0;
2387         if (stats->freq == RTLLIB_52GHZ_BAND)
2388                 network->mode = IEEE_A;
2389         else {
2390                 if (network->flags & NETWORK_HAS_OFDM)
2391                         network->mode |= IEEE_G;
2392                 if (network->flags & NETWORK_HAS_CCK)
2393                         network->mode |= IEEE_B;
2394         }
2395
2396         if (network->mode == 0) {
2397                 netdev_dbg(ieee->dev, "Filtered out '%s (%pM)' network.\n",
2398                            escape_essid(network->ssid, network->ssid_len),
2399                            network->bssid);
2400                 return 1;
2401         }
2402
2403         if (network->bssht.bdSupportHT) {
2404                 if (network->mode == IEEE_A)
2405                         network->mode = IEEE_N_5G;
2406                 else if (network->mode & (IEEE_G | IEEE_B))
2407                         network->mode = IEEE_N_24G;
2408         }
2409         if (rtllib_is_empty_essid(network->ssid, network->ssid_len))
2410                 network->flags |= NETWORK_EMPTY_ESSID;
2411         stats->signal = 30 + (stats->SignalStrength * 70) / 100;
2412         stats->noise = rtllib_translate_todbm((u8)(100-stats->signal)) - 25;
2413
2414         memcpy(&network->stats, stats, sizeof(network->stats));
2415
2416         return 0;
2417 }
2418
2419 static inline int is_same_network(struct rtllib_network *src,
2420                                   struct rtllib_network *dst, u8 ssidbroad)
2421 {
2422         /* A network is only a duplicate if the channel, BSSID, ESSID
2423          * and the capability field (in particular IBSS and BSS) all match.
2424          * We treat all <hidden> with the same BSSID and channel
2425          * as one network
2426          */
2427         return (((src->ssid_len == dst->ssid_len) || (!ssidbroad)) &&
2428                 (src->channel == dst->channel) &&
2429                 !memcmp(src->bssid, dst->bssid, ETH_ALEN) &&
2430                 (!memcmp(src->ssid, dst->ssid, src->ssid_len) ||
2431                 (!ssidbroad)) &&
2432                 ((src->capability & WLAN_CAPABILITY_IBSS) ==
2433                 (dst->capability & WLAN_CAPABILITY_IBSS)) &&
2434                 ((src->capability & WLAN_CAPABILITY_ESS) ==
2435                 (dst->capability & WLAN_CAPABILITY_ESS)));
2436 }
2437
2438
2439 static inline void update_network(struct rtllib_device *ieee,
2440                                   struct rtllib_network *dst,
2441                                   struct rtllib_network *src)
2442 {
2443         int qos_active;
2444         u8 old_param;
2445
2446         memcpy(&dst->stats, &src->stats, sizeof(struct rtllib_rx_stats));
2447         dst->capability = src->capability;
2448         memcpy(dst->rates, src->rates, src->rates_len);
2449         dst->rates_len = src->rates_len;
2450         memcpy(dst->rates_ex, src->rates_ex, src->rates_ex_len);
2451         dst->rates_ex_len = src->rates_ex_len;
2452         if (src->ssid_len > 0) {
2453                 if (dst->ssid_len == 0) {
2454                         memset(dst->hidden_ssid, 0, sizeof(dst->hidden_ssid));
2455                         dst->hidden_ssid_len = src->ssid_len;
2456                         memcpy(dst->hidden_ssid, src->ssid, src->ssid_len);
2457                 } else {
2458                         memset(dst->ssid, 0, dst->ssid_len);
2459                         dst->ssid_len = src->ssid_len;
2460                         memcpy(dst->ssid, src->ssid, src->ssid_len);
2461                 }
2462         }
2463         dst->mode = src->mode;
2464         dst->flags = src->flags;
2465         dst->time_stamp[0] = src->time_stamp[0];
2466         dst->time_stamp[1] = src->time_stamp[1];
2467         if (src->flags & NETWORK_HAS_ERP_VALUE) {
2468                 dst->erp_value = src->erp_value;
2469                 dst->berp_info_valid = src->berp_info_valid = true;
2470         }
2471         dst->beacon_interval = src->beacon_interval;
2472         dst->listen_interval = src->listen_interval;
2473         dst->atim_window = src->atim_window;
2474         dst->dtim_period = src->dtim_period;
2475         dst->dtim_data = src->dtim_data;
2476         dst->last_dtim_sta_time = src->last_dtim_sta_time;
2477         memcpy(&dst->tim, &src->tim, sizeof(struct rtllib_tim_parameters));
2478
2479         dst->bssht.bdSupportHT = src->bssht.bdSupportHT;
2480         dst->bssht.bdRT2RTAggregation = src->bssht.bdRT2RTAggregation;
2481         dst->bssht.bdHTCapLen = src->bssht.bdHTCapLen;
2482         memcpy(dst->bssht.bdHTCapBuf, src->bssht.bdHTCapBuf,
2483                src->bssht.bdHTCapLen);
2484         dst->bssht.bdHTInfoLen = src->bssht.bdHTInfoLen;
2485         memcpy(dst->bssht.bdHTInfoBuf, src->bssht.bdHTInfoBuf,
2486                src->bssht.bdHTInfoLen);
2487         dst->bssht.bdHTSpecVer = src->bssht.bdHTSpecVer;
2488         dst->bssht.bdRT2RTLongSlotTime = src->bssht.bdRT2RTLongSlotTime;
2489         dst->broadcom_cap_exist = src->broadcom_cap_exist;
2490         dst->ralink_cap_exist = src->ralink_cap_exist;
2491         dst->atheros_cap_exist = src->atheros_cap_exist;
2492         dst->realtek_cap_exit = src->realtek_cap_exit;
2493         dst->marvell_cap_exist = src->marvell_cap_exist;
2494         dst->cisco_cap_exist = src->cisco_cap_exist;
2495         dst->airgo_cap_exist = src->airgo_cap_exist;
2496         dst->unknown_cap_exist = src->unknown_cap_exist;
2497         memcpy(dst->wpa_ie, src->wpa_ie, src->wpa_ie_len);
2498         dst->wpa_ie_len = src->wpa_ie_len;
2499         memcpy(dst->rsn_ie, src->rsn_ie, src->rsn_ie_len);
2500         dst->rsn_ie_len = src->rsn_ie_len;
2501         memcpy(dst->wzc_ie, src->wzc_ie, src->wzc_ie_len);
2502         dst->wzc_ie_len = src->wzc_ie_len;
2503
2504         dst->last_scanned = jiffies;
2505         /* qos related parameters */
2506         qos_active = dst->qos_data.active;
2507         old_param = dst->qos_data.param_count;
2508         dst->qos_data.supported = src->qos_data.supported;
2509         if (dst->flags & NETWORK_HAS_QOS_PARAMETERS)
2510                 memcpy(&dst->qos_data, &src->qos_data,
2511                        sizeof(struct rtllib_qos_data));
2512         if (dst->qos_data.supported == 1) {
2513                 if (dst->ssid_len)
2514                         netdev_dbg(ieee->dev,
2515                                    "QoS the network %s is QoS supported\n",
2516                                    dst->ssid);
2517                 else
2518                         netdev_dbg(ieee->dev,
2519                                    "QoS the network is QoS supported\n");
2520         }
2521         dst->qos_data.active = qos_active;
2522         dst->qos_data.old_param_count = old_param;
2523
2524         dst->wmm_info = src->wmm_info;
2525         if (src->wmm_param[0].ac_aci_acm_aifsn ||
2526            src->wmm_param[1].ac_aci_acm_aifsn ||
2527            src->wmm_param[2].ac_aci_acm_aifsn ||
2528            src->wmm_param[3].ac_aci_acm_aifsn)
2529                 memcpy(dst->wmm_param, src->wmm_param, WME_AC_PRAM_LEN);
2530
2531         dst->SignalStrength = src->SignalStrength;
2532         dst->RSSI = src->RSSI;
2533         dst->Turbo_Enable = src->Turbo_Enable;
2534
2535         dst->CountryIeLen = src->CountryIeLen;
2536         memcpy(dst->CountryIeBuf, src->CountryIeBuf, src->CountryIeLen);
2537
2538         dst->bWithAironetIE = src->bWithAironetIE;
2539         dst->bCkipSupported = src->bCkipSupported;
2540         memcpy(dst->CcxRmState, src->CcxRmState, 2);
2541         dst->bCcxRmEnable = src->bCcxRmEnable;
2542         dst->MBssidMask = src->MBssidMask;
2543         dst->bMBssidValid = src->bMBssidValid;
2544         memcpy(dst->MBssid, src->MBssid, 6);
2545         dst->bWithCcxVerNum = src->bWithCcxVerNum;
2546         dst->BssCcxVerNumber = src->BssCcxVerNumber;
2547 }
2548
2549 static inline int is_beacon(u16 fc)
2550 {
2551         return (WLAN_FC_GET_STYPE(fc) == RTLLIB_STYPE_BEACON);
2552 }
2553
2554 static int IsPassiveChannel(struct rtllib_device *rtllib, u8 channel)
2555 {
2556         if (channel > MAX_CHANNEL_NUMBER) {
2557                 netdev_info(rtllib->dev, "%s(): Invalid Channel\n", __func__);
2558                 return 0;
2559         }
2560
2561         if (rtllib->active_channel_map[channel] == 2)
2562                 return 1;
2563
2564         return 0;
2565 }
2566
2567 int rtllib_legal_channel(struct rtllib_device *rtllib, u8 channel)
2568 {
2569         if (channel > MAX_CHANNEL_NUMBER) {
2570                 netdev_info(rtllib->dev, "%s(): Invalid Channel\n", __func__);
2571                 return 0;
2572         }
2573         if (rtllib->active_channel_map[channel] > 0)
2574                 return 1;
2575
2576         return 0;
2577 }
2578 EXPORT_SYMBOL(rtllib_legal_channel);
2579
2580 static inline void rtllib_process_probe_response(
2581         struct rtllib_device *ieee,
2582         struct rtllib_probe_response *beacon,
2583         struct rtllib_rx_stats *stats)
2584 {
2585         struct rtllib_network *target;
2586         struct rtllib_network *oldest = NULL;
2587         struct rtllib_info_element *info_element = &beacon->info_element[0];
2588         unsigned long flags;
2589         short renew;
2590         struct rtllib_network *network = kzalloc(sizeof(struct rtllib_network),
2591                                                  GFP_ATOMIC);
2592         u16 frame_ctl = le16_to_cpu(beacon->header.frame_ctl);
2593
2594         if (!network)
2595                 return;
2596
2597         netdev_dbg(ieee->dev,
2598                    "'%s' ( %pM ): %c%c%c%c %c%c%c%c-%c%c%c%c %c%c%c%c\n",
2599                    escape_essid(info_element->data, info_element->len),
2600                    beacon->header.addr3,
2601                    (le16_to_cpu(beacon->capability) & (1<<0xf)) ? '1' : '0',
2602                    (le16_to_cpu(beacon->capability) & (1<<0xe)) ? '1' : '0',
2603                    (le16_to_cpu(beacon->capability) & (1<<0xd)) ? '1' : '0',
2604                    (le16_to_cpu(beacon->capability) & (1<<0xc)) ? '1' : '0',
2605                    (le16_to_cpu(beacon->capability) & (1<<0xb)) ? '1' : '0',
2606                    (le16_to_cpu(beacon->capability) & (1<<0xa)) ? '1' : '0',
2607                    (le16_to_cpu(beacon->capability) & (1<<0x9)) ? '1' : '0',
2608                    (le16_to_cpu(beacon->capability) & (1<<0x8)) ? '1' : '0',
2609                    (le16_to_cpu(beacon->capability) & (1<<0x7)) ? '1' : '0',
2610                    (le16_to_cpu(beacon->capability) & (1<<0x6)) ? '1' : '0',
2611                    (le16_to_cpu(beacon->capability) & (1<<0x5)) ? '1' : '0',
2612                    (le16_to_cpu(beacon->capability) & (1<<0x4)) ? '1' : '0',
2613                    (le16_to_cpu(beacon->capability) & (1<<0x3)) ? '1' : '0',
2614                    (le16_to_cpu(beacon->capability) & (1<<0x2)) ? '1' : '0',
2615                    (le16_to_cpu(beacon->capability) & (1<<0x1)) ? '1' : '0',
2616                    (le16_to_cpu(beacon->capability) & (1<<0x0)) ? '1' : '0');
2617
2618         if (rtllib_network_init(ieee, beacon, network, stats)) {
2619                 netdev_dbg(ieee->dev, "Dropped '%s' ( %pM) via %s.\n",
2620                            escape_essid(info_element->data, info_element->len),
2621                            beacon->header.addr3,
2622                            is_beacon(frame_ctl) ? "BEACON" : "PROBE RESPONSE");
2623                 goto free_network;
2624         }
2625
2626
2627         if (!rtllib_legal_channel(ieee, network->channel))
2628                 goto free_network;
2629
2630         if (WLAN_FC_GET_STYPE(frame_ctl) == RTLLIB_STYPE_PROBE_RESP) {
2631                 if (IsPassiveChannel(ieee, network->channel)) {
2632                         netdev_info(ieee->dev,
2633                                     "GetScanInfo(): For Global Domain, filter probe response at channel(%d).\n",
2634                                     network->channel);
2635                         goto free_network;
2636                 }
2637         }
2638
2639         /* The network parsed correctly -- so now we scan our known networks
2640          * to see if we can find it in our list.
2641          *
2642          * NOTE:  This search is definitely not optimized.  Once its doing
2643          *      the "right thing" we'll optimize it for efficiency if
2644          *      necessary
2645          */
2646
2647         /* Search for this entry in the list and update it if it is
2648          * already there.
2649          */
2650
2651         spin_lock_irqsave(&ieee->lock, flags);
2652         if (is_same_network(&ieee->current_network, network,
2653            (network->ssid_len ? 1 : 0))) {
2654                 update_network(ieee, &ieee->current_network, network);
2655                 if ((ieee->current_network.mode == IEEE_N_24G ||
2656                      ieee->current_network.mode == IEEE_G)
2657                      && ieee->current_network.berp_info_valid) {
2658                         if (ieee->current_network.erp_value & ERP_UseProtection)
2659                                 ieee->current_network.buseprotection = true;
2660                         else
2661                                 ieee->current_network.buseprotection = false;
2662                 }
2663                 if (is_beacon(frame_ctl)) {
2664                         if (ieee->state >= RTLLIB_LINKED)
2665                                 ieee->LinkDetectInfo.NumRecvBcnInPeriod++;
2666                 }
2667         }
2668         list_for_each_entry(target, &ieee->network_list, list) {
2669                 if (is_same_network(target, network,
2670                    (target->ssid_len ? 1 : 0)))
2671                         break;
2672                 if ((oldest == NULL) ||
2673                     (target->last_scanned < oldest->last_scanned))
2674                         oldest = target;
2675         }
2676
2677         /* If we didn't find a match, then get a new network slot to initialize
2678          * with this beacon's information
2679          */
2680         if (&target->list == &ieee->network_list) {
2681                 if (list_empty(&ieee->network_free_list)) {
2682                         /* If there are no more slots, expire the oldest */
2683                         list_del(&oldest->list);
2684                         target = oldest;
2685                         netdev_dbg(ieee->dev,
2686                                    "Expired '%s' ( %pM) from network list.\n",
2687                                    escape_essid(target->ssid, target->ssid_len),
2688                                    target->bssid);
2689                 } else {
2690                         /* Otherwise just pull from the free list */
2691                         target = list_entry(ieee->network_free_list.next,
2692                                             struct rtllib_network, list);
2693                         list_del(ieee->network_free_list.next);
2694                 }
2695
2696                 netdev_dbg(ieee->dev, "Adding '%s' ( %pM) via %s.\n",
2697                            escape_essid(network->ssid, network->ssid_len),
2698                            network->bssid,
2699                            is_beacon(frame_ctl) ? "BEACON" : "PROBE RESPONSE");
2700
2701                 memcpy(target, network, sizeof(*target));
2702                 list_add_tail(&target->list, &ieee->network_list);
2703                 if (ieee->softmac_features & IEEE_SOFTMAC_ASSOCIATE)
2704                         rtllib_softmac_new_net(ieee, network);
2705         } else {
2706                 netdev_dbg(ieee->dev, "Updating '%s' ( %pM) via %s.\n",
2707                            escape_essid(target->ssid, target->ssid_len),
2708                            target->bssid,
2709                            is_beacon(frame_ctl) ? "BEACON" : "PROBE RESPONSE");
2710
2711                 /* we have an entry and we are going to update it. But this
2712                  *  entry may be already expired. In this case we do the same
2713                  * as we found a new net and call the new_net handler
2714                  */
2715                 renew = !time_after(target->last_scanned + ieee->scan_age,
2716                                     jiffies);
2717                 if ((!target->ssid_len) &&
2718                     (((network->ssid_len > 0) && (target->hidden_ssid_len == 0))
2719                     || ((ieee->current_network.ssid_len == network->ssid_len) &&
2720                     (strncmp(ieee->current_network.ssid, network->ssid,
2721                     network->ssid_len) == 0) &&
2722                     (ieee->state == RTLLIB_NOLINK))))
2723                         renew = 1;
2724                 update_network(ieee, target, network);
2725                 if (renew && (ieee->softmac_features & IEEE_SOFTMAC_ASSOCIATE))
2726                         rtllib_softmac_new_net(ieee, network);
2727         }
2728
2729         spin_unlock_irqrestore(&ieee->lock, flags);
2730         if (is_beacon(frame_ctl) &&
2731             is_same_network(&ieee->current_network, network,
2732             (network->ssid_len ? 1 : 0)) &&
2733             (ieee->state == RTLLIB_LINKED)) {
2734                 if (ieee->handle_beacon != NULL)
2735                         ieee->handle_beacon(ieee->dev, beacon,
2736                                             &ieee->current_network);
2737         }
2738 free_network:
2739         kfree(network);
2740 }
2741
2742 static void rtllib_rx_mgt(struct rtllib_device *ieee,
2743                           struct sk_buff *skb,
2744                           struct rtllib_rx_stats *stats)
2745 {
2746         struct rtllib_hdr_4addr *header = (struct rtllib_hdr_4addr *)skb->data;
2747
2748         if ((WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) !=
2749             RTLLIB_STYPE_PROBE_RESP) &&
2750             (WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)) !=
2751             RTLLIB_STYPE_BEACON))
2752                 ieee->last_rx_ps_time = jiffies;
2753
2754         switch (WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl))) {
2755
2756         case RTLLIB_STYPE_BEACON:
2757                 netdev_dbg(ieee->dev, "received BEACON (%d)\n",
2758                            WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)));
2759                 rtllib_process_probe_response(
2760                                 ieee, (struct rtllib_probe_response *)header,
2761                                 stats);
2762
2763                 if (ieee->sta_sleep || (ieee->ps != RTLLIB_PS_DISABLED &&
2764                     ieee->iw_mode == IW_MODE_INFRA &&
2765                     ieee->state == RTLLIB_LINKED))
2766                         tasklet_schedule(&ieee->ps_task);
2767
2768                 break;
2769
2770         case RTLLIB_STYPE_PROBE_RESP:
2771                 netdev_dbg(ieee->dev, "received PROBE RESPONSE (%d)\n",
2772                            WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)));
2773                 rtllib_process_probe_response(ieee,
2774                               (struct rtllib_probe_response *)header, stats);
2775                 break;
2776         case RTLLIB_STYPE_PROBE_REQ:
2777                 netdev_dbg(ieee->dev, "received PROBE RESQUEST (%d)\n",
2778                            WLAN_FC_GET_STYPE(le16_to_cpu(header->frame_ctl)));
2779                 if ((ieee->softmac_features & IEEE_SOFTMAC_PROBERS) &&
2780                     ((ieee->iw_mode == IW_MODE_ADHOC ||
2781                     ieee->iw_mode == IW_MODE_MASTER) &&
2782                     ieee->state == RTLLIB_LINKED))
2783                         rtllib_rx_probe_rq(ieee, skb);
2784                 break;
2785         }
2786 }