Staging: rt3070: remove dead DOT11N_DRAFT3 code
[linux-2.6] / drivers / staging / rt3070 / common / cmm_sanity.c
1 /*
2  *************************************************************************
3  * Ralink Tech Inc.
4  * 5F., No.36, Taiyuan St., Jhubei City,
5  * Hsinchu County 302,
6  * Taiwan, R.O.C.
7  *
8  * (c) Copyright 2002-2007, Ralink Technology, Inc.
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 as published by  *
12  * the Free Software Foundation; either version 2 of the License, or     *
13  * (at your option) any later version.                                   *
14  *                                                                       *
15  * This program is distributed in the hope that it will be useful,       *
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of        *
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
18  * GNU General Public License for more details.                          *
19  *                                                                       *
20  * You should have received a copy of the GNU General Public License     *
21  * along with this program; if not, write to the                         *
22  * Free Software Foundation, Inc.,                                       *
23  * 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
24  *                                                                       *
25  *************************************************************************
26
27         Module Name:
28         sanity.c
29
30         Abstract:
31
32         Revision History:
33         Who                     When                    What
34         --------        ----------              ----------------------------------------------
35         John Chang  2004-09-01      add WMM support
36 */
37 #include "../rt_config.h"
38
39
40 extern UCHAR    CISCO_OUI[];
41
42 extern UCHAR    WPA_OUI[];
43 extern UCHAR    RSN_OUI[];
44 extern UCHAR    WME_INFO_ELEM[];
45 extern UCHAR    WME_PARM_ELEM[];
46 extern UCHAR    Ccx2QosInfo[];
47 extern UCHAR    RALINK_OUI[];
48 extern UCHAR    BROADCOM_OUI[];
49 extern UCHAR    WPS_OUI[];
50
51 /*
52     ==========================================================================
53     Description:
54         MLME message sanity check
55     Return:
56         TRUE if all parameters are OK, FALSE otherwise
57
58         IRQL = DISPATCH_LEVEL
59
60     ==========================================================================
61  */
62 BOOLEAN MlmeAddBAReqSanity(
63     IN PRTMP_ADAPTER pAd,
64     IN VOID *Msg,
65     IN ULONG MsgLen,
66     OUT PUCHAR pAddr2)
67 {
68     PMLME_ADDBA_REQ_STRUCT   pInfo;
69
70     pInfo = (MLME_ADDBA_REQ_STRUCT *)Msg;
71
72     if ((MsgLen != sizeof(MLME_ADDBA_REQ_STRUCT)))
73     {
74         DBGPRINT(RT_DEBUG_TRACE, ("MlmeAddBAReqSanity fail - message lenght not correct.\n"));
75         return FALSE;
76     }
77
78     if ((pInfo->Wcid >= MAX_LEN_OF_MAC_TABLE))
79     {
80         DBGPRINT(RT_DEBUG_TRACE, ("MlmeAddBAReqSanity fail - The peer Mac is not associated yet.\n"));
81         return FALSE;
82     }
83
84         /*
85     if ((pInfo->BaBufSize > MAX_RX_REORDERBUF) || (pInfo->BaBufSize < 2))
86     {
87         DBGPRINT(RT_DEBUG_TRACE, ("MlmeAddBAReqSanity fail - Rx Reordering buffer too big or too small\n"));
88         return FALSE;
89     }
90         */
91
92     if ((pInfo->pAddr[0]&0x01) == 0x01)
93     {
94         DBGPRINT(RT_DEBUG_TRACE, ("MlmeAddBAReqSanity fail - broadcast address not support BA\n"));
95         return FALSE;
96     }
97
98     return TRUE;
99 }
100
101 /*
102     ==========================================================================
103     Description:
104         MLME message sanity check
105     Return:
106         TRUE if all parameters are OK, FALSE otherwise
107
108         IRQL = DISPATCH_LEVEL
109
110     ==========================================================================
111  */
112 BOOLEAN MlmeDelBAReqSanity(
113     IN PRTMP_ADAPTER pAd,
114     IN VOID *Msg,
115     IN ULONG MsgLen)
116 {
117         MLME_DELBA_REQ_STRUCT *pInfo;
118         pInfo = (MLME_DELBA_REQ_STRUCT *)Msg;
119
120     if ((MsgLen != sizeof(MLME_DELBA_REQ_STRUCT)))
121     {
122         DBGPRINT(RT_DEBUG_ERROR, ("MlmeDelBAReqSanity fail - message lenght not correct.\n"));
123         return FALSE;
124     }
125
126     if ((pInfo->Wcid >= MAX_LEN_OF_MAC_TABLE))
127     {
128         DBGPRINT(RT_DEBUG_ERROR, ("MlmeDelBAReqSanity fail - The peer Mac is not associated yet.\n"));
129         return FALSE;
130     }
131
132     if ((pInfo->TID & 0xf0))
133     {
134         DBGPRINT(RT_DEBUG_ERROR, ("MlmeDelBAReqSanity fail - The peer TID is incorrect.\n"));
135         return FALSE;
136     }
137
138         if (NdisEqualMemory(pAd->MacTab.Content[pInfo->Wcid].Addr, pInfo->Addr, MAC_ADDR_LEN) == 0)
139     {
140         DBGPRINT(RT_DEBUG_ERROR, ("MlmeDelBAReqSanity fail - the peer addr dosen't exist.\n"));
141         return FALSE;
142     }
143
144     return TRUE;
145 }
146
147 BOOLEAN PeerAddBAReqActionSanity(
148     IN PRTMP_ADAPTER pAd,
149     IN VOID *pMsg,
150     IN ULONG MsgLen,
151         OUT PUCHAR pAddr2)
152 {
153         PFRAME_802_11 pFrame = (PFRAME_802_11)pMsg;
154         PFRAME_ADDBA_REQ pAddFrame;
155         pAddFrame = (PFRAME_ADDBA_REQ)(pMsg);
156         if (MsgLen < (sizeof(FRAME_ADDBA_REQ)))
157         {
158                 DBGPRINT(RT_DEBUG_ERROR,("PeerAddBAReqActionSanity: ADDBA Request frame length size = %ld incorrect\n", MsgLen));
159                 return FALSE;
160         }
161         // we support immediate BA.
162         *(USHORT *)(&pAddFrame->BaParm) = cpu2le16(*(USHORT *)(&pAddFrame->BaParm));
163         pAddFrame->TimeOutValue = cpu2le16(pAddFrame->TimeOutValue);
164         pAddFrame->BaStartSeq.word = cpu2le16(pAddFrame->BaStartSeq.word);
165
166         if (pAddFrame->BaParm.BAPolicy != IMMED_BA)
167         {
168                 DBGPRINT(RT_DEBUG_ERROR,("PeerAddBAReqActionSanity: ADDBA Request Ba Policy[%d] not support\n", pAddFrame->BaParm.BAPolicy));
169                 DBGPRINT(RT_DEBUG_ERROR,("ADDBA Request. tid=%x, Bufsize=%x, AMSDUSupported=%x \n", pAddFrame->BaParm.TID, pAddFrame->BaParm.BufSize, pAddFrame->BaParm.AMSDUSupported));
170                 return FALSE;
171         }
172
173         // we support immediate BA.
174         if (pAddFrame->BaParm.TID &0xfff0)
175         {
176                 DBGPRINT(RT_DEBUG_ERROR,("PeerAddBAReqActionSanity: ADDBA Request incorrect TID = %d\n", pAddFrame->BaParm.TID));
177                 return FALSE;
178         }
179         COPY_MAC_ADDR(pAddr2, pFrame->Hdr.Addr2);
180         return TRUE;
181 }
182
183 BOOLEAN PeerAddBARspActionSanity(
184     IN PRTMP_ADAPTER pAd,
185     IN VOID *pMsg,
186     IN ULONG MsgLen)
187 {
188         //PFRAME_802_11 pFrame = (PFRAME_802_11)pMsg;
189         PFRAME_ADDBA_RSP pAddFrame;
190
191         pAddFrame = (PFRAME_ADDBA_RSP)(pMsg);
192         if (MsgLen < (sizeof(FRAME_ADDBA_RSP)))
193         {
194                 DBGPRINT(RT_DEBUG_ERROR,("PeerAddBARspActionSanity: ADDBA Response frame length size = %ld incorrect\n", MsgLen));
195                 return FALSE;
196         }
197         // we support immediate BA.
198         *(USHORT *)(&pAddFrame->BaParm) = cpu2le16(*(USHORT *)(&pAddFrame->BaParm));
199         pAddFrame->StatusCode = cpu2le16(pAddFrame->StatusCode);
200         pAddFrame->TimeOutValue = cpu2le16(pAddFrame->TimeOutValue);
201
202         if (pAddFrame->BaParm.BAPolicy != IMMED_BA)
203         {
204                 DBGPRINT(RT_DEBUG_ERROR,("PeerAddBAReqActionSanity: ADDBA Response Ba Policy[%d] not support\n", pAddFrame->BaParm.BAPolicy));
205                 return FALSE;
206         }
207
208         // we support immediate BA.
209         if (pAddFrame->BaParm.TID &0xfff0)
210         {
211                 DBGPRINT(RT_DEBUG_ERROR,("PeerAddBARspActionSanity: ADDBA Response incorrect TID = %d\n", pAddFrame->BaParm.TID));
212                 return FALSE;
213         }
214         return TRUE;
215
216 }
217
218 BOOLEAN PeerDelBAActionSanity(
219     IN PRTMP_ADAPTER pAd,
220     IN UCHAR Wcid,
221     IN VOID *pMsg,
222     IN ULONG MsgLen )
223 {
224         //PFRAME_802_11 pFrame = (PFRAME_802_11)pMsg;
225         PFRAME_DELBA_REQ  pDelFrame;
226         if (MsgLen != (sizeof(FRAME_DELBA_REQ)))
227                 return FALSE;
228
229         if (Wcid >= MAX_LEN_OF_MAC_TABLE)
230                 return FALSE;
231
232         pDelFrame = (PFRAME_DELBA_REQ)(pMsg);
233
234         *(USHORT *)(&pDelFrame->DelbaParm) = cpu2le16(*(USHORT *)(&pDelFrame->DelbaParm));
235         pDelFrame->ReasonCode = cpu2le16(pDelFrame->ReasonCode);
236
237         if (pDelFrame->DelbaParm.TID &0xfff0)
238                 return FALSE;
239
240         return TRUE;
241 }
242
243 /*
244     ==========================================================================
245     Description:
246         MLME message sanity check
247     Return:
248         TRUE if all parameters are OK, FALSE otherwise
249
250         IRQL = DISPATCH_LEVEL
251
252     ==========================================================================
253  */
254 BOOLEAN PeerBeaconAndProbeRspSanity(
255     IN PRTMP_ADAPTER pAd,
256     IN VOID *Msg,
257     IN ULONG MsgLen,
258     IN UCHAR  MsgChannel,
259     OUT PUCHAR pAddr2,
260     OUT PUCHAR pBssid,
261     OUT CHAR Ssid[],
262     OUT UCHAR *pSsidLen,
263     OUT UCHAR *pBssType,
264     OUT USHORT *pBeaconPeriod,
265     OUT UCHAR *pChannel,
266     OUT UCHAR *pNewChannel,
267     OUT LARGE_INTEGER *pTimestamp,
268     OUT CF_PARM *pCfParm,
269     OUT USHORT *pAtimWin,
270     OUT USHORT *pCapabilityInfo,
271     OUT UCHAR *pErp,
272     OUT UCHAR *pDtimCount,
273     OUT UCHAR *pDtimPeriod,
274     OUT UCHAR *pBcastFlag,
275     OUT UCHAR *pMessageToMe,
276     OUT UCHAR SupRate[],
277     OUT UCHAR *pSupRateLen,
278     OUT UCHAR ExtRate[],
279     OUT UCHAR *pExtRateLen,
280     OUT UCHAR *pCkipFlag,
281     OUT UCHAR *pAironetCellPowerLimit,
282     OUT PEDCA_PARM       pEdcaParm,
283     OUT PQBSS_LOAD_PARM  pQbssLoad,
284     OUT PQOS_CAPABILITY_PARM pQosCapability,
285     OUT ULONG *pRalinkIe,
286     OUT UCHAR            *pHtCapabilityLen,
287 #ifdef CONFIG_STA_SUPPORT
288     OUT UCHAR            *pPreNHtCapabilityLen,
289 #endif // CONFIG_STA_SUPPORT //
290     OUT HT_CAPABILITY_IE *pHtCapability,
291         OUT UCHAR                *AddHtInfoLen,
292         OUT ADD_HT_INFO_IE *AddHtInfo,
293         OUT UCHAR *NewExtChannelOffset,         // Ht extension channel offset(above or below)
294     OUT USHORT *LengthVIE,
295     OUT PNDIS_802_11_VARIABLE_IEs pVIE)
296 {
297     CHAR                                *Ptr;
298 #ifdef CONFIG_STA_SUPPORT
299         CHAR                            TimLen;
300 #endif // CONFIG_STA_SUPPORT //
301     PFRAME_802_11               pFrame;
302     PEID_STRUCT         pEid;
303     UCHAR                               SubType;
304     UCHAR                               Sanity;
305     //UCHAR                             ECWMin, ECWMax;
306     //MAC_CSR9_STRUC            Csr9;
307     ULONG                               Length = 0;
308
309         // For some 11a AP which didn't have DS_IE, we use two conditions to decide the channel
310         //      1. If the AP is 11n enabled, then check the control channel.
311         //      2. If the AP didn't have any info about channel, use the channel we received this frame as the channel. (May inaccuracy!!)
312         UCHAR                   CtrlChannel = 0;
313
314     // Add for 3 necessary EID field check
315     Sanity = 0;
316
317     *pAtimWin = 0;
318     *pErp = 0;
319     *pDtimCount = 0;
320     *pDtimPeriod = 0;
321     *pBcastFlag = 0;
322     *pMessageToMe = 0;
323     *pExtRateLen = 0;
324     *pCkipFlag = 0;                             // Default of CkipFlag is 0
325     *pAironetCellPowerLimit = 0xFF;  // Default of AironetCellPowerLimit is 0xFF
326     *LengthVIE = 0;                                     // Set the length of VIE to init value 0
327     *pHtCapabilityLen = 0;                                      // Set the length of VIE to init value 0
328 #ifdef CONFIG_STA_SUPPORT
329         if (pAd->OpMode == OPMODE_STA)
330                 *pPreNHtCapabilityLen = 0;                                      // Set the length of VIE to init value 0
331 #endif // CONFIG_STA_SUPPORT //
332     *AddHtInfoLen = 0;                                  // Set the length of VIE to init value 0
333     *pRalinkIe = 0;
334     *pNewChannel = 0;
335     *NewExtChannelOffset = 0xff;        //Default 0xff means no such IE
336     pCfParm->bValid = FALSE;        // default: no IE_CF found
337     pQbssLoad->bValid = FALSE;      // default: no IE_QBSS_LOAD found
338     pEdcaParm->bValid = FALSE;      // default: no IE_EDCA_PARAMETER found
339     pQosCapability->bValid = FALSE; // default: no IE_QOS_CAPABILITY found
340
341     pFrame = (PFRAME_802_11)Msg;
342
343     // get subtype from header
344     SubType = (UCHAR)pFrame->Hdr.FC.SubType;
345
346     // get Addr2 and BSSID from header
347     COPY_MAC_ADDR(pAddr2, pFrame->Hdr.Addr2);
348     COPY_MAC_ADDR(pBssid, pFrame->Hdr.Addr3);
349
350 //      hex_dump("Beacon", Msg, MsgLen);
351
352     Ptr = pFrame->Octet;
353     Length += LENGTH_802_11;
354
355     // get timestamp from payload and advance the pointer
356     NdisMoveMemory(pTimestamp, Ptr, TIMESTAMP_LEN);
357
358         pTimestamp->u.LowPart = cpu2le32(pTimestamp->u.LowPart);
359         pTimestamp->u.HighPart = cpu2le32(pTimestamp->u.HighPart);
360
361     Ptr += TIMESTAMP_LEN;
362     Length += TIMESTAMP_LEN;
363
364     // get beacon interval from payload and advance the pointer
365     NdisMoveMemory(pBeaconPeriod, Ptr, 2);
366     Ptr += 2;
367     Length += 2;
368
369     // get capability info from payload and advance the pointer
370     NdisMoveMemory(pCapabilityInfo, Ptr, 2);
371     Ptr += 2;
372     Length += 2;
373
374     if (CAP_IS_ESS_ON(*pCapabilityInfo))
375         *pBssType = BSS_INFRA;
376     else
377         *pBssType = BSS_ADHOC;
378
379     pEid = (PEID_STRUCT) Ptr;
380
381     // get variable fields from payload and advance the pointer
382     while ((Length + 2 + pEid->Len) <= MsgLen)
383     {
384         //
385         // Secure copy VIE to VarIE[MAX_VIE_LEN] didn't overflow.
386         //
387         if ((*LengthVIE + pEid->Len + 2) >= MAX_VIE_LEN)
388         {
389             DBGPRINT(RT_DEBUG_WARN, ("PeerBeaconAndProbeRspSanity - Variable IEs out of resource [len(=%d) > MAX_VIE_LEN(=%d)]\n",
390                     (*LengthVIE + pEid->Len + 2), MAX_VIE_LEN));
391             break;
392         }
393
394         switch(pEid->Eid)
395         {
396             case IE_SSID:
397                 // Already has one SSID EID in this beacon, ignore the second one
398                 if (Sanity & 0x1)
399                     break;
400                 if(pEid->Len <= MAX_LEN_OF_SSID)
401                 {
402                     NdisMoveMemory(Ssid, pEid->Octet, pEid->Len);
403                     *pSsidLen = pEid->Len;
404                     Sanity |= 0x1;
405                 }
406                 else
407                 {
408                     DBGPRINT(RT_DEBUG_TRACE, ("PeerBeaconAndProbeRspSanity - wrong IE_SSID (len=%d)\n",pEid->Len));
409                     return FALSE;
410                 }
411                 break;
412
413             case IE_SUPP_RATES:
414                 if(pEid->Len <= MAX_LEN_OF_SUPPORTED_RATES)
415                 {
416                     Sanity |= 0x2;
417                     NdisMoveMemory(SupRate, pEid->Octet, pEid->Len);
418                     *pSupRateLen = pEid->Len;
419
420                     // TODO: 2004-09-14 not a good design here, cause it exclude extra rates
421                     // from ScanTab. We should report as is. And filter out unsupported
422                     // rates in MlmeAux.
423                     // Check against the supported rates
424                     // RTMPCheckRates(pAd, SupRate, pSupRateLen);
425                 }
426                 else
427                 {
428                     DBGPRINT(RT_DEBUG_TRACE, ("PeerBeaconAndProbeRspSanity - wrong IE_SUPP_RATES (len=%d)\n",pEid->Len));
429                     return FALSE;
430                 }
431                 break;
432
433             case IE_HT_CAP:
434                         if (pEid->Len >= SIZE_HT_CAP_IE)  //Note: allow extension.!!
435                         {
436                                 NdisMoveMemory(pHtCapability, pEid->Octet, sizeof(HT_CAPABILITY_IE));
437                                 *pHtCapabilityLen = SIZE_HT_CAP_IE;     // Nnow we only support 26 bytes.
438
439                                 *(USHORT *)(&pHtCapability->HtCapInfo) = cpu2le16(*(USHORT *)(&pHtCapability->HtCapInfo));
440                                 *(USHORT *)(&pHtCapability->ExtHtCapInfo) = cpu2le16(*(USHORT *)(&pHtCapability->ExtHtCapInfo));
441
442 #ifdef CONFIG_STA_SUPPORT
443                                 IF_DEV_CONFIG_OPMODE_ON_STA(pAd)
444                                 {
445                                         *pPreNHtCapabilityLen = 0;      // Nnow we only support 26 bytes.
446
447                                         Ptr = (PUCHAR) pVIE;
448                                         NdisMoveMemory(Ptr + *LengthVIE, &pEid->Eid, pEid->Len + 2);
449                                         *LengthVIE += (pEid->Len + 2);
450                                 }
451 #endif // CONFIG_STA_SUPPORT //
452                         }
453                         else
454                         {
455                                 DBGPRINT(RT_DEBUG_WARN, ("PeerBeaconAndProbeRspSanity - wrong IE_HT_CAP. pEid->Len = %d\n", pEid->Len));
456                         }
457
458                 break;
459             case IE_ADD_HT:
460                         if (pEid->Len >= sizeof(ADD_HT_INFO_IE))
461                         {
462                                 // This IE allows extension, but we can ignore extra bytes beyond our knowledge , so only
463                                 // copy first sizeof(ADD_HT_INFO_IE)
464                                 NdisMoveMemory(AddHtInfo, pEid->Octet, sizeof(ADD_HT_INFO_IE));
465                                 *AddHtInfoLen = SIZE_ADD_HT_INFO_IE;
466
467                                 CtrlChannel = AddHtInfo->ControlChan;
468
469                                 *(USHORT *)(&AddHtInfo->AddHtInfo2) = cpu2le16(*(USHORT *)(&AddHtInfo->AddHtInfo2));
470                                 *(USHORT *)(&AddHtInfo->AddHtInfo3) = cpu2le16(*(USHORT *)(&AddHtInfo->AddHtInfo3));
471
472 #ifdef CONFIG_STA_SUPPORT
473                                 IF_DEV_CONFIG_OPMODE_ON_STA(pAd)
474                                 {
475                                         Ptr = (PUCHAR) pVIE;
476                                         NdisMoveMemory(Ptr + *LengthVIE, &pEid->Eid, pEid->Len + 2);
477                                         *LengthVIE += (pEid->Len + 2);
478                                 }
479 #endif // CONFIG_STA_SUPPORT //
480                         }
481                         else
482                         {
483                                 DBGPRINT(RT_DEBUG_WARN, ("PeerBeaconAndProbeRspSanity - wrong IE_ADD_HT. \n"));
484                         }
485
486                 break;
487             case IE_SECONDARY_CH_OFFSET:
488                         if (pEid->Len == 1)
489                         {
490                                 *NewExtChannelOffset = pEid->Octet[0];
491                         }
492                         else
493                         {
494                                 DBGPRINT(RT_DEBUG_WARN, ("PeerBeaconAndProbeRspSanity - wrong IE_SECONDARY_CH_OFFSET. \n"));
495                         }
496
497                 break;
498             case IE_FH_PARM:
499                 DBGPRINT(RT_DEBUG_TRACE, ("PeerBeaconAndProbeRspSanity(IE_FH_PARM) \n"));
500                 break;
501
502             case IE_DS_PARM:
503                 if(pEid->Len == 1)
504                 {
505                     *pChannel = *pEid->Octet;
506 #ifdef CONFIG_STA_SUPPORT
507                                         IF_DEV_CONFIG_OPMODE_ON_STA(pAd)
508                                         {
509                                                 if (ChannelSanity(pAd, *pChannel) == 0)
510                                                 {
511
512                                                         return FALSE;
513                                                 }
514                                         }
515 #endif // CONFIG_STA_SUPPORT //
516                     Sanity |= 0x4;
517                 }
518                 else
519                 {
520                     DBGPRINT(RT_DEBUG_TRACE, ("PeerBeaconAndProbeRspSanity - wrong IE_DS_PARM (len=%d)\n",pEid->Len));
521                     return FALSE;
522                 }
523                 break;
524
525             case IE_CF_PARM:
526                 if(pEid->Len == 6)
527                 {
528                     pCfParm->bValid = TRUE;
529                     pCfParm->CfpCount = pEid->Octet[0];
530                     pCfParm->CfpPeriod = pEid->Octet[1];
531                     pCfParm->CfpMaxDuration = pEid->Octet[2] + 256 * pEid->Octet[3];
532                     pCfParm->CfpDurRemaining = pEid->Octet[4] + 256 * pEid->Octet[5];
533                 }
534                 else
535                 {
536                     DBGPRINT(RT_DEBUG_TRACE, ("PeerBeaconAndProbeRspSanity - wrong IE_CF_PARM\n"));
537                     return FALSE;
538                 }
539                 break;
540
541             case IE_IBSS_PARM:
542                 if(pEid->Len == 2)
543                 {
544                     NdisMoveMemory(pAtimWin, pEid->Octet, pEid->Len);
545                 }
546                 else
547                 {
548                     DBGPRINT(RT_DEBUG_TRACE, ("PeerBeaconAndProbeRspSanity - wrong IE_IBSS_PARM\n"));
549                     return FALSE;
550                 }
551                 break;
552
553 #ifdef CONFIG_STA_SUPPORT
554             case IE_TIM:
555                 if(INFRA_ON(pAd) && SubType == SUBTYPE_BEACON)
556                 {
557                     GetTimBit((PUCHAR)pEid, pAd->StaActive.Aid, &TimLen, pBcastFlag, pDtimCount, pDtimPeriod, pMessageToMe);
558                 }
559                 break;
560 #endif // CONFIG_STA_SUPPORT //
561             case IE_CHANNEL_SWITCH_ANNOUNCEMENT:
562                 if(pEid->Len == 3)
563                 {
564                         *pNewChannel = pEid->Octet[1];  //extract new channel number
565                 }
566                 break;
567
568             // New for WPA
569             // CCX v2 has the same IE, we need to parse that too
570             // Wifi WMM use the same IE vale, need to parse that too
571             // case IE_WPA:
572             case IE_VENDOR_SPECIFIC:
573                 // Check Broadcom/Atheros 802.11n OUI version, for HT Capability IE.
574                 // This HT IE is before IEEE draft set HT IE value.2006-09-28 by Jan.
575                 /*if (NdisEqualMemory(pEid->Octet, BROADCOM_OUI, 3) && (pEid->Len >= 4))
576                 {
577                         if ((pEid->Octet[3] == OUI_BROADCOM_HT) && (pEid->Len >= 30))
578                         {
579                                 {
580                                         NdisMoveMemory(pHtCapability, &pEid->Octet[4], sizeof(HT_CAPABILITY_IE));
581                                         *pHtCapabilityLen = SIZE_HT_CAP_IE;     // Nnow we only support 26 bytes.
582                                 }
583                         }
584                         if ((pEid->Octet[3] == OUI_BROADCOM_HT) && (pEid->Len >= 26))
585                         {
586                                 {
587                                         NdisMoveMemory(AddHtInfo, &pEid->Octet[4], sizeof(ADD_HT_INFO_IE));
588                                         *AddHtInfoLen = SIZE_ADD_HT_INFO_IE;    // Nnow we only support 26 bytes.
589                                 }
590                         }
591                 }
592                                 */
593                 // Check the OUI version, filter out non-standard usage
594                 if (NdisEqualMemory(pEid->Octet, RALINK_OUI, 3) && (pEid->Len == 7))
595                 {
596                     //*pRalinkIe = pEid->Octet[3];
597                     if (pEid->Octet[3] != 0)
598                                         *pRalinkIe = pEid->Octet[3];
599                                 else
600                                         *pRalinkIe = 0xf0000000; // Set to non-zero value (can't set bit0-2) to represent this is Ralink Chip. So at linkup, we will set ralinkchip flag.
601                 }
602 #ifdef CONFIG_STA_SUPPORT
603 #ifdef DOT11_N_SUPPORT
604                 // This HT IE is before IEEE draft set HT IE value.2006-09-28 by Jan.
605
606                 // Other vendors had production before IE_HT_CAP value is assigned. To backward support those old-firmware AP,
607                 // Check broadcom-defiend pre-802.11nD1.0 OUI for HT related IE, including HT Capatilities IE and HT Information IE
608                 else if ((*pHtCapabilityLen == 0) && NdisEqualMemory(pEid->Octet, PRE_N_HT_OUI, 3) && (pEid->Len >= 4) && (pAd->OpMode == OPMODE_STA))
609                 {
610                     if ((pEid->Octet[3] == OUI_PREN_HT_CAP) && (pEid->Len >= 30) && (*pHtCapabilityLen == 0))
611                     {
612                         NdisMoveMemory(pHtCapability, &pEid->Octet[4], sizeof(HT_CAPABILITY_IE));
613                         *pPreNHtCapabilityLen = SIZE_HT_CAP_IE;
614                     }
615
616                     if ((pEid->Octet[3] == OUI_PREN_ADD_HT) && (pEid->Len >= 26))
617                     {
618                         NdisMoveMemory(AddHtInfo, &pEid->Octet[4], sizeof(ADD_HT_INFO_IE));
619                         *AddHtInfoLen = SIZE_ADD_HT_INFO_IE;
620                     }
621                 }
622 #endif // DOT11_N_SUPPORT //
623 #endif // CONFIG_STA_SUPPORT //
624                 else if (NdisEqualMemory(pEid->Octet, WPA_OUI, 4))
625                 {
626                     // Copy to pVIE which will report to microsoft bssid list.
627                     Ptr = (PUCHAR) pVIE;
628                     NdisMoveMemory(Ptr + *LengthVIE, &pEid->Eid, pEid->Len + 2);
629                     *LengthVIE += (pEid->Len + 2);
630                 }
631                 else if (NdisEqualMemory(pEid->Octet, WME_PARM_ELEM, 6) && (pEid->Len == 24))
632                 {
633                     PUCHAR ptr;
634                     int i;
635
636                     // parsing EDCA parameters
637                     pEdcaParm->bValid          = TRUE;
638                     pEdcaParm->bQAck           = FALSE; // pEid->Octet[0] & 0x10;
639                     pEdcaParm->bQueueRequest   = FALSE; // pEid->Octet[0] & 0x20;
640                     pEdcaParm->bTxopRequest    = FALSE; // pEid->Octet[0] & 0x40;
641                     pEdcaParm->EdcaUpdateCount = pEid->Octet[6] & 0x0f;
642                     pEdcaParm->bAPSDCapable    = (pEid->Octet[6] & 0x80) ? 1 : 0;
643                     ptr = &pEid->Octet[8];
644                     for (i=0; i<4; i++)
645                     {
646                         UCHAR aci = (*ptr & 0x60) >> 5; // b5~6 is AC INDEX
647                         pEdcaParm->bACM[aci]  = (((*ptr) & 0x10) == 0x10);   // b5 is ACM
648                         pEdcaParm->Aifsn[aci] = (*ptr) & 0x0f;               // b0~3 is AIFSN
649                         pEdcaParm->Cwmin[aci] = *(ptr+1) & 0x0f;             // b0~4 is Cwmin
650                         pEdcaParm->Cwmax[aci] = *(ptr+1) >> 4;               // b5~8 is Cwmax
651                         pEdcaParm->Txop[aci]  = *(ptr+2) + 256 * (*(ptr+3)); // in unit of 32-us
652                         ptr += 4; // point to next AC
653                     }
654                 }
655                 else if (NdisEqualMemory(pEid->Octet, WME_INFO_ELEM, 6) && (pEid->Len == 7))
656                 {
657                     // parsing EDCA parameters
658                     pEdcaParm->bValid          = TRUE;
659                     pEdcaParm->bQAck           = FALSE; // pEid->Octet[0] & 0x10;
660                     pEdcaParm->bQueueRequest   = FALSE; // pEid->Octet[0] & 0x20;
661                     pEdcaParm->bTxopRequest    = FALSE; // pEid->Octet[0] & 0x40;
662                     pEdcaParm->EdcaUpdateCount = pEid->Octet[6] & 0x0f;
663                     pEdcaParm->bAPSDCapable    = (pEid->Octet[6] & 0x80) ? 1 : 0;
664
665                     // use default EDCA parameter
666                     pEdcaParm->bACM[QID_AC_BE]  = 0;
667                     pEdcaParm->Aifsn[QID_AC_BE] = 3;
668                     pEdcaParm->Cwmin[QID_AC_BE] = CW_MIN_IN_BITS;
669                     pEdcaParm->Cwmax[QID_AC_BE] = CW_MAX_IN_BITS;
670                     pEdcaParm->Txop[QID_AC_BE]  = 0;
671
672                     pEdcaParm->bACM[QID_AC_BK]  = 0;
673                     pEdcaParm->Aifsn[QID_AC_BK] = 7;
674                     pEdcaParm->Cwmin[QID_AC_BK] = CW_MIN_IN_BITS;
675                     pEdcaParm->Cwmax[QID_AC_BK] = CW_MAX_IN_BITS;
676                     pEdcaParm->Txop[QID_AC_BK]  = 0;
677
678                     pEdcaParm->bACM[QID_AC_VI]  = 0;
679                     pEdcaParm->Aifsn[QID_AC_VI] = 2;
680                     pEdcaParm->Cwmin[QID_AC_VI] = CW_MIN_IN_BITS-1;
681                     pEdcaParm->Cwmax[QID_AC_VI] = CW_MAX_IN_BITS;
682                     pEdcaParm->Txop[QID_AC_VI]  = 96;   // AC_VI: 96*32us ~= 3ms
683
684                     pEdcaParm->bACM[QID_AC_VO]  = 0;
685                     pEdcaParm->Aifsn[QID_AC_VO] = 2;
686                     pEdcaParm->Cwmin[QID_AC_VO] = CW_MIN_IN_BITS-2;
687                     pEdcaParm->Cwmax[QID_AC_VO] = CW_MAX_IN_BITS-1;
688                     pEdcaParm->Txop[QID_AC_VO]  = 48;   // AC_VO: 48*32us ~= 1.5ms
689                 }
690 #ifdef CONFIG_STA_SUPPORT
691 #endif // CONFIG_STA_SUPPORT //
692                 else
693                 {
694                 }
695
696                 break;
697
698             case IE_EXT_SUPP_RATES:
699                 if (pEid->Len <= MAX_LEN_OF_SUPPORTED_RATES)
700                 {
701                     NdisMoveMemory(ExtRate, pEid->Octet, pEid->Len);
702                     *pExtRateLen = pEid->Len;
703
704                     // TODO: 2004-09-14 not a good design here, cause it exclude extra rates
705                     // from ScanTab. We should report as is. And filter out unsupported
706                     // rates in MlmeAux.
707                     // Check against the supported rates
708                     // RTMPCheckRates(pAd, ExtRate, pExtRateLen);
709                 }
710                 break;
711
712             case IE_ERP:
713                 if (pEid->Len == 1)
714                 {
715                     *pErp = (UCHAR)pEid->Octet[0];
716                 }
717                 break;
718
719             case IE_AIRONET_CKIP:
720                 // 0. Check Aironet IE length, it must be larger or equal to 28
721                 // Cisco AP350 used length as 28
722                 // Cisco AP12XX used length as 30
723                 if (pEid->Len < (CKIP_NEGOTIATION_LENGTH - 2))
724                     break;
725
726                 // 1. Copy CKIP flag byte to buffer for process
727                 *pCkipFlag = *(pEid->Octet + 8);
728                 break;
729
730             case IE_AP_TX_POWER:
731                 // AP Control of Client Transmit Power
732                 //0. Check Aironet IE length, it must be 6
733                 if (pEid->Len != 0x06)
734                     break;
735
736                 // Get cell power limit in dBm
737                 if (NdisEqualMemory(pEid->Octet, CISCO_OUI, 3) == 1)
738                     *pAironetCellPowerLimit = *(pEid->Octet + 4);
739                 break;
740
741             // WPA2 & 802.11i RSN
742             case IE_RSN:
743                 // There is no OUI for version anymore, check the group cipher OUI before copying
744                 if (RTMPEqualMemory(pEid->Octet + 2, RSN_OUI, 3))
745                 {
746                     // Copy to pVIE which will report to microsoft bssid list.
747                     Ptr = (PUCHAR) pVIE;
748                     NdisMoveMemory(Ptr + *LengthVIE, &pEid->Eid, pEid->Len + 2);
749                     *LengthVIE += (pEid->Len + 2);
750                 }
751                 break;
752
753             default:
754                 break;
755         }
756
757         Length = Length + 2 + pEid->Len;  // Eid[1] + Len[1]+ content[Len]
758         pEid = (PEID_STRUCT)((UCHAR*)pEid + 2 + pEid->Len);
759     }
760
761     // For some 11a AP. it did not have the channel EID, patch here
762 #ifdef CONFIG_STA_SUPPORT
763         IF_DEV_CONFIG_OPMODE_ON_STA(pAd)
764         {
765                 UCHAR LatchRfChannel = MsgChannel;
766                 if ((pAd->LatchRfRegs.Channel > 14) && ((Sanity & 0x4) == 0))
767                 {
768                         if (CtrlChannel != 0)
769                                 *pChannel = CtrlChannel;
770                         else
771                                 *pChannel = LatchRfChannel;
772                         Sanity |= 0x4;
773                 }
774         }
775 #endif // CONFIG_STA_SUPPORT //
776
777         if (Sanity != 0x7)
778         {
779                 DBGPRINT(RT_DEBUG_WARN, ("PeerBeaconAndProbeRspSanity - missing field, Sanity=0x%02x\n", Sanity));
780                 return FALSE;
781         }
782         else
783         {
784                 return TRUE;
785         }
786
787 }
788
789 /*
790     ==========================================================================
791     Description:
792         MLME message sanity check
793     Return:
794         TRUE if all parameters are OK, FALSE otherwise
795     ==========================================================================
796  */
797 BOOLEAN MlmeScanReqSanity(
798         IN PRTMP_ADAPTER pAd,
799         IN VOID *Msg,
800         IN ULONG MsgLen,
801         OUT UCHAR *pBssType,
802         OUT CHAR Ssid[],
803         OUT UCHAR *pSsidLen,
804         OUT UCHAR *pScanType)
805 {
806         MLME_SCAN_REQ_STRUCT *Info;
807
808         Info = (MLME_SCAN_REQ_STRUCT *)(Msg);
809         *pBssType = Info->BssType;
810         *pSsidLen = Info->SsidLen;
811         NdisMoveMemory(Ssid, Info->Ssid, *pSsidLen);
812         *pScanType = Info->ScanType;
813
814         if ((*pBssType == BSS_INFRA || *pBssType == BSS_ADHOC || *pBssType == BSS_ANY)
815                 && (*pScanType == SCAN_ACTIVE || *pScanType == SCAN_PASSIVE
816 #ifdef CONFIG_STA_SUPPORT
817                 || *pScanType == SCAN_CISCO_PASSIVE || *pScanType == SCAN_CISCO_ACTIVE
818                 || *pScanType == SCAN_CISCO_CHANNEL_LOAD || *pScanType == SCAN_CISCO_NOISE
819 #endif // CONFIG_STA_SUPPORT //
820                 ))
821         {
822                 return TRUE;
823         }
824         else
825         {
826                 DBGPRINT(RT_DEBUG_TRACE, ("MlmeScanReqSanity fail - wrong BssType or ScanType\n"));
827                 return FALSE;
828         }
829 }
830
831 // IRQL = DISPATCH_LEVEL
832 UCHAR ChannelSanity(
833     IN PRTMP_ADAPTER pAd,
834     IN UCHAR channel)
835 {
836     int i;
837
838     for (i = 0; i < pAd->ChannelListNum; i ++)
839     {
840         if (channel == pAd->ChannelList[i].Channel)
841             return 1;
842     }
843     return 0;
844 }
845
846 /*
847     ==========================================================================
848     Description:
849         MLME message sanity check
850     Return:
851         TRUE if all parameters are OK, FALSE otherwise
852
853         IRQL = DISPATCH_LEVEL
854
855     ==========================================================================
856  */
857 BOOLEAN PeerDeauthSanity(
858     IN PRTMP_ADAPTER pAd,
859     IN VOID *Msg,
860     IN ULONG MsgLen,
861     OUT PUCHAR pAddr2,
862     OUT USHORT *pReason)
863 {
864     PFRAME_802_11 pFrame = (PFRAME_802_11)Msg;
865
866     COPY_MAC_ADDR(pAddr2, pFrame->Hdr.Addr2);
867     NdisMoveMemory(pReason, &pFrame->Octet[0], 2);
868
869     return TRUE;
870 }
871
872 /*
873     ==========================================================================
874     Description:
875         MLME message sanity check
876     Return:
877         TRUE if all parameters are OK, FALSE otherwise
878
879         IRQL = DISPATCH_LEVEL
880
881     ==========================================================================
882  */
883 BOOLEAN PeerAuthSanity(
884     IN PRTMP_ADAPTER pAd,
885     IN VOID *Msg,
886     IN ULONG MsgLen,
887     OUT PUCHAR pAddr,
888     OUT USHORT *pAlg,
889     OUT USHORT *pSeq,
890     OUT USHORT *pStatus,
891     CHAR *pChlgText)
892 {
893     PFRAME_802_11 pFrame = (PFRAME_802_11)Msg;
894
895     COPY_MAC_ADDR(pAddr,   pFrame->Hdr.Addr2);
896     NdisMoveMemory(pAlg,    &pFrame->Octet[0], 2);
897     NdisMoveMemory(pSeq,    &pFrame->Octet[2], 2);
898     NdisMoveMemory(pStatus, &pFrame->Octet[4], 2);
899
900     if ((*pAlg == Ndis802_11AuthModeOpen)
901       )
902     {
903         if (*pSeq == 1 || *pSeq == 2)
904         {
905             return TRUE;
906         }
907         else
908         {
909             DBGPRINT(RT_DEBUG_TRACE, ("PeerAuthSanity fail - wrong Seg#\n"));
910             return FALSE;
911         }
912     }
913     else if (*pAlg == Ndis802_11AuthModeShared)
914     {
915         if (*pSeq == 1 || *pSeq == 4)
916         {
917             return TRUE;
918         }
919         else if (*pSeq == 2 || *pSeq == 3)
920         {
921             NdisMoveMemory(pChlgText, &pFrame->Octet[8], CIPHER_TEXT_LEN);
922             return TRUE;
923         }
924         else
925         {
926             DBGPRINT(RT_DEBUG_TRACE, ("PeerAuthSanity fail - wrong Seg#\n"));
927             return FALSE;
928         }
929     }
930     else
931     {
932         DBGPRINT(RT_DEBUG_TRACE, ("PeerAuthSanity fail - wrong algorithm\n"));
933         return FALSE;
934     }
935 }
936
937 /*
938     ==========================================================================
939     Description:
940         MLME message sanity check
941     Return:
942         TRUE if all parameters are OK, FALSE otherwise
943     ==========================================================================
944  */
945 BOOLEAN MlmeAuthReqSanity(
946     IN PRTMP_ADAPTER pAd,
947     IN VOID *Msg,
948     IN ULONG MsgLen,
949     OUT PUCHAR pAddr,
950     OUT ULONG *pTimeout,
951     OUT USHORT *pAlg)
952 {
953     MLME_AUTH_REQ_STRUCT *pInfo;
954
955     pInfo  = (MLME_AUTH_REQ_STRUCT *)Msg;
956     COPY_MAC_ADDR(pAddr, pInfo->Addr);
957     *pTimeout = pInfo->Timeout;
958     *pAlg = pInfo->Alg;
959
960     if (((*pAlg == Ndis802_11AuthModeShared) ||(*pAlg == Ndis802_11AuthModeOpen)
961         ) &&
962         ((*pAddr & 0x01) == 0))
963     {
964         return TRUE;
965     }
966     else
967     {
968         DBGPRINT(RT_DEBUG_TRACE, ("MlmeAuthReqSanity fail - wrong algorithm\n"));
969         return FALSE;
970     }
971 }
972
973 /*
974     ==========================================================================
975     Description:
976         MLME message sanity check
977     Return:
978         TRUE if all parameters are OK, FALSE otherwise
979
980         IRQL = DISPATCH_LEVEL
981
982     ==========================================================================
983  */
984 BOOLEAN MlmeAssocReqSanity(
985     IN PRTMP_ADAPTER pAd,
986     IN VOID *Msg,
987     IN ULONG MsgLen,
988     OUT PUCHAR pApAddr,
989     OUT USHORT *pCapabilityInfo,
990     OUT ULONG *pTimeout,
991     OUT USHORT *pListenIntv)
992 {
993     MLME_ASSOC_REQ_STRUCT *pInfo;
994
995     pInfo = (MLME_ASSOC_REQ_STRUCT *)Msg;
996     *pTimeout = pInfo->Timeout;                             // timeout
997     COPY_MAC_ADDR(pApAddr, pInfo->Addr);                   // AP address
998     *pCapabilityInfo = pInfo->CapabilityInfo;               // capability info
999     *pListenIntv = pInfo->ListenIntv;
1000
1001     return TRUE;
1002 }
1003
1004 /*
1005     ==========================================================================
1006     Description:
1007         MLME message sanity check
1008     Return:
1009         TRUE if all parameters are OK, FALSE otherwise
1010
1011         IRQL = DISPATCH_LEVEL
1012
1013     ==========================================================================
1014  */
1015 BOOLEAN PeerDisassocSanity(
1016     IN PRTMP_ADAPTER pAd,
1017     IN VOID *Msg,
1018     IN ULONG MsgLen,
1019     OUT PUCHAR pAddr2,
1020     OUT USHORT *pReason)
1021 {
1022     PFRAME_802_11 pFrame = (PFRAME_802_11)Msg;
1023
1024     COPY_MAC_ADDR(pAddr2, pFrame->Hdr.Addr2);
1025     NdisMoveMemory(pReason, &pFrame->Octet[0], 2);
1026
1027     return TRUE;
1028 }
1029
1030 /*
1031         ========================================================================
1032         Routine Description:
1033                 Sanity check NetworkType (11b, 11g or 11a)
1034
1035         Arguments:
1036                 pBss - Pointer to BSS table.
1037
1038         Return Value:
1039         Ndis802_11DS .......(11b)
1040         Ndis802_11OFDM24....(11g)
1041         Ndis802_11OFDM5.....(11a)
1042
1043         IRQL = DISPATCH_LEVEL
1044
1045         ========================================================================
1046 */
1047 NDIS_802_11_NETWORK_TYPE NetworkTypeInUseSanity(
1048     IN PBSS_ENTRY pBss)
1049 {
1050         NDIS_802_11_NETWORK_TYPE        NetWorkType;
1051         UCHAR                                           rate, i;
1052
1053         NetWorkType = Ndis802_11DS;
1054
1055         if (pBss->Channel <= 14)
1056         {
1057                 //
1058                 // First check support Rate.
1059                 //
1060                 for (i = 0; i < pBss->SupRateLen; i++)
1061                 {
1062                         rate = pBss->SupRate[i] & 0x7f; // Mask out basic rate set bit
1063                         if ((rate == 2) || (rate == 4) || (rate == 11) || (rate == 22))
1064                         {
1065                                 continue;
1066                         }
1067                         else
1068                         {
1069                                 //
1070                                 // Otherwise (even rate > 108) means Ndis802_11OFDM24
1071                                 //
1072                                 NetWorkType = Ndis802_11OFDM24;
1073                                 break;
1074                         }
1075                 }
1076
1077                 //
1078                 // Second check Extend Rate.
1079                 //
1080                 if (NetWorkType != Ndis802_11OFDM24)
1081                 {
1082                         for (i = 0; i < pBss->ExtRateLen; i++)
1083                         {
1084                                 rate = pBss->SupRate[i] & 0x7f; // Mask out basic rate set bit
1085                                 if ((rate == 2) || (rate == 4) || (rate == 11) || (rate == 22))
1086                                 {
1087                                         continue;
1088                                 }
1089                                 else
1090                                 {
1091                                         //
1092                                         // Otherwise (even rate > 108) means Ndis802_11OFDM24
1093                                         //
1094                                         NetWorkType = Ndis802_11OFDM24;
1095                                         break;
1096                                 }
1097                         }
1098                 }
1099         }
1100         else
1101         {
1102                 NetWorkType = Ndis802_11OFDM5;
1103         }
1104
1105     if (pBss->HtCapabilityLen != 0)
1106     {
1107         if (NetWorkType == Ndis802_11OFDM5)
1108             NetWorkType = Ndis802_11OFDM5_N;
1109         else
1110             NetWorkType = Ndis802_11OFDM24_N;
1111     }
1112
1113         return NetWorkType;
1114 }
1115
1116 /*
1117     ==========================================================================
1118     Description:
1119         WPA message sanity check
1120     Return:
1121         TRUE if all parameters are OK, FALSE otherwise
1122     ==========================================================================
1123  */
1124 BOOLEAN PeerWpaMessageSanity(
1125     IN  PRTMP_ADAPTER           pAd,
1126     IN  PEAPOL_PACKET           pMsg,
1127     IN  ULONG                           MsgLen,
1128     IN  UCHAR                           MsgType,
1129     IN  MAC_TABLE_ENTRY         *pEntry)
1130 {
1131         UCHAR                   mic[LEN_KEY_DESC_MIC], digest[80], KEYDATA[MAX_LEN_OF_RSNIE];
1132         BOOLEAN                 bReplayDiff = FALSE;
1133         BOOLEAN                 bWPA2 = FALSE;
1134         KEY_INFO                EapolKeyInfo;
1135         UCHAR                   GroupKeyIndex = 0;
1136
1137
1138         NdisZeroMemory(mic, sizeof(mic));
1139         NdisZeroMemory(digest, sizeof(digest));
1140         NdisZeroMemory(KEYDATA, sizeof(KEYDATA));
1141         NdisZeroMemory((PUCHAR)&EapolKeyInfo, sizeof(EapolKeyInfo));
1142
1143         NdisMoveMemory((PUCHAR)&EapolKeyInfo, (PUCHAR)&pMsg->KeyDesc.KeyInfo, sizeof(KEY_INFO));
1144
1145         *((USHORT *)&EapolKeyInfo) = cpu2le16(*((USHORT *)&EapolKeyInfo));
1146
1147         // Choose WPA2 or not
1148         if ((pEntry->AuthMode == Ndis802_11AuthModeWPA2) || (pEntry->AuthMode == Ndis802_11AuthModeWPA2PSK))
1149                 bWPA2 = TRUE;
1150
1151         // 0. Check MsgType
1152         if ((MsgType > EAPOL_GROUP_MSG_2) || (MsgType < EAPOL_PAIR_MSG_1))
1153         {
1154                 DBGPRINT(RT_DEBUG_ERROR, ("The message type is invalid(%d)! \n", MsgType));
1155                 return FALSE;
1156         }
1157
1158         // 1. Replay counter check
1159         if (MsgType == EAPOL_PAIR_MSG_1 || MsgType == EAPOL_PAIR_MSG_3 || MsgType == EAPOL_GROUP_MSG_1) // For supplicant
1160     {
1161         // First validate replay counter, only accept message with larger replay counter.
1162                 // Let equal pass, some AP start with all zero replay counter
1163                 UCHAR   ZeroReplay[LEN_KEY_DESC_REPLAY];
1164
1165         NdisZeroMemory(ZeroReplay, LEN_KEY_DESC_REPLAY);
1166                 if ((RTMPCompareMemory(pMsg->KeyDesc.ReplayCounter, pEntry->R_Counter, LEN_KEY_DESC_REPLAY) != 1) &&
1167                         (RTMPCompareMemory(pMsg->KeyDesc.ReplayCounter, ZeroReplay, LEN_KEY_DESC_REPLAY) != 0))
1168         {
1169                         bReplayDiff = TRUE;
1170         }
1171         }
1172         else if (MsgType == EAPOL_PAIR_MSG_2 || MsgType == EAPOL_PAIR_MSG_4 || MsgType == EAPOL_GROUP_MSG_2)    // For authenticator
1173         {
1174                 // check Replay Counter coresponds to MSG from authenticator, otherwise discard
1175         if (!NdisEqualMemory(pMsg->KeyDesc.ReplayCounter, pEntry->R_Counter, LEN_KEY_DESC_REPLAY))
1176         {
1177                         bReplayDiff = TRUE;
1178         }
1179         }
1180
1181         // Replay Counter different condition
1182         if (bReplayDiff)
1183         {
1184                 // send wireless event - for replay counter different
1185                 if (pAd->CommonCfg.bWirelessEvent)
1186                         RTMPSendWirelessEvent(pAd, IW_REPLAY_COUNTER_DIFF_EVENT_FLAG, pEntry->Addr, pEntry->apidx, 0);
1187
1188                 if (MsgType < EAPOL_GROUP_MSG_1)
1189                 {
1190                 DBGPRINT(RT_DEBUG_ERROR, ("Replay Counter Different in pairwise msg %d of 4-way handshake!\n", MsgType));
1191                 }
1192                 else
1193                 {
1194                         DBGPRINT(RT_DEBUG_ERROR, ("Replay Counter Different in group msg %d of 2-way handshake!\n", (MsgType - EAPOL_PAIR_MSG_4)));
1195                 }
1196
1197                 hex_dump("Receive replay counter ", pMsg->KeyDesc.ReplayCounter, LEN_KEY_DESC_REPLAY);
1198                 hex_dump("Current replay counter ", pEntry->R_Counter, LEN_KEY_DESC_REPLAY);
1199         return FALSE;
1200         }
1201
1202         // 2. Verify MIC except Pairwise Msg1
1203         if (MsgType != EAPOL_PAIR_MSG_1)
1204         {
1205                 UCHAR                   rcvd_mic[LEN_KEY_DESC_MIC];
1206
1207                 // Record the received MIC for check later
1208                 NdisMoveMemory(rcvd_mic, pMsg->KeyDesc.KeyMic, LEN_KEY_DESC_MIC);
1209                 NdisZeroMemory(pMsg->KeyDesc.KeyMic, LEN_KEY_DESC_MIC);
1210
1211         if (pEntry->WepStatus == Ndis802_11Encryption2Enabled)  // TKIP
1212         {
1213             hmac_md5(pEntry->PTK, LEN_EAP_MICK, (PUCHAR)pMsg, MsgLen, mic);
1214         }
1215         else if (pEntry->WepStatus == Ndis802_11Encryption3Enabled)     // AES
1216         {
1217             HMAC_SHA1((PUCHAR)pMsg, MsgLen, pEntry->PTK, LEN_EAP_MICK, digest);
1218             NdisMoveMemory(mic, digest, LEN_KEY_DESC_MIC);
1219         }
1220
1221         if (!NdisEqualMemory(rcvd_mic, mic, LEN_KEY_DESC_MIC))
1222         {
1223                         // send wireless event - for MIC different
1224                         if (pAd->CommonCfg.bWirelessEvent)
1225                                 RTMPSendWirelessEvent(pAd, IW_MIC_DIFF_EVENT_FLAG, pEntry->Addr, pEntry->apidx, 0);
1226
1227                         if (MsgType < EAPOL_GROUP_MSG_1)
1228                         {
1229                 DBGPRINT(RT_DEBUG_ERROR, ("MIC Different in pairwise msg %d of 4-way handshake!\n", MsgType));
1230                         }
1231                         else
1232                         {
1233                                 DBGPRINT(RT_DEBUG_ERROR, ("MIC Different in group msg %d of 2-way handshake!\n", (MsgType - EAPOL_PAIR_MSG_4)));
1234                         }
1235
1236                         hex_dump("Received MIC", rcvd_mic, LEN_KEY_DESC_MIC);
1237                         hex_dump("Desired  MIC", mic, LEN_KEY_DESC_MIC);
1238
1239                         return FALSE;
1240         }
1241         }
1242
1243         // Extract the context of the Key Data field if it exist
1244         // The field in pairwise_msg_2_WPA1(WPA2) & pairwise_msg_3_WPA1 is un-encrypted.
1245         // The field in group_msg_1_WPA1(WPA2) & pairwise_msg_3_WPA2 is encrypted.
1246         if (pMsg->KeyDesc.KeyDataLen[1] > 0)
1247         {
1248                 // Decrypt this field
1249                 if ((MsgType == EAPOL_PAIR_MSG_3 && bWPA2) || (MsgType == EAPOL_GROUP_MSG_1))
1250                 {
1251                         if(pEntry->WepStatus == Ndis802_11Encryption3Enabled)
1252                         {
1253                                 // AES
1254                                 AES_GTK_KEY_UNWRAP(&pEntry->PTK[16], KEYDATA, pMsg->KeyDesc.KeyDataLen[1],pMsg->KeyDesc.KeyData);
1255                         }
1256                         else
1257                         {
1258                                 INT     i;
1259                                 UCHAR   Key[32];
1260                                 // Decrypt TKIP GTK
1261                                 // Construct 32 bytes RC4 Key
1262                                 NdisMoveMemory(Key, pMsg->KeyDesc.KeyIv, 16);
1263                                 NdisMoveMemory(&Key[16], &pEntry->PTK[16], 16);
1264                                 ARCFOUR_INIT(&pAd->PrivateInfo.WEPCONTEXT, Key, 32);
1265                                 //discard first 256 bytes
1266                                 for(i = 0; i < 256; i++)
1267                                         ARCFOUR_BYTE(&pAd->PrivateInfo.WEPCONTEXT);
1268                                 // Decrypt GTK. Becareful, there is no ICV to check the result is correct or not
1269                                 ARCFOUR_DECRYPT(&pAd->PrivateInfo.WEPCONTEXT, KEYDATA, pMsg->KeyDesc.KeyData, pMsg->KeyDesc.KeyDataLen[1]);
1270                         }
1271
1272                         if (!bWPA2 && (MsgType == EAPOL_GROUP_MSG_1))
1273                                 GroupKeyIndex = EapolKeyInfo.KeyIndex;
1274
1275                 }
1276                 else if ((MsgType == EAPOL_PAIR_MSG_2) || (MsgType == EAPOL_PAIR_MSG_3 && !bWPA2))
1277                 {
1278                         NdisMoveMemory(KEYDATA, pMsg->KeyDesc.KeyData, pMsg->KeyDesc.KeyDataLen[1]);
1279                 }
1280                 else
1281                 {
1282
1283                         return TRUE;
1284                 }
1285
1286                 // Parse Key Data field to
1287                 // 1. verify RSN IE for pairwise_msg_2_WPA1(WPA2) ,pairwise_msg_3_WPA1(WPA2)
1288                 // 2. verify KDE format for pairwise_msg_3_WPA2, group_msg_1_WPA2
1289                 // 3. update shared key for pairwise_msg_3_WPA2, group_msg_1_WPA1(WPA2)
1290                 if (!RTMPParseEapolKeyData(pAd, KEYDATA, pMsg->KeyDesc.KeyDataLen[1], GroupKeyIndex, MsgType, bWPA2, pEntry))
1291                 {
1292                         return FALSE;
1293                 }
1294         }
1295
1296         return TRUE;
1297
1298 }