blob: 50c44f4f5ed729f7626c8ac37362b0ff235823f8 [file] [log] [blame]
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001/*
Kiran Kumar Lokere47127482017-12-20 18:09:55 -08002 * Copyright (c) 2012-2018 The Linux Foundation. All rights reserved.
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08003 *
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08004 * Permission to use, copy, modify, and/or distribute this software for
5 * any purpose with or without fee is hereby granted, provided that the
6 * above copyright notice and this permission notice appear in all
7 * copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
10 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
11 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
12 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
13 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
14 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
15 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16 * PERFORMANCE OF THIS SOFTWARE.
17 */
18
19/*
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080020 * This file lim_send_sme_rspMessages.cc contains the functions
21 * for sending SME response/notification messages to applications
22 * above MAC software.
23 * Author: Chandra Modumudi
24 * Date: 02/13/02
25 * History:-
26 * Date Modified by Modification Information
27 * --------------------------------------------------------------------
28 */
29
Anurag Chouhan6d760662016-02-20 16:05:43 +053030#include "qdf_types.h"
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080031#include "wni_api.h"
32#include "sir_common.h"
33#include "ani_global.h"
34
35#include "wni_cfg.h"
36#include "sys_def.h"
37#include "cfg_api.h"
38
39#include "sch_api.h"
40#include "utils_api.h"
41#include "lim_utils.h"
42#include "lim_security_utils.h"
43#include "lim_ser_des_utils.h"
44#include "lim_send_sme_rsp_messages.h"
45#include "lim_ibss_peer_mgmt.h"
46#include "lim_session_utils.h"
47#include "lim_types.h"
48#include "sir_api.h"
Naveen Rawat3b6068c2016-04-14 19:01:06 -070049#include "cds_regdomain.h"
Gupta, Kapil121bf212015-11-25 19:21:29 +053050#include "lim_send_messages.h"
Deepak Dhamdhere13983f22016-05-31 19:06:09 -070051#include "nan_datapath.h"
Sandeep Puligilla7e3e3c52016-09-02 17:54:21 -070052#include "lim_assoc_utils.h"
Kiran Kumar Lokerea3de2262017-04-12 12:15:04 -070053#include "wlan_reg_services_api.h"
Naveen Rawat08db88f2017-09-08 15:07:48 -070054#include "wlan_utility.h"
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080055
Kabilan Kannanf56f9d52017-04-05 03:31:34 -070056#include "wlan_tdls_tgt_api.h"
Sridhar Selvaraj0d5d2c72017-08-17 17:30:01 +053057#include "lim_process_fils.h"
Kiran Kumar Lokere05a0658a2018-02-01 21:34:27 -080058#include "wma.h"
Kabilan Kannanf56f9d52017-04-05 03:31:34 -070059
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080060static void lim_handle_join_rsp_status(tpAniSirGlobal mac_ctx,
61 tpPESession session_entry, tSirResultCodes result_code,
62 tpSirSmeJoinRsp sme_join_rsp);
63
64/**
65 * lim_send_sme_rsp() - Send Response to upper layers
66 * @mac_ctx: Pointer to Global MAC structure
67 * @msg_type: Indicates message type
68 * @result_code: Indicates the result of previously issued
69 * eWNI_SME_msg_type_REQ message
70 *
71 * This function is called by lim_process_sme_req_messages() to send
72 * eWNI_SME_START_RSP, eWNI_SME_STOP_BSS_RSP
73 * or eWNI_SME_SWITCH_CHL_RSP messages to applications above MAC
74 * Software.
75 *
76 * Return: None
77 */
78
79void
80lim_send_sme_rsp(tpAniSirGlobal mac_ctx, uint16_t msg_type,
81 tSirResultCodes result_code, uint8_t sme_session_id,
82 uint16_t sme_transaction_id)
83{
Rajeev Kumar37d478b2017-04-17 16:59:28 -070084 struct scheduler_msg msg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080085 tSirSmeRsp *sme_rsp;
86
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +053087 pe_debug("Sending message: %s with reasonCode: %s",
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080088 lim_msg_str(msg_type), lim_result_code_str(result_code));
89
Anurag Chouhan600c3a02016-03-01 10:33:54 +053090 sme_rsp = qdf_mem_malloc(sizeof(tSirSmeRsp));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080091 if (NULL == sme_rsp) {
92 /* Buffer not available. Log error */
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +053093 pe_err("call to AllocateMemory failed for eWNI_SME_*_RSP");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080094 return;
95 }
96
97 sme_rsp->messageType = msg_type;
98 sme_rsp->length = sizeof(tSirSmeRsp);
99 sme_rsp->statusCode = result_code;
100
101 sme_rsp->sessionId = sme_session_id;
102 sme_rsp->transactionId = sme_transaction_id;
103
104 msg.type = msg_type;
105 msg.bodyptr = sme_rsp;
106 msg.bodyval = 0;
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +0530107 MTRACE(mac_trace(mac_ctx, TRACE_CODE_TX_SME_MSG,
108 sme_session_id, msg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800109
110#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
111 switch (msg_type) {
112 case eWNI_SME_STOP_BSS_RSP:
113 lim_diag_event_report(mac_ctx, WLAN_PE_DIAG_STOP_BSS_RSP_EVENT,
114 NULL, (uint16_t) result_code, 0);
115 break;
116 }
117#endif /* FEATURE_WLAN_DIAG_SUPPORT */
118 lim_sys_process_mmh_msg_api(mac_ctx, &msg, ePROT);
119}
120
121
122
123/**
124 * lim_send_sme_roc_rsp() - Send Response to SME
125 * @mac_ctx: Pointer to Global MAC structure
126 * @status: Resume link status
127 * @result_code: Result of the ROC request
128 * @sme_session_id: SME sesson Id
129 * @scan_id: Scan Identifier
130 *
131 * This function is called to send ROC rsp
132 * message to SME.
133 *
134 * Return: None
135 */
136void
137lim_send_sme_roc_rsp(tpAniSirGlobal mac_ctx, uint16_t msg_type,
138 tSirResultCodes result_code, uint8_t sme_session_id,
139 uint32_t scan_id)
140{
Rajeev Kumar37d478b2017-04-17 16:59:28 -0700141 struct scheduler_msg msg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800142 struct sir_roc_rsp *sme_rsp;
143
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530144 pe_debug("Sending message: %s with reasonCode: %s scanId: %d",
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800145 lim_msg_str(msg_type), lim_result_code_str(result_code),
146 scan_id);
147
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530148 sme_rsp = qdf_mem_malloc(sizeof(struct sir_roc_rsp));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800149 if (NULL == sme_rsp) {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530150 pe_err("call to AllocateMemory failed for eWNI_SME_*_RSP");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800151 return;
152 }
153
154 sme_rsp->message_type = msg_type;
155 sme_rsp->length = sizeof(struct sir_roc_rsp);
156 sme_rsp->status = result_code;
157
158 sme_rsp->session_id = sme_session_id;
159 sme_rsp->scan_id = scan_id;
160
161 msg.type = msg_type;
162 msg.bodyptr = sme_rsp;
163 msg.bodyval = 0;
164 MTRACE(mac_trace_msg_tx(mac_ctx, sme_session_id, msg.type));
165 lim_sys_process_mmh_msg_api(mac_ctx, &msg, ePROT);
166}
167
168
169/**
Kanchanapally, Vidyullathae3062812015-05-22 17:28:57 +0530170 * lim_get_max_rate_flags() - Get rate flags
171 * @mac_ctx: Pointer to global MAC structure
172 * @sta_ds: Pointer to station ds structure
173 *
174 * This function is called to get the rate flags for a connection
175 * from the station ds structure depending on the ht and the vht
176 * channel width supported.
177 *
178 * Return: Returns the populated rate_flags
179 */
180uint32_t lim_get_max_rate_flags(tpAniSirGlobal mac_ctx, tpDphHashNode sta_ds)
181{
182 uint32_t rate_flags = 0;
183
184 if (sta_ds == NULL) {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530185 pe_err("sta_ds is NULL");
Kanchanapally, Vidyullathae3062812015-05-22 17:28:57 +0530186 return rate_flags;
187 }
188
189 if (!sta_ds->mlmStaContext.htCapability &&
190 !sta_ds->mlmStaContext.vhtCapability) {
Naveen Rawatea1564b2018-05-17 15:56:11 -0700191 rate_flags |= TX_RATE_LEGACY;
Kanchanapally, Vidyullathae3062812015-05-22 17:28:57 +0530192 } else {
193 if (sta_ds->mlmStaContext.vhtCapability) {
194 if (WNI_CFG_VHT_CHANNEL_WIDTH_80MHZ ==
195 sta_ds->vhtSupportedChannelWidthSet) {
Naveen Rawatea1564b2018-05-17 15:56:11 -0700196 rate_flags |= TX_RATE_VHT80;
Kanchanapally, Vidyullathae3062812015-05-22 17:28:57 +0530197 } else if (WNI_CFG_VHT_CHANNEL_WIDTH_20_40MHZ ==
198 sta_ds->vhtSupportedChannelWidthSet) {
199 if (sta_ds->htSupportedChannelWidthSet)
Naveen Rawatea1564b2018-05-17 15:56:11 -0700200 rate_flags |= TX_RATE_VHT40;
Kanchanapally, Vidyullathae3062812015-05-22 17:28:57 +0530201 else
Naveen Rawatea1564b2018-05-17 15:56:11 -0700202 rate_flags |= TX_RATE_VHT20;
Kanchanapally, Vidyullathae3062812015-05-22 17:28:57 +0530203 }
204 } else if (sta_ds->mlmStaContext.htCapability) {
205 if (sta_ds->htSupportedChannelWidthSet)
Naveen Rawatea1564b2018-05-17 15:56:11 -0700206 rate_flags |= TX_RATE_HT40;
Kanchanapally, Vidyullathae3062812015-05-22 17:28:57 +0530207 else
Naveen Rawatea1564b2018-05-17 15:56:11 -0700208 rate_flags |= TX_RATE_HT20;
Kanchanapally, Vidyullathae3062812015-05-22 17:28:57 +0530209 }
210 }
211
212 if (sta_ds->htShortGI20Mhz || sta_ds->htShortGI40Mhz)
Naveen Rawatea1564b2018-05-17 15:56:11 -0700213 rate_flags |= TX_RATE_SGI;
Kanchanapally, Vidyullathae3062812015-05-22 17:28:57 +0530214
215 return rate_flags;
216}
217
218/**
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800219 * lim_send_sme_join_reassoc_rsp_after_resume() - Send Response to SME
220 * @mac_ctx Pointer to Global MAC structure
221 * @status Resume link status
222 * @ctx context passed while calling resmune link.
223 * (join response to be sent)
224 *
225 * This function is called to send Join/Reassoc rsp
226 * message to SME after the resume link.
227 *
228 * Return: None
229 */
230static void lim_send_sme_join_reassoc_rsp_after_resume(tpAniSirGlobal mac_ctx,
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530231 QDF_STATUS status, uint32_t *ctx)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800232{
Rajeev Kumar37d478b2017-04-17 16:59:28 -0700233 struct scheduler_msg msg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800234 tpSirSmeJoinRsp sme_join_rsp = (tpSirSmeJoinRsp) ctx;
235
236 msg.type = sme_join_rsp->messageType;
237 msg.bodyptr = sme_join_rsp;
238 msg.bodyval = 0;
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +0530239 MTRACE(mac_trace(mac_ctx, TRACE_CODE_TX_SME_MSG, NO_SESSION, msg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800240 lim_sys_process_mmh_msg_api(mac_ctx, &msg, ePROT);
241}
242
243/**
244 * lim_handle_join_rsp_status() - Handle the response.
245 * @mac_ctx: Pointer to Global MAC structure
246 * @session_entry: PE Session Info
247 * @result_code: Indicates the result of previously issued
248 * eWNI_SME_msgType_REQ message
249 * @sme_join_rsp The received response.
250 *
251 * This function will handle both the success and failure status
252 * of the received response.
253 *
254 * Return: None
255 */
256static void lim_handle_join_rsp_status(tpAniSirGlobal mac_ctx,
257 tpPESession session_entry, tSirResultCodes result_code,
258 tpSirSmeJoinRsp sme_join_rsp)
259{
Naveen Rawatc4a0e662017-05-19 08:06:57 -0700260 uint16_t bss_ie_len;
261 void *bss_ies;
262 bool is_vendor_ap_1_present;
Wu Gao2968fc92017-06-19 19:18:34 +0800263 tpSirSmeJoinReq join_reassoc_req = NULL;
Naveen Rawatc4a0e662017-05-19 08:06:57 -0700264
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800265#ifdef FEATURE_WLAN_MCC_TO_SCC_SWITCH
266 tSirSmeHTProfile *ht_profile;
267#endif
268 if (result_code == eSIR_SME_SUCCESS) {
269 if (session_entry->beacon != NULL) {
270 sme_join_rsp->beaconLength = session_entry->bcnLen;
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530271 qdf_mem_copy(sme_join_rsp->frames,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800272 session_entry->beacon,
273 sme_join_rsp->beaconLength);
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530274 qdf_mem_free(session_entry->beacon);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800275 session_entry->beacon = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530276 session_entry->bcnLen = 0;
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530277 pe_debug("Beacon: %d",
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530278 sme_join_rsp->beaconLength);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800279 }
280 if (session_entry->assocReq != NULL) {
281 sme_join_rsp->assocReqLength =
282 session_entry->assocReqLen;
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530283 qdf_mem_copy(sme_join_rsp->frames +
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530284 sme_join_rsp->beaconLength,
285 session_entry->assocReq,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800286 sme_join_rsp->assocReqLength);
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530287 qdf_mem_free(session_entry->assocReq);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800288 session_entry->assocReq = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530289 session_entry->assocReqLen = 0;
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530290 pe_debug("AssocReq: %d",
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530291 sme_join_rsp->assocReqLength);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800292 }
293 if (session_entry->assocRsp != NULL) {
294 sme_join_rsp->assocRspLength =
295 session_entry->assocRspLen;
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530296 qdf_mem_copy(sme_join_rsp->frames +
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530297 sme_join_rsp->beaconLength +
298 sme_join_rsp->assocReqLength,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800299 session_entry->assocRsp,
300 sme_join_rsp->assocRspLength);
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530301 qdf_mem_free(session_entry->assocRsp);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800302 session_entry->assocRsp = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530303 session_entry->assocRspLen = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800304 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800305 if (session_entry->ricData != NULL) {
306 sme_join_rsp->parsedRicRspLen =
307 session_entry->RICDataLen;
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530308 qdf_mem_copy(sme_join_rsp->frames +
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530309 sme_join_rsp->beaconLength +
310 sme_join_rsp->assocReqLength +
311 sme_join_rsp->assocRspLength,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800312 session_entry->ricData,
313 sme_join_rsp->parsedRicRspLen);
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530314 qdf_mem_free(session_entry->ricData);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800315 session_entry->ricData = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530316 session_entry->RICDataLen = 0;
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530317 pe_debug("RicLength: %d",
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800318 sme_join_rsp->parsedRicRspLen);
319 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800320#ifdef FEATURE_WLAN_ESE
321 if (session_entry->tspecIes != NULL) {
322 sme_join_rsp->tspecIeLen =
323 session_entry->tspecLen;
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530324 qdf_mem_copy(sme_join_rsp->frames +
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530325 sme_join_rsp->beaconLength +
326 sme_join_rsp->assocReqLength +
327 sme_join_rsp->assocRspLength +
328 sme_join_rsp->parsedRicRspLen,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800329 session_entry->tspecIes,
330 sme_join_rsp->tspecIeLen);
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530331 qdf_mem_free(session_entry->tspecIes);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800332 session_entry->tspecIes = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530333 session_entry->tspecLen = 0;
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530334 pe_debug("ESE-TspecLen: %d",
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530335 sme_join_rsp->tspecIeLen);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800336 }
337#endif
338 sme_join_rsp->aid = session_entry->limAID;
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530339 pe_debug("AssocRsp: %d",
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530340 sme_join_rsp->assocRspLength);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800341 sme_join_rsp->vht_channel_width =
342 session_entry->ch_width;
343#ifdef FEATURE_WLAN_MCC_TO_SCC_SWITCH
344 if (session_entry->cc_switch_mode !=
Anurag Chouhanf04e84f2016-03-03 10:12:12 +0530345 QDF_MCC_TO_SCC_SWITCH_DISABLE) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800346 ht_profile = &sme_join_rsp->HTProfile;
347 ht_profile->htSupportedChannelWidthSet =
348 session_entry->htSupportedChannelWidthSet;
349 ht_profile->htRecommendedTxWidthSet =
350 session_entry->htRecommendedTxWidthSet;
351 ht_profile->htSecondaryChannelOffset =
352 session_entry->htSecondaryChannelOffset;
353 ht_profile->dot11mode = session_entry->dot11mode;
354 ht_profile->htCapability = session_entry->htCapability;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800355 ht_profile->vhtCapability =
356 session_entry->vhtCapability;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800357 ht_profile->apCenterChan = session_entry->ch_center_freq_seg0;
358 ht_profile->apChanWidth = session_entry->ch_width;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800359 }
360#endif
Jeff Johnson11bd4f32017-09-18 08:15:17 -0700361 pe_debug("pLimJoinReq:%pK, pLimReAssocReq:%pK",
Wu Gao2968fc92017-06-19 19:18:34 +0800362 session_entry->pLimJoinReq,
363 session_entry->pLimReAssocReq);
364
365 if (session_entry->pLimJoinReq)
366 join_reassoc_req = session_entry->pLimJoinReq;
367
368 if (session_entry->pLimReAssocReq)
369 join_reassoc_req = session_entry->pLimReAssocReq;
370
371 if (!join_reassoc_req) {
372 pe_err("both pLimJoinReq and pLimReAssocReq NULL");
373 return;
374 }
375
Naveen Rawatc4a0e662017-05-19 08:06:57 -0700376 bss_ie_len = lim_get_ielen_from_bss_description(
Wu Gao2968fc92017-06-19 19:18:34 +0800377 &join_reassoc_req->bssDescription);
378 bss_ies = &join_reassoc_req->bssDescription.ieFields;
Naveen Rawat08db88f2017-09-08 15:07:48 -0700379 is_vendor_ap_1_present = (wlan_get_vendor_ie_ptr_from_oui(
Naveen Rawatc4a0e662017-05-19 08:06:57 -0700380 SIR_MAC_VENDOR_AP_1_OUI, SIR_MAC_VENDOR_AP_1_OUI_LEN,
381 bss_ies, bss_ie_len) != NULL);
382
383 if (mac_ctx->roam.configParam.is_force_1x1 &&
Krunal Sonie6a1cda2017-09-27 15:23:02 -0700384 is_vendor_ap_1_present && (session_entry->nss == 2) &&
385 (mac_ctx->lteCoexAntShare == 0 ||
386 IS_5G_CH(session_entry->currentOperChannel))) {
Naveen Rawatc4a0e662017-05-19 08:06:57 -0700387 /* SET vdev param */
388 pe_debug("sending SMPS intolrent vdev_param");
389 wma_cli_set_command(session_entry->smeSessionId,
390 (int)WMI_VDEV_PARAM_SMPS_INTOLERANT,
391 1, VDEV_CMD);
392
393 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800394 } else {
395 if (session_entry->beacon != NULL) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530396 qdf_mem_free(session_entry->beacon);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800397 session_entry->beacon = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530398 session_entry->bcnLen = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800399 }
400 if (session_entry->assocReq != NULL) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530401 qdf_mem_free(session_entry->assocReq);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800402 session_entry->assocReq = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530403 session_entry->assocReqLen = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800404 }
405 if (session_entry->assocRsp != NULL) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530406 qdf_mem_free(session_entry->assocRsp);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800407 session_entry->assocRsp = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530408 session_entry->assocRspLen = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800409 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800410 if (session_entry->ricData != NULL) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530411 qdf_mem_free(session_entry->ricData);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800412 session_entry->ricData = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530413 session_entry->RICDataLen = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800414 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800415#ifdef FEATURE_WLAN_ESE
416 if (session_entry->tspecIes != NULL) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530417 qdf_mem_free(session_entry->tspecIes);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800418 session_entry->tspecIes = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530419 session_entry->tspecLen = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800420 }
421#endif
422 }
423}
Anurag Chouhan5de8d172016-07-13 14:44:28 +0530424
425/**
426 * lim_add_bss_info() - copy data from session entry to join rsp
Selvaraj, Sridhare01e0732016-09-13 12:45:22 +0530427 * @sta_ds: Station dph entry
Anurag Chouhan5de8d172016-07-13 14:44:28 +0530428 * @sme_join_rsp: Join response buffer to be filled up
429 *
430 * Return: None
431 */
Jeff Johnson6db011e2016-10-07 07:31:39 -0700432static void lim_add_bss_info(tpDphHashNode sta_ds, tpSirSmeJoinRsp sme_join_rsp)
Anurag Chouhan5de8d172016-07-13 14:44:28 +0530433{
Selvaraj, Sridhare01e0732016-09-13 12:45:22 +0530434 struct parsed_ies *parsed_ies = &sta_ds->parsed_ies;
435
436 if (parsed_ies->hs20vendor_ie.present)
437 sme_join_rsp->hs20vendor_ie = parsed_ies->hs20vendor_ie;
438 if (parsed_ies->vht_caps.present)
439 sme_join_rsp->vht_caps = parsed_ies->vht_caps;
440 if (parsed_ies->ht_caps.present)
441 sme_join_rsp->ht_caps = parsed_ies->ht_caps;
442 if (parsed_ies->ht_operation.present)
443 sme_join_rsp->ht_operation = parsed_ies->ht_operation;
444 if (parsed_ies->vht_operation.present)
445 sme_join_rsp->vht_operation = parsed_ies->vht_operation;
Anurag Chouhan5de8d172016-07-13 14:44:28 +0530446}
447
Sridhar Selvaraj0d5d2c72017-08-17 17:30:01 +0530448#ifdef WLAN_FEATURE_FILS_SK
449static void lim_update_fils_seq_num(tpSirSmeJoinRsp sme_join_rsp,
450 tpPESession session_entry)
451{
452 sme_join_rsp->fils_seq_num =
453 session_entry->fils_info->sequence_number;
454}
455#else
456static inline void lim_update_fils_seq_num(tpSirSmeJoinRsp sme_join_rsp,
457 tpPESession session_entry)
458{}
459#endif
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800460/**
461 * lim_send_sme_join_reassoc_rsp() - Send Response to Upper Layers
462 * @mac_ctx: Pointer to Global MAC structure
463 * @msg_type: Indicates message type
464 * @result_code: Indicates the result of previously issued
465 * eWNI_SME_msgType_REQ message
466 * @prot_status_code: Protocol Status Code
467 * @session_entry: PE Session Info
468 * @sme_session_id: SME Session ID
469 * @sme_transaction_id: SME Transaction ID
470 *
471 * This function is called by lim_process_sme_req_messages() to send
472 * eWNI_SME_JOIN_RSP or eWNI_SME_REASSOC_RSP messages to applications
473 * above MAC Software.
474 *
475 * Return: None
476 */
477
478void
479lim_send_sme_join_reassoc_rsp(tpAniSirGlobal mac_ctx, uint16_t msg_type,
480 tSirResultCodes result_code, uint16_t prot_status_code,
481 tpPESession session_entry, uint8_t sme_session_id,
482 uint16_t sme_transaction_id)
483{
484 tpSirSmeJoinRsp sme_join_rsp;
485 uint32_t rsp_len;
486 tpDphHashNode sta_ds = NULL;
487#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
488 if (msg_type == eWNI_SME_REASSOC_RSP)
489 lim_diag_event_report(mac_ctx, WLAN_PE_DIAG_REASSOC_RSP_EVENT,
490 session_entry, (uint16_t) result_code, 0);
491 else
492 lim_diag_event_report(mac_ctx, WLAN_PE_DIAG_JOIN_RSP_EVENT,
493 session_entry, (uint16_t) result_code, 0);
494#endif /* FEATURE_WLAN_DIAG_SUPPORT */
495
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530496 pe_debug("Sending message: %s with reasonCode: %s",
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800497 lim_msg_str(msg_type), lim_result_code_str(result_code));
498
499 if (session_entry == NULL) {
500 rsp_len = sizeof(tSirSmeJoinRsp);
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530501 sme_join_rsp = qdf_mem_malloc(rsp_len);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800502 if (NULL == sme_join_rsp) {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530503 pe_err("Mem Alloc fail - JOIN/REASSOC_RSP");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800504 return;
505 }
506
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800507 sme_join_rsp->beaconLength = 0;
508 sme_join_rsp->assocReqLength = 0;
509 sme_join_rsp->assocRspLength = 0;
510 } else {
511 rsp_len = session_entry->assocReqLen +
512 session_entry->assocRspLen + session_entry->bcnLen +
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800513 session_entry->RICDataLen +
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800514#ifdef FEATURE_WLAN_ESE
515 session_entry->tspecLen +
516#endif
517 sizeof(tSirSmeJoinRsp) - sizeof(uint8_t);
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530518 sme_join_rsp = qdf_mem_malloc(rsp_len);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800519 if (NULL == sme_join_rsp) {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530520 pe_err("MemAlloc fail - JOIN/REASSOC_RSP");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800521 return;
522 }
Sridhar Selvaraj0d5d2c72017-08-17 17:30:01 +0530523
524 if (lim_is_fils_connection(session_entry)) {
525 sme_join_rsp->is_fils_connection = true;
526 lim_update_fils_seq_num(sme_join_rsp,
527 session_entry);
528 }
529
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800530 if (result_code == eSIR_SME_SUCCESS) {
531 sta_ds = dph_get_hash_entry(mac_ctx,
532 DPH_STA_HASH_INDEX_PEER,
533 &session_entry->dph.dphHashTable);
534 if (sta_ds == NULL) {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530535 pe_err("Get Self Sta Entry fail");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800536 } else {
537 /* Pass the peer's staId */
538 sme_join_rsp->staId = sta_ds->staIndex;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800539 sme_join_rsp->timingMeasCap =
540 sta_ds->timingMeasCap;
541#ifdef FEATURE_WLAN_TDLS
542 sme_join_rsp->tdls_prohibited =
543 session_entry->tdls_prohibited;
544 sme_join_rsp->tdls_chan_swit_prohibited =
545 session_entry->tdls_chan_swit_prohibited;
546#endif
Kanchanapally, Vidyullathae3062812015-05-22 17:28:57 +0530547 sme_join_rsp->nss = sta_ds->nss;
548 sme_join_rsp->max_rate_flags =
549 lim_get_max_rate_flags(mac_ctx, sta_ds);
Selvaraj, Sridhare01e0732016-09-13 12:45:22 +0530550 lim_add_bss_info(sta_ds, sme_join_rsp);
Sridhar Selvaraj0d5d2c72017-08-17 17:30:01 +0530551
552 /* Copy FILS params only for Successful join */
553 populate_fils_connect_params(mac_ctx,
554 session_entry, sme_join_rsp);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800555 }
556 }
Sridhar Selvaraj0d5d2c72017-08-17 17:30:01 +0530557
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800558 sme_join_rsp->beaconLength = 0;
559 sme_join_rsp->assocReqLength = 0;
560 sme_join_rsp->assocRspLength = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800561 sme_join_rsp->parsedRicRspLen = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800562#ifdef FEATURE_WLAN_ESE
563 sme_join_rsp->tspecIeLen = 0;
564#endif
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800565 lim_handle_join_rsp_status(mac_ctx, session_entry, result_code,
566 sme_join_rsp);
Archana Ramachandran20d2e232016-02-11 16:58:40 -0800567
568 /* Send supported NSS 1x1 to SME */
569 sme_join_rsp->supported_nss_1x1 =
570 session_entry->supported_nss_1x1;
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530571 pe_debug("SME Join Rsp is supported NSS 1X1: %d",
Archana Ramachandran20d2e232016-02-11 16:58:40 -0800572 sme_join_rsp->supported_nss_1x1);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800573 }
574
575 sme_join_rsp->messageType = msg_type;
576 sme_join_rsp->length = (uint16_t) rsp_len;
577 sme_join_rsp->statusCode = result_code;
578 sme_join_rsp->protStatusCode = prot_status_code;
579
580 sme_join_rsp->sessionId = sme_session_id;
581 sme_join_rsp->transactionId = sme_transaction_id;
582
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530583 lim_send_sme_join_reassoc_rsp_after_resume(mac_ctx, QDF_STATUS_SUCCESS,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800584 (uint32_t *)sme_join_rsp);
585}
586
587/**
588 * lim_send_sme_start_bss_rsp()
589 *
590 ***FUNCTION:
591 * This function is called to send eWNI_SME_START_BSS_RSP
592 * message to applications above MAC Software.
593 *
594 ***PARAMS:
595 *
596 ***LOGIC:
597 *
598 ***ASSUMPTIONS:
599 * NA
600 *
601 ***NOTE:
602 * NA
603 *
604 * @param pMac Pointer to Global MAC structure
605 * @param msgType Indicates message type
606 * @param resultCode Indicates the result of previously issued
607 * eWNI_SME_msgType_REQ message
608 *
609 * @return None
610 */
611
612void
613lim_send_sme_start_bss_rsp(tpAniSirGlobal pMac,
614 uint16_t msgType, tSirResultCodes resultCode,
615 tpPESession psessionEntry, uint8_t smesessionId,
616 uint16_t smetransactionId)
617{
618
619 uint16_t size = 0;
Rajeev Kumar37d478b2017-04-17 16:59:28 -0700620 struct scheduler_msg mmhMsg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800621 tSirSmeStartBssRsp *pSirSmeRsp;
622 uint16_t ieLen;
623 uint16_t ieOffset, curLen;
624
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530625 pe_debug("Sending message: %s with reasonCode: %s",
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800626 lim_msg_str(msgType), lim_result_code_str(resultCode));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800627
628 size = sizeof(tSirSmeStartBssRsp);
629
630 if (psessionEntry == NULL) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530631 pSirSmeRsp = qdf_mem_malloc(size);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800632 if (NULL == pSirSmeRsp) {
633 /* / Buffer not available. Log error */
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530634 pe_err("call to AllocateMemory failed for eWNI_SME_START_BSS_RSP");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800635 return;
636 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800637 } else {
638 /* subtract size of beaconLength + Mac Hdr + Fixed Fields before SSID */
639 ieOffset = sizeof(tAniBeaconStruct) + SIR_MAC_B_PR_SSID_OFFSET;
640 ieLen = psessionEntry->schBeaconOffsetBegin
641 + psessionEntry->schBeaconOffsetEnd - ieOffset;
642 /* calculate the memory size to allocate */
643 size += ieLen;
644
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530645 pSirSmeRsp = qdf_mem_malloc(size);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800646 if (NULL == pSirSmeRsp) {
647 /* / Buffer not available. Log error */
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530648 pe_err("call to AllocateMemory failed for eWNI_SME_START_BSS_RSP");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800649 return;
650 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800651 size = sizeof(tSirSmeStartBssRsp);
652 if (resultCode == eSIR_SME_SUCCESS) {
653
654 sir_copy_mac_addr(pSirSmeRsp->bssDescription.bssId,
655 psessionEntry->bssId);
656
657 /* Read beacon interval from session */
658 pSirSmeRsp->bssDescription.beaconInterval =
659 (uint16_t) psessionEntry->beaconParams.
660 beaconInterval;
661 pSirSmeRsp->bssType = psessionEntry->bssType;
662
663 if (cfg_get_capability_info
664 (pMac, &pSirSmeRsp->bssDescription.capabilityInfo,
665 psessionEntry)
Jeff Johnson0301ecb2018-06-29 09:36:23 -0700666 != QDF_STATUS_SUCCESS)
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530667 pe_err("could not retrieve Capabilities value");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800668
669 lim_get_phy_mode(pMac,
670 (uint32_t *) &pSirSmeRsp->bssDescription.
671 nwType, psessionEntry);
672
673 pSirSmeRsp->bssDescription.channelId =
674 psessionEntry->currentOperChannel;
675
Deepak Dhamdheree2dd5442016-05-27 15:05:51 -0700676 if (!LIM_IS_NDI_ROLE(psessionEntry)) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800677 curLen = psessionEntry->schBeaconOffsetBegin - ieOffset;
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530678 qdf_mem_copy((uint8_t *) &pSirSmeRsp->bssDescription.
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800679 ieFields,
680 psessionEntry->pSchBeaconFrameBegin +
681 ieOffset, (uint32_t) curLen);
682
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530683 qdf_mem_copy(((uint8_t *) &pSirSmeRsp->bssDescription.
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800684 ieFields) + curLen,
685 psessionEntry->pSchBeaconFrameEnd,
686 (uint32_t) psessionEntry->
687 schBeaconOffsetEnd);
688
Abhishek Singh34a4d862016-10-26 16:01:51 +0530689 pSirSmeRsp->bssDescription.length = (uint16_t)
690 (offsetof(tSirBssDescription, ieFields[0])
691 - sizeof(pSirSmeRsp->bssDescription.length)
692 + ieLen);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800693 /* This is the size of the message, subtracting the size of the pointer to ieFields */
694 size += ieLen - sizeof(uint32_t);
Deepak Dhamdheree2dd5442016-05-27 15:05:51 -0700695 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800696#ifdef FEATURE_WLAN_MCC_TO_SCC_SWITCH
697 if (psessionEntry->cc_switch_mode
Anurag Chouhanf04e84f2016-03-03 10:12:12 +0530698 != QDF_MCC_TO_SCC_SWITCH_DISABLE) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800699 pSirSmeRsp->HTProfile.
700 htSupportedChannelWidthSet =
701 psessionEntry->htSupportedChannelWidthSet;
702 pSirSmeRsp->HTProfile.htRecommendedTxWidthSet =
703 psessionEntry->htRecommendedTxWidthSet;
704 pSirSmeRsp->HTProfile.htSecondaryChannelOffset =
705 psessionEntry->htSecondaryChannelOffset;
706 pSirSmeRsp->HTProfile.dot11mode =
707 psessionEntry->dot11mode;
708 pSirSmeRsp->HTProfile.htCapability =
709 psessionEntry->htCapability;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800710 pSirSmeRsp->HTProfile.vhtCapability =
711 psessionEntry->vhtCapability;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800712 pSirSmeRsp->HTProfile.apCenterChan =
713 psessionEntry->ch_center_freq_seg0;
714 pSirSmeRsp->HTProfile.apChanWidth =
715 psessionEntry->ch_width;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800716 }
717#endif
718 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800719 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800720 pSirSmeRsp->messageType = msgType;
721 pSirSmeRsp->length = size;
722
723 /* Update SME session Id and transaction Id */
724 pSirSmeRsp->sessionId = smesessionId;
725 pSirSmeRsp->transactionId = smetransactionId;
726 pSirSmeRsp->statusCode = resultCode;
727 if (psessionEntry != NULL)
728 pSirSmeRsp->staId = psessionEntry->staId; /* else it will be always zero smeRsp StaID = 0 */
729
730 mmhMsg.type = msgType;
731 mmhMsg.bodyptr = pSirSmeRsp;
732 mmhMsg.bodyval = 0;
733 if (psessionEntry == NULL) {
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +0530734 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG,
735 NO_SESSION, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800736 } else {
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +0530737 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG,
738 psessionEntry->peSessionId, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800739 }
740#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
741 lim_diag_event_report(pMac, WLAN_PE_DIAG_START_BSS_RSP_EVENT,
742 psessionEntry, (uint16_t) resultCode, 0);
743#endif /* FEATURE_WLAN_DIAG_SUPPORT */
744
745 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
746} /*** end lim_send_sme_start_bss_rsp() ***/
747
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800748void lim_send_sme_disassoc_deauth_ntf(tpAniSirGlobal pMac,
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530749 QDF_STATUS status, uint32_t *pCtx)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800750{
Rajeev Kumar37d478b2017-04-17 16:59:28 -0700751 struct scheduler_msg mmhMsg = {0};
Rajeev Kumar416b73f2017-01-21 16:45:21 -0800752 struct scheduler_msg *pMsg = (struct scheduler_msg *) pCtx;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800753
754 mmhMsg.type = pMsg->type;
755 mmhMsg.bodyptr = pMsg;
756 mmhMsg.bodyval = 0;
757
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +0530758 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG, NO_SESSION, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800759
760 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
761}
762
763/**
764 * lim_send_sme_disassoc_ntf()
765 *
766 ***FUNCTION:
767 * This function is called by limProcessSmeMessages() to send
768 * eWNI_SME_DISASSOC_RSP/IND message to host
769 *
770 ***PARAMS:
771 *
772 ***LOGIC:
773 *
774 ***ASSUMPTIONS:
775 * NA
776 *
777 ***NOTE:
778 * This function is used for sending eWNI_SME_DISASSOC_CNF,
779 * or eWNI_SME_DISASSOC_IND to host depending on
780 * disassociation trigger.
781 *
782 * @param peerMacAddr Indicates the peer MAC addr to which
783 * disassociate was initiated
784 * @param reasonCode Indicates the reason for Disassociation
785 * @param disassocTrigger Indicates the trigger for Disassociation
786 * @param aid Indicates the STAID. This parameter is
787 * present only on AP.
788 *
789 * @return None
790 */
791void
792lim_send_sme_disassoc_ntf(tpAniSirGlobal pMac,
793 tSirMacAddr peerMacAddr,
794 tSirResultCodes reasonCode,
795 uint16_t disassocTrigger,
796 uint16_t aid,
797 uint8_t smesessionId,
798 uint16_t smetransactionId, tpPESession psessionEntry)
799{
800
801 uint8_t *pBuf;
802 tSirSmeDisassocRsp *pSirSmeDisassocRsp;
803 tSirSmeDisassocInd *pSirSmeDisassocInd;
Sandeep Puligilla7e3e3c52016-09-02 17:54:21 -0700804 uint32_t *pMsg = NULL;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800805 bool failure = false;
Sandeep Puligilla7e3e3c52016-09-02 17:54:21 -0700806 tpPESession session = NULL;
807 uint16_t i, assoc_id;
808 tpDphHashNode sta_ds = NULL;
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +0530809 QDF_STATUS status;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800810
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530811 pe_debug("Disassoc Ntf with trigger : %d reasonCode: %d",
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800812 disassocTrigger, reasonCode);
813
814 switch (disassocTrigger) {
Sandeep Puligilla7e3e3c52016-09-02 17:54:21 -0700815 case eLIM_DUPLICATE_ENTRY:
816 /*
817 * Duplicate entry is removed at LIM.
818 * Initiate new entry for other session
819 */
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530820 pe_debug("Rcvd eLIM_DUPLICATE_ENTRY for " MAC_ADDRESS_STR,
Sandeep Puligilla7e3e3c52016-09-02 17:54:21 -0700821 MAC_ADDR_ARRAY(peerMacAddr));
822
823 for (i = 0; i < pMac->lim.maxBssId; i++) {
824 if ((&pMac->lim.gpSession[i] != NULL) &&
825 (pMac->lim.gpSession[i].valid) &&
826 (pMac->lim.gpSession[i].pePersona ==
827 QDF_SAP_MODE)) {
828 /* Find the sta ds entry in another session */
829 session = &pMac->lim.gpSession[i];
830 sta_ds = dph_lookup_hash_entry(pMac,
831 peerMacAddr, &assoc_id,
832 &session->dph.dphHashTable);
Abhishek Singh6d6e3d12017-12-04 14:16:00 +0530833 if (sta_ds)
834 break;
Sandeep Puligilla7e3e3c52016-09-02 17:54:21 -0700835 }
836 }
837 if (sta_ds
838#ifdef WLAN_FEATURE_11W
839 && (!sta_ds->rmfEnabled)
840#endif
841 ) {
842 if (lim_add_sta(pMac, sta_ds, false, session) !=
Jeff Johnson0301ecb2018-06-29 09:36:23 -0700843 QDF_STATUS_SUCCESS)
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530844 pe_err("could not Add STA with assocId: %d",
Sandeep Puligilla7e3e3c52016-09-02 17:54:21 -0700845 sta_ds->assocId);
846 }
Pragaspathi Thilagaraj766c76f2018-08-08 16:44:40 +0530847 status = lim_prepare_disconnect_done_ind(pMac, &pMsg,
848 smesessionId,
849 reasonCode,
850 &peerMacAddr[0]);
851 if (!QDF_IS_STATUS_SUCCESS(status)) {
852 pe_err("Failed to prepare message");
853 return;
854 }
Sandeep Puligilla7e3e3c52016-09-02 17:54:21 -0700855 break;
856
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800857 case eLIM_HOST_DISASSOC:
858 /**
859 * Disassociation response due to
860 * host triggered disassociation
861 */
862
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530863 pSirSmeDisassocRsp = qdf_mem_malloc(sizeof(tSirSmeDisassocRsp));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800864 if (NULL == pSirSmeDisassocRsp) {
865 /* Log error */
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530866 pe_err("Memory allocation failed");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800867 failure = true;
868 goto error;
869 }
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530870 pe_debug("send eWNI_SME_DISASSOC_RSP with retCode: %d for " MAC_ADDRESS_STR,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800871 reasonCode, MAC_ADDR_ARRAY(peerMacAddr));
872 pSirSmeDisassocRsp->messageType = eWNI_SME_DISASSOC_RSP;
873 pSirSmeDisassocRsp->length = sizeof(tSirSmeDisassocRsp);
874 /* sessionId */
875 pBuf = (uint8_t *) &pSirSmeDisassocRsp->sessionId;
876 *pBuf = smesessionId;
877 pBuf++;
878
879 /* transactionId */
880 lim_copy_u16(pBuf, smetransactionId);
881 pBuf += sizeof(uint16_t);
882
883 /* statusCode */
884 lim_copy_u32(pBuf, reasonCode);
885 pBuf += sizeof(tSirResultCodes);
886
887 /* peerMacAddr */
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530888 qdf_mem_copy(pBuf, peerMacAddr, sizeof(tSirMacAddr));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800889 pBuf += sizeof(tSirMacAddr);
890
891 /* Clear Station Stats */
892 /* for sta, it is always 1, IBSS is handled at halInitSta */
893
894#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
895
896 lim_diag_event_report(pMac, WLAN_PE_DIAG_DISASSOC_RSP_EVENT,
897 psessionEntry, (uint16_t) reasonCode, 0);
898#endif
899 pMsg = (uint32_t *) pSirSmeDisassocRsp;
900 break;
901
Hanumantha Reddy Pothula3e5d6aa2016-09-08 15:21:54 +0530902 case eLIM_PEER_ENTITY_DISASSOC:
903 case eLIM_LINK_MONITORING_DISASSOC:
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +0530904 status = lim_prepare_disconnect_done_ind(pMac, &pMsg,
905 smesessionId,
906 reasonCode, &peerMacAddr[0]);
907 if (!QDF_IS_STATUS_SUCCESS(status)) {
908 pe_err("Failed to prepare message");
909 return;
910 }
911 break;
Hanumantha Reddy Pothula3e5d6aa2016-09-08 15:21:54 +0530912
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800913 default:
914 /**
915 * Disassociation indication due to Disassociation
916 * frame reception from peer entity or due to
917 * loss of link with peer entity.
918 */
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530919 pSirSmeDisassocInd = qdf_mem_malloc(sizeof(tSirSmeDisassocInd));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800920 if (NULL == pSirSmeDisassocInd) {
921 /* Log error */
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530922 pe_err("Memory allocation failed");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800923 failure = true;
924 goto error;
925 }
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530926 pe_debug("send eWNI_SME_DISASSOC_IND with retCode: %d for " MAC_ADDRESS_STR,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800927 reasonCode, MAC_ADDR_ARRAY(peerMacAddr));
928 pSirSmeDisassocInd->messageType = eWNI_SME_DISASSOC_IND;
929 pSirSmeDisassocInd->length = sizeof(tSirSmeDisassocInd);
930
931 /* Update SME session Id and Transaction Id */
932 pSirSmeDisassocInd->sessionId = smesessionId;
933 pSirSmeDisassocInd->transactionId = smetransactionId;
934 pSirSmeDisassocInd->reasonCode = reasonCode;
935 pBuf = (uint8_t *) &pSirSmeDisassocInd->statusCode;
936
937 lim_copy_u32(pBuf, reasonCode);
938 pBuf += sizeof(tSirResultCodes);
939
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530940 qdf_mem_copy(pBuf, psessionEntry->bssId, sizeof(tSirMacAddr));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800941 pBuf += sizeof(tSirMacAddr);
942
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530943 qdf_mem_copy(pBuf, peerMacAddr, sizeof(tSirMacAddr));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800944
945#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
946 lim_diag_event_report(pMac, WLAN_PE_DIAG_DISASSOC_IND_EVENT,
947 psessionEntry, (uint16_t) reasonCode, 0);
948#endif
949 pMsg = (uint32_t *) pSirSmeDisassocInd;
950
951 break;
952 }
953
954error:
955 /* Delete the PE session Created */
Rajeev Kumarcf835a02016-04-15 15:01:31 -0700956 if ((psessionEntry != NULL) && LIM_IS_STA_ROLE(psessionEntry))
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800957 pe_delete_session(pMac, psessionEntry);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800958
959 if (false == failure)
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530960 lim_send_sme_disassoc_deauth_ntf(pMac, QDF_STATUS_SUCCESS,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800961 (uint32_t *) pMsg);
962} /*** end lim_send_sme_disassoc_ntf() ***/
963
964/** -----------------------------------------------------------------
965 \brief lim_send_sme_disassoc_ind() - sends SME_DISASSOC_IND
966
967 After receiving disassociation frame from peer entity, this
968 function sends a eWNI_SME_DISASSOC_IND to SME with a specific
969 reason code.
970
971 \param pMac - global mac structure
972 \param pStaDs - station dph hash node
973 \return none
974 \sa
975 ----------------------------------------------------------------- */
976void
977lim_send_sme_disassoc_ind(tpAniSirGlobal pMac, tpDphHashNode pStaDs,
978 tpPESession psessionEntry)
979{
Rajeev Kumar37d478b2017-04-17 16:59:28 -0700980 struct scheduler_msg mmhMsg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800981 tSirSmeDisassocInd *pSirSmeDisassocInd;
982
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530983 pSirSmeDisassocInd = qdf_mem_malloc(sizeof(tSirSmeDisassocInd));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800984 if (NULL == pSirSmeDisassocInd) {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530985 pe_err("AllocateMemory failed for eWNI_SME_DISASSOC_IND");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800986 return;
987 }
988
989 pSirSmeDisassocInd->messageType = eWNI_SME_DISASSOC_IND;
990 pSirSmeDisassocInd->length = sizeof(tSirSmeDisassocInd);
991
992 pSirSmeDisassocInd->sessionId = psessionEntry->smeSessionId;
993 pSirSmeDisassocInd->transactionId = psessionEntry->transactionId;
Padma, Santhosh Kumar02289212016-09-30 13:30:08 +0530994 pSirSmeDisassocInd->statusCode = eSIR_SME_DEAUTH_STATUS;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800995 pSirSmeDisassocInd->reasonCode = pStaDs->mlmStaContext.disassocReason;
996
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530997 qdf_mem_copy(pSirSmeDisassocInd->bssid.bytes, psessionEntry->bssId,
Anurag Chouhan6d760662016-02-20 16:05:43 +0530998 QDF_MAC_ADDR_SIZE);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800999
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301000 qdf_mem_copy(pSirSmeDisassocInd->peer_macaddr.bytes, pStaDs->staAddr,
Anurag Chouhan6d760662016-02-20 16:05:43 +05301001 QDF_MAC_ADDR_SIZE);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001002
1003 pSirSmeDisassocInd->staId = pStaDs->staIndex;
1004
1005 mmhMsg.type = eWNI_SME_DISASSOC_IND;
1006 mmhMsg.bodyptr = pSirSmeDisassocInd;
1007 mmhMsg.bodyval = 0;
1008
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301009 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG,
1010 psessionEntry->peSessionId, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001011#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
1012 lim_diag_event_report(pMac, WLAN_PE_DIAG_DISASSOC_IND_EVENT, psessionEntry,
1013 0, (uint16_t) pStaDs->mlmStaContext.disassocReason);
1014#endif /* FEATURE_WLAN_DIAG_SUPPORT */
1015
1016 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
1017
1018} /*** end lim_send_sme_disassoc_ind() ***/
1019
1020/** -----------------------------------------------------------------
1021 \brief lim_send_sme_deauth_ind() - sends SME_DEAUTH_IND
1022
1023 After receiving deauthentication frame from peer entity, this
1024 function sends a eWNI_SME_DEAUTH_IND to SME with a specific
1025 reason code.
1026
1027 \param pMac - global mac structure
1028 \param pStaDs - station dph hash node
1029 \return none
1030 \sa
1031 ----------------------------------------------------------------- */
1032void
1033lim_send_sme_deauth_ind(tpAniSirGlobal pMac, tpDphHashNode pStaDs,
1034 tpPESession psessionEntry)
1035{
Rajeev Kumar37d478b2017-04-17 16:59:28 -07001036 struct scheduler_msg mmhMsg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001037 tSirSmeDeauthInd *pSirSmeDeauthInd;
1038
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301039 pSirSmeDeauthInd = qdf_mem_malloc(sizeof(tSirSmeDeauthInd));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001040 if (NULL == pSirSmeDeauthInd) {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301041 pe_err("AllocateMemory failed for eWNI_SME_DEAUTH_IND");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001042 return;
1043 }
1044
1045 pSirSmeDeauthInd->messageType = eWNI_SME_DEAUTH_IND;
1046 pSirSmeDeauthInd->length = sizeof(tSirSmeDeauthInd);
1047
1048 pSirSmeDeauthInd->sessionId = psessionEntry->smeSessionId;
1049 pSirSmeDeauthInd->transactionId = psessionEntry->transactionId;
1050 if (eSIR_INFRA_AP_MODE == psessionEntry->bssType) {
1051 pSirSmeDeauthInd->statusCode =
1052 (tSirResultCodes) pStaDs->mlmStaContext.cleanupTrigger;
1053 } else {
1054 /* Need to indicatet he reascon code over the air */
1055 pSirSmeDeauthInd->statusCode =
1056 (tSirResultCodes) pStaDs->mlmStaContext.disassocReason;
1057 }
1058 /* BSSID */
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301059 qdf_mem_copy(pSirSmeDeauthInd->bssid.bytes, psessionEntry->bssId,
Anurag Chouhan6d760662016-02-20 16:05:43 +05301060 QDF_MAC_ADDR_SIZE);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001061 /* peerMacAddr */
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301062 qdf_mem_copy(pSirSmeDeauthInd->peer_macaddr.bytes, pStaDs->staAddr,
Anurag Chouhan6d760662016-02-20 16:05:43 +05301063 QDF_MAC_ADDR_SIZE);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001064 pSirSmeDeauthInd->reasonCode = pStaDs->mlmStaContext.disassocReason;
1065
1066 pSirSmeDeauthInd->staId = pStaDs->staIndex;
Kiran Kumar Lokere37d3aa22015-11-03 14:58:26 -08001067 if (eSIR_MAC_PEER_STA_REQ_LEAVING_BSS_REASON ==
1068 pStaDs->mlmStaContext.disassocReason)
1069 pSirSmeDeauthInd->rssi = pStaDs->del_sta_ctx_rssi;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001070
1071 mmhMsg.type = eWNI_SME_DEAUTH_IND;
1072 mmhMsg.bodyptr = pSirSmeDeauthInd;
1073 mmhMsg.bodyval = 0;
1074
1075 MTRACE(mac_trace_msg_tx(pMac, psessionEntry->peSessionId, mmhMsg.type));
1076#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
1077 lim_diag_event_report(pMac, WLAN_PE_DIAG_DEAUTH_IND_EVENT, psessionEntry,
1078 0, pStaDs->mlmStaContext.cleanupTrigger);
1079#endif /* FEATURE_WLAN_DIAG_SUPPORT */
1080
1081 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
1082 return;
1083} /*** end lim_send_sme_deauth_ind() ***/
1084
1085#ifdef FEATURE_WLAN_TDLS
1086/**
1087 * lim_send_sme_tdls_del_sta_ind()
1088 *
1089 ***FUNCTION:
1090 * This function is called to send the TDLS STA context deletion to SME.
1091 *
1092 ***LOGIC:
1093 *
1094 ***ASSUMPTIONS:
1095 *
1096 ***NOTE:
1097 * NA
1098 *
1099 * @param pMac - Pointer to global MAC structure
1100 * @param pStaDs - Pointer to internal STA Datastructure
1101 * @param psessionEntry - Pointer to the session entry
1102 * @param reasonCode - Reason for TDLS sta deletion
1103 * @return None
1104 */
1105void
1106lim_send_sme_tdls_del_sta_ind(tpAniSirGlobal pMac, tpDphHashNode pStaDs,
1107 tpPESession psessionEntry, uint16_t reasonCode)
1108{
Frank Liud1a28462017-09-06 22:55:48 +08001109 struct tdls_event_info info;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001110
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301111 pe_debug("Delete TDLS Peer "MAC_ADDRESS_STR "with reason code: %d",
Nitesh Shah82c52812016-12-27 12:27:51 +05301112 MAC_ADDR_ARRAY(pStaDs->staAddr), reasonCode);
Frank Liud1a28462017-09-06 22:55:48 +08001113 info.vdev_id = psessionEntry->smeSessionId;
1114 qdf_mem_copy(info.peermac.bytes, pStaDs->staAddr, QDF_MAC_ADDR_SIZE);
1115 info.message_type = TDLS_PEER_DISCONNECTED;
1116 info.peer_reason = TDLS_DISCONNECTED_PEER_DELETE;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001117
Frank Liud1a28462017-09-06 22:55:48 +08001118 tgt_tdls_event_handler(pMac->psoc, &info);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001119
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001120 return;
1121} /*** end lim_send_sme_tdls_del_sta_ind() ***/
1122
1123/**
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001124 * lim_send_sme_mgmt_tx_completion()
1125 *
1126 ***FUNCTION:
1127 * This function is called to send the eWNI_SME_MGMT_FRM_TX_COMPLETION_IND
1128 * message to SME.
1129 *
1130 ***LOGIC:
1131 *
1132 ***ASSUMPTIONS:
1133 *
1134 ***NOTE:
1135 * NA
1136 *
1137 * @param pMac - Pointer to global MAC structure
1138 * @param psessionEntry - Pointer to the session entry
1139 * @param txCompleteStatus - TX Complete Status of Mgmt Frames
1140 * @return None
1141 */
1142void
1143lim_send_sme_mgmt_tx_completion(tpAniSirGlobal pMac,
Ganesh Kondabattiniac570072016-12-21 12:45:48 +05301144 uint32_t sme_session_id,
1145 uint32_t txCompleteStatus)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001146{
Rajeev Kumar37d478b2017-04-17 16:59:28 -07001147 struct scheduler_msg mmhMsg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001148 tSirMgmtTxCompletionInd *pSirMgmtTxCompletionInd;
1149
1150 pSirMgmtTxCompletionInd =
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301151 qdf_mem_malloc(sizeof(tSirMgmtTxCompletionInd));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001152 if (NULL == pSirMgmtTxCompletionInd) {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301153 pe_err("AllocateMemory failed for eWNI_SME_MGMT_FRM_TX_COMPLETION_IND");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001154 return;
1155 }
1156 /* messageType */
1157 pSirMgmtTxCompletionInd->messageType =
1158 eWNI_SME_MGMT_FRM_TX_COMPLETION_IND;
1159 pSirMgmtTxCompletionInd->length = sizeof(tSirMgmtTxCompletionInd);
1160
1161 /* sessionId */
Ganesh Kondabattiniac570072016-12-21 12:45:48 +05301162 pSirMgmtTxCompletionInd->sessionId = sme_session_id;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001163
1164 pSirMgmtTxCompletionInd->txCompleteStatus = txCompleteStatus;
1165
1166 mmhMsg.type = eWNI_SME_MGMT_FRM_TX_COMPLETION_IND;
1167 mmhMsg.bodyptr = pSirMgmtTxCompletionInd;
1168 mmhMsg.bodyval = 0;
1169
Kabilan Kannanf56f9d52017-04-05 03:31:34 -07001170 pSirMgmtTxCompletionInd->psoc = pMac->psoc;
1171 mmhMsg.callback = tgt_tdls_send_mgmt_tx_completion;
1172 scheduler_post_msg(QDF_MODULE_ID_TARGET_IF, &mmhMsg);
1173 return;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001174} /*** end lim_send_sme_tdls_delete_all_peer_ind() ***/
1175
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001176#endif /* FEATURE_WLAN_TDLS */
1177
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +05301178QDF_STATUS lim_prepare_disconnect_done_ind(tpAniSirGlobal mac_ctx,
1179 uint32_t **msg,
1180 uint8_t session_id,
1181 tSirResultCodes reason_code,
1182 uint8_t *peer_mac_addr)
Himanshu Agarwald519b4a2018-03-27 15:36:09 +05301183{
1184 struct sir_sme_discon_done_ind *sir_sme_dis_ind;
Himanshu Agarwald519b4a2018-03-27 15:36:09 +05301185
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +05301186 sir_sme_dis_ind = qdf_mem_malloc(sizeof(*sir_sme_dis_ind));
Himanshu Agarwald519b4a2018-03-27 15:36:09 +05301187 if (!sir_sme_dis_ind) {
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +05301188 pe_err("Failed to allocate memory");
1189 return QDF_STATUS_E_FAILURE;
Himanshu Agarwald519b4a2018-03-27 15:36:09 +05301190 }
1191
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +05301192 pe_debug("Prepare eWNI_SME_DISCONNECT_DONE_IND withretCode: %d",
Himanshu Agarwald519b4a2018-03-27 15:36:09 +05301193 reason_code);
1194
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +05301195 sir_sme_dis_ind->message_type = eWNI_SME_DISCONNECT_DONE_IND;
1196 sir_sme_dis_ind->length = sizeof(*sir_sme_dis_ind);
Himanshu Agarwald519b4a2018-03-27 15:36:09 +05301197 sir_sme_dis_ind->session_id = session_id;
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +05301198 if (peer_mac_addr)
Vignesh Viswanathanb2dcdd02018-05-24 11:48:12 +05301199 qdf_mem_copy(sir_sme_dis_ind->peer_mac,
1200 peer_mac_addr, ETH_ALEN);
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +05301201
Himanshu Agarwald519b4a2018-03-27 15:36:09 +05301202 /*
1203 * Instead of sending deauth reason code as 505 which is
1204 * internal value(eSIR_SME_LOST_LINK_WITH_PEER_RESULT_CODE)
1205 * Send reason code as zero to Supplicant
1206 */
1207 if (reason_code == eSIR_SME_LOST_LINK_WITH_PEER_RESULT_CODE)
1208 sir_sme_dis_ind->reason_code = 0;
1209 else
1210 sir_sme_dis_ind->reason_code = reason_code;
1211
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +05301212 *msg = (uint32_t *)sir_sme_dis_ind;
Himanshu Agarwald519b4a2018-03-27 15:36:09 +05301213
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +05301214 return QDF_STATUS_SUCCESS;
Himanshu Agarwald519b4a2018-03-27 15:36:09 +05301215}
1216
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001217/**
1218 * lim_send_sme_deauth_ntf()
1219 *
1220 ***FUNCTION:
1221 * This function is called by limProcessSmeMessages() to send
1222 * eWNI_SME_DISASSOC_RSP/IND message to host
1223 *
1224 ***PARAMS:
1225 *
1226 ***LOGIC:
1227 *
1228 ***ASSUMPTIONS:
1229 * NA
1230 *
1231 ***NOTE:
1232 * This function is used for sending eWNI_SME_DEAUTH_CNF or
1233 * eWNI_SME_DEAUTH_IND to host depending on deauthentication trigger.
1234 *
1235 * @param peerMacAddr Indicates the peer MAC addr to which
1236 * deauthentication was initiated
1237 * @param reasonCode Indicates the reason for Deauthetication
1238 * @param deauthTrigger Indicates the trigger for Deauthetication
1239 * @param aid Indicates the STAID. This parameter is present
1240 * only on AP.
1241 *
1242 * @return None
1243 */
1244void
1245lim_send_sme_deauth_ntf(tpAniSirGlobal pMac, tSirMacAddr peerMacAddr,
1246 tSirResultCodes reasonCode, uint16_t deauthTrigger,
1247 uint16_t aid, uint8_t smesessionId,
1248 uint16_t smetransactionId)
1249{
1250 uint8_t *pBuf;
1251 tSirSmeDeauthRsp *pSirSmeDeauthRsp;
1252 tSirSmeDeauthInd *pSirSmeDeauthInd;
1253 tpPESession psessionEntry;
1254 uint8_t sessionId;
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +05301255 uint32_t *pMsg = NULL;
1256 QDF_STATUS status;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001257
1258 psessionEntry = pe_find_session_by_bssid(pMac, peerMacAddr, &sessionId);
1259 switch (deauthTrigger) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001260 case eLIM_HOST_DEAUTH:
1261 /**
1262 * Deauthentication response to host triggered
1263 * deauthentication.
1264 */
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301265 pSirSmeDeauthRsp = qdf_mem_malloc(sizeof(tSirSmeDeauthRsp));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001266 if (NULL == pSirSmeDeauthRsp) {
1267 /* Log error */
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301268 pe_err("call to AllocateMemory failed for eWNI_SME_DEAUTH_RSP");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001269 return;
1270 }
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301271 pe_debug("send eWNI_SME_DEAUTH_RSP with retCode: %d for" MAC_ADDRESS_STR,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001272 reasonCode, MAC_ADDR_ARRAY(peerMacAddr));
1273 pSirSmeDeauthRsp->messageType = eWNI_SME_DEAUTH_RSP;
1274 pSirSmeDeauthRsp->length = sizeof(tSirSmeDeauthRsp);
1275 pSirSmeDeauthRsp->statusCode = reasonCode;
1276 pSirSmeDeauthRsp->sessionId = smesessionId;
1277 pSirSmeDeauthRsp->transactionId = smetransactionId;
1278
Srinivas Girigowda9cf95c52016-01-04 16:17:15 -08001279 pBuf = (uint8_t *) pSirSmeDeauthRsp->peer_macaddr.bytes;
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301280 qdf_mem_copy(pBuf, peerMacAddr, sizeof(tSirMacAddr));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001281
1282#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
1283 lim_diag_event_report(pMac, WLAN_PE_DIAG_DEAUTH_RSP_EVENT,
1284 psessionEntry, 0, (uint16_t) reasonCode);
1285#endif
1286 pMsg = (uint32_t *) pSirSmeDeauthRsp;
1287
1288 break;
1289
Hanumantha Reddy Pothula3e5d6aa2016-09-08 15:21:54 +05301290 case eLIM_PEER_ENTITY_DEAUTH:
1291 case eLIM_LINK_MONITORING_DEAUTH:
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +05301292 status = lim_prepare_disconnect_done_ind(pMac, &pMsg,
1293 smesessionId, reasonCode,
1294 &peerMacAddr[0]);
1295 if (!QDF_IS_STATUS_SUCCESS(status)) {
1296 pe_err("Failed to prepare message");
1297 return;
1298 }
1299 break;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001300 default:
1301 /**
1302 * Deauthentication indication due to Deauthentication
1303 * frame reception from peer entity or due to
1304 * loss of link with peer entity.
1305 */
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301306 pSirSmeDeauthInd = qdf_mem_malloc(sizeof(tSirSmeDeauthInd));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001307 if (NULL == pSirSmeDeauthInd) {
1308 /* Log error */
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301309 pe_err("call to AllocateMemory failed for eWNI_SME_DEAUTH_Ind");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001310 return;
1311 }
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301312 pe_debug("send eWNI_SME_DEAUTH_IND with retCode: %d for " MAC_ADDRESS_STR,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001313 reasonCode, MAC_ADDR_ARRAY(peerMacAddr));
1314 pSirSmeDeauthInd->messageType = eWNI_SME_DEAUTH_IND;
1315 pSirSmeDeauthInd->length = sizeof(tSirSmeDeauthInd);
1316 pSirSmeDeauthInd->reasonCode = eSIR_MAC_UNSPEC_FAILURE_REASON;
1317
1318 /* sessionId */
1319 pBuf = (uint8_t *) &pSirSmeDeauthInd->sessionId;
1320 *pBuf++ = smesessionId;
1321
1322 /* transaction ID */
1323 lim_copy_u16(pBuf, smetransactionId);
1324 pBuf += sizeof(uint16_t);
1325
1326 /* status code */
1327 lim_copy_u32(pBuf, reasonCode);
1328 pBuf += sizeof(tSirResultCodes);
1329
1330 /* bssId */
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301331 qdf_mem_copy(pBuf, psessionEntry->bssId, sizeof(tSirMacAddr));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001332 pBuf += sizeof(tSirMacAddr);
1333
1334 /* peerMacAddr */
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301335 qdf_mem_copy(pSirSmeDeauthInd->peer_macaddr.bytes, peerMacAddr,
Anurag Chouhan6d760662016-02-20 16:05:43 +05301336 QDF_MAC_ADDR_SIZE);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001337
1338#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
1339 lim_diag_event_report(pMac, WLAN_PE_DIAG_DEAUTH_IND_EVENT,
1340 psessionEntry, 0, (uint16_t) reasonCode);
1341#endif /* FEATURE_WLAN_DIAG_SUPPORT */
1342 pMsg = (uint32_t *) pSirSmeDeauthInd;
1343
1344 break;
1345 }
1346
1347 /*Delete the PE session created */
1348 if (psessionEntry != NULL) {
1349 pe_delete_session(pMac, psessionEntry);
1350 }
1351
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301352 lim_send_sme_disassoc_deauth_ntf(pMac, QDF_STATUS_SUCCESS,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001353 (uint32_t *) pMsg);
1354
1355} /*** end lim_send_sme_deauth_ntf() ***/
1356
1357/**
1358 * lim_send_sme_wm_status_change_ntf() - Send Notification
1359 * @mac_ctx: Global MAC Context
1360 * @status_change_code: Indicates the change in the wireless medium.
1361 * @status_change_info: Indicates the information associated with
1362 * change in the wireless medium.
1363 * @info_len: Indicates the length of status change information
1364 * being sent.
1365 * @session_id SessionID
1366 *
1367 * This function is called by limProcessSmeMessages() to send
1368 * eWNI_SME_WM_STATUS_CHANGE_NTF message to host.
1369 *
1370 * Return: None
1371 */
1372void
1373lim_send_sme_wm_status_change_ntf(tpAniSirGlobal mac_ctx,
1374 tSirSmeStatusChangeCode status_change_code,
1375 uint32_t *status_change_info, uint16_t info_len, uint8_t session_id)
1376{
Rajeev Kumar37d478b2017-04-17 16:59:28 -07001377 struct scheduler_msg msg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001378 tSirSmeWmStatusChangeNtf *wm_status_change_ntf;
Naveen Rawate01ed172016-11-17 11:34:50 -08001379 uint32_t max_info_len;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001380
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301381 wm_status_change_ntf = qdf_mem_malloc(sizeof(tSirSmeWmStatusChangeNtf));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001382 if (NULL == wm_status_change_ntf) {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301383 pe_err("Mem Alloc failed - eWNI_SME_WM_STATUS_CHANGE_NTF");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001384 return;
1385 }
1386
1387 msg.type = eWNI_SME_WM_STATUS_CHANGE_NTF;
1388 msg.bodyval = 0;
1389 msg.bodyptr = wm_status_change_ntf;
1390
1391 switch (status_change_code) {
Naveen Rawate01ed172016-11-17 11:34:50 -08001392 case eSIR_SME_AP_CAPS_CHANGED:
1393 max_info_len = sizeof(tSirSmeApNewCaps);
1394 break;
1395 case eSIR_SME_JOINED_NEW_BSS:
1396 max_info_len = sizeof(tSirSmeNewBssInfo);
1397 break;
1398 default:
1399 max_info_len = sizeof(wm_status_change_ntf->statusChangeInfo);
1400 break;
1401 }
1402
1403 switch (status_change_code) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001404 case eSIR_SME_RADAR_DETECTED:
1405 break;
1406 default:
1407 wm_status_change_ntf->messageType =
1408 eWNI_SME_WM_STATUS_CHANGE_NTF;
1409 wm_status_change_ntf->statusChangeCode = status_change_code;
1410 wm_status_change_ntf->length = sizeof(tSirSmeWmStatusChangeNtf);
1411 wm_status_change_ntf->sessionId = session_id;
Naveen Rawate01ed172016-11-17 11:34:50 -08001412 if (info_len <= max_info_len && status_change_info) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301413 qdf_mem_copy(
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001414 (uint8_t *) &wm_status_change_ntf->statusChangeInfo,
1415 (uint8_t *) status_change_info, info_len);
1416 }
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301417 pe_debug("StatusChg code: 0x%x length: %d",
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001418 status_change_code, info_len);
1419 break;
1420 }
1421
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301422 MTRACE(mac_trace(mac_ctx, TRACE_CODE_TX_SME_MSG, session_id, msg.type));
Jeff Johnson0301ecb2018-06-29 09:36:23 -07001423 if (QDF_STATUS_SUCCESS != lim_sys_process_mmh_msg_api(mac_ctx, &msg, ePROT)) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301424 qdf_mem_free(wm_status_change_ntf);
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301425 pe_err("lim_sys_process_mmh_msg_api failed");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001426 }
1427
1428} /*** end lim_send_sme_wm_status_change_ntf() ***/
1429
1430/**
1431 * lim_send_sme_set_context_rsp()
1432 *
1433 ***FUNCTION:
1434 * This function is called by limProcessSmeMessages() to send
1435 * eWNI_SME_SETCONTEXT_RSP message to host
1436 *
1437 ***PARAMS:
1438 *
1439 ***LOGIC:
1440 *
1441 ***ASSUMPTIONS:
1442 * NA
1443 *
1444 ***NOTE:
1445 *
1446 * @param pMac Pointer to Global MAC structure
1447 * @param peerMacAddr Indicates the peer MAC addr to which
1448 * setContext was performed
1449 * @param aid Indicates the aid corresponding to the peer MAC
1450 * address
1451 * @param resultCode Indicates the result of previously issued
1452 * eWNI_SME_SETCONTEXT_RSP message
1453 *
1454 * @return None
1455 */
1456void
1457lim_send_sme_set_context_rsp(tpAniSirGlobal pMac,
Anurag Chouhan6d760662016-02-20 16:05:43 +05301458 struct qdf_mac_addr peer_macaddr, uint16_t aid,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001459 tSirResultCodes resultCode,
1460 tpPESession psessionEntry, uint8_t smesessionId,
1461 uint16_t smetransactionId)
1462{
Rajeev Kumar37d478b2017-04-17 16:59:28 -07001463 struct scheduler_msg mmhMsg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001464 tSirSmeSetContextRsp *pSirSmeSetContextRsp;
1465
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301466 pSirSmeSetContextRsp = qdf_mem_malloc(sizeof(tSirSmeSetContextRsp));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001467 if (NULL == pSirSmeSetContextRsp) {
1468 /* Log error */
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301469 pe_err("call to AllocateMemory failed for SmeSetContextRsp");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001470 return;
1471 }
1472
1473 pSirSmeSetContextRsp->messageType = eWNI_SME_SETCONTEXT_RSP;
1474 pSirSmeSetContextRsp->length = sizeof(tSirSmeSetContextRsp);
1475 pSirSmeSetContextRsp->statusCode = resultCode;
1476
Anurag Chouhanc5548422016-02-24 18:33:27 +05301477 qdf_copy_macaddr(&pSirSmeSetContextRsp->peer_macaddr, &peer_macaddr);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001478
1479 /* Update SME session and transaction Id */
1480 pSirSmeSetContextRsp->sessionId = smesessionId;
1481 pSirSmeSetContextRsp->transactionId = smetransactionId;
1482
1483 mmhMsg.type = eWNI_SME_SETCONTEXT_RSP;
1484 mmhMsg.bodyptr = pSirSmeSetContextRsp;
1485 mmhMsg.bodyval = 0;
1486 if (NULL == psessionEntry) {
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301487 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG,
1488 NO_SESSION, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001489 } else {
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301490 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG,
1491 psessionEntry->peSessionId, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001492 }
1493
1494#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
1495 lim_diag_event_report(pMac, WLAN_PE_DIAG_SETCONTEXT_RSP_EVENT,
1496 psessionEntry, (uint16_t) resultCode, 0);
1497#endif /* FEATURE_WLAN_DIAG_SUPPORT */
1498
Himanshu Agarwal2785d242018-05-09 12:39:52 +05301499 pMac->lim.sme_msg_callback(pMac, &mmhMsg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001500} /*** end lim_send_sme_set_context_rsp() ***/
1501
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001502/** -----------------------------------------------------------------
1503 \brief lim_send_sme_addts_rsp() - sends SME ADDTS RSP
1504 \ This function sends a eWNI_SME_ADDTS_RSP to SME.
1505 \ SME only looks at rc and tspec field.
1506 \param pMac - global mac structure
1507 \param rspReqd - is SmeAddTsRsp required
1508 \param status - status code of SME_ADD_TS_RSP
1509 \return tspec
1510 \sa
1511 ----------------------------------------------------------------- */
1512void
1513lim_send_sme_addts_rsp(tpAniSirGlobal pMac, uint8_t rspReqd, uint32_t status,
1514 tpPESession psessionEntry, tSirMacTspecIE tspec,
1515 uint8_t smesessionId, uint16_t smetransactionId)
1516{
1517 tpSirAddtsRsp rsp;
Rajeev Kumar37d478b2017-04-17 16:59:28 -07001518 struct scheduler_msg mmhMsg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001519
1520 if (!rspReqd)
1521 return;
1522
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301523 rsp = qdf_mem_malloc(sizeof(tSirAddtsRsp));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001524 if (NULL == rsp) {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301525 pe_err("AllocateMemory failed for ADDTS_RSP");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001526 return;
1527 }
1528
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001529 rsp->messageType = eWNI_SME_ADDTS_RSP;
1530 rsp->rc = status;
1531 rsp->rsp.status = (enum eSirMacStatusCodes)status;
1532 rsp->rsp.tspec = tspec;
1533 /* Update SME session Id and transcation Id */
1534 rsp->sessionId = smesessionId;
1535 rsp->transactionId = smetransactionId;
1536
1537 mmhMsg.type = eWNI_SME_ADDTS_RSP;
1538 mmhMsg.bodyptr = rsp;
1539 mmhMsg.bodyval = 0;
1540 if (NULL == psessionEntry) {
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301541 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG,
1542 NO_SESSION, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001543 } else {
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301544 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG,
1545 psessionEntry->peSessionId, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001546 }
1547#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
1548 lim_diag_event_report(pMac, WLAN_PE_DIAG_ADDTS_RSP_EVENT, psessionEntry, 0,
1549 0);
1550#endif /* FEATURE_WLAN_DIAG_SUPPORT */
1551
1552 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
1553 return;
1554}
1555
1556void
1557lim_send_sme_delts_rsp(tpAniSirGlobal pMac, tpSirDeltsReq delts, uint32_t status,
1558 tpPESession psessionEntry, uint8_t smesessionId,
1559 uint16_t smetransactionId)
1560{
1561 tpSirDeltsRsp rsp;
Rajeev Kumar37d478b2017-04-17 16:59:28 -07001562 struct scheduler_msg mmhMsg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001563
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301564 pe_debug("SendSmeDeltsRsp aid: %d tsid: %d up: %d status: %d",
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001565 delts->aid,
1566 delts->req.tsinfo.traffic.tsid,
1567 delts->req.tsinfo.traffic.userPrio, status);
1568 if (!delts->rspReqd)
1569 return;
1570
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301571 rsp = qdf_mem_malloc(sizeof(tSirDeltsRsp));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001572 if (NULL == rsp) {
1573 /* Log error */
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301574 pe_err("AllocateMemory failed for DELTS_RSP");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001575 return;
1576 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001577
1578 if (psessionEntry != NULL) {
1579
1580 rsp->aid = delts->aid;
Anurag Chouhanc5548422016-02-24 18:33:27 +05301581 qdf_copy_macaddr(&rsp->macaddr, &delts->macaddr);
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301582 qdf_mem_copy((uint8_t *) &rsp->rsp, (uint8_t *) &delts->req,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001583 sizeof(tSirDeltsReqInfo));
1584 }
1585
1586 rsp->messageType = eWNI_SME_DELTS_RSP;
1587 rsp->rc = status;
1588
1589 /* Update SME session Id and transcation Id */
1590 rsp->sessionId = smesessionId;
1591 rsp->transactionId = smetransactionId;
1592
1593 mmhMsg.type = eWNI_SME_DELTS_RSP;
1594 mmhMsg.bodyptr = rsp;
1595 mmhMsg.bodyval = 0;
1596 if (NULL == psessionEntry) {
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301597 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG,
1598 NO_SESSION, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001599 } else {
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301600 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG,
1601 psessionEntry->peSessionId, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001602 }
1603#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
1604 lim_diag_event_report(pMac, WLAN_PE_DIAG_DELTS_RSP_EVENT, psessionEntry,
1605 (uint16_t) status, 0);
1606#endif /* FEATURE_WLAN_DIAG_SUPPORT */
1607
1608 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
1609}
1610
1611void
1612lim_send_sme_delts_ind(tpAniSirGlobal pMac, tpSirDeltsReqInfo delts, uint16_t aid,
1613 tpPESession psessionEntry)
1614{
1615 tpSirDeltsRsp rsp;
Rajeev Kumar37d478b2017-04-17 16:59:28 -07001616 struct scheduler_msg mmhMsg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001617
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301618 pe_debug("SendSmeDeltsInd aid: %d tsid: %d up: %d",
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001619 aid, delts->tsinfo.traffic.tsid, delts->tsinfo.traffic.userPrio);
1620
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301621 rsp = qdf_mem_malloc(sizeof(tSirDeltsRsp));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001622 if (NULL == rsp) {
1623 /* Log error */
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301624 pe_err("AllocateMemory failed for DELTS_IND");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001625 return;
1626 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001627
1628 rsp->messageType = eWNI_SME_DELTS_IND;
Jeff Johnson0301ecb2018-06-29 09:36:23 -07001629 rsp->rc = QDF_STATUS_SUCCESS;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001630 rsp->aid = aid;
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301631 qdf_mem_copy((uint8_t *) &rsp->rsp, (uint8_t *) delts, sizeof(*delts));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001632
1633 /* Update SME session Id and SME transaction Id */
1634
1635 rsp->sessionId = psessionEntry->smeSessionId;
1636 rsp->transactionId = psessionEntry->transactionId;
1637
1638 mmhMsg.type = eWNI_SME_DELTS_IND;
1639 mmhMsg.bodyptr = rsp;
1640 mmhMsg.bodyval = 0;
1641 MTRACE(mac_trace_msg_tx(pMac, psessionEntry->peSessionId, mmhMsg.type));
1642#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
1643 lim_diag_event_report(pMac, WLAN_PE_DIAG_DELTS_IND_EVENT, psessionEntry, 0,
1644 0);
1645#endif /* FEATURE_WLAN_DIAG_SUPPORT */
1646
1647 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
1648}
1649
Naveen Rawatfa2a1002018-05-17 16:06:37 -07001650#ifndef QCA_SUPPORT_CP_STATS
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001651/**
1652 * lim_send_sme_pe_statistics_rsp()
1653 *
1654 ***FUNCTION:
1655 * This function is called to send 802.11 statistics response to HDD.
1656 * This function posts the result back to HDD. This is a response to
1657 * HDD's request for statistics.
1658 *
1659 ***PARAMS:
1660 *
1661 ***LOGIC:
1662 *
1663 ***ASSUMPTIONS:
1664 * NA
1665 *
1666 ***NOTE:
1667 * NA
1668 *
1669 * @param pMac Pointer to Global MAC structure
1670 * @param p80211Stats Statistics sent in response
1671 * @param resultCode TODO:
1672 *
1673 *
1674 * @return none
1675 */
1676
1677void
1678lim_send_sme_pe_statistics_rsp(tpAniSirGlobal pMac, uint16_t msgType, void *stats)
1679{
Rajeev Kumar37d478b2017-04-17 16:59:28 -07001680 struct scheduler_msg mmhMsg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001681 uint8_t sessionId;
1682 tAniGetPEStatsRsp *pPeStats = (tAniGetPEStatsRsp *) stats;
1683 tpPESession pPeSessionEntry;
1684
1685 /* Get the Session Id based on Sta Id */
1686 pPeSessionEntry =
1687 pe_find_session_by_sta_id(pMac, pPeStats->staId, &sessionId);
1688
1689 /* Fill the Session Id */
1690 if (NULL != pPeSessionEntry) {
1691 /* Fill the Session Id */
1692 pPeStats->sessionId = pPeSessionEntry->smeSessionId;
1693 }
1694
1695 pPeStats->msgType = eWNI_SME_GET_STATISTICS_RSP;
1696
1697 /* msgType should be WMA_GET_STATISTICS_RSP */
1698 mmhMsg.type = eWNI_SME_GET_STATISTICS_RSP;
1699
1700 mmhMsg.bodyptr = stats;
1701 mmhMsg.bodyval = 0;
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301702 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG, NO_SESSION, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001703 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
1704
1705 return;
1706
1707} /*** end lim_send_sme_pe_statistics_rsp() ***/
Naveen Rawatfa2a1002018-05-17 16:06:37 -07001708#endif
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001709
Srinivas Girigowda515a9ef2015-12-11 11:00:48 -08001710#ifdef FEATURE_WLAN_ESE
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001711/**
Srinivas Girigowda515a9ef2015-12-11 11:00:48 -08001712 * lim_send_sme_pe_ese_tsm_rsp() - send tsm response
1713 * @pMac: Pointer to global pMac structure
1714 * @pStats: Pointer to TSM Stats
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001715 *
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001716 * This function is called to send tsm stats response to HDD.
1717 * This function posts the result back to HDD. This is a response to
1718 * HDD's request to get tsm stats.
1719 *
Srinivas Girigowda515a9ef2015-12-11 11:00:48 -08001720 * Return: None
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001721 */
Srinivas Girigowda515a9ef2015-12-11 11:00:48 -08001722void lim_send_sme_pe_ese_tsm_rsp(tpAniSirGlobal pMac,
1723 tAniGetTsmStatsRsp *pStats)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001724{
Rajeev Kumar37d478b2017-04-17 16:59:28 -07001725 struct scheduler_msg mmhMsg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001726 uint8_t sessionId;
1727 tAniGetTsmStatsRsp *pPeStats = (tAniGetTsmStatsRsp *) pStats;
1728 tpPESession pPeSessionEntry = NULL;
1729
1730 /* Get the Session Id based on Sta Id */
1731 pPeSessionEntry =
1732 pe_find_session_by_sta_id(pMac, pPeStats->staId, &sessionId);
1733
1734 /* Fill the Session Id */
1735 if (NULL != pPeSessionEntry) {
1736 /* Fill the Session Id */
1737 pPeStats->sessionId = pPeSessionEntry->smeSessionId;
1738 } else {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301739 pe_err("Session not found for the Sta id: %d",
Nishank Aggarwald5941bb2017-03-11 14:41:24 +05301740 pPeStats->staId);
Manikandan Mohan41e2d6f2017-04-10 16:17:39 +05301741 qdf_mem_free(pPeStats->tsmStatsReq);
1742 qdf_mem_free(pPeStats);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001743 return;
1744 }
1745
1746 pPeStats->msgType = eWNI_SME_GET_TSM_STATS_RSP;
1747 pPeStats->tsmMetrics.RoamingCount
1748 = pPeSessionEntry->eseContext.tsm.tsmMetrics.RoamingCount;
1749 pPeStats->tsmMetrics.RoamingDly
1750 = pPeSessionEntry->eseContext.tsm.tsmMetrics.RoamingDly;
1751
1752 mmhMsg.type = eWNI_SME_GET_TSM_STATS_RSP;
1753 mmhMsg.bodyptr = pStats;
1754 mmhMsg.bodyval = 0;
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301755 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG, sessionId, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001756 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
1757
1758 return;
1759} /*** end lim_send_sme_pe_ese_tsm_rsp() ***/
1760
Srinivas Girigowda515a9ef2015-12-11 11:00:48 -08001761#endif /* FEATURE_WLAN_ESE */
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001762
1763void
1764lim_send_sme_ibss_peer_ind(tpAniSirGlobal pMac,
1765 tSirMacAddr peerMacAddr,
1766 uint16_t staIndex,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001767 uint8_t *beacon,
1768 uint16_t beaconLen, uint16_t msgType, uint8_t sessionId)
1769{
Rajeev Kumar37d478b2017-04-17 16:59:28 -07001770 struct scheduler_msg mmhMsg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001771 tSmeIbssPeerInd *pNewPeerInd;
1772
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301773 pNewPeerInd = qdf_mem_malloc(sizeof(tSmeIbssPeerInd) + beaconLen);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001774 if (NULL == pNewPeerInd) {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301775 pe_err("Failed to allocate memory");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001776 return;
1777 }
1778
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301779 qdf_mem_copy((uint8_t *) pNewPeerInd->peer_addr.bytes,
Anurag Chouhan6d760662016-02-20 16:05:43 +05301780 peerMacAddr, QDF_MAC_ADDR_SIZE);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001781 pNewPeerInd->staId = staIndex;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001782 pNewPeerInd->mesgLen = sizeof(tSmeIbssPeerInd) + beaconLen;
1783 pNewPeerInd->mesgType = msgType;
1784 pNewPeerInd->sessionId = sessionId;
1785
1786 if (beacon != NULL) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301787 qdf_mem_copy((void *)((uint8_t *) pNewPeerInd +
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001788 sizeof(tSmeIbssPeerInd)), (void *)beacon,
1789 beaconLen);
1790 }
1791
1792 mmhMsg.type = msgType;
1793 mmhMsg.bodyptr = pNewPeerInd;
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301794 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG, sessionId, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001795 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
1796
1797}
1798
Kiran Kumar Lokerefc8feea2016-10-27 17:07:00 -07001799/**
1800 * lim_process_csa_wbw_ie() - Process CSA Wide BW IE
1801 * @mac_ctx: pointer to global adapter context
1802 * @csa_params: pointer to CSA parameters
1803 * @chnl_switch_info:pointer to channel switch parameters
1804 * @session_entry: session pointer
1805 *
1806 * Return: None
1807 */
Kiran Kumar Lokere05a0658a2018-02-01 21:34:27 -08001808static QDF_STATUS lim_process_csa_wbw_ie(tpAniSirGlobal mac_ctx,
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001809 struct csa_offload_params *csa_params,
1810 tLimWiderBWChannelSwitchInfo *chnl_switch_info,
1811 tpPESession session_entry)
1812{
Amar Singhal5cccafe2017-02-15 12:42:58 -08001813 struct ch_params ch_params = {0};
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001814 uint8_t ap_new_ch_width;
1815 bool new_ch_width_dfn = false;
1816 uint8_t center_freq_diff;
Kiran Kumar Lokere05a0658a2018-02-01 21:34:27 -08001817 uint32_t fw_vht_ch_wd = wma_get_vht_ch_width() + 1;
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001818
1819 ap_new_ch_width = csa_params->new_ch_width + 1;
Kiran Kumar Lokere05a0658a2018-02-01 21:34:27 -08001820
Tushnim Bhattacharyya332b74c2018-08-10 10:55:51 -07001821 pe_debug("new channel: %d new_ch_width: %d seg0: %d seg1: %d",
1822 csa_params->channel, ap_new_ch_width,
1823 csa_params->new_ch_freq_seg1,
1824 csa_params->new_ch_freq_seg2);
Kiran Kumar Lokere05a0658a2018-02-01 21:34:27 -08001825
1826 if ((ap_new_ch_width != CH_WIDTH_80MHZ) &&
1827 (ap_new_ch_width != CH_WIDTH_160MHZ) &&
1828 (ap_new_ch_width != CH_WIDTH_80P80MHZ)) {
1829 pe_err("CSA wide BW IE has wrong ch_width %d",
1830 csa_params->new_ch_width);
1831 return QDF_STATUS_E_INVAL;
1832 }
1833
1834 if (!csa_params->new_ch_freq_seg1 && !csa_params->new_ch_freq_seg2) {
1835 pe_err("CSA wide BW IE has invalid center freq");
1836 return QDF_STATUS_E_INVAL;
1837 }
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001838 if ((ap_new_ch_width == CH_WIDTH_80MHZ) &&
1839 csa_params->new_ch_freq_seg2) {
1840 new_ch_width_dfn = true;
1841 if (csa_params->new_ch_freq_seg2 >
1842 csa_params->new_ch_freq_seg1)
1843 center_freq_diff = csa_params->new_ch_freq_seg2 -
1844 csa_params->new_ch_freq_seg1;
1845 else
1846 center_freq_diff = csa_params->new_ch_freq_seg1 -
1847 csa_params->new_ch_freq_seg2;
1848 if (center_freq_diff == CENTER_FREQ_DIFF_160MHz)
1849 ap_new_ch_width = CH_WIDTH_160MHZ;
1850 else if (center_freq_diff > CENTER_FREQ_DIFF_80P80MHz)
1851 ap_new_ch_width = CH_WIDTH_80P80MHZ;
1852 else
1853 ap_new_ch_width = CH_WIDTH_80MHZ;
1854 }
1855 session_entry->gLimChannelSwitch.state =
1856 eLIM_CHANNEL_SWITCH_PRIMARY_AND_SECONDARY;
1857 if ((ap_new_ch_width == CH_WIDTH_160MHZ) &&
1858 !new_ch_width_dfn) {
Kiran Kumar Lokere05a0658a2018-02-01 21:34:27 -08001859 if (csa_params->new_ch_freq_seg1 != csa_params->channel +
1860 CH_TO_CNTR_FREQ_DIFF_160MHz) {
1861 pe_err("CSA wide BW IE has invalid center freq");
1862 return QDF_STATUS_E_INVAL;
1863 }
1864
1865 if (ap_new_ch_width > fw_vht_ch_wd) {
Tushnim Bhattacharyya332b74c2018-08-10 10:55:51 -07001866 pe_debug("New BW is not supported, setting BW to %d",
1867 fw_vht_ch_wd);
Kiran Kumar Lokere05a0658a2018-02-01 21:34:27 -08001868 ap_new_ch_width = fw_vht_ch_wd;
1869 }
1870 ch_params.ch_width = ap_new_ch_width ;
Kiran Kumar Lokerea3de2262017-04-12 12:15:04 -07001871 wlan_reg_set_channel_params(mac_ctx->pdev,
1872 csa_params->channel, 0, &ch_params);
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001873 ap_new_ch_width = ch_params.ch_width;
1874 csa_params->new_ch_freq_seg1 = ch_params.center_freq_seg0;
1875 csa_params->new_ch_freq_seg2 = ch_params.center_freq_seg1;
Kiran Kumar Lokere05a0658a2018-02-01 21:34:27 -08001876 } else if (!new_ch_width_dfn) {
1877 if (ap_new_ch_width > fw_vht_ch_wd) {
Tushnim Bhattacharyya332b74c2018-08-10 10:55:51 -07001878 pe_debug("New BW is not supported, setting BW to %d",
1879 fw_vht_ch_wd);
Kiran Kumar Lokere05a0658a2018-02-01 21:34:27 -08001880 ap_new_ch_width = fw_vht_ch_wd;
1881 }
1882 if (csa_params->new_ch_freq_seg1 != csa_params->channel +
1883 CH_TO_CNTR_FREQ_DIFF_80MHz) {
1884 pe_err("CSA wide BW IE has invalid center freq");
1885 return QDF_STATUS_E_INVAL;
1886 }
1887 csa_params->new_ch_freq_seg2 = 0;
1888 }
1889 if (new_ch_width_dfn) {
1890 if (csa_params->new_ch_freq_seg1 != csa_params->channel +
1891 CH_TO_CNTR_FREQ_DIFF_80MHz) {
1892 pe_err("CSA wide BW IE has invalid center freq");
1893 return QDF_STATUS_E_INVAL;
1894 }
1895 if (ap_new_ch_width > fw_vht_ch_wd) {
Tushnim Bhattacharyya332b74c2018-08-10 10:55:51 -07001896 pe_debug("New width is not supported, setting BW to %d",
1897 fw_vht_ch_wd);
Kiran Kumar Lokere05a0658a2018-02-01 21:34:27 -08001898 ap_new_ch_width = fw_vht_ch_wd;
1899 }
1900 if ((ap_new_ch_width == CH_WIDTH_160MHZ) &&
1901 (csa_params->new_ch_freq_seg1 !=
1902 csa_params->channel +
1903 CH_TO_CNTR_FREQ_DIFF_160MHz)) {
1904 pe_err("wide BW IE has invalid 160M center freq");
1905 csa_params->new_ch_freq_seg2 = 0;
1906 ap_new_ch_width = CH_WIDTH_80MHZ;
1907 }
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001908 }
1909 chnl_switch_info->newChanWidth = ap_new_ch_width;
1910 chnl_switch_info->newCenterChanFreq0 = csa_params->new_ch_freq_seg1;
1911 chnl_switch_info->newCenterChanFreq1 = csa_params->new_ch_freq_seg2;
1912
1913 if (session_entry->ch_width == ap_new_ch_width)
1914 goto prnt_log;
1915
1916 if (session_entry->ch_width == CH_WIDTH_80MHZ) {
1917 chnl_switch_info->newChanWidth = CH_WIDTH_80MHZ;
1918 chnl_switch_info->newCenterChanFreq1 = 0;
1919 } else {
1920 session_entry->ch_width = ap_new_ch_width;
1921 chnl_switch_info->newChanWidth = ap_new_ch_width;
1922 }
1923prnt_log:
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301924 pe_debug("new channel: %d new_ch_width: %d seg0: %d seg1: %d",
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001925 csa_params->channel,
1926 chnl_switch_info->newChanWidth,
1927 chnl_switch_info->newCenterChanFreq0,
1928 chnl_switch_info->newCenterChanFreq1);
Kiran Kumar Lokere05a0658a2018-02-01 21:34:27 -08001929
1930 return QDF_STATUS_SUCCESS;
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001931}
Kiran Kumar Lokere05a0658a2018-02-01 21:34:27 -08001932
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001933/**
1934 * lim_handle_csa_offload_msg() - Handle CSA offload message
1935 * @mac_ctx: pointer to global adapter context
1936 * @msg: Message pointer.
1937 *
1938 * Return: None
1939 */
Rajeev Kumarfeb96382017-01-22 19:42:09 -08001940void lim_handle_csa_offload_msg(tpAniSirGlobal mac_ctx,
1941 struct scheduler_msg *msg)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001942{
1943 tpPESession session_entry;
Rajeev Kumar37d478b2017-04-17 16:59:28 -07001944 struct scheduler_msg mmh_msg = {0};
Chandrasekaran, Manishekar5c19dc52016-02-04 14:58:26 +05301945 struct csa_offload_params *csa_params =
1946 (struct csa_offload_params *) (msg->bodyptr);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001947 tpSmeCsaOffloadInd csa_offload_ind;
1948 tpDphHashNode sta_ds = NULL;
1949 uint8_t session_id;
1950 uint16_t aid = 0;
Gupta, Kapil121bf212015-11-25 19:21:29 +05301951 uint16_t chan_space = 0;
Krunal Sonie2c45a92018-05-03 11:51:26 -07001952 struct ch_params ch_params = {0};
Gupta, Kapil121bf212015-11-25 19:21:29 +05301953
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001954 tLimWiderBWChannelSwitchInfo *chnl_switch_info = NULL;
Kiran Kumar Lokere999e58c2016-01-07 02:18:39 -08001955 tLimChannelSwitchInfo *lim_ch_switch = NULL;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001956
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301957 pe_debug("handle csa offload msg");
Chandrasekaran, Manishekar5c19dc52016-02-04 14:58:26 +05301958
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001959 if (!csa_params) {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301960 pe_err("limMsgQ body ptr is NULL");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001961 return;
1962 }
1963
Pragaspathi Thilagaraj5fcd7182018-06-06 13:46:18 +05301964 csa_offload_ind = qdf_mem_malloc(sizeof(tSmeCsaOffloadInd));
1965 if (NULL == csa_offload_ind) {
1966 pe_err("memalloc fail eWNI_SME_CSA_OFFLOAD_EVENT");
1967 goto err;
1968 }
1969
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001970 session_entry =
1971 pe_find_session_by_bssid(mac_ctx,
1972 csa_params->bssId, &session_id);
1973 if (!session_entry) {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301974 pe_err("Session does not exists for %pM",
Chandrasekaran, Manishekar5c19dc52016-02-04 14:58:26 +05301975 csa_params->bssId);
Pragaspathi Thilagaraj655db192018-06-19 17:41:37 +05301976 qdf_mem_free(csa_offload_ind);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001977 goto err;
1978 }
1979
1980 sta_ds = dph_lookup_hash_entry(mac_ctx, session_entry->bssId, &aid,
1981 &session_entry->dph.dphHashTable);
1982
1983 if (!sta_ds) {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301984 pe_err("sta_ds does not exist");
Pragaspathi Thilagaraj655db192018-06-19 17:41:37 +05301985 qdf_mem_free(csa_offload_ind);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001986 goto err;
1987 }
1988
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001989 if (!LIM_IS_STA_ROLE(session_entry)) {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301990 pe_debug("Invalid role to handle CSA");
Pragaspathi Thilagaraj655db192018-06-19 17:41:37 +05301991 qdf_mem_free(csa_offload_ind);
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001992 goto err;
1993 }
Masti, Narayanraddi1c630442015-11-02 12:03:50 +05301994
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001995 /*
1996 * on receiving channel switch announcement from AP, delete all
1997 * TDLS peers before leaving BSS and proceed for channel switch
1998 */
1999 lim_delete_tdls_peers(mac_ctx, session_entry);
Gupta, Kapil121bf212015-11-25 19:21:29 +05302000
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07002001 lim_ch_switch = &session_entry->gLimChannelSwitch;
2002 session_entry->gLimChannelSwitch.switchMode =
2003 csa_params->switch_mode;
2004 /* timer already started by firmware, switch immediately */
2005 session_entry->gLimChannelSwitch.switchCount = 0;
2006 session_entry->gLimChannelSwitch.primaryChannel =
2007 csa_params->channel;
2008 session_entry->gLimChannelSwitch.state =
2009 eLIM_CHANNEL_SWITCH_PRIMARY_ONLY;
2010 session_entry->gLimChannelSwitch.ch_width = CH_WIDTH_20MHZ;
2011 lim_ch_switch->sec_ch_offset =
2012 session_entry->htSecondaryChannelOffset;
2013 session_entry->gLimChannelSwitch.ch_center_freq_seg0 = 0;
2014 session_entry->gLimChannelSwitch.ch_center_freq_seg1 = 0;
2015 chnl_switch_info =
2016 &session_entry->gLimWiderBWChannelSwitch;
2017
Tushnim Bhattacharyya332b74c2018-08-10 10:55:51 -07002018 pe_debug("vht: %d ht: %d flag: %x chan: %d, sec_ch_offset %d",
2019 session_entry->vhtCapability,
2020 session_entry->htSupportedChannelWidthSet,
2021 csa_params->ies_present_flag,
2022 csa_params->channel,
2023 csa_params->sec_chan_offset);
2024 pe_debug("seg1: %d seg2: %d width: %d country: %s class: %d",
2025 csa_params->new_ch_freq_seg1,
2026 csa_params->new_ch_freq_seg2,
2027 csa_params->new_ch_width,
2028 mac_ctx->scan.countryCodeCurrent,
2029 csa_params->new_op_class);
Chandrasekaran, Manishekarce2172e2016-02-18 16:12:43 +05302030
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07002031 if (session_entry->vhtCapability &&
2032 session_entry->htSupportedChannelWidthSet) {
Kiran Kumar Lokere05a0658a2018-02-01 21:34:27 -08002033 if ((csa_params->ies_present_flag & lim_wbw_ie_present) &&
2034 (QDF_STATUS_SUCCESS == lim_process_csa_wbw_ie(mac_ctx,
2035 csa_params, chnl_switch_info,
2036 session_entry))) {
2037 pe_debug("CSA wide BW IE process successful");
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07002038 lim_ch_switch->sec_ch_offset =
Abhishek Singhaf639b42017-06-16 14:14:36 +05302039 PHY_SINGLE_CHANNEL_CENTERED;
2040 if (chnl_switch_info->newChanWidth) {
2041 if (csa_params->channel <
2042 csa_params->new_ch_freq_seg1)
2043 lim_ch_switch->sec_ch_offset =
2044 PHY_DOUBLE_CHANNEL_LOW_PRIMARY;
2045 else
2046 lim_ch_switch->sec_ch_offset =
2047 PHY_DOUBLE_CHANNEL_HIGH_PRIMARY;
2048 }
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07002049 } else if (csa_params->ies_present_flag
2050 & lim_xcsa_ie_present) {
2051 chan_space =
Kiran Kumar Lokerea3de2262017-04-12 12:15:04 -07002052 wlan_reg_dmn_get_chanwidth_from_opclass(
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07002053 mac_ctx->scan.countryCodeCurrent,
2054 csa_params->channel,
2055 csa_params->new_op_class);
2056 session_entry->gLimChannelSwitch.state =
2057 eLIM_CHANNEL_SWITCH_PRIMARY_AND_SECONDARY;
2058
2059 if (chan_space == 80) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002060 chnl_switch_info->newChanWidth =
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07002061 CH_WIDTH_80MHZ;
2062 } else if (chan_space == 40) {
2063 chnl_switch_info->newChanWidth =
2064 CH_WIDTH_40MHZ;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002065 } else {
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07002066 chnl_switch_info->newChanWidth =
2067 CH_WIDTH_20MHZ;
2068 lim_ch_switch->state =
2069 eLIM_CHANNEL_SWITCH_PRIMARY_ONLY;
2070 }
2071
2072 ch_params.ch_width =
2073 chnl_switch_info->newChanWidth;
Kiran Kumar Lokerea3de2262017-04-12 12:15:04 -07002074 wlan_reg_set_channel_params(mac_ctx->pdev,
2075 csa_params->channel, 0, &ch_params);
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07002076 chnl_switch_info->newCenterChanFreq0 =
2077 ch_params.center_freq_seg0;
2078 /*
2079 * This is not applicable for 20/40/80 MHz.
2080 * Only used when we support 80+80 MHz operation.
2081 * In case of 80+80 MHz, this parameter indicates
2082 * center channel frequency index of 80 MHz
2083 * channel offrequency segment 1.
2084 */
2085 chnl_switch_info->newCenterChanFreq1 =
2086 ch_params.center_freq_seg1;
2087 lim_ch_switch->sec_ch_offset =
2088 ch_params.sec_ch_offset;
2089
Kiran Kumar Lokere47127482017-12-20 18:09:55 -08002090 } else {
2091 lim_ch_switch->state =
2092 eLIM_CHANNEL_SWITCH_PRIMARY_AND_SECONDARY;
2093 ch_params.ch_width = CH_WIDTH_40MHZ;
2094 wlan_reg_set_channel_params(mac_ctx->pdev,
2095 csa_params->channel, 0, &ch_params);
2096 lim_ch_switch->sec_ch_offset =
2097 ch_params.sec_ch_offset;
2098 chnl_switch_info->newChanWidth = CH_WIDTH_40MHZ;
2099 chnl_switch_info->newCenterChanFreq0 =
2100 ch_params.center_freq_seg0;
2101 chnl_switch_info->newCenterChanFreq1 = 0;
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07002102 }
2103 session_entry->gLimChannelSwitch.ch_center_freq_seg0 =
2104 chnl_switch_info->newCenterChanFreq0;
2105 session_entry->gLimChannelSwitch.ch_center_freq_seg1 =
2106 chnl_switch_info->newCenterChanFreq1;
2107 session_entry->gLimChannelSwitch.ch_width =
2108 chnl_switch_info->newChanWidth;
2109
2110 } else if (session_entry->htSupportedChannelWidthSet) {
2111 if (csa_params->ies_present_flag
2112 & lim_xcsa_ie_present) {
2113 chan_space =
Kiran Kumar Lokerea3de2262017-04-12 12:15:04 -07002114 wlan_reg_dmn_get_chanwidth_from_opclass(
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07002115 mac_ctx->scan.countryCodeCurrent,
2116 csa_params->channel,
2117 csa_params->new_op_class);
2118 lim_ch_switch->state =
2119 eLIM_CHANNEL_SWITCH_PRIMARY_AND_SECONDARY;
2120 if (chan_space == 40) {
Kiran Kumar Lokere999e58c2016-01-07 02:18:39 -08002121 lim_ch_switch->ch_width =
2122 CH_WIDTH_40MHZ;
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07002123 chnl_switch_info->newChanWidth =
2124 CH_WIDTH_40MHZ;
2125 ch_params.ch_width =
2126 chnl_switch_info->newChanWidth;
Kiran Kumar Lokerea3de2262017-04-12 12:15:04 -07002127 wlan_reg_set_channel_params(mac_ctx->pdev,
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07002128 csa_params->channel,
Sandeep Puligilla1cc23f62016-04-27 16:52:49 -07002129 0, &ch_params);
Kiran Kumar Lokere999e58c2016-01-07 02:18:39 -08002130 lim_ch_switch->ch_center_freq_seg0 =
2131 ch_params.center_freq_seg0;
2132 lim_ch_switch->sec_ch_offset =
2133 ch_params.sec_ch_offset;
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07002134 } else {
2135 lim_ch_switch->ch_width =
2136 CH_WIDTH_20MHZ;
2137 chnl_switch_info->newChanWidth =
2138 CH_WIDTH_40MHZ;
2139 lim_ch_switch->state =
2140 eLIM_CHANNEL_SWITCH_PRIMARY_ONLY;
2141 lim_ch_switch->sec_ch_offset =
2142 PHY_SINGLE_CHANNEL_CENTERED;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002143 }
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07002144 } else {
2145 lim_ch_switch->ch_width =
2146 CH_WIDTH_40MHZ;
2147 lim_ch_switch->state =
2148 eLIM_CHANNEL_SWITCH_PRIMARY_AND_SECONDARY;
2149 ch_params.ch_width = CH_WIDTH_40MHZ;
Kiran Kumar Lokerea3de2262017-04-12 12:15:04 -07002150 wlan_reg_set_channel_params(mac_ctx->pdev,
2151 csa_params->channel, 0, &ch_params);
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07002152 lim_ch_switch->ch_center_freq_seg0 =
2153 ch_params.center_freq_seg0;
2154 lim_ch_switch->sec_ch_offset =
2155 ch_params.sec_ch_offset;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002156 }
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07002157
2158 }
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05302159 pe_debug("new ch width: %d space: %d",
Chandrasekaran, Manishekarce2172e2016-02-18 16:12:43 +05302160 session_entry->gLimChannelSwitch.ch_width, chan_space);
Kiran Kumar Lokere75d636f2016-12-20 14:52:03 -08002161 if ((session_entry->currentOperChannel == csa_params->channel) &&
2162 (session_entry->ch_width ==
2163 session_entry->gLimChannelSwitch.ch_width)) {
2164 pe_debug("Ignore CSA, no change in ch and bw");
Pragaspathi Thilagaraj655db192018-06-19 17:41:37 +05302165 qdf_mem_free(csa_offload_ind);
Kiran Kumar Lokere75d636f2016-12-20 14:52:03 -08002166 goto err;
2167 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002168
Pragaspathi Thilagaraj5fcd7182018-06-06 13:46:18 +05302169 if (WLAN_REG_IS_24GHZ_CH(csa_params->channel) &&
2170 (session_entry->dot11mode == WNI_CFG_DOT11_MODE_11A))
2171 session_entry->dot11mode = WNI_CFG_DOT11_MODE_11G;
2172 else if (WLAN_REG_IS_5GHZ_CH(csa_params->channel) &&
2173 ((session_entry->dot11mode == WNI_CFG_DOT11_MODE_11G) ||
2174 (session_entry->dot11mode == WNI_CFG_DOT11_MODE_11G_ONLY)))
2175 session_entry->dot11mode = WNI_CFG_DOT11_MODE_11A;
2176
Vignesh Viswanathan3d478032018-08-02 20:18:53 +05302177 /* Send RSO Stop to FW before triggering the vdev restart for CSA */
2178 if (mac_ctx->lim.stop_roaming_callback)
2179 mac_ctx->lim.stop_roaming_callback(mac_ctx,
2180 session_entry->smeSessionId,
2181 ecsr_driver_disabled);
2182
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07002183 lim_prepare_for11h_channel_switch(mac_ctx, session_entry);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002184
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07002185 csa_offload_ind->mesgType = eWNI_SME_CSA_OFFLOAD_EVENT;
2186 csa_offload_ind->mesgLen = sizeof(tSmeCsaOffloadInd);
2187 qdf_mem_copy(csa_offload_ind->bssid.bytes, session_entry->bssId,
2188 QDF_MAC_ADDR_SIZE);
2189 mmh_msg.type = eWNI_SME_CSA_OFFLOAD_EVENT;
2190 mmh_msg.bodyptr = csa_offload_ind;
2191 mmh_msg.bodyval = 0;
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05302192 pe_debug("Sending eWNI_SME_CSA_OFFLOAD_EVENT to SME");
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07002193 MTRACE(mac_trace_msg_tx
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002194 (mac_ctx, session_entry->peSessionId, mmh_msg.type));
2195#ifdef FEATURE_WLAN_DIAG_SUPPORT
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07002196 lim_diag_event_report(mac_ctx,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002197 WLAN_PE_DIAG_SWITCH_CHL_IND_EVENT, session_entry,
Jeff Johnson0301ecb2018-06-29 09:36:23 -07002198 QDF_STATUS_SUCCESS, QDF_STATUS_SUCCESS);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002199#endif
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07002200 lim_sys_process_mmh_msg_api(mac_ctx, &mmh_msg, ePROT);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002201
2202err:
Anurag Chouhan600c3a02016-03-01 10:33:54 +05302203 qdf_mem_free(csa_params);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002204}
2205
2206/*--------------------------------------------------------------------------
2207 \brief pe_delete_session() - Handle the Delete BSS Response from HAL.
2208
2209 \param pMac - pointer to global adapter context
2210 \param sessionId - Message pointer.
2211
2212 \sa
2213 --------------------------------------------------------------------------*/
2214
Rajeev Kumar416b73f2017-01-21 16:45:21 -08002215void lim_handle_delete_bss_rsp(tpAniSirGlobal pMac, struct scheduler_msg *MsgQ)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002216{
2217 tpPESession psessionEntry;
2218 tpDeleteBssParams pDelBss = (tpDeleteBssParams) (MsgQ->bodyptr);
2219
2220 psessionEntry =
2221 pe_find_session_by_session_id(pMac, pDelBss->sessionId);
2222 if (psessionEntry == NULL) {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05302223 pe_err("Session Does not exist for given sessionID: %d",
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002224 pDelBss->sessionId);
Naveen Rawat0c81edc2016-06-08 10:08:30 -07002225 qdf_mem_free(MsgQ->bodyptr);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002226 return;
2227 }
Krunal Sonie50ff452017-10-11 18:23:55 -07002228
2229 /*
Deepak Dhamdhere2dae1bd2016-10-27 10:58:29 -07002230 * During DEL BSS handling, the PE Session will be deleted, but it is
2231 * better to clear this flag if the session is hanging around due
2232 * to some error conditions so that the next DEL_BSS request does
2233 * not take the HO_FAIL path
2234 */
2235 psessionEntry->process_ho_fail = false;
Deepak Dhamdhere13983f22016-05-31 19:06:09 -07002236 if (LIM_IS_IBSS_ROLE(psessionEntry))
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002237 lim_ibss_del_bss_rsp(pMac, MsgQ->bodyptr, psessionEntry);
Deepak Dhamdhere13983f22016-05-31 19:06:09 -07002238 else if (LIM_IS_UNKNOWN_ROLE(psessionEntry))
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002239 lim_process_sme_del_bss_rsp(pMac, MsgQ->bodyval, psessionEntry);
Deepak Dhamdhere13983f22016-05-31 19:06:09 -07002240 else if (LIM_IS_NDI_ROLE(psessionEntry))
2241 lim_ndi_del_bss_rsp(pMac, MsgQ->bodyptr, psessionEntry);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002242 else
2243 lim_process_mlm_del_bss_rsp(pMac, MsgQ, psessionEntry);
2244
2245}
2246
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002247/** -----------------------------------------------------------------
2248 \brief lim_send_sme_aggr_qos_rsp() - sends SME FT AGGR QOS RSP
2249 \ This function sends a eWNI_SME_FT_AGGR_QOS_RSP to SME.
2250 \ SME only looks at rc and tspec field.
2251 \param pMac - global mac structure
2252 \param rspReqd - is SmeAddTsRsp required
2253 \param status - status code of eWNI_SME_FT_AGGR_QOS_RSP
2254 \return tspec
2255 \sa
2256 ----------------------------------------------------------------- */
2257void
2258lim_send_sme_aggr_qos_rsp(tpAniSirGlobal pMac, tpSirAggrQosRsp aggrQosRsp,
2259 uint8_t smesessionId)
2260{
Rajeev Kumar37d478b2017-04-17 16:59:28 -07002261 struct scheduler_msg mmhMsg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002262
2263 mmhMsg.type = eWNI_SME_FT_AGGR_QOS_RSP;
2264 mmhMsg.bodyptr = aggrQosRsp;
2265 mmhMsg.bodyval = 0;
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05302266 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG,
2267 smesessionId, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002268 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
2269
2270 return;
2271}
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002272
2273void lim_send_sme_max_assoc_exceeded_ntf(tpAniSirGlobal pMac, tSirMacAddr peerMacAddr,
2274 uint8_t smesessionId)
2275{
Rajeev Kumar37d478b2017-04-17 16:59:28 -07002276 struct scheduler_msg mmhMsg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002277 tSmeMaxAssocInd *pSmeMaxAssocInd;
2278
Anurag Chouhan600c3a02016-03-01 10:33:54 +05302279 pSmeMaxAssocInd = qdf_mem_malloc(sizeof(tSmeMaxAssocInd));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002280 if (NULL == pSmeMaxAssocInd) {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05302281 pe_err("Failed to allocate memory");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002282 return;
2283 }
Anurag Chouhan600c3a02016-03-01 10:33:54 +05302284 qdf_mem_copy((uint8_t *) pSmeMaxAssocInd->peer_mac.bytes,
Anurag Chouhan6d760662016-02-20 16:05:43 +05302285 (uint8_t *) peerMacAddr, QDF_MAC_ADDR_SIZE);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002286 pSmeMaxAssocInd->mesgType = eWNI_SME_MAX_ASSOC_EXCEEDED;
2287 pSmeMaxAssocInd->mesgLen = sizeof(tSmeMaxAssocInd);
2288 pSmeMaxAssocInd->sessionId = smesessionId;
2289 mmhMsg.type = pSmeMaxAssocInd->mesgType;
2290 mmhMsg.bodyptr = pSmeMaxAssocInd;
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05302291 pe_debug("msgType: %s peerMacAddr "MAC_ADDRESS_STR "sme session id %d",
2292 "eWNI_SME_MAX_ASSOC_EXCEEDED", MAC_ADDR_ARRAY(peerMacAddr),
2293 pSmeMaxAssocInd->sessionId);
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05302294 MTRACE(mac_trace(pMac, TRACE_CODE_TX_SME_MSG,
2295 smesessionId, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002296 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
2297
2298 return;
2299}
2300
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002301/** -----------------------------------------------------------------
2302 \brief lim_send_sme_ap_channel_switch_resp() - sends
2303 eWNI_SME_CHANNEL_CHANGE_RSP
2304 After receiving WMA_SWITCH_CHANNEL_RSP indication this
2305 function sends a eWNI_SME_CHANNEL_CHANGE_RSP to SME to notify
2306 that the Channel change has been done to the specified target
2307 channel in the Channel change request
2308 \param pMac - global mac structure
2309 \param psessionEntry - session info
2310 \param pChnlParams - Channel switch params
2311 --------------------------------------------------------------------*/
2312void
2313lim_send_sme_ap_channel_switch_resp(tpAniSirGlobal pMac,
2314 tpPESession psessionEntry,
2315 tpSwitchChannelParams pChnlParams)
2316{
Rajeev Kumar37d478b2017-04-17 16:59:28 -07002317 struct scheduler_msg mmhMsg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002318 tpSwitchChannelParams pSmeSwithChnlParams;
2319 uint8_t channelId;
Sandeep Puligilla2111d3c2016-02-03 01:46:15 -08002320 bool is_ch_dfs = false;
Kiran Kumar Lokere13644672016-02-29 15:40:10 -08002321 enum phy_ch_width ch_width;
Sandeep Puligilla2111d3c2016-02-03 01:46:15 -08002322 uint8_t ch_center_freq_seg1;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002323
2324 pSmeSwithChnlParams = (tSwitchChannelParams *)
Anurag Chouhan600c3a02016-03-01 10:33:54 +05302325 qdf_mem_malloc(sizeof(tSwitchChannelParams));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002326 if (NULL == pSmeSwithChnlParams) {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05302327 pe_err("AllocateMemory failed for pSmeSwithChnlParams");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002328 return;
2329 }
2330
Anurag Chouhan600c3a02016-03-01 10:33:54 +05302331 qdf_mem_copy(pSmeSwithChnlParams, pChnlParams,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002332 sizeof(tSwitchChannelParams));
2333
2334 channelId = pSmeSwithChnlParams->channelNumber;
Sandeep Puligilla2111d3c2016-02-03 01:46:15 -08002335 ch_width = pSmeSwithChnlParams->ch_width;
2336 ch_center_freq_seg1 = pSmeSwithChnlParams->ch_center_freq_seg1;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002337
2338 /*
2339 * Pass the sme sessionID to SME instead
2340 * PE session ID.
2341 */
2342 pSmeSwithChnlParams->peSessionId = psessionEntry->smeSessionId;
2343
2344 mmhMsg.type = eWNI_SME_CHANNEL_CHANGE_RSP;
2345 mmhMsg.bodyptr = (void *)pSmeSwithChnlParams;
2346 mmhMsg.bodyval = 0;
2347 lim_sys_process_mmh_msg_api(pMac, &mmhMsg, ePROT);
2348
2349 /*
2350 * We should start beacon transmission only if the new
2351 * channel after channel change is Non-DFS. For a DFS
2352 * channel, PE will receive an explicit request from
2353 * upper layers to start the beacon transmission .
2354 */
2355
Sandeep Puligilla2111d3c2016-02-03 01:46:15 -08002356 if (ch_width == CH_WIDTH_160MHZ) {
2357 is_ch_dfs = true;
2358 } else if (ch_width == CH_WIDTH_80P80MHZ) {
Kiran Kumar Lokerea3de2262017-04-12 12:15:04 -07002359 if (wlan_reg_get_channel_state(pMac->pdev, channelId) ==
2360 CHANNEL_STATE_DFS ||
2361 wlan_reg_get_channel_state(pMac->pdev,
2362 ch_center_freq_seg1 -
2363 SIR_80MHZ_START_CENTER_CH_DIFF) ==
Sandeep Puligilla2111d3c2016-02-03 01:46:15 -08002364 CHANNEL_STATE_DFS)
2365 is_ch_dfs = true;
2366 } else {
Kiran Kumar Lokerea3de2262017-04-12 12:15:04 -07002367 if (wlan_reg_get_channel_state(pMac->pdev, channelId) ==
2368 CHANNEL_STATE_DFS)
Sandeep Puligilla2111d3c2016-02-03 01:46:15 -08002369 is_ch_dfs = true;
2370 }
2371
2372 if (!is_ch_dfs) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002373 if (channelId == psessionEntry->currentOperChannel) {
2374 lim_apply_configuration(pMac, psessionEntry);
2375 lim_send_beacon_ind(pMac, psessionEntry);
2376 } else {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05302377 pe_debug("Failed to Transmit Beacons on channel: %d after AP channel change response",
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002378 psessionEntry->bcnLen);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002379 }
Arif Hussain1513cb22018-01-05 19:56:31 -08002380
2381 lim_obss_send_detection_cfg(pMac, psessionEntry, true);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002382 }
2383 return;
2384}
2385
Peng Xu6363ec62017-05-15 11:06:33 -07002386#ifdef WLAN_FEATURE_11AX_BSS_COLOR
2387/**
2388 * lim_send_bss_color_change_ie_update() - update bss color change IE in
2389 * beacon template
2390 *
2391 * @mac_ctx: pointer to global adapter context
2392 * @session: session pointer
2393 *
2394 * Return: none
2395 */
2396static void
2397lim_send_bss_color_change_ie_update(tpAniSirGlobal mac_ctx,
2398 tpPESession session)
2399{
2400 /* Update the beacon template and send to FW */
Jeff Johnson0301ecb2018-06-29 09:36:23 -07002401 if (sch_set_fixed_beacon_fields(mac_ctx, session) != QDF_STATUS_SUCCESS) {
Peng Xu6363ec62017-05-15 11:06:33 -07002402 pe_err("Unable to set BSS color change IE in beacon");
2403 return;
2404 }
2405
2406 /* Send update beacon template message */
2407 lim_send_beacon_ind(mac_ctx, session);
Tushnim Bhattacharyya332b74c2018-08-10 10:55:51 -07002408 pe_debug("Updated BSS color change countdown = %d",
2409 session->he_bss_color_change.countdown);
Peng Xu6363ec62017-05-15 11:06:33 -07002410}
2411
2412static void
2413lim_handle_bss_color_change_ie(tpAniSirGlobal mac_ctx,
2414 tpPESession session)
2415{
Arif Hussain2f2d3512018-03-06 12:37:03 -08002416 tUpdateBeaconParams beacon_params;
2417
Peng Xu6363ec62017-05-15 11:06:33 -07002418 /* handle bss color change IE */
2419 if (LIM_IS_AP_ROLE(session) &&
2420 session->he_op.bss_col_disabled) {
2421 if (session->he_bss_color_change.countdown > 0) {
2422 session->he_bss_color_change.countdown--;
2423 } else {
2424 session->bss_color_changing = 0;
Arif Hussain2f2d3512018-03-06 12:37:03 -08002425 qdf_mem_zero(&beacon_params, sizeof(beacon_params));
Arif Hussain05fb4872018-01-03 16:02:55 -08002426 if (session->he_bss_color_change.new_color != 0) {
Peng Xu6363ec62017-05-15 11:06:33 -07002427 session->he_op.bss_col_disabled = 0;
Arif Hussain05fb4872018-01-03 16:02:55 -08002428 session->he_op.bss_color =
2429 session->he_bss_color_change.new_color;
Arif Hussain2f2d3512018-03-06 12:37:03 -08002430 beacon_params.paramChangeBitmap |=
2431 PARAM_BSS_COLOR_CHANGED;
2432 beacon_params.bss_color_disabled = 0;
2433 beacon_params.bss_color =
2434 session->he_op.bss_color;
2435 lim_send_beacon_params(mac_ctx,
2436 &beacon_params,
2437 session);
Arif Hussain05fb4872018-01-03 16:02:55 -08002438 lim_send_obss_color_collision_cfg(mac_ctx,
2439 session,
2440 OBSS_COLOR_COLLISION_DETECTION);
2441 }
Peng Xu6363ec62017-05-15 11:06:33 -07002442 }
2443
2444 lim_send_bss_color_change_ie_update(mac_ctx, session);
2445 }
2446}
2447
2448#else
2449static void
2450lim_handle_bss_color_change_ie(tpAniSirGlobal mac_ctx,
2451 tpPESession session)
2452{
2453}
2454#endif
2455
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002456void
Pragaspathi Thilagaraj934275c2018-08-07 14:55:35 +05302457lim_process_beacon_tx_success_ind(tpAniSirGlobal mac_ctx, uint16_t msgType,
2458 void *event)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002459{
Pragaspathi Thilagaraj934275c2018-08-07 14:55:35 +05302460 tpPESession session;
2461 struct scheduler_msg msg = {0};
2462 struct sir_beacon_tx_complete_rsp *bcn_tx_comp_rsp;
2463 tpSirFirstBeaconTxCompleteInd bcn_ind =
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002464 (tSirFirstBeaconTxCompleteInd *) event;
Pragaspathi Thilagaraj934275c2018-08-07 14:55:35 +05302465 QDF_STATUS status;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002466
Pragaspathi Thilagaraj934275c2018-08-07 14:55:35 +05302467 session = pe_find_session_by_bss_idx(mac_ctx, bcn_ind->bssIdx);
2468 if (!session) {
2469 pe_err("Session Does not exist for given session id");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002470 return;
2471 }
2472
Pragaspathi Thilagaraj934275c2018-08-07 14:55:35 +05302473 pe_debug("role: %d swIe: %d opIe: %d switch cnt:%d",
2474 GET_LIM_SYSTEM_ROLE(session),
2475 session->dfsIncludeChanSwIe,
2476 session->gLimOperatingMode.present,
2477 session->gLimChannelSwitch.switchCount);
Chandrasekaran, Manishekarce2172e2016-02-18 16:12:43 +05302478
Pragaspathi Thilagaraj934275c2018-08-07 14:55:35 +05302479 if (!LIM_IS_AP_ROLE(session))
2480 return;
Ganesh Kondabattini02ec62b2018-01-24 18:22:24 +05302481
Pragaspathi Thilagaraj934275c2018-08-07 14:55:35 +05302482 if (session->dfsIncludeChanSwIe &&
2483 (session->gLimChannelSwitch.switchCount ==
2484 mac_ctx->sap.SapDfsInfo.sap_ch_switch_beacon_cnt))
2485 lim_process_ap_ecsa_timeout(session);
Ganesh Kondabattini02ec62b2018-01-24 18:22:24 +05302486
lifeng1c16b6b2017-09-25 13:59:55 +08002487
Pragaspathi Thilagaraj934275c2018-08-07 14:55:35 +05302488 if (session->gLimOperatingMode.present) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002489 /* Done with nss update, send response back to SME */
Pragaspathi Thilagaraj934275c2018-08-07 14:55:35 +05302490 session->gLimOperatingMode.present = 0;
2491 bcn_tx_comp_rsp = (struct sir_beacon_tx_complete_rsp *)
2492 qdf_mem_malloc(sizeof(*bcn_tx_comp_rsp));
2493 if (NULL == bcn_tx_comp_rsp) {
2494 pe_err("AllocateMemory failed for bcn_tx_comp_rsp");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002495 return;
2496 }
Pragaspathi Thilagaraj934275c2018-08-07 14:55:35 +05302497 bcn_tx_comp_rsp->session_id = session->smeSessionId;
2498 bcn_tx_comp_rsp->tx_status = QDF_STATUS_SUCCESS;
2499 msg.type = eWNI_SME_NSS_UPDATE_RSP;
2500 msg.bodyptr = bcn_tx_comp_rsp;
2501 msg.bodyval = 0;
2502 status = scheduler_post_msg(QDF_MODULE_ID_SME, &msg);
2503 if (QDF_IS_STATUS_ERROR(status)) {
2504 sme_err("Failed to post eWNI_SME_NSS_UPDATE_RSP");
2505 qdf_mem_free(bcn_tx_comp_rsp);
2506 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002507 }
Peng Xu6363ec62017-05-15 11:06:33 -07002508
Pragaspathi Thilagaraj934275c2018-08-07 14:55:35 +05302509 lim_handle_bss_color_change_ie(mac_ctx, session);
Peng Xu6363ec62017-05-15 11:06:33 -07002510
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002511 return;
2512}