blob: 4fdd41270dddcd83c5546ce73098a6affcfb4347 [file] [log] [blame]
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001/*
Krishna Kumaar Natarajan4e9cf392015-11-20 13:35:05 -08002 * Copyright (c) 2012-2016 The Linux Foundation. All rights reserved.
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08003 *
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
22/*
23 * This file was originally distributed by Qualcomm Atheros, Inc.
24 * under proprietary terms before Copyright ownership was assigned
25 * to the Linux Foundation.
26 */
27
28/*
29 * This file lim_send_sme_rspMessages.cc contains the functions
30 * for sending SME response/notification messages to applications
31 * above MAC software.
32 * Author: Chandra Modumudi
33 * Date: 02/13/02
34 * History:-
35 * Date Modified by Modification Information
36 * --------------------------------------------------------------------
37 */
38
Anurag Chouhan6d760662016-02-20 16:05:43 +053039#include "qdf_types.h"
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080040#include "wni_api.h"
41#include "sir_common.h"
42#include "ani_global.h"
43
44#include "wni_cfg.h"
45#include "sys_def.h"
46#include "cfg_api.h"
47
48#include "sch_api.h"
49#include "utils_api.h"
50#include "lim_utils.h"
51#include "lim_security_utils.h"
52#include "lim_ser_des_utils.h"
53#include "lim_send_sme_rsp_messages.h"
54#include "lim_ibss_peer_mgmt.h"
55#include "lim_session_utils.h"
56#include "lim_types.h"
57#include "sir_api.h"
Naveen Rawat3b6068c2016-04-14 19:01:06 -070058#include "cds_regdomain.h"
Gupta, Kapil121bf212015-11-25 19:21:29 +053059#include "lim_send_messages.h"
Deepak Dhamdhere13983f22016-05-31 19:06:09 -070060#include "nan_datapath.h"
Sandeep Puligilla7e3e3c52016-09-02 17:54:21 -070061#include "lim_assoc_utils.h"
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080062
63static void lim_handle_join_rsp_status(tpAniSirGlobal mac_ctx,
64 tpPESession session_entry, tSirResultCodes result_code,
65 tpSirSmeJoinRsp sme_join_rsp);
66
67/**
68 * lim_send_sme_rsp() - Send Response to upper layers
69 * @mac_ctx: Pointer to Global MAC structure
70 * @msg_type: Indicates message type
71 * @result_code: Indicates the result of previously issued
72 * eWNI_SME_msg_type_REQ message
73 *
74 * This function is called by lim_process_sme_req_messages() to send
75 * eWNI_SME_START_RSP, eWNI_SME_STOP_BSS_RSP
76 * or eWNI_SME_SWITCH_CHL_RSP messages to applications above MAC
77 * Software.
78 *
79 * Return: None
80 */
81
82void
83lim_send_sme_rsp(tpAniSirGlobal mac_ctx, uint16_t msg_type,
84 tSirResultCodes result_code, uint8_t sme_session_id,
85 uint16_t sme_transaction_id)
86{
87 tSirMsgQ msg;
88 tSirSmeRsp *sme_rsp;
89
90 lim_log(mac_ctx, LOG1, FL("Sending message %s with reasonCode %s"),
91 lim_msg_str(msg_type), lim_result_code_str(result_code));
92
Anurag Chouhan600c3a02016-03-01 10:33:54 +053093 sme_rsp = qdf_mem_malloc(sizeof(tSirSmeRsp));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080094 if (NULL == sme_rsp) {
95 /* Buffer not available. Log error */
Anurag Chouhanb2dc16f2016-02-25 11:47:37 +053096 QDF_TRACE(QDF_MODULE_ID_PE, LOGP,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080097 FL("call to AllocateMemory failed for eWNI_SME_*_RSP"));
98 return;
99 }
100
101 sme_rsp->messageType = msg_type;
102 sme_rsp->length = sizeof(tSirSmeRsp);
103 sme_rsp->statusCode = result_code;
104
105 sme_rsp->sessionId = sme_session_id;
106 sme_rsp->transactionId = sme_transaction_id;
107
108 msg.type = msg_type;
109 msg.bodyptr = sme_rsp;
110 msg.bodyval = 0;
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +0530111 MTRACE(mac_trace(mac_ctx, TRACE_CODE_TX_SME_MSG,
112 sme_session_id, msg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800113
114#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
115 switch (msg_type) {
116 case eWNI_SME_STOP_BSS_RSP:
117 lim_diag_event_report(mac_ctx, WLAN_PE_DIAG_STOP_BSS_RSP_EVENT,
118 NULL, (uint16_t) result_code, 0);
119 break;
120 }
121#endif /* FEATURE_WLAN_DIAG_SUPPORT */
122 lim_sys_process_mmh_msg_api(mac_ctx, &msg, ePROT);
123}
124
125
126
127/**
128 * lim_send_sme_roc_rsp() - Send Response to SME
129 * @mac_ctx: Pointer to Global MAC structure
130 * @status: Resume link status
131 * @result_code: Result of the ROC request
132 * @sme_session_id: SME sesson Id
133 * @scan_id: Scan Identifier
134 *
135 * This function is called to send ROC rsp
136 * message to SME.
137 *
138 * Return: None
139 */
140void
141lim_send_sme_roc_rsp(tpAniSirGlobal mac_ctx, uint16_t msg_type,
142 tSirResultCodes result_code, uint8_t sme_session_id,
143 uint32_t scan_id)
144{
145 tSirMsgQ msg;
146 struct sir_roc_rsp *sme_rsp;
147
148 lim_log(mac_ctx, LOG1,
149 FL("Sending message %s with reasonCode %s scanId %d"),
150 lim_msg_str(msg_type), lim_result_code_str(result_code),
151 scan_id);
152
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530153 sme_rsp = qdf_mem_malloc(sizeof(struct sir_roc_rsp));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800154 if (NULL == sme_rsp) {
Anurag Chouhanb2dc16f2016-02-25 11:47:37 +0530155 QDF_TRACE(QDF_MODULE_ID_PE, LOGP,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800156 FL("call to AllocateMemory failed for eWNI_SME_*_RSP"));
157 return;
158 }
159
160 sme_rsp->message_type = msg_type;
161 sme_rsp->length = sizeof(struct sir_roc_rsp);
162 sme_rsp->status = result_code;
163
164 sme_rsp->session_id = sme_session_id;
165 sme_rsp->scan_id = scan_id;
166
167 msg.type = msg_type;
168 msg.bodyptr = sme_rsp;
169 msg.bodyval = 0;
170 MTRACE(mac_trace_msg_tx(mac_ctx, sme_session_id, msg.type));
171 lim_sys_process_mmh_msg_api(mac_ctx, &msg, ePROT);
172}
173
174
175/**
Kanchanapally, Vidyullathae3062812015-05-22 17:28:57 +0530176 * lim_get_max_rate_flags() - Get rate flags
177 * @mac_ctx: Pointer to global MAC structure
178 * @sta_ds: Pointer to station ds structure
179 *
180 * This function is called to get the rate flags for a connection
181 * from the station ds structure depending on the ht and the vht
182 * channel width supported.
183 *
184 * Return: Returns the populated rate_flags
185 */
186uint32_t lim_get_max_rate_flags(tpAniSirGlobal mac_ctx, tpDphHashNode sta_ds)
187{
188 uint32_t rate_flags = 0;
189
190 if (sta_ds == NULL) {
191 lim_log(mac_ctx, LOGE, FL("sta_ds is NULL"));
192 return rate_flags;
193 }
194
195 if (!sta_ds->mlmStaContext.htCapability &&
196 !sta_ds->mlmStaContext.vhtCapability) {
197 rate_flags |= eHAL_TX_RATE_LEGACY;
198 } else {
199 if (sta_ds->mlmStaContext.vhtCapability) {
200 if (WNI_CFG_VHT_CHANNEL_WIDTH_80MHZ ==
201 sta_ds->vhtSupportedChannelWidthSet) {
202 rate_flags |= eHAL_TX_RATE_VHT80;
203 } else if (WNI_CFG_VHT_CHANNEL_WIDTH_20_40MHZ ==
204 sta_ds->vhtSupportedChannelWidthSet) {
205 if (sta_ds->htSupportedChannelWidthSet)
206 rate_flags |= eHAL_TX_RATE_VHT40;
207 else
208 rate_flags |= eHAL_TX_RATE_VHT20;
209 }
210 } else if (sta_ds->mlmStaContext.htCapability) {
211 if (sta_ds->htSupportedChannelWidthSet)
212 rate_flags |= eHAL_TX_RATE_HT40;
213 else
214 rate_flags |= eHAL_TX_RATE_HT20;
215 }
216 }
217
218 if (sta_ds->htShortGI20Mhz || sta_ds->htShortGI40Mhz)
219 rate_flags |= eHAL_TX_RATE_SGI;
220
221 return rate_flags;
222}
223
224/**
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800225 * lim_send_sme_join_reassoc_rsp_after_resume() - Send Response to SME
226 * @mac_ctx Pointer to Global MAC structure
227 * @status Resume link status
228 * @ctx context passed while calling resmune link.
229 * (join response to be sent)
230 *
231 * This function is called to send Join/Reassoc rsp
232 * message to SME after the resume link.
233 *
234 * Return: None
235 */
236static void lim_send_sme_join_reassoc_rsp_after_resume(tpAniSirGlobal mac_ctx,
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530237 QDF_STATUS status, uint32_t *ctx)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800238{
239 tSirMsgQ msg;
240 tpSirSmeJoinRsp sme_join_rsp = (tpSirSmeJoinRsp) ctx;
241
242 msg.type = sme_join_rsp->messageType;
243 msg.bodyptr = sme_join_rsp;
244 msg.bodyval = 0;
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +0530245 MTRACE(mac_trace(mac_ctx, TRACE_CODE_TX_SME_MSG, NO_SESSION, msg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800246 lim_sys_process_mmh_msg_api(mac_ctx, &msg, ePROT);
247}
248
249/**
250 * lim_handle_join_rsp_status() - Handle the response.
251 * @mac_ctx: Pointer to Global MAC structure
252 * @session_entry: PE Session Info
253 * @result_code: Indicates the result of previously issued
254 * eWNI_SME_msgType_REQ message
255 * @sme_join_rsp The received response.
256 *
257 * This function will handle both the success and failure status
258 * of the received response.
259 *
260 * Return: None
261 */
262static void lim_handle_join_rsp_status(tpAniSirGlobal mac_ctx,
263 tpPESession session_entry, tSirResultCodes result_code,
264 tpSirSmeJoinRsp sme_join_rsp)
265{
266#ifdef FEATURE_WLAN_MCC_TO_SCC_SWITCH
267 tSirSmeHTProfile *ht_profile;
268#endif
269 if (result_code == eSIR_SME_SUCCESS) {
270 if (session_entry->beacon != NULL) {
271 sme_join_rsp->beaconLength = session_entry->bcnLen;
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530272 qdf_mem_copy(sme_join_rsp->frames,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800273 session_entry->beacon,
274 sme_join_rsp->beaconLength);
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530275 qdf_mem_free(session_entry->beacon);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800276 session_entry->beacon = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530277 session_entry->bcnLen = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800278 lim_log(mac_ctx, LOG1, FL("Beacon=%d"),
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530279 sme_join_rsp->beaconLength);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800280 }
281 if (session_entry->assocReq != NULL) {
282 sme_join_rsp->assocReqLength =
283 session_entry->assocReqLen;
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530284 qdf_mem_copy(sme_join_rsp->frames +
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530285 sme_join_rsp->beaconLength,
286 session_entry->assocReq,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800287 sme_join_rsp->assocReqLength);
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530288 qdf_mem_free(session_entry->assocReq);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800289 session_entry->assocReq = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530290 session_entry->assocReqLen = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800291 lim_log(mac_ctx,
292 LOG1, FL("AssocReq=%d"),
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530293 sme_join_rsp->assocReqLength);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800294 }
295 if (session_entry->assocRsp != NULL) {
296 sme_join_rsp->assocRspLength =
297 session_entry->assocRspLen;
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530298 qdf_mem_copy(sme_join_rsp->frames +
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530299 sme_join_rsp->beaconLength +
300 sme_join_rsp->assocReqLength,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800301 session_entry->assocRsp,
302 sme_join_rsp->assocRspLength);
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530303 qdf_mem_free(session_entry->assocRsp);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800304 session_entry->assocRsp = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530305 session_entry->assocRspLen = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800306 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800307 if (session_entry->ricData != NULL) {
308 sme_join_rsp->parsedRicRspLen =
309 session_entry->RICDataLen;
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530310 qdf_mem_copy(sme_join_rsp->frames +
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530311 sme_join_rsp->beaconLength +
312 sme_join_rsp->assocReqLength +
313 sme_join_rsp->assocRspLength,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800314 session_entry->ricData,
315 sme_join_rsp->parsedRicRspLen);
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530316 qdf_mem_free(session_entry->ricData);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800317 session_entry->ricData = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530318 session_entry->RICDataLen = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800319 lim_log(mac_ctx, LOG1, FL("RicLength=%d"),
320 sme_join_rsp->parsedRicRspLen);
321 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800322#ifdef FEATURE_WLAN_ESE
323 if (session_entry->tspecIes != NULL) {
324 sme_join_rsp->tspecIeLen =
325 session_entry->tspecLen;
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530326 qdf_mem_copy(sme_join_rsp->frames +
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530327 sme_join_rsp->beaconLength +
328 sme_join_rsp->assocReqLength +
329 sme_join_rsp->assocRspLength +
330 sme_join_rsp->parsedRicRspLen,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800331 session_entry->tspecIes,
332 sme_join_rsp->tspecIeLen);
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530333 qdf_mem_free(session_entry->tspecIes);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800334 session_entry->tspecIes = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530335 session_entry->tspecLen = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800336 lim_log(mac_ctx, LOG1, FL("ESE-TspecLen=%d"),
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530337 sme_join_rsp->tspecIeLen);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800338 }
339#endif
340 sme_join_rsp->aid = session_entry->limAID;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800341 lim_log(mac_ctx, LOG1, FL("AssocRsp=%d"),
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530342 sme_join_rsp->assocRspLength);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800343 sme_join_rsp->vht_channel_width =
344 session_entry->ch_width;
345#ifdef FEATURE_WLAN_MCC_TO_SCC_SWITCH
346 if (session_entry->cc_switch_mode !=
Anurag Chouhanf04e84f2016-03-03 10:12:12 +0530347 QDF_MCC_TO_SCC_SWITCH_DISABLE) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800348 ht_profile = &sme_join_rsp->HTProfile;
349 ht_profile->htSupportedChannelWidthSet =
350 session_entry->htSupportedChannelWidthSet;
351 ht_profile->htRecommendedTxWidthSet =
352 session_entry->htRecommendedTxWidthSet;
353 ht_profile->htSecondaryChannelOffset =
354 session_entry->htSecondaryChannelOffset;
355 ht_profile->dot11mode = session_entry->dot11mode;
356 ht_profile->htCapability = session_entry->htCapability;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800357 ht_profile->vhtCapability =
358 session_entry->vhtCapability;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800359 ht_profile->apCenterChan = session_entry->ch_center_freq_seg0;
360 ht_profile->apChanWidth = session_entry->ch_width;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800361 }
362#endif
363 } else {
364 if (session_entry->beacon != NULL) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530365 qdf_mem_free(session_entry->beacon);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800366 session_entry->beacon = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530367 session_entry->bcnLen = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800368 }
369 if (session_entry->assocReq != NULL) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530370 qdf_mem_free(session_entry->assocReq);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800371 session_entry->assocReq = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530372 session_entry->assocReqLen = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800373 }
374 if (session_entry->assocRsp != NULL) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530375 qdf_mem_free(session_entry->assocRsp);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800376 session_entry->assocRsp = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530377 session_entry->assocRspLen = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800378 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800379 if (session_entry->ricData != NULL) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530380 qdf_mem_free(session_entry->ricData);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800381 session_entry->ricData = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530382 session_entry->RICDataLen = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800383 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800384#ifdef FEATURE_WLAN_ESE
385 if (session_entry->tspecIes != NULL) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530386 qdf_mem_free(session_entry->tspecIes);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800387 session_entry->tspecIes = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530388 session_entry->tspecLen = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800389 }
390#endif
391 }
392}
Anurag Chouhan5de8d172016-07-13 14:44:28 +0530393
394/**
395 * lim_add_bss_info() - copy data from session entry to join rsp
396 * @session_entry: PE Session Info
397 * @sme_join_rsp: Join response buffer to be filled up
398 *
399 * Return: None
400 */
401void lim_add_bss_info(tpPESession session_entry,
402 tpSirSmeJoinRsp sme_join_rsp)
403{
404 sme_join_rsp->hs20vendor_ie = session_entry->hs20vendor_ie;
405 sme_join_rsp->vht_caps = session_entry->vht_caps;
406 sme_join_rsp->ht_caps = session_entry->ht_caps;
407 sme_join_rsp->ht_operation = session_entry->ht_operation;
408 sme_join_rsp->vht_operation = session_entry->vht_operation;
409}
410
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800411/**
412 * lim_send_sme_join_reassoc_rsp() - Send Response to Upper Layers
413 * @mac_ctx: Pointer to Global MAC structure
414 * @msg_type: Indicates message type
415 * @result_code: Indicates the result of previously issued
416 * eWNI_SME_msgType_REQ message
417 * @prot_status_code: Protocol Status Code
418 * @session_entry: PE Session Info
419 * @sme_session_id: SME Session ID
420 * @sme_transaction_id: SME Transaction ID
421 *
422 * This function is called by lim_process_sme_req_messages() to send
423 * eWNI_SME_JOIN_RSP or eWNI_SME_REASSOC_RSP messages to applications
424 * above MAC Software.
425 *
426 * Return: None
427 */
428
429void
430lim_send_sme_join_reassoc_rsp(tpAniSirGlobal mac_ctx, uint16_t msg_type,
431 tSirResultCodes result_code, uint16_t prot_status_code,
432 tpPESession session_entry, uint8_t sme_session_id,
433 uint16_t sme_transaction_id)
434{
435 tpSirSmeJoinRsp sme_join_rsp;
436 uint32_t rsp_len;
437 tpDphHashNode sta_ds = NULL;
438#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
439 if (msg_type == eWNI_SME_REASSOC_RSP)
440 lim_diag_event_report(mac_ctx, WLAN_PE_DIAG_REASSOC_RSP_EVENT,
441 session_entry, (uint16_t) result_code, 0);
442 else
443 lim_diag_event_report(mac_ctx, WLAN_PE_DIAG_JOIN_RSP_EVENT,
444 session_entry, (uint16_t) result_code, 0);
445#endif /* FEATURE_WLAN_DIAG_SUPPORT */
446
447 lim_log(mac_ctx, LOG1, FL("Sending message %s with reasonCode %s"),
448 lim_msg_str(msg_type), lim_result_code_str(result_code));
449
450 if (session_entry == NULL) {
451 rsp_len = sizeof(tSirSmeJoinRsp);
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530452 sme_join_rsp = qdf_mem_malloc(rsp_len);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800453 if (NULL == sme_join_rsp) {
454 lim_log(mac_ctx, LOGP,
455 FL("Mem Alloc fail - JOIN/REASSOC_RSP"));
456 return;
457 }
458
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530459 qdf_mem_set((uint8_t *) sme_join_rsp, rsp_len, 0);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800460 sme_join_rsp->beaconLength = 0;
461 sme_join_rsp->assocReqLength = 0;
462 sme_join_rsp->assocRspLength = 0;
463 } else {
464 rsp_len = session_entry->assocReqLen +
465 session_entry->assocRspLen + session_entry->bcnLen +
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800466 session_entry->RICDataLen +
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800467#ifdef FEATURE_WLAN_ESE
468 session_entry->tspecLen +
469#endif
470 sizeof(tSirSmeJoinRsp) - sizeof(uint8_t);
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530471 sme_join_rsp = qdf_mem_malloc(rsp_len);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800472 if (NULL == sme_join_rsp) {
473 lim_log(mac_ctx, LOGP,
474 FL("MemAlloc fail - JOIN/REASSOC_RSP"));
475 return;
476 }
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530477 qdf_mem_set((uint8_t *) sme_join_rsp, rsp_len, 0);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800478 if (result_code == eSIR_SME_SUCCESS) {
479 sta_ds = dph_get_hash_entry(mac_ctx,
480 DPH_STA_HASH_INDEX_PEER,
481 &session_entry->dph.dphHashTable);
482 if (sta_ds == NULL) {
483 lim_log(mac_ctx, LOGE,
484 FL("Get Self Sta Entry fail"));
485 } else {
486 /* Pass the peer's staId */
487 sme_join_rsp->staId = sta_ds->staIndex;
488 sme_join_rsp->ucastSig =
489 sta_ds->ucUcastSig;
490 sme_join_rsp->bcastSig =
491 sta_ds->ucBcastSig;
492 sme_join_rsp->timingMeasCap =
493 sta_ds->timingMeasCap;
494#ifdef FEATURE_WLAN_TDLS
495 sme_join_rsp->tdls_prohibited =
496 session_entry->tdls_prohibited;
497 sme_join_rsp->tdls_chan_swit_prohibited =
498 session_entry->tdls_chan_swit_prohibited;
499#endif
Kanchanapally, Vidyullathae3062812015-05-22 17:28:57 +0530500 sme_join_rsp->nss = sta_ds->nss;
501 sme_join_rsp->max_rate_flags =
502 lim_get_max_rate_flags(mac_ctx, sta_ds);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800503 }
504 }
505 sme_join_rsp->beaconLength = 0;
506 sme_join_rsp->assocReqLength = 0;
507 sme_join_rsp->assocRspLength = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800508 sme_join_rsp->parsedRicRspLen = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800509#ifdef FEATURE_WLAN_ESE
510 sme_join_rsp->tspecIeLen = 0;
511#endif
Anurag Chouhan5de8d172016-07-13 14:44:28 +0530512 lim_add_bss_info(session_entry, sme_join_rsp);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800513 lim_handle_join_rsp_status(mac_ctx, session_entry, result_code,
514 sme_join_rsp);
Archana Ramachandran20d2e232016-02-11 16:58:40 -0800515
516 /* Send supported NSS 1x1 to SME */
517 sme_join_rsp->supported_nss_1x1 =
518 session_entry->supported_nss_1x1;
519 lim_log(mac_ctx, LOG1,
520 FL("SME Join Rsp is supported NSS 1X1: %d"),
521 sme_join_rsp->supported_nss_1x1);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800522 }
523
524 sme_join_rsp->messageType = msg_type;
525 sme_join_rsp->length = (uint16_t) rsp_len;
526 sme_join_rsp->statusCode = result_code;
527 sme_join_rsp->protStatusCode = prot_status_code;
528
529 sme_join_rsp->sessionId = sme_session_id;
530 sme_join_rsp->transactionId = sme_transaction_id;
531
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530532 lim_send_sme_join_reassoc_rsp_after_resume(mac_ctx, QDF_STATUS_SUCCESS,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800533 (uint32_t *)sme_join_rsp);
534}
535
536/**
537 * lim_send_sme_start_bss_rsp()
538 *
539 ***FUNCTION:
540 * This function is called to send eWNI_SME_START_BSS_RSP
541 * message to applications above MAC Software.
542 *
543 ***PARAMS:
544 *
545 ***LOGIC:
546 *
547 ***ASSUMPTIONS:
548 * NA
549 *
550 ***NOTE:
551 * NA
552 *
553 * @param pMac Pointer to Global MAC structure
554 * @param msgType Indicates message type
555 * @param resultCode Indicates the result of previously issued
556 * eWNI_SME_msgType_REQ message
557 *
558 * @return None
559 */
560
561void
562lim_send_sme_start_bss_rsp(tpAniSirGlobal pMac,
563 uint16_t msgType, tSirResultCodes resultCode,
564 tpPESession psessionEntry, uint8_t smesessionId,
565 uint16_t smetransactionId)
566{
567
568 uint16_t size = 0;
569 tSirMsgQ mmhMsg;
570 tSirSmeStartBssRsp *pSirSmeRsp;
571 uint16_t ieLen;
572 uint16_t ieOffset, curLen;
573
574 PELOG1(lim_log(pMac, LOG1, FL("Sending message %s with reasonCode %s"),
575 lim_msg_str(msgType), lim_result_code_str(resultCode));
576 )
577
578 size = sizeof(tSirSmeStartBssRsp);
579
580 if (psessionEntry == NULL) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530581 pSirSmeRsp = qdf_mem_malloc(size);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800582 if (NULL == pSirSmeRsp) {
583 /* / Buffer not available. Log error */
584 lim_log(pMac, LOGP,
585 FL
586 ("call to AllocateMemory failed for eWNI_SME_START_BSS_RSP"));
587 return;
588 }
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530589 qdf_mem_set((uint8_t *) pSirSmeRsp, size, 0);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800590
591 } else {
592 /* subtract size of beaconLength + Mac Hdr + Fixed Fields before SSID */
593 ieOffset = sizeof(tAniBeaconStruct) + SIR_MAC_B_PR_SSID_OFFSET;
594 ieLen = psessionEntry->schBeaconOffsetBegin
595 + psessionEntry->schBeaconOffsetEnd - ieOffset;
596 /* calculate the memory size to allocate */
597 size += ieLen;
598
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530599 pSirSmeRsp = qdf_mem_malloc(size);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800600 if (NULL == pSirSmeRsp) {
601 /* / Buffer not available. Log error */
602 lim_log(pMac, LOGP,
603 FL
604 ("call to AllocateMemory failed for eWNI_SME_START_BSS_RSP"));
605
606 return;
607 }
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530608 qdf_mem_set((uint8_t *) pSirSmeRsp, size, 0);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800609 size = sizeof(tSirSmeStartBssRsp);
610 if (resultCode == eSIR_SME_SUCCESS) {
611
612 sir_copy_mac_addr(pSirSmeRsp->bssDescription.bssId,
613 psessionEntry->bssId);
614
615 /* Read beacon interval from session */
616 pSirSmeRsp->bssDescription.beaconInterval =
617 (uint16_t) psessionEntry->beaconParams.
618 beaconInterval;
619 pSirSmeRsp->bssType = psessionEntry->bssType;
620
621 if (cfg_get_capability_info
622 (pMac, &pSirSmeRsp->bssDescription.capabilityInfo,
623 psessionEntry)
624 != eSIR_SUCCESS)
625 lim_log(pMac, LOGP,
626 FL
627 ("could not retrieve Capabilities value"));
628
629 lim_get_phy_mode(pMac,
630 (uint32_t *) &pSirSmeRsp->bssDescription.
631 nwType, psessionEntry);
632
633 pSirSmeRsp->bssDescription.channelId =
634 psessionEntry->currentOperChannel;
635
Deepak Dhamdheree2dd5442016-05-27 15:05:51 -0700636 if (!LIM_IS_NDI_ROLE(psessionEntry)) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800637 curLen = psessionEntry->schBeaconOffsetBegin - ieOffset;
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530638 qdf_mem_copy((uint8_t *) &pSirSmeRsp->bssDescription.
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800639 ieFields,
640 psessionEntry->pSchBeaconFrameBegin +
641 ieOffset, (uint32_t) curLen);
642
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530643 qdf_mem_copy(((uint8_t *) &pSirSmeRsp->bssDescription.
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800644 ieFields) + curLen,
645 psessionEntry->pSchBeaconFrameEnd,
646 (uint32_t) psessionEntry->
647 schBeaconOffsetEnd);
648
649 /* subtracting size of length indicator itself and size of pointer to ieFields */
650 pSirSmeRsp->bssDescription.length =
651 sizeof(tSirBssDescription) - sizeof(uint16_t) -
652 sizeof(uint32_t) + ieLen;
653 /* This is the size of the message, subtracting the size of the pointer to ieFields */
654 size += ieLen - sizeof(uint32_t);
Deepak Dhamdheree2dd5442016-05-27 15:05:51 -0700655 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800656#ifdef FEATURE_WLAN_MCC_TO_SCC_SWITCH
657 if (psessionEntry->cc_switch_mode
Anurag Chouhanf04e84f2016-03-03 10:12:12 +0530658 != QDF_MCC_TO_SCC_SWITCH_DISABLE) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800659 pSirSmeRsp->HTProfile.
660 htSupportedChannelWidthSet =
661 psessionEntry->htSupportedChannelWidthSet;
662 pSirSmeRsp->HTProfile.htRecommendedTxWidthSet =
663 psessionEntry->htRecommendedTxWidthSet;
664 pSirSmeRsp->HTProfile.htSecondaryChannelOffset =
665 psessionEntry->htSecondaryChannelOffset;
666 pSirSmeRsp->HTProfile.dot11mode =
667 psessionEntry->dot11mode;
668 pSirSmeRsp->HTProfile.htCapability =
669 psessionEntry->htCapability;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800670 pSirSmeRsp->HTProfile.vhtCapability =
671 psessionEntry->vhtCapability;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800672 pSirSmeRsp->HTProfile.apCenterChan =
673 psessionEntry->ch_center_freq_seg0;
674 pSirSmeRsp->HTProfile.apChanWidth =
675 psessionEntry->ch_width;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800676 }
677#endif
678 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800679 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800680 pSirSmeRsp->messageType = msgType;
681 pSirSmeRsp->length = size;
682
683 /* Update SME session Id and transaction Id */
684 pSirSmeRsp->sessionId = smesessionId;
685 pSirSmeRsp->transactionId = smetransactionId;
686 pSirSmeRsp->statusCode = resultCode;
687 if (psessionEntry != NULL)
688 pSirSmeRsp->staId = psessionEntry->staId; /* else it will be always zero smeRsp StaID = 0 */
689
690 mmhMsg.type = msgType;
691 mmhMsg.bodyptr = pSirSmeRsp;
692 mmhMsg.bodyval = 0;
693 if (psessionEntry == NULL) {
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +0530694 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG,
695 NO_SESSION, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800696 } else {
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +0530697 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG,
698 psessionEntry->peSessionId, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800699 }
700#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
701 lim_diag_event_report(pMac, WLAN_PE_DIAG_START_BSS_RSP_EVENT,
702 psessionEntry, (uint16_t) resultCode, 0);
703#endif /* FEATURE_WLAN_DIAG_SUPPORT */
704
705 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
706} /*** end lim_send_sme_start_bss_rsp() ***/
707
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800708/**
709 * lim_send_sme_scan_rsp() - Send scan response to SME
710 * @pMac: Pointer to Global MAC structure
711 * @length: Indicates length of message
712 * @resultCode: Indicates the result of previously issued
713 * eWNI_SME_SCAN_REQ message
714 * @scan_id: scan identifier
715 *
716 * This function is called by lim_process_sme_req_messages() to send
717 * eWNI_SME_SCAN_RSP message to applications above MAC
718 *
719 * return: None
720 */
721
722void
723lim_send_sme_scan_rsp(tpAniSirGlobal pMac, tSirResultCodes resultCode,
724 uint8_t smesessionId, uint16_t smetranscationId,
725 uint32_t scan_id)
726{
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800727 lim_post_sme_scan_rsp_message(pMac, resultCode, smesessionId,
728 smetranscationId, scan_id);
729}
730
731/**
732 * lim_post_sme_scan_rsp_message()
733 *
734 ***FUNCTION:
735 * This function is called by lim_send_sme_scan_rsp() to send
736 * eWNI_SME_SCAN_RSP message with failed result code
737 *
738 ***NOTE:
739 * NA
740 *
741 * @param pMac Pointer to Global MAC structure
742 * @param length Indicates length of message
743 * @param resultCode failed result code
744 *
745 * @return None
746 */
747
748void
749lim_post_sme_scan_rsp_message(tpAniSirGlobal pMac,
750 tSirResultCodes resultCode, uint8_t smesessionId,
751 uint16_t smetransactionId,
752 uint32_t scan_id)
753{
754 tpSirSmeScanRsp pSirSmeScanRsp;
755 tSirMsgQ mmhMsg;
756
757 lim_log(pMac, LOG1, FL("send SME_SCAN_RSP (reasonCode %s)."),
758 lim_result_code_str(resultCode));
759
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530760 pSirSmeScanRsp = qdf_mem_malloc(sizeof(tSirSmeScanRsp));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800761 if (NULL == pSirSmeScanRsp) {
762 lim_log(pMac, LOGP,
763 FL("AllocateMemory failed for eWNI_SME_SCAN_RSP"));
764 return;
765 }
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530766 qdf_mem_set((void *)pSirSmeScanRsp, sizeof(tSirSmeScanRsp), 0);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800767
768 pSirSmeScanRsp->messageType = eWNI_SME_SCAN_RSP;
769 pSirSmeScanRsp->statusCode = resultCode;
770
771 /*Update SME session Id and transaction Id */
772 pSirSmeScanRsp->sessionId = smesessionId;
773 pSirSmeScanRsp->transcationId = smetransactionId;
774 pSirSmeScanRsp->scan_id = scan_id;
775
776 mmhMsg.type = eWNI_SME_SCAN_RSP;
777 mmhMsg.bodyptr = pSirSmeScanRsp;
778 mmhMsg.bodyval = 0;
779
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +0530780 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG, NO_SESSION, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800781#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
782 lim_diag_event_report(pMac, WLAN_PE_DIAG_SCAN_RSP_EVENT, NULL,
783 (uint16_t) resultCode, 0);
784#endif /* FEATURE_WLAN_DIAG_SUPPORT */
785
786 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
787 return;
788
789} /*** lim_post_sme_scan_rsp_message ***/
790
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800791void lim_send_sme_disassoc_deauth_ntf(tpAniSirGlobal pMac,
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530792 QDF_STATUS status, uint32_t *pCtx)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800793{
794 tSirMsgQ mmhMsg;
795 tSirMsgQ *pMsg = (tSirMsgQ *) pCtx;
796
797 mmhMsg.type = pMsg->type;
798 mmhMsg.bodyptr = pMsg;
799 mmhMsg.bodyval = 0;
800
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +0530801 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG, NO_SESSION, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800802
803 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
804}
805
806/**
807 * lim_send_sme_disassoc_ntf()
808 *
809 ***FUNCTION:
810 * This function is called by limProcessSmeMessages() to send
811 * eWNI_SME_DISASSOC_RSP/IND message to host
812 *
813 ***PARAMS:
814 *
815 ***LOGIC:
816 *
817 ***ASSUMPTIONS:
818 * NA
819 *
820 ***NOTE:
821 * This function is used for sending eWNI_SME_DISASSOC_CNF,
822 * or eWNI_SME_DISASSOC_IND to host depending on
823 * disassociation trigger.
824 *
825 * @param peerMacAddr Indicates the peer MAC addr to which
826 * disassociate was initiated
827 * @param reasonCode Indicates the reason for Disassociation
828 * @param disassocTrigger Indicates the trigger for Disassociation
829 * @param aid Indicates the STAID. This parameter is
830 * present only on AP.
831 *
832 * @return None
833 */
834void
835lim_send_sme_disassoc_ntf(tpAniSirGlobal pMac,
836 tSirMacAddr peerMacAddr,
837 tSirResultCodes reasonCode,
838 uint16_t disassocTrigger,
839 uint16_t aid,
840 uint8_t smesessionId,
841 uint16_t smetransactionId, tpPESession psessionEntry)
842{
843
844 uint8_t *pBuf;
845 tSirSmeDisassocRsp *pSirSmeDisassocRsp;
846 tSirSmeDisassocInd *pSirSmeDisassocInd;
Sandeep Puligilla7e3e3c52016-09-02 17:54:21 -0700847 uint32_t *pMsg = NULL;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800848 bool failure = false;
Sandeep Puligilla7e3e3c52016-09-02 17:54:21 -0700849 tpPESession session = NULL;
850 uint16_t i, assoc_id;
851 tpDphHashNode sta_ds = NULL;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800852
853 lim_log(pMac, LOG1, FL("Disassoc Ntf with trigger : %d reasonCode: %d"),
854 disassocTrigger, reasonCode);
855
856 switch (disassocTrigger) {
Sandeep Puligilla7e3e3c52016-09-02 17:54:21 -0700857 case eLIM_DUPLICATE_ENTRY:
858 /*
859 * Duplicate entry is removed at LIM.
860 * Initiate new entry for other session
861 */
862 lim_log(pMac, LOG1,
863 FL("Rcvd eLIM_DUPLICATE_ENTRY for " MAC_ADDRESS_STR),
864 MAC_ADDR_ARRAY(peerMacAddr));
865
866 for (i = 0; i < pMac->lim.maxBssId; i++) {
867 if ((&pMac->lim.gpSession[i] != NULL) &&
868 (pMac->lim.gpSession[i].valid) &&
869 (pMac->lim.gpSession[i].pePersona ==
870 QDF_SAP_MODE)) {
871 /* Find the sta ds entry in another session */
872 session = &pMac->lim.gpSession[i];
873 sta_ds = dph_lookup_hash_entry(pMac,
874 peerMacAddr, &assoc_id,
875 &session->dph.dphHashTable);
876 }
877 }
878 if (sta_ds
879#ifdef WLAN_FEATURE_11W
880 && (!sta_ds->rmfEnabled)
881#endif
882 ) {
883 if (lim_add_sta(pMac, sta_ds, false, session) !=
884 eSIR_SUCCESS)
885 lim_log(pMac, LOGE,
886 FL("could not Add STA with assocId=%d"),
887 sta_ds->assocId);
888 }
889 failure = true;
890 break;
891
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800892 case eLIM_PEER_ENTITY_DISASSOC:
893 if (reasonCode != eSIR_SME_STA_NOT_ASSOCIATED) {
894 failure = true;
895 goto error;
896 }
897
898 case eLIM_HOST_DISASSOC:
899 /**
900 * Disassociation response due to
901 * host triggered disassociation
902 */
903
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530904 pSirSmeDisassocRsp = qdf_mem_malloc(sizeof(tSirSmeDisassocRsp));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800905 if (NULL == pSirSmeDisassocRsp) {
906 /* Log error */
907 lim_log(pMac, LOGP, FL("Memory allocation failed"));
908 failure = true;
909 goto error;
910 }
911 lim_log(pMac, LOG1, FL("send eWNI_SME_DISASSOC_RSP with "
912 "retCode: %d for " MAC_ADDRESS_STR),
913 reasonCode, MAC_ADDR_ARRAY(peerMacAddr));
914 pSirSmeDisassocRsp->messageType = eWNI_SME_DISASSOC_RSP;
915 pSirSmeDisassocRsp->length = sizeof(tSirSmeDisassocRsp);
916 /* sessionId */
917 pBuf = (uint8_t *) &pSirSmeDisassocRsp->sessionId;
918 *pBuf = smesessionId;
919 pBuf++;
920
921 /* transactionId */
922 lim_copy_u16(pBuf, smetransactionId);
923 pBuf += sizeof(uint16_t);
924
925 /* statusCode */
926 lim_copy_u32(pBuf, reasonCode);
927 pBuf += sizeof(tSirResultCodes);
928
929 /* peerMacAddr */
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530930 qdf_mem_copy(pBuf, peerMacAddr, sizeof(tSirMacAddr));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800931 pBuf += sizeof(tSirMacAddr);
932
933 /* Clear Station Stats */
934 /* for sta, it is always 1, IBSS is handled at halInitSta */
935
936#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
937
938 lim_diag_event_report(pMac, WLAN_PE_DIAG_DISASSOC_RSP_EVENT,
939 psessionEntry, (uint16_t) reasonCode, 0);
940#endif
941 pMsg = (uint32_t *) pSirSmeDisassocRsp;
942 break;
943
944 default:
945 /**
946 * Disassociation indication due to Disassociation
947 * frame reception from peer entity or due to
948 * loss of link with peer entity.
949 */
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530950 pSirSmeDisassocInd = qdf_mem_malloc(sizeof(tSirSmeDisassocInd));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800951 if (NULL == pSirSmeDisassocInd) {
952 /* Log error */
953 lim_log(pMac, LOGP, FL("Memory allocation failed"));
954 failure = true;
955 goto error;
956 }
957 lim_log(pMac, LOG1, FL("send eWNI_SME_DISASSOC_IND with "
958 "retCode: %d for " MAC_ADDRESS_STR),
959 reasonCode, MAC_ADDR_ARRAY(peerMacAddr));
960 pSirSmeDisassocInd->messageType = eWNI_SME_DISASSOC_IND;
961 pSirSmeDisassocInd->length = sizeof(tSirSmeDisassocInd);
962
963 /* Update SME session Id and Transaction Id */
964 pSirSmeDisassocInd->sessionId = smesessionId;
965 pSirSmeDisassocInd->transactionId = smetransactionId;
966 pSirSmeDisassocInd->reasonCode = reasonCode;
967 pBuf = (uint8_t *) &pSirSmeDisassocInd->statusCode;
968
969 lim_copy_u32(pBuf, reasonCode);
970 pBuf += sizeof(tSirResultCodes);
971
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530972 qdf_mem_copy(pBuf, psessionEntry->bssId, sizeof(tSirMacAddr));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800973 pBuf += sizeof(tSirMacAddr);
974
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530975 qdf_mem_copy(pBuf, peerMacAddr, sizeof(tSirMacAddr));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800976
977#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
978 lim_diag_event_report(pMac, WLAN_PE_DIAG_DISASSOC_IND_EVENT,
979 psessionEntry, (uint16_t) reasonCode, 0);
980#endif
981 pMsg = (uint32_t *) pSirSmeDisassocInd;
982
983 break;
984 }
985
986error:
987 /* Delete the PE session Created */
Rajeev Kumarcf835a02016-04-15 15:01:31 -0700988 if ((psessionEntry != NULL) && LIM_IS_STA_ROLE(psessionEntry))
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800989 pe_delete_session(pMac, psessionEntry);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800990
991 if (false == failure)
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530992 lim_send_sme_disassoc_deauth_ntf(pMac, QDF_STATUS_SUCCESS,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800993 (uint32_t *) pMsg);
994} /*** end lim_send_sme_disassoc_ntf() ***/
995
996/** -----------------------------------------------------------------
997 \brief lim_send_sme_disassoc_ind() - sends SME_DISASSOC_IND
998
999 After receiving disassociation frame from peer entity, this
1000 function sends a eWNI_SME_DISASSOC_IND to SME with a specific
1001 reason code.
1002
1003 \param pMac - global mac structure
1004 \param pStaDs - station dph hash node
1005 \return none
1006 \sa
1007 ----------------------------------------------------------------- */
1008void
1009lim_send_sme_disassoc_ind(tpAniSirGlobal pMac, tpDphHashNode pStaDs,
1010 tpPESession psessionEntry)
1011{
1012 tSirMsgQ mmhMsg;
1013 tSirSmeDisassocInd *pSirSmeDisassocInd;
1014
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301015 pSirSmeDisassocInd = qdf_mem_malloc(sizeof(tSirSmeDisassocInd));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001016 if (NULL == pSirSmeDisassocInd) {
1017 lim_log(pMac, LOGP,
1018 FL("AllocateMemory failed for eWNI_SME_DISASSOC_IND"));
1019 return;
1020 }
1021
1022 pSirSmeDisassocInd->messageType = eWNI_SME_DISASSOC_IND;
1023 pSirSmeDisassocInd->length = sizeof(tSirSmeDisassocInd);
1024
1025 pSirSmeDisassocInd->sessionId = psessionEntry->smeSessionId;
1026 pSirSmeDisassocInd->transactionId = psessionEntry->transactionId;
1027 pSirSmeDisassocInd->statusCode = pStaDs->mlmStaContext.disassocReason;
1028 pSirSmeDisassocInd->reasonCode = pStaDs->mlmStaContext.disassocReason;
1029
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301030 qdf_mem_copy(pSirSmeDisassocInd->bssid.bytes, psessionEntry->bssId,
Anurag Chouhan6d760662016-02-20 16:05:43 +05301031 QDF_MAC_ADDR_SIZE);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001032
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301033 qdf_mem_copy(pSirSmeDisassocInd->peer_macaddr.bytes, pStaDs->staAddr,
Anurag Chouhan6d760662016-02-20 16:05:43 +05301034 QDF_MAC_ADDR_SIZE);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001035
1036 pSirSmeDisassocInd->staId = pStaDs->staIndex;
1037
1038 mmhMsg.type = eWNI_SME_DISASSOC_IND;
1039 mmhMsg.bodyptr = pSirSmeDisassocInd;
1040 mmhMsg.bodyval = 0;
1041
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301042 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG,
1043 psessionEntry->peSessionId, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001044#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
1045 lim_diag_event_report(pMac, WLAN_PE_DIAG_DISASSOC_IND_EVENT, psessionEntry,
1046 0, (uint16_t) pStaDs->mlmStaContext.disassocReason);
1047#endif /* FEATURE_WLAN_DIAG_SUPPORT */
1048
1049 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
1050
1051} /*** end lim_send_sme_disassoc_ind() ***/
1052
1053/** -----------------------------------------------------------------
1054 \brief lim_send_sme_deauth_ind() - sends SME_DEAUTH_IND
1055
1056 After receiving deauthentication frame from peer entity, this
1057 function sends a eWNI_SME_DEAUTH_IND to SME with a specific
1058 reason code.
1059
1060 \param pMac - global mac structure
1061 \param pStaDs - station dph hash node
1062 \return none
1063 \sa
1064 ----------------------------------------------------------------- */
1065void
1066lim_send_sme_deauth_ind(tpAniSirGlobal pMac, tpDphHashNode pStaDs,
1067 tpPESession psessionEntry)
1068{
1069 tSirMsgQ mmhMsg;
1070 tSirSmeDeauthInd *pSirSmeDeauthInd;
1071
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301072 pSirSmeDeauthInd = qdf_mem_malloc(sizeof(tSirSmeDeauthInd));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001073 if (NULL == pSirSmeDeauthInd) {
1074 lim_log(pMac, LOGP,
1075 FL("AllocateMemory failed for eWNI_SME_DEAUTH_IND "));
1076 return;
1077 }
1078
1079 pSirSmeDeauthInd->messageType = eWNI_SME_DEAUTH_IND;
1080 pSirSmeDeauthInd->length = sizeof(tSirSmeDeauthInd);
1081
1082 pSirSmeDeauthInd->sessionId = psessionEntry->smeSessionId;
1083 pSirSmeDeauthInd->transactionId = psessionEntry->transactionId;
1084 if (eSIR_INFRA_AP_MODE == psessionEntry->bssType) {
1085 pSirSmeDeauthInd->statusCode =
1086 (tSirResultCodes) pStaDs->mlmStaContext.cleanupTrigger;
1087 } else {
1088 /* Need to indicatet he reascon code over the air */
1089 pSirSmeDeauthInd->statusCode =
1090 (tSirResultCodes) pStaDs->mlmStaContext.disassocReason;
1091 }
1092 /* BSSID */
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301093 qdf_mem_copy(pSirSmeDeauthInd->bssid.bytes, psessionEntry->bssId,
Anurag Chouhan6d760662016-02-20 16:05:43 +05301094 QDF_MAC_ADDR_SIZE);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001095 /* peerMacAddr */
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301096 qdf_mem_copy(pSirSmeDeauthInd->peer_macaddr.bytes, pStaDs->staAddr,
Anurag Chouhan6d760662016-02-20 16:05:43 +05301097 QDF_MAC_ADDR_SIZE);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001098 pSirSmeDeauthInd->reasonCode = pStaDs->mlmStaContext.disassocReason;
1099
1100 pSirSmeDeauthInd->staId = pStaDs->staIndex;
Kiran Kumar Lokere37d3aa22015-11-03 14:58:26 -08001101 if (eSIR_MAC_PEER_STA_REQ_LEAVING_BSS_REASON ==
1102 pStaDs->mlmStaContext.disassocReason)
1103 pSirSmeDeauthInd->rssi = pStaDs->del_sta_ctx_rssi;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001104
1105 mmhMsg.type = eWNI_SME_DEAUTH_IND;
1106 mmhMsg.bodyptr = pSirSmeDeauthInd;
1107 mmhMsg.bodyval = 0;
1108
1109 MTRACE(mac_trace_msg_tx(pMac, psessionEntry->peSessionId, mmhMsg.type));
1110#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
1111 lim_diag_event_report(pMac, WLAN_PE_DIAG_DEAUTH_IND_EVENT, psessionEntry,
1112 0, pStaDs->mlmStaContext.cleanupTrigger);
1113#endif /* FEATURE_WLAN_DIAG_SUPPORT */
1114
1115 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
1116 return;
1117} /*** end lim_send_sme_deauth_ind() ***/
1118
1119#ifdef FEATURE_WLAN_TDLS
1120/**
1121 * lim_send_sme_tdls_del_sta_ind()
1122 *
1123 ***FUNCTION:
1124 * This function is called to send the TDLS STA context deletion to SME.
1125 *
1126 ***LOGIC:
1127 *
1128 ***ASSUMPTIONS:
1129 *
1130 ***NOTE:
1131 * NA
1132 *
1133 * @param pMac - Pointer to global MAC structure
1134 * @param pStaDs - Pointer to internal STA Datastructure
1135 * @param psessionEntry - Pointer to the session entry
1136 * @param reasonCode - Reason for TDLS sta deletion
1137 * @return None
1138 */
1139void
1140lim_send_sme_tdls_del_sta_ind(tpAniSirGlobal pMac, tpDphHashNode pStaDs,
1141 tpPESession psessionEntry, uint16_t reasonCode)
1142{
1143 tSirMsgQ mmhMsg;
1144 tSirTdlsDelStaInd *pSirTdlsDelStaInd;
1145
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301146 pSirTdlsDelStaInd = qdf_mem_malloc(sizeof(tSirTdlsDelStaInd));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001147 if (NULL == pSirTdlsDelStaInd) {
1148 lim_log(pMac, LOGP,
1149 FL
1150 ("AllocateMemory failed for eWNI_SME_TDLS_DEL_STA_IND "));
1151 return;
1152 }
1153 /* messageType */
1154 pSirTdlsDelStaInd->messageType = eWNI_SME_TDLS_DEL_STA_IND;
1155 pSirTdlsDelStaInd->length = sizeof(tSirTdlsDelStaInd);
1156
1157 /* sessionId */
1158 pSirTdlsDelStaInd->sessionId = psessionEntry->smeSessionId;
1159
1160 /* peerMacAddr */
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301161 qdf_mem_copy(pSirTdlsDelStaInd->peermac.bytes, pStaDs->staAddr,
Anurag Chouhan6d760662016-02-20 16:05:43 +05301162 QDF_MAC_ADDR_SIZE);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001163
1164 /* staId */
1165 lim_copy_u16((uint8_t *) (&pSirTdlsDelStaInd->staId),
1166 (uint16_t) pStaDs->staIndex);
1167
1168 /* reasonCode */
1169 lim_copy_u16((uint8_t *) (&pSirTdlsDelStaInd->reasonCode), reasonCode);
1170
1171 mmhMsg.type = eWNI_SME_TDLS_DEL_STA_IND;
1172 mmhMsg.bodyptr = pSirTdlsDelStaInd;
1173 mmhMsg.bodyval = 0;
1174
1175 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
1176 return;
1177} /*** end lim_send_sme_tdls_del_sta_ind() ***/
1178
1179/**
1180 * lim_send_sme_tdls_delete_all_peer_ind()
1181 *
1182 ***FUNCTION:
1183 * This function is called to send the eWNI_SME_TDLS_DEL_ALL_PEER_IND
1184 * message to SME.
1185 *
1186 ***LOGIC:
1187 *
1188 ***ASSUMPTIONS:
1189 *
1190 ***NOTE:
1191 * NA
1192 *
1193 * @param pMac - Pointer to global MAC structure
1194 * @param psessionEntry - Pointer to the session entry
1195 * @return None
1196 */
1197void
1198lim_send_sme_tdls_delete_all_peer_ind(tpAniSirGlobal pMac, tpPESession psessionEntry)
1199{
1200 tSirMsgQ mmhMsg;
1201 tSirTdlsDelAllPeerInd *pSirTdlsDelAllPeerInd;
1202
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301203 pSirTdlsDelAllPeerInd = qdf_mem_malloc(sizeof(tSirTdlsDelAllPeerInd));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001204 if (NULL == pSirTdlsDelAllPeerInd) {
1205 lim_log(pMac, LOGP,
1206 FL
1207 ("AllocateMemory failed for eWNI_SME_TDLS_DEL_ALL_PEER_IND"));
1208 return;
1209 }
1210 /* messageType */
1211 pSirTdlsDelAllPeerInd->messageType = eWNI_SME_TDLS_DEL_ALL_PEER_IND;
1212 pSirTdlsDelAllPeerInd->length = sizeof(tSirTdlsDelAllPeerInd);
1213
1214 /* sessionId */
1215 pSirTdlsDelAllPeerInd->sessionId = psessionEntry->smeSessionId;
1216
1217 mmhMsg.type = eWNI_SME_TDLS_DEL_ALL_PEER_IND;
1218 mmhMsg.bodyptr = pSirTdlsDelAllPeerInd;
1219 mmhMsg.bodyval = 0;
1220
1221 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
1222 return;
1223} /*** end lim_send_sme_tdls_delete_all_peer_ind() ***/
1224
1225/**
1226 * lim_send_sme_mgmt_tx_completion()
1227 *
1228 ***FUNCTION:
1229 * This function is called to send the eWNI_SME_MGMT_FRM_TX_COMPLETION_IND
1230 * message to SME.
1231 *
1232 ***LOGIC:
1233 *
1234 ***ASSUMPTIONS:
1235 *
1236 ***NOTE:
1237 * NA
1238 *
1239 * @param pMac - Pointer to global MAC structure
1240 * @param psessionEntry - Pointer to the session entry
1241 * @param txCompleteStatus - TX Complete Status of Mgmt Frames
1242 * @return None
1243 */
1244void
1245lim_send_sme_mgmt_tx_completion(tpAniSirGlobal pMac,
1246 tpPESession psessionEntry, uint32_t txCompleteStatus)
1247{
1248 tSirMsgQ mmhMsg;
1249 tSirMgmtTxCompletionInd *pSirMgmtTxCompletionInd;
1250
1251 pSirMgmtTxCompletionInd =
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301252 qdf_mem_malloc(sizeof(tSirMgmtTxCompletionInd));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001253 if (NULL == pSirMgmtTxCompletionInd) {
1254 lim_log(pMac, LOGP,
1255 FL
1256 ("AllocateMemory failed for eWNI_SME_MGMT_FRM_TX_COMPLETION_IND"));
1257 return;
1258 }
1259 /* messageType */
1260 pSirMgmtTxCompletionInd->messageType =
1261 eWNI_SME_MGMT_FRM_TX_COMPLETION_IND;
1262 pSirMgmtTxCompletionInd->length = sizeof(tSirMgmtTxCompletionInd);
1263
1264 /* sessionId */
1265 pSirMgmtTxCompletionInd->sessionId = psessionEntry->smeSessionId;
1266
1267 pSirMgmtTxCompletionInd->txCompleteStatus = txCompleteStatus;
1268
1269 mmhMsg.type = eWNI_SME_MGMT_FRM_TX_COMPLETION_IND;
1270 mmhMsg.bodyptr = pSirMgmtTxCompletionInd;
1271 mmhMsg.bodyval = 0;
1272
1273 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
1274 return;
1275} /*** end lim_send_sme_tdls_delete_all_peer_ind() ***/
1276
1277void lim_send_sme_tdls_event_notify(tpAniSirGlobal pMac, uint16_t msgType,
1278 void *events)
1279{
1280 tSirMsgQ mmhMsg;
1281
1282 switch (msgType) {
1283 case SIR_HAL_TDLS_SHOULD_DISCOVER:
1284 mmhMsg.type = eWNI_SME_TDLS_SHOULD_DISCOVER;
1285 break;
1286 case SIR_HAL_TDLS_SHOULD_TEARDOWN:
1287 mmhMsg.type = eWNI_SME_TDLS_SHOULD_TEARDOWN;
1288 break;
1289 case SIR_HAL_TDLS_PEER_DISCONNECTED:
1290 mmhMsg.type = eWNI_SME_TDLS_PEER_DISCONNECTED;
1291 break;
Kabilan Kannan14ec97f2016-05-16 23:48:25 -07001292 case SIR_HAL_TDLS_CONNECTION_TRACKER_NOTIFICATION:
1293 mmhMsg.type = eWNI_SME_TDLS_CONNECTION_TRACKER_NOTIFICATION;
1294 break;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001295 }
1296
1297 mmhMsg.bodyptr = events;
1298 mmhMsg.bodyval = 0;
1299 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
1300 return;
1301}
1302#endif /* FEATURE_WLAN_TDLS */
1303
1304/**
1305 * lim_send_sme_deauth_ntf()
1306 *
1307 ***FUNCTION:
1308 * This function is called by limProcessSmeMessages() to send
1309 * eWNI_SME_DISASSOC_RSP/IND message to host
1310 *
1311 ***PARAMS:
1312 *
1313 ***LOGIC:
1314 *
1315 ***ASSUMPTIONS:
1316 * NA
1317 *
1318 ***NOTE:
1319 * This function is used for sending eWNI_SME_DEAUTH_CNF or
1320 * eWNI_SME_DEAUTH_IND to host depending on deauthentication trigger.
1321 *
1322 * @param peerMacAddr Indicates the peer MAC addr to which
1323 * deauthentication was initiated
1324 * @param reasonCode Indicates the reason for Deauthetication
1325 * @param deauthTrigger Indicates the trigger for Deauthetication
1326 * @param aid Indicates the STAID. This parameter is present
1327 * only on AP.
1328 *
1329 * @return None
1330 */
1331void
1332lim_send_sme_deauth_ntf(tpAniSirGlobal pMac, tSirMacAddr peerMacAddr,
1333 tSirResultCodes reasonCode, uint16_t deauthTrigger,
1334 uint16_t aid, uint8_t smesessionId,
1335 uint16_t smetransactionId)
1336{
1337 uint8_t *pBuf;
1338 tSirSmeDeauthRsp *pSirSmeDeauthRsp;
1339 tSirSmeDeauthInd *pSirSmeDeauthInd;
1340 tpPESession psessionEntry;
1341 uint8_t sessionId;
1342 uint32_t *pMsg;
1343
1344 psessionEntry = pe_find_session_by_bssid(pMac, peerMacAddr, &sessionId);
1345 switch (deauthTrigger) {
1346 case eLIM_PEER_ENTITY_DEAUTH:
1347 return;
1348
1349 case eLIM_HOST_DEAUTH:
1350 /**
1351 * Deauthentication response to host triggered
1352 * deauthentication.
1353 */
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301354 pSirSmeDeauthRsp = qdf_mem_malloc(sizeof(tSirSmeDeauthRsp));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001355 if (NULL == pSirSmeDeauthRsp) {
1356 /* Log error */
1357 lim_log(pMac, LOGP,
1358 FL
1359 ("call to AllocateMemory failed for eWNI_SME_DEAUTH_RSP"));
1360
1361 return;
1362 }
1363 lim_log(pMac, LOG1, FL("send eWNI_SME_DEAUTH_RSP with "
1364 "retCode: %d for" MAC_ADDRESS_STR),
1365 reasonCode, MAC_ADDR_ARRAY(peerMacAddr));
1366 pSirSmeDeauthRsp->messageType = eWNI_SME_DEAUTH_RSP;
1367 pSirSmeDeauthRsp->length = sizeof(tSirSmeDeauthRsp);
1368 pSirSmeDeauthRsp->statusCode = reasonCode;
1369 pSirSmeDeauthRsp->sessionId = smesessionId;
1370 pSirSmeDeauthRsp->transactionId = smetransactionId;
1371
Srinivas Girigowda9cf95c52016-01-04 16:17:15 -08001372 pBuf = (uint8_t *) pSirSmeDeauthRsp->peer_macaddr.bytes;
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301373 qdf_mem_copy(pBuf, peerMacAddr, sizeof(tSirMacAddr));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001374
1375#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
1376 lim_diag_event_report(pMac, WLAN_PE_DIAG_DEAUTH_RSP_EVENT,
1377 psessionEntry, 0, (uint16_t) reasonCode);
1378#endif
1379 pMsg = (uint32_t *) pSirSmeDeauthRsp;
1380
1381 break;
1382
1383 default:
1384 /**
1385 * Deauthentication indication due to Deauthentication
1386 * frame reception from peer entity or due to
1387 * loss of link with peer entity.
1388 */
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301389 pSirSmeDeauthInd = qdf_mem_malloc(sizeof(tSirSmeDeauthInd));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001390 if (NULL == pSirSmeDeauthInd) {
1391 /* Log error */
1392 lim_log(pMac, LOGP,
1393 FL
1394 ("call to AllocateMemory failed for eWNI_SME_DEAUTH_Ind"));
1395
1396 return;
1397 }
1398 lim_log(pMac, LOG1, FL("send eWNI_SME_DEAUTH_IND with "
1399 "retCode: %d for " MAC_ADDRESS_STR),
1400 reasonCode, MAC_ADDR_ARRAY(peerMacAddr));
1401 pSirSmeDeauthInd->messageType = eWNI_SME_DEAUTH_IND;
1402 pSirSmeDeauthInd->length = sizeof(tSirSmeDeauthInd);
1403 pSirSmeDeauthInd->reasonCode = eSIR_MAC_UNSPEC_FAILURE_REASON;
1404
1405 /* sessionId */
1406 pBuf = (uint8_t *) &pSirSmeDeauthInd->sessionId;
1407 *pBuf++ = smesessionId;
1408
1409 /* transaction ID */
1410 lim_copy_u16(pBuf, smetransactionId);
1411 pBuf += sizeof(uint16_t);
1412
1413 /* status code */
1414 lim_copy_u32(pBuf, reasonCode);
1415 pBuf += sizeof(tSirResultCodes);
1416
1417 /* bssId */
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301418 qdf_mem_copy(pBuf, psessionEntry->bssId, sizeof(tSirMacAddr));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001419 pBuf += sizeof(tSirMacAddr);
1420
1421 /* peerMacAddr */
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301422 qdf_mem_copy(pSirSmeDeauthInd->peer_macaddr.bytes, peerMacAddr,
Anurag Chouhan6d760662016-02-20 16:05:43 +05301423 QDF_MAC_ADDR_SIZE);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001424
1425#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
1426 lim_diag_event_report(pMac, WLAN_PE_DIAG_DEAUTH_IND_EVENT,
1427 psessionEntry, 0, (uint16_t) reasonCode);
1428#endif /* FEATURE_WLAN_DIAG_SUPPORT */
1429 pMsg = (uint32_t *) pSirSmeDeauthInd;
1430
1431 break;
1432 }
1433
1434 /*Delete the PE session created */
1435 if (psessionEntry != NULL) {
1436 pe_delete_session(pMac, psessionEntry);
1437 }
1438
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301439 lim_send_sme_disassoc_deauth_ntf(pMac, QDF_STATUS_SUCCESS,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001440 (uint32_t *) pMsg);
1441
1442} /*** end lim_send_sme_deauth_ntf() ***/
1443
1444/**
1445 * lim_send_sme_wm_status_change_ntf() - Send Notification
1446 * @mac_ctx: Global MAC Context
1447 * @status_change_code: Indicates the change in the wireless medium.
1448 * @status_change_info: Indicates the information associated with
1449 * change in the wireless medium.
1450 * @info_len: Indicates the length of status change information
1451 * being sent.
1452 * @session_id SessionID
1453 *
1454 * This function is called by limProcessSmeMessages() to send
1455 * eWNI_SME_WM_STATUS_CHANGE_NTF message to host.
1456 *
1457 * Return: None
1458 */
1459void
1460lim_send_sme_wm_status_change_ntf(tpAniSirGlobal mac_ctx,
1461 tSirSmeStatusChangeCode status_change_code,
1462 uint32_t *status_change_info, uint16_t info_len, uint8_t session_id)
1463{
1464 tSirMsgQ msg;
1465 tSirSmeWmStatusChangeNtf *wm_status_change_ntf;
1466
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301467 wm_status_change_ntf = qdf_mem_malloc(sizeof(tSirSmeWmStatusChangeNtf));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001468 if (NULL == wm_status_change_ntf) {
1469 lim_log(mac_ctx, LOGE,
1470 FL("Mem Alloc failed - eWNI_SME_WM_STATUS_CHANGE_NTF"));
1471 return;
1472 }
1473
1474 msg.type = eWNI_SME_WM_STATUS_CHANGE_NTF;
1475 msg.bodyval = 0;
1476 msg.bodyptr = wm_status_change_ntf;
1477
1478 switch (status_change_code) {
1479 case eSIR_SME_RADAR_DETECTED:
1480 break;
1481 default:
1482 wm_status_change_ntf->messageType =
1483 eWNI_SME_WM_STATUS_CHANGE_NTF;
1484 wm_status_change_ntf->statusChangeCode = status_change_code;
1485 wm_status_change_ntf->length = sizeof(tSirSmeWmStatusChangeNtf);
1486 wm_status_change_ntf->sessionId = session_id;
1487 if (sizeof(wm_status_change_ntf->statusChangeInfo) >=
1488 info_len) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301489 qdf_mem_copy(
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001490 (uint8_t *) &wm_status_change_ntf->statusChangeInfo,
1491 (uint8_t *) status_change_info, info_len);
1492 }
1493 lim_log(mac_ctx, LOGE,
1494 FL("**---** StatusChg: code 0x%x, length %d **---**"),
1495 status_change_code, info_len);
1496 break;
1497 }
1498
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301499 MTRACE(mac_trace(mac_ctx, TRACE_CODE_TX_SME_MSG, session_id, msg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001500 if (eSIR_SUCCESS != lim_sys_process_mmh_msg_api(mac_ctx, &msg, ePROT)) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301501 qdf_mem_free(wm_status_change_ntf);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001502 lim_log(mac_ctx, LOGP,
1503 FL("lim_sys_process_mmh_msg_api failed"));
1504 }
1505
1506} /*** end lim_send_sme_wm_status_change_ntf() ***/
1507
1508/**
1509 * lim_send_sme_set_context_rsp()
1510 *
1511 ***FUNCTION:
1512 * This function is called by limProcessSmeMessages() to send
1513 * eWNI_SME_SETCONTEXT_RSP message to host
1514 *
1515 ***PARAMS:
1516 *
1517 ***LOGIC:
1518 *
1519 ***ASSUMPTIONS:
1520 * NA
1521 *
1522 ***NOTE:
1523 *
1524 * @param pMac Pointer to Global MAC structure
1525 * @param peerMacAddr Indicates the peer MAC addr to which
1526 * setContext was performed
1527 * @param aid Indicates the aid corresponding to the peer MAC
1528 * address
1529 * @param resultCode Indicates the result of previously issued
1530 * eWNI_SME_SETCONTEXT_RSP message
1531 *
1532 * @return None
1533 */
1534void
1535lim_send_sme_set_context_rsp(tpAniSirGlobal pMac,
Anurag Chouhan6d760662016-02-20 16:05:43 +05301536 struct qdf_mac_addr peer_macaddr, uint16_t aid,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001537 tSirResultCodes resultCode,
1538 tpPESession psessionEntry, uint8_t smesessionId,
1539 uint16_t smetransactionId)
1540{
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001541 tSirMsgQ mmhMsg;
1542 tSirSmeSetContextRsp *pSirSmeSetContextRsp;
1543
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301544 pSirSmeSetContextRsp = qdf_mem_malloc(sizeof(tSirSmeSetContextRsp));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001545 if (NULL == pSirSmeSetContextRsp) {
1546 /* Log error */
1547 lim_log(pMac, LOGP,
1548 FL
1549 ("call to AllocateMemory failed for SmeSetContextRsp"));
1550
1551 return;
1552 }
1553
1554 pSirSmeSetContextRsp->messageType = eWNI_SME_SETCONTEXT_RSP;
1555 pSirSmeSetContextRsp->length = sizeof(tSirSmeSetContextRsp);
1556 pSirSmeSetContextRsp->statusCode = resultCode;
1557
Anurag Chouhanc5548422016-02-24 18:33:27 +05301558 qdf_copy_macaddr(&pSirSmeSetContextRsp->peer_macaddr, &peer_macaddr);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001559
1560 /* Update SME session and transaction Id */
1561 pSirSmeSetContextRsp->sessionId = smesessionId;
1562 pSirSmeSetContextRsp->transactionId = smetransactionId;
1563
1564 mmhMsg.type = eWNI_SME_SETCONTEXT_RSP;
1565 mmhMsg.bodyptr = pSirSmeSetContextRsp;
1566 mmhMsg.bodyval = 0;
1567 if (NULL == psessionEntry) {
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301568 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG,
1569 NO_SESSION, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001570 } else {
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301571 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG,
1572 psessionEntry->peSessionId, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001573 }
1574
1575#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
1576 lim_diag_event_report(pMac, WLAN_PE_DIAG_SETCONTEXT_RSP_EVENT,
1577 psessionEntry, (uint16_t) resultCode, 0);
1578#endif /* FEATURE_WLAN_DIAG_SUPPORT */
1579
1580 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
1581} /*** end lim_send_sme_set_context_rsp() ***/
1582
1583/**
1584 * lim_send_sme_neighbor_bss_ind()
1585 *
1586 ***FUNCTION:
1587 * This function is called by lim_lookup_nadd_hash_entry() to send
1588 * eWNI_SME_NEIGHBOR_BSS_IND message to host
1589 *
1590 ***PARAMS:
1591 *
1592 ***LOGIC:
1593 *
1594 ***ASSUMPTIONS:
1595 * NA
1596 *
1597 ***NOTE:
1598 * This function is used for sending eWNI_SME_NEIGHBOR_BSS_IND to
1599 * host upon detecting new BSS during background scanning if CFG
1600 * option is enabled for sending such indication
1601 *
1602 * @param pMac - Pointer to Global MAC structure
1603 * @return None
1604 */
1605
1606void
1607lim_send_sme_neighbor_bss_ind(tpAniSirGlobal pMac, tLimScanResultNode *pBssDescr)
1608{
1609 tSirMsgQ msgQ;
1610 uint32_t val;
1611 tSirSmeNeighborBssInd *pNewBssInd;
1612
1613 if ((pMac->lim.gLimSmeState != eLIM_SME_LINK_EST_WT_SCAN_STATE) ||
1614 ((pMac->lim.gLimSmeState == eLIM_SME_LINK_EST_WT_SCAN_STATE) &&
1615 pMac->lim.gLimRspReqd)) {
1616 /* LIM is not in background scan state OR */
1617 /* current scan is initiated by HDD. */
1618 /* No need to send new BSS indication to HDD */
1619 return;
1620 }
1621
1622 if (wlan_cfg_get_int(pMac, WNI_CFG_NEW_BSS_FOUND_IND, &val) !=
1623 eSIR_SUCCESS) {
1624 lim_log(pMac, LOGP,
1625 FL("could not get NEIGHBOR_BSS_IND from CFG"));
1626
1627 return;
1628 }
1629
1630 if (val == 0)
1631 return;
1632
1633 /**
1634 * Need to indicate new BSSs found during
1635 * background scanning to host.
1636 * Allocate buffer for sending indication.
1637 * Length of buffer is length of BSS description
1638 * and length of header itself
1639 */
1640 val = pBssDescr->bssDescription.length + sizeof(uint16_t) +
1641 sizeof(uint32_t) + sizeof(uint8_t);
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301642 pNewBssInd = qdf_mem_malloc(val);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001643 if (NULL == pNewBssInd) {
1644 /* Log error */
1645 lim_log(pMac, LOGP,
1646 FL
1647 ("call to AllocateMemory failed for eWNI_SME_NEIGHBOR_BSS_IND"));
1648
1649 return;
1650 }
1651
1652 pNewBssInd->messageType = eWNI_SME_NEIGHBOR_BSS_IND;
1653 pNewBssInd->length = (uint16_t) val;
1654 pNewBssInd->sessionId = 0;
1655
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301656 qdf_mem_copy((uint8_t *) pNewBssInd->bssDescription,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001657 (uint8_t *) &pBssDescr->bssDescription,
1658 pBssDescr->bssDescription.length + sizeof(uint16_t));
1659
1660 msgQ.type = eWNI_SME_NEIGHBOR_BSS_IND;
1661 msgQ.bodyptr = pNewBssInd;
1662 msgQ.bodyval = 0;
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301663 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG, NO_SESSION, msgQ.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001664 lim_sys_process_mmh_msg_api(pMac, &msgQ, ePROT);
1665} /*** end lim_send_sme_neighbor_bss_ind() ***/
1666
1667/** -----------------------------------------------------------------
1668 \brief lim_send_sme_addts_rsp() - sends SME ADDTS RSP
1669 \ This function sends a eWNI_SME_ADDTS_RSP to SME.
1670 \ SME only looks at rc and tspec field.
1671 \param pMac - global mac structure
1672 \param rspReqd - is SmeAddTsRsp required
1673 \param status - status code of SME_ADD_TS_RSP
1674 \return tspec
1675 \sa
1676 ----------------------------------------------------------------- */
1677void
1678lim_send_sme_addts_rsp(tpAniSirGlobal pMac, uint8_t rspReqd, uint32_t status,
1679 tpPESession psessionEntry, tSirMacTspecIE tspec,
1680 uint8_t smesessionId, uint16_t smetransactionId)
1681{
1682 tpSirAddtsRsp rsp;
1683 tSirMsgQ mmhMsg;
1684
1685 if (!rspReqd)
1686 return;
1687
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301688 rsp = qdf_mem_malloc(sizeof(tSirAddtsRsp));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001689 if (NULL == rsp) {
1690 lim_log(pMac, LOGP, FL("AllocateMemory failed for ADDTS_RSP"));
1691 return;
1692 }
1693
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301694 qdf_mem_set((uint8_t *) rsp, sizeof(*rsp), 0);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001695 rsp->messageType = eWNI_SME_ADDTS_RSP;
1696 rsp->rc = status;
1697 rsp->rsp.status = (enum eSirMacStatusCodes)status;
1698 rsp->rsp.tspec = tspec;
1699 /* Update SME session Id and transcation Id */
1700 rsp->sessionId = smesessionId;
1701 rsp->transactionId = smetransactionId;
1702
1703 mmhMsg.type = eWNI_SME_ADDTS_RSP;
1704 mmhMsg.bodyptr = rsp;
1705 mmhMsg.bodyval = 0;
1706 if (NULL == psessionEntry) {
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301707 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG,
1708 NO_SESSION, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001709 } else {
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301710 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG,
1711 psessionEntry->peSessionId, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001712 }
1713#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
1714 lim_diag_event_report(pMac, WLAN_PE_DIAG_ADDTS_RSP_EVENT, psessionEntry, 0,
1715 0);
1716#endif /* FEATURE_WLAN_DIAG_SUPPORT */
1717
1718 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
1719 return;
1720}
1721
1722void
1723lim_send_sme_delts_rsp(tpAniSirGlobal pMac, tpSirDeltsReq delts, uint32_t status,
1724 tpPESession psessionEntry, uint8_t smesessionId,
1725 uint16_t smetransactionId)
1726{
1727 tpSirDeltsRsp rsp;
1728 tSirMsgQ mmhMsg;
1729
1730 lim_log(pMac, LOGW, "SendSmeDeltsRsp (aid %d, tsid %d, up %d) status %d",
1731 delts->aid,
1732 delts->req.tsinfo.traffic.tsid,
1733 delts->req.tsinfo.traffic.userPrio, status);
1734 if (!delts->rspReqd)
1735 return;
1736
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301737 rsp = qdf_mem_malloc(sizeof(tSirDeltsRsp));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001738 if (NULL == rsp) {
1739 /* Log error */
1740 lim_log(pMac, LOGP, FL("AllocateMemory failed for DELTS_RSP"));
1741 return;
1742 }
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301743 qdf_mem_set((uint8_t *) rsp, sizeof(*rsp), 0);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001744
1745 if (psessionEntry != NULL) {
1746
1747 rsp->aid = delts->aid;
Anurag Chouhanc5548422016-02-24 18:33:27 +05301748 qdf_copy_macaddr(&rsp->macaddr, &delts->macaddr);
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301749 qdf_mem_copy((uint8_t *) &rsp->rsp, (uint8_t *) &delts->req,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001750 sizeof(tSirDeltsReqInfo));
1751 }
1752
1753 rsp->messageType = eWNI_SME_DELTS_RSP;
1754 rsp->rc = status;
1755
1756 /* Update SME session Id and transcation Id */
1757 rsp->sessionId = smesessionId;
1758 rsp->transactionId = smetransactionId;
1759
1760 mmhMsg.type = eWNI_SME_DELTS_RSP;
1761 mmhMsg.bodyptr = rsp;
1762 mmhMsg.bodyval = 0;
1763 if (NULL == psessionEntry) {
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301764 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG,
1765 NO_SESSION, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001766 } else {
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301767 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG,
1768 psessionEntry->peSessionId, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001769 }
1770#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
1771 lim_diag_event_report(pMac, WLAN_PE_DIAG_DELTS_RSP_EVENT, psessionEntry,
1772 (uint16_t) status, 0);
1773#endif /* FEATURE_WLAN_DIAG_SUPPORT */
1774
1775 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
1776}
1777
1778void
1779lim_send_sme_delts_ind(tpAniSirGlobal pMac, tpSirDeltsReqInfo delts, uint16_t aid,
1780 tpPESession psessionEntry)
1781{
1782 tpSirDeltsRsp rsp;
1783 tSirMsgQ mmhMsg;
1784
1785 lim_log(pMac, LOGW, "SendSmeDeltsInd (aid %d, tsid %d, up %d)",
1786 aid, delts->tsinfo.traffic.tsid, delts->tsinfo.traffic.userPrio);
1787
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301788 rsp = qdf_mem_malloc(sizeof(tSirDeltsRsp));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001789 if (NULL == rsp) {
1790 /* Log error */
1791 lim_log(pMac, LOGP, FL("AllocateMemory failed for DELTS_IND"));
1792 return;
1793 }
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301794 qdf_mem_set((uint8_t *) rsp, sizeof(*rsp), 0);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001795
1796 rsp->messageType = eWNI_SME_DELTS_IND;
1797 rsp->rc = eSIR_SUCCESS;
1798 rsp->aid = aid;
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301799 qdf_mem_copy((uint8_t *) &rsp->rsp, (uint8_t *) delts, sizeof(*delts));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001800
1801 /* Update SME session Id and SME transaction Id */
1802
1803 rsp->sessionId = psessionEntry->smeSessionId;
1804 rsp->transactionId = psessionEntry->transactionId;
1805
1806 mmhMsg.type = eWNI_SME_DELTS_IND;
1807 mmhMsg.bodyptr = rsp;
1808 mmhMsg.bodyval = 0;
1809 MTRACE(mac_trace_msg_tx(pMac, psessionEntry->peSessionId, mmhMsg.type));
1810#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
1811 lim_diag_event_report(pMac, WLAN_PE_DIAG_DELTS_IND_EVENT, psessionEntry, 0,
1812 0);
1813#endif /* FEATURE_WLAN_DIAG_SUPPORT */
1814
1815 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
1816}
1817
1818/**
1819 * lim_send_sme_pe_statistics_rsp()
1820 *
1821 ***FUNCTION:
1822 * This function is called to send 802.11 statistics response to HDD.
1823 * This function posts the result back to HDD. This is a response to
1824 * HDD's request for statistics.
1825 *
1826 ***PARAMS:
1827 *
1828 ***LOGIC:
1829 *
1830 ***ASSUMPTIONS:
1831 * NA
1832 *
1833 ***NOTE:
1834 * NA
1835 *
1836 * @param pMac Pointer to Global MAC structure
1837 * @param p80211Stats Statistics sent in response
1838 * @param resultCode TODO:
1839 *
1840 *
1841 * @return none
1842 */
1843
1844void
1845lim_send_sme_pe_statistics_rsp(tpAniSirGlobal pMac, uint16_t msgType, void *stats)
1846{
1847 tSirMsgQ mmhMsg;
1848 uint8_t sessionId;
1849 tAniGetPEStatsRsp *pPeStats = (tAniGetPEStatsRsp *) stats;
1850 tpPESession pPeSessionEntry;
1851
1852 /* Get the Session Id based on Sta Id */
1853 pPeSessionEntry =
1854 pe_find_session_by_sta_id(pMac, pPeStats->staId, &sessionId);
1855
1856 /* Fill the Session Id */
1857 if (NULL != pPeSessionEntry) {
1858 /* Fill the Session Id */
1859 pPeStats->sessionId = pPeSessionEntry->smeSessionId;
1860 }
1861
1862 pPeStats->msgType = eWNI_SME_GET_STATISTICS_RSP;
1863
1864 /* msgType should be WMA_GET_STATISTICS_RSP */
1865 mmhMsg.type = eWNI_SME_GET_STATISTICS_RSP;
1866
1867 mmhMsg.bodyptr = stats;
1868 mmhMsg.bodyval = 0;
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301869 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG, NO_SESSION, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001870 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
1871
1872 return;
1873
1874} /*** end lim_send_sme_pe_statistics_rsp() ***/
1875
Srinivas Girigowda515a9ef2015-12-11 11:00:48 -08001876#ifdef FEATURE_WLAN_ESE
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001877/**
Srinivas Girigowda515a9ef2015-12-11 11:00:48 -08001878 * lim_send_sme_pe_ese_tsm_rsp() - send tsm response
1879 * @pMac: Pointer to global pMac structure
1880 * @pStats: Pointer to TSM Stats
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001881 *
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001882 * This function is called to send tsm stats response to HDD.
1883 * This function posts the result back to HDD. This is a response to
1884 * HDD's request to get tsm stats.
1885 *
Srinivas Girigowda515a9ef2015-12-11 11:00:48 -08001886 * Return: None
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001887 */
Srinivas Girigowda515a9ef2015-12-11 11:00:48 -08001888void lim_send_sme_pe_ese_tsm_rsp(tpAniSirGlobal pMac,
1889 tAniGetTsmStatsRsp *pStats)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001890{
1891 tSirMsgQ mmhMsg;
1892 uint8_t sessionId;
1893 tAniGetTsmStatsRsp *pPeStats = (tAniGetTsmStatsRsp *) pStats;
1894 tpPESession pPeSessionEntry = NULL;
1895
1896 /* Get the Session Id based on Sta Id */
1897 pPeSessionEntry =
1898 pe_find_session_by_sta_id(pMac, pPeStats->staId, &sessionId);
1899
1900 /* Fill the Session Id */
1901 if (NULL != pPeSessionEntry) {
1902 /* Fill the Session Id */
1903 pPeStats->sessionId = pPeSessionEntry->smeSessionId;
1904 } else {
1905 PELOGE(lim_log
Srinivas Girigowda515a9ef2015-12-11 11:00:48 -08001906 (pMac, LOGE, FL("Session not found for the Sta id(%d)"),
1907 pPeStats->staId);)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001908 return;
1909 }
1910
1911 pPeStats->msgType = eWNI_SME_GET_TSM_STATS_RSP;
1912 pPeStats->tsmMetrics.RoamingCount
1913 = pPeSessionEntry->eseContext.tsm.tsmMetrics.RoamingCount;
1914 pPeStats->tsmMetrics.RoamingDly
1915 = pPeSessionEntry->eseContext.tsm.tsmMetrics.RoamingDly;
1916
1917 mmhMsg.type = eWNI_SME_GET_TSM_STATS_RSP;
1918 mmhMsg.bodyptr = pStats;
1919 mmhMsg.bodyval = 0;
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301920 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG, sessionId, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001921 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
1922
1923 return;
1924} /*** end lim_send_sme_pe_ese_tsm_rsp() ***/
1925
Srinivas Girigowda515a9ef2015-12-11 11:00:48 -08001926#endif /* FEATURE_WLAN_ESE */
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001927
1928void
1929lim_send_sme_ibss_peer_ind(tpAniSirGlobal pMac,
1930 tSirMacAddr peerMacAddr,
1931 uint16_t staIndex,
1932 uint8_t ucastIdx,
1933 uint8_t bcastIdx,
1934 uint8_t *beacon,
1935 uint16_t beaconLen, uint16_t msgType, uint8_t sessionId)
1936{
1937 tSirMsgQ mmhMsg;
1938 tSmeIbssPeerInd *pNewPeerInd;
1939
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301940 pNewPeerInd = qdf_mem_malloc(sizeof(tSmeIbssPeerInd) + beaconLen);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001941 if (NULL == pNewPeerInd) {
1942 PELOGE(lim_log(pMac, LOGE, FL("Failed to allocate memory"));)
1943 return;
1944 }
1945
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301946 qdf_mem_set((void *)pNewPeerInd, (sizeof(tSmeIbssPeerInd) + beaconLen),
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001947 0);
1948
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301949 qdf_mem_copy((uint8_t *) pNewPeerInd->peer_addr.bytes,
Anurag Chouhan6d760662016-02-20 16:05:43 +05301950 peerMacAddr, QDF_MAC_ADDR_SIZE);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001951 pNewPeerInd->staId = staIndex;
1952 pNewPeerInd->ucastSig = ucastIdx;
1953 pNewPeerInd->bcastSig = bcastIdx;
1954 pNewPeerInd->mesgLen = sizeof(tSmeIbssPeerInd) + beaconLen;
1955 pNewPeerInd->mesgType = msgType;
1956 pNewPeerInd->sessionId = sessionId;
1957
1958 if (beacon != NULL) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301959 qdf_mem_copy((void *)((uint8_t *) pNewPeerInd +
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001960 sizeof(tSmeIbssPeerInd)), (void *)beacon,
1961 beaconLen);
1962 }
1963
1964 mmhMsg.type = msgType;
1965 mmhMsg.bodyptr = pNewPeerInd;
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301966 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG, sessionId, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001967 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
1968
1969}
1970
1971/**
1972 * lim_handle_csa_offload_msg() - Handle CSA offload message
1973 * @mac_ctx: pointer to global adapter context
1974 * @msg: Message pointer.
1975 *
1976 * Return: None
1977 */
1978void lim_handle_csa_offload_msg(tpAniSirGlobal mac_ctx, tpSirMsgQ msg)
1979{
1980 tpPESession session_entry;
1981 tSirMsgQ mmh_msg;
Chandrasekaran, Manishekar5c19dc52016-02-04 14:58:26 +05301982 struct csa_offload_params *csa_params =
1983 (struct csa_offload_params *) (msg->bodyptr);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001984 tpSmeCsaOffloadInd csa_offload_ind;
1985 tpDphHashNode sta_ds = NULL;
1986 uint8_t session_id;
1987 uint16_t aid = 0;
Gupta, Kapil121bf212015-11-25 19:21:29 +05301988 uint16_t chan_space = 0;
Amar Singhale4f28ee2015-10-21 14:36:56 -07001989 struct ch_params_s ch_params;
Gupta, Kapil121bf212015-11-25 19:21:29 +05301990
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001991 tLimWiderBWChannelSwitchInfo *chnl_switch_info = NULL;
Kiran Kumar Lokere999e58c2016-01-07 02:18:39 -08001992 tLimChannelSwitchInfo *lim_ch_switch = NULL;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001993
Chandrasekaran, Manishekar5c19dc52016-02-04 14:58:26 +05301994 lim_log(mac_ctx, LOG1, FL("handle csa offload msg"));
1995
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001996 if (!csa_params) {
1997 lim_log(mac_ctx, LOGE, FL("limMsgQ body ptr is NULL"));
1998 return;
1999 }
2000
2001 session_entry =
2002 pe_find_session_by_bssid(mac_ctx,
2003 csa_params->bssId, &session_id);
2004 if (!session_entry) {
2005 lim_log(mac_ctx, LOGE,
Chandrasekaran, Manishekar5c19dc52016-02-04 14:58:26 +05302006 FL("Session does not exists for %pM"),
2007 csa_params->bssId);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002008 goto err;
2009 }
2010
2011 sta_ds = dph_lookup_hash_entry(mac_ctx, session_entry->bssId, &aid,
2012 &session_entry->dph.dphHashTable);
2013
2014 if (!sta_ds) {
2015 lim_log(mac_ctx, LOGE,
2016 FL("sta_ds does not exist"));
2017 goto err;
2018 }
2019
2020 if (LIM_IS_STA_ROLE(session_entry)) {
Masti, Narayanraddi1c630442015-11-02 12:03:50 +05302021 /*
2022 * on receiving channel switch announcement from AP, delete all
2023 * TDLS peers before leaving BSS and proceed for channel switch
2024 */
2025 lim_delete_tdls_peers(mac_ctx, session_entry);
2026
Kiran Kumar Lokere999e58c2016-01-07 02:18:39 -08002027 lim_ch_switch = &session_entry->gLimChannelSwitch;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002028 session_entry->gLimChannelSwitch.switchMode =
Chandrasekaran, Manishekar5c19dc52016-02-04 14:58:26 +05302029 csa_params->switch_mode;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002030 /* timer already started by firmware, switch immediately */
2031 session_entry->gLimChannelSwitch.switchCount = 0;
2032 session_entry->gLimChannelSwitch.primaryChannel =
2033 csa_params->channel;
2034 session_entry->gLimChannelSwitch.state =
2035 eLIM_CHANNEL_SWITCH_PRIMARY_ONLY;
2036 session_entry->gLimChannelSwitch.ch_width = CH_WIDTH_20MHZ;
Kiran Kumar Lokere999e58c2016-01-07 02:18:39 -08002037 lim_ch_switch->sec_ch_offset =
2038 session_entry->htSecondaryChannelOffset;
Gupta, Kapil121bf212015-11-25 19:21:29 +05302039 session_entry->gLimChannelSwitch.ch_center_freq_seg0 = 0;
2040 session_entry->gLimChannelSwitch.ch_center_freq_seg1 = 0;
2041 chnl_switch_info =
2042 &session_entry->gLimWiderBWChannelSwitch;
2043
Chandrasekaran, Manishekarce2172e2016-02-18 16:12:43 +05302044 lim_log(mac_ctx, LOG1,
2045 FL("vht:%d ht:%d flag:%x chan:%d seg1:%d seg2:%d width:%d country:%s class:%d"),
2046 session_entry->vhtCapability,
2047 session_entry->htSupportedChannelWidthSet,
2048 csa_params->ies_present_flag,
2049 csa_params->channel, csa_params->new_ch_freq_seg1,
2050 csa_params->new_ch_freq_seg2,
2051 csa_params->new_ch_width,
2052 mac_ctx->scan.countryCodeCurrent,
2053 csa_params->new_op_class);
2054
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002055 if (session_entry->vhtCapability &&
2056 session_entry->htSupportedChannelWidthSet) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002057 if (csa_params->ies_present_flag & lim_wbw_ie_present) {
2058 chnl_switch_info->newChanWidth =
2059 csa_params->new_ch_width;
2060 chnl_switch_info->newCenterChanFreq0 =
2061 csa_params->new_ch_freq_seg1;
2062 chnl_switch_info->newCenterChanFreq1 =
2063 csa_params->new_ch_freq_seg2;
2064 session_entry->gLimChannelSwitch.state =
2065 eLIM_CHANNEL_SWITCH_PRIMARY_AND_SECONDARY;
2066 session_entry->gLimChannelSwitch.ch_width =
2067 csa_params->new_ch_width + 1;
Gupta, Kapil121bf212015-11-25 19:21:29 +05302068 } else if (csa_params->ies_present_flag
2069 & lim_xcsa_ie_present) {
2070 chan_space =
Amar Singhal22995112016-01-22 10:42:33 -08002071 cds_reg_dmn_get_chanwidth_from_opclass(
Gupta, Kapil121bf212015-11-25 19:21:29 +05302072 mac_ctx->scan.countryCodeCurrent,
2073 csa_params->channel,
2074 csa_params->new_op_class);
2075 session_entry->gLimChannelSwitch.state =
2076 eLIM_CHANNEL_SWITCH_PRIMARY_AND_SECONDARY;
2077
2078 if (chan_space == 80) {
2079 chnl_switch_info->newChanWidth =
2080 CH_WIDTH_80MHZ;
2081 } else if (chan_space == 40) {
2082 chnl_switch_info->newChanWidth =
2083 CH_WIDTH_40MHZ;
2084 } else {
2085 chnl_switch_info->newChanWidth =
2086 CH_WIDTH_20MHZ;
Kiran Kumar Lokere999e58c2016-01-07 02:18:39 -08002087 lim_ch_switch->state =
Gupta, Kapil121bf212015-11-25 19:21:29 +05302088 eLIM_CHANNEL_SWITCH_PRIMARY_ONLY;
2089 }
2090
Kiran Kumar Lokere999e58c2016-01-07 02:18:39 -08002091 ch_params.ch_width =
2092 chnl_switch_info->newChanWidth;
Sandeep Puligilla1cc23f62016-04-27 16:52:49 -07002093 cds_set_channel_params(csa_params->channel,
2094 0, &ch_params);
Gupta, Kapil121bf212015-11-25 19:21:29 +05302095 chnl_switch_info->newCenterChanFreq0 =
Kiran Kumar Lokere999e58c2016-01-07 02:18:39 -08002096 ch_params.center_freq_seg0;
Gupta, Kapil121bf212015-11-25 19:21:29 +05302097 /*
2098 * This is not applicable for 20/40/80 MHz.
2099 * Only used when we support 80+80 MHz operation.
2100 * In case of 80+80 MHz, this parameter indicates
2101 * center channel frequency index of 80 MHz
2102 * channel offrequency segment 1.
2103 */
Kiran Kumar Lokere999e58c2016-01-07 02:18:39 -08002104 chnl_switch_info->newCenterChanFreq1 =
2105 ch_params.center_freq_seg1;
2106 lim_ch_switch->sec_ch_offset =
2107 ch_params.sec_ch_offset;
Gupta, Kapil121bf212015-11-25 19:21:29 +05302108
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002109 }
Gupta, Kapil121bf212015-11-25 19:21:29 +05302110 session_entry->gLimChannelSwitch.ch_center_freq_seg0 =
2111 chnl_switch_info->newCenterChanFreq0;
2112 session_entry->gLimChannelSwitch.ch_center_freq_seg1 =
2113 chnl_switch_info->newCenterChanFreq1;
2114 session_entry->gLimChannelSwitch.ch_width =
2115 chnl_switch_info->newChanWidth;
2116
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002117 } else if (session_entry->htSupportedChannelWidthSet) {
Gupta, Kapil121bf212015-11-25 19:21:29 +05302118 if (csa_params->ies_present_flag
2119 & lim_xcsa_ie_present) {
2120 chan_space =
Amar Singhal22995112016-01-22 10:42:33 -08002121 cds_reg_dmn_get_chanwidth_from_opclass(
Gupta, Kapil121bf212015-11-25 19:21:29 +05302122 mac_ctx->scan.countryCodeCurrent,
2123 csa_params->channel,
2124 csa_params->new_op_class);
Kiran Kumar Lokere999e58c2016-01-07 02:18:39 -08002125 lim_ch_switch->state =
Gupta, Kapil121bf212015-11-25 19:21:29 +05302126 eLIM_CHANNEL_SWITCH_PRIMARY_AND_SECONDARY;
2127 if (chan_space == 40) {
Kiran Kumar Lokere999e58c2016-01-07 02:18:39 -08002128 lim_ch_switch->ch_width =
Gupta, Kapil121bf212015-11-25 19:21:29 +05302129 CH_WIDTH_40MHZ;
2130 chnl_switch_info->newChanWidth =
2131 CH_WIDTH_40MHZ;
Kiran Kumar Lokere999e58c2016-01-07 02:18:39 -08002132 ch_params.ch_width =
2133 chnl_switch_info->newChanWidth;
Sandeep Puligilla1cc23f62016-04-27 16:52:49 -07002134 cds_set_channel_params(
2135 csa_params->channel,
2136 0, &ch_params);
Kiran Kumar Lokere999e58c2016-01-07 02:18:39 -08002137 lim_ch_switch->ch_center_freq_seg0 =
2138 ch_params.center_freq_seg0;
2139 lim_ch_switch->sec_ch_offset =
2140 ch_params.sec_ch_offset;
Gupta, Kapil121bf212015-11-25 19:21:29 +05302141 } else {
Kiran Kumar Lokere999e58c2016-01-07 02:18:39 -08002142 lim_ch_switch->ch_width =
Gupta, Kapil121bf212015-11-25 19:21:29 +05302143 CH_WIDTH_20MHZ;
2144 chnl_switch_info->newChanWidth =
2145 CH_WIDTH_40MHZ;
Kiran Kumar Lokere999e58c2016-01-07 02:18:39 -08002146 lim_ch_switch->state =
Gupta, Kapil121bf212015-11-25 19:21:29 +05302147 eLIM_CHANNEL_SWITCH_PRIMARY_ONLY;
Kiran Kumar Lokere999e58c2016-01-07 02:18:39 -08002148 lim_ch_switch->sec_ch_offset =
2149 PHY_SINGLE_CHANNEL_CENTERED;
Gupta, Kapil121bf212015-11-25 19:21:29 +05302150 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002151 } else {
Kiran Kumar Lokere999e58c2016-01-07 02:18:39 -08002152 lim_ch_switch->ch_width =
2153 CH_WIDTH_40MHZ;
2154 lim_ch_switch->state =
2155 eLIM_CHANNEL_SWITCH_PRIMARY_AND_SECONDARY;
2156 ch_params.ch_width = CH_WIDTH_40MHZ;
Sandeep Puligilla1cc23f62016-04-27 16:52:49 -07002157 cds_set_channel_params(csa_params->channel,
2158 0, &ch_params);
Kiran Kumar Lokere999e58c2016-01-07 02:18:39 -08002159 lim_ch_switch->ch_center_freq_seg0 =
2160 ch_params.center_freq_seg0;
2161 lim_ch_switch->sec_ch_offset =
2162 ch_params.sec_ch_offset;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002163 }
Kiran Kumar Lokere999e58c2016-01-07 02:18:39 -08002164
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002165 }
Chandrasekaran, Manishekarce2172e2016-02-18 16:12:43 +05302166 lim_log(mac_ctx, LOG1, FL("new ch width = %d space:%d"),
2167 session_entry->gLimChannelSwitch.ch_width, chan_space);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002168
2169 lim_prepare_for11h_channel_switch(mac_ctx, session_entry);
Anurag Chouhan600c3a02016-03-01 10:33:54 +05302170 csa_offload_ind = qdf_mem_malloc(sizeof(tSmeCsaOffloadInd));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002171 if (NULL == csa_offload_ind) {
2172 lim_log(mac_ctx, LOGE,
2173 FL("memalloc fail eWNI_SME_CSA_OFFLOAD_EVENT"));
2174 goto err;
2175 }
2176
Anurag Chouhan600c3a02016-03-01 10:33:54 +05302177 qdf_mem_set(csa_offload_ind, sizeof(tSmeCsaOffloadInd), 0);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002178 csa_offload_ind->mesgType = eWNI_SME_CSA_OFFLOAD_EVENT;
2179 csa_offload_ind->mesgLen = sizeof(tSmeCsaOffloadInd);
Anurag Chouhan600c3a02016-03-01 10:33:54 +05302180 qdf_mem_copy(csa_offload_ind->bssid.bytes, session_entry->bssId,
Anurag Chouhan6d760662016-02-20 16:05:43 +05302181 QDF_MAC_ADDR_SIZE);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002182 mmh_msg.type = eWNI_SME_CSA_OFFLOAD_EVENT;
2183 mmh_msg.bodyptr = csa_offload_ind;
2184 mmh_msg.bodyval = 0;
2185 lim_log(mac_ctx, LOG1,
Srinivas Girigowdac9148f72015-11-25 12:42:32 -08002186 FL("Sending eWNI_SME_CSA_OFFLOAD_EVENT to SME."));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002187 MTRACE(mac_trace_msg_tx
2188 (mac_ctx, session_entry->peSessionId, mmh_msg.type));
2189#ifdef FEATURE_WLAN_DIAG_SUPPORT
2190 lim_diag_event_report(mac_ctx,
2191 WLAN_PE_DIAG_SWITCH_CHL_IND_EVENT, session_entry,
2192 eSIR_SUCCESS, eSIR_SUCCESS);
2193#endif
2194 lim_sys_process_mmh_msg_api(mac_ctx, &mmh_msg, ePROT);
2195 }
2196
2197err:
Anurag Chouhan600c3a02016-03-01 10:33:54 +05302198 qdf_mem_free(csa_params);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002199}
2200
2201/*--------------------------------------------------------------------------
2202 \brief pe_delete_session() - Handle the Delete BSS Response from HAL.
2203
2204 \param pMac - pointer to global adapter context
2205 \param sessionId - Message pointer.
2206
2207 \sa
2208 --------------------------------------------------------------------------*/
2209
2210void lim_handle_delete_bss_rsp(tpAniSirGlobal pMac, tpSirMsgQ MsgQ)
2211{
2212 tpPESession psessionEntry;
2213 tpDeleteBssParams pDelBss = (tpDeleteBssParams) (MsgQ->bodyptr);
2214
2215 psessionEntry =
2216 pe_find_session_by_session_id(pMac, pDelBss->sessionId);
2217 if (psessionEntry == NULL) {
2218 lim_log(pMac, LOGE,
2219 FL("Session Does not exist for given sessionID %d"),
2220 pDelBss->sessionId);
Naveen Rawat0c81edc2016-06-08 10:08:30 -07002221 qdf_mem_free(MsgQ->bodyptr);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002222 return;
2223 }
Deepak Dhamdhere13983f22016-05-31 19:06:09 -07002224 if (LIM_IS_IBSS_ROLE(psessionEntry))
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002225 lim_ibss_del_bss_rsp(pMac, MsgQ->bodyptr, psessionEntry);
Deepak Dhamdhere13983f22016-05-31 19:06:09 -07002226 else if (LIM_IS_UNKNOWN_ROLE(psessionEntry))
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002227 lim_process_sme_del_bss_rsp(pMac, MsgQ->bodyval, psessionEntry);
Deepak Dhamdhere13983f22016-05-31 19:06:09 -07002228 else if (LIM_IS_NDI_ROLE(psessionEntry))
2229 lim_ndi_del_bss_rsp(pMac, MsgQ->bodyptr, psessionEntry);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002230 else
2231 lim_process_mlm_del_bss_rsp(pMac, MsgQ, psessionEntry);
2232
2233}
2234
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002235/** -----------------------------------------------------------------
2236 \brief lim_send_sme_aggr_qos_rsp() - sends SME FT AGGR QOS RSP
2237 \ This function sends a eWNI_SME_FT_AGGR_QOS_RSP to SME.
2238 \ SME only looks at rc and tspec field.
2239 \param pMac - global mac structure
2240 \param rspReqd - is SmeAddTsRsp required
2241 \param status - status code of eWNI_SME_FT_AGGR_QOS_RSP
2242 \return tspec
2243 \sa
2244 ----------------------------------------------------------------- */
2245void
2246lim_send_sme_aggr_qos_rsp(tpAniSirGlobal pMac, tpSirAggrQosRsp aggrQosRsp,
2247 uint8_t smesessionId)
2248{
2249 tSirMsgQ mmhMsg;
2250
2251 mmhMsg.type = eWNI_SME_FT_AGGR_QOS_RSP;
2252 mmhMsg.bodyptr = aggrQosRsp;
2253 mmhMsg.bodyval = 0;
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05302254 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG,
2255 smesessionId, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002256 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
2257
2258 return;
2259}
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002260
2261void lim_send_sme_max_assoc_exceeded_ntf(tpAniSirGlobal pMac, tSirMacAddr peerMacAddr,
2262 uint8_t smesessionId)
2263{
2264 tSirMsgQ mmhMsg;
2265 tSmeMaxAssocInd *pSmeMaxAssocInd;
2266
Anurag Chouhan600c3a02016-03-01 10:33:54 +05302267 pSmeMaxAssocInd = qdf_mem_malloc(sizeof(tSmeMaxAssocInd));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002268 if (NULL == pSmeMaxAssocInd) {
2269 PELOGE(lim_log(pMac, LOGE, FL("Failed to allocate memory"));)
2270 return;
2271 }
Anurag Chouhan600c3a02016-03-01 10:33:54 +05302272 qdf_mem_set((void *)pSmeMaxAssocInd, sizeof(tSmeMaxAssocInd), 0);
2273 qdf_mem_copy((uint8_t *) pSmeMaxAssocInd->peer_mac.bytes,
Anurag Chouhan6d760662016-02-20 16:05:43 +05302274 (uint8_t *) peerMacAddr, QDF_MAC_ADDR_SIZE);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002275 pSmeMaxAssocInd->mesgType = eWNI_SME_MAX_ASSOC_EXCEEDED;
2276 pSmeMaxAssocInd->mesgLen = sizeof(tSmeMaxAssocInd);
2277 pSmeMaxAssocInd->sessionId = smesessionId;
2278 mmhMsg.type = pSmeMaxAssocInd->mesgType;
2279 mmhMsg.bodyptr = pSmeMaxAssocInd;
2280 PELOG1(lim_log(pMac, LOG1, FL("msgType %s peerMacAddr " MAC_ADDRESS_STR
2281 " sme session id %d"),
2282 "eWNI_SME_MAX_ASSOC_EXCEEDED",
2283 MAC_ADDR_ARRAY(peerMacAddr));
2284 )
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05302285 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG,
2286 smesessionId, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002287 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
2288
2289 return;
2290}
2291
2292/** -----------------------------------------------------------------
2293 \brief lim_send_sme_dfs_event_notify() - sends
2294 eWNI_SME_DFS_RADAR_FOUND
2295 After receiving WMI_PHYERR_EVENTID indication frame from FW, this
2296 function sends a eWNI_SME_DFS_RADAR_FOUND to SME to notify
2297 that a RADAR is found on current operating channel and SAP-
2298 has to move to a new channel.
2299 \param pMac - global mac structure
2300 \param msgType - message type received from lower layer
2301 \param event - event data received from lower layer
2302 \return none
2303 \sa
2304 ----------------------------------------------------------------- */
2305void
2306lim_send_sme_dfs_event_notify(tpAniSirGlobal pMac, uint16_t msgType, void *event)
2307{
2308 tSirMsgQ mmhMsg;
2309 mmhMsg.type = eWNI_SME_DFS_RADAR_FOUND;
2310 mmhMsg.bodyptr = event;
2311 mmhMsg.bodyval = 0;
2312 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
2313 return;
2314}
2315
2316/*--------------------------------------------------------------------------
2317 \brief lim_send_dfs_chan_sw_ie_update()
2318 This timer handler updates the channel switch IE in beacon template
2319
2320 \param pMac - pointer to global adapter context
2321 \return - channel to scan from valid session else zero.
2322 \sa
2323 --------------------------------------------------------------------------*/
2324static void
2325lim_send_dfs_chan_sw_ie_update(tpAniSirGlobal pMac, tpPESession psessionEntry)
2326{
2327
2328 /* Update the beacon template and send to FW */
2329 if (sch_set_fixed_beacon_fields(pMac, psessionEntry) != eSIR_SUCCESS) {
2330 PELOGE(lim_log(pMac, LOGE, FL("Unable to set CSA IE in beacon"));)
2331 return;
2332 }
2333
2334 /* Send update beacon template message */
2335 lim_send_beacon_ind(pMac, psessionEntry);
2336 PELOG1(lim_log(pMac, LOG1,
2337 FL(" Updated CSA IE, IE COUNT = %d"),
2338 psessionEntry->gLimChannelSwitch.switchCount);
2339 )
2340
2341 return;
2342}
2343
2344/** -----------------------------------------------------------------
2345 \brief lim_send_sme_ap_channel_switch_resp() - sends
2346 eWNI_SME_CHANNEL_CHANGE_RSP
2347 After receiving WMA_SWITCH_CHANNEL_RSP indication this
2348 function sends a eWNI_SME_CHANNEL_CHANGE_RSP to SME to notify
2349 that the Channel change has been done to the specified target
2350 channel in the Channel change request
2351 \param pMac - global mac structure
2352 \param psessionEntry - session info
2353 \param pChnlParams - Channel switch params
2354 --------------------------------------------------------------------*/
2355void
2356lim_send_sme_ap_channel_switch_resp(tpAniSirGlobal pMac,
2357 tpPESession psessionEntry,
2358 tpSwitchChannelParams pChnlParams)
2359{
2360 tSirMsgQ mmhMsg;
2361 tpSwitchChannelParams pSmeSwithChnlParams;
2362 uint8_t channelId;
Sandeep Puligilla2111d3c2016-02-03 01:46:15 -08002363 bool is_ch_dfs = false;
Kiran Kumar Lokere13644672016-02-29 15:40:10 -08002364 enum phy_ch_width ch_width;
Sandeep Puligilla2111d3c2016-02-03 01:46:15 -08002365 uint8_t ch_center_freq_seg1;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002366
2367 pSmeSwithChnlParams = (tSwitchChannelParams *)
Anurag Chouhan600c3a02016-03-01 10:33:54 +05302368 qdf_mem_malloc(sizeof(tSwitchChannelParams));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002369 if (NULL == pSmeSwithChnlParams) {
2370 lim_log(pMac, LOGP,
2371 FL("AllocateMemory failed for pSmeSwithChnlParams\n"));
2372 return;
2373 }
2374
Anurag Chouhan600c3a02016-03-01 10:33:54 +05302375 qdf_mem_set((void *)pSmeSwithChnlParams,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002376 sizeof(tSwitchChannelParams), 0);
2377
Anurag Chouhan600c3a02016-03-01 10:33:54 +05302378 qdf_mem_copy(pSmeSwithChnlParams, pChnlParams,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002379 sizeof(tSwitchChannelParams));
2380
2381 channelId = pSmeSwithChnlParams->channelNumber;
Sandeep Puligilla2111d3c2016-02-03 01:46:15 -08002382 ch_width = pSmeSwithChnlParams->ch_width;
2383 ch_center_freq_seg1 = pSmeSwithChnlParams->ch_center_freq_seg1;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002384
2385 /*
2386 * Pass the sme sessionID to SME instead
2387 * PE session ID.
2388 */
2389 pSmeSwithChnlParams->peSessionId = psessionEntry->smeSessionId;
2390
2391 mmhMsg.type = eWNI_SME_CHANNEL_CHANGE_RSP;
2392 mmhMsg.bodyptr = (void *)pSmeSwithChnlParams;
2393 mmhMsg.bodyval = 0;
2394 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
2395
2396 /*
2397 * We should start beacon transmission only if the new
2398 * channel after channel change is Non-DFS. For a DFS
2399 * channel, PE will receive an explicit request from
2400 * upper layers to start the beacon transmission .
2401 */
2402
Sandeep Puligilla2111d3c2016-02-03 01:46:15 -08002403 if (ch_width == CH_WIDTH_160MHZ) {
2404 is_ch_dfs = true;
2405 } else if (ch_width == CH_WIDTH_80P80MHZ) {
2406 if (cds_get_channel_state(channelId) == CHANNEL_STATE_DFS ||
2407 cds_get_channel_state(ch_center_freq_seg1 -
2408 SIR_80MHZ_START_CENTER_CH_DIFF) ==
2409 CHANNEL_STATE_DFS)
2410 is_ch_dfs = true;
2411 } else {
2412 if (cds_get_channel_state(channelId) == CHANNEL_STATE_DFS)
2413 is_ch_dfs = true;
2414 }
2415
2416 if (!is_ch_dfs) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002417 if (channelId == psessionEntry->currentOperChannel) {
2418 lim_apply_configuration(pMac, psessionEntry);
2419 lim_send_beacon_ind(pMac, psessionEntry);
2420 } else {
2421 PELOG1(lim_log(pMac, LOG1,
2422 FL
2423 ("Failed to Transmit Beacons on channel = %d"
2424 "after AP channel change response"),
2425 psessionEntry->bcnLen);
2426 )
2427 }
2428 }
2429 return;
2430}
2431
2432/** -----------------------------------------------------------------
2433 \brief lim_process_beacon_tx_success_ind() - This function is used
2434 explicitely to handle successful beacon transmission indication
2435 from the FW. This is a generic event generated by the FW afer the
2436 first beacon is sent out after the beacon template update by the
2437 host
2438 \param pMac - global mac structure
2439 \param psessionEntry - session info
2440 \return none
2441 \sa
2442 ----------------------------------------------------------------- */
2443void
2444lim_process_beacon_tx_success_ind(tpAniSirGlobal pMac, uint16_t msgType, void *event)
2445{
2446 /* Currently, this event is used only for DFS channel switch announcement
2447 * IE update in the template. If required to be used for other IE updates
2448 * add appropriate code by introducing a state variable
2449 */
2450 tpPESession psessionEntry;
2451 tSirMsgQ mmhMsg;
2452 tSirSmeCSAIeTxCompleteRsp *pChanSwTxResponse;
2453 struct sir_beacon_tx_complete_rsp *beacon_tx_comp_rsp_ptr;
2454 uint8_t length = sizeof(tSirSmeCSAIeTxCompleteRsp);
2455 tpSirFirstBeaconTxCompleteInd pBcnTxInd =
2456 (tSirFirstBeaconTxCompleteInd *) event;
2457
2458 psessionEntry = pe_find_session_by_bss_idx(pMac, pBcnTxInd->bssIdx);
2459 if (psessionEntry == NULL) {
2460 lim_log(pMac, LOGE,
2461 FL("Session Does not exist for given sessionID"));
2462 return;
2463 }
2464
Chandrasekaran, Manishekarce2172e2016-02-18 16:12:43 +05302465 lim_log(pMac, LOG1, FL("role:%d swIe:%d opIe:%d"),
2466 GET_LIM_SYSTEM_ROLE(psessionEntry),
2467 psessionEntry->dfsIncludeChanSwIe,
2468 psessionEntry->gLimOperatingMode.present);
2469
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002470 if (LIM_IS_AP_ROLE(psessionEntry) &&
2471 true == psessionEntry->dfsIncludeChanSwIe) {
2472 /* Send only 5 beacons with CSA IE Set in when a radar is detected */
2473 if (psessionEntry->gLimChannelSwitch.switchCount > 0) {
2474 /*
2475 * Send the next beacon with updated CSA IE count
2476 */
2477 lim_send_dfs_chan_sw_ie_update(pMac, psessionEntry);
2478 /* Decrement the IE count */
2479 psessionEntry->gLimChannelSwitch.switchCount--;
2480 } else {
2481 /* Done with CSA IE update, send response back to SME */
2482 psessionEntry->gLimChannelSwitch.switchCount = 0;
2483 if (pMac->sap.SapDfsInfo.disable_dfs_ch_switch == false)
2484 psessionEntry->gLimChannelSwitch.switchMode = 0;
2485 psessionEntry->dfsIncludeChanSwIe = false;
2486 psessionEntry->dfsIncludeChanWrapperIe = false;
2487
2488 pChanSwTxResponse = (tSirSmeCSAIeTxCompleteRsp *)
Anurag Chouhan600c3a02016-03-01 10:33:54 +05302489 qdf_mem_malloc(length);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002490
2491 if (NULL == pChanSwTxResponse) {
2492 lim_log(pMac, LOGP,
2493 FL
2494 ("AllocateMemory failed for tSirSmeCSAIeTxCompleteRsp"));
2495 return;
2496 }
2497
Anurag Chouhan600c3a02016-03-01 10:33:54 +05302498 qdf_mem_set((void *)pChanSwTxResponse, length, 0);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002499 pChanSwTxResponse->sessionId =
2500 psessionEntry->smeSessionId;
2501 pChanSwTxResponse->chanSwIeTxStatus =
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05302502 QDF_STATUS_SUCCESS;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002503
2504 mmhMsg.type = eWNI_SME_DFS_CSAIE_TX_COMPLETE_IND;
2505 mmhMsg.bodyptr = pChanSwTxResponse;
2506 mmhMsg.bodyval = 0;
2507 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
2508 }
2509 }
2510
2511 if (LIM_IS_AP_ROLE(psessionEntry) &&
2512 psessionEntry->gLimOperatingMode.present) {
2513 /* Done with nss update, send response back to SME */
2514 psessionEntry->gLimOperatingMode.present = 0;
2515 beacon_tx_comp_rsp_ptr = (struct sir_beacon_tx_complete_rsp *)
Anurag Chouhan600c3a02016-03-01 10:33:54 +05302516 qdf_mem_malloc(sizeof(*beacon_tx_comp_rsp_ptr));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002517 if (NULL == beacon_tx_comp_rsp_ptr) {
2518 lim_log(pMac, LOGP,
2519 FL
2520 ("AllocateMemory failed for beacon_tx_comp_rsp_ptr"));
2521 return;
2522 }
Anurag Chouhan600c3a02016-03-01 10:33:54 +05302523 qdf_mem_set((void *)beacon_tx_comp_rsp_ptr,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002524 sizeof(*beacon_tx_comp_rsp_ptr), 0);
2525 beacon_tx_comp_rsp_ptr->session_id =
2526 psessionEntry->smeSessionId;
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05302527 beacon_tx_comp_rsp_ptr->tx_status = QDF_STATUS_SUCCESS;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002528 mmhMsg.type = eWNI_SME_NSS_UPDATE_RSP;
2529 mmhMsg.bodyptr = beacon_tx_comp_rsp_ptr;
2530 mmhMsg.bodyval = 0;
2531 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
2532 }
2533 return;
2534}