blob: 235bb3e587519c8bb3fab817fdd599bd709dbfa7 [file] [log] [blame]
Jeff Johnson295189b2012-06-20 16:38:30 -07001/*
Gopichand Nakkala92f07d82013-01-08 21:16:34 -08002 * Copyright (c) 2012-2013, The Linux Foundation. All rights reserved.
3 *
4 * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
5 *
6 *
7 * Permission to use, copy, modify, and/or distribute this software for
8 * any purpose with or without fee is hereby granted, provided that the
9 * above copyright notice and this permission notice appear in all
10 * copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
13 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
14 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
15 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
16 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
17 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
18 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19 * PERFORMANCE OF THIS SOFTWARE.
20 */
21/*
Jeff Johnson32d95a32012-09-10 13:15:23 -070022 * Copyright (c) 2012, The Linux Foundation. All rights reserved.
Jeff Johnson295189b2012-06-20 16:38:30 -070023 *
24 * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
25 *
26 *
27 * Permission to use, copy, modify, and/or distribute this software for
28 * any purpose with or without fee is hereby granted, provided that the
29 * above copyright notice and this permission notice appear in all
30 * copies.
31 *
32 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
33 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
34 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
35 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
36 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
37 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
38 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
39 * PERFORMANCE OF THIS SOFTWARE.
40 */
Jeff Johnson295189b2012-06-20 16:38:30 -070041/*
42 * Airgo Networks, Inc proprietary. All rights reserved.
43 * This file lim ProcessMessageQueue.cc contains the code
44 * for processing LIM message Queue.
45 * Author: Chandra Modumudi
46 * Date: 02/11/02
47 * History:-
48 * Date Modified by Modification Information
49 * --------------------------------------------------------------------
50 *
51 */
52#include "palTypes.h"
53#include "wniApi.h"
Jeff Johnson295189b2012-06-20 16:38:30 -070054#include "wlan_qct_wdi_ds.h"
55#include "wlan_qct_pal_packet.h"
56#include "wlan_qct_wda.h"
Jeff Johnson295189b2012-06-20 16:38:30 -070057
Jeff Johnson295189b2012-06-20 16:38:30 -070058#include "wniCfgSta.h"
Jeff Johnson295189b2012-06-20 16:38:30 -070059#include "cfgApi.h"
60#include "sirCommon.h"
61#include "utilsApi.h"
62#include "limTypes.h"
63#include "limUtils.h"
64#include "limAssocUtils.h"
65#include "limPropExtsUtils.h"
66
67#include "limAdmitControl.h"
68#include "pmmApi.h"
69#include "limIbssPeerMgmt.h"
70#include "schApi.h"
71#include "limSession.h"
Yathish9f22e662012-12-10 14:21:35 -080072#include "limSendMessages.h"
Jeff Johnson295189b2012-06-20 16:38:30 -070073
74#if defined WLAN_FEATURE_VOWIFI
75#include "rrmApi.h"
76#endif
77#if defined FEATURE_WLAN_CCX
78#include "ccxApi.h"
79#endif
80
81#if defined WLAN_FEATURE_VOWIFI_11R
82#include "limFT.h"
83#endif
84
85#ifdef WMM_APSD
86#include "wmmApsd.h"
87#endif
88
Jeff Johnson295189b2012-06-20 16:38:30 -070089#include "vos_types.h"
90#include "vos_packet.h"
91#include "vos_memory.h"
Jeff Johnson295189b2012-06-20 16:38:30 -070092
93void limLogSessionStates(tpAniSirGlobal pMac);
94
95/** -------------------------------------------------------------
96\fn defMsgDecision
97\brief The function decides whether to defer a message or not in limProcessMessage function
98\param tpAniSirGlobal pMac
99\param tSirMsgQ limMsg
100\param tSirMacTspecIE *ppInfo
101\return none
102 -------------------------------------------------------------*/
103
104tANI_U8 static
105defMsgDecision(tpAniSirGlobal pMac, tpSirMsgQ limMsg)
106{
107
108
109/* this function should not changed */
Jeff Johnsone7245742012-09-05 17:12:55 -0700110 if(pMac->lim.gLimSmeState == eLIM_SME_OFFLINE_STATE)
Jeff Johnson295189b2012-06-20 16:38:30 -0700111 {
112 // Defer processsing this message
113 if (limDeferMsg(pMac, limMsg) != TX_SUCCESS)
114 {
Madan Mohan Koyyalamudi5695b502012-09-24 14:21:12 -0700115 PELOGW(limLog(pMac, LOGW, FL("Unable to Defer message(0x%X) %s limSmeState %d (prev sme state %d) sysRole %d mlm state %d (prev mlm state %d)"),
Jeff Johnson295189b2012-06-20 16:38:30 -0700116 limMsg->type, limMsgStr(limMsg->type), pMac->lim.gLimSmeState, pMac->lim.gLimPrevSmeState,
117 pMac->lim.gLimSystemRole, pMac->lim.gLimMlmState, pMac->lim.gLimPrevMlmState);)
118 limLogSessionStates(pMac);
119 limHandleDeferMsgError(pMac, limMsg);
120 }
121 return true;
122 }
123
124 //When defer is requested then defer all the messages except HAL responses.
125 if((!limIsSystemInScanState(pMac)) && (true != GET_LIM_PROCESS_DEFD_MESGS(pMac)) &&
126 !pMac->lim.gLimSystemInScanLearnMode)
127 {
128 if((limMsg->type != WDA_ADD_BSS_RSP) &&
129 (limMsg->type != WDA_DELETE_BSS_RSP) &&
130 (limMsg->type != WDA_ADD_STA_RSP) &&
131 (limMsg->type != WDA_ADD_STA_SELF_RSP) &&
132 (limMsg->type != WDA_DEL_STA_SELF_RSP) &&
133 (limMsg->type != WDA_DELETE_STA_RSP)&&
134 (limMsg->type != WDA_SET_BSSKEY_RSP)&&
135 (limMsg->type != WDA_SET_STAKEY_RSP)&&
136 (limMsg->type != WDA_SET_STA_BCASTKEY_RSP) &&
Jeff Johnson295189b2012-06-20 16:38:30 -0700137 (limMsg->type != eWNI_SME_START_REQ) &&
138 (limMsg->type != WDA_AGGR_QOS_RSP) &&
139 (limMsg->type != WDA_REMOVE_BSSKEY_RSP) &&
140 (limMsg->type != WDA_REMOVE_STAKEY_RSP) &&
141 (limMsg->type != WDA_SET_MIMOPS_RSP)&&
142 (limMsg->type != WDA_ADDBA_RSP) &&
143 (limMsg->type != WDA_ENTER_BMPS_RSP) &&
144 (limMsg->type != WDA_EXIT_BMPS_RSP) &&
145 (limMsg->type != WDA_ENTER_IMPS_RSP) &&
146 (limMsg->type != WDA_EXIT_IMPS_RSP) &&
147 (limMsg->type != WDA_ENTER_UAPSD_RSP) &&
148 (limMsg->type != WDA_EXIT_UAPSD_RSP) &&
149 (limMsg->type != WDA_WOWL_ENTER_RSP) &&
150 (limMsg->type != WDA_WOWL_EXIT_RSP) &&
151 (limMsg->type != WDA_SWITCH_CHANNEL_RSP) &&
Jeff Johnson295189b2012-06-20 16:38:30 -0700152 (limMsg->type != WDA_P2P_NOA_ATTR_IND) &&
Viral Modid440e682013-03-06 02:25:31 -0800153 (limMsg->type != WDA_P2P_NOA_START_IND) &&
Jeff Johnsone7245742012-09-05 17:12:55 -0700154#ifdef FEATURE_OEM_DATA_SUPPORT
155 (limMsg->type != WDA_START_OEM_DATA_RSP) &&
156#endif
Jeff Johnson295189b2012-06-20 16:38:30 -0700157 (limMsg->type != WDA_ADD_TS_RSP))
158 {
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -0700159 PELOG1(limLog(pMac, LOG1, FL("Defer the current message %s , gLimProcessDefdMsgs is false and system is not in scan/learn mode"),
Jeff Johnson295189b2012-06-20 16:38:30 -0700160 limMsgStr(limMsg->type));)
161
162 // Defer processsing this message
163 if (limDeferMsg(pMac, limMsg) != TX_SUCCESS)
164 {
Madan Mohan Koyyalamudi5695b502012-09-24 14:21:12 -0700165 PELOGW(limLog(pMac, LOGW, FL("Unable to Defer message(0x%X) %s limSmeState %d (prev sme state %d) sysRole %d mlm state %d (prev mlm state %d)"),
Jeff Johnson295189b2012-06-20 16:38:30 -0700166 limMsg->type, limMsgStr(limMsg->type), pMac->lim.gLimSmeState, pMac->lim.gLimPrevSmeState,
167 pMac->lim.gLimSystemRole, pMac->lim.gLimMlmState, pMac->lim.gLimPrevMlmState);)
168 limLogSessionStates(pMac);
169 limHandleDeferMsgError(pMac, limMsg);
170
171 }
172 return true;
173 }
174 }
175 return false;
176}
177
178/*
179* Beacon Handling Cases:
180* during scanning, when no session is active:
181* handled by limHandleFramesInScanState before __limHandleBeacon call is invoked.
182* during scanning, when any session is active, but beacon/Pr does not belong to that session, psessionEntry will be null.
183* handled by limHandleFramesInScanState before __limHandleBeacon call is invoked.
184* during scanning, when any session is active, and beacon/Pr belongs to one of the session, psessionEntry will not be null.
185* handled by limHandleFramesInScanState before __limHandleBeacon call is invoked.
186* Not scanning, no session:
187* there should not be any beacon coming, if coming, should be dropped.
188* Not Scanning,
189*/
190static void
191__limHandleBeacon(tpAniSirGlobal pMac, tpSirMsgQ pMsg, tpPESession psessionEntry)
192{
193 /* checking for global SME state...*/
194 tANI_U8 *pRxPacketInfo;
195 limGetBDfromRxPacket(pMac, pMsg->bodyptr, (tANI_U32 **)&pRxPacketInfo);
196
197 //This function should not be called if beacon is received in scan state.
198 //So not doing any checks for the global state.
199
200 if(psessionEntry == NULL)
201 {
202 schBeaconProcess(pMac, pRxPacketInfo, NULL);
203 }
204 else if( (psessionEntry->limSmeState == eLIM_SME_LINK_EST_STATE) ||
205 (psessionEntry->limSmeState == eLIM_SME_NORMAL_STATE))
206 {
207 schBeaconProcess(pMac, pRxPacketInfo, psessionEntry);
208 }
209 else
210 limProcessBeaconFrame(pMac, pRxPacketInfo, psessionEntry);
211
212 return;
213}
214
215
216//Fucntion prototype
217void limProcessNormalHddMsg(tpAniSirGlobal pMac, tSirMsgQ *pLimMsg, tANI_U8 fRspReqd);
218
219/**
Jeff Johnson295189b2012-06-20 16:38:30 -0700220 * limDeferMsg()
221 *
222 *FUNCTION:
223 * This function is called to defer the messages received
224 * during Learn mode
225 *
226 *LOGIC:
227 * NA
228 *
229 *ASSUMPTIONS:
230 * NA
231 *
232 *NOTE:
233 * NA
234 *
235 * @param pMac - Pointer to Global MAC structure
236 * @param pMsg of type tSirMsgQ - Pointer to the message structure
237 * @return None
238 */
239
240tANI_U32
241limDeferMsg(tpAniSirGlobal pMac, tSirMsgQ *pMsg)
242{
243 tANI_U32 retCode = TX_SUCCESS;
Jeff Johnson77165482013-03-07 08:15:44 -0800244
245 retCode = limWriteDeferredMsgQ(pMac, pMsg);
246
Jeff Johnson295189b2012-06-20 16:38:30 -0700247 if (retCode == TX_SUCCESS)
Jeff Johnson77165482013-03-07 08:15:44 -0800248 {
249 MTRACE(macTraceMsgRx(pMac, NO_SESSION, LIM_TRACE_MAKE_RXMSG(pMsg->type, LIM_MSG_DEFERRED));)
250 }
Jeff Johnson295189b2012-06-20 16:38:30 -0700251 else
Jeff Johnson77165482013-03-07 08:15:44 -0800252 {
253 MTRACE(macTraceMsgRx(pMac, NO_SESSION, LIM_TRACE_MAKE_RXMSG(pMsg->type, LIM_MSG_DROPPED));)
254 }
Jeff Johnson295189b2012-06-20 16:38:30 -0700255
256 return retCode;
257} /*** end limDeferMsg() ***/
258
259
260
261/**
262 * limHandleFramesInScanState()
263 *
264 *FUNCTION:
265 * This function is called to process 802.11 frames
266 * received by LIM in scan state.
267 *
268 *LOGIC:
269 * NA
270 *
271 *ASSUMPTIONS:
272 * NA
273 *
274 *NOTE:
275 * NA
276 *
277 * @param pMac - Pointer to Global MAC structure
278 * @param limMsg - Received message
279 * @param pRxPacketInfo - Pointer to Rx packet info structure
280 * @param deferMsg - Indicates whether the frame shall be deferred
281 * @return None
282 */
283
284static void
285limHandleFramesInScanState(tpAniSirGlobal pMac, tpSirMsgQ limMsg, tANI_U8 *pRxPacketInfo, tANI_U8 *deferMsg, tpPESession psessionEntry)
286{
287 tSirMacFrameCtl fc;
288 tpSirMacMgmtHdr pHdr;
Jeff Johnson295189b2012-06-20 16:38:30 -0700289
290 *deferMsg = false;
291 pHdr = WDA_GET_RX_MAC_HEADER(pRxPacketInfo);
292 fc = pHdr->fc;
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -0700293 limLog( pMac, LOG2, FL("ProtVersion %d, Type %d, Subtype %d"),
Jeff Johnson295189b2012-06-20 16:38:30 -0700294 fc.protVer, fc.type, fc.subType );
295
Jeff Johnson295189b2012-06-20 16:38:30 -0700296 // defer all message in scan state except for Beacons and Probe Response
297 if ((fc.type == SIR_MAC_MGMT_FRAME) && (fc.subType == SIR_MAC_MGMT_BEACON))
298 {
299 if (psessionEntry == NULL)
300 limProcessBeaconFrameNoSession(pMac, pRxPacketInfo);
301 else
302 limProcessBeaconFrame(pMac, pRxPacketInfo,psessionEntry);
303 }
304 else if ((fc.type == SIR_MAC_MGMT_FRAME) && (fc.subType == SIR_MAC_MGMT_PROBE_RSP))
305 {
306 if (psessionEntry == NULL)
307 limProcessProbeRspFrameNoSession(pMac, pRxPacketInfo);
308 else
309 limProcessProbeRspFrame(pMac, pRxPacketInfo,psessionEntry);
310 }
311 else if ((fc.type == SIR_MAC_MGMT_FRAME) && (fc.subType == SIR_MAC_MGMT_PROBE_REQ))
312 {
313 limProcessProbeReqFrame_multiple_BSS(pMac, pRxPacketInfo, psessionEntry);
314 }
Jeff Johnson295189b2012-06-20 16:38:30 -0700315 else if ((fc.type == SIR_MAC_MGMT_FRAME) && (fc.subType == SIR_MAC_MGMT_ACTION))
316 {
317 limProcessActionFrameNoSession( pMac, pRxPacketInfo);
318 }
Jeff Johnson295189b2012-06-20 16:38:30 -0700319 else
320 {
321 *deferMsg = true;
322 return;
323 }
324
Jeff Johnson295189b2012-06-20 16:38:30 -0700325 limPktFree(pMac, HAL_TXRX_FRM_802_11_MGMT, pRxPacketInfo, (void *) limMsg->bodyptr);
326 return;
327
328} /*** end limHandleFramesInScanState() ***/
329
330/** ------------------------------------------------------------
331\brief This function handles Unknown Unicast (A2 Index)
332\ packets.
333\param tpAniSirGlobal pMac Global Mac data structure
334\param void *pRxPacketInfo Pointer to Buffer Descriptor
335\return none
336\
337\ -------------------------------------------------------------- */
338static void limHandleUnknownA2IndexFrames(tpAniSirGlobal pMac, void *pRxPacketInfo,tpPESession psessionEntry)
339{
Jeff Johnson295189b2012-06-20 16:38:30 -0700340 /* addr2 mismatch interrupt occurred this means previous
341 disassociation was not successful
342 In Volans pRxPacketInfo only contains pointer 48-bit address2 field */
343 /*Send disassociation message again*/
344 //Dinesh need one more arguement.
345 //limSendDisassocMgmtFrame(pMac, eSIR_MAC_CLASS3_FRAME_FROM_NON_ASSOC_STA_REASON,(tANI_U8 *) pRxPacketInfo);
Mohit Khanna698ba2a2012-12-04 15:08:18 -0800346 //TODO: verify this
Jeff Johnson295189b2012-06-20 16:38:30 -0700347 //This could be a public action frame.
348 if( psessionEntry->limSystemRole == eLIM_P2P_DEVICE_ROLE )
349 limProcessActionFrameNoSession(pMac, (tANI_U8 *) pRxPacketInfo);
Mohit Khanna698ba2a2012-12-04 15:08:18 -0800350
351#ifdef FEATURE_WLAN_TDLS
352 {
353 tpSirMacDataHdr3a pMacHdr;
354 pMacHdr = WDA_GET_RX_MPDUHEADER3A(pRxPacketInfo);
355
356 if (limIsGroupAddr(pMacHdr->addr2))
357 {
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -0700358 PELOG2(limLog(pMac, LOG2, FL("Ignoring A2 Invalid Packet received for MC/BC:"));
Mohit Khanna698ba2a2012-12-04 15:08:18 -0800359 limPrintMacAddr(pMac, pMacHdr->addr2, LOG2);)
360
361 return;
362 }
363 /* TDLS_hklee: move down here to reject Addr2 == Group (first checking above)
364 and also checking if SystemRole == STA */
365 if (psessionEntry->limSystemRole == eLIM_STA_ROLE)
366 {
367 /* ADD handling of Public Action Frame */
368 LIM_LOG_TDLS(VOS_TRACE(VOS_MODULE_ID_PE, VOS_TRACE_LEVEL_ERROR, \
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -0700369 ("limHandleUnknownA2IndexFrames: type=0x%x, subtype=0x%x"),pMacHdr->fc.type, pMacHdr->fc.subType));
Mohit Khanna698ba2a2012-12-04 15:08:18 -0800370 switch (pMacHdr->fc.type)
371 {
372 case SIR_MAC_MGMT_FRAME:
373 {
374 switch (pMacHdr->fc.subType)
375 {
376 case SIR_MAC_MGMT_ACTION:
377 {
378 limProcessActionFrame(pMac, pRxPacketInfo, psessionEntry) ;
379 break ;
380 }
381 default:
382 {
383 break ;
384 }
385 }
386 }
387 default:
388 {
389 break ;
390 }
391 }
392 }
393 }
394#endif
395
Jeff Johnson295189b2012-06-20 16:38:30 -0700396
397 return;
398}
399
Jeff Johnson295189b2012-06-20 16:38:30 -0700400/**
401 * limCheckMgmtRegisteredFrames()
402 *
403 *FUNCTION:
404 * This function is called to process to check if received frame match with
405 * any of the registered frame from HDD. If yes pass this frame to SME.
406 *
407 *LOGIC:
408 *
409 *ASSUMPTIONS:
410 *
411 *NOTE:
412 *
413 * @param pMac Pointer to Global MAC structure
414 * @param *pBd Pointer to the received Buffer Descriptor+payload
415 * @param *psessionEntry Pointer to session on which packet is received
416 * @return None
417 */
418static tANI_BOOLEAN
419limCheckMgmtRegisteredFrames(tpAniSirGlobal pMac, tANI_U8 *pBd,
420 tpPESession psessionEntry)
421{
422 tSirMacFrameCtl fc;
423 tpSirMacMgmtHdr pHdr;
424 tANI_U8 *pBody;
425 tpLimMgmtFrameRegistration pLimMgmtRegistration = NULL, pNext = NULL;
426 tANI_U16 frameType;
427 tANI_U16 framelen;
428 tANI_U8 type,subType;
429 tANI_BOOLEAN match = VOS_FALSE;
430 VOS_STATUS vosStatus;
431
432 pHdr = WDA_GET_RX_MAC_HEADER(pBd);
433 fc = pHdr->fc;
434 frameType = (fc.type << 2 ) | (fc.subType << 4);
435 pBody = WDA_GET_RX_MPDU_DATA(pBd);
436 framelen = WDA_GET_RX_PAYLOAD_LEN(pBd);
437
438 vos_list_peek_front(&pMac->lim.gLimMgmtFrameRegistratinQueue,
439 (vos_list_node_t**)&pLimMgmtRegistration);
440
441 while(pLimMgmtRegistration != NULL)
442 {
443 type = (pLimMgmtRegistration->frameType >> 2) & 0x03;
444 subType = (pLimMgmtRegistration->frameType >> 4) & 0x0f;
445 if ( (type == SIR_MAC_MGMT_FRAME) && (fc.type == SIR_MAC_MGMT_FRAME)
446 && (subType == SIR_MAC_MGMT_RESERVED15) )
447 {
448 limLog( pMac, LOG3,
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -0700449 FL("rcvd frame match with SIR_MAC_MGMT_RESERVED15"));
Jeff Johnson295189b2012-06-20 16:38:30 -0700450 match = VOS_TRUE;
451 break;
452 }
453
454 if (pLimMgmtRegistration->frameType == frameType)
455 {
456 if (pLimMgmtRegistration->matchLen > 0)
457 {
458 if (pLimMgmtRegistration->matchLen <= framelen)
459 {
460 if (palEqualMemory(pMac, pLimMgmtRegistration->matchData,
461 pBody, pLimMgmtRegistration->matchLen))
462 {
Madan Mohan Koyyalamudic537df22012-10-22 15:07:08 -0700463 /* found match! */
464 match = VOS_TRUE;
465 break;
Jeff Johnson295189b2012-06-20 16:38:30 -0700466 }
Madan Mohan Koyyalamudic537df22012-10-22 15:07:08 -0700467 }
Jeff Johnson295189b2012-06-20 16:38:30 -0700468 }
469 else
470 {
471 /* found match! */
472 match = VOS_TRUE;
473 break;
474 }
475 }
476
477 vosStatus =
478 vos_list_peek_next ( &pMac->lim.gLimMgmtFrameRegistratinQueue,
479 (vos_list_node_t*) pLimMgmtRegistration,
480 (vos_list_node_t**) &pNext );
481 pLimMgmtRegistration = pNext;
482 pNext = NULL;
483 }
484
485 if (match)
486 {
487 limLog( pMac, LOG1,
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -0700488 FL("rcvd frame match with registered frame params"));
Jeff Johnson295189b2012-06-20 16:38:30 -0700489
490 /* Indicate this to SME */
491 limSendSmeMgmtFrameInd( pMac, pHdr->fc.subType, (tANI_U8*)pHdr,
492 WDA_GET_RX_PAYLOAD_LEN(pBd) + sizeof(tSirMacMgmtHdr),
493 pLimMgmtRegistration->sessionId,
Chilam NG571c65a2013-01-19 12:27:36 +0530494 WDA_GET_RX_CH(pBd), psessionEntry, 0);
Jeff Johnson295189b2012-06-20 16:38:30 -0700495
496 if ( (type == SIR_MAC_MGMT_FRAME) && (fc.type == SIR_MAC_MGMT_FRAME)
497 && (subType == SIR_MAC_MGMT_RESERVED15) )
498 {
499 // These packets needs to be processed by PE/SME as well as HDD.
500 // If it returns TRUE here, the packet is forwarded to HDD only.
501 match = VOS_FALSE;
502 }
503 }
504
505 return match;
506} /*** end limCheckMgmtRegisteredFrames() ***/
Jeff Johnson295189b2012-06-20 16:38:30 -0700507
508
509/**
510 * limHandle80211Frames()
511 *
512 *FUNCTION:
513 * This function is called to process 802.11 frames
514 * received by LIM.
515 *
516 *LOGIC:
517 * NA
518 *
519 *ASSUMPTIONS:
520 * NA
521 *
522 *NOTE:
523 * NA
524 *
525 * @param pMac - Pointer to Global MAC structure
526 * @param pMsg of type tSirMsgQ - Pointer to the message structure
527 * @return None
528 */
529
530static void
531limHandle80211Frames(tpAniSirGlobal pMac, tpSirMsgQ limMsg, tANI_U8 *pDeferMsg)
532{
533 tANI_U8 *pRxPacketInfo = NULL;
534 tSirMacFrameCtl fc;
535 tpSirMacMgmtHdr pHdr=NULL;
536 tpPESession psessionEntry=NULL;
537 tANI_U8 sessionId;
538 tAniBool isFrmFt = FALSE;
539 tANI_U16 fcOffset = WLANHAL_RX_BD_HEADER_SIZE;
540
541 *pDeferMsg= false;
542 limGetBDfromRxPacket(pMac, limMsg->bodyptr, (tANI_U32 **)&pRxPacketInfo);
543
544 pHdr = WDA_GET_RX_MAC_HEADER(pRxPacketInfo);
545 isFrmFt = WDA_GET_RX_FT_DONE(pRxPacketInfo);
546 fcOffset = (v_U8_t)WDA_GET_RX_MPDU_HEADER_OFFSET(pRxPacketInfo);
547 fc = pHdr->fc;
548
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -0700549 limLog( pMac, LOG4, FL("ProtVersion %d, Type %d, Subtype %d rateIndex=%d"),
Jeff Johnson295189b2012-06-20 16:38:30 -0700550 fc.protVer, fc.type, fc.subType, WDA_GET_RX_MAC_RATE_IDX(pRxPacketInfo));
551
Varun Reddy Yeturud0a3f252013-04-15 21:58:13 -0700552#ifdef WLAN_FEATURE_ROAM_SCAN_OFFLOAD
553 if ( WDA_GET_ROAMCANDIDATEIND(pRxPacketInfo))
554 {
555 limLog( pMac, LOG2, FL("Notify SME with candidate ind"));
556 //send a session 0 for now - TBD
557 limSendSmeCandidateFoundInd(pMac, 0);
558 goto end;
559 }
560 if (WDA_GET_OFFLOADSCANLEARN(pRxPacketInfo))
561 {
562 if (fc.subType == SIR_MAC_MGMT_BEACON)
563 {
564 limLog( pMac, LOG2, FL("Save this beacon in LFR cache"));
565 __limHandleBeacon(pMac, limMsg, NULL);
566 }
567 else if (fc.subType == SIR_MAC_MGMT_PROBE_RSP)
568 {
569 limLog( pMac, LOG2, FL("Save this probe rsp in LFR cache"));
570 limProcessProbeRspFrameNoSession(pMac, pRxPacketInfo);
571 }
572 else
573 {
574 limLog( pMac, LOGE, FL("Wrong frame Type %d, Subtype %d for LFR"),
575 fc.type, fc.subType);
576 }
577 goto end;
578 }
579#endif //WLAN_FEATURE_ROAM_SCAN_OFFLOAD
Jeff Johnson295189b2012-06-20 16:38:30 -0700580#ifdef FEATURE_WLAN_CCX
581 if (fc.type == SIR_MAC_DATA_FRAME && isFrmFt)
582 {
583#if 0 // CCX TBD Need to PORT
584 tpSirMacDot3Hdr pDataFrmHdr;
585
586 pDataFrmHdr = (tpSirMacDot3Hdr)((tANI_U8 *)pBD+ WLANHAL_RX_BD_GET_MPDU_H_OFFSET(pBD));
587 if((psessionEntry = peFindSessionByBssid(pMac,pDataFrmHdr->sa,&sessionId))== NULL)
588 {
589 limLog( pMac, LOGE, FL("Session not found for Frm type %d, subtype %d, SA: "), fc.type, fc.subType);
590 limPrintMacAddr(pMac, pDataFrmHdr->sa, LOGE);
591 limPktFree(pMac, HAL_TXRX_FRM_802_11_MGMT, pBD, limMsg->bodyptr);
592 return;
593 }
594
595 if (!psessionEntry->isCCXconnection)
596 {
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -0700597 limLog( pMac, LOGE, FL("LIM received Type %d, Subtype %d in Non CCX connection"),
Jeff Johnson295189b2012-06-20 16:38:30 -0700598 fc.type, fc.subType);
599 limPktFree(pMac, HAL_TXRX_FRM_802_11_MGMT, pBD, limMsg->bodyptr);
600 return;
601 }
602 limLog( pMac, LOGE, FL("Processing IAPP Frm from SA:"));
603 limPrintMacAddr(pMac, pDataFrmHdr->sa, LOGE);
604#else
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -0700605 printk("%s: Need to port handling of IAPP frames to PRIMA for CCX", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -0700606#endif
607
608
609 } else
610#endif
611 /* Added For BT-AMP Support */
612 if((psessionEntry = peFindSessionByBssid(pMac,pHdr->bssId,&sessionId))== NULL)
613 {
614#ifdef WLAN_FEATURE_VOWIFI_11R
615 if (fc.subType == SIR_MAC_MGMT_AUTH)
616 {
617#ifdef WLAN_FEATURE_VOWIFI_11R_DEBUG
Varun Reddy Yeturuf68abd62013-02-11 14:05:06 -0800618 limLog( pMac, LOG1, FL("ProtVersion %d, Type %d, Subtype %d rateIndex=%d"),
Jeff Johnson295189b2012-06-20 16:38:30 -0700619 fc.protVer, fc.type, fc.subType, WDA_GET_RX_MAC_RATE_IDX(pRxPacketInfo));
Varun Reddy Yeturuf68abd62013-02-11 14:05:06 -0800620 limPrintMacAddr(pMac, pHdr->bssId, LOG1);
Jeff Johnson295189b2012-06-20 16:38:30 -0700621#endif
622 if (limProcessAuthFrameNoSession(pMac, pRxPacketInfo, limMsg->bodyptr) == eSIR_SUCCESS)
623 {
624 limPktFree(pMac, HAL_TXRX_FRM_802_11_MGMT, pRxPacketInfo, limMsg->bodyptr);
625 return;
626 }
627 }
628#endif
629 if((fc.subType != SIR_MAC_MGMT_PROBE_RSP )&&
630 (fc.subType != SIR_MAC_MGMT_BEACON)&&
631 (fc.subType != SIR_MAC_MGMT_PROBE_REQ)
Jeff Johnson295189b2012-06-20 16:38:30 -0700632 && (fc.subType != SIR_MAC_MGMT_ACTION ) //Public action frame can be received from non-associated stations.
Jeff Johnson295189b2012-06-20 16:38:30 -0700633 )
634 {
635
636 if((psessionEntry = peFindSessionByPeerSta(pMac,pHdr->sa,&sessionId))== NULL)
637 {
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -0700638 limLog(pMac, LOG1, FL("session does not exist for given bssId"));
Jeff Johnson295189b2012-06-20 16:38:30 -0700639 limPktFree(pMac, HAL_TXRX_FRM_802_11_MGMT, pRxPacketInfo, limMsg->bodyptr);
640 return;
641 }
Gopichand Nakkala6265d6f2013-03-20 23:32:50 +0530642 }
643 // For p2p resp frames search for valid session with DA as
644 // BSSID will be SA and session will be present with DA only
645 if(fc.subType == SIR_MAC_MGMT_ACTION )
646 {
647 psessionEntry = peFindSessionByBssid(pMac,pHdr->da,&sessionId);
648 }
Jeff Johnson295189b2012-06-20 16:38:30 -0700649 }
650
651
Jeff Johnson295189b2012-06-20 16:38:30 -0700652 /* Check if frame is registered by HDD */
653 if(limCheckMgmtRegisteredFrames(pMac, pRxPacketInfo, psessionEntry))
654 {
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -0700655 limLog( pMac, LOG1, FL("Received frame is passed to SME"));
Jeff Johnson295189b2012-06-20 16:38:30 -0700656 limPktFree(pMac, HAL_TXRX_FRM_802_11_MGMT, pRxPacketInfo, limMsg->bodyptr);
657 return;
658 }
Jeff Johnson295189b2012-06-20 16:38:30 -0700659
660
Jeff Johnson295189b2012-06-20 16:38:30 -0700661
662 if (fc.protVer != SIR_MAC_PROTOCOL_VERSION)
663 { // Received Frame with non-zero Protocol Version
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -0700664 limLog(pMac, LOGE, FL("Unexpected frame with protVersion %d received"),
Jeff Johnson295189b2012-06-20 16:38:30 -0700665 fc.protVer);
666 limPktFree(pMac, HAL_TXRX_FRM_802_11_MGMT, pRxPacketInfo, (void *) limMsg->bodyptr);
667#ifdef WLAN_DEBUG
668 pMac->lim.numProtErr++;
669#endif
670 return;
671 }
672
673
674 if (limIsSystemInScanState(pMac))
675 {
676 limHandleFramesInScanState(pMac, limMsg, pRxPacketInfo, pDeferMsg, psessionEntry);
677 return;
678 }
679
680/* Chance of crashing : to be done BT-AMP ........happens when broadcast probe req is received */
681
682#if 0
683 if (psessionEntry->limSystemRole == eLIM_UNKNOWN_ROLE) {
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -0700684 limLog( pMac, LOGW, FL( "gLimSystemRole is %d. Exiting..." ),psessionEntry->limSystemRole );
Jeff Johnson295189b2012-06-20 16:38:30 -0700685 limPktFree(pMac, HAL_TXRX_FRM_802_11_MGMT, pRxPacketInfo, (void *) limMsg->bodyptr);
686
687#ifdef WLAN_DEBUG
688 pMac->lim.numProtErr++;
689#endif
690 return;
691 }
692 #endif //HACK to continue scanning
693
694
695#ifdef WLAN_DEBUG
696 pMac->lim.numMAC[fc.type][fc.subType]++;
697#endif
698
699 switch (fc.type)
700 {
701 case SIR_MAC_MGMT_FRAME:
702 {
703 #if 0 //TBD-RAJESH fix this
704 if (limIsReassocInProgress( pMac,psessionEntry) && (fc.subType != SIR_MAC_MGMT_DISASSOC) &&
705 (fc.subType != SIR_MAC_MGMT_DEAUTH) && (fc.subType != SIR_MAC_MGMT_REASSOC_RSP))
706 {
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -0700707 limLog(pMac, LOGE, FL("Frame with Type - %d, Subtype - %d received in ReAssoc Wait state, dropping..."),
Jeff Johnson295189b2012-06-20 16:38:30 -0700708 fc.type, fc.subType);
709 return;
710 }
711 #endif //HACK to continue scanning
712 // Received Management frame
713 switch (fc.subType)
714 {
715 case SIR_MAC_MGMT_ASSOC_REQ:
716 // Make sure the role supports Association
717 if ((psessionEntry->limSystemRole == eLIM_BT_AMP_AP_ROLE)
Jeff Johnson295189b2012-06-20 16:38:30 -0700718 || (psessionEntry->limSystemRole == eLIM_AP_ROLE)
Jeff Johnson295189b2012-06-20 16:38:30 -0700719 )
720 limProcessAssocReqFrame(pMac, pRxPacketInfo, LIM_ASSOC, psessionEntry);
721
722 else
723 {
724 // Unwanted messages - Log error
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -0700725 limLog(pMac, LOGE, FL("unexpected message received %X"),limMsg->type);
Jeff Johnson295189b2012-06-20 16:38:30 -0700726 limPrintMsgName(pMac, LOGE, limMsg->type);
727 }
728 break;
729
730 case SIR_MAC_MGMT_ASSOC_RSP:
731 limProcessAssocRspFrame(pMac, pRxPacketInfo, LIM_ASSOC,psessionEntry);
732 break;
733
734 case SIR_MAC_MGMT_REASSOC_REQ:
735 // Make sure the role supports Reassociation
736 if ((psessionEntry->limSystemRole == eLIM_BT_AMP_AP_ROLE)
Jeff Johnson295189b2012-06-20 16:38:30 -0700737 || (psessionEntry->limSystemRole == eLIM_AP_ROLE)
Jeff Johnson295189b2012-06-20 16:38:30 -0700738 ){
739 limProcessAssocReqFrame(pMac, pRxPacketInfo, LIM_REASSOC, psessionEntry);
740 }
741 else
742 {
743 // Unwanted messages - Log error
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -0700744 limLog(pMac, LOGE, FL("unexpected message received %X"),limMsg->type);
Jeff Johnson295189b2012-06-20 16:38:30 -0700745 limPrintMsgName(pMac, LOGE, limMsg->type);
746 }
747 break;
748
749 case SIR_MAC_MGMT_REASSOC_RSP:
750 limProcessAssocRspFrame(pMac, pRxPacketInfo, LIM_REASSOC,psessionEntry);
751 break;
752
753 case SIR_MAC_MGMT_PROBE_REQ:
754 limProcessProbeReqFrame_multiple_BSS(pMac, pRxPacketInfo,psessionEntry);
755 break;
756
757 case SIR_MAC_MGMT_PROBE_RSP:
758 if(psessionEntry == NULL)
759 limProcessProbeRspFrameNoSession(pMac, pRxPacketInfo);
760 else
761 limProcessProbeRspFrame(pMac, pRxPacketInfo, psessionEntry);
762 break;
763
764 case SIR_MAC_MGMT_BEACON:
765 __limHandleBeacon(pMac, limMsg,psessionEntry);
766 break;
767
768 case SIR_MAC_MGMT_DISASSOC:
769 limProcessDisassocFrame(pMac, pRxPacketInfo,psessionEntry);
770 break;
771
772 case SIR_MAC_MGMT_AUTH:
773 limProcessAuthFrame(pMac, pRxPacketInfo,psessionEntry);
774 break;
775
776 case SIR_MAC_MGMT_DEAUTH:
777 limProcessDeauthFrame(pMac, pRxPacketInfo,psessionEntry);
778 break;
779
780 case SIR_MAC_MGMT_ACTION:
Jeff Johnson295189b2012-06-20 16:38:30 -0700781 if(psessionEntry == NULL)
782 limProcessActionFrameNoSession(pMac, pRxPacketInfo);
783 else
784 {
Jeff Johnson295189b2012-06-20 16:38:30 -0700785 if (WDA_GET_RX_UNKNOWN_UCAST(pRxPacketInfo))
786 limHandleUnknownA2IndexFrames(pMac, pRxPacketInfo,psessionEntry);
787 else
788 limProcessActionFrame(pMac, pRxPacketInfo,psessionEntry);
Jeff Johnson295189b2012-06-20 16:38:30 -0700789 }
Jeff Johnson295189b2012-06-20 16:38:30 -0700790 break;
791 default:
792 // Received Management frame of 'reserved' subtype
793 break;
794 } // switch (fc.subType)
795
796 }
797 break;
Jeff Johnson295189b2012-06-20 16:38:30 -0700798 case SIR_MAC_DATA_FRAME:
799 {
Mohit Khanna698ba2a2012-12-04 15:08:18 -0800800#ifdef FEATURE_WLAN_TDLS_INTERNAL
801 /*
802 * if we reach here, following cases are possible.
803 * Possible cases: a) if frame translation is disabled.
804 * b) Some frame with ADRR2 filter enabled may come
805 * here.
806 */
807 tANI_U8 *dataOffset = WDA_GET_RX_MPDU_DATA(pRxPacketInfo);
808 tANI_U8 *rfc1042Hdr = (tANI_U8 *)(dataOffset + RFC1042_HDR_LENGTH) ;
809 tANI_U16 ethType = GET_BE16(rfc1042Hdr) ;
810 VOS_TRACE(VOS_MODULE_ID_PE, VOS_TRACE_LEVEL_ERROR,
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -0700811 ("TDLS frame with 80211 Header")) ;
Mohit Khanna698ba2a2012-12-04 15:08:18 -0800812 if(ETH_TYPE_89_0d == ethType)
813 {
814 tANI_U8 payloadType = (rfc1042Hdr + ETH_TYPE_LEN)[0] ;
815 if(PAYLOAD_TYPE_TDLS == payloadType)
816 {
817 limProcessTdlsFrame(pMac, (tANI_U32*)pRxPacketInfo) ;
818 }
819 }
820#endif
821#ifdef FEATURE_WLAN_CCX
Jeff Johnson295189b2012-06-20 16:38:30 -0700822 /* We accept data frame (IAPP frame) only if Session is
823 * present and ccx connection is established on that
824 * session
825 */
826 if (psessionEntry && psessionEntry->isCCXconnection) {
827 limProcessIappFrame(pMac, pRxPacketInfo, psessionEntry);
828 }
Mohit Khanna698ba2a2012-12-04 15:08:18 -0800829#endif
Jeff Johnson295189b2012-06-20 16:38:30 -0700830 }
831 break;
Jeff Johnson295189b2012-06-20 16:38:30 -0700832 default:
833 // Received frame of type 'reserved'
834 break;
835
836 } // switch (fc.type)
837
Varun Reddy Yeturud0a3f252013-04-15 21:58:13 -0700838#ifdef WLAN_FEATURE_ROAM_SCAN_OFFLOAD
839end:
840#endif
Jeff Johnson295189b2012-06-20 16:38:30 -0700841 limPktFree(pMac, HAL_TXRX_FRM_802_11_MGMT, pRxPacketInfo, (void *) limMsg->bodyptr) ;
842 return;
843} /*** end limHandle80211Frames() ***/
844
845
846/**
847 * limProcessAbortScanInd()
848 *
849 *FUNCTION:
850 * This function is called from HDD to abort the scan which is presently being run
851 *
852 *
853 *NOTE:
854 *
855 * @param pMac Pointer to Global MAC structure
856 * @param *pMsgBuf A pointer to the SME message buffer
857 * @return None
858 */
859void
860limProcessAbortScanInd(tpAniSirGlobal pMac)
861{
862#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM //FEATURE_WLAN_DIAG_SUPPORT
863 limDiagEventReport(pMac, WLAN_PE_DIAG_SCAN_ABORT_IND_EVENT, NULL, 0, 0);
864#endif //FEATURE_WLAN_DIAG_SUPPORT
865
866 /* Deactivate the gLimBackgroundScanTimer as part of the abort scan.
867 * SME should send WNI_CFG_BACKGROUND_SCAN_PERIOD indication
868 * to start the background scan again
869 */
Madan Mohan Koyyalamudi8b7f1e62012-10-05 14:56:51 -0700870 PELOG2(limLog(pMac, LOG2, FL("Processing AbortScan Ind"));)
Jeff Johnson295189b2012-06-20 16:38:30 -0700871
872 limAbortBackgroundScan(pMac);
873
874 /* Abort the scan if its running, else just return */
875 if(limIsSystemInScanState(pMac))
876 {
877 if( (eLIM_HAL_INIT_SCAN_WAIT_STATE == pMac->lim.gLimHalScanState ) ||
878 (eLIM_HAL_START_SCAN_WAIT_STATE == pMac->lim.gLimHalScanState ) ||
879 (eLIM_HAL_END_SCAN_WAIT_STATE == pMac->lim.gLimHalScanState ) ||
880 (eLIM_HAL_FINISH_SCAN_WAIT_STATE == pMac->lim.gLimHalScanState) )
881 {
882 //Simply signal we need to abort
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -0700883 limLog( pMac, LOGW, FL(" waiting for HAL, simply signal abort gLimHalScanState = %d"), pMac->lim.gLimHalScanState );
Jeff Johnson295189b2012-06-20 16:38:30 -0700884 pMac->lim.abortScan = 1;
885 }
886 else
887 {
888 //Force abort
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -0700889 limLog( pMac, LOGW, FL(" Force aborting scan") );
Jeff Johnson295189b2012-06-20 16:38:30 -0700890 pMac->lim.abortScan = 0;
891 limDeactivateAndChangeTimer(pMac, eLIM_MIN_CHANNEL_TIMER);
892 limDeactivateAndChangeTimer(pMac, eLIM_MAX_CHANNEL_TIMER);
893 //Set the resume channel to Any valid channel (invalid).
894 //This will instruct HAL to set it to any previous valid channel.
895 peSetResumeChannel(pMac, 0, 0);
896 limSendHalFinishScanReq(pMac, eLIM_HAL_FINISH_SCAN_WAIT_STATE);
897 }
898 }
899 return;
900}
901
902/**
903 * limMessageProcessor
904 *
905 *FUNCTION:
906 * Wrapper function for limProcessMessages when handling messages received by LIM.
907 * Could either defer messages or process them.
908 * @param pMac Pointer to Global MAC structure
909 * @param limMsg Received LIM message
910 * @return None
911 */
912
913void limMessageProcessor(tpAniSirGlobal pMac, tpSirMsgQ limMsg)
914{
915 if (eLIM_MLM_OFFLINE_STATE == pMac->lim.gLimMlmState)
916 {
917 peFreeMsg(pMac, limMsg);
918 return;
919 }
920
921 if (!defMsgDecision(pMac, limMsg))
922 {
923 limProcessMessages(pMac, limMsg);
Jeff Johnson295189b2012-06-20 16:38:30 -0700924 // process deferred message queue if allowed
925 {
926 if ( (! (pMac->lim.gLimAddtsSent))
927 &&
928 (! (limIsSystemInScanState(pMac)))
929 )
930 {
931 if (true == GET_LIM_PROCESS_DEFD_MESGS(pMac))
932 limProcessDeferredMessageQueue(pMac);
933 }
934 }
Jeff Johnson295189b2012-06-20 16:38:30 -0700935 }
936}
937
Jeff Johnsone7245742012-09-05 17:12:55 -0700938#ifdef FEATURE_OEM_DATA_SUPPORT
939
940void limOemDataRspHandleResumeLinkRsp(tpAniSirGlobal pMac, eHalStatus status, tANI_U32* mlmOemDataRsp)
941{
942 if(status != eHAL_STATUS_SUCCESS)
943 {
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -0700944 limLog(pMac, LOGE, FL("OEM Data Rsp failed to get the response for resume link"));
Jeff Johnsone7245742012-09-05 17:12:55 -0700945 }
946
947 if(NULL != pMac->lim.gpLimMlmOemDataReq)
948 {
949 palFreeMemory(pMac->hHdd, pMac->lim.gpLimMlmOemDataReq);
950 pMac->lim.gpLimMlmOemDataReq = NULL;
951 }
952
953 //"Failure" status doesn't mean that Oem Data Rsp did not happen
954 //and hence we need to respond to upper layers. Only Resume link is failed, but
955 //we got the oem data response already.
956 //Post the meessage to MLM
957 limPostSmeMessage(pMac, LIM_MLM_OEM_DATA_CNF, (tANI_U32*)(mlmOemDataRsp));
958
959 return;
960}
961
962void limProcessOemDataRsp(tpAniSirGlobal pMac, tANI_U32* body)
963{
964 eHalStatus status = eHAL_STATUS_SUCCESS;
965 tpLimMlmOemDataRsp mlmOemDataRsp = NULL;
966 tpStartOemDataRsp oemDataRsp = NULL;
967
968 //Process all the messages for the lim queue
969 SET_LIM_PROCESS_DEFD_MESGS(pMac, true);
970
971 oemDataRsp = (tpStartOemDataRsp)(body);
972
973 status = palAllocateMemory(pMac->hHdd, (void**)(&mlmOemDataRsp), sizeof(tLimMlmOemDataRsp));
974 if(status != eHAL_STATUS_SUCCESS)
975 {
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -0700976 limLog(pMac, LOGP, FL("could not allocate memory for mlmOemDataRsp"));
Jeff Johnsone7245742012-09-05 17:12:55 -0700977 return;
978 }
979
980 //copy the memory into tLimMlmOemDataRsp and free the tStartOemDataRsp
981 //the structures tStartOemDataRsp and tLimMlmOemDataRsp have the same structure
982 palCopyMemory(pMac->hHdd, (void*)(mlmOemDataRsp), (void*)(oemDataRsp), sizeof(tLimMlmOemDataRsp));
983
984 //Now free the incoming memory
985 palFreeMemory(pMac->hHdd, (void*)(oemDataRsp));
986
987 limResumeLink(pMac, limOemDataRspHandleResumeLinkRsp, (tANI_U32*)mlmOemDataRsp);
988
989 return;
990}
991
992#endif
Jeff Johnson295189b2012-06-20 16:38:30 -0700993
994
995/**
996 * limProcessMessages
997 *
998 *FUNCTION:
999 * This function is called by limProcessMessageQueue function. This
1000 * function processes messages received by LIM.
1001 *
1002 *LOGIC:
1003 * Depending on the message type, corresponding function will be
1004 * called, for example limProcessSmeMessages() will be called to
1005 * process SME messages received from HDD/Upper layer software module.
1006 *
1007 *ASSUMPTIONS:
1008 * NA
1009 *
1010 *NOTE:
1011 * NA
1012 *
1013 * @param pMac Pointer to Global MAC structure
1014 * @param limMsg Received LIM message
1015 * @return None
1016 */
1017
1018void
1019limProcessMessages(tpAniSirGlobal pMac, tpSirMsgQ limMsg)
1020{
1021 tANI_U8 deferMsg = false;
1022 tLinkStateParams *linkStateParams;
1023#if defined WLAN_FEATURE_VOWIFI_11R
1024 tpPESession pSession;
1025#endif
1026#if defined(ANI_DVT_DEBUG)
1027 tSirMsgQ msgQ;
1028#endif
1029 if(pMac->gDriverType == eDRIVER_TYPE_MFG)
1030 {
Jeff Johnsone7245742012-09-05 17:12:55 -07001031 palFreeMemory(pMac->hHdd, (tANI_U8 *)limMsg->bodyptr);
1032 limMsg->bodyptr = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07001033 return;
1034 }
1035#ifdef WLAN_DEBUG
1036 pMac->lim.numTot++;
1037#endif
1038
1039
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07001040 PELOG3(limLog(pMac, LOG3, FL("rcvd msgType = %s, sme state = %s, mlm state = %s"),
Jeff Johnson295189b2012-06-20 16:38:30 -07001041 limMsgStr(limMsg->type), limSmeStateStr(pMac->lim.gLimSmeState),
1042 limMlmStateStr(pMac->lim.gLimMlmState));)
1043
Jeff Johnsone7245742012-09-05 17:12:55 -07001044 MTRACE(macTraceMsgRx(pMac, NO_SESSION, LIM_TRACE_MAKE_RXMSG(limMsg->type, LIM_MSG_PROCESSED));)
Jeff Johnson295189b2012-06-20 16:38:30 -07001045
1046 switch (limMsg->type)
1047 {
Jeff Johnson295189b2012-06-20 16:38:30 -07001048
1049 case SIR_LIM_UPDATE_BEACON:
1050 limUpdateBeacon(pMac);
1051 break;
1052
Jeff Johnson295189b2012-06-20 16:38:30 -07001053 case SIR_CFG_PARAM_UPDATE_IND:
1054 /// CFG parameter updated
1055 if (limIsSystemInScanState(pMac))
1056 {
1057 // System is in DFS (Learn) mode
1058 // Defer processsing this message
1059 if (limDeferMsg(pMac, limMsg) != TX_SUCCESS)
1060 {
Leela Venkata Kiran Kumar Reddy Chirala2247e962013-03-22 19:21:10 -07001061 if(!(pMac->lim.deferredMsgCnt & 0xF))
1062 {
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07001063 PELOGE(limLog(pMac, LOGE, FL("Unable to Defer message(0x%X) limSmeState %d (prev sme state %d) sysRole %d mlm state %d (prev mlm state %d)"),
Jeff Johnson295189b2012-06-20 16:38:30 -07001064 limMsg->type, pMac->lim.gLimSmeState, pMac->lim.gLimPrevSmeState,
1065 pMac->lim.gLimSystemRole, pMac->lim.gLimMlmState, pMac->lim.gLimPrevMlmState);)
Leela Venkata Kiran Kumar Reddy Chirala2247e962013-03-22 19:21:10 -07001066 }
Jeff Johnson295189b2012-06-20 16:38:30 -07001067 limLogSessionStates(pMac);
1068 limPrintMsgName(pMac, LOGE, limMsg->type);
1069 }
1070 }
1071 else
1072 {
1073 limHandleCFGparamUpdate(pMac, limMsg->bodyval);
1074 }
1075
1076 break;
1077
1078 case WDA_INIT_SCAN_RSP:
1079 limProcessInitScanRsp(pMac, limMsg->bodyptr);
1080 break;
1081
1082 case WDA_START_SCAN_RSP:
1083 limProcessStartScanRsp(pMac, limMsg->bodyptr);
1084 break;
1085
1086 case WDA_END_SCAN_RSP:
1087 limProcessEndScanRsp(pMac, limMsg->bodyptr);
1088 break;
1089
1090 case WDA_FINISH_SCAN_RSP:
1091 limProcessFinishScanRsp(pMac, limMsg->bodyptr);
1092 break;
Jeff Johnsone7245742012-09-05 17:12:55 -07001093#ifdef FEATURE_OEM_DATA_SUPPORT
1094 case WDA_START_OEM_DATA_RSP:
1095 limProcessOemDataRsp(pMac, limMsg->bodyptr);
1096 break;
1097#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07001098
1099 case WDA_SWITCH_CHANNEL_RSP:
1100 limProcessSwitchChannelRsp(pMac, limMsg->bodyptr);
1101 break;
1102
1103#ifdef ANI_SIR_IBSS_PEER_CACHING
1104 case WDA_IBSS_STA_ADD:
1105 limIbssStaAdd(pMac, limMsg->bodyptr);
1106 break;
1107#endif
1108 case SIR_BB_XPORT_MGMT_MSG:
1109 // These messages are from Peer MAC entity.
1110#ifdef WLAN_DEBUG
1111 pMac->lim.numBbt++;
1112#endif
1113
Jeff Johnson295189b2012-06-20 16:38:30 -07001114 {
1115 v_U16_t pktLen = 0;
1116 vos_pkt_t *pVosPkt;
1117 VOS_STATUS vosStatus;
1118 tSirMsgQ limMsgNew;
Mohit Khanna698ba2a2012-12-04 15:08:18 -08001119#ifdef FEATURE_WLAN_TDLS_INTERNAL
1120 tANI_U32 *pBD = NULL ;
1121#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07001122
1123 /* The original limMsg which we were deferring have the
1124 * bodyPointer point to 'BD' instead of 'Vos pkt'. If we don't make a copy
1125 * of limMsg, then vos_pkt_peek_data will overwrite the limMsg->bodyPointer.
1126 * and next time when we try to process the msg, we will try to use 'BD' as
1127 * 'Vos Pkt' which will cause a crash
1128 */
1129 palCopyMemory(pMac, (tANI_U8*)&limMsgNew, (tANI_U8*)limMsg, sizeof(tSirMsgQ));
1130 pVosPkt = (vos_pkt_t *)limMsgNew.bodyptr;
1131 vos_pkt_get_packet_length(pVosPkt, &pktLen);
1132
1133 vosStatus = WDA_DS_PeekRxPacketInfo( pVosPkt, (v_PVOID_t *)&limMsgNew.bodyptr, VOS_FALSE );
1134
1135 if( !VOS_IS_STATUS_SUCCESS(vosStatus) )
1136 {
1137 vos_pkt_return_packet(pVosPkt);
1138 break;
1139
1140 }
Mohit Khanna698ba2a2012-12-04 15:08:18 -08001141#ifdef FEATURE_WLAN_TDLS_INTERNAL
1142 /*
1143 * TDLS frames comes as translated frames as well as
1144 * MAC 802.11 data frames..
1145 */
1146 limGetBDfromRxPacket(pMac, limMsgNew.bodyptr, &pBD);
1147 if(0 != WDA_GET_RX_FT_DONE(pBD))
1148 {
1149 /*
1150 * TODO: check for scanning state and set deferMesg flag
1151 * accordingly..
1152 */
1153 deferMsg = false ;
1154
1155 limProcessTdlsFrame(pMac, pBD) ;
1156 }
1157 else
1158#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07001159 limHandle80211Frames(pMac, &limMsgNew, &deferMsg);
1160
1161 if ( deferMsg == true )
1162 {
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07001163 PELOG1(limLog(pMac, LOG1, FL("Defer message type=%X "), limMsg->type);)
Jeff Johnson295189b2012-06-20 16:38:30 -07001164 if (limDeferMsg(pMac, limMsg) != TX_SUCCESS)
1165 {
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07001166 PELOGE(limLog(pMac, LOGE, FL("Unable to Defer message(0x%X) limSmeState %d (prev sme state %d) sysRole %d mlm state %d (prev mlm state %d)"),
Jeff Johnson295189b2012-06-20 16:38:30 -07001167 limMsg->type, pMac->lim.gLimSmeState, pMac->lim.gLimPrevSmeState,
1168 pMac->lim.gLimSystemRole, pMac->lim.gLimMlmState, pMac->lim.gLimPrevMlmState);)
1169 limLogSessionStates(pMac);
1170 limPrintMsgName(pMac, LOGE, limMsg->type);
1171 vos_pkt_return_packet(pVosPkt);
1172 }
1173 }
1174 else
1175 {
1176 /* PE is not deferring this 802.11 frame so we need to call vos_pkt_return.
1177 * Asumption here is when Rx mgmt frame processing is done,
1178 * voss packet could be freed here.
1179 */
1180 vos_pkt_return_packet(pVosPkt);
1181 }
1182 }
Jeff Johnson295189b2012-06-20 16:38:30 -07001183 break;
1184
1185 case eWNI_SME_SCAN_REQ:
Jeff Johnson295189b2012-06-20 16:38:30 -07001186 case eWNI_SME_REMAIN_ON_CHANNEL_REQ:
Jeff Johnson295189b2012-06-20 16:38:30 -07001187 case eWNI_SME_DISASSOC_REQ:
1188 case eWNI_SME_DEAUTH_REQ:
1189 case eWNI_SME_STA_STAT_REQ:
1190 case eWNI_SME_AGGR_STAT_REQ:
1191 case eWNI_SME_GLOBAL_STAT_REQ:
1192 case eWNI_SME_STAT_SUMM_REQ:
1193 case eWNI_SME_GET_SCANNED_CHANNEL_REQ:
1194 case eWNI_SME_GET_STATISTICS_REQ:
Srinivas Girigowdad34cedb2013-01-25 13:33:11 -08001195#if defined WLAN_FEATURE_VOWIFI_11R || defined FEATURE_WLAN_CCX || defined(FEATURE_WLAN_LFR)
1196 case eWNI_SME_GET_ROAM_RSSI_REQ:
1197#endif
Jeff Johnsone7245742012-09-05 17:12:55 -07001198#ifdef FEATURE_OEM_DATA_SUPPORT
1199 case eWNI_SME_OEM_DATA_REQ:
1200#endif
Mohit Khanna698ba2a2012-12-04 15:08:18 -08001201#ifdef FEATURE_WLAN_TDLS
1202 case eWNI_SME_TDLS_SEND_MGMT_REQ:
1203 case eWNI_SME_TDLS_ADD_STA_REQ:
1204 case eWNI_SME_TDLS_DEL_STA_REQ:
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +05301205 case eWNI_SME_TDLS_LINK_ESTABLISH_REQ:
Mohit Khanna698ba2a2012-12-04 15:08:18 -08001206#endif
1207#ifdef FEATURE_WLAN_TDLS_INTERNAL
1208 case eWNI_SME_TDLS_DISCOVERY_START_REQ:
1209 case eWNI_SME_TDLS_LINK_START_REQ:
1210 case eWNI_SME_TDLS_TEARDOWN_REQ:
1211#endif
Gopichand Nakkalacca24d12013-03-07 17:05:07 +05301212 case eWNI_SME_RESET_AP_CAPS_CHANGED:
Jeff Johnson295189b2012-06-20 16:38:30 -07001213 // These messages are from HDD
1214 limProcessNormalHddMsg(pMac, limMsg, true); //need to response to hdd
1215 break;
1216
1217 case eWNI_SME_SCAN_ABORT_IND:
1218 vos_mem_free((v_VOID_t *)limMsg->bodyptr);
1219 limMsg->bodyptr = NULL;
1220 limProcessAbortScanInd(pMac);
1221 break;
1222
1223 case eWNI_SME_START_REQ:
1224 case eWNI_SME_SYS_READY_IND:
1225#ifndef WNI_ASKEY_NON_SUPPORT_FEATURE
1226 case eWNI_SME_JOIN_REQ:
1227#endif
1228 case eWNI_SME_AUTH_REQ:
1229 case eWNI_SME_REASSOC_REQ:
1230 case eWNI_SME_START_BSS_REQ:
1231 case eWNI_SME_STOP_BSS_REQ:
1232 case eWNI_SME_SWITCH_CHL_REQ:
1233 case eWNI_SME_SWITCH_CHL_CB_PRIMARY_REQ:
1234 case eWNI_SME_SWITCH_CHL_CB_SECONDARY_REQ:
1235 case eWNI_SME_SETCONTEXT_REQ:
1236 case eWNI_SME_REMOVEKEY_REQ:
1237#ifndef WNI_ASKEY_NON_SUPPORT_FEATURE
1238 case eWNI_SME_PROMISCUOUS_MODE_REQ:
1239#endif
1240 case eWNI_SME_DISASSOC_CNF:
1241 case eWNI_SME_DEAUTH_CNF:
1242 case eWNI_SME_ASSOC_CNF:
1243 case eWNI_SME_REASSOC_CNF:
1244 case eWNI_SME_ADDTS_REQ:
1245 case eWNI_SME_DELTS_REQ:
1246 case eWNI_SME_DEL_BA_PEER_IND:
1247 case eWNI_SME_SET_TX_POWER_REQ:
1248 case eWNI_SME_GET_TX_POWER_REQ:
1249 case eWNI_SME_GET_NOISE_REQ:
Jeff Johnson295189b2012-06-20 16:38:30 -07001250 case eWNI_SME_GET_ASSOC_STAS_REQ:
1251 case eWNI_SME_TKIP_CNTR_MEAS_REQ:
1252 case eWNI_SME_UPDATE_APWPSIE_REQ:
1253 case eWNI_SME_HIDE_SSID_REQ:
1254 case eWNI_SME_GET_WPSPBC_SESSION_REQ:
1255 case eWNI_SME_SET_APWPARSNIEs_REQ:
Madan Mohan Koyyalamudi167b95e2012-11-27 15:53:38 -08001256 case eWNI_SME_CHNG_MCC_BEACON_INTERVAL:
Jeff Johnson295189b2012-06-20 16:38:30 -07001257#if defined WLAN_FEATURE_VOWIFI
1258 case eWNI_SME_NEIGHBOR_REPORT_REQ_IND:
1259 case eWNI_SME_BEACON_REPORT_RESP_XMIT_IND:
1260#endif
1261#if defined FEATURE_WLAN_CCX
1262 case eWNI_SME_CCX_ADJACENT_AP_REPORT:
1263#endif
1264#ifdef WLAN_FEATURE_VOWIFI_11R
1265 case eWNI_SME_FT_UPDATE_KEY:
1266 case eWNI_SME_FT_PRE_AUTH_REQ:
1267 case eWNI_SME_FT_AGGR_QOS_REQ:
1268#endif
1269 case eWNI_SME_ADD_STA_SELF_REQ:
1270 case eWNI_SME_DEL_STA_SELF_REQ:
Jeff Johnson295189b2012-06-20 16:38:30 -07001271 case eWNI_SME_REGISTER_MGMT_FRAME_REQ:
1272 case eWNI_SME_UPDATE_NOA:
Gopichand Nakkalac178ac82013-05-30 19:53:39 +05301273 case eWNI_SME_CLEAR_DFS_CHANNEL_LIST:
Jeff Johnson295189b2012-06-20 16:38:30 -07001274 // These messages are from HDD
1275 limProcessNormalHddMsg(pMac, limMsg, false); //no need to response to hdd
1276 break;
1277
1278 //Power Save Messages From HDD
1279 case eWNI_PMC_PWR_SAVE_CFG:
1280 case eWNI_PMC_ENTER_BMPS_REQ:
1281 case eWNI_PMC_EXIT_BMPS_REQ:
1282 case eWNI_PMC_ENTER_IMPS_REQ:
1283 case eWNI_PMC_EXIT_IMPS_REQ:
1284 case eWNI_PMC_ENTER_UAPSD_REQ:
1285 case eWNI_PMC_EXIT_UAPSD_REQ:
1286 case eWNI_PMC_ENTER_WOWL_REQ:
1287 case eWNI_PMC_EXIT_WOWL_REQ:
1288 case eWNI_PMC_WOWL_ADD_BCAST_PTRN:
1289 case eWNI_PMC_WOWL_DEL_BCAST_PTRN:
1290 pmmProcessMessage(pMac, limMsg);
1291 break;
1292
1293 case eWNI_PMC_SMPS_STATE_IND :
1294 {
Jeff Johnson295189b2012-06-20 16:38:30 -07001295 if(limMsg->bodyptr){
1296 palFreeMemory(pMac->hHdd, (tANI_U8 *)limMsg->bodyptr);
1297 limMsg->bodyptr = NULL;
1298 }
1299 }
1300 break;
Jeff Johnson295189b2012-06-20 16:38:30 -07001301 case eWNI_SME_SEND_ACTION_FRAME_IND:
1302 limSendP2PActionFrame(pMac, limMsg);
1303 palFreeMemory(pMac->hHdd, (tANI_U8 *)limMsg->bodyptr);
1304 limMsg->bodyptr = NULL;
1305 break;
1306 case eWNI_SME_ABORT_REMAIN_ON_CHAN_IND:
1307 limAbortRemainOnChan(pMac);
1308 palFreeMemory(pMac->hHdd, (tANI_U8 *)limMsg->bodyptr);
1309 limMsg->bodyptr = NULL;
1310 break;
1311
Viral Modid86bde22012-12-10 13:09:21 -08001312 case SIR_HAL_P2P_NOA_START_IND:
1313 {
1314 tpPESession psessionEntry = &pMac->lim.gpSession[0];
1315 tANI_U8 i;
Viral Modid440e682013-03-06 02:25:31 -08001316 tANI_U8 p2pGOExists = 0;
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05301317
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07001318 limLog(pMac, LOG1, "LIM received NOA start %x", limMsg->type);
Viral Modid440e682013-03-06 02:25:31 -08001319
1320 /* Since insert NOA is done and NOA start msg received, we should deactivate the Insert NOA timer */
1321 limDeactivateAndChangeTimer(pMac, eLIM_INSERT_SINGLESHOT_NOA_TIMER);
1322
Viral Modid86bde22012-12-10 13:09:21 -08001323 for(i=0; i < pMac->lim.maxBssId; i++)
1324 {
1325 psessionEntry = &pMac->lim.gpSession[i];
1326 if ( (psessionEntry != NULL) && (psessionEntry->valid) &&
1327 (psessionEntry->pePersona == VOS_P2P_GO_MODE))
1328 { //Save P2P NOA start attributes for P2P Go persona
Viral Modid440e682013-03-06 02:25:31 -08001329 p2pGOExists = 1;
Viral Modid86bde22012-12-10 13:09:21 -08001330 palCopyMemory(pMac->hHdd, &psessionEntry->p2pGoPsNoaStartInd, limMsg->bodyptr, sizeof(tSirP2PNoaStart));
Viral Modid440e682013-03-06 02:25:31 -08001331 if (psessionEntry->p2pGoPsNoaStartInd.status != eHAL_STATUS_SUCCESS)
Viral Modid86bde22012-12-10 13:09:21 -08001332 {
Viral Modid440e682013-03-06 02:25:31 -08001333 limLog(pMac, LOGW, FL("GO NOA start failure status %d reported by FW."
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07001334 " - still go ahead with deferred sme req. This is just info"),
Viral Modid440e682013-03-06 02:25:31 -08001335 psessionEntry->p2pGoPsNoaStartInd.status);
Viral Modid86bde22012-12-10 13:09:21 -08001336 }
Viral Modid86bde22012-12-10 13:09:21 -08001337 break;
1338 }
1339 }
Viral Modid440e682013-03-06 02:25:31 -08001340
1341 if (p2pGOExists == 0)
1342 {
1343 limLog(pMac, LOGW, FL("By the time, we received NOA start, GO is already removed."
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07001344 " - still go ahead with deferred sme req. This is just info"));
Viral Modid440e682013-03-06 02:25:31 -08001345 }
1346
1347 /* We received the NOA start indication. Now we can send down the SME request which requires off-channel operation */
1348 limProcessRegdDefdSmeReqAfterNOAStart(pMac);
Viral Modid86bde22012-12-10 13:09:21 -08001349 palFreeMemory(pMac->hHdd, (tANI_U8 *)limMsg->bodyptr);
1350 limMsg->bodyptr = NULL;
Viral Modid440e682013-03-06 02:25:31 -08001351 }
Viral Modid86bde22012-12-10 13:09:21 -08001352 break;
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +05301353#ifdef FEATURE_WLAN_TDLS
1354 case SIR_HAL_TDLS_IND:
1355 {
1356 tSirTdlsInd *pTdlsInd = (tpSirTdlsInd)limMsg->bodyptr ;
1357 tpDphHashNode pStaDs = NULL ;
1358 tpPESession psessionEntry = NULL;
1359 tANI_U8 sessionId;
1360 if((psessionEntry = peFindSessionByStaId(pMac,pTdlsInd->staIdx,&sessionId))== NULL)
1361 {
1362 limLog(pMac, LOG1, FL("session does not exist for given bssId\n"));
1363 palFreeMemory(pMac->hHdd, (tANI_U8 *)limMsg->bodyptr);
1364 limMsg->bodyptr = NULL;
1365 return;
1366 }
1367 if ((pStaDs = dphGetHashEntry(pMac, pTdlsInd->assocId, &psessionEntry->dph.dphHashTable)) == NULL)
1368 {
1369 limLog(pMac, LOG1, FL("pStaDs Does not exist for given staId\n"));
1370 palFreeMemory(pMac->hHdd, (tANI_U8 *)limMsg->bodyptr);
1371 limMsg->bodyptr = NULL;
1372 return;
1373 }
Viral Modid86bde22012-12-10 13:09:21 -08001374
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +05301375 if ((STA_ENTRY_TDLS_PEER == pStaDs->staType))
1376 {
1377 limLog(pMac, LOGE,
1378 FL("received TDLS Indication from the Firmware with Reason Code %d "),
1379 pTdlsInd->reasonCode);
1380 limSendSmeTDLSDelStaInd(pMac, pStaDs, psessionEntry,
1381 /*pTdlsInd->reasonCode*/eSIR_MAC_TDLS_TEARDOWN_PEER_UNREACHABLE);
1382 }
1383 palFreeMemory(pMac->hHdd, (tANI_U8 *)limMsg->bodyptr);
1384 limMsg->bodyptr = NULL;
1385 }
1386 break;
1387#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07001388 case SIR_HAL_P2P_NOA_ATTR_IND:
1389 {
1390 tpPESession psessionEntry = &pMac->lim.gpSession[0];
1391 tANI_U8 i;
1392
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07001393 limLog(pMac, LOGW, FL("Received message Noa_ATTR %x"), limMsg->type);
Jeff Johnson295189b2012-06-20 16:38:30 -07001394 for(i=0; i < pMac->lim.maxBssId; i++)
1395 {
Viral Modid86bde22012-12-10 13:09:21 -08001396 psessionEntry = &pMac->lim.gpSession[i];
1397 if ( (psessionEntry != NULL) && (psessionEntry->valid) &&
Jeff Johnson295189b2012-06-20 16:38:30 -07001398 (psessionEntry->pePersona == VOS_P2P_GO_MODE))
1399 { //Save P2P attributes for P2P Go persona
1400
1401 palCopyMemory(pMac->hHdd,&psessionEntry->p2pGoPsUpdate, limMsg->bodyptr,sizeof(tSirP2PNoaAttr));
1402
1403
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07001404 limLog(pMac, LOG2, FL(" &psessionEntry->bssId%02x:%02x:%02x:%02x:%02x:%02x ctWin=%d oppPsFlag=%d"),
Jeff Johnson295189b2012-06-20 16:38:30 -07001405 psessionEntry->bssId[0],
1406 psessionEntry->bssId[1],
1407 psessionEntry->bssId[2],
1408 psessionEntry->bssId[3],
1409 psessionEntry->bssId[4],
1410 psessionEntry->bssId[5],
1411 psessionEntry->p2pGoPsUpdate.ctWin,
1412 psessionEntry->p2pGoPsUpdate.oppPsFlag);
1413
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07001414 limLog(pMac, LOG2, FL(" uNoa1IntervalCnt=%d uNoa1Duration=%d uNoa1Interval=%d uNoa1StartTime=%d"),
Jeff Johnson295189b2012-06-20 16:38:30 -07001415 psessionEntry->p2pGoPsUpdate.uNoa1IntervalCnt,
1416 psessionEntry->p2pGoPsUpdate.uNoa1Duration,
1417 psessionEntry->p2pGoPsUpdate.uNoa1Interval,
1418 psessionEntry->p2pGoPsUpdate.uNoa1StartTime);
1419
1420
1421 break;
1422 }
1423 }
1424
1425 }
1426 palFreeMemory(pMac->hHdd, (tANI_U8 *)limMsg->bodyptr);
1427 limMsg->bodyptr = NULL;
1428
1429 break;
1430
1431
Jeff Johnson295189b2012-06-20 16:38:30 -07001432 /* eWNI_SME_PRE_CHANNEL_SWITCH_FULL_POWER Message comes after the
1433 * device comes out of full power for the full power request sent
1434 * because of channel switch with switch count as 0, so call the same
1435 * function used in timeout case(i.e SIR_LIM_CHANNEL_SWITCH_TIMEOUT)
1436 * for switching the channel*/
1437 case eWNI_SME_PRE_CHANNEL_SWITCH_FULL_POWER:
Jeff Johnsone7245742012-09-05 17:12:55 -07001438 if ( !tx_timer_running(&pMac->lim.limTimers.gLimChannelSwitchTimer) )
1439 {
1440 limProcessChannelSwitchTimeout(pMac);
1441 }
Jeff Johnson295189b2012-06-20 16:38:30 -07001442 palFreeMemory(pMac->hHdd, (tANI_U8 *)limMsg->bodyptr);
1443 limMsg->bodyptr = NULL;
1444 break;
1445
1446 //Power Save Related Messages From HAL
1447 case WDA_ENTER_BMPS_RSP:
1448 case WDA_EXIT_BMPS_RSP:
1449 case WDA_EXIT_BMPS_IND:
1450 case WDA_ENTER_IMPS_RSP:
1451 case WDA_EXIT_IMPS_RSP:
1452 case WDA_ENTER_UAPSD_RSP:
1453 case WDA_EXIT_UAPSD_RSP:
1454 case WDA_WOWL_ENTER_RSP:
1455 case WDA_WOWL_EXIT_RSP:
1456 pmmProcessMessage(pMac, limMsg);
1457 break;
1458
1459 case WDA_LOW_RSSI_IND:
1460 //limHandleLowRssiInd(pMac);
1461 break;
1462
1463 case WDA_BMPS_STATUS_IND:
1464 limHandleBmpsStatusInd(pMac);
1465 break;
1466
1467 case WDA_MISSED_BEACON_IND:
Leela Venkata Kiran Kumar Reddy Chirala3ca17902013-02-27 19:50:05 -08001468 limHandleMissedBeaconInd(pMac, limMsg);
1469 palFreeMemory(pMac->hHdd, (tANI_U8 *)limMsg->bodyptr);
1470 limMsg->bodyptr = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07001471 break;
1472 case WDA_MIC_FAILURE_IND:
1473 limMicFailureInd(pMac, limMsg);
1474 palFreeMemory(pMac->hHdd, (tANI_U8 *)limMsg->bodyptr);
1475 limMsg->bodyptr = NULL;
1476 break;
1477
1478
Jeff Johnson295189b2012-06-20 16:38:30 -07001479
1480 case SIR_LIM_ADDTS_RSP_TIMEOUT:
1481 limProcessSmeReqMessages(pMac,limMsg);
1482 break;
1483#ifdef FEATURE_WLAN_CCX
1484 case SIR_LIM_CCX_TSM_TIMEOUT:
1485 limProcessTsmTimeoutHandler(pMac,limMsg);
1486 break;
1487 case WDA_TSM_STATS_RSP:
1488 limProcessHalCcxTsmRsp(pMac, limMsg);
1489 break;
1490#endif
1491 case WDA_ADD_TS_RSP:
1492 limProcessHalAddTsRsp(pMac, limMsg);
1493 break;
1494
1495 case SIR_LIM_DEL_TS_IND:
1496 limProcessDelTsInd(pMac, limMsg);
Madan Mohan Koyyalamudif244d8f2012-11-29 11:21:05 -08001497 break;
Jeff Johnson295189b2012-06-20 16:38:30 -07001498 case SIR_LIM_ADD_BA_IND:
1499 limProcessAddBaInd(pMac, limMsg);
1500 break;
1501 case SIR_LIM_DEL_BA_ALL_IND:
Kiran Kumar Lokere458d7322013-05-29 14:29:43 -07001502 limDelAllBASessions(pMac);
Jeff Johnson295189b2012-06-20 16:38:30 -07001503 break;
1504 case SIR_LIM_DEL_BA_IND:
1505 limProcessMlmHalBADeleteInd( pMac, limMsg );
1506 break;
1507
1508 case SIR_LIM_BEACON_GEN_IND: {
Jeff Johnson295189b2012-06-20 16:38:30 -07001509
Jeff Johnson295189b2012-06-20 16:38:30 -07001510 if( pMac->lim.gLimSystemRole != eLIM_AP_ROLE )
Jeff Johnson295189b2012-06-20 16:38:30 -07001511 schProcessPreBeaconInd(pMac, limMsg);
1512
1513 }
1514 break;
1515
1516 case SIR_LIM_DELETE_STA_CONTEXT_IND:
1517 limDeleteStaContext(pMac, limMsg);
1518 break;
1519
1520 case SIR_LIM_MIN_CHANNEL_TIMEOUT:
1521 case SIR_LIM_MAX_CHANNEL_TIMEOUT:
1522 case SIR_LIM_PERIODIC_PROBE_REQ_TIMEOUT:
1523 case SIR_LIM_JOIN_FAIL_TIMEOUT:
Madan Mohan Koyyalamudi9aff9ff2012-11-29 11:27:25 -08001524 case SIR_LIM_PERIODIC_JOIN_PROBE_REQ_TIMEOUT:
Jeff Johnson295189b2012-06-20 16:38:30 -07001525 case SIR_LIM_AUTH_FAIL_TIMEOUT:
1526 case SIR_LIM_AUTH_RSP_TIMEOUT:
1527 case SIR_LIM_ASSOC_FAIL_TIMEOUT:
1528 case SIR_LIM_REASSOC_FAIL_TIMEOUT:
1529#ifdef WLAN_FEATURE_VOWIFI_11R
1530 case SIR_LIM_FT_PREAUTH_RSP_TIMEOUT:
1531#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07001532 case SIR_LIM_REMAIN_CHN_TIMEOUT:
Viral Modid86bde22012-12-10 13:09:21 -08001533 case SIR_LIM_INSERT_SINGLESHOT_NOA_TIMEOUT:
Madan Mohan Koyyalamudi521ff192012-11-15 17:13:08 -08001534 case SIR_LIM_DISASSOC_ACK_TIMEOUT:
1535 case SIR_LIM_DEAUTH_ACK_TIMEOUT:
Gopichand Nakkalad492d202013-05-10 02:50:47 +05301536 case SIR_LIM_CONVERT_ACTIVE_CHANNEL_TO_PASSIVE:
Jeff Johnson295189b2012-06-20 16:38:30 -07001537 // These timeout messages are handled by MLM sub module
1538
1539 limProcessMlmReqMessages(pMac,
1540 limMsg);
1541
1542 break;
1543
1544 case SIR_LIM_HEART_BEAT_TIMEOUT:
1545 /** check if heart beat failed, even if one Beacon
1546 * is rcvd within the Heart Beat interval continue
1547 * normal processing
1548 */
1549
1550 #if 0
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07001551 PELOG1(limLog(pMac, LOG1, FL("Heartbeat timeout, SME %d, MLME %d, #bcn %d"),
Jeff Johnson295189b2012-06-20 16:38:30 -07001552 pMac->lim.gLimSmeState, pMac->lim.gLimMlmState,
1553 pMac->lim.gLimRxedBeaconCntDuringHB);)
1554
1555 if(pMac->lim.gLimSystemRole == eLIM_STA_IN_IBSS_ROLE)
1556 limIbssHeartBeatHandle(pMac); //HeartBeat for peers.
1557 else
1558 /**
1559 * Heartbeat failure occurred on STA
1560 * This is handled by LMM sub module.
1561 */
1562 limHandleHeartBeatFailure(pMac);
1563
1564 break;
1565 #endif //TO SUPPORT BT-AMP
Yathish9f22e662012-12-10 14:21:35 -08001566 if (limIsSystemInScanState(pMac))
1567 {
1568 // System is in DFS (Learn) mode
1569 // Defer processsing this message
1570 if (limDeferMsg(pMac, limMsg) != TX_SUCCESS)
1571 {
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07001572 PELOGE(limLog(pMac, LOGE, FL("Unable to Defer message(0x%X) limSmeState %d (prev sme state %d) sysRole %d mlm state %d (prev mlm state %d)"),
Yathish9f22e662012-12-10 14:21:35 -08001573 limMsg->type, pMac->lim.gLimSmeState, pMac->lim.gLimPrevSmeState,
1574 pMac->lim.gLimSystemRole, pMac->lim.gLimMlmState, pMac->lim.gLimPrevMlmState);)
1575 limLogSessionStates(pMac);
1576 }
1577 }
1578 else
1579 {
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05301580#if defined(FEATURE_WLAN_TDLS) && defined(FEATURE_WLAN_TDLS_OXYGEN_DISAPPEAR_AP)
1581 tpPESession psessionEntry = &pMac->lim.gpSession[0];
1582 for (i=0; i < pMac->lim.maxBssId; i++)
1583 {
1584 psessionEntry = &pMac->lim.gpSession[i];
1585 if ((psessionEntry != NULL) && (psessionEntry->valid) &&
1586 ((psessionEntry->pePersona == VOS_P2P_CLIENT_MODE) ||
1587 (psessionEntry->pePersona == VOS_STA_MODE)))
1588 {
1589 if ((TRUE == pMac->lim.gLimTDLSOxygenSupport) &&
1590 (limGetTDLSPeerCount(pMac, psessionEntry) != 0)) {
1591 if (limMsg->bodyptr) {
1592 palFreeMemory(pMac->hHdd, (tANI_U8 *)limMsg->bodyptr);
1593 limMsg->bodyptr = NULL;
1594 }
1595 return;
1596 }
1597 }
1598 }
1599#endif
Leela Venkata Kiran Kumar Reddy Chirala3ca17902013-02-27 19:50:05 -08001600 if (NULL == limMsg->bodyptr)
1601 {
1602 limHandleHeartBeatTimeout(pMac);
1603 }
1604 else
1605 {
1606 limHandleHeartBeatTimeoutForSession(pMac, (tpPESession)limMsg->bodyptr);
1607 }
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05301608 }
Jeff Johnson295189b2012-06-20 16:38:30 -07001609 break;
Leela Venkata Kiran Kumar Reddy Chirala3ca17902013-02-27 19:50:05 -08001610
Jeff Johnson295189b2012-06-20 16:38:30 -07001611 case SIR_LIM_PROBE_HB_FAILURE_TIMEOUT:
1612 limHandleHeartBeatFailureTimeout(pMac);
1613 break;
1614
1615 case SIR_LIM_CHANNEL_SCAN_TIMEOUT:
Jeff Johnson295189b2012-06-20 16:38:30 -07001616 /**
1617 * Background scan timeout occurred on STA.
1618 * This is handled by LMM sub module.
1619 */
1620 limDeactivateAndChangeTimer(pMac, eLIM_BACKGROUND_SCAN_TIMER);
1621
1622 //We will do background scan even in bcnps mode
1623 //if (pMac->sys.gSysEnableScanMode)
1624 pMac->lim.gLimReportBackgroundScanResults = FALSE;
1625 limTriggerBackgroundScan(pMac);
Jeff Johnson295189b2012-06-20 16:38:30 -07001626 break;
1627
Jeff Johnson295189b2012-06-20 16:38:30 -07001628
1629 case SIR_LIM_HASH_MISS_THRES_TIMEOUT:
1630
1631 /*
1632 ** clear the credit to the send disassociate frame bucket
1633 **/
1634
1635 pMac->lim.gLimDisassocFrameCredit = 0;
1636 break;
1637
1638 case SIR_LIM_CNF_WAIT_TIMEOUT:
1639
1640 /*
1641 ** Does not receive CNF or dummy packet
1642 **/
1643 limHandleCnfWaitTimeout(pMac, (tANI_U16) limMsg->bodyval);
1644
1645 break;
1646
1647 case SIR_LIM_KEEPALIVE_TIMEOUT:
1648 limSendKeepAliveToPeer(pMac);
1649
1650 break;
1651
1652 case SIR_LIM_RETRY_INTERRUPT_MSG:
1653 // Message from ISR upon TFP's max retry limit interrupt
1654
1655 break;
1656
1657 case SIR_LIM_INV_KEY_INTERRUPT_MSG:
1658 // Message from ISR upon SP's Invalid session key interrupt
1659
1660 break;
1661
1662 case SIR_LIM_KEY_ID_INTERRUPT_MSG:
1663 // Message from ISR upon SP's Invalid key ID interrupt
1664
1665 break;
1666
1667 case SIR_LIM_REPLAY_THRES_INTERRUPT_MSG:
1668 // Message from ISR upon SP's Replay threshold interrupt
1669
1670 break;
1671
1672 case SIR_LIM_CHANNEL_SWITCH_TIMEOUT:
1673 limProcessChannelSwitchTimeout(pMac);
1674 break;
1675
1676 case SIR_LIM_QUIET_TIMEOUT:
1677 limProcessQuietTimeout(pMac);
1678 break;
1679
1680 case SIR_LIM_QUIET_BSS_TIMEOUT:
1681 limProcessQuietBssTimeout(pMac);
1682 break;
1683
Jeff Johnson295189b2012-06-20 16:38:30 -07001684 case SIR_LIM_UPDATE_OLBC_CACHEL_TIMEOUT:
1685 limHandleUpdateOlbcCache(pMac);
1686 break;
1687#if 0
1688 case SIR_LIM_WPS_OVERLAP_TIMEOUT:
1689 limProcessWPSOverlapTimeout(pMac);
1690 break;
1691#endif
1692
Jeff Johnson295189b2012-06-20 16:38:30 -07001693
Mohit Khanna698ba2a2012-12-04 15:08:18 -08001694#ifdef FEATURE_WLAN_TDLS_INTERNAL
1695 /*
1696 * Here discovery timer expires, now we can go ahead and collect all
1697 * the dicovery responses PE has process till now and send this
1698 * responses to SME..
1699 */
1700 case SIR_LIM_TDLS_DISCOVERY_RSP_WAIT:
1701 {
1702 //fetch the sessionEntry based on the sessionId
1703 tpPESession psessionEntry = peFindSessionBySessionId(pMac,
1704 pMac->lim.limTimers.gLimTdlsDisRspWaitTimer.sessionId) ;
1705 if(NULL == psessionEntry)
1706 {
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07001707 limLog(pMac, LOGP,FL("Session Does not exist for given sessionID %d"), pMac->lim.limTimers.gLimTdlsDisRspWaitTimer.sessionId);
Mohit Khanna698ba2a2012-12-04 15:08:18 -08001708 return;
1709 }
1710
1711 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07001712 ("Discovery Rsp timer expires ")) ;
Mohit Khanna698ba2a2012-12-04 15:08:18 -08001713#if 0 // TDLS_hklee: D13 no need to open Addr2 unknown data packet
1714 /* restore RXP filters */
1715 limSetLinkState(pMac, eSIR_LINK_FINISH_TDLS_DISCOVERY_STATE,
1716 psessionEntry->bssId) ;
1717#endif
1718 limSendSmeTdlsDisRsp(pMac, eSIR_SUCCESS,
1719 eWNI_SME_TDLS_DISCOVERY_START_RSP) ;
1720 break ;
1721 }
1722
1723 /*
1724 * we initiated link setup and did not receive TDLS setup rsp
1725 * from TDLS peer STA, send failure RSP to SME.
1726 */
1727 case SIR_LIM_TDLS_LINK_SETUP_RSP_TIMEOUT:
1728 {
1729 tANI_U8 *peerMac = (tANI_U8 *)limMsg->bodyval ;
1730 tLimTdlsLinkSetupPeer *setupPeer = NULL ;
1731
1732 VOS_TRACE(VOS_MODULE_ID_PE, VOS_TRACE_LEVEL_ERROR,
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07001733 ("TDLS setup rsp timer expires ")) ;
Mohit Khanna698ba2a2012-12-04 15:08:18 -08001734 VOS_TRACE(VOS_MODULE_ID_PE, VOS_TRACE_LEVEL_INFO,
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07001735 ("TDLS setup rsp timer expires for peer:")) ;
Mohit Khanna698ba2a2012-12-04 15:08:18 -08001736 VOS_TRACE(VOS_MODULE_ID_PE, VOS_TRACE_LEVEL_INFO,
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07001737 ("%02X, %02X, %02X,%02X, %02X, %02X"),
Mohit Khanna698ba2a2012-12-04 15:08:18 -08001738 peerMac[0],
1739 peerMac[1],
1740 peerMac[2],
1741 peerMac[3],
1742 peerMac[4],
1743 peerMac[5]);
1744
1745 limTdlsFindLinkPeer(pMac, peerMac, &setupPeer) ;
1746 if(NULL != setupPeer)
1747 {
1748 limTdlsDelLinkPeer( pMac, peerMac) ;
1749 }
1750
1751 limSendSmeTdlsLinkStartRsp(pMac, eSIR_FAILURE, peerMac,
1752 eWNI_SME_TDLS_LINK_START_RSP) ;
1753 break ;
1754 }
1755 case SIR_LIM_TDLS_LINK_SETUP_CNF_TIMEOUT:
1756 {
1757 tANI_U8 *peerMac = (tANI_U8 *)limMsg->bodyval ;
1758 tLimTdlsLinkSetupPeer *setupPeer = NULL ;
1759
1760 VOS_TRACE(VOS_MODULE_ID_PE, VOS_TRACE_LEVEL_ERROR,
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07001761 ("TDLS setup CNF timer expires ")) ;
Mohit Khanna698ba2a2012-12-04 15:08:18 -08001762 VOS_TRACE(VOS_MODULE_ID_PE, VOS_TRACE_LEVEL_INFO,
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07001763 ("TDLS setup CNF timer expires for peer:")) ;
Mohit Khanna698ba2a2012-12-04 15:08:18 -08001764 VOS_TRACE(VOS_MODULE_ID_PE, VOS_TRACE_LEVEL_INFO,
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07001765 ("%02X, %02X, %02X,%02X, %02X, %02X"),
Mohit Khanna698ba2a2012-12-04 15:08:18 -08001766 peerMac[0],
1767 peerMac[1],
1768 peerMac[2],
1769 peerMac[3],
1770 peerMac[4],
1771 peerMac[5]);
1772 limTdlsFindLinkPeer(pMac, peerMac, &setupPeer) ;
1773 if(NULL != setupPeer)
1774 {
1775 limTdlsDelLinkPeer( pMac, peerMac) ;
1776 }
1777 break ;
1778 }
1779#endif /* FEATURE_WLAN_TDLS TIMER */
Jeff Johnson295189b2012-06-20 16:38:30 -07001780 case WDA_ADD_BSS_RSP:
1781 limProcessMlmAddBssRsp( pMac, limMsg );
1782 break;
1783
1784 case WDA_ADD_STA_RSP:
1785
1786 //call a wrapper by paasing bodyptr, their get sessionID and and call proper function from there.
1787 limProcessAddStaRsp(pMac,limMsg);
1788 break;
1789
1790 case WDA_DELETE_STA_RSP:
1791 limProcessMlmDelStaRsp(pMac, limMsg);
1792 break;
1793
1794 case WDA_ADD_STA_SELF_RSP:
1795 limProcessAddStaSelfRsp(pMac, limMsg);
1796 break;
1797 case WDA_DEL_STA_SELF_RSP:
1798 limProcessDelStaSelfRsp(pMac, limMsg);
1799 break;
1800
1801 case WDA_DELETE_BSS_RSP:
1802 limHandleDeleteBssRsp(pMac,limMsg); //wrapper routine to handle delete bss response
1803 break;
1804
1805 case WDA_SET_BSSKEY_RSP:
1806 case WDA_SET_STA_BCASTKEY_RSP:
1807 limProcessMlmSetBssKeyRsp( pMac, limMsg );
1808 break;
1809 case WDA_SET_STAKEY_RSP:
1810 limProcessMlmSetStaKeyRsp( pMac, limMsg );
1811 break;
1812 case WDA_REMOVE_BSSKEY_RSP:
1813 case WDA_REMOVE_STAKEY_RSP:
1814 limProcessMlmRemoveKeyRsp( pMac, limMsg );
1815 break;
1816 case WDA_ADDBA_RSP:
1817 limProcessMlmHalAddBARsp( pMac, limMsg );
1818 break;
1819
1820 case WDA_STA_STAT_RSP:
1821 case WDA_AGGR_STAT_RSP:
1822 case WDA_GLOBAL_STAT_RSP:
1823 case WDA_STAT_SUMM_RSP:
1824 limSendSmeStatsRsp ( pMac, limMsg->type, (void *)limMsg->bodyptr);
1825 break;
1826
1827 case WDA_GET_STATISTICS_RSP:
1828 limSendSmePEStatisticsRsp ( pMac, limMsg->type, (void *)limMsg->bodyptr);
1829 break;
Srinivas Girigowdad34cedb2013-01-25 13:33:11 -08001830#if defined WLAN_FEATURE_VOWIFI_11R || defined FEATURE_WLAN_CCX || defined(FEATURE_WLAN_LFR)
1831 case WDA_GET_ROAM_RSSI_RSP:
1832 limSendSmePEGetRoamRssiRsp ( pMac, limMsg->type, (void *)limMsg->bodyptr);
1833 break;
1834#endif
1835
Jeff Johnson295189b2012-06-20 16:38:30 -07001836
1837 case WDA_SET_MIMOPS_RSP: //limProcessSetMimoRsp(pMac, limMsg);
1838 case WDA_SET_TX_POWER_RSP: //limProcessSetTxPowerRsp(pMac, limMsg);
1839 case WDA_GET_TX_POWER_RSP: //limProcessGetTxPowerRsp(pMac, limMsg);
1840 case WDA_GET_NOISE_RSP:
1841 vos_mem_free((v_VOID_t*)limMsg->bodyptr);
1842 limMsg->bodyptr = NULL;
1843 //limProcessGetNoiseRsp(pMac, limMsg);
1844 break;
1845
1846 case WDA_SET_MAX_TX_POWER_RSP:
1847#if defined WLAN_FEATURE_VOWIFI
1848 rrmSetMaxTxPowerRsp( pMac, limMsg );
1849#endif
1850 if(limMsg->bodyptr != NULL)
1851 {
1852 vos_mem_free((v_VOID_t*)limMsg->bodyptr);
1853 limMsg->bodyptr = NULL;
1854 }
1855 break;
1856
Jeff Johnson295189b2012-06-20 16:38:30 -07001857 case SIR_LIM_ADDR2_MISS_IND:
1858 {
1859 limLog(pMac, LOGE,
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07001860 FL("Addr2 mismatch interrupt received %X"),
Jeff Johnson295189b2012-06-20 16:38:30 -07001861 limMsg->type);
1862 /*a message from HAL indicating addr2 mismatch interrupt occurred
1863 limMsg->bodyptr contains only pointer to 48-bit addr2 field*/
1864 //Dinesh fix this. the third parameter should be sessionentry.
1865 //limHandleUnknownA2IndexFrames(pMac, (void *)limMsg->bodyptr);
1866
1867 /*Free message body pointer*/
1868 vos_mem_free((v_VOID_t *)(limMsg->bodyptr));
1869 break;
1870 }
Jeff Johnson295189b2012-06-20 16:38:30 -07001871
1872#ifdef WLAN_FEATURE_VOWIFI_11R
1873 case WDA_AGGR_QOS_RSP:
1874 limProcessFTAggrQoSRsp( pMac, limMsg );
1875 break;
1876#endif
1877
1878 case WDA_SET_LINK_STATE_RSP:
1879 linkStateParams = (tLinkStateParams *)limMsg->bodyptr;
1880#if defined WLAN_FEATURE_VOWIFI_11R
1881 pSession = linkStateParams->session;
1882 if(linkStateParams->ft)
1883 {
1884 limSendReassocReqWithFTIEsMgmtFrame(pMac,
1885 pSession->pLimMlmReassocReq,
1886 pSession);
1887 }
1888#endif
1889 if( linkStateParams->callback )
1890 {
1891 linkStateParams->callback( pMac, linkStateParams->callbackArg );
1892 }
1893 vos_mem_free((v_VOID_t *)(limMsg->bodyptr));
1894 break;
1895
1896#ifdef WLAN_FEATURE_PACKET_FILTERING
1897 case WDA_PACKET_COALESCING_FILTER_MATCH_COUNT_RSP:
1898 pmmProcessMessage(pMac, limMsg);
1899 break;
1900#endif // WLAN_FEATURE_PACKET_FILTERING
1901
1902#ifdef WLAN_FEATURE_GTK_OFFLOAD
1903 case WDA_GTK_OFFLOAD_GETINFO_RSP:
1904 pmmProcessMessage(pMac, limMsg);
1905 break;
1906#endif // WLAN_FEATURE_GTK_OFFLOAD
Yathish9f22e662012-12-10 14:21:35 -08001907 case eWNI_SME_SET_BCN_FILTER_REQ:
1908 {
1909#ifdef WLAN_ACTIVEMODE_OFFLOAD_FEATURE
1910 tpPESession psessionEntry;
1911 tANI_U8 sessionId = (tANI_U8)limMsg->bodyval ;
1912 psessionEntry = &pMac->lim.gpSession[sessionId];
1913 if(psessionEntry != NULL && IS_ACTIVEMODE_OFFLOAD_FEATURE_ENABLE)
1914 {
1915 // sending beacon filtering information down to HAL
1916 if (limSendBeaconFilterInfo(pMac, psessionEntry) != eSIR_SUCCESS)
1917 {
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07001918 limLog(pMac, LOGE, FL("Fail to send Beacon Filter Info "));
Yathish9f22e662012-12-10 14:21:35 -08001919 }
1920 }
Dhanashri Atred7885c22013-03-29 11:19:05 -07001921 vos_mem_free((v_VOID_t *)(limMsg->bodyptr));
1922 limMsg->bodyptr = NULL;
Yathish9f22e662012-12-10 14:21:35 -08001923#endif
1924 }
1925 break;
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +05301926#ifdef FEATURE_WLAN_TDLS
1927 case WDA_SET_TDLS_LINK_ESTABLISH_REQ_RSP:
1928 {
1929 /*TODO Sunil , See how do you enhance this , Reason Code ???*/
1930 limSendSmeTdlsLinkEstablishReqRsp(pMac, 0 , NULL, NULL, eSIR_SUCCESS ) ;
1931 break;
1932 }
1933#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07001934 default:
1935 vos_mem_free((v_VOID_t*)limMsg->bodyptr);
1936 limMsg->bodyptr = NULL;
1937 // Unwanted messages
1938 // Log error
1939 limLog(pMac, LOGE,
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07001940 FL("Discarding unexpected message received %X"),
Jeff Johnson295189b2012-06-20 16:38:30 -07001941 limMsg->type);
1942 limPrintMsgName(pMac, LOGE, limMsg->type);
1943 break;
1944
1945 } // switch (limMsg->type)
1946
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07001947 PELOG2(limLog(pMac, LOG2, FL("Done Processing msgType = %d, sme state = %s, mlm state = %s"),
Jeff Johnson295189b2012-06-20 16:38:30 -07001948 limMsg->type, limSmeStateStr(pMac->lim.gLimSmeState),
1949 limMlmStateStr(pMac->lim.gLimMlmState));)
1950
1951} /*** end limProcessMessages() ***/
1952
1953
1954
1955/**
1956 * limProcessDeferredMessageQueue
1957 *
1958 *FUNCTION:
1959 * This function is called by LIM while exiting from Learn
1960 * mode. This function fetches messages posted to the LIM
1961 * deferred message queue limDeferredMsgQ.
1962 *
1963 *LOGIC:
1964 *
1965 *ASSUMPTIONS:
1966 * NA
1967 *
1968 *NOTE:
1969 * NA
1970 *
1971 * @param pMac - Pointer to Global MAC structure
1972 * @return None
1973 */
1974
1975void
1976limProcessDeferredMessageQueue(tpAniSirGlobal pMac)
1977{
1978 tSirMsgQ limMsg = { 0, 0, 0 };
1979
Jeff Johnson295189b2012-06-20 16:38:30 -07001980 tSirMsgQ *readMsg;
1981 tANI_U16 size;
1982
1983 /*
1984 ** check any deferred messages need to be processed
1985 **/
1986 size = pMac->lim.gLimDeferredMsgQ.size;
1987 if (size > 0)
1988 {
1989 while ((readMsg = limReadDeferredMsgQ(pMac)) != NULL)
1990 {
1991 palCopyMemory( pMac->hHdd, (tANI_U8*) &limMsg,
1992 (tANI_U8*) readMsg, sizeof(tSirMsgQ));
1993 size--;
1994 limProcessMessages(pMac, &limMsg);
1995
1996 if((limIsSystemInScanState(pMac)) || (true != GET_LIM_PROCESS_DEFD_MESGS(pMac)) ||
1997 (pMac->lim.gLimSystemInScanLearnMode))
1998 break;
1999 }
2000 }
Jeff Johnson295189b2012-06-20 16:38:30 -07002001} /*** end limProcessDeferredMessageQueue() ***/
2002
2003
2004/*
2005 * limProcessNormalHddMsg
2006 * Function: this function checks the current lim state and decide whether the message passed shall be deffered.
2007 * @param pMac - Pointer to Global MAC structure
2008 * pLimMsg -- the message need to be processed
2009 * fRspReqd -- whether return result to hdd
2010 * @return None
2011 */
2012void limProcessNormalHddMsg(tpAniSirGlobal pMac, tSirMsgQ *pLimMsg, tANI_U8 fRspReqd)
2013{
2014 tANI_BOOLEAN fDeferMsg = eANI_BOOLEAN_TRUE;
2015
2016 /* Added For BT-AMP Support */
2017 if ((pMac->lim.gLimSystemRole == eLIM_AP_ROLE) ||(pMac->lim.gLimSystemRole == eLIM_BT_AMP_AP_ROLE )
2018 ||(pMac->lim.gLimSystemRole == eLIM_BT_AMP_STA_ROLE)
2019 ||(pMac->lim.gLimSystemRole == eLIM_UNKNOWN_ROLE))
2020 {
2021 /** This check is required only for the AP and in 2 cases.
2022 * 1. If we are in learn mode and we receive any of these messages,
2023 * you have to come out of scan and process the message, hence dont
2024 * defer the message here. In handler, these message could be defered
2025 * till we actually come out of scan mode.
2026 * 2. If radar is detected, you might have to defer all of these
2027 * messages except Stop BSS request/ Switch channel request. This
2028 * decision is also made inside its handler.
2029 *
2030 * Please be careful while using the flag fDeferMsg. Possibly you
2031 * might end up in an infinite loop.
2032 **/
2033 if (((pLimMsg->type == eWNI_SME_START_BSS_REQ) ||
2034 (pLimMsg->type == eWNI_SME_STOP_BSS_REQ) ||
2035 (pLimMsg->type == eWNI_SME_SWITCH_CHL_REQ) ||
2036 (pLimMsg->type == eWNI_SME_SWITCH_CHL_CB_SECONDARY_REQ) ||
2037 (pLimMsg->type == eWNI_SME_SWITCH_CHL_CB_PRIMARY_REQ)))
2038 {
2039 fDeferMsg = eANI_BOOLEAN_FALSE;
2040 }
2041 }
2042
2043 /* limInsystemInscanState() refers the psessionEntry, how to get session Entry????*/
Jeff Johnsone7245742012-09-05 17:12:55 -07002044 if (((pMac->lim.gLimAddtsSent) || (limIsSystemInScanState(pMac)) /*||
2045 (LIM_IS_RADAR_DETECTED(pMac))*/) && fDeferMsg)
Jeff Johnson295189b2012-06-20 16:38:30 -07002046 {
2047 // System is in DFS (Learn) mode or awaiting addts response
2048 // or if radar is detected, Defer processsing this message
2049 if (limDeferMsg(pMac, pLimMsg) != TX_SUCCESS)
2050 {
2051#ifdef WLAN_DEBUG
2052 pMac->lim.numSme++;
2053#endif
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07002054 PELOGE(limLog(pMac, LOGE, FL("Unable to Defer message(0x%X) limSmeState %d (prev sme state %d) sysRole %d mlm state %d (prev mlm state %d)"),
Jeff Johnson295189b2012-06-20 16:38:30 -07002055 pLimMsg->type, pMac->lim.gLimSmeState, pMac->lim.gLimPrevSmeState,
2056 pMac->lim.gLimSystemRole, pMac->lim.gLimMlmState, pMac->lim.gLimPrevMlmState);)
2057 limLogSessionStates(pMac);
2058 limPrintMsgName(pMac, LOGE, pLimMsg->type);
2059 // Release body
2060 palFreeMemory( pMac->hHdd, (tANI_U8 *) pLimMsg->bodyptr);
2061 }
2062 }
2063 else
2064 {
2065 if(fRspReqd)
2066 {
2067 // These messages are from HDD
2068 // Since these requests may also be generated
2069 // internally within LIM module, need to
2070 // distinquish and send response to host
2071 pMac->lim.gLimRspReqd = eANI_BOOLEAN_TRUE;
2072 }
2073#ifdef WLAN_DEBUG
2074 pMac->lim.numSme++;
2075#endif
2076 if(limProcessSmeReqMessages(pMac, pLimMsg))
2077 {
2078 // Release body
2079 // limProcessSmeReqMessage consumed the buffer. We can free it.
2080 palFreeMemory( pMac->hHdd, (tANI_U8 *) pLimMsg->bodyptr);
2081 }
2082 }
2083}
2084
2085void
Jeff Johnsone7245742012-09-05 17:12:55 -07002086handleHTCapabilityandHTInfo(struct sAniSirGlobal *pMac, tpPESession psessionEntry)
Jeff Johnson295189b2012-06-20 16:38:30 -07002087{
2088 tSirMacHTCapabilityInfo macHTCapabilityInfo;
2089 tSirMacHTParametersInfo macHTParametersInfo;
2090 tSirMacHTInfoField1 macHTInfoField1;
2091 tSirMacHTInfoField2 macHTInfoField2;
2092 tSirMacHTInfoField3 macHTInfoField3;
2093 tANI_U32 cfgValue;
2094 tANI_U8 *ptr;
Jeff Johnson295189b2012-06-20 16:38:30 -07002095
Jeff Johnson295189b2012-06-20 16:38:30 -07002096 if (wlan_cfgGetInt(pMac, WNI_CFG_HT_CAP_INFO, &cfgValue) != eSIR_SUCCESS)
2097 {
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07002098 limLog(pMac, LOGP, FL("Fail to retrieve WNI_CFG_HT_CAP_INFO value"));
Jeff Johnson295189b2012-06-20 16:38:30 -07002099 return ;
2100 }
2101 ptr = (tANI_U8 *) &macHTCapabilityInfo;
2102 *((tANI_U16 *)ptr) = (tANI_U16) (cfgValue & 0xffff);
2103 pMac->lim.gHTLsigTXOPProtection = (tANI_U8)macHTCapabilityInfo.lsigTXOPProtection;
2104 pMac->lim.gHTMIMOPSState = (tSirMacHTMIMOPowerSaveState) macHTCapabilityInfo.mimoPowerSave;
2105 pMac->lim.gHTGreenfield = (tANI_U8)macHTCapabilityInfo.greenField;
2106 pMac->lim.gHTMaxAmsduLength = (tANI_U8)macHTCapabilityInfo.maximalAMSDUsize;
2107 pMac->lim.gHTShortGI20Mhz = (tANI_U8)macHTCapabilityInfo.shortGI20MHz;
2108 pMac->lim.gHTShortGI40Mhz = (tANI_U8)macHTCapabilityInfo.shortGI40MHz;
Jeff Johnson295189b2012-06-20 16:38:30 -07002109 pMac->lim.gHTPSMPSupport = (tANI_U8)macHTCapabilityInfo.psmp;
2110 pMac->lim.gHTDsssCckRate40MHzSupport = (tANI_U8)macHTCapabilityInfo.dsssCckMode40MHz;
2111
2112 if (wlan_cfgGetInt(pMac, WNI_CFG_HT_AMPDU_PARAMS, &cfgValue) != eSIR_SUCCESS)
2113 {
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07002114 limLog(pMac, LOGP, FL("Fail to retrieve WNI_CFG_HT_PARAM_INFO value"));
Jeff Johnson295189b2012-06-20 16:38:30 -07002115 return ;
2116 }
2117 ptr = (tANI_U8 *) &macHTParametersInfo;
2118 *ptr = (tANI_U8) (cfgValue & 0xff);
2119 pMac->lim.gHTAMpduDensity = (tANI_U8)macHTParametersInfo.mpduDensity;
2120 pMac->lim.gHTMaxRxAMpduFactor = (tANI_U8)macHTParametersInfo.maxRxAMPDUFactor;
2121
2122 // Get HT IE Info
2123 if (wlan_cfgGetInt(pMac, WNI_CFG_HT_INFO_FIELD1, &cfgValue) != eSIR_SUCCESS)
2124 {
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07002125 limLog(pMac, LOGP, FL("Fail to retrieve WNI_CFG_HT_INFO_FIELD1 value"));
Jeff Johnson295189b2012-06-20 16:38:30 -07002126 return ;
2127 }
2128 ptr = (tANI_U8 *) &macHTInfoField1;
2129 *((tANI_U8 *)ptr) = (tANI_U8) (cfgValue & 0xff);
2130 pMac->lim.gHTServiceIntervalGranularity = (tANI_U8)macHTInfoField1.serviceIntervalGranularity;
2131 pMac->lim.gHTControlledAccessOnly = (tANI_U8)macHTInfoField1.controlledAccessOnly;
2132 pMac->lim.gHTRifsMode = (tANI_U8)macHTInfoField1.rifsMode;
Jeff Johnson295189b2012-06-20 16:38:30 -07002133
2134 if (wlan_cfgGetInt(pMac, WNI_CFG_HT_INFO_FIELD2, &cfgValue) != eSIR_SUCCESS)
2135 {
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07002136 limLog(pMac, LOGP, FL("Fail to retrieve WNI_CFG_HT_INFO_FIELD2 value"));
Jeff Johnson295189b2012-06-20 16:38:30 -07002137 return ;
2138 }
2139 ptr = (tANI_U8 *) &macHTInfoField2;
2140 *((tANI_U16 *)ptr) = (tANI_U16) (cfgValue & 0xffff);
2141 pMac->lim.gHTOperMode = (tSirMacHTOperatingMode) macHTInfoField2.opMode;
2142
2143 if (wlan_cfgGetInt(pMac, WNI_CFG_HT_INFO_FIELD3, &cfgValue) != eSIR_SUCCESS)
2144 {
Kiran Kumar Lokere531ca702013-04-01 13:24:23 -07002145 limLog(pMac, LOGP, FL("Fail to retrieve WNI_CFG_HT_INFO_FIELD3 value"));
Jeff Johnson295189b2012-06-20 16:38:30 -07002146 return ;
2147 }
2148 ptr = (tANI_U8 *) &macHTInfoField3;
2149 *((tANI_U16 *)ptr) = (tANI_U16) (cfgValue & 0xffff);
2150 pMac->lim.gHTPCOActive = (tANI_U8)macHTInfoField3.pcoActive;
2151 pMac->lim.gHTPCOPhase = (tANI_U8)macHTInfoField3.pcoPhase;
Jeff Johnson295189b2012-06-20 16:38:30 -07002152 pMac->lim.gHTSecondaryBeacon = (tANI_U8)macHTInfoField3.secondaryBeacon;
2153 pMac->lim.gHTDualCTSProtection = (tANI_U8)macHTInfoField3.dualCTSProtection;
2154 pMac->lim.gHTSTBCBasicMCS = (tANI_U8)macHTInfoField3.basicSTBCMCS;
Jeff Johnsone7245742012-09-05 17:12:55 -07002155
2156 /* The lim globals for channelwidth and secondary chnl have been removed and should not be used during no session;
2157 * instead direct cfg is read and used when no session for transmission of mgmt frames (same as old);
2158 * For now, we might come here during init and join with sessionEntry = NULL; in that case just fill the globals which exist
2159 * Sessionized entries values will be filled in join or add bss req. The ones which are missed in join are filled below
2160 */
2161 if (psessionEntry != NULL)
2162 {
2163 psessionEntry->htCapability = IS_DOT11_MODE_HT(psessionEntry->dot11mode);
2164 psessionEntry->beaconParams.fLsigTXOPProtectionFullSupport = (tANI_U8)macHTInfoField3.lsigTXOPProtectionFullSupport;
2165 }
Jeff Johnson295189b2012-06-20 16:38:30 -07002166}
2167
2168void limLogSessionStates(tpAniSirGlobal pMac)
2169{
2170#ifdef WLAN_DEBUG
2171 int i;
2172
2173 for(i = 0; i < pMac->lim.maxBssId; i++)
2174 {
2175 if(pMac->lim.gpSession[i].valid)
2176 {
Madan Mohan Koyyalamudi5695b502012-09-24 14:21:12 -07002177 PELOG1(limLog(pMac, LOG1, FL("Session[%d] sysRole(%d) limSmeState %d (prev sme state %d) mlm state %d (prev mlm state %d)"),
Jeff Johnson295189b2012-06-20 16:38:30 -07002178 i, pMac->lim.gpSession[i].limSystemRole, pMac->lim.gpSession[i].limSmeState,
2179 pMac->lim.gpSession[i].limPrevSmeState, pMac->lim.gpSession[i].limMlmState,
2180 pMac->lim.gpSession[i].limPrevMlmState);)
2181 }
2182 }
2183#endif //ifdef WLAN_DEBUG
2184}