blob: 8b0fc99dbddf8e0604b1d2d9d338fd644f200342 [file] [log] [blame]
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001/*
Wu Gao6768d762018-12-28 16:31:08 +08002 * Copyright (c) 2012-2019 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"
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080037
38#include "sch_api.h"
39#include "utils_api.h"
40#include "lim_utils.h"
41#include "lim_security_utils.h"
42#include "lim_ser_des_utils.h"
43#include "lim_send_sme_rsp_messages.h"
44#include "lim_ibss_peer_mgmt.h"
45#include "lim_session_utils.h"
46#include "lim_types.h"
47#include "sir_api.h"
Naveen Rawat3b6068c2016-04-14 19:01:06 -070048#include "cds_regdomain.h"
Gupta, Kapil121bf212015-11-25 19:21:29 +053049#include "lim_send_messages.h"
Deepak Dhamdhere13983f22016-05-31 19:06:09 -070050#include "nan_datapath.h"
Sandeep Puligilla7e3e3c52016-09-02 17:54:21 -070051#include "lim_assoc_utils.h"
Kiran Kumar Lokerea3de2262017-04-12 12:15:04 -070052#include "wlan_reg_services_api.h"
Naveen Rawat08db88f2017-09-08 15:07:48 -070053#include "wlan_utility.h"
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080054
Kabilan Kannanf56f9d52017-04-05 03:31:34 -070055#include "wlan_tdls_tgt_api.h"
Sridhar Selvaraj0d5d2c72017-08-17 17:30:01 +053056#include "lim_process_fils.h"
Kiran Kumar Lokere05a0658a2018-02-01 21:34:27 -080057#include "wma.h"
Kabilan Kannanf56f9d52017-04-05 03:31:34 -070058
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080059/**
60 * lim_send_sme_rsp() - Send Response to upper layers
61 * @mac_ctx: Pointer to Global MAC structure
62 * @msg_type: Indicates message type
63 * @result_code: Indicates the result of previously issued
64 * eWNI_SME_msg_type_REQ message
65 *
66 * This function is called by lim_process_sme_req_messages() to send
67 * eWNI_SME_START_RSP, eWNI_SME_STOP_BSS_RSP
68 * or eWNI_SME_SWITCH_CHL_RSP messages to applications above MAC
69 * Software.
70 *
71 * Return: None
72 */
73
74void
Jeff Johnson9320c1e2018-12-02 13:09:20 -080075lim_send_sme_rsp(struct mac_context *mac_ctx, uint16_t msg_type,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080076 tSirResultCodes result_code, uint8_t sme_session_id,
77 uint16_t sme_transaction_id)
78{
Rajeev Kumar37d478b2017-04-17 16:59:28 -070079 struct scheduler_msg msg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080080 tSirSmeRsp *sme_rsp;
81
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +053082 pe_debug("Sending message: %s with reasonCode: %s",
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080083 lim_msg_str(msg_type), lim_result_code_str(result_code));
84
Anurag Chouhan600c3a02016-03-01 10:33:54 +053085 sme_rsp = qdf_mem_malloc(sizeof(tSirSmeRsp));
Arif Hussainf5b6c412018-10-10 19:41:09 -070086 if (!sme_rsp)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080087 return;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080088
89 sme_rsp->messageType = msg_type;
90 sme_rsp->length = sizeof(tSirSmeRsp);
91 sme_rsp->statusCode = result_code;
92
93 sme_rsp->sessionId = sme_session_id;
94 sme_rsp->transactionId = sme_transaction_id;
95
96 msg.type = msg_type;
97 msg.bodyptr = sme_rsp;
98 msg.bodyval = 0;
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +053099 MTRACE(mac_trace(mac_ctx, TRACE_CODE_TX_SME_MSG,
100 sme_session_id, msg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800101
102#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
103 switch (msg_type) {
104 case eWNI_SME_STOP_BSS_RSP:
105 lim_diag_event_report(mac_ctx, WLAN_PE_DIAG_STOP_BSS_RSP_EVENT,
106 NULL, (uint16_t) result_code, 0);
107 break;
108 }
109#endif /* FEATURE_WLAN_DIAG_SUPPORT */
Jeff Johnsona5abe272019-01-06 12:52:02 -0800110 lim_sys_process_mmh_msg_api(mac_ctx, &msg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800111}
112
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800113/**
Kanchanapally, Vidyullathae3062812015-05-22 17:28:57 +0530114 * lim_get_max_rate_flags() - Get rate flags
115 * @mac_ctx: Pointer to global MAC structure
116 * @sta_ds: Pointer to station ds structure
117 *
118 * This function is called to get the rate flags for a connection
119 * from the station ds structure depending on the ht and the vht
120 * channel width supported.
121 *
122 * Return: Returns the populated rate_flags
123 */
Jeff Johnson9320c1e2018-12-02 13:09:20 -0800124uint32_t lim_get_max_rate_flags(struct mac_context *mac_ctx, tpDphHashNode sta_ds)
Kanchanapally, Vidyullathae3062812015-05-22 17:28:57 +0530125{
126 uint32_t rate_flags = 0;
127
128 if (sta_ds == NULL) {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530129 pe_err("sta_ds is NULL");
Kanchanapally, Vidyullathae3062812015-05-22 17:28:57 +0530130 return rate_flags;
131 }
132
133 if (!sta_ds->mlmStaContext.htCapability &&
134 !sta_ds->mlmStaContext.vhtCapability) {
Naveen Rawatea1564b2018-05-17 15:56:11 -0700135 rate_flags |= TX_RATE_LEGACY;
Kanchanapally, Vidyullathae3062812015-05-22 17:28:57 +0530136 } else {
137 if (sta_ds->mlmStaContext.vhtCapability) {
138 if (WNI_CFG_VHT_CHANNEL_WIDTH_80MHZ ==
139 sta_ds->vhtSupportedChannelWidthSet) {
Naveen Rawatea1564b2018-05-17 15:56:11 -0700140 rate_flags |= TX_RATE_VHT80;
Kanchanapally, Vidyullathae3062812015-05-22 17:28:57 +0530141 } else if (WNI_CFG_VHT_CHANNEL_WIDTH_20_40MHZ ==
142 sta_ds->vhtSupportedChannelWidthSet) {
143 if (sta_ds->htSupportedChannelWidthSet)
Naveen Rawatea1564b2018-05-17 15:56:11 -0700144 rate_flags |= TX_RATE_VHT40;
Kanchanapally, Vidyullathae3062812015-05-22 17:28:57 +0530145 else
Naveen Rawatea1564b2018-05-17 15:56:11 -0700146 rate_flags |= TX_RATE_VHT20;
Kanchanapally, Vidyullathae3062812015-05-22 17:28:57 +0530147 }
148 } else if (sta_ds->mlmStaContext.htCapability) {
149 if (sta_ds->htSupportedChannelWidthSet)
Naveen Rawatea1564b2018-05-17 15:56:11 -0700150 rate_flags |= TX_RATE_HT40;
Kanchanapally, Vidyullathae3062812015-05-22 17:28:57 +0530151 else
Naveen Rawatea1564b2018-05-17 15:56:11 -0700152 rate_flags |= TX_RATE_HT20;
Kanchanapally, Vidyullathae3062812015-05-22 17:28:57 +0530153 }
154 }
155
156 if (sta_ds->htShortGI20Mhz || sta_ds->htShortGI40Mhz)
Naveen Rawatea1564b2018-05-17 15:56:11 -0700157 rate_flags |= TX_RATE_SGI;
Kanchanapally, Vidyullathae3062812015-05-22 17:28:57 +0530158
159 return rate_flags;
160}
161
162/**
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800163 * lim_send_sme_join_reassoc_rsp_after_resume() - Send Response to SME
Jeff Johnson2df04b82019-02-02 23:30:25 -0800164 * @mac_ctx: Pointer to Global MAC structure
165 * @status: Resume link status
166 * @sme_join_rsp: Join response to be sent
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800167 *
168 * This function is called to send Join/Reassoc rsp
169 * message to SME after the resume link.
170 *
171 * Return: None
172 */
Jeff Johnson2df04b82019-02-02 23:30:25 -0800173static void
174lim_send_sme_join_reassoc_rsp_after_resume(struct mac_context *mac_ctx,
175 QDF_STATUS status,
176 struct join_rsp *sme_join_rsp)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800177{
Rajeev Kumar37d478b2017-04-17 16:59:28 -0700178 struct scheduler_msg msg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800179
180 msg.type = sme_join_rsp->messageType;
181 msg.bodyptr = sme_join_rsp;
182 msg.bodyval = 0;
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +0530183 MTRACE(mac_trace(mac_ctx, TRACE_CODE_TX_SME_MSG, NO_SESSION, msg.type));
Jeff Johnsona5abe272019-01-06 12:52:02 -0800184 lim_sys_process_mmh_msg_api(mac_ctx, &msg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800185}
186
187/**
188 * lim_handle_join_rsp_status() - Handle the response.
189 * @mac_ctx: Pointer to Global MAC structure
190 * @session_entry: PE Session Info
191 * @result_code: Indicates the result of previously issued
192 * eWNI_SME_msgType_REQ message
193 * @sme_join_rsp The received response.
194 *
195 * This function will handle both the success and failure status
196 * of the received response.
197 *
198 * Return: None
199 */
Jeff Johnson9320c1e2018-12-02 13:09:20 -0800200static void lim_handle_join_rsp_status(struct mac_context *mac_ctx,
Jeff Johnson2df04b82019-02-02 23:30:25 -0800201 struct pe_session *session_entry,
202 tSirResultCodes result_code,
203 struct join_rsp *sme_join_rsp)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800204{
Naveen Rawatc4a0e662017-05-19 08:06:57 -0700205 uint16_t bss_ie_len;
206 void *bss_ies;
207 bool is_vendor_ap_1_present;
Jeff Johnson701444f2019-02-02 22:35:13 -0800208 struct join_req *join_reassoc_req = NULL;
Naveen Rawatc4a0e662017-05-19 08:06:57 -0700209
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800210#ifdef FEATURE_WLAN_MCC_TO_SCC_SWITCH
Jeff Johnson704af112019-02-02 16:11:55 -0800211 struct ht_profile *ht_profile;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800212#endif
213 if (result_code == eSIR_SME_SUCCESS) {
214 if (session_entry->beacon != NULL) {
215 sme_join_rsp->beaconLength = session_entry->bcnLen;
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530216 qdf_mem_copy(sme_join_rsp->frames,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800217 session_entry->beacon,
218 sme_join_rsp->beaconLength);
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530219 qdf_mem_free(session_entry->beacon);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800220 session_entry->beacon = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530221 session_entry->bcnLen = 0;
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530222 pe_debug("Beacon: %d",
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530223 sme_join_rsp->beaconLength);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800224 }
225 if (session_entry->assocReq != NULL) {
226 sme_join_rsp->assocReqLength =
227 session_entry->assocReqLen;
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530228 qdf_mem_copy(sme_join_rsp->frames +
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530229 sme_join_rsp->beaconLength,
230 session_entry->assocReq,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800231 sme_join_rsp->assocReqLength);
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530232 qdf_mem_free(session_entry->assocReq);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800233 session_entry->assocReq = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530234 session_entry->assocReqLen = 0;
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530235 pe_debug("AssocReq: %d",
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530236 sme_join_rsp->assocReqLength);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800237 }
238 if (session_entry->assocRsp != NULL) {
239 sme_join_rsp->assocRspLength =
240 session_entry->assocRspLen;
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530241 qdf_mem_copy(sme_join_rsp->frames +
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530242 sme_join_rsp->beaconLength +
243 sme_join_rsp->assocReqLength,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800244 session_entry->assocRsp,
245 sme_join_rsp->assocRspLength);
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530246 qdf_mem_free(session_entry->assocRsp);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800247 session_entry->assocRsp = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530248 session_entry->assocRspLen = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800249 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800250 if (session_entry->ricData != NULL) {
251 sme_join_rsp->parsedRicRspLen =
252 session_entry->RICDataLen;
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530253 qdf_mem_copy(sme_join_rsp->frames +
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530254 sme_join_rsp->beaconLength +
255 sme_join_rsp->assocReqLength +
256 sme_join_rsp->assocRspLength,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800257 session_entry->ricData,
258 sme_join_rsp->parsedRicRspLen);
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530259 qdf_mem_free(session_entry->ricData);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800260 session_entry->ricData = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530261 session_entry->RICDataLen = 0;
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530262 pe_debug("RicLength: %d",
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800263 sme_join_rsp->parsedRicRspLen);
264 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800265#ifdef FEATURE_WLAN_ESE
266 if (session_entry->tspecIes != NULL) {
267 sme_join_rsp->tspecIeLen =
268 session_entry->tspecLen;
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530269 qdf_mem_copy(sme_join_rsp->frames +
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530270 sme_join_rsp->beaconLength +
271 sme_join_rsp->assocReqLength +
272 sme_join_rsp->assocRspLength +
273 sme_join_rsp->parsedRicRspLen,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800274 session_entry->tspecIes,
275 sme_join_rsp->tspecIeLen);
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530276 qdf_mem_free(session_entry->tspecIes);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800277 session_entry->tspecIes = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530278 session_entry->tspecLen = 0;
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530279 pe_debug("ESE-TspecLen: %d",
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530280 sme_join_rsp->tspecIeLen);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800281 }
282#endif
283 sme_join_rsp->aid = session_entry->limAID;
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530284 pe_debug("AssocRsp: %d",
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530285 sme_join_rsp->assocRspLength);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800286 sme_join_rsp->vht_channel_width =
287 session_entry->ch_width;
288#ifdef FEATURE_WLAN_MCC_TO_SCC_SWITCH
289 if (session_entry->cc_switch_mode !=
Anurag Chouhanf04e84f2016-03-03 10:12:12 +0530290 QDF_MCC_TO_SCC_SWITCH_DISABLE) {
Jeff Johnsonf6541882019-02-02 16:16:00 -0800291 ht_profile = &sme_join_rsp->ht_profile;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800292 ht_profile->htSupportedChannelWidthSet =
293 session_entry->htSupportedChannelWidthSet;
294 ht_profile->htRecommendedTxWidthSet =
295 session_entry->htRecommendedTxWidthSet;
296 ht_profile->htSecondaryChannelOffset =
297 session_entry->htSecondaryChannelOffset;
298 ht_profile->dot11mode = session_entry->dot11mode;
299 ht_profile->htCapability = session_entry->htCapability;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800300 ht_profile->vhtCapability =
301 session_entry->vhtCapability;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800302 ht_profile->apCenterChan = session_entry->ch_center_freq_seg0;
303 ht_profile->apChanWidth = session_entry->ch_width;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800304 }
305#endif
Jeff Johnson11bd4f32017-09-18 08:15:17 -0700306 pe_debug("pLimJoinReq:%pK, pLimReAssocReq:%pK",
Wu Gao2968fc92017-06-19 19:18:34 +0800307 session_entry->pLimJoinReq,
308 session_entry->pLimReAssocReq);
309
310 if (session_entry->pLimJoinReq)
311 join_reassoc_req = session_entry->pLimJoinReq;
312
313 if (session_entry->pLimReAssocReq)
314 join_reassoc_req = session_entry->pLimReAssocReq;
315
316 if (!join_reassoc_req) {
317 pe_err("both pLimJoinReq and pLimReAssocReq NULL");
318 return;
319 }
320
Naveen Rawatc4a0e662017-05-19 08:06:57 -0700321 bss_ie_len = lim_get_ielen_from_bss_description(
Wu Gao2968fc92017-06-19 19:18:34 +0800322 &join_reassoc_req->bssDescription);
323 bss_ies = &join_reassoc_req->bssDescription.ieFields;
Naveen Rawat08db88f2017-09-08 15:07:48 -0700324 is_vendor_ap_1_present = (wlan_get_vendor_ie_ptr_from_oui(
Naveen Rawatc4a0e662017-05-19 08:06:57 -0700325 SIR_MAC_VENDOR_AP_1_OUI, SIR_MAC_VENDOR_AP_1_OUI_LEN,
326 bss_ies, bss_ie_len) != NULL);
327
328 if (mac_ctx->roam.configParam.is_force_1x1 &&
Krunal Sonie6a1cda2017-09-27 15:23:02 -0700329 is_vendor_ap_1_present && (session_entry->nss == 2) &&
330 (mac_ctx->lteCoexAntShare == 0 ||
331 IS_5G_CH(session_entry->currentOperChannel))) {
Naveen Rawatc4a0e662017-05-19 08:06:57 -0700332 /* SET vdev param */
333 pe_debug("sending SMPS intolrent vdev_param");
334 wma_cli_set_command(session_entry->smeSessionId,
335 (int)WMI_VDEV_PARAM_SMPS_INTOLERANT,
336 1, VDEV_CMD);
337
338 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800339 } else {
340 if (session_entry->beacon != NULL) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530341 qdf_mem_free(session_entry->beacon);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800342 session_entry->beacon = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530343 session_entry->bcnLen = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800344 }
345 if (session_entry->assocReq != NULL) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530346 qdf_mem_free(session_entry->assocReq);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800347 session_entry->assocReq = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530348 session_entry->assocReqLen = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800349 }
350 if (session_entry->assocRsp != NULL) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530351 qdf_mem_free(session_entry->assocRsp);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800352 session_entry->assocRsp = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530353 session_entry->assocRspLen = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800354 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800355 if (session_entry->ricData != NULL) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530356 qdf_mem_free(session_entry->ricData);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800357 session_entry->ricData = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530358 session_entry->RICDataLen = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800359 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800360#ifdef FEATURE_WLAN_ESE
361 if (session_entry->tspecIes != NULL) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530362 qdf_mem_free(session_entry->tspecIes);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800363 session_entry->tspecIes = NULL;
Sreelakshmi Konamki3b8ba612015-12-02 18:13:22 +0530364 session_entry->tspecLen = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800365 }
366#endif
367 }
368}
Anurag Chouhan5de8d172016-07-13 14:44:28 +0530369
370/**
371 * lim_add_bss_info() - copy data from session entry to join rsp
Selvaraj, Sridhare01e0732016-09-13 12:45:22 +0530372 * @sta_ds: Station dph entry
Anurag Chouhan5de8d172016-07-13 14:44:28 +0530373 * @sme_join_rsp: Join response buffer to be filled up
374 *
375 * Return: None
376 */
Jeff Johnson2df04b82019-02-02 23:30:25 -0800377static void lim_add_bss_info(tpDphHashNode sta_ds,
378 struct join_rsp *sme_join_rsp)
Anurag Chouhan5de8d172016-07-13 14:44:28 +0530379{
Selvaraj, Sridhare01e0732016-09-13 12:45:22 +0530380 struct parsed_ies *parsed_ies = &sta_ds->parsed_ies;
381
382 if (parsed_ies->hs20vendor_ie.present)
383 sme_join_rsp->hs20vendor_ie = parsed_ies->hs20vendor_ie;
384 if (parsed_ies->vht_caps.present)
385 sme_join_rsp->vht_caps = parsed_ies->vht_caps;
386 if (parsed_ies->ht_caps.present)
387 sme_join_rsp->ht_caps = parsed_ies->ht_caps;
388 if (parsed_ies->ht_operation.present)
389 sme_join_rsp->ht_operation = parsed_ies->ht_operation;
390 if (parsed_ies->vht_operation.present)
391 sme_join_rsp->vht_operation = parsed_ies->vht_operation;
Anurag Chouhan5de8d172016-07-13 14:44:28 +0530392}
393
Sridhar Selvaraj0d5d2c72017-08-17 17:30:01 +0530394#ifdef WLAN_FEATURE_FILS_SK
Jeff Johnson2df04b82019-02-02 23:30:25 -0800395static void lim_update_fils_seq_num(struct join_rsp *sme_join_rsp,
Jeff Johnsond7035a32018-11-18 22:03:13 -0800396 struct pe_session *session_entry)
Sridhar Selvaraj0d5d2c72017-08-17 17:30:01 +0530397{
398 sme_join_rsp->fils_seq_num =
399 session_entry->fils_info->sequence_number;
400}
401#else
Jeff Johnson2df04b82019-02-02 23:30:25 -0800402static inline void lim_update_fils_seq_num(struct join_rsp *sme_join_rsp,
Jeff Johnsond7035a32018-11-18 22:03:13 -0800403 struct pe_session *session_entry)
Sridhar Selvaraj0d5d2c72017-08-17 17:30:01 +0530404{}
405#endif
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800406
Jeff Johnson27b98962019-02-20 20:53:08 -0800407void lim_send_sme_join_reassoc_rsp(struct mac_context *mac_ctx,
408 uint16_t msg_type,
409 tSirResultCodes result_code,
410 uint16_t prot_status_code,
411 struct pe_session *session_entry,
412 uint8_t sme_session_id)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800413{
Jeff Johnson2df04b82019-02-02 23:30:25 -0800414 struct join_rsp *sme_join_rsp;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800415 uint32_t rsp_len;
416 tpDphHashNode sta_ds = NULL;
417#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
418 if (msg_type == eWNI_SME_REASSOC_RSP)
419 lim_diag_event_report(mac_ctx, WLAN_PE_DIAG_REASSOC_RSP_EVENT,
420 session_entry, (uint16_t) result_code, 0);
421 else
422 lim_diag_event_report(mac_ctx, WLAN_PE_DIAG_JOIN_RSP_EVENT,
423 session_entry, (uint16_t) result_code, 0);
424#endif /* FEATURE_WLAN_DIAG_SUPPORT */
425
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530426 pe_debug("Sending message: %s with reasonCode: %s",
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800427 lim_msg_str(msg_type), lim_result_code_str(result_code));
428
429 if (session_entry == NULL) {
Jeff Johnson2df04b82019-02-02 23:30:25 -0800430 rsp_len = sizeof(*sme_join_rsp);
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530431 sme_join_rsp = qdf_mem_malloc(rsp_len);
Arif Hussainf5b6c412018-10-10 19:41:09 -0700432 if (!sme_join_rsp)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800433 return;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800434
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800435 sme_join_rsp->beaconLength = 0;
436 sme_join_rsp->assocReqLength = 0;
437 sme_join_rsp->assocRspLength = 0;
438 } else {
439 rsp_len = session_entry->assocReqLen +
440 session_entry->assocRspLen + session_entry->bcnLen +
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800441 session_entry->RICDataLen +
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800442#ifdef FEATURE_WLAN_ESE
443 session_entry->tspecLen +
444#endif
Jeff Johnson2df04b82019-02-02 23:30:25 -0800445 sizeof(*sme_join_rsp) - sizeof(uint8_t);
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530446 sme_join_rsp = qdf_mem_malloc(rsp_len);
Arif Hussainf5b6c412018-10-10 19:41:09 -0700447 if (!sme_join_rsp)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800448 return;
Sridhar Selvaraj0d5d2c72017-08-17 17:30:01 +0530449
450 if (lim_is_fils_connection(session_entry)) {
451 sme_join_rsp->is_fils_connection = true;
452 lim_update_fils_seq_num(sme_join_rsp,
453 session_entry);
454 }
455
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800456 if (result_code == eSIR_SME_SUCCESS) {
457 sta_ds = dph_get_hash_entry(mac_ctx,
458 DPH_STA_HASH_INDEX_PEER,
459 &session_entry->dph.dphHashTable);
460 if (sta_ds == NULL) {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530461 pe_err("Get Self Sta Entry fail");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800462 } else {
463 /* Pass the peer's staId */
464 sme_join_rsp->staId = sta_ds->staIndex;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800465 sme_join_rsp->timingMeasCap =
466 sta_ds->timingMeasCap;
467#ifdef FEATURE_WLAN_TDLS
468 sme_join_rsp->tdls_prohibited =
469 session_entry->tdls_prohibited;
470 sme_join_rsp->tdls_chan_swit_prohibited =
471 session_entry->tdls_chan_swit_prohibited;
472#endif
Kanchanapally, Vidyullathae3062812015-05-22 17:28:57 +0530473 sme_join_rsp->nss = sta_ds->nss;
474 sme_join_rsp->max_rate_flags =
475 lim_get_max_rate_flags(mac_ctx, sta_ds);
Selvaraj, Sridhare01e0732016-09-13 12:45:22 +0530476 lim_add_bss_info(sta_ds, sme_join_rsp);
Sridhar Selvaraj0d5d2c72017-08-17 17:30:01 +0530477
478 /* Copy FILS params only for Successful join */
479 populate_fils_connect_params(mac_ctx,
480 session_entry, sme_join_rsp);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800481 }
482 }
Sridhar Selvaraj0d5d2c72017-08-17 17:30:01 +0530483
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800484 sme_join_rsp->beaconLength = 0;
485 sme_join_rsp->assocReqLength = 0;
486 sme_join_rsp->assocRspLength = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800487 sme_join_rsp->parsedRicRspLen = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800488#ifdef FEATURE_WLAN_ESE
489 sme_join_rsp->tspecIeLen = 0;
490#endif
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800491 lim_handle_join_rsp_status(mac_ctx, session_entry, result_code,
492 sme_join_rsp);
Bala Venkateshe7f79162019-01-16 16:43:59 +0530493 sme_join_rsp->uapsd_mask = session_entry->gUapsdPerAcBitmask;
Archana Ramachandran20d2e232016-02-11 16:58:40 -0800494 /* Send supported NSS 1x1 to SME */
495 sme_join_rsp->supported_nss_1x1 =
496 session_entry->supported_nss_1x1;
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530497 pe_debug("SME Join Rsp is supported NSS 1X1: %d",
Archana Ramachandran20d2e232016-02-11 16:58:40 -0800498 sme_join_rsp->supported_nss_1x1);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800499 }
500
501 sme_join_rsp->messageType = msg_type;
502 sme_join_rsp->length = (uint16_t) rsp_len;
503 sme_join_rsp->statusCode = result_code;
504 sme_join_rsp->protStatusCode = prot_status_code;
505
506 sme_join_rsp->sessionId = sme_session_id;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800507
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530508 lim_send_sme_join_reassoc_rsp_after_resume(mac_ctx, QDF_STATUS_SUCCESS,
Jeff Johnson2df04b82019-02-02 23:30:25 -0800509 sme_join_rsp);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800510}
511
Jeff Johnson9e3d8992019-02-20 20:11:48 -0800512void lim_send_sme_start_bss_rsp(struct mac_context *mac,
513 uint16_t msgType,
514 tSirResultCodes resultCode,
515 struct pe_session *pe_session,
516 uint8_t smesessionId)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800517{
518
519 uint16_t size = 0;
Rajeev Kumar37d478b2017-04-17 16:59:28 -0700520 struct scheduler_msg mmhMsg = {0};
Jeff Johnsona0d34622019-02-02 17:26:19 -0800521 struct start_bss_rsp *pSirSmeRsp;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800522 uint16_t ieLen;
523 uint16_t ieOffset, curLen;
524
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530525 pe_debug("Sending message: %s with reasonCode: %s",
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800526 lim_msg_str(msgType), lim_result_code_str(resultCode));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800527
Jeff Johnsona0d34622019-02-02 17:26:19 -0800528 size = sizeof(struct start_bss_rsp);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800529
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800530 if (pe_session == NULL) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530531 pSirSmeRsp = qdf_mem_malloc(size);
Arif Hussainf5b6c412018-10-10 19:41:09 -0700532 if (!pSirSmeRsp)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800533 return;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800534 } else {
535 /* subtract size of beaconLength + Mac Hdr + Fixed Fields before SSID */
536 ieOffset = sizeof(tAniBeaconStruct) + SIR_MAC_B_PR_SSID_OFFSET;
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800537 ieLen = pe_session->schBeaconOffsetBegin
538 + pe_session->schBeaconOffsetEnd - ieOffset;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800539 /* calculate the memory size to allocate */
540 size += ieLen;
541
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530542 pSirSmeRsp = qdf_mem_malloc(size);
Arif Hussainf5b6c412018-10-10 19:41:09 -0700543 if (!pSirSmeRsp)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800544 return;
Jeff Johnsona0d34622019-02-02 17:26:19 -0800545 size = sizeof(struct start_bss_rsp);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800546 if (resultCode == eSIR_SME_SUCCESS) {
547
548 sir_copy_mac_addr(pSirSmeRsp->bssDescription.bssId,
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800549 pe_session->bssId);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800550
551 /* Read beacon interval from session */
552 pSirSmeRsp->bssDescription.beaconInterval =
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800553 (uint16_t) pe_session->beaconParams.
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800554 beaconInterval;
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800555 pSirSmeRsp->bssType = pe_session->bssType;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800556
Wu Gao5c3d94b2019-01-17 21:15:54 +0800557 if (lim_get_capability_info
Jeff Johnson35c58a82018-11-22 15:04:57 -0800558 (mac, &pSirSmeRsp->bssDescription.capabilityInfo,
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800559 pe_session)
Jeff Johnson0301ecb2018-06-29 09:36:23 -0700560 != QDF_STATUS_SUCCESS)
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530561 pe_err("could not retrieve Capabilities value");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800562
Jeff Johnson35c58a82018-11-22 15:04:57 -0800563 lim_get_phy_mode(mac,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800564 (uint32_t *) &pSirSmeRsp->bssDescription.
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800565 nwType, pe_session);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800566
567 pSirSmeRsp->bssDescription.channelId =
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800568 pe_session->currentOperChannel;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800569
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800570 if (!LIM_IS_NDI_ROLE(pe_session)) {
571 curLen = pe_session->schBeaconOffsetBegin - ieOffset;
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530572 qdf_mem_copy((uint8_t *) &pSirSmeRsp->bssDescription.
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800573 ieFields,
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800574 pe_session->pSchBeaconFrameBegin +
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800575 ieOffset, (uint32_t) curLen);
576
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530577 qdf_mem_copy(((uint8_t *) &pSirSmeRsp->bssDescription.
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800578 ieFields) + curLen,
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800579 pe_session->pSchBeaconFrameEnd,
580 (uint32_t) pe_session->
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800581 schBeaconOffsetEnd);
582
Abhishek Singh34a4d862016-10-26 16:01:51 +0530583 pSirSmeRsp->bssDescription.length = (uint16_t)
584 (offsetof(tSirBssDescription, ieFields[0])
585 - sizeof(pSirSmeRsp->bssDescription.length)
586 + ieLen);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800587 /* This is the size of the message, subtracting the size of the pointer to ieFields */
588 size += ieLen - sizeof(uint32_t);
Deepak Dhamdheree2dd5442016-05-27 15:05:51 -0700589 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800590#ifdef FEATURE_WLAN_MCC_TO_SCC_SWITCH
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800591 if (pe_session->cc_switch_mode
Anurag Chouhanf04e84f2016-03-03 10:12:12 +0530592 != QDF_MCC_TO_SCC_SWITCH_DISABLE) {
Jeff Johnsonf6541882019-02-02 16:16:00 -0800593 pSirSmeRsp->ht_profile.
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800594 htSupportedChannelWidthSet =
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800595 pe_session->htSupportedChannelWidthSet;
Jeff Johnsonf6541882019-02-02 16:16:00 -0800596 pSirSmeRsp->ht_profile.htRecommendedTxWidthSet =
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800597 pe_session->htRecommendedTxWidthSet;
Jeff Johnsonf6541882019-02-02 16:16:00 -0800598 pSirSmeRsp->ht_profile.htSecondaryChannelOffset =
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800599 pe_session->htSecondaryChannelOffset;
Jeff Johnsonf6541882019-02-02 16:16:00 -0800600 pSirSmeRsp->ht_profile.dot11mode =
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800601 pe_session->dot11mode;
Jeff Johnsonf6541882019-02-02 16:16:00 -0800602 pSirSmeRsp->ht_profile.htCapability =
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800603 pe_session->htCapability;
Jeff Johnsonf6541882019-02-02 16:16:00 -0800604 pSirSmeRsp->ht_profile.vhtCapability =
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800605 pe_session->vhtCapability;
Jeff Johnsonf6541882019-02-02 16:16:00 -0800606 pSirSmeRsp->ht_profile.apCenterChan =
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800607 pe_session->ch_center_freq_seg0;
Jeff Johnsonf6541882019-02-02 16:16:00 -0800608 pSirSmeRsp->ht_profile.apChanWidth =
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800609 pe_session->ch_width;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800610 }
611#endif
612 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800613 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800614 pSirSmeRsp->messageType = msgType;
615 pSirSmeRsp->length = size;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800616 pSirSmeRsp->sessionId = smesessionId;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800617 pSirSmeRsp->statusCode = resultCode;
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800618 if (pe_session != NULL)
619 pSirSmeRsp->staId = pe_session->staId; /* else it will be always zero smeRsp StaID = 0 */
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800620
621 mmhMsg.type = msgType;
622 mmhMsg.bodyptr = pSirSmeRsp;
623 mmhMsg.bodyval = 0;
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800624 if (pe_session == NULL) {
Jeff Johnson35c58a82018-11-22 15:04:57 -0800625 MTRACE(mac_trace(mac, TRACE_CODE_TX_SME_MSG,
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +0530626 NO_SESSION, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800627 } else {
Jeff Johnson35c58a82018-11-22 15:04:57 -0800628 MTRACE(mac_trace(mac, TRACE_CODE_TX_SME_MSG,
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800629 pe_session->peSessionId, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800630 }
631#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
Jeff Johnson35c58a82018-11-22 15:04:57 -0800632 lim_diag_event_report(mac, WLAN_PE_DIAG_START_BSS_RSP_EVENT,
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800633 pe_session, (uint16_t) resultCode, 0);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800634#endif /* FEATURE_WLAN_DIAG_SUPPORT */
635
Jeff Johnsona5abe272019-01-06 12:52:02 -0800636 lim_sys_process_mmh_msg_api(mac, &mmhMsg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800637} /*** end lim_send_sme_start_bss_rsp() ***/
638
Jeff Johnson9320c1e2018-12-02 13:09:20 -0800639void lim_send_sme_disassoc_deauth_ntf(struct mac_context *mac,
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530640 QDF_STATUS status, uint32_t *pCtx)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800641{
Rajeev Kumar37d478b2017-04-17 16:59:28 -0700642 struct scheduler_msg mmhMsg = {0};
Rajeev Kumar416b73f2017-01-21 16:45:21 -0800643 struct scheduler_msg *pMsg = (struct scheduler_msg *) pCtx;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800644
645 mmhMsg.type = pMsg->type;
646 mmhMsg.bodyptr = pMsg;
647 mmhMsg.bodyval = 0;
648
Jeff Johnson35c58a82018-11-22 15:04:57 -0800649 MTRACE(mac_trace(mac, TRACE_CODE_TX_SME_MSG, NO_SESSION, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800650
Jeff Johnsona5abe272019-01-06 12:52:02 -0800651 lim_sys_process_mmh_msg_api(mac, &mmhMsg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800652}
653
Jeff Johnsonb82e6d72019-02-20 21:32:32 -0800654void lim_send_sme_disassoc_ntf(struct mac_context *mac,
655 tSirMacAddr peerMacAddr,
656 tSirResultCodes reasonCode,
657 uint16_t disassocTrigger,
658 uint16_t aid,
659 uint8_t smesessionId,
660 struct pe_session *pe_session)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800661{
Jeff Johnson380a1cd2019-02-03 21:43:51 -0800662 struct disassoc_rsp *pSirSmeDisassocRsp;
Jeff Johnson318a9882019-02-04 08:30:50 -0800663 struct disassoc_ind *pSirSmeDisassocInd;
Sandeep Puligilla7e3e3c52016-09-02 17:54:21 -0700664 uint32_t *pMsg = NULL;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800665 bool failure = false;
Jeff Johnsond7035a32018-11-18 22:03:13 -0800666 struct pe_session *session = NULL;
Sandeep Puligilla7e3e3c52016-09-02 17:54:21 -0700667 uint16_t i, assoc_id;
668 tpDphHashNode sta_ds = NULL;
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +0530669 QDF_STATUS status;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800670
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530671 pe_debug("Disassoc Ntf with trigger : %d reasonCode: %d",
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800672 disassocTrigger, reasonCode);
673
674 switch (disassocTrigger) {
Sandeep Puligilla7e3e3c52016-09-02 17:54:21 -0700675 case eLIM_DUPLICATE_ENTRY:
676 /*
677 * Duplicate entry is removed at LIM.
678 * Initiate new entry for other session
679 */
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530680 pe_debug("Rcvd eLIM_DUPLICATE_ENTRY for " MAC_ADDRESS_STR,
Sandeep Puligilla7e3e3c52016-09-02 17:54:21 -0700681 MAC_ADDR_ARRAY(peerMacAddr));
682
Jeff Johnson35c58a82018-11-22 15:04:57 -0800683 for (i = 0; i < mac->lim.maxBssId; i++) {
684 if ((&mac->lim.gpSession[i] != NULL) &&
685 (mac->lim.gpSession[i].valid) &&
686 (mac->lim.gpSession[i].pePersona ==
Sandeep Puligilla7e3e3c52016-09-02 17:54:21 -0700687 QDF_SAP_MODE)) {
688 /* Find the sta ds entry in another session */
Jeff Johnson35c58a82018-11-22 15:04:57 -0800689 session = &mac->lim.gpSession[i];
690 sta_ds = dph_lookup_hash_entry(mac,
Sandeep Puligilla7e3e3c52016-09-02 17:54:21 -0700691 peerMacAddr, &assoc_id,
692 &session->dph.dphHashTable);
Abhishek Singh6d6e3d12017-12-04 14:16:00 +0530693 if (sta_ds)
694 break;
Sandeep Puligilla7e3e3c52016-09-02 17:54:21 -0700695 }
696 }
697 if (sta_ds
698#ifdef WLAN_FEATURE_11W
699 && (!sta_ds->rmfEnabled)
700#endif
701 ) {
Jeff Johnson35c58a82018-11-22 15:04:57 -0800702 if (lim_add_sta(mac, sta_ds, false, session) !=
Jeff Johnson0301ecb2018-06-29 09:36:23 -0700703 QDF_STATUS_SUCCESS)
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530704 pe_err("could not Add STA with assocId: %d",
Sandeep Puligilla7e3e3c52016-09-02 17:54:21 -0700705 sta_ds->assocId);
706 }
Jeff Johnson35c58a82018-11-22 15:04:57 -0800707 status = lim_prepare_disconnect_done_ind(mac, &pMsg,
Pragaspathi Thilagaraj766c76f2018-08-08 16:44:40 +0530708 smesessionId,
709 reasonCode,
710 &peerMacAddr[0]);
711 if (!QDF_IS_STATUS_SUCCESS(status)) {
712 pe_err("Failed to prepare message");
713 return;
714 }
Sandeep Puligilla7e3e3c52016-09-02 17:54:21 -0700715 break;
716
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800717 case eLIM_HOST_DISASSOC:
718 /**
719 * Disassociation response due to
720 * host triggered disassociation
721 */
722
Jeff Johnson380a1cd2019-02-03 21:43:51 -0800723 pSirSmeDisassocRsp = qdf_mem_malloc(sizeof(struct disassoc_rsp));
Arif Hussainf5b6c412018-10-10 19:41:09 -0700724 if (!pSirSmeDisassocRsp) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800725 failure = true;
726 goto error;
727 }
Jeff Johnsonff1fd432019-02-20 09:50:54 -0800728 pe_debug("send eWNI_SME_DISASSOC_RSP with retCode: %d for "
729 MAC_ADDRESS_STR,
730 reasonCode, MAC_ADDR_ARRAY(peerMacAddr));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800731 pSirSmeDisassocRsp->messageType = eWNI_SME_DISASSOC_RSP;
Jeff Johnson380a1cd2019-02-03 21:43:51 -0800732 pSirSmeDisassocRsp->length = sizeof(struct disassoc_rsp);
Jeff Johnsonff1fd432019-02-20 09:50:54 -0800733 pSirSmeDisassocRsp->sessionId = smesessionId;
Jeff Johnsonff1fd432019-02-20 09:50:54 -0800734 pSirSmeDisassocRsp->statusCode = reasonCode;
735 qdf_mem_copy(pSirSmeDisassocRsp->peer_macaddr.bytes,
736 peerMacAddr, sizeof(tSirMacAddr));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800737
738#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
739
Jeff Johnson35c58a82018-11-22 15:04:57 -0800740 lim_diag_event_report(mac, WLAN_PE_DIAG_DISASSOC_RSP_EVENT,
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800741 pe_session, (uint16_t) reasonCode, 0);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800742#endif
743 pMsg = (uint32_t *) pSirSmeDisassocRsp;
744 break;
745
Hanumantha Reddy Pothula3e5d6aa2016-09-08 15:21:54 +0530746 case eLIM_PEER_ENTITY_DISASSOC:
747 case eLIM_LINK_MONITORING_DISASSOC:
Jeff Johnson35c58a82018-11-22 15:04:57 -0800748 status = lim_prepare_disconnect_done_ind(mac, &pMsg,
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +0530749 smesessionId,
750 reasonCode, &peerMacAddr[0]);
751 if (!QDF_IS_STATUS_SUCCESS(status)) {
752 pe_err("Failed to prepare message");
753 return;
754 }
755 break;
Hanumantha Reddy Pothula3e5d6aa2016-09-08 15:21:54 +0530756
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800757 default:
758 /**
759 * Disassociation indication due to Disassociation
760 * frame reception from peer entity or due to
761 * loss of link with peer entity.
762 */
Jeff Johnson318a9882019-02-04 08:30:50 -0800763 pSirSmeDisassocInd =
764 qdf_mem_malloc(sizeof(*pSirSmeDisassocInd));
Arif Hussainf5b6c412018-10-10 19:41:09 -0700765 if (!pSirSmeDisassocInd) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800766 failure = true;
767 goto error;
768 }
Jeff Johnsonff1fd432019-02-20 09:50:54 -0800769 pe_debug("send eWNI_SME_DISASSOC_IND with retCode: %d for "
770 MAC_ADDRESS_STR,
771 reasonCode, MAC_ADDR_ARRAY(peerMacAddr));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800772 pSirSmeDisassocInd->messageType = eWNI_SME_DISASSOC_IND;
Jeff Johnson318a9882019-02-04 08:30:50 -0800773 pSirSmeDisassocInd->length = sizeof(*pSirSmeDisassocInd);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800774 pSirSmeDisassocInd->sessionId = smesessionId;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800775 pSirSmeDisassocInd->reasonCode = reasonCode;
Jeff Johnsonff1fd432019-02-20 09:50:54 -0800776 pSirSmeDisassocInd->statusCode = reasonCode;
777 qdf_mem_copy(pSirSmeDisassocInd->bssid.bytes,
778 pe_session->bssId, sizeof(tSirMacAddr));
779 qdf_mem_copy(pSirSmeDisassocInd->peer_macaddr.bytes,
780 peerMacAddr, sizeof(tSirMacAddr));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800781
782#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
Jeff Johnson35c58a82018-11-22 15:04:57 -0800783 lim_diag_event_report(mac, WLAN_PE_DIAG_DISASSOC_IND_EVENT,
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800784 pe_session, (uint16_t) reasonCode, 0);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800785#endif
786 pMsg = (uint32_t *) pSirSmeDisassocInd;
787
788 break;
789 }
790
791error:
792 /* Delete the PE session Created */
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800793 if ((pe_session != NULL) && LIM_IS_STA_ROLE(pe_session))
794 pe_delete_session(mac, pe_session);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800795
796 if (false == failure)
Jeff Johnson35c58a82018-11-22 15:04:57 -0800797 lim_send_sme_disassoc_deauth_ntf(mac, QDF_STATUS_SUCCESS,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800798 (uint32_t *) pMsg);
799} /*** end lim_send_sme_disassoc_ntf() ***/
800
801/** -----------------------------------------------------------------
802 \brief lim_send_sme_disassoc_ind() - sends SME_DISASSOC_IND
803
804 After receiving disassociation frame from peer entity, this
805 function sends a eWNI_SME_DISASSOC_IND to SME with a specific
806 reason code.
807
Jeff Johnson35c58a82018-11-22 15:04:57 -0800808 \param mac - global mac structure
Jeff Johnsonbddc03e2019-01-17 15:37:09 -0800809 \param sta - station dph hash node
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800810 \return none
811 \sa
812 ----------------------------------------------------------------- */
813void
Jeff Johnsonbddc03e2019-01-17 15:37:09 -0800814lim_send_sme_disassoc_ind(struct mac_context *mac, tpDphHashNode sta,
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800815 struct pe_session *pe_session)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800816{
Rajeev Kumar37d478b2017-04-17 16:59:28 -0700817 struct scheduler_msg mmhMsg = {0};
Jeff Johnson318a9882019-02-04 08:30:50 -0800818 struct disassoc_ind *pSirSmeDisassocInd;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800819
Jeff Johnson318a9882019-02-04 08:30:50 -0800820 pSirSmeDisassocInd = qdf_mem_malloc(sizeof(*pSirSmeDisassocInd));
Arif Hussainf5b6c412018-10-10 19:41:09 -0700821 if (!pSirSmeDisassocInd)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800822 return;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800823
824 pSirSmeDisassocInd->messageType = eWNI_SME_DISASSOC_IND;
Jeff Johnson318a9882019-02-04 08:30:50 -0800825 pSirSmeDisassocInd->length = sizeof(*pSirSmeDisassocInd);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800826
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800827 pSirSmeDisassocInd->sessionId = pe_session->smeSessionId;
Padma, Santhosh Kumar02289212016-09-30 13:30:08 +0530828 pSirSmeDisassocInd->statusCode = eSIR_SME_DEAUTH_STATUS;
Jeff Johnsonbddc03e2019-01-17 15:37:09 -0800829 pSirSmeDisassocInd->reasonCode = sta->mlmStaContext.disassocReason;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800830
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800831 qdf_mem_copy(pSirSmeDisassocInd->bssid.bytes, pe_session->bssId,
Anurag Chouhan6d760662016-02-20 16:05:43 +0530832 QDF_MAC_ADDR_SIZE);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800833
Jeff Johnsonbddc03e2019-01-17 15:37:09 -0800834 qdf_mem_copy(pSirSmeDisassocInd->peer_macaddr.bytes, sta->staAddr,
Anurag Chouhan6d760662016-02-20 16:05:43 +0530835 QDF_MAC_ADDR_SIZE);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800836
Jeff Johnsonbddc03e2019-01-17 15:37:09 -0800837 pSirSmeDisassocInd->staId = sta->staIndex;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800838
839 mmhMsg.type = eWNI_SME_DISASSOC_IND;
840 mmhMsg.bodyptr = pSirSmeDisassocInd;
841 mmhMsg.bodyval = 0;
842
Jeff Johnson35c58a82018-11-22 15:04:57 -0800843 MTRACE(mac_trace(mac, TRACE_CODE_TX_SME_MSG,
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800844 pe_session->peSessionId, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800845#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800846 lim_diag_event_report(mac, WLAN_PE_DIAG_DISASSOC_IND_EVENT, pe_session,
Jeff Johnsonbddc03e2019-01-17 15:37:09 -0800847 0, (uint16_t) sta->mlmStaContext.disassocReason);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800848#endif /* FEATURE_WLAN_DIAG_SUPPORT */
849
Jeff Johnsona5abe272019-01-06 12:52:02 -0800850 lim_sys_process_mmh_msg_api(mac, &mmhMsg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800851
852} /*** end lim_send_sme_disassoc_ind() ***/
853
854/** -----------------------------------------------------------------
855 \brief lim_send_sme_deauth_ind() - sends SME_DEAUTH_IND
856
857 After receiving deauthentication frame from peer entity, this
858 function sends a eWNI_SME_DEAUTH_IND to SME with a specific
859 reason code.
860
Jeff Johnson35c58a82018-11-22 15:04:57 -0800861 \param mac - global mac structure
Jeff Johnsonbddc03e2019-01-17 15:37:09 -0800862 \param sta - station dph hash node
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800863 \return none
864 \sa
865 ----------------------------------------------------------------- */
866void
Jeff Johnsonbddc03e2019-01-17 15:37:09 -0800867lim_send_sme_deauth_ind(struct mac_context *mac, tpDphHashNode sta,
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800868 struct pe_session *pe_session)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800869{
Rajeev Kumar37d478b2017-04-17 16:59:28 -0700870 struct scheduler_msg mmhMsg = {0};
Jeff Johnsonfec08712019-02-04 13:12:08 -0800871 struct deauth_ind *pSirSmeDeauthInd;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800872
Jeff Johnsonfec08712019-02-04 13:12:08 -0800873 pSirSmeDeauthInd = qdf_mem_malloc(sizeof(*pSirSmeDeauthInd));
Arif Hussainf5b6c412018-10-10 19:41:09 -0700874 if (!pSirSmeDeauthInd)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800875 return;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800876
877 pSirSmeDeauthInd->messageType = eWNI_SME_DEAUTH_IND;
Jeff Johnsonfec08712019-02-04 13:12:08 -0800878 pSirSmeDeauthInd->length = sizeof(*pSirSmeDeauthInd);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800879
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800880 pSirSmeDeauthInd->sessionId = pe_session->smeSessionId;
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800881 if (eSIR_INFRA_AP_MODE == pe_session->bssType) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800882 pSirSmeDeauthInd->statusCode =
Jeff Johnsonbddc03e2019-01-17 15:37:09 -0800883 (tSirResultCodes) sta->mlmStaContext.cleanupTrigger;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800884 } else {
Jeff Johnsonfec08712019-02-04 13:12:08 -0800885 /* Need to indicate the reason code over the air */
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800886 pSirSmeDeauthInd->statusCode =
Jeff Johnsonbddc03e2019-01-17 15:37:09 -0800887 (tSirResultCodes) sta->mlmStaContext.disassocReason;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800888 }
889 /* BSSID */
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800890 qdf_mem_copy(pSirSmeDeauthInd->bssid.bytes, pe_session->bssId,
Anurag Chouhan6d760662016-02-20 16:05:43 +0530891 QDF_MAC_ADDR_SIZE);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800892 /* peerMacAddr */
Jeff Johnsonbddc03e2019-01-17 15:37:09 -0800893 qdf_mem_copy(pSirSmeDeauthInd->peer_macaddr.bytes, sta->staAddr,
Anurag Chouhan6d760662016-02-20 16:05:43 +0530894 QDF_MAC_ADDR_SIZE);
Jeff Johnsonbddc03e2019-01-17 15:37:09 -0800895 pSirSmeDeauthInd->reasonCode = sta->mlmStaContext.disassocReason;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800896
Jeff Johnsonbddc03e2019-01-17 15:37:09 -0800897 pSirSmeDeauthInd->staId = sta->staIndex;
Kiran Kumar Lokere37d3aa22015-11-03 14:58:26 -0800898 if (eSIR_MAC_PEER_STA_REQ_LEAVING_BSS_REASON ==
Jeff Johnsonbddc03e2019-01-17 15:37:09 -0800899 sta->mlmStaContext.disassocReason)
900 pSirSmeDeauthInd->rssi = sta->del_sta_ctx_rssi;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800901
902 mmhMsg.type = eWNI_SME_DEAUTH_IND;
903 mmhMsg.bodyptr = pSirSmeDeauthInd;
904 mmhMsg.bodyval = 0;
905
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800906 MTRACE(mac_trace_msg_tx(mac, pe_session->peSessionId, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800907#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800908 lim_diag_event_report(mac, WLAN_PE_DIAG_DEAUTH_IND_EVENT, pe_session,
Jeff Johnsonbddc03e2019-01-17 15:37:09 -0800909 0, sta->mlmStaContext.cleanupTrigger);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800910#endif /* FEATURE_WLAN_DIAG_SUPPORT */
911
Jeff Johnsona5abe272019-01-06 12:52:02 -0800912 lim_sys_process_mmh_msg_api(mac, &mmhMsg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800913 return;
914} /*** end lim_send_sme_deauth_ind() ***/
915
916#ifdef FEATURE_WLAN_TDLS
917/**
918 * lim_send_sme_tdls_del_sta_ind()
919 *
920 ***FUNCTION:
921 * This function is called to send the TDLS STA context deletion to SME.
922 *
923 ***LOGIC:
924 *
925 ***ASSUMPTIONS:
926 *
927 ***NOTE:
928 * NA
929 *
Jeff Johnson35c58a82018-11-22 15:04:57 -0800930 * @param mac - Pointer to global MAC structure
Jeff Johnsonbddc03e2019-01-17 15:37:09 -0800931 * @param sta - Pointer to internal STA Datastructure
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800932 * @param pe_session - Pointer to the session entry
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800933 * @param reasonCode - Reason for TDLS sta deletion
934 * @return None
935 */
936void
Jeff Johnsonbddc03e2019-01-17 15:37:09 -0800937lim_send_sme_tdls_del_sta_ind(struct mac_context *mac, tpDphHashNode sta,
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800938 struct pe_session *pe_session, uint16_t reasonCode)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800939{
Frank Liud1a28462017-09-06 22:55:48 +0800940 struct tdls_event_info info;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800941
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +0530942 pe_debug("Delete TDLS Peer "MAC_ADDRESS_STR "with reason code: %d",
Jeff Johnsonbddc03e2019-01-17 15:37:09 -0800943 MAC_ADDR_ARRAY(sta->staAddr), reasonCode);
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800944 info.vdev_id = pe_session->smeSessionId;
Jeff Johnsonbddc03e2019-01-17 15:37:09 -0800945 qdf_mem_copy(info.peermac.bytes, sta->staAddr, QDF_MAC_ADDR_SIZE);
Frank Liud1a28462017-09-06 22:55:48 +0800946 info.message_type = TDLS_PEER_DISCONNECTED;
947 info.peer_reason = TDLS_DISCONNECTED_PEER_DELETE;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800948
Jeff Johnson35c58a82018-11-22 15:04:57 -0800949 tgt_tdls_event_handler(mac->psoc, &info);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800950
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800951 return;
952} /*** end lim_send_sme_tdls_del_sta_ind() ***/
953
954/**
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800955 * lim_send_sme_mgmt_tx_completion()
956 *
957 ***FUNCTION:
958 * This function is called to send the eWNI_SME_MGMT_FRM_TX_COMPLETION_IND
959 * message to SME.
960 *
961 ***LOGIC:
962 *
963 ***ASSUMPTIONS:
964 *
965 ***NOTE:
966 * NA
967 *
Jeff Johnson35c58a82018-11-22 15:04:57 -0800968 * @param mac - Pointer to global MAC structure
Jeff Johnsonb5c13332018-12-03 09:54:51 -0800969 * @param pe_session - Pointer to the session entry
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800970 * @param txCompleteStatus - TX Complete Status of Mgmt Frames
971 * @return None
972 */
973void
Jeff Johnson9320c1e2018-12-02 13:09:20 -0800974lim_send_sme_mgmt_tx_completion(struct mac_context *mac,
Ganesh Kondabattiniac570072016-12-21 12:45:48 +0530975 uint32_t sme_session_id,
976 uint32_t txCompleteStatus)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800977{
Wu Gao6768d762018-12-28 16:31:08 +0800978 struct scheduler_msg msg = {0};
979 struct tdls_mgmt_tx_completion_ind *mgmt_tx_completion_ind;
980 QDF_STATUS status;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800981
Wu Gao6768d762018-12-28 16:31:08 +0800982 mgmt_tx_completion_ind =
983 qdf_mem_malloc(sizeof(*mgmt_tx_completion_ind));
984 if (!mgmt_tx_completion_ind)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800985 return;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800986
987 /* sessionId */
Wu Gao6768d762018-12-28 16:31:08 +0800988 mgmt_tx_completion_ind->session_id = sme_session_id;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800989
Wu Gao6768d762018-12-28 16:31:08 +0800990 mgmt_tx_completion_ind->tx_complete_status = txCompleteStatus;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800991
Wu Gao6768d762018-12-28 16:31:08 +0800992 msg.type = eWNI_SME_MGMT_FRM_TX_COMPLETION_IND;
993 msg.bodyptr = mgmt_tx_completion_ind;
994 msg.bodyval = 0;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800995
Wu Gao6768d762018-12-28 16:31:08 +0800996 mgmt_tx_completion_ind->psoc = mac->psoc;
997 msg.callback = tgt_tdls_send_mgmt_tx_completion;
998 status = scheduler_post_message(QDF_MODULE_ID_PE,
gaurank kathpalia3a7f25b2018-08-28 16:26:39 +0530999 QDF_MODULE_ID_TDLS,
Wu Gao6768d762018-12-28 16:31:08 +08001000 QDF_MODULE_ID_TARGET_IF, &msg);
1001 if (QDF_IS_STATUS_ERROR(status)) {
1002 pe_err("post msg fail, %d", status);
1003 qdf_mem_free(mgmt_tx_completion_ind);
1004 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001005} /*** end lim_send_sme_tdls_delete_all_peer_ind() ***/
1006
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001007#endif /* FEATURE_WLAN_TDLS */
1008
Jeff Johnson9320c1e2018-12-02 13:09:20 -08001009QDF_STATUS lim_prepare_disconnect_done_ind(struct mac_context *mac_ctx,
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +05301010 uint32_t **msg,
1011 uint8_t session_id,
1012 tSirResultCodes reason_code,
1013 uint8_t *peer_mac_addr)
Himanshu Agarwald519b4a2018-03-27 15:36:09 +05301014{
1015 struct sir_sme_discon_done_ind *sir_sme_dis_ind;
Himanshu Agarwald519b4a2018-03-27 15:36:09 +05301016
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +05301017 sir_sme_dis_ind = qdf_mem_malloc(sizeof(*sir_sme_dis_ind));
Arif Hussainf5b6c412018-10-10 19:41:09 -07001018 if (!sir_sme_dis_ind)
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +05301019 return QDF_STATUS_E_FAILURE;
Himanshu Agarwald519b4a2018-03-27 15:36:09 +05301020
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +05301021 pe_debug("Prepare eWNI_SME_DISCONNECT_DONE_IND withretCode: %d",
Himanshu Agarwald519b4a2018-03-27 15:36:09 +05301022 reason_code);
1023
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +05301024 sir_sme_dis_ind->message_type = eWNI_SME_DISCONNECT_DONE_IND;
1025 sir_sme_dis_ind->length = sizeof(*sir_sme_dis_ind);
Himanshu Agarwald519b4a2018-03-27 15:36:09 +05301026 sir_sme_dis_ind->session_id = session_id;
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +05301027 if (peer_mac_addr)
Vignesh Viswanathanb2dcdd02018-05-24 11:48:12 +05301028 qdf_mem_copy(sir_sme_dis_ind->peer_mac,
1029 peer_mac_addr, ETH_ALEN);
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +05301030
Himanshu Agarwald519b4a2018-03-27 15:36:09 +05301031 /*
1032 * Instead of sending deauth reason code as 505 which is
1033 * internal value(eSIR_SME_LOST_LINK_WITH_PEER_RESULT_CODE)
1034 * Send reason code as zero to Supplicant
1035 */
1036 if (reason_code == eSIR_SME_LOST_LINK_WITH_PEER_RESULT_CODE)
1037 sir_sme_dis_ind->reason_code = 0;
1038 else
1039 sir_sme_dis_ind->reason_code = reason_code;
1040
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +05301041 *msg = (uint32_t *)sir_sme_dis_ind;
Himanshu Agarwald519b4a2018-03-27 15:36:09 +05301042
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +05301043 return QDF_STATUS_SUCCESS;
Himanshu Agarwald519b4a2018-03-27 15:36:09 +05301044}
1045
Jeff Johnson953f99a2019-02-20 22:08:31 -08001046void lim_send_sme_deauth_ntf(struct mac_context *mac, tSirMacAddr peerMacAddr,
1047 tSirResultCodes reasonCode, uint16_t deauthTrigger,
1048 uint16_t aid, uint8_t smesessionId)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001049{
1050 uint8_t *pBuf;
Jeff Johnson15ae0c12019-02-04 12:55:07 -08001051 struct deauth_rsp *pSirSmeDeauthRsp;
Jeff Johnsonfec08712019-02-04 13:12:08 -08001052 struct deauth_ind *pSirSmeDeauthInd;
Jeff Johnsonb5c13332018-12-03 09:54:51 -08001053 struct pe_session *pe_session;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001054 uint8_t sessionId;
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +05301055 uint32_t *pMsg = NULL;
1056 QDF_STATUS status;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001057
Jeff Johnsonb5c13332018-12-03 09:54:51 -08001058 pe_session = pe_find_session_by_bssid(mac, peerMacAddr, &sessionId);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001059 switch (deauthTrigger) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001060 case eLIM_HOST_DEAUTH:
1061 /**
1062 * Deauthentication response to host triggered
1063 * deauthentication.
1064 */
Jeff Johnson15ae0c12019-02-04 12:55:07 -08001065 pSirSmeDeauthRsp = qdf_mem_malloc(sizeof(*pSirSmeDeauthRsp));
Arif Hussainf5b6c412018-10-10 19:41:09 -07001066 if (!pSirSmeDeauthRsp)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001067 return;
Jeff Johnson15ae0c12019-02-04 12:55:07 -08001068 pe_debug("send eWNI_SME_DEAUTH_RSP with retCode: %d for "
1069 MAC_ADDRESS_STR,
1070 reasonCode, MAC_ADDR_ARRAY(peerMacAddr));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001071 pSirSmeDeauthRsp->messageType = eWNI_SME_DEAUTH_RSP;
Jeff Johnson15ae0c12019-02-04 12:55:07 -08001072 pSirSmeDeauthRsp->length = sizeof(*pSirSmeDeauthRsp);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001073 pSirSmeDeauthRsp->statusCode = reasonCode;
1074 pSirSmeDeauthRsp->sessionId = smesessionId;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001075
Srinivas Girigowda9cf95c52016-01-04 16:17:15 -08001076 pBuf = (uint8_t *) pSirSmeDeauthRsp->peer_macaddr.bytes;
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301077 qdf_mem_copy(pBuf, peerMacAddr, sizeof(tSirMacAddr));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001078
1079#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
Jeff Johnson35c58a82018-11-22 15:04:57 -08001080 lim_diag_event_report(mac, WLAN_PE_DIAG_DEAUTH_RSP_EVENT,
Jeff Johnsonb5c13332018-12-03 09:54:51 -08001081 pe_session, 0, (uint16_t) reasonCode);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001082#endif
1083 pMsg = (uint32_t *) pSirSmeDeauthRsp;
1084
1085 break;
1086
Hanumantha Reddy Pothula3e5d6aa2016-09-08 15:21:54 +05301087 case eLIM_PEER_ENTITY_DEAUTH:
1088 case eLIM_LINK_MONITORING_DEAUTH:
Jeff Johnson35c58a82018-11-22 15:04:57 -08001089 status = lim_prepare_disconnect_done_ind(mac, &pMsg,
Vignesh Viswanathan5b909f52018-05-15 20:13:35 +05301090 smesessionId, reasonCode,
1091 &peerMacAddr[0]);
1092 if (!QDF_IS_STATUS_SUCCESS(status)) {
1093 pe_err("Failed to prepare message");
1094 return;
1095 }
1096 break;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001097 default:
1098 /**
1099 * Deauthentication indication due to Deauthentication
1100 * frame reception from peer entity or due to
1101 * loss of link with peer entity.
1102 */
Jeff Johnsonfec08712019-02-04 13:12:08 -08001103 pSirSmeDeauthInd = qdf_mem_malloc(sizeof(*pSirSmeDeauthInd));
Arif Hussainf5b6c412018-10-10 19:41:09 -07001104 if (!pSirSmeDeauthInd)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001105 return;
Jeff Johnsonfec08712019-02-04 13:12:08 -08001106 pe_debug("send eWNI_SME_DEAUTH_IND with retCode: %d for "
1107 MAC_ADDRESS_STR,
1108 reasonCode, MAC_ADDR_ARRAY(peerMacAddr));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001109 pSirSmeDeauthInd->messageType = eWNI_SME_DEAUTH_IND;
Jeff Johnsonfec08712019-02-04 13:12:08 -08001110 pSirSmeDeauthInd->length = sizeof(*pSirSmeDeauthInd);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001111 pSirSmeDeauthInd->reasonCode = eSIR_MAC_UNSPEC_FAILURE_REASON;
Jeff Johnson8ee46ef2019-02-20 18:34:17 -08001112 pSirSmeDeauthInd->sessionId = smesessionId;
Jeff Johnson8ee46ef2019-02-20 18:34:17 -08001113 pSirSmeDeauthInd->statusCode = reasonCode;
1114 qdf_mem_copy(pSirSmeDeauthInd->bssid.bytes, pe_session->bssId,
1115 sizeof(tSirMacAddr));
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301116 qdf_mem_copy(pSirSmeDeauthInd->peer_macaddr.bytes, peerMacAddr,
Anurag Chouhan6d760662016-02-20 16:05:43 +05301117 QDF_MAC_ADDR_SIZE);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001118
1119#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
Jeff Johnson35c58a82018-11-22 15:04:57 -08001120 lim_diag_event_report(mac, WLAN_PE_DIAG_DEAUTH_IND_EVENT,
Jeff Johnsonb5c13332018-12-03 09:54:51 -08001121 pe_session, 0, (uint16_t) reasonCode);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001122#endif /* FEATURE_WLAN_DIAG_SUPPORT */
1123 pMsg = (uint32_t *) pSirSmeDeauthInd;
1124
1125 break;
1126 }
1127
1128 /*Delete the PE session created */
Bala Venkatesh03b4f0c2019-01-28 22:00:50 +05301129 if (pe_session && LIM_IS_STA_ROLE(pe_session))
Jeff Johnsonb5c13332018-12-03 09:54:51 -08001130 pe_delete_session(mac, pe_session);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001131
Jeff Johnson35c58a82018-11-22 15:04:57 -08001132 lim_send_sme_disassoc_deauth_ntf(mac, QDF_STATUS_SUCCESS,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001133 (uint32_t *) pMsg);
1134
1135} /*** end lim_send_sme_deauth_ntf() ***/
1136
1137/**
1138 * lim_send_sme_wm_status_change_ntf() - Send Notification
1139 * @mac_ctx: Global MAC Context
1140 * @status_change_code: Indicates the change in the wireless medium.
1141 * @status_change_info: Indicates the information associated with
1142 * change in the wireless medium.
1143 * @info_len: Indicates the length of status change information
1144 * being sent.
1145 * @session_id SessionID
1146 *
1147 * This function is called by limProcessSmeMessages() to send
1148 * eWNI_SME_WM_STATUS_CHANGE_NTF message to host.
1149 *
1150 * Return: None
1151 */
1152void
Jeff Johnson9320c1e2018-12-02 13:09:20 -08001153lim_send_sme_wm_status_change_ntf(struct mac_context *mac_ctx,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001154 tSirSmeStatusChangeCode status_change_code,
1155 uint32_t *status_change_info, uint16_t info_len, uint8_t session_id)
1156{
Rajeev Kumar37d478b2017-04-17 16:59:28 -07001157 struct scheduler_msg msg = {0};
Jeff Johnson53889322019-02-03 17:37:09 -08001158 struct wm_status_change_ntf *wm_status_change_ntf;
Naveen Rawate01ed172016-11-17 11:34:50 -08001159 uint32_t max_info_len;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001160
Jeff Johnson53889322019-02-03 17:37:09 -08001161 wm_status_change_ntf = qdf_mem_malloc(sizeof(*wm_status_change_ntf));
Arif Hussainf5b6c412018-10-10 19:41:09 -07001162 if (!wm_status_change_ntf)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001163 return;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001164
1165 msg.type = eWNI_SME_WM_STATUS_CHANGE_NTF;
1166 msg.bodyval = 0;
1167 msg.bodyptr = wm_status_change_ntf;
1168
1169 switch (status_change_code) {
Naveen Rawate01ed172016-11-17 11:34:50 -08001170 case eSIR_SME_AP_CAPS_CHANGED:
Jeff Johnson9c9961c2019-02-03 17:10:53 -08001171 max_info_len = sizeof(struct ap_new_caps);
Naveen Rawate01ed172016-11-17 11:34:50 -08001172 break;
1173 case eSIR_SME_JOINED_NEW_BSS:
Jeff Johnson2e6d1732019-02-03 17:00:30 -08001174 max_info_len = sizeof(struct new_bss_info);
Naveen Rawate01ed172016-11-17 11:34:50 -08001175 break;
1176 default:
1177 max_info_len = sizeof(wm_status_change_ntf->statusChangeInfo);
1178 break;
1179 }
1180
1181 switch (status_change_code) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001182 case eSIR_SME_RADAR_DETECTED:
1183 break;
1184 default:
1185 wm_status_change_ntf->messageType =
1186 eWNI_SME_WM_STATUS_CHANGE_NTF;
1187 wm_status_change_ntf->statusChangeCode = status_change_code;
Jeff Johnson53889322019-02-03 17:37:09 -08001188 wm_status_change_ntf->length = sizeof(*wm_status_change_ntf);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001189 wm_status_change_ntf->sessionId = session_id;
Naveen Rawate01ed172016-11-17 11:34:50 -08001190 if (info_len <= max_info_len && status_change_info) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301191 qdf_mem_copy(
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001192 (uint8_t *) &wm_status_change_ntf->statusChangeInfo,
1193 (uint8_t *) status_change_info, info_len);
1194 }
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301195 pe_debug("StatusChg code: 0x%x length: %d",
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001196 status_change_code, info_len);
1197 break;
1198 }
1199
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301200 MTRACE(mac_trace(mac_ctx, TRACE_CODE_TX_SME_MSG, session_id, msg.type));
Jeff Johnsona5abe272019-01-06 12:52:02 -08001201 if (QDF_STATUS_SUCCESS != lim_sys_process_mmh_msg_api(mac_ctx, &msg)) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301202 qdf_mem_free(wm_status_change_ntf);
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301203 pe_err("lim_sys_process_mmh_msg_api failed");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001204 }
1205
1206} /*** end lim_send_sme_wm_status_change_ntf() ***/
1207
Jeff Johnsonc80ed542019-02-21 06:24:57 -08001208void lim_send_sme_set_context_rsp(struct mac_context *mac,
1209 struct qdf_mac_addr peer_macaddr,
1210 uint16_t aid,
1211 tSirResultCodes resultCode,
1212 struct pe_session *pe_session,
1213 uint8_t smesessionId)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001214{
Rajeev Kumar37d478b2017-04-17 16:59:28 -07001215 struct scheduler_msg mmhMsg = {0};
Jeff Johnson924ae612019-02-05 12:01:50 -08001216 struct set_context_rsp *set_context_rsp;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001217
Jeff Johnson924ae612019-02-05 12:01:50 -08001218 set_context_rsp = qdf_mem_malloc(sizeof(*set_context_rsp));
1219 if (!set_context_rsp)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001220 return;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001221
Jeff Johnson924ae612019-02-05 12:01:50 -08001222 set_context_rsp->messageType = eWNI_SME_SETCONTEXT_RSP;
1223 set_context_rsp->length = sizeof(*set_context_rsp);
1224 set_context_rsp->statusCode = resultCode;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001225
Jeff Johnson924ae612019-02-05 12:01:50 -08001226 qdf_copy_macaddr(&set_context_rsp->peer_macaddr, &peer_macaddr);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001227
Jeff Johnson924ae612019-02-05 12:01:50 -08001228 set_context_rsp->sessionId = smesessionId;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001229
1230 mmhMsg.type = eWNI_SME_SETCONTEXT_RSP;
Jeff Johnson924ae612019-02-05 12:01:50 -08001231 mmhMsg.bodyptr = set_context_rsp;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001232 mmhMsg.bodyval = 0;
Jeff Johnsonb5c13332018-12-03 09:54:51 -08001233 if (NULL == pe_session) {
Jeff Johnson35c58a82018-11-22 15:04:57 -08001234 MTRACE(mac_trace(mac, TRACE_CODE_TX_SME_MSG,
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301235 NO_SESSION, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001236 } else {
Jeff Johnson35c58a82018-11-22 15:04:57 -08001237 MTRACE(mac_trace(mac, TRACE_CODE_TX_SME_MSG,
Jeff Johnsonb5c13332018-12-03 09:54:51 -08001238 pe_session->peSessionId, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001239 }
1240
1241#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
Jeff Johnson35c58a82018-11-22 15:04:57 -08001242 lim_diag_event_report(mac, WLAN_PE_DIAG_SETCONTEXT_RSP_EVENT,
Jeff Johnsonb5c13332018-12-03 09:54:51 -08001243 pe_session, (uint16_t) resultCode, 0);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001244#endif /* FEATURE_WLAN_DIAG_SUPPORT */
1245
Jeff Johnson35c58a82018-11-22 15:04:57 -08001246 mac->lim.sme_msg_callback(mac, &mmhMsg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001247} /*** end lim_send_sme_set_context_rsp() ***/
1248
Jeff Johnson07819492019-02-21 09:34:02 -08001249void lim_send_sme_addts_rsp(struct mac_context *mac,
1250 uint8_t rspReqd, uint32_t status,
1251 struct pe_session *pe_session,
1252 struct mac_tspec_ie tspec,
1253 uint8_t smesessionId)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001254{
1255 tpSirAddtsRsp rsp;
Rajeev Kumar37d478b2017-04-17 16:59:28 -07001256 struct scheduler_msg mmhMsg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001257
1258 if (!rspReqd)
1259 return;
1260
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301261 rsp = qdf_mem_malloc(sizeof(tSirAddtsRsp));
Arif Hussainf5b6c412018-10-10 19:41:09 -07001262 if (!rsp)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001263 return;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001264
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001265 rsp->messageType = eWNI_SME_ADDTS_RSP;
1266 rsp->rc = status;
1267 rsp->rsp.status = (enum eSirMacStatusCodes)status;
1268 rsp->rsp.tspec = tspec;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001269 rsp->sessionId = smesessionId;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001270
1271 mmhMsg.type = eWNI_SME_ADDTS_RSP;
1272 mmhMsg.bodyptr = rsp;
1273 mmhMsg.bodyval = 0;
Jeff Johnsonb5c13332018-12-03 09:54:51 -08001274 if (NULL == pe_session) {
Jeff Johnson35c58a82018-11-22 15:04:57 -08001275 MTRACE(mac_trace(mac, TRACE_CODE_TX_SME_MSG,
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301276 NO_SESSION, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001277 } else {
Jeff Johnson35c58a82018-11-22 15:04:57 -08001278 MTRACE(mac_trace(mac, TRACE_CODE_TX_SME_MSG,
Jeff Johnsonb5c13332018-12-03 09:54:51 -08001279 pe_session->peSessionId, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001280 }
1281#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
Jeff Johnsonb5c13332018-12-03 09:54:51 -08001282 lim_diag_event_report(mac, WLAN_PE_DIAG_ADDTS_RSP_EVENT, pe_session, 0,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001283 0);
1284#endif /* FEATURE_WLAN_DIAG_SUPPORT */
1285
Jeff Johnsona5abe272019-01-06 12:52:02 -08001286 lim_sys_process_mmh_msg_api(mac, &mmhMsg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001287 return;
1288}
1289
1290void
Jeff Johnson9320c1e2018-12-02 13:09:20 -08001291lim_send_sme_delts_rsp(struct mac_context *mac, tpSirDeltsReq delts, uint32_t status,
Jeff Johnsonb5c13332018-12-03 09:54:51 -08001292 struct pe_session *pe_session, uint8_t smesessionId,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001293 uint16_t smetransactionId)
1294{
1295 tpSirDeltsRsp rsp;
Rajeev Kumar37d478b2017-04-17 16:59:28 -07001296 struct scheduler_msg mmhMsg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001297
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301298 pe_debug("SendSmeDeltsRsp aid: %d tsid: %d up: %d status: %d",
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001299 delts->aid,
1300 delts->req.tsinfo.traffic.tsid,
1301 delts->req.tsinfo.traffic.userPrio, status);
1302 if (!delts->rspReqd)
1303 return;
1304
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301305 rsp = qdf_mem_malloc(sizeof(tSirDeltsRsp));
Arif Hussainf5b6c412018-10-10 19:41:09 -07001306 if (!rsp)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001307 return;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001308
Jeff Johnsonb5c13332018-12-03 09:54:51 -08001309 if (pe_session != NULL) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001310
1311 rsp->aid = delts->aid;
Anurag Chouhanc5548422016-02-24 18:33:27 +05301312 qdf_copy_macaddr(&rsp->macaddr, &delts->macaddr);
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301313 qdf_mem_copy((uint8_t *) &rsp->rsp, (uint8_t *) &delts->req,
Jeff Johnsoncf2ec162018-12-22 16:46:43 -08001314 sizeof(struct delts_req_info));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001315 }
1316
1317 rsp->messageType = eWNI_SME_DELTS_RSP;
1318 rsp->rc = status;
1319
1320 /* Update SME session Id and transcation Id */
1321 rsp->sessionId = smesessionId;
1322 rsp->transactionId = smetransactionId;
1323
1324 mmhMsg.type = eWNI_SME_DELTS_RSP;
1325 mmhMsg.bodyptr = rsp;
1326 mmhMsg.bodyval = 0;
Jeff Johnsonb5c13332018-12-03 09:54:51 -08001327 if (NULL == pe_session) {
Jeff Johnson35c58a82018-11-22 15:04:57 -08001328 MTRACE(mac_trace(mac, TRACE_CODE_TX_SME_MSG,
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301329 NO_SESSION, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001330 } else {
Jeff Johnson35c58a82018-11-22 15:04:57 -08001331 MTRACE(mac_trace(mac, TRACE_CODE_TX_SME_MSG,
Jeff Johnsonb5c13332018-12-03 09:54:51 -08001332 pe_session->peSessionId, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001333 }
1334#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
Jeff Johnsonb5c13332018-12-03 09:54:51 -08001335 lim_diag_event_report(mac, WLAN_PE_DIAG_DELTS_RSP_EVENT, pe_session,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001336 (uint16_t) status, 0);
1337#endif /* FEATURE_WLAN_DIAG_SUPPORT */
1338
Jeff Johnsona5abe272019-01-06 12:52:02 -08001339 lim_sys_process_mmh_msg_api(mac, &mmhMsg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001340}
1341
1342void
Jeff Johnsoncf2ec162018-12-22 16:46:43 -08001343lim_send_sme_delts_ind(struct mac_context *mac, struct delts_req_info *delts,
1344 uint16_t aid, struct pe_session *pe_session)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001345{
1346 tpSirDeltsRsp rsp;
Rajeev Kumar37d478b2017-04-17 16:59:28 -07001347 struct scheduler_msg mmhMsg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001348
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301349 pe_debug("SendSmeDeltsInd aid: %d tsid: %d up: %d",
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001350 aid, delts->tsinfo.traffic.tsid, delts->tsinfo.traffic.userPrio);
1351
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301352 rsp = qdf_mem_malloc(sizeof(tSirDeltsRsp));
Arif Hussainf5b6c412018-10-10 19:41:09 -07001353 if (!rsp)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001354 return;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001355
1356 rsp->messageType = eWNI_SME_DELTS_IND;
Jeff Johnson0301ecb2018-06-29 09:36:23 -07001357 rsp->rc = QDF_STATUS_SUCCESS;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001358 rsp->aid = aid;
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301359 qdf_mem_copy((uint8_t *) &rsp->rsp, (uint8_t *) delts, sizeof(*delts));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001360
1361 /* Update SME session Id and SME transaction Id */
1362
Jeff Johnsonb5c13332018-12-03 09:54:51 -08001363 rsp->sessionId = pe_session->smeSessionId;
1364 rsp->transactionId = pe_session->transactionId;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001365
1366 mmhMsg.type = eWNI_SME_DELTS_IND;
1367 mmhMsg.bodyptr = rsp;
1368 mmhMsg.bodyval = 0;
Jeff Johnsonb5c13332018-12-03 09:54:51 -08001369 MTRACE(mac_trace_msg_tx(mac, pe_session->peSessionId, mmhMsg.type));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001370#ifdef FEATURE_WLAN_DIAG_SUPPORT_LIM /* FEATURE_WLAN_DIAG_SUPPORT */
Jeff Johnsonb5c13332018-12-03 09:54:51 -08001371 lim_diag_event_report(mac, WLAN_PE_DIAG_DELTS_IND_EVENT, pe_session, 0,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001372 0);
1373#endif /* FEATURE_WLAN_DIAG_SUPPORT */
1374
Jeff Johnsona5abe272019-01-06 12:52:02 -08001375 lim_sys_process_mmh_msg_api(mac, &mmhMsg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001376}
1377
Naveen Rawatfa2a1002018-05-17 16:06:37 -07001378#ifndef QCA_SUPPORT_CP_STATS
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001379/**
1380 * lim_send_sme_pe_statistics_rsp()
1381 *
1382 ***FUNCTION:
1383 * This function is called to send 802.11 statistics response to HDD.
1384 * This function posts the result back to HDD. This is a response to
1385 * HDD's request for statistics.
1386 *
1387 ***PARAMS:
1388 *
1389 ***LOGIC:
1390 *
1391 ***ASSUMPTIONS:
1392 * NA
1393 *
1394 ***NOTE:
1395 * NA
1396 *
Jeff Johnson35c58a82018-11-22 15:04:57 -08001397 * @param mac Pointer to Global MAC structure
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001398 * @param p80211Stats Statistics sent in response
1399 * @param resultCode TODO:
1400 *
1401 *
1402 * @return none
1403 */
1404
1405void
Jeff Johnson9320c1e2018-12-02 13:09:20 -08001406lim_send_sme_pe_statistics_rsp(struct mac_context *mac, uint16_t msgType, void *stats)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001407{
Rajeev Kumar37d478b2017-04-17 16:59:28 -07001408 struct scheduler_msg mmhMsg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001409 uint8_t sessionId;
1410 tAniGetPEStatsRsp *pPeStats = (tAniGetPEStatsRsp *) stats;
Jeff Johnsond7035a32018-11-18 22:03:13 -08001411 struct pe_session *pPeSessionEntry;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001412
1413 /* Get the Session Id based on Sta Id */
1414 pPeSessionEntry =
Jeff Johnson35c58a82018-11-22 15:04:57 -08001415 pe_find_session_by_sta_id(mac, pPeStats->staId, &sessionId);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001416
1417 /* Fill the Session Id */
1418 if (NULL != pPeSessionEntry) {
1419 /* Fill the Session Id */
1420 pPeStats->sessionId = pPeSessionEntry->smeSessionId;
1421 }
1422
1423 pPeStats->msgType = eWNI_SME_GET_STATISTICS_RSP;
1424
1425 /* msgType should be WMA_GET_STATISTICS_RSP */
1426 mmhMsg.type = eWNI_SME_GET_STATISTICS_RSP;
1427
1428 mmhMsg.bodyptr = stats;
1429 mmhMsg.bodyval = 0;
Jeff Johnson35c58a82018-11-22 15:04:57 -08001430 MTRACE(mac_trace(mac, TRACE_CODE_TX_SME_MSG, NO_SESSION, mmhMsg.type));
Jeff Johnsona5abe272019-01-06 12:52:02 -08001431 lim_sys_process_mmh_msg_api(mac, &mmhMsg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001432
1433 return;
1434
1435} /*** end lim_send_sme_pe_statistics_rsp() ***/
Naveen Rawatfa2a1002018-05-17 16:06:37 -07001436#endif
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001437
Srinivas Girigowda515a9ef2015-12-11 11:00:48 -08001438#ifdef FEATURE_WLAN_ESE
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001439/**
Srinivas Girigowda515a9ef2015-12-11 11:00:48 -08001440 * lim_send_sme_pe_ese_tsm_rsp() - send tsm response
Jeff Johnson35c58a82018-11-22 15:04:57 -08001441 * @mac: Pointer to global mac structure
Srinivas Girigowda515a9ef2015-12-11 11:00:48 -08001442 * @pStats: Pointer to TSM Stats
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001443 *
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001444 * This function is called to send tsm stats response to HDD.
1445 * This function posts the result back to HDD. This is a response to
1446 * HDD's request to get tsm stats.
1447 *
Srinivas Girigowda515a9ef2015-12-11 11:00:48 -08001448 * Return: None
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001449 */
Jeff Johnson9320c1e2018-12-02 13:09:20 -08001450void lim_send_sme_pe_ese_tsm_rsp(struct mac_context *mac,
Srinivas Girigowda515a9ef2015-12-11 11:00:48 -08001451 tAniGetTsmStatsRsp *pStats)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001452{
Rajeev Kumar37d478b2017-04-17 16:59:28 -07001453 struct scheduler_msg mmhMsg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001454 uint8_t sessionId;
1455 tAniGetTsmStatsRsp *pPeStats = (tAniGetTsmStatsRsp *) pStats;
Jeff Johnsond7035a32018-11-18 22:03:13 -08001456 struct pe_session *pPeSessionEntry = NULL;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001457
1458 /* Get the Session Id based on Sta Id */
Abhinav Kumaraa8f2df2019-01-11 20:02:26 +05301459 pPeSessionEntry = pe_find_session_by_bssid(mac, pPeStats->bssid.bytes,
1460 &sessionId);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001461 /* Fill the Session Id */
1462 if (NULL != pPeSessionEntry) {
1463 /* Fill the Session Id */
1464 pPeStats->sessionId = pPeSessionEntry->smeSessionId;
1465 } else {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301466 pe_err("Session not found for the Sta id: %d",
Nishank Aggarwald5941bb2017-03-11 14:41:24 +05301467 pPeStats->staId);
Manikandan Mohan41e2d6f2017-04-10 16:17:39 +05301468 qdf_mem_free(pPeStats->tsmStatsReq);
1469 qdf_mem_free(pPeStats);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001470 return;
1471 }
1472
1473 pPeStats->msgType = eWNI_SME_GET_TSM_STATS_RSP;
1474 pPeStats->tsmMetrics.RoamingCount
1475 = pPeSessionEntry->eseContext.tsm.tsmMetrics.RoamingCount;
1476 pPeStats->tsmMetrics.RoamingDly
1477 = pPeSessionEntry->eseContext.tsm.tsmMetrics.RoamingDly;
1478
1479 mmhMsg.type = eWNI_SME_GET_TSM_STATS_RSP;
1480 mmhMsg.bodyptr = pStats;
1481 mmhMsg.bodyval = 0;
Jeff Johnson35c58a82018-11-22 15:04:57 -08001482 MTRACE(mac_trace(mac, TRACE_CODE_TX_SME_MSG, sessionId, mmhMsg.type));
Jeff Johnsona5abe272019-01-06 12:52:02 -08001483 lim_sys_process_mmh_msg_api(mac, &mmhMsg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001484
1485 return;
1486} /*** end lim_send_sme_pe_ese_tsm_rsp() ***/
1487
Srinivas Girigowda515a9ef2015-12-11 11:00:48 -08001488#endif /* FEATURE_WLAN_ESE */
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001489
1490void
Jeff Johnson9320c1e2018-12-02 13:09:20 -08001491lim_send_sme_ibss_peer_ind(struct mac_context *mac,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001492 tSirMacAddr peerMacAddr,
1493 uint16_t staIndex,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001494 uint8_t *beacon,
1495 uint16_t beaconLen, uint16_t msgType, uint8_t sessionId)
1496{
Rajeev Kumar37d478b2017-04-17 16:59:28 -07001497 struct scheduler_msg mmhMsg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001498 tSmeIbssPeerInd *pNewPeerInd;
1499
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301500 pNewPeerInd = qdf_mem_malloc(sizeof(tSmeIbssPeerInd) + beaconLen);
Arif Hussainf5b6c412018-10-10 19:41:09 -07001501 if (!pNewPeerInd)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001502 return;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001503
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301504 qdf_mem_copy((uint8_t *) pNewPeerInd->peer_addr.bytes,
Anurag Chouhan6d760662016-02-20 16:05:43 +05301505 peerMacAddr, QDF_MAC_ADDR_SIZE);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001506 pNewPeerInd->staId = staIndex;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001507 pNewPeerInd->mesgLen = sizeof(tSmeIbssPeerInd) + beaconLen;
1508 pNewPeerInd->mesgType = msgType;
1509 pNewPeerInd->sessionId = sessionId;
1510
1511 if (beacon != NULL) {
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301512 qdf_mem_copy((void *)((uint8_t *) pNewPeerInd +
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001513 sizeof(tSmeIbssPeerInd)), (void *)beacon,
1514 beaconLen);
1515 }
1516
1517 mmhMsg.type = msgType;
1518 mmhMsg.bodyptr = pNewPeerInd;
Jeff Johnson35c58a82018-11-22 15:04:57 -08001519 MTRACE(mac_trace(mac, TRACE_CODE_TX_SME_MSG, sessionId, mmhMsg.type));
Jeff Johnsona5abe272019-01-06 12:52:02 -08001520 lim_sys_process_mmh_msg_api(mac, &mmhMsg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001521
1522}
1523
Kiran Kumar Lokerefc8feea2016-10-27 17:07:00 -07001524/**
1525 * lim_process_csa_wbw_ie() - Process CSA Wide BW IE
1526 * @mac_ctx: pointer to global adapter context
1527 * @csa_params: pointer to CSA parameters
1528 * @chnl_switch_info:pointer to channel switch parameters
1529 * @session_entry: session pointer
1530 *
1531 * Return: None
1532 */
Jeff Johnson9320c1e2018-12-02 13:09:20 -08001533static QDF_STATUS lim_process_csa_wbw_ie(struct mac_context *mac_ctx,
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001534 struct csa_offload_params *csa_params,
1535 tLimWiderBWChannelSwitchInfo *chnl_switch_info,
Jeff Johnsond7035a32018-11-18 22:03:13 -08001536 struct pe_session *session_entry)
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001537{
Amar Singhal5cccafe2017-02-15 12:42:58 -08001538 struct ch_params ch_params = {0};
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001539 uint8_t ap_new_ch_width;
1540 bool new_ch_width_dfn = false;
1541 uint8_t center_freq_diff;
Kiran Kumar Lokere05a0658a2018-02-01 21:34:27 -08001542 uint32_t fw_vht_ch_wd = wma_get_vht_ch_width() + 1;
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001543
1544 ap_new_ch_width = csa_params->new_ch_width + 1;
Kiran Kumar Lokere05a0658a2018-02-01 21:34:27 -08001545
Tushnim Bhattacharyya332b74c2018-08-10 10:55:51 -07001546 pe_debug("new channel: %d new_ch_width: %d seg0: %d seg1: %d",
1547 csa_params->channel, ap_new_ch_width,
1548 csa_params->new_ch_freq_seg1,
1549 csa_params->new_ch_freq_seg2);
Kiran Kumar Lokere05a0658a2018-02-01 21:34:27 -08001550
1551 if ((ap_new_ch_width != CH_WIDTH_80MHZ) &&
1552 (ap_new_ch_width != CH_WIDTH_160MHZ) &&
1553 (ap_new_ch_width != CH_WIDTH_80P80MHZ)) {
1554 pe_err("CSA wide BW IE has wrong ch_width %d",
1555 csa_params->new_ch_width);
1556 return QDF_STATUS_E_INVAL;
1557 }
1558
1559 if (!csa_params->new_ch_freq_seg1 && !csa_params->new_ch_freq_seg2) {
1560 pe_err("CSA wide BW IE has invalid center freq");
1561 return QDF_STATUS_E_INVAL;
1562 }
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001563 if ((ap_new_ch_width == CH_WIDTH_80MHZ) &&
1564 csa_params->new_ch_freq_seg2) {
1565 new_ch_width_dfn = true;
1566 if (csa_params->new_ch_freq_seg2 >
1567 csa_params->new_ch_freq_seg1)
1568 center_freq_diff = csa_params->new_ch_freq_seg2 -
1569 csa_params->new_ch_freq_seg1;
1570 else
1571 center_freq_diff = csa_params->new_ch_freq_seg1 -
1572 csa_params->new_ch_freq_seg2;
1573 if (center_freq_diff == CENTER_FREQ_DIFF_160MHz)
1574 ap_new_ch_width = CH_WIDTH_160MHZ;
1575 else if (center_freq_diff > CENTER_FREQ_DIFF_80P80MHz)
1576 ap_new_ch_width = CH_WIDTH_80P80MHZ;
1577 else
1578 ap_new_ch_width = CH_WIDTH_80MHZ;
1579 }
1580 session_entry->gLimChannelSwitch.state =
1581 eLIM_CHANNEL_SWITCH_PRIMARY_AND_SECONDARY;
1582 if ((ap_new_ch_width == CH_WIDTH_160MHZ) &&
1583 !new_ch_width_dfn) {
Kiran Kumar Lokere05a0658a2018-02-01 21:34:27 -08001584 if (csa_params->new_ch_freq_seg1 != csa_params->channel +
1585 CH_TO_CNTR_FREQ_DIFF_160MHz) {
1586 pe_err("CSA wide BW IE has invalid center freq");
1587 return QDF_STATUS_E_INVAL;
1588 }
1589
1590 if (ap_new_ch_width > fw_vht_ch_wd) {
Tushnim Bhattacharyya332b74c2018-08-10 10:55:51 -07001591 pe_debug("New BW is not supported, setting BW to %d",
1592 fw_vht_ch_wd);
Kiran Kumar Lokere05a0658a2018-02-01 21:34:27 -08001593 ap_new_ch_width = fw_vht_ch_wd;
1594 }
1595 ch_params.ch_width = ap_new_ch_width ;
Kiran Kumar Lokerea3de2262017-04-12 12:15:04 -07001596 wlan_reg_set_channel_params(mac_ctx->pdev,
1597 csa_params->channel, 0, &ch_params);
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001598 ap_new_ch_width = ch_params.ch_width;
1599 csa_params->new_ch_freq_seg1 = ch_params.center_freq_seg0;
1600 csa_params->new_ch_freq_seg2 = ch_params.center_freq_seg1;
Kiran Kumar Lokere05a0658a2018-02-01 21:34:27 -08001601 } else if (!new_ch_width_dfn) {
1602 if (ap_new_ch_width > fw_vht_ch_wd) {
Tushnim Bhattacharyya332b74c2018-08-10 10:55:51 -07001603 pe_debug("New BW is not supported, setting BW to %d",
1604 fw_vht_ch_wd);
Kiran Kumar Lokere05a0658a2018-02-01 21:34:27 -08001605 ap_new_ch_width = fw_vht_ch_wd;
1606 }
1607 if (csa_params->new_ch_freq_seg1 != csa_params->channel +
1608 CH_TO_CNTR_FREQ_DIFF_80MHz) {
1609 pe_err("CSA wide BW IE has invalid center freq");
1610 return QDF_STATUS_E_INVAL;
1611 }
1612 csa_params->new_ch_freq_seg2 = 0;
1613 }
1614 if (new_ch_width_dfn) {
1615 if (csa_params->new_ch_freq_seg1 != csa_params->channel +
1616 CH_TO_CNTR_FREQ_DIFF_80MHz) {
1617 pe_err("CSA wide BW IE has invalid center freq");
1618 return QDF_STATUS_E_INVAL;
1619 }
1620 if (ap_new_ch_width > fw_vht_ch_wd) {
Tushnim Bhattacharyya332b74c2018-08-10 10:55:51 -07001621 pe_debug("New width is not supported, setting BW to %d",
1622 fw_vht_ch_wd);
Kiran Kumar Lokere05a0658a2018-02-01 21:34:27 -08001623 ap_new_ch_width = fw_vht_ch_wd;
1624 }
1625 if ((ap_new_ch_width == CH_WIDTH_160MHZ) &&
1626 (csa_params->new_ch_freq_seg1 !=
1627 csa_params->channel +
1628 CH_TO_CNTR_FREQ_DIFF_160MHz)) {
1629 pe_err("wide BW IE has invalid 160M center freq");
1630 csa_params->new_ch_freq_seg2 = 0;
1631 ap_new_ch_width = CH_WIDTH_80MHZ;
1632 }
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001633 }
1634 chnl_switch_info->newChanWidth = ap_new_ch_width;
1635 chnl_switch_info->newCenterChanFreq0 = csa_params->new_ch_freq_seg1;
1636 chnl_switch_info->newCenterChanFreq1 = csa_params->new_ch_freq_seg2;
1637
1638 if (session_entry->ch_width == ap_new_ch_width)
1639 goto prnt_log;
1640
1641 if (session_entry->ch_width == CH_WIDTH_80MHZ) {
1642 chnl_switch_info->newChanWidth = CH_WIDTH_80MHZ;
1643 chnl_switch_info->newCenterChanFreq1 = 0;
1644 } else {
1645 session_entry->ch_width = ap_new_ch_width;
1646 chnl_switch_info->newChanWidth = ap_new_ch_width;
1647 }
1648prnt_log:
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301649 pe_debug("new channel: %d new_ch_width: %d seg0: %d seg1: %d",
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001650 csa_params->channel,
1651 chnl_switch_info->newChanWidth,
1652 chnl_switch_info->newCenterChanFreq0,
1653 chnl_switch_info->newCenterChanFreq1);
Kiran Kumar Lokere05a0658a2018-02-01 21:34:27 -08001654
1655 return QDF_STATUS_SUCCESS;
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001656}
Kiran Kumar Lokere05a0658a2018-02-01 21:34:27 -08001657
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001658/**
1659 * lim_handle_csa_offload_msg() - Handle CSA offload message
1660 * @mac_ctx: pointer to global adapter context
1661 * @msg: Message pointer.
1662 *
1663 * Return: None
1664 */
Jeff Johnson9320c1e2018-12-02 13:09:20 -08001665void lim_handle_csa_offload_msg(struct mac_context *mac_ctx,
Rajeev Kumarfeb96382017-01-22 19:42:09 -08001666 struct scheduler_msg *msg)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001667{
Jeff Johnsond7035a32018-11-18 22:03:13 -08001668 struct pe_session *session_entry;
Rajeev Kumar37d478b2017-04-17 16:59:28 -07001669 struct scheduler_msg mmh_msg = {0};
Chandrasekaran, Manishekar5c19dc52016-02-04 14:58:26 +05301670 struct csa_offload_params *csa_params =
1671 (struct csa_offload_params *) (msg->bodyptr);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001672 tpSmeCsaOffloadInd csa_offload_ind;
1673 tpDphHashNode sta_ds = NULL;
1674 uint8_t session_id;
1675 uint16_t aid = 0;
Gupta, Kapil121bf212015-11-25 19:21:29 +05301676 uint16_t chan_space = 0;
Krunal Sonie2c45a92018-05-03 11:51:26 -07001677 struct ch_params ch_params = {0};
Gupta, Kapil121bf212015-11-25 19:21:29 +05301678
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001679 tLimWiderBWChannelSwitchInfo *chnl_switch_info = NULL;
Kiran Kumar Lokere999e58c2016-01-07 02:18:39 -08001680 tLimChannelSwitchInfo *lim_ch_switch = NULL;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001681
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301682 pe_debug("handle csa offload msg");
Chandrasekaran, Manishekar5c19dc52016-02-04 14:58:26 +05301683
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001684 if (!csa_params) {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301685 pe_err("limMsgQ body ptr is NULL");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001686 return;
1687 }
1688
Pragaspathi Thilagaraj5fcd7182018-06-06 13:46:18 +05301689 csa_offload_ind = qdf_mem_malloc(sizeof(tSmeCsaOffloadInd));
Arif Hussainf5b6c412018-10-10 19:41:09 -07001690 if (!csa_offload_ind)
Pragaspathi Thilagaraj5fcd7182018-06-06 13:46:18 +05301691 goto err;
Pragaspathi Thilagaraj5fcd7182018-06-06 13:46:18 +05301692
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001693 session_entry =
1694 pe_find_session_by_bssid(mac_ctx,
1695 csa_params->bssId, &session_id);
1696 if (!session_entry) {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301697 pe_err("Session does not exists for %pM",
Chandrasekaran, Manishekar5c19dc52016-02-04 14:58:26 +05301698 csa_params->bssId);
Pragaspathi Thilagaraj655db192018-06-19 17:41:37 +05301699 qdf_mem_free(csa_offload_ind);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001700 goto err;
1701 }
1702
1703 sta_ds = dph_lookup_hash_entry(mac_ctx, session_entry->bssId, &aid,
1704 &session_entry->dph.dphHashTable);
1705
1706 if (!sta_ds) {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301707 pe_err("sta_ds does not exist");
Pragaspathi Thilagaraj655db192018-06-19 17:41:37 +05301708 qdf_mem_free(csa_offload_ind);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001709 goto err;
1710 }
1711
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001712 if (!LIM_IS_STA_ROLE(session_entry)) {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301713 pe_debug("Invalid role to handle CSA");
Pragaspathi Thilagaraj655db192018-06-19 17:41:37 +05301714 qdf_mem_free(csa_offload_ind);
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001715 goto err;
1716 }
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001717 /*
1718 * on receiving channel switch announcement from AP, delete all
1719 * TDLS peers before leaving BSS and proceed for channel switch
1720 */
Bala Venkatesh33f270b2019-01-14 16:31:29 +05301721
1722 lim_update_tdls_set_state_for_fw(session_entry, false);
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001723 lim_delete_tdls_peers(mac_ctx, session_entry);
Gupta, Kapil121bf212015-11-25 19:21:29 +05301724
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001725 lim_ch_switch = &session_entry->gLimChannelSwitch;
1726 session_entry->gLimChannelSwitch.switchMode =
1727 csa_params->switch_mode;
1728 /* timer already started by firmware, switch immediately */
1729 session_entry->gLimChannelSwitch.switchCount = 0;
1730 session_entry->gLimChannelSwitch.primaryChannel =
1731 csa_params->channel;
1732 session_entry->gLimChannelSwitch.state =
1733 eLIM_CHANNEL_SWITCH_PRIMARY_ONLY;
1734 session_entry->gLimChannelSwitch.ch_width = CH_WIDTH_20MHZ;
1735 lim_ch_switch->sec_ch_offset =
1736 session_entry->htSecondaryChannelOffset;
1737 session_entry->gLimChannelSwitch.ch_center_freq_seg0 = 0;
1738 session_entry->gLimChannelSwitch.ch_center_freq_seg1 = 0;
1739 chnl_switch_info =
1740 &session_entry->gLimWiderBWChannelSwitch;
1741
Tushnim Bhattacharyya332b74c2018-08-10 10:55:51 -07001742 pe_debug("vht: %d ht: %d flag: %x chan: %d, sec_ch_offset %d",
1743 session_entry->vhtCapability,
1744 session_entry->htSupportedChannelWidthSet,
1745 csa_params->ies_present_flag,
1746 csa_params->channel,
1747 csa_params->sec_chan_offset);
1748 pe_debug("seg1: %d seg2: %d width: %d country: %s class: %d",
1749 csa_params->new_ch_freq_seg1,
1750 csa_params->new_ch_freq_seg2,
1751 csa_params->new_ch_width,
1752 mac_ctx->scan.countryCodeCurrent,
1753 csa_params->new_op_class);
Chandrasekaran, Manishekarce2172e2016-02-18 16:12:43 +05301754
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001755 if (session_entry->vhtCapability &&
1756 session_entry->htSupportedChannelWidthSet) {
Kiran Kumar Lokere05a0658a2018-02-01 21:34:27 -08001757 if ((csa_params->ies_present_flag & lim_wbw_ie_present) &&
1758 (QDF_STATUS_SUCCESS == lim_process_csa_wbw_ie(mac_ctx,
1759 csa_params, chnl_switch_info,
1760 session_entry))) {
1761 pe_debug("CSA wide BW IE process successful");
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001762 lim_ch_switch->sec_ch_offset =
Abhishek Singhaf639b42017-06-16 14:14:36 +05301763 PHY_SINGLE_CHANNEL_CENTERED;
1764 if (chnl_switch_info->newChanWidth) {
1765 if (csa_params->channel <
1766 csa_params->new_ch_freq_seg1)
1767 lim_ch_switch->sec_ch_offset =
1768 PHY_DOUBLE_CHANNEL_LOW_PRIMARY;
1769 else
1770 lim_ch_switch->sec_ch_offset =
1771 PHY_DOUBLE_CHANNEL_HIGH_PRIMARY;
1772 }
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001773 } else if (csa_params->ies_present_flag
1774 & lim_xcsa_ie_present) {
1775 chan_space =
Kiran Kumar Lokerea3de2262017-04-12 12:15:04 -07001776 wlan_reg_dmn_get_chanwidth_from_opclass(
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001777 mac_ctx->scan.countryCodeCurrent,
1778 csa_params->channel,
1779 csa_params->new_op_class);
1780 session_entry->gLimChannelSwitch.state =
1781 eLIM_CHANNEL_SWITCH_PRIMARY_AND_SECONDARY;
1782
1783 if (chan_space == 80) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001784 chnl_switch_info->newChanWidth =
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001785 CH_WIDTH_80MHZ;
1786 } else if (chan_space == 40) {
1787 chnl_switch_info->newChanWidth =
1788 CH_WIDTH_40MHZ;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001789 } else {
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001790 chnl_switch_info->newChanWidth =
1791 CH_WIDTH_20MHZ;
1792 lim_ch_switch->state =
1793 eLIM_CHANNEL_SWITCH_PRIMARY_ONLY;
1794 }
1795
1796 ch_params.ch_width =
1797 chnl_switch_info->newChanWidth;
Kiran Kumar Lokerea3de2262017-04-12 12:15:04 -07001798 wlan_reg_set_channel_params(mac_ctx->pdev,
1799 csa_params->channel, 0, &ch_params);
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001800 chnl_switch_info->newCenterChanFreq0 =
1801 ch_params.center_freq_seg0;
1802 /*
1803 * This is not applicable for 20/40/80 MHz.
1804 * Only used when we support 80+80 MHz operation.
1805 * In case of 80+80 MHz, this parameter indicates
1806 * center channel frequency index of 80 MHz
1807 * channel offrequency segment 1.
1808 */
1809 chnl_switch_info->newCenterChanFreq1 =
1810 ch_params.center_freq_seg1;
1811 lim_ch_switch->sec_ch_offset =
1812 ch_params.sec_ch_offset;
1813
Kiran Kumar Lokere47127482017-12-20 18:09:55 -08001814 } else {
1815 lim_ch_switch->state =
1816 eLIM_CHANNEL_SWITCH_PRIMARY_AND_SECONDARY;
1817 ch_params.ch_width = CH_WIDTH_40MHZ;
1818 wlan_reg_set_channel_params(mac_ctx->pdev,
1819 csa_params->channel, 0, &ch_params);
1820 lim_ch_switch->sec_ch_offset =
1821 ch_params.sec_ch_offset;
1822 chnl_switch_info->newChanWidth = CH_WIDTH_40MHZ;
1823 chnl_switch_info->newCenterChanFreq0 =
1824 ch_params.center_freq_seg0;
1825 chnl_switch_info->newCenterChanFreq1 = 0;
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001826 }
1827 session_entry->gLimChannelSwitch.ch_center_freq_seg0 =
1828 chnl_switch_info->newCenterChanFreq0;
1829 session_entry->gLimChannelSwitch.ch_center_freq_seg1 =
1830 chnl_switch_info->newCenterChanFreq1;
1831 session_entry->gLimChannelSwitch.ch_width =
1832 chnl_switch_info->newChanWidth;
1833
1834 } else if (session_entry->htSupportedChannelWidthSet) {
1835 if (csa_params->ies_present_flag
1836 & lim_xcsa_ie_present) {
1837 chan_space =
Kiran Kumar Lokerea3de2262017-04-12 12:15:04 -07001838 wlan_reg_dmn_get_chanwidth_from_opclass(
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001839 mac_ctx->scan.countryCodeCurrent,
1840 csa_params->channel,
1841 csa_params->new_op_class);
1842 lim_ch_switch->state =
1843 eLIM_CHANNEL_SWITCH_PRIMARY_AND_SECONDARY;
1844 if (chan_space == 40) {
Kiran Kumar Lokere999e58c2016-01-07 02:18:39 -08001845 lim_ch_switch->ch_width =
1846 CH_WIDTH_40MHZ;
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001847 chnl_switch_info->newChanWidth =
1848 CH_WIDTH_40MHZ;
1849 ch_params.ch_width =
1850 chnl_switch_info->newChanWidth;
Kiran Kumar Lokerea3de2262017-04-12 12:15:04 -07001851 wlan_reg_set_channel_params(mac_ctx->pdev,
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001852 csa_params->channel,
Sandeep Puligilla1cc23f62016-04-27 16:52:49 -07001853 0, &ch_params);
Kiran Kumar Lokere999e58c2016-01-07 02:18:39 -08001854 lim_ch_switch->ch_center_freq_seg0 =
1855 ch_params.center_freq_seg0;
1856 lim_ch_switch->sec_ch_offset =
1857 ch_params.sec_ch_offset;
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001858 } else {
1859 lim_ch_switch->ch_width =
1860 CH_WIDTH_20MHZ;
1861 chnl_switch_info->newChanWidth =
1862 CH_WIDTH_40MHZ;
1863 lim_ch_switch->state =
1864 eLIM_CHANNEL_SWITCH_PRIMARY_ONLY;
1865 lim_ch_switch->sec_ch_offset =
1866 PHY_SINGLE_CHANNEL_CENTERED;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001867 }
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001868 } else {
1869 lim_ch_switch->ch_width =
1870 CH_WIDTH_40MHZ;
1871 lim_ch_switch->state =
1872 eLIM_CHANNEL_SWITCH_PRIMARY_AND_SECONDARY;
1873 ch_params.ch_width = CH_WIDTH_40MHZ;
Kiran Kumar Lokerea3de2262017-04-12 12:15:04 -07001874 wlan_reg_set_channel_params(mac_ctx->pdev,
1875 csa_params->channel, 0, &ch_params);
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001876 lim_ch_switch->ch_center_freq_seg0 =
1877 ch_params.center_freq_seg0;
1878 lim_ch_switch->sec_ch_offset =
1879 ch_params.sec_ch_offset;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001880 }
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001881
1882 }
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301883 pe_debug("new ch width: %d space: %d",
Chandrasekaran, Manishekarce2172e2016-02-18 16:12:43 +05301884 session_entry->gLimChannelSwitch.ch_width, chan_space);
Kiran Kumar Lokere75d636f2016-12-20 14:52:03 -08001885 if ((session_entry->currentOperChannel == csa_params->channel) &&
1886 (session_entry->ch_width ==
1887 session_entry->gLimChannelSwitch.ch_width)) {
1888 pe_debug("Ignore CSA, no change in ch and bw");
Pragaspathi Thilagaraj655db192018-06-19 17:41:37 +05301889 qdf_mem_free(csa_offload_ind);
Kiran Kumar Lokere75d636f2016-12-20 14:52:03 -08001890 goto err;
1891 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001892
Pragaspathi Thilagaraj5fcd7182018-06-06 13:46:18 +05301893 if (WLAN_REG_IS_24GHZ_CH(csa_params->channel) &&
gaurank kathpalia0c48d3d2019-01-29 15:03:07 +05301894 (session_entry->dot11mode == MLME_DOT11_MODE_11A))
1895 session_entry->dot11mode = MLME_DOT11_MODE_11G;
Pragaspathi Thilagaraj5fcd7182018-06-06 13:46:18 +05301896 else if (WLAN_REG_IS_5GHZ_CH(csa_params->channel) &&
gaurank kathpalia0c48d3d2019-01-29 15:03:07 +05301897 ((session_entry->dot11mode == MLME_DOT11_MODE_11G) ||
1898 (session_entry->dot11mode == MLME_DOT11_MODE_11G_ONLY)))
1899 session_entry->dot11mode = MLME_DOT11_MODE_11A;
Pragaspathi Thilagaraj5fcd7182018-06-06 13:46:18 +05301900
Vignesh Viswanathan3d478032018-08-02 20:18:53 +05301901 /* Send RSO Stop to FW before triggering the vdev restart for CSA */
1902 if (mac_ctx->lim.stop_roaming_callback)
1903 mac_ctx->lim.stop_roaming_callback(mac_ctx,
1904 session_entry->smeSessionId,
1905 ecsr_driver_disabled);
1906
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001907 lim_prepare_for11h_channel_switch(mac_ctx, session_entry);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001908
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001909 csa_offload_ind->mesgType = eWNI_SME_CSA_OFFLOAD_EVENT;
1910 csa_offload_ind->mesgLen = sizeof(tSmeCsaOffloadInd);
1911 qdf_mem_copy(csa_offload_ind->bssid.bytes, session_entry->bssId,
1912 QDF_MAC_ADDR_SIZE);
1913 mmh_msg.type = eWNI_SME_CSA_OFFLOAD_EVENT;
1914 mmh_msg.bodyptr = csa_offload_ind;
1915 mmh_msg.bodyval = 0;
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301916 pe_debug("Sending eWNI_SME_CSA_OFFLOAD_EVENT to SME");
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001917 MTRACE(mac_trace_msg_tx
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001918 (mac_ctx, session_entry->peSessionId, mmh_msg.type));
1919#ifdef FEATURE_WLAN_DIAG_SUPPORT
Kiran Kumar Lokeree38f4d22016-10-20 17:30:59 -07001920 lim_diag_event_report(mac_ctx,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001921 WLAN_PE_DIAG_SWITCH_CHL_IND_EVENT, session_entry,
Jeff Johnson0301ecb2018-06-29 09:36:23 -07001922 QDF_STATUS_SUCCESS, QDF_STATUS_SUCCESS);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001923#endif
Jeff Johnsona5abe272019-01-06 12:52:02 -08001924 lim_sys_process_mmh_msg_api(mac_ctx, &mmh_msg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001925
1926err:
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301927 qdf_mem_free(csa_params);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001928}
1929
1930/*--------------------------------------------------------------------------
1931 \brief pe_delete_session() - Handle the Delete BSS Response from HAL.
1932
Jeff Johnson35c58a82018-11-22 15:04:57 -08001933 \param mac - pointer to global adapter context
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001934 \param sessionId - Message pointer.
1935
1936 \sa
1937 --------------------------------------------------------------------------*/
1938
Jeff Johnson9320c1e2018-12-02 13:09:20 -08001939void lim_handle_delete_bss_rsp(struct mac_context *mac, struct scheduler_msg *MsgQ)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001940{
Jeff Johnsonb5c13332018-12-03 09:54:51 -08001941 struct pe_session *pe_session;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001942 tpDeleteBssParams pDelBss = (tpDeleteBssParams) (MsgQ->bodyptr);
1943
Jeff Johnsonb5c13332018-12-03 09:54:51 -08001944 pe_session =
Jeff Johnson35c58a82018-11-22 15:04:57 -08001945 pe_find_session_by_session_id(mac, pDelBss->sessionId);
Jeff Johnsonb5c13332018-12-03 09:54:51 -08001946 if (pe_session == NULL) {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05301947 pe_err("Session Does not exist for given sessionID: %d",
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001948 pDelBss->sessionId);
Tushnim Bhattacharyya6368a262018-10-12 09:48:45 -07001949 qdf_mem_free(MsgQ->bodyptr);
1950 MsgQ->bodyptr = NULL;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001951 return;
1952 }
Krunal Sonie50ff452017-10-11 18:23:55 -07001953
1954 /*
Deepak Dhamdhere2dae1bd2016-10-27 10:58:29 -07001955 * During DEL BSS handling, the PE Session will be deleted, but it is
1956 * better to clear this flag if the session is hanging around due
1957 * to some error conditions so that the next DEL_BSS request does
1958 * not take the HO_FAIL path
1959 */
Jeff Johnsonb5c13332018-12-03 09:54:51 -08001960 pe_session->process_ho_fail = false;
1961 if (LIM_IS_IBSS_ROLE(pe_session))
1962 lim_ibss_del_bss_rsp(mac, MsgQ->bodyptr, pe_session);
1963 else if (LIM_IS_UNKNOWN_ROLE(pe_session))
1964 lim_process_sme_del_bss_rsp(mac, MsgQ->bodyval, pe_session);
1965 else if (LIM_IS_NDI_ROLE(pe_session))
1966 lim_ndi_del_bss_rsp(mac, MsgQ->bodyptr, pe_session);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001967 else
Jeff Johnsonb5c13332018-12-03 09:54:51 -08001968 lim_process_mlm_del_bss_rsp(mac, MsgQ, pe_session);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001969
1970}
1971
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001972/** -----------------------------------------------------------------
1973 \brief lim_send_sme_aggr_qos_rsp() - sends SME FT AGGR QOS RSP
1974 \ This function sends a eWNI_SME_FT_AGGR_QOS_RSP to SME.
1975 \ SME only looks at rc and tspec field.
Jeff Johnson35c58a82018-11-22 15:04:57 -08001976 \param mac - global mac structure
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001977 \param rspReqd - is SmeAddTsRsp required
1978 \param status - status code of eWNI_SME_FT_AGGR_QOS_RSP
1979 \return tspec
1980 \sa
1981 ----------------------------------------------------------------- */
1982void
Jeff Johnson9320c1e2018-12-02 13:09:20 -08001983lim_send_sme_aggr_qos_rsp(struct mac_context *mac, tpSirAggrQosRsp aggrQosRsp,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001984 uint8_t smesessionId)
1985{
Rajeev Kumar37d478b2017-04-17 16:59:28 -07001986 struct scheduler_msg mmhMsg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001987
1988 mmhMsg.type = eWNI_SME_FT_AGGR_QOS_RSP;
1989 mmhMsg.bodyptr = aggrQosRsp;
1990 mmhMsg.bodyval = 0;
Jeff Johnson35c58a82018-11-22 15:04:57 -08001991 MTRACE(mac_trace(mac, TRACE_CODE_TX_SME_MSG,
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05301992 smesessionId, mmhMsg.type));
Jeff Johnsona5abe272019-01-06 12:52:02 -08001993 lim_sys_process_mmh_msg_api(mac, &mmhMsg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001994
1995 return;
1996}
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001997
Jeff Johnson9320c1e2018-12-02 13:09:20 -08001998void lim_send_sme_max_assoc_exceeded_ntf(struct mac_context *mac, tSirMacAddr peerMacAddr,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001999 uint8_t smesessionId)
2000{
Rajeev Kumar37d478b2017-04-17 16:59:28 -07002001 struct scheduler_msg mmhMsg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002002 tSmeMaxAssocInd *pSmeMaxAssocInd;
2003
Anurag Chouhan600c3a02016-03-01 10:33:54 +05302004 pSmeMaxAssocInd = qdf_mem_malloc(sizeof(tSmeMaxAssocInd));
Arif Hussainf5b6c412018-10-10 19:41:09 -07002005 if (!pSmeMaxAssocInd)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002006 return;
Anurag Chouhan600c3a02016-03-01 10:33:54 +05302007 qdf_mem_copy((uint8_t *) pSmeMaxAssocInd->peer_mac.bytes,
Anurag Chouhan6d760662016-02-20 16:05:43 +05302008 (uint8_t *) peerMacAddr, QDF_MAC_ADDR_SIZE);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002009 pSmeMaxAssocInd->mesgType = eWNI_SME_MAX_ASSOC_EXCEEDED;
2010 pSmeMaxAssocInd->mesgLen = sizeof(tSmeMaxAssocInd);
2011 pSmeMaxAssocInd->sessionId = smesessionId;
2012 mmhMsg.type = pSmeMaxAssocInd->mesgType;
2013 mmhMsg.bodyptr = pSmeMaxAssocInd;
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05302014 pe_debug("msgType: %s peerMacAddr "MAC_ADDRESS_STR "sme session id %d",
2015 "eWNI_SME_MAX_ASSOC_EXCEEDED", MAC_ADDR_ARRAY(peerMacAddr),
2016 pSmeMaxAssocInd->sessionId);
Jeff Johnson35c58a82018-11-22 15:04:57 -08002017 MTRACE(mac_trace(mac, TRACE_CODE_TX_SME_MSG,
Sreelakshmi Konamkibeacc2e2016-09-01 16:14:56 +05302018 smesessionId, mmhMsg.type));
Jeff Johnsona5abe272019-01-06 12:52:02 -08002019 lim_sys_process_mmh_msg_api(mac, &mmhMsg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002020
2021 return;
2022}
2023
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002024/** -----------------------------------------------------------------
2025 \brief lim_send_sme_ap_channel_switch_resp() - sends
2026 eWNI_SME_CHANNEL_CHANGE_RSP
2027 After receiving WMA_SWITCH_CHANNEL_RSP indication this
2028 function sends a eWNI_SME_CHANNEL_CHANGE_RSP to SME to notify
2029 that the Channel change has been done to the specified target
2030 channel in the Channel change request
Jeff Johnson35c58a82018-11-22 15:04:57 -08002031 \param mac - global mac structure
Jeff Johnsonb5c13332018-12-03 09:54:51 -08002032 \param pe_session - session info
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002033 \param pChnlParams - Channel switch params
2034 --------------------------------------------------------------------*/
2035void
Jeff Johnson9320c1e2018-12-02 13:09:20 -08002036lim_send_sme_ap_channel_switch_resp(struct mac_context *mac,
Jeff Johnsonb5c13332018-12-03 09:54:51 -08002037 struct pe_session *pe_session,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002038 tpSwitchChannelParams pChnlParams)
2039{
Rajeev Kumar37d478b2017-04-17 16:59:28 -07002040 struct scheduler_msg mmhMsg = {0};
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002041 tpSwitchChannelParams pSmeSwithChnlParams;
2042 uint8_t channelId;
Sandeep Puligilla2111d3c2016-02-03 01:46:15 -08002043 bool is_ch_dfs = false;
Kiran Kumar Lokere13644672016-02-29 15:40:10 -08002044 enum phy_ch_width ch_width;
Sandeep Puligilla2111d3c2016-02-03 01:46:15 -08002045 uint8_t ch_center_freq_seg1;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002046
Arif Hussainf5b6c412018-10-10 19:41:09 -07002047 pSmeSwithChnlParams = qdf_mem_malloc(sizeof(tSwitchChannelParams));
2048 if (!pSmeSwithChnlParams)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002049 return;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002050
Anurag Chouhan600c3a02016-03-01 10:33:54 +05302051 qdf_mem_copy(pSmeSwithChnlParams, pChnlParams,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002052 sizeof(tSwitchChannelParams));
2053
2054 channelId = pSmeSwithChnlParams->channelNumber;
Sandeep Puligilla2111d3c2016-02-03 01:46:15 -08002055 ch_width = pSmeSwithChnlParams->ch_width;
2056 ch_center_freq_seg1 = pSmeSwithChnlParams->ch_center_freq_seg1;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002057
2058 /*
2059 * Pass the sme sessionID to SME instead
2060 * PE session ID.
2061 */
Jeff Johnsonb5c13332018-12-03 09:54:51 -08002062 pSmeSwithChnlParams->peSessionId = pe_session->smeSessionId;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002063
2064 mmhMsg.type = eWNI_SME_CHANNEL_CHANGE_RSP;
2065 mmhMsg.bodyptr = (void *)pSmeSwithChnlParams;
2066 mmhMsg.bodyval = 0;
Jeff Johnsona5abe272019-01-06 12:52:02 -08002067 lim_sys_process_mmh_msg_api(mac, &mmhMsg);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002068
2069 /*
2070 * We should start beacon transmission only if the new
2071 * channel after channel change is Non-DFS. For a DFS
2072 * channel, PE will receive an explicit request from
2073 * upper layers to start the beacon transmission .
2074 */
2075
Sandeep Puligilla2111d3c2016-02-03 01:46:15 -08002076 if (ch_width == CH_WIDTH_160MHZ) {
2077 is_ch_dfs = true;
2078 } else if (ch_width == CH_WIDTH_80P80MHZ) {
Jeff Johnson35c58a82018-11-22 15:04:57 -08002079 if (wlan_reg_get_channel_state(mac->pdev, channelId) ==
Kiran Kumar Lokerea3de2262017-04-12 12:15:04 -07002080 CHANNEL_STATE_DFS ||
Jeff Johnson35c58a82018-11-22 15:04:57 -08002081 wlan_reg_get_channel_state(mac->pdev,
Kiran Kumar Lokerea3de2262017-04-12 12:15:04 -07002082 ch_center_freq_seg1 -
2083 SIR_80MHZ_START_CENTER_CH_DIFF) ==
Sandeep Puligilla2111d3c2016-02-03 01:46:15 -08002084 CHANNEL_STATE_DFS)
2085 is_ch_dfs = true;
2086 } else {
Jeff Johnson35c58a82018-11-22 15:04:57 -08002087 if (wlan_reg_get_channel_state(mac->pdev, channelId) ==
Kiran Kumar Lokerea3de2262017-04-12 12:15:04 -07002088 CHANNEL_STATE_DFS)
Sandeep Puligilla2111d3c2016-02-03 01:46:15 -08002089 is_ch_dfs = true;
2090 }
2091
2092 if (!is_ch_dfs) {
Jeff Johnsonb5c13332018-12-03 09:54:51 -08002093 if (channelId == pe_session->currentOperChannel) {
2094 lim_apply_configuration(mac, pe_session);
2095 lim_send_beacon(mac, pe_session);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002096 } else {
Nishank Aggarwal2d6162b2017-03-24 17:38:12 +05302097 pe_debug("Failed to Transmit Beacons on channel: %d after AP channel change response",
Jeff Johnsonb5c13332018-12-03 09:54:51 -08002098 pe_session->bcnLen);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002099 }
Arif Hussain1513cb22018-01-05 19:56:31 -08002100
Jeff Johnsonb5c13332018-12-03 09:54:51 -08002101 lim_obss_send_detection_cfg(mac, pe_session, true);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002102 }
2103 return;
2104}
2105
Peng Xu6363ec62017-05-15 11:06:33 -07002106#ifdef WLAN_FEATURE_11AX_BSS_COLOR
2107/**
2108 * lim_send_bss_color_change_ie_update() - update bss color change IE in
2109 * beacon template
2110 *
2111 * @mac_ctx: pointer to global adapter context
2112 * @session: session pointer
2113 *
2114 * Return: none
2115 */
2116static void
Jeff Johnson9320c1e2018-12-02 13:09:20 -08002117lim_send_bss_color_change_ie_update(struct mac_context *mac_ctx,
Jeff Johnsond7035a32018-11-18 22:03:13 -08002118 struct pe_session *session)
Peng Xu6363ec62017-05-15 11:06:33 -07002119{
2120 /* Update the beacon template and send to FW */
Jeff Johnson0301ecb2018-06-29 09:36:23 -07002121 if (sch_set_fixed_beacon_fields(mac_ctx, session) != QDF_STATUS_SUCCESS) {
Peng Xu6363ec62017-05-15 11:06:33 -07002122 pe_err("Unable to set BSS color change IE in beacon");
Srinivas Girigowdaeff16d92018-09-12 14:56:29 -07002123 return;
Peng Xu6363ec62017-05-15 11:06:33 -07002124 }
2125
2126 /* Send update beacon template message */
Abhishek Singhfc740be2018-10-12 11:34:26 +05302127 lim_send_beacon_ind(mac_ctx, session, REASON_COLOR_CHANGE);
Tushnim Bhattacharyya332b74c2018-08-10 10:55:51 -07002128 pe_debug("Updated BSS color change countdown = %d",
2129 session->he_bss_color_change.countdown);
Peng Xu6363ec62017-05-15 11:06:33 -07002130}
2131
2132static void
Jeff Johnson9320c1e2018-12-02 13:09:20 -08002133lim_handle_bss_color_change_ie(struct mac_context *mac_ctx,
Jeff Johnsond7035a32018-11-18 22:03:13 -08002134 struct pe_session *session)
Peng Xu6363ec62017-05-15 11:06:33 -07002135{
Arif Hussain2f2d3512018-03-06 12:37:03 -08002136 tUpdateBeaconParams beacon_params;
2137
Peng Xu6363ec62017-05-15 11:06:33 -07002138 /* handle bss color change IE */
2139 if (LIM_IS_AP_ROLE(session) &&
2140 session->he_op.bss_col_disabled) {
2141 if (session->he_bss_color_change.countdown > 0) {
2142 session->he_bss_color_change.countdown--;
2143 } else {
2144 session->bss_color_changing = 0;
Arif Hussain2f2d3512018-03-06 12:37:03 -08002145 qdf_mem_zero(&beacon_params, sizeof(beacon_params));
Arif Hussain05fb4872018-01-03 16:02:55 -08002146 if (session->he_bss_color_change.new_color != 0) {
Peng Xu6363ec62017-05-15 11:06:33 -07002147 session->he_op.bss_col_disabled = 0;
Arif Hussain05fb4872018-01-03 16:02:55 -08002148 session->he_op.bss_color =
2149 session->he_bss_color_change.new_color;
Arif Hussain2f2d3512018-03-06 12:37:03 -08002150 beacon_params.paramChangeBitmap |=
2151 PARAM_BSS_COLOR_CHANGED;
2152 beacon_params.bss_color_disabled = 0;
2153 beacon_params.bss_color =
2154 session->he_op.bss_color;
2155 lim_send_beacon_params(mac_ctx,
2156 &beacon_params,
2157 session);
Arif Hussain05fb4872018-01-03 16:02:55 -08002158 lim_send_obss_color_collision_cfg(mac_ctx,
2159 session,
2160 OBSS_COLOR_COLLISION_DETECTION);
2161 }
Peng Xu6363ec62017-05-15 11:06:33 -07002162 }
2163
2164 lim_send_bss_color_change_ie_update(mac_ctx, session);
2165 }
2166}
2167
2168#else
2169static void
Jeff Johnson9320c1e2018-12-02 13:09:20 -08002170lim_handle_bss_color_change_ie(struct mac_context *mac_ctx,
Jeff Johnsond7035a32018-11-18 22:03:13 -08002171 struct pe_session *session)
Peng Xu6363ec62017-05-15 11:06:33 -07002172{
2173}
2174#endif
2175
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002176void
Jeff Johnson9320c1e2018-12-02 13:09:20 -08002177lim_process_beacon_tx_success_ind(struct mac_context *mac_ctx, uint16_t msgType,
Pragaspathi Thilagaraj934275c2018-08-07 14:55:35 +05302178 void *event)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002179{
Jeff Johnsond7035a32018-11-18 22:03:13 -08002180 struct pe_session *session;
Pragaspathi Thilagaraj934275c2018-08-07 14:55:35 +05302181 tpSirFirstBeaconTxCompleteInd bcn_ind =
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002182 (tSirFirstBeaconTxCompleteInd *) event;
2183
Pragaspathi Thilagaraj934275c2018-08-07 14:55:35 +05302184 session = pe_find_session_by_bss_idx(mac_ctx, bcn_ind->bssIdx);
2185 if (!session) {
2186 pe_err("Session Does not exist for given session id");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002187 return;
2188 }
2189
Pragaspathi Thilagaraj934275c2018-08-07 14:55:35 +05302190 pe_debug("role: %d swIe: %d opIe: %d switch cnt:%d",
2191 GET_LIM_SYSTEM_ROLE(session),
2192 session->dfsIncludeChanSwIe,
2193 session->gLimOperatingMode.present,
2194 session->gLimChannelSwitch.switchCount);
Chandrasekaran, Manishekarce2172e2016-02-18 16:12:43 +05302195
Pragaspathi Thilagaraj934275c2018-08-07 14:55:35 +05302196 if (!LIM_IS_AP_ROLE(session))
2197 return;
Ganesh Kondabattini02ec62b2018-01-24 18:22:24 +05302198
Pragaspathi Thilagaraj934275c2018-08-07 14:55:35 +05302199 if (session->dfsIncludeChanSwIe &&
2200 (session->gLimChannelSwitch.switchCount ==
2201 mac_ctx->sap.SapDfsInfo.sap_ch_switch_beacon_cnt))
2202 lim_process_ap_ecsa_timeout(session);
Ganesh Kondabattini02ec62b2018-01-24 18:22:24 +05302203
lifeng1c16b6b2017-09-25 13:59:55 +08002204
Abhishek Singhfc740be2018-10-12 11:34:26 +05302205 if (session->gLimOperatingMode.present)
2206 /* Done with nss update */
Pragaspathi Thilagaraj934275c2018-08-07 14:55:35 +05302207 session->gLimOperatingMode.present = 0;
Peng Xu6363ec62017-05-15 11:06:33 -07002208
Pragaspathi Thilagaraj934275c2018-08-07 14:55:35 +05302209 lim_handle_bss_color_change_ie(mac_ctx, session);
Peng Xu6363ec62017-05-15 11:06:33 -07002210
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002211 return;
2212}