blob: 119ad01d5f77e7cf476327bb1cb35ddd18803296 [file] [log] [blame]
Jeff Johnson295189b2012-06-20 16:38:30 -07001/*
Abhishek Singhb3e376c2017-01-04 15:27:13 +05302 * Copyright (c) 2012-2017 The Linux Foundation. All rights reserved.
Kiet Lam842dad02014-02-18 18:44:02 -08003 *
4 * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
5 *
6 *
7 * Permission to use, copy, modify, and/or distribute this software for
8 * any purpose with or without fee is hereby granted, provided that the
9 * above copyright notice and this permission notice appear in all
10 * copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
13 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
14 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
15 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
16 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
17 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
18 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19 * PERFORMANCE OF THIS SOFTWARE.
20 */
21
22/*
Kiet Lama7f454d2014-07-24 12:04:06 -070023 * This file was originally distributed by Qualcomm Atheros, Inc.
24 * under proprietary terms before Copyright ownership was assigned
25 * to the Linux Foundation.
Edhar, Mahesh Kumar59129f52015-01-14 14:26:04 +053026 *
Kiet Lamaa8e15a2014-02-11 23:30:06 -080027 */
Kiet Lam842dad02014-02-18 18:44:02 -080028
29
Kiet Lama7f454d2014-07-24 12:04:06 -070030
31
Jeff Johnson295189b2012-06-20 16:38:30 -070032/**========================================================================
33
34 \file wlan_hdd_cfg80211.c
35
36 \brief WLAN Host Device Driver implementation
37
Jeff Johnson295189b2012-06-20 16:38:30 -070038 ========================================================================*/
39
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070040/**=========================================================================
Jeff Johnson295189b2012-06-20 16:38:30 -070041
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070042 EDIT HISTORY FOR FILE
Jeff Johnson295189b2012-06-20 16:38:30 -070043
44
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070045 This section contains comments describing changes made to the module.
46 Notice that changes are listed in reverse chronological order.
Jeff Johnson295189b2012-06-20 16:38:30 -070047
48
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070049 $Header:$ $DateTime: $ $Author: $
Jeff Johnson295189b2012-06-20 16:38:30 -070050
51
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070052 when who what, where, why
Jeff Johnson295189b2012-06-20 16:38:30 -070053 -------- --- --------------------------------------------------------
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070054 21/12/09 Ashwani Created module.
Jeff Johnson295189b2012-06-20 16:38:30 -070055
56 07/06/10 Kumar Deepak Implemented cfg80211 callbacks for ANDROID
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070057 Ganesh K
Jeff Johnson295189b2012-06-20 16:38:30 -070058 ==========================================================================*/
59
Jeff Johnson295189b2012-06-20 16:38:30 -070060
61#include <linux/version.h>
62#include <linux/module.h>
63#include <linux/kernel.h>
64#include <linux/init.h>
65#include <linux/wireless.h>
66#include <wlan_hdd_includes.h>
67#include <net/arp.h>
68#include <net/cfg80211.h>
69#include <linux/wireless.h>
70#include <wlan_hdd_wowl.h>
71#include <aniGlobal.h>
72#include "ccmApi.h"
73#include "sirParams.h"
74#include "dot11f.h"
75#include "wlan_hdd_assoc.h"
76#include "wlan_hdd_wext.h"
77#include "sme_Api.h"
78#include "wlan_hdd_p2p.h"
79#include "wlan_hdd_cfg80211.h"
80#include "wlan_hdd_hostapd.h"
81#include "sapInternal.h"
82#include "wlan_hdd_softap_tx_rx.h"
83#include "wlan_hdd_main.h"
Madan Mohan Koyyalamudid5acbf52012-11-28 01:45:08 +053084#include "wlan_hdd_assoc.h"
Gopichand Nakkala20c4c042013-04-19 22:08:55 +053085#include "wlan_hdd_power.h"
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053086#include "wlan_hdd_trace.h"
87#include "vos_types.h"
88#include "vos_trace.h"
Jeff Johnson295189b2012-06-20 16:38:30 -070089#ifdef WLAN_BTAMP_FEATURE
90#include "bap_hdd_misc.h"
91#endif
92#include <qc_sap_ioctl.h>
Mohit Khanna698ba2a2012-12-04 15:08:18 -080093#include "wlan_hdd_tdls.h"
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +053094#include "wlan_hdd_wmm.h"
Madan Mohan Koyyalamudice419872013-09-13 19:36:52 +053095#include "wlan_qct_wda.h"
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +053096#include "wlan_nv.h"
Leo Chang6fe1f922013-06-07 19:21:24 -070097#include "wlan_hdd_dev_pwr.h"
Sushant Kaushik084f6592015-09-10 13:11:56 +053098#include "qwlan_version.h"
c_manjeecfd1efb2015-09-25 19:32:34 +053099#include "wlan_logging_sock_svc.h"
Agrawal Ashishcfe83282016-09-29 13:03:45 +0530100#include "wlan_hdd_misc.h"
Sushant Kaushik084f6592015-09-10 13:11:56 +0530101
Jeff Johnson295189b2012-06-20 16:38:30 -0700102
103#define g_mode_rates_size (12)
104#define a_mode_rates_size (8)
105#define FREQ_BASE_80211G (2407)
106#define FREQ_BAND_DIFF_80211G (5)
Jeff Johnson04dd8a82012-06-29 20:41:40 -0700107#define MAX_SCAN_SSID 9
Kiet Lamac06e2c2013-10-23 16:25:07 +0530108#define MAX_PENDING_LOG 5
Jeff Johnson295189b2012-06-20 16:38:30 -0700109#define GET_IE_LEN_IN_BSS_DESC(lenInBss) ( lenInBss + sizeof(lenInBss) - \
krunal soni2a6a9062014-02-11 14:14:23 -0800110 ((uintptr_t)OFFSET_OF( tSirBssDescription, ieFields)))
Jeff Johnson295189b2012-06-20 16:38:30 -0700111
112#define HDD2GHZCHAN(freq, chan, flag) { \
113 .band = IEEE80211_BAND_2GHZ, \
114 .center_freq = (freq), \
115 .hw_value = (chan),\
116 .flags = (flag), \
117 .max_antenna_gain = 0 ,\
118 .max_power = 30, \
119}
120
121#define HDD5GHZCHAN(freq, chan, flag) { \
122 .band = IEEE80211_BAND_5GHZ, \
123 .center_freq = (freq), \
124 .hw_value = (chan),\
125 .flags = (flag), \
126 .max_antenna_gain = 0 ,\
127 .max_power = 30, \
128}
129
130#define HDD_G_MODE_RATETAB(rate, rate_id, flag)\
131{\
132 .bitrate = rate, \
133 .hw_value = rate_id, \
134 .flags = flag, \
135}
136
Gopichand Nakkala356fb102013-03-06 12:34:04 +0530137#ifdef WLAN_FEATURE_VOWIFI_11R
138#define WLAN_AKM_SUITE_FT_8021X 0x000FAC03
139#define WLAN_AKM_SUITE_FT_PSK 0x000FAC04
140#endif
141
Naresh Jayaram3180aa42014-02-12 21:47:26 +0530142#define HDD_CHANNEL_14 14
Dasari Srinivase18b2cf2014-10-28 17:09:42 +0530143#define WLAN_HDD_MAX_FEATURE_SET 8
Naresh Jayaram3180aa42014-02-12 21:47:26 +0530144
Sunil Duttc69bccb2014-05-26 21:30:20 +0530145#ifdef WLAN_FEATURE_LINK_LAYER_STATS
146/*
147 * Used to allocate the size of 4096 for the link layer stats.
148 * The size of 4096 is considered assuming that all data per
149 * respective event fit with in the limit.Please take a call
150 * on the limit based on the data requirements on link layer
151 * statistics.
152 */
153#define LL_STATS_EVENT_BUF_SIZE 4096
154#endif
Dino Mycle6fb96c12014-06-10 11:52:40 +0530155#ifdef WLAN_FEATURE_EXTSCAN
156/*
157 * Used to allocate the size of 4096 for the EXTScan NL data.
158 * The size of 4096 is considered assuming that all data per
159 * respective event fit with in the limit.Please take a call
160 * on the limit based on the data requirements.
161 */
162
163#define EXTSCAN_EVENT_BUF_SIZE 4096
164#define EXTSCAN_MAX_CACHED_RESULTS_PER_IND 32
165#endif
Sunil Duttc69bccb2014-05-26 21:30:20 +0530166
Atul Mittal115287b2014-07-08 13:26:33 +0530167/*EXT TDLS*/
168/*
169 * Used to allocate the size of 4096 for the TDLS.
170 * The size of 4096 is considered assuming that all data per
171 * respective event fit with in the limit.Please take a call
172 * on the limit based on the data requirements on link layer
173 * statistics.
174 */
175#define EXTTDLS_EVENT_BUF_SIZE 4096
176
Hanumantha Reddy Pothulaca1d1cc2015-10-26 15:37:35 +0530177/*
178 * Values for Mac spoofing feature
179 *
180 */
181#define MAC_ADDR_SPOOFING_FW_HOST_DISABLE 0
182#define MAC_ADDR_SPOOFING_FW_HOST_ENABLE 1
183#define MAC_ADDR_SPOOFING_FW_ENABLE_HOST_DISABLE 2
Padma, Santhosh Kumardb2d75b2015-11-17 12:18:10 +0530184#define MAC_ADDR_SPOOFING_DEFER_INTERVAL 10 //in ms
185
Anurag Chouhan343af7e2016-12-16 13:11:19 +0530186/*
187 * max_sched_scan_plans defined to 10
188 */
189#define MAX_SCHED_SCAN_PLANS 10
Hanumantha Reddy Pothulaca1d1cc2015-10-26 15:37:35 +0530190
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530191static const u32 hdd_cipher_suites[] =
Jeff Johnson295189b2012-06-20 16:38:30 -0700192{
193 WLAN_CIPHER_SUITE_WEP40,
194 WLAN_CIPHER_SUITE_WEP104,
195 WLAN_CIPHER_SUITE_TKIP,
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -0800196#ifdef FEATURE_WLAN_ESE
Jeff Johnson295189b2012-06-20 16:38:30 -0700197#define WLAN_CIPHER_SUITE_KRK 0x004096ff /* use for KRK */
198 WLAN_CIPHER_SUITE_KRK,
199 WLAN_CIPHER_SUITE_CCMP,
200#else
201 WLAN_CIPHER_SUITE_CCMP,
202#endif
203#ifdef FEATURE_WLAN_WAPI
204 WLAN_CIPHER_SUITE_SMS4,
205#endif
Chet Lanctot186b5732013-03-18 10:26:30 -0700206#ifdef WLAN_FEATURE_11W
207 WLAN_CIPHER_SUITE_AES_CMAC,
208#endif
Jeff Johnson295189b2012-06-20 16:38:30 -0700209};
210
211static inline int is_broadcast_ether_addr(const u8 *addr)
212{
213 return ((addr[0] == 0xff) && (addr[1] == 0xff) && (addr[2] == 0xff) &&
214 (addr[3] == 0xff) && (addr[4] == 0xff) && (addr[5] == 0xff));
215}
216
Agrawal Ashish97dec502015-11-26 20:20:58 +0530217const static struct ieee80211_channel hdd_channels_2_4_GHZ[] =
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530218{
Jeff Johnson295189b2012-06-20 16:38:30 -0700219 HDD2GHZCHAN(2412, 1, 0) ,
220 HDD2GHZCHAN(2417, 2, 0) ,
221 HDD2GHZCHAN(2422, 3, 0) ,
222 HDD2GHZCHAN(2427, 4, 0) ,
223 HDD2GHZCHAN(2432, 5, 0) ,
224 HDD2GHZCHAN(2437, 6, 0) ,
225 HDD2GHZCHAN(2442, 7, 0) ,
226 HDD2GHZCHAN(2447, 8, 0) ,
227 HDD2GHZCHAN(2452, 9, 0) ,
228 HDD2GHZCHAN(2457, 10, 0) ,
229 HDD2GHZCHAN(2462, 11, 0) ,
230 HDD2GHZCHAN(2467, 12, 0) ,
231 HDD2GHZCHAN(2472, 13, 0) ,
232 HDD2GHZCHAN(2484, 14, 0) ,
233};
234
Agrawal Ashish97dec502015-11-26 20:20:58 +0530235const static struct ieee80211_channel hdd_channels_5_GHZ[] =
Jeff Johnson295189b2012-06-20 16:38:30 -0700236{
Madan Mohan Koyyalamudic3a240c2012-09-28 15:34:08 -0700237 HDD5GHZCHAN(4920, 240, 0) ,
238 HDD5GHZCHAN(4940, 244, 0) ,
239 HDD5GHZCHAN(4960, 248, 0) ,
240 HDD5GHZCHAN(4980, 252, 0) ,
241 HDD5GHZCHAN(5040, 208, 0) ,
242 HDD5GHZCHAN(5060, 212, 0) ,
243 HDD5GHZCHAN(5080, 216, 0) ,
Jeff Johnson295189b2012-06-20 16:38:30 -0700244 HDD5GHZCHAN(5180, 36, 0) ,
245 HDD5GHZCHAN(5200, 40, 0) ,
246 HDD5GHZCHAN(5220, 44, 0) ,
247 HDD5GHZCHAN(5240, 48, 0) ,
248 HDD5GHZCHAN(5260, 52, 0) ,
249 HDD5GHZCHAN(5280, 56, 0) ,
250 HDD5GHZCHAN(5300, 60, 0) ,
251 HDD5GHZCHAN(5320, 64, 0) ,
252 HDD5GHZCHAN(5500,100, 0) ,
253 HDD5GHZCHAN(5520,104, 0) ,
254 HDD5GHZCHAN(5540,108, 0) ,
255 HDD5GHZCHAN(5560,112, 0) ,
256 HDD5GHZCHAN(5580,116, 0) ,
257 HDD5GHZCHAN(5600,120, 0) ,
258 HDD5GHZCHAN(5620,124, 0) ,
259 HDD5GHZCHAN(5640,128, 0) ,
260 HDD5GHZCHAN(5660,132, 0) ,
261 HDD5GHZCHAN(5680,136, 0) ,
262 HDD5GHZCHAN(5700,140, 0) ,
Leo Chang80de3c22013-11-26 10:52:12 -0800263#ifdef FEATURE_WLAN_CH144
264 HDD5GHZCHAN(5720,144, 0) ,
265#endif /* FEATURE_WLAN_CH144 */
Jeff Johnson295189b2012-06-20 16:38:30 -0700266 HDD5GHZCHAN(5745,149, 0) ,
267 HDD5GHZCHAN(5765,153, 0) ,
268 HDD5GHZCHAN(5785,157, 0) ,
269 HDD5GHZCHAN(5805,161, 0) ,
270 HDD5GHZCHAN(5825,165, 0) ,
271};
272
273static struct ieee80211_rate g_mode_rates[] =
274{
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530275 HDD_G_MODE_RATETAB(10, 0x1, 0),
276 HDD_G_MODE_RATETAB(20, 0x2, 0),
277 HDD_G_MODE_RATETAB(55, 0x4, 0),
278 HDD_G_MODE_RATETAB(110, 0x8, 0),
279 HDD_G_MODE_RATETAB(60, 0x10, 0),
280 HDD_G_MODE_RATETAB(90, 0x20, 0),
281 HDD_G_MODE_RATETAB(120, 0x40, 0),
282 HDD_G_MODE_RATETAB(180, 0x80, 0),
283 HDD_G_MODE_RATETAB(240, 0x100, 0),
284 HDD_G_MODE_RATETAB(360, 0x200, 0),
285 HDD_G_MODE_RATETAB(480, 0x400, 0),
Jeff Johnson295189b2012-06-20 16:38:30 -0700286 HDD_G_MODE_RATETAB(540, 0x800, 0),
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530287};
Jeff Johnson295189b2012-06-20 16:38:30 -0700288
289static struct ieee80211_rate a_mode_rates[] =
290{
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530291 HDD_G_MODE_RATETAB(60, 0x10, 0),
292 HDD_G_MODE_RATETAB(90, 0x20, 0),
293 HDD_G_MODE_RATETAB(120, 0x40, 0),
294 HDD_G_MODE_RATETAB(180, 0x80, 0),
295 HDD_G_MODE_RATETAB(240, 0x100, 0),
296 HDD_G_MODE_RATETAB(360, 0x200, 0),
297 HDD_G_MODE_RATETAB(480, 0x400, 0),
Jeff Johnson295189b2012-06-20 16:38:30 -0700298 HDD_G_MODE_RATETAB(540, 0x800, 0),
299};
300
301static struct ieee80211_supported_band wlan_hdd_band_2_4_GHZ =
302{
Agrawal Ashish97dec502015-11-26 20:20:58 +0530303 .channels = NULL,
Jeff Johnson295189b2012-06-20 16:38:30 -0700304 .n_channels = ARRAY_SIZE(hdd_channels_2_4_GHZ),
305 .band = IEEE80211_BAND_2GHZ,
306 .bitrates = g_mode_rates,
307 .n_bitrates = g_mode_rates_size,
308 .ht_cap.ht_supported = 1,
309 .ht_cap.cap = IEEE80211_HT_CAP_SGI_20
310 | IEEE80211_HT_CAP_GRN_FLD
311 | IEEE80211_HT_CAP_DSSSCCK40
312 | IEEE80211_HT_CAP_LSIG_TXOP_PROT,
313 .ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K,
314 .ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_16,
315 .ht_cap.mcs.rx_mask = { 0xff, 0, 0, 0, 0, 0, 0, 0, 0, 0, },
316 .ht_cap.mcs.rx_highest = cpu_to_le16( 72 ),
317 .ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED,
318};
319
Jeff Johnson295189b2012-06-20 16:38:30 -0700320static struct ieee80211_supported_band wlan_hdd_band_5_GHZ =
321{
Agrawal Ashish97dec502015-11-26 20:20:58 +0530322 .channels = NULL,
Jeff Johnson295189b2012-06-20 16:38:30 -0700323 .n_channels = ARRAY_SIZE(hdd_channels_5_GHZ),
324 .band = IEEE80211_BAND_5GHZ,
325 .bitrates = a_mode_rates,
326 .n_bitrates = a_mode_rates_size,
327 .ht_cap.ht_supported = 1,
328 .ht_cap.cap = IEEE80211_HT_CAP_SGI_20
329 | IEEE80211_HT_CAP_GRN_FLD
330 | IEEE80211_HT_CAP_DSSSCCK40
331 | IEEE80211_HT_CAP_LSIG_TXOP_PROT
332 | IEEE80211_HT_CAP_SGI_40
333 | IEEE80211_HT_CAP_SUP_WIDTH_20_40,
334 .ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K,
335 .ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_16,
336 .ht_cap.mcs.rx_mask = { 0xff, 0, 0, 0, 0, 0, 0, 0, 0, 0, },
337 .ht_cap.mcs.rx_highest = cpu_to_le16( 72 ),
338 .ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED,
339};
340
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530341/* This structure contain information what kind of frame are expected in
Jeff Johnson295189b2012-06-20 16:38:30 -0700342 TX/RX direction for each kind of interface */
343static const struct ieee80211_txrx_stypes
344wlan_hdd_txrx_stypes[NUM_NL80211_IFTYPES] = {
345 [NL80211_IFTYPE_STATION] = {
346 .tx = 0xffff,
347 .rx = BIT(SIR_MAC_MGMT_ACTION) |
348 BIT(SIR_MAC_MGMT_PROBE_REQ),
349 },
350 [NL80211_IFTYPE_AP] = {
351 .tx = 0xffff,
352 .rx = BIT(SIR_MAC_MGMT_ASSOC_REQ) |
353 BIT(SIR_MAC_MGMT_REASSOC_REQ) |
354 BIT(SIR_MAC_MGMT_PROBE_REQ) |
355 BIT(SIR_MAC_MGMT_DISASSOC) |
356 BIT(SIR_MAC_MGMT_AUTH) |
357 BIT(SIR_MAC_MGMT_DEAUTH) |
358 BIT(SIR_MAC_MGMT_ACTION),
359 },
Jeff Johnsonbc006202013-04-29 14:05:30 -0700360 [NL80211_IFTYPE_ADHOC] = {
361 .tx = 0xffff,
362 .rx = BIT(SIR_MAC_MGMT_ASSOC_REQ) |
363 BIT(SIR_MAC_MGMT_REASSOC_REQ) |
364 BIT(SIR_MAC_MGMT_PROBE_REQ) |
365 BIT(SIR_MAC_MGMT_DISASSOC) |
366 BIT(SIR_MAC_MGMT_AUTH) |
367 BIT(SIR_MAC_MGMT_DEAUTH) |
368 BIT(SIR_MAC_MGMT_ACTION),
369 },
Jeff Johnson295189b2012-06-20 16:38:30 -0700370 [NL80211_IFTYPE_P2P_CLIENT] = {
371 .tx = 0xffff,
372 .rx = BIT(SIR_MAC_MGMT_ACTION) |
373 BIT(SIR_MAC_MGMT_PROBE_REQ),
374 },
375 [NL80211_IFTYPE_P2P_GO] = {
376 /* This is also same as for SoftAP */
377 .tx = 0xffff,
378 .rx = BIT(SIR_MAC_MGMT_ASSOC_REQ) |
379 BIT(SIR_MAC_MGMT_REASSOC_REQ) |
380 BIT(SIR_MAC_MGMT_PROBE_REQ) |
381 BIT(SIR_MAC_MGMT_DISASSOC) |
382 BIT(SIR_MAC_MGMT_AUTH) |
383 BIT(SIR_MAC_MGMT_DEAUTH) |
384 BIT(SIR_MAC_MGMT_ACTION),
385 },
Jeff Johnson295189b2012-06-20 16:38:30 -0700386};
387
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800388#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800389static const struct ieee80211_iface_limit
390wlan_hdd_iface_limit[] = {
391 {
Sunil Ravia72c3992013-01-31 06:12:22 -0800392 /* max = 3 ; Our driver create two interfaces during driver init
393 * wlan0 and p2p0 interfaces. p2p0 is considered as station
394 * interface until a group is formed. In JB architecture, once the
395 * group is formed, interface type of p2p0 is changed to P2P GO or
396 * Client.
397 * When supplicant remove the group, it first issue a set interface
398 * cmd to change the mode back to Station. In JB this works fine as
399 * we advertize two station type interface during driver init.
400 * Some vendors create separate interface for P2P GO/Client,
401 * after group formation(Third one). But while group remove
402 * supplicant first tries to change the mode(3rd interface) to STATION
403 * But as we advertized only two sta type interfaces nl80211 was
404 * returning error for the third one which was leading to failure in
405 * delete interface. Ideally while removing the group, supplicant
406 * should not try to change the 3rd interface mode to Station type.
407 * Till we get a fix in wpa_supplicant, we advertize max STA
408 * interface type to 3
409 */
410 .max = 3,
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800411 .types = BIT(NL80211_IFTYPE_STATION),
412 },
413 {
414 .max = 1,
Jeff Johnsonbc006202013-04-29 14:05:30 -0700415 .types = BIT(NL80211_IFTYPE_ADHOC) | BIT(NL80211_IFTYPE_AP),
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800416 },
417 {
418 .max = 1,
419 .types = BIT(NL80211_IFTYPE_P2P_GO) |
420 BIT(NL80211_IFTYPE_P2P_CLIENT),
421 },
422};
423
424/* By default, only single channel concurrency is allowed */
425static struct ieee80211_iface_combination
426wlan_hdd_iface_combination = {
427 .limits = wlan_hdd_iface_limit,
428 .num_different_channels = 1,
Sunil Ravia72c3992013-01-31 06:12:22 -0800429 /*
430 * max = WLAN_MAX_INTERFACES ; JellyBean architecture creates wlan0
431 * and p2p0 interfaces during driver init
432 * Some vendors create separate interface for P2P operations.
433 * wlan0: STA interface
434 * p2p0: P2P Device interface, action frames goes
435 * through this interface.
436 * p2p-xx: P2P interface, After GO negotiation this interface is
437 * created for p2p operations(GO/CLIENT interface).
438 */
439 .max_interfaces = WLAN_MAX_INTERFACES,
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800440 .n_limits = ARRAY_SIZE(wlan_hdd_iface_limit),
441 .beacon_int_infra_match = false,
442};
443#endif
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800444
Jeff Johnson295189b2012-06-20 16:38:30 -0700445static struct cfg80211_ops wlan_hdd_cfg80211_ops;
446
447/* Data rate 100KBPS based on IE Index */
448struct index_data_rate_type
449{
450 v_U8_t beacon_rate_index;
451 v_U16_t supported_rate[4];
452};
453
454/* 11B, 11G Rate table include Basic rate and Extended rate
455 The IDX field is the rate index
456 The HI field is the rate when RSSI is strong or being ignored
457 (in this case we report actual rate)
458 The MID field is the rate when RSSI is moderate
459 (in this case we cap 11b rates at 5.5 and 11g rates at 24)
460 The LO field is the rate when RSSI is low
461 (in this case we don't report rates, actual current rate used)
462 */
463static const struct
464{
465 v_U8_t beacon_rate_index;
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -0700466 v_U16_t supported_rate[4];
Jeff Johnson295189b2012-06-20 16:38:30 -0700467} supported_data_rate[] =
468{
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -0700469/* IDX HI HM LM LO (RSSI-based index */
470 {2, { 10, 10, 10, 0}},
471 {4, { 20, 20, 10, 0}},
472 {11, { 55, 20, 10, 0}},
473 {12, { 60, 55, 20, 0}},
474 {18, { 90, 55, 20, 0}},
475 {22, {110, 55, 20, 0}},
476 {24, {120, 90, 60, 0}},
477 {36, {180, 120, 60, 0}},
478 {44, {220, 180, 60, 0}},
479 {48, {240, 180, 90, 0}},
480 {66, {330, 180, 90, 0}},
481 {72, {360, 240, 90, 0}},
482 {96, {480, 240, 120, 0}},
483 {108, {540, 240, 120, 0}}
Jeff Johnson295189b2012-06-20 16:38:30 -0700484};
485
486/* MCS Based rate table */
487static struct index_data_rate_type supported_mcs_rate[] =
488{
489/* MCS L20 L40 S20 S40 */
490 {0, {65, 135, 72, 150}},
491 {1, {130, 270, 144, 300}},
492 {2, {195, 405, 217, 450}},
493 {3, {260, 540, 289, 600}},
494 {4, {390, 810, 433, 900}},
495 {5, {520, 1080, 578, 1200}},
496 {6, {585, 1215, 650, 1350}},
497 {7, {650, 1350, 722, 1500}}
498};
499
Leo Chang6f8870f2013-03-26 18:11:36 -0700500#ifdef WLAN_FEATURE_11AC
501
Gopichand Nakkala4c705372013-04-24 13:20:33 +0530502#define DATA_RATE_11AC_MCS_MASK 0x03
Leo Chang6f8870f2013-03-26 18:11:36 -0700503
504struct index_vht_data_rate_type
505{
506 v_U8_t beacon_rate_index;
Gopichand Nakkala4c705372013-04-24 13:20:33 +0530507 v_U16_t supported_VHT80_rate[2];
508 v_U16_t supported_VHT40_rate[2];
509 v_U16_t supported_VHT20_rate[2];
Leo Chang6f8870f2013-03-26 18:11:36 -0700510};
511
512typedef enum
513{
514 DATA_RATE_11AC_MAX_MCS_7,
515 DATA_RATE_11AC_MAX_MCS_8,
516 DATA_RATE_11AC_MAX_MCS_9,
517 DATA_RATE_11AC_MAX_MCS_NA
518} eDataRate11ACMaxMcs;
519
Mahesh A Saptasagar7bd6ad42014-07-21 18:56:33 +0530520/* SSID broadcast type */
521typedef enum eSSIDBcastType
522{
523 eBCAST_UNKNOWN = 0,
524 eBCAST_NORMAL = 1,
525 eBCAST_HIDDEN = 2,
526} tSSIDBcastType;
527
Leo Chang6f8870f2013-03-26 18:11:36 -0700528/* MCS Based VHT rate table */
529static struct index_vht_data_rate_type supported_vht_mcs_rate[] =
530{
Gopichand Nakkala4c705372013-04-24 13:20:33 +0530531/* MCS L80 S80 L40 S40 L20 S40*/
532 {0, {293, 325}, {135, 150}, {65, 72}},
533 {1, {585, 650}, {270, 300}, {130, 144}},
534 {2, {878, 975}, {405, 450}, {195, 217}},
535 {3, {1170, 1300}, {540, 600}, {260, 289}},
536 {4, {1755, 1950}, {810, 900}, {390, 433}},
537 {5, {2340, 2600}, {1080, 1200}, {520, 578}},
538 {6, {2633, 2925}, {1215, 1350}, {585, 650}},
539 {7, {2925, 3250}, {1350, 1500}, {650, 722}},
540 {8, {3510, 3900}, {1620, 1800}, {780, 867}},
541 {9, {3900, 4333}, {1800, 2000}, {780, 867}}
Leo Chang6f8870f2013-03-26 18:11:36 -0700542};
543#endif /* WLAN_FEATURE_11AC */
544
c_hpothu79aab322014-07-14 21:11:01 +0530545/*array index points to MCS and array value points respective rssi*/
546static int rssiMcsTbl[][10] =
547{
548/*MCS 0 1 2 3 4 5 6 7 8 9*/
549 {-82, -79, -77, -74, -70, -66, -65, -64, -59, -57}, //20
550 {-79, -76, -74, -71, -67, -63, -62, -61, -56, -54}, //40
551 {-76, -73, -71, -68, -64, -60, -59, -58, -53, -51} //80
552};
553
Jeff Johnson295189b2012-06-20 16:38:30 -0700554extern struct net_device_ops net_ops_struct;
Dasari Srinivas7875a302014-09-26 17:50:57 +0530555#ifdef FEATURE_WLAN_SCAN_PNO
556static eHalStatus wlan_hdd_is_pno_allowed(hdd_adapter_t *pAdapter);
557#endif
Jeff Johnson295189b2012-06-20 16:38:30 -0700558
Leo Chang9056f462013-08-01 19:21:11 -0700559#ifdef WLAN_NL80211_TESTMODE
560enum wlan_hdd_tm_attr
561{
562 WLAN_HDD_TM_ATTR_INVALID = 0,
563 WLAN_HDD_TM_ATTR_CMD = 1,
564 WLAN_HDD_TM_ATTR_DATA = 2,
565 WLAN_HDD_TM_ATTR_TYPE = 3,
566 /* keep last */
567 WLAN_HDD_TM_ATTR_AFTER_LAST,
568 WLAN_HDD_TM_ATTR_MAX = WLAN_HDD_TM_ATTR_AFTER_LAST - 1,
569};
570
571enum wlan_hdd_tm_cmd
572{
573 WLAN_HDD_TM_CMD_WLAN_HB = 1,
574};
575
576#define WLAN_HDD_TM_DATA_MAX_LEN 5000
577
578static const struct nla_policy wlan_hdd_tm_policy[WLAN_HDD_TM_ATTR_MAX + 1] =
579{
580 [WLAN_HDD_TM_ATTR_CMD] = { .type = NLA_U32 },
581 [WLAN_HDD_TM_ATTR_DATA] = { .type = NLA_BINARY,
582 .len = WLAN_HDD_TM_DATA_MAX_LEN },
583};
584#endif /* WLAN_NL80211_TESTMODE */
585
Rajesh Chauhan98a31f82014-01-06 20:15:25 -0800586#ifdef FEATURE_WLAN_CH_AVOID
587/*
588 * FUNCTION: wlan_hdd_send_avoid_freq_event
589 * This is called when wlan driver needs to send vendor specific
590 * avoid frequency range event to userspace
591 */
592int wlan_hdd_send_avoid_freq_event(hdd_context_t *pHddCtx,
593 tHddAvoidFreqList *pAvoidFreqList)
594{
595 struct sk_buff *vendor_event;
596
597 ENTER();
598
599 if (!pHddCtx)
600 {
601 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
602 "%s: HDD context is null", __func__);
603 return -1;
604 }
605
606 if (!pAvoidFreqList)
607 {
608 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
609 "%s: pAvoidFreqList is null", __func__);
610 return -1;
611 }
612
613 vendor_event = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
Anand N Sunkad26ca6cc2015-07-29 09:54:52 +0530614#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 18, 0))
615 NULL,
616#endif
Rajesh Chauhan98a31f82014-01-06 20:15:25 -0800617 sizeof(tHddAvoidFreqList),
Sunil Duttc69bccb2014-05-26 21:30:20 +0530618 QCA_NL80211_VENDOR_SUBCMD_AVOID_FREQUENCY_INDEX,
Rajesh Chauhan98a31f82014-01-06 20:15:25 -0800619 GFP_KERNEL);
620 if (!vendor_event)
621 {
622 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
623 "%s: cfg80211_vendor_event_alloc failed", __func__);
624 return -1;
625 }
626
627 memcpy(skb_put(vendor_event, sizeof(tHddAvoidFreqList)),
628 (void *)pAvoidFreqList, sizeof(tHddAvoidFreqList));
629
630 cfg80211_vendor_event(vendor_event, GFP_KERNEL);
631
632 EXIT();
633 return 0;
634}
635#endif /* FEATURE_WLAN_CH_AVOID */
636
Srinivas Dasari030bad32015-02-18 23:23:54 +0530637/*
638 * FUNCTION: __wlan_hdd_cfg80211_nan_request
639 * This is called when wlan driver needs to send vendor specific
640 * nan request event.
641 */
642static int __wlan_hdd_cfg80211_nan_request(struct wiphy *wiphy,
643 struct wireless_dev *wdev,
644 const void *data, int data_len)
645{
646 tNanRequestReq nan_req;
647 VOS_STATUS status;
648 int ret_val = -1;
Srinivas Dasaria3f11c02015-03-20 13:15:20 +0530649 struct net_device *dev = wdev->netdev;
650 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
651 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
Srinivas Dasari030bad32015-02-18 23:23:54 +0530652 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
653
654 if (0 == data_len)
655 {
656 hddLog(VOS_TRACE_LEVEL_ERROR,
657 FL("NAN - Invalid Request, length = 0"));
658 return ret_val;
659 }
660
661 if (NULL == data)
662 {
663 hddLog(VOS_TRACE_LEVEL_ERROR,
664 FL("NAN - Invalid Request, data is NULL"));
665 return ret_val;
666 }
667
668 status = wlan_hdd_validate_context(pHddCtx);
669 if (0 != status)
670 {
671 hddLog(VOS_TRACE_LEVEL_ERROR,
672 FL("HDD context is not valid"));
673 return -EINVAL;
674 }
675
676 hddLog(LOG1, FL("Received NAN command"));
677 vos_trace_hex_dump( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
678 (tANI_U8 *)data, data_len);
679
680 /* check the NAN Capability */
681 if (TRUE != sme_IsFeatureSupportedByFW(NAN))
682 {
683 hddLog(VOS_TRACE_LEVEL_ERROR,
684 FL("NAN is not supported by Firmware"));
685 return -EINVAL;
686 }
687
688 nan_req.request_data_len = data_len;
689 nan_req.request_data = data;
690
Srinivas Dasaria3f11c02015-03-20 13:15:20 +0530691 status = sme_NanRequest(hHal, &nan_req, pAdapter->sessionId);
Srinivas Dasari030bad32015-02-18 23:23:54 +0530692 if (VOS_STATUS_SUCCESS == status)
693 {
694 ret_val = 0;
695 }
696 return ret_val;
697}
698
699/*
700 * FUNCTION: wlan_hdd_cfg80211_nan_request
701 * Wrapper to protect the nan vendor command from ssr
702 */
703static int wlan_hdd_cfg80211_nan_request(struct wiphy *wiphy,
704 struct wireless_dev *wdev,
705 const void *data, int data_len)
706{
707 int ret;
708
709 vos_ssr_protect(__func__);
710 ret = __wlan_hdd_cfg80211_nan_request(wiphy, wdev, data, data_len);
711 vos_ssr_unprotect(__func__);
712
713 return ret;
714}
715
716/*
717 * FUNCTION: wlan_hdd_cfg80211_nan_callback
718 * This is a callback function and it gets called
719 * when we need to report nan response event to
720 * upper layers.
721 */
722static void wlan_hdd_cfg80211_nan_callback(void* ctx, tSirNanEvent* msg)
723{
724 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
725 struct sk_buff *vendor_event;
726 int status;
727 tSirNanEvent *data;
728
729 ENTER();
730 if (NULL == msg)
731 {
732 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
733 FL(" msg received here is null"));
734 return;
735 }
736 data = msg;
737
738 status = wlan_hdd_validate_context(pHddCtx);
739
740 if (0 != status)
741 {
742 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
743 FL("HDD context is not valid"));
744 return;
745 }
746
747 vendor_event = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
Anand N Sunkad26ca6cc2015-07-29 09:54:52 +0530748#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 18, 0))
749 NULL,
750#endif
Srinivas Dasari030bad32015-02-18 23:23:54 +0530751 data->event_data_len +
752 NLMSG_HDRLEN,
753 QCA_NL80211_VENDOR_SUBCMD_NAN_INDEX,
754 GFP_KERNEL);
755
756 if (!vendor_event)
757 {
758 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
759 FL("cfg80211_vendor_event_alloc failed"));
760 return;
761 }
762 if (nla_put(vendor_event, QCA_WLAN_VENDOR_ATTR_NAN,
763 data->event_data_len, data->event_data))
764 {
765 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
766 FL("QCA_WLAN_VENDOR_ATTR_NAN put fail"));
767 kfree_skb(vendor_event);
768 return;
769 }
770 cfg80211_vendor_event(vendor_event, GFP_KERNEL);
771 EXIT();
772}
773
774/*
775 * FUNCTION: wlan_hdd_cfg80211_nan_init
776 * This function is called to register the callback to sme layer
777 */
778inline void wlan_hdd_cfg80211_nan_init(hdd_context_t *pHddCtx)
779{
780 sme_NanRegisterCallback(pHddCtx->hHal, wlan_hdd_cfg80211_nan_callback);
781}
782
783
Sunil Duttc69bccb2014-05-26 21:30:20 +0530784#ifdef WLAN_FEATURE_LINK_LAYER_STATS
785
786static v_BOOL_t put_wifi_rate_stat( tpSirWifiRateStat stats,
787 struct sk_buff *vendor_event)
788{
789 if (nla_put_u8(vendor_event,
790 QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_PREAMBLE,
791 stats->rate.preamble) ||
792 nla_put_u8(vendor_event,
793 QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_NSS,
794 stats->rate.nss) ||
795 nla_put_u8(vendor_event,
796 QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_BW,
797 stats->rate.bw) ||
798 nla_put_u8(vendor_event,
799 QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_MCS_INDEX,
800 stats->rate.rateMcsIdx) ||
801 nla_put_u32(vendor_event, QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_BIT_RATE,
802 stats->rate.bitrate ) ||
803 nla_put_u32(vendor_event, QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_TX_MPDU,
804 stats->txMpdu ) ||
805 nla_put_u32(vendor_event, QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_RX_MPDU,
806 stats->rxMpdu ) ||
807 nla_put_u32(vendor_event, QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_MPDU_LOST,
808 stats->mpduLost ) ||
809 nla_put_u32(vendor_event, QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_RETRIES,
810 stats->retries) ||
811 nla_put_u32(vendor_event,
812 QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_RETRIES_SHORT,
813 stats->retriesShort ) ||
814 nla_put_u32(vendor_event,
815 QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_RETRIES_LONG,
816 stats->retriesLong))
817 {
818 hddLog(VOS_TRACE_LEVEL_ERROR,
819 FL("QCA_WLAN_VENDOR_ATTR put fail"));
820 return FALSE;
821 }
822 return TRUE;
823}
824
825static v_BOOL_t put_wifi_peer_info( tpSirWifiPeerInfo stats,
826 struct sk_buff *vendor_event)
827{
828 u32 i = 0;
829 struct nlattr *rateInfo;
830 if (nla_put_u32(vendor_event, QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_TYPE,
831 stats->type) ||
832 nla_put(vendor_event,
833 QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_MAC_ADDRESS,
834 VOS_MAC_ADDR_SIZE, &stats->peerMacAddress[0]) ||
835 nla_put_u32(vendor_event,
836 QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_CAPABILITIES,
837 stats->capabilities) ||
838 nla_put_u32(vendor_event,
839 QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_NUM_RATES,
840 stats->numRate))
841 {
842 hddLog(VOS_TRACE_LEVEL_ERROR,
843 FL("QCA_WLAN_VENDOR_ATTR put fail"));
844 goto error;
845 }
846
847 rateInfo = nla_nest_start(vendor_event,
848 QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_RATE_INFO);
Sushant Kaushikee1f55e2015-01-22 11:27:01 +0530849 if(!rateInfo)
850 return FALSE;
Sunil Duttc69bccb2014-05-26 21:30:20 +0530851 for (i = 0; i < stats->numRate; i++)
852 {
853 struct nlattr *rates;
854 tpSirWifiRateStat pRateStats = (tpSirWifiRateStat )((uint8 *)
855 stats->rateStats +
856 (i * sizeof(tSirWifiRateStat)));
857 rates = nla_nest_start(vendor_event, i);
Sushant Kaushikee1f55e2015-01-22 11:27:01 +0530858 if(!rates)
859 return FALSE;
Sunil Duttc69bccb2014-05-26 21:30:20 +0530860
861 if (FALSE == put_wifi_rate_stat(pRateStats, vendor_event))
862 {
863 hddLog(VOS_TRACE_LEVEL_ERROR,
864 FL("QCA_WLAN_VENDOR_ATTR put fail"));
865 return FALSE;
866 }
867 nla_nest_end(vendor_event, rates);
868 }
869 nla_nest_end(vendor_event, rateInfo);
870
871 return TRUE;
872error:
873 return FALSE;
874}
875
876static v_BOOL_t put_wifi_wmm_ac_stat( tpSirWifiWmmAcStat stats,
877 struct sk_buff *vendor_event)
878{
879 if (nla_put_u32(vendor_event, QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_AC,
880 stats->ac ) ||
881 nla_put_u32(vendor_event,
882 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_TX_MPDU,
883 stats->txMpdu ) ||
884 nla_put_u32(vendor_event,
885 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_RX_MPDU,
886 stats->rxMpdu ) ||
887 nla_put_u32(vendor_event,
888 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_TX_MCAST,
889 stats->txMcast ) ||
890 nla_put_u32(vendor_event,
891 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_RX_MCAST,
892 stats->rxMcast ) ||
893 nla_put_u32(vendor_event,
894 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_RX_AMPDU,
895 stats->rxAmpdu ) ||
896 nla_put_u32(vendor_event,
897 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_TX_AMPDU,
898 stats->txAmpdu ) ||
899 nla_put_u32(vendor_event,
900 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_MPDU_LOST,
901 stats->mpduLost )||
902 nla_put_u32(vendor_event,
903 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_RETRIES,
904 stats->retries ) ||
905 nla_put_u32(vendor_event,
906 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_RETRIES_SHORT,
907 stats->retriesShort ) ||
908 nla_put_u32(vendor_event,
909 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_RETRIES_LONG,
910 stats->retriesLong ) ||
911 nla_put_u32(vendor_event,
912 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_CONTENTION_TIME_MIN,
913 stats->contentionTimeMin ) ||
914 nla_put_u32(vendor_event,
915 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_CONTENTION_TIME_MAX,
916 stats->contentionTimeMax ) ||
917 nla_put_u32(vendor_event,
918 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_CONTENTION_TIME_AVG,
919 stats->contentionTimeAvg ) ||
920 nla_put_u32(vendor_event,
921 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_CONTENTION_NUM_SAMPLES,
922 stats->contentionNumSamples ))
923 {
924 hddLog(VOS_TRACE_LEVEL_ERROR,
925 FL("QCA_WLAN_VENDOR_ATTR put fail") );
926 return FALSE;
927 }
928 return TRUE;
929}
930
931static v_BOOL_t put_wifi_interface_info(tpSirWifiInterfaceInfo stats,
932 struct sk_buff *vendor_event)
933{
Dino Myclec8f3f332014-07-21 16:48:27 +0530934 if (nla_put_s32(vendor_event,
Sunil Duttc69bccb2014-05-26 21:30:20 +0530935 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_MODE, stats->mode ) ||
936 nla_put(vendor_event,
937 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_MAC_ADDR,
938 VOS_MAC_ADDR_SIZE, stats->macAddr) ||
939 nla_put_u32(vendor_event,
940 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_STATE,
941 stats->state ) ||
942 nla_put_u32(vendor_event,
943 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_ROAMING,
944 stats->roaming ) ||
945 nla_put_u32(vendor_event,
946 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_CAPABILITIES,
947 stats->capabilities ) ||
948 nla_put(vendor_event,
949 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_SSID,
950 strlen(stats->ssid), stats->ssid) ||
951 nla_put(vendor_event,
952 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_BSSID,
953 WNI_CFG_BSSID_LEN, stats->bssid) ||
954 nla_put(vendor_event,
955 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_AP_COUNTRY_STR,
956 WNI_CFG_COUNTRY_CODE_LEN, stats->apCountryStr) ||
957 nla_put(vendor_event,
958 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_COUNTRY_STR,
959 WNI_CFG_COUNTRY_CODE_LEN, stats->countryStr)
960 )
961 {
962 hddLog(VOS_TRACE_LEVEL_ERROR,
963 FL("QCA_WLAN_VENDOR_ATTR put fail") );
964 return FALSE;
965 }
966 return TRUE;
967}
968
Dino Mycle3b9536d2014-07-09 22:05:24 +0530969static v_BOOL_t put_wifi_iface_stats(hdd_adapter_t *pAdapter,
970 tpSirWifiIfaceStat pWifiIfaceStat,
Sunil Duttc69bccb2014-05-26 21:30:20 +0530971 struct sk_buff *vendor_event)
972{
973 int i = 0;
974 struct nlattr *wmmInfo;
Dino Mycle3b9536d2014-07-09 22:05:24 +0530975 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
976 WLANTL_InterfaceStatsType *pWifiIfaceStatTL = NULL;
Srinivas Dasaria8a304f2014-11-15 16:13:37 +0530977 tSirWifiWmmAcStat accessclassStats;
Dino Mycle3b9536d2014-07-09 22:05:24 +0530978
Sunil Duttc69bccb2014-05-26 21:30:20 +0530979 if (FALSE == put_wifi_interface_info(
980 &pWifiIfaceStat->info,
981 vendor_event))
982 {
983 hddLog(VOS_TRACE_LEVEL_ERROR,
984 FL("QCA_WLAN_VENDOR_ATTR put fail") );
985 return FALSE;
986
987 }
Dino Mycle3b9536d2014-07-09 22:05:24 +0530988 pWifiIfaceStatTL = (WLANTL_InterfaceStatsType *)
989 vos_mem_malloc(sizeof(WLANTL_InterfaceStatsType));
990 if (NULL == pWifiIfaceStatTL)
991 {
992 hddLog(VOS_TRACE_LEVEL_ERROR, FL("vos_mem_malloc failed"));
993 return FALSE;
994 }
995
Srinivas Dasaria8a304f2014-11-15 16:13:37 +0530996 accessclassStats = pWifiIfaceStat->AccessclassStats[WIFI_AC_BK];
997 pWifiIfaceStat->AccessclassStats[WIFI_AC_BK] =
998 pWifiIfaceStat->AccessclassStats[WIFI_AC_BE];
999 pWifiIfaceStat->AccessclassStats[WIFI_AC_BE] = accessclassStats;
1000
1001 accessclassStats.ac = pWifiIfaceStat->AccessclassStats[WIFI_AC_BK].ac;
1002 pWifiIfaceStat->AccessclassStats[WIFI_AC_BK].ac =
1003 pWifiIfaceStat->AccessclassStats[WIFI_AC_BE].ac;
1004 pWifiIfaceStat->AccessclassStats[WIFI_AC_BE].ac = accessclassStats.ac;
Dino Mycle3b9536d2014-07-09 22:05:24 +05301005
1006 if ( pWifiIfaceStat->info.state == WIFI_ASSOCIATED)
1007 {
1008 if (VOS_STATUS_SUCCESS ==
1009 WLANTL_CollectInterfaceStats((WLAN_HDD_GET_CTX(pAdapter))->pvosContext,
1010 pHddStaCtx->conn_info.staId[0], pWifiIfaceStatTL))
1011 {
1012 /* mgmtRx, MgmtActionRx, rxMcast, rxMpdu, rxAmpdu, rssiData are
1013 * obtained from TL structure
1014 */
1015
1016 pWifiIfaceStat->mgmtRx = pWifiIfaceStat->beaconRx +
1017 pWifiIfaceStatTL->mgmtRx;
Dino Mycle3b9536d2014-07-09 22:05:24 +05301018 pWifiIfaceStat->rssiData = pWifiIfaceStatTL->rssiData;
1019
Srinivas Dasari98947432014-11-07 19:41:24 +05301020 pWifiIfaceStat->AccessclassStats[WIFI_AC_VO].rxMcast
1021 = pWifiIfaceStatTL->accessCategoryStats[WLANTL_AC_VO].rxMcast;
1022 pWifiIfaceStat->AccessclassStats[WIFI_AC_VI].rxMcast
1023 = pWifiIfaceStatTL->accessCategoryStats[WLANTL_AC_VI].rxMcast;
1024 pWifiIfaceStat->AccessclassStats[WIFI_AC_BE].rxMcast
1025 = pWifiIfaceStatTL->accessCategoryStats[WLANTL_AC_BE].rxMcast;
1026 pWifiIfaceStat->AccessclassStats[WIFI_AC_BK].rxMcast
1027 = pWifiIfaceStatTL->accessCategoryStats[WLANTL_AC_BK].rxMcast;
Dino Mycle3b9536d2014-07-09 22:05:24 +05301028
Srinivas Dasari98947432014-11-07 19:41:24 +05301029 pWifiIfaceStat->AccessclassStats[WIFI_AC_VO].rxMpdu
1030 = pWifiIfaceStatTL->accessCategoryStats[WLANTL_AC_VO].rxMpdu;
1031 pWifiIfaceStat->AccessclassStats[WIFI_AC_VI].rxMpdu
1032 = pWifiIfaceStatTL->accessCategoryStats[WLANTL_AC_VI].rxMpdu;
1033 pWifiIfaceStat->AccessclassStats[WIFI_AC_BE].rxMpdu
1034 = pWifiIfaceStatTL->accessCategoryStats[WLANTL_AC_BE].rxMpdu;
1035 pWifiIfaceStat->AccessclassStats[WIFI_AC_BK].rxMpdu
1036 = pWifiIfaceStatTL->accessCategoryStats[WLANTL_AC_BK].rxMpdu;
Dino Mycle3b9536d2014-07-09 22:05:24 +05301037
Srinivas Dasari98947432014-11-07 19:41:24 +05301038 pWifiIfaceStat->AccessclassStats[WIFI_AC_VO].rxAmpdu
1039 = pWifiIfaceStatTL->accessCategoryStats[WLANTL_AC_VO].rxAmpdu;
1040 pWifiIfaceStat->AccessclassStats[WIFI_AC_VI].rxAmpdu
1041 = pWifiIfaceStatTL->accessCategoryStats[WLANTL_AC_VI].rxAmpdu;
1042 pWifiIfaceStat->AccessclassStats[WIFI_AC_BE].rxAmpdu
1043 = pWifiIfaceStatTL->accessCategoryStats[WLANTL_AC_BE].rxAmpdu;
1044 pWifiIfaceStat->AccessclassStats[WIFI_AC_BK].rxAmpdu
1045 = pWifiIfaceStatTL->accessCategoryStats[WLANTL_AC_BK].rxAmpdu;
Dino Mycle3b9536d2014-07-09 22:05:24 +05301046 }
1047 else
1048 {
1049 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Error in getting stats from TL"));
1050 }
1051
Dino Mycle3b9536d2014-07-09 22:05:24 +05301052 pWifiIfaceStat->AccessclassStats[WIFI_AC_VO].txMcast =
1053 pAdapter->hdd_stats.hddTxRxStats.txMcast[WLANTL_AC_VO];
1054 pWifiIfaceStat->AccessclassStats[WIFI_AC_VI].txMcast =
1055 pAdapter->hdd_stats.hddTxRxStats.txMcast[WLANTL_AC_VI];
1056 pWifiIfaceStat->AccessclassStats[WIFI_AC_BE].txMcast =
1057 pAdapter->hdd_stats.hddTxRxStats.txMcast[WLANTL_AC_BE];
1058 pWifiIfaceStat->AccessclassStats[WIFI_AC_BK].txMcast =
1059 pAdapter->hdd_stats.hddTxRxStats.txMcast[WLANTL_AC_BK];
1060 }
1061 else
1062 {
1063 hddLog(VOS_TRACE_LEVEL_INFO, FL("Interface not Associated"));
1064 }
1065
1066
Sunil Duttc69bccb2014-05-26 21:30:20 +05301067
1068 if (nla_put_u32(vendor_event,
mukul sharma4bd8d2e2015-08-13 20:33:25 +05301069 QCA_WLAN_VENDOR_ATTR_LL_STATS_TYPE,
1070 QCA_WLAN_VENDOR_ATTR_LL_STATS_TYPE_IFACE) ||
1071 nla_put_u32(vendor_event,
Sunil Duttc69bccb2014-05-26 21:30:20 +05301072 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_BEACON_RX,
1073 pWifiIfaceStat->beaconRx) ||
1074 nla_put_u32(vendor_event,
1075 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_MGMT_RX,
1076 pWifiIfaceStat->mgmtRx) ||
1077 nla_put_u32(vendor_event,
1078 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_MGMT_ACTION_RX,
1079 pWifiIfaceStat->mgmtActionRx) ||
1080 nla_put_u32(vendor_event,
1081 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_MGMT_ACTION_TX,
1082 pWifiIfaceStat->mgmtActionTx) ||
Dino Mycle3b9536d2014-07-09 22:05:24 +05301083 nla_put_s32(vendor_event,
Sunil Duttc69bccb2014-05-26 21:30:20 +05301084 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_RSSI_MGMT,
1085 pWifiIfaceStat->rssiMgmt) ||
Dino Mycle3b9536d2014-07-09 22:05:24 +05301086 nla_put_s32(vendor_event,
Sunil Duttc69bccb2014-05-26 21:30:20 +05301087 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_RSSI_DATA,
1088 pWifiIfaceStat->rssiData) ||
Dino Mycle3b9536d2014-07-09 22:05:24 +05301089 nla_put_s32(vendor_event,
Sunil Duttc69bccb2014-05-26 21:30:20 +05301090 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_RSSI_ACK,
1091 pWifiIfaceStat->rssiAck))
1092 {
1093 hddLog(VOS_TRACE_LEVEL_ERROR,
Mukul Sharmaf1bd9322015-10-20 16:03:42 +05301094 FL("QCA_WLAN_VENDOR_ATTR put fail"));
1095 vos_mem_free(pWifiIfaceStatTL);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301096 return FALSE;
1097 }
1098
Mukul Sharmaf1bd9322015-10-20 16:03:42 +05301099#ifdef FEATURE_EXT_LL_STAT
1100 /*
1101 * Ensure when EXT_LL_STAT is supported by both host and fwr,
1102 * then host should send Leaky AP stats to upper layer,
1103 * otherwise no need to send these stats.
1104 */
1105 if(sme_IsFeatureSupportedByFW(EXT_LL_STAT) &&
1106 sme_IsFeatureSupportedByDriver(EXT_LL_STAT)
1107 )
1108 {
1109 hddLog(VOS_TRACE_LEVEL_INFO,
1110 FL("EXT_LL_STAT is supported by fwr and host %u %u %u %llu"),
1111 pWifiIfaceStat->leakyApStat.is_leaky_ap,
1112 pWifiIfaceStat->leakyApStat.avg_rx_frms_leaked,
1113 pWifiIfaceStat->leakyApStat.rx_leak_window,
1114 pWifiIfaceStat->leakyApStat.avg_bcn_spread);
1115 if (nla_put_u32(vendor_event,
1116 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_LEAKY_AP_DETECTED,
1117 pWifiIfaceStat->leakyApStat.is_leaky_ap) ||
1118 nla_put_u32(vendor_event,
1119 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_LEAKY_AP_AVG_NUM_FRAMES_LEAKED,
1120 pWifiIfaceStat->leakyApStat.avg_rx_frms_leaked) ||
1121 nla_put_u32(vendor_event,
1122 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_LEAKY_AP_GUARD_TIME,
1123 pWifiIfaceStat->leakyApStat.rx_leak_window) ||
1124 nla_put_u64(vendor_event,
1125 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_AVERAGE_TSF_OFFSET,
1126 pWifiIfaceStat->leakyApStat.avg_bcn_spread))
1127 {
1128 hddLog(VOS_TRACE_LEVEL_ERROR,
1129 FL("EXT_LL_STAT put fail"));
1130 vos_mem_free(pWifiIfaceStatTL);
1131 return FALSE;
1132 }
1133 }
1134#endif
Sunil Duttc69bccb2014-05-26 21:30:20 +05301135 wmmInfo = nla_nest_start(vendor_event,
1136 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_INFO);
Sushant Kaushikee1f55e2015-01-22 11:27:01 +05301137 if(!wmmInfo)
1138 {
1139 vos_mem_free(pWifiIfaceStatTL);
1140 return FALSE;
1141 }
Sunil Duttc69bccb2014-05-26 21:30:20 +05301142 for (i = 0; i < WIFI_AC_MAX; i++)
1143 {
1144 struct nlattr *wmmStats;
1145 wmmStats = nla_nest_start(vendor_event, i);
Sushant Kaushikee1f55e2015-01-22 11:27:01 +05301146 if(!wmmStats)
1147 {
1148 vos_mem_free(pWifiIfaceStatTL);
1149 return FALSE;
1150 }
Sunil Duttc69bccb2014-05-26 21:30:20 +05301151 if (FALSE == put_wifi_wmm_ac_stat(
1152 &pWifiIfaceStat->AccessclassStats[i],
1153 vendor_event))
1154 {
1155 hddLog(VOS_TRACE_LEVEL_ERROR,
1156 FL("QCA_WLAN_VENDOR_ATTR put Fail"));
Dino Mycle3b9536d2014-07-09 22:05:24 +05301157 vos_mem_free(pWifiIfaceStatTL);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301158 return FALSE;
1159 }
1160
1161 nla_nest_end(vendor_event, wmmStats);
1162 }
1163 nla_nest_end(vendor_event, wmmInfo);
Dino Mycle3b9536d2014-07-09 22:05:24 +05301164 vos_mem_free(pWifiIfaceStatTL);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301165 return TRUE;
1166}
1167
1168static tSirWifiInterfaceMode
1169 hdd_map_device_to_ll_iface_mode ( int deviceMode )
1170{
1171 switch (deviceMode)
1172 {
1173 case WLAN_HDD_INFRA_STATION:
1174 return WIFI_INTERFACE_STA;
1175 case WLAN_HDD_SOFTAP:
1176 return WIFI_INTERFACE_SOFTAP;
1177 case WLAN_HDD_P2P_CLIENT:
1178 return WIFI_INTERFACE_P2P_CLIENT;
1179 case WLAN_HDD_P2P_GO:
1180 return WIFI_INTERFACE_P2P_GO;
1181 case WLAN_HDD_IBSS:
1182 return WIFI_INTERFACE_IBSS;
1183 default:
Dino Myclec8f3f332014-07-21 16:48:27 +05301184 return WIFI_INTERFACE_UNKNOWN;
Sunil Duttc69bccb2014-05-26 21:30:20 +05301185 }
1186}
1187
1188static v_BOOL_t hdd_get_interface_info(hdd_adapter_t *pAdapter,
1189 tpSirWifiInterfaceInfo pInfo)
1190{
1191 v_U8_t *staMac = NULL;
1192 hdd_station_ctx_t *pHddStaCtx;
1193 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
1194 tpAniSirGlobal pMac = PMAC_STRUCT( hHal );
1195
1196 pInfo->mode = hdd_map_device_to_ll_iface_mode(pAdapter->device_mode);
1197
1198 vos_mem_copy(pInfo->macAddr,
1199 pAdapter->macAddressCurrent.bytes, sizeof(v_MACADDR_t));
1200
1201 if (((WLAN_HDD_INFRA_STATION == pAdapter->device_mode) ||
1202 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode) ||
1203 (WLAN_HDD_P2P_DEVICE == pAdapter->device_mode)))
1204 {
1205 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
1206 if (eConnectionState_NotConnected == pHddStaCtx->conn_info.connState)
1207 {
1208 pInfo->state = WIFI_DISCONNECTED;
1209 }
1210 if (eConnectionState_Connecting == pHddStaCtx->conn_info.connState)
1211 {
1212 hddLog(VOS_TRACE_LEVEL_ERROR,
1213 "%s: Session ID %d, Connection is in progress", __func__,
1214 pAdapter->sessionId);
1215 pInfo->state = WIFI_ASSOCIATING;
1216 }
1217 if ((eConnectionState_Associated == pHddStaCtx->conn_info.connState) &&
1218 (VOS_FALSE == pHddStaCtx->conn_info.uIsAuthenticated))
1219 {
1220 staMac = (v_U8_t *) &(pAdapter->macAddressCurrent.bytes[0]);
1221 hddLog(VOS_TRACE_LEVEL_ERROR,
1222 "%s: client " MAC_ADDRESS_STR
1223 " is in the middle of WPS/EAPOL exchange.", __func__,
1224 MAC_ADDR_ARRAY(staMac));
1225 pInfo->state = WIFI_AUTHENTICATING;
1226 }
1227 if (eConnectionState_Associated == pHddStaCtx->conn_info.connState)
1228 {
1229 pInfo->state = WIFI_ASSOCIATED;
1230 vos_mem_copy(pInfo->bssid,
1231 &pHddStaCtx->conn_info.bssId, WNI_CFG_BSSID_LEN);
1232 vos_mem_copy(pInfo->ssid,
1233 pHddStaCtx->conn_info.SSID.SSID.ssId,
1234 pHddStaCtx->conn_info.SSID.SSID.length);
1235 //NULL Terminate the string.
1236 pInfo->ssid[pHddStaCtx->conn_info.SSID.SSID.length] = 0;
1237 }
1238 }
1239 vos_mem_copy(pInfo->countryStr,
1240 pMac->scan.countryCodeCurrent, WNI_CFG_COUNTRY_CODE_LEN);
1241
1242 vos_mem_copy(pInfo->apCountryStr,
1243 pMac->scan.countryCodeCurrent, WNI_CFG_COUNTRY_CODE_LEN);
1244
1245 return TRUE;
1246}
1247
1248/*
1249 * hdd_link_layer_process_peer_stats () - This function is called after
1250 * receiving Link Layer Peer statistics from FW.This function converts
1251 * the firmware data to the NL data and sends the same to the kernel/upper
1252 * layers.
1253 */
1254static v_VOID_t hdd_link_layer_process_peer_stats(hdd_adapter_t *pAdapter,
1255 v_VOID_t *pData)
1256{
1257 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301258 tpSirWifiPeerStat pWifiPeerStat;
1259 tpSirWifiPeerInfo pWifiPeerInfo;
1260 struct nlattr *peerInfo;
1261 struct sk_buff *vendor_event;
1262 int status, i;
1263
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05301264 ENTER();
1265
Sunil Duttc69bccb2014-05-26 21:30:20 +05301266 status = wlan_hdd_validate_context(pHddCtx);
1267 if (0 != status)
1268 {
Sunil Duttc69bccb2014-05-26 21:30:20 +05301269 return;
1270 }
1271
1272 pWifiPeerStat = (tpSirWifiPeerStat) pData;
1273
1274 hddLog(VOS_TRACE_LEVEL_INFO,
1275 "LL_STATS_PEER_ALL : numPeers %u",
1276 pWifiPeerStat->numPeers);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301277 /*
1278 * Allocate a size of 4096 for the peer stats comprising
1279 * each of size = sizeof (tSirWifiPeerInfo) + numRate *
1280 * sizeof (tSirWifiRateStat).Each field is put with an
1281 * NL attribute.The size of 4096 is considered assuming
1282 * that number of rates shall not exceed beyond 50 with
1283 * the sizeof (tSirWifiRateStat) being 32.
1284 */
mukul sharma4bd8d2e2015-08-13 20:33:25 +05301285 vendor_event = cfg80211_vendor_cmd_alloc_reply_skb(pHddCtx->wiphy,
1286 LL_STATS_EVENT_BUF_SIZE);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301287 if (!vendor_event)
1288 {
1289 hddLog(VOS_TRACE_LEVEL_ERROR,
mukul sharma4bd8d2e2015-08-13 20:33:25 +05301290 "%s: cfg80211_vendor_cmd_alloc_reply_skb failed",
Sunil Duttc69bccb2014-05-26 21:30:20 +05301291 __func__);
1292 return;
1293 }
1294 if (nla_put_u32(vendor_event,
mukul sharma4bd8d2e2015-08-13 20:33:25 +05301295 QCA_WLAN_VENDOR_ATTR_LL_STATS_TYPE,
1296 QCA_WLAN_VENDOR_ATTR_LL_STATS_TYPE_PEER) ||
1297 nla_put_u32(vendor_event,
Sunil Duttc69bccb2014-05-26 21:30:20 +05301298 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_NUM_PEERS,
1299 pWifiPeerStat->numPeers))
1300 {
1301 hddLog(VOS_TRACE_LEVEL_ERROR,
1302 "%s: QCA_WLAN_VENDOR_ATTR put fail", __func__);
1303 kfree_skb(vendor_event);
1304 return;
1305 }
1306
1307 peerInfo = nla_nest_start(vendor_event,
1308 QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO);
Sushant Kaushikee1f55e2015-01-22 11:27:01 +05301309 if(!peerInfo)
1310 {
1311 hddLog(VOS_TRACE_LEVEL_ERROR,
1312 "%s: QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO put fail",
1313 __func__);
1314 kfree_skb(vendor_event);
1315 return;
1316 }
Sunil Duttc69bccb2014-05-26 21:30:20 +05301317
1318 pWifiPeerInfo = (tpSirWifiPeerInfo) ((uint8 *)
1319 pWifiPeerStat->peerInfo);
1320
1321 for (i = 1; i <= pWifiPeerStat->numPeers; i++)
1322 {
Sunil Duttc69bccb2014-05-26 21:30:20 +05301323 int numRate = pWifiPeerInfo->numRate;
Sushant Kaushikee1f55e2015-01-22 11:27:01 +05301324 struct nlattr *peers = nla_nest_start(vendor_event, i);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301325
Sushant Kaushikee1f55e2015-01-22 11:27:01 +05301326 if(!peers)
1327 {
1328 hddLog(VOS_TRACE_LEVEL_ERROR,
1329 "%s: peer stats put fail",
1330 __func__);
1331 kfree_skb(vendor_event);
1332 return;
1333 }
Sunil Duttc69bccb2014-05-26 21:30:20 +05301334 if (FALSE == put_wifi_peer_info(
1335 pWifiPeerInfo, vendor_event))
1336 {
1337 hddLog(VOS_TRACE_LEVEL_ERROR,
1338 "%s: put_wifi_peer_info put fail", __func__);
1339 kfree_skb(vendor_event);
1340 return;
1341 }
1342
1343 pWifiPeerInfo = (tpSirWifiPeerInfo) ((uint8 *)
1344 pWifiPeerStat->peerInfo +
1345 (i * sizeof(tSirWifiPeerInfo)) +
1346 (numRate * sizeof (tSirWifiRateStat)));
1347 nla_nest_end(vendor_event, peers);
1348 }
1349 nla_nest_end(vendor_event, peerInfo);
mukul sharma4bd8d2e2015-08-13 20:33:25 +05301350 cfg80211_vendor_cmd_reply(vendor_event);
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05301351 EXIT();
Sunil Duttc69bccb2014-05-26 21:30:20 +05301352}
1353
1354/*
1355 * hdd_link_layer_process_iface_stats () - This function is called after
1356 * receiving Link Layer Interface statistics from FW.This function converts
1357 * the firmware data to the NL data and sends the same to the kernel/upper
1358 * layers.
1359 */
1360static v_VOID_t hdd_link_layer_process_iface_stats(hdd_adapter_t *pAdapter,
1361 v_VOID_t *pData)
1362{
1363 tpSirWifiIfaceStat pWifiIfaceStat;
1364 struct sk_buff *vendor_event;
1365 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
1366 int status;
1367
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05301368 ENTER();
1369
Sunil Duttc69bccb2014-05-26 21:30:20 +05301370 status = wlan_hdd_validate_context(pHddCtx);
1371 if (0 != status)
1372 {
Sunil Duttc69bccb2014-05-26 21:30:20 +05301373 return;
1374 }
1375 /*
1376 * Allocate a size of 4096 for the interface stats comprising
1377 * sizeof (tpSirWifiIfaceStat).The size of 4096 is considered
1378 * assuming that all these fit with in the limit.Please take
1379 * a call on the limit based on the data requirements on
1380 * interface statistics.
1381 */
mukul sharma4bd8d2e2015-08-13 20:33:25 +05301382 vendor_event = cfg80211_vendor_cmd_alloc_reply_skb(pHddCtx->wiphy,
1383 LL_STATS_EVENT_BUF_SIZE);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301384 if (!vendor_event)
1385 {
1386 hddLog(VOS_TRACE_LEVEL_ERROR,
mukul sharma4bd8d2e2015-08-13 20:33:25 +05301387 FL("cfg80211_vendor_cmd_alloc_reply_skb failed") );
Sunil Duttc69bccb2014-05-26 21:30:20 +05301388 return;
1389 }
1390
1391 pWifiIfaceStat = (tpSirWifiIfaceStat) pData;
1392
Dino Mycle3b9536d2014-07-09 22:05:24 +05301393
1394 if (FALSE == hdd_get_interface_info( pAdapter,
1395 &pWifiIfaceStat->info))
1396 {
1397 hddLog(VOS_TRACE_LEVEL_ERROR,
1398 FL("hdd_get_interface_info get fail") );
1399 kfree_skb(vendor_event);
1400 return;
1401 }
1402
1403 if (FALSE == put_wifi_iface_stats( pAdapter, pWifiIfaceStat,
1404 vendor_event))
1405 {
1406 hddLog(VOS_TRACE_LEVEL_ERROR,
1407 FL("put_wifi_iface_stats fail") );
1408 kfree_skb(vendor_event);
1409 return;
1410 }
1411
Sunil Duttc69bccb2014-05-26 21:30:20 +05301412 hddLog(VOS_TRACE_LEVEL_INFO,
1413 "WMI_LINK_STATS_IFACE Data");
1414
mukul sharma4bd8d2e2015-08-13 20:33:25 +05301415 cfg80211_vendor_cmd_reply(vendor_event);
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05301416
1417 EXIT();
Sunil Duttc69bccb2014-05-26 21:30:20 +05301418}
1419
1420/*
1421 * hdd_link_layer_process_radio_stats () - This function is called after
1422 * receiving Link Layer Radio statistics from FW.This function converts
1423 * the firmware data to the NL data and sends the same to the kernel/upper
1424 * layers.
1425 */
1426static v_VOID_t hdd_link_layer_process_radio_stats(hdd_adapter_t *pAdapter,
1427 v_VOID_t *pData)
1428{
1429 int status, i;
1430 tpSirWifiRadioStat pWifiRadioStat;
1431 tpSirWifiChannelStats pWifiChannelStats;
1432 struct sk_buff *vendor_event;
1433 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
1434 struct nlattr *chList;
1435
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05301436 ENTER();
1437
Sunil Duttc69bccb2014-05-26 21:30:20 +05301438 status = wlan_hdd_validate_context(pHddCtx);
1439 if (0 != status)
1440 {
Sunil Duttc69bccb2014-05-26 21:30:20 +05301441 return;
1442 }
1443 pWifiRadioStat = (tpSirWifiRadioStat) pData;
1444
1445 hddLog(VOS_TRACE_LEVEL_INFO,
1446 "LL_STATS_RADIO"
Ravi Kumar Bokka93065922016-10-27 13:52:34 +05301447 " number of radios = %u"
Sunil Duttc69bccb2014-05-26 21:30:20 +05301448 " radio is %d onTime is %u "
1449 " txTime is %u rxTime is %u "
1450 " onTimeScan is %u onTimeNbd is %u "
Dino Mycle6fb96c12014-06-10 11:52:40 +05301451 " onTimeEXTScan is %u onTimeRoamScan is %u "
Sunil Duttc69bccb2014-05-26 21:30:20 +05301452 " onTimePnoScan is %u onTimeHs20 is %u "
1453 " numChannels is %u",
Ravi Kumar Bokka93065922016-10-27 13:52:34 +05301454 NUM_RADIOS,
Sunil Duttc69bccb2014-05-26 21:30:20 +05301455 pWifiRadioStat->radio, pWifiRadioStat->onTime,
1456 pWifiRadioStat->txTime, pWifiRadioStat->rxTime,
1457 pWifiRadioStat->onTimeScan, pWifiRadioStat->onTimeNbd,
Dino Mycle6fb96c12014-06-10 11:52:40 +05301458 pWifiRadioStat->onTimeEXTScan,
Sunil Duttc69bccb2014-05-26 21:30:20 +05301459 pWifiRadioStat->onTimeRoamScan,
1460 pWifiRadioStat->onTimePnoScan,
1461 pWifiRadioStat->onTimeHs20,
1462 pWifiRadioStat->numChannels);
1463 /*
1464 * Allocate a size of 4096 for the Radio stats comprising
1465 * sizeof (tSirWifiRadioStat) + numChannels * sizeof
1466 * (tSirWifiChannelStats).Each channel data is put with an
1467 * NL attribute.The size of 4096 is considered assuming that
1468 * number of channels shall not exceed beyond 60 with the
1469 * sizeof (tSirWifiChannelStats) being 24 bytes.
1470 */
1471
mukul sharma4bd8d2e2015-08-13 20:33:25 +05301472 vendor_event = cfg80211_vendor_cmd_alloc_reply_skb(pHddCtx->wiphy,
1473 LL_STATS_EVENT_BUF_SIZE);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301474 if (!vendor_event)
1475 {
1476 hddLog(VOS_TRACE_LEVEL_ERROR,
mukul sharma4bd8d2e2015-08-13 20:33:25 +05301477 FL("cfg80211_vendor_cmd_alloc_reply_skb failed") );
Sunil Duttc69bccb2014-05-26 21:30:20 +05301478 return;
1479 }
1480
1481 if (nla_put_u32(vendor_event,
mukul sharma4bd8d2e2015-08-13 20:33:25 +05301482 QCA_WLAN_VENDOR_ATTR_LL_STATS_TYPE,
1483 QCA_WLAN_VENDOR_ATTR_LL_STATS_TYPE_RADIO) ||
1484 nla_put_u32(vendor_event,
Sunil Duttc69bccb2014-05-26 21:30:20 +05301485 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ID,
1486 pWifiRadioStat->radio) ||
1487 nla_put_u32(vendor_event,
Ravi Kumar Bokka93065922016-10-27 13:52:34 +05301488 QCA_WLAN_VENDOR_ATTR_LL_STATS_NUM_RADIOS,
1489 NUM_RADIOS) ||
1490 nla_put_u32(vendor_event,
Sunil Duttc69bccb2014-05-26 21:30:20 +05301491 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME,
1492 pWifiRadioStat->onTime) ||
1493 nla_put_u32(vendor_event,
1494 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_TX_TIME,
1495 pWifiRadioStat->txTime) ||
1496 nla_put_u32(vendor_event,
1497 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_RX_TIME,
1498 pWifiRadioStat->rxTime) ||
1499 nla_put_u32(vendor_event,
1500 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME_SCAN,
1501 pWifiRadioStat->onTimeScan) ||
1502 nla_put_u32(vendor_event,
1503 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME_NBD,
1504 pWifiRadioStat->onTimeNbd) ||
1505 nla_put_u32(vendor_event,
Dino Mycle6fb96c12014-06-10 11:52:40 +05301506 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME_EXTSCAN,
1507 pWifiRadioStat->onTimeEXTScan)||
Sunil Duttc69bccb2014-05-26 21:30:20 +05301508 nla_put_u32(vendor_event,
1509 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME_ROAM_SCAN,
1510 pWifiRadioStat->onTimeRoamScan) ||
1511 nla_put_u32(vendor_event,
1512 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME_PNO_SCAN,
1513 pWifiRadioStat->onTimePnoScan) ||
1514 nla_put_u32(vendor_event,
1515 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME_HS20,
1516 pWifiRadioStat->onTimeHs20) ||
1517 nla_put_u32(vendor_event,
1518 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_NUM_CHANNELS,
1519 pWifiRadioStat->numChannels))
1520 {
1521 hddLog(VOS_TRACE_LEVEL_ERROR,
1522 FL("QCA_WLAN_VENDOR_ATTR put fail"));
1523 kfree_skb(vendor_event);
1524 return ;
1525 }
1526
1527 chList = nla_nest_start(vendor_event,
1528 QCA_WLAN_VENDOR_ATTR_LL_STATS_CH_INFO);
Sushant Kaushikee1f55e2015-01-22 11:27:01 +05301529 if(!chList)
1530 {
1531 hddLog(VOS_TRACE_LEVEL_ERROR,
1532 "%s: QCA_WLAN_VENDOR_ATTR_LL_STATS_CH_INFO put fail",
1533 __func__);
1534 kfree_skb(vendor_event);
1535 return;
1536 }
Sunil Duttc69bccb2014-05-26 21:30:20 +05301537 for (i = 0; i < pWifiRadioStat->numChannels; i++)
1538 {
1539 struct nlattr *chInfo;
1540
1541 pWifiChannelStats = (tpSirWifiChannelStats) ((uint8*)
1542 pWifiRadioStat->channels +
1543 (i * sizeof(tSirWifiChannelStats)));
1544
Sunil Duttc69bccb2014-05-26 21:30:20 +05301545 chInfo = nla_nest_start(vendor_event, i);
Sushant Kaushikee1f55e2015-01-22 11:27:01 +05301546 if(!chInfo)
1547 {
1548 hddLog(VOS_TRACE_LEVEL_ERROR,
1549 "%s: failed to put chInfo",
1550 __func__);
1551 kfree_skb(vendor_event);
1552 return;
1553 }
Sunil Duttc69bccb2014-05-26 21:30:20 +05301554
1555 if (nla_put_u32(vendor_event,
1556 QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_INFO_WIDTH,
1557 pWifiChannelStats->channel.width) ||
1558 nla_put_u32(vendor_event,
1559 QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_INFO_CENTER_FREQ,
1560 pWifiChannelStats->channel.centerFreq) ||
1561 nla_put_u32(vendor_event,
1562 QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_INFO_CENTER_FREQ0,
1563 pWifiChannelStats->channel.centerFreq0) ||
1564 nla_put_u32(vendor_event,
1565 QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_INFO_CENTER_FREQ1,
1566 pWifiChannelStats->channel.centerFreq1) ||
1567 nla_put_u32(vendor_event,
1568 QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_ON_TIME,
1569 pWifiChannelStats->onTime) ||
1570 nla_put_u32(vendor_event,
1571 QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_CCA_BUSY_TIME,
1572 pWifiChannelStats->ccaBusyTime))
1573 {
1574 hddLog(VOS_TRACE_LEVEL_ERROR,
1575 FL("cfg80211_vendor_event_alloc failed") );
1576 kfree_skb(vendor_event);
1577 return ;
1578 }
1579 nla_nest_end(vendor_event, chInfo);
1580 }
1581 nla_nest_end(vendor_event, chList);
1582
mukul sharma4bd8d2e2015-08-13 20:33:25 +05301583 cfg80211_vendor_cmd_reply(vendor_event);
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05301584
1585 EXIT();
Sunil Duttc69bccb2014-05-26 21:30:20 +05301586 return;
1587}
1588
1589/*
1590 * hdd_link_layer_stats_ind_callback () - This function is called after
1591 * receiving Link Layer indications from FW.This callback converts the firmware
1592 * data to the NL data and send the same to the kernel/upper layers.
1593 */
1594static void hdd_link_layer_stats_ind_callback ( void *pCtx,
1595 int indType,
Dino Mycled3d50022014-07-07 12:58:25 +05301596 void *pRsp, u8 *macAddr)
Sunil Duttc69bccb2014-05-26 21:30:20 +05301597{
Dino Mycled3d50022014-07-07 12:58:25 +05301598 hdd_context_t *pHddCtx = (hdd_context_t *)pCtx;
1599 hdd_adapter_t *pAdapter = NULL;
mukul sharma4bd8d2e2015-08-13 20:33:25 +05301600 struct hdd_ll_stats_context *context;
Dino Mycled3d50022014-07-07 12:58:25 +05301601 tpSirLLStatsResults linkLayerStatsResults = (tpSirLLStatsResults)pRsp;
Sunil Duttc69bccb2014-05-26 21:30:20 +05301602 int status;
1603
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05301604 ENTER();
Sunil Duttc69bccb2014-05-26 21:30:20 +05301605
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05301606 status = wlan_hdd_validate_context(pHddCtx);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301607 if (0 != status)
1608 {
Sunil Duttc69bccb2014-05-26 21:30:20 +05301609 return;
1610 }
1611
Dino Mycled3d50022014-07-07 12:58:25 +05301612 pAdapter = hdd_get_adapter_by_macaddr(pHddCtx, macAddr);
1613 if (NULL == pAdapter)
1614 {
1615 hddLog(VOS_TRACE_LEVEL_ERROR,
1616 FL(" MAC address %pM does not exist with host"),
1617 macAddr);
1618 return;
1619 }
1620
Sunil Duttc69bccb2014-05-26 21:30:20 +05301621 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Dino Mycled3d50022014-07-07 12:58:25 +05301622 "%s: Interface: %s LLStats indType: %d", __func__,
1623 pAdapter->dev->name, indType);
1624
Sunil Duttc69bccb2014-05-26 21:30:20 +05301625 switch (indType)
1626 {
1627 case SIR_HAL_LL_STATS_RESULTS_RSP:
1628 {
Sunil Duttc69bccb2014-05-26 21:30:20 +05301629 hddLog(VOS_TRACE_LEVEL_INFO,
Sushant Kaushik81a730c2015-09-14 14:49:52 +05301630 "LL_STATS RESP paramID = 0x%x, ifaceId = %u MAC: %pM "
1631 "respId = %u, moreResultToFollow = %u",
1632 linkLayerStatsResults->paramId, linkLayerStatsResults->ifaceId,
1633 macAddr, linkLayerStatsResults->respId,
1634 linkLayerStatsResults->moreResultToFollow);
1635
mukul sharma4bd8d2e2015-08-13 20:33:25 +05301636 spin_lock(&hdd_context_lock);
1637 context = &pHddCtx->ll_stats_context;
1638 /* validate response received from target */
1639 if ((context->request_id != linkLayerStatsResults->respId) ||
1640 !(context->request_bitmap & linkLayerStatsResults->paramId))
1641 {
1642 spin_unlock(&hdd_context_lock);
1643 hddLog(LOGE,
1644 FL("Error : Request id %d response id %d request bitmap 0x%x"
1645 "response bitmap 0x%x"),
1646 context->request_id, linkLayerStatsResults->respId,
1647 context->request_bitmap, linkLayerStatsResults->paramId);
1648 return;
1649 }
1650 spin_unlock(&hdd_context_lock);
1651
Sunil Duttc69bccb2014-05-26 21:30:20 +05301652 if ( linkLayerStatsResults->paramId & WMI_LINK_STATS_RADIO )
1653 {
1654 hdd_link_layer_process_radio_stats(pAdapter,
1655 (v_VOID_t *)linkLayerStatsResults->result);
mukul sharma4bd8d2e2015-08-13 20:33:25 +05301656 spin_lock(&hdd_context_lock);
1657 context->request_bitmap &= ~(WMI_LINK_STATS_RADIO);
1658 spin_unlock(&hdd_context_lock);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301659 }
1660 else if ( linkLayerStatsResults->paramId & WMI_LINK_STATS_IFACE )
1661 {
1662 hdd_link_layer_process_iface_stats(pAdapter,
1663 (v_VOID_t *)linkLayerStatsResults->result);
mukul sharma4bd8d2e2015-08-13 20:33:25 +05301664 spin_lock(&hdd_context_lock);
1665 context->request_bitmap &= ~(WMI_LINK_STATS_IFACE);
1666 spin_unlock(&hdd_context_lock);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301667 }
1668 else if ( linkLayerStatsResults->paramId &
1669 WMI_LINK_STATS_ALL_PEER )
1670 {
1671 hdd_link_layer_process_peer_stats(pAdapter,
1672 (v_VOID_t *)linkLayerStatsResults->result);
mukul sharma4bd8d2e2015-08-13 20:33:25 +05301673 spin_lock(&hdd_context_lock);
1674 context->request_bitmap &= ~(WMI_LINK_STATS_ALL_PEER);
1675 spin_unlock(&hdd_context_lock);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301676 } /* WMI_LINK_STATS_ALL_PEER */
1677 else
1678 {
1679 hddLog(VOS_TRACE_LEVEL_ERROR,
1680 FL("INVALID LL_STATS_NOTIFY RESPONSE ***********"));
1681 }
1682
mukul sharma4bd8d2e2015-08-13 20:33:25 +05301683 spin_lock(&hdd_context_lock);
1684 /* complete response event if all requests are completed */
1685 if (0 == context->request_bitmap)
1686 complete(&context->response_event);
1687 spin_unlock(&hdd_context_lock);
1688
Sunil Duttc69bccb2014-05-26 21:30:20 +05301689 break;
1690 }
1691 default:
1692 hddLog(VOS_TRACE_LEVEL_ERROR, "invalid event type %d", indType);
1693 break;
1694 }
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05301695
1696 EXIT();
Sunil Duttc69bccb2014-05-26 21:30:20 +05301697 return;
1698}
1699
1700const struct
1701nla_policy
1702qca_wlan_vendor_ll_set_policy[QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_MAX +1] =
1703{
1704 [QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_CONFIG_MPDU_SIZE_THRESHOLD] =
1705 { .type = NLA_U32 },
1706 [QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_CONFIG_AGGRESSIVE_STATS_GATHERING] =
1707 { .type = NLA_U32 },
1708};
1709
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05301710static int __wlan_hdd_cfg80211_ll_stats_set(struct wiphy *wiphy,
1711 struct wireless_dev *wdev,
1712 const void *data,
1713 int data_len)
Sunil Duttc69bccb2014-05-26 21:30:20 +05301714{
1715 int status;
1716 struct nlattr *tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_MAX + 1];
Dino Mycledf0a5d92014-07-04 09:41:55 +05301717 tSirLLStatsSetReq linkLayerStatsSetReq;
Sunil Duttc69bccb2014-05-26 21:30:20 +05301718 struct net_device *dev = wdev->netdev;
1719 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
1720 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
1721
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05301722 ENTER();
1723
Sunil Duttc69bccb2014-05-26 21:30:20 +05301724 status = wlan_hdd_validate_context(pHddCtx);
1725 if (0 != status)
1726 {
Sunil Duttc69bccb2014-05-26 21:30:20 +05301727 return -EINVAL;
1728 }
1729
1730 if (NULL == pAdapter)
1731 {
1732 hddLog(VOS_TRACE_LEVEL_ERROR,
1733 FL("HDD adapter is Null"));
1734 return -ENODEV;
1735 }
Dino Mycledf0a5d92014-07-04 09:41:55 +05301736 /* check the LLStats Capability */
1737 if ( (TRUE != pHddCtx->cfg_ini->fEnableLLStats) ||
1738 (TRUE != sme_IsFeatureSupportedByFW(LINK_LAYER_STATS_MEAS)))
1739 {
Anurag Chouhan65ea6dc2016-10-25 19:59:14 +05301740 hddLog(VOS_TRACE_LEVEL_WARN,
Dino Mycledf0a5d92014-07-04 09:41:55 +05301741 FL("Link Layer Statistics not supported by Firmware"));
1742 return -EINVAL;
1743 }
Sunil Duttc69bccb2014-05-26 21:30:20 +05301744
1745 if (nla_parse(tb_vendor, QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_MAX,
1746 (struct nlattr *)data,
1747 data_len, qca_wlan_vendor_ll_set_policy))
1748 {
1749 hddLog(VOS_TRACE_LEVEL_ERROR, FL() );
1750 return -EINVAL;
1751 }
1752 if (!tb_vendor
1753 [QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_CONFIG_MPDU_SIZE_THRESHOLD])
1754 {
1755 hddLog(VOS_TRACE_LEVEL_ERROR, FL("MPDU size Not present"));
1756 return -EINVAL;
1757 }
1758 if (!tb_vendor[
1759 QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_CONFIG_AGGRESSIVE_STATS_GATHERING])
1760 {
1761 hddLog(VOS_TRACE_LEVEL_ERROR, FL(" Stats Gathering Not Present"));
1762 return -EINVAL;
1763 }
Sunil Duttc69bccb2014-05-26 21:30:20 +05301764 // Shall take the request Id if the Upper layers pass. 1 For now.
Dino Mycledf0a5d92014-07-04 09:41:55 +05301765 linkLayerStatsSetReq.reqId = 1;
Sunil Duttc69bccb2014-05-26 21:30:20 +05301766
Dino Mycledf0a5d92014-07-04 09:41:55 +05301767 linkLayerStatsSetReq.mpduSizeThreshold =
Sunil Duttc69bccb2014-05-26 21:30:20 +05301768 nla_get_u32(
1769 tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_CONFIG_MPDU_SIZE_THRESHOLD]);
1770
Dino Mycledf0a5d92014-07-04 09:41:55 +05301771 linkLayerStatsSetReq.aggressiveStatisticsGathering =
Sunil Duttc69bccb2014-05-26 21:30:20 +05301772 nla_get_u32(
1773 tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_CONFIG_AGGRESSIVE_STATS_GATHERING]);
1774
Dino Mycled3d50022014-07-07 12:58:25 +05301775 vos_mem_copy(linkLayerStatsSetReq.macAddr,
1776 pAdapter->macAddressCurrent.bytes, sizeof(v_MACADDR_t));
Sunil Duttc69bccb2014-05-26 21:30:20 +05301777
1778
1779 hddLog(VOS_TRACE_LEVEL_INFO,
Sushant Kaushik81a730c2015-09-14 14:49:52 +05301780 "LL_STATS_SET reqId = %d, MAC = %pM, mpduSizeThreshold = %d "
1781 "Statistics Gathering = %d ",
1782 linkLayerStatsSetReq.reqId, linkLayerStatsSetReq.macAddr,
1783 linkLayerStatsSetReq.mpduSizeThreshold,
1784 linkLayerStatsSetReq.aggressiveStatisticsGathering);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301785
1786 if (eHAL_STATUS_SUCCESS != sme_SetLinkLayerStatsIndCB(
1787 pHddCtx->hHal,
Dino Mycled3d50022014-07-07 12:58:25 +05301788 hdd_link_layer_stats_ind_callback))
Sunil Duttc69bccb2014-05-26 21:30:20 +05301789 {
1790 hddLog(VOS_TRACE_LEVEL_ERROR, "%s:"
1791 "sme_SetLinkLayerStatsIndCB Failed", __func__);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301792 return -EINVAL;
1793
1794 }
Srinivas Dasari98947432014-11-07 19:41:24 +05301795
Sunil Duttc69bccb2014-05-26 21:30:20 +05301796 if (eHAL_STATUS_SUCCESS != sme_LLStatsSetReq( pHddCtx->hHal,
Dino Mycledf0a5d92014-07-04 09:41:55 +05301797 &linkLayerStatsSetReq))
Sunil Duttc69bccb2014-05-26 21:30:20 +05301798 {
1799 hddLog(VOS_TRACE_LEVEL_ERROR, "%s:"
1800 "sme_LLStatsSetReq Failed", __func__);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301801 return -EINVAL;
1802 }
1803
1804 pAdapter->isLinkLayerStatsSet = 1;
1805
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05301806 EXIT();
Sunil Duttc69bccb2014-05-26 21:30:20 +05301807 return 0;
1808}
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05301809static int wlan_hdd_cfg80211_ll_stats_set(struct wiphy *wiphy,
1810 struct wireless_dev *wdev,
1811 const void *data,
1812 int data_len)
1813{
1814 int ret = 0;
1815
1816 vos_ssr_protect(__func__);
1817 ret = __wlan_hdd_cfg80211_ll_stats_set(wiphy, wdev, data, data_len);
1818 vos_ssr_unprotect(__func__);
1819
1820 return ret;
1821}
Sunil Duttc69bccb2014-05-26 21:30:20 +05301822
1823const struct
1824nla_policy
1825qca_wlan_vendor_ll_get_policy[QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_MAX +1] =
1826{
1827 /* Unsigned 32bit value provided by the caller issuing the GET stats
1828 * command. When reporting
1829 * the stats results, the driver uses the same value to indicate
1830 * which GET request the results
1831 * correspond to.
1832 */
1833 [QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_CONFIG_REQ_ID] = { .type = NLA_U32 },
1834
1835 /* Unsigned 32bit value . bit mask to identify what statistics are
1836 requested for retrieval */
1837 [QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_CONFIG_REQ_MASK] = { .type = NLA_U32 },
1838};
1839
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05301840static int __wlan_hdd_cfg80211_ll_stats_get(struct wiphy *wiphy,
1841 struct wireless_dev *wdev,
1842 const void *data,
1843 int data_len)
Sunil Duttc69bccb2014-05-26 21:30:20 +05301844{
mukul sharma4bd8d2e2015-08-13 20:33:25 +05301845 unsigned long rc;
1846 struct hdd_ll_stats_context *context;
Sunil Duttc69bccb2014-05-26 21:30:20 +05301847 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
1848 struct nlattr *tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_MAX + 1];
Dino Mycledf0a5d92014-07-04 09:41:55 +05301849 tSirLLStatsGetReq linkLayerStatsGetReq;
Sunil Duttc69bccb2014-05-26 21:30:20 +05301850 struct net_device *dev = wdev->netdev;
1851 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Mukul Sharma10313ba2015-07-29 19:14:39 +05301852 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301853 int status;
1854
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05301855 ENTER();
1856
Sunil Duttc69bccb2014-05-26 21:30:20 +05301857 status = wlan_hdd_validate_context(pHddCtx);
1858 if (0 != status)
1859 {
Sunil Duttc69bccb2014-05-26 21:30:20 +05301860 return -EINVAL ;
1861 }
1862
1863 if (NULL == pAdapter)
1864 {
1865 hddLog(VOS_TRACE_LEVEL_FATAL,
1866 "%s: HDD adapter is Null", __func__);
1867 return -ENODEV;
1868 }
Mukul Sharma10313ba2015-07-29 19:14:39 +05301869
1870 if (pHddStaCtx == NULL)
1871 {
1872 hddLog(VOS_TRACE_LEVEL_FATAL,
1873 "%s: HddStaCtx is Null", __func__);
1874 return -ENODEV;
1875 }
1876
Dino Mycledf0a5d92014-07-04 09:41:55 +05301877 /* check the LLStats Capability */
1878 if ( (TRUE != pHddCtx->cfg_ini->fEnableLLStats) ||
1879 (TRUE != sme_IsFeatureSupportedByFW(LINK_LAYER_STATS_MEAS)))
1880 {
1881 hddLog(VOS_TRACE_LEVEL_ERROR,
1882 FL("Link Layer Statistics not supported by Firmware"));
1883 return -EINVAL;
1884 }
1885
Sunil Duttc69bccb2014-05-26 21:30:20 +05301886
1887 if (!pAdapter->isLinkLayerStatsSet)
1888 {
Sushant Kaushikdc3184b2015-10-09 12:00:21 +05301889 hddLog(VOS_TRACE_LEVEL_ERROR,
Sunil Duttc69bccb2014-05-26 21:30:20 +05301890 "%s: isLinkLayerStatsSet : %d",
1891 __func__, pAdapter->isLinkLayerStatsSet);
1892 return -EINVAL;
1893 }
1894
Mukul Sharma10313ba2015-07-29 19:14:39 +05301895 if (VOS_TRUE == pHddStaCtx->hdd_ReassocScenario)
1896 {
1897 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
1898 "%s: Roaming in progress, so unable to proceed this request", __func__);
1899 return -EBUSY;
1900 }
1901
Sunil Duttc69bccb2014-05-26 21:30:20 +05301902 if (nla_parse(tb_vendor, QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_MAX,
1903 (struct nlattr *)data,
1904 data_len, qca_wlan_vendor_ll_get_policy))
1905 {
1906 hddLog(VOS_TRACE_LEVEL_ERROR, FL() );
1907 return -EINVAL;
1908 }
1909
1910 if (!tb_vendor
1911 [QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_CONFIG_REQ_ID])
1912 {
1913 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Request Id Not present"));
1914 return -EINVAL;
1915 }
1916
1917 if (!tb_vendor
1918 [QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_CONFIG_REQ_MASK])
1919 {
1920 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Req Mask Not present"));
1921 return -EINVAL;
1922 }
1923
Sunil Duttc69bccb2014-05-26 21:30:20 +05301924
Dino Mycledf0a5d92014-07-04 09:41:55 +05301925 linkLayerStatsGetReq.reqId =
Sunil Duttc69bccb2014-05-26 21:30:20 +05301926 nla_get_u32( tb_vendor[
1927 QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_CONFIG_REQ_ID]);
Dino Mycledf0a5d92014-07-04 09:41:55 +05301928 linkLayerStatsGetReq.paramIdMask =
Sunil Duttc69bccb2014-05-26 21:30:20 +05301929 nla_get_u32( tb_vendor[
1930 QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_CONFIG_REQ_MASK]);
1931
Dino Mycled3d50022014-07-07 12:58:25 +05301932 vos_mem_copy(linkLayerStatsGetReq.macAddr,
1933 pAdapter->macAddressCurrent.bytes, sizeof(v_MACADDR_t));
Sunil Duttc69bccb2014-05-26 21:30:20 +05301934
1935 hddLog(VOS_TRACE_LEVEL_INFO,
Sushant Kaushik81a730c2015-09-14 14:49:52 +05301936 "LL_STATS_GET reqId = %d, MAC = %pM, paramIdMask = %d",
1937 linkLayerStatsGetReq.reqId, linkLayerStatsGetReq.macAddr,
Dino Mycledf0a5d92014-07-04 09:41:55 +05301938 linkLayerStatsGetReq.paramIdMask);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301939
mukul sharma4bd8d2e2015-08-13 20:33:25 +05301940 spin_lock(&hdd_context_lock);
1941 context = &pHddCtx->ll_stats_context;
1942 context->request_id = linkLayerStatsGetReq.reqId;
1943 context->request_bitmap = linkLayerStatsGetReq.paramIdMask;
1944 INIT_COMPLETION(context->response_event);
1945 spin_unlock(&hdd_context_lock);
1946
Sunil Duttc69bccb2014-05-26 21:30:20 +05301947 if (eHAL_STATUS_SUCCESS != sme_LLStatsGetReq( pHddCtx->hHal,
Dino Mycledf0a5d92014-07-04 09:41:55 +05301948 &linkLayerStatsGetReq))
Sunil Duttc69bccb2014-05-26 21:30:20 +05301949 {
1950 hddLog(VOS_TRACE_LEVEL_ERROR, "%s:"
1951 "sme_LLStatsGetReq Failed", __func__);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301952 return -EINVAL;
1953 }
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05301954
mukul sharma4bd8d2e2015-08-13 20:33:25 +05301955 rc = wait_for_completion_timeout(&context->response_event,
1956 msecs_to_jiffies(WLAN_WAIT_TIME_LL_STATS));
1957 if (!rc)
1958 {
1959 hddLog(LOGE,
1960 FL("Target response timed out request id %d request bitmap 0x%x"),
1961 context->request_id, context->request_bitmap);
1962 return -ETIMEDOUT;
1963 }
1964
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05301965 EXIT();
Sunil Duttc69bccb2014-05-26 21:30:20 +05301966 return 0;
1967}
1968
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05301969static int wlan_hdd_cfg80211_ll_stats_get(struct wiphy *wiphy,
1970 struct wireless_dev *wdev,
1971 const void *data,
1972 int data_len)
1973{
1974 int ret = 0;
1975
1976 vos_ssr_protect(__func__);
1977 ret = __wlan_hdd_cfg80211_ll_stats_get(wiphy, wdev, data, data_len);
1978 vos_ssr_unprotect(__func__);
1979
1980 return ret;
1981}
1982
Sunil Duttc69bccb2014-05-26 21:30:20 +05301983const struct
1984nla_policy
1985qca_wlan_vendor_ll_clr_policy[QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_MAX +1] =
1986{
1987 [QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_REQ_MASK] = {.type = NLA_U32 },
1988 [QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_STOP_REQ] = {.type = NLA_U8 },
1989 [QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_RSP_MASK] = {.type = NLA_U32 },
1990 [QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_STOP_RSP] = {.type = NLA_U8 },
1991};
1992
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05301993static int __wlan_hdd_cfg80211_ll_stats_clear(struct wiphy *wiphy,
1994 struct wireless_dev *wdev,
1995 const void *data,
1996 int data_len)
Sunil Duttc69bccb2014-05-26 21:30:20 +05301997{
1998 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
1999 struct nlattr *tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_MAX + 1];
Dino Mycledf0a5d92014-07-04 09:41:55 +05302000 tSirLLStatsClearReq linkLayerStatsClearReq;
Sunil Duttc69bccb2014-05-26 21:30:20 +05302001 struct net_device *dev = wdev->netdev;
2002 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
2003 u32 statsClearReqMask;
2004 u8 stopReq;
2005 int status;
2006
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05302007 ENTER();
2008
Sunil Duttc69bccb2014-05-26 21:30:20 +05302009 status = wlan_hdd_validate_context(pHddCtx);
2010 if (0 != status)
2011 {
Sunil Duttc69bccb2014-05-26 21:30:20 +05302012 return -EINVAL;
2013 }
2014
2015 if (NULL == pAdapter)
2016 {
2017 hddLog(VOS_TRACE_LEVEL_FATAL,
2018 "%s: HDD adapter is Null", __func__);
2019 return -ENODEV;
2020 }
Dino Mycledf0a5d92014-07-04 09:41:55 +05302021 /* check the LLStats Capability */
2022 if ( (TRUE != pHddCtx->cfg_ini->fEnableLLStats) ||
2023 (TRUE != sme_IsFeatureSupportedByFW(LINK_LAYER_STATS_MEAS)))
2024 {
2025 hddLog(VOS_TRACE_LEVEL_ERROR,
2026 FL("Enable LLStats Capability"));
2027 return -EINVAL;
2028 }
Sunil Duttc69bccb2014-05-26 21:30:20 +05302029
2030 if (!pAdapter->isLinkLayerStatsSet)
2031 {
2032 hddLog(VOS_TRACE_LEVEL_FATAL,
2033 "%s: isLinkLayerStatsSet : %d",
2034 __func__, pAdapter->isLinkLayerStatsSet);
2035 return -EINVAL;
2036 }
2037
2038 if (nla_parse(tb_vendor, QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_MAX,
2039 (struct nlattr *)data,
2040 data_len, qca_wlan_vendor_ll_clr_policy))
2041 {
2042 hddLog(VOS_TRACE_LEVEL_ERROR, FL() );
2043 return -EINVAL;
2044 }
2045
2046 if (!tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_REQ_MASK] ||
2047
2048 !tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_STOP_REQ])
2049 {
2050 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Error in LL_STATS CLR CONFIG PARA") );
2051 return -EINVAL;
2052
2053 }
2054
Sunil Duttc69bccb2014-05-26 21:30:20 +05302055
Dino Mycledf0a5d92014-07-04 09:41:55 +05302056 statsClearReqMask = linkLayerStatsClearReq.statsClearReqMask =
Sunil Duttc69bccb2014-05-26 21:30:20 +05302057 nla_get_u32(
2058 tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_REQ_MASK]);
2059
Dino Mycledf0a5d92014-07-04 09:41:55 +05302060 stopReq = linkLayerStatsClearReq.stopReq =
Sunil Duttc69bccb2014-05-26 21:30:20 +05302061 nla_get_u8(
2062 tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_STOP_REQ]);
2063
2064 // Shall take the request Id if the Upper layers pass. 1 For now.
Dino Mycledf0a5d92014-07-04 09:41:55 +05302065 linkLayerStatsClearReq.reqId = 1;
Sunil Duttc69bccb2014-05-26 21:30:20 +05302066
Dino Mycled3d50022014-07-07 12:58:25 +05302067 vos_mem_copy(linkLayerStatsClearReq.macAddr,
2068 pAdapter->macAddressCurrent.bytes, sizeof(v_MACADDR_t));
Sunil Duttc69bccb2014-05-26 21:30:20 +05302069
2070 hddLog(VOS_TRACE_LEVEL_INFO,
Sushant Kaushik81a730c2015-09-14 14:49:52 +05302071 "LL_STATS_CLEAR reqId = %d, MAC = %pM,"
2072 "statsClearReqMask = 0x%X, stopReq = %d",
2073 linkLayerStatsClearReq.reqId,
2074 linkLayerStatsClearReq.macAddr,
2075 linkLayerStatsClearReq.statsClearReqMask,
Dino Mycledf0a5d92014-07-04 09:41:55 +05302076 linkLayerStatsClearReq.stopReq);
Sunil Duttc69bccb2014-05-26 21:30:20 +05302077
2078 if (eHAL_STATUS_SUCCESS == sme_LLStatsClearReq(pHddCtx->hHal,
Dino Mycledf0a5d92014-07-04 09:41:55 +05302079 &linkLayerStatsClearReq))
Sunil Duttc69bccb2014-05-26 21:30:20 +05302080 {
2081 struct sk_buff *temp_skbuff;
Srinivas Dasari98947432014-11-07 19:41:24 +05302082 hdd_station_ctx_t *pHddStaCtx;
2083
2084 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
2085 if (VOS_STATUS_SUCCESS !=
2086 WLANTL_ClearInterfaceStats((WLAN_HDD_GET_CTX(pAdapter))->pvosContext,
2087 pHddStaCtx->conn_info.staId[0], statsClearReqMask))
2088 {
2089 hddLog(VOS_TRACE_LEVEL_ERROR, "%s:"
2090 "WLANTL_ClearInterfaceStats Failed", __func__);
2091 return -EINVAL;
2092 }
2093 if ((statsClearReqMask & WIFI_STATS_IFACE_AC) ||
2094 (statsClearReqMask & WIFI_STATS_IFACE)) {
2095 pAdapter->hdd_stats.hddTxRxStats.txMcast[WLANTL_AC_VO] = 0;
2096 pAdapter->hdd_stats.hddTxRxStats.txMcast[WLANTL_AC_VI] = 0;
2097 pAdapter->hdd_stats.hddTxRxStats.txMcast[WLANTL_AC_BE] = 0;
2098 pAdapter->hdd_stats.hddTxRxStats.txMcast[WLANTL_AC_BK] = 0;
2099 }
2100
Sunil Duttc69bccb2014-05-26 21:30:20 +05302101 temp_skbuff = cfg80211_vendor_cmd_alloc_reply_skb(wiphy,
2102 2 * sizeof(u32) +
2103 NLMSG_HDRLEN);
2104
2105 if (temp_skbuff != NULL)
2106 {
2107
2108 if (nla_put_u32(temp_skbuff,
2109 QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_RSP_MASK,
2110 statsClearReqMask) ||
2111 nla_put_u32(temp_skbuff,
2112 QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_STOP_RSP,
2113 stopReq))
2114 {
2115 hddLog(VOS_TRACE_LEVEL_ERROR, FL("LL_STATS_CLR put fail"));
2116 kfree_skb(temp_skbuff);
2117 return -EINVAL;
2118 }
2119 /* If the ask is to stop the stats collection as part of clear
2120 * (stopReq = 1) , ensure that no further requests of get
2121 * go to the firmware by having isLinkLayerStatsSet set to 0.
2122 * However it the stopReq as part of the clear request is 0 ,
Dino Mycledf0a5d92014-07-04 09:41:55 +05302123 * the request to get the statistics are honoured as in this
Sunil Duttc69bccb2014-05-26 21:30:20 +05302124 * case the firmware is just asked to clear the statistics.
2125 */
Dino Mycledf0a5d92014-07-04 09:41:55 +05302126 if (linkLayerStatsClearReq.stopReq == 1)
Sunil Duttc69bccb2014-05-26 21:30:20 +05302127 pAdapter->isLinkLayerStatsSet = 0;
2128 return cfg80211_vendor_cmd_reply(temp_skbuff);
2129 }
2130 return -ENOMEM;
2131 }
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05302132
2133 EXIT();
Sunil Duttc69bccb2014-05-26 21:30:20 +05302134 return -EINVAL;
2135}
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05302136static int wlan_hdd_cfg80211_ll_stats_clear(struct wiphy *wiphy,
2137 struct wireless_dev *wdev,
2138 const void *data,
2139 int data_len)
2140{
2141 int ret = 0;
2142
2143 vos_ssr_protect(__func__);
2144 ret = __wlan_hdd_cfg80211_ll_stats_clear(wiphy, wdev, data, data_len);
2145 vos_ssr_unprotect(__func__);
2146
2147 return ret;
2148
2149
2150}
Sunil Duttc69bccb2014-05-26 21:30:20 +05302151#endif /* WLAN_FEATURE_LINK_LAYER_STATS */
2152
Dino Mycle6fb96c12014-06-10 11:52:40 +05302153#ifdef WLAN_FEATURE_EXTSCAN
2154static const struct nla_policy
2155wlan_hdd_extscan_config_policy
2156 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX + 1] =
2157{
2158 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID] =
2159 { .type = NLA_U32 },
2160 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_GET_VALID_CHANNELS_CONFIG_PARAM_WIFI_BAND] =
2161 { .type = NLA_U32 },
2162 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_CHANNEL_SPEC_CHANNEL] = { .type = NLA_U32 },
2163 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_CHANNEL_SPEC_DWELL_TIME] =
2164 { .type = NLA_U32 },
2165 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_CHANNEL_SPEC_PASSIVE] = { .type = NLA_U8 },
2166 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_CHANNEL_SPEC_CLASS] = { .type = NLA_U8 },
2167
2168 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_INDEX] = { .type = NLA_U8 },
2169 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_BAND] = { .type = NLA_U8 },
2170 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_PERIOD] = { .type = NLA_U32 },
2171 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_REPORT_EVENTS] =
2172 { .type = NLA_U8 },
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05302173 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_MAX_PERIOD] =
2174 { .type = NLA_U32 },
2175 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_EXPONENT] =
2176 { .type = NLA_U32 },
2177 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_STEP_COUNT] =
2178 { .type = NLA_U32 },
Dino Mycle6fb96c12014-06-10 11:52:40 +05302179 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_NUM_CHANNEL_SPECS] =
2180 { .type = NLA_U32 },
2181 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_SCAN_CMD_PARAMS_BASE_PERIOD] =
2182 { .type = NLA_U32 },
2183 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_SCAN_CMD_PARAMS_MAX_AP_PER_SCAN] =
2184 { .type = NLA_U32 },
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05302185 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_SCAN_CMD_PARAMS_REPORT_THRESHOLD_PERCENT] =
2186 { .type = NLA_U8 },
2187 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_SCAN_CMD_PARAMS_REPORT_THRESHOLD_NUM_SCANS] =
Dino Mycle6fb96c12014-06-10 11:52:40 +05302188 { .type = NLA_U8 },
2189 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_SCAN_CMD_PARAMS_NUM_BUCKETS] =
2190 { .type = NLA_U8 },
2191 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_GET_CACHED_SCAN_RESULTS_CONFIG_PARAM_FLUSH] =
2192 { .type = NLA_U8 },
2193
2194 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_GET_CACHED_SCAN_RESULTS_CONFIG_PARAM_MAX] =
2195 { .type = NLA_U32 },
2196 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_BSSID] =
2197 { .type = NLA_UNSPEC },
2198 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_RSSI_LOW] =
2199 { .type = NLA_S32 },
2200 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_RSSI_HIGH] =
2201 { .type = NLA_S32 },
2202 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_CHANNEL] =
2203 { .type = NLA_U32 },
2204 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_BSSID_HOTLIST_PARAMS_NUM_AP] =
2205 { .type = NLA_U32 },
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05302206 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_BSSID_HOTLIST_PARAMS_LOST_AP_SAMPLE_SIZE] =
2207 { .type = NLA_U32 },
2208 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_SSID_THRESHOLD_PARAM_SSID] =
2209 { .type = NLA_BINARY,
2210 .len = IEEE80211_MAX_SSID_LEN + 1 },
2211 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_SSID_HOTLIST_PARAMS_LOST_SSID_SAMPLE_SIZE] =
Dino Mycle6fb96c12014-06-10 11:52:40 +05302212 { .type = NLA_U32 },
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05302213 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_SSID_HOTLIST_PARAMS_NUM_SSID] =
2214 { .type = NLA_U32 },
2215 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_SSID_THRESHOLD_PARAM_BAND] =
2216 { .type = NLA_U8 },
2217 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_SSID_THRESHOLD_PARAM_RSSI_LOW] =
2218 { .type = NLA_S32 },
2219 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_SSID_THRESHOLD_PARAM_RSSI_HIGH] =
2220 { .type = NLA_S32 },
2221 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_CONFIGURATION_FLAGS] =
2222 { .type = NLA_U32 },
Dino Mycle6fb96c12014-06-10 11:52:40 +05302223};
2224
Padma, Santhosh Kumara1aa4a32015-06-19 19:00:46 +05302225/**
2226 * wlan_hdd_cfg80211_extscan_get_capabilities_rsp() - response from target
2227 * @ctx: hdd global context
2228 * @data: capabilities data
2229 *
2230 * Return: none
2231 */
2232static void
2233wlan_hdd_cfg80211_extscan_get_capabilities_rsp(void *ctx, void *pMsg)
Dino Mycle6fb96c12014-06-10 11:52:40 +05302234{
Padma, Santhosh Kumara1aa4a32015-06-19 19:00:46 +05302235 struct hdd_ext_scan_context *context;
Dino Mycle6fb96c12014-06-10 11:52:40 +05302236 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
Padma, Santhosh Kumara1aa4a32015-06-19 19:00:46 +05302237 tSirEXTScanCapabilitiesEvent *data =
2238 (tSirEXTScanCapabilitiesEvent *) pMsg;
Dino Mycle6fb96c12014-06-10 11:52:40 +05302239
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05302240 ENTER();
2241
2242 if (wlan_hdd_validate_context(pHddCtx))
2243 {
Dino Mycle6fb96c12014-06-10 11:52:40 +05302244 return;
2245 }
2246
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05302247 if (!pMsg)
2248 {
2249 hddLog(VOS_TRACE_LEVEL_ERROR, FL("pMsg is null"));
2250 return;
2251 }
Dino Mycle6fb96c12014-06-10 11:52:40 +05302252
Padma, Santhosh Kumara1aa4a32015-06-19 19:00:46 +05302253 vos_spin_lock_acquire(&hdd_context_lock);
2254
2255 context = &pHddCtx->ext_scan_context;
2256 /* validate response received from target*/
2257 if (context->request_id != data->requestId)
2258 {
2259 vos_spin_lock_release(&hdd_context_lock);
2260 hddLog(LOGE,
2261 FL("Target response id did not match: request_id %d resposne_id %d"),
2262 context->request_id, data->requestId);
Dino Mycle6fb96c12014-06-10 11:52:40 +05302263 return;
2264 }
Padma, Santhosh Kumara1aa4a32015-06-19 19:00:46 +05302265 else
2266 {
2267 context->capability_response = *data;
2268 complete(&context->response_event);
Dino Mycle6fb96c12014-06-10 11:52:40 +05302269 }
2270
Padma, Santhosh Kumara1aa4a32015-06-19 19:00:46 +05302271 vos_spin_lock_release(&hdd_context_lock);
Dino Mycle6fb96c12014-06-10 11:52:40 +05302272
Dino Mycle6fb96c12014-06-10 11:52:40 +05302273 return;
2274}
2275
Padma, Santhosh Kumara1aa4a32015-06-19 19:00:46 +05302276/*
2277 * define short names for the global vendor params
2278 * used by wlan_hdd_send_ext_scan_capability()
2279 */
2280#define PARAM_REQUEST_ID \
2281 QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID
2282#define PARAM_STATUS \
2283 QCA_WLAN_VENDOR_ATTR_EXTSCAN_STATUS
2284#define MAX_SCAN_CACHE_SIZE \
2285 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_CAPABILITIES_MAX_SCAN_CACHE_SIZE
2286#define MAX_SCAN_BUCKETS \
2287 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_CAPABILITIES_MAX_SCAN_BUCKETS
2288#define MAX_AP_CACHE_PER_SCAN \
2289 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_CAPABILITIES_MAX_AP_CACHE_PER_SCAN
2290#define MAX_RSSI_SAMPLE_SIZE \
2291 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_CAPABILITIES_MAX_RSSI_SAMPLE_SIZE
2292#define MAX_SCAN_RPT_THRHOLD \
2293 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_CAPABILITIES_MAX_SCAN_REPORTING_THRESHOLD
2294#define MAX_HOTLIST_BSSIDS \
2295 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_CAPABILITIES_MAX_HOTLIST_BSSIDS
2296#define MAX_BSSID_HISTORY_ENTRIES \
2297 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_CAPABILITIES_MAX_BSSID_HISTORY_ENTRIES
2298#define MAX_HOTLIST_SSIDS \
2299 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_CAPABILITIES_MAX_HOTLIST_SSIDS
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05302300#define MAX_SIGNIFICANT_WIFI_CHANGE_APS \
2301 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_CAPABILITIES_MAX_SIGNIFICANT_WIFI_CHANGE_APS
Padma, Santhosh Kumara1aa4a32015-06-19 19:00:46 +05302302
2303static int wlan_hdd_send_ext_scan_capability(void *ctx)
2304{
2305 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
2306 struct sk_buff *skb = NULL;
2307 int ret;
2308 tSirEXTScanCapabilitiesEvent *data;
2309 tANI_U32 nl_buf_len;
2310
2311 ret = wlan_hdd_validate_context(pHddCtx);
2312 if (0 != ret)
2313 {
2314 return ret;
2315 }
2316
2317 data = &(pHddCtx->ext_scan_context.capability_response);
2318
2319 nl_buf_len = NLMSG_HDRLEN;
2320 nl_buf_len += (sizeof(data->requestId) + NLA_HDRLEN) +
2321 (sizeof(data->status) + NLA_HDRLEN) +
2322 (sizeof(data->scanCacheSize) + NLA_HDRLEN) +
2323 (sizeof(data->scanBuckets) + NLA_HDRLEN) +
2324 (sizeof(data->maxApPerScan) + NLA_HDRLEN) +
2325 (sizeof(data->maxRssiSampleSize) + NLA_HDRLEN) +
2326 (sizeof(data->maxScanReportingThreshold) + NLA_HDRLEN) +
2327 (sizeof(data->maxHotlistAPs) + NLA_HDRLEN) +
2328 (sizeof(data->maxBsidHistoryEntries) + NLA_HDRLEN) +
2329 (sizeof(data->maxHotlistSSIDs) + NLA_HDRLEN);
2330
2331 skb = cfg80211_vendor_cmd_alloc_reply_skb(pHddCtx->wiphy, nl_buf_len);
2332
2333 if (!skb)
2334 {
2335 hddLog(LOGE, FL("cfg80211_vendor_cmd_alloc_reply_skb failed"));
2336 return -ENOMEM;
2337 }
2338
2339 hddLog(LOG1, "Req Id (%u) Status (%u)", data->requestId, data->status);
2340 hddLog(LOG1, "Scan cache size (%u) Scan buckets (%u) Max AP per scan (%u)",
2341 data->scanCacheSize, data->scanBuckets, data->maxApPerScan);
2342 hddLog(LOG1, "max_rssi_sample_size (%u) max_scan_reporting_threshold (%u)",
2343 data->maxRssiSampleSize, data->maxScanReportingThreshold);
2344 hddLog(LOG1, "max_hotlist_bssids (%u) max_bssid_history_entries (%u)"
2345 "max_hotlist_ssids (%u)", data->maxHotlistAPs,
2346 data->maxBsidHistoryEntries, data->maxHotlistSSIDs);
2347
2348 if (nla_put_u32(skb, PARAM_REQUEST_ID, data->requestId) ||
2349 nla_put_u32(skb, PARAM_STATUS, data->status) ||
2350 nla_put_u32(skb, MAX_SCAN_CACHE_SIZE, data->scanCacheSize) ||
2351 nla_put_u32(skb, MAX_SCAN_BUCKETS, data->scanBuckets) ||
2352 nla_put_u32(skb, MAX_AP_CACHE_PER_SCAN,
2353 data->maxApPerScan) ||
2354 nla_put_u32(skb, MAX_RSSI_SAMPLE_SIZE,
2355 data->maxRssiSampleSize) ||
2356 nla_put_u32(skb, MAX_SCAN_RPT_THRHOLD,
2357 data->maxScanReportingThreshold) ||
2358 nla_put_u32(skb, MAX_HOTLIST_BSSIDS, data->maxHotlistAPs) ||
2359 nla_put_u32(skb, MAX_BSSID_HISTORY_ENTRIES,
2360 data->maxBsidHistoryEntries) ||
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05302361 nla_put_u32(skb, MAX_HOTLIST_SSIDS, data->maxHotlistSSIDs) ||
2362 nla_put_u32(skb, MAX_SIGNIFICANT_WIFI_CHANGE_APS, 0))
Padma, Santhosh Kumara1aa4a32015-06-19 19:00:46 +05302363 {
2364 hddLog(LOGE, FL("nla put fail"));
2365 goto nla_put_failure;
2366 }
2367
2368 cfg80211_vendor_cmd_reply(skb);
2369 return 0;
2370
2371nla_put_failure:
2372 kfree_skb(skb);
2373 return -EINVAL;;
2374}
2375
2376/*
2377 * done with short names for the global vendor params
2378 * used by wlan_hdd_send_ext_scan_capability()
2379 */
2380#undef PARAM_REQUEST_ID
2381#undef PARAM_STATUS
2382#undef MAX_SCAN_CACHE_SIZE
2383#undef MAX_SCAN_BUCKETS
2384#undef MAX_AP_CACHE_PER_SCAN
2385#undef MAX_RSSI_SAMPLE_SIZE
2386#undef MAX_SCAN_RPT_THRHOLD
2387#undef MAX_HOTLIST_BSSIDS
Padma, Santhosh Kumara1aa4a32015-06-19 19:00:46 +05302388#undef MAX_BSSID_HISTORY_ENTRIES
2389#undef MAX_HOTLIST_SSIDS
Dino Mycle6fb96c12014-06-10 11:52:40 +05302390
2391static void wlan_hdd_cfg80211_extscan_start_rsp(void *ctx, void *pMsg)
2392{
2393 tpSirEXTScanStartRspParams pData = (tpSirEXTScanStartRspParams) pMsg;
2394 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
Dino Mycle6fb96c12014-06-10 11:52:40 +05302395 tpAniSirGlobal pMac = PMAC_STRUCT( pHddCtx->hHal );
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05302396 struct hdd_ext_scan_context *context;
Dino Mycle6fb96c12014-06-10 11:52:40 +05302397
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05302398 ENTER();
Dino Mycle6fb96c12014-06-10 11:52:40 +05302399
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05302400 if (wlan_hdd_validate_context(pHddCtx))
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05302401 return;
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05302402
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05302403 if (!pMsg)
2404 {
2405 hddLog(VOS_TRACE_LEVEL_ERROR, FL("pMsg is null"));
Dino Mycle6fb96c12014-06-10 11:52:40 +05302406 return;
2407 }
2408
Dino Mycle6fb96c12014-06-10 11:52:40 +05302409 hddLog(VOS_TRACE_LEVEL_INFO, "Req Id (%u)", pData->requestId);
2410 hddLog(VOS_TRACE_LEVEL_INFO, "Status (%u)", pData->status);
2411
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05302412 context = &pHddCtx->ext_scan_context;
2413 spin_lock(&hdd_context_lock);
2414 if (context->request_id == pData->requestId) {
2415 context->response_status = pData->status ? -EINVAL : 0;
2416 complete(&context->response_event);
Dino Mycle6fb96c12014-06-10 11:52:40 +05302417 }
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05302418 spin_unlock(&hdd_context_lock);
Dino Mycle6fb96c12014-06-10 11:52:40 +05302419
2420 /*
2421 * Store the Request ID for comparing with the requestID obtained
2422 * in other requests.HDD shall return a failure is the extscan_stop
2423 * request is issued with a different requestId as that of the
2424 * extscan_start request. Also, This requestId shall be used while
2425 * indicating the full scan results to the upper layers.
2426 * The requestId is stored with the assumption that the firmware
2427 * shall return the ext scan start request's requestId in ext scan
2428 * start response.
2429 */
2430 if (pData->status == 0)
2431 pMac->sme.extScanStartReqId = pData->requestId;
2432
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05302433 EXIT();
Dino Mycle6fb96c12014-06-10 11:52:40 +05302434 return;
Dino Mycle6fb96c12014-06-10 11:52:40 +05302435}
2436
2437
2438static void wlan_hdd_cfg80211_extscan_stop_rsp(void *ctx, void *pMsg)
2439{
2440 tpSirEXTScanStopRspParams pData = (tpSirEXTScanStopRspParams) pMsg;
2441 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
Padma, Santhosh Kumar57cff7f2015-08-17 18:33:14 +05302442 struct hdd_ext_scan_context *context;
Dino Mycle6fb96c12014-06-10 11:52:40 +05302443
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05302444 ENTER();
2445
2446 if (wlan_hdd_validate_context(pHddCtx)){
2447 return;
2448 }
Padma, Santhosh Kumar57cff7f2015-08-17 18:33:14 +05302449
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05302450 if (!pMsg)
2451 {
2452 hddLog(VOS_TRACE_LEVEL_ERROR, FL("pMsg is null"));
Dino Mycle6fb96c12014-06-10 11:52:40 +05302453 return;
2454 }
2455
Padma, Santhosh Kumar57cff7f2015-08-17 18:33:14 +05302456 hddLog(VOS_TRACE_LEVEL_INFO, "Req Id %u Status %u", pData->requestId,
2457 pData->status);
Dino Mycle6fb96c12014-06-10 11:52:40 +05302458
Padma, Santhosh Kumar57cff7f2015-08-17 18:33:14 +05302459 context = &pHddCtx->ext_scan_context;
2460 spin_lock(&hdd_context_lock);
2461 if (context->request_id == pData->requestId) {
2462 context->response_status = pData->status ? -EINVAL : 0;
2463 complete(&context->response_event);
Dino Mycle6fb96c12014-06-10 11:52:40 +05302464 }
Padma, Santhosh Kumar57cff7f2015-08-17 18:33:14 +05302465 spin_unlock(&hdd_context_lock);
Dino Mycle6fb96c12014-06-10 11:52:40 +05302466
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05302467 EXIT();
Dino Mycle6fb96c12014-06-10 11:52:40 +05302468 return;
Dino Mycle6fb96c12014-06-10 11:52:40 +05302469}
2470
Dino Mycle6fb96c12014-06-10 11:52:40 +05302471static void wlan_hdd_cfg80211_extscan_set_bss_hotlist_rsp(void *ctx,
2472 void *pMsg)
2473{
2474 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
Dino Mycle6fb96c12014-06-10 11:52:40 +05302475 tpSirEXTScanSetBssidHotListRspParams pData =
2476 (tpSirEXTScanSetBssidHotListRspParams) pMsg;
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05302477 struct hdd_ext_scan_context *context;
Dino Mycle6fb96c12014-06-10 11:52:40 +05302478
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05302479 ENTER();
2480
2481 if (wlan_hdd_validate_context(pHddCtx)){
Dino Mycle6fb96c12014-06-10 11:52:40 +05302482 return;
2483 }
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05302484
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05302485 if (!pMsg)
2486 {
2487 hddLog(VOS_TRACE_LEVEL_ERROR, FL("pMsg is null"));
2488 return;
2489 }
2490
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05302491 hddLog(VOS_TRACE_LEVEL_INFO, "Req Id %u Status %u", pData->requestId,
2492 pData->status);
Dino Mycle6fb96c12014-06-10 11:52:40 +05302493
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05302494 context = &pHddCtx->ext_scan_context;
2495 spin_lock(&hdd_context_lock);
2496 if (context->request_id == pData->requestId) {
2497 context->response_status = pData->status ? -EINVAL : 0;
2498 complete(&context->response_event);
Dino Mycle6fb96c12014-06-10 11:52:40 +05302499 }
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05302500 spin_unlock(&hdd_context_lock);
Dino Mycle6fb96c12014-06-10 11:52:40 +05302501
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05302502 EXIT();
Dino Mycle6fb96c12014-06-10 11:52:40 +05302503 return;
Dino Mycle6fb96c12014-06-10 11:52:40 +05302504}
2505
2506static void wlan_hdd_cfg80211_extscan_reset_bss_hotlist_rsp(void *ctx,
2507 void *pMsg)
2508{
2509 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
Dino Mycle6fb96c12014-06-10 11:52:40 +05302510 tpSirEXTScanResetBssidHotlistRspParams pData =
2511 (tpSirEXTScanResetBssidHotlistRspParams) pMsg;
Padma, Santhosh Kumar04a3bab2015-08-20 13:09:35 +05302512 struct hdd_ext_scan_context *context;
Dino Mycle6fb96c12014-06-10 11:52:40 +05302513
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05302514 ENTER();
2515
2516 if (wlan_hdd_validate_context(pHddCtx)) {
2517 return;
2518 }
2519 if (!pMsg)
2520 {
2521 hddLog(VOS_TRACE_LEVEL_ERROR, FL("pMsg is null"));
Dino Mycle6fb96c12014-06-10 11:52:40 +05302522 return;
2523 }
2524
Padma, Santhosh Kumar04a3bab2015-08-20 13:09:35 +05302525 hddLog(VOS_TRACE_LEVEL_INFO, "Req Id %u Status %u", pData->requestId,
2526 pData->status);
Dino Mycle6fb96c12014-06-10 11:52:40 +05302527
Padma, Santhosh Kumar04a3bab2015-08-20 13:09:35 +05302528 context = &pHddCtx->ext_scan_context;
2529 spin_lock(&hdd_context_lock);
2530 if (context->request_id == pData->requestId) {
2531 context->response_status = pData->status ? -EINVAL : 0;
2532 complete(&context->response_event);
Dino Mycle6fb96c12014-06-10 11:52:40 +05302533 }
Padma, Santhosh Kumar04a3bab2015-08-20 13:09:35 +05302534 spin_unlock(&hdd_context_lock);
Dino Mycle6fb96c12014-06-10 11:52:40 +05302535
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05302536 EXIT();
Dino Mycle6fb96c12014-06-10 11:52:40 +05302537 return;
Dino Mycle6fb96c12014-06-10 11:52:40 +05302538}
2539
Padma, Santhosh Kumar9acee012015-08-21 19:58:01 +05302540static void wlan_hdd_cfg80211_extscan_set_ssid_hotlist_rsp(void *ctx,
2541 void *pMsg)
2542{
2543 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
2544 tpSirEXTScanSetSsidHotListRspParams pData =
2545 (tpSirEXTScanSetSsidHotListRspParams) pMsg;
2546 struct hdd_ext_scan_context *context;
2547
2548 if (wlan_hdd_validate_context(pHddCtx)){
2549 return;
2550 }
2551
2552 if (!pMsg)
2553 {
2554 hddLog(VOS_TRACE_LEVEL_ERROR, FL("pMsg is null"));
2555 return;
2556 }
2557
2558 hddLog(VOS_TRACE_LEVEL_INFO, "Req Id %u Status %u", pData->requestId,
2559 pData->status);
2560
2561 context = &pHddCtx->ext_scan_context;
2562 spin_lock(&hdd_context_lock);
2563 if (context->request_id == pData->requestId) {
2564 context->response_status = pData->status ? -EINVAL : 0;
2565 complete(&context->response_event);
2566 }
2567 spin_unlock(&hdd_context_lock);
2568
2569 return;
2570}
2571
2572static void wlan_hdd_cfg80211_extscan_reset_ssid_hotlist_rsp(void *ctx,
2573 void *pMsg)
2574{
2575 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
2576 tpSirEXTScanResetSsidHotlistRspParams pData =
2577 (tpSirEXTScanResetSsidHotlistRspParams) pMsg;
2578 struct hdd_ext_scan_context *context;
2579
2580 if (wlan_hdd_validate_context(pHddCtx)) {
2581 return;
2582 }
2583 if (!pMsg)
2584 {
2585 hddLog(VOS_TRACE_LEVEL_ERROR, FL("pMsg is null"));
2586 return;
2587 }
2588
2589 hddLog(VOS_TRACE_LEVEL_INFO, "Req Id %u Status %u", pData->requestId,
2590 pData->status);
2591
2592 context = &pHddCtx->ext_scan_context;
2593 spin_lock(&hdd_context_lock);
2594 if (context->request_id == pData->requestId) {
2595 context->response_status = pData->status ? -EINVAL : 0;
2596 complete(&context->response_event);
2597 }
2598 spin_unlock(&hdd_context_lock);
2599
2600 return;
2601}
2602
2603
Dino Mycle6fb96c12014-06-10 11:52:40 +05302604static void wlan_hdd_cfg80211_extscan_cached_results_ind(void *ctx,
2605 void *pMsg)
2606{
2607 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
2608 struct sk_buff *skb = NULL;
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05302609 tANI_U32 i = 0, j, resultsPerEvent, scan_id_index;
Dino Mycle6fb96c12014-06-10 11:52:40 +05302610 tANI_S32 totalResults;
2611 tpSirWifiScanResultEvent pData = (tpSirWifiScanResultEvent) pMsg;
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05302612 tpSirWifiScanResult pSirWifiScanResult, head_ptr;
2613 struct hdd_ext_scan_context *context;
2614 bool ignore_cached_results = false;
2615 tExtscanCachedScanResult *result;
2616 struct nlattr *nla_results;
2617 tANI_U16 ieLength= 0;
2618 tANI_U8 *ie = NULL;
Dino Mycle6fb96c12014-06-10 11:52:40 +05302619
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05302620 ENTER();
2621
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05302622 if (wlan_hdd_validate_context(pHddCtx))
Dino Mycle6fb96c12014-06-10 11:52:40 +05302623 return;
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05302624
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05302625 if (!pMsg)
2626 {
2627 hddLog(VOS_TRACE_LEVEL_ERROR, FL("pMsg is null"));
2628 return;
2629 }
2630
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05302631 spin_lock(&hdd_context_lock);
2632 context = &pHddCtx->ext_scan_context;
2633 ignore_cached_results = context->ignore_cached_results;
2634 spin_unlock(&hdd_context_lock);
Dino Mycle6fb96c12014-06-10 11:52:40 +05302635
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05302636 if (ignore_cached_results) {
2637 hddLog(LOGE,
2638 FL("Ignore the cached results received after timeout"));
2639 return;
2640 }
Dino Mycle6fb96c12014-06-10 11:52:40 +05302641
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05302642 hddLog(VOS_TRACE_LEVEL_INFO, "Req Id %u More Data %u No of scan ids %u",
2643 pData->requestId, pData->moreData, pData->scanResultSize);
Dino Mycle6fb96c12014-06-10 11:52:40 +05302644
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05302645 result = (tExtscanCachedScanResult *)&(pData->result);
Dino Mycle6fb96c12014-06-10 11:52:40 +05302646
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05302647 for (scan_id_index = 0; scan_id_index < pData->scanResultSize;
2648 scan_id_index++) {
2649 result+= scan_id_index;
Dino Mycle6fb96c12014-06-10 11:52:40 +05302650
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05302651 totalResults = result->num_results;
2652 hddLog(VOS_TRACE_LEVEL_INFO, "scan_id %u flags %u Num results %u",
2653 result->scan_id, result->flags, totalResults);
2654 i = 0;
Dino Mycle6fb96c12014-06-10 11:52:40 +05302655
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05302656 do{
2657 resultsPerEvent = ((totalResults >= EXTSCAN_MAX_CACHED_RESULTS_PER_IND) ?
2658 EXTSCAN_MAX_CACHED_RESULTS_PER_IND : totalResults);
2659 totalResults -= EXTSCAN_MAX_CACHED_RESULTS_PER_IND;
Dino Mycle6fb96c12014-06-10 11:52:40 +05302660
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05302661 skb = cfg80211_vendor_cmd_alloc_reply_skb(pHddCtx->wiphy,
2662 EXTSCAN_EVENT_BUF_SIZE + NLMSG_HDRLEN);
2663
2664 if (!skb) {
2665 hddLog(VOS_TRACE_LEVEL_ERROR,
2666 FL("cfg80211_vendor_event_alloc failed"));
2667 return;
2668 }
2669
2670 hddLog(VOS_TRACE_LEVEL_INFO, "resultsPerEvent (%u)", resultsPerEvent);
2671
2672 if (nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_REQUEST_ID,
2673 pData->requestId) ||
2674 nla_put_u32(skb,
2675 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_NUM_RESULTS_AVAILABLE,
2676 resultsPerEvent)) {
2677 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2678 goto fail;
2679 }
2680 if (nla_put_u8(skb,
2681 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_MORE_DATA,
2682 pData->moreData ? 1 : (totalResults > 0 ? 1 : 0 )))
Dino Mycle6fb96c12014-06-10 11:52:40 +05302683 {
2684 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2685 goto fail;
2686 }
2687
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05302688 if (nla_put_u32(skb,
2689 QCA_WLAN_VENDOR_ATTR_EXTSCAN_CACHED_RESULTS_SCAN_ID,
2690 result->scan_id)) {
2691 hddLog(LOGE, FL("put fail"));
2692 goto fail;
Dino Mycle6fb96c12014-06-10 11:52:40 +05302693 }
Dino Mycle6fb96c12014-06-10 11:52:40 +05302694
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05302695 nla_results = nla_nest_start(skb,
2696 QCA_WLAN_VENDOR_ATTR_EXTSCAN_CACHED_RESULTS_LIST);
2697 if (!nla_results)
2698 goto fail;
2699
2700 if (resultsPerEvent) {
2701 struct nlattr *aps;
2702 struct nlattr *nla_result;
2703
2704 nla_result = nla_nest_start(skb, scan_id_index);
2705 if(!nla_result)
2706 goto fail;
2707
2708 if (nla_put_u32(skb,
2709 QCA_WLAN_VENDOR_ATTR_EXTSCAN_CACHED_RESULTS_SCAN_ID,
2710 result->scan_id) ||
2711 nla_put_u32(skb,
2712 QCA_WLAN_VENDOR_ATTR_EXTSCAN_CACHED_RESULTS_FLAGS,
2713 result->flags) ||
2714 nla_put_u32(skb,
2715 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_NUM_RESULTS_AVAILABLE,
2716 totalResults)) {
2717 hddLog(LOGE, FL("put fail"));
2718 goto fail;
2719 }
2720
2721 aps = nla_nest_start(skb,
2722 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_LIST);
2723 if (!aps)
2724 {
2725 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2726 goto fail;
2727 }
2728
2729 head_ptr = (tpSirWifiScanResult) &(result->ap);
2730
2731 for (j = 0; j < resultsPerEvent; j++, i++) {
2732 struct nlattr *ap;
2733 pSirWifiScanResult = head_ptr + i;
2734
2735 /*
Srinivas Dasari91727c12016-03-23 17:59:06 +05302736 * Firmware returns timestamp from extscan_start till
2737 * BSSID was cached (in micro seconds). Add this with
2738 * time gap between system boot up to extscan_start
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05302739 * to derive the time since boot when the
2740 * BSSID was cached.
2741 */
Srinivas Dasari91727c12016-03-23 17:59:06 +05302742 pSirWifiScanResult->ts +=
2743 pHddCtx->extscan_start_time_since_boot;
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05302744 hddLog(VOS_TRACE_LEVEL_INFO, "[index=%u] Timestamp(%llu) "
2745 "Ssid (%s)"
2746 "Bssid: %pM "
2747 "Channel (%u)"
2748 "Rssi (%d)"
2749 "RTT (%u)"
2750 "RTT_SD (%u)"
2751 "Beacon Period %u"
2752 "Capability 0x%x "
2753 "Ie length %d",
2754 i,
2755 pSirWifiScanResult->ts,
2756 pSirWifiScanResult->ssid,
2757 pSirWifiScanResult->bssid,
2758 pSirWifiScanResult->channel,
2759 pSirWifiScanResult->rssi,
2760 pSirWifiScanResult->rtt,
2761 pSirWifiScanResult->rtt_sd,
2762 pSirWifiScanResult->beaconPeriod,
2763 pSirWifiScanResult->capability,
2764 ieLength);
2765
2766 ap = nla_nest_start(skb, j + 1);
2767 if (!ap)
2768 {
2769 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2770 goto fail;
2771 }
2772
2773 if (nla_put_u64(skb,
2774 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_TIME_STAMP,
2775 pSirWifiScanResult->ts) )
2776 {
2777 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2778 goto fail;
2779 }
2780 if (nla_put(skb,
2781 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_SSID,
2782 sizeof(pSirWifiScanResult->ssid),
2783 pSirWifiScanResult->ssid) )
2784 {
2785 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2786 goto fail;
2787 }
2788 if (nla_put(skb,
2789 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_BSSID,
2790 sizeof(pSirWifiScanResult->bssid),
2791 pSirWifiScanResult->bssid) )
2792 {
2793 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2794 goto fail;
2795 }
2796 if (nla_put_u32(skb,
2797 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_CHANNEL,
2798 pSirWifiScanResult->channel) )
2799 {
2800 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2801 goto fail;
2802 }
2803 if (nla_put_s32(skb,
2804 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_RSSI,
2805 pSirWifiScanResult->rssi) )
2806 {
2807 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2808 goto fail;
2809 }
2810 if (nla_put_u32(skb,
2811 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_RTT,
2812 pSirWifiScanResult->rtt) )
2813 {
2814 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2815 goto fail;
2816 }
2817 if (nla_put_u32(skb,
2818 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_RTT_SD,
2819 pSirWifiScanResult->rtt_sd))
2820 {
2821 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2822 goto fail;
2823 }
2824 if (nla_put_u32(skb,
2825 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_BEACON_PERIOD,
2826 pSirWifiScanResult->beaconPeriod))
2827 {
2828 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2829 goto fail;
2830 }
2831 if (nla_put_u32(skb,
2832 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_CAPABILITY,
2833 pSirWifiScanResult->capability))
2834 {
2835 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2836 goto fail;
2837 }
2838 if (nla_put_u32(skb,
2839 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_IE_LENGTH,
2840 ieLength))
2841 {
2842 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2843 goto fail;
2844 }
2845
2846 if (ieLength)
2847 if (nla_put(skb,
2848 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_IE_DATA,
2849 ieLength, ie)) {
2850 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2851 goto fail;
2852 }
2853
2854 nla_nest_end(skb, ap);
2855 }
2856 nla_nest_end(skb, aps);
2857 nla_nest_end(skb, nla_result);
2858 }
2859
2860 nla_nest_end(skb, nla_results);
2861
2862 cfg80211_vendor_cmd_reply(skb);
2863
2864 } while (totalResults > 0);
2865 }
2866
2867 if (!pData->moreData) {
2868 spin_lock(&hdd_context_lock);
2869 context->response_status = 0;
2870 complete(&context->response_event);
2871 spin_unlock(&hdd_context_lock);
2872 }
Dino Mycle6fb96c12014-06-10 11:52:40 +05302873
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05302874 EXIT();
Dino Mycle6fb96c12014-06-10 11:52:40 +05302875 return;
2876fail:
2877 kfree_skb(skb);
2878 return;
2879}
2880
2881static void wlan_hdd_cfg80211_extscan_hotlist_match_ind(void *ctx,
2882 void *pMsg)
2883{
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05302884 tpSirEXTScanHotlistMatch pData = (tpSirEXTScanHotlistMatch) pMsg;
Dino Mycle6fb96c12014-06-10 11:52:40 +05302885 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
2886 struct sk_buff *skb = NULL;
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05302887 tANI_U32 i, index;
Dino Mycle6fb96c12014-06-10 11:52:40 +05302888
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05302889 ENTER();
2890
2891 if (wlan_hdd_validate_context(pHddCtx)) {
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05302892 hddLog(LOGE,
2893 FL("HDD context is not valid or response"));
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05302894 return;
2895 }
2896 if (!pMsg)
2897 {
2898 hddLog(VOS_TRACE_LEVEL_ERROR, FL("pMsg is null"));
Dino Mycle6fb96c12014-06-10 11:52:40 +05302899 return;
2900 }
2901
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05302902 if (pData->bss_found)
2903 index = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_HOTLIST_AP_FOUND_INDEX;
2904 else
2905 index = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_HOTLIST_AP_LOST_INDEX;
2906
Dino Mycle6fb96c12014-06-10 11:52:40 +05302907 skb = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
Anand N Sunkad26ca6cc2015-07-29 09:54:52 +05302908#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 18, 0))
2909 NULL,
2910#endif
Dino Mycle6fb96c12014-06-10 11:52:40 +05302911 EXTSCAN_EVENT_BUF_SIZE + NLMSG_HDRLEN,
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05302912 index, GFP_KERNEL);
Dino Mycle6fb96c12014-06-10 11:52:40 +05302913
2914 if (!skb) {
2915 hddLog(VOS_TRACE_LEVEL_ERROR,
2916 FL("cfg80211_vendor_event_alloc failed"));
2917 return;
2918 }
Dino Mycle6fb96c12014-06-10 11:52:40 +05302919
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05302920 hddLog(VOS_TRACE_LEVEL_INFO, "Req Id (%u)", pData->requestId);
2921 hddLog(VOS_TRACE_LEVEL_INFO, "Num results (%u)", pData->numHotlistBss);
2922 hddLog(VOS_TRACE_LEVEL_INFO, "More Data (%u)", pData->moreData);
2923 hddLog(VOS_TRACE_LEVEL_INFO, "ap_found %u", pData->bss_found);
2924
2925 for (i = 0; i < pData->numHotlistBss; i++) {
Dino Mycle6fb96c12014-06-10 11:52:40 +05302926 hddLog(VOS_TRACE_LEVEL_INFO, "[index=%u] Timestamp(0x%lld) "
2927 "Ssid (%s) "
2928 "Bssid (" MAC_ADDRESS_STR ") "
2929 "Channel (%u) "
2930 "Rssi (%d) "
2931 "RTT (%u) "
2932 "RTT_SD (%u) ",
2933 i,
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05302934 pData->bssHotlist[i].ts,
2935 pData->bssHotlist[i].ssid,
2936 MAC_ADDR_ARRAY(pData->bssHotlist[i].bssid),
2937 pData->bssHotlist[i].channel,
2938 pData->bssHotlist[i].rssi,
2939 pData->bssHotlist[i].rtt,
2940 pData->bssHotlist[i].rtt_sd);
Dino Mycle6fb96c12014-06-10 11:52:40 +05302941 }
2942
2943 if (nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_REQUEST_ID,
2944 pData->requestId) ||
2945 nla_put_u32(skb,
2946 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_NUM_RESULTS_AVAILABLE,
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05302947 pData->numHotlistBss)) {
Dino Mycle6fb96c12014-06-10 11:52:40 +05302948 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2949 goto fail;
2950 }
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05302951 if (pData->numHotlistBss) {
Dino Mycle6fb96c12014-06-10 11:52:40 +05302952 struct nlattr *aps;
2953
2954 aps = nla_nest_start(skb,
2955 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_LIST);
2956 if (!aps)
2957 goto fail;
2958
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05302959 for (i = 0; i < pData->numHotlistBss; i++) {
Dino Mycle6fb96c12014-06-10 11:52:40 +05302960 struct nlattr *ap;
2961
2962 ap = nla_nest_start(skb, i + 1);
2963 if (!ap)
2964 goto fail;
2965
2966 if (nla_put_u64(skb,
2967 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_TIME_STAMP,
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05302968 pData->bssHotlist[i].ts) ||
Dino Mycle6fb96c12014-06-10 11:52:40 +05302969 nla_put(skb,
2970 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_SSID,
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05302971 sizeof(pData->bssHotlist[i].ssid),
2972 pData->bssHotlist[i].ssid) ||
Dino Mycle6fb96c12014-06-10 11:52:40 +05302973 nla_put(skb,
2974 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_BSSID,
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05302975 sizeof(pData->bssHotlist[i].bssid),
2976 pData->bssHotlist[i].bssid) ||
Dino Mycle6fb96c12014-06-10 11:52:40 +05302977 nla_put_u32(skb,
2978 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_CHANNEL,
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05302979 pData->bssHotlist[i].channel) ||
Dino Mycle6fb96c12014-06-10 11:52:40 +05302980 nla_put_s32(skb,
2981 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_RSSI,
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05302982 pData->bssHotlist[i].rssi) ||
Dino Mycle6fb96c12014-06-10 11:52:40 +05302983 nla_put_u32(skb,
2984 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_RTT,
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05302985 pData->bssHotlist[i].rtt) ||
Dino Mycle6fb96c12014-06-10 11:52:40 +05302986 nla_put_u32(skb,
2987 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_RTT_SD,
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05302988 pData->bssHotlist[i].rtt_sd))
Dino Mycle6fb96c12014-06-10 11:52:40 +05302989 goto fail;
2990
2991 nla_nest_end(skb, ap);
2992 }
2993 nla_nest_end(skb, aps);
2994
2995 if (nla_put_u8(skb,
2996 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_MORE_DATA,
2997 pData->moreData))
2998 goto fail;
2999 }
3000
3001 cfg80211_vendor_event(skb, GFP_KERNEL);
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05303002 EXIT();
Dino Mycle6fb96c12014-06-10 11:52:40 +05303003 return;
3004
3005fail:
3006 kfree_skb(skb);
3007 return;
3008
3009}
Dino Mycle6fb96c12014-06-10 11:52:40 +05303010
Padma, Santhosh Kumar9acee012015-08-21 19:58:01 +05303011/**
3012 * wlan_hdd_cfg80211_extscan_hotlist_ssid_match_ind() -
3013 * Handle an SSID hotlist match event
3014 * @ctx: HDD context registered with SME
3015 * @event: The SSID hotlist match event
3016 *
3017 * This function will take an SSID match event that was generated by
3018 * firmware and will convert it into a cfg80211 vendor event which is
3019 * sent to userspace.
3020 *
3021 * Return: none
3022 */
3023static void
3024wlan_hdd_cfg80211_extscan_hotlist_ssid_match_ind(void *ctx,
3025 void *pMsg)
3026{
3027 hdd_context_t *hdd_ctx = ctx;
3028 struct sk_buff *skb;
3029 tANI_U32 i, index;
3030 tpSirEXTScanSsidHotlistMatch pData = (tpSirEXTScanSsidHotlistMatch) pMsg;
3031
3032 ENTER();
3033
3034 if (wlan_hdd_validate_context(hdd_ctx)) {
3035 hddLog(LOGE,
3036 FL("HDD context is not valid or response"));
3037 return;
3038 }
3039 if (!pMsg)
3040 {
3041 hddLog(VOS_TRACE_LEVEL_ERROR, FL("pMsg is null"));
3042 return;
3043 }
3044
3045 if (pData->ssid_found) {
3046 index = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_HOTLIST_SSID_FOUND_INDEX;
3047 hddLog(LOG1, "SSID hotlist found");
3048 } else {
3049 index = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_HOTLIST_SSID_LOST_INDEX;
3050 hddLog(LOG1, "SSID hotlist lost");
3051 }
3052
3053 skb = cfg80211_vendor_event_alloc(hdd_ctx->wiphy,
3054#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 18, 0))
3055 NULL,
3056#endif
3057 EXTSCAN_EVENT_BUF_SIZE + NLMSG_HDRLEN,
3058 index, GFP_KERNEL);
3059
3060 if (!skb) {
3061 hddLog(LOGE, FL("cfg80211_vendor_event_alloc failed"));
3062 return;
3063 }
3064 hddLog(LOG1, "Req Id %u, Num of SSIDs %u, More Data (%u)",
3065 pData->requestId, pData->numHotlistSsid, pData->moreData);
3066
3067 for (i = 0; i < pData->numHotlistSsid; i++) {
3068 hddLog(LOG1, "[i=%d] Timestamp %llu "
3069 "Ssid: %s "
3070 "Bssid (" MAC_ADDRESS_STR ") "
3071 "Channel %u "
3072 "Rssi %d "
3073 "RTT %u "
3074 "RTT_SD %u",
3075 i,
3076 pData->ssidHotlist[i].ts,
3077 pData->ssidHotlist[i].ssid,
3078 MAC_ADDR_ARRAY(pData->ssidHotlist[i].bssid),
3079 pData->ssidHotlist[i].channel,
3080 pData->ssidHotlist[i].rssi,
3081 pData->ssidHotlist[i].rtt,
3082 pData->ssidHotlist[i].rtt_sd);
3083 }
3084
3085 if (nla_put_u32(skb,
3086 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_REQUEST_ID,
3087 pData->requestId) ||
3088 nla_put_u32(skb,
3089 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_NUM_RESULTS_AVAILABLE,
3090 pData->numHotlistSsid)) {
3091 hddLog(LOGE, FL("put fail"));
3092 goto fail;
3093 }
3094
3095 if (pData->numHotlistSsid) {
3096 struct nlattr *aps;
3097 aps = nla_nest_start(skb,
3098 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_LIST);
3099 if (!aps) {
3100 hddLog(LOGE, FL("nest fail"));
3101 goto fail;
3102 }
3103
3104 for (i = 0; i < pData->numHotlistSsid; i++) {
3105 struct nlattr *ap;
3106
3107 ap = nla_nest_start(skb, i);
3108 if (!ap) {
3109 hddLog(LOGE, FL("nest fail"));
3110 goto fail;
3111 }
3112
3113 if (nla_put_u64(skb,
3114 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_TIME_STAMP,
3115 pData->ssidHotlist[i].ts) ||
3116 nla_put(skb,
3117 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_SSID,
3118 sizeof(pData->ssidHotlist[i].ssid),
3119 pData->ssidHotlist[i].ssid) ||
3120 nla_put(skb,
3121 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_BSSID,
3122 sizeof(pData->ssidHotlist[i].bssid),
3123 pData->ssidHotlist[i].bssid) ||
3124 nla_put_u32(skb,
3125 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_CHANNEL,
3126 pData->ssidHotlist[i].channel) ||
3127 nla_put_s32(skb,
3128 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_RSSI,
3129 pData->ssidHotlist[i].rssi) ||
3130 nla_put_u32(skb,
3131 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_RTT,
3132 pData->ssidHotlist[i].rtt) ||
3133 nla_put_u32(skb,
3134 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_RTT_SD,
3135 pData->ssidHotlist[i].rtt_sd)) {
3136 hddLog(LOGE, FL("put fail"));
3137 goto fail;
3138 }
3139 nla_nest_end(skb, ap);
3140 }
3141 nla_nest_end(skb, aps);
3142
3143 if (nla_put_u8(skb,
3144 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_MORE_DATA,
3145 pData->moreData)) {
3146 hddLog(LOGE, FL("put fail"));
3147 goto fail;
3148 }
3149 }
3150
3151 cfg80211_vendor_event(skb, GFP_KERNEL);
3152 return;
3153
3154fail:
3155 kfree_skb(skb);
3156 return;
3157
3158}
3159
3160
Dino Mycle6fb96c12014-06-10 11:52:40 +05303161static void wlan_hdd_cfg80211_extscan_full_scan_result_event(void *ctx,
3162 void *pMsg)
3163{
3164 struct sk_buff *skb;
3165 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
3166 tpSirWifiFullScanResultEvent pData =
3167 (tpSirWifiFullScanResultEvent) (pMsg);
3168
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05303169 ENTER();
3170
3171 if (wlan_hdd_validate_context(pHddCtx)) {
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05303172 hddLog(LOGE,
3173 FL("HDD context is not valid or response"));
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05303174 return;
3175 }
3176 if (!pMsg)
3177 {
3178 hddLog(VOS_TRACE_LEVEL_ERROR, FL("pMsg is null"));
Dino Mycle6fb96c12014-06-10 11:52:40 +05303179 return;
3180 }
3181
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05303182 /*
3183 * If the full scan result including IE data exceeds NL 4K size
3184 * limitation, drop that beacon/probe rsp frame.
3185 */
3186 if ((sizeof(*pData) + pData->ieLength) >= EXTSCAN_EVENT_BUF_SIZE) {
3187 hddLog(LOGE, FL("Frame exceeded NL size limilation, drop it!"));
3188 return;
3189 }
3190
Dino Mycle6fb96c12014-06-10 11:52:40 +05303191 skb = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
Anand N Sunkad26ca6cc2015-07-29 09:54:52 +05303192#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 18, 0))
3193 NULL,
3194#endif
Dino Mycle6fb96c12014-06-10 11:52:40 +05303195 EXTSCAN_EVENT_BUF_SIZE + NLMSG_HDRLEN,
3196 QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_FULL_SCAN_RESULT_INDEX,
3197 GFP_KERNEL);
3198
3199 if (!skb) {
3200 hddLog(VOS_TRACE_LEVEL_ERROR,
3201 FL("cfg80211_vendor_event_alloc failed"));
3202 return;
3203 }
3204
Dino Mycle6fb96c12014-06-10 11:52:40 +05303205 hddLog(VOS_TRACE_LEVEL_INFO, FL("Req Id (%u)"), pData->requestId);
3206 hddLog(VOS_TRACE_LEVEL_INFO, FL("More Data (%u)"), pData->moreData);
3207 hddLog(VOS_TRACE_LEVEL_INFO, FL("AP Info: Timestamp(0x%llX) "
3208 "Ssid (%s)"
3209 "Bssid (" MAC_ADDRESS_STR ")"
3210 "Channel (%u)"
3211 "Rssi (%d)"
3212 "RTT (%u)"
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05303213 "RTT_SD (%u)"
3214 "Bcn Period %d"
3215 "Capability 0x%X "),
Dino Mycle6fb96c12014-06-10 11:52:40 +05303216 pData->ap.ts,
3217 pData->ap.ssid,
3218 MAC_ADDR_ARRAY(pData->ap.bssid),
3219 pData->ap.channel,
3220 pData->ap.rssi,
3221 pData->ap.rtt,
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05303222 pData->ap.rtt_sd,
3223 pData->ap.beaconPeriod,
3224 pData->ap.capability);
3225
Dino Mycle6fb96c12014-06-10 11:52:40 +05303226 hddLog(VOS_TRACE_LEVEL_INFO, "IE Length (%u)", pData->ieLength);
3227 if (nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_REQUEST_ID,
3228 pData->requestId) ||
3229 nla_put_u64(skb,
3230 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_TIME_STAMP,
3231 pData->ap.ts) ||
3232 nla_put(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_SSID,
3233 sizeof(pData->ap.ssid),
3234 pData->ap.ssid) ||
3235 nla_put(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_BSSID,
3236 WNI_CFG_BSSID_LEN,
3237 pData->ap.bssid) ||
3238 nla_put_u32(skb,
3239 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_CHANNEL,
3240 pData->ap.channel) ||
Dasari Srinivas90747d72014-10-08 12:16:15 +05303241 nla_put_s32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_RSSI,
Dino Mycle6fb96c12014-06-10 11:52:40 +05303242 pData->ap.rssi) ||
3243 nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_RTT,
3244 pData->ap.rtt) ||
3245 nla_put_u32(skb,
3246 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_RTT_SD,
3247 pData->ap.rtt_sd) ||
3248 nla_put_u16(skb,
3249 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_BEACON_PERIOD,
3250 pData->ap.beaconPeriod) ||
3251 nla_put_u16(skb,
3252 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_CAPABILITY,
3253 pData->ap.capability) ||
3254 nla_put_u32(skb,
3255 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_IE_LENGTH,
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05303256 pData->ieLength) ||
3257 nla_put_u8(skb,
3258 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_MORE_DATA,
3259 pData->moreData))
Dino Mycle6fb96c12014-06-10 11:52:40 +05303260 {
3261 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla put fail"));
3262 goto nla_put_failure;
3263 }
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05303264
3265 if (pData->ieLength) {
3266 if (nla_put(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_IE_DATA,
3267 pData->ieLength,
3268 pData->ie))
3269 {
3270 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla put fail"));
3271 goto nla_put_failure;
3272 }
Dino Mycle6fb96c12014-06-10 11:52:40 +05303273 }
3274
3275 cfg80211_vendor_event(skb, GFP_KERNEL);
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05303276 EXIT();
Dino Mycle6fb96c12014-06-10 11:52:40 +05303277 return;
3278
3279nla_put_failure:
3280 kfree_skb(skb);
3281 return;
3282}
3283
3284static void wlan_hdd_cfg80211_extscan_scan_res_available_event(void *ctx,
3285 void *pMsg)
3286{
3287 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
3288 struct sk_buff *skb = NULL;
3289 tpSirEXTScanResultsAvailableIndParams pData =
3290 (tpSirEXTScanResultsAvailableIndParams) pMsg;
3291
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05303292 ENTER();
3293
3294 if (wlan_hdd_validate_context(pHddCtx)){
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05303295 hddLog(LOGE,
3296 FL("HDD context is not valid or response"));
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05303297 return;
3298 }
3299 if (!pMsg)
3300 {
3301 hddLog(VOS_TRACE_LEVEL_ERROR, FL("pMsg is null"));
Dino Mycle6fb96c12014-06-10 11:52:40 +05303302 return;
3303 }
3304
3305 skb = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
Anand N Sunkad26ca6cc2015-07-29 09:54:52 +05303306#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 18, 0))
3307 NULL,
3308#endif
Dino Mycle6fb96c12014-06-10 11:52:40 +05303309 EXTSCAN_EVENT_BUF_SIZE + NLMSG_HDRLEN,
3310 QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_SCAN_RESULTS_AVAILABLE_INDEX,
3311 GFP_KERNEL);
3312
3313 if (!skb) {
3314 hddLog(VOS_TRACE_LEVEL_ERROR,
3315 FL("cfg80211_vendor_event_alloc failed"));
3316 return;
3317 }
3318
Dino Mycle6fb96c12014-06-10 11:52:40 +05303319 hddLog(VOS_TRACE_LEVEL_INFO, "Req Id (%u)", pData->requestId);
3320 hddLog(VOS_TRACE_LEVEL_INFO, "Num results (%u)",
3321 pData->numResultsAvailable);
3322 if (nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_REQUEST_ID,
3323 pData->requestId) ||
3324 nla_put_u32(skb,
3325 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_NUM_RESULTS_AVAILABLE,
3326 pData->numResultsAvailable)) {
3327 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla put fail"));
3328 goto nla_put_failure;
3329 }
3330
3331 cfg80211_vendor_event(skb, GFP_KERNEL);
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05303332 EXIT();
Dino Mycle6fb96c12014-06-10 11:52:40 +05303333 return;
3334
3335nla_put_failure:
3336 kfree_skb(skb);
3337 return;
3338}
3339
3340static void wlan_hdd_cfg80211_extscan_scan_progress_event(void *ctx, void *pMsg)
3341{
3342 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
3343 struct sk_buff *skb = NULL;
3344 tpSirEXTScanProgressIndParams pData =
3345 (tpSirEXTScanProgressIndParams) pMsg;
3346
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05303347 ENTER();
3348
3349 if (wlan_hdd_validate_context(pHddCtx)){
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05303350 hddLog(LOGE,
3351 FL("HDD context is not valid or response"));
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05303352 return;
3353 }
3354 if (!pMsg)
3355 {
3356 hddLog(VOS_TRACE_LEVEL_ERROR, FL("pMsg is null"));
Dino Mycle6fb96c12014-06-10 11:52:40 +05303357 return;
3358 }
3359
3360 skb = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
Anand N Sunkad26ca6cc2015-07-29 09:54:52 +05303361#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 18, 0))
3362 NULL,
3363#endif
Dino Mycle6fb96c12014-06-10 11:52:40 +05303364 EXTSCAN_EVENT_BUF_SIZE + NLMSG_HDRLEN,
3365 QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_SCAN_EVENT_INDEX,
3366 GFP_KERNEL);
3367
3368 if (!skb) {
3369 hddLog(VOS_TRACE_LEVEL_ERROR,
3370 FL("cfg80211_vendor_event_alloc failed"));
3371 return;
3372 }
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05303373 hddLog(VOS_TRACE_LEVEL_INFO, FL("Request Id (%u) "), pData->requestId);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303374 hddLog(VOS_TRACE_LEVEL_INFO, "Scan event type (%u)",
3375 pData->extScanEventType);
3376 hddLog(VOS_TRACE_LEVEL_INFO, "Scan event status (%u)",
3377 pData->status);
3378
3379 if (nla_put_u8(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_EVENT_TYPE,
3380 pData->extScanEventType) ||
3381 nla_put_u32(skb,
Dasari Srinivas5a288652014-06-30 17:13:22 +05303382 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_REQUEST_ID,
3383 pData->requestId) ||
3384 nla_put_u32(skb,
Dino Mycle6fb96c12014-06-10 11:52:40 +05303385 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_EVENT_STATUS,
3386 pData->status)) {
3387 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla put fail"));
3388 goto nla_put_failure;
3389 }
3390
3391 cfg80211_vendor_event(skb, GFP_KERNEL);
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05303392 EXIT();
Dino Mycle6fb96c12014-06-10 11:52:40 +05303393 return;
3394
3395nla_put_failure:
3396 kfree_skb(skb);
3397 return;
3398}
3399
3400void wlan_hdd_cfg80211_extscan_callback(void *ctx, const tANI_U16 evType,
3401 void *pMsg)
3402{
3403 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
3404
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05303405 ENTER();
3406
Dino Mycle6fb96c12014-06-10 11:52:40 +05303407 if (wlan_hdd_validate_context(pHddCtx)) {
Dino Mycle6fb96c12014-06-10 11:52:40 +05303408 return;
3409 }
3410
3411 hddLog(VOS_TRACE_LEVEL_INFO, FL("Rcvd Event (%d)"), evType);
3412
3413
3414 switch(evType) {
3415 case SIR_HAL_EXTSCAN_START_RSP:
3416 wlan_hdd_cfg80211_extscan_start_rsp(ctx, pMsg);
3417 break;
3418
3419 case SIR_HAL_EXTSCAN_STOP_RSP:
3420 wlan_hdd_cfg80211_extscan_stop_rsp(ctx, pMsg);
3421 break;
3422 case SIR_HAL_EXTSCAN_GET_CACHED_RESULTS_RSP:
3423 /* There is no need to send this response to upper layer
3424 Just log the message */
3425 hddLog(VOS_TRACE_LEVEL_INFO,
3426 FL("Rcvd SIR_HAL_EXTSCAN_CACHED_RESULTS_RSP"));
3427 break;
3428 case SIR_HAL_EXTSCAN_SET_BSS_HOTLIST_RSP:
3429 wlan_hdd_cfg80211_extscan_set_bss_hotlist_rsp(ctx, pMsg);
3430 break;
3431
3432 case SIR_HAL_EXTSCAN_RESET_BSS_HOTLIST_RSP:
3433 wlan_hdd_cfg80211_extscan_reset_bss_hotlist_rsp(ctx, pMsg);
3434 break;
3435
Padma, Santhosh Kumar9acee012015-08-21 19:58:01 +05303436 case SIR_HAL_EXTSCAN_SET_SSID_HOTLIST_RSP:
3437 wlan_hdd_cfg80211_extscan_set_ssid_hotlist_rsp(ctx, pMsg);
3438 break;
3439
3440 case SIR_HAL_EXTSCAN_RESET_SSID_HOTLIST_RSP:
3441 wlan_hdd_cfg80211_extscan_reset_ssid_hotlist_rsp(ctx, pMsg);
3442 break;
3443
Dino Mycle6fb96c12014-06-10 11:52:40 +05303444 case SIR_HAL_EXTSCAN_GET_CAPABILITIES_RSP:
Padma, Santhosh Kumara1aa4a32015-06-19 19:00:46 +05303445 wlan_hdd_cfg80211_extscan_get_capabilities_rsp(ctx, pMsg);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303446 break;
3447 case SIR_HAL_EXTSCAN_PROGRESS_IND:
3448 wlan_hdd_cfg80211_extscan_scan_progress_event(ctx, pMsg);
3449 break;
3450 case SIR_HAL_EXTSCAN_SCAN_AVAILABLE_IND:
3451 wlan_hdd_cfg80211_extscan_scan_res_available_event(ctx, pMsg);
3452 break;
3453 case SIR_HAL_EXTSCAN_SCAN_RESULT_IND:
3454 wlan_hdd_cfg80211_extscan_cached_results_ind(ctx, pMsg);
3455 break;
3456 case SIR_HAL_EXTSCAN_HOTLIST_MATCH_IND:
3457 wlan_hdd_cfg80211_extscan_hotlist_match_ind(ctx, pMsg);
3458 break;
Padma, Santhosh Kumar9acee012015-08-21 19:58:01 +05303459 case SIR_HAL_EXTSCAN_SSID_HOTLIST_MATCH_IND:
3460 wlan_hdd_cfg80211_extscan_hotlist_ssid_match_ind(ctx, pMsg);
3461 break;
Dino Mycle6fb96c12014-06-10 11:52:40 +05303462 case SIR_HAL_EXTSCAN_FULL_SCAN_RESULT_IND:
3463 wlan_hdd_cfg80211_extscan_full_scan_result_event(ctx, pMsg);
3464 break;
3465 default:
3466 hddLog(VOS_TRACE_LEVEL_ERROR, FL("invalid event type %d "), evType);
3467 break;
3468 }
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05303469 EXIT();
Dino Mycle6fb96c12014-06-10 11:52:40 +05303470}
3471
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05303472static int __wlan_hdd_cfg80211_extscan_get_capabilities(struct wiphy *wiphy,
3473 struct wireless_dev *wdev,
3474 const void *data, int dataLen)
Dino Mycle6fb96c12014-06-10 11:52:40 +05303475{
Dino Myclee8843b32014-07-04 14:21:45 +05303476 tSirGetEXTScanCapabilitiesReqParams reqMsg;
Dino Mycle6fb96c12014-06-10 11:52:40 +05303477 struct net_device *dev = wdev->netdev;
3478 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
3479 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
3480 struct nlattr
3481 *tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX + 1];
3482 eHalStatus status;
Padma, Santhosh Kumara1aa4a32015-06-19 19:00:46 +05303483 struct hdd_ext_scan_context *context;
3484 unsigned long rc;
3485 int ret;
Dino Mycle6fb96c12014-06-10 11:52:40 +05303486
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05303487 ENTER();
3488
Dino Mycle6fb96c12014-06-10 11:52:40 +05303489 status = wlan_hdd_validate_context(pHddCtx);
3490 if (0 != status)
3491 {
Dino Mycle6fb96c12014-06-10 11:52:40 +05303492 return -EINVAL;
3493 }
Dino Myclee8843b32014-07-04 14:21:45 +05303494 /* check the EXTScan Capability */
3495 if ( (TRUE != pHddCtx->cfg_ini->fEnableEXTScan) ||
Padma, Santhosh Kumar2ac54992015-10-12 18:20:58 +05303496 (TRUE != sme_IsFeatureSupportedByFW(EXTENDED_SCAN)) ||
3497 (TRUE != sme_IsFeatureSupportedByFW(EXT_SCAN_ENHANCED)))
Dino Myclee8843b32014-07-04 14:21:45 +05303498 {
3499 hddLog(VOS_TRACE_LEVEL_ERROR,
3500 FL("EXTScan not enabled/supported by Firmware"));
3501 return -EINVAL;
3502 }
3503
Dino Mycle6fb96c12014-06-10 11:52:40 +05303504 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX,
3505 data, dataLen,
3506 wlan_hdd_extscan_config_policy)) {
3507 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid ATTR"));
3508 return -EINVAL;
3509 }
3510
3511 /* Parse and fetch request Id */
3512 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]) {
3513 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr request id failed"));
3514 return -EINVAL;
3515 }
3516
Dino Myclee8843b32014-07-04 14:21:45 +05303517 reqMsg.requestId = nla_get_u32(
Dino Mycle6fb96c12014-06-10 11:52:40 +05303518 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]);
Dino Myclee8843b32014-07-04 14:21:45 +05303519 hddLog(VOS_TRACE_LEVEL_INFO, FL("Req Id (%d)"), reqMsg.requestId);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303520
Dino Myclee8843b32014-07-04 14:21:45 +05303521 reqMsg.sessionId = pAdapter->sessionId;
3522 hddLog(VOS_TRACE_LEVEL_INFO, FL("Session Id (%d)"), reqMsg.sessionId);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303523
Padma, Santhosh Kumara1aa4a32015-06-19 19:00:46 +05303524 vos_spin_lock_acquire(&hdd_context_lock);
3525 context = &pHddCtx->ext_scan_context;
3526 context->request_id = reqMsg.requestId;
3527 INIT_COMPLETION(context->response_event);
3528 vos_spin_lock_release(&hdd_context_lock);
3529
Dino Myclee8843b32014-07-04 14:21:45 +05303530 status = sme_EXTScanGetCapabilities(pHddCtx->hHal, &reqMsg);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303531 if (!HAL_STATUS_SUCCESS(status)) {
3532 hddLog(VOS_TRACE_LEVEL_ERROR,
3533 FL("sme_EXTScanGetCapabilities failed(err=%d)"), status);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303534 return -EINVAL;
3535 }
Padma, Santhosh Kumara1aa4a32015-06-19 19:00:46 +05303536
3537 rc = wait_for_completion_timeout(&context->response_event,
3538 msecs_to_jiffies(WLAN_WAIT_TIME_EXTSCAN));
3539 if (!rc) {
3540 hddLog(LOGE, FL("Target response timed out"));
3541 return -ETIMEDOUT;
3542 }
3543
3544 ret = wlan_hdd_send_ext_scan_capability(pHddCtx);
3545 if (ret)
3546 hddLog(LOGE, FL("Failed to send ext scan capability to user space"));
3547
3548 return ret;
3549
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05303550 EXIT();
Dino Mycle6fb96c12014-06-10 11:52:40 +05303551 return 0;
3552}
3553
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05303554static int wlan_hdd_cfg80211_extscan_get_capabilities(struct wiphy *wiphy,
3555 struct wireless_dev *wdev,
3556 const void *data, int dataLen)
3557{
3558 int ret = 0;
Dino Mycle6fb96c12014-06-10 11:52:40 +05303559
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05303560 vos_ssr_protect(__func__);
3561 ret = __wlan_hdd_cfg80211_extscan_get_capabilities(wiphy, wdev, data, dataLen);
3562 vos_ssr_unprotect(__func__);
3563
3564 return ret;
3565}
3566
3567static int __wlan_hdd_cfg80211_extscan_get_cached_results(struct wiphy *wiphy,
3568 struct wireless_dev *wdev,
3569 const void *data, int dataLen)
Dino Mycle6fb96c12014-06-10 11:52:40 +05303570{
Dino Myclee8843b32014-07-04 14:21:45 +05303571 tSirEXTScanGetCachedResultsReqParams reqMsg;
Dino Mycle6fb96c12014-06-10 11:52:40 +05303572 struct net_device *dev = wdev->netdev;
3573 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
3574 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
3575 struct nlattr
3576 *tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX + 1];
3577 eHalStatus status;
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05303578 struct hdd_ext_scan_context *context;
3579 unsigned long rc;
3580 int retval;
Dino Mycle6fb96c12014-06-10 11:52:40 +05303581
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05303582 ENTER();
3583
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05303584 if (VOS_FTM_MODE == hdd_get_conparam()) {
3585 hddLog(LOGE, FL("Command not allowed in FTM mode"));
3586 return -EINVAL;
3587 }
3588
Dino Mycle6fb96c12014-06-10 11:52:40 +05303589 status = wlan_hdd_validate_context(pHddCtx);
3590 if (0 != status)
3591 {
Dino Mycle6fb96c12014-06-10 11:52:40 +05303592 return -EINVAL;
3593 }
Dino Myclee8843b32014-07-04 14:21:45 +05303594 /* check the EXTScan Capability */
3595 if ( (TRUE != pHddCtx->cfg_ini->fEnableEXTScan) ||
Padma, Santhosh Kumar2ac54992015-10-12 18:20:58 +05303596 (TRUE != sme_IsFeatureSupportedByFW(EXTENDED_SCAN)) ||
3597 (TRUE != sme_IsFeatureSupportedByFW(EXT_SCAN_ENHANCED)))
Dino Myclee8843b32014-07-04 14:21:45 +05303598 {
3599 hddLog(VOS_TRACE_LEVEL_ERROR,
3600 FL("EXTScan not enabled/supported by Firmware"));
3601 return -EINVAL;
3602 }
3603
Dino Mycle6fb96c12014-06-10 11:52:40 +05303604 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX,
3605 data, dataLen,
3606 wlan_hdd_extscan_config_policy)) {
3607 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid ATTR"));
3608 return -EINVAL;
3609 }
3610 /* Parse and fetch request Id */
3611 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]) {
3612 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr request id failed"));
3613 return -EINVAL;
3614 }
Dino Mycle6fb96c12014-06-10 11:52:40 +05303615
Dino Myclee8843b32014-07-04 14:21:45 +05303616 reqMsg.requestId = nla_get_u32(
Dino Mycle6fb96c12014-06-10 11:52:40 +05303617 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]);
3618
Dino Myclee8843b32014-07-04 14:21:45 +05303619 hddLog(VOS_TRACE_LEVEL_INFO, FL("Req Id (%d)"), reqMsg.requestId);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303620
Dino Myclee8843b32014-07-04 14:21:45 +05303621 reqMsg.sessionId = pAdapter->sessionId;
3622 hddLog(VOS_TRACE_LEVEL_INFO, FL("Session Id (%d)"), reqMsg.sessionId);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303623
3624 /* Parse and fetch flush parameter */
3625 if (!tb
3626 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_GET_CACHED_SCAN_RESULTS_CONFIG_PARAM_FLUSH])
3627 {
3628 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr flush failed"));
3629 goto failed;
3630 }
Dino Myclee8843b32014-07-04 14:21:45 +05303631 reqMsg.flush = nla_get_u8(
Dino Mycle6fb96c12014-06-10 11:52:40 +05303632 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_GET_CACHED_SCAN_RESULTS_CONFIG_PARAM_FLUSH]);
3633
Dino Myclee8843b32014-07-04 14:21:45 +05303634 hddLog(VOS_TRACE_LEVEL_INFO, FL("Flush (%d)"), reqMsg.flush);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303635
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05303636 spin_lock(&hdd_context_lock);
3637 context = &pHddCtx->ext_scan_context;
3638 context->request_id = reqMsg.requestId;
3639 context->ignore_cached_results = false;
3640 INIT_COMPLETION(context->response_event);
3641 spin_unlock(&hdd_context_lock);
3642
Dino Myclee8843b32014-07-04 14:21:45 +05303643 status = sme_getCachedResults(pHddCtx->hHal, &reqMsg);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303644 if (!HAL_STATUS_SUCCESS(status)) {
3645 hddLog(VOS_TRACE_LEVEL_ERROR,
3646 FL("sme_getCachedResults failed(err=%d)"), status);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303647 return -EINVAL;
3648 }
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05303649
3650 rc = wait_for_completion_timeout(&context->response_event,
3651 msecs_to_jiffies(WLAN_WAIT_TIME_EXTSCAN));
3652 if (!rc) {
3653 hddLog(LOGE, FL("Target response timed out"));
3654 retval = -ETIMEDOUT;
3655 spin_lock(&hdd_context_lock);
3656 context->ignore_cached_results = true;
3657 spin_unlock(&hdd_context_lock);
3658 } else {
3659 spin_lock(&hdd_context_lock);
3660 retval = context->response_status;
3661 spin_unlock(&hdd_context_lock);
3662 }
3663
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05303664 EXIT();
Padma, Santhosh Kumare1b8a942015-08-25 12:44:24 +05303665 return retval;
Dino Mycle6fb96c12014-06-10 11:52:40 +05303666
3667failed:
Dino Mycle6fb96c12014-06-10 11:52:40 +05303668 return -EINVAL;
3669}
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05303670static int wlan_hdd_cfg80211_extscan_get_cached_results(struct wiphy *wiphy,
3671 struct wireless_dev *wdev,
3672 const void *data, int dataLen)
3673{
3674 int ret = 0;
Dino Mycle6fb96c12014-06-10 11:52:40 +05303675
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05303676 vos_ssr_protect(__func__);
3677 ret = __wlan_hdd_cfg80211_extscan_get_cached_results(wiphy, wdev, data, dataLen);
3678 vos_ssr_unprotect(__func__);
3679
3680 return ret;
3681}
3682
3683static int __wlan_hdd_cfg80211_extscan_set_bssid_hotlist(struct wiphy *wiphy,
Dino Mycle6fb96c12014-06-10 11:52:40 +05303684 struct wireless_dev *wdev,
Edhar, Mahesh Kumared8631f2015-01-20 14:31:47 +05303685 const void *data, int dataLen)
Dino Mycle6fb96c12014-06-10 11:52:40 +05303686{
3687 tpSirEXTScanSetBssidHotListReqParams pReqMsg = NULL;
3688 struct net_device *dev = wdev->netdev;
3689 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
3690 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
3691 struct nlattr
3692 *tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX + 1];
3693 struct nlattr
3694 *tb2[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX + 1];
3695 struct nlattr *apTh;
3696 eHalStatus status;
3697 tANI_U8 i = 0;
3698 int rem;
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05303699 struct hdd_ext_scan_context *context;
3700 tANI_U32 request_id;
3701 unsigned long rc;
3702 int retval;
Dino Mycle6fb96c12014-06-10 11:52:40 +05303703
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05303704 ENTER();
3705
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05303706 if (VOS_FTM_MODE == hdd_get_conparam()) {
3707 hddLog(LOGE, FL("Command not allowed in FTM mode"));
3708 return -EINVAL;
3709 }
3710
Dino Mycle6fb96c12014-06-10 11:52:40 +05303711 status = wlan_hdd_validate_context(pHddCtx);
3712 if (0 != status)
3713 {
Dino Mycle6fb96c12014-06-10 11:52:40 +05303714 return -EINVAL;
3715 }
Dino Myclee8843b32014-07-04 14:21:45 +05303716 /* check the EXTScan Capability */
3717 if ( (TRUE != pHddCtx->cfg_ini->fEnableEXTScan) ||
Padma, Santhosh Kumar2ac54992015-10-12 18:20:58 +05303718 (TRUE != sme_IsFeatureSupportedByFW(EXTENDED_SCAN)) ||
3719 (TRUE != sme_IsFeatureSupportedByFW(EXT_SCAN_ENHANCED)))
Dino Myclee8843b32014-07-04 14:21:45 +05303720 {
3721 hddLog(VOS_TRACE_LEVEL_ERROR,
3722 FL("EXTScan not enabled/supported by Firmware"));
3723 return -EINVAL;
3724 }
3725
Dino Mycle6fb96c12014-06-10 11:52:40 +05303726 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX,
3727 data, dataLen,
3728 wlan_hdd_extscan_config_policy)) {
3729 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid ATTR"));
3730 return -EINVAL;
3731 }
3732
3733 /* Parse and fetch request Id */
3734 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]) {
3735 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr request id failed"));
3736 return -EINVAL;
3737 }
Dino Mycle6fb96c12014-06-10 11:52:40 +05303738 pReqMsg = (tpSirEXTScanSetBssidHotListReqParams)
3739 vos_mem_malloc(sizeof(*pReqMsg));
3740 if (!pReqMsg) {
3741 hddLog(VOS_TRACE_LEVEL_ERROR, FL("vos_mem_malloc failed"));
3742 return -ENOMEM;
3743 }
3744
Dino Myclee8843b32014-07-04 14:21:45 +05303745
Dino Mycle6fb96c12014-06-10 11:52:40 +05303746 pReqMsg->requestId = nla_get_u32(
3747 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]);
3748 hddLog(VOS_TRACE_LEVEL_INFO, FL("Req Id (%d)"), pReqMsg->requestId);
3749
3750 /* Parse and fetch number of APs */
3751 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BSSID_HOTLIST_PARAMS_NUM_AP]) {
3752 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr number of AP failed"));
3753 goto fail;
3754 }
3755
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05303756 /* Parse and fetch lost ap sample size */
3757 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BSSID_HOTLIST_PARAMS_LOST_AP_SAMPLE_SIZE]) {
3758 hddLog(LOGE, FL("attr lost ap sample size failed"));
3759 goto fail;
3760 }
3761
3762 pReqMsg->lostBssidSampleSize = nla_get_u32(
3763 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BSSID_HOTLIST_PARAMS_LOST_AP_SAMPLE_SIZE]);
3764 hddLog(LOG1, FL("Lost ap sample size %d"), pReqMsg->lostBssidSampleSize);
3765
Dino Mycle6fb96c12014-06-10 11:52:40 +05303766 pReqMsg->sessionId = pAdapter->sessionId;
3767 hddLog(VOS_TRACE_LEVEL_INFO, FL("Session Id (%d)"), pReqMsg->sessionId);
3768
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05303769 pReqMsg->numBssid = nla_get_u32(
Dino Mycle6fb96c12014-06-10 11:52:40 +05303770 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BSSID_HOTLIST_PARAMS_NUM_AP]);
Hanumanth Reddy Pothula8e188402017-01-27 16:43:45 +05303771 if (pReqMsg->numBssid > WLAN_EXTSCAN_MAX_HOTLIST_APS) {
3772 hddLog(LOGE, FL("Number of AP: %u exceeds max: %u"),
3773 pReqMsg->numBssid, WLAN_EXTSCAN_MAX_HOTLIST_APS);
3774 goto fail;
3775 }
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05303776 hddLog(VOS_TRACE_LEVEL_INFO, FL("Number of AP (%d)"), pReqMsg->numBssid);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303777
3778 nla_for_each_nested(apTh,
3779 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM], rem) {
Hanumanth Reddy Pothula8e188402017-01-27 16:43:45 +05303780 if (i == pReqMsg->numBssid) {
3781 hddLog(LOGW, FL("Ignoring excess AP"));
3782 break;
3783 }
3784
Dino Mycle6fb96c12014-06-10 11:52:40 +05303785 if(nla_parse(tb2, QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX,
3786 nla_data(apTh), nla_len(apTh),
3787 NULL)) {
3788 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla_parse failed"));
3789 goto fail;
3790 }
3791
3792 /* Parse and fetch MAC address */
3793 if (!tb2[QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_BSSID]) {
3794 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr mac address failed"));
3795 goto fail;
3796 }
3797 memcpy(pReqMsg->ap[i].bssid, nla_data(
3798 tb2[QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_BSSID]),
3799 sizeof(tSirMacAddr));
3800 hddLog(VOS_TRACE_LEVEL_INFO, FL("BSSID: %pM "), pReqMsg->ap[i].bssid);
3801
3802 /* Parse and fetch low RSSI */
3803 if (!tb2[QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_RSSI_LOW]) {
3804 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr low RSSI failed"));
3805 goto fail;
3806 }
3807 pReqMsg->ap[i].low = nla_get_s32(
3808 tb2[QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_RSSI_LOW]);
3809 hddLog(VOS_TRACE_LEVEL_INFO, FL("RSSI low (%d)"), pReqMsg->ap[i].low);
3810
3811 /* Parse and fetch high RSSI */
3812 if (!tb2[QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_RSSI_HIGH]) {
3813 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr high RSSI failed"));
3814 goto fail;
3815 }
3816 pReqMsg->ap[i].high = nla_get_s32(
3817 tb2[QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_RSSI_HIGH]);
3818 hddLog(VOS_TRACE_LEVEL_INFO, FL("RSSI High (%d)"),
3819 pReqMsg->ap[i].high);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303820 i++;
3821 }
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05303822
Hanumanth Reddy Pothula8e188402017-01-27 16:43:45 +05303823 if (i < pReqMsg->numBssid) {
3824 hddLog(LOGW, FL("Number of AP %u less than expected %u"),
3825 i, pReqMsg->numBssid);
3826 pReqMsg->numBssid = i;
3827 }
3828
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05303829 context = &pHddCtx->ext_scan_context;
3830 spin_lock(&hdd_context_lock);
3831 INIT_COMPLETION(context->response_event);
3832 context->request_id = request_id = pReqMsg->requestId;
3833 spin_unlock(&hdd_context_lock);
3834
Dino Mycle6fb96c12014-06-10 11:52:40 +05303835 status = sme_SetBssHotlist(pHddCtx->hHal, pReqMsg);
3836 if (!HAL_STATUS_SUCCESS(status)) {
3837 hddLog(VOS_TRACE_LEVEL_ERROR,
3838 FL("sme_SetBssHotlist failed(err=%d)"), status);
3839 vos_mem_free(pReqMsg);
3840 return -EINVAL;
3841 }
3842
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05303843 /* request was sent -- wait for the response */
3844 rc = wait_for_completion_timeout(&context->response_event,
3845 msecs_to_jiffies(WLAN_WAIT_TIME_EXTSCAN));
3846
3847 if (!rc) {
3848 hddLog(LOGE, FL("sme_SetBssHotlist timed out"));
3849 retval = -ETIMEDOUT;
3850 } else {
3851 spin_lock(&hdd_context_lock);
3852 if (context->request_id == request_id)
3853 retval = context->response_status;
3854 else
3855 retval = -EINVAL;
3856 spin_unlock(&hdd_context_lock);
3857 }
3858
Dino Myclee8843b32014-07-04 14:21:45 +05303859 vos_mem_free(pReqMsg);
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05303860 EXIT();
Padma, Santhosh Kumar37f4fd12015-08-19 14:37:37 +05303861 return retval;
Dino Mycle6fb96c12014-06-10 11:52:40 +05303862
3863fail:
3864 vos_mem_free(pReqMsg);
3865 return -EINVAL;
3866}
3867
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05303868static int wlan_hdd_cfg80211_extscan_set_bssid_hotlist(struct wiphy *wiphy,
3869 struct wireless_dev *wdev,
3870 const void *data, int dataLen)
3871{
3872 int ret = 0;
3873
3874 vos_ssr_protect(__func__);
3875 ret = __wlan_hdd_cfg80211_extscan_set_bssid_hotlist(wiphy, wdev, data,
3876 dataLen);
3877 vos_ssr_unprotect(__func__);
3878
3879 return ret;
3880}
3881
Padma, Santhosh Kumar9acee012015-08-21 19:58:01 +05303882/*
3883 * define short names for the global vendor params
3884 * used by wlan_hdd_cfg80211_extscan_set_ssid_hotlist()
3885 */
3886#define PARAM_MAX \
3887QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX
3888#define PARAM_REQUEST_ID \
3889QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID
3890#define PARAMS_LOST_SSID_SAMPLE_SIZE \
3891QCA_WLAN_VENDOR_ATTR_EXTSCAN_SSID_HOTLIST_PARAMS_LOST_SSID_SAMPLE_SIZE
3892#define PARAMS_NUM_SSID \
3893QCA_WLAN_VENDOR_ATTR_EXTSCAN_SSID_HOTLIST_PARAMS_NUM_SSID
3894#define THRESHOLD_PARAM \
3895QCA_WLAN_VENDOR_ATTR_EXTSCAN_SSID_THRESHOLD_PARAM
3896#define PARAM_SSID \
3897QCA_WLAN_VENDOR_ATTR_EXTSCAN_SSID_THRESHOLD_PARAM_SSID
3898#define PARAM_BAND \
3899QCA_WLAN_VENDOR_ATTR_EXTSCAN_SSID_THRESHOLD_PARAM_BAND
3900#define PARAM_RSSI_LOW \
3901QCA_WLAN_VENDOR_ATTR_EXTSCAN_SSID_THRESHOLD_PARAM_RSSI_LOW
3902#define PARAM_RSSI_HIGH \
3903QCA_WLAN_VENDOR_ATTR_EXTSCAN_SSID_THRESHOLD_PARAM_RSSI_HIGH
3904
3905/**
3906 * __wlan_hdd_cfg80211_extscan_set_ssid_hotlist() - set ssid hot list
3907 * @wiphy: Pointer to wireless phy
3908 * @wdev: Pointer to wireless device
3909 * @data: Pointer to data
3910 * @data_len: Data length
3911 *
3912 * Return: 0 on success, negative errno on failure
3913 */
3914static int
3915__wlan_hdd_cfg80211_extscan_set_ssid_hotlist(struct wiphy *wiphy,
3916 struct wireless_dev *wdev,
3917 const void *data,
3918 int data_len)
3919{
3920 tSirEXTScanSetSsidHotListReqParams *request;
3921 struct net_device *dev = wdev->netdev;
3922 hdd_adapter_t *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
3923 hdd_context_t *hdd_ctx = wiphy_priv(wiphy);
3924 struct nlattr *tb[PARAM_MAX + 1];
3925 struct nlattr *tb2[PARAM_MAX + 1];
3926 struct nlattr *ssids;
3927 struct hdd_ext_scan_context *context;
3928 uint32_t request_id;
3929 char ssid_string[SIR_MAC_MAX_SSID_LENGTH + 1] = {'\0'};
3930 int ssid_len;
Anurag Chouhand64d5232016-08-29 17:01:38 +05303931 int ssid_length;
Padma, Santhosh Kumar9acee012015-08-21 19:58:01 +05303932 eHalStatus status;
3933 int i, rem, retval;
3934 unsigned long rc;
3935
3936 ENTER();
3937
3938 if (VOS_FTM_MODE == hdd_get_conparam()) {
3939 hddLog(LOGE, FL("Command not allowed in FTM mode"));
3940 return -EINVAL;
3941 }
3942
3943 retval = wlan_hdd_validate_context(hdd_ctx);
3944 if (0 != retval) {
3945 hddLog(LOGE, FL("HDD context is not valid"));
3946 return -EINVAL;
3947 }
3948
3949 /* check the EXTScan Capability */
3950 if ( (TRUE != hdd_ctx->cfg_ini->fEnableEXTScan) ||
Padma, Santhosh Kumar2ac54992015-10-12 18:20:58 +05303951 (TRUE != sme_IsFeatureSupportedByFW(EXTENDED_SCAN)) ||
3952 (TRUE != sme_IsFeatureSupportedByFW(EXT_SCAN_ENHANCED)))
Padma, Santhosh Kumar9acee012015-08-21 19:58:01 +05303953 {
3954 hddLog(VOS_TRACE_LEVEL_ERROR,
3955 FL("EXTScan not enabled/supported by Firmware"));
3956 return -EINVAL;
3957 }
3958
3959 if (nla_parse(tb, PARAM_MAX,
3960 data, data_len,
3961 wlan_hdd_extscan_config_policy)) {
3962 hddLog(LOGE, FL("Invalid ATTR"));
3963 return -EINVAL;
3964 }
3965
3966 request = vos_mem_malloc(sizeof(*request));
3967 if (!request) {
3968 hddLog(LOGE, FL("vos_mem_malloc failed"));
3969 return -ENOMEM;
3970 }
3971
3972 /* Parse and fetch request Id */
3973 if (!tb[PARAM_REQUEST_ID]) {
3974 hddLog(LOGE, FL("attr request id failed"));
3975 goto fail;
3976 }
3977
3978 request->request_id = nla_get_u32(tb[PARAM_REQUEST_ID]);
3979 hddLog(LOG1, FL("Request Id %d"), request->request_id);
3980
3981 /* Parse and fetch lost SSID sample size */
3982 if (!tb[PARAMS_LOST_SSID_SAMPLE_SIZE]) {
3983 hddLog(LOGE, FL("attr number of Ssid failed"));
3984 goto fail;
3985 }
3986 request->lost_ssid_sample_size =
3987 nla_get_u32(tb[PARAMS_LOST_SSID_SAMPLE_SIZE]);
3988 hddLog(LOG1, FL("Lost SSID Sample Size %d"),
3989 request->lost_ssid_sample_size);
3990
3991 /* Parse and fetch number of hotlist SSID */
3992 if (!tb[PARAMS_NUM_SSID]) {
3993 hddLog(LOGE, FL("attr number of Ssid failed"));
3994 goto fail;
3995 }
3996 request->ssid_count = nla_get_u32(tb[PARAMS_NUM_SSID]);
3997 hddLog(LOG1, FL("Number of SSID %d"), request->ssid_count);
3998
3999 request->session_id = adapter->sessionId;
4000 hddLog(LOG1, FL("Session Id (%d)"), request->session_id);
4001
4002 i = 0;
4003 nla_for_each_nested(ssids, tb[THRESHOLD_PARAM], rem) {
4004 if (i >= WLAN_EXTSCAN_MAX_HOTLIST_SSIDS) {
4005 hddLog(LOGE,
4006 FL("Too Many SSIDs, %d exceeds %d"),
4007 i, WLAN_EXTSCAN_MAX_HOTLIST_SSIDS);
4008 break;
4009 }
4010 if (nla_parse(tb2, PARAM_MAX,
4011 nla_data(ssids), nla_len(ssids),
4012 wlan_hdd_extscan_config_policy)) {
4013 hddLog(LOGE, FL("nla_parse failed"));
4014 goto fail;
4015 }
4016
4017 /* Parse and fetch SSID */
4018 if (!tb2[PARAM_SSID]) {
4019 hddLog(LOGE, FL("attr ssid failed"));
4020 goto fail;
4021 }
Anurag Chouhand64d5232016-08-29 17:01:38 +05304022 ssid_length = nla_strlcpy(ssid_string, tb2[PARAM_SSID],
4023 sizeof(ssid_string));
Padma, Santhosh Kumar9acee012015-08-21 19:58:01 +05304024 hddLog(LOG1, FL("SSID %s"),
4025 ssid_string);
4026 ssid_len = strlen(ssid_string);
SaidiReddy Yenugae4f6f372016-12-06 16:11:39 +05304027 if (ssid_length >= SIR_MAC_MAX_SSID_LENGTH) {
Anurag Chouhand64d5232016-08-29 17:01:38 +05304028 hddLog(LOGE, FL("Invalid ssid length"));
4029 goto fail;
4030 }
Padma, Santhosh Kumar9acee012015-08-21 19:58:01 +05304031 memcpy(request->ssid[i].ssid.ssId, ssid_string, ssid_len);
4032 request->ssid[i].ssid.length = ssid_len;
4033 request->ssid[i].ssid.ssId[ssid_len] = '\0';
4034 hddLog(LOG1, FL("After copying SSID %s"),
4035 request->ssid[i].ssid.ssId);
4036 hddLog(LOG1, FL("After copying length: %d"),
4037 ssid_len);
4038
4039 /* Parse and fetch low RSSI */
4040 if (!tb2[PARAM_BAND]) {
4041 hddLog(LOGE, FL("attr band failed"));
4042 goto fail;
4043 }
4044 request->ssid[i].band = nla_get_u8(tb2[PARAM_BAND]);
4045 hddLog(LOG1, FL("band %d"), request->ssid[i].band);
4046
4047 /* Parse and fetch low RSSI */
4048 if (!tb2[PARAM_RSSI_LOW]) {
4049 hddLog(LOGE, FL("attr low RSSI failed"));
4050 goto fail;
4051 }
4052 request->ssid[i].rssi_low = nla_get_s32(tb2[PARAM_RSSI_LOW]);
4053 hddLog(LOG1, FL("RSSI low %d"), request->ssid[i].rssi_low);
4054
4055 /* Parse and fetch high RSSI */
4056 if (!tb2[PARAM_RSSI_HIGH]) {
4057 hddLog(LOGE, FL("attr high RSSI failed"));
4058 goto fail;
4059 }
4060 request->ssid[i].rssi_high = nla_get_u32(tb2[PARAM_RSSI_HIGH]);
4061 hddLog(LOG1, FL("RSSI high %d"), request->ssid[i].rssi_high);
4062 i++;
4063 }
4064
4065 context = &hdd_ctx->ext_scan_context;
4066 spin_lock(&hdd_context_lock);
4067 INIT_COMPLETION(context->response_event);
4068 context->request_id = request_id = request->request_id;
4069 spin_unlock(&hdd_context_lock);
4070
4071 status = sme_set_ssid_hotlist(hdd_ctx->hHal, request);
4072 if (!HAL_STATUS_SUCCESS(status)) {
4073 hddLog(LOGE,
4074 FL("sme_set_ssid_hotlist failed(err=%d)"), status);
4075 goto fail;
4076 }
4077
4078 vos_mem_free(request);
4079
4080 /* request was sent -- wait for the response */
4081 rc = wait_for_completion_timeout(&context->response_event,
4082 msecs_to_jiffies
4083 (WLAN_WAIT_TIME_EXTSCAN));
4084 if (!rc) {
4085 hddLog(LOGE, FL("sme_set_ssid_hotlist timed out"));
4086 retval = -ETIMEDOUT;
4087 } else {
4088 spin_lock(&hdd_context_lock);
4089 if (context->request_id == request_id)
4090 retval = context->response_status;
4091 else
4092 retval = -EINVAL;
4093 spin_unlock(&hdd_context_lock);
4094 }
4095
4096 return retval;
4097
4098fail:
4099 vos_mem_free(request);
4100 return -EINVAL;
4101}
4102
4103/*
4104 * done with short names for the global vendor params
4105 * used by wlan_hdd_cfg80211_extscan_set_ssid_hotlist()
4106 */
4107#undef PARAM_MAX
4108#undef PARAM_REQUEST_ID
4109#undef PARAMS_NUM_SSID
4110#undef THRESHOLD_PARAM
4111#undef PARAM_SSID
4112#undef PARAM_BAND
4113#undef PARAM_RSSI_LOW
4114#undef PARAM_RSSI_HIGH
4115
4116static int wlan_hdd_cfg80211_extscan_set_ssid_hotlist(struct wiphy *wiphy,
4117 struct wireless_dev *wdev,
4118 const void *data, int dataLen)
4119{
4120 int ret = 0;
4121
4122 vos_ssr_protect(__func__);
4123 ret = __wlan_hdd_cfg80211_extscan_set_ssid_hotlist(wiphy, wdev, data,
4124 dataLen);
4125 vos_ssr_unprotect(__func__);
4126
4127 return ret;
4128}
4129
4130static int
4131__wlan_hdd_cfg80211_extscan_reset_ssid_hotlist(struct wiphy *wiphy,
4132 struct wireless_dev *wdev,
4133 const void *data,
4134 int data_len)
4135{
4136 tSirEXTScanResetSsidHotlistReqParams request;
4137 struct net_device *dev = wdev->netdev;
4138 hdd_adapter_t *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
4139 hdd_context_t *hdd_ctx = wiphy_priv(wiphy);
4140 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX + 1];
4141 struct hdd_ext_scan_context *context;
4142 uint32_t request_id;
4143 eHalStatus status;
4144 int retval;
4145 unsigned long rc;
4146
4147 ENTER();
4148
4149 if (VOS_FTM_MODE == hdd_get_conparam()) {
4150 hddLog(LOGE, FL("Command not allowed in FTM mode"));
4151 return -EINVAL;
4152 }
4153
4154 retval = wlan_hdd_validate_context(hdd_ctx);
4155 if (0 != retval) {
4156 hddLog(LOGE, FL("HDD context is not valid"));
4157 return -EINVAL;
4158 }
4159
4160 /* check the EXTScan Capability */
4161 if ( (TRUE != hdd_ctx->cfg_ini->fEnableEXTScan) ||
Padma, Santhosh Kumar2ac54992015-10-12 18:20:58 +05304162 (TRUE != sme_IsFeatureSupportedByFW(EXTENDED_SCAN)) ||
4163 (TRUE != sme_IsFeatureSupportedByFW(EXT_SCAN_ENHANCED)))
Padma, Santhosh Kumar9acee012015-08-21 19:58:01 +05304164 {
4165 hddLog(LOGE,
4166 FL("EXTScan not enabled/supported by Firmware"));
4167 return -EINVAL;
4168 }
4169
4170 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX,
4171 data, data_len,
4172 wlan_hdd_extscan_config_policy)) {
4173 hddLog(LOGE, FL("Invalid ATTR"));
4174 return -EINVAL;
4175 }
4176
4177 /* Parse and fetch request Id */
4178 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]) {
4179 hddLog(LOGE, FL("attr request id failed"));
4180 return -EINVAL;
4181 }
4182
4183 request.requestId = nla_get_u32(
4184 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]);
4185 request.sessionId = adapter->sessionId;
4186 hddLog(LOG1, FL("Request Id %d Session Id %d"), request.requestId,
4187 request.sessionId);
4188
4189 context = &hdd_ctx->ext_scan_context;
4190 spin_lock(&hdd_context_lock);
4191 INIT_COMPLETION(context->response_event);
4192 context->request_id = request_id = request.requestId;
4193 spin_unlock(&hdd_context_lock);
4194
4195 status = sme_reset_ssid_hotlist(hdd_ctx->hHal, &request);
4196 if (!HAL_STATUS_SUCCESS(status)) {
4197 hddLog(LOGE,
4198 FL("sme_reset_ssid_hotlist failed(err=%d)"), status);
4199 return -EINVAL;
4200 }
4201
4202 /* request was sent -- wait for the response */
4203 rc = wait_for_completion_timeout(&context->response_event,
4204 msecs_to_jiffies
4205 (WLAN_WAIT_TIME_EXTSCAN));
4206 if (!rc) {
4207 hddLog(LOGE, FL("sme_reset_ssid_hotlist timed out"));
4208 retval = -ETIMEDOUT;
4209 } else {
4210 spin_lock(&hdd_context_lock);
4211 if (context->request_id == request_id)
4212 retval = context->response_status;
4213 else
4214 retval = -EINVAL;
4215 spin_unlock(&hdd_context_lock);
4216 }
4217
4218 return retval;
4219}
4220
4221static int
4222wlan_hdd_cfg80211_extscan_reset_ssid_hotlist(struct wiphy *wiphy,
4223 struct wireless_dev *wdev,
4224 const void *data,
4225 int data_len)
4226{
4227 int ret;
4228
4229 vos_ssr_protect(__func__);
4230 ret = __wlan_hdd_cfg80211_extscan_reset_ssid_hotlist(wiphy, wdev,
4231 data, data_len);
4232 vos_ssr_unprotect(__func__);
4233
4234 return ret;
4235}
4236
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05304237static int __wlan_hdd_cfg80211_extscan_get_valid_channels(struct wiphy *wiphy,
Dino Mycle6fb96c12014-06-10 11:52:40 +05304238 struct wireless_dev *wdev,
Jeff Johnson393c2702014-12-16 11:09:35 +05304239 const void *data, int dataLen)
Dino Mycle6fb96c12014-06-10 11:52:40 +05304240{
Agrawal Ashish16abf782016-08-18 22:42:59 +05304241 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
4242 struct net_device *dev = wdev->netdev;
4243 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
4244 uint32_t chan_list[WNI_CFG_VALID_CHANNEL_LIST_LEN] = {0};
4245 uint8_t num_channels = 0;
4246 uint8_t num_chan_new = 0;
4247 uint8_t buf[256] = {0};
Dino Mycle6fb96c12014-06-10 11:52:40 +05304248 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX + 1];
Padma, Santhosh Kumar387aa9c2015-06-19 15:39:37 +05304249 tANI_U32 requestId, maxChannels;
Dino Mycle6fb96c12014-06-10 11:52:40 +05304250 tWifiBand wifiBand;
4251 eHalStatus status;
4252 struct sk_buff *replySkb;
Agrawal Ashish16abf782016-08-18 22:42:59 +05304253 tANI_U8 i,j,k;
4254 int ret,len = 0;;
Dino Mycle6fb96c12014-06-10 11:52:40 +05304255
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05304256 ENTER();
4257
Dino Mycle6fb96c12014-06-10 11:52:40 +05304258 status = wlan_hdd_validate_context(pHddCtx);
4259 if (0 != status)
4260 {
Dino Mycle6fb96c12014-06-10 11:52:40 +05304261 return -EINVAL;
4262 }
Dino Myclee8843b32014-07-04 14:21:45 +05304263
Dino Mycle6fb96c12014-06-10 11:52:40 +05304264 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX,
4265 data, dataLen,
4266 wlan_hdd_extscan_config_policy)) {
4267 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid ATTR"));
4268 return -EINVAL;
4269 }
4270
4271 /* Parse and fetch request Id */
4272 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]) {
4273 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr request id failed"));
4274 return -EINVAL;
4275 }
4276 requestId = nla_get_u32(
4277 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]);
4278 hddLog(VOS_TRACE_LEVEL_INFO, FL("Req Id (%d)"), requestId);
4279
4280 /* Parse and fetch wifi band */
4281 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_GET_VALID_CHANNELS_CONFIG_PARAM_WIFI_BAND])
4282 {
4283 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr wifi band failed"));
4284 return -EINVAL;
4285 }
4286 wifiBand = nla_get_u32(
4287 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_GET_VALID_CHANNELS_CONFIG_PARAM_WIFI_BAND]);
4288 hddLog(VOS_TRACE_LEVEL_INFO, FL("Wifi band (%d)"), wifiBand);
4289
Padma, Santhosh Kumar387aa9c2015-06-19 15:39:37 +05304290 /* Parse and fetch max channels */
4291 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_GET_VALID_CHANNELS_CONFIG_PARAM_MAX_CHANNELS])
4292 {
4293 hddLog(LOGE, FL("attr max channels failed"));
4294 return -EINVAL;
4295 }
4296 maxChannels = nla_get_u32(
4297 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_GET_VALID_CHANNELS_CONFIG_PARAM_MAX_CHANNELS]);
4298 hddLog(VOS_TRACE_LEVEL_INFO, FL("Max channels %d"), maxChannels);
4299
Dino Mycle6fb96c12014-06-10 11:52:40 +05304300 status = sme_GetValidChannelsByBand((tHalHandle)(pHddCtx->hHal),
Agrawal Ashish16abf782016-08-18 22:42:59 +05304301 wifiBand, chan_list,
4302 &num_channels);
Dino Mycle6fb96c12014-06-10 11:52:40 +05304303 if (eHAL_STATUS_SUCCESS != status) {
4304 hddLog(VOS_TRACE_LEVEL_ERROR,
4305 FL("sme_GetValidChannelsByBand failed (err=%d)"), status);
4306 return -EINVAL;
4307 }
Padma, Santhosh Kumar387aa9c2015-06-19 15:39:37 +05304308
Agrawal Ashish16abf782016-08-18 22:42:59 +05304309 num_channels = VOS_MIN(num_channels, maxChannels);
4310 num_chan_new = num_channels;
4311 /* remove the indoor only channels if iface is SAP */
4312 if (WLAN_HDD_SOFTAP == pAdapter->device_mode)
4313 {
4314 num_chan_new = 0;
4315 for (i = 0; i < num_channels; i++)
4316 for (j = 0; j < IEEE80211_NUM_BANDS; j++) {
4317 if (wiphy->bands[j] == NULL)
4318 continue;
4319 for (k = 0; k < wiphy->bands[j]->n_channels; k++) {
4320 if ((chan_list[i] ==
4321 wiphy->bands[j]->channels[k].center_freq) &&
4322 (!(wiphy->bands[j]->channels[k].flags &
4323 IEEE80211_CHAN_INDOOR_ONLY))) {
4324 chan_list[num_chan_new] = chan_list[i];
4325 num_chan_new++;
4326 }
4327 }
4328 }
4329 }
Padma, Santhosh Kumar387aa9c2015-06-19 15:39:37 +05304330
Agrawal Ashish16abf782016-08-18 22:42:59 +05304331 hddLog(LOG1, FL("Number of channels: %d"), num_chan_new);
4332 for (i = 0; i < num_chan_new; i++)
4333 len += scnprintf(buf + len, sizeof(buf) - len, "%u ", chan_list[i]);
4334 hddLog(LOG1, "Channels: %s", buf);
Dino Mycle6fb96c12014-06-10 11:52:40 +05304335
4336 replySkb = cfg80211_vendor_cmd_alloc_reply_skb(wiphy, sizeof(u32) +
Agrawal Ashish16abf782016-08-18 22:42:59 +05304337 sizeof(u32) * num_chan_new +
Dino Mycle6fb96c12014-06-10 11:52:40 +05304338 NLMSG_HDRLEN);
4339
4340 if (!replySkb) {
4341 hddLog(VOS_TRACE_LEVEL_ERROR,
4342 FL("valid channels: buffer alloc fail"));
4343 return -EINVAL;
4344 }
4345 if (nla_put_u32(replySkb,
4346 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_NUM_CHANNELS,
Agrawal Ashish16abf782016-08-18 22:42:59 +05304347 num_chan_new) ||
Dino Mycle6fb96c12014-06-10 11:52:40 +05304348 nla_put(replySkb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_CHANNELS,
Agrawal Ashish16abf782016-08-18 22:42:59 +05304349 sizeof(u32) * num_chan_new, chan_list)) {
Dino Mycle6fb96c12014-06-10 11:52:40 +05304350
4351 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla put fail"));
4352 kfree_skb(replySkb);
4353 return -EINVAL;
4354 }
4355
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05304356 ret = cfg80211_vendor_cmd_reply(replySkb);
4357
4358 EXIT();
4359 return ret;
Dino Mycle6fb96c12014-06-10 11:52:40 +05304360}
4361
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05304362static int wlan_hdd_cfg80211_extscan_get_valid_channels(struct wiphy *wiphy,
4363 struct wireless_dev *wdev,
4364 const void *data, int dataLen)
4365{
4366 int ret = 0;
4367
4368 vos_ssr_protect(__func__);
4369 ret = __wlan_hdd_cfg80211_extscan_get_valid_channels(wiphy, wdev, data,
4370 dataLen);
4371 vos_ssr_unprotect(__func__);
4372
4373 return ret;
4374}
4375
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05304376static int hdd_extscan_start_fill_bucket_channel_spec(
4377 hdd_context_t *pHddCtx,
4378 tpSirEXTScanStartReqParams pReqMsg,
4379 struct nlattr **tb)
4380{
4381 struct nlattr *bucket[
4382 QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX + 1];
4383 struct nlattr *channel[
4384 QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX + 1];
4385 struct nlattr *buckets;
4386 struct nlattr *channels;
4387 int rem1, rem2;
4388 eHalStatus status;
4389 tANI_U8 bktIndex, j, numChannels;
4390 tANI_U32 chanList[WNI_CFG_VALID_CHANNEL_LIST_LEN] = {0};
4391 tANI_U32 passive_max_chn_time, active_max_chn_time;
4392
4393 bktIndex = 0;
4394
4395 nla_for_each_nested(buckets,
4396 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC], rem1) {
4397 if (nla_parse(bucket,
4398 QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX,
4399 nla_data(buckets), nla_len(buckets), NULL)) {
4400 hddLog(LOGE, FL("nla_parse failed"));
4401 return -EINVAL;
4402 }
4403
4404 /* Parse and fetch bucket spec */
4405 if (!bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_INDEX]) {
4406 hddLog(LOGE, FL("attr bucket index failed"));
4407 return -EINVAL;
4408 }
4409 pReqMsg->buckets[bktIndex].bucket = nla_get_u8(
4410 bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_INDEX]);
4411 hddLog(LOG1, FL("Bucket spec Index %d"),
4412 pReqMsg->buckets[bktIndex].bucket);
4413
4414 /* Parse and fetch wifi band */
4415 if (!bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_BAND]) {
4416 hddLog(LOGE, FL("attr wifi band failed"));
4417 return -EINVAL;
4418 }
4419 pReqMsg->buckets[bktIndex].band = nla_get_u8(
4420 bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_BAND]);
4421 hddLog(LOG1, FL("Wifi band %d"),
4422 pReqMsg->buckets[bktIndex].band);
4423
4424 /* Parse and fetch period */
4425 if (!bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_PERIOD]) {
4426 hddLog(LOGE, FL("attr period failed"));
4427 return -EINVAL;
4428 }
4429 pReqMsg->buckets[bktIndex].period = nla_get_u32(
4430 bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_PERIOD]);
4431 hddLog(LOG1, FL("period %d"),
4432 pReqMsg->buckets[bktIndex].period);
4433
4434 /* Parse and fetch report events */
4435 if (!bucket[
4436 QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_REPORT_EVENTS]) {
4437 hddLog(LOGE, FL("attr report events failed"));
4438 return -EINVAL;
4439 }
4440 pReqMsg->buckets[bktIndex].reportEvents = nla_get_u8(
4441 bucket[
4442 QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_REPORT_EVENTS]);
4443 hddLog(LOG1, FL("report events %d"),
4444 pReqMsg->buckets[bktIndex].reportEvents);
4445
4446 /* Parse and fetch max period */
4447 if (!bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_MAX_PERIOD]) {
4448 hddLog(LOGE, FL("attr max period failed"));
4449 return -EINVAL;
4450 }
4451 pReqMsg->buckets[bktIndex].max_period = nla_get_u32(
4452 bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_MAX_PERIOD]);
4453 hddLog(LOG1, FL("max period %u"),
4454 pReqMsg->buckets[bktIndex].max_period);
4455
4456 /* Parse and fetch exponent */
4457 if (!bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_EXPONENT]) {
4458 hddLog(LOGE, FL("attr exponent failed"));
4459 return -EINVAL;
4460 }
4461 pReqMsg->buckets[bktIndex].exponent = nla_get_u32(
4462 bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_EXPONENT]);
4463 hddLog(LOG1, FL("exponent %u"),
4464 pReqMsg->buckets[bktIndex].exponent);
4465
4466 /* Parse and fetch step count */
4467 if (!bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_STEP_COUNT]) {
4468 hddLog(LOGE, FL("attr step count failed"));
4469 return -EINVAL;
4470 }
4471 pReqMsg->buckets[bktIndex].step_count = nla_get_u32(
4472 bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_STEP_COUNT]);
4473 hddLog(LOG1, FL("Step count %u"),
4474 pReqMsg->buckets[bktIndex].step_count);
4475
4476 ccmCfgGetInt(pHddCtx->hHal, WNI_CFG_PASSIVE_MAXIMUM_CHANNEL_TIME, &passive_max_chn_time);
4477 ccmCfgGetInt(pHddCtx->hHal, WNI_CFG_PASSIVE_MAXIMUM_CHANNEL_TIME, &active_max_chn_time);
4478
4479 /* Framework shall pass the channel list if the input WiFi band is
4480 * WIFI_BAND_UNSPECIFIED.
4481 * If the input WiFi band is specified (any value other than
4482 * WIFI_BAND_UNSPECIFIED) then driver populates the channel list
4483 */
4484 if (pReqMsg->buckets[bktIndex].band != WIFI_BAND_UNSPECIFIED) {
4485 numChannels = 0;
4486 hddLog(LOG1, "WiFi band is specified, driver to fill channel list");
4487 status = sme_GetValidChannelsByBand(pHddCtx->hHal,
4488 pReqMsg->buckets[bktIndex].band,
4489 chanList, &numChannels);
4490 if (!HAL_STATUS_SUCCESS(status)) {
4491 hddLog(LOGE,
4492 FL("sme_GetValidChannelsByBand failed (err=%d)"),
4493 status);
4494 return -EINVAL;
4495 }
4496
4497 pReqMsg->buckets[bktIndex].numChannels =
4498 VOS_MIN(numChannels, WLAN_EXTSCAN_MAX_CHANNELS);
4499 hddLog(LOG1, FL("Num channels %d"),
4500 pReqMsg->buckets[bktIndex].numChannels);
4501
4502 for (j = 0; j < pReqMsg->buckets[bktIndex].numChannels;
4503 j++) {
4504 pReqMsg->buckets[bktIndex].channels[j].channel =
4505 chanList[j];
4506 pReqMsg->buckets[bktIndex].channels[j].
4507 chnlClass = 0;
4508 if (CSR_IS_CHANNEL_DFS(
4509 vos_freq_to_chan(chanList[j]))) {
4510 pReqMsg->buckets[bktIndex].channels[j].
4511 passive = 1;
4512 pReqMsg->buckets[bktIndex].channels[j].
4513 dwellTimeMs = passive_max_chn_time;
4514 } else {
4515 pReqMsg->buckets[bktIndex].channels[j].
4516 passive = 0;
4517 pReqMsg->buckets[bktIndex].channels[j].
4518 dwellTimeMs = active_max_chn_time;
4519 }
4520
4521 hddLog(LOG1,
4522 "Channel %u Passive %u Dwell time %u ms",
4523 pReqMsg->buckets[bktIndex].channels[j].channel,
4524 pReqMsg->buckets[bktIndex].channels[j].passive,
4525 pReqMsg->buckets[bktIndex].channels[j].dwellTimeMs);
4526 }
4527
4528 bktIndex++;
4529 continue;
4530 }
4531
4532 /* Parse and fetch number of channels */
4533 if (!bucket[
4534 QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_NUM_CHANNEL_SPECS]) {
4535 hddLog(LOGE, FL("attr num channels failed"));
4536 return -EINVAL;
4537 }
4538
4539 pReqMsg->buckets[bktIndex].numChannels =
4540 nla_get_u32(bucket[
4541 QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_NUM_CHANNEL_SPECS]);
4542 hddLog(LOG1, FL("num channels %d"),
4543 pReqMsg->buckets[bktIndex].numChannels);
4544
4545 if (!bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_CHANNEL_SPEC]) {
4546 hddLog(LOGE, FL("attr channel spec failed"));
4547 return -EINVAL;
4548 }
4549
4550 j = 0;
4551 nla_for_each_nested(channels,
4552 bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_CHANNEL_SPEC], rem2) {
4553 if (nla_parse(channel,
4554 QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX,
4555 nla_data(channels), nla_len(channels),
4556 wlan_hdd_extscan_config_policy)) {
4557 hddLog(LOGE, FL("nla_parse failed"));
4558 return -EINVAL;
4559 }
4560
4561 /* Parse and fetch channel */
4562 if (!channel[
4563 QCA_WLAN_VENDOR_ATTR_EXTSCAN_CHANNEL_SPEC_CHANNEL]) {
4564 hddLog(LOGE, FL("attr channel failed"));
4565 return -EINVAL;
4566 }
4567 pReqMsg->buckets[bktIndex].channels[j].channel =
4568 nla_get_u32(channel[
4569 QCA_WLAN_VENDOR_ATTR_EXTSCAN_CHANNEL_SPEC_CHANNEL]);
4570 hddLog(LOG1, FL("channel %u"),
4571 pReqMsg->buckets[bktIndex].channels[j].channel);
4572
4573 /* Parse and fetch dwell time */
4574 if (!channel[
4575 QCA_WLAN_VENDOR_ATTR_EXTSCAN_CHANNEL_SPEC_DWELL_TIME]) {
4576 hddLog(LOGE, FL("attr dwelltime failed"));
4577 return -EINVAL;
4578 }
4579 pReqMsg->buckets[bktIndex].channels[j].dwellTimeMs =
4580 nla_get_u32(channel[
4581 QCA_WLAN_VENDOR_ATTR_EXTSCAN_CHANNEL_SPEC_DWELL_TIME]);
4582
4583 hddLog(LOG1, FL("Dwell time (%u ms)"),
4584 pReqMsg->buckets[bktIndex].channels[j].dwellTimeMs);
4585
4586
4587 /* Parse and fetch channel spec passive */
4588 if (!channel[
4589 QCA_WLAN_VENDOR_ATTR_EXTSCAN_CHANNEL_SPEC_PASSIVE]) {
4590 hddLog(LOGE,
4591 FL("attr channel spec passive failed"));
4592 return -EINVAL;
4593 }
4594 pReqMsg->buckets[bktIndex].channels[j].passive =
4595 nla_get_u8(channel[
4596 QCA_WLAN_VENDOR_ATTR_EXTSCAN_CHANNEL_SPEC_PASSIVE]);
4597 hddLog(LOG1, FL("Chnl spec passive %u"),
4598 pReqMsg->buckets[bktIndex].channels[j].passive);
4599
4600 j++;
4601 }
4602
4603 bktIndex++;
4604 }
4605
4606 return 0;
4607}
4608
4609
4610/*
4611 * define short names for the global vendor params
4612 * used by wlan_hdd_cfg80211_extscan_start()
4613 */
4614#define PARAM_MAX \
4615QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX
4616#define PARAM_REQUEST_ID \
4617QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID
4618#define PARAM_BASE_PERIOD \
4619QCA_WLAN_VENDOR_ATTR_EXTSCAN_SCAN_CMD_PARAMS_BASE_PERIOD
4620#define PARAM_MAX_AP_PER_SCAN \
4621QCA_WLAN_VENDOR_ATTR_EXTSCAN_SCAN_CMD_PARAMS_MAX_AP_PER_SCAN
4622#define PARAM_RPT_THRHLD_PERCENT \
4623QCA_WLAN_VENDOR_ATTR_EXTSCAN_SCAN_CMD_PARAMS_REPORT_THRESHOLD_PERCENT
4624#define PARAM_RPT_THRHLD_NUM_SCANS \
4625QCA_WLAN_VENDOR_ATTR_EXTSCAN_SCAN_CMD_PARAMS_REPORT_THRESHOLD_NUM_SCANS
4626#define PARAM_NUM_BUCKETS \
4627QCA_WLAN_VENDOR_ATTR_EXTSCAN_SCAN_CMD_PARAMS_NUM_BUCKETS
4628
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05304629static int __wlan_hdd_cfg80211_extscan_start(struct wiphy *wiphy,
Dino Mycle6fb96c12014-06-10 11:52:40 +05304630 struct wireless_dev *wdev,
Jeff Johnson393c2702014-12-16 11:09:35 +05304631 const void *data, int dataLen)
Dino Mycle6fb96c12014-06-10 11:52:40 +05304632{
Dino Myclee8843b32014-07-04 14:21:45 +05304633 tpSirEXTScanStartReqParams pReqMsg = NULL;
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05304634 struct net_device *dev = wdev->netdev;
4635 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
4636 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
4637 struct nlattr *tb[PARAM_MAX + 1];
4638 int retval;
Dino Mycle6fb96c12014-06-10 11:52:40 +05304639 eHalStatus status;
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05304640 tANI_U32 request_id;
4641 struct hdd_ext_scan_context *context;
4642 unsigned long rc;
Dino Mycle6fb96c12014-06-10 11:52:40 +05304643
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05304644 ENTER();
4645
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05304646 if (VOS_FTM_MODE == hdd_get_conparam()) {
4647 hddLog(LOGE, FL("Command not allowed in FTM mode"));
4648 return -EINVAL;
4649 }
4650
Dino Mycle6fb96c12014-06-10 11:52:40 +05304651 status = wlan_hdd_validate_context(pHddCtx);
4652 if (0 != status)
4653 {
Dino Mycle6fb96c12014-06-10 11:52:40 +05304654 return -EINVAL;
4655 }
Dino Myclee8843b32014-07-04 14:21:45 +05304656 /* check the EXTScan Capability */
4657 if ( (TRUE != pHddCtx->cfg_ini->fEnableEXTScan) ||
Padma, Santhosh Kumar2ac54992015-10-12 18:20:58 +05304658 (TRUE != sme_IsFeatureSupportedByFW(EXTENDED_SCAN)) ||
4659 (TRUE != sme_IsFeatureSupportedByFW(EXT_SCAN_ENHANCED)))
Dino Myclee8843b32014-07-04 14:21:45 +05304660 {
4661 hddLog(VOS_TRACE_LEVEL_ERROR,
4662 FL("EXTScan not enabled/supported by Firmware"));
4663 return -EINVAL;
4664 }
4665
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05304666 if (nla_parse(tb, PARAM_MAX,
Dino Mycle6fb96c12014-06-10 11:52:40 +05304667 data, dataLen,
4668 wlan_hdd_extscan_config_policy)) {
4669 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid ATTR"));
4670 return -EINVAL;
4671 }
4672
4673 /* Parse and fetch request Id */
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05304674 if (!tb[PARAM_REQUEST_ID]) {
Dino Mycle6fb96c12014-06-10 11:52:40 +05304675 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr request id failed"));
4676 return -EINVAL;
4677 }
4678
Dino Myclee8843b32014-07-04 14:21:45 +05304679 pReqMsg = (tpSirEXTScanStartReqParams)
4680 vos_mem_malloc(sizeof(*pReqMsg));
Dino Mycle6fb96c12014-06-10 11:52:40 +05304681 if (!pReqMsg) {
Dino Myclee8843b32014-07-04 14:21:45 +05304682 hddLog(VOS_TRACE_LEVEL_ERROR, FL("vos_mem_malloc failed"));
4683 return -ENOMEM;
Dino Mycle6fb96c12014-06-10 11:52:40 +05304684 }
4685
4686 pReqMsg->requestId = nla_get_u32(
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05304687 tb[PARAM_REQUEST_ID]);
Dino Mycle6fb96c12014-06-10 11:52:40 +05304688 hddLog(VOS_TRACE_LEVEL_INFO, FL("Req Id (%d)"), pReqMsg->requestId);
4689
4690 pReqMsg->sessionId = pAdapter->sessionId;
4691 hddLog(VOS_TRACE_LEVEL_INFO, FL("Session Id (%d)"), pReqMsg->sessionId);
4692
4693 /* Parse and fetch base period */
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05304694 if (!tb[PARAM_BASE_PERIOD]) {
Dino Mycle6fb96c12014-06-10 11:52:40 +05304695 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr base period failed"));
4696 goto fail;
4697 }
4698 pReqMsg->basePeriod = nla_get_u32(
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05304699 tb[PARAM_BASE_PERIOD]);
Dino Mycle6fb96c12014-06-10 11:52:40 +05304700 hddLog(VOS_TRACE_LEVEL_INFO, FL("Base Period (%d)"),
4701 pReqMsg->basePeriod);
4702
4703 /* Parse and fetch max AP per scan */
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05304704 if (!tb[PARAM_MAX_AP_PER_SCAN]) {
Dino Mycle6fb96c12014-06-10 11:52:40 +05304705 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr max_ap_per_scan failed"));
4706 goto fail;
4707 }
4708 pReqMsg->maxAPperScan = nla_get_u32(
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05304709 tb[PARAM_MAX_AP_PER_SCAN]);
Dino Mycle6fb96c12014-06-10 11:52:40 +05304710 hddLog(VOS_TRACE_LEVEL_INFO, FL("Max AP per Scan (%d)"),
4711 pReqMsg->maxAPperScan);
4712
4713 /* Parse and fetch report threshold */
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05304714 if (!tb[PARAM_RPT_THRHLD_PERCENT]) {
Dino Mycle6fb96c12014-06-10 11:52:40 +05304715 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr report_threshold failed"));
4716 goto fail;
4717 }
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05304718 pReqMsg->reportThresholdPercent = nla_get_u8(
4719 tb[PARAM_RPT_THRHLD_PERCENT]);
Dino Mycle6fb96c12014-06-10 11:52:40 +05304720 hddLog(VOS_TRACE_LEVEL_INFO, FL("Report Threshold (%d)"),
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05304721 pReqMsg->reportThresholdPercent);
4722
4723 /* Parse and fetch report threshold num scans */
4724 if (!tb[PARAM_RPT_THRHLD_NUM_SCANS]) {
4725 hddLog(LOGE, FL("attr report_threshold num scans failed"));
4726 goto fail;
4727 }
4728 pReqMsg->reportThresholdNumScans = nla_get_u8(
4729 tb[PARAM_RPT_THRHLD_NUM_SCANS]);
4730 hddLog(LOG1, FL("Report Threshold num scans %d"),
4731 pReqMsg->reportThresholdNumScans);
Dino Mycle6fb96c12014-06-10 11:52:40 +05304732
4733 /* Parse and fetch number of buckets */
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05304734 if (!tb[PARAM_NUM_BUCKETS]) {
Dino Mycle6fb96c12014-06-10 11:52:40 +05304735 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr number of buckets failed"));
4736 goto fail;
4737 }
4738 pReqMsg->numBuckets = nla_get_u8(
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05304739 tb[PARAM_NUM_BUCKETS]);
Dino Mycle6fb96c12014-06-10 11:52:40 +05304740 if (pReqMsg->numBuckets > WLAN_EXTSCAN_MAX_BUCKETS) {
4741 hddLog(VOS_TRACE_LEVEL_WARN, FL("Exceeded MAX number of buckets "
4742 "Setting numBuckets to %u"), WLAN_EXTSCAN_MAX_BUCKETS);
4743 pReqMsg->numBuckets = WLAN_EXTSCAN_MAX_BUCKETS;
4744 }
4745 hddLog(VOS_TRACE_LEVEL_INFO, FL("Number of Buckets (%d)"),
4746 pReqMsg->numBuckets);
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05304747
Dino Mycle6fb96c12014-06-10 11:52:40 +05304748 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC]) {
4749 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr bucket spec failed"));
4750 goto fail;
4751 }
4752
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05304753 pReqMsg->homeAwayTime = pHddCtx->cfg_ini->nRestTimeConc;
Dino Mycle6fb96c12014-06-10 11:52:40 +05304754
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05304755 if (hdd_extscan_start_fill_bucket_channel_spec(pHddCtx, pReqMsg, tb))
4756 goto fail;
Dasari Srinivas8b2ce272014-09-16 16:57:30 +05304757
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05304758 context = &pHddCtx->ext_scan_context;
4759 spin_lock(&hdd_context_lock);
4760 INIT_COMPLETION(context->response_event);
4761 context->request_id = request_id = pReqMsg->requestId;
4762 spin_unlock(&hdd_context_lock);
Dasari Srinivas8b2ce272014-09-16 16:57:30 +05304763
Dino Mycle6fb96c12014-06-10 11:52:40 +05304764 status = sme_EXTScanStart(pHddCtx->hHal, pReqMsg);
4765 if (!HAL_STATUS_SUCCESS(status)) {
4766 hddLog(VOS_TRACE_LEVEL_ERROR,
4767 FL("sme_EXTScanStart failed(err=%d)"), status);
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05304768 goto fail;
4769 }
4770
Srinivas Dasari91727c12016-03-23 17:59:06 +05304771 pHddCtx->extscan_start_time_since_boot = vos_get_monotonic_boottime();
4772
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05304773 /* request was sent -- wait for the response */
4774 rc = wait_for_completion_timeout(&context->response_event,
4775 msecs_to_jiffies(WLAN_WAIT_TIME_EXTSCAN));
4776
4777 if (!rc) {
4778 hddLog(LOGE, FL("sme_ExtScanStart timed out"));
4779 retval = -ETIMEDOUT;
4780 } else {
4781 spin_lock(&hdd_context_lock);
4782 if (context->request_id == request_id)
4783 retval = context->response_status;
4784 else
4785 retval = -EINVAL;
4786 spin_unlock(&hdd_context_lock);
Dino Mycle6fb96c12014-06-10 11:52:40 +05304787 }
4788
Dino Myclee8843b32014-07-04 14:21:45 +05304789 vos_mem_free(pReqMsg);
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05304790 EXIT();
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05304791 return retval;
Dino Mycle6fb96c12014-06-10 11:52:40 +05304792
4793fail:
4794 vos_mem_free(pReqMsg);
4795 return -EINVAL;
4796}
4797
Padma, Santhosh Kumar7b9190d2015-08-17 17:45:29 +05304798/*
4799 * done with short names for the global vendor params
4800 * used by wlan_hdd_cfg80211_extscan_start()
4801 */
4802#undef PARAM_MAX
4803#undef PARAM_REQUEST_ID
4804#undef PARAM_BASE_PERIOD
4805#undef PARAMS_MAX_AP_PER_SCAN
4806#undef PARAMS_RPT_THRHLD_PERCENT
4807#undef PARAMS_RPT_THRHLD_NUM_SCANS
4808#undef PARAMS_NUM_BUCKETS
4809
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05304810static int wlan_hdd_cfg80211_extscan_start(struct wiphy *wiphy,
4811 struct wireless_dev *wdev,
4812 const void *data, int dataLen)
4813{
4814 int ret = 0;
4815
4816 vos_ssr_protect(__func__);
4817 ret = __wlan_hdd_cfg80211_extscan_start(wiphy, wdev, data, dataLen);
4818 vos_ssr_unprotect(__func__);
4819
4820 return ret;
4821}
4822
4823static int __wlan_hdd_cfg80211_extscan_stop(struct wiphy *wiphy,
Dino Mycle6fb96c12014-06-10 11:52:40 +05304824 struct wireless_dev *wdev,
Jeff Johnson393c2702014-12-16 11:09:35 +05304825 const void *data, int dataLen)
Dino Mycle6fb96c12014-06-10 11:52:40 +05304826{
Dino Myclee8843b32014-07-04 14:21:45 +05304827 tSirEXTScanStopReqParams reqMsg;
Dino Mycle6fb96c12014-06-10 11:52:40 +05304828 struct net_device *dev = wdev->netdev;
4829 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
4830 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
4831 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX + 1];
4832 eHalStatus status;
Padma, Santhosh Kumar57cff7f2015-08-17 18:33:14 +05304833 int retval;
4834 unsigned long rc;
4835 struct hdd_ext_scan_context *context;
4836 tANI_U32 request_id;
Dino Mycle6fb96c12014-06-10 11:52:40 +05304837
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05304838 ENTER();
4839
Padma, Santhosh Kumar57cff7f2015-08-17 18:33:14 +05304840 if (VOS_FTM_MODE == hdd_get_conparam()) {
4841 hddLog(LOGE, FL("Command not allowed in FTM mode"));
4842 return -EINVAL;
4843 }
4844
Dino Mycle6fb96c12014-06-10 11:52:40 +05304845 status = wlan_hdd_validate_context(pHddCtx);
4846 if (0 != status)
4847 {
Dino Mycle6fb96c12014-06-10 11:52:40 +05304848 return -EINVAL;
4849 }
Dino Myclee8843b32014-07-04 14:21:45 +05304850 /* check the EXTScan Capability */
4851 if ( (TRUE != pHddCtx->cfg_ini->fEnableEXTScan) ||
Padma, Santhosh Kumar2ac54992015-10-12 18:20:58 +05304852 (TRUE != sme_IsFeatureSupportedByFW(EXTENDED_SCAN)) ||
4853 (TRUE != sme_IsFeatureSupportedByFW(EXT_SCAN_ENHANCED)))
Dino Myclee8843b32014-07-04 14:21:45 +05304854 {
4855 hddLog(VOS_TRACE_LEVEL_ERROR,
4856 FL("EXTScan not enabled/supported by Firmware"));
4857 return -EINVAL;
4858 }
4859
Dino Mycle6fb96c12014-06-10 11:52:40 +05304860 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX,
4861 data, dataLen,
4862 wlan_hdd_extscan_config_policy)) {
4863 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid ATTR"));
4864 return -EINVAL;
4865 }
4866
4867 /* Parse and fetch request Id */
4868 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]) {
4869 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr request id failed"));
4870 return -EINVAL;
4871 }
4872
Dino Myclee8843b32014-07-04 14:21:45 +05304873 reqMsg.requestId = nla_get_u32(
Dino Mycle6fb96c12014-06-10 11:52:40 +05304874 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]);
Dino Myclee8843b32014-07-04 14:21:45 +05304875 hddLog(VOS_TRACE_LEVEL_INFO, FL("Req Id (%d)"), reqMsg.requestId);
Dino Mycle6fb96c12014-06-10 11:52:40 +05304876
Dino Myclee8843b32014-07-04 14:21:45 +05304877 reqMsg.sessionId = pAdapter->sessionId;
4878 hddLog(VOS_TRACE_LEVEL_INFO, FL("Session Id (%d)"), reqMsg.sessionId);
Dino Mycle6fb96c12014-06-10 11:52:40 +05304879
Padma, Santhosh Kumar57cff7f2015-08-17 18:33:14 +05304880 context = &pHddCtx->ext_scan_context;
4881 spin_lock(&hdd_context_lock);
4882 INIT_COMPLETION(context->response_event);
Sravanti Palakonda7539fb92016-02-26 17:49:21 +05304883 context->request_id = request_id = reqMsg.requestId;
Padma, Santhosh Kumar57cff7f2015-08-17 18:33:14 +05304884 spin_unlock(&hdd_context_lock);
4885
Dino Myclee8843b32014-07-04 14:21:45 +05304886 status = sme_EXTScanStop(pHddCtx->hHal, &reqMsg);
Dino Mycle6fb96c12014-06-10 11:52:40 +05304887 if (!HAL_STATUS_SUCCESS(status)) {
4888 hddLog(VOS_TRACE_LEVEL_ERROR,
4889 FL("sme_EXTScanStop failed(err=%d)"), status);
Dino Mycle6fb96c12014-06-10 11:52:40 +05304890 return -EINVAL;
4891 }
4892
Padma, Santhosh Kumar57cff7f2015-08-17 18:33:14 +05304893 /* request was sent -- wait for the response */
4894 rc = wait_for_completion_timeout(&context->response_event,
4895 msecs_to_jiffies(WLAN_WAIT_TIME_EXTSCAN));
4896
4897 if (!rc) {
4898 hddLog(LOGE, FL("sme_ExtScanStop timed out"));
4899 retval = -ETIMEDOUT;
4900 } else {
4901 spin_lock(&hdd_context_lock);
4902 if (context->request_id == request_id)
4903 retval = context->response_status;
4904 else
4905 retval = -EINVAL;
4906 spin_unlock(&hdd_context_lock);
4907 }
4908
4909 return retval;
4910
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05304911 EXIT();
Dino Mycle6fb96c12014-06-10 11:52:40 +05304912 return 0;
4913}
4914
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05304915static int wlan_hdd_cfg80211_extscan_stop(struct wiphy *wiphy,
4916 struct wireless_dev *wdev,
4917 const void *data, int dataLen)
4918{
4919 int ret = 0;
4920
4921 vos_ssr_protect(__func__);
4922 ret = __wlan_hdd_cfg80211_extscan_stop(wiphy, wdev, data, dataLen);
4923 vos_ssr_unprotect(__func__);
4924
4925 return ret;
4926}
4927
4928static int __wlan_hdd_cfg80211_extscan_reset_bssid_hotlist(struct wiphy *wiphy,
Dino Mycle6fb96c12014-06-10 11:52:40 +05304929 struct wireless_dev *wdev,
Jeff Johnson393c2702014-12-16 11:09:35 +05304930 const void *data, int dataLen)
Dino Mycle6fb96c12014-06-10 11:52:40 +05304931{
Dino Myclee8843b32014-07-04 14:21:45 +05304932 tSirEXTScanResetBssidHotlistReqParams reqMsg;
Dino Mycle6fb96c12014-06-10 11:52:40 +05304933 struct net_device *dev = wdev->netdev;
4934 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
4935 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
4936 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX + 1];
4937 eHalStatus status;
Padma, Santhosh Kumar04a3bab2015-08-20 13:09:35 +05304938 struct hdd_ext_scan_context *context;
4939 tANI_U32 request_id;
4940 unsigned long rc;
4941 int retval;
Dino Mycle6fb96c12014-06-10 11:52:40 +05304942
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05304943 ENTER();
4944
Padma, Santhosh Kumar04a3bab2015-08-20 13:09:35 +05304945 if (VOS_FTM_MODE == hdd_get_conparam()) {
4946 hddLog(LOGE, FL("Command not allowed in FTM mode"));
4947 return -EINVAL;
4948 }
4949
Dino Mycle6fb96c12014-06-10 11:52:40 +05304950 status = wlan_hdd_validate_context(pHddCtx);
4951 if (0 != status)
4952 {
Padma, Santhosh Kumar04a3bab2015-08-20 13:09:35 +05304953 hddLog(LOGE, FL("HDD context is not valid"));
Dino Mycle6fb96c12014-06-10 11:52:40 +05304954 return -EINVAL;
4955 }
Dino Myclee8843b32014-07-04 14:21:45 +05304956 /* check the EXTScan Capability */
4957 if ( (TRUE != pHddCtx->cfg_ini->fEnableEXTScan) ||
Padma, Santhosh Kumar2ac54992015-10-12 18:20:58 +05304958 (TRUE != sme_IsFeatureSupportedByFW(EXTENDED_SCAN)) ||
4959 (TRUE != sme_IsFeatureSupportedByFW(EXT_SCAN_ENHANCED)))
Dino Myclee8843b32014-07-04 14:21:45 +05304960 {
4961 hddLog(VOS_TRACE_LEVEL_ERROR,
4962 FL("EXTScan not enabled/supported by Firmware"));
4963 return -EINVAL;
4964 }
4965
Dino Mycle6fb96c12014-06-10 11:52:40 +05304966 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX,
4967 data, dataLen,
4968 wlan_hdd_extscan_config_policy)) {
4969 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid ATTR"));
4970 return -EINVAL;
4971 }
4972
4973 /* Parse and fetch request Id */
4974 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]) {
4975 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr request id failed"));
4976 return -EINVAL;
4977 }
4978
Dino Myclee8843b32014-07-04 14:21:45 +05304979 reqMsg.requestId = nla_get_u32(
Dino Mycle6fb96c12014-06-10 11:52:40 +05304980 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]);
Dino Myclee8843b32014-07-04 14:21:45 +05304981 hddLog(VOS_TRACE_LEVEL_INFO, FL("Req Id (%d)"), reqMsg.requestId);
Dino Mycle6fb96c12014-06-10 11:52:40 +05304982
Dino Myclee8843b32014-07-04 14:21:45 +05304983 reqMsg.sessionId = pAdapter->sessionId;
4984 hddLog(VOS_TRACE_LEVEL_INFO, FL("Session Id (%d)"), reqMsg.sessionId);
Dino Mycle6fb96c12014-06-10 11:52:40 +05304985
Padma, Santhosh Kumar04a3bab2015-08-20 13:09:35 +05304986 context = &pHddCtx->ext_scan_context;
4987 spin_lock(&hdd_context_lock);
4988 INIT_COMPLETION(context->response_event);
4989 context->request_id = request_id = reqMsg.requestId;
4990 spin_unlock(&hdd_context_lock);
4991
Dino Myclee8843b32014-07-04 14:21:45 +05304992 status = sme_ResetBssHotlist(pHddCtx->hHal, &reqMsg);
Dino Mycle6fb96c12014-06-10 11:52:40 +05304993 if (!HAL_STATUS_SUCCESS(status)) {
4994 hddLog(VOS_TRACE_LEVEL_ERROR,
4995 FL("sme_ResetBssHotlist failed(err=%d)"), status);
Dino Mycle6fb96c12014-06-10 11:52:40 +05304996 return -EINVAL;
4997 }
Padma, Santhosh Kumar04a3bab2015-08-20 13:09:35 +05304998
4999 /* request was sent -- wait for the response */
5000 rc = wait_for_completion_timeout(&context->response_event,
5001 msecs_to_jiffies(WLAN_WAIT_TIME_EXTSCAN));
5002 if (!rc) {
5003 hddLog(LOGE, FL("sme_ResetBssHotlist timed out"));
5004 retval = -ETIMEDOUT;
5005 } else {
5006 spin_lock(&hdd_context_lock);
5007 if (context->request_id == request_id)
5008 retval = context->response_status;
5009 else
5010 retval = -EINVAL;
5011 spin_unlock(&hdd_context_lock);
5012 }
5013
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05305014 EXIT();
Padma, Santhosh Kumar04a3bab2015-08-20 13:09:35 +05305015 return retval;
Dino Mycle6fb96c12014-06-10 11:52:40 +05305016}
5017
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05305018static int wlan_hdd_cfg80211_extscan_reset_bssid_hotlist(struct wiphy *wiphy,
5019 struct wireless_dev *wdev,
5020 const void *data, int dataLen)
5021{
5022 int ret = 0;
5023
5024 vos_ssr_protect(__func__);
5025 ret = __wlan_hdd_cfg80211_extscan_reset_bssid_hotlist(wiphy, wdev, data, dataLen);
5026 vos_ssr_unprotect(__func__);
5027
5028 return ret;
5029}
Dino Mycle6fb96c12014-06-10 11:52:40 +05305030#endif /* WLAN_FEATURE_EXTSCAN */
5031
Atul Mittal115287b2014-07-08 13:26:33 +05305032/*EXT TDLS*/
5033static const struct nla_policy
5034wlan_hdd_tdls_config_enable_policy[QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_MAX +1] =
5035{
5036 [QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_MAC_ADDR] = {.type = NLA_UNSPEC },
5037 [QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_CHANNEL] = {.type = NLA_S32 },
5038 [QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_GLOBAL_OPERATING_CLASS] =
5039 {.type = NLA_S32 },
5040 [QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_MAX_LATENCY_MS] = {.type = NLA_S32 },
5041 [QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_MIN_BANDWIDTH_KBPS] = {.type = NLA_S32 },
5042
5043};
5044
5045static const struct nla_policy
5046wlan_hdd_tdls_config_disable_policy[QCA_WLAN_VENDOR_ATTR_TDLS_DISABLE_MAX +1] =
5047{
5048 [QCA_WLAN_VENDOR_ATTR_TDLS_DISABLE_MAC_ADDR] = {.type = NLA_UNSPEC },
5049
5050};
5051
5052static const struct nla_policy
5053wlan_hdd_tdls_config_state_change_policy[
5054 QCA_WLAN_VENDOR_ATTR_TDLS_STATE_MAX +1] =
5055{
5056 [QCA_WLAN_VENDOR_ATTR_TDLS_STATE_MAC_ADDR] = {.type = NLA_UNSPEC },
5057 [QCA_WLAN_VENDOR_ATTR_TDLS_NEW_STATE] = {.type = NLA_S32 },
5058 [QCA_WLAN_VENDOR_ATTR_TDLS_STATE_REASON] = {.type = NLA_S32 },
Atul Mittal0a9f68d2014-10-16 15:26:38 +05305059 [QCA_WLAN_VENDOR_ATTR_TDLS_STATE_CHANNEL] = {.type = NLA_S32 },
5060 [QCA_WLAN_VENDOR_ATTR_TDLS_STATE_GLOBAL_OPERATING_CLASS] =
5061 {.type = NLA_S32 },
Atul Mittal115287b2014-07-08 13:26:33 +05305062
5063};
5064
5065static const struct nla_policy
5066wlan_hdd_tdls_config_get_status_policy[
5067 QCA_WLAN_VENDOR_ATTR_TDLS_GET_STATUS_MAX +1] =
5068{
5069 [QCA_WLAN_VENDOR_ATTR_TDLS_GET_STATUS_MAC_ADDR] = {.type = NLA_UNSPEC },
5070 [QCA_WLAN_VENDOR_ATTR_TDLS_GET_STATUS_STATE] = {.type = NLA_S32 },
5071 [QCA_WLAN_VENDOR_ATTR_TDLS_GET_STATUS_REASON] = {.type = NLA_S32 },
Atul Mittal0a9f68d2014-10-16 15:26:38 +05305072 [QCA_WLAN_VENDOR_ATTR_TDLS_GET_STATUS_CHANNEL] = {.type = NLA_S32 },
5073 [QCA_WLAN_VENDOR_ATTR_TDLS_GET_STATUS_GLOBAL_OPERATING_CLASS]
5074 = {.type = NLA_S32 },
Atul Mittal115287b2014-07-08 13:26:33 +05305075
5076};
Siddharth Bhala3a5cb42014-09-29 21:13:13 +05305077
5078static const struct nla_policy
5079wlan_hdd_mac_config[QCA_WLAN_VENDOR_ATTR_SET_SCANNING_MAC_OUI_MAX+1] =
5080{
5081 [QCA_WLAN_VENDOR_ATTR_SET_SCANNING_MAC_OUI] = {.type = NLA_UNSPEC },
5082};
5083
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05305084static int __wlan_hdd_cfg80211_set_spoofed_mac_oui(struct wiphy *wiphy,
Siddharth Bhala3a5cb42014-09-29 21:13:13 +05305085 struct wireless_dev *wdev,
Jeff Johnson393c2702014-12-16 11:09:35 +05305086 const void *data,
Siddharth Bhala3a5cb42014-09-29 21:13:13 +05305087 int data_len)
5088{
5089
5090 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
5091 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_SET_SCANNING_MAC_OUI_MAX + 1];
5092
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05305093 ENTER();
5094
Siddharth Bhala3a5cb42014-09-29 21:13:13 +05305095 if (0 != wlan_hdd_validate_context(pHddCtx)){
Siddharth Bhala3a5cb42014-09-29 21:13:13 +05305096 return -EINVAL;
5097 }
Hanumantha Reddy Pothulaca1d1cc2015-10-26 15:37:35 +05305098 if (0 == pHddCtx->cfg_ini->enableMacSpoofing) {
Ratheesh S P36dbc932015-08-07 14:28:57 +05305099 hddLog(VOS_TRACE_LEVEL_INFO, FL("MAC_SPOOFED_SCAN disabled in ini"));
Siddharth Bhala3a5cb42014-09-29 21:13:13 +05305100 return -ENOTSUPP;
Siddharth Bhal76972212014-10-15 16:22:51 +05305101 }
Siddharth Bhala3a5cb42014-09-29 21:13:13 +05305102 if (TRUE != sme_IsFeatureSupportedByFW(MAC_SPOOFED_SCAN)){
Ratheesh S P36dbc932015-08-07 14:28:57 +05305103 hddLog(VOS_TRACE_LEVEL_INFO, FL("MAC_SPOOFED_SCAN not supported by FW"));
Siddharth Bhala3a5cb42014-09-29 21:13:13 +05305104 return -ENOTSUPP;
5105 }
5106
5107 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_SET_SCANNING_MAC_OUI_MAX,
5108 data, data_len, wlan_hdd_mac_config)) {
5109 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid ATTR"));
5110 return -EINVAL;
5111 }
5112
5113 /* Parse and fetch mac address */
5114 if (!tb[QCA_WLAN_VENDOR_ATTR_SET_SCANNING_MAC_OUI]) {
5115 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr mac addr failed"));
5116 return -EINVAL;
5117 }
5118
5119 memcpy(pHddCtx->spoofMacAddr.randomMacAddr.bytes, nla_data(
5120 tb[QCA_WLAN_VENDOR_ATTR_SET_SCANNING_MAC_OUI]),
5121 VOS_MAC_ADDR_LAST_3_BYTES);
5122
Siddharth Bhal76972212014-10-15 16:22:51 +05305123 pHddCtx->spoofMacAddr.isEnabled = TRUE;
5124
5125 vos_trace_hex_dump( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO, nla_data(
Siddharth Bhala3a5cb42014-09-29 21:13:13 +05305126 tb[QCA_WLAN_VENDOR_ATTR_SET_SCANNING_MAC_OUI]),
5127 VOS_MAC_ADDR_FIRST_3_BYTES);
Siddharth Bhal76972212014-10-15 16:22:51 +05305128 if ((pHddCtx->spoofMacAddr.randomMacAddr.bytes[0] == 0) &&
5129 (pHddCtx->spoofMacAddr.randomMacAddr.bytes[1] == 0) &&
5130 (pHddCtx->spoofMacAddr.randomMacAddr.bytes[2] == 0))
5131 {
5132 hddLog(LOG1, FL("ZERO MAC OUI Recieved. Disabling Spoofing"));
5133 vos_mem_zero(pHddCtx->spoofMacAddr.randomMacAddr.bytes,
5134 VOS_MAC_ADDRESS_LEN);
5135 pHddCtx->spoofMacAddr.isEnabled = FALSE;
Siddharth Bhala3a5cb42014-09-29 21:13:13 +05305136 }
Siddharth Bhala3a5cb42014-09-29 21:13:13 +05305137
Padma, Santhosh Kumardb2d75b2015-11-17 12:18:10 +05305138 schedule_delayed_work(&pHddCtx->spoof_mac_addr_work,
5139 msecs_to_jiffies(MAC_ADDR_SPOOFING_DEFER_INTERVAL));
Siddharth Bhala3a5cb42014-09-29 21:13:13 +05305140
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05305141 EXIT();
Siddharth Bhala3a5cb42014-09-29 21:13:13 +05305142 return 0;
5143}
5144
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05305145static int wlan_hdd_cfg80211_set_spoofed_mac_oui(struct wiphy *wiphy,
5146 struct wireless_dev *wdev,
5147 const void *data,
5148 int data_len)
5149{
5150 int ret = 0;
5151
5152 vos_ssr_protect(__func__);
5153 ret = __wlan_hdd_cfg80211_set_spoofed_mac_oui(wiphy, wdev, data, data_len);
5154 vos_ssr_unprotect(__func__);
5155
5156 return ret;
5157}
5158
5159static int __wlan_hdd_cfg80211_exttdls_get_status(struct wiphy *wiphy,
Atul Mittal115287b2014-07-08 13:26:33 +05305160 struct wireless_dev *wdev,
Jeff Johnson393c2702014-12-16 11:09:35 +05305161 const void *data,
Atul Mittal115287b2014-07-08 13:26:33 +05305162 int data_len)
5163{
5164 u8 peer[6] = {0};
5165 struct net_device *dev = wdev->netdev;
5166 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
5167 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
5168 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_TDLS_GET_STATUS_MAX + 1];
5169 eHalStatus ret;
5170 tANI_S32 state;
5171 tANI_S32 reason;
Atul Mittal0a9f68d2014-10-16 15:26:38 +05305172 tANI_S32 global_operating_class = 0;
5173 tANI_S32 channel = 0;
Atul Mittal115287b2014-07-08 13:26:33 +05305174 struct sk_buff *skb = NULL;
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05305175 int retVal;
5176
5177 ENTER();
Atul Mittal115287b2014-07-08 13:26:33 +05305178
Chandrasekaran, Manishekar41b8e1f2015-03-10 13:30:28 +05305179 if (!pAdapter) {
5180 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD adpater is NULL"));
5181 return -EINVAL;
5182 }
5183
Atul Mittal115287b2014-07-08 13:26:33 +05305184 ret = wlan_hdd_validate_context(pHddCtx);
5185 if (0 != ret) {
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +05305186 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid HDD context"));
Atul Mittal115287b2014-07-08 13:26:33 +05305187 return -EINVAL;
5188 }
5189 if (pHddCtx->cfg_ini->fTDLSExternalControl == FALSE) {
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +05305190 hddLog(VOS_TRACE_LEVEL_ERROR, FL("TDLS external control is disabled"));
Atul Mittal115287b2014-07-08 13:26:33 +05305191 return -ENOTSUPP;
5192 }
5193 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_TDLS_GET_STATUS_MAX,
5194 data, data_len,
5195 wlan_hdd_tdls_config_get_status_policy)) {
5196 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid ATTR"));
5197 return -EINVAL;
5198 }
5199
5200 /* Parse and fetch mac address */
5201 if (!tb[QCA_WLAN_VENDOR_ATTR_TDLS_GET_STATUS_MAC_ADDR]) {
5202 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr mac addr failed"));
5203 return -EINVAL;
5204 }
5205
5206 memcpy(peer, nla_data(
5207 tb[QCA_WLAN_VENDOR_ATTR_TDLS_GET_STATUS_MAC_ADDR]),
5208 sizeof(peer));
5209 hddLog(VOS_TRACE_LEVEL_INFO, FL(MAC_ADDRESS_STR),MAC_ADDR_ARRAY(peer));
5210
Konamki, Sreelakshmiabb59ed2015-06-12 12:13:23 +05305211 wlan_hdd_tdls_get_status(pAdapter, peer, &state, &reason);
Atul Mittal115287b2014-07-08 13:26:33 +05305212
Atul Mittal115287b2014-07-08 13:26:33 +05305213 skb = cfg80211_vendor_cmd_alloc_reply_skb(wiphy,
Atul Mittal0a9f68d2014-10-16 15:26:38 +05305214 4 * sizeof(s32) +
Atul Mittal115287b2014-07-08 13:26:33 +05305215 NLMSG_HDRLEN);
5216
5217 if (!skb) {
5218 hddLog(VOS_TRACE_LEVEL_ERROR,
5219 FL("cfg80211_vendor_cmd_alloc_reply_skb failed"));
5220 return -EINVAL;
5221 }
Atul Mittal0a9f68d2014-10-16 15:26:38 +05305222 hddLog(VOS_TRACE_LEVEL_INFO, FL("Reason (%d) Status (%d) class (%d) channel (%d) peer" MAC_ADDRESS_STR),
Atul Mittal115287b2014-07-08 13:26:33 +05305223 reason,
5224 state,
Atul Mittal0a9f68d2014-10-16 15:26:38 +05305225 global_operating_class,
5226 channel,
Atul Mittal115287b2014-07-08 13:26:33 +05305227 MAC_ADDR_ARRAY(peer));
Atul Mittal0a9f68d2014-10-16 15:26:38 +05305228 if (nla_put_s32(skb,
5229 QCA_WLAN_VENDOR_ATTR_TDLS_GET_STATUS_STATE,
5230 state) ||
5231 nla_put_s32(skb,
5232 QCA_WLAN_VENDOR_ATTR_TDLS_GET_STATUS_REASON,
5233 reason) ||
5234 nla_put_s32(skb,
5235 QCA_WLAN_VENDOR_ATTR_TDLS_GET_STATUS_GLOBAL_OPERATING_CLASS,
5236 global_operating_class) ||
5237 nla_put_s32(skb,
5238 QCA_WLAN_VENDOR_ATTR_TDLS_GET_STATUS_CHANNEL,
5239 channel)) {
Atul Mittal115287b2014-07-08 13:26:33 +05305240
5241 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla put fail"));
5242 goto nla_put_failure;
5243 }
5244
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05305245 retVal = cfg80211_vendor_cmd_reply(skb);
5246 EXIT();
5247 return retVal;
Atul Mittal115287b2014-07-08 13:26:33 +05305248
5249nla_put_failure:
5250 kfree_skb(skb);
5251 return -EINVAL;
5252}
5253
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05305254static int wlan_hdd_cfg80211_exttdls_get_status(struct wiphy *wiphy,
5255 struct wireless_dev *wdev,
5256 const void *data,
5257 int data_len)
5258{
5259 int ret = 0;
5260
5261 vos_ssr_protect(__func__);
5262 ret = __wlan_hdd_cfg80211_exttdls_get_status(wiphy, wdev, data, data_len);
5263 vos_ssr_unprotect(__func__);
5264
5265 return ret;
5266}
5267
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +05305268static int wlan_hdd_cfg80211_exttdls_callback(
5269#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,18,0))
5270 const tANI_U8* mac,
5271#else
5272 tANI_U8* mac,
5273#endif
Atul Mittal115287b2014-07-08 13:26:33 +05305274 tANI_S32 state,
5275 tANI_S32 reason,
5276 void *ctx)
5277{
5278 hdd_adapter_t* pAdapter = (hdd_adapter_t*)ctx;
Atul Mittal115287b2014-07-08 13:26:33 +05305279 struct sk_buff *skb = NULL;
Atul Mittal0a9f68d2014-10-16 15:26:38 +05305280 tANI_S32 global_operating_class = 0;
5281 tANI_S32 channel = 0;
Chandrasekaran, Manishekar41b8e1f2015-03-10 13:30:28 +05305282 hdd_context_t *pHddCtx;
Atul Mittal115287b2014-07-08 13:26:33 +05305283
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05305284 ENTER();
5285
Chandrasekaran, Manishekar41b8e1f2015-03-10 13:30:28 +05305286 if (!pAdapter) {
5287 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD adpater is NULL"));
5288 return -EINVAL;
5289 }
5290
5291 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Atul Mittal115287b2014-07-08 13:26:33 +05305292 if (wlan_hdd_validate_context(pHddCtx)) {
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +05305293 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid HDD context"));
Atul Mittal115287b2014-07-08 13:26:33 +05305294 return -EINVAL;
5295 }
5296
5297 if (pHddCtx->cfg_ini->fTDLSExternalControl == FALSE) {
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +05305298 hddLog(VOS_TRACE_LEVEL_ERROR, FL("TDLS external control is disabled"));
Atul Mittal115287b2014-07-08 13:26:33 +05305299 return -ENOTSUPP;
5300 }
Anand N Sunkad26ca6cc2015-07-29 09:54:52 +05305301 skb = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
5302#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 18, 0))
5303 NULL,
5304#endif
Atul Mittal115287b2014-07-08 13:26:33 +05305305 EXTTDLS_EVENT_BUF_SIZE + NLMSG_HDRLEN,
5306 QCA_NL80211_VENDOR_SUBCMD_TDLS_STATE_CHANGE_INDEX,
5307 GFP_KERNEL);
5308
5309 if (!skb) {
5310 hddLog(VOS_TRACE_LEVEL_ERROR,
5311 FL("cfg80211_vendor_event_alloc failed"));
5312 return -EINVAL;
5313 }
5314 hddLog(VOS_TRACE_LEVEL_INFO, FL("Entering "));
Atul Mittal0a9f68d2014-10-16 15:26:38 +05305315 hddLog(VOS_TRACE_LEVEL_INFO, "Reason: (%d) Status: (%d) Class: (%d) Channel: (%d)",
5316 reason,
5317 state,
5318 global_operating_class,
5319 channel);
Atul Mittal115287b2014-07-08 13:26:33 +05305320 hddLog(VOS_TRACE_LEVEL_WARN, "tdls peer " MAC_ADDRESS_STR,
5321 MAC_ADDR_ARRAY(mac));
5322
Atul Mittal0a9f68d2014-10-16 15:26:38 +05305323 if (nla_put(skb,
5324 QCA_WLAN_VENDOR_ATTR_TDLS_STATE_MAC_ADDR,
5325 VOS_MAC_ADDR_SIZE, mac) ||
5326 nla_put_s32(skb,
5327 QCA_WLAN_VENDOR_ATTR_TDLS_NEW_STATE,
5328 state) ||
5329 nla_put_s32(skb,
5330 QCA_WLAN_VENDOR_ATTR_TDLS_STATE_REASON,
5331 reason) ||
5332 nla_put_s32(skb,
5333 QCA_WLAN_VENDOR_ATTR_TDLS_STATE_CHANNEL,
5334 channel) ||
5335 nla_put_s32(skb,
5336 QCA_WLAN_VENDOR_ATTR_TDLS_STATE_GLOBAL_OPERATING_CLASS,
5337 global_operating_class)
5338 ) {
Atul Mittal115287b2014-07-08 13:26:33 +05305339 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla put fail"));
5340 goto nla_put_failure;
5341 }
5342
5343 cfg80211_vendor_event(skb, GFP_KERNEL);
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05305344 EXIT();
Atul Mittal115287b2014-07-08 13:26:33 +05305345 return (0);
5346
5347nla_put_failure:
5348 kfree_skb(skb);
5349 return -EINVAL;
5350}
5351
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05305352static int __wlan_hdd_cfg80211_exttdls_enable(struct wiphy *wiphy,
Atul Mittal115287b2014-07-08 13:26:33 +05305353 struct wireless_dev *wdev,
Jeff Johnson393c2702014-12-16 11:09:35 +05305354 const void *data,
Atul Mittal115287b2014-07-08 13:26:33 +05305355 int data_len)
5356{
5357 u8 peer[6] = {0};
5358 struct net_device *dev = wdev->netdev;
Atul Mittal115287b2014-07-08 13:26:33 +05305359 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
5360 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_MAX + 1];
5361 eHalStatus status;
5362 tdls_req_params_t pReqMsg = {0};
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05305363 int ret;
Chandrasekaran, Manishekar41b8e1f2015-03-10 13:30:28 +05305364 hdd_adapter_t *pAdapter;
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05305365
5366 ENTER();
Atul Mittal115287b2014-07-08 13:26:33 +05305367
Chandrasekaran, Manishekar41b8e1f2015-03-10 13:30:28 +05305368 if (!dev) {
5369 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Dev pointer is NULL"));
5370 return -EINVAL;
5371 }
5372
5373 pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
5374 if (!pAdapter) {
5375 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD adpater is NULL"));
5376 return -EINVAL;
5377 }
5378
Atul Mittal115287b2014-07-08 13:26:33 +05305379 status = wlan_hdd_validate_context(pHddCtx);
5380 if (0 != status) {
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +05305381 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid HDD context"));
Atul Mittal115287b2014-07-08 13:26:33 +05305382 return -EINVAL;
5383 }
5384 if (pHddCtx->cfg_ini->fTDLSExternalControl == FALSE) {
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +05305385 hddLog(VOS_TRACE_LEVEL_ERROR, FL("TDLS external control is disabled"));
Atul Mittal115287b2014-07-08 13:26:33 +05305386 return -ENOTSUPP;
5387 }
5388 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_MAX,
5389 data, data_len,
5390 wlan_hdd_tdls_config_enable_policy)) {
5391 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid ATTR"));
5392 return -EINVAL;
5393 }
5394
5395 /* Parse and fetch mac address */
5396 if (!tb[QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_MAC_ADDR]) {
5397 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr mac addr failed"));
5398 return -EINVAL;
5399 }
5400
5401 memcpy(peer, nla_data(
5402 tb[QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_MAC_ADDR]),
5403 sizeof(peer));
5404 hddLog(VOS_TRACE_LEVEL_INFO, FL(MAC_ADDRESS_STR),MAC_ADDR_ARRAY(peer));
5405
5406 /* Parse and fetch channel */
5407 if (!tb[QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_CHANNEL]) {
5408 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr channel failed"));
5409 return -EINVAL;
5410 }
5411 pReqMsg.channel = nla_get_s32(
5412 tb[QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_CHANNEL]);
5413 hddLog(VOS_TRACE_LEVEL_INFO, FL("Channel Num (%d)"), pReqMsg.channel);
5414
5415 /* Parse and fetch global operating class */
5416 if (!tb[QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_GLOBAL_OPERATING_CLASS]) {
5417 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr operating class failed"));
5418 return -EINVAL;
5419 }
5420 pReqMsg.global_operating_class = nla_get_s32(
5421 tb[QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_GLOBAL_OPERATING_CLASS]);
5422 hddLog(VOS_TRACE_LEVEL_INFO, FL("Operating class (%d)"),
5423 pReqMsg.global_operating_class);
5424
5425 /* Parse and fetch latency ms */
5426 if (!tb[QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_MAX_LATENCY_MS]) {
5427 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr latency failed"));
5428 return -EINVAL;
5429 }
5430 pReqMsg.max_latency_ms = nla_get_s32(
5431 tb[QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_MAX_LATENCY_MS]);
5432 hddLog(VOS_TRACE_LEVEL_INFO, FL("Latency (%d)"),
5433 pReqMsg.max_latency_ms);
5434
5435 /* Parse and fetch required bandwidth kbps */
5436 if (!tb[QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_MIN_BANDWIDTH_KBPS]) {
5437 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr bandwidth failed"));
5438 return -EINVAL;
5439 }
5440
5441 pReqMsg.min_bandwidth_kbps = nla_get_s32(
5442 tb[QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_MIN_BANDWIDTH_KBPS]);
5443 hddLog(VOS_TRACE_LEVEL_INFO, FL("Bandwidth (%d)"),
5444 pReqMsg.min_bandwidth_kbps);
5445
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05305446 ret = wlan_hdd_tdls_extctrl_config_peer(pAdapter,
Atul Mittal115287b2014-07-08 13:26:33 +05305447 peer,
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +05305448 &pReqMsg,
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05305449 wlan_hdd_cfg80211_exttdls_callback);
5450
5451 EXIT();
5452 return ret;
Atul Mittal115287b2014-07-08 13:26:33 +05305453}
5454
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05305455static int wlan_hdd_cfg80211_exttdls_enable(struct wiphy *wiphy,
5456 struct wireless_dev *wdev,
5457 const void *data,
5458 int data_len)
5459{
5460 int ret = 0;
5461
5462 vos_ssr_protect(__func__);
5463 ret = __wlan_hdd_cfg80211_exttdls_enable(wiphy, wdev, data, data_len);
5464 vos_ssr_unprotect(__func__);
5465
5466 return ret;
5467}
5468
5469static int __wlan_hdd_cfg80211_exttdls_disable(struct wiphy *wiphy,
Atul Mittal115287b2014-07-08 13:26:33 +05305470 struct wireless_dev *wdev,
Jeff Johnson393c2702014-12-16 11:09:35 +05305471 const void *data,
Atul Mittal115287b2014-07-08 13:26:33 +05305472 int data_len)
5473{
5474 u8 peer[6] = {0};
5475 struct net_device *dev = wdev->netdev;
Atul Mittal115287b2014-07-08 13:26:33 +05305476 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
5477 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_TDLS_DISABLE_MAX + 1];
5478 eHalStatus status;
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05305479 int ret;
Chandrasekaran, Manishekar41b8e1f2015-03-10 13:30:28 +05305480 hdd_adapter_t *pAdapter;
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05305481
5482 ENTER();
Atul Mittal115287b2014-07-08 13:26:33 +05305483
Chandrasekaran, Manishekar41b8e1f2015-03-10 13:30:28 +05305484 if (!dev) {
5485 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Dev pointer is NULL"));
5486 return -EINVAL;
5487 }
5488
5489 pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
5490 if (!pAdapter) {
5491 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD adapter is NULL"));
5492 return -EINVAL;
5493 }
5494
Atul Mittal115287b2014-07-08 13:26:33 +05305495 status = wlan_hdd_validate_context(pHddCtx);
5496 if (0 != status) {
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +05305497 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid HDD context"));
Atul Mittal115287b2014-07-08 13:26:33 +05305498 return -EINVAL;
5499 }
5500 if (pHddCtx->cfg_ini->fTDLSExternalControl == FALSE) {
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +05305501 hddLog(VOS_TRACE_LEVEL_ERROR, FL("TDLS external control is disabled"));
Atul Mittal115287b2014-07-08 13:26:33 +05305502 return -ENOTSUPP;
5503 }
5504 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_TDLS_DISABLE_MAX,
5505 data, data_len,
5506 wlan_hdd_tdls_config_disable_policy)) {
5507 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid ATTR"));
5508 return -EINVAL;
5509 }
5510 /* Parse and fetch mac address */
5511 if (!tb[QCA_WLAN_VENDOR_ATTR_TDLS_DISABLE_MAC_ADDR]) {
5512 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr mac addr failed"));
5513 return -EINVAL;
5514 }
5515
5516 memcpy(peer, nla_data(
5517 tb[QCA_WLAN_VENDOR_ATTR_TDLS_DISABLE_MAC_ADDR]),
5518 sizeof(peer));
5519 hddLog(VOS_TRACE_LEVEL_INFO, FL(MAC_ADDRESS_STR),MAC_ADDR_ARRAY(peer));
5520
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05305521 ret = wlan_hdd_tdls_extctrl_deconfig_peer(pAdapter, peer);
5522
5523 EXIT();
5524 return ret;
Atul Mittal115287b2014-07-08 13:26:33 +05305525}
5526
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05305527static int wlan_hdd_cfg80211_exttdls_disable(struct wiphy *wiphy,
5528 struct wireless_dev *wdev,
5529 const void *data,
5530 int data_len)
5531{
5532 int ret = 0;
5533
5534 vos_ssr_protect(__func__);
5535 ret = __wlan_hdd_cfg80211_exttdls_disable(wiphy, wdev, data, data_len);
5536 vos_ssr_unprotect(__func__);
5537
5538 return ret;
5539}
5540
Dasari Srinivas7875a302014-09-26 17:50:57 +05305541static int
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05305542__wlan_hdd_cfg80211_get_supported_features(struct wiphy *wiphy,
Dasari Srinivas7875a302014-09-26 17:50:57 +05305543 struct wireless_dev *wdev,
Jeff Johnson393c2702014-12-16 11:09:35 +05305544 const void *data, int data_len)
Dasari Srinivas7875a302014-09-26 17:50:57 +05305545{
5546 struct net_device *dev = wdev->netdev;
5547 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
5548 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
5549 struct sk_buff *skb = NULL;
5550 tANI_U32 fset = 0;
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05305551 int ret = 0;
Dasari Srinivas7875a302014-09-26 17:50:57 +05305552
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05305553 ENTER();
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05305554
5555 ret = wlan_hdd_validate_context(pHddCtx);
5556 if (0 != ret)
5557 {
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05305558 return ret;
5559 }
Dasari Srinivas7875a302014-09-26 17:50:57 +05305560 if (wiphy->interface_modes & BIT(NL80211_IFTYPE_STATION)) {
5561 hddLog(LOG1, FL("Infra Station mode is supported by driver"));
5562 fset |= WIFI_FEATURE_INFRA;
5563 }
5564
5565 if (TRUE == hdd_is_5g_supported(pHddCtx)) {
5566 hddLog(LOG1, FL("INFRA_5G is supported by firmware"));
5567 fset |= WIFI_FEATURE_INFRA_5G;
5568 }
5569
5570#ifdef WLAN_FEATURE_P2P
5571 if ((wiphy->interface_modes & BIT(NL80211_IFTYPE_P2P_CLIENT)) &&
5572 (wiphy->interface_modes & BIT(NL80211_IFTYPE_P2P_GO))) {
5573 hddLog(LOG1, FL("WiFi-Direct is supported by driver"));
5574 fset |= WIFI_FEATURE_P2P;
5575 }
5576#endif
5577
5578 /* Soft-AP is supported currently by default */
5579 fset |= WIFI_FEATURE_SOFT_AP;
5580
Kanchanapally, Vidyullatha683aed02015-03-24 16:58:38 +05305581 /* HOTSPOT is a supplicant feature, enable it by default */
5582 fset |= WIFI_FEATURE_HOTSPOT;
5583
Dasari Srinivas7875a302014-09-26 17:50:57 +05305584#ifdef WLAN_FEATURE_EXTSCAN
5585 if ((TRUE == pHddCtx->cfg_ini->fEnableEXTScan) &&
Padma, Santhosh Kumar2ac54992015-10-12 18:20:58 +05305586 sme_IsFeatureSupportedByFW(EXTENDED_SCAN) &&
5587 sme_IsFeatureSupportedByFW(EXT_SCAN_ENHANCED)) {
5588 hddLog(LOG1, FL("Enhanced EXTScan is supported by firmware"));
Dasari Srinivas7875a302014-09-26 17:50:57 +05305589 fset |= WIFI_FEATURE_EXTSCAN;
5590 }
5591#endif
5592
Dasari Srinivas7875a302014-09-26 17:50:57 +05305593 if (sme_IsFeatureSupportedByFW(NAN)) {
5594 hddLog(LOG1, FL("NAN is supported by firmware"));
5595 fset |= WIFI_FEATURE_NAN;
5596 }
Dasari Srinivas7875a302014-09-26 17:50:57 +05305597
5598 /* D2D RTT is not supported currently by default */
5599 if (sme_IsFeatureSupportedByFW(RTT)) {
5600 hddLog(LOG1, FL("RTT is supported by firmware"));
5601 fset |= WIFI_FEATURE_D2AP_RTT;
5602 }
5603
Padma, Santhosh Kumaraac4c4d2015-12-08 16:07:47 +05305604 if (sme_IsFeatureSupportedByFW(RTT3)) {
5605 hddLog(LOG1, FL("RTT3 is supported by firmware"));
5606 fset |= WIFI_FEATURE_RTT3;
5607 }
5608
Dasari Srinivas7875a302014-09-26 17:50:57 +05305609#ifdef FEATURE_WLAN_BATCH_SCAN
5610 if (fset & WIFI_FEATURE_EXTSCAN) {
5611 hddLog(LOG1, FL("Batch scan is supported as extscan is supported"));
5612 fset &= ~WIFI_FEATURE_BATCH_SCAN;
5613 } else if (sme_IsFeatureSupportedByFW(BATCH_SCAN)) {
5614 hddLog(LOG1, FL("Batch scan is supported by firmware"));
5615 fset |= WIFI_FEATURE_BATCH_SCAN;
5616 }
5617#endif
5618
5619#ifdef FEATURE_WLAN_SCAN_PNO
5620 if (pHddCtx->cfg_ini->configPNOScanSupport &&
5621 (eHAL_STATUS_SUCCESS == wlan_hdd_is_pno_allowed(pAdapter))) {
5622 hddLog(LOG1, FL("PNO is supported by firmware"));
5623 fset |= WIFI_FEATURE_PNO;
5624 }
5625#endif
5626
5627 /* STA+STA is supported currently by default */
5628 fset |= WIFI_FEATURE_ADDITIONAL_STA;
5629
5630#ifdef FEATURE_WLAN_TDLS
5631 if ((TRUE == pHddCtx->cfg_ini->fEnableTDLSSupport) &&
5632 sme_IsFeatureSupportedByFW(TDLS)) {
5633 hddLog(LOG1, FL("TDLS is supported by firmware"));
5634 fset |= WIFI_FEATURE_TDLS;
5635 }
5636
5637 /* TDLS_OFFCHANNEL is not supported currently by default */
5638#endif
5639
5640#ifdef WLAN_AP_STA_CONCURRENCY
5641 /* AP+STA concurrency is supported currently by default */
5642 fset |= WIFI_FEATURE_AP_STA;
5643#endif
5644
Mukul Sharma5add0532015-08-17 15:57:47 +05305645#ifdef WLAN_FEATURE_LINK_LAYER_STATS
5646 fset |= WIFI_FEATURE_LINK_LAYER_STATS;
5647 hddLog(LOG1, FL("Link layer stats is supported by driver"));
5648#endif
5649
Dasari Srinivas7875a302014-09-26 17:50:57 +05305650 skb = cfg80211_vendor_cmd_alloc_reply_skb(wiphy, sizeof(fset) +
5651 NLMSG_HDRLEN);
5652
5653 if (!skb) {
5654 hddLog(LOGE, FL("cfg80211_vendor_cmd_alloc_reply_skb failed"));
5655 return -EINVAL;
5656 }
5657 hddLog(LOG1, FL("Supported Features : 0x%x"), fset);
5658
5659 if (nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_FEATURE_SET, fset)) {
5660 hddLog(LOGE, FL("nla put fail"));
5661 goto nla_put_failure;
5662 }
5663
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05305664 ret = cfg80211_vendor_cmd_reply(skb);
5665 EXIT();
5666 return ret;
Dasari Srinivas7875a302014-09-26 17:50:57 +05305667
5668nla_put_failure:
5669 kfree_skb(skb);
5670 return -EINVAL;
5671}
5672
Dasari Srinivase18b2cf2014-10-28 17:09:42 +05305673static int
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05305674wlan_hdd_cfg80211_get_supported_features(struct wiphy *wiphy,
5675 struct wireless_dev *wdev,
5676 const void *data, int data_len)
5677{
5678 int ret = 0;
5679
5680 vos_ssr_protect(__func__);
5681 ret = __wlan_hdd_cfg80211_get_supported_features(wiphy, wdev, data, data_len);
5682 vos_ssr_unprotect(__func__);
5683
5684 return ret;
5685}
5686
Sachin Ahujac08f72a2015-09-22 15:25:47 +05305687
5688static const struct
5689nla_policy
5690qca_wlan_vendor_wifi_logger_get_ring_data_policy
5691[QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_GET_RING_DATA_MAX + 1] = {
5692 [QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_GET_RING_DATA_ID]
5693 = {.type = NLA_U32 },
5694};
5695
5696static int
5697 __wlan_hdd_cfg80211_wifi_logger_get_ring_data(struct wiphy *wiphy,
5698 struct wireless_dev *wdev,
5699 const void *data,
5700 int data_len)
5701{
5702 int ret;
5703 VOS_STATUS status;
5704 uint32_t ring_id;
5705 hdd_context_t *hdd_ctx = wiphy_priv(wiphy);
5706 struct nlattr *tb
5707 [QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_GET_RING_DATA_MAX + 1];
5708
5709 ENTER();
5710
5711 ret = wlan_hdd_validate_context(hdd_ctx);
5712 if (0 != ret) {
5713 return ret;
5714 }
5715
5716 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_GET_RING_DATA_MAX,
5717 data, data_len,
5718 qca_wlan_vendor_wifi_logger_get_ring_data_policy)) {
5719 hddLog(LOGE, FL("Invalid attribute"));
5720 return -EINVAL;
5721 }
5722
5723 /* Parse and fetch ring id */
5724 if (!tb[QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_GET_RING_DATA_ID]) {
5725 hddLog(LOGE, FL("attr ATTR failed"));
5726 return -EINVAL;
5727 }
5728
5729 ring_id = nla_get_u32(
5730 tb[QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_GET_RING_DATA_ID]);
5731
5732 hddLog(LOG1, FL("Bug report triggered by framework"));
5733
5734 status = vos_fatal_event_logs_req(WLAN_LOG_TYPE_NON_FATAL,
5735 WLAN_LOG_INDICATOR_FRAMEWORK,
5736 WLAN_LOG_REASON_CODE_FRAMEWORK,
Abhishek Singh837adf22015-10-01 17:37:37 +05305737 TRUE, TRUE
Sachin Ahujac08f72a2015-09-22 15:25:47 +05305738 );
5739 if (VOS_STATUS_SUCCESS != status) {
5740 hddLog(LOGE, FL("Failed to trigger bug report"));
5741
5742 return -EINVAL;
5743 }
5744
5745 return 0;
5746
5747
5748}
5749
5750
5751static int
5752 wlan_hdd_cfg80211_wifi_logger_get_ring_data(struct wiphy *wiphy,
5753 struct wireless_dev *wdev,
5754 const void *data,
5755 int data_len)
5756{
5757 int ret = 0;
5758
5759 vos_ssr_protect(__func__);
5760 ret = __wlan_hdd_cfg80211_wifi_logger_get_ring_data(wiphy,
5761 wdev, data, data_len);
5762 vos_ssr_unprotect(__func__);
5763
5764 return ret;
5765
5766}
5767
5768
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05305769static int
5770__wlan_hdd_cfg80211_get_concurrency_matrix(struct wiphy *wiphy,
Dasari Srinivase18b2cf2014-10-28 17:09:42 +05305771 struct wireless_dev *wdev,
Jeff Johnson393c2702014-12-16 11:09:35 +05305772 const void *data, int data_len)
Dasari Srinivase18b2cf2014-10-28 17:09:42 +05305773{
5774 uint32_t feature_set_matrix[WLAN_HDD_MAX_FEATURE_SET] = {0};
5775 uint8_t i, feature_sets, max_feature_sets;
5776 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_GET_CONCURRENCY_MATRIX_MAX + 1];
5777 struct sk_buff *reply_skb;
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05305778 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
5779 int ret;
Dasari Srinivase18b2cf2014-10-28 17:09:42 +05305780
5781 ENTER();
5782
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05305783 ret = wlan_hdd_validate_context(pHddCtx);
5784 if (0 != ret)
5785 {
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05305786 return ret;
5787 }
5788
Dasari Srinivase18b2cf2014-10-28 17:09:42 +05305789 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_GET_CONCURRENCY_MATRIX_MAX,
5790 data, data_len, NULL)) {
5791 hddLog(LOGE, FL("Invalid ATTR"));
5792 return -EINVAL;
5793 }
5794
5795 /* Parse and fetch max feature set */
5796 if (!tb[QCA_WLAN_VENDOR_ATTR_GET_CONCURRENCY_MATRIX_CONFIG_PARAM_SET_SIZE_MAX]) {
5797 hddLog(LOGE, FL("Attr max feature set size failed"));
5798 return -EINVAL;
5799 }
5800 max_feature_sets = nla_get_u32(
5801 tb[QCA_WLAN_VENDOR_ATTR_GET_CONCURRENCY_MATRIX_CONFIG_PARAM_SET_SIZE_MAX]);
5802 hddLog(LOG1, FL("Max feature set size (%d)"), max_feature_sets);
5803
5804 /* Fill feature combination matrix */
5805 feature_sets = 0;
Dasari Srinivase18b2cf2014-10-28 17:09:42 +05305806 feature_set_matrix[feature_sets++] = WIFI_FEATURE_INFRA |
5807 WIFI_FEATURE_P2P;
5808
Dasari Srinivase18b2cf2014-10-28 17:09:42 +05305809 feature_set_matrix[feature_sets++] = WIFI_FEATURE_INFRA |
5810 WIFI_FEATURE_SOFT_AP;
5811
Dasari Srinivase18b2cf2014-10-28 17:09:42 +05305812 feature_set_matrix[feature_sets++] = WIFI_FEATURE_P2P |
5813 WIFI_FEATURE_SOFT_AP;
5814
Dasari Srinivase18b2cf2014-10-28 17:09:42 +05305815 feature_set_matrix[feature_sets++] = WIFI_FEATURE_INFRA |
5816 WIFI_FEATURE_SOFT_AP |
5817 WIFI_FEATURE_P2P;
5818
5819 /* Add more feature combinations here */
5820
5821 feature_sets = VOS_MIN(feature_sets, max_feature_sets);
5822 hddLog(LOG1, FL("Number of feature sets (%d)"), feature_sets);
5823 hddLog(LOG1, "Feature set matrix");
5824 for (i = 0; i < feature_sets; i++)
5825 hddLog(LOG1, "[%d] 0x%02X", i, feature_set_matrix[i]);
5826
5827 reply_skb = cfg80211_vendor_cmd_alloc_reply_skb(wiphy, sizeof(u32) +
5828 sizeof(u32) * feature_sets +
5829 NLMSG_HDRLEN);
5830
5831 if (reply_skb) {
5832 if (nla_put_u32(reply_skb,
5833 QCA_WLAN_VENDOR_ATTR_GET_CONCURRENCY_MATRIX_RESULTS_SET_SIZE,
5834 feature_sets) ||
5835 nla_put(reply_skb,
5836 QCA_WLAN_VENDOR_ATTR_GET_CONCURRENCY_MATRIX_RESULTS_SET,
5837 sizeof(u32) * feature_sets, feature_set_matrix)) {
5838 hddLog(LOGE, FL("nla put fail"));
5839 kfree_skb(reply_skb);
5840 return -EINVAL;
5841 }
5842
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05305843 ret = cfg80211_vendor_cmd_reply(reply_skb);
5844 EXIT();
5845 return ret;
Dasari Srinivase18b2cf2014-10-28 17:09:42 +05305846 }
5847 hddLog(LOGE, FL("Feature set matrix: buffer alloc fail"));
5848 return -ENOMEM;
5849
Dasari Srinivase18b2cf2014-10-28 17:09:42 +05305850}
5851
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05305852static int
5853wlan_hdd_cfg80211_get_concurrency_matrix(struct wiphy *wiphy,
5854 struct wireless_dev *wdev,
5855 const void *data, int data_len)
5856{
5857 int ret = 0;
5858
5859 vos_ssr_protect(__func__);
5860 ret = __wlan_hdd_cfg80211_get_concurrency_matrix(wiphy, wdev, data,
5861 data_len);
5862 vos_ssr_unprotect(__func__);
5863
5864 return ret;
5865}
5866
c_manjeecfd1efb2015-09-25 19:32:34 +05305867
5868static int
5869__wlan_hdd_cfg80211_get_fw_mem_dump(struct wiphy *wiphy,
5870 struct wireless_dev *wdev,
5871 const void *data, int data_len)
5872{
5873 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
5874 int ret;
5875 ENTER();
5876
5877 ret = wlan_hdd_validate_context(pHddCtx);
5878 if (0 != ret)
5879 {
5880 return ret;
5881 }
5882
5883 if( !pHddCtx->cfg_ini->enableFwrMemDump ||
5884 (FALSE == sme_IsFeatureSupportedByFW(MEMORY_DUMP_SUPPORTED)))
5885 {
5886 hddLog(VOS_TRACE_LEVEL_INFO, FL("FW dump Logging not supported"));
5887 return -EINVAL;
5888 }
5889 /*call common API for FW mem dump req*/
5890 ret = wlan_hdd_fw_mem_dump_req(pHddCtx);
5891
Abhishek Singhc783fa72015-12-09 18:07:34 +05305892 if (!ret)
c_manjee04b4c5c2015-10-13 18:35:01 +05305893 {
5894 /*indicate to userspace the status of fw mem dump */
5895 wlan_indicate_mem_dump_complete(true);
5896 }
5897 else
5898 {
5899 /*else send failure to userspace */
5900 wlan_indicate_mem_dump_complete(false);
5901 }
c_manjeecfd1efb2015-09-25 19:32:34 +05305902 EXIT();
5903 return ret;
5904}
5905
5906/**
5907 * wlan_hdd_cfg80211_get_fw_mem_dump() - Get FW memory dump
5908 * @wiphy: pointer to wireless wiphy structure.
5909 * @wdev: pointer to wireless_dev structure.
5910 * @data: Pointer to the NL data.
5911 * @data_len:Length of @data
5912 *
5913 * This is called when wlan driver needs to get the firmware memory dump
5914 * via vendor specific command.
5915 *
5916 * Return: 0 on success, error number otherwise.
5917 */
5918
5919static int
5920wlan_hdd_cfg80211_get_fw_mem_dump(struct wiphy *wiphy,
5921 struct wireless_dev *wdev,
5922 const void *data, int data_len)
Sushant Kaushik8e644982015-09-23 12:18:54 +05305923{
5924 int ret = 0;
5925 vos_ssr_protect(__func__);
5926 ret = __wlan_hdd_cfg80211_get_fw_mem_dump(wiphy, wdev, data,
5927 data_len);
5928 vos_ssr_unprotect(__func__);
5929 return ret;
5930}
c_manjeecfd1efb2015-09-25 19:32:34 +05305931
Sushant Kaushik8e644982015-09-23 12:18:54 +05305932static const struct
5933nla_policy
5934qca_wlan_vendor_wifi_logger_start_policy
5935[QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_START_MAX + 1] = {
5936 [QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_RING_ID]
5937 = {.type = NLA_U32 },
5938 [QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_VERBOSE_LEVEL]
5939 = {.type = NLA_U32 },
5940 [QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_FLAGS]
5941 = {.type = NLA_U32 },
5942};
5943
5944/**
5945 * __wlan_hdd_cfg80211_wifi_logger_start() - This function is used to enable
5946 * or disable the collection of packet statistics from the firmware
5947 * @wiphy: WIPHY structure pointer
5948 * @wdev: Wireless device structure pointer
5949 * @data: Pointer to the data received
5950 * @data_len: Length of the data received
5951 *
5952 * This function is used to enable or disable the collection of packet
5953 * statistics from the firmware
5954 *
5955 * Return: 0 on success and errno on failure
5956 */
5957static int __wlan_hdd_cfg80211_wifi_logger_start(struct wiphy *wiphy,
5958 struct wireless_dev *wdev,
5959 const void *data,
5960 int data_len)
5961{
5962 eHalStatus status;
5963 hdd_context_t *hdd_ctx = wiphy_priv(wiphy);
5964 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_START_MAX + 1];
5965 tAniWifiStartLog start_log;
5966
5967 status = wlan_hdd_validate_context(hdd_ctx);
5968 if (0 != status) {
5969 return -EINVAL;
5970 }
5971
5972 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_START_MAX,
5973 data, data_len,
5974 qca_wlan_vendor_wifi_logger_start_policy)) {
5975 hddLog(LOGE, FL("Invalid attribute"));
5976 return -EINVAL;
5977 }
5978
5979 /* Parse and fetch ring id */
5980 if (!tb[QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_RING_ID]) {
5981 hddLog(LOGE, FL("attr ATTR failed"));
5982 return -EINVAL;
5983 }
5984 start_log.ringId = nla_get_u32(
5985 tb[QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_RING_ID]);
5986 hddLog(LOG1, FL("Ring ID=%d"), start_log.ringId);
5987
5988 /* Parse and fetch verbose level */
5989 if (!tb[QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_VERBOSE_LEVEL]) {
5990 hddLog(LOGE, FL("attr verbose_level failed"));
5991 return -EINVAL;
5992 }
5993 start_log.verboseLevel = nla_get_u32(
5994 tb[QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_VERBOSE_LEVEL]);
5995 hddLog(LOG1, FL("verbose_level=%d"), start_log.verboseLevel);
5996
5997 /* Parse and fetch flag */
5998 if (!tb[QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_FLAGS]) {
5999 hddLog(LOGE, FL("attr flag failed"));
6000 return -EINVAL;
6001 }
6002 start_log.flag = nla_get_u32(
6003 tb[QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_FLAGS]);
6004 hddLog(LOG1, FL("flag=%d"), start_log.flag);
6005
6006 if ((RING_ID_PER_PACKET_STATS == start_log.ringId) &&
Sushant Kaushik33200572015-08-05 16:46:20 +05306007 (!hdd_ctx->cfg_ini->wlanPerPktStatsLogEnable ||
6008 !vos_isPktStatsEnabled()))
6009
Sushant Kaushik8e644982015-09-23 12:18:54 +05306010 {
6011 hddLog(LOGE, FL("per pkt stats not enabled"));
6012 return -EINVAL;
6013 }
Sushant Kaushik8e644982015-09-23 12:18:54 +05306014
Sushant Kaushik33200572015-08-05 16:46:20 +05306015 vos_set_ring_log_level(start_log.ringId, start_log.verboseLevel);
Sushant Kaushik8e644982015-09-23 12:18:54 +05306016 return 0;
6017}
6018
6019/**
6020 * wlan_hdd_cfg80211_wifi_logger_start() - Wrapper function used to enable
6021 * or disable the collection of packet statistics from the firmware
6022 * @wiphy: WIPHY structure pointer
6023 * @wdev: Wireless device structure pointer
6024 * @data: Pointer to the data received
6025 * @data_len: Length of the data received
6026 *
6027 * This function is used to enable or disable the collection of packet
6028 * statistics from the firmware
6029 *
6030 * Return: 0 on success and errno on failure
6031 */
6032static int wlan_hdd_cfg80211_wifi_logger_start(struct wiphy *wiphy,
6033 struct wireless_dev *wdev,
6034 const void *data,
6035 int data_len)
c_manjeecfd1efb2015-09-25 19:32:34 +05306036{
6037 int ret = 0;
6038
6039 vos_ssr_protect(__func__);
Sushant Kaushik8e644982015-09-23 12:18:54 +05306040
6041 ret = __wlan_hdd_cfg80211_wifi_logger_start(wiphy,
6042 wdev, data, data_len);
c_manjeecfd1efb2015-09-25 19:32:34 +05306043 vos_ssr_unprotect(__func__);
6044
6045 return ret;
c_manjeecfd1efb2015-09-25 19:32:34 +05306046}
6047
6048
Agarwal Ashish738843c2014-09-25 12:27:56 +05306049static const struct nla_policy
6050wlan_hdd_set_no_dfs_flag_config_policy[QCA_WLAN_VENDOR_ATTR_SET_NO_DFS_FLAG_MAX
6051 +1] =
6052{
6053 [QCA_WLAN_VENDOR_ATTR_SET_NO_DFS_FLAG] = {.type = NLA_U32 },
6054};
6055
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05306056static int __wlan_hdd_cfg80211_disable_dfs_channels(struct wiphy *wiphy,
Agarwal Ashish738843c2014-09-25 12:27:56 +05306057 struct wireless_dev *wdev,
Jeff Johnson393c2702014-12-16 11:09:35 +05306058 const void *data,
Agarwal Ashish738843c2014-09-25 12:27:56 +05306059 int data_len)
6060{
6061 struct net_device *dev = wdev->netdev;
6062 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
6063 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
6064 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
6065 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_SET_NO_DFS_FLAG_MAX + 1];
6066 eHalStatus status;
6067 u32 dfsFlag = 0;
6068
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05306069 ENTER();
6070
Agarwal Ashish738843c2014-09-25 12:27:56 +05306071 status = wlan_hdd_validate_context(pHddCtx);
6072 if (0 != status) {
Agarwal Ashish738843c2014-09-25 12:27:56 +05306073 return -EINVAL;
6074 }
6075 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_SET_NO_DFS_FLAG_MAX,
6076 data, data_len,
6077 wlan_hdd_set_no_dfs_flag_config_policy)) {
6078 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid ATTR"));
6079 return -EINVAL;
6080 }
6081
6082 /* Parse and fetch required bandwidth kbps */
6083 if (!tb[QCA_WLAN_VENDOR_ATTR_SET_NO_DFS_FLAG]) {
6084 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr dfs flag failed"));
6085 return -EINVAL;
6086 }
6087
6088 dfsFlag = nla_get_u32(
6089 tb[QCA_WLAN_VENDOR_ATTR_SET_NO_DFS_FLAG]);
6090 hddLog(VOS_TRACE_LEVEL_INFO, FL(" DFS flag (%d)"),
6091 dfsFlag);
6092
6093 pHddCtx->disable_dfs_flag = dfsFlag;
6094
6095 sme_disable_dfs_channel(hHal, dfsFlag);
6096 sme_FilterScanResults(hHal, pAdapter->sessionId);
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05306097
6098 EXIT();
Agarwal Ashish738843c2014-09-25 12:27:56 +05306099 return 0;
6100}
Atul Mittal115287b2014-07-08 13:26:33 +05306101
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05306102static int wlan_hdd_cfg80211_disable_dfs_channels(struct wiphy *wiphy,
6103 struct wireless_dev *wdev,
6104 const void *data,
6105 int data_len)
6106{
6107 int ret = 0;
6108
6109 vos_ssr_protect(__func__);
6110 ret = __wlan_hdd_cfg80211_disable_dfs_channels(wiphy, wdev, data, data_len);
6111 vos_ssr_unprotect(__func__);
6112
6113 return ret;
6114
6115}
6116
Mukul Sharma2a271632014-10-13 14:59:01 +05306117const struct
6118nla_policy qca_wlan_vendor_attr[QCA_WLAN_VENDOR_ATTR_MAX+1] =
6119{
6120 [QCA_WLAN_VENDOR_ATTR_ROAMING_POLICY] = { .type = NLA_U32 },
6121 [QCA_WLAN_VENDOR_ATTR_MAC_ADDR] = { .type = NLA_UNSPEC },
6122};
6123
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05306124static int __wlan_hdd_cfg80211_firmware_roaming(struct wiphy *wiphy,
Jeff Johnson393c2702014-12-16 11:09:35 +05306125 struct wireless_dev *wdev, const void *data, int data_len)
Mukul Sharma2a271632014-10-13 14:59:01 +05306126{
6127
6128 u8 bssid[6] = {0};
6129 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
6130 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_MAX + 1];
6131 eHalStatus status = eHAL_STATUS_SUCCESS;
6132 v_U32_t isFwrRoamEnabled = FALSE;
6133 int ret;
6134
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05306135 ENTER();
6136
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05306137 ret = wlan_hdd_validate_context(pHddCtx);
6138 if (0 != ret) {
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05306139 return ret;
Mukul Sharma2a271632014-10-13 14:59:01 +05306140 }
6141
6142 ret = nla_parse(tb, QCA_WLAN_VENDOR_ATTR_MAX,
6143 data, data_len,
6144 qca_wlan_vendor_attr);
6145 if (ret){
6146 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid ATTR"));
6147 return -EINVAL;
6148 }
6149
6150 /* Parse and fetch Enable flag */
6151 if (!tb[QCA_WLAN_VENDOR_ATTR_ROAMING_POLICY]) {
6152 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr enable failed"));
6153 return -EINVAL;
6154 }
6155
6156 isFwrRoamEnabled = nla_get_u32(
6157 tb[QCA_WLAN_VENDOR_ATTR_ROAMING_POLICY]);
6158
6159 hddLog(VOS_TRACE_LEVEL_INFO, FL("isFwrRoamEnabled (%d)"), isFwrRoamEnabled);
6160
6161 /* Parse and fetch bssid */
6162 if (!tb[QCA_WLAN_VENDOR_ATTR_MAC_ADDR]) {
6163 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr bss id failed"));
6164 return -EINVAL;
6165 }
6166
6167 memcpy(bssid, nla_data(
6168 tb[QCA_WLAN_VENDOR_ATTR_MAC_ADDR]),
6169 sizeof(bssid));
6170 hddLog(VOS_TRACE_LEVEL_INFO, FL(MAC_ADDRESS_STR),MAC_ADDR_ARRAY(bssid));
6171
6172 //Update roaming
6173 status = sme_ConfigFwrRoaming((tHalHandle)(pHddCtx->hHal), isFwrRoamEnabled);
Abhishek Singhc6ab38f2016-06-28 17:48:16 +05306174 if (!HAL_STATUS_SUCCESS(status)) {
6175 hddLog(LOGE,
6176 FL("sme_ConfigFwrRoaming failed (err=%d)"), status);
6177 return -EINVAL;
6178 }
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +05306179 EXIT();
Abhishek Singhc6ab38f2016-06-28 17:48:16 +05306180 return 0;
Mukul Sharma2a271632014-10-13 14:59:01 +05306181}
6182
Mahesh A Saptasagare5440c72015-01-28 21:21:07 +05306183static int wlan_hdd_cfg80211_firmware_roaming(struct wiphy *wiphy,
6184 struct wireless_dev *wdev, const void *data, int data_len)
6185{
6186 int ret = 0;
6187
6188 vos_ssr_protect(__func__);
6189 ret = __wlan_hdd_cfg80211_firmware_roaming(wiphy, wdev, data, data_len);
6190 vos_ssr_unprotect(__func__);
6191
6192 return ret;
6193}
6194
Sushant Kaushik847890c2015-09-28 16:05:17 +05306195static const struct
6196nla_policy
6197qca_wlan_vendor_get_wifi_info_policy[
6198 QCA_WLAN_VENDOR_ATTR_WIFI_INFO_GET_MAX +1] = {
6199 [QCA_WLAN_VENDOR_ATTR_WIFI_INFO_DRIVER_VERSION] = {.type = NLA_U8 },
6200 [QCA_WLAN_VENDOR_ATTR_WIFI_INFO_FIRMWARE_VERSION] = {.type = NLA_U8 },
6201};
6202
6203
6204/**
6205 * __wlan_hdd_cfg80211_get_wifi_info() - Get the wifi driver related info
6206 * @wiphy: pointer to wireless wiphy structure.
6207 * @wdev: pointer to wireless_dev structure.
6208 * @data: Pointer to the data to be passed via vendor interface
6209 * @data_len:Length of the data to be passed
6210 *
6211 * This is called when wlan driver needs to send wifi driver related info
6212 * (driver/fw version) to the user space application upon request.
6213 *
6214 * Return: Return the Success or Failure code.
6215 */
6216static int __wlan_hdd_cfg80211_get_wifi_info(struct wiphy *wiphy,
6217 struct wireless_dev *wdev,
6218 const void *data, int data_len)
6219{
6220 hdd_context_t *hdd_ctx = wiphy_priv(wiphy);
6221 struct nlattr *tb_vendor[QCA_WLAN_VENDOR_ATTR_WIFI_INFO_GET_MAX + 1];
6222 tSirVersionString version;
6223 uint32 version_len;
6224 uint8 attr;
6225 int status;
6226 struct sk_buff *reply_skb = NULL;
6227
6228 if (VOS_FTM_MODE == hdd_get_conparam()) {
6229 hddLog(LOGE, FL("Command not allowed in FTM mode"));
6230 return -EINVAL;
6231 }
6232
6233 status = wlan_hdd_validate_context(hdd_ctx);
6234 if (0 != status) {
6235 hddLog(LOGE, FL("HDD context is not valid"));
6236 return -EINVAL;
6237 }
6238
6239 if (nla_parse(tb_vendor, QCA_WLAN_VENDOR_ATTR_WIFI_INFO_GET_MAX, data,
6240 data_len, qca_wlan_vendor_get_wifi_info_policy)) {
6241 hddLog(LOGE, FL("WIFI_INFO_GET NL CMD parsing failed"));
6242 return -EINVAL;
6243 }
6244
6245 if (tb_vendor[QCA_WLAN_VENDOR_ATTR_WIFI_INFO_DRIVER_VERSION]) {
6246 hddLog(LOG1, FL("Rcvd req for Driver version Driver version is %s"),
6247 QWLAN_VERSIONSTR);
6248 strlcpy(version, QWLAN_VERSIONSTR, sizeof(version));
6249 attr = QCA_WLAN_VENDOR_ATTR_WIFI_INFO_DRIVER_VERSION;
6250 } else if (tb_vendor[QCA_WLAN_VENDOR_ATTR_WIFI_INFO_FIRMWARE_VERSION]) {
6251 hddLog(LOG1, FL("Rcvd req for FW version FW version is %s"),
6252 hdd_ctx->fw_Version);
6253 strlcpy(version, hdd_ctx->fw_Version, sizeof(version));
6254 attr = QCA_WLAN_VENDOR_ATTR_WIFI_INFO_FIRMWARE_VERSION;
6255 } else {
6256 hddLog(LOGE, FL("Invalid attribute in get wifi info request"));
6257 return -EINVAL;
6258 }
6259
6260 version_len = strlen(version);
6261 reply_skb = cfg80211_vendor_cmd_alloc_reply_skb(wiphy,
6262 version_len + NLA_HDRLEN + NLMSG_HDRLEN);
6263 if (!reply_skb) {
6264 hddLog(LOGE, FL("cfg80211_vendor_cmd_alloc_reply_skb failed"));
6265 return -ENOMEM;
6266 }
6267
6268 if (nla_put(reply_skb, attr, version_len, version)) {
6269 hddLog(LOGE, FL("nla put fail"));
6270 kfree_skb(reply_skb);
6271 return -EINVAL;
6272 }
6273
6274 return cfg80211_vendor_cmd_reply(reply_skb);
6275}
6276
6277/**
6278 * __wlan_hdd_cfg80211_get_wifi_info() - Get the wifi driver related info
6279 * @wiphy: pointer to wireless wiphy structure.
6280 * @wdev: pointer to wireless_dev structure.
6281 * @data: Pointer to the data to be passed via vendor interface
6282 * @data_len:Length of the data to be passed
6283 * @data_len: Length of the data received
6284 *
6285 * This function is used to enable or disable the collection of packet
6286 * statistics from the firmware
6287 *
6288 * Return: 0 on success and errno on failure
6289 */
6290
6291static int
6292wlan_hdd_cfg80211_get_wifi_info(struct wiphy *wiphy,
6293 struct wireless_dev *wdev,
6294 const void *data, int data_len)
6295
6296
6297{
6298 int ret = 0;
6299
6300 vos_ssr_protect(__func__);
6301 ret = __wlan_hdd_cfg80211_get_wifi_info(wiphy,
6302 wdev, data, data_len);
6303 vos_ssr_unprotect(__func__);
6304
6305 return ret;
6306}
6307
6308
Gupta, Kapil7c34b322015-09-30 13:12:35 +05306309/*
6310 * define short names for the global vendor params
6311 * used by __wlan_hdd_cfg80211_monitor_rssi()
6312 */
6313#define PARAM_MAX QCA_WLAN_VENDOR_ATTR_RSSI_MONITORING_MAX
6314#define PARAM_REQUEST_ID QCA_WLAN_VENDOR_ATTR_RSSI_MONITORING_REQUEST_ID
6315#define PARAM_CONTROL QCA_WLAN_VENDOR_ATTR_RSSI_MONITORING_CONTROL
6316#define PARAM_MIN_RSSI QCA_WLAN_VENDOR_ATTR_RSSI_MONITORING_MIN_RSSI
6317#define PARAM_MAX_RSSI QCA_WLAN_VENDOR_ATTR_RSSI_MONITORING_MAX_RSSI
6318
6319/**---------------------------------------------------------------------------
6320
6321 \brief hdd_rssi_monitor_start_done - callback to be executed when rssi
6322 monitor start is completed successfully.
6323
6324 \return - None
6325
6326 --------------------------------------------------------------------------*/
6327void hdd_rssi_monitor_start_done(void *fwRssiMonitorCbContext, VOS_STATUS status)
6328{
6329 hdd_context_t* pHddCtx = (hdd_context_t*)fwRssiMonitorCbContext;
6330
6331 if (NULL == pHddCtx)
6332 {
6333 hddLog(VOS_TRACE_LEVEL_ERROR,
6334 "%s: HDD context is NULL",__func__);
6335 return;
6336 }
6337
6338 if (VOS_STATUS_SUCCESS == status)
6339 {
6340 hddLog(VOS_TRACE_LEVEL_INFO, FL("Rssi Monitor start successful"));
6341 }
6342 else
6343 {
6344 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Rssi Monitor start not successful"));
6345 }
6346
6347 return;
6348}
6349
6350/**---------------------------------------------------------------------------
6351
6352 \brief hdd_rssi_monitor_stop_done - callback to be executed when rssi monitor
6353 stop is completed successfully.
6354
6355 \return - None
6356
6357 --------------------------------------------------------------------------*/
6358void hdd_rssi_monitor_stop_done(void *fwRssiMonitorCbContext, VOS_STATUS status)
6359{
6360 hdd_context_t* pHddCtx = (hdd_context_t*)fwRssiMonitorCbContext;
6361
6362 if (NULL == pHddCtx)
6363 {
6364 hddLog(VOS_TRACE_LEVEL_ERROR,
6365 "%s: HDD context is NULL",__func__);
6366 return;
6367 }
6368
6369 if (VOS_STATUS_SUCCESS == status)
6370 {
6371 hddLog(VOS_TRACE_LEVEL_INFO, FL("Rssi Monitor stop successful"));
6372 }
6373 else
6374 {
6375 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Rssi Monitor stop not successful"));
6376 }
6377
6378 return;
6379}
6380
6381/**
6382 * __wlan_hdd_cfg80211_monitor_rssi() - monitor rssi
6383 * @wiphy: Pointer to wireless phy
6384 * @wdev: Pointer to wireless device
6385 * @data: Pointer to data
6386 * @data_len: Data length
6387 *
6388 * Return: 0 on success, negative errno on failure
6389 */
6390
6391static int
6392__wlan_hdd_cfg80211_monitor_rssi(struct wiphy *wiphy,
6393 struct wireless_dev *wdev,
6394 const void *data,
6395 int data_len)
6396{
6397 struct net_device *dev = wdev->netdev;
6398 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
6399 hdd_context_t *hdd_ctx = wiphy_priv(wiphy);
6400 hdd_station_ctx_t *pHddStaCtx;
6401 struct nlattr *tb[PARAM_MAX + 1];
6402 tpSirRssiMonitorReq pReq;
6403 eHalStatus status;
6404 int ret;
6405 uint32_t control;
6406 static const struct nla_policy policy[PARAM_MAX + 1] = {
6407 [PARAM_REQUEST_ID] = { .type = NLA_U32 },
6408 [PARAM_CONTROL] = { .type = NLA_U32 },
6409 [PARAM_MIN_RSSI] = { .type = NLA_S8 },
6410 [PARAM_MAX_RSSI] = { .type = NLA_S8 },
6411 };
6412
6413 ENTER();
6414
6415 ret = wlan_hdd_validate_context(hdd_ctx);
6416 if (0 != ret) {
6417 return -EINVAL;
6418 }
6419
6420 if (!hdd_connIsConnected(WLAN_HDD_GET_STATION_CTX_PTR(pAdapter))) {
6421 hddLog(LOGE, FL("Not in Connected state!"));
6422 return -ENOTSUPP;
6423 }
6424
6425 if (nla_parse(tb, PARAM_MAX, data, data_len, policy)) {
6426 hddLog(LOGE, FL("Invalid ATTR"));
6427 return -EINVAL;
6428 }
6429
6430 if (!tb[PARAM_REQUEST_ID]) {
6431 hddLog(LOGE, FL("attr request id failed"));
6432 return -EINVAL;
6433 }
6434
6435 if (!tb[PARAM_CONTROL]) {
6436 hddLog(LOGE, FL("attr control failed"));
6437 return -EINVAL;
6438 }
6439
6440 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
6441
6442 pReq = vos_mem_malloc(sizeof(tSirRssiMonitorReq));
6443 if(NULL == pReq)
6444 {
6445 hddLog(LOGE,
6446 FL("vos_mem_alloc failed "));
6447 return eHAL_STATUS_FAILED_ALLOC;
6448 }
6449 vos_mem_set(pReq, sizeof(tSirRssiMonitorReq), 0);
6450
6451 pReq->requestId = nla_get_u32(tb[PARAM_REQUEST_ID]);
6452 pReq->sessionId = pAdapter->sessionId;
6453 pReq->rssiMonitorCbContext = hdd_ctx;
6454 control = nla_get_u32(tb[PARAM_CONTROL]);
6455 vos_mem_copy( &pReq->currentBssId, pHddStaCtx->conn_info.bssId, WNI_CFG_BSSID_LEN);
6456
6457 hddLog(LOG1, FL("Request Id: %u Session_id: %d Control: %d"),
6458 pReq->requestId, pReq->sessionId, control);
6459
6460 if (control == QCA_WLAN_RSSI_MONITORING_START) {
6461 if (!tb[PARAM_MIN_RSSI]) {
6462 hddLog(LOGE, FL("attr min rssi failed"));
Sreelakshmi Konamkideb22532016-04-14 14:59:13 +05306463 goto fail;
Gupta, Kapil7c34b322015-09-30 13:12:35 +05306464 }
6465
6466 if (!tb[PARAM_MAX_RSSI]) {
6467 hddLog(LOGE, FL("attr max rssi failed"));
Sreelakshmi Konamkideb22532016-04-14 14:59:13 +05306468 goto fail;
Gupta, Kapil7c34b322015-09-30 13:12:35 +05306469 }
6470
6471 pReq->minRssi = nla_get_s8(tb[PARAM_MIN_RSSI]);
6472 pReq->maxRssi = nla_get_s8(tb[PARAM_MAX_RSSI]);
6473 pReq->rssiMonitorCallback = hdd_rssi_monitor_start_done;
6474
6475 if (!(pReq->minRssi < pReq->maxRssi)) {
6476 hddLog(LOGW, FL("min_rssi: %d must be less than max_rssi: %d"),
6477 pReq->minRssi, pReq->maxRssi);
Sreelakshmi Konamkideb22532016-04-14 14:59:13 +05306478 goto fail;
Gupta, Kapil7c34b322015-09-30 13:12:35 +05306479 }
6480 hddLog(LOG1, FL("Min_rssi: %d Max_rssi: %d"),
6481 pReq->minRssi, pReq->maxRssi);
6482 status = sme_StartRssiMonitoring(hdd_ctx->hHal, pReq);
6483
6484 }
6485 else if (control == QCA_WLAN_RSSI_MONITORING_STOP) {
6486 pReq->rssiMonitorCallback = hdd_rssi_monitor_stop_done;
6487 status = sme_StopRssiMonitoring(hdd_ctx->hHal, pReq);
6488 }
6489 else {
6490 hddLog(LOGE, FL("Invalid control cmd: %d"), control);
Sreelakshmi Konamkideb22532016-04-14 14:59:13 +05306491 goto fail;
Gupta, Kapil7c34b322015-09-30 13:12:35 +05306492 }
6493
6494 if (!HAL_STATUS_SUCCESS(status)) {
6495 hddLog(LOGE,
6496 FL("sme_set_rssi_monitoring failed(err=%d)"), status);
Sreelakshmi Konamkideb22532016-04-14 14:59:13 +05306497 goto fail;
Gupta, Kapil7c34b322015-09-30 13:12:35 +05306498 }
6499
6500 return 0;
Sreelakshmi Konamkideb22532016-04-14 14:59:13 +05306501fail:
6502 vos_mem_free(pReq);
6503 return -EINVAL;
Gupta, Kapil7c34b322015-09-30 13:12:35 +05306504}
6505
6506/*
6507 * done with short names for the global vendor params
6508 * used by __wlan_hdd_cfg80211_monitor_rssi()
6509 */
6510#undef PARAM_MAX
6511#undef PARAM_CONTROL
6512#undef PARAM_REQUEST_ID
6513#undef PARAM_MAX_RSSI
6514#undef PARAM_MIN_RSSI
6515
6516/**
6517 * wlan_hdd_cfg80211_monitor_rssi() - SSR wrapper to rssi monitoring
6518 * @wiphy: wiphy structure pointer
6519 * @wdev: Wireless device structure pointer
6520 * @data: Pointer to the data received
6521 * @data_len: Length of @data
6522 *
6523 * Return: 0 on success; errno on failure
6524 */
6525static int
6526wlan_hdd_cfg80211_monitor_rssi(struct wiphy *wiphy, struct wireless_dev *wdev,
6527 const void *data, int data_len)
6528{
6529 int ret;
6530
6531 vos_ssr_protect(__func__);
6532 ret = __wlan_hdd_cfg80211_monitor_rssi(wiphy, wdev, data, data_len);
6533 vos_ssr_unprotect(__func__);
6534
6535 return ret;
6536}
6537
6538/**
6539 * hdd_rssi_threshold_breached_cb() - rssi breached NL event
6540 * @hddctx: HDD context
6541 * @data: rssi breached event data
6542 *
6543 * This function reads the rssi breached event %data and fill in the skb with
6544 * NL attributes and send up the NL event.
6545 * This callback execute in atomic context and must not invoke any
6546 * blocking calls.
6547 *
6548 * Return: none
6549 */
6550void hdd_rssi_threshold_breached_cb(void *hddctx,
6551 struct rssi_breach_event *data)
6552{
6553 hdd_context_t *pHddCtx = (hdd_context_t *)hddctx;
6554 int status;
6555 struct sk_buff *skb;
6556
6557 ENTER();
6558 status = wlan_hdd_validate_context(pHddCtx);
6559
6560 if (0 != status) {
6561 return;
6562 }
6563
6564 if (!data) {
6565 hddLog(LOGE, FL("data is null"));
6566 return;
6567 }
6568
6569 skb = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
6570#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 18, 0))
6571 NULL,
6572#endif
6573 EXTSCAN_EVENT_BUF_SIZE + NLMSG_HDRLEN,
6574 QCA_NL80211_VENDOR_SUBCMD_MONITOR_RSSI_INDEX,
6575 GFP_KERNEL);
6576
6577 if (!skb) {
6578 hddLog(LOGE, FL("cfg80211_vendor_event_alloc failed"));
6579 return;
6580 }
6581
6582 hddLog(LOG1, "Req Id: %u Current rssi: %d",
6583 data->request_id, data->curr_rssi);
6584 hddLog(LOG1, "Current BSSID: "MAC_ADDRESS_STR,
6585 MAC_ADDR_ARRAY(data->curr_bssid.bytes));
6586
6587 if (nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_RSSI_MONITORING_REQUEST_ID,
6588 data->request_id) ||
6589 nla_put(skb, QCA_WLAN_VENDOR_ATTR_RSSI_MONITORING_CUR_BSSID,
6590 sizeof(data->curr_bssid), data->curr_bssid.bytes) ||
6591 nla_put_s8(skb, QCA_WLAN_VENDOR_ATTR_RSSI_MONITORING_CUR_RSSI,
6592 data->curr_rssi)) {
6593 hddLog(LOGE, FL("nla put fail"));
6594 goto fail;
6595 }
6596
6597 cfg80211_vendor_event(skb, GFP_KERNEL);
6598 return;
6599
6600fail:
6601 kfree_skb(skb);
6602 return;
6603}
6604
6605
6606
Srinivas Dasari41d97c92015-07-29 13:09:39 +05306607/**
6608 * __wlan_hdd_cfg80211_setband() - set band
6609 * @wiphy: Pointer to wireless phy
6610 * @wdev: Pointer to wireless device
6611 * @data: Pointer to data
6612 * @data_len: Data length
6613 *
6614 * Return: 0 on success, negative errno on failure
6615 */
6616static int
6617__wlan_hdd_cfg80211_setband(struct wiphy *wiphy,
6618 struct wireless_dev *wdev,
6619 const void *data,
6620 int data_len)
6621{
6622 struct net_device *dev = wdev->netdev;
6623 hdd_context_t *hdd_ctx = wiphy_priv(wiphy);
6624 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_MAX + 1];
6625 int ret;
6626 static const struct nla_policy policy[QCA_WLAN_VENDOR_ATTR_MAX + 1]
6627 = {[QCA_WLAN_VENDOR_ATTR_SETBAND_VALUE] = { .type = NLA_U32 }};
6628
6629 ENTER();
6630
6631 ret = wlan_hdd_validate_context(hdd_ctx);
6632 if (0 != ret) {
6633 hddLog(LOGE, FL("HDD context is not valid"));
6634 return ret;
6635 }
6636
6637 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_MAX, data, data_len,
6638 policy)) {
6639 hddLog(LOGE, FL("Invalid ATTR"));
6640 return -EINVAL;
6641 }
6642
6643 if (!tb[QCA_WLAN_VENDOR_ATTR_SETBAND_VALUE]) {
6644 hddLog(LOGE, FL("attr QCA_WLAN_VENDOR_ATTR_SETBAND_VALUE failed"));
6645 return -EINVAL;
6646 }
6647
Hanumantha Reddy Pothula1347e432015-08-05 09:53:44 +05306648 hdd_ctx->isSetBandByNL = TRUE;
6649 ret = hdd_setBand(dev,
Srinivas Dasari41d97c92015-07-29 13:09:39 +05306650 nla_get_u32(tb[QCA_WLAN_VENDOR_ATTR_SETBAND_VALUE]));
Hanumantha Reddy Pothula1347e432015-08-05 09:53:44 +05306651 hdd_ctx->isSetBandByNL = FALSE;
6652
6653 EXIT();
6654 return ret;
Srinivas Dasari41d97c92015-07-29 13:09:39 +05306655}
6656
6657/**
6658 * wlan_hdd_cfg80211_setband() - Wrapper to offload packets
6659 * @wiphy: wiphy structure pointer
6660 * @wdev: Wireless device structure pointer
6661 * @data: Pointer to the data received
6662 * @data_len: Length of @data
6663 *
6664 * Return: 0 on success; errno on failure
6665 */
6666static int wlan_hdd_cfg80211_setband(struct wiphy *wiphy,
6667 struct wireless_dev *wdev,
6668 const void *data,
6669 int data_len)
6670{
6671 int ret = 0;
6672
6673 vos_ssr_protect(__func__);
6674 ret = __wlan_hdd_cfg80211_setband(wiphy,
6675 wdev, data, data_len);
6676 vos_ssr_unprotect(__func__);
6677
6678 return ret;
6679}
6680
Srinivas Girigowda8bf64cb2015-09-30 19:50:09 +05306681#ifdef WLAN_FEATURE_OFFLOAD_PACKETS
6682/**
6683 * hdd_map_req_id_to_pattern_id() - map request id to pattern id
6684 * @hdd_ctx: HDD context
6685 * @request_id: [input] request id
6686 * @pattern_id: [output] pattern id
6687 *
6688 * This function loops through request id to pattern id array
6689 * if the slot is available, store the request id and return pattern id
6690 * if entry exists, return the pattern id
6691 *
6692 * Return: 0 on success and errno on failure
6693 */
6694static int hdd_map_req_id_to_pattern_id(hdd_context_t *hdd_ctx,
6695 uint32_t request_id,
6696 uint8_t *pattern_id)
6697{
6698 uint32_t i;
6699
6700 mutex_lock(&hdd_ctx->op_ctx.op_lock);
6701 for (i = 0; i < MAXNUM_PERIODIC_TX_PTRNS; i++)
6702 {
6703 if (hdd_ctx->op_ctx.op_table[i].request_id == 0)
6704 {
6705 hdd_ctx->op_ctx.op_table[i].request_id = request_id;
6706 *pattern_id = hdd_ctx->op_ctx.op_table[i].pattern_id;
6707 mutex_unlock(&hdd_ctx->op_ctx.op_lock);
6708 return 0;
6709 } else if (hdd_ctx->op_ctx.op_table[i].request_id ==
6710 request_id) {
6711 *pattern_id = hdd_ctx->op_ctx.op_table[i].pattern_id;
6712 mutex_unlock(&hdd_ctx->op_ctx.op_lock);
6713 return 0;
6714 }
6715 }
6716 mutex_unlock(&hdd_ctx->op_ctx.op_lock);
6717 return -EINVAL;
6718}
6719
6720/**
6721 * hdd_unmap_req_id_to_pattern_id() - unmap request id to pattern id
6722 * @hdd_ctx: HDD context
6723 * @request_id: [input] request id
6724 * @pattern_id: [output] pattern id
6725 *
6726 * This function loops through request id to pattern id array
6727 * reset request id to 0 (slot available again) and
6728 * return pattern id
6729 *
6730 * Return: 0 on success and errno on failure
6731 */
6732static int hdd_unmap_req_id_to_pattern_id(hdd_context_t *hdd_ctx,
6733 uint32_t request_id,
6734 uint8_t *pattern_id)
6735{
6736 uint32_t i;
6737
6738 mutex_lock(&hdd_ctx->op_ctx.op_lock);
6739 for (i = 0; i < MAXNUM_PERIODIC_TX_PTRNS; i++)
6740 {
6741 if (hdd_ctx->op_ctx.op_table[i].request_id == request_id)
6742 {
6743 hdd_ctx->op_ctx.op_table[i].request_id = 0;
6744 *pattern_id = hdd_ctx->op_ctx.op_table[i].pattern_id;
6745 mutex_unlock(&hdd_ctx->op_ctx.op_lock);
6746 return 0;
6747 }
6748 }
6749 mutex_unlock(&hdd_ctx->op_ctx.op_lock);
6750 return -EINVAL;
6751}
6752
6753
6754/*
6755 * define short names for the global vendor params
6756 * used by __wlan_hdd_cfg80211_offloaded_packets()
6757 */
6758#define PARAM_MAX QCA_WLAN_VENDOR_ATTR_OFFLOADED_PACKETS_MAX
6759#define PARAM_REQUEST_ID \
6760 QCA_WLAN_VENDOR_ATTR_OFFLOADED_PACKETS_REQUEST_ID
6761#define PARAM_CONTROL \
6762 QCA_WLAN_VENDOR_ATTR_OFFLOADED_PACKETS_SENDING_CONTROL
6763#define PARAM_IP_PACKET \
6764 QCA_WLAN_VENDOR_ATTR_OFFLOADED_PACKETS_IP_PACKET_DATA
6765#define PARAM_SRC_MAC_ADDR \
6766 QCA_WLAN_VENDOR_ATTR_OFFLOADED_PACKETS_SRC_MAC_ADDR
6767#define PARAM_DST_MAC_ADDR \
6768 QCA_WLAN_VENDOR_ATTR_OFFLOADED_PACKETS_DST_MAC_ADDR
6769#define PARAM_PERIOD QCA_WLAN_VENDOR_ATTR_OFFLOADED_PACKETS_PERIOD
6770
6771/**
6772 * wlan_hdd_add_tx_ptrn() - add tx pattern
6773 * @adapter: adapter pointer
6774 * @hdd_ctx: hdd context
6775 * @tb: nl attributes
6776 *
6777 * This function reads the NL attributes and forms a AddTxPtrn message
6778 * posts it to SME.
6779 *
6780 */
6781static int
6782wlan_hdd_add_tx_ptrn(hdd_adapter_t *adapter, hdd_context_t *hdd_ctx,
6783 struct nlattr **tb)
6784{
6785 struct sSirAddPeriodicTxPtrn *add_req;
6786 eHalStatus status;
6787 uint32_t request_id, ret, len;
6788 uint8_t pattern_id = 0;
6789 v_MACADDR_t dst_addr;
6790 uint16_t eth_type = htons(ETH_P_IP);
6791
6792 if (!hdd_connIsConnected(WLAN_HDD_GET_STATION_CTX_PTR(adapter)))
6793 {
6794 hddLog(LOGE, FL("Not in Connected state!"));
6795 return -ENOTSUPP;
6796 }
6797
6798 add_req = vos_mem_malloc(sizeof(*add_req));
6799 if (!add_req)
6800 {
6801 hddLog(LOGE, FL("memory allocation failed"));
6802 return -ENOMEM;
6803 }
6804
6805 /* Parse and fetch request Id */
6806 if (!tb[PARAM_REQUEST_ID])
6807 {
6808 hddLog(LOGE, FL("attr request id failed"));
6809 goto fail;
6810 }
6811
6812 request_id = nla_get_u32(tb[PARAM_REQUEST_ID]);
6813 hddLog(LOG1, FL("Request Id: %u"), request_id);
6814 if (request_id == 0)
6815 {
6816 hddLog(LOGE, FL("request_id cannot be zero"));
Sreelakshmi Konamkideb22532016-04-14 14:59:13 +05306817 goto fail;
Srinivas Girigowda8bf64cb2015-09-30 19:50:09 +05306818 }
6819
6820 if (!tb[PARAM_PERIOD])
6821 {
6822 hddLog(LOGE, FL("attr period failed"));
6823 goto fail;
6824 }
6825 add_req->usPtrnIntervalMs = nla_get_u32(tb[PARAM_PERIOD]);
6826 hddLog(LOG1, FL("Period: %u ms"), add_req->usPtrnIntervalMs);
6827 if (add_req->usPtrnIntervalMs == 0)
6828 {
6829 hddLog(LOGE, FL("Invalid interval zero, return failure"));
6830 goto fail;
6831 }
6832
6833 if (!tb[PARAM_SRC_MAC_ADDR])
6834 {
6835 hddLog(LOGE, FL("attr source mac address failed"));
6836 goto fail;
6837 }
6838 nla_memcpy(add_req->macAddress, tb[PARAM_SRC_MAC_ADDR],
6839 VOS_MAC_ADDR_SIZE);
6840 hddLog(LOG1, "input src mac address: "MAC_ADDRESS_STR,
6841 MAC_ADDR_ARRAY(add_req->macAddress));
6842
6843 if (memcmp(add_req->macAddress, adapter->macAddressCurrent.bytes,
6844 VOS_MAC_ADDR_SIZE))
6845 {
6846 hddLog(LOGE,
6847 FL("input src mac address and connected ap bssid are different"));
6848 goto fail;
6849 }
6850
6851 if (!tb[PARAM_DST_MAC_ADDR])
6852 {
6853 hddLog(LOGE, FL("attr dst mac address failed"));
6854 goto fail;
6855 }
6856 nla_memcpy(dst_addr.bytes, tb[PARAM_DST_MAC_ADDR], VOS_MAC_ADDR_SIZE);
6857 hddLog(LOG1, "input dst mac address: "MAC_ADDRESS_STR,
6858 MAC_ADDR_ARRAY(dst_addr.bytes));
6859
6860 if (!tb[PARAM_IP_PACKET])
6861 {
6862 hddLog(LOGE, FL("attr ip packet failed"));
6863 goto fail;
6864 }
6865 add_req->ucPtrnSize = nla_len(tb[PARAM_IP_PACKET]);
6866 hddLog(LOG1, FL("IP packet len: %u"), add_req->ucPtrnSize);
6867
6868 if (add_req->ucPtrnSize < 0 ||
6869 add_req->ucPtrnSize > (PERIODIC_TX_PTRN_MAX_SIZE -
6870 HDD_ETH_HEADER_LEN))
6871 {
6872 hddLog(LOGE, FL("Invalid IP packet len: %d"),
6873 add_req->ucPtrnSize);
6874 goto fail;
6875 }
6876
6877 len = 0;
6878 vos_mem_copy(&add_req->ucPattern[0], dst_addr.bytes, VOS_MAC_ADDR_SIZE);
6879 len += VOS_MAC_ADDR_SIZE;
6880 vos_mem_copy(&add_req->ucPattern[len], add_req->macAddress,
6881 VOS_MAC_ADDR_SIZE);
6882 len += VOS_MAC_ADDR_SIZE;
6883 vos_mem_copy(&add_req->ucPattern[len], &eth_type, 2);
6884 len += 2;
6885
6886 /*
6887 * This is the IP packet, add 14 bytes Ethernet (802.3) header
6888 * ------------------------------------------------------------
6889 * | 14 bytes Ethernet (802.3) header | IP header and payload |
6890 * ------------------------------------------------------------
6891 */
6892 vos_mem_copy(&add_req->ucPattern[len],
6893 nla_data(tb[PARAM_IP_PACKET]),
6894 add_req->ucPtrnSize);
6895 add_req->ucPtrnSize += len;
6896
6897 VOS_TRACE_HEX_DUMP(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
6898 add_req->ucPattern, add_req->ucPtrnSize);
6899
6900 ret = hdd_map_req_id_to_pattern_id(hdd_ctx, request_id, &pattern_id);
6901 if (ret)
6902 {
6903 hddLog(LOGW, FL("req id to pattern id failed (ret=%d)"), ret);
6904 goto fail;
6905 }
6906 add_req->ucPtrnId = pattern_id;
6907 hddLog(LOG1, FL("pattern id: %d"), add_req->ucPtrnId);
6908
6909 status = sme_AddPeriodicTxPtrn(hdd_ctx->hHal, add_req);
6910 if (!HAL_STATUS_SUCCESS(status))
6911 {
6912 hddLog(LOGE,
6913 FL("sme_AddPeriodicTxPtrn failed (err=%d)"), status);
6914 goto fail;
6915 }
6916
6917 EXIT();
6918 vos_mem_free(add_req);
6919 return 0;
6920
6921fail:
6922 vos_mem_free(add_req);
6923 return -EINVAL;
6924}
6925
6926/**
6927 * wlan_hdd_del_tx_ptrn() - delete tx pattern
6928 * @adapter: adapter pointer
6929 * @hdd_ctx: hdd context
6930 * @tb: nl attributes
6931 *
6932 * This function reads the NL attributes and forms a DelTxPtrn message
6933 * posts it to SME.
6934 *
6935 */
6936static int
6937wlan_hdd_del_tx_ptrn(hdd_adapter_t *adapter, hdd_context_t *hdd_ctx,
6938 struct nlattr **tb)
6939{
6940 struct sSirDelPeriodicTxPtrn *del_req;
6941 eHalStatus status;
6942 uint32_t request_id, ret;
6943 uint8_t pattern_id = 0;
6944
6945 /* Parse and fetch request Id */
6946 if (!tb[PARAM_REQUEST_ID])
6947 {
6948 hddLog(LOGE, FL("attr request id failed"));
6949 return -EINVAL;
6950 }
6951 request_id = nla_get_u32(tb[PARAM_REQUEST_ID]);
6952 if (request_id == 0)
6953 {
6954 hddLog(LOGE, FL("request_id cannot be zero"));
6955 return -EINVAL;
6956 }
6957
6958 ret = hdd_unmap_req_id_to_pattern_id(hdd_ctx, request_id, &pattern_id);
6959 if (ret)
6960 {
6961 hddLog(LOGW, FL("req id to pattern id failed (ret=%d)"), ret);
6962 return -EINVAL;
6963 }
6964
6965 del_req = vos_mem_malloc(sizeof(*del_req));
6966 if (!del_req)
6967 {
6968 hddLog(LOGE, FL("memory allocation failed"));
6969 return -ENOMEM;
6970 }
6971
6972 vos_mem_set(del_req, sizeof(*del_req), 0);
6973 vos_mem_copy(del_req->macAddress, adapter->macAddressCurrent.bytes,
6974 VOS_MAC_ADDR_SIZE);
6975 hddLog(LOG1, MAC_ADDRESS_STR, MAC_ADDR_ARRAY(del_req->macAddress));
6976 del_req->ucPatternIdBitmap |= (0x1 << pattern_id);
6977 hddLog(LOG1, FL("Request Id: %u Pattern id: %d, bitmap %04x"),
6978 request_id, pattern_id, del_req->ucPatternIdBitmap);
6979
6980 status = sme_DelPeriodicTxPtrn(hdd_ctx->hHal, del_req);
6981 if (!HAL_STATUS_SUCCESS(status))
6982 {
6983 hddLog(LOGE,
6984 FL("sme_DelPeriodicTxPtrn failed (err=%d)"), status);
6985 goto fail;
6986 }
6987
6988 EXIT();
6989 vos_mem_free(del_req);
6990 return 0;
6991
6992fail:
6993 vos_mem_free(del_req);
6994 return -EINVAL;
6995}
6996
6997
6998/**
6999 * __wlan_hdd_cfg80211_offloaded_packets() - send offloaded packets
7000 * @wiphy: Pointer to wireless phy
7001 * @wdev: Pointer to wireless device
7002 * @data: Pointer to data
7003 * @data_len: Data length
7004 *
7005 * Return: 0 on success, negative errno on failure
7006 */
7007static int
7008__wlan_hdd_cfg80211_offloaded_packets(struct wiphy *wiphy,
7009 struct wireless_dev *wdev,
7010 const void *data,
7011 int data_len)
7012{
7013 struct net_device *dev = wdev->netdev;
7014 hdd_adapter_t *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
7015 hdd_context_t *hdd_ctx = wiphy_priv(wiphy);
7016 struct nlattr *tb[PARAM_MAX + 1];
7017 uint8_t control;
7018 int ret;
7019 static const struct nla_policy policy[PARAM_MAX + 1] =
7020 {
7021 [PARAM_REQUEST_ID] = { .type = NLA_U32 },
7022 [PARAM_CONTROL] = { .type = NLA_U32 },
7023 [PARAM_SRC_MAC_ADDR] = { .type = NLA_BINARY,
7024 .len = VOS_MAC_ADDR_SIZE },
7025 [PARAM_DST_MAC_ADDR] = { .type = NLA_BINARY,
7026 .len = VOS_MAC_ADDR_SIZE },
7027 [PARAM_PERIOD] = { .type = NLA_U32 },
7028 };
7029
7030 ENTER();
7031
7032 ret = wlan_hdd_validate_context(hdd_ctx);
7033 if (0 != ret)
7034 {
7035 hddLog(LOGE, FL("HDD context is not valid"));
7036 return ret;
7037 }
7038
7039 if (!sme_IsFeatureSupportedByFW(WLAN_PERIODIC_TX_PTRN))
7040 {
7041 hddLog(LOGE,
7042 FL("Periodic Tx Pattern Offload feature is not supported in FW!"));
7043 return -ENOTSUPP;
7044 }
7045
7046 if (nla_parse(tb, PARAM_MAX, data, data_len, policy))
7047 {
7048 hddLog(LOGE, FL("Invalid ATTR"));
7049 return -EINVAL;
7050 }
7051
7052 if (!tb[PARAM_CONTROL])
7053 {
7054 hddLog(LOGE, FL("attr control failed"));
7055 return -EINVAL;
7056 }
7057 control = nla_get_u32(tb[PARAM_CONTROL]);
7058 hddLog(LOG1, FL("Control: %d"), control);
7059
7060 if (control == WLAN_START_OFFLOADED_PACKETS)
7061 return wlan_hdd_add_tx_ptrn(adapter, hdd_ctx, tb);
7062 else if (control == WLAN_STOP_OFFLOADED_PACKETS)
7063 return wlan_hdd_del_tx_ptrn(adapter, hdd_ctx, tb);
7064 else
7065 {
7066 hddLog(LOGE, FL("Invalid control: %d"), control);
7067 return -EINVAL;
7068 }
7069}
7070
7071/*
7072 * done with short names for the global vendor params
7073 * used by __wlan_hdd_cfg80211_offloaded_packets()
7074 */
7075#undef PARAM_MAX
7076#undef PARAM_REQUEST_ID
7077#undef PARAM_CONTROL
7078#undef PARAM_IP_PACKET
7079#undef PARAM_SRC_MAC_ADDR
7080#undef PARAM_DST_MAC_ADDR
7081#undef PARAM_PERIOD
7082
7083/**
7084 * wlan_hdd_cfg80211_offloaded_packets() - Wrapper to offload packets
7085 * @wiphy: wiphy structure pointer
7086 * @wdev: Wireless device structure pointer
7087 * @data: Pointer to the data received
7088 * @data_len: Length of @data
7089 *
7090 * Return: 0 on success; errno on failure
7091 */
7092static int wlan_hdd_cfg80211_offloaded_packets(struct wiphy *wiphy,
7093 struct wireless_dev *wdev,
7094 const void *data,
7095 int data_len)
7096{
7097 int ret = 0;
7098
7099 vos_ssr_protect(__func__);
7100 ret = __wlan_hdd_cfg80211_offloaded_packets(wiphy,
7101 wdev, data, data_len);
7102 vos_ssr_unprotect(__func__);
7103
7104 return ret;
7105}
7106#endif
7107
Deepthi Gowriae6a1662015-10-12 12:59:37 +05307108static const struct
7109nla_policy
7110qca_wlan_vendor_attr_policy[QCA_WLAN_VENDOR_ATTR_MAX+1] = {
7111 [QCA_WLAN_VENDOR_ATTR_MAC_ADDR] = { .type = NLA_UNSPEC },
7112};
7113
7114/**
7115 * wlan_hdd_cfg80211_get_link_properties() - This function is used to
7116 * get link properties like nss, rate flags and operating frequency for
7117 * the connection with the given peer.
7118 * @wiphy: WIPHY structure pointer
7119 * @wdev: Wireless device structure pointer
7120 * @data: Pointer to the data received
7121 * @data_len: Length of the data received
7122 *
7123 * This function return the above link properties on success.
7124 *
7125 * Return: 0 on success and errno on failure
7126 */
7127static int wlan_hdd_cfg80211_get_link_properties(struct wiphy *wiphy,
7128 struct wireless_dev *wdev,
7129 const void *data,
7130 int data_len)
7131{
7132 hdd_context_t *hdd_ctx = wiphy_priv(wiphy);
7133 struct net_device *dev = wdev->netdev;
7134 hdd_adapter_t *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
7135 hdd_station_ctx_t *hdd_sta_ctx;
7136 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_MAX+1];
7137 uint8_t peer_mac[VOS_MAC_ADDR_SIZE];
7138 uint32_t sta_id;
7139 struct sk_buff *reply_skb;
7140 uint32_t rate_flags = 0;
7141 uint8_t nss;
7142 uint8_t final_rate_flags = 0;
7143 uint32_t freq;
7144 v_CONTEXT_t pVosContext = NULL;
7145 ptSapContext pSapCtx = NULL;
7146
7147 if (0 != wlan_hdd_validate_context(hdd_ctx)) {
7148 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD context is not valid"));
7149 return -EINVAL;
7150 }
7151
7152 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_MAX, data, data_len,
7153 qca_wlan_vendor_attr_policy)) {
7154 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid attribute"));
7155 return -EINVAL;
7156 }
7157
7158 if (!tb[QCA_WLAN_VENDOR_ATTR_MAC_ADDR]) {
7159 hddLog(VOS_TRACE_LEVEL_ERROR,
7160 FL("Attribute peerMac not provided for mode=%d"),
7161 adapter->device_mode);
7162 return -EINVAL;
7163 }
7164
7165 memcpy(peer_mac, nla_data(tb[QCA_WLAN_VENDOR_ATTR_MAC_ADDR]),
7166 sizeof(peer_mac));
7167 hddLog(VOS_TRACE_LEVEL_INFO,
7168 FL("peerMac="MAC_ADDRESS_STR" for device_mode:%d"),
7169 MAC_ADDR_ARRAY(peer_mac), adapter->device_mode);
7170
7171 if (adapter->device_mode == WLAN_HDD_INFRA_STATION ||
7172 adapter->device_mode == WLAN_HDD_P2P_CLIENT) {
7173 hdd_sta_ctx = WLAN_HDD_GET_STATION_CTX_PTR(adapter);
7174 if ((hdd_sta_ctx->conn_info.connState !=
7175 eConnectionState_Associated) ||
7176 !vos_mem_compare(hdd_sta_ctx->conn_info.bssId, peer_mac,
7177 VOS_MAC_ADDRESS_LEN)) {
7178 hddLog(VOS_TRACE_LEVEL_ERROR,
7179 FL("Not Associated to mac "MAC_ADDRESS_STR),
7180 MAC_ADDR_ARRAY(peer_mac));
7181 return -EINVAL;
7182 }
7183
7184 nss = 1; //pronto supports only one spatial stream
7185 freq = vos_chan_to_freq(
7186 hdd_sta_ctx->conn_info.operationChannel);
7187 rate_flags = hdd_sta_ctx->conn_info.rate_flags;
7188
7189 } else if (adapter->device_mode == WLAN_HDD_P2P_GO ||
7190 adapter->device_mode == WLAN_HDD_SOFTAP) {
7191
7192 pVosContext = ( WLAN_HDD_GET_CTX(adapter))->pvosContext;
7193 pSapCtx = VOS_GET_SAP_CB(pVosContext);
7194 if(pSapCtx == NULL){
7195 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7196 FL("psapCtx is NULL"));
7197 return -ENOENT;
7198 }
7199
7200
7201 for (sta_id = 0; sta_id < WLAN_MAX_STA_COUNT; sta_id++) {
7202 if (pSapCtx->aStaInfo[sta_id].isUsed &&
7203 !vos_is_macaddr_broadcast(
7204 &pSapCtx->aStaInfo[sta_id].macAddrSTA) &&
7205 vos_mem_compare(
7206 &pSapCtx->aStaInfo[sta_id].macAddrSTA,
7207 peer_mac, VOS_MAC_ADDRESS_LEN))
7208 break;
7209 }
7210
7211 if (WLAN_MAX_STA_COUNT == sta_id) {
7212 hddLog(VOS_TRACE_LEVEL_ERROR,
7213 FL("No active peer with mac="MAC_ADDRESS_STR),
7214 MAC_ADDR_ARRAY(peer_mac));
7215 return -EINVAL;
7216 }
7217
7218 nss = 1; //pronto supports only one spatial stream
7219 freq = vos_chan_to_freq(
7220 (WLAN_HDD_GET_AP_CTX_PTR(adapter))->operatingChannel);
7221 rate_flags = pSapCtx->aStaInfo[sta_id].rate_flags;
7222 } else {
7223 hddLog(VOS_TRACE_LEVEL_ERROR,
7224 FL("Not Associated! with mac"MAC_ADDRESS_STR),
7225 MAC_ADDR_ARRAY(peer_mac));
7226 return -EINVAL;
7227 }
7228
7229 if (!(rate_flags & eHAL_TX_RATE_LEGACY)) {
7230 if (rate_flags & eHAL_TX_RATE_VHT80) {
7231 final_rate_flags |= RATE_INFO_FLAGS_VHT_MCS;
7232 final_rate_flags |= RATE_INFO_FLAGS_80_MHZ_WIDTH;
7233 } else if (rate_flags & eHAL_TX_RATE_VHT40) {
7234 final_rate_flags |= RATE_INFO_FLAGS_VHT_MCS;
7235 final_rate_flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
7236 } else if (rate_flags & eHAL_TX_RATE_VHT20) {
7237 final_rate_flags |= RATE_INFO_FLAGS_VHT_MCS;
7238 } else if (rate_flags & (eHAL_TX_RATE_HT20 | eHAL_TX_RATE_HT40)) {
7239 final_rate_flags |= RATE_INFO_FLAGS_MCS;
7240 if (rate_flags & eHAL_TX_RATE_HT40)
7241 final_rate_flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
7242 }
7243
7244 if (rate_flags & eHAL_TX_RATE_SGI) {
7245 if (!(final_rate_flags & RATE_INFO_FLAGS_VHT_MCS))
7246 final_rate_flags |= RATE_INFO_FLAGS_MCS;
7247 final_rate_flags |= RATE_INFO_FLAGS_SHORT_GI;
7248 }
7249 }
7250
7251 reply_skb = cfg80211_vendor_cmd_alloc_reply_skb(wiphy,
7252 sizeof(u8) + sizeof(u8) + sizeof(u32) + NLMSG_HDRLEN);
7253
7254 if (NULL == reply_skb) {
7255 hddLog(VOS_TRACE_LEVEL_ERROR,
7256 FL("getLinkProperties: skb alloc failed"));
7257 return -EINVAL;
7258 }
7259
7260 if (nla_put_u8(reply_skb,
7261 QCA_WLAN_VENDOR_ATTR_LINK_PROPERTIES_NSS,
7262 nss) ||
7263 nla_put_u8(reply_skb,
7264 QCA_WLAN_VENDOR_ATTR_LINK_PROPERTIES_RATE_FLAGS,
7265 final_rate_flags) ||
7266 nla_put_u32(reply_skb,
7267 QCA_WLAN_VENDOR_ATTR_LINK_PROPERTIES_FREQ,
7268 freq)) {
7269 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla_put failed"));
7270 kfree_skb(reply_skb);
7271 return -EINVAL;
7272 }
7273
7274 return cfg80211_vendor_cmd_reply(reply_skb);
7275}
7276
Ravi Kumar bokka7d032762016-12-12 23:33:01 +05307277#define BEACON_MISS_THRESH_2_4 \
7278 QCA_WLAN_VENDOR_ATTR_CONFIG_BEACON_MISS_THRESHOLD_24
7279#define BEACON_MISS_THRESH_5_0 \
7280 QCA_WLAN_VENDOR_ATTR_CONFIG_BEACON_MISS_THRESHOLD_5
Arun Khandavalli7eeb1592015-10-19 21:36:57 +05307281#define PARAM_WIFICONFIG_MAX QCA_WLAN_VENDOR_ATTR_CONFIG_MAX
7282#define PARAM_MODULATED_DTIM QCA_WLAN_VENDOR_ATTR_CONFIG_MODULATED_DTIM
7283#define PARAM_STATS_AVG_FACTOR QCA_WLAN_VENDOR_ATTR_CONFIG_STATS_AVG_FACTOR
7284#define PARAM_GUARD_TIME QCA_WLAN_VENDOR_ATTR_CONFIG_GUARD_TIME
Mahesh A Saptasagar41f9ddd2016-02-09 14:01:03 +05307285#define PARAM_BCNMISS_PENALTY_PARAM_COUNT \
7286 QCA_WLAN_VENDOR_ATTR_CONFIG_PENALIZE_AFTER_NCONS_BEACON_MISS
Arun Khandavalli7eeb1592015-10-19 21:36:57 +05307287
7288/**
7289 * __wlan_hdd_cfg80211_wifi_configuration_set() - Wifi configuration
7290 * vendor command
7291 *
7292 * @wiphy: wiphy device pointer
7293 * @wdev: wireless device pointer
7294 * @data: Vendor command data buffer
7295 * @data_len: Buffer length
7296 *
7297 * Handles QCA_WLAN_VENDOR_ATTR_CONFIG_MAX.
7298 *
7299 * Return: EOK or other error codes.
7300 */
7301
7302static int __wlan_hdd_cfg80211_wifi_configuration_set(struct wiphy *wiphy,
7303 struct wireless_dev *wdev,
7304 const void *data,
7305 int data_len)
7306{
7307 struct net_device *dev = wdev->netdev;
7308 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
7309 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
7310 hdd_station_ctx_t *pHddStaCtx;
7311 struct nlattr *tb[PARAM_WIFICONFIG_MAX + 1];
7312 tpSetWifiConfigParams pReq;
Mahesh A Saptasagar41f9ddd2016-02-09 14:01:03 +05307313 tModifyRoamParamsReqParams modifyRoamParamsReq;
Arun Khandavalli7eeb1592015-10-19 21:36:57 +05307314 eHalStatus status;
7315 int ret_val;
Ravi Kumar bokka7d032762016-12-12 23:33:01 +05307316 uint8_t hb_thresh_val;
7317
Arun Khandavalli7eeb1592015-10-19 21:36:57 +05307318 static const struct nla_policy policy[PARAM_WIFICONFIG_MAX + 1] = {
7319 [PARAM_STATS_AVG_FACTOR] = { .type = NLA_U16 },
7320 [PARAM_MODULATED_DTIM] = { .type = NLA_U32 },
Mahesh A Saptasagar41f9ddd2016-02-09 14:01:03 +05307321 [PARAM_GUARD_TIME] = { .type = NLA_U32},
7322 [PARAM_BCNMISS_PENALTY_PARAM_COUNT] =
7323 { .type = NLA_U32},
Ravi Kumar bokka7d032762016-12-12 23:33:01 +05307324 [BEACON_MISS_THRESH_2_4] = { .type = NLA_U8 },
7325 [BEACON_MISS_THRESH_5_0] = { .type = NLA_U8 },
Arun Khandavalli7eeb1592015-10-19 21:36:57 +05307326 };
7327
7328 ENTER();
7329
7330 if (VOS_FTM_MODE == hdd_get_conparam()) {
7331 hddLog(LOGE, FL("Command not allowed in FTM mode"));
7332 return -EINVAL;
7333 }
7334
7335 ret_val = wlan_hdd_validate_context(pHddCtx);
7336 if (ret_val) {
7337 return ret_val;
7338 }
7339
7340 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
7341
Arun Khandavalli7eeb1592015-10-19 21:36:57 +05307342 if (nla_parse(tb, PARAM_WIFICONFIG_MAX, data, data_len, policy)) {
7343 hddLog(LOGE, FL("Invalid ATTR"));
7344 return -EINVAL;
7345 }
7346
7347 /* check the Wifi Capability */
7348 if ( (TRUE != pHddCtx->cfg_ini->fEnableWifiConfig) &&
7349 (TRUE != sme_IsFeatureSupportedByFW(WIFI_CONFIG)))
7350 {
7351 hddLog(VOS_TRACE_LEVEL_ERROR,
7352 FL("WIFICONFIG not supported by Firmware"));
7353 return -EINVAL;
7354 }
7355
Mahesh A Saptasagar41f9ddd2016-02-09 14:01:03 +05307356 if (tb[PARAM_BCNMISS_PENALTY_PARAM_COUNT]) {
7357 modifyRoamParamsReq.param = WIFI_CONFIG_SET_BCNMISS_PENALTY_COUNT;
7358 modifyRoamParamsReq.value =
7359 nla_get_u32(tb[PARAM_BCNMISS_PENALTY_PARAM_COUNT]);
7360
7361 if (eHAL_STATUS_SUCCESS !=
7362 sme_setBcnMissPenaltyCount(pHddCtx->hHal,&modifyRoamParamsReq))
7363 {
7364 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Failed", __func__);
7365 ret_val = -EINVAL;
7366 }
7367 return ret_val;
7368 }
7369
7370 /* Moved this down in order to provide provision to set beacon
7371 * miss penalty count irrespective of connection state.
7372 */
7373 if (!hdd_connIsConnected(WLAN_HDD_GET_STATION_CTX_PTR(pAdapter))) {
7374 hddLog(LOGE, FL("Not in Connected state!"));
7375 return -ENOTSUPP;
7376 }
7377
7378 pReq = vos_mem_malloc(sizeof(tSetWifiConfigParams));
Arun Khandavalli7eeb1592015-10-19 21:36:57 +05307379
7380 if (!pReq) {
7381 VOS_TRACE(VOS_MODULE_ID_SME, VOS_TRACE_LEVEL_ERROR,
7382 "%s: Not able to allocate memory for tSetWifiConfigParams",
7383 __func__);
7384 return eHAL_STATUS_E_MALLOC_FAILED;
7385 }
7386
7387 vos_mem_set(pReq, sizeof(tSetWifiConfigParams), 0);
7388
7389 pReq->sessionId = pAdapter->sessionId;
7390 vos_mem_copy( &pReq->bssId, pHddStaCtx->conn_info.bssId, WNI_CFG_BSSID_LEN);
7391
7392 if (tb[PARAM_MODULATED_DTIM]) {
7393 pReq->paramValue = nla_get_u32(
7394 tb[PARAM_MODULATED_DTIM]);
7395 hddLog(LOG1, FL("Modulated DTIM: pReq->paramValue:%d "),
7396 pReq->paramValue);
Arun Khandavalli876886f2015-11-23 11:42:27 +05307397 pHddCtx->cfg_ini->enableDynamicDTIM = pReq->paramValue;
Arun Khandavalli7eeb1592015-10-19 21:36:57 +05307398 hdd_set_pwrparams(pHddCtx);
7399 if (BMPS == pmcGetPmcState(pHddCtx->hHal)) {
7400 hddLog( LOG1, FL("WifiConfig: Requesting FullPower!"));
7401
7402 sme_RequestFullPower(WLAN_HDD_GET_HAL_CTX(pAdapter),
7403 iw_full_power_cbfn, pAdapter,
7404 eSME_FULL_PWR_NEEDED_BY_HDD);
7405 }
7406 else
7407 {
7408 hddLog( LOG1, FL("WifiConfig Not in BMPS state"));
7409 }
7410 }
7411
7412 if (tb[PARAM_STATS_AVG_FACTOR]) {
7413 pReq->paramType = WIFI_CONFIG_SET_AVG_STATS_FACTOR;
7414 pReq->paramValue = nla_get_u16(
7415 tb[PARAM_STATS_AVG_FACTOR]);
7416 hddLog(LOG1, FL("AVG_STATS_FACTOR pReq->paramType:%d,pReq->paramValue:%d "),
7417 pReq->paramType, pReq->paramValue);
7418 status = sme_set_wificonfig_params(pHddCtx->hHal, pReq);
7419
7420 if (eHAL_STATUS_SUCCESS != status)
7421 {
7422 vos_mem_free(pReq);
7423 pReq = NULL;
7424 ret_val = -EPERM;
7425 return ret_val;
7426 }
7427 }
7428
7429
7430 if (tb[PARAM_GUARD_TIME]) {
7431 pReq->paramType = WIFI_CONFIG_SET_GUARD_TIME;
7432 pReq->paramValue = nla_get_u32(
7433 tb[PARAM_GUARD_TIME]);
7434 hddLog(LOG1, FL("GUARD_TIME pReq->paramType:%d,pReq->paramValue:%d "),
7435 pReq->paramType, pReq->paramValue);
7436 status = sme_set_wificonfig_params(pHddCtx->hHal, pReq);
7437
7438 if (eHAL_STATUS_SUCCESS != status)
7439 {
7440 vos_mem_free(pReq);
7441 pReq = NULL;
7442 ret_val = -EPERM;
7443 return ret_val;
7444 }
7445
7446 }
7447
Ravi Kumar bokka7d032762016-12-12 23:33:01 +05307448 if (tb[QCA_WLAN_VENDOR_ATTR_CONFIG_BEACON_MISS_THRESHOLD_24]) {
7449 hb_thresh_val = nla_get_u8(
7450 tb[QCA_WLAN_VENDOR_ATTR_CONFIG_BEACON_MISS_THRESHOLD_24]);
7451
7452 hddLog(LOG1, "WLAN set heartbeat threshold for 2.4Ghz %d",
7453 hb_thresh_val);
7454 ccmCfgSetInt((WLAN_HDD_GET_CTX(pAdapter))->hHal,
7455 WNI_CFG_HEART_BEAT_THRESHOLD, hb_thresh_val,
7456 NULL, eANI_BOOLEAN_FALSE);
7457
7458 status = sme_update_hb_threshold(
7459 (WLAN_HDD_GET_CTX(pAdapter))->hHal,
7460 WNI_CFG_HEART_BEAT_THRESHOLD,
7461 hb_thresh_val, eCSR_BAND_24);
7462 if (eHAL_STATUS_SUCCESS != status) {
7463 hddLog(LOGE, "WLAN set heartbeat threshold FAILED %d", status);
7464 vos_mem_free(pReq);
7465 pReq = NULL;
7466 return -EPERM;
7467 }
7468 }
7469
7470 if (tb[QCA_WLAN_VENDOR_ATTR_CONFIG_BEACON_MISS_THRESHOLD_5]) {
7471 hb_thresh_val = nla_get_u8(
7472 tb[QCA_WLAN_VENDOR_ATTR_CONFIG_BEACON_MISS_THRESHOLD_5]);
7473
7474 hddLog(LOG1, "WLAN set heartbeat threshold for 5Ghz %d",
7475 hb_thresh_val);
7476 ccmCfgSetInt((WLAN_HDD_GET_CTX(pAdapter))->hHal,
7477 WNI_CFG_HEART_BEAT_THRESHOLD, hb_thresh_val,
7478 NULL, eANI_BOOLEAN_FALSE);
7479
7480 status = sme_update_hb_threshold(
7481 (WLAN_HDD_GET_CTX(pAdapter))->hHal,
7482 WNI_CFG_HEART_BEAT_THRESHOLD,
7483 hb_thresh_val, eCSR_BAND_5G);
7484 if (eHAL_STATUS_SUCCESS != status) {
7485 hddLog(LOGE, "WLAN set heartbeat threshold FAILED %d", status);
7486 vos_mem_free(pReq);
7487 pReq = NULL;
7488 return -EPERM;
7489 }
7490 }
7491
Arun Khandavalli7eeb1592015-10-19 21:36:57 +05307492 EXIT();
7493 return ret_val;
7494}
7495
7496/**
7497 * wlan_hdd_cfg80211_wifi_configuration_set() - Wifi configuration
7498 * vendor command
7499 *
7500 * @wiphy: wiphy device pointer
7501 * @wdev: wireless device pointer
7502 * @data: Vendor command data buffer
7503 * @data_len: Buffer length
7504 *
7505 * Handles QCA_WLAN_VENDOR_ATTR_CONFIG_MAX.
7506 *
7507 * Return: EOK or other error codes.
7508 */
7509static int wlan_hdd_cfg80211_wifi_configuration_set(struct wiphy *wiphy,
7510 struct wireless_dev *wdev,
7511 const void *data,
7512 int data_len)
7513{
7514 int ret;
7515
7516 vos_ssr_protect(__func__);
7517 ret = __wlan_hdd_cfg80211_wifi_configuration_set(wiphy, wdev,
7518 data, data_len);
7519 vos_ssr_unprotect(__func__);
7520
7521 return ret;
7522}
Anurag Chouhan6ee81542017-02-09 18:09:27 +05307523
7524/*
7525 * define short names for the global vendor params
7526 * used by wlan_hdd_cfg80211_setarp_stats_cmd()
7527 */
7528#define STATS_SET_INVALID \
7529 QCA_ATTR_NUD_STATS_SET_INVALID
7530#define STATS_SET_START \
7531 QCA_ATTR_NUD_STATS_SET_START
7532#define STATS_GW_IPV4 \
7533 QCA_ATTR_NUD_STATS_GW_IPV4
7534#define STATS_SET_MAX \
7535 QCA_ATTR_NUD_STATS_SET_MAX
7536
7537const struct nla_policy
7538qca_wlan_vendor_set_nud_stats[STATS_SET_MAX +1] =
7539{
7540 [STATS_SET_START] = {.type = NLA_FLAG },
7541 [STATS_GW_IPV4] = {.type = NLA_U32 },
7542};
7543
7544/**
7545 * hdd_set_nud_stats_cb() - hdd callback api to get status
7546 * @data: pointer to adapter
7547 * @rsp: status
7548 *
7549 * Return: None
7550 */
7551static void hdd_set_nud_stats_cb(void *data, VOS_STATUS rsp)
7552{
7553
7554 hdd_adapter_t *adapter = (hdd_adapter_t *)data;
7555
7556 if (NULL == adapter)
7557 return;
7558
7559 if (VOS_STATUS_SUCCESS == rsp) {
7560 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
7561 "%s success received STATS_SET_START", __func__);
7562 } else {
7563 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7564 "%s STATS_SET_START Failed!!", __func__);
7565 }
7566 return;
7567}
7568
7569/**
7570 * __wlan_hdd_cfg80211_set_nud_stats() - set arp stats command to firmware
7571 * @wiphy: pointer to wireless wiphy structure.
7572 * @wdev: pointer to wireless_dev structure.
7573 * @data: pointer to apfind configuration data.
7574 * @data_len: the length in byte of apfind data.
7575 *
7576 * This is called when wlan driver needs to send arp stats to
7577 * firmware.
7578 *
7579 * Return: An error code or 0 on success.
7580 */
7581static int __wlan_hdd_cfg80211_set_nud_stats(struct wiphy *wiphy,
7582 struct wireless_dev *wdev,
7583 const void *data, int data_len)
7584{
7585 struct nlattr *tb[STATS_SET_MAX + 1];
7586 struct net_device *dev = wdev->netdev;
7587 hdd_adapter_t *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
7588 hdd_context_t *hdd_ctx = wiphy_priv(wiphy);
7589 setArpStatsParams arp_stats_params;
7590 int err = 0;
7591
7592 ENTER();
7593
7594 err = wlan_hdd_validate_context(hdd_ctx);
7595 if (0 != err)
7596 return err;
7597
7598 if (!sme_IsFeatureSupportedByFW(NUD_DEBUG)) {
7599 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7600 "%s NUD_DEBUG feature not supported by firmware!!", __func__);
7601 return -EINVAL;
7602 }
7603
7604 err = nla_parse(tb, STATS_SET_MAX, data, data_len,
7605 qca_wlan_vendor_set_nud_stats);
7606 if (err)
7607 {
7608 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7609 "%s STATS_SET_START ATTR", __func__);
7610 return err;
7611 }
7612
7613 if (tb[STATS_SET_START])
7614 {
7615 if (!tb[STATS_GW_IPV4]) {
7616 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7617 "%s STATS_SET_START CMD", __func__);
7618 return -EINVAL;
7619 }
7620 arp_stats_params.flag = true;
7621 arp_stats_params.ip_addr = nla_get_u32(tb[STATS_GW_IPV4]);
7622 } else {
7623 arp_stats_params.flag = false;
7624 }
7625 if (arp_stats_params.flag) {
7626 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
7627 "%s STATS_SET_START Cleared!!", __func__);
7628 vos_mem_zero(&adapter->hdd_stats.hddArpStats, sizeof(adapter->hdd_stats.hddArpStats));
7629 }
7630
7631 arp_stats_params.pkt_type = 1; // ARP packet type
7632
7633 arp_stats_params.rsp_cb_fn = hdd_set_nud_stats_cb;
7634 arp_stats_params.data_ctx = adapter;
7635
7636 if (eHAL_STATUS_SUCCESS !=
7637 sme_set_nud_debug_stats(hdd_ctx->hHal, &arp_stats_params)) {
7638 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7639 "%s STATS_SET_START CMD Failed!!", __func__);
7640 return -EINVAL;
7641 }
7642
7643 EXIT();
7644
7645 return err;
7646}
7647
7648/**
7649 * wlan_hdd_cfg80211_set_nud_stats() - set arp stats command to firmware
7650 * @wiphy: pointer to wireless wiphy structure.
7651 * @wdev: pointer to wireless_dev structure.
7652 * @data: pointer to apfind configuration data.
7653 * @data_len: the length in byte of apfind data.
7654 *
7655 * This is called when wlan driver needs to send arp stats to
7656 * firmware.
7657 *
7658 * Return: An error code or 0 on success.
7659 */
7660static int wlan_hdd_cfg80211_set_nud_stats(struct wiphy *wiphy,
7661 struct wireless_dev *wdev,
7662 const void *data, int data_len)
7663{
7664 int ret;
7665
7666 vos_ssr_protect(__func__);
7667 ret = __wlan_hdd_cfg80211_set_nud_stats(wiphy, wdev, data, data_len);
7668 vos_ssr_unprotect(__func__);
7669
7670 return ret;
7671}
7672#undef STATS_SET_INVALID
7673#undef STATS_SET_START
7674#undef STATS_GW_IPV4
7675#undef STATS_SET_MAX
7676
7677/*
7678 * define short names for the global vendor params
7679 * used by wlan_hdd_cfg80211_setarp_stats_cmd()
7680 */
7681#define STATS_GET_INVALID \
7682 QCA_ATTR_NUD_STATS_SET_INVALID
7683#define COUNT_FROM_NETDEV \
7684 QCA_ATTR_NUD_STATS_ARP_REQ_COUNT_FROM_NETDEV
7685#define COUNT_TO_LOWER_MAC \
7686 QCA_ATTR_NUD_STATS_ARP_REQ_COUNT_TO_LOWER_MAC
7687#define RX_COUNT_BY_LOWER_MAC \
7688 QCA_ATTR_NUD_STATS_ARP_REQ_RX_COUNT_BY_LOWER_MAC
7689#define COUNT_TX_SUCCESS \
7690 QCA_ATTR_NUD_STATS_ARP_REQ_COUNT_TX_SUCCESS
7691#define RSP_RX_COUNT_BY_LOWER_MAC \
7692 QCA_ATTR_NUD_STATS_ARP_RSP_RX_COUNT_BY_LOWER_MAC
7693#define RSP_RX_COUNT_BY_UPPER_MAC \
7694 QCA_ATTR_NUD_STATS_ARP_RSP_RX_COUNT_BY_UPPER_MAC
7695#define RSP_COUNT_TO_NETDEV \
7696 QCA_ATTR_NUD_STATS_ARP_RSP_COUNT_TO_NETDEV
7697#define RSP_COUNT_OUT_OF_ORDER_DROP \
7698 QCA_ATTR_NUD_STATS_ARP_RSP_COUNT_OUT_OF_ORDER_DROP
7699#define AP_LINK_ACTIVE \
7700 QCA_ATTR_NUD_STATS_AP_LINK_ACTIVE
7701#define AP_LINK_DAD \
7702 QCA_ATTR_NUD_STATS_AP_LINK_DAD
7703#define STATS_GET_MAX \
7704 QCA_ATTR_NUD_STATS_GET_MAX
7705
7706const struct nla_policy
7707qca_wlan_vendor_get_nud_stats[STATS_GET_MAX +1] =
7708{
7709 [COUNT_FROM_NETDEV] = {.type = NLA_U16 },
7710 [COUNT_TO_LOWER_MAC] = {.type = NLA_U16 },
7711 [RX_COUNT_BY_LOWER_MAC] = {.type = NLA_U16 },
7712 [COUNT_TX_SUCCESS] = {.type = NLA_U16 },
7713 [RSP_RX_COUNT_BY_LOWER_MAC] = {.type = NLA_U16 },
7714 [RSP_RX_COUNT_BY_UPPER_MAC] = {.type = NLA_U16 },
7715 [RSP_COUNT_TO_NETDEV] = {.type = NLA_U16 },
7716 [RSP_COUNT_OUT_OF_ORDER_DROP] = {.type = NLA_U16 },
7717 [AP_LINK_ACTIVE] = {.type = NLA_FLAG },
7718 [AP_LINK_DAD] = {.type = NLA_FLAG },
7719};
7720
7721static void hdd_get_nud_stats_cb(void *data, rsp_stats *rsp)
7722{
7723
7724 hdd_adapter_t *adapter = (hdd_adapter_t *)data;
7725 hdd_context_t *hdd_ctx = WLAN_HDD_GET_CTX(adapter);
7726 struct hdd_nud_stats_context *context;
7727 int status;
7728
7729 ENTER();
7730
7731 if (NULL == adapter)
7732 return;
7733
7734 status = wlan_hdd_validate_context(hdd_ctx);
7735 if (0 != status) {
7736 return;
7737 }
7738
7739 if (!rsp) {
7740 hddLog(LOGE, FL("data is null"));
7741 return;
7742 }
7743
7744 adapter->hdd_stats.hddArpStats.tx_fw_cnt = rsp->tx_fw_cnt;
7745 adapter->hdd_stats.hddArpStats.rx_fw_cnt = rsp->rx_fw_cnt;
7746 adapter->hdd_stats.hddArpStats.tx_ack_cnt = rsp->tx_ack_cnt;
7747 adapter->dad |= rsp->dad;
7748
7749 spin_lock(&hdd_context_lock);
7750 context = &hdd_ctx->nud_stats_context;
7751 complete(&context->response_event);
7752 spin_unlock(&hdd_context_lock);
7753
7754 return;
7755}
7756static int __wlan_hdd_cfg80211_get_nud_stats(struct wiphy *wiphy,
7757 struct wireless_dev *wdev,
7758 const void *data, int data_len)
7759{
7760 int err = 0;
7761 unsigned long rc;
7762 struct hdd_nud_stats_context *context;
7763 struct net_device *dev = wdev->netdev;
7764 hdd_adapter_t *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
7765 hdd_context_t *hdd_ctx = wiphy_priv(wiphy);
7766 getArpStatsParams arp_stats_params;
7767 struct sk_buff *skb;
7768
7769 ENTER();
7770
7771 err = wlan_hdd_validate_context(hdd_ctx);
7772 if (0 != err)
7773 return err;
7774
7775 arp_stats_params.pkt_type = WLAN_NUD_STATS_ARP_PKT_TYPE;
7776 arp_stats_params.get_rsp_cb_fn = hdd_get_nud_stats_cb;
7777 arp_stats_params.data_ctx = adapter;
7778
7779 spin_lock(&hdd_context_lock);
7780 context = &hdd_ctx->nud_stats_context;
7781 INIT_COMPLETION(context->response_event);
7782 spin_unlock(&hdd_context_lock);
7783
7784 if (!sme_IsFeatureSupportedByFW(NUD_DEBUG)) {
7785 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7786 "%s NUD_DEBUG feature not supported by firmware!!", __func__);
7787 return -EINVAL;
7788 }
7789
7790 if (eHAL_STATUS_SUCCESS !=
7791 sme_get_nud_debug_stats(hdd_ctx->hHal, &arp_stats_params)) {
7792 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7793 "%s STATS_SET_START CMD Failed!!", __func__);
7794 return -EINVAL;
7795 }
7796
7797 rc = wait_for_completion_timeout(&context->response_event,
7798 msecs_to_jiffies(WLAN_WAIT_TIME_NUD_STATS));
7799 if (!rc)
7800 {
7801 hddLog(LOGE,
7802 FL("Target response timed out request "));
7803 return -ETIMEDOUT;
7804 }
7805
7806 skb = cfg80211_vendor_cmd_alloc_reply_skb(wiphy,
7807 WLAN_NUD_STATS_LEN);
7808 if (!skb)
7809 {
7810 hddLog(VOS_TRACE_LEVEL_ERROR,
7811 "%s: cfg80211_vendor_cmd_alloc_reply_skb failed",
7812 __func__);
7813 return -ENOMEM;
7814 }
7815
7816 if (nla_put_u16(skb, COUNT_FROM_NETDEV,
7817 adapter->hdd_stats.hddArpStats.txCount) ||
7818 nla_put_u16(skb, COUNT_TO_LOWER_MAC,
7819 adapter->hdd_stats.hddArpStats.tx_host_fw_sent) ||
7820 nla_put_u16(skb, RX_COUNT_BY_LOWER_MAC,
7821 adapter->hdd_stats.hddArpStats.tx_fw_cnt) ||
7822 nla_put_u16(skb, COUNT_TX_SUCCESS,
7823 adapter->hdd_stats.hddArpStats.tx_ack_cnt) ||
7824 nla_put_u16(skb, RSP_RX_COUNT_BY_LOWER_MAC,
7825 adapter->hdd_stats.hddArpStats.rx_fw_cnt) ||
7826 nla_put_u16(skb, RSP_RX_COUNT_BY_UPPER_MAC,
7827 adapter->hdd_stats.hddArpStats.rxCount) ||
7828 nla_put_u16(skb, RSP_COUNT_TO_NETDEV,
7829 adapter->hdd_stats.hddArpStats.rxDelivered) ||
7830 nla_put_u16(skb, RSP_COUNT_OUT_OF_ORDER_DROP,
7831 adapter->hdd_stats.hddArpStats.rx_host_drop_reorder)) {
7832 hddLog(LOGE, FL("nla put fail"));
7833 kfree_skb(skb);
7834 return -EINVAL;
7835 }
7836 if (adapter->con_status)
7837 nla_put_flag(skb, AP_LINK_ACTIVE);
7838 if (adapter->dad)
7839 nla_put_flag(skb, AP_LINK_DAD);
7840
7841 cfg80211_vendor_cmd_reply(skb);
7842 return err;
7843}
7844
7845static int wlan_hdd_cfg80211_get_nud_stats(struct wiphy *wiphy,
7846 struct wireless_dev *wdev,
7847 const void *data, int data_len)
7848{
7849 int ret;
7850
7851 vos_ssr_protect(__func__);
7852 ret = __wlan_hdd_cfg80211_get_nud_stats(wiphy, wdev, data, data_len);
7853 vos_ssr_unprotect(__func__);
7854
7855 return ret;
7856}
7857
7858#undef QCA_ATTR_NUD_STATS_SET_INVALID
7859#undef QCA_ATTR_NUD_STATS_ARP_REQ_COUNT_FROM_NETDEV
7860#undef QCA_ATTR_NUD_STATS_ARP_REQ_COUNT_TO_LOWER_MAC
7861#undef QCA_ATTR_NUD_STATS_ARP_REQ_RX_COUNT_BY_LOWER_MAC
7862#undef QCA_ATTR_NUD_STATS_ARP_REQ_COUNT_TX_SUCCESS
7863#undef QCA_ATTR_NUD_STATS_ARP_RSP_RX_COUNT_BY_LOWER_MAC
7864#undef QCA_ATTR_NUD_STATS_ARP_RSP_RX_COUNT_BY_UPPER_MAC
7865#undef QCA_ATTR_NUD_STATS_ARP_RSP_COUNT_TO_NETDEV
7866#undef QCA_ATTR_NUD_STATS_ARP_RSP_COUNT_OUT_OF_ORDER_DROP
7867#undef QCA_ATTR_NUD_STATS_AP_LINK_ACTIVE
7868#undef QCA_ATTR_NUD_STATS_GET_MAX
7869
7870
7871
Kapil Guptaee33bf12016-12-20 18:27:37 +05307872#ifdef WLAN_FEATURE_APFIND
7873/**
7874 * __wlan_hdd_cfg80211_apfind_cmd() - set configuration to firmware
7875 * @wiphy: pointer to wireless wiphy structure.
7876 * @wdev: pointer to wireless_dev structure.
7877 * @data: pointer to apfind configuration data.
7878 * @data_len: the length in byte of apfind data.
7879 *
7880 * This is called when wlan driver needs to send APFIND configurations to
7881 * firmware.
7882 *
7883 * Return: An error code or 0 on success.
7884 */
7885static int __wlan_hdd_cfg80211_apfind_cmd(struct wiphy *wiphy,
7886 struct wireless_dev *wdev,
7887 const void *data, int data_len)
7888{
7889 struct sme_ap_find_request_req apfind_req;
7890 VOS_STATUS status;
7891 int ret_val;
7892 hdd_context_t *hdd_ctx = wiphy_priv(wiphy);
7893
7894 ENTER();
7895
7896 ret_val = wlan_hdd_validate_context(hdd_ctx);
7897 if (ret_val)
7898 return ret_val;
7899
7900 if (VOS_FTM_MODE == hdd_get_conparam()) {
7901 hddLog(LOGE, FL("Command not allowed in FTM mode"));
7902 return -EPERM;
7903 }
7904
7905 apfind_req.request_data_len = data_len;
7906 apfind_req.request_data = data;
7907
7908 status = sme_apfind_set_cmd(&apfind_req);
7909 if (VOS_STATUS_SUCCESS != status) {
7910 ret_val = -EIO;
7911 }
7912 return ret_val;
7913}
7914
7915/**
7916 * wlan_hdd_cfg80211_apfind_cmd() - set configuration to firmware
7917 * @wiphy: pointer to wireless wiphy structure.
7918 * @wdev: pointer to wireless_dev structure.
7919 * @data: pointer to apfind configuration data.
7920 * @data_len: the length in byte of apfind data.
7921 *
7922 * This is called when wlan driver needs to send APFIND configurations to
7923 * firmware.
7924 *
7925 * Return: An error code or 0 on success.
7926 */
7927static int wlan_hdd_cfg80211_apfind_cmd(struct wiphy *wiphy,
7928 struct wireless_dev *wdev,
7929 const void *data, int data_len)
7930{
7931 int ret;
7932
7933 vos_ssr_protect(__func__);
7934 ret = __wlan_hdd_cfg80211_apfind_cmd(wiphy, wdev, data, data_len);
7935 vos_ssr_unprotect(__func__);
7936
7937 return ret;
7938}
7939#endif /* WLAN_FEATURE_APFIND */
Sunil Duttc69bccb2014-05-26 21:30:20 +05307940const struct wiphy_vendor_command hdd_wiphy_vendor_commands[] =
7941{
Mukul Sharma2a271632014-10-13 14:59:01 +05307942 {
7943 .info.vendor_id = QCA_NL80211_VENDOR_ID,
7944 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_ROAMING,
7945 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
7946 WIPHY_VENDOR_CMD_NEED_NETDEV |
7947 WIPHY_VENDOR_CMD_NEED_RUNNING,
Edhar, Mahesh Kumar59129f52015-01-14 14:26:04 +05307948 .doit = wlan_hdd_cfg80211_firmware_roaming
Mukul Sharma2a271632014-10-13 14:59:01 +05307949 },
Srinivas Dasari030bad32015-02-18 23:23:54 +05307950
7951 {
7952 .info.vendor_id = QCA_NL80211_VENDOR_ID,
7953 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_NAN,
7954 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
7955 WIPHY_VENDOR_CMD_NEED_NETDEV |
7956 WIPHY_VENDOR_CMD_NEED_RUNNING,
7957 .doit = wlan_hdd_cfg80211_nan_request
7958 },
7959
Sunil Duttc69bccb2014-05-26 21:30:20 +05307960#ifdef WLAN_FEATURE_LINK_LAYER_STATS
7961 {
7962 .info.vendor_id = QCA_NL80211_VENDOR_ID,
7963 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_CLR,
7964 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
7965 WIPHY_VENDOR_CMD_NEED_NETDEV |
7966 WIPHY_VENDOR_CMD_NEED_RUNNING,
Edhar, Mahesh Kumar59129f52015-01-14 14:26:04 +05307967 .doit = wlan_hdd_cfg80211_ll_stats_clear
Sunil Duttc69bccb2014-05-26 21:30:20 +05307968 },
7969
7970 {
7971 .info.vendor_id = QCA_NL80211_VENDOR_ID,
7972 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_SET,
7973 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
7974 WIPHY_VENDOR_CMD_NEED_NETDEV |
7975 WIPHY_VENDOR_CMD_NEED_RUNNING,
Edhar, Mahesh Kumar59129f52015-01-14 14:26:04 +05307976 .doit = wlan_hdd_cfg80211_ll_stats_set
Sunil Duttc69bccb2014-05-26 21:30:20 +05307977 },
7978
7979 {
7980 .info.vendor_id = QCA_NL80211_VENDOR_ID,
7981 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_GET,
7982 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
7983 WIPHY_VENDOR_CMD_NEED_NETDEV |
7984 WIPHY_VENDOR_CMD_NEED_RUNNING,
Edhar, Mahesh Kumar59129f52015-01-14 14:26:04 +05307985 .doit = wlan_hdd_cfg80211_ll_stats_get
Dino Mycle6fb96c12014-06-10 11:52:40 +05307986 },
Sunil Duttc69bccb2014-05-26 21:30:20 +05307987#endif /* WLAN_FEATURE_LINK_LAYER_STATS */
Dino Mycle6fb96c12014-06-10 11:52:40 +05307988#ifdef WLAN_FEATURE_EXTSCAN
7989 {
7990 .info.vendor_id = QCA_NL80211_VENDOR_ID,
7991 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_START,
7992 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
7993 WIPHY_VENDOR_CMD_NEED_NETDEV |
7994 WIPHY_VENDOR_CMD_NEED_RUNNING,
Edhar, Mahesh Kumar59129f52015-01-14 14:26:04 +05307995 .doit = wlan_hdd_cfg80211_extscan_start
Dino Mycle6fb96c12014-06-10 11:52:40 +05307996 },
7997 {
7998 .info.vendor_id = QCA_NL80211_VENDOR_ID,
7999 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_STOP,
8000 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8001 WIPHY_VENDOR_CMD_NEED_NETDEV |
8002 WIPHY_VENDOR_CMD_NEED_RUNNING,
Edhar, Mahesh Kumar59129f52015-01-14 14:26:04 +05308003 .doit = wlan_hdd_cfg80211_extscan_stop
Dino Mycle6fb96c12014-06-10 11:52:40 +05308004 },
8005 {
8006 .info.vendor_id = QCA_NL80211_VENDOR_ID,
8007 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_GET_VALID_CHANNELS,
8008 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8009 WIPHY_VENDOR_CMD_NEED_NETDEV,
Edhar, Mahesh Kumar59129f52015-01-14 14:26:04 +05308010 .doit = wlan_hdd_cfg80211_extscan_get_valid_channels
Dino Mycle6fb96c12014-06-10 11:52:40 +05308011 },
8012 {
8013 .info.vendor_id = QCA_NL80211_VENDOR_ID,
8014 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_GET_CAPABILITIES,
8015 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8016 WIPHY_VENDOR_CMD_NEED_NETDEV |
8017 WIPHY_VENDOR_CMD_NEED_RUNNING,
Edhar, Mahesh Kumar59129f52015-01-14 14:26:04 +05308018 .doit = wlan_hdd_cfg80211_extscan_get_capabilities
Dino Mycle6fb96c12014-06-10 11:52:40 +05308019 },
8020 {
8021 .info.vendor_id = QCA_NL80211_VENDOR_ID,
8022 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_GET_CACHED_RESULTS,
8023 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8024 WIPHY_VENDOR_CMD_NEED_NETDEV |
8025 WIPHY_VENDOR_CMD_NEED_RUNNING,
Edhar, Mahesh Kumar59129f52015-01-14 14:26:04 +05308026 .doit = wlan_hdd_cfg80211_extscan_get_cached_results
Dino Mycle6fb96c12014-06-10 11:52:40 +05308027 },
8028 {
8029 .info.vendor_id = QCA_NL80211_VENDOR_ID,
8030 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_SET_BSSID_HOTLIST,
8031 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8032 WIPHY_VENDOR_CMD_NEED_NETDEV |
8033 WIPHY_VENDOR_CMD_NEED_RUNNING,
Edhar, Mahesh Kumar59129f52015-01-14 14:26:04 +05308034 .doit = wlan_hdd_cfg80211_extscan_set_bssid_hotlist
Dino Mycle6fb96c12014-06-10 11:52:40 +05308035 },
8036 {
8037 .info.vendor_id = QCA_NL80211_VENDOR_ID,
8038 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_RESET_BSSID_HOTLIST,
8039 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8040 WIPHY_VENDOR_CMD_NEED_NETDEV |
8041 WIPHY_VENDOR_CMD_NEED_RUNNING,
Edhar, Mahesh Kumar59129f52015-01-14 14:26:04 +05308042 .doit = wlan_hdd_cfg80211_extscan_reset_bssid_hotlist
Dino Mycle6fb96c12014-06-10 11:52:40 +05308043 },
Padma, Santhosh Kumar9acee012015-08-21 19:58:01 +05308044 {
8045 .info.vendor_id = QCA_NL80211_VENDOR_ID,
8046 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_SET_SSID_HOTLIST,
8047 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8048 WIPHY_VENDOR_CMD_NEED_NETDEV |
8049 WIPHY_VENDOR_CMD_NEED_RUNNING,
8050 .doit = wlan_hdd_cfg80211_extscan_set_ssid_hotlist
8051 },
8052 {
8053 .info.vendor_id = QCA_NL80211_VENDOR_ID,
8054 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_RESET_SSID_HOTLIST,
8055 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8056 WIPHY_VENDOR_CMD_NEED_NETDEV |
8057 WIPHY_VENDOR_CMD_NEED_RUNNING,
8058 .doit = wlan_hdd_cfg80211_extscan_reset_ssid_hotlist
8059 },
Dino Mycle6fb96c12014-06-10 11:52:40 +05308060#endif /* WLAN_FEATURE_EXTSCAN */
Atul Mittal115287b2014-07-08 13:26:33 +05308061/*EXT TDLS*/
8062 {
8063 .info.vendor_id = QCA_NL80211_VENDOR_ID,
8064 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_TDLS_ENABLE,
8065 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8066 WIPHY_VENDOR_CMD_NEED_NETDEV |
8067 WIPHY_VENDOR_CMD_NEED_RUNNING,
Edhar, Mahesh Kumar59129f52015-01-14 14:26:04 +05308068 .doit = wlan_hdd_cfg80211_exttdls_enable
Atul Mittal115287b2014-07-08 13:26:33 +05308069 },
8070 {
8071 .info.vendor_id = QCA_NL80211_VENDOR_ID,
8072 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_TDLS_DISABLE,
8073 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8074 WIPHY_VENDOR_CMD_NEED_NETDEV |
8075 WIPHY_VENDOR_CMD_NEED_RUNNING,
Edhar, Mahesh Kumar59129f52015-01-14 14:26:04 +05308076 .doit = wlan_hdd_cfg80211_exttdls_disable
Atul Mittal115287b2014-07-08 13:26:33 +05308077 },
8078 {
8079 .info.vendor_id = QCA_NL80211_VENDOR_ID,
8080 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_TDLS_GET_STATUS,
8081 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8082 WIPHY_VENDOR_CMD_NEED_NETDEV,
Edhar, Mahesh Kumar59129f52015-01-14 14:26:04 +05308083 .doit = wlan_hdd_cfg80211_exttdls_get_status
Atul Mittal115287b2014-07-08 13:26:33 +05308084 },
Dasari Srinivas7875a302014-09-26 17:50:57 +05308085 {
8086 .info.vendor_id = QCA_NL80211_VENDOR_ID,
8087 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_GET_SUPPORTED_FEATURES,
8088 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8089 WIPHY_VENDOR_CMD_NEED_NETDEV,
Edhar, Mahesh Kumar59129f52015-01-14 14:26:04 +05308090 .doit = wlan_hdd_cfg80211_get_supported_features
Dasari Srinivas7875a302014-09-26 17:50:57 +05308091 },
Agarwal Ashish738843c2014-09-25 12:27:56 +05308092 {
8093 .info.vendor_id = QCA_NL80211_VENDOR_ID,
8094 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_NO_DFS_FLAG,
8095 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8096 WIPHY_VENDOR_CMD_NEED_NETDEV,
Edhar, Mahesh Kumar59129f52015-01-14 14:26:04 +05308097 .doit = wlan_hdd_cfg80211_disable_dfs_channels
Agarwal Ashish738843c2014-09-25 12:27:56 +05308098 },
Siddharth Bhala3a5cb42014-09-29 21:13:13 +05308099 {
8100 .info.vendor_id = QCA_NL80211_VENDOR_ID,
8101 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_MAC_OUI,
8102 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8103 WIPHY_VENDOR_CMD_NEED_NETDEV,
Edhar, Mahesh Kumar59129f52015-01-14 14:26:04 +05308104 .doit = wlan_hdd_cfg80211_set_spoofed_mac_oui
Siddharth Bhala3a5cb42014-09-29 21:13:13 +05308105 },
Dasari Srinivase18b2cf2014-10-28 17:09:42 +05308106 {
8107 .info.vendor_id = QCA_NL80211_VENDOR_ID,
8108 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_GET_CONCURRENCY_MATRIX,
8109 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8110 WIPHY_VENDOR_CMD_NEED_NETDEV,
Edhar, Mahesh Kumar59129f52015-01-14 14:26:04 +05308111 .doit = wlan_hdd_cfg80211_get_concurrency_matrix
Dasari Srinivase18b2cf2014-10-28 17:09:42 +05308112 },
Srinivas Dasari41d97c92015-07-29 13:09:39 +05308113 {
8114 .info.vendor_id = QCA_NL80211_VENDOR_ID,
c_manjeecfd1efb2015-09-25 19:32:34 +05308115 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_WIFI_LOGGER_MEMORY_DUMP,
8116 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8117 WIPHY_VENDOR_CMD_NEED_NETDEV |
8118 WIPHY_VENDOR_CMD_NEED_RUNNING,
8119 .doit = wlan_hdd_cfg80211_get_fw_mem_dump
8120 },
8121 {
8122 .info.vendor_id = QCA_NL80211_VENDOR_ID,
Srinivas Dasari41d97c92015-07-29 13:09:39 +05308123 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_SETBAND,
8124 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8125 WIPHY_VENDOR_CMD_NEED_NETDEV |
8126 WIPHY_VENDOR_CMD_NEED_RUNNING,
8127 .doit = wlan_hdd_cfg80211_setband
Sushant Kaushik8e644982015-09-23 12:18:54 +05308128 },
8129 {
8130 .info.vendor_id = QCA_NL80211_VENDOR_ID,
8131 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_WIFI_LOGGER_START,
8132 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8133 WIPHY_VENDOR_CMD_NEED_NETDEV,
8134 .doit = wlan_hdd_cfg80211_wifi_logger_start
8135 },
Sushant Kaushik847890c2015-09-28 16:05:17 +05308136 {
8137 .info.vendor_id = QCA_NL80211_VENDOR_ID,
8138 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_GET_WIFI_INFO,
8139 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8140 WIPHY_VENDOR_CMD_NEED_NETDEV|
8141 WIPHY_VENDOR_CMD_NEED_RUNNING,
8142 .doit = wlan_hdd_cfg80211_get_wifi_info
Sachin Ahujac08f72a2015-09-22 15:25:47 +05308143 },
8144 {
8145 .info.vendor_id = QCA_NL80211_VENDOR_ID,
8146 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_GET_RING_DATA,
8147 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8148 WIPHY_VENDOR_CMD_NEED_NETDEV |
8149 WIPHY_VENDOR_CMD_NEED_RUNNING,
8150 .doit = wlan_hdd_cfg80211_wifi_logger_get_ring_data
Gupta, Kapil7c34b322015-09-30 13:12:35 +05308151 },
8152 {
8153 .info.vendor_id = QCA_NL80211_VENDOR_ID,
8154 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_MONITOR_RSSI,
8155 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8156 WIPHY_VENDOR_CMD_NEED_NETDEV |
8157 WIPHY_VENDOR_CMD_NEED_RUNNING,
8158 .doit = wlan_hdd_cfg80211_monitor_rssi
Srinivas Girigowda8bf64cb2015-09-30 19:50:09 +05308159 },
8160#ifdef WLAN_FEATURE_OFFLOAD_PACKETS
8161 {
8162 .info.vendor_id = QCA_NL80211_VENDOR_ID,
8163 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_OFFLOADED_PACKETS,
8164 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8165 WIPHY_VENDOR_CMD_NEED_NETDEV |
8166 WIPHY_VENDOR_CMD_NEED_RUNNING,
8167 .doit = wlan_hdd_cfg80211_offloaded_packets
Deepthi Gowriae6a1662015-10-12 12:59:37 +05308168 },
Srinivas Girigowda8bf64cb2015-09-30 19:50:09 +05308169#endif
Deepthi Gowriae6a1662015-10-12 12:59:37 +05308170 {
8171 .info.vendor_id = QCA_NL80211_VENDOR_ID,
8172 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_LINK_PROPERTIES,
8173 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8174 WIPHY_VENDOR_CMD_NEED_NETDEV |
8175 WIPHY_VENDOR_CMD_NEED_RUNNING,
8176 .doit = wlan_hdd_cfg80211_get_link_properties
Arun Khandavalli7eeb1592015-10-19 21:36:57 +05308177 },
8178 {
8179 .info.vendor_id = QCA_NL80211_VENDOR_ID,
8180 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_SET_WIFI_CONFIGURATION,
8181 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8182 WIPHY_VENDOR_CMD_NEED_NETDEV |
8183 WIPHY_VENDOR_CMD_NEED_RUNNING,
8184 .doit = wlan_hdd_cfg80211_wifi_configuration_set
Kapil Guptaee33bf12016-12-20 18:27:37 +05308185 },
8186#ifdef WLAN_FEATURE_APFIND
8187 {
8188 .info.vendor_id = QCA_NL80211_VENDOR_ID,
8189 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_APFIND,
8190 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8191 WIPHY_VENDOR_CMD_NEED_NETDEV,
8192 .doit = wlan_hdd_cfg80211_apfind_cmd
8193 },
8194#endif /* WLAN_FEATURE_APFIND */
Anurag Chouhan6ee81542017-02-09 18:09:27 +05308195 {
8196 .info.vendor_id = QCA_NL80211_VENDOR_ID,
8197 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_NUD_STATS_SET,
8198 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8199 WIPHY_VENDOR_CMD_NEED_NETDEV |
8200 WIPHY_VENDOR_CMD_NEED_RUNNING,
8201 .doit = wlan_hdd_cfg80211_set_nud_stats
8202 },
8203 {
8204 .info.vendor_id = QCA_NL80211_VENDOR_ID,
8205 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_NUD_STATS_GET,
8206 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
8207 WIPHY_VENDOR_CMD_NEED_NETDEV |
8208 WIPHY_VENDOR_CMD_NEED_RUNNING,
8209 .doit = wlan_hdd_cfg80211_get_nud_stats
8210 },
Sunil Duttc69bccb2014-05-26 21:30:20 +05308211};
8212
Rajesh Chauhan98a31f82014-01-06 20:15:25 -08008213/* vendor specific events */
Sunil Duttc69bccb2014-05-26 21:30:20 +05308214static const
8215struct nl80211_vendor_cmd_info wlan_hdd_cfg80211_vendor_events[] =
Rajesh Chauhan98a31f82014-01-06 20:15:25 -08008216{
8217#ifdef FEATURE_WLAN_CH_AVOID
8218 {
Sunil Duttc69bccb2014-05-26 21:30:20 +05308219 .vendor_id = QCA_NL80211_VENDOR_ID,
8220 .subcmd = QCA_NL80211_VENDOR_SUBCMD_AVOID_FREQUENCY
Rajesh Chauhan98a31f82014-01-06 20:15:25 -08008221 },
Sunil Duttc69bccb2014-05-26 21:30:20 +05308222#endif /* FEATURE_WLAN_CH_AVOID Index = 0*/
8223#ifdef WLAN_FEATURE_LINK_LAYER_STATS
8224 {
8225 /* Index = 1*/
8226 .vendor_id = QCA_NL80211_VENDOR_ID,
8227 .subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_SET
8228 },
8229 {
8230 /* Index = 2*/
8231 .vendor_id = QCA_NL80211_VENDOR_ID,
8232 .subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_GET
8233 },
8234 {
8235 /* Index = 3*/
8236 .vendor_id = QCA_NL80211_VENDOR_ID,
8237 .subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_CLR
8238 },
8239 {
8240 /* Index = 4*/
8241 .vendor_id = QCA_NL80211_VENDOR_ID,
8242 .subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_RADIO_RESULTS
8243 },
8244 {
8245 /* Index = 5*/
8246 .vendor_id = QCA_NL80211_VENDOR_ID,
8247 .subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_IFACE_RESULTS
8248 },
8249 {
8250 /* Index = 6*/
8251 .vendor_id = QCA_NL80211_VENDOR_ID,
8252 .subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_PEERS_RESULTS
8253 },
8254#endif /* WLAN_FEATURE_LINK_LAYER_STATS */
Dino Mycle6fb96c12014-06-10 11:52:40 +05308255#ifdef WLAN_FEATURE_EXTSCAN
8256 {
8257 .vendor_id = QCA_NL80211_VENDOR_ID,
8258 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_START
8259 },
8260 {
8261 .vendor_id = QCA_NL80211_VENDOR_ID,
8262 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_STOP
8263 },
8264 {
8265 .vendor_id = QCA_NL80211_VENDOR_ID,
8266 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_GET_CAPABILITIES
8267 },
8268 {
8269 .vendor_id = QCA_NL80211_VENDOR_ID,
8270 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_GET_CACHED_RESULTS
8271 },
8272 {
8273 .vendor_id = QCA_NL80211_VENDOR_ID,
8274 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_SCAN_RESULTS_AVAILABLE
8275 },
8276 {
8277 .vendor_id = QCA_NL80211_VENDOR_ID,
8278 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_FULL_SCAN_RESULT
8279 },
8280 {
8281 .vendor_id = QCA_NL80211_VENDOR_ID,
8282 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_SCAN_EVENT
8283 },
8284 {
8285 .vendor_id = QCA_NL80211_VENDOR_ID,
8286 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_HOTLIST_AP_FOUND
8287 },
8288 {
8289 .vendor_id = QCA_NL80211_VENDOR_ID,
8290 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_SET_BSSID_HOTLIST
8291 },
8292 {
8293 .vendor_id = QCA_NL80211_VENDOR_ID,
8294 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_RESET_BSSID_HOTLIST
8295 },
Padma, Santhosh Kumar9acee012015-08-21 19:58:01 +05308296 {
8297 .vendor_id = QCA_NL80211_VENDOR_ID,
8298 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_SET_SSID_HOTLIST
8299 },
8300 {
8301 .vendor_id = QCA_NL80211_VENDOR_ID,
8302 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_RESET_SSID_HOTLIST
8303 },
8304 [QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_HOTLIST_SSID_FOUND_INDEX] = {
8305 .vendor_id = QCA_NL80211_VENDOR_ID,
8306 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_HOTLIST_SSID_FOUND
8307 },
8308 [QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_HOTLIST_SSID_LOST_INDEX] = {
8309 .vendor_id = QCA_NL80211_VENDOR_ID,
8310 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_HOTLIST_SSID_LOST
8311 },
Dino Mycle6fb96c12014-06-10 11:52:40 +05308312#endif /* WLAN_FEATURE_EXTSCAN */
Atul Mittal115287b2014-07-08 13:26:33 +05308313/*EXT TDLS*/
8314 {
8315 .vendor_id = QCA_NL80211_VENDOR_ID,
8316 .subcmd = QCA_NL80211_VENDOR_SUBCMD_TDLS_STATE
8317 },
c_manjeecfd1efb2015-09-25 19:32:34 +05308318 [QCA_NL80211_VENDOR_SUBCMD_WIFI_LOGGER_MEMORY_DUMP_INDEX] = {
8319 .vendor_id = QCA_NL80211_VENDOR_ID,
8320 .subcmd = QCA_NL80211_VENDOR_SUBCMD_WIFI_LOGGER_MEMORY_DUMP
8321 },
8322
Srinivas Dasari030bad32015-02-18 23:23:54 +05308323
Srinivas Dasaribd1cf642017-01-23 14:54:41 +05308324 [QCA_NL80211_VENDOR_SUBCMD_NAN_INDEX] = {
Srinivas Dasari030bad32015-02-18 23:23:54 +05308325 .vendor_id = QCA_NL80211_VENDOR_ID,
8326 .subcmd = QCA_NL80211_VENDOR_SUBCMD_NAN
8327 },
8328
Sushant Kaushik084f6592015-09-10 13:11:56 +05308329 {
8330 .vendor_id = QCA_NL80211_VENDOR_ID,
8331 .subcmd = QCA_NL80211_VENDOR_SUBCMD_GET_WIFI_INFO,
Gupta, Kapil7c34b322015-09-30 13:12:35 +05308332 },
8333 [QCA_NL80211_VENDOR_SUBCMD_MONITOR_RSSI_INDEX] = {
8334 .vendor_id = QCA_NL80211_VENDOR_ID,
8335 .subcmd = QCA_NL80211_VENDOR_SUBCMD_MONITOR_RSSI
8336 },
Padma, Santhosh Kumar7bbc7d92015-12-08 20:23:19 +05308337 [QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_HOTLIST_AP_LOST_INDEX] = {
8338 .vendor_id = QCA_NL80211_VENDOR_ID,
8339 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_HOTLIST_AP_LOST
8340 },
Anurag Chouhan6ee81542017-02-09 18:09:27 +05308341 [QCA_NL80211_VENDOR_SUBCMD_NUD_STATS_GET_INDEX] = {
8342 .vendor_id = QCA_NL80211_VENDOR_ID,
8343 .subcmd = QCA_NL80211_VENDOR_SUBCMD_NUD_STATS_GET,
8344 },
Rajesh Chauhan98a31f82014-01-06 20:15:25 -08008345};
8346
Jeff Johnson295189b2012-06-20 16:38:30 -07008347/*
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05308348 * FUNCTION: wlan_hdd_cfg80211_wiphy_alloc
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308349 * This function is called by hdd_wlan_startup()
8350 * during initialization.
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05308351 * This function is used to allocate wiphy structure.
Jeff Johnson295189b2012-06-20 16:38:30 -07008352 */
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05308353struct wiphy *wlan_hdd_cfg80211_wiphy_alloc(int priv_size)
Jeff Johnson295189b2012-06-20 16:38:30 -07008354{
8355 struct wiphy *wiphy;
8356 ENTER();
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308357 /*
8358 * Create wiphy device
Jeff Johnson295189b2012-06-20 16:38:30 -07008359 */
8360 wiphy = wiphy_new(&wlan_hdd_cfg80211_ops, priv_size);
8361
8362 if (!wiphy)
8363 {
8364 /* Print error and jump into err label and free the memory */
8365 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: wiphy init failed", __func__);
8366 return NULL;
8367 }
8368
Sunil Duttc69bccb2014-05-26 21:30:20 +05308369
Jeff Johnson295189b2012-06-20 16:38:30 -07008370 return wiphy;
8371}
8372
Anurag Chouhan343af7e2016-12-16 13:11:19 +05308373#if (LINUX_VERSION_CODE > KERNEL_VERSION(4,4,0)) || \
8374 defined (CFG80211_MULTI_SCAN_PLAN_BACKPORT)
8375/**
8376 * hdd_config_sched_scan_plans_to_wiphy() - configure sched scan plans to wiphy
8377 * @wiphy: pointer to wiphy
8378 * @config: pointer to config
8379 *
8380 * Return: None
8381 */
8382static void hdd_config_sched_scan_plans_to_wiphy(struct wiphy *wiphy,
8383 hdd_config_t *config)
8384{
8385 wiphy->max_sched_scan_plans = MAX_SCHED_SCAN_PLANS;
8386 if (config->max_sched_scan_plan_interval)
8387 wiphy->max_sched_scan_plan_interval =
8388 config->max_sched_scan_plan_interval;
8389 if (config->max_sched_scan_plan_iterations)
8390 wiphy->max_sched_scan_plan_iterations =
8391 config->max_sched_scan_plan_iterations;
8392}
8393#else
8394static void hdd_config_sched_scan_plans_to_wiphy(struct wiphy *wiphy,
8395 hdd_config_t *config)
8396{
8397}
8398#endif
8399
Jeff Johnson295189b2012-06-20 16:38:30 -07008400/*
8401 * FUNCTION: wlan_hdd_cfg80211_update_band
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308402 * This function is called from the supplicant through a
Jeff Johnson295189b2012-06-20 16:38:30 -07008403 * private ioctl to change the band value
8404 */
8405int wlan_hdd_cfg80211_update_band(struct wiphy *wiphy, eCsrBand eBand)
8406{
Gopichand Nakkala1f7a64f2013-04-01 18:37:17 +05308407 int i, j;
8408 eNVChannelEnabledType channelEnabledState;
8409
Jeff Johnsone7245742012-09-05 17:12:55 -07008410 ENTER();
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05308411
Gopichand Nakkala1f7a64f2013-04-01 18:37:17 +05308412 for (i = 0; i < IEEE80211_NUM_BANDS; i++)
Jeff Johnson295189b2012-06-20 16:38:30 -07008413 {
Gopichand Nakkala1f7a64f2013-04-01 18:37:17 +05308414
8415 if (NULL == wiphy->bands[i])
8416 {
8417 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: wiphy->bands[i] is NULL, i = %d",
8418 __func__, i);
8419 continue;
8420 }
8421
8422 for (j = 0; j < wiphy->bands[i]->n_channels; j++)
8423 {
8424 struct ieee80211_supported_band *band = wiphy->bands[i];
8425
8426 channelEnabledState = vos_nv_getChannelEnabledState(
8427 band->channels[j].hw_value);
8428
8429 if (IEEE80211_BAND_2GHZ == i && eCSR_BAND_5G == eBand) // 5G only
8430 {
Abhishek Singh678227a2014-11-04 10:52:38 +05308431 band->channels[j].flags |= IEEE80211_CHAN_DISABLED;
Gopichand Nakkala1f7a64f2013-04-01 18:37:17 +05308432 continue;
8433 }
8434 else if (IEEE80211_BAND_5GHZ == i && eCSR_BAND_24 == eBand) // 2G only
8435 {
8436 band->channels[j].flags |= IEEE80211_CHAN_DISABLED;
8437 continue;
8438 }
8439
8440 if (NV_CHANNEL_DISABLE == channelEnabledState ||
8441 NV_CHANNEL_INVALID == channelEnabledState)
8442 {
8443 band->channels[j].flags |= IEEE80211_CHAN_DISABLED;
8444 }
8445 else if (NV_CHANNEL_DFS == channelEnabledState)
8446 {
8447 band->channels[j].flags &= ~IEEE80211_CHAN_DISABLED;
8448 band->channels[j].flags |= IEEE80211_CHAN_RADAR;
8449 }
8450 else
8451 {
8452 band->channels[j].flags &= ~(IEEE80211_CHAN_DISABLED
8453 |IEEE80211_CHAN_RADAR);
8454 }
8455 }
Jeff Johnson295189b2012-06-20 16:38:30 -07008456 }
8457 return 0;
8458}
8459/*
8460 * FUNCTION: wlan_hdd_cfg80211_init
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308461 * This function is called by hdd_wlan_startup()
8462 * during initialization.
Jeff Johnson295189b2012-06-20 16:38:30 -07008463 * This function is used to initialize and register wiphy structure.
8464 */
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05308465int wlan_hdd_cfg80211_init(struct device *dev,
Jeff Johnson295189b2012-06-20 16:38:30 -07008466 struct wiphy *wiphy,
8467 hdd_config_t *pCfg
8468 )
8469{
Gopichand Nakkala1f7a64f2013-04-01 18:37:17 +05308470 int i, j;
Vinay Krishna Erannafacf5e22014-02-24 13:16:25 +05308471 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
8472
Jeff Johnsone7245742012-09-05 17:12:55 -07008473 ENTER();
8474
Jeff Johnson295189b2012-06-20 16:38:30 -07008475 /* Now bind the underlying wlan device with wiphy */
8476 set_wiphy_dev(wiphy, dev);
8477
8478 wiphy->mgmt_stypes = wlan_hdd_txrx_stypes;
Amar Singhalfddc28c2013-09-05 13:03:40 -07008479
Kiet Lam6c583332013-10-14 05:37:09 +05308480#ifndef CONFIG_ENABLE_LINUX_REG
Amar Singhal0a402232013-10-11 20:57:16 -07008481 /* the flag for the other case would be initialzed in
8482 vos_init_wiphy_from_nv_bin */
Manjeet Singh9e19de62016-08-18 18:26:41 +05308483#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,14,0))
8484 wiphy->regulatory_flags |= REGULATORY_STRICT_REG;
8485#else
Amar Singhal0a402232013-10-11 20:57:16 -07008486 wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY;
Kiet Lam6c583332013-10-14 05:37:09 +05308487#endif
Manjeet Singh9e19de62016-08-18 18:26:41 +05308488#endif
Amar Singhala49cbc52013-10-08 18:37:44 -07008489
Amar Singhalfddc28c2013-09-05 13:03:40 -07008490 /* This will disable updating of NL channels from passive to
8491 * active if a beacon is received on passive channel. */
Anand N Sunkade9adb1b2015-07-29 09:56:45 +05308492#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,14,0))
8493 wiphy->regulatory_flags |= REGULATORY_DISABLE_BEACON_HINTS;
8494#else
Amar Singhalfddc28c2013-09-05 13:03:40 -07008495 wiphy->flags |= WIPHY_FLAG_DISABLE_BEACON_HINTS;
Anand N Sunkade9adb1b2015-07-29 09:56:45 +05308496#endif
Amar Singhalfddc28c2013-09-05 13:03:40 -07008497
Amar Singhala49cbc52013-10-08 18:37:44 -07008498
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008499#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
Madan Mohan Koyyalamudi1b4afb02012-10-22 15:25:16 -07008500 wiphy->flags |= WIPHY_FLAG_HAVE_AP_SME
8501 | WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD
8502 | WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL
Jeff Johnsone7245742012-09-05 17:12:55 -07008503 | WIPHY_FLAG_OFFCHAN_TX;
Anand N Sunkade9adb1b2015-07-29 09:56:45 +05308504#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,14,0))
Rajeev Kumar Sirasanagandla0d6dd752016-08-17 15:01:39 +05308505 wiphy->regulatory_flags |= REGULATORY_COUNTRY_IE_IGNORE;
Anand N Sunkade9adb1b2015-07-29 09:56:45 +05308506#else
8507 wiphy->country_ie_pref = NL80211_COUNTRY_IE_IGNORE_CORE;
8508#endif
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008509#endif
Amar Singhala49cbc52013-10-08 18:37:44 -07008510
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08008511#if defined (WLAN_FEATURE_VOWIFI_11R) || defined (FEATURE_WLAN_ESE) || defined(FEATURE_WLAN_LFR)
Srinivas Girigowda640728a2013-03-28 12:21:54 -07008512 if (pCfg->isFastTransitionEnabled
James Zmuda77fb5ae2013-01-29 08:00:17 -08008513#ifdef FEATURE_WLAN_LFR
Srinivas Girigowda640728a2013-03-28 12:21:54 -07008514 || pCfg->isFastRoamIniFeatureEnabled
8515#endif
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08008516#ifdef FEATURE_WLAN_ESE
8517 || pCfg->isEseIniFeatureEnabled
Srinivas Girigowda640728a2013-03-28 12:21:54 -07008518#endif
8519 )
8520 {
8521 wiphy->flags |= WIPHY_FLAG_SUPPORTS_FW_ROAM;
8522 }
James Zmuda77fb5ae2013-01-29 08:00:17 -08008523#endif
Mohit Khanna698ba2a2012-12-04 15:08:18 -08008524#ifdef FEATURE_WLAN_TDLS
8525 wiphy->flags |= WIPHY_FLAG_SUPPORTS_TDLS
8526 | WIPHY_FLAG_TDLS_EXTERNAL_SETUP;
8527#endif
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05308528#ifdef FEATURE_WLAN_SCAN_PNO
Hardik Kantilal Patel3dfd8792013-11-13 20:34:57 +05308529 if (pCfg->configPNOScanSupport)
8530 {
8531 wiphy->flags |= WIPHY_FLAG_SUPPORTS_SCHED_SCAN;
8532 wiphy->max_sched_scan_ssids = SIR_PNO_MAX_SUPP_NETWORKS;
8533 wiphy->max_match_sets = SIR_PNO_MAX_SUPP_NETWORKS;
8534 wiphy->max_sched_scan_ie_len = SIR_MAC_MAX_IE_LENGTH;
8535 }
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05308536#endif/*FEATURE_WLAN_SCAN_PNO*/
Mohit Khanna698ba2a2012-12-04 15:08:18 -08008537
Abhishek Singh10d85972015-04-17 10:27:23 +05308538#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
8539 wiphy->features |= NL80211_FEATURE_HT_IBSS;
8540#endif
8541
Amar Singhalfddc28c2013-09-05 13:03:40 -07008542#ifdef CONFIG_ENABLE_LINUX_REG
Madan Mohan Koyyalamudic3a240c2012-09-28 15:34:08 -07008543 /* even with WIPHY_FLAG_CUSTOM_REGULATORY,
8544 driver can still register regulatory callback and
Amar Singhalfddc28c2013-09-05 13:03:40 -07008545 it will get regulatory settings in wiphy->band[], but
Madan Mohan Koyyalamudic3a240c2012-09-28 15:34:08 -07008546 driver need to determine what to do with both
8547 regulatory settings */
Amar Singhalfddc28c2013-09-05 13:03:40 -07008548
8549 wiphy->reg_notifier = wlan_hdd_linux_reg_notifier;
Amar Singhala49cbc52013-10-08 18:37:44 -07008550#else
8551 wiphy->reg_notifier = wlan_hdd_crda_reg_notifier;
Amar Singhalfddc28c2013-09-05 13:03:40 -07008552#endif
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008553
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308554 wiphy->max_scan_ssids = MAX_SCAN_SSID;
8555
Ganesh Kondabattini7500fb32015-04-10 14:50:32 +05308556 wiphy->max_scan_ie_len = SIR_MAC_MAX_ADD_IE_LENGTH;
Jeff Johnson295189b2012-06-20 16:38:30 -07008557
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05308558 wiphy->max_acl_mac_addrs = MAX_ACL_MAC_ADDRESS;
8559
Jeff Johnson295189b2012-06-20 16:38:30 -07008560 /* Supports STATION & AD-HOC modes right now */
Bhargav Shah0d2e3e52015-07-24 16:51:01 +05308561 wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION)
8562 | BIT(NL80211_IFTYPE_ADHOC)
8563 | BIT(NL80211_IFTYPE_P2P_CLIENT)
8564 | BIT(NL80211_IFTYPE_P2P_GO)
8565 | BIT(NL80211_IFTYPE_AP);
8566
8567 if (VOS_MONITOR_MODE == hdd_get_conparam())
8568 {
8569 wiphy->interface_modes |= BIT(NL80211_IFTYPE_MONITOR);
8570 }
Jeff Johnson295189b2012-06-20 16:38:30 -07008571
Rashmi Ramannabd3feb72014-02-25 16:14:48 +05308572 if( pCfg->advertiseConcurrentOperation )
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -08008573 {
Rashmi Ramannabd3feb72014-02-25 16:14:48 +05308574#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
8575 if( pCfg->enableMCC )
8576 {
8577 /* Currently, supports up to two channels */
8578 wlan_hdd_iface_combination.num_different_channels = 2;
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -08008579
Rashmi Ramannabd3feb72014-02-25 16:14:48 +05308580 if( !pCfg->allowMCCGODiffBI )
8581 wlan_hdd_iface_combination.beacon_int_infra_match = true;
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -08008582
Rashmi Ramannabd3feb72014-02-25 16:14:48 +05308583 }
8584 wiphy->iface_combinations = &wlan_hdd_iface_combination;
8585 wiphy->n_iface_combinations = 1;
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -08008586#endif
Rashmi Ramannabd3feb72014-02-25 16:14:48 +05308587 }
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -08008588
Jeff Johnson295189b2012-06-20 16:38:30 -07008589 /* Before registering we need to update the ht capabilitied based
8590 * on ini values*/
8591 if( !pCfg->ShortGI20MhzEnable )
8592 {
8593 wlan_hdd_band_2_4_GHZ.ht_cap.cap &= ~IEEE80211_HT_CAP_SGI_20;
8594 wlan_hdd_band_5_GHZ.ht_cap.cap &= ~IEEE80211_HT_CAP_SGI_20;
Jeff Johnson295189b2012-06-20 16:38:30 -07008595 }
8596
8597 if( !pCfg->ShortGI40MhzEnable )
8598 {
8599 wlan_hdd_band_5_GHZ.ht_cap.cap &= ~IEEE80211_HT_CAP_SGI_40;
8600 }
8601
8602 if( !pCfg->nChannelBondingMode5GHz )
8603 {
8604 wlan_hdd_band_5_GHZ.ht_cap.cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
8605 }
Agrawal Ashish97dec502015-11-26 20:20:58 +05308606 /*
8607 * In case of static linked driver at the time of driver unload,
8608 * module exit doesn't happens. Module cleanup helps in cleaning
8609 * of static memory.
8610 * If driver load happens statically, at the time of driver unload,
8611 * wiphy flags don't get reset because of static memory.
8612 * It's better not to store channel in static memory.
8613 */
8614 wiphy->bands[IEEE80211_BAND_2GHZ] = &wlan_hdd_band_2_4_GHZ;
8615 wiphy->bands[IEEE80211_BAND_2GHZ]->channels =
8616 (struct ieee80211_channel *)vos_mem_malloc(sizeof(hdd_channels_2_4_GHZ));
8617 if (wiphy->bands[IEEE80211_BAND_2GHZ]->channels == NULL)
8618 {
8619 hddLog(VOS_TRACE_LEVEL_ERROR,
8620 FL("Not enough memory to allocate channels"));
8621 return -ENOMEM;
8622 }
8623 vos_mem_copy(wiphy->bands[IEEE80211_BAND_2GHZ]->channels,
8624 &hdd_channels_2_4_GHZ[0],
8625 sizeof(hdd_channels_2_4_GHZ));
Jeff Johnson295189b2012-06-20 16:38:30 -07008626
Agrawal Ashish97dec502015-11-26 20:20:58 +05308627 if (true == hdd_is_5g_supported(pHddCtx))
8628 {
8629 wiphy->bands[IEEE80211_BAND_5GHZ] = &wlan_hdd_band_5_GHZ;
8630 wiphy->bands[IEEE80211_BAND_5GHZ]->channels =
8631 (struct ieee80211_channel *)vos_mem_malloc(sizeof(hdd_channels_5_GHZ));
8632 if (wiphy->bands[IEEE80211_BAND_5GHZ]->channels == NULL)
8633 {
8634 hddLog(VOS_TRACE_LEVEL_ERROR,
8635 FL("Not enough memory to allocate channels"));
8636 vos_mem_free(wiphy->bands[IEEE80211_BAND_2GHZ]->channels);
8637 wiphy->bands[IEEE80211_BAND_2GHZ]->channels = NULL;
8638 return -ENOMEM;
8639 }
8640 vos_mem_copy(wiphy->bands[IEEE80211_BAND_5GHZ]->channels,
8641 &hdd_channels_5_GHZ[0],
8642 sizeof(hdd_channels_5_GHZ));
8643 }
Gopichand Nakkala1f7a64f2013-04-01 18:37:17 +05308644
8645 for (i = 0; i < IEEE80211_NUM_BANDS; i++)
8646 {
8647
8648 if (NULL == wiphy->bands[i])
8649 {
Ratheesh S P36dbc932015-08-07 14:28:57 +05308650 hddLog(VOS_TRACE_LEVEL_INFO,"%s: wiphy->bands[i] is NULL, i = %d",
Gopichand Nakkala1f7a64f2013-04-01 18:37:17 +05308651 __func__, i);
8652 continue;
8653 }
8654
8655 for (j = 0; j < wiphy->bands[i]->n_channels; j++)
8656 {
8657 struct ieee80211_supported_band *band = wiphy->bands[i];
8658
8659 if (IEEE80211_BAND_2GHZ == i && eCSR_BAND_5G == pCfg->nBandCapability) // 5G only
8660 {
8661 // Enable social channels for P2P
8662 if (WLAN_HDD_IS_SOCIAL_CHANNEL(band->channels[j].center_freq))
8663 band->channels[j].flags &= ~IEEE80211_CHAN_DISABLED;
8664 else
8665 band->channels[j].flags |= IEEE80211_CHAN_DISABLED;
8666 continue;
8667 }
8668 else if (IEEE80211_BAND_5GHZ == i && eCSR_BAND_24 == pCfg->nBandCapability) // 2G only
8669 {
8670 band->channels[j].flags |= IEEE80211_CHAN_DISABLED;
8671 continue;
8672 }
8673 }
Jeff Johnson295189b2012-06-20 16:38:30 -07008674 }
8675 /*Initialise the supported cipher suite details*/
8676 wiphy->cipher_suites = hdd_cipher_suites;
8677 wiphy->n_cipher_suites = ARRAY_SIZE(hdd_cipher_suites);
8678
8679 /*signal strength in mBm (100*dBm) */
8680 wiphy->signal_type = CFG80211_SIGNAL_TYPE_MBM;
8681
8682#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
Sushant Kaushik4f640e42014-07-08 12:27:09 +05308683 wiphy->max_remain_on_channel_duration = 5000;
Jeff Johnson295189b2012-06-20 16:38:30 -07008684#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07008685
Sunil Duttc69bccb2014-05-26 21:30:20 +05308686 wiphy->n_vendor_commands = ARRAY_SIZE(hdd_wiphy_vendor_commands);
8687 wiphy->vendor_commands = hdd_wiphy_vendor_commands;
Rajesh Chauhan98a31f82014-01-06 20:15:25 -08008688 wiphy->vendor_events = wlan_hdd_cfg80211_vendor_events;
8689 wiphy->n_vendor_events = ARRAY_SIZE(wlan_hdd_cfg80211_vendor_events);
8690
Anurag Chouhan343af7e2016-12-16 13:11:19 +05308691 hdd_config_sched_scan_plans_to_wiphy(wiphy, pCfg);
8692
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05308693 EXIT();
8694 return 0;
8695}
8696
8697/* In this function we are registering wiphy. */
8698int wlan_hdd_cfg80211_register(struct wiphy *wiphy)
8699{
8700 ENTER();
8701 /* Register our wiphy dev with cfg80211 */
Jeff Johnson295189b2012-06-20 16:38:30 -07008702 if (0 > wiphy_register(wiphy))
8703 {
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05308704 /* print error */
Jeff Johnson295189b2012-06-20 16:38:30 -07008705 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: wiphy register failed", __func__);
8706 return -EIO;
8707 }
8708
8709 EXIT();
8710 return 0;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308711}
Jeff Johnson295189b2012-06-20 16:38:30 -07008712
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05308713/* In this function we are updating channel list when,
8714 regulatory domain is FCC and country code is US.
8715 Here In FCC standard 5GHz UNII-1 Bands are indoor only.
8716 As per FCC smart phone is not a indoor device.
8717 GO should not opeate on indoor channels */
8718void wlan_hdd_cfg80211_update_reg_info(struct wiphy *wiphy)
8719{
8720 int j;
8721 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
8722 tANI_U8 defaultCountryCode[3] = SME_INVALID_COUNTRY_CODE;
8723 //Default counrtycode from NV at the time of wiphy initialization.
8724 if (eHAL_STATUS_SUCCESS != sme_GetDefaultCountryCodeFrmNv(pHddCtx->hHal,
8725 &defaultCountryCode[0]))
8726 {
Jeff Johnson0299d0a2013-10-30 12:37:43 -07008727 hddLog(LOGE, FL("Failed to get default country code from NV"));
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05308728 }
8729 if ((defaultCountryCode[0]== 'U') && (defaultCountryCode[1]=='S'))
8730 {
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05308731 if (NULL == wiphy->bands[IEEE80211_BAND_5GHZ])
8732 {
8733 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: wiphy->bands[IEEE80211_BAND_5GHZ] is NULL",__func__ );
8734 return;
8735 }
8736 for (j = 0; j < wiphy->bands[IEEE80211_BAND_5GHZ]->n_channels; j++)
8737 {
8738 struct ieee80211_supported_band *band = wiphy->bands[IEEE80211_BAND_5GHZ];
8739 // Mark UNII -1 band channel as passive
8740 if (WLAN_HDD_CHANNEL_IN_UNII_1_BAND(band->channels[j].center_freq))
8741 band->channels[j].flags |= IEEE80211_CHAN_PASSIVE_SCAN;
8742 }
8743 }
8744}
Agarwal Ashish8fa0e9a2014-05-23 00:40:12 +05308745/* This function registers for all frame which supplicant is interested in */
8746void wlan_hdd_cfg80211_register_frames(hdd_adapter_t* pAdapter)
Jeff Johnson295189b2012-06-20 16:38:30 -07008747{
Jeff Johnson295189b2012-06-20 16:38:30 -07008748 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
8749 /* Register for all P2P action, public action etc frames */
8750 v_U16_t type = (SIR_MAC_MGMT_FRAME << 2) | ( SIR_MAC_MGMT_ACTION << 4);
Jeff Johnsone7245742012-09-05 17:12:55 -07008751 ENTER();
Abhishek Singh16e05762015-11-30 14:29:27 +05308752 /* Register frame indication call back */
8753 sme_register_mgmt_frame_ind_callback(hHal, hdd_indicate_mgmt_frame);
Jeff Johnson295189b2012-06-20 16:38:30 -07008754 /* Right now we are registering these frame when driver is getting
8755 initialized. Once we will move to 2.6.37 kernel, in which we have
8756 frame register ops, we will move this code as a part of that */
8757 /* GAS Initial Request */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308758 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
Jeff Johnson295189b2012-06-20 16:38:30 -07008759 (v_U8_t*)GAS_INITIAL_REQ, GAS_INITIAL_REQ_SIZE );
8760
8761 /* GAS Initial Response */
8762 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
8763 (v_U8_t*)GAS_INITIAL_RSP, GAS_INITIAL_RSP_SIZE );
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308764
Jeff Johnson295189b2012-06-20 16:38:30 -07008765 /* GAS Comeback Request */
8766 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
8767 (v_U8_t*)GAS_COMEBACK_REQ, GAS_COMEBACK_REQ_SIZE );
8768
8769 /* GAS Comeback Response */
8770 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
8771 (v_U8_t*)GAS_COMEBACK_RSP, GAS_COMEBACK_RSP_SIZE );
8772
8773 /* P2P Public Action */
8774 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308775 (v_U8_t*)P2P_PUBLIC_ACTION_FRAME,
Jeff Johnson295189b2012-06-20 16:38:30 -07008776 P2P_PUBLIC_ACTION_FRAME_SIZE );
8777
8778 /* P2P Action */
8779 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
8780 (v_U8_t*)P2P_ACTION_FRAME,
8781 P2P_ACTION_FRAME_SIZE );
Chet Lanctot186b5732013-03-18 10:26:30 -07008782
Gopichand Nakkalae3d56e72013-04-21 23:33:32 +05308783 /* WNM BSS Transition Request frame */
8784 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
8785 (v_U8_t*)WNM_BSS_ACTION_FRAME,
8786 WNM_BSS_ACTION_FRAME_SIZE );
Leela Venkata Kiran Kumar Reddy Chiralae8e62c82013-10-29 18:23:26 -07008787
8788 /* WNM-Notification */
8789 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
8790 (v_U8_t*)WNM_NOTIFICATION_FRAME,
8791 WNM_NOTIFICATION_FRAME_SIZE );
Jeff Johnson295189b2012-06-20 16:38:30 -07008792}
8793
Agarwal Ashish8fa0e9a2014-05-23 00:40:12 +05308794void wlan_hdd_cfg80211_deregister_frames(hdd_adapter_t* pAdapter)
Jeff Johnson295189b2012-06-20 16:38:30 -07008795{
Jeff Johnson295189b2012-06-20 16:38:30 -07008796 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
8797 /* Register for all P2P action, public action etc frames */
8798 v_U16_t type = (SIR_MAC_MGMT_FRAME << 2) | ( SIR_MAC_MGMT_ACTION << 4);
8799
Jeff Johnsone7245742012-09-05 17:12:55 -07008800 ENTER();
8801
Jeff Johnson295189b2012-06-20 16:38:30 -07008802 /* Right now we are registering these frame when driver is getting
8803 initialized. Once we will move to 2.6.37 kernel, in which we have
8804 frame register ops, we will move this code as a part of that */
8805 /* GAS Initial Request */
8806
8807 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
8808 (v_U8_t*)GAS_INITIAL_REQ, GAS_INITIAL_REQ_SIZE );
8809
8810 /* GAS Initial Response */
8811 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
8812 (v_U8_t*)GAS_INITIAL_RSP, GAS_INITIAL_RSP_SIZE );
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308813
Jeff Johnson295189b2012-06-20 16:38:30 -07008814 /* GAS Comeback Request */
8815 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
8816 (v_U8_t*)GAS_COMEBACK_REQ, GAS_COMEBACK_REQ_SIZE );
8817
8818 /* GAS Comeback Response */
8819 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
8820 (v_U8_t*)GAS_COMEBACK_RSP, GAS_COMEBACK_RSP_SIZE );
8821
8822 /* P2P Public Action */
8823 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308824 (v_U8_t*)P2P_PUBLIC_ACTION_FRAME,
Jeff Johnson295189b2012-06-20 16:38:30 -07008825 P2P_PUBLIC_ACTION_FRAME_SIZE );
8826
8827 /* P2P Action */
8828 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
8829 (v_U8_t*)P2P_ACTION_FRAME,
8830 P2P_ACTION_FRAME_SIZE );
Leela Venkata Kiran Kumar Reddy Chiralae8e62c82013-10-29 18:23:26 -07008831 /* WNM-Notification */
8832 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
8833 (v_U8_t*)WNM_NOTIFICATION_FRAME,
8834 WNM_NOTIFICATION_FRAME_SIZE );
Jeff Johnson295189b2012-06-20 16:38:30 -07008835}
8836
8837#ifdef FEATURE_WLAN_WAPI
8838void wlan_hdd_cfg80211_set_key_wapi(hdd_adapter_t* pAdapter, u8 key_index,
Anand N Sunkad9bfc2622015-07-30 15:18:54 +05308839 const u8 *mac_addr, const u8 *key , int key_Len)
Jeff Johnson295189b2012-06-20 16:38:30 -07008840{
8841 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
8842 tCsrRoamSetKey setKey;
8843 v_BOOL_t isConnected = TRUE;
8844 int status = 0;
8845 v_U32_t roamId= 0xFF;
8846 tANI_U8 *pKeyPtr = NULL;
8847 int n = 0;
8848
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05308849 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s(%d)",
8850 __func__, hdd_device_modetoString(pAdapter->device_mode),
8851 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07008852
Gopichand Nakkalae7480202013-02-11 15:24:22 +05308853 vos_mem_zero(&setKey, sizeof(tCsrRoamSetKey));
Jeff Johnson295189b2012-06-20 16:38:30 -07008854 setKey.keyId = key_index; // Store Key ID
8855 setKey.encType = eCSR_ENCRYPT_TYPE_WPI; // SET WAPI Encryption
8856 setKey.keyDirection = eSIR_TX_RX; // Key Directionn both TX and RX
8857 setKey.paeRole = 0 ; // the PAE role
8858 if (!mac_addr || is_broadcast_ether_addr(mac_addr))
8859 {
8860 vos_set_macaddr_broadcast( (v_MACADDR_t *)setKey.peerMac );
8861 }
8862 else
8863 {
8864 isConnected = hdd_connIsConnected(pHddStaCtx);
8865 vos_mem_copy(setKey.peerMac,&pHddStaCtx->conn_info.bssId,WNI_CFG_BSSID_LEN);
8866 }
8867 setKey.keyLength = key_Len;
8868 pKeyPtr = setKey.Key;
8869 memcpy( pKeyPtr, key, key_Len);
8870
Arif Hussain6d2a3322013-11-17 19:50:10 -08008871 hddLog(VOS_TRACE_LEVEL_INFO,"%s: WAPI KEY LENGTH:0x%04x",
Jeff Johnson295189b2012-06-20 16:38:30 -07008872 __func__, key_Len);
8873 for (n = 0 ; n < key_Len; n++)
8874 hddLog(VOS_TRACE_LEVEL_INFO, "%s WAPI KEY Data[%d]:%02x ",
8875 __func__,n,setKey.Key[n]);
8876
8877 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_SETTING_KEY;
8878 if ( isConnected )
8879 {
8880 status= sme_RoamSetKey( WLAN_HDD_GET_HAL_CTX(pAdapter),
8881 pAdapter->sessionId, &setKey, &roamId );
8882 }
8883 if ( status != 0 )
8884 {
8885 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8886 "[%4d] sme_RoamSetKey returned ERROR status= %d",
8887 __LINE__, status );
8888 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_NONE;
8889 }
Vinay Krishna Eranna6f22c1f2014-10-13 16:03:06 +05308890 /* Need to clear any trace of key value in the memory.
8891 * Thus zero out the memory even though it is local
8892 * variable.
8893 */
8894 vos_mem_zero(&setKey, sizeof(setKey));
Jeff Johnson295189b2012-06-20 16:38:30 -07008895}
8896#endif /* FEATURE_WLAN_WAPI*/
8897
8898#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308899int wlan_hdd_cfg80211_alloc_new_beacon(hdd_adapter_t *pAdapter,
Jeff Johnson295189b2012-06-20 16:38:30 -07008900 beacon_data_t **ppBeacon,
8901 struct beacon_parameters *params)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008902#else
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308903int wlan_hdd_cfg80211_alloc_new_beacon(hdd_adapter_t *pAdapter,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008904 beacon_data_t **ppBeacon,
8905 struct cfg80211_beacon_data *params,
8906 int dtim_period)
8907#endif
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308908{
Jeff Johnson295189b2012-06-20 16:38:30 -07008909 int size;
8910 beacon_data_t *beacon = NULL;
8911 beacon_data_t *old = NULL;
Kapil Gupta137ef892016-12-13 19:38:00 +05308912 int head_len, tail_len, proberesp_ies_len, assocresp_ies_len;
8913 const u8 *head, *tail, *proberesp_ies, *assocresp_ies;
Jeff Johnson295189b2012-06-20 16:38:30 -07008914
Jeff Johnsone7245742012-09-05 17:12:55 -07008915 ENTER();
Jeff Johnson295189b2012-06-20 16:38:30 -07008916 if (params->head && !params->head_len)
c_hpothu6ff1c3c2013-10-01 19:01:57 +05308917 {
8918 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8919 FL("head_len is NULL"));
Jeff Johnson295189b2012-06-20 16:38:30 -07008920 return -EINVAL;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05308921 }
Jeff Johnson295189b2012-06-20 16:38:30 -07008922
8923 old = pAdapter->sessionCtx.ap.beacon;
8924
8925 if (!params->head && !old)
c_hpothu6ff1c3c2013-10-01 19:01:57 +05308926 {
8927 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8928 FL("session(%d) old and new heads points to NULL"),
8929 pAdapter->sessionId);
Jeff Johnson295189b2012-06-20 16:38:30 -07008930 return -EINVAL;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05308931 }
8932
8933 if (params->tail && !params->tail_len)
8934 {
8935 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8936 FL("tail_len is zero but tail is not NULL"));
8937 return -EINVAL;
8938 }
Jeff Johnson295189b2012-06-20 16:38:30 -07008939
Jeff Johnson295189b2012-06-20 16:38:30 -07008940#if (LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,38))
8941 /* Kernel 3.0 is not updating dtim_period for set beacon */
8942 if (!params->dtim_period)
c_hpothu6ff1c3c2013-10-01 19:01:57 +05308943 {
8944 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8945 FL("dtim period is 0"));
Jeff Johnson295189b2012-06-20 16:38:30 -07008946 return -EINVAL;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05308947 }
Jeff Johnson295189b2012-06-20 16:38:30 -07008948#endif
8949
Kapil Gupta137ef892016-12-13 19:38:00 +05308950 if (params->head)
8951 {
Jeff Johnson295189b2012-06-20 16:38:30 -07008952 head_len = params->head_len;
Kapil Gupta137ef892016-12-13 19:38:00 +05308953 head = params->head;
8954 } else
8955 {
Jeff Johnson295189b2012-06-20 16:38:30 -07008956 head_len = old->head_len;
Kapil Gupta137ef892016-12-13 19:38:00 +05308957 head = old->head;
8958 }
Jeff Johnson295189b2012-06-20 16:38:30 -07008959
Kapil Gupta137ef892016-12-13 19:38:00 +05308960 if (params->tail || !old)
8961 {
Jeff Johnson295189b2012-06-20 16:38:30 -07008962 tail_len = params->tail_len;
Kapil Gupta137ef892016-12-13 19:38:00 +05308963 tail = params->tail;
8964 } else
8965 {
Jeff Johnson295189b2012-06-20 16:38:30 -07008966 tail_len = old->tail_len;
Kapil Gupta137ef892016-12-13 19:38:00 +05308967 tail = old->tail;
8968 }
Jeff Johnson295189b2012-06-20 16:38:30 -07008969
Kapil Gupta137ef892016-12-13 19:38:00 +05308970 if (params->proberesp_ies || !old)
8971 {
8972 proberesp_ies_len = params->proberesp_ies_len;
8973 proberesp_ies = params->proberesp_ies;
8974 } else
8975 {
8976 proberesp_ies_len = old->proberesp_ies_len;
8977 proberesp_ies = old->proberesp_ies;
8978 }
8979
8980 if (params->assocresp_ies || !old)
8981 {
8982 assocresp_ies_len = params->assocresp_ies_len;
8983 assocresp_ies = params->assocresp_ies;
8984 } else
8985 {
8986 assocresp_ies_len = old->assocresp_ies_len;
8987 assocresp_ies = old->assocresp_ies;
8988 }
8989
8990 size = sizeof(beacon_data_t) + head_len + tail_len +
8991 proberesp_ies_len + assocresp_ies_len;
Jeff Johnson295189b2012-06-20 16:38:30 -07008992
8993 beacon = kzalloc(size, GFP_KERNEL);
Jeff Johnson295189b2012-06-20 16:38:30 -07008994 if( beacon == NULL )
c_hpothu6ff1c3c2013-10-01 19:01:57 +05308995 {
8996 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8997 FL("Mem allocation for beacon failed"));
Jeff Johnson295189b2012-06-20 16:38:30 -07008998 return -ENOMEM;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05308999 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009000
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009001#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
Kapil Gupta137ef892016-12-13 19:38:00 +05309002 if (params->dtim_period)
Jeff Johnson295189b2012-06-20 16:38:30 -07009003 beacon->dtim_period = params->dtim_period;
9004 else
9005 beacon->dtim_period = old->dtim_period;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009006#else
Kapil Gupta137ef892016-12-13 19:38:00 +05309007 if (dtim_period)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009008 beacon->dtim_period = dtim_period;
9009 else
9010 beacon->dtim_period = old->dtim_period;
9011#endif
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309012
Jeff Johnson295189b2012-06-20 16:38:30 -07009013 beacon->head = ((u8 *) beacon) + sizeof(beacon_data_t);
9014 beacon->tail = beacon->head + head_len;
Kapil Gupta137ef892016-12-13 19:38:00 +05309015 beacon->proberesp_ies = beacon->tail + tail_len;
9016 beacon->assocresp_ies = beacon->proberesp_ies + proberesp_ies_len;
9017
Jeff Johnson295189b2012-06-20 16:38:30 -07009018 beacon->head_len = head_len;
9019 beacon->tail_len = tail_len;
Kapil Gupta137ef892016-12-13 19:38:00 +05309020 beacon->proberesp_ies_len = proberesp_ies_len;
9021 beacon->assocresp_ies_len= assocresp_ies_len;
Jeff Johnson295189b2012-06-20 16:38:30 -07009022
c_manjee527ecac2017-01-25 12:25:27 +05309023 if (head && head_len)
9024 memcpy(beacon->head, head, head_len);
9025 if (tail && tail_len)
9026 memcpy(beacon->tail, tail, tail_len);
9027 if (proberesp_ies && proberesp_ies_len)
9028 memcpy(beacon->proberesp_ies, proberesp_ies, proberesp_ies_len);
9029 if (assocresp_ies && assocresp_ies_len)
9030 memcpy(beacon->assocresp_ies, assocresp_ies, assocresp_ies_len);
Jeff Johnson295189b2012-06-20 16:38:30 -07009031
9032 *ppBeacon = beacon;
9033
9034 kfree(old);
9035
9036 return 0;
Jeff Johnson295189b2012-06-20 16:38:30 -07009037}
Jeff Johnson295189b2012-06-20 16:38:30 -07009038
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +05309039v_U8_t* wlan_hdd_cfg80211_get_ie_ptr(
9040#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 18, 0))
9041 const v_U8_t *pIes,
9042#else
9043 v_U8_t *pIes,
9044#endif
9045 int length, v_U8_t eid)
Jeff Johnson295189b2012-06-20 16:38:30 -07009046{
9047 int left = length;
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +05309048 v_U8_t *ptr = (v_U8_t *)pIes;
Jeff Johnson295189b2012-06-20 16:38:30 -07009049 v_U8_t elem_id,elem_len;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309050
Jeff Johnson295189b2012-06-20 16:38:30 -07009051 while(left >= 2)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309052 {
Jeff Johnson295189b2012-06-20 16:38:30 -07009053 elem_id = ptr[0];
9054 elem_len = ptr[1];
9055 left -= 2;
9056 if(elem_len > left)
9057 {
9058 hddLog(VOS_TRACE_LEVEL_FATAL,
Madan Mohan Koyyalamudi8bdd3112012-09-24 13:55:14 -07009059 FL("****Invalid IEs eid = %d elem_len=%d left=%d*****"),
Jeff Johnson295189b2012-06-20 16:38:30 -07009060 eid,elem_len,left);
9061 return NULL;
9062 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309063 if (elem_id == eid)
Jeff Johnson295189b2012-06-20 16:38:30 -07009064 {
9065 return ptr;
9066 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309067
Jeff Johnson295189b2012-06-20 16:38:30 -07009068 left -= elem_len;
9069 ptr += (elem_len + 2);
9070 }
9071 return NULL;
9072}
9073
Jeff Johnson295189b2012-06-20 16:38:30 -07009074/* Check if rate is 11g rate or not */
9075static int wlan_hdd_rate_is_11g(u8 rate)
9076{
Sanjay Devnani28322e22013-06-21 16:13:40 -07009077 static const u8 gRateArray[8] = {12, 18, 24, 36, 48, 72, 96, 108}; /* actual rate * 2 */
Jeff Johnson295189b2012-06-20 16:38:30 -07009078 u8 i;
9079 for (i = 0; i < 8; i++)
9080 {
9081 if(rate == gRateArray[i])
9082 return TRUE;
9083 }
9084 return FALSE;
9085}
9086
9087/* Check for 11g rate and set proper 11g only mode */
9088static void wlan_hdd_check_11gmode(u8 *pIe, u8* require_ht,
9089 u8* pCheckRatesfor11g, eSapPhyMode* pSapHw_mode)
9090{
9091 u8 i, num_rates = pIe[0];
9092
9093 pIe += 1;
9094 for ( i = 0; i < num_rates; i++)
9095 {
9096 if( *pCheckRatesfor11g && (TRUE == wlan_hdd_rate_is_11g(pIe[i] & RATE_MASK)))
9097 {
9098 /* If rate set have 11g rate than change the mode to 11G */
9099 *pSapHw_mode = eSAP_DOT11_MODE_11g;
9100 if (pIe[i] & BASIC_RATE_MASK)
9101 {
9102 /* If we have 11g rate as basic rate, it means mode
9103 is 11g only mode.
9104 */
9105 *pSapHw_mode = eSAP_DOT11_MODE_11g_ONLY;
9106 *pCheckRatesfor11g = FALSE;
9107 }
9108 }
9109 else if((BASIC_RATE_MASK | WLAN_BSS_MEMBERSHIP_SELECTOR_HT_PHY) == pIe[i])
9110 {
9111 *require_ht = TRUE;
9112 }
9113 }
9114 return;
9115}
9116
9117static void wlan_hdd_set_sapHwmode(hdd_adapter_t *pHostapdAdapter)
9118{
9119 tsap_Config_t *pConfig = &pHostapdAdapter->sessionCtx.ap.sapConfig;
9120 beacon_data_t *pBeacon = pHostapdAdapter->sessionCtx.ap.beacon;
9121 struct ieee80211_mgmt *pMgmt_frame = (struct ieee80211_mgmt*)pBeacon->head;
9122 u8 checkRatesfor11g = TRUE;
9123 u8 require_ht = FALSE;
9124 u8 *pIe=NULL;
9125
9126 pConfig->SapHw_mode= eSAP_DOT11_MODE_11b;
9127
9128 pIe = wlan_hdd_cfg80211_get_ie_ptr(&pMgmt_frame->u.beacon.variable[0],
9129 pBeacon->head_len, WLAN_EID_SUPP_RATES);
9130 if (pIe != NULL)
9131 {
9132 pIe += 1;
9133 wlan_hdd_check_11gmode(pIe, &require_ht, &checkRatesfor11g,
9134 &pConfig->SapHw_mode);
9135 }
9136
9137 pIe = wlan_hdd_cfg80211_get_ie_ptr(pBeacon->tail, pBeacon->tail_len,
9138 WLAN_EID_EXT_SUPP_RATES);
9139 if (pIe != NULL)
9140 {
9141
9142 pIe += 1;
9143 wlan_hdd_check_11gmode(pIe, &require_ht, &checkRatesfor11g,
9144 &pConfig->SapHw_mode);
9145 }
9146
9147 if( pConfig->channel > 14 )
9148 {
9149 pConfig->SapHw_mode= eSAP_DOT11_MODE_11a;
9150 }
9151
9152 pIe = wlan_hdd_cfg80211_get_ie_ptr(pBeacon->tail, pBeacon->tail_len,
9153 WLAN_EID_HT_CAPABILITY);
9154
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309155 if(pIe)
Jeff Johnson295189b2012-06-20 16:38:30 -07009156 {
9157 pConfig->SapHw_mode= eSAP_DOT11_MODE_11n;
9158 if(require_ht)
9159 pConfig->SapHw_mode= eSAP_DOT11_MODE_11n_ONLY;
9160 }
9161}
9162
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05309163static int wlan_hdd_add_ie(hdd_adapter_t* pHostapdAdapter, v_U8_t *genie,
9164 v_U8_t *total_ielen, v_U8_t *oui, v_U8_t oui_size)
9165{
Arif Hussaine7f3ea52013-09-12 21:56:36 -07009166 v_U16_t ielen = 0;
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05309167 v_U8_t *pIe = NULL;
9168 beacon_data_t *pBeacon = pHostapdAdapter->sessionCtx.ap.beacon;
9169
9170 pIe = wlan_hdd_get_vendor_oui_ie_ptr(oui, oui_size,
9171 pBeacon->tail, pBeacon->tail_len);
9172
9173 if (pIe)
9174 {
9175 ielen = pIe[1] + 2;
9176 if ((*total_ielen + ielen) <= MAX_GENIE_LEN)
9177 {
9178 vos_mem_copy(&genie[*total_ielen], pIe, ielen);
9179 }
9180 else
9181 {
9182 hddLog( VOS_TRACE_LEVEL_ERROR, "**Ie Length is too big***");
9183 return -EINVAL;
9184 }
9185 *total_ielen += ielen;
9186 }
9187 return 0;
9188}
9189
Arif Hussaine7f3ea52013-09-12 21:56:36 -07009190static void wlan_hdd_add_hostapd_conf_vsie(hdd_adapter_t* pHostapdAdapter,
9191 v_U8_t *genie, v_U8_t *total_ielen)
9192{
9193 beacon_data_t *pBeacon = pHostapdAdapter->sessionCtx.ap.beacon;
9194 int left = pBeacon->tail_len;
9195 v_U8_t *ptr = pBeacon->tail;
9196 v_U8_t elem_id, elem_len;
9197 v_U16_t ielen = 0;
9198
9199 if ( NULL == ptr || 0 == left )
9200 return;
9201
9202 while (left >= 2)
9203 {
9204 elem_id = ptr[0];
9205 elem_len = ptr[1];
9206 left -= 2;
9207 if (elem_len > left)
9208 {
9209 hddLog( VOS_TRACE_LEVEL_ERROR,
9210 "****Invalid IEs eid = %d elem_len=%d left=%d*****",
9211 elem_id, elem_len, left);
9212 return;
9213 }
9214 if (IE_EID_VENDOR == elem_id)
9215 {
9216 /* skipping the VSIE's which we don't want to include or
9217 * it will be included by existing code
9218 */
9219 if ((memcmp( &ptr[2], WPS_OUI_TYPE, WPS_OUI_TYPE_SIZE) != 0 ) &&
9220#ifdef WLAN_FEATURE_WFD
9221 (memcmp( &ptr[2], WFD_OUI_TYPE, WFD_OUI_TYPE_SIZE) != 0) &&
9222#endif
9223 (memcmp( &ptr[2], WHITELIST_OUI_TYPE, WPA_OUI_TYPE_SIZE) != 0) &&
9224 (memcmp( &ptr[2], BLACKLIST_OUI_TYPE, WPA_OUI_TYPE_SIZE) != 0) &&
9225 (memcmp( &ptr[2], "\x00\x50\xf2\x02", WPA_OUI_TYPE_SIZE) != 0) &&
9226 (memcmp( &ptr[2], WPA_OUI_TYPE, WPA_OUI_TYPE_SIZE) != 0) &&
9227 (memcmp( &ptr[2], P2P_OUI_TYPE, P2P_OUI_TYPE_SIZE) != 0))
9228 {
9229 ielen = ptr[1] + 2;
9230 if ((*total_ielen + ielen) <= MAX_GENIE_LEN)
9231 {
9232 vos_mem_copy(&genie[*total_ielen], ptr, ielen);
9233 *total_ielen += ielen;
9234 }
9235 else
9236 {
9237 hddLog( VOS_TRACE_LEVEL_ERROR,
9238 "IE Length is too big "
9239 "IEs eid=%d elem_len=%d total_ie_lent=%d",
9240 elem_id, elem_len, *total_ielen);
9241 }
9242 }
9243 }
9244
9245 left -= elem_len;
9246 ptr += (elem_len + 2);
9247 }
9248 return;
9249}
9250
Kapil Gupta137ef892016-12-13 19:38:00 +05309251int wlan_hdd_cfg80211_update_apies(hdd_adapter_t *pHostapdAdapter)
Jeff Johnson295189b2012-06-20 16:38:30 -07009252{
9253 v_U8_t *genie;
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05309254 v_U8_t total_ielen = 0;
Jeff Johnson295189b2012-06-20 16:38:30 -07009255 v_U8_t addIE[1] = {0};
Jeff Johnsone7245742012-09-05 17:12:55 -07009256 int ret = 0;
Kapil Gupta137ef892016-12-13 19:38:00 +05309257 beacon_data_t *pBeacon = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07009258
9259 genie = vos_mem_malloc(MAX_GENIE_LEN);
9260
9261 if(genie == NULL) {
9262
9263 return -ENOMEM;
9264 }
9265
Kapil Gupta137ef892016-12-13 19:38:00 +05309266 pBeacon = pHostapdAdapter->sessionCtx.ap.beacon;
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05309267 if (0 != wlan_hdd_add_ie(pHostapdAdapter, genie,
9268 &total_ielen, WPS_OUI_TYPE, WPS_OUI_TYPE_SIZE))
Jeff Johnson295189b2012-06-20 16:38:30 -07009269 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05309270 hddLog(LOGE,
9271 FL("Adding WPS IE failed"));
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05309272 ret = -EINVAL;
9273 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07009274 }
9275
9276#ifdef WLAN_FEATURE_WFD
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05309277 if (0 != wlan_hdd_add_ie(pHostapdAdapter, genie,
9278 &total_ielen, WFD_OUI_TYPE, WFD_OUI_TYPE_SIZE))
9279 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05309280 hddLog(LOGE,
9281 FL("Adding WFD IE failed"));
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05309282 ret = -EINVAL;
9283 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07009284 }
9285#endif
9286
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05309287 if (0 != wlan_hdd_add_ie(pHostapdAdapter, genie,
9288 &total_ielen, P2P_OUI_TYPE, P2P_OUI_TYPE_SIZE))
Jeff Johnson295189b2012-06-20 16:38:30 -07009289 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05309290 hddLog(LOGE,
9291 FL("Adding P2P IE failed"));
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05309292 ret = -EINVAL;
9293 goto done;
9294 }
9295
9296 if (WLAN_HDD_SOFTAP == pHostapdAdapter->device_mode)
9297 {
Arif Hussaine7f3ea52013-09-12 21:56:36 -07009298 wlan_hdd_add_hostapd_conf_vsie(pHostapdAdapter, genie, &total_ielen);
Jeff Johnson295189b2012-06-20 16:38:30 -07009299 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009300
9301 if (ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
9302 WNI_CFG_PROBE_RSP_BCN_ADDNIE_DATA, genie, total_ielen, NULL,
9303 eANI_BOOLEAN_FALSE)==eHAL_STATUS_FAILURE)
9304 {
9305 hddLog(LOGE,
9306 "Could not pass on WNI_CFG_PROBE_RSP_BCN_ADDNIE_DATA to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07009307 ret = -EINVAL;
9308 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07009309 }
9310
9311 if (ccmCfgSetInt((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
9312 WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG, 1,NULL,
9313 test_bit(SOFTAP_BSS_STARTED, &pHostapdAdapter->event_flags) ?
9314 eANI_BOOLEAN_TRUE : eANI_BOOLEAN_FALSE)
9315 ==eHAL_STATUS_FAILURE)
9316 {
9317 hddLog(LOGE,
9318 "Could not pass on WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07009319 ret = -EINVAL;
9320 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07009321 }
9322
9323 // Added for ProResp IE
Kapil Gupta137ef892016-12-13 19:38:00 +05309324 if ((pBeacon->proberesp_ies != NULL) && (pBeacon->proberesp_ies_len != 0))
Jeff Johnson295189b2012-06-20 16:38:30 -07009325 {
Kapil Gupta137ef892016-12-13 19:38:00 +05309326 u16 rem_probe_resp_ie_len = pBeacon->proberesp_ies_len;
Jeff Johnson295189b2012-06-20 16:38:30 -07009327 u8 probe_rsp_ie_len[3] = {0};
9328 u8 counter = 0;
9329 /* Check Probe Resp Length if it is greater then 255 then Store
9330 Probe Resp IEs into WNI_CFG_PROBE_RSP_ADDNIE_DATA1 &
9331 WNI_CFG_PROBE_RSP_ADDNIE_DATA2 CFG Variable As We are not able
9332 Store More then 255 bytes into One Variable.
9333 */
9334 while ((rem_probe_resp_ie_len > 0) && (counter < 3))
9335 {
9336 if (rem_probe_resp_ie_len > MAX_CFG_STRING_LEN)
9337 {
9338 probe_rsp_ie_len[counter++] = MAX_CFG_STRING_LEN;
9339 rem_probe_resp_ie_len -= MAX_CFG_STRING_LEN;
9340 }
9341 else
9342 {
9343 probe_rsp_ie_len[counter++] = rem_probe_resp_ie_len;
9344 rem_probe_resp_ie_len = 0;
9345 }
9346 }
9347
9348 rem_probe_resp_ie_len = 0;
9349
9350 if (probe_rsp_ie_len[0] > 0)
9351 {
9352 if (ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
9353 WNI_CFG_PROBE_RSP_ADDNIE_DATA1,
Kapil Gupta137ef892016-12-13 19:38:00 +05309354 (tANI_U8*)&pBeacon->
9355 proberesp_ies[rem_probe_resp_ie_len],
Jeff Johnson295189b2012-06-20 16:38:30 -07009356 probe_rsp_ie_len[0], NULL,
9357 eANI_BOOLEAN_FALSE) == eHAL_STATUS_FAILURE)
9358 {
9359 hddLog(LOGE,
9360 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_DATA1 to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07009361 ret = -EINVAL;
9362 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07009363 }
9364 rem_probe_resp_ie_len += probe_rsp_ie_len[0];
9365 }
9366
9367 if (probe_rsp_ie_len[1] > 0)
9368 {
9369 if (ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
9370 WNI_CFG_PROBE_RSP_ADDNIE_DATA2,
Kapil Gupta137ef892016-12-13 19:38:00 +05309371 (tANI_U8*)&pBeacon->
9372 proberesp_ies[rem_probe_resp_ie_len],
Jeff Johnson295189b2012-06-20 16:38:30 -07009373 probe_rsp_ie_len[1], NULL,
9374 eANI_BOOLEAN_FALSE) == eHAL_STATUS_FAILURE)
9375 {
9376 hddLog(LOGE,
9377 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_DATA2 to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07009378 ret = -EINVAL;
9379 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07009380 }
9381 rem_probe_resp_ie_len += probe_rsp_ie_len[1];
9382 }
9383
9384 if (probe_rsp_ie_len[2] > 0)
9385 {
9386 if (ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
9387 WNI_CFG_PROBE_RSP_ADDNIE_DATA3,
Kapil Gupta137ef892016-12-13 19:38:00 +05309388 (tANI_U8*)&pBeacon->
9389 proberesp_ies[rem_probe_resp_ie_len],
Jeff Johnson295189b2012-06-20 16:38:30 -07009390 probe_rsp_ie_len[2], NULL,
9391 eANI_BOOLEAN_FALSE) == eHAL_STATUS_FAILURE)
9392 {
9393 hddLog(LOGE,
9394 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_DATA3 to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07009395 ret = -EINVAL;
9396 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07009397 }
9398 rem_probe_resp_ie_len += probe_rsp_ie_len[2];
9399 }
9400
9401 if (probe_rsp_ie_len[1] == 0 )
9402 {
9403 if ( eHAL_STATUS_FAILURE == ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
9404 WNI_CFG_PROBE_RSP_ADDNIE_DATA2, (tANI_U8*)addIE, 0, NULL,
9405 eANI_BOOLEAN_FALSE) )
9406 {
9407 hddLog(LOGE,
Arif Hussain6d2a3322013-11-17 19:50:10 -08009408 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_DATA2 to CCM");
Jeff Johnson295189b2012-06-20 16:38:30 -07009409 }
9410 }
9411
9412 if (probe_rsp_ie_len[2] == 0 )
9413 {
9414 if ( eHAL_STATUS_FAILURE == ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
9415 WNI_CFG_PROBE_RSP_ADDNIE_DATA3, (tANI_U8*)addIE, 0, NULL,
9416 eANI_BOOLEAN_FALSE) )
9417 {
9418 hddLog(LOGE,
Arif Hussain6d2a3322013-11-17 19:50:10 -08009419 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_DATA3 to CCM");
Jeff Johnson295189b2012-06-20 16:38:30 -07009420 }
9421 }
9422
9423 if (ccmCfgSetInt((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
9424 WNI_CFG_PROBE_RSP_ADDNIE_FLAG, 1,NULL,
9425 test_bit(SOFTAP_BSS_STARTED, &pHostapdAdapter->event_flags) ?
9426 eANI_BOOLEAN_TRUE : eANI_BOOLEAN_FALSE)
9427 == eHAL_STATUS_FAILURE)
9428 {
9429 hddLog(LOGE,
9430 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_FLAG to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07009431 ret = -EINVAL;
9432 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07009433 }
9434 }
9435 else
9436 {
9437 // Reset WNI_CFG_PROBE_RSP Flags
9438 wlan_hdd_reset_prob_rspies(pHostapdAdapter);
9439
9440 hddLog(VOS_TRACE_LEVEL_INFO,
9441 "%s: No Probe Response IE received in set beacon",
9442 __func__);
9443 }
9444
9445 // Added for AssocResp IE
Kapil Gupta137ef892016-12-13 19:38:00 +05309446 if ((pBeacon->assocresp_ies != NULL) && (pBeacon->assocresp_ies_len != 0))
Jeff Johnson295189b2012-06-20 16:38:30 -07009447 {
9448 if (ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
Kapil Gupta137ef892016-12-13 19:38:00 +05309449 WNI_CFG_ASSOC_RSP_ADDNIE_DATA, (tANI_U8*)pBeacon->assocresp_ies,
9450 pBeacon->assocresp_ies_len, NULL,
Jeff Johnson295189b2012-06-20 16:38:30 -07009451 eANI_BOOLEAN_FALSE) == eHAL_STATUS_FAILURE)
9452 {
9453 hddLog(LOGE,
9454 "Could not pass on WNI_CFG_ASSOC_RSP_ADDNIE_DATA to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07009455 ret = -EINVAL;
9456 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07009457 }
9458
9459 if (ccmCfgSetInt((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
9460 WNI_CFG_ASSOC_RSP_ADDNIE_FLAG, 1, NULL,
9461 test_bit(SOFTAP_BSS_STARTED, &pHostapdAdapter->event_flags) ?
9462 eANI_BOOLEAN_TRUE : eANI_BOOLEAN_FALSE)
9463 == eHAL_STATUS_FAILURE)
9464 {
9465 hddLog(LOGE,
9466 "Could not pass on WNI_CFG_ASSOC_RSP_ADDNIE_FLAG to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07009467 ret = -EINVAL;
9468 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07009469 }
9470 }
9471 else
9472 {
9473 hddLog(VOS_TRACE_LEVEL_INFO,
9474 "%s: No Assoc Response IE received in set beacon",
9475 __func__);
9476
9477 if ( eHAL_STATUS_FAILURE == ccmCfgSetInt((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
9478 WNI_CFG_ASSOC_RSP_ADDNIE_FLAG, 0, NULL,
9479 eANI_BOOLEAN_FALSE) )
9480 {
9481 hddLog(LOGE,
Arif Hussain6d2a3322013-11-17 19:50:10 -08009482 "Could not pass on WNI_CFG_ASSOC_RSP_ADDNIE_FLAG to CCM");
Jeff Johnson295189b2012-06-20 16:38:30 -07009483 }
9484 }
9485
Jeff Johnsone7245742012-09-05 17:12:55 -07009486done:
Jeff Johnson295189b2012-06-20 16:38:30 -07009487 vos_mem_free(genie);
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05309488 return ret;
Jeff Johnson295189b2012-06-20 16:38:30 -07009489}
Jeff Johnson295189b2012-06-20 16:38:30 -07009490
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309491/*
Jeff Johnson295189b2012-06-20 16:38:30 -07009492 * FUNCTION: wlan_hdd_validate_operation_channel
9493 * called by wlan_hdd_cfg80211_start_bss() and
9494 * wlan_hdd_cfg80211_set_channel()
9495 * This function validates whether given channel is part of valid
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309496 * channel list.
9497 */
Varun Reddy Yeturu920df212013-05-22 08:07:23 -07009498VOS_STATUS wlan_hdd_validate_operation_channel(hdd_adapter_t *pAdapter,int channel)
Jeff Johnson295189b2012-06-20 16:38:30 -07009499{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309500
Jeff Johnson295189b2012-06-20 16:38:30 -07009501 v_U32_t num_ch = 0;
9502 u8 valid_ch[WNI_CFG_VALID_CHANNEL_LIST_LEN];
9503 u32 indx = 0;
9504 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +05309505 v_U8_t fValidChannel = FALSE, count = 0;
9506 hdd_config_t *hdd_pConfig_ini= (WLAN_HDD_GET_CTX(pAdapter))->cfg_ini;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309507
Jeff Johnson295189b2012-06-20 16:38:30 -07009508 num_ch = WNI_CFG_VALID_CHANNEL_LIST_LEN;
9509
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +05309510 if ( hdd_pConfig_ini->sapAllowAllChannel)
Jeff Johnson295189b2012-06-20 16:38:30 -07009511 {
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +05309512 /* Validate the channel */
9513 for (count = RF_CHAN_1 ; count <= RF_CHAN_165 ; count++)
Jeff Johnson295189b2012-06-20 16:38:30 -07009514 {
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +05309515 if ( channel == rfChannels[count].channelNum )
9516 {
9517 fValidChannel = TRUE;
9518 break;
9519 }
9520 }
9521 if (fValidChannel != TRUE)
9522 {
9523 hddLog(VOS_TRACE_LEVEL_ERROR,
9524 "%s: Invalid Channel [%d]", __func__, channel);
9525 return VOS_STATUS_E_FAILURE;
Jeff Johnson295189b2012-06-20 16:38:30 -07009526 }
9527 }
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +05309528 else
Jeff Johnson295189b2012-06-20 16:38:30 -07009529 {
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +05309530 if (0 != ccmCfgGetStr(hHal, WNI_CFG_VALID_CHANNEL_LIST,
9531 valid_ch, &num_ch))
9532 {
9533 hddLog(VOS_TRACE_LEVEL_ERROR,
9534 "%s: failed to get valid channel list", __func__);
9535 return VOS_STATUS_E_FAILURE;
9536 }
9537 for (indx = 0; indx < num_ch; indx++)
9538 {
9539 if (channel == valid_ch[indx])
9540 {
9541 break;
9542 }
9543 }
9544
Rashmi Ramanna3b59e122014-04-10 14:45:13 +05309545 if (indx >= num_ch)
9546 {
9547 if (WLAN_HDD_P2P_GO == pAdapter->device_mode)
9548 {
9549 eCsrBand band;
9550 unsigned int freq;
9551
9552 sme_GetFreqBand(hHal, &band);
9553
9554 if (eCSR_BAND_5G == band)
9555 {
9556#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,38))
9557 if (channel <= ARRAY_SIZE(hdd_channels_2_4_GHZ))
9558 {
9559 freq = ieee80211_channel_to_frequency(channel,
9560 IEEE80211_BAND_2GHZ);
9561 }
9562 else
9563 {
9564 freq = ieee80211_channel_to_frequency(channel,
9565 IEEE80211_BAND_5GHZ);
9566 }
9567#else
9568 freq = ieee80211_channel_to_frequency(channel);
9569#endif
9570 if(WLAN_HDD_IS_SOCIAL_CHANNEL(freq))
9571 return VOS_STATUS_SUCCESS;
9572 }
9573 }
9574
9575 hddLog(VOS_TRACE_LEVEL_ERROR,
9576 "%s: Invalid Channel [%d]", __func__, channel);
9577 return VOS_STATUS_E_FAILURE;
9578 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009579 }
Rashmi Ramanna3b59e122014-04-10 14:45:13 +05309580
Jeff Johnson295189b2012-06-20 16:38:30 -07009581 return VOS_STATUS_SUCCESS;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309582
Jeff Johnson295189b2012-06-20 16:38:30 -07009583}
9584
Viral Modi3a32cc52013-02-08 11:14:52 -08009585/**
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +05309586 * FUNCTION: __wlan_hdd_cfg80211_set_channel
Viral Modi3a32cc52013-02-08 11:14:52 -08009587 * This function is used to set the channel number
9588 */
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +05309589static int __wlan_hdd_cfg80211_set_channel( struct wiphy *wiphy, struct net_device *dev,
Viral Modi3a32cc52013-02-08 11:14:52 -08009590 struct ieee80211_channel *chan,
9591 enum nl80211_channel_type channel_type
9592 )
9593{
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05309594 hdd_adapter_t *pAdapter = NULL;
Viral Modi3a32cc52013-02-08 11:14:52 -08009595 v_U32_t num_ch = 0;
Jeff Johnson4416a782013-03-25 14:17:50 -07009596 int channel = 0;
Viral Modi3a32cc52013-02-08 11:14:52 -08009597 int freq = chan->center_freq; /* freq is in MHZ */
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309598 hdd_context_t *pHddCtx;
9599 int status;
Viral Modi3a32cc52013-02-08 11:14:52 -08009600
9601 ENTER();
9602
9603 if( NULL == dev )
9604 {
9605 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08009606 "%s: Called with dev = NULL.", __func__);
Viral Modi3a32cc52013-02-08 11:14:52 -08009607 return -ENODEV;
9608 }
9609 pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +05309610
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05309611 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
9612 TRACE_CODE_HDD_CFG80211_SET_CHANNEL, pAdapter->sessionId,
9613 channel_type ));
Viral Modi3a32cc52013-02-08 11:14:52 -08009614 hddLog(VOS_TRACE_LEVEL_INFO,
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05309615 "%s: device_mode = %s (%d) freq = %d", __func__,
9616 hdd_device_modetoString(pAdapter->device_mode),
9617 pAdapter->device_mode, chan->center_freq);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309618
9619 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
9620 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309621 if (0 != status)
Viral Modi3a32cc52013-02-08 11:14:52 -08009622 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309623 return status;
Viral Modi3a32cc52013-02-08 11:14:52 -08009624 }
9625
9626 /*
9627 * Do freq to chan conversion
9628 * TODO: for 11a
9629 */
9630
9631 channel = ieee80211_frequency_to_channel(freq);
9632
9633 /* Check freq range */
9634 if ((WNI_CFG_CURRENT_CHANNEL_STAMIN > channel) ||
9635 (WNI_CFG_CURRENT_CHANNEL_STAMAX < channel))
9636 {
9637 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08009638 "%s: Channel [%d] is outside valid range from %d to %d",
Viral Modi3a32cc52013-02-08 11:14:52 -08009639 __func__, channel, WNI_CFG_CURRENT_CHANNEL_STAMIN,
9640 WNI_CFG_CURRENT_CHANNEL_STAMAX);
9641 return -EINVAL;
9642 }
9643
9644 num_ch = WNI_CFG_VALID_CHANNEL_LIST_LEN;
9645
Gopichand Nakkala6ab19562013-03-07 13:59:42 +05309646 if ((WLAN_HDD_SOFTAP != pAdapter->device_mode) &&
9647 (WLAN_HDD_P2P_GO != pAdapter->device_mode))
Viral Modi3a32cc52013-02-08 11:14:52 -08009648 {
9649 if(VOS_STATUS_SUCCESS != wlan_hdd_validate_operation_channel(pAdapter,channel))
9650 {
9651 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08009652 "%s: Invalid Channel [%d]", __func__, channel);
Viral Modi3a32cc52013-02-08 11:14:52 -08009653 return -EINVAL;
9654 }
9655 hddLog(VOS_TRACE_LEVEL_INFO_HIGH,
9656 "%s: set channel to [%d] for device mode =%d",
9657 __func__, channel,pAdapter->device_mode);
9658 }
9659 if( (pAdapter->device_mode == WLAN_HDD_INFRA_STATION)
Viral Modi3a32cc52013-02-08 11:14:52 -08009660 || (pAdapter->device_mode == WLAN_HDD_P2P_CLIENT)
Viral Modi3a32cc52013-02-08 11:14:52 -08009661 )
9662 {
9663 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
9664 tCsrRoamProfile * pRoamProfile = &pWextState->roamProfile;
9665 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
9666
9667 if (eConnectionState_IbssConnected == pHddStaCtx->conn_info.connState)
9668 {
9669 /* Link is up then return cant set channel*/
9670 hddLog( VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08009671 "%s: IBSS Associated, can't set the channel", __func__);
Viral Modi3a32cc52013-02-08 11:14:52 -08009672 return -EINVAL;
9673 }
9674
9675 num_ch = pRoamProfile->ChannelInfo.numOfChannels = 1;
9676 pHddStaCtx->conn_info.operationChannel = channel;
9677 pRoamProfile->ChannelInfo.ChannelList =
9678 &pHddStaCtx->conn_info.operationChannel;
9679 }
9680 else if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Viral Modi3a32cc52013-02-08 11:14:52 -08009681 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Viral Modi3a32cc52013-02-08 11:14:52 -08009682 )
9683 {
Gopichand Nakkalac8fa7b62013-03-11 13:56:41 +05309684 if (WLAN_HDD_P2P_GO == pAdapter->device_mode)
9685 {
9686 if(VOS_STATUS_SUCCESS !=
9687 wlan_hdd_validate_operation_channel(pAdapter,channel))
9688 {
9689 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08009690 "%s: Invalid Channel [%d]", __func__, channel);
Gopichand Nakkalac8fa7b62013-03-11 13:56:41 +05309691 return -EINVAL;
9692 }
9693 (WLAN_HDD_GET_AP_CTX_PTR(pAdapter))->sapConfig.channel = channel;
9694 }
9695 else if ( WLAN_HDD_SOFTAP == pAdapter->device_mode )
Viral Modi3a32cc52013-02-08 11:14:52 -08009696 {
9697 hdd_config_t *cfg_param = (WLAN_HDD_GET_CTX(pAdapter))->cfg_ini;
9698
9699 /* If auto channel selection is configured as enable/ 1 then ignore
9700 channel set by supplicant
9701 */
9702 if ( cfg_param->apAutoChannelSelection )
9703 {
Gopichand Nakkalac8fa7b62013-03-11 13:56:41 +05309704 (WLAN_HDD_GET_AP_CTX_PTR(pAdapter))->sapConfig.channel =
9705 AUTO_CHANNEL_SELECT;
Viral Modi3a32cc52013-02-08 11:14:52 -08009706 hddLog(VOS_TRACE_LEVEL_INFO_HIGH,
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05309707 "%s: set channel to auto channel (0) for device mode =%s (%d)",
9708 __func__, hdd_device_modetoString(pAdapter->device_mode),
9709 pAdapter->device_mode);
Viral Modi3a32cc52013-02-08 11:14:52 -08009710 }
Gopichand Nakkalac8fa7b62013-03-11 13:56:41 +05309711 else
9712 {
9713 if(VOS_STATUS_SUCCESS !=
9714 wlan_hdd_validate_operation_channel(pAdapter,channel))
9715 {
9716 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08009717 "%s: Invalid Channel [%d]", __func__, channel);
Gopichand Nakkalac8fa7b62013-03-11 13:56:41 +05309718 return -EINVAL;
9719 }
9720 (WLAN_HDD_GET_AP_CTX_PTR(pAdapter))->sapConfig.channel = channel;
9721 }
Viral Modi3a32cc52013-02-08 11:14:52 -08009722 }
9723 }
9724 else
9725 {
9726 hddLog(VOS_TRACE_LEVEL_FATAL,
9727 "%s: Invalid device mode failed to set valid channel", __func__);
9728 return -EINVAL;
9729 }
9730 EXIT();
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309731 return status;
Viral Modi3a32cc52013-02-08 11:14:52 -08009732}
9733
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +05309734static int wlan_hdd_cfg80211_set_channel( struct wiphy *wiphy,
9735 struct net_device *dev,
9736 struct ieee80211_channel *chan,
9737 enum nl80211_channel_type channel_type
9738 )
9739{
9740 int ret;
9741
9742 vos_ssr_protect(__func__);
9743 ret = __wlan_hdd_cfg80211_set_channel(wiphy, dev, chan, channel_type);
9744 vos_ssr_unprotect(__func__);
9745
9746 return ret;
9747}
9748
Anurag Chouhan83026002016-12-13 22:46:21 +05309749#ifdef DHCP_SERVER_OFFLOAD
9750void hdd_dhcp_server_offload_done(void *fw_dhcp_srv_offload_cb_context,
9751 VOS_STATUS status)
9752{
9753 hdd_adapter_t* adapter = (hdd_adapter_t*)fw_dhcp_srv_offload_cb_context;
9754
9755 ENTER();
9756
9757 if (NULL == adapter)
9758 {
9759 hddLog(VOS_TRACE_LEVEL_ERROR,
9760 "%s: adapter is NULL",__func__);
9761 return;
9762 }
9763
9764 adapter->dhcp_status.dhcp_offload_status = status;
9765 vos_event_set(&adapter->dhcp_status.vos_event);
9766 return;
9767}
9768
9769/**
9770 * wlan_hdd_set_dhcp_server_offload() - set dhcp server offload
9771 * @hostapd_adapter: pointer to hostapd adapter.
Anurag Chouhan638f5e22017-03-06 12:28:43 +05309772 * @re_init: flag set if api called post ssr
Anurag Chouhan83026002016-12-13 22:46:21 +05309773 *
9774 * Return: None
9775 */
Anurag Chouhan638f5e22017-03-06 12:28:43 +05309776VOS_STATUS wlan_hdd_set_dhcp_server_offload(hdd_adapter_t *hostapd_adapter,
9777 bool re_init)
Anurag Chouhan83026002016-12-13 22:46:21 +05309778{
9779 hdd_context_t *hdd_ctx = WLAN_HDD_GET_CTX(hostapd_adapter);
9780 sir_dhcp_srv_offload_info dhcp_srv_info;
9781 tANI_U8 num_entries = 0;
9782 tANI_U8 srv_ip[IPADDR_NUM_ENTRIES];
9783 tANI_U8 num;
9784 tANI_U32 temp;
9785 VOS_STATUS ret;
9786
9787 ENTER();
9788
Anurag Chouhan638f5e22017-03-06 12:28:43 +05309789 if (!re_init) {
9790 ret = wlan_hdd_validate_context(hdd_ctx);
9791 if (0 != ret)
9792 return VOS_STATUS_E_INVAL;
9793 }
Anurag Chouhan83026002016-12-13 22:46:21 +05309794
9795 /* Prepare the request to send to SME */
9796 dhcp_srv_info = vos_mem_malloc(sizeof(*dhcp_srv_info));
9797 if (NULL == dhcp_srv_info) {
9798 hddLog(VOS_TRACE_LEVEL_ERROR,
9799 "%s: could not allocate tDhcpSrvOffloadInfo!", __func__);
9800 return VOS_STATUS_E_NOMEM;
9801 }
9802
9803 vos_mem_zero(dhcp_srv_info, sizeof(*dhcp_srv_info));
9804
9805 dhcp_srv_info->bssidx = hostapd_adapter->sessionId;
9806 dhcp_srv_info->dhcp_srv_offload_enabled = TRUE;
9807 dhcp_srv_info->dhcp_client_num = hdd_ctx->cfg_ini->dhcp_max_num_clients;
9808 dhcp_srv_info->start_lsb = hdd_ctx->cfg_ini->dhcp_start_lsb;
9809 dhcp_srv_info->dhcp_offload_callback = hdd_dhcp_server_offload_done;
9810 dhcp_srv_info->dhcp_server_offload_cb_context = hostapd_adapter;
9811
9812 hdd_string_to_u8_array(hdd_ctx->cfg_ini->dhcp_srv_ip,
9813 srv_ip,
9814 &num_entries,
Anurag Chouhanac145c22016-11-22 16:51:47 +05309815 IPADDR_NUM_ENTRIES, ".");
Anurag Chouhan83026002016-12-13 22:46:21 +05309816 if (num_entries != IPADDR_NUM_ENTRIES) {
9817 hddLog(VOS_TRACE_LEVEL_ERROR,
9818 "%s: incorrect IP address (%s) assigned for DHCP server!",
9819 __func__, hdd_ctx->cfg_ini->dhcp_srv_ip);
9820 vos_mem_free(dhcp_srv_info);
9821 return VOS_STATUS_E_FAILURE;
9822 }
9823
9824 if ((srv_ip[0] >= 224) && (srv_ip[0] <= 239)) {
9825 hddLog(VOS_TRACE_LEVEL_ERROR,
9826 "%s: invalid IP address (%s)! It could NOT be multicast IP address!",
9827 __func__, hdd_ctx->cfg_ini->dhcp_srv_ip);
9828 vos_mem_free(dhcp_srv_info);
9829 return VOS_STATUS_E_FAILURE;
9830 }
9831
9832 if (srv_ip[IPADDR_NUM_ENTRIES-1] >= DHCP_START_POOL_ADDRESS) {
9833 hddLog(VOS_TRACE_LEVEL_ERROR,
9834 "%s: invalid IP address (%s)! The last field must be less than 100!",
9835 __func__, hdd_ctx->cfg_ini->dhcp_srv_ip);
9836 vos_mem_free(dhcp_srv_info);
9837 return VOS_STATUS_E_FAILURE;
9838 }
9839
9840 for (num = 0; num < num_entries; num++) {
9841 temp = srv_ip[num];
9842 dhcp_srv_info->dhcp_srv_ip |= (temp << (8 * num));
9843 }
9844
9845 if (eHAL_STATUS_SUCCESS !=
9846 sme_set_dhcp_srv_offload(hdd_ctx->hHal, dhcp_srv_info)) {
9847 hddLog(VOS_TRACE_LEVEL_ERROR,
9848 "%s: sme_set_dhcp_srv_offload fail!", __func__);
9849 vos_mem_free(dhcp_srv_info);
9850 return VOS_STATUS_E_FAILURE;
9851 }
9852
9853 hddLog(VOS_TRACE_LEVEL_INFO_HIGH,
9854 "%s: enable DHCP Server offload successfully!", __func__);
9855
9856 vos_mem_free(dhcp_srv_info);
9857 return 0;
9858}
9859#endif /* DHCP_SERVER_OFFLOAD */
9860
Jeff Johnson295189b2012-06-20 16:38:30 -07009861#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
9862static int wlan_hdd_cfg80211_start_bss(hdd_adapter_t *pHostapdAdapter,
9863 struct beacon_parameters *params)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009864#else
9865static int wlan_hdd_cfg80211_start_bss(hdd_adapter_t *pHostapdAdapter,
9866 struct cfg80211_beacon_data *params,
9867 const u8 *ssid, size_t ssid_len,
Kanchanapally, Vidyullathaacc59252015-05-20 16:49:07 +05309868 enum nl80211_hidden_ssid hidden_ssid,
9869 v_U8_t auth_type)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009870#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07009871{
9872 tsap_Config_t *pConfig;
9873 beacon_data_t *pBeacon = NULL;
9874 struct ieee80211_mgmt *pMgmt_frame;
9875 v_U8_t *pIe=NULL;
9876 v_U16_t capab_info;
9877 eCsrAuthType RSNAuthType;
9878 eCsrEncryptionType RSNEncryptType;
9879 eCsrEncryptionType mcRSNEncryptType;
9880 int status = VOS_STATUS_SUCCESS;
9881 tpWLAN_SAPEventCB pSapEventCallback;
9882 hdd_hostapd_state_t *pHostapdState;
Jeff Johnson295189b2012-06-20 16:38:30 -07009883 v_CONTEXT_t pVosContext = (WLAN_HDD_GET_CTX(pHostapdAdapter))->pvosContext;
Madan Mohan Koyylamudia16d0202013-02-01 11:05:57 +05309884 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pHostapdAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07009885 struct qc_mac_acl_entry *acl_entry = NULL;
Siddharth Bhal5cba24e2014-05-08 18:59:39 +05309886 hdd_config_t *iniConfig;
Jeff Johnson295189b2012-06-20 16:38:30 -07009887 v_SINT_t i;
Madan Mohan Koyyalamudi543172b2012-12-05 16:40:18 -08009888 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pHostapdAdapter);
Peng Xu2446a892014-09-05 17:21:18 +05309889 tSmeConfigParams *psmeConfig;
Chet Lanctot40142442014-05-20 13:39:25 -07009890 v_BOOL_t MFPCapable = VOS_FALSE;
9891 v_BOOL_t MFPRequired = VOS_FALSE;
Sushant Kaushik7dc03272015-02-18 11:25:12 +05309892 v_BOOL_t sapEnable11AC =
9893 (WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini->sapEnable11AC;
Kapil Gupta137ef892016-12-13 19:38:00 +05309894 u_int16_t prev_rsn_length = 0;
9895
Jeff Johnson295189b2012-06-20 16:38:30 -07009896 ENTER();
9897
Siddharth Bhal5cba24e2014-05-08 18:59:39 +05309898 iniConfig = pHddCtx->cfg_ini;
9899
Jeff Johnson295189b2012-06-20 16:38:30 -07009900 pHostapdState = WLAN_HDD_GET_HOSTAP_STATE_PTR(pHostapdAdapter);
9901
9902 pConfig = &pHostapdAdapter->sessionCtx.ap.sapConfig;
9903
9904 pBeacon = pHostapdAdapter->sessionCtx.ap.beacon;
9905
9906 pMgmt_frame = (struct ieee80211_mgmt*)pBeacon->head;
9907
9908 pConfig->beacon_int = pMgmt_frame->u.beacon.beacon_int;
9909
9910 //channel is already set in the set_channel Call back
9911 //pConfig->channel = pCommitConfig->channel;
9912
9913 /*Protection parameter to enable or disable*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309914 pConfig->protEnabled =
Jeff Johnson295189b2012-06-20 16:38:30 -07009915 (WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini->apProtEnabled;
9916
9917 pConfig->dtim_period = pBeacon->dtim_period;
9918
Arif Hussain6d2a3322013-11-17 19:50:10 -08009919 hddLog(VOS_TRACE_LEVEL_INFO_HIGH,"****pConfig->dtim_period=%d***",
Jeff Johnson295189b2012-06-20 16:38:30 -07009920 pConfig->dtim_period);
9921
Madan Mohan Koyyalamudie0ca11f2012-11-27 15:57:52 -08009922 if (pHostapdAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson32d95a32012-09-10 13:15:23 -07009923 {
9924 pIe = wlan_hdd_cfg80211_get_ie_ptr(pBeacon->tail, pBeacon->tail_len,
Jeff Johnson295189b2012-06-20 16:38:30 -07009925 WLAN_EID_COUNTRY);
Kiet Lam083504c2013-11-25 14:17:45 +05309926 if(memcmp(pHddCtx->cfg_ini->apCntryCode, CFG_AP_COUNTRY_CODE_DEFAULT, 3) != 0)
9927 {
9928 tANI_BOOLEAN restartNeeded;
9929 pConfig->ieee80211d = 1;
9930 vos_mem_copy(pConfig->countryCode, pHddCtx->cfg_ini->apCntryCode, 3);
9931 sme_setRegInfo(hHal, pConfig->countryCode);
9932 sme_ResetCountryCodeInformation(hHal, &restartNeeded);
9933 }
9934 else if(pIe)
Jeff Johnson295189b2012-06-20 16:38:30 -07009935 {
Jeff Johnson32d95a32012-09-10 13:15:23 -07009936 tANI_BOOLEAN restartNeeded;
Jeff Johnson32d95a32012-09-10 13:15:23 -07009937 pConfig->ieee80211d = 1;
9938 vos_mem_copy(pConfig->countryCode, &pIe[2], 3);
9939 sme_setRegInfo(hHal, pConfig->countryCode);
9940 sme_ResetCountryCodeInformation(hHal, &restartNeeded);
Jeff Johnson295189b2012-06-20 16:38:30 -07009941 }
Jeff Johnson32d95a32012-09-10 13:15:23 -07009942 else
9943 {
9944 pConfig->ieee80211d = 0;
9945 }
Madan Mohan Koyylamudia16d0202013-02-01 11:05:57 +05309946 /*
9947 * If auto channel is configured i.e. channel is 0,
9948 * so skip channel validation.
9949 */
9950 if( AUTO_CHANNEL_SELECT != pConfig->channel )
9951 {
9952 if(VOS_STATUS_SUCCESS != wlan_hdd_validate_operation_channel(pHostapdAdapter,pConfig->channel))
9953 {
9954 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08009955 "%s: Invalid Channel [%d]", __func__, pConfig->channel);
Madan Mohan Koyylamudia16d0202013-02-01 11:05:57 +05309956 return -EINVAL;
9957 }
9958 }
9959 else
9960 {
9961 if(1 != pHddCtx->is_dynamic_channel_range_set)
9962 {
9963 hdd_config_t *hdd_pConfig= (WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini;
9964 WLANSAP_SetChannelRange(hHal, hdd_pConfig->apStartChannelNum,
9965 hdd_pConfig->apEndChannelNum,hdd_pConfig->apOperatingBand);
9966 }
9967 pHddCtx->is_dynamic_channel_range_set = 0;
9968 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009969 }
Jeff Johnson32d95a32012-09-10 13:15:23 -07009970 else
Jeff Johnson295189b2012-06-20 16:38:30 -07009971 {
9972 pConfig->ieee80211d = 0;
9973 }
Kanchanapally, Vidyullathaacc59252015-05-20 16:49:07 +05309974
9975#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
9976 if (params->auth_type == NL80211_AUTHTYPE_OPEN_SYSTEM)
9977 pConfig->authType = eSAP_OPEN_SYSTEM;
9978 else if (params->auth_type == NL80211_AUTHTYPE_SHARED_KEY)
9979 pConfig->authType = eSAP_SHARED_KEY;
9980 else
9981 pConfig->authType = eSAP_AUTO_SWITCH;
9982#else
9983 if (auth_type == NL80211_AUTHTYPE_OPEN_SYSTEM)
9984 pConfig->authType = eSAP_OPEN_SYSTEM;
9985 else if (auth_type == NL80211_AUTHTYPE_SHARED_KEY)
9986 pConfig->authType = eSAP_SHARED_KEY;
9987 else
9988 pConfig->authType = eSAP_AUTO_SWITCH;
9989#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07009990
9991 capab_info = pMgmt_frame->u.beacon.capab_info;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309992
9993 pConfig->privacy = (pMgmt_frame->u.beacon.capab_info &
Jeff Johnson295189b2012-06-20 16:38:30 -07009994 WLAN_CAPABILITY_PRIVACY) ? VOS_TRUE : VOS_FALSE;
Agrawal Ashisha8e8a722016-10-18 19:07:45 +05309995#ifdef SAP_AUTH_OFFLOAD
9996 /* In case of sap offload, hostapd.conf is configuted with open mode and
9997 * security is configured from ini file. Due to open mode in hostapd.conf
9998 * privacy bit is set to false which will result in not sending,
9999 * data packets as encrypted.
10000 * If enable_sap_auth_offload is enabled in ini and
10001 * sap_auth_offload_sec_type is type of WPA2-PSK,
10002 * driver will set privacy bit to 1.
10003 */
10004 if (pHddCtx->cfg_ini->enable_sap_auth_offload &&
10005 pHddCtx->cfg_ini->sap_auth_offload_sec_type)
10006 pConfig->privacy = VOS_TRUE;
10007#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070010008
10009 (WLAN_HDD_GET_AP_CTX_PTR(pHostapdAdapter))->uPrivacy = pConfig->privacy;
10010
10011 /*Set wps station to configured*/
10012 pIe = wlan_hdd_get_wps_ie_ptr(pBeacon->tail, pBeacon->tail_len);
10013
10014 if(pIe)
10015 {
10016 if(pIe[1] < (2 + WPS_OUI_TYPE_SIZE))
10017 {
Arif Hussain6d2a3322013-11-17 19:50:10 -080010018 hddLog( VOS_TRACE_LEVEL_ERROR, "**Wps Ie Length is too small***");
Jeff Johnson295189b2012-06-20 16:38:30 -070010019 return -EINVAL;
10020 }
10021 else if(memcmp(&pIe[2], WPS_OUI_TYPE, WPS_OUI_TYPE_SIZE) == 0)
10022 {
Madan Mohan Koyyalamudi8bdd3112012-09-24 13:55:14 -070010023 hddLog( VOS_TRACE_LEVEL_INFO, "** WPS IE(len %d) ***", (pIe[1]+2));
Jeff Johnson295189b2012-06-20 16:38:30 -070010024 /* Check 15 bit of WPS IE as it contain information for wps state
10025 * WPS state
10026 */
10027 if(SAP_WPS_ENABLED_UNCONFIGURED == pIe[15])
10028 {
10029 pConfig->wps_state = SAP_WPS_ENABLED_UNCONFIGURED;
10030 } else if(SAP_WPS_ENABLED_CONFIGURED == pIe[15])
10031 {
10032 pConfig->wps_state = SAP_WPS_ENABLED_CONFIGURED;
10033 }
10034 }
10035 }
10036 else
10037 {
10038 pConfig->wps_state = SAP_WPS_DISABLED;
10039 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010040 pConfig->fwdWPSPBCProbeReq = 1; // Forward WPS PBC probe request frame up
Jeff Johnson295189b2012-06-20 16:38:30 -070010041
c_hpothufe599e92014-06-16 11:38:55 +053010042 pConfig->RSNEncryptType = eCSR_ENCRYPT_TYPE_NONE;
10043 pConfig->mcRSNEncryptType = eCSR_ENCRYPT_TYPE_NONE;
10044 (WLAN_HDD_GET_AP_CTX_PTR(pHostapdAdapter))->ucEncryptType =
10045 eCSR_ENCRYPT_TYPE_NONE;
10046
Jeff Johnson295189b2012-06-20 16:38:30 -070010047 pConfig->RSNWPAReqIELength = 0;
Kapil Gupta137ef892016-12-13 19:38:00 +053010048 memset(&pConfig->RSNWPAReqIE[0], 0, sizeof(pConfig->RSNWPAReqIE));
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010049 pIe = wlan_hdd_cfg80211_get_ie_ptr(pBeacon->tail, pBeacon->tail_len,
Jeff Johnson295189b2012-06-20 16:38:30 -070010050 WLAN_EID_RSN);
10051 if(pIe && pIe[1])
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010052 {
Jeff Johnson295189b2012-06-20 16:38:30 -070010053 pConfig->RSNWPAReqIELength = pIe[1] + 2;
Kapil Gupta137ef892016-12-13 19:38:00 +053010054 if (pConfig->RSNWPAReqIELength <= sizeof(pConfig->RSNWPAReqIE))
10055 memcpy(&pConfig->RSNWPAReqIE[0], pIe,
10056 pConfig->RSNWPAReqIELength);
10057 else
10058 hddLog(LOGE, "RSNWPA IE MAX Length exceeded; length =%d",
10059 pConfig->RSNWPAReqIELength);
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010060 /* The actual processing may eventually be more extensive than
10061 * this. Right now, just consume any PMKIDs that are sent in
Jeff Johnson295189b2012-06-20 16:38:30 -070010062 * by the app.
10063 * */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010064 status = hdd_softap_unpackIE(
Jeff Johnson295189b2012-06-20 16:38:30 -070010065 vos_get_context( VOS_MODULE_ID_SME, pVosContext),
10066 &RSNEncryptType,
10067 &mcRSNEncryptType,
10068 &RSNAuthType,
Chet Lanctot8cecea22014-02-11 19:09:36 -080010069 &MFPCapable,
10070 &MFPRequired,
Kapil Gupta137ef892016-12-13 19:38:00 +053010071 pConfig->RSNWPAReqIE[1]+2,
10072 pConfig->RSNWPAReqIE);
Jeff Johnson295189b2012-06-20 16:38:30 -070010073
10074 if( VOS_STATUS_SUCCESS == status )
10075 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010076 /* Now copy over all the security attributes you have
10077 * parsed out
Jeff Johnson295189b2012-06-20 16:38:30 -070010078 * */
10079 pConfig->RSNEncryptType = RSNEncryptType; // Use the cipher type in the RSN IE
10080 pConfig->mcRSNEncryptType = mcRSNEncryptType;
10081 (WLAN_HDD_GET_AP_CTX_PTR(pHostapdAdapter))->ucEncryptType
10082 = RSNEncryptType;
Gopichand Nakkala66c0bd02013-04-10 11:36:29 +053010083 hddLog( LOG1, FL("CSR AuthType = %d, "
Arif Hussain6d2a3322013-11-17 19:50:10 -080010084 "EncryptionType = %d mcEncryptionType = %d"),
Jeff Johnson295189b2012-06-20 16:38:30 -070010085 RSNAuthType, RSNEncryptType, mcRSNEncryptType);
10086 }
10087 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010088
Jeff Johnson295189b2012-06-20 16:38:30 -070010089 pIe = wlan_hdd_get_vendor_oui_ie_ptr(WPA_OUI_TYPE, WPA_OUI_TYPE_SIZE,
10090 pBeacon->tail, pBeacon->tail_len);
10091
10092 if(pIe && pIe[1] && (pIe[0] == DOT11F_EID_WPA))
10093 {
Kapil Gupta137ef892016-12-13 19:38:00 +053010094 if (pConfig->RSNWPAReqIE[0])
Jeff Johnson295189b2012-06-20 16:38:30 -070010095 {
10096 /*Mixed mode WPA/WPA2*/
Kapil Gupta137ef892016-12-13 19:38:00 +053010097 prev_rsn_length = pConfig->RSNWPAReqIELength;
Jeff Johnson295189b2012-06-20 16:38:30 -070010098 pConfig->RSNWPAReqIELength += pIe[1] + 2;
Kapil Gupta137ef892016-12-13 19:38:00 +053010099 if (pConfig->RSNWPAReqIELength <=
10100 (sizeof(pConfig->RSNWPAReqIE) - prev_rsn_length))
10101 memcpy(&pConfig->RSNWPAReqIE[0] + prev_rsn_length, pIe,
10102 pIe[1] + 2);
10103 else
10104 hddLog(LOGE, "RSNWPA IE MAX Length exceeded; length =%d",
10105 pConfig->RSNWPAReqIELength);
10106
Jeff Johnson295189b2012-06-20 16:38:30 -070010107 }
10108 else
10109 {
10110 pConfig->RSNWPAReqIELength = pIe[1] + 2;
Kapil Gupta137ef892016-12-13 19:38:00 +053010111 if (pConfig->RSNWPAReqIELength <= sizeof(pConfig->RSNWPAReqIE))
10112 memcpy(&pConfig->RSNWPAReqIE[0], pIe,
10113 pConfig->RSNWPAReqIELength);
10114 else
10115 hddLog(LOGE, "RSNWPA IE MAX Length exceeded; length =%d",
10116 pConfig->RSNWPAReqIELength);
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010117 status = hdd_softap_unpackIE(
Jeff Johnson295189b2012-06-20 16:38:30 -070010118 vos_get_context( VOS_MODULE_ID_SME, pVosContext),
10119 &RSNEncryptType,
10120 &mcRSNEncryptType,
10121 &RSNAuthType,
Chet Lanctot8cecea22014-02-11 19:09:36 -080010122 &MFPCapable,
10123 &MFPRequired,
Kapil Gupta137ef892016-12-13 19:38:00 +053010124 pConfig->RSNWPAReqIE[1]+2,
10125 pConfig->RSNWPAReqIE);
Jeff Johnson295189b2012-06-20 16:38:30 -070010126
10127 if( VOS_STATUS_SUCCESS == status )
10128 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010129 /* Now copy over all the security attributes you have
10130 * parsed out
Jeff Johnson295189b2012-06-20 16:38:30 -070010131 * */
10132 pConfig->RSNEncryptType = RSNEncryptType; // Use the cipher type in the RSN IE
10133 pConfig->mcRSNEncryptType = mcRSNEncryptType;
10134 (WLAN_HDD_GET_AP_CTX_PTR(pHostapdAdapter))->ucEncryptType
10135 = RSNEncryptType;
Gopichand Nakkala66c0bd02013-04-10 11:36:29 +053010136 hddLog( LOG1, FL("CSR AuthType = %d, "
Arif Hussain6d2a3322013-11-17 19:50:10 -080010137 "EncryptionType = %d mcEncryptionType = %d"),
Jeff Johnson295189b2012-06-20 16:38:30 -070010138 RSNAuthType, RSNEncryptType, mcRSNEncryptType);
10139 }
10140 }
10141 }
10142
Kapil Gupta137ef892016-12-13 19:38:00 +053010143 if (pConfig->RSNWPAReqIELength > sizeof(pConfig->RSNWPAReqIE)) {
Jeff Johnson4416a782013-03-25 14:17:50 -070010144 hddLog( VOS_TRACE_LEVEL_ERROR, "**RSNWPAReqIELength is too large***");
10145 return -EINVAL;
10146 }
10147
Jeff Johnson295189b2012-06-20 16:38:30 -070010148 pConfig->SSIDinfo.ssidHidden = VOS_FALSE;
10149
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010150#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
Jeff Johnson295189b2012-06-20 16:38:30 -070010151 if (params->ssid != NULL)
10152 {
10153 memcpy(pConfig->SSIDinfo.ssid.ssId, params->ssid, params->ssid_len);
10154 pConfig->SSIDinfo.ssid.length = params->ssid_len;
10155 if (params->hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE)
10156 pConfig->SSIDinfo.ssidHidden = VOS_TRUE;
10157 }
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010158#else
10159 if (ssid != NULL)
10160 {
10161 memcpy(pConfig->SSIDinfo.ssid.ssId, ssid, ssid_len);
10162 pConfig->SSIDinfo.ssid.length = ssid_len;
10163 if (hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE)
10164 pConfig->SSIDinfo.ssidHidden = VOS_TRUE;
10165 }
10166#endif
10167
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010168 vos_mem_copy(pConfig->self_macaddr.bytes,
Jeff Johnson295189b2012-06-20 16:38:30 -070010169 pHostapdAdapter->macAddressCurrent.bytes, sizeof(v_MACADDR_t));
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010170
Jeff Johnson295189b2012-06-20 16:38:30 -070010171 /* default value */
10172 pConfig->SapMacaddr_acl = eSAP_ACCEPT_UNLESS_DENIED;
10173 pConfig->num_accept_mac = 0;
10174 pConfig->num_deny_mac = 0;
10175
10176 pIe = wlan_hdd_get_vendor_oui_ie_ptr(BLACKLIST_OUI_TYPE, WPA_OUI_TYPE_SIZE,
10177 pBeacon->tail, pBeacon->tail_len);
10178
10179 /* pIe for black list is following form:
10180 type : 1 byte
10181 length : 1 byte
10182 OUI : 4 bytes
10183 acl type : 1 byte
10184 no of mac addr in black list: 1 byte
10185 list of mac_acl_entries: variable, 6 bytes per mac address + sizeof(int) for vlan id
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010186 */
10187 if ((pIe != NULL) && (pIe[1] != 0))
Jeff Johnson295189b2012-06-20 16:38:30 -070010188 {
10189 pConfig->SapMacaddr_acl = pIe[6];
10190 pConfig->num_deny_mac = pIe[7];
Arif Hussain6d2a3322013-11-17 19:50:10 -080010191 hddLog(VOS_TRACE_LEVEL_INFO,"acl type = %d no deny mac = %d",
Jeff Johnson295189b2012-06-20 16:38:30 -070010192 pIe[6], pIe[7]);
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +053010193 if (pConfig->num_deny_mac > MAX_ACL_MAC_ADDRESS)
10194 pConfig->num_deny_mac = MAX_ACL_MAC_ADDRESS;
Jeff Johnson295189b2012-06-20 16:38:30 -070010195 acl_entry = (struct qc_mac_acl_entry *)(pIe + 8);
10196 for (i = 0; i < pConfig->num_deny_mac; i++)
10197 {
10198 vos_mem_copy(&pConfig->deny_mac[i], acl_entry->addr, sizeof(qcmacaddr));
10199 acl_entry++;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010200 }
Jeff Johnson295189b2012-06-20 16:38:30 -070010201 }
10202 pIe = wlan_hdd_get_vendor_oui_ie_ptr(WHITELIST_OUI_TYPE, WPA_OUI_TYPE_SIZE,
10203 pBeacon->tail, pBeacon->tail_len);
10204
10205 /* pIe for white list is following form:
10206 type : 1 byte
10207 length : 1 byte
10208 OUI : 4 bytes
10209 acl type : 1 byte
10210 no of mac addr in white list: 1 byte
10211 list of mac_acl_entries: variable, 6 bytes per mac address + sizeof(int) for vlan id
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010212 */
10213 if ((pIe != NULL) && (pIe[1] != 0))
Jeff Johnson295189b2012-06-20 16:38:30 -070010214 {
10215 pConfig->SapMacaddr_acl = pIe[6];
10216 pConfig->num_accept_mac = pIe[7];
Arif Hussain6d2a3322013-11-17 19:50:10 -080010217 hddLog(VOS_TRACE_LEVEL_INFO,"acl type = %d no accept mac = %d",
Jeff Johnson295189b2012-06-20 16:38:30 -070010218 pIe[6], pIe[7]);
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +053010219 if (pConfig->num_accept_mac > MAX_ACL_MAC_ADDRESS)
10220 pConfig->num_accept_mac = MAX_ACL_MAC_ADDRESS;
Jeff Johnson295189b2012-06-20 16:38:30 -070010221 acl_entry = (struct qc_mac_acl_entry *)(pIe + 8);
10222 for (i = 0; i < pConfig->num_accept_mac; i++)
10223 {
10224 vos_mem_copy(&pConfig->accept_mac[i], acl_entry->addr, sizeof(qcmacaddr));
10225 acl_entry++;
10226 }
10227 }
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +053010228
Jeff Johnson295189b2012-06-20 16:38:30 -070010229 wlan_hdd_set_sapHwmode(pHostapdAdapter);
10230
Jeff Johnsone7245742012-09-05 17:12:55 -070010231#ifdef WLAN_FEATURE_11AC
Ravi Kumar Vaishnavbbaebbe2013-01-15 17:09:48 -080010232 /* Overwrite the hostapd setting for HW mode only for 11ac.
Sushant Kaushik7dc03272015-02-18 11:25:12 +053010233 * This is valid only if mode is set to 11n in hostapd, sapEnable11AC
10234 * is set in .ini and 11ac is supported by both host and firmware.
Kiet Lam0f320422013-11-21 19:29:17 +053010235 * Otherwise, leave whatever is set in hostapd (a OR b OR g OR n mode)
10236 */
Ravi Kumar Vaishnavbbaebbe2013-01-15 17:09:48 -080010237 if( ((pConfig->SapHw_mode == eSAP_DOT11_MODE_11n) ||
10238 (pConfig->SapHw_mode == eSAP_DOT11_MODE_11n_ONLY)) &&
Sushant Kaushik7dc03272015-02-18 11:25:12 +053010239 (sapEnable11AC) && (sme_IsFeatureSupportedByDriver(DOT11AC)) &&
10240 (sme_IsFeatureSupportedByFW(DOT11AC)) )
Jeff Johnsone7245742012-09-05 17:12:55 -070010241 {
Siddharth Bhalf42f8592014-05-15 13:39:07 +053010242 v_U32_t operatingBand = 0;
Jeff Johnsone7245742012-09-05 17:12:55 -070010243 pConfig->SapHw_mode = eSAP_DOT11_MODE_11ac;
Siddharth Bhalf42f8592014-05-15 13:39:07 +053010244 ccmCfgGetInt(hHal, WNI_CFG_SAP_CHANNEL_SELECT_OPERATING_BAND, &operatingBand);
Ravi Joshi83bfaa12013-05-28 22:12:08 -070010245
Siddharth Bhal5cba24e2014-05-08 18:59:39 +053010246 /* If ACS disable and selected channel <= 14
10247 * OR
10248 * ACS enabled and ACS operating band is choosen as 2.4
10249 * AND
10250 * VHT in 2.4G Disabled
10251 * THEN
10252 * Fallback to 11N mode
10253 */
10254 if (((AUTO_CHANNEL_SELECT != pConfig->channel && pConfig->channel <= SIR_11B_CHANNEL_END)
10255 || (AUTO_CHANNEL_SELECT == pConfig->channel &&
Deepthi Gowri7db41f32014-10-13 17:02:29 +053010256 operatingBand == eSAP_RF_SUBBAND_2_4_GHZ)) &&
Siddharth Bhal5cba24e2014-05-08 18:59:39 +053010257 iniConfig->enableVhtFor24GHzBand == FALSE)
Ravi Joshi83bfaa12013-05-28 22:12:08 -070010258 {
Siddharth Bhalf42f8592014-05-15 13:39:07 +053010259 hddLog(LOGW, FL("Setting hwmode to 11n, operatingBand = %d, Channel = %d"),
10260 operatingBand, pConfig->channel);
Ravi Joshi83bfaa12013-05-28 22:12:08 -070010261 pConfig->SapHw_mode = eSAP_DOT11_MODE_11n;
10262 }
Jeff Johnsone7245742012-09-05 17:12:55 -070010263 }
10264#endif
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010265
Jeff Johnson295189b2012-06-20 16:38:30 -070010266 // ht_capab is not what the name conveys,this is used for protection bitmap
10267 pConfig->ht_capab =
10268 (WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini->apProtection;
10269
Kapil Gupta137ef892016-12-13 19:38:00 +053010270 if ( 0 != wlan_hdd_cfg80211_update_apies(pHostapdAdapter))
Jeff Johnson295189b2012-06-20 16:38:30 -070010271 {
10272 hddLog(LOGE, FL("SAP Not able to set AP IEs"));
10273 return -EINVAL;
10274 }
10275
10276 //Uapsd Enabled Bit
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010277 pConfig->UapsdEnable =
Jeff Johnson295189b2012-06-20 16:38:30 -070010278 (WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini->apUapsdEnabled;
10279 //Enable OBSS protection
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010280 pConfig->obssProtEnabled =
10281 (WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini->apOBSSProtEnabled;
Jeff Johnson295189b2012-06-20 16:38:30 -070010282
Chet Lanctot8cecea22014-02-11 19:09:36 -080010283#ifdef WLAN_FEATURE_11W
10284 pConfig->mfpCapable = MFPCapable;
10285 pConfig->mfpRequired = MFPRequired;
10286 hddLog(LOGW, FL("Soft AP MFP capable %d, MFP required %d\n"),
10287 pConfig->mfpCapable, pConfig->mfpRequired);
10288#endif
10289
Arif Hussain6d2a3322013-11-17 19:50:10 -080010290 hddLog(LOGW, FL("SOftAP macaddress : "MAC_ADDRESS_STR),
Jeff Johnson295189b2012-06-20 16:38:30 -070010291 MAC_ADDR_ARRAY(pHostapdAdapter->macAddressCurrent.bytes));
Arif Hussain6d2a3322013-11-17 19:50:10 -080010292 hddLog(LOGW,FL("ssid =%s, beaconint=%d, channel=%d"),
10293 pConfig->SSIDinfo.ssid.ssId, (int)pConfig->beacon_int,
10294 (int)pConfig->channel);
10295 hddLog(LOGW,FL("hw_mode=%x, privacy=%d, authType=%d"),
10296 pConfig->SapHw_mode, pConfig->privacy,
10297 pConfig->authType);
10298 hddLog(LOGW,FL("RSN/WPALen=%d, Uapsd = %d"),
10299 (int)pConfig->RSNWPAReqIELength, pConfig->UapsdEnable);
10300 hddLog(LOGW,FL("ProtEnabled = %d, OBSSProtEnabled = %d"),
10301 pConfig->protEnabled, pConfig->obssProtEnabled);
Jeff Johnson295189b2012-06-20 16:38:30 -070010302
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010303 if(test_bit(SOFTAP_BSS_STARTED, &pHostapdAdapter->event_flags))
Jeff Johnson295189b2012-06-20 16:38:30 -070010304 {
10305 //Bss already started. just return.
10306 //TODO Probably it should update some beacon params.
10307 hddLog( LOGE, "Bss Already started...Ignore the request");
10308 EXIT();
10309 return 0;
10310 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010311
Agarwal Ashish51325b52014-06-16 16:50:49 +053010312 if (vos_max_concurrent_connections_reached()) {
10313 hddLog(VOS_TRACE_LEVEL_INFO, FL("Reached max concurrent connections"));
10314 return -EINVAL;
10315 }
10316
Jeff Johnson295189b2012-06-20 16:38:30 -070010317 pConfig->persona = pHostapdAdapter->device_mode;
10318
Peng Xu2446a892014-09-05 17:21:18 +053010319 psmeConfig = (tSmeConfigParams*) vos_mem_malloc(sizeof(tSmeConfigParams));
10320 if ( NULL != psmeConfig)
10321 {
Hardik Kantilal Patel086e0a32014-11-20 14:56:26 +053010322 vos_mem_zero(psmeConfig, sizeof (tSmeConfigParams));
Peng Xu2446a892014-09-05 17:21:18 +053010323 sme_GetConfigParam(hHal, psmeConfig);
10324 pConfig->scanBandPreference = psmeConfig->csrConfig.scanBandPreference;
Hardik Kantilal Patel086e0a32014-11-20 14:56:26 +053010325#ifdef WLAN_FEATURE_AP_HT40_24G
10326 if (((pHostapdAdapter->device_mode == WLAN_HDD_SOFTAP)
10327 || (pHostapdAdapter->device_mode == WLAN_HDD_P2P_GO))
10328 && pHddCtx->cfg_ini->apHT40_24GEnabled)
10329 {
10330 psmeConfig->csrConfig.apHT40_24GEnabled = 1;
10331 sme_UpdateConfig (hHal, psmeConfig);
10332 }
10333#endif
Peng Xu2446a892014-09-05 17:21:18 +053010334 vos_mem_free(psmeConfig);
10335 }
Peng Xuafc34e32014-09-25 13:23:55 +053010336 pConfig->acsBandSwitchThreshold = iniConfig->acsBandSwitchThreshold;
Peng Xu2446a892014-09-05 17:21:18 +053010337
Jeff Johnson295189b2012-06-20 16:38:30 -070010338 pSapEventCallback = hdd_hostapd_SAPEventCB;
10339 if(WLANSAP_StartBss(pVosContext, pSapEventCallback, pConfig,
10340 (v_PVOID_t)pHostapdAdapter->dev) != VOS_STATUS_SUCCESS)
10341 {
Arif Hussain6d2a3322013-11-17 19:50:10 -080010342 hddLog(LOGE,FL("SAP Start Bss fail"));
Jeff Johnson295189b2012-06-20 16:38:30 -070010343 return -EINVAL;
10344 }
10345
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010346 hddLog(LOG1,
Jeff Johnson295189b2012-06-20 16:38:30 -070010347 FL("Waiting for Scan to complete(auto mode) and BSS to start"));
10348
10349 status = vos_wait_single_event(&pHostapdState->vosEvent, 10000);
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010350
Jeff Johnson295189b2012-06-20 16:38:30 -070010351 if (!VOS_IS_STATUS_SUCCESS(status))
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010352 {
10353 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -080010354 ("ERROR: HDD vos wait for single_event failed!!"));
Tushnim Bhattacharyyaad37df12013-10-02 12:01:33 -070010355 smeGetCommandQStatus(hHal);
Jeff Johnson295189b2012-06-20 16:38:30 -070010356 VOS_ASSERT(0);
10357 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010358
Jeff Johnson295189b2012-06-20 16:38:30 -070010359 set_bit(SOFTAP_BSS_STARTED, &pHostapdAdapter->event_flags);
Nishank Aggarwalc11826c2016-12-15 18:54:10 +053010360 if (WLANSAP_get_sessionId(pVosContext, &pHostapdAdapter->sessionId) !=
10361 VOS_STATUS_SUCCESS)
10362 {
10363 hddLog(LOGE,FL("Fail to get Softap sessionID"));
10364 VOS_ASSERT(0);
10365 }
Kaushik, Sushantf6070802014-10-15 15:09:23 +053010366 /* Initialize WMM configuation */
10367 hdd_wmm_init(pHostapdAdapter);
Agarwal Ashish51325b52014-06-16 16:50:49 +053010368 wlan_hdd_incr_active_session(pHddCtx, pHostapdAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -070010369
Anurag Chouhan83026002016-12-13 22:46:21 +053010370#ifdef DHCP_SERVER_OFFLOAD
10371 /* set dhcp server offload */
10372 if (iniConfig->enable_dhcp_srv_offload &&
10373 sme_IsFeatureSupportedByFW(SAP_OFFLOADS)) {
Anurag Chouhan638f5e22017-03-06 12:28:43 +053010374 status = wlan_hdd_set_dhcp_server_offload(pHostapdAdapter, false);
Anurag Chouhan83026002016-12-13 22:46:21 +053010375 if (!VOS_IS_STATUS_SUCCESS(status))
10376 {
10377 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10378 ("HDD DHCP Server Offload Failed!!"));
10379 return -EINVAL;
10380 }
10381 vos_event_reset(&pHostapdAdapter->dhcp_status.vos_event);
10382 status = vos_wait_single_event(&pHostapdAdapter->dhcp_status.vos_event, 2000);
10383 if (!VOS_IS_STATUS_SUCCESS(status) || pHostapdAdapter->dhcp_status.dhcp_offload_status)
10384 {
10385 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10386 ("ERROR: DHCP HDD vos wait for single_event failed!! %d"),
10387 pHostapdAdapter->dhcp_status.dhcp_offload_status);
10388 return -EINVAL;
10389 }
Anurag Chouhan0b29de02016-12-16 13:18:40 +053010390#ifdef MDNS_OFFLOAD
10391 if (iniConfig->enable_mdns_offload) {
10392 status = wlan_hdd_set_mdns_offload(pHostapdAdapter);
10393 if (VOS_IS_STATUS_SUCCESS(status))
10394 {
10395 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10396 ("HDD MDNS Server Offload Failed!!"));
10397 return -EINVAL;
10398 }
10399 vos_event_reset(&pHostapdAdapter->mdns_status.vos_event);
10400 status = vos_wait_single_event(&pHostapdAdapter->
10401 mdns_status.vos_event, 2000);
10402 if (!VOS_IS_STATUS_SUCCESS(status) ||
10403 pHostapdAdapter->mdns_status.mdns_enable_status ||
10404 pHostapdAdapter->mdns_status.mdns_fqdn_status ||
10405 pHostapdAdapter->mdns_status.mdns_resp_status)
10406 {
10407 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10408 ("MDNS HDD vos wait for single_event failed!! enable %d fqdn %d resp %d"),
10409 pHostapdAdapter->mdns_status.mdns_enable_status,
10410 pHostapdAdapter->mdns_status.mdns_fqdn_status,
10411 pHostapdAdapter->mdns_status.mdns_resp_status);
10412 return -EINVAL;
10413 }
10414 }
10415#endif /* MDNS_OFFLOAD */
10416 } else {
10417 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
10418 ("DHCP Disabled ini %d, FW %d"),
10419 iniConfig->enable_dhcp_srv_offload,
10420 sme_IsFeatureSupportedByFW(SAP_OFFLOADS));
Anurag Chouhan83026002016-12-13 22:46:21 +053010421 }
10422#endif /* DHCP_SERVER_OFFLOAD */
10423
Madan Mohan Koyyalamudi26bd7142012-10-30 18:14:19 -070010424#ifdef WLAN_FEATURE_P2P_DEBUG
10425 if (pHostapdAdapter->device_mode == WLAN_HDD_P2P_GO)
10426 {
10427 if(globalP2PConnectionStatus == P2P_GO_NEG_COMPLETED)
10428 {
10429 globalP2PConnectionStatus = P2P_GO_COMPLETED_STATE;
10430 hddLog(LOGE,"[P2P State] From Go nego completed to "
Jeff Johnson1250df42012-12-10 14:31:52 -080010431 "Non-autonomous Group started");
Madan Mohan Koyyalamudi26bd7142012-10-30 18:14:19 -070010432 }
10433 else if(globalP2PConnectionStatus == P2P_NOT_ACTIVE)
10434 {
10435 globalP2PConnectionStatus = P2P_GO_COMPLETED_STATE;
10436 hddLog(LOGE,"[P2P State] From Inactive to "
Jeff Johnson1250df42012-12-10 14:31:52 -080010437 "Autonomous Group started");
Madan Mohan Koyyalamudi26bd7142012-10-30 18:14:19 -070010438 }
10439 }
10440#endif
Ashish Kumar Dhanotiya42aa5152017-01-03 20:25:57 +053010441 /* Check and restart SAP if it is on Unsafe channel */
10442 hdd_check_for_unsafe_ch(pHostapdAdapter, pHddCtx);
Madan Mohan Koyyalamudi26bd7142012-10-30 18:14:19 -070010443
Jeff Johnson295189b2012-06-20 16:38:30 -070010444 pHostapdState->bCommit = TRUE;
10445 EXIT();
10446
10447 return 0;
10448}
10449
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010450#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
Mukul Sharmab0e0a982014-12-15 18:58:53 +053010451static int __wlan_hdd_cfg80211_add_beacon(struct wiphy *wiphy,
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010452 struct net_device *dev,
Jeff Johnson295189b2012-06-20 16:38:30 -070010453 struct beacon_parameters *params)
10454{
10455 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053010456 hdd_context_t *pHddCtx;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010457 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -070010458
10459 ENTER();
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053010460
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053010461 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
10462 TRACE_CODE_HDD_CFG80211_ADD_BEACON,
10463 pAdapter->sessionId, params->interval));
Sushant Kaushik8bc7df22014-04-09 17:55:29 +053010464 hddLog(VOS_TRACE_LEVEL_INFO_HIGH, "device mode=%s (%d)",
10465 hdd_device_modetoString(pAdapter->device_mode),
10466 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -070010467
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010468 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
10469 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010470 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010471 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010472 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010473 }
10474
Agarwal Ashish51325b52014-06-16 16:50:49 +053010475 if (vos_max_concurrent_connections_reached()) {
10476 hddLog(VOS_TRACE_LEVEL_INFO, FL("Reached max concurrent connections"));
10477 return -EINVAL;
10478 }
10479
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010480 if ( (pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -070010481 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Jeff Johnson295189b2012-06-20 16:38:30 -070010482 )
10483 {
10484 beacon_data_t *old,*new;
10485
10486 old = pAdapter->sessionCtx.ap.beacon;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010487
Jeff Johnson295189b2012-06-20 16:38:30 -070010488 if (old)
c_hpothu6ff1c3c2013-10-01 19:01:57 +053010489 {
10490 hddLog(VOS_TRACE_LEVEL_WARN,
10491 FL("already beacon info added to session(%d)"),
10492 pAdapter->sessionId);
Jeff Johnson295189b2012-06-20 16:38:30 -070010493 return -EALREADY;
c_hpothu6ff1c3c2013-10-01 19:01:57 +053010494 }
Jeff Johnson295189b2012-06-20 16:38:30 -070010495
10496 status = wlan_hdd_cfg80211_alloc_new_beacon(pAdapter,&new,params);
10497
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010498 if(status != VOS_STATUS_SUCCESS)
Jeff Johnson295189b2012-06-20 16:38:30 -070010499 {
10500 hddLog(VOS_TRACE_LEVEL_FATAL,
Arif Hussain6d2a3322013-11-17 19:50:10 -080010501 "%s:Error!!! Allocating the new beacon",__func__);
Jeff Johnson295189b2012-06-20 16:38:30 -070010502 return -EINVAL;
10503 }
10504
10505 pAdapter->sessionCtx.ap.beacon = new;
10506
10507 status = wlan_hdd_cfg80211_start_bss(pAdapter, params);
10508 }
10509
10510 EXIT();
10511 return status;
10512}
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010513
Mukul Sharmab0e0a982014-12-15 18:58:53 +053010514static int wlan_hdd_cfg80211_add_beacon(struct wiphy *wiphy,
10515 struct net_device *dev,
10516 struct beacon_parameters *params)
10517{
10518 int ret;
10519
10520 vos_ssr_protect(__func__);
10521 ret = __wlan_hdd_cfg80211_add_beacon(wiphy, dev, params);
10522 vos_ssr_unprotect(__func__);
10523
10524 return ret;
10525}
10526
10527static int __wlan_hdd_cfg80211_set_beacon(struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -070010528 struct net_device *dev,
10529 struct beacon_parameters *params)
10530{
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010531 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053010532 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
10533 hdd_context_t *pHddCtx;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010534 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -070010535
10536 ENTER();
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053010537
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053010538 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
10539 TRACE_CODE_HDD_CFG80211_SET_BEACON,
10540 pAdapter->sessionId, pHddStaCtx->conn_info.authType));
10541 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s (%d)",
10542 __func__, hdd_device_modetoString(pAdapter->device_mode),
10543 pAdapter->device_mode);
10544
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010545 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
10546 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010547 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010548 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010549 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010550 }
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053010551
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010552 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -070010553 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010554 )
Jeff Johnson295189b2012-06-20 16:38:30 -070010555 {
10556 beacon_data_t *old,*new;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010557
Jeff Johnson295189b2012-06-20 16:38:30 -070010558 old = pAdapter->sessionCtx.ap.beacon;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010559
Jeff Johnson295189b2012-06-20 16:38:30 -070010560 if (!old)
c_hpothu6ff1c3c2013-10-01 19:01:57 +053010561 {
10562 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10563 FL("session(%d) old and new heads points to NULL"),
10564 pAdapter->sessionId);
Jeff Johnson295189b2012-06-20 16:38:30 -070010565 return -ENOENT;
c_hpothu6ff1c3c2013-10-01 19:01:57 +053010566 }
Jeff Johnson295189b2012-06-20 16:38:30 -070010567
10568 status = wlan_hdd_cfg80211_alloc_new_beacon(pAdapter,&new,params);
10569
10570 if(status != VOS_STATUS_SUCCESS) {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010571 hddLog(VOS_TRACE_LEVEL_FATAL,
Arif Hussain6d2a3322013-11-17 19:50:10 -080010572 "%s: Error!!! Allocating the new beacon",__func__);
Jeff Johnson295189b2012-06-20 16:38:30 -070010573 return -EINVAL;
10574 }
10575
10576 pAdapter->sessionCtx.ap.beacon = new;
10577
10578 status = wlan_hdd_cfg80211_start_bss(pAdapter, params);
10579 }
10580
10581 EXIT();
10582 return status;
10583}
10584
Mukul Sharmab0e0a982014-12-15 18:58:53 +053010585static int wlan_hdd_cfg80211_set_beacon(struct wiphy *wiphy,
10586 struct net_device *dev,
10587 struct beacon_parameters *params)
10588{
10589 int ret;
10590
10591 vos_ssr_protect(__func__);
10592 ret = __wlan_hdd_cfg80211_set_beacon(wiphy, dev, params);
10593 vos_ssr_unprotect(__func__);
10594
10595 return ret;
10596}
10597
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010598#endif //(LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
10599
10600#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
Mukul Sharmab0e0a982014-12-15 18:58:53 +053010601static int __wlan_hdd_cfg80211_del_beacon(struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -070010602 struct net_device *dev)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010603#else
Mukul Sharmab0e0a982014-12-15 18:58:53 +053010604static int __wlan_hdd_cfg80211_stop_ap (struct wiphy *wiphy,
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010605 struct net_device *dev)
10606#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070010607{
10608 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Jeff Johnsone7245742012-09-05 17:12:55 -070010609 hdd_context_t *pHddCtx = NULL;
10610 hdd_scaninfo_t *pScanInfo = NULL;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010611 VOS_STATUS status;
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +053010612 long ret;
Jeff Johnson295189b2012-06-20 16:38:30 -070010613
10614 ENTER();
10615
10616 if (NULL == pAdapter)
10617 {
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053010618 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -070010619 "%s: HDD adapter context is Null", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -070010620 return -ENODEV;
10621 }
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -070010622
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053010623 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
10624 TRACE_CODE_HDD_CFG80211_STOP_AP,
10625 pAdapter->sessionId, pAdapter->device_mode));
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010626 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
10627 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010628 if (0 != status)
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -070010629 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010630 return status;
Jeff Johnson4416a782013-03-25 14:17:50 -070010631 }
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -070010632
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -070010633 pScanInfo = &pHddCtx->scan_info;
10634
Sushant Kaushik8bc7df22014-04-09 17:55:29 +053010635 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s (%d)",
10636 __func__, hdd_device_modetoString(pAdapter->device_mode),
10637 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -070010638
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +053010639 ret = wlan_hdd_scan_abort(pAdapter);
10640
Girish Gowli4bf7a632014-06-12 13:42:11 +053010641 if (ret < 0)
Jeff Johnsone7245742012-09-05 17:12:55 -070010642 {
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +053010643 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10644 FL("Timeout occurred while waiting for abortscan %ld"), ret);
c_hpothu6ff1c3c2013-10-01 19:01:57 +053010645
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +053010646 if (pHddCtx->isLogpInProgress)
Jeff Johnsone7245742012-09-05 17:12:55 -070010647 {
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +053010648 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10649 "%s: LOGP in Progress. Ignore!!!", __func__);
Yue Ma4f55ef32014-01-23 16:45:33 -080010650
Jeff Johnsone7245742012-09-05 17:12:55 -070010651 VOS_ASSERT(pScanInfo->mScanPending);
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +053010652 return -EAGAIN;
Jeff Johnsone7245742012-09-05 17:12:55 -070010653 }
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +053010654 VOS_ASSERT(pScanInfo->mScanPending);
Jeff Johnsone7245742012-09-05 17:12:55 -070010655 }
10656
Rashmi Ramanna1f0948d2014-08-28 15:33:48 +053010657 /* Delete all associated STAs before stopping AP/P2P GO */
10658 hdd_del_all_sta(pAdapter);
Arun Kumar Khandavallia3bd8002014-01-17 16:21:19 +053010659 hdd_hostapd_stop(dev);
10660
Jeff Johnson295189b2012-06-20 16:38:30 -070010661 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -070010662 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Jeff Johnson295189b2012-06-20 16:38:30 -070010663 )
10664 {
10665 beacon_data_t *old;
10666
10667 old = pAdapter->sessionCtx.ap.beacon;
10668
10669 if (!old)
c_hpothu6ff1c3c2013-10-01 19:01:57 +053010670 {
10671 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10672 FL("session(%d) beacon data points to NULL"),
10673 pAdapter->sessionId);
Jeff Johnson295189b2012-06-20 16:38:30 -070010674 return -ENOENT;
c_hpothu6ff1c3c2013-10-01 19:01:57 +053010675 }
Jeff Johnson295189b2012-06-20 16:38:30 -070010676
Jeff Johnson295189b2012-06-20 16:38:30 -070010677 hdd_cleanup_actionframe(pHddCtx, pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -070010678
10679 mutex_lock(&pHddCtx->sap_lock);
10680 if(test_bit(SOFTAP_BSS_STARTED, &pAdapter->event_flags))
10681 {
Jeff Johnson4416a782013-03-25 14:17:50 -070010682 if ( VOS_STATUS_SUCCESS == (status = WLANSAP_StopBss(pHddCtx->pvosContext) ) )
Jeff Johnson295189b2012-06-20 16:38:30 -070010683 {
10684 hdd_hostapd_state_t *pHostapdState = WLAN_HDD_GET_HOSTAP_STATE_PTR(pAdapter);
10685
10686 status = vos_wait_single_event(&pHostapdState->vosEvent, 10000);
10687
10688 if (!VOS_IS_STATUS_SUCCESS(status))
10689 {
10690 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -080010691 ("ERROR: HDD vos wait for single_event failed!!"));
Jeff Johnson295189b2012-06-20 16:38:30 -070010692 VOS_ASSERT(0);
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053010693 }
10694 }
Jeff Johnson295189b2012-06-20 16:38:30 -070010695 clear_bit(SOFTAP_BSS_STARTED, &pAdapter->event_flags);
Agarwal Ashish51325b52014-06-16 16:50:49 +053010696 /* BSS stopped, clear the active sessions for this device mode */
10697 wlan_hdd_decr_active_session(pHddCtx, pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -070010698 }
10699 mutex_unlock(&pHddCtx->sap_lock);
10700
10701 if(status != VOS_STATUS_SUCCESS)
10702 {
10703 hddLog(VOS_TRACE_LEVEL_FATAL,
Arif Hussain6d2a3322013-11-17 19:50:10 -080010704 "%s:Error!!! Stopping the BSS",__func__);
Jeff Johnson295189b2012-06-20 16:38:30 -070010705 return -EINVAL;
10706 }
10707
Jeff Johnson4416a782013-03-25 14:17:50 -070010708 if (ccmCfgSetInt(pHddCtx->hHal,
Jeff Johnson295189b2012-06-20 16:38:30 -070010709 WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG, 0,NULL, eANI_BOOLEAN_FALSE)
10710 ==eHAL_STATUS_FAILURE)
10711 {
10712 hddLog(LOGE,
Arif Hussain6d2a3322013-11-17 19:50:10 -080010713 "Could not pass on WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG to CCM");
Jeff Johnson295189b2012-06-20 16:38:30 -070010714 }
10715
Jeff Johnson4416a782013-03-25 14:17:50 -070010716 if ( eHAL_STATUS_FAILURE == ccmCfgSetInt(pHddCtx->hHal,
Jeff Johnson295189b2012-06-20 16:38:30 -070010717 WNI_CFG_ASSOC_RSP_ADDNIE_FLAG, 0, NULL,
10718 eANI_BOOLEAN_FALSE) )
10719 {
10720 hddLog(LOGE,
Arif Hussain6d2a3322013-11-17 19:50:10 -080010721 "Could not pass on WNI_CFG_ASSOC_RSP_ADDNIE_FLAG to CCM");
Jeff Johnson295189b2012-06-20 16:38:30 -070010722 }
10723
10724 // Reset WNI_CFG_PROBE_RSP Flags
10725 wlan_hdd_reset_prob_rspies(pAdapter);
10726
10727 pAdapter->sessionCtx.ap.beacon = NULL;
10728 kfree(old);
Madan Mohan Koyyalamudi26bd7142012-10-30 18:14:19 -070010729#ifdef WLAN_FEATURE_P2P_DEBUG
10730 if((pAdapter->device_mode == WLAN_HDD_P2P_GO) &&
10731 (globalP2PConnectionStatus == P2P_GO_COMPLETED_STATE))
10732 {
10733 hddLog(LOGE,"[P2P State] From GO completed to Inactive state "
10734 "GO got removed");
10735 globalP2PConnectionStatus = P2P_NOT_ACTIVE;
10736 }
10737#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070010738 }
10739 EXIT();
10740 return status;
10741}
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010742
Mukul Sharmab0e0a982014-12-15 18:58:53 +053010743#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
10744static int wlan_hdd_cfg80211_del_beacon(struct wiphy *wiphy,
10745 struct net_device *dev)
10746{
10747 int ret;
10748
10749 vos_ssr_protect(__func__);
10750 ret = __wlan_hdd_cfg80211_del_beacon(wiphy, dev);
10751 vos_ssr_unprotect(__func__);
10752
10753 return ret;
10754}
10755#else
10756static int wlan_hdd_cfg80211_stop_ap(struct wiphy *wiphy,
10757 struct net_device *dev)
10758{
10759 int ret;
10760
10761 vos_ssr_protect(__func__);
10762 ret = __wlan_hdd_cfg80211_stop_ap(wiphy, dev);
10763 vos_ssr_unprotect(__func__);
10764
10765 return ret;
10766}
10767#endif
10768
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010769#if (LINUX_VERSION_CODE > KERNEL_VERSION(3,3,0))
10770
Mukul Sharmab0e0a982014-12-15 18:58:53 +053010771static int __wlan_hdd_cfg80211_start_ap(struct wiphy *wiphy,
Pratik Bhalgata0c7f262012-11-22 17:40:24 +053010772 struct net_device *dev,
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010773 struct cfg80211_ap_settings *params)
10774{
Pratik Bhalgata0c7f262012-11-22 17:40:24 +053010775 hdd_adapter_t *pAdapter;
10776 hdd_context_t *pHddCtx;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010777 int status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010778
10779 ENTER();
10780
Girish Gowlib143d7a2015-02-18 19:39:55 +053010781 if (NULL == dev || NULL == params)
Madan Mohan Koyyalamudib2c36892012-10-18 20:52:38 -070010782 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010783 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Girish Gowlib143d7a2015-02-18 19:39:55 +053010784 "%s: Device or params is Null", __func__);
Pratik Bhalgata0c7f262012-11-22 17:40:24 +053010785 return -ENODEV;
10786 }
10787
10788 pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
10789 if (NULL == pAdapter)
10790 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010791 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Pratik Bhalgata0c7f262012-11-22 17:40:24 +053010792 "%s: HDD adapter is Null", __func__);
10793 return -ENODEV;
10794 }
10795
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053010796 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
10797 TRACE_CODE_HDD_CFG80211_START_AP, pAdapter->sessionId,
10798 params-> beacon_interval));
Pratik Bhalgata0c7f262012-11-22 17:40:24 +053010799 if (WLAN_HDD_ADAPTER_MAGIC != pAdapter->magic)
10800 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010801 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Pratik Bhalgata0c7f262012-11-22 17:40:24 +053010802 "%s: HDD adapter magic is invalid", __func__);
10803 return -ENODEV;
10804 }
10805
10806 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010807 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010808 if (0 != status)
Pratik Bhalgata0c7f262012-11-22 17:40:24 +053010809 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010810 return status;
Pratik Bhalgata0c7f262012-11-22 17:40:24 +053010811 }
10812
Sushant Kaushik8bc7df22014-04-09 17:55:29 +053010813 hddLog(VOS_TRACE_LEVEL_INFO_HIGH, "%s: device mode = %s (%d)",
10814 __func__, hdd_device_modetoString(pAdapter->device_mode),
10815 pAdapter->device_mode);
Pratik Bhalgata0c7f262012-11-22 17:40:24 +053010816
10817 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010818 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010819 )
10820 {
Pratik Bhalgata0c7f262012-11-22 17:40:24 +053010821 beacon_data_t *old, *new;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010822
10823 old = pAdapter->sessionCtx.ap.beacon;
Pratik Bhalgata0c7f262012-11-22 17:40:24 +053010824
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010825 if (old)
c_hpothu6ff1c3c2013-10-01 19:01:57 +053010826 {
10827 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_WARN,
10828 FL("already beacon info added to session(%d)"),
10829 pAdapter->sessionId);
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010830 return -EALREADY;
c_hpothu6ff1c3c2013-10-01 19:01:57 +053010831 }
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010832
Girish Gowlib143d7a2015-02-18 19:39:55 +053010833#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
10834 status = wlan_hdd_cfg80211_alloc_new_beacon(pAdapter,
10835 &new,
10836 &params->beacon);
10837#else
10838 status = wlan_hdd_cfg80211_alloc_new_beacon(pAdapter,
10839 &new,
10840 &params->beacon,
10841 params->dtim_period);
10842#endif
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010843
Pratik Bhalgata0c7f262012-11-22 17:40:24 +053010844 if (status != 0)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010845 {
10846 hddLog(VOS_TRACE_LEVEL_FATAL,
Pratik Bhalgata0c7f262012-11-22 17:40:24 +053010847 "%s:Error!!! Allocating the new beacon", __func__);
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010848 return -EINVAL;
10849 }
10850 pAdapter->sessionCtx.ap.beacon = new;
Viral Modi3a32cc52013-02-08 11:14:52 -080010851#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,6,0))
Yue Maf49ba872013-08-19 12:04:25 -070010852 wlan_hdd_cfg80211_set_channel(wiphy, dev,
10853#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,8,0))
10854 params->channel, params->channel_type);
10855#else
10856 params->chandef.chan, cfg80211_get_chandef_type(&(params->chandef)));
10857#endif
Viral Modi3a32cc52013-02-08 11:14:52 -080010858#endif
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010859 status = wlan_hdd_cfg80211_start_bss(pAdapter, &params->beacon, params->ssid,
Kanchanapally, Vidyullathaacc59252015-05-20 16:49:07 +053010860 params->ssid_len, params->hidden_ssid,
10861 params->auth_type);
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010862 }
10863
10864 EXIT();
10865 return status;
10866}
10867
Mukul Sharmab0e0a982014-12-15 18:58:53 +053010868static int wlan_hdd_cfg80211_start_ap(struct wiphy *wiphy,
10869 struct net_device *dev,
10870 struct cfg80211_ap_settings *params)
10871{
10872 int ret;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010873
Mukul Sharmab0e0a982014-12-15 18:58:53 +053010874 vos_ssr_protect(__func__);
10875 ret = __wlan_hdd_cfg80211_start_ap(wiphy, dev, params);
10876 vos_ssr_unprotect(__func__);
10877
10878 return ret;
10879}
10880
10881static int __wlan_hdd_cfg80211_change_beacon(struct wiphy *wiphy,
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010882 struct net_device *dev,
10883 struct cfg80211_beacon_data *params)
10884{
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010885 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053010886 hdd_context_t *pHddCtx;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010887 int status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010888
10889 ENTER();
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053010890
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053010891 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
10892 TRACE_CODE_HDD_CFG80211_CHANGE_BEACON,
10893 pAdapter->sessionId, pAdapter->device_mode));
Arif Hussain6d2a3322013-11-17 19:50:10 -080010894 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %d",
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010895 __func__, pAdapter->device_mode);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010896
10897 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
10898 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010899 if (0 != status)
Madan Mohan Koyyalamudib2c36892012-10-18 20:52:38 -070010900 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010901 return status;
Madan Mohan Koyyalamudib2c36892012-10-18 20:52:38 -070010902 }
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010903
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010904 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010905 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010906 )
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010907 {
10908 beacon_data_t *old,*new;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010909
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010910 old = pAdapter->sessionCtx.ap.beacon;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010911
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010912 if (!old)
c_hpothu6ff1c3c2013-10-01 19:01:57 +053010913 {
10914 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10915 FL("session(%d) beacon data points to NULL"),
10916 pAdapter->sessionId);
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010917 return -ENOENT;
c_hpothu6ff1c3c2013-10-01 19:01:57 +053010918 }
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010919
10920 status = wlan_hdd_cfg80211_alloc_new_beacon(pAdapter, &new, params, 0);
10921
10922 if(status != VOS_STATUS_SUCCESS) {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010923 hddLog(VOS_TRACE_LEVEL_FATAL,
Arif Hussain6d2a3322013-11-17 19:50:10 -080010924 "%s: Error!!! Allocating the new beacon",__func__);
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010925 return -EINVAL;
10926 }
10927
10928 pAdapter->sessionCtx.ap.beacon = new;
10929
Kanchanapally, Vidyullathaacc59252015-05-20 16:49:07 +053010930 status = wlan_hdd_cfg80211_start_bss(pAdapter, params, NULL, 0, 0,
10931 pAdapter->sessionCtx.ap.sapConfig.authType);
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010932 }
10933
10934 EXIT();
10935 return status;
10936}
10937
Mukul Sharmab0e0a982014-12-15 18:58:53 +053010938static int wlan_hdd_cfg80211_change_beacon(struct wiphy *wiphy,
10939 struct net_device *dev,
10940 struct cfg80211_beacon_data *params)
10941{
10942 int ret;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070010943
Mukul Sharmab0e0a982014-12-15 18:58:53 +053010944 vos_ssr_protect(__func__);
10945 ret = __wlan_hdd_cfg80211_change_beacon(wiphy, dev, params);
10946 vos_ssr_unprotect(__func__);
10947
10948 return ret;
10949}
10950
10951#endif //(LINUX_VERSION_CODE > KERNEL_VERSION(3,3,0))
Jeff Johnson295189b2012-06-20 16:38:30 -070010952
Mahesh A Saptasagar179d2252014-06-02 21:32:21 +053010953static int __wlan_hdd_cfg80211_change_bss (struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -070010954 struct net_device *dev,
10955 struct bss_parameters *params)
10956{
10957 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Masti, Narayanraddic80e2bf2015-01-27 16:39:00 +053010958 hdd_context_t *pHddCtx;
10959 int ret = 0;
Jeff Johnson295189b2012-06-20 16:38:30 -070010960
10961 ENTER();
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053010962
Masti, Narayanraddic80e2bf2015-01-27 16:39:00 +053010963 if (NULL == pAdapter)
10964 {
10965 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10966 "%s: HDD adapter is Null", __func__);
10967 return -ENODEV;
10968 }
10969 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Masti, Narayanraddic80e2bf2015-01-27 16:39:00 +053010970 ret = wlan_hdd_validate_context(pHddCtx);
10971 if (0 != ret)
10972 {
Masti, Narayanraddic80e2bf2015-01-27 16:39:00 +053010973 return ret;
10974 }
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053010975 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
10976 TRACE_CODE_HDD_CFG80211_CHANGE_BSS,
10977 pAdapter->sessionId, params->ap_isolate));
Sushant Kaushik8bc7df22014-04-09 17:55:29 +053010978 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s (%d)",
10979 __func__, hdd_device_modetoString(pAdapter->device_mode),
10980 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -070010981
10982 if((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -070010983 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010984 )
Jeff Johnson295189b2012-06-20 16:38:30 -070010985 {
10986 /* ap_isolate == -1 means that in change bss, upper layer doesn't
10987 * want to update this parameter */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010988 if (-1 != params->ap_isolate)
Jeff Johnson295189b2012-06-20 16:38:30 -070010989 {
10990 pAdapter->sessionCtx.ap.apDisableIntraBssFwd = !!params->ap_isolate;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010991 }
Jeff Johnson295189b2012-06-20 16:38:30 -070010992 }
10993
10994 EXIT();
10995 return 0;
10996}
10997
Mahesh A Saptasagar179d2252014-06-02 21:32:21 +053010998static int wlan_hdd_cfg80211_change_bss (struct wiphy *wiphy,
10999 struct net_device *dev,
11000 struct bss_parameters *params)
11001{
11002 int ret;
11003
11004 vos_ssr_protect(__func__);
11005 ret = __wlan_hdd_cfg80211_change_bss(wiphy, dev, params);
11006 vos_ssr_unprotect(__func__);
11007
11008 return ret;
11009}
Kiet Lam10841362013-11-01 11:36:50 +053011010/* FUNCTION: wlan_hdd_change_country_code_cd
11011* to wait for contry code completion
11012*/
11013void* wlan_hdd_change_country_code_cb(void *pAdapter)
11014{
11015 hdd_adapter_t *call_back_pAdapter = pAdapter;
11016 complete(&call_back_pAdapter->change_country_code);
11017 return NULL;
11018}
11019
Jeff Johnson295189b2012-06-20 16:38:30 -070011020/*
Mahesh A Saptasagar0e59c472014-04-14 19:17:41 +053011021 * FUNCTION: __wlan_hdd_cfg80211_change_iface
Jeff Johnson295189b2012-06-20 16:38:30 -070011022 * This function is used to set the interface type (INFRASTRUCTURE/ADHOC)
11023 */
Mahesh A Saptasagar0e59c472014-04-14 19:17:41 +053011024int __wlan_hdd_cfg80211_change_iface( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -070011025 struct net_device *ndev,
11026 enum nl80211_iftype type,
11027 u32 *flags,
11028 struct vif_params *params
11029 )
11030{
11031 struct wireless_dev *wdev;
11032 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( ndev );
Rajesh Chauhana0516c62014-01-30 16:11:18 -080011033 hdd_context_t *pHddCtx;
Mohit Khanna0f232092012-09-11 14:46:08 -070011034 hdd_adapter_t *pP2pAdapter = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -070011035 tCsrRoamProfile *pRoamProfile = NULL;
11036 eCsrRoamBssType LastBSSType;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011037 hdd_config_t *pConfig = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -070011038 eMib_dot11DesiredBssType connectedBssType;
11039 VOS_STATUS status;
c_hpothu6ff1c3c2013-10-01 19:01:57 +053011040 long ret;
Jeff Johnson295189b2012-06-20 16:38:30 -070011041
11042 ENTER();
11043
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053011044 if (!pAdapter)
Rajesh Chauhana0516c62014-01-30 16:11:18 -080011045 {
11046 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11047 "%s: Adapter context is null", __func__);
11048 return VOS_STATUS_E_FAILURE;
11049 }
11050
11051 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
11052 if (!pHddCtx)
11053 {
11054 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11055 "%s: HDD context is null", __func__);
11056 return VOS_STATUS_E_FAILURE;
11057 }
11058
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053011059 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
11060 TRACE_CODE_HDD_CFG80211_CHANGE_IFACE,
11061 pAdapter->sessionId, type));
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011062 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011063 if (0 != status)
Jeff Johnson295189b2012-06-20 16:38:30 -070011064 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011065 return status;
Jeff Johnson295189b2012-06-20 16:38:30 -070011066 }
11067
Sushant Kaushik8bc7df22014-04-09 17:55:29 +053011068 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s (%d)",
11069 __func__, hdd_device_modetoString(pAdapter->device_mode),
11070 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -070011071
Agarwal Ashish51325b52014-06-16 16:50:49 +053011072 if (vos_max_concurrent_connections_reached()) {
11073 hddLog(VOS_TRACE_LEVEL_INFO, FL("Reached max concurrent connections"));
11074 return -EINVAL;
11075 }
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011076 pConfig = pHddCtx->cfg_ini;
Jeff Johnson295189b2012-06-20 16:38:30 -070011077 wdev = ndev->ieee80211_ptr;
11078
11079#ifdef WLAN_BTAMP_FEATURE
11080 if((NL80211_IFTYPE_P2P_CLIENT == type)||
11081 (NL80211_IFTYPE_ADHOC == type)||
11082 (NL80211_IFTYPE_AP == type)||
11083 (NL80211_IFTYPE_P2P_GO == type))
11084 {
11085 pHddCtx->isAmpAllowed = VOS_FALSE;
11086 // stop AMP traffic
11087 status = WLANBAP_StopAmp();
11088 if(VOS_STATUS_SUCCESS != status )
11089 {
11090 pHddCtx->isAmpAllowed = VOS_TRUE;
11091 hddLog(VOS_TRACE_LEVEL_FATAL,
11092 "%s: Failed to stop AMP", __func__);
11093 return -EINVAL;
11094 }
11095 }
11096#endif //WLAN_BTAMP_FEATURE
11097 /* Reset the current device mode bit mask*/
11098 wlan_hdd_clear_concurrency_mode(pHddCtx, pAdapter->device_mode);
11099
Masti, Narayanraddi575ccc72015-08-17 18:04:57 +053011100 if ((pAdapter->device_mode == WLAN_HDD_P2P_DEVICE) &&
11101 ((type == NL80211_IFTYPE_P2P_CLIENT) ||
11102 (type == NL80211_IFTYPE_P2P_GO)))
11103 {
11104 /* Notify Mode change in case of concurrency.
11105 * Below function invokes TDLS teardown Functionality Since TDLS is
11106 * not Supported in case of concurrency i.e Once P2P session
11107 * is detected disable offchannel and teardown TDLS links
11108 */
11109 hddLog(LOG1,
11110 FL("Device mode = %d Interface type = %d"),
11111 pAdapter->device_mode, type);
11112 hdd_tdls_notify_mode_change(pAdapter, pHddCtx);
11113 }
Masti, Narayanraddifdde4d02015-04-16 14:41:51 +053011114
Jeff Johnson295189b2012-06-20 16:38:30 -070011115 if( (pAdapter->device_mode == WLAN_HDD_INFRA_STATION)
Jeff Johnson295189b2012-06-20 16:38:30 -070011116 || (pAdapter->device_mode == WLAN_HDD_P2P_CLIENT)
Jeff Johnsone7245742012-09-05 17:12:55 -070011117 || (pAdapter->device_mode == WLAN_HDD_P2P_DEVICE)
Jeff Johnson295189b2012-06-20 16:38:30 -070011118 )
11119 {
11120 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Rajesh Chauhana0516c62014-01-30 16:11:18 -080011121 if (!pWextState)
11122 {
11123 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11124 "%s: pWextState is null", __func__);
11125 return VOS_STATUS_E_FAILURE;
11126 }
Jeff Johnson295189b2012-06-20 16:38:30 -070011127 pRoamProfile = &pWextState->roamProfile;
11128 LastBSSType = pRoamProfile->BSSType;
11129
11130 switch (type)
11131 {
11132 case NL80211_IFTYPE_STATION:
Jeff Johnson295189b2012-06-20 16:38:30 -070011133 case NL80211_IFTYPE_P2P_CLIENT:
Jeff Johnson295189b2012-06-20 16:38:30 -070011134 hddLog(VOS_TRACE_LEVEL_INFO,
11135 "%s: setting interface Type to INFRASTRUCTURE", __func__);
11136 pRoamProfile->BSSType = eCSR_BSS_TYPE_INFRASTRUCTURE;
Jeff Johnsone7245742012-09-05 17:12:55 -070011137#ifdef WLAN_FEATURE_11AC
11138 if(pConfig->dot11Mode == eHDD_DOT11_MODE_AUTO)
11139 {
11140 pConfig->dot11Mode = eHDD_DOT11_MODE_11ac;
11141 }
11142#endif
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011143 pRoamProfile->phyMode =
Jeff Johnsone7245742012-09-05 17:12:55 -070011144 hdd_cfg_xlate_to_csr_phy_mode(pConfig->dot11Mode);
Jeff Johnson295189b2012-06-20 16:38:30 -070011145 wdev->iftype = type;
Gopichand Nakkalaf527dc62012-12-31 16:35:10 -080011146 //Check for sub-string p2p to confirm its a p2p interface
11147 if (NULL != strstr(ndev->name,"p2p"))
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011148 {
Mahesh A Saptasagarc48ae8a2015-08-09 00:04:35 +053011149#ifdef FEATURE_WLAN_TDLS
11150 mutex_lock(&pHddCtx->tdls_lock);
11151 wlan_hdd_tdls_exit(pAdapter, TRUE);
11152 mutex_unlock(&pHddCtx->tdls_lock);
11153#endif
Gopichand Nakkala864d3552012-12-31 16:08:51 -080011154 pAdapter->device_mode = (type == NL80211_IFTYPE_STATION) ?
11155 WLAN_HDD_P2P_DEVICE : WLAN_HDD_P2P_CLIENT;
11156 }
11157 else
11158 {
11159 pAdapter->device_mode = (type == NL80211_IFTYPE_STATION) ?
Jeff Johnson295189b2012-06-20 16:38:30 -070011160 WLAN_HDD_INFRA_STATION: WLAN_HDD_P2P_CLIENT;
Gopichand Nakkala864d3552012-12-31 16:08:51 -080011161 }
Jeff Johnson295189b2012-06-20 16:38:30 -070011162 break;
Mahesh A Saptasagar36cdc802015-01-07 18:41:17 +053011163
Jeff Johnson295189b2012-06-20 16:38:30 -070011164 case NL80211_IFTYPE_ADHOC:
11165 hddLog(VOS_TRACE_LEVEL_INFO,
11166 "%s: setting interface Type to ADHOC", __func__);
11167 pRoamProfile->BSSType = eCSR_BSS_TYPE_START_IBSS;
11168 pRoamProfile->phyMode =
11169 hdd_cfg_xlate_to_csr_phy_mode(pConfig->dot11Mode);
Shailender Karmuchia734f332013-04-19 14:02:48 -070011170 pAdapter->device_mode = WLAN_HDD_IBSS;
Jeff Johnson295189b2012-06-20 16:38:30 -070011171 wdev->iftype = type;
Katya Nigam1fd24402015-02-16 14:52:19 +053011172 hdd_set_ibss_ops( pAdapter );
11173 hdd_ibss_init_tx_rx( pAdapter );
Nirav Shah7e3c8132015-06-22 23:51:42 +053011174
11175 status = hdd_sta_id_hash_attach(pAdapter);
11176 if (VOS_STATUS_SUCCESS != status) {
11177 hddLog(VOS_TRACE_LEVEL_ERROR,
11178 FL("Failed to initialize hash for IBSS"));
11179 }
Jeff Johnson295189b2012-06-20 16:38:30 -070011180 break;
11181
11182 case NL80211_IFTYPE_AP:
Jeff Johnson295189b2012-06-20 16:38:30 -070011183 case NL80211_IFTYPE_P2P_GO:
Jeff Johnson295189b2012-06-20 16:38:30 -070011184 {
11185 hddLog(VOS_TRACE_LEVEL_INFO_HIGH,
11186 "%s: setting interface Type to %s", __func__,
11187 (type == NL80211_IFTYPE_AP) ? "SoftAP" : "P2pGo");
11188
Gopichand Nakkalaf527dc62012-12-31 16:35:10 -080011189 //Cancel any remain on channel for GO mode
11190 if (NL80211_IFTYPE_P2P_GO == type)
11191 {
11192 wlan_hdd_cancel_existing_remain_on_channel(pAdapter);
11193 }
Mohit Khanna0f232092012-09-11 14:46:08 -070011194 if (NL80211_IFTYPE_AP == type)
11195 {
11196 /* As Loading WLAN Driver one interface being created for p2p device
11197 * address. This will take one HW STA and the max number of clients
11198 * that can connect to softAP will be reduced by one. so while changing
11199 * the interface type to NL80211_IFTYPE_AP (SoftAP) remove p2p0
11200 * interface as it is not required in SoftAP mode.
11201 */
11202
11203 // Get P2P Adapter
11204 pP2pAdapter = hdd_get_adapter(pHddCtx, WLAN_HDD_P2P_DEVICE);
11205
11206 if (pP2pAdapter)
11207 {
Agarwal Ashish3a38bd12014-06-12 15:16:52 +053011208 hdd_stop_adapter(pHddCtx, pP2pAdapter, VOS_TRUE);
c_hpothu002231a2015-02-05 14:58:51 +053011209 hdd_deinit_adapter(pHddCtx, pP2pAdapter, TRUE);
Mohit Khanna0f232092012-09-11 14:46:08 -070011210 hdd_close_adapter(pHddCtx, pP2pAdapter, VOS_TRUE);
11211 }
11212 }
Swaroop Goltia2e32212014-04-09 23:37:33 +053011213 //Disable IMPS & BMPS for SAP/GO
11214 if(VOS_STATUS_E_FAILURE ==
11215 hdd_disable_bmps_imps(pHddCtx, WLAN_HDD_P2P_GO))
11216 {
11217 //Fail to Exit BMPS
11218 VOS_ASSERT(0);
11219 }
Deepthi Gowri500fc472014-08-11 19:53:10 +053011220
11221 hdd_stop_adapter( pHddCtx, pAdapter, VOS_TRUE );
11222
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +053011223#ifdef FEATURE_WLAN_TDLS
Mohit Khanna0f232092012-09-11 14:46:08 -070011224
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +053011225 /* A Mutex Lock is introduced while changing the mode to
11226 * protect the concurrent access for the Adapters by TDLS
11227 * module.
11228 */
Rajesh Chauhana34c6e62014-03-25 16:37:58 +053011229 mutex_lock(&pHddCtx->tdls_lock);
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +053011230#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070011231 //De-init the adapter.
c_hpothu002231a2015-02-05 14:58:51 +053011232 hdd_deinit_adapter( pHddCtx, pAdapter, TRUE);
Jeff Johnson295189b2012-06-20 16:38:30 -070011233 memset(&pAdapter->sessionCtx, 0, sizeof(pAdapter->sessionCtx));
Jeff Johnson295189b2012-06-20 16:38:30 -070011234 pAdapter->device_mode = (type == NL80211_IFTYPE_AP) ?
11235 WLAN_HDD_SOFTAP : WLAN_HDD_P2P_GO;
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +053011236#ifdef FEATURE_WLAN_TDLS
11237 mutex_unlock(&pHddCtx->tdls_lock);
11238#endif
Madan Mohan Koyyalamudi3ff2a0b2012-10-15 14:33:46 -070011239 if ((WLAN_HDD_SOFTAP == pAdapter->device_mode) &&
11240 (pConfig->apRandomBssidEnabled))
11241 {
11242 /* To meet Android requirements create a randomized
11243 MAC address of the form 02:1A:11:Fx:xx:xx */
11244 get_random_bytes(&ndev->dev_addr[3], 3);
11245 ndev->dev_addr[0] = 0x02;
11246 ndev->dev_addr[1] = 0x1A;
11247 ndev->dev_addr[2] = 0x11;
11248 ndev->dev_addr[3] |= 0xF0;
11249 memcpy(pAdapter->macAddressCurrent.bytes, ndev->dev_addr,
11250 VOS_MAC_ADDR_SIZE);
Arif Hussain24bafea2013-11-15 15:10:03 -080011251 pr_info("wlan: Generated HotSpot BSSID " MAC_ADDRESS_STR"\n",
11252 MAC_ADDR_ARRAY(ndev->dev_addr));
Madan Mohan Koyyalamudi3ff2a0b2012-10-15 14:33:46 -070011253 }
11254
Jeff Johnson295189b2012-06-20 16:38:30 -070011255 hdd_set_ap_ops( pAdapter->dev );
11256
Kiet Lam10841362013-11-01 11:36:50 +053011257 /* This is for only SAP mode where users can
11258 * control country through ini.
11259 * P2P GO follows station country code
11260 * acquired during the STA scanning. */
11261 if((NL80211_IFTYPE_AP == type) &&
11262 (memcmp(pConfig->apCntryCode, CFG_AP_COUNTRY_CODE_DEFAULT, 3) != 0))
11263 {
11264 int status = 0;
11265 VOS_TRACE(VOS_MODULE_ID_HDD,VOS_TRACE_LEVEL_INFO,
11266 "%s: setting country code from INI ", __func__);
11267 init_completion(&pAdapter->change_country_code);
11268 status = (int)sme_ChangeCountryCode(pHddCtx->hHal,
11269 (void *)(tSmeChangeCountryCallback)
11270 wlan_hdd_change_country_code_cb,
11271 pConfig->apCntryCode, pAdapter,
11272 pHddCtx->pvosContext,
Abhishek Singha306a442013-11-07 18:39:01 +053011273 eSIR_FALSE,
11274 eSIR_TRUE);
Kiet Lam10841362013-11-01 11:36:50 +053011275 if (eHAL_STATUS_SUCCESS == status)
11276 {
11277 /* Wait for completion */
c_hpothu6ff1c3c2013-10-01 19:01:57 +053011278 ret = wait_for_completion_interruptible_timeout(
Kiet Lam10841362013-11-01 11:36:50 +053011279 &pAdapter->change_country_code,
11280 msecs_to_jiffies(WLAN_WAIT_TIME_COUNTRY));
c_hpothu6ff1c3c2013-10-01 19:01:57 +053011281 if (ret <= 0)
Kiet Lam10841362013-11-01 11:36:50 +053011282 {
11283 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
c_hpothu6ff1c3c2013-10-01 19:01:57 +053011284 FL("SME Timed out while setting country code %ld"),
11285 ret);
Yue Ma4f55ef32014-01-23 16:45:33 -080011286
11287 if (pHddCtx->isLogpInProgress)
11288 {
11289 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11290 "%s: LOGP in Progress. Ignore!!!", __func__);
11291 return -EAGAIN;
11292 }
Kiet Lam10841362013-11-01 11:36:50 +053011293 }
11294 }
11295 else
11296 {
11297 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -080011298 "%s: SME Change Country code failed",__func__);
Kiet Lam10841362013-11-01 11:36:50 +053011299 return -EINVAL;
11300 }
11301 }
Hanumanth Reddy Pothula15bc0fa2017-02-03 17:24:17 +053011302 status = hdd_init_ap_mode(pAdapter, false);
Jeff Johnson295189b2012-06-20 16:38:30 -070011303 if(status != VOS_STATUS_SUCCESS)
11304 {
11305 hddLog(VOS_TRACE_LEVEL_FATAL,
11306 "%s: Error initializing the ap mode", __func__);
11307 return -EINVAL;
11308 }
11309 hdd_set_conparam(1);
11310
Nirav Shah7e3c8132015-06-22 23:51:42 +053011311 status = hdd_sta_id_hash_attach(pAdapter);
11312 if (VOS_STATUS_SUCCESS != status)
11313 {
11314 hddLog(VOS_TRACE_LEVEL_ERROR,
11315 FL("Failed to initialize hash for AP"));
11316 return -EINVAL;
11317 }
11318
Jeff Johnson295189b2012-06-20 16:38:30 -070011319 /*interface type changed update in wiphy structure*/
11320 if(wdev)
11321 {
11322 wdev->iftype = type;
11323 pHddCtx->change_iface = type;
11324 }
11325 else
11326 {
11327 hddLog(VOS_TRACE_LEVEL_ERROR,
11328 "%s: ERROR !!!! Wireless dev is NULL", __func__);
11329 return -EINVAL;
11330 }
11331 goto done;
11332 }
11333
11334 default:
11335 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Unsupported interface Type",
11336 __func__);
11337 return -EOPNOTSUPP;
11338 }
11339 }
11340 else if ( (pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -070011341 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Jeff Johnson295189b2012-06-20 16:38:30 -070011342 )
11343 {
11344 switch(type)
11345 {
11346 case NL80211_IFTYPE_STATION:
Jeff Johnson295189b2012-06-20 16:38:30 -070011347 case NL80211_IFTYPE_P2P_CLIENT:
Jeff Johnson295189b2012-06-20 16:38:30 -070011348 case NL80211_IFTYPE_ADHOC:
Deepthi Gowri500fc472014-08-11 19:53:10 +053011349
11350 hdd_stop_adapter( pHddCtx, pAdapter, VOS_TRUE );
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +053011351#ifdef FEATURE_WLAN_TDLS
11352
11353 /* A Mutex Lock is introduced while changing the mode to
11354 * protect the concurrent access for the Adapters by TDLS
11355 * module.
11356 */
Rajesh Chauhana34c6e62014-03-25 16:37:58 +053011357 mutex_lock(&pHddCtx->tdls_lock);
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +053011358#endif
c_hpothu002231a2015-02-05 14:58:51 +053011359 hdd_deinit_adapter( pHddCtx, pAdapter, TRUE);
Jeff Johnson295189b2012-06-20 16:38:30 -070011360 wdev->iftype = type;
Gopichand Nakkalaf527dc62012-12-31 16:35:10 -080011361 //Check for sub-string p2p to confirm its a p2p interface
11362 if (NULL != strstr(ndev->name,"p2p"))
Gopichand Nakkala864d3552012-12-31 16:08:51 -080011363 {
11364 pAdapter->device_mode = (type == NL80211_IFTYPE_STATION) ?
11365 WLAN_HDD_P2P_DEVICE : WLAN_HDD_P2P_CLIENT;
11366 }
11367 else
11368 {
11369 pAdapter->device_mode = (type == NL80211_IFTYPE_STATION) ?
Jeff Johnson295189b2012-06-20 16:38:30 -070011370 WLAN_HDD_INFRA_STATION: WLAN_HDD_P2P_CLIENT;
Gopichand Nakkala864d3552012-12-31 16:08:51 -080011371 }
Agrawal Ashishcfe83282016-09-29 13:03:45 +053011372
11373 /* set con_mode to STA only when no SAP concurrency mode */
11374 if (!(hdd_get_concurrency_mode() & (VOS_SAP | VOS_P2P_GO)))
11375 hdd_set_conparam(0);
Jeff Johnson295189b2012-06-20 16:38:30 -070011376 pHddCtx->change_iface = type;
Jeff Johnson295189b2012-06-20 16:38:30 -070011377 memset(&pAdapter->sessionCtx, 0, sizeof(pAdapter->sessionCtx));
11378 hdd_set_station_ops( pAdapter->dev );
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +053011379#ifdef FEATURE_WLAN_TDLS
11380 mutex_unlock(&pHddCtx->tdls_lock);
11381#endif
Sunil Dutt66485cb2013-12-19 19:05:03 +053011382 status = hdd_init_station_mode( pAdapter );
Jeff Johnson295189b2012-06-20 16:38:30 -070011383 if( VOS_STATUS_SUCCESS != status )
11384 return -EOPNOTSUPP;
Jeff Johnsone7245742012-09-05 17:12:55 -070011385 /* In case of JB, for P2P-GO, only change interface will be called,
11386 * This is the right place to enable back bmps_imps()
11387 */
Gopichand Nakkalaa2fe5b02013-06-06 16:32:28 +053011388 if (pHddCtx->hdd_wlan_suspended)
11389 {
11390 hdd_set_pwrparams(pHddCtx);
11391 }
Jeff Johnsone7245742012-09-05 17:12:55 -070011392 hdd_enable_bmps_imps(pHddCtx);
Jeff Johnson295189b2012-06-20 16:38:30 -070011393 goto done;
11394 case NL80211_IFTYPE_AP:
Jeff Johnson295189b2012-06-20 16:38:30 -070011395 case NL80211_IFTYPE_P2P_GO:
Jeff Johnson295189b2012-06-20 16:38:30 -070011396 wdev->iftype = type;
Jeff Johnson295189b2012-06-20 16:38:30 -070011397 pAdapter->device_mode = (type == NL80211_IFTYPE_AP) ?
11398 WLAN_HDD_SOFTAP : WLAN_HDD_P2P_GO;
Jeff Johnson295189b2012-06-20 16:38:30 -070011399 goto done;
11400 default:
11401 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Unsupported interface Type",
11402 __func__);
11403 return -EOPNOTSUPP;
11404
11405 }
11406
11407 }
11408 else
11409 {
Sushant Kaushik8bc7df22014-04-09 17:55:29 +053011410 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: unsupported device mode(%s (%d))",
11411 __func__, hdd_device_modetoString(pAdapter->device_mode),
11412 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -070011413 return -EOPNOTSUPP;
11414 }
11415
11416
11417 if(pRoamProfile)
11418 {
11419 if ( LastBSSType != pRoamProfile->BSSType )
11420 {
11421 /*interface type changed update in wiphy structure*/
11422 wdev->iftype = type;
11423
11424 /*the BSS mode changed, We need to issue disconnect
11425 if connected or in IBSS disconnect state*/
11426 if ( hdd_connGetConnectedBssType(
11427 WLAN_HDD_GET_STATION_CTX_PTR(pAdapter), &connectedBssType ) ||
11428 ( eCSR_BSS_TYPE_START_IBSS == LastBSSType ) )
11429 {
11430 /*need to issue a disconnect to CSR.*/
11431 INIT_COMPLETION(pAdapter->disconnect_comp_var);
11432 if( eHAL_STATUS_SUCCESS ==
11433 sme_RoamDisconnect( WLAN_HDD_GET_HAL_CTX(pAdapter),
11434 pAdapter->sessionId,
11435 eCSR_DISCONNECT_REASON_UNSPECIFIED ) )
11436 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +053011437 ret = wait_for_completion_interruptible_timeout(
11438 &pAdapter->disconnect_comp_var,
11439 msecs_to_jiffies(WLAN_WAIT_TIME_DISCONNECT));
11440 if (ret <= 0)
11441 {
11442 hddLog(VOS_TRACE_LEVEL_ERROR,
11443 FL("wait on disconnect_comp_var failed %ld"), ret);
11444 }
Jeff Johnson295189b2012-06-20 16:38:30 -070011445 }
11446 }
11447 }
11448 }
11449
11450done:
11451 /*set bitmask based on updated value*/
11452 wlan_hdd_set_concurrency_mode(pHddCtx, pAdapter->device_mode);
Leo Chang6fe1f922013-06-07 19:21:24 -070011453
11454 /* Only STA mode support TM now
11455 * all other mode, TM feature should be disabled */
11456 if ( (pHddCtx->cfg_ini->thermalMitigationEnable) &&
11457 (~VOS_STA & pHddCtx->concurrency_mode) )
11458 {
11459 hddDevTmLevelChangedHandler(pHddCtx->parent_dev, 0);
11460 }
11461
Jeff Johnson295189b2012-06-20 16:38:30 -070011462#ifdef WLAN_BTAMP_FEATURE
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011463 if((NL80211_IFTYPE_STATION == type) && (pHddCtx->concurrency_mode <= 1) &&
Agarwal Ashish51325b52014-06-16 16:50:49 +053011464 (pHddCtx->no_of_open_sessions[WLAN_HDD_INFRA_STATION] <=1))
Jeff Johnson295189b2012-06-20 16:38:30 -070011465 {
11466 //we are ok to do AMP
11467 pHddCtx->isAmpAllowed = VOS_TRUE;
11468 }
11469#endif //WLAN_BTAMP_FEATURE
11470 EXIT();
11471 return 0;
11472}
11473
Mahesh A Saptasagar0e59c472014-04-14 19:17:41 +053011474/*
11475 * FUNCTION: wlan_hdd_cfg80211_change_iface
11476 * wrapper function to protect the actual implementation from SSR.
11477 */
11478int wlan_hdd_cfg80211_change_iface( struct wiphy *wiphy,
11479 struct net_device *ndev,
11480 enum nl80211_iftype type,
11481 u32 *flags,
11482 struct vif_params *params
11483 )
11484{
11485 int ret;
11486
11487 vos_ssr_protect(__func__);
11488 ret = __wlan_hdd_cfg80211_change_iface(wiphy, ndev, type, flags, params);
11489 vos_ssr_unprotect(__func__);
11490
11491 return ret;
11492}
11493
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011494#ifdef FEATURE_WLAN_TDLS
11495static int wlan_hdd_tdls_add_station(struct wiphy *wiphy,
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053011496 struct net_device *dev,
11497#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,18,0))
11498 const u8 *mac,
11499#else
11500 u8 *mac,
11501#endif
11502 bool update, tCsrStaParams *StaParams)
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011503{
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011504 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
Hoonki Lee5305c3a2013-04-29 23:28:59 -070011505 hddTdlsPeer_t *pTdlsPeer;
c_hpothu6ff1c3c2013-10-01 19:01:57 +053011506 long ret;
Rajesh Chauhana34c6e62014-03-25 16:37:58 +053011507 tANI_U16 numCurrTdlsPeers;
Chandrasekaran, Manishekar41b8e1f2015-03-10 13:30:28 +053011508 hdd_adapter_t *pAdapter;
Ganesh Kondabattinif065c1f2015-08-05 23:05:23 +053011509 VOS_STATUS status;
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011510
11511 ENTER();
11512
Chandrasekaran, Manishekar41b8e1f2015-03-10 13:30:28 +053011513 if (!dev) {
11514 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Dev pointer is NULL"));
11515 return -EINVAL;
11516 }
11517
11518 pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
11519 if (!pAdapter) {
11520 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD adapter is NULL"));
11521 return -EINVAL;
11522 }
11523
Gopichand Nakkala838be5d2013-04-10 22:41:51 +053011524 if (NULL == pHddCtx || NULL == pHddCtx->cfg_ini)
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011525 {
11526 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11527 "Invalid arguments");
11528 return -EINVAL;
11529 }
Hoonki Lee27511902013-03-14 18:19:06 -070011530
11531 if ((eTDLS_SUPPORT_NOT_ENABLED == pHddCtx->tdls_mode) ||
11532 (eTDLS_SUPPORT_DISABLED == pHddCtx->tdls_mode))
11533 {
Masti, Narayanraddi34e0e562015-03-05 18:23:03 +053011534 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Hoonki Lee27511902013-03-14 18:19:06 -070011535 "%s: TDLS mode is disabled OR not enabled in FW."
11536 MAC_ADDRESS_STR " Request declined.",
11537 __func__, MAC_ADDR_ARRAY(mac));
11538 return -ENOTSUPP;
11539 }
11540
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011541 if (pHddCtx->isLogpInProgress)
11542 {
11543 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11544 "%s:LOGP in Progress. Ignore!!!", __func__);
Atul Mittal115287b2014-07-08 13:26:33 +053011545 wlan_hdd_tdls_set_link_status(pAdapter,
11546 mac,
11547 eTDLS_LINK_IDLE,
11548 eTDLS_LINK_UNSPECIFIED);
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011549 return -EBUSY;
11550 }
11551
Masti, Narayanraddi6dbcdbb2015-05-13 10:28:06 +053011552 mutex_lock(&pHddCtx->tdls_lock);
Naresh Jayaram9c6f4462014-02-13 12:20:31 +053011553 pTdlsPeer = wlan_hdd_tdls_get_peer(pAdapter, mac);
Hoonki Lee5305c3a2013-04-29 23:28:59 -070011554
11555 if ( NULL == pTdlsPeer ) {
Masti, Narayanraddi34e0e562015-03-05 18:23:03 +053011556 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Hoonki Lee5305c3a2013-04-29 23:28:59 -070011557 "%s: " MAC_ADDRESS_STR " (update %d) not exist. return invalid",
11558 __func__, MAC_ADDR_ARRAY(mac), update);
Masti, Narayanraddi6dbcdbb2015-05-13 10:28:06 +053011559 mutex_unlock(&pHddCtx->tdls_lock);
Hoonki Lee5305c3a2013-04-29 23:28:59 -070011560 return -EINVAL;
Gopichand Nakkala34d1b062013-03-19 15:28:33 -070011561 }
Hoonki Lee5305c3a2013-04-29 23:28:59 -070011562
11563 /* in add station, we accept existing valid staId if there is */
11564 if ((0 == update) &&
11565 ((pTdlsPeer->link_status >= eTDLS_LINK_CONNECTING) ||
11566 (TDLS_STA_INDEX_VALID(pTdlsPeer->staId))))
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070011567 {
Masti, Narayanraddi34e0e562015-03-05 18:23:03 +053011568 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070011569 "%s: " MAC_ADDRESS_STR
Hoonki Lee5305c3a2013-04-29 23:28:59 -070011570 " link_status %d. staId %d. add station ignored.",
11571 __func__, MAC_ADDR_ARRAY(mac), pTdlsPeer->link_status, pTdlsPeer->staId);
Masti, Narayanraddi6b93b472015-09-04 17:48:11 +053011572 mutex_unlock(&pHddCtx->tdls_lock);
Hoonki Lee5305c3a2013-04-29 23:28:59 -070011573 return 0;
11574 }
11575 /* in change station, we accept only when staId is valid */
11576 if ((1 == update) &&
11577 ((pTdlsPeer->link_status > eTDLS_LINK_CONNECTING) ||
11578 (!TDLS_STA_INDEX_VALID(pTdlsPeer->staId))))
11579 {
Masti, Narayanraddi6b93b472015-09-04 17:48:11 +053011580 tANI_U16 staId = pTdlsPeer->staId;
Masti, Narayanraddi34e0e562015-03-05 18:23:03 +053011581 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Hoonki Lee5305c3a2013-04-29 23:28:59 -070011582 "%s: " MAC_ADDRESS_STR
11583 " link status %d. staId %d. change station %s.",
Masti, Narayanraddi6b93b472015-09-04 17:48:11 +053011584 __func__, MAC_ADDR_ARRAY(mac), pTdlsPeer->link_status, staId,
11585 (TDLS_STA_INDEX_VALID(staId)) ? "ignored" : "declined");
11586 mutex_unlock(&pHddCtx->tdls_lock);
11587 return (TDLS_STA_INDEX_VALID(staId)) ? 0 : -EPERM;
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070011588 }
Masti, Narayanraddi6b93b472015-09-04 17:48:11 +053011589 mutex_unlock(&pHddCtx->tdls_lock);
Gopichand Nakkala34d1b062013-03-19 15:28:33 -070011590
11591 /* when others are on-going, we want to change link_status to idle */
Pradeep Reddy POTTETI9db32f02015-01-29 15:22:54 +053011592 if (NULL != wlan_hdd_tdls_is_progress(pHddCtx, mac, TRUE, TRUE))
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011593 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070011594 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11595 "%s: " MAC_ADDRESS_STR
11596 " TDLS setup is ongoing. Request declined.",
11597 __func__, MAC_ADDR_ARRAY(mac));
Gopichand Nakkala05922802013-03-14 12:23:19 -070011598 goto error;
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011599 }
11600
11601 /* first to check if we reached to maximum supported TDLS peer.
11602 TODO: for now, return -EPERM looks working fine,
11603 but need to check if any other errno fit into this category.*/
Rajesh Chauhana34c6e62014-03-25 16:37:58 +053011604 numCurrTdlsPeers = wlan_hdd_tdlsConnectedPeers(pAdapter);
11605 if (HDD_MAX_NUM_TDLS_STA <= numCurrTdlsPeers)
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011606 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070011607 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11608 "%s: " MAC_ADDRESS_STR
Rajesh Chauhana34c6e62014-03-25 16:37:58 +053011609 " TDLS Max peer already connected. Request declined."
11610 " Num of peers (%d), Max allowed (%d).",
11611 __func__, MAC_ADDR_ARRAY(mac), numCurrTdlsPeers,
11612 HDD_MAX_NUM_TDLS_STA);
Gopichand Nakkala05922802013-03-14 12:23:19 -070011613 goto error;
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011614 }
11615 else
11616 {
11617 hddTdlsPeer_t *pTdlsPeer;
Masti, Narayanraddi6b93b472015-09-04 17:48:11 +053011618 mutex_lock(&pHddCtx->tdls_lock);
11619 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, mac, FALSE);
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070011620 if (pTdlsPeer && TDLS_IS_CONNECTED(pTdlsPeer))
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011621 {
Masti, Narayanraddi6b93b472015-09-04 17:48:11 +053011622 mutex_unlock(&pHddCtx->tdls_lock);
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070011623 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11624 "%s: " MAC_ADDRESS_STR " already connected. Request declined.",
11625 __func__, MAC_ADDR_ARRAY(mac));
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011626 return -EPERM;
11627 }
Masti, Narayanraddi6b93b472015-09-04 17:48:11 +053011628 mutex_unlock(&pHddCtx->tdls_lock);
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011629 }
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070011630 if (0 == update)
Atul Mittal115287b2014-07-08 13:26:33 +053011631 wlan_hdd_tdls_set_link_status(pAdapter,
11632 mac,
11633 eTDLS_LINK_CONNECTING,
11634 eTDLS_LINK_SUCCESS);
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011635
Jeff Johnsond75fe012013-04-06 10:53:06 -070011636 /* debug code */
Gopichand Nakkala838be5d2013-04-10 22:41:51 +053011637 if (NULL != StaParams)
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070011638 {
Masti, Narayanraddi34e0e562015-03-05 18:23:03 +053011639 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070011640 "%s: TDLS Peer Parameters.", __func__);
Hoonki Lee66b75f32013-04-16 18:30:07 -070011641 if(StaParams->htcap_present)
11642 {
Masti, Narayanraddi34e0e562015-03-05 18:23:03 +053011643 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Hoonki Lee66b75f32013-04-16 18:30:07 -070011644 "ht_capa->cap_info: %0x", StaParams->HTCap.capInfo);
Masti, Narayanraddi34e0e562015-03-05 18:23:03 +053011645 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Hoonki Lee66b75f32013-04-16 18:30:07 -070011646 "ht_capa->extended_capabilities: %0x",
11647 StaParams->HTCap.extendedHtCapInfo);
11648 }
Masti, Narayanraddi34e0e562015-03-05 18:23:03 +053011649 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070011650 "params->capability: %0x",StaParams->capability);
Masti, Narayanraddi34e0e562015-03-05 18:23:03 +053011651 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Jeff Johnson0299d0a2013-10-30 12:37:43 -070011652 "params->ext_capab_len: %0x",StaParams->extn_capability[0]);
Hoonki Lee66b75f32013-04-16 18:30:07 -070011653 if(StaParams->vhtcap_present)
11654 {
Masti, Narayanraddi34e0e562015-03-05 18:23:03 +053011655 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Hoonki Lee66b75f32013-04-16 18:30:07 -070011656 "rxMcsMap %x rxHighest %x txMcsMap %x txHighest %x",
11657 StaParams->VHTCap.suppMcs.rxMcsMap, StaParams->VHTCap.suppMcs.rxHighest,
11658 StaParams->VHTCap.suppMcs.txMcsMap, StaParams->VHTCap.suppMcs.txHighest);
11659 }
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070011660 {
11661 int i = 0;
Hoonki Lee5305c3a2013-04-29 23:28:59 -070011662 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO, "Supported rates:");
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070011663 for (i = 0; i < sizeof(StaParams->supported_rates); i++)
Masti, Narayanraddi34e0e562015-03-05 18:23:03 +053011664 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070011665 "[%d]: %x ", i, StaParams->supported_rates[i]);
11666 }
Jeff Johnsond75fe012013-04-06 10:53:06 -070011667 } /* end debug code */
Gopichand Nakkala838be5d2013-04-10 22:41:51 +053011668 else if ((1 == update) && (NULL == StaParams))
11669 {
11670 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11671 "%s : update is true, but staParams is NULL. Error!", __func__);
11672 return -EPERM;
11673 }
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011674
11675 INIT_COMPLETION(pAdapter->tdls_add_station_comp);
11676
11677 if (!update)
11678 {
Ganesh Kondabattinif065c1f2015-08-05 23:05:23 +053011679 /*Before adding sta make sure that device exited from BMPS*/
11680 if (TRUE == sme_IsPmcBmps(WLAN_HDD_GET_HAL_CTX(pAdapter)))
11681 {
11682 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
11683 "%s: Adding tdls peer sta. Disable BMPS", __func__);
11684 status = hdd_disable_bmps_imps(pHddCtx, WLAN_HDD_INFRA_STATION);
11685 if (status != VOS_STATUS_SUCCESS) {
11686 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Failed to set BMPS/IMPS"));
11687 }
11688 }
11689
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053011690 ret = sme_AddTdlsPeerSta(WLAN_HDD_GET_HAL_CTX(pAdapter),
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011691 pAdapter->sessionId, mac);
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053011692 if (ret != eHAL_STATUS_SUCCESS) {
Ganesh Kondabattinif065c1f2015-08-05 23:05:23 +053011693 hddLog(VOS_TRACE_LEVEL_ERROR,
11694 FL("Failed to add TDLS peer STA. Enable Bmps"));
11695 wlan_hdd_tdls_check_bmps(pAdapter);
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053011696 return -EPERM;
11697 }
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011698 }
11699 else
11700 {
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053011701 ret = sme_ChangeTdlsPeerSta(WLAN_HDD_GET_HAL_CTX(pAdapter),
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011702 pAdapter->sessionId, mac, StaParams);
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053011703 if (ret != eHAL_STATUS_SUCCESS) {
11704 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Failed to change TDLS peer STA params"));
11705 return -EPERM;
11706 }
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011707 }
11708
c_hpothu6ff1c3c2013-10-01 19:01:57 +053011709 ret = wait_for_completion_interruptible_timeout(&pAdapter->tdls_add_station_comp,
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011710 msecs_to_jiffies(WAIT_TIME_TDLS_ADD_STA));
11711
Masti, Narayanraddi255d8c52016-01-07 16:26:06 +053011712 mutex_lock(&pHddCtx->tdls_lock);
11713 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, mac, FALSE);
11714
Masti, Narayanraddi07262462016-01-19 12:40:06 +053011715 if ((pTdlsPeer != NULL) &&
11716 (pTdlsPeer->link_status == eTDLS_LINK_TEARING))
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011717 {
Masti, Narayanraddi07262462016-01-19 12:40:06 +053011718 hddLog(VOS_TRACE_LEVEL_ERROR,
11719 FL("peer link status %u"), pTdlsPeer->link_status);
11720 mutex_unlock(&pHddCtx->tdls_lock);
11721 goto error;
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011722 }
Masti, Narayanraddi255d8c52016-01-07 16:26:06 +053011723 mutex_unlock(&pHddCtx->tdls_lock);
c_hpothu6ff1c3c2013-10-01 19:01:57 +053011724
Masti, Narayanraddi07262462016-01-19 12:40:06 +053011725 if (ret <= 0)
11726 {
11727 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11728 "%s: timeout waiting for tdls add station indication %ld",
11729 __func__, ret);
11730 goto error;
11731 }
11732
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011733 if ( eHAL_STATUS_SUCCESS != pAdapter->tdlsAddStaStatus)
11734 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070011735 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011736 "%s: Add Station is unsucessful", __func__);
Gopichand Nakkala34d1b062013-03-19 15:28:33 -070011737 return -EPERM;
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011738 }
11739
11740 return 0;
Gopichand Nakkala05922802013-03-14 12:23:19 -070011741
11742error:
Atul Mittal115287b2014-07-08 13:26:33 +053011743 wlan_hdd_tdls_set_link_status(pAdapter,
11744 mac,
11745 eTDLS_LINK_IDLE,
11746 eTDLS_LINK_UNSPECIFIED);
Gopichand Nakkala05922802013-03-14 12:23:19 -070011747 return -EPERM;
11748
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011749}
11750#endif
11751
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053011752static int __wlan_hdd_change_station(struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -070011753 struct net_device *dev,
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053011754#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,18,0))
11755 const u8 *mac,
11756#else
Jeff Johnson295189b2012-06-20 16:38:30 -070011757 u8 *mac,
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053011758#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070011759 struct station_parameters *params)
11760{
11761 VOS_STATUS status = VOS_STATUS_SUCCESS;
Mahesh A Saptasagar74088392015-02-05 17:22:09 +053011762 hdd_adapter_t *pAdapter;
Gopichand Nakkala29149562013-05-10 21:43:41 +053011763 hdd_context_t *pHddCtx;
11764 hdd_station_ctx_t *pHddStaCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -070011765 v_MACADDR_t STAMacAddress;
Masti, Narayanraddic80e2bf2015-01-27 16:39:00 +053011766 int ret = 0;
Gopichand Nakkalab0856222013-03-12 22:39:05 -070011767#ifdef FEATURE_WLAN_TDLS
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011768 tCsrStaParams StaParams = {0};
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011769 tANI_U8 isBufSta = 0;
Naresh Jayaram3180aa42014-02-12 21:47:26 +053011770 tANI_U8 isOffChannelSupported = 0;
Masti, Narayanraddi3d799022015-12-24 18:22:36 +053011771 tANI_U8 isQosWmmSta = FALSE;
Gopichand Nakkalab0856222013-03-12 22:39:05 -070011772#endif
Jeff Johnsone7245742012-09-05 17:12:55 -070011773
Mahesh A Saptasagar74088392015-02-05 17:22:09 +053011774 ENTER();
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053011775
Mahesh A Saptasagar74088392015-02-05 17:22:09 +053011776 pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Gopichand Nakkala29149562013-05-10 21:43:41 +053011777 if ((NULL == pAdapter))
11778 {
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053011779 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
Gopichand Nakkala29149562013-05-10 21:43:41 +053011780 "invalid adapter ");
11781 return -EINVAL;
11782 }
11783
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053011784 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
11785 TRACE_CODE_HDD_CHANGE_STATION,
11786 pAdapter->sessionId, params->listen_interval));
Gopichand Nakkala29149562013-05-10 21:43:41 +053011787 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Gopichand Nakkala29149562013-05-10 21:43:41 +053011788
Masti, Narayanraddic80e2bf2015-01-27 16:39:00 +053011789 ret = wlan_hdd_validate_context(pHddCtx);
11790 if (0 != ret)
Gopichand Nakkala29149562013-05-10 21:43:41 +053011791 {
Masti, Narayanraddic80e2bf2015-01-27 16:39:00 +053011792 return ret;
Gopichand Nakkala29149562013-05-10 21:43:41 +053011793 }
11794
Masti, Narayanraddic80e2bf2015-01-27 16:39:00 +053011795 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
11796
11797 if (NULL == pHddStaCtx)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070011798 {
Masti, Narayanraddic80e2bf2015-01-27 16:39:00 +053011799 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
11800 "invalid HDD station context");
11801 return -EINVAL;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070011802 }
Jeff Johnson295189b2012-06-20 16:38:30 -070011803 vos_mem_copy(STAMacAddress.bytes, mac, sizeof(v_MACADDR_t));
11804
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011805 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
11806 || (pAdapter->device_mode == WLAN_HDD_P2P_GO))
Jeff Johnson295189b2012-06-20 16:38:30 -070011807 {
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011808 if (params->sta_flags_set & BIT(NL80211_STA_FLAG_AUTHORIZED))
Jeff Johnson295189b2012-06-20 16:38:30 -070011809 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011810 status = hdd_softap_change_STA_state( pAdapter, &STAMacAddress,
Jeff Johnson295189b2012-06-20 16:38:30 -070011811 WLANTL_STA_AUTHENTICATED);
11812
Gopichand Nakkala29149562013-05-10 21:43:41 +053011813 if (status != VOS_STATUS_SUCCESS)
11814 {
11815 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
11816 "%s: Not able to change TL state to AUTHENTICATED", __func__);
11817 return -EINVAL;
11818 }
Jeff Johnson295189b2012-06-20 16:38:30 -070011819 }
11820 }
Hoonki Leea6d49be2013-04-05 09:43:25 -070011821 else if ((pAdapter->device_mode == WLAN_HDD_INFRA_STATION)
11822 || (pAdapter->device_mode == WLAN_HDD_P2P_CLIENT)) {
Gopichand Nakkala29149562013-05-10 21:43:41 +053011823#ifdef FEATURE_WLAN_TDLS
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070011824 if (params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
11825 StaParams.capability = params->capability;
11826 StaParams.uapsd_queues = params->uapsd_queues;
11827 StaParams.max_sp = params->max_sp;
11828
Naresh Jayaram3180aa42014-02-12 21:47:26 +053011829 /* Convert (first channel , number of channels) tuple to
11830 * the total list of channels. This goes with the assumption
11831 * that if the first channel is < 14, then the next channels
11832 * are an incremental of 1 else an incremental of 4 till the number
11833 * of channels.
11834 */
11835 if (0 != params->supported_channels_len) {
11836 int i = 0,j = 0,k = 0, no_of_channels = 0 ;
11837 for ( i = 0 ; i < params->supported_channels_len ; i+=2)
11838 {
11839 int wifi_chan_index;
11840 StaParams.supported_channels[j] = params->supported_channels[i];
11841 wifi_chan_index =
11842 ((StaParams.supported_channels[j] <= HDD_CHANNEL_14 ) ? 1 : 4 );
11843 no_of_channels = params->supported_channels[i+1];
11844 for(k=1; k <= no_of_channels; k++)
11845 {
11846 StaParams.supported_channels[j+1] =
11847 StaParams.supported_channels[j] + wifi_chan_index;
11848 j+=1;
11849 }
11850 }
11851 StaParams.supported_channels_len = j;
11852 }
11853 vos_mem_copy(StaParams.supported_oper_classes,
11854 params->supported_oper_classes,
11855 params->supported_oper_classes_len);
11856 StaParams.supported_oper_classes_len =
11857 params->supported_oper_classes_len;
11858
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070011859 if (0 != params->ext_capab_len)
11860 vos_mem_copy(StaParams.extn_capability, params->ext_capab,
11861 sizeof(StaParams.extn_capability));
11862
11863 if (NULL != params->ht_capa)
Hoonki Lee66b75f32013-04-16 18:30:07 -070011864 {
11865 StaParams.htcap_present = 1;
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070011866 vos_mem_copy(&StaParams.HTCap, params->ht_capa, sizeof(tSirHTCap));
Hoonki Lee66b75f32013-04-16 18:30:07 -070011867 }
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070011868
11869 StaParams.supported_rates_len = params->supported_rates_len;
11870
11871 /* Note : The Maximum sizeof supported_rates sent by the Supplicant is 32.
11872 * The supported_rates array , for all the structures propogating till Add Sta
11873 * to the firmware has to be modified , if the supplicant (ieee80211) is
11874 * modified to send more rates.
11875 */
11876
11877 /* To avoid Data Currption , set to max length to SIR_MAC_MAX_SUPP_RATES
11878 */
11879 if (StaParams.supported_rates_len > SIR_MAC_MAX_SUPP_RATES)
11880 StaParams.supported_rates_len = SIR_MAC_MAX_SUPP_RATES;
11881
11882 if (0 != StaParams.supported_rates_len) {
11883 int i = 0;
11884 vos_mem_copy(StaParams.supported_rates, params->supported_rates,
11885 StaParams.supported_rates_len);
Hoonki Lee5305c3a2013-04-29 23:28:59 -070011886 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070011887 "Supported Rates with Length %d", StaParams.supported_rates_len);
11888 for (i=0; i < StaParams.supported_rates_len; i++)
Hoonki Lee5305c3a2013-04-29 23:28:59 -070011889 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070011890 "[%d]: %0x", i, StaParams.supported_rates[i]);
11891 }
11892
11893 if (NULL != params->vht_capa)
Hoonki Lee66b75f32013-04-16 18:30:07 -070011894 {
11895 StaParams.vhtcap_present = 1;
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070011896 vos_mem_copy(&StaParams.VHTCap, params->vht_capa, sizeof(tSirVHTCap));
Hoonki Lee66b75f32013-04-16 18:30:07 -070011897 }
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070011898
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011899 if (0 != params->ext_capab_len ) {
11900 /*Define A Macro : TODO Sunil*/
11901 if ((1<<4) & StaParams.extn_capability[3]) {
11902 isBufSta = 1;
11903 }
Naresh Jayaram3180aa42014-02-12 21:47:26 +053011904 /* TDLS Channel Switching Support */
11905 if ((1<<6) & StaParams.extn_capability[3]) {
11906 isOffChannelSupported = 1;
11907 }
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011908 }
Masti, Narayanraddi3d799022015-12-24 18:22:36 +053011909
11910 if (pHddCtx->cfg_ini->fEnableTDLSWmmMode &&
Nitesh Shah48df4c02016-08-12 16:27:33 +053011911 (params->ht_capa || params->vht_capa ||
11912 (params->sta_flags_set & BIT(NL80211_STA_FLAG_WME))))
Masti, Narayanraddi3d799022015-12-24 18:22:36 +053011913 /* TDLS Peer is WME/QoS capable */
11914 isQosWmmSta = TRUE;
Masti, Narayanraddi3d799022015-12-24 18:22:36 +053011915
11916 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
11917 "%s: TDLS Peer is QOS capable isQosWmmSta= %d HTcapPresent= %d",
11918 __func__, isQosWmmSta, StaParams.htcap_present);
11919
Naresh Jayaram3180aa42014-02-12 21:47:26 +053011920 status = wlan_hdd_tdls_set_peer_caps( pAdapter, mac,
11921 &StaParams, isBufSta,
Masti, Narayanraddi3d799022015-12-24 18:22:36 +053011922 isOffChannelSupported,
11923 isQosWmmSta);
Naresh Jayaram3180aa42014-02-12 21:47:26 +053011924
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +053011925 if (VOS_STATUS_SUCCESS != status) {
11926 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11927 "%s: wlan_hdd_tdls_set_peer_caps failed!", __func__);
11928 return -EINVAL;
11929 }
Gopichand Nakkala681989c2013-03-06 22:27:48 -080011930 status = wlan_hdd_tdls_add_station(wiphy, dev, mac, 1, &StaParams);
11931
11932 if (VOS_STATUS_SUCCESS != status) {
11933 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11934 "%s: sme_ChangeTdlsPeerSta failed!", __func__);
11935 return -EINVAL;
11936 }
11937 }
Gopichand Nakkalab0856222013-03-12 22:39:05 -070011938#endif
Gopichand Nakkala6239acd2013-06-14 14:48:00 +053011939 }
Jeff Johnsone7245742012-09-05 17:12:55 -070011940 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -070011941 return status;
11942}
11943
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053011944#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,16,0))
11945static int wlan_hdd_change_station(struct wiphy *wiphy,
11946 struct net_device *dev,
11947 const u8 *mac,
11948 struct station_parameters *params)
11949#else
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053011950static int wlan_hdd_change_station(struct wiphy *wiphy,
11951 struct net_device *dev,
11952 u8 *mac,
11953 struct station_parameters *params)
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053011954#endif
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053011955{
11956 int ret;
11957
11958 vos_ssr_protect(__func__);
11959 ret = __wlan_hdd_change_station(wiphy, dev, mac, params);
11960 vos_ssr_unprotect(__func__);
11961
11962 return ret;
11963}
11964
Jeff Johnson295189b2012-06-20 16:38:30 -070011965/*
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +053011966 * FUNCTION: __wlan_hdd_cfg80211_add_key
Jeff Johnson295189b2012-06-20 16:38:30 -070011967 * This function is used to initialize the key information
11968 */
11969#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +053011970static int __wlan_hdd_cfg80211_add_key( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -070011971 struct net_device *ndev,
11972 u8 key_index, bool pairwise,
11973 const u8 *mac_addr,
11974 struct key_params *params
11975 )
11976#else
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +053011977static int __wlan_hdd_cfg80211_add_key( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -070011978 struct net_device *ndev,
11979 u8 key_index, const u8 *mac_addr,
11980 struct key_params *params
11981 )
11982#endif
11983{
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070011984 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( ndev );
Jeff Johnson295189b2012-06-20 16:38:30 -070011985 tCsrRoamSetKey setKey;
11986 u8 groupmacaddr[WNI_CFG_BSSID_LEN] = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF};
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011987 int status;
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070011988 v_U32_t roamId= 0xFF;
11989 v_CONTEXT_t pVosContext = (WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
Jeff Johnson295189b2012-06-20 16:38:30 -070011990 hdd_hostapd_state_t *pHostapdState;
11991 VOS_STATUS vos_status;
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070011992 eHalStatus halStatus;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011993 hdd_context_t *pHddCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -070011994
11995 ENTER();
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053011996
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053011997 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
11998 TRACE_CODE_HDD_CFG80211_ADD_KEY,
11999 pAdapter->sessionId, params->key_len));
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053012000 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
12001 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053012002 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012003 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053012004 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012005 }
12006
Sushant Kaushik8bc7df22014-04-09 17:55:29 +053012007 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s (%d)",
12008 __func__, hdd_device_modetoString(pAdapter->device_mode),
12009 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -070012010
12011 if (CSR_MAX_NUM_KEY <= key_index)
12012 {
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070012013 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid key index %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -070012014 key_index);
12015
12016 return -EINVAL;
12017 }
12018
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070012019 if (CSR_MAX_KEY_LEN < params->key_len)
12020 {
12021 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid key length %d", __func__,
12022 params->key_len);
12023
12024 return -EINVAL;
12025 }
12026
12027 hddLog(VOS_TRACE_LEVEL_INFO,
12028 "%s: called with key index = %d & key length %d",
12029 __func__, key_index, params->key_len);
Jeff Johnson295189b2012-06-20 16:38:30 -070012030
12031 /*extract key idx, key len and key*/
12032 vos_mem_zero(&setKey,sizeof(tCsrRoamSetKey));
12033 setKey.keyId = key_index;
12034 setKey.keyLength = params->key_len;
12035 vos_mem_copy(&setKey.Key[0],params->key, params->key_len);
12036
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070012037 switch (params->cipher)
Jeff Johnson295189b2012-06-20 16:38:30 -070012038 {
12039 case WLAN_CIPHER_SUITE_WEP40:
12040 setKey.encType = eCSR_ENCRYPT_TYPE_WEP40_STATICKEY;
12041 break;
12042
12043 case WLAN_CIPHER_SUITE_WEP104:
12044 setKey.encType = eCSR_ENCRYPT_TYPE_WEP104_STATICKEY;
12045 break;
12046
12047 case WLAN_CIPHER_SUITE_TKIP:
12048 {
12049 u8 *pKey = &setKey.Key[0];
12050 setKey.encType = eCSR_ENCRYPT_TYPE_TKIP;
12051
12052 vos_mem_zero(pKey, CSR_MAX_KEY_LEN);
12053
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070012054 /*Supplicant sends the 32bytes key in this order
Jeff Johnson295189b2012-06-20 16:38:30 -070012055
12056 |--------------|----------|----------|
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070012057 | Tk1 |TX-MIC | RX Mic |
Jeff Johnson295189b2012-06-20 16:38:30 -070012058 |--------------|----------|----------|
12059 <---16bytes---><--8bytes--><--8bytes-->
12060
12061 */
12062 /*Sme expects the 32 bytes key to be in the below order
12063
12064 |--------------|----------|----------|
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070012065 | Tk1 |RX-MIC | TX Mic |
Jeff Johnson295189b2012-06-20 16:38:30 -070012066 |--------------|----------|----------|
12067 <---16bytes---><--8bytes--><--8bytes-->
12068 */
12069 /* Copy the Temporal Key 1 (TK1) */
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070012070 vos_mem_copy(pKey, params->key, 16);
Jeff Johnson295189b2012-06-20 16:38:30 -070012071
12072 /*Copy the rx mic first*/
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070012073 vos_mem_copy(&pKey[16], &params->key[24], 8);
Jeff Johnson295189b2012-06-20 16:38:30 -070012074
12075 /*Copy the tx mic */
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070012076 vos_mem_copy(&pKey[24], &params->key[16], 8);
Jeff Johnson295189b2012-06-20 16:38:30 -070012077
12078
12079 break;
12080 }
12081
12082 case WLAN_CIPHER_SUITE_CCMP:
12083 setKey.encType = eCSR_ENCRYPT_TYPE_AES;
12084 break;
12085
12086#ifdef FEATURE_WLAN_WAPI
12087 case WLAN_CIPHER_SUITE_SMS4:
12088 {
12089 vos_mem_zero(&setKey,sizeof(tCsrRoamSetKey));
12090 wlan_hdd_cfg80211_set_key_wapi(pAdapter, key_index, mac_addr,
12091 params->key, params->key_len);
12092 return 0;
12093 }
12094#endif
Chet Lanctot186b5732013-03-18 10:26:30 -070012095
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -080012096#ifdef FEATURE_WLAN_ESE
Jeff Johnson295189b2012-06-20 16:38:30 -070012097 case WLAN_CIPHER_SUITE_KRK:
12098 setKey.encType = eCSR_ENCRYPT_TYPE_KRK;
12099 break;
12100#endif
Chet Lanctot186b5732013-03-18 10:26:30 -070012101
12102#ifdef WLAN_FEATURE_11W
12103 case WLAN_CIPHER_SUITE_AES_CMAC:
12104 setKey.encType = eCSR_ENCRYPT_TYPE_AES_CMAC;
Chet Lanctot3b5158a2013-03-31 16:45:21 -070012105 break;
Chet Lanctot186b5732013-03-18 10:26:30 -070012106#endif
12107
Jeff Johnson295189b2012-06-20 16:38:30 -070012108 default:
Jeff Johnson0299d0a2013-10-30 12:37:43 -070012109 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: unsupported cipher type %u",
Jeff Johnson295189b2012-06-20 16:38:30 -070012110 __func__, params->cipher);
Vinay Krishna Eranna6f22c1f2014-10-13 16:03:06 +053012111 status = -EOPNOTSUPP;
12112 goto end;
Jeff Johnson295189b2012-06-20 16:38:30 -070012113 }
12114
12115 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: encryption type %d",
12116 __func__, setKey.encType);
12117
Shailender Karmuchi642e9812013-05-30 14:34:49 -070012118 if (
Jeff Johnson295189b2012-06-20 16:38:30 -070012119#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
12120 (!pairwise)
12121#else
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070012122 (!mac_addr || is_broadcast_ether_addr(mac_addr))
Jeff Johnson295189b2012-06-20 16:38:30 -070012123#endif
Shailender Karmuchi642e9812013-05-30 14:34:49 -070012124 )
12125 {
12126 /* set group key*/
12127 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
12128 "%s- %d: setting Broadcast key",
12129 __func__, __LINE__);
12130 setKey.keyDirection = eSIR_RX_ONLY;
12131 vos_mem_copy(setKey.peerMac,groupmacaddr,WNI_CFG_BSSID_LEN);
12132 }
12133 else
12134 {
12135 /* set pairwise key*/
12136 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
12137 "%s- %d: setting pairwise key",
12138 __func__, __LINE__);
12139 setKey.keyDirection = eSIR_TX_RX;
12140 vos_mem_copy(setKey.peerMac, mac_addr,WNI_CFG_BSSID_LEN);
12141 }
12142 if ((WLAN_HDD_IBSS == pAdapter->device_mode) && !pairwise)
12143 {
12144 setKey.keyDirection = eSIR_TX_RX;
12145 /*Set the group key*/
12146 status = sme_RoamSetKey( WLAN_HDD_GET_HAL_CTX(pAdapter),
12147 pAdapter->sessionId, &setKey, &roamId );
Jeff Johnson295189b2012-06-20 16:38:30 -070012148
Shailender Karmuchi642e9812013-05-30 14:34:49 -070012149 if ( 0 != status )
12150 {
12151 hddLog(VOS_TRACE_LEVEL_ERROR,
12152 "%s: sme_RoamSetKey failed, returned %d", __func__, status);
Vinay Krishna Eranna6f22c1f2014-10-13 16:03:06 +053012153 status = -EINVAL;
12154 goto end;
Shailender Karmuchi642e9812013-05-30 14:34:49 -070012155 }
12156 /*Save the keys here and call sme_RoamSetKey for setting
12157 the PTK after peer joins the IBSS network*/
12158 vos_mem_copy(&pAdapter->sessionCtx.station.ibss_enc_key,
12159 &setKey, sizeof(tCsrRoamSetKey));
Vinay Krishna Eranna6f22c1f2014-10-13 16:03:06 +053012160 goto end;
Shailender Karmuchi642e9812013-05-30 14:34:49 -070012161 }
Gopichand Nakkala29149562013-05-10 21:43:41 +053012162 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP) ||
12163 (pAdapter->device_mode == WLAN_HDD_P2P_GO))
12164 {
Jeff Johnson295189b2012-06-20 16:38:30 -070012165 pHostapdState = WLAN_HDD_GET_HOSTAP_STATE_PTR(pAdapter);
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070012166 if( pHostapdState->bssState == BSS_START )
12167 {
Nirav Shah4b53d4b2015-05-08 05:35:00 -070012168 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
12169 vos_status = wlan_hdd_check_ula_done(pAdapter);
12170
12171 if ( vos_status != VOS_STATUS_SUCCESS )
12172 {
12173 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
12174 "[%4d] wlan_hdd_check_ula_done returned ERROR status= %d",
12175 __LINE__, vos_status );
12176
12177 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_NONE;
12178
12179 status = -EINVAL;
12180 goto end;
12181 }
12182
Jeff Johnson295189b2012-06-20 16:38:30 -070012183 status = WLANSAP_SetKeySta( pVosContext, &setKey);
12184
12185 if ( status != eHAL_STATUS_SUCCESS )
12186 {
12187 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
12188 "[%4d] WLANSAP_SetKeySta returned ERROR status= %d",
12189 __LINE__, status );
Vinay Krishna Eranna6f22c1f2014-10-13 16:03:06 +053012190 status = -EINVAL;
12191 goto end;
Jeff Johnson295189b2012-06-20 16:38:30 -070012192 }
12193 }
12194
12195 /* Saving WEP keys */
12196 else if( eCSR_ENCRYPT_TYPE_WEP40_STATICKEY == setKey.encType ||
12197 eCSR_ENCRYPT_TYPE_WEP104_STATICKEY == setKey.encType )
12198 {
12199 //Save the wep key in ap context. Issue setkey after the BSS is started.
12200 hdd_ap_ctx_t *pAPCtx = WLAN_HDD_GET_AP_CTX_PTR(pAdapter);
12201 vos_mem_copy(&pAPCtx->wepKey[key_index], &setKey, sizeof(tCsrRoamSetKey));
12202 }
12203 else
12204 {
12205 //Save the key in ap context. Issue setkey after the BSS is started.
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070012206 hdd_ap_ctx_t *pAPCtx = WLAN_HDD_GET_AP_CTX_PTR(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -070012207 vos_mem_copy(&pAPCtx->groupKey, &setKey, sizeof(tCsrRoamSetKey));
12208 }
12209 }
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070012210 else if ( (pAdapter->device_mode == WLAN_HDD_INFRA_STATION) ||
12211 (pAdapter->device_mode == WLAN_HDD_P2P_CLIENT) )
Jeff Johnson295189b2012-06-20 16:38:30 -070012212 {
12213 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
12214 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
12215
Gopichand Nakkala3d295922013-05-07 16:19:14 +053012216#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
12217 if (!pairwise)
12218#else
12219 if (!mac_addr || is_broadcast_ether_addr(mac_addr))
12220#endif
12221 {
12222 /* set group key*/
12223 if (pHddStaCtx->roam_info.deferKeyComplete)
12224 {
12225 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
12226 "%s- %d: Perform Set key Complete",
12227 __func__, __LINE__);
12228 hdd_PerformRoamSetKeyComplete(pAdapter);
12229 }
12230 }
12231
Jeff Johnson295189b2012-06-20 16:38:30 -070012232 pWextState->roamProfile.Keys.KeyLength[key_index] = (u8)params->key_len;
12233
Venkata Prathyusha Kuntupalliee2ce712013-01-17 14:09:24 -080012234 pWextState->roamProfile.Keys.defaultIndex = key_index;
12235
12236
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070012237 vos_mem_copy(&pWextState->roamProfile.Keys.KeyMaterial[key_index][0],
Jeff Johnson295189b2012-06-20 16:38:30 -070012238 params->key, params->key_len);
12239
Gopichand Nakkala3d295922013-05-07 16:19:14 +053012240
Jeff Johnson295189b2012-06-20 16:38:30 -070012241 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_SETTING_KEY;
12242
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012243 hddLog(VOS_TRACE_LEVEL_INFO_MED,
Jeff Johnson295189b2012-06-20 16:38:30 -070012244 "%s: set key for peerMac %2x:%2x:%2x:%2x:%2x:%2x, direction %d",
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012245 __func__, setKey.peerMac[0], setKey.peerMac[1],
12246 setKey.peerMac[2], setKey.peerMac[3],
12247 setKey.peerMac[4], setKey.peerMac[5],
Jeff Johnson295189b2012-06-20 16:38:30 -070012248 setKey.keyDirection);
12249
Nirav Shah4b53d4b2015-05-08 05:35:00 -070012250 vos_status = wlan_hdd_check_ula_done(pAdapter);
Nirav Shah4f765af2015-01-21 19:51:30 +053012251
Nirav Shah4b53d4b2015-05-08 05:35:00 -070012252 if ( vos_status != VOS_STATUS_SUCCESS )
12253 {
12254 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -070012255 "[%4d] wlan_hdd_check_ula_done returned ERROR status= %d",
12256 __LINE__, vos_status );
12257
Nirav Shah4b53d4b2015-05-08 05:35:00 -070012258 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_NONE;
Jeff Johnson295189b2012-06-20 16:38:30 -070012259
Nirav Shah4b53d4b2015-05-08 05:35:00 -070012260 status = -EINVAL;
12261 goto end;
Jeff Johnson295189b2012-06-20 16:38:30 -070012262
12263 }
12264
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070012265#ifdef WLAN_FEATURE_VOWIFI_11R
Gopichand Nakkala3d295922013-05-07 16:19:14 +053012266 /* The supplicant may attempt to set the PTK once pre-authentication
12267 is done. Save the key in the UMAC and include it in the ADD BSS
12268 request */
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070012269 halStatus = sme_FTUpdateKey( WLAN_HDD_GET_HAL_CTX(pAdapter), &setKey);
Gopichand Nakkala3d295922013-05-07 16:19:14 +053012270 if ( halStatus == eHAL_STATUS_FT_PREAUTH_KEY_SUCCESS )
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070012271 {
Gopichand Nakkala3d295922013-05-07 16:19:14 +053012272 hddLog(VOS_TRACE_LEVEL_INFO_MED,
12273 "%s: Update PreAuth Key success", __func__);
Vinay Krishna Eranna6f22c1f2014-10-13 16:03:06 +053012274 status = 0;
12275 goto end;
Gopichand Nakkala3d295922013-05-07 16:19:14 +053012276 }
12277 else if ( halStatus == eHAL_STATUS_FT_PREAUTH_KEY_FAILED )
12278 {
12279 hddLog(VOS_TRACE_LEVEL_ERROR,
12280 "%s: Update PreAuth Key failed", __func__);
Vinay Krishna Eranna6f22c1f2014-10-13 16:03:06 +053012281 status = -EINVAL;
12282 goto end;
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070012283 }
12284#endif /* WLAN_FEATURE_VOWIFI_11R */
Jeff Johnson295189b2012-06-20 16:38:30 -070012285
12286 /* issue set key request to SME*/
12287 status = sme_RoamSetKey( WLAN_HDD_GET_HAL_CTX(pAdapter),
12288 pAdapter->sessionId, &setKey, &roamId );
12289
12290 if ( 0 != status )
12291 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012292 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -070012293 "%s: sme_RoamSetKey failed, returned %d", __func__, status);
12294 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_NONE;
Vinay Krishna Eranna6f22c1f2014-10-13 16:03:06 +053012295 status = -EINVAL;
12296 goto end;
Jeff Johnson295189b2012-06-20 16:38:30 -070012297 }
12298
12299
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012300 /* in case of IBSS as there was no information available about WEP keys during
12301 * IBSS join, group key intialized with NULL key, so re-initialize group key
Jeff Johnson295189b2012-06-20 16:38:30 -070012302 * with correct value*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012303 if ( (eCSR_BSS_TYPE_START_IBSS == pWextState->roamProfile.BSSType) &&
12304 !( ( IW_AUTH_KEY_MGMT_802_1X
12305 == (pWextState->authKeyMgmt & IW_AUTH_KEY_MGMT_802_1X))
Jeff Johnson295189b2012-06-20 16:38:30 -070012306 && (eCSR_AUTH_TYPE_OPEN_SYSTEM == pHddStaCtx->conn_info.authType)
12307 )
12308 &&
12309 ( (WLAN_CIPHER_SUITE_WEP40 == params->cipher)
12310 || (WLAN_CIPHER_SUITE_WEP104 == params->cipher)
12311 )
12312 )
12313 {
12314 setKey.keyDirection = eSIR_RX_ONLY;
12315 vos_mem_copy(setKey.peerMac,groupmacaddr,WNI_CFG_BSSID_LEN);
12316
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012317 hddLog(VOS_TRACE_LEVEL_INFO_MED,
Jeff Johnson295189b2012-06-20 16:38:30 -070012318 "%s: set key peerMac %2x:%2x:%2x:%2x:%2x:%2x, direction %d",
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012319 __func__, setKey.peerMac[0], setKey.peerMac[1],
12320 setKey.peerMac[2], setKey.peerMac[3],
12321 setKey.peerMac[4], setKey.peerMac[5],
Jeff Johnson295189b2012-06-20 16:38:30 -070012322 setKey.keyDirection);
12323
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012324 status = sme_RoamSetKey( WLAN_HDD_GET_HAL_CTX(pAdapter),
Jeff Johnson295189b2012-06-20 16:38:30 -070012325 pAdapter->sessionId, &setKey, &roamId );
12326
12327 if ( 0 != status )
12328 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012329 hddLog(VOS_TRACE_LEVEL_ERROR,
12330 "%s: sme_RoamSetKey failed for group key (IBSS), returned %d",
Jeff Johnson295189b2012-06-20 16:38:30 -070012331 __func__, status);
12332 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_NONE;
Vinay Krishna Eranna6f22c1f2014-10-13 16:03:06 +053012333 status = -EINVAL;
12334 goto end;
Jeff Johnson295189b2012-06-20 16:38:30 -070012335 }
12336 }
12337 }
12338
Vinay Krishna Eranna6f22c1f2014-10-13 16:03:06 +053012339end:
12340 /* Need to clear any trace of key value in the memory.
12341 * Thus zero out the memory even though it is local
12342 * variable.
12343 */
12344 vos_mem_zero(&setKey, sizeof(setKey));
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053012345 EXIT();
Vinay Krishna Eranna6f22c1f2014-10-13 16:03:06 +053012346 return status;
Jeff Johnson295189b2012-06-20 16:38:30 -070012347}
12348
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +053012349#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
12350static int wlan_hdd_cfg80211_add_key( struct wiphy *wiphy,
12351 struct net_device *ndev,
12352 u8 key_index, bool pairwise,
12353 const u8 *mac_addr,
12354 struct key_params *params
12355 )
12356#else
12357static int wlan_hdd_cfg80211_add_key( struct wiphy *wiphy,
12358 struct net_device *ndev,
12359 u8 key_index, const u8 *mac_addr,
12360 struct key_params *params
12361 )
12362#endif
12363{
12364 int ret;
12365 vos_ssr_protect(__func__);
12366#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
12367 ret = __wlan_hdd_cfg80211_add_key(wiphy, ndev, key_index, pairwise,
12368 mac_addr, params);
12369#else
12370 ret = __wlan_hdd_cfg80211_add_key(wiphy, ndev, key_index, mac_addr,
12371 params);
12372#endif
12373 vos_ssr_unprotect(__func__);
12374
12375 return ret;
12376}
12377
Jeff Johnson295189b2012-06-20 16:38:30 -070012378/*
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +053012379 * FUNCTION: __wlan_hdd_cfg80211_get_key
Jeff Johnson295189b2012-06-20 16:38:30 -070012380 * This function is used to get the key information
12381 */
12382#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +053012383static int __wlan_hdd_cfg80211_get_key(
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012384 struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -070012385 struct net_device *ndev,
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012386 u8 key_index, bool pairwise,
Jeff Johnson295189b2012-06-20 16:38:30 -070012387 const u8 *mac_addr, void *cookie,
12388 void (*callback)(void *cookie, struct key_params*)
12389 )
12390#else
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +053012391static int __wlan_hdd_cfg80211_get_key(
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012392 struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -070012393 struct net_device *ndev,
12394 u8 key_index, const u8 *mac_addr, void *cookie,
12395 void (*callback)(void *cookie, struct key_params*)
12396 )
12397#endif
12398{
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012399 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( ndev );
Masti, Narayanraddic80e2bf2015-01-27 16:39:00 +053012400 hdd_wext_state_t *pWextState = NULL;
12401 tCsrRoamProfile *pRoamProfile = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -070012402 struct key_params params;
Masti, Narayanraddic80e2bf2015-01-27 16:39:00 +053012403 hdd_context_t *pHddCtx;
12404 int ret = 0;
Jeff Johnson295189b2012-06-20 16:38:30 -070012405
12406 ENTER();
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012407
Masti, Narayanraddic80e2bf2015-01-27 16:39:00 +053012408 if (NULL == pAdapter)
12409 {
12410 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
12411 "%s: HDD adapter is Null", __func__);
12412 return -ENODEV;
12413 }
12414
12415 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
12416 ret = wlan_hdd_validate_context(pHddCtx);
12417 if (0 != ret)
12418 {
Masti, Narayanraddic80e2bf2015-01-27 16:39:00 +053012419 return ret;
12420 }
12421
12422 pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
12423 pRoamProfile = &(pWextState->roamProfile);
12424
Sushant Kaushik8bc7df22014-04-09 17:55:29 +053012425 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s (%d)",
12426 __func__, hdd_device_modetoString(pAdapter->device_mode),
12427 pAdapter->device_mode);
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053012428
Jeff Johnson295189b2012-06-20 16:38:30 -070012429 memset(&params, 0, sizeof(params));
12430
12431 if (CSR_MAX_NUM_KEY <= key_index)
12432 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +053012433 hddLog(VOS_TRACE_LEVEL_ERROR, FL("invalid key index %d"), key_index);
Jeff Johnson295189b2012-06-20 16:38:30 -070012434 return -EINVAL;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012435 }
Jeff Johnson295189b2012-06-20 16:38:30 -070012436
12437 switch(pRoamProfile->EncryptionType.encryptionType[0])
12438 {
12439 case eCSR_ENCRYPT_TYPE_NONE:
12440 params.cipher = IW_AUTH_CIPHER_NONE;
12441 break;
12442
12443 case eCSR_ENCRYPT_TYPE_WEP40_STATICKEY:
12444 case eCSR_ENCRYPT_TYPE_WEP40:
12445 params.cipher = WLAN_CIPHER_SUITE_WEP40;
12446 break;
12447
12448 case eCSR_ENCRYPT_TYPE_WEP104_STATICKEY:
12449 case eCSR_ENCRYPT_TYPE_WEP104:
12450 params.cipher = WLAN_CIPHER_SUITE_WEP104;
12451 break;
12452
12453 case eCSR_ENCRYPT_TYPE_TKIP:
12454 params.cipher = WLAN_CIPHER_SUITE_TKIP;
12455 break;
12456
12457 case eCSR_ENCRYPT_TYPE_AES:
12458 params.cipher = WLAN_CIPHER_SUITE_AES_CMAC;
12459 break;
12460
12461 default:
12462 params.cipher = IW_AUTH_CIPHER_NONE;
12463 break;
12464 }
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053012465
c_hpothuaaf19692014-05-17 17:01:48 +053012466 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
12467 TRACE_CODE_HDD_CFG80211_GET_KEY,
12468 pAdapter->sessionId, params.cipher));
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053012469
Jeff Johnson295189b2012-06-20 16:38:30 -070012470 params.key_len = pRoamProfile->Keys.KeyLength[key_index];
12471 params.seq_len = 0;
12472 params.seq = NULL;
12473 params.key = &pRoamProfile->Keys.KeyMaterial[key_index][0];
12474 callback(cookie, &params);
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053012475 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -070012476 return 0;
12477}
12478
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +053012479#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
12480static int wlan_hdd_cfg80211_get_key(
12481 struct wiphy *wiphy,
12482 struct net_device *ndev,
12483 u8 key_index, bool pairwise,
12484 const u8 *mac_addr, void *cookie,
12485 void (*callback)(void *cookie, struct key_params*)
12486 )
12487#else
12488static int wlan_hdd_cfg80211_get_key(
12489 struct wiphy *wiphy,
12490 struct net_device *ndev,
12491 u8 key_index, const u8 *mac_addr, void *cookie,
12492 void (*callback)(void *cookie, struct key_params*)
12493 )
12494#endif
12495{
12496 int ret;
12497
12498 vos_ssr_protect(__func__);
12499#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
12500 ret = __wlan_hdd_cfg80211_get_key(wiphy, ndev, key_index, pairwise,
12501 mac_addr, cookie, callback);
12502#else
12503 ret = __wlan_hdd_cfg80211_get_key(wiphy, ndev, key_index, mac_addr,
12504 callback);
12505#endif
12506 vos_ssr_unprotect(__func__);
12507
12508 return ret;
12509}
12510
Jeff Johnson295189b2012-06-20 16:38:30 -070012511/*
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053012512 * FUNCTION: __wlan_hdd_cfg80211_del_key
Jeff Johnson295189b2012-06-20 16:38:30 -070012513 * This function is used to delete the key information
12514 */
12515#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053012516static int __wlan_hdd_cfg80211_del_key( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -070012517 struct net_device *ndev,
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012518 u8 key_index,
12519 bool pairwise,
Jeff Johnson295189b2012-06-20 16:38:30 -070012520 const u8 *mac_addr
12521 )
12522#else
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053012523static int __wlan_hdd_cfg80211_del_key( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -070012524 struct net_device *ndev,
12525 u8 key_index,
12526 const u8 *mac_addr
12527 )
12528#endif
12529{
12530 int status = 0;
12531
12532 //This code needs to be revisited. There is sme_removeKey API, we should
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012533 //plan to use that. After the change to use correct index in setkey,
Jeff Johnson295189b2012-06-20 16:38:30 -070012534 //it is observed that this is invalidating peer
12535 //key index whenever re-key is done. This is affecting data link.
12536 //It should be ok to ignore del_key.
12537#if 0
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012538 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( ndev );
12539 v_CONTEXT_t pVosContext = (WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
Jeff Johnson295189b2012-06-20 16:38:30 -070012540 u8 groupmacaddr[WNI_CFG_BSSID_LEN] = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF};
12541 tCsrRoamSetKey setKey;
12542 v_U32_t roamId= 0xFF;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012543
Jeff Johnson295189b2012-06-20 16:38:30 -070012544 ENTER();
12545
12546 hddLog(VOS_TRACE_LEVEL_INFO_HIGH, "%s: device_mode = %d\n",
12547 __func__,pAdapter->device_mode);
12548
12549 if (CSR_MAX_NUM_KEY <= key_index)
12550 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012551 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid key index %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -070012552 key_index);
12553
12554 return -EINVAL;
12555 }
12556
12557 vos_mem_zero(&setKey,sizeof(tCsrRoamSetKey));
12558 setKey.keyId = key_index;
12559
12560 if (mac_addr)
12561 vos_mem_copy(setKey.peerMac, mac_addr,WNI_CFG_BSSID_LEN);
12562 else
12563 vos_mem_copy(setKey.peerMac, groupmacaddr, WNI_CFG_BSSID_LEN);
12564
12565 setKey.encType = eCSR_ENCRYPT_TYPE_NONE;
12566
12567 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -070012568 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012569 )
12570 {
12571
12572 hdd_hostapd_state_t *pHostapdState =
Jeff Johnson295189b2012-06-20 16:38:30 -070012573 WLAN_HDD_GET_HOSTAP_STATE_PTR(pAdapter);
12574 if( pHostapdState->bssState == BSS_START)
12575 {
12576 status = WLANSAP_SetKeySta( pVosContext, &setKey);
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012577
Jeff Johnson295189b2012-06-20 16:38:30 -070012578 if ( status != eHAL_STATUS_SUCCESS )
12579 {
12580 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
12581 "[%4d] WLANSAP_SetKeySta returned ERROR status= %d",
12582 __LINE__, status );
12583 }
12584 }
12585 }
12586 else if ( (pAdapter->device_mode == WLAN_HDD_INFRA_STATION)
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012587 || (pAdapter->device_mode == WLAN_HDD_P2P_CLIENT)
Jeff Johnson295189b2012-06-20 16:38:30 -070012588 )
12589 {
12590 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
12591
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012592 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_SETTING_KEY;
12593
12594 hddLog(VOS_TRACE_LEVEL_INFO_MED,
Jeff Johnson295189b2012-06-20 16:38:30 -070012595 "%s: delete key for peerMac %2x:%2x:%2x:%2x:%2x:%2x",
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012596 __func__, setKey.peerMac[0], setKey.peerMac[1],
12597 setKey.peerMac[2], setKey.peerMac[3],
Jeff Johnson295189b2012-06-20 16:38:30 -070012598 setKey.peerMac[4], setKey.peerMac[5]);
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012599 if(pAdapter->sessionCtx.station.conn_info.connState ==
12600 eConnectionState_Associated)
Jeff Johnson295189b2012-06-20 16:38:30 -070012601 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012602 status = sme_RoamSetKey( WLAN_HDD_GET_HAL_CTX(pAdapter),
Jeff Johnson295189b2012-06-20 16:38:30 -070012603 pAdapter->sessionId, &setKey, &roamId );
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012604
Jeff Johnson295189b2012-06-20 16:38:30 -070012605 if ( 0 != status )
12606 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012607 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -070012608 "%s: sme_RoamSetKey failure, returned %d",
12609 __func__, status);
12610 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_NONE;
12611 return -EINVAL;
12612 }
12613 }
12614 }
12615#endif
Jeff Johnsone7245742012-09-05 17:12:55 -070012616 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -070012617 return status;
12618}
12619
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053012620#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
12621static int wlan_hdd_cfg80211_del_key( struct wiphy *wiphy,
12622 struct net_device *ndev,
12623 u8 key_index,
12624 bool pairwise,
12625 const u8 *mac_addr
12626 )
12627#else
12628static int wlan_hdd_cfg80211_del_key( struct wiphy *wiphy,
12629 struct net_device *ndev,
12630 u8 key_index,
12631 const u8 *mac_addr
12632 )
12633#endif
12634{
12635 int ret;
12636
12637 vos_ssr_protect(__func__);
12638#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
12639 ret = __wlan_hdd_cfg80211_del_key(wiphy, ndev, key_index, pairwise,
12640 mac_addr);
12641#else
12642 ret = __wlan_hdd_cfg80211_del_key(wiphy, ndev, key_index, mac_addr);
12643#endif
12644 vos_ssr_unprotect(__func__);
12645
12646 return ret;
12647}
12648
Jeff Johnson295189b2012-06-20 16:38:30 -070012649/*
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +053012650 * FUNCTION: __wlan_hdd_cfg80211_set_default_key
Jeff Johnson295189b2012-06-20 16:38:30 -070012651 * This function is used to set the default tx key index
12652 */
12653#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +053012654static int __wlan_hdd_cfg80211_set_default_key( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -070012655 struct net_device *ndev,
12656 u8 key_index,
12657 bool unicast, bool multicast)
12658#else
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +053012659static int __wlan_hdd_cfg80211_set_default_key( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -070012660 struct net_device *ndev,
12661 u8 key_index)
12662#endif
12663{
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012664 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( ndev );
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053012665 int status;
Gopichand Nakkala29149562013-05-10 21:43:41 +053012666 hdd_wext_state_t *pWextState;
12667 hdd_station_ctx_t *pHddStaCtx;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053012668 hdd_context_t *pHddCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -070012669
12670 ENTER();
12671
Gopichand Nakkala29149562013-05-10 21:43:41 +053012672 if ((NULL == pAdapter))
12673 {
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053012674 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
Gopichand Nakkala29149562013-05-10 21:43:41 +053012675 "invalid adapter");
12676 return -EINVAL;
12677 }
12678
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053012679 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
12680 TRACE_CODE_HDD_CFG80211_SET_DEFAULT_KEY,
12681 pAdapter->sessionId, key_index));
12682
Gopichand Nakkala29149562013-05-10 21:43:41 +053012683 pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
12684 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
12685
12686 if ((NULL == pWextState) || (NULL == pHddStaCtx))
12687 {
12688 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
12689 "invalid Wext state or HDD context");
12690 return -EINVAL;
12691 }
12692
Arif Hussain6d2a3322013-11-17 19:50:10 -080012693 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %d key_index = %d",
Jeff Johnson295189b2012-06-20 16:38:30 -070012694 __func__,pAdapter->device_mode, key_index);
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012695
Jeff Johnson295189b2012-06-20 16:38:30 -070012696 if (CSR_MAX_NUM_KEY <= key_index)
12697 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012698 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid key index %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -070012699 key_index);
12700
12701 return -EINVAL;
12702 }
12703
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053012704 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
12705 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053012706 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012707 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053012708 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012709 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012710
Jeff Johnson295189b2012-06-20 16:38:30 -070012711 if ((pAdapter->device_mode == WLAN_HDD_INFRA_STATION)
Jeff Johnson295189b2012-06-20 16:38:30 -070012712 || (pAdapter->device_mode == WLAN_HDD_P2P_CLIENT)
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012713 )
Jeff Johnson295189b2012-06-20 16:38:30 -070012714 {
Gopichand Nakkala29149562013-05-10 21:43:41 +053012715 if ( (eCSR_ENCRYPT_TYPE_TKIP !=
Arif Hussain6943f522013-11-04 20:10:10 -080012716 pHddStaCtx->conn_info.ucEncryptionType) &&
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012717 (eCSR_ENCRYPT_TYPE_AES !=
Arif Hussain6943f522013-11-04 20:10:10 -080012718 pHddStaCtx->conn_info.ucEncryptionType)
Jeff Johnson295189b2012-06-20 16:38:30 -070012719 )
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012720 {
12721 /* if default key index is not same as previous one,
Jeff Johnson295189b2012-06-20 16:38:30 -070012722 * then update the default key index */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012723
Jeff Johnson295189b2012-06-20 16:38:30 -070012724 tCsrRoamSetKey setKey;
12725 v_U32_t roamId= 0xFF;
12726 tCsrKeys *Keys = &pWextState->roamProfile.Keys;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012727
12728 hddLog(VOS_TRACE_LEVEL_INFO_HIGH, "%s: default tx key index %d",
Jeff Johnson295189b2012-06-20 16:38:30 -070012729 __func__, key_index);
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012730
Jeff Johnson295189b2012-06-20 16:38:30 -070012731 Keys->defaultIndex = (u8)key_index;
12732 vos_mem_zero(&setKey,sizeof(tCsrRoamSetKey));
12733 setKey.keyId = key_index;
12734 setKey.keyLength = Keys->KeyLength[key_index];
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012735
12736 vos_mem_copy(&setKey.Key[0],
12737 &Keys->KeyMaterial[key_index][0],
Jeff Johnson295189b2012-06-20 16:38:30 -070012738 Keys->KeyLength[key_index]);
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012739
Gopichand Nakkala29149562013-05-10 21:43:41 +053012740 setKey.keyDirection = eSIR_TX_RX;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012741
12742 vos_mem_copy(setKey.peerMac,
Jeff Johnson295189b2012-06-20 16:38:30 -070012743 &pHddStaCtx->conn_info.bssId[0],
12744 WNI_CFG_BSSID_LEN);
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012745
Gopichand Nakkala29149562013-05-10 21:43:41 +053012746 if (Keys->KeyLength[key_index] == CSR_WEP40_KEY_LEN &&
12747 pWextState->roamProfile.EncryptionType.encryptionType[0] ==
12748 eCSR_ENCRYPT_TYPE_WEP104)
12749 {
12750 /*In the case of dynamic wep supplicant hardcodes DWEP type to eCSR_ENCRYPT_TYPE_WEP104
12751 even though ap is configured for WEP-40 encryption. In this canse the key length
12752 is 5 but the encryption type is 104 hence checking the key langht(5) and encryption
12753 type(104) and switching encryption type to 40*/
12754 pWextState->roamProfile.EncryptionType.encryptionType[0] =
12755 eCSR_ENCRYPT_TYPE_WEP40;
12756 pWextState->roamProfile.mcEncryptionType.encryptionType[0] =
12757 eCSR_ENCRYPT_TYPE_WEP40;
12758 }
12759
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012760 setKey.encType =
Jeff Johnson295189b2012-06-20 16:38:30 -070012761 pWextState->roamProfile.EncryptionType.encryptionType[0];
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012762
Jeff Johnson295189b2012-06-20 16:38:30 -070012763 /* issue set key request */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012764 status = sme_RoamSetKey( WLAN_HDD_GET_HAL_CTX(pAdapter),
Jeff Johnson295189b2012-06-20 16:38:30 -070012765 pAdapter->sessionId, &setKey, &roamId );
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012766
Jeff Johnson295189b2012-06-20 16:38:30 -070012767 if ( 0 != status )
12768 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012769 hddLog(VOS_TRACE_LEVEL_ERROR,
12770 "%s: sme_RoamSetKey failed, returned %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -070012771 status);
12772 return -EINVAL;
12773 }
12774 }
12775 }
12776
12777 /* In SoftAp mode setting key direction for default mode */
12778 else if ( WLAN_HDD_SOFTAP == pAdapter->device_mode )
12779 {
12780 if ( (eCSR_ENCRYPT_TYPE_TKIP !=
12781 pWextState->roamProfile.EncryptionType.encryptionType[0]) &&
12782 (eCSR_ENCRYPT_TYPE_AES !=
12783 pWextState->roamProfile.EncryptionType.encryptionType[0])
12784 )
12785 {
12786 /* Saving key direction for default key index to TX default */
12787 hdd_ap_ctx_t *pAPCtx = WLAN_HDD_GET_AP_CTX_PTR(pAdapter);
12788 pAPCtx->wepKey[key_index].keyDirection = eSIR_TX_DEFAULT;
12789 }
12790 }
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053012791 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -070012792 return status;
12793}
12794
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +053012795#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
12796static int wlan_hdd_cfg80211_set_default_key( struct wiphy *wiphy,
12797 struct net_device *ndev,
12798 u8 key_index,
12799 bool unicast, bool multicast)
12800#else
12801static int wlan_hdd_cfg80211_set_default_key( struct wiphy *wiphy,
12802 struct net_device *ndev,
12803 u8 key_index)
12804#endif
12805{
12806 int ret;
12807 vos_ssr_protect(__func__);
12808#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
12809 ret = __wlan_hdd_cfg80211_set_default_key(wiphy, ndev, key_index, unicast,
12810 multicast);
12811#else
12812 ret = __wlan_hdd_cfg80211_set_default_key(wiphy, ndev, key_index);
12813#endif
12814 vos_ssr_unprotect(__func__);
12815
12816 return ret;
12817}
12818
Jeff Johnson295189b2012-06-20 16:38:30 -070012819/*
12820 * FUNCTION: wlan_hdd_cfg80211_inform_bss
12821 * This function is used to inform the BSS details to nl80211 interface.
12822 */
12823static struct cfg80211_bss* wlan_hdd_cfg80211_inform_bss(
12824 hdd_adapter_t *pAdapter, tCsrRoamConnectedProfile *roamProfile)
12825{
12826 struct net_device *dev = pAdapter->dev;
12827 struct wireless_dev *wdev = dev->ieee80211_ptr;
12828 struct wiphy *wiphy = wdev->wiphy;
12829 tSirBssDescription *pBssDesc = roamProfile->pBssDesc;
12830 int chan_no;
12831 int ie_length;
12832 const char *ie;
12833 unsigned int freq;
12834 struct ieee80211_channel *chan;
12835 int rssi = 0;
12836 struct cfg80211_bss *bss = NULL;
12837
Jeff Johnson295189b2012-06-20 16:38:30 -070012838 if( NULL == pBssDesc )
12839 {
Arif Hussain6d2a3322013-11-17 19:50:10 -080012840 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: pBssDesc is NULL", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -070012841 return bss;
12842 }
12843
12844 chan_no = pBssDesc->channelId;
12845 ie_length = GET_IE_LEN_IN_BSS_DESC( pBssDesc->length );
12846 ie = ((ie_length != 0) ? (const char *)&pBssDesc->ieFields: NULL);
12847
12848 if( NULL == ie )
12849 {
Arif Hussain6d2a3322013-11-17 19:50:10 -080012850 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: IE of BSS descriptor is NULL", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -070012851 return bss;
12852 }
12853
12854#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,38))
12855 if (chan_no <= ARRAY_SIZE(hdd_channels_2_4_GHZ))
12856 {
12857 freq = ieee80211_channel_to_frequency(chan_no, IEEE80211_BAND_2GHZ);
12858 }
12859 else
12860 {
12861 freq = ieee80211_channel_to_frequency(chan_no, IEEE80211_BAND_5GHZ);
12862 }
12863#else
12864 freq = ieee80211_channel_to_frequency(chan_no);
12865#endif
12866
12867 chan = __ieee80211_get_channel(wiphy, freq);
12868
Santhosh Kumar Padmaa45fdb12014-04-15 15:54:38 +053012869 if (!chan) {
12870 hddLog(VOS_TRACE_LEVEL_ERROR, "%s chan pointer is NULL", __func__);
12871 return NULL;
12872 }
12873
Abhishek Singhaee43942014-06-16 18:55:47 +053012874 rssi = (VOS_MIN ((pBssDesc->rssi + pBssDesc->sinr), 0))*100;
Jeff Johnson295189b2012-06-20 16:38:30 -070012875
Anand N Sunkad9f80b742015-07-30 20:05:51 +053012876 return cfg80211_inform_bss(wiphy, chan,
12877#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,18,0))
12878 CFG80211_BSS_FTYPE_UNKNOWN,
12879#endif
12880 pBssDesc->bssId,
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012881 le64_to_cpu(*(__le64 *)pBssDesc->timeStamp),
Jeff Johnson295189b2012-06-20 16:38:30 -070012882 pBssDesc->capabilityInfo,
12883 pBssDesc->beaconInterval, ie, ie_length,
Abhishek Singhaee43942014-06-16 18:55:47 +053012884 rssi, GFP_KERNEL );
Jeff Johnson295189b2012-06-20 16:38:30 -070012885}
12886
Abhishek Singh72c2f4e2016-07-22 11:25:43 +053012887/*
12888 * wlan_hdd_cfg80211_update_bss_list :to inform nl80211
12889 * interface that BSS might have been lost.
12890 * @pAdapter: adaptor
12891 * @bssid: bssid which might have been lost
12892 *
12893 * Return: bss which is unlinked from kernel cache
12894 */
12895struct cfg80211_bss* wlan_hdd_cfg80211_update_bss_list(
12896 hdd_adapter_t *pAdapter, tSirMacAddr bssid)
12897{
12898 struct net_device *dev = pAdapter->dev;
12899 struct wireless_dev *wdev = dev->ieee80211_ptr;
12900 struct wiphy *wiphy = wdev->wiphy;
12901 struct cfg80211_bss *bss = NULL;
12902
Abhishek Singh5a597e62016-12-05 15:16:30 +053012903 bss = hdd_get_bss_entry(wiphy,
12904 NULL, bssid,
12905 NULL, 0);
Abhishek Singh72c2f4e2016-07-22 11:25:43 +053012906 if (bss == NULL) {
12907 hddLog(LOGE, FL("BSS not present"));
12908 } else {
12909 hddLog(LOG1, FL("cfg80211_unlink_bss called for BSSID "
12910 MAC_ADDRESS_STR), MAC_ADDR_ARRAY(bssid));
12911 cfg80211_unlink_bss(wiphy, bss);
12912 }
12913 return bss;
12914}
Jeff Johnson295189b2012-06-20 16:38:30 -070012915
12916
12917/*
12918 * FUNCTION: wlan_hdd_cfg80211_inform_bss_frame
12919 * This function is used to inform the BSS details to nl80211 interface.
12920 */
12921struct cfg80211_bss*
12922wlan_hdd_cfg80211_inform_bss_frame( hdd_adapter_t *pAdapter,
12923 tSirBssDescription *bss_desc
12924 )
12925{
12926 /*
12927 cfg80211_inform_bss() is not updating ie field of bss entry, if entry
12928 already exists in bss data base of cfg80211 for that particular BSS ID.
12929 Using cfg80211_inform_bss_frame to update the bss entry instead of
12930 cfg80211_inform_bss, But this call expects mgmt packet as input. As of
12931 now there is no possibility to get the mgmt(probe response) frame from PE,
12932 converting bss_desc to ieee80211_mgmt(probe response) and passing to
12933 cfg80211_inform_bss_frame.
12934 */
12935 struct net_device *dev = pAdapter->dev;
12936 struct wireless_dev *wdev = dev->ieee80211_ptr;
12937 struct wiphy *wiphy = wdev->wiphy;
12938 int chan_no = bss_desc->channelId;
Madan Mohan Koyyalamudi86f629e2012-11-09 16:27:29 -080012939#ifdef WLAN_ENABLE_AGEIE_ON_SCAN_RESULTS
12940 qcom_ie_age *qie_age = NULL;
12941 int ie_length = GET_IE_LEN_IN_BSS_DESC( bss_desc->length ) + sizeof(qcom_ie_age);
12942#else
Jeff Johnson295189b2012-06-20 16:38:30 -070012943 int ie_length = GET_IE_LEN_IN_BSS_DESC( bss_desc->length );
Madan Mohan Koyyalamudi86f629e2012-11-09 16:27:29 -080012944#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070012945 const char *ie =
12946 ((ie_length != 0) ? (const char *)&bss_desc->ieFields: NULL);
12947 unsigned int freq;
12948 struct ieee80211_channel *chan;
Abhishek Singh1e2bfa32014-01-02 15:44:15 +053012949 struct ieee80211_mgmt *mgmt = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -070012950 struct cfg80211_bss *bss_status = NULL;
12951 size_t frame_len = sizeof (struct ieee80211_mgmt) + ie_length;
12952 int rssi = 0;
Wilson Yangf80a0542013-10-07 13:02:37 -070012953 hdd_context_t *pHddCtx;
12954 int status;
Jeff Johnsone7245742012-09-05 17:12:55 -070012955#ifdef WLAN_OPEN_SOURCE
12956 struct timespec ts;
12957#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070012958
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053012959
Wilson Yangf80a0542013-10-07 13:02:37 -070012960 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
12961 status = wlan_hdd_validate_context(pHddCtx);
Wilson Yangf80a0542013-10-07 13:02:37 -070012962 if (0 != status)
12963 {
Madan Mohan Koyyalamudi2e5c9142012-11-02 13:17:48 -070012964 return NULL;
Wilson Yangf80a0542013-10-07 13:02:37 -070012965 }
12966
Abhishek Singh1e2bfa32014-01-02 15:44:15 +053012967 mgmt = kzalloc((sizeof (struct ieee80211_mgmt) + ie_length), GFP_KERNEL);
Wilson Yangf80a0542013-10-07 13:02:37 -070012968 if (!mgmt)
12969 {
12970 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
12971 "%s: memory allocation failed ", __func__);
12972 return NULL;
12973 }
Madan Mohan Koyyalamudi2e5c9142012-11-02 13:17:48 -070012974
Jeff Johnson295189b2012-06-20 16:38:30 -070012975 memcpy(mgmt->bssid, bss_desc->bssId, ETH_ALEN);
Jeff Johnsone7245742012-09-05 17:12:55 -070012976
12977#ifdef WLAN_OPEN_SOURCE
12978 /* Android does not want the timestamp from the frame.
12979 Instead it wants a monotonic increasing value */
12980 get_monotonic_boottime(&ts);
12981 mgmt->u.probe_resp.timestamp =
12982 ((u64)ts.tv_sec * 1000000) + (ts.tv_nsec / 1000);
12983#else
12984 /* keep old behavior for non-open source (for now) */
Jeff Johnson295189b2012-06-20 16:38:30 -070012985 memcpy(&mgmt->u.probe_resp.timestamp, bss_desc->timeStamp,
12986 sizeof (bss_desc->timeStamp));
Jeff Johnsone7245742012-09-05 17:12:55 -070012987
12988#endif
12989
Jeff Johnson295189b2012-06-20 16:38:30 -070012990 mgmt->u.probe_resp.beacon_int = bss_desc->beaconInterval;
12991 mgmt->u.probe_resp.capab_info = bss_desc->capabilityInfo;
Madan Mohan Koyyalamudi86f629e2012-11-09 16:27:29 -080012992
12993#ifdef WLAN_ENABLE_AGEIE_ON_SCAN_RESULTS
12994 /* GPS Requirement: need age ie per entry. Using vendor specific. */
12995 /* Assuming this is the last IE, copy at the end */
12996 ie_length -=sizeof(qcom_ie_age);
12997 qie_age = (qcom_ie_age *)(mgmt->u.probe_resp.variable + ie_length);
12998 qie_age->element_id = QCOM_VENDOR_IE_ID;
12999 qie_age->len = QCOM_VENDOR_IE_AGE_LEN;
13000 qie_age->oui_1 = QCOM_OUI1;
13001 qie_age->oui_2 = QCOM_OUI2;
13002 qie_age->oui_3 = QCOM_OUI3;
13003 qie_age->type = QCOM_VENDOR_IE_AGE_TYPE;
Selvaraj, Sridhar4b3a8362016-10-12 12:34:08 +053013004 /* Lowi expects the timestamp of bss in units of 1/10 ms. In driver all
13005 * bss related timestamp is in units of ms. Due to this when scan results
13006 * are sent to lowi the scan age is high.To address this, send age in units
13007 * of 1/10 ms.
13008 */
13009 qie_age->age = (vos_timer_get_system_time() -
13010 bss_desc->nReceivedTime)/10;
Madan Mohan Koyyalamudi86f629e2012-11-09 16:27:29 -080013011#endif
13012
Jeff Johnson295189b2012-06-20 16:38:30 -070013013 memcpy(mgmt->u.probe_resp.variable, ie, ie_length);
Gopichand Nakkalad908ec82013-05-16 19:32:19 +053013014 if (bss_desc->fProbeRsp)
13015 {
13016 mgmt->frame_control |=
13017 (u16)(IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_PROBE_RESP);
13018 }
13019 else
13020 {
13021 mgmt->frame_control |=
13022 (u16)(IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_BEACON);
13023 }
Jeff Johnson295189b2012-06-20 16:38:30 -070013024
13025#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,38))
Gopichand Nakkala747461f2013-04-24 19:24:45 +053013026 if (chan_no <= ARRAY_SIZE(hdd_channels_2_4_GHZ) &&
Jeff Johnson295189b2012-06-20 16:38:30 -070013027 (wiphy->bands[IEEE80211_BAND_2GHZ] != NULL))
13028 {
13029 freq = ieee80211_channel_to_frequency(chan_no, IEEE80211_BAND_2GHZ);
13030 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +053013031 else if ((chan_no > ARRAY_SIZE(hdd_channels_2_4_GHZ)) &&
Jeff Johnson295189b2012-06-20 16:38:30 -070013032 (wiphy->bands[IEEE80211_BAND_5GHZ] != NULL))
13033
13034 {
13035 freq = ieee80211_channel_to_frequency(chan_no, IEEE80211_BAND_5GHZ);
13036 }
13037 else
13038 {
Nirav Shah20ac06f2013-12-12 18:14:06 +053013039 hddLog(VOS_TRACE_LEVEL_ERROR, "%s Invalid chan_no:%d",
13040 __func__, chan_no);
Jeff Johnson295189b2012-06-20 16:38:30 -070013041 kfree(mgmt);
13042 return NULL;
13043 }
13044#else
13045 freq = ieee80211_channel_to_frequency(chan_no);
13046#endif
13047 chan = __ieee80211_get_channel(wiphy, freq);
Leela V Kiran Kumar Reddy90032de2013-01-24 18:33:30 -080013048 /*when the band is changed on the fly using the GUI, three things are done
13049 * 1. scan abort 2.flush scan results from cache 3.update the band with the new band user specified(refer to the hdd_setBand_helper function)
13050 * as part of the scan abort, message willbe queued to PE and we proceed with flushing and changinh the band.
13051 * pe will stop the scanning further and report back the results what ever it had till now by calling the call back function.
13052 * if the time between update band and scandone call back is sufficent enough the band change reflects in SME, SME validates the channels
13053 * and discards the channels correponding to previous band and calls back with zero bss results.
13054 * but if the time between band update and scan done callback is very small then band change will not reflect in SME and SME reports to HDD
13055 * all the channels correponding to previous band.this is due to race condition.but those channels are invalid to the new band and so
13056 * this function __ieee80211_get_channel will return NULL.Each time we report scan result with this pointer null warning kernel trace is printed.
13057 * if the scan results contain large number of APs continuosly kernel warning trace is printed and it will lead to apps watch dog bark.
13058 * So drop the bss and continue to next bss.
13059 */
13060 if(chan == NULL)
13061 {
Deepthi Gowri306657b2016-04-28 17:10:41 +053013062 hddLog(VOS_TRACE_LEVEL_ERROR,
13063 FL("chan pointer is NULL, chan_no: %d freq: %d"),
13064 chan_no, freq);
Chilam Ngc4244af2013-04-01 15:37:32 -070013065 kfree(mgmt);
Leela V Kiran Kumar Reddy90032de2013-01-24 18:33:30 -080013066 return NULL;
13067 }
Hanumantha Reddy Pothula904bcef2015-06-19 11:56:29 +053013068 /*To keep the rssi icon of the connected AP in the scan window
13069 *and the rssi icon of the wireless networks in sync
13070 * */
13071 if (( eConnectionState_Associated ==
13072 pAdapter->sessionCtx.station.conn_info.connState ) &&
13073 ( VOS_TRUE == vos_mem_compare(bss_desc->bssId,
13074 pAdapter->sessionCtx.station.conn_info.bssId,
13075 WNI_CFG_BSSID_LEN)) &&
13076 (pHddCtx->hdd_wlan_suspended == FALSE))
13077 {
13078 /* supplicant takes the signal strength in terms of mBm(100*dBm) */
13079 rssi = (pAdapter->rssi * 100);
13080 }
13081 else
13082 {
13083 rssi = (VOS_MIN ((bss_desc->rssi + bss_desc->sinr), 0))*100;
13084 }
Jeff Johnson295189b2012-06-20 16:38:30 -070013085
Nirav Shah20ac06f2013-12-12 18:14:06 +053013086 hddLog(VOS_TRACE_LEVEL_INFO, "%s: BSSID:" MAC_ADDRESS_STR " Channel:%d"
Sushant Kaushik0b343422015-05-25 17:15:55 +053013087 " RSSI:%d", __func__, MAC_ADDR_ARRAY(mgmt->bssid),
13088 vos_freq_to_chan(chan->center_freq), (int)(rssi/100));
Nirav Shah20ac06f2013-12-12 18:14:06 +053013089
Jeff Johnson295189b2012-06-20 16:38:30 -070013090 bss_status = cfg80211_inform_bss_frame(wiphy, chan, mgmt,
13091 frame_len, rssi, GFP_KERNEL);
13092 kfree(mgmt);
13093 return bss_status;
13094}
13095
13096/*
13097 * FUNCTION: wlan_hdd_cfg80211_update_bss_db
13098 * This function is used to update the BSS data base of CFG8011
13099 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053013100struct cfg80211_bss* wlan_hdd_cfg80211_update_bss_db( hdd_adapter_t *pAdapter,
Jeff Johnson295189b2012-06-20 16:38:30 -070013101 tCsrRoamInfo *pRoamInfo
13102 )
13103{
13104 tCsrRoamConnectedProfile roamProfile;
13105 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
13106 struct cfg80211_bss *bss = NULL;
13107
13108 ENTER();
13109
13110 memset(&roamProfile, 0, sizeof(tCsrRoamConnectedProfile));
13111 sme_RoamGetConnectProfile(hHal, pAdapter->sessionId, &roamProfile);
13112
13113 if (NULL != roamProfile.pBssDesc)
13114 {
Girish Gowlif4b68022014-08-28 23:18:57 +053013115 bss = wlan_hdd_cfg80211_inform_bss_frame(pAdapter,
13116 roamProfile.pBssDesc);
Jeff Johnson295189b2012-06-20 16:38:30 -070013117
13118 if (NULL == bss)
13119 {
13120 hddLog(VOS_TRACE_LEVEL_INFO, "%s: cfg80211_inform_bss return NULL",
13121 __func__);
13122 }
13123
13124 sme_RoamFreeConnectProfile(hHal, &roamProfile);
13125 }
13126 else
13127 {
13128 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: roamProfile.pBssDesc is NULL",
13129 __func__);
13130 }
13131 return bss;
13132}
13133
13134/*
13135 * FUNCTION: wlan_hdd_cfg80211_update_bss
13136 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053013137static int wlan_hdd_cfg80211_update_bss( struct wiphy *wiphy,
13138 hdd_adapter_t *pAdapter
Jeff Johnson295189b2012-06-20 16:38:30 -070013139 )
Gopichand Nakkala747461f2013-04-24 19:24:45 +053013140{
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053013141 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -070013142 tCsrScanResultInfo *pScanResult;
13143 eHalStatus status = 0;
Mahesh A Saptasagar08af5a32016-06-30 12:29:49 +053013144 int ret;
Jeff Johnson295189b2012-06-20 16:38:30 -070013145 tScanResultHandle pResult;
13146 struct cfg80211_bss *bss_status = NULL;
Wilson Yangf80a0542013-10-07 13:02:37 -070013147 hdd_context_t *pHddCtx;
Deepthi Gowri10d0ae12015-05-25 14:39:50 +053013148 bool is_p2p_scan = false;
Jeff Johnson295189b2012-06-20 16:38:30 -070013149 ENTER();
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053013150
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053013151 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
13152 TRACE_CODE_HDD_CFG80211_UPDATE_BSS,
13153 NO_SESSION, pAdapter->sessionId));
13154
Wilson Yangf80a0542013-10-07 13:02:37 -070013155 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Mahesh A Saptasagar08af5a32016-06-30 12:29:49 +053013156 ret = wlan_hdd_validate_context(pHddCtx);
13157 if (0 != ret)
Jeff Johnson295189b2012-06-20 16:38:30 -070013158 {
Mahesh A Saptasagar08af5a32016-06-30 12:29:49 +053013159 return ret;
Wilson Yangf80a0542013-10-07 13:02:37 -070013160 }
13161
Deepthi Gowri10d0ae12015-05-25 14:39:50 +053013162 if (pAdapter->request != NULL)
13163 {
13164 if ((pAdapter->request->n_ssids == 1)
13165 && (pAdapter->request->ssids != NULL)
13166 && vos_mem_compare(&pAdapter->request->ssids[0], "DIRECT-", 7))
13167 is_p2p_scan = true;
13168 }
Jeff Johnson295189b2012-06-20 16:38:30 -070013169 /*
13170 * start getting scan results and populate cgf80211 BSS database
13171 */
13172 status = sme_ScanGetResult(hHal, pAdapter->sessionId, NULL, &pResult);
13173
13174 /* no scan results */
13175 if (NULL == pResult)
13176 {
Nirav Shah20ac06f2013-12-12 18:14:06 +053013177 hddLog(VOS_TRACE_LEVEL_INFO, "%s: No scan result Status %d",
13178 __func__, status);
Mahesh A Saptasagar51dc36c2015-06-16 12:07:15 +053013179 wlan_hdd_get_frame_logs(pAdapter,
13180 WLAN_HDD_GET_FRAME_LOG_CMD_SEND_AND_CLEAR);
Jeff Johnson295189b2012-06-20 16:38:30 -070013181 return status;
13182 }
13183
13184 pScanResult = sme_ScanResultGetFirst(hHal, pResult);
13185
13186 while (pScanResult)
13187 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053013188 /*
13189 * cfg80211_inform_bss() is not updating ie field of bss entry, if
13190 * entry already exists in bss data base of cfg80211 for that
13191 * particular BSS ID. Using cfg80211_inform_bss_frame to update the
13192 * bss entry instead of cfg80211_inform_bss, But this call expects
13193 * mgmt packet as input. As of now there is no possibility to get
13194 * the mgmt(probe response) frame from PE, converting bss_desc to
Jeff Johnson295189b2012-06-20 16:38:30 -070013195 * ieee80211_mgmt(probe response) and passing to c
13196 * fg80211_inform_bss_frame.
13197 * */
Deepthi Gowri10d0ae12015-05-25 14:39:50 +053013198 if(is_p2p_scan && (pScanResult->ssId.ssId != NULL) &&
13199 !vos_mem_compare( pScanResult->ssId.ssId, "DIRECT-", 7) )
13200 {
Deepthi Gowri10d0ae12015-05-25 14:39:50 +053013201 pScanResult = sme_ScanResultGetNext(hHal, pResult);
13202 continue; //Skip the non p2p bss entries
13203 }
Jeff Johnson295189b2012-06-20 16:38:30 -070013204 bss_status = wlan_hdd_cfg80211_inform_bss_frame(pAdapter,
13205 &pScanResult->BssDescriptor);
Gopichand Nakkala747461f2013-04-24 19:24:45 +053013206
Jeff Johnson295189b2012-06-20 16:38:30 -070013207
13208 if (NULL == bss_status)
13209 {
13210 hddLog(VOS_TRACE_LEVEL_INFO,
Arif Hussain6d2a3322013-11-17 19:50:10 -080013211 "%s: NULL returned by cfg80211_inform_bss", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -070013212 }
13213 else
13214 {
Yue Maf49ba872013-08-19 12:04:25 -070013215 cfg80211_put_bss(
13216#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,9,0))
13217 wiphy,
13218#endif
13219 bss_status);
Jeff Johnson295189b2012-06-20 16:38:30 -070013220 }
13221
13222 pScanResult = sme_ScanResultGetNext(hHal, pResult);
13223 }
13224
Gopichand Nakkala747461f2013-04-24 19:24:45 +053013225 sme_ScanResultPurge(hHal, pResult);
Deepthi Gowri10d0ae12015-05-25 14:39:50 +053013226 is_p2p_scan = false;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053013227 return 0;
Jeff Johnson295189b2012-06-20 16:38:30 -070013228}
13229
Jeff Johnson04dd8a82012-06-29 20:41:40 -070013230void
13231hddPrintMacAddr(tCsrBssid macAddr, tANI_U8 logLevel)
13232{
Gopichand Nakkala747461f2013-04-24 19:24:45 +053013233 VOS_TRACE(VOS_MODULE_ID_HDD, logLevel,
Arif Hussaina7c8e412013-11-20 11:06:42 -080013234 MAC_ADDRESS_STR, MAC_ADDR_ARRAY(macAddr));
Jeff Johnson04dd8a82012-06-29 20:41:40 -070013235} /****** end hddPrintMacAddr() ******/
13236
13237void
Madan Mohan Koyyalamudic75be962012-10-18 19:19:03 -070013238hddPrintPmkId(tANI_U8 *pmkId, tANI_U8 logLevel)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070013239{
Gopichand Nakkala747461f2013-04-24 19:24:45 +053013240 VOS_TRACE(VOS_MODULE_ID_HDD, logLevel,
Arif Hussain6d2a3322013-11-17 19:50:10 -080013241 "%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X",
Madan Mohan Koyyalamudic75be962012-10-18 19:19:03 -070013242 pmkId[0], pmkId[1], pmkId[2], pmkId[3], pmkId[4],
13243 pmkId[5], pmkId[6], pmkId[7], pmkId[8], pmkId[9], pmkId[10],
13244 pmkId[11], pmkId[12], pmkId[13], pmkId[14], pmkId[15]);
Jeff Johnson04dd8a82012-06-29 20:41:40 -070013245} /****** end hddPrintPmkId() ******/
13246
13247//hddPrintMacAddr(tCsrBssid macAddr, tANI_U8 logLevel);
13248//hddPrintMacAddr(macAddr, VOS_TRACE_LEVEL_FATAL);
13249
13250//void sirDumpBuf(tpAniSirGlobal pMac, tANI_U8 modId, tANI_U32 level, tANI_U8 *buf, tANI_U32 size);
13251//sirDumpBuf(pMac, VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL, pmkid, 16);
13252
13253#define dump_bssid(bssid) \
13254 { \
Jeff Johnsone7245742012-09-05 17:12:55 -070013255 hddLog(VOS_TRACE_LEVEL_INFO, "BSSID (MAC) address:\t"); \
13256 hddPrintMacAddr(bssid, VOS_TRACE_LEVEL_INFO);\
Jeff Johnson04dd8a82012-06-29 20:41:40 -070013257 }
13258
13259#define dump_pmkid(pMac, pmkid) \
13260 { \
Jeff Johnsone7245742012-09-05 17:12:55 -070013261 hddLog(VOS_TRACE_LEVEL_INFO, "PMKSA-ID:\t"); \
13262 hddPrintPmkId(pmkid, VOS_TRACE_LEVEL_INFO);\
Jeff Johnson04dd8a82012-06-29 20:41:40 -070013263 }
13264
Madan Mohan Koyyalamudi1b4afb02012-10-22 15:25:16 -070013265#if defined(FEATURE_WLAN_LFR) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
Jeff Johnson04dd8a82012-06-29 20:41:40 -070013266/*
13267 * FUNCTION: wlan_hdd_cfg80211_pmksa_candidate_notify
13268 * This function is used to notify the supplicant of a new PMKSA candidate.
13269 */
13270int wlan_hdd_cfg80211_pmksa_candidate_notify(
Gopichand Nakkala747461f2013-04-24 19:24:45 +053013271 hdd_adapter_t *pAdapter, tCsrRoamInfo *pRoamInfo,
Jeff Johnson04dd8a82012-06-29 20:41:40 -070013272 int index, bool preauth )
13273{
Jeff Johnsone7245742012-09-05 17:12:55 -070013274#ifdef FEATURE_WLAN_OKC
Jeff Johnson04dd8a82012-06-29 20:41:40 -070013275 struct net_device *dev = pAdapter->dev;
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -070013276 hdd_context_t *pHddCtx = (hdd_context_t*)pAdapter->pHddCtx;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070013277
13278 ENTER();
Jeff Johnsone7245742012-09-05 17:12:55 -070013279 hddLog(VOS_TRACE_LEVEL_INFO, "%s is going to notify supplicant of:", __func__);
Jeff Johnson04dd8a82012-06-29 20:41:40 -070013280
13281 if( NULL == pRoamInfo )
13282 {
Arif Hussain6d2a3322013-11-17 19:50:10 -080013283 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: pRoamInfo is NULL", __func__);
Jeff Johnson04dd8a82012-06-29 20:41:40 -070013284 return -EINVAL;
13285 }
13286
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -070013287 if (eANI_BOOLEAN_TRUE == hdd_is_okc_mode_enabled(pHddCtx))
13288 {
13289 dump_bssid(pRoamInfo->bssid);
13290 cfg80211_pmksa_candidate_notify(dev, index,
Jeff Johnson04dd8a82012-06-29 20:41:40 -070013291 pRoamInfo->bssid, preauth, GFP_KERNEL);
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -070013292 }
Jeff Johnsone7245742012-09-05 17:12:55 -070013293#endif /* FEATURE_WLAN_OKC */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053013294 return 0;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070013295}
13296#endif //FEATURE_WLAN_LFR
13297
Yue Maef608272013-04-08 23:09:17 -070013298#ifdef FEATURE_WLAN_LFR_METRICS
13299/*
13300 * FUNCTION: wlan_hdd_cfg80211_roam_metrics_preauth
13301 * 802.11r/LFR metrics reporting function to report preauth initiation
13302 *
13303 */
13304#define MAX_LFR_METRICS_EVENT_LENGTH 100
13305VOS_STATUS wlan_hdd_cfg80211_roam_metrics_preauth(hdd_adapter_t *pAdapter,
13306 tCsrRoamInfo *pRoamInfo)
13307{
13308 unsigned char metrics_notification[MAX_LFR_METRICS_EVENT_LENGTH + 1];
13309 union iwreq_data wrqu;
13310
13311 ENTER();
13312
13313 if (NULL == pAdapter)
13314 {
13315 hddLog(LOGE, "%s: pAdapter is NULL!", __func__);
13316 return VOS_STATUS_E_FAILURE;
13317 }
13318
13319 /* create the event */
13320 memset(&wrqu, 0, sizeof(wrqu));
13321 memset(metrics_notification, 0, sizeof(metrics_notification));
13322
13323 wrqu.data.pointer = metrics_notification;
13324 wrqu.data.length = scnprintf(metrics_notification,
13325 sizeof(metrics_notification), "QCOM: LFR_PREAUTH_INIT "
13326 MAC_ADDRESS_STR, MAC_ADDR_ARRAY(pRoamInfo->bssid));
13327
13328 wireless_send_event(pAdapter->dev, IWEVCUSTOM, &wrqu, metrics_notification);
13329
13330 EXIT();
13331
13332 return VOS_STATUS_SUCCESS;
13333}
13334
13335/*
13336 * FUNCTION: wlan_hdd_cfg80211_roam_metrics_preauth_status
13337 * 802.11r/LFR metrics reporting function to report preauth completion
13338 * or failure
13339 */
13340VOS_STATUS wlan_hdd_cfg80211_roam_metrics_preauth_status(
13341 hdd_adapter_t *pAdapter, tCsrRoamInfo *pRoamInfo, bool preauth_status)
13342{
13343 unsigned char metrics_notification[MAX_LFR_METRICS_EVENT_LENGTH + 1];
13344 union iwreq_data wrqu;
13345
13346 ENTER();
13347
13348 if (NULL == pAdapter)
13349 {
13350 hddLog(LOGE, "%s: pAdapter is NULL!", __func__);
13351 return VOS_STATUS_E_FAILURE;
13352 }
13353
13354 /* create the event */
13355 memset(&wrqu, 0, sizeof(wrqu));
13356 memset(metrics_notification, 0, sizeof(metrics_notification));
13357
13358 scnprintf(metrics_notification, sizeof(metrics_notification),
13359 "QCOM: LFR_PREAUTH_STATUS "MAC_ADDRESS_STR,
13360 MAC_ADDR_ARRAY(pRoamInfo->bssid));
13361
13362 if (1 == preauth_status)
13363 strncat(metrics_notification, " TRUE", 5);
13364 else
13365 strncat(metrics_notification, " FALSE", 6);
13366
13367 wrqu.data.pointer = metrics_notification;
13368 wrqu.data.length = strlen(metrics_notification);
13369
13370 wireless_send_event(pAdapter->dev, IWEVCUSTOM, &wrqu, metrics_notification);
13371
13372 EXIT();
13373
13374 return VOS_STATUS_SUCCESS;
13375}
13376
13377/*
13378 * FUNCTION: wlan_hdd_cfg80211_roam_metrics_handover
13379 * 802.11r/LFR metrics reporting function to report handover initiation
13380 *
13381 */
13382VOS_STATUS wlan_hdd_cfg80211_roam_metrics_handover(hdd_adapter_t * pAdapter,
13383 tCsrRoamInfo *pRoamInfo)
13384{
13385 unsigned char metrics_notification[MAX_LFR_METRICS_EVENT_LENGTH + 1];
13386 union iwreq_data wrqu;
13387
13388 ENTER();
13389
13390 if (NULL == pAdapter)
13391 {
13392 hddLog(LOGE, "%s: pAdapter is NULL!", __func__);
13393 return VOS_STATUS_E_FAILURE;
13394 }
13395
13396 /* create the event */
13397 memset(&wrqu, 0, sizeof(wrqu));
13398 memset(metrics_notification, 0, sizeof(metrics_notification));
13399
13400 wrqu.data.pointer = metrics_notification;
13401 wrqu.data.length = scnprintf(metrics_notification,
13402 sizeof(metrics_notification), "QCOM: LFR_PREAUTH_HANDOVER "
13403 MAC_ADDRESS_STR, MAC_ADDR_ARRAY(pRoamInfo->bssid));
13404
13405 wireless_send_event(pAdapter->dev, IWEVCUSTOM, &wrqu, metrics_notification);
13406
13407 EXIT();
13408
13409 return VOS_STATUS_SUCCESS;
13410}
13411#endif
13412
Manjeet Singhaaee9cd2016-09-13 19:23:30 +053013413
13414/**
13415 * wlan_hdd_cfg80211_validate_scan_req - validate scan request
13416 * @scan_req: scan request to be checked
13417 *
13418 * Return: true or false
13419 */
13420#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 14, 0))
13421static inline bool wlan_hdd_cfg80211_validate_scan_req(struct
13422 cfg80211_scan_request
13423 *scan_req)
13424{
13425 if (!scan_req || !scan_req->wiphy) {
13426 hddLog(VOS_TRACE_LEVEL_ERROR, "Invalid scan request");
13427 return false;
13428 }
13429 if (vos_is_load_unload_in_progress(VOS_MODULE_ID_HDD, NULL)) {
13430 hddLog(VOS_TRACE_LEVEL_ERROR, "Load/Unload in progress");
13431 return false;
13432 }
13433 return true;
13434}
13435#else
13436static inline bool wlan_hdd_cfg80211_validate_scan_req(struct
13437 cfg80211_scan_request
13438 *scan_req)
13439{
13440 if (!scan_req || !scan_req->wiphy) {
13441 hddLog(VOS_TRACE_LEVEL_ERROR, "Invalid scan request");
13442 return false;
13443 }
13444 return true;
13445}
13446#endif
13447
13448
Jeff Johnson295189b2012-06-20 16:38:30 -070013449/*
13450 * FUNCTION: hdd_cfg80211_scan_done_callback
13451 * scanning callback function, called after finishing scan
13452 *
13453 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053013454static eHalStatus hdd_cfg80211_scan_done_callback(tHalHandle halHandle,
Jeff Johnson295189b2012-06-20 16:38:30 -070013455 void *pContext, tANI_U32 scanId, eCsrScanStatus status)
13456{
13457 struct net_device *dev = (struct net_device *) pContext;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053013458 //struct wireless_dev *wdev = dev->ieee80211_ptr;
Jeff Johnson295189b2012-06-20 16:38:30 -070013459 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
Chandrasekaran, Manishekar41b8e1f2015-03-10 13:30:28 +053013460 hdd_scaninfo_t *pScanInfo;
Jeff Johnson295189b2012-06-20 16:38:30 -070013461 struct cfg80211_scan_request *req = NULL;
13462 int ret = 0;
Mahesh A Saptasagar05a357e2014-02-26 16:28:06 +053013463 bool aborted = false;
Mahesh A Saptasagar08af5a32016-06-30 12:29:49 +053013464#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,14,0))
13465 bool iface_down = false;
13466#endif
c_hpothu6ff1c3c2013-10-01 19:01:57 +053013467 long waitRet = 0;
Agarwal Ashishbd3e10b2014-11-24 19:19:46 +053013468 tANI_U8 i;
Chandrasekaran, Manishekar41b8e1f2015-03-10 13:30:28 +053013469 hdd_context_t *pHddCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -070013470
13471 ENTER();
13472
c_manjee1b4ab9a2016-10-26 11:36:55 +053013473 if (!pAdapter || pAdapter->magic != WLAN_HDD_ADAPTER_MAGIC ||
13474 !pAdapter->dev) {
13475 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Adapter is not valid"));
13476 return 0;
13477 }
Chandrasekaran, Manishekar41b8e1f2015-03-10 13:30:28 +053013478 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Siddharth Bhal5c2e02d2015-05-05 17:35:29 +053013479 if (NULL == pHddCtx) {
13480 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD context is Null"));
Mahesh A Saptasagar08af5a32016-06-30 12:29:49 +053013481 return 0;
Chandrasekaran, Manishekar41b8e1f2015-03-10 13:30:28 +053013482 }
13483
Mahesh A Saptasagar11296752016-01-07 17:53:02 +053013484#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,14,0))
13485 if (!(pAdapter->dev->flags & IFF_UP))
13486 {
13487 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Interface is down"));
Mahesh A Saptasagar08af5a32016-06-30 12:29:49 +053013488 iface_down = true;
Mahesh A Saptasagar11296752016-01-07 17:53:02 +053013489 }
13490#endif
Chandrasekaran, Manishekar41b8e1f2015-03-10 13:30:28 +053013491 pScanInfo = &pHddCtx->scan_info;
13492
Jeff Johnson295189b2012-06-20 16:38:30 -070013493 hddLog(VOS_TRACE_LEVEL_INFO,
13494 "%s called with halHandle = %p, pContext = %p,"
Arif Hussain6d2a3322013-11-17 19:50:10 -080013495 "scanID = %d, returned status = %d",
Jeff Johnson295189b2012-06-20 16:38:30 -070013496 __func__, halHandle, pContext, (int) scanId, (int) status);
13497
Kiet Lamac06e2c2013-10-23 16:25:07 +053013498 pScanInfo->mScanPendingCounter = 0;
13499
Jeff Johnson295189b2012-06-20 16:38:30 -070013500 //Block on scan req completion variable. Can't wait forever though.
c_hpothu6ff1c3c2013-10-01 19:01:57 +053013501 waitRet = wait_for_completion_interruptible_timeout(
Jeff Johnson295189b2012-06-20 16:38:30 -070013502 &pScanInfo->scan_req_completion_event,
13503 msecs_to_jiffies(WLAN_WAIT_TIME_SCAN_REQ));
c_hpothu6ff1c3c2013-10-01 19:01:57 +053013504 if (waitRet <= 0)
Jeff Johnson295189b2012-06-20 16:38:30 -070013505 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +053013506 hddLog(VOS_TRACE_LEVEL_ERROR,
13507 "%s wait on scan_req_completion_event failed %ld",__func__, waitRet);
Jeff Johnson295189b2012-06-20 16:38:30 -070013508 VOS_ASSERT(pScanInfo->mScanPending);
Jeff Johnsone7245742012-09-05 17:12:55 -070013509 goto allow_suspend;
Jeff Johnson295189b2012-06-20 16:38:30 -070013510 }
13511
Yue Maef608272013-04-08 23:09:17 -070013512 if (pScanInfo->mScanPending != VOS_TRUE)
Jeff Johnson295189b2012-06-20 16:38:30 -070013513 {
13514 VOS_ASSERT(pScanInfo->mScanPending);
Jeff Johnsone7245742012-09-05 17:12:55 -070013515 goto allow_suspend;
Jeff Johnson295189b2012-06-20 16:38:30 -070013516 }
13517
13518 /* Check the scanId */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053013519 if (pScanInfo->scanId != scanId)
Jeff Johnson295189b2012-06-20 16:38:30 -070013520 {
13521 hddLog(VOS_TRACE_LEVEL_INFO,
13522 "%s called with mismatched scanId pScanInfo->scanId = %d "
Arif Hussain6d2a3322013-11-17 19:50:10 -080013523 "scanId = %d", __func__, (int) pScanInfo->scanId,
Jeff Johnson295189b2012-06-20 16:38:30 -070013524 (int) scanId);
13525 }
13526
Mahesh A Saptasagar9dd72842016-04-15 19:45:14 +053013527#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,14,0))
Mahesh A Saptasagar08af5a32016-06-30 12:29:49 +053013528 if (!iface_down)
Mahesh A Saptasagar9dd72842016-04-15 19:45:14 +053013529#endif
Mahesh A Saptasagar08af5a32016-06-30 12:29:49 +053013530 {
13531 ret = wlan_hdd_cfg80211_update_bss((WLAN_HDD_GET_CTX(pAdapter))->wiphy,
13532 pAdapter);
13533 if (0 > ret)
13534 hddLog(VOS_TRACE_LEVEL_INFO, "%s: NO SCAN result", __func__);
Mahesh A Saptasagar9dd72842016-04-15 19:45:14 +053013535 }
Jeff Johnson295189b2012-06-20 16:38:30 -070013536
Jeff Johnson295189b2012-06-20 16:38:30 -070013537 /* If any client wait scan result through WEXT
13538 * send scan done event to client */
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -070013539 if (pHddCtx->scan_info.waitScanResult)
Jeff Johnson295189b2012-06-20 16:38:30 -070013540 {
13541 /* The other scan request waiting for current scan finish
13542 * Send event to notify current scan finished */
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -070013543 if(WEXT_SCAN_PENDING_DELAY == pHddCtx->scan_info.scan_pending_option)
Jeff Johnson295189b2012-06-20 16:38:30 -070013544 {
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -070013545 vos_event_set(&pHddCtx->scan_info.scan_finished_event);
Jeff Johnson295189b2012-06-20 16:38:30 -070013546 }
13547 /* Send notify to WEXT client */
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -070013548 else if(WEXT_SCAN_PENDING_PIGGYBACK == pHddCtx->scan_info.scan_pending_option)
Jeff Johnson295189b2012-06-20 16:38:30 -070013549 {
13550 struct net_device *dev = pAdapter->dev;
13551 union iwreq_data wrqu;
13552 int we_event;
13553 char *msg;
13554
13555 memset(&wrqu, '\0', sizeof(wrqu));
13556 we_event = SIOCGIWSCAN;
13557 msg = NULL;
13558 wireless_send_event(dev, we_event, &wrqu, msg);
13559 }
13560 }
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -070013561 pHddCtx->scan_info.waitScanResult = FALSE;
Jeff Johnson295189b2012-06-20 16:38:30 -070013562
13563 /* Get the Scan Req */
13564 req = pAdapter->request;
mukul sharmae7041822015-12-03 15:09:21 +053013565 pAdapter->request = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -070013566
Mahesh A Saptasagar08af5a32016-06-30 12:29:49 +053013567 /* Scan is no longer pending */
13568 pScanInfo->mScanPending = VOS_FALSE;
13569
Manjeet Singhaaee9cd2016-09-13 19:23:30 +053013570 if (!wlan_hdd_cfg80211_validate_scan_req(req))
Jeff Johnson295189b2012-06-20 16:38:30 -070013571 {
Manjeet Singhaaee9cd2016-09-13 19:23:30 +053013572#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,14,0))
13573 hddLog(VOS_TRACE_LEVEL_ERROR, FL("interface state %s"),
13574 iface_down ? "up" : "down");
13575#endif
13576
13577 if (pAdapter->dev) {
13578 hddLog(VOS_TRACE_LEVEL_ERROR, FL("device name %s"),
13579 pAdapter->dev->name);
13580 }
mukul sharmae7041822015-12-03 15:09:21 +053013581 complete(&pScanInfo->abortscan_event_var);
Jeff Johnsone7245742012-09-05 17:12:55 -070013582 goto allow_suspend;
Jeff Johnson295189b2012-06-20 16:38:30 -070013583 }
13584
Agarwal Ashishbd3e10b2014-11-24 19:19:46 +053013585 /* last_scan_timestamp is used to decide if new scan
13586 * is needed or not on station interface. If last station
13587 * scan time and new station scan time is less then
13588 * last_scan_timestamp ; driver will return cached scan.
13589 */
13590 if (req->no_cck == FALSE && status == eCSR_SCAN_SUCCESS) // no_cck will be set during p2p find
13591 {
13592 pScanInfo->last_scan_timestamp = vos_timer_get_system_time();
13593
13594 if ( req->n_channels )
13595 {
13596 for (i = 0; i < req->n_channels ; i++ )
13597 {
13598 pHddCtx->scan_info.last_scan_channelList[i] = req->channels[i]->hw_value;
13599 }
13600 /* store no of channel scanned */
13601 pHddCtx->scan_info.last_scan_numChannels= req->n_channels;
13602 }
13603
13604 }
13605
Madan Mohan Koyyalamudib764bf82012-10-11 16:38:51 -070013606 /*
13607 * cfg80211_scan_done informing NL80211 about completion
13608 * of scanning
13609 */
Mahesh A Saptasagar05a357e2014-02-26 16:28:06 +053013610 if (status == eCSR_SCAN_ABORT || status == eCSR_SCAN_FAILURE)
13611 {
13612 aborted = true;
13613 }
mukul sharmae7041822015-12-03 15:09:21 +053013614
Mahesh A Saptasagar08af5a32016-06-30 12:29:49 +053013615#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,14,0))
13616 if (!iface_down)
13617#endif
13618 cfg80211_scan_done(req, aborted);
mukul sharmae7041822015-12-03 15:09:21 +053013619
Madan Mohan Koyyalamudif4e81002012-11-13 10:46:38 -080013620 complete(&pScanInfo->abortscan_event_var);
Jeff Johnson295189b2012-06-20 16:38:30 -070013621
Mahesh A Saptasagar08af5a32016-06-30 12:29:49 +053013622allow_suspend:
Hanumantha Reddy Pothulaca1d1cc2015-10-26 15:37:35 +053013623 if ((pHddCtx->cfg_ini->enableMacSpoofing == MAC_ADDR_SPOOFING_FW_HOST_ENABLE
13624 ) && (pHddCtx->spoofMacAddr.isEnabled
13625 || pHddCtx->spoofMacAddr.isReqDeferred)) {
Siddharth Bhal76972212014-10-15 16:22:51 +053013626 /* Generate new random mac addr for next scan */
13627 hddLog(VOS_TRACE_LEVEL_INFO, "scan completed - generate new spoof mac addr");
Padma, Santhosh Kumardb2d75b2015-11-17 12:18:10 +053013628
13629 schedule_delayed_work(&pHddCtx->spoof_mac_addr_work,
13630 msecs_to_jiffies(MAC_ADDR_SPOOFING_DEFER_INTERVAL));
Siddharth Bhal76972212014-10-15 16:22:51 +053013631 }
13632
Madan Mohan Koyyalamudi9f5a10c2012-09-28 14:46:16 -070013633 /* release the wake lock at the end of the scan*/
Sushant Kaushik83392fa2015-05-05 17:44:40 +053013634 hdd_allow_suspend(WIFI_POWER_EVENT_WAKELOCK_SCAN);
Jeff Johnsone7245742012-09-05 17:12:55 -070013635
Madan Mohan Koyyalamudi10d83a92012-09-28 15:47:05 -070013636 /* Acquire wakelock to handle the case where APP's tries to suspend
13637 * immediatly after the driver gets connect request(i.e after scan)
13638 * from supplicant, this result in app's is suspending and not able
13639 * to process the connect request to AP */
Sushant Kaushik83392fa2015-05-05 17:44:40 +053013640 hdd_prevent_suspend_timeout(1000, WIFI_POWER_EVENT_WAKELOCK_SCAN);
Madan Mohan Koyyalamudi10d83a92012-09-28 15:47:05 -070013641
Mahesh A Saptasagar08af5a32016-06-30 12:29:49 +053013642#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,14,0))
13643 if (!iface_down)
13644#endif
Gopichand Nakkala638ebc72013-03-21 18:04:02 -070013645#ifdef FEATURE_WLAN_TDLS
Mahesh A Saptasagar08af5a32016-06-30 12:29:49 +053013646 wlan_hdd_tdls_scan_done_callback(pAdapter);
Gopichand Nakkala638ebc72013-03-21 18:04:02 -070013647#endif
13648
Jeff Johnson295189b2012-06-20 16:38:30 -070013649 EXIT();
13650 return 0;
13651}
13652
13653/*
Rashmi Ramannab1429032014-04-26 14:59:09 +053013654 * FUNCTION: hdd_isConnectionInProgress
13655 * Go through each adapter and check if Connection is in progress
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -080013656 *
13657 */
Sreelakshmi Konamki20ebed92016-10-27 12:13:30 +053013658v_BOOL_t hdd_isConnectionInProgress(hdd_context_t *pHddCtx, v_U8_t *session_id,
13659 scan_reject_states *reason)
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -080013660{
13661 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
13662 hdd_station_ctx_t *pHddStaCtx = NULL;
13663 hdd_adapter_t *pAdapter = NULL;
13664 VOS_STATUS status = 0;
13665 v_U8_t staId = 0;
13666 v_U8_t *staMac = NULL;
13667
13668 status = hdd_get_front_adapter ( pHddCtx, &pAdapterNode );
13669
13670 while ( NULL != pAdapterNode && VOS_STATUS_SUCCESS == status )
13671 {
13672 pAdapter = pAdapterNode->pAdapter;
13673
13674 if( pAdapter )
13675 {
13676 hddLog(VOS_TRACE_LEVEL_INFO,
Sushant Kaushik8bc7df22014-04-09 17:55:29 +053013677 "%s: Adapter with device mode %s (%d) exists",
13678 __func__, hdd_device_modetoString(pAdapter->device_mode),
13679 pAdapter->device_mode);
Padma, Santhosh Kumar98f271d2014-12-31 17:23:31 +053013680 if (((WLAN_HDD_INFRA_STATION == pAdapter->device_mode) ||
Rashmi Ramannab1429032014-04-26 14:59:09 +053013681 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode) ||
13682 (WLAN_HDD_P2P_DEVICE == pAdapter->device_mode)) &&
13683 (eConnectionState_Connecting ==
13684 (WLAN_HDD_GET_STATION_CTX_PTR(pAdapter))->conn_info.connState))
13685 {
13686 hddLog(VOS_TRACE_LEVEL_ERROR,
13687 "%s: %p(%d) Connection is in progress", __func__,
13688 WLAN_HDD_GET_STATION_CTX_PTR(pAdapter), pAdapter->sessionId);
Sreelakshmi Konamki20ebed92016-10-27 12:13:30 +053013689 if (session_id && reason)
13690 {
13691 *session_id = pAdapter->sessionId;
13692 *reason = eHDD_CONNECTION_IN_PROGRESS;
13693 }
Rashmi Ramannab1429032014-04-26 14:59:09 +053013694 return VOS_TRUE;
13695 }
Padma, Santhosh Kumar98f271d2014-12-31 17:23:31 +053013696 if ((WLAN_HDD_INFRA_STATION == pAdapter->device_mode) &&
Padma, Santhosh Kumar3b9657d2015-02-04 19:37:32 +053013697 smeNeighborMiddleOfRoaming(WLAN_HDD_GET_HAL_CTX(pAdapter)))
Padma, Santhosh Kumar98f271d2014-12-31 17:23:31 +053013698 {
13699 hddLog(VOS_TRACE_LEVEL_ERROR,
13700 "%s: %p(%d) Reassociation is in progress", __func__,
13701 WLAN_HDD_GET_STATION_CTX_PTR(pAdapter), pAdapter->sessionId);
Sreelakshmi Konamki20ebed92016-10-27 12:13:30 +053013702 if (session_id && reason)
13703 {
13704 *session_id = pAdapter->sessionId;
13705 *reason = eHDD_REASSOC_IN_PROGRESS;
13706 }
Padma, Santhosh Kumar98f271d2014-12-31 17:23:31 +053013707 return VOS_TRUE;
13708 }
13709 if ((WLAN_HDD_INFRA_STATION == pAdapter->device_mode) ||
Sushant Kaushik8bc7df22014-04-09 17:55:29 +053013710 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode) ||
13711 (WLAN_HDD_P2P_DEVICE == pAdapter->device_mode))
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -080013712 {
13713 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
13714 if ((eConnectionState_Associated == pHddStaCtx->conn_info.connState) &&
Sushant Kaushik8bc7df22014-04-09 17:55:29 +053013715 (VOS_FALSE == pHddStaCtx->conn_info.uIsAuthenticated))
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -080013716 {
13717 staMac = (v_U8_t *) &(pAdapter->macAddressCurrent.bytes[0]);
13718 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain24bafea2013-11-15 15:10:03 -080013719 "%s: client " MAC_ADDRESS_STR
13720 " is in the middle of WPS/EAPOL exchange.", __func__,
13721 MAC_ADDR_ARRAY(staMac));
Sreelakshmi Konamki20ebed92016-10-27 12:13:30 +053013722 if (session_id && reason)
13723 {
13724 *session_id = pAdapter->sessionId;
13725 *reason = eHDD_EAPOL_IN_PROGRESS;
13726 }
Rashmi Ramannab1429032014-04-26 14:59:09 +053013727 return VOS_TRUE;
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -080013728 }
13729 }
13730 else if ((WLAN_HDD_SOFTAP == pAdapter->device_mode) ||
13731 (WLAN_HDD_P2P_GO == pAdapter->device_mode))
13732 {
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +053013733 v_CONTEXT_t pVosContext = ( WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
13734 ptSapContext pSapCtx = NULL;
13735 pSapCtx = VOS_GET_SAP_CB(pVosContext);
13736 if(pSapCtx == NULL){
13737 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13738 FL("psapCtx is NULL"));
13739 return VOS_FALSE;
13740 }
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -080013741 for (staId = 0; staId < WLAN_MAX_STA_COUNT; staId++)
13742 {
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +053013743 if ((pSapCtx->aStaInfo[staId].isUsed) &&
13744 (WLANTL_STA_CONNECTED == pSapCtx->aStaInfo[staId].tlSTAState))
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -080013745 {
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +053013746 staMac = (v_U8_t *) &(pSapCtx->aStaInfo[staId].macAddrSTA.bytes[0]);
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -080013747
13748 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain24bafea2013-11-15 15:10:03 -080013749 "%s: client " MAC_ADDRESS_STR " of SoftAP/P2P-GO is in the "
13750 "middle of WPS/EAPOL exchange.", __func__,
13751 MAC_ADDR_ARRAY(staMac));
Sreelakshmi Konamki20ebed92016-10-27 12:13:30 +053013752 if (session_id && reason)
13753 {
13754 *session_id = pAdapter->sessionId;
13755 *reason = eHDD_SAP_EAPOL_IN_PROGRESS;
13756 }
Rashmi Ramannab1429032014-04-26 14:59:09 +053013757 return VOS_TRUE;
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -080013758 }
13759 }
13760 }
13761 }
13762 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
13763 pAdapterNode = pNext;
13764 }
Rashmi Ramannab1429032014-04-26 14:59:09 +053013765 return VOS_FALSE;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053013766}
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -080013767
Selvaraj, Sridhard2b078a2016-06-18 10:44:37 +053013768/**
13769 * csr_scan_request_assign_bssid() - Set the BSSID received from Supplicant
13770 * to the Scan request
13771 * @scanRequest: Pointer to the csr scan request
13772 * @request: Pointer to the scan request from supplicant
13773 *
13774 * Return: None
13775 */
13776#ifdef CFG80211_SCAN_BSSID
13777static inline void csr_scan_request_assign_bssid(tCsrScanRequest *scanRequest,
13778 struct cfg80211_scan_request *request)
13779{
13780 vos_mem_copy(scanRequest->bssid, request->bssid, VOS_MAC_ADDR_SIZE);
13781}
13782#else
13783static inline void csr_scan_request_assign_bssid(tCsrScanRequest *scanRequest,
13784 struct cfg80211_scan_request *request)
13785{
13786}
13787#endif
13788
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -080013789/*
Mahesh A Saptasagarfafb7fe2014-05-16 13:19:37 +053013790 * FUNCTION: __wlan_hdd_cfg80211_scan
Jeff Johnson295189b2012-06-20 16:38:30 -070013791 * this scan respond to scan trigger and update cfg80211 scan database
13792 * later, scan dump command can be used to recieve scan results
13793 */
Mahesh A Saptasagarfafb7fe2014-05-16 13:19:37 +053013794int __wlan_hdd_cfg80211_scan( struct wiphy *wiphy,
Jeff Johnson3bbe4bf2013-01-18 17:05:29 -080013795#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,6,0))
13796 struct net_device *dev,
13797#endif
13798 struct cfg80211_scan_request *request)
13799{
Siddharth Bhal0c162d02014-05-06 19:50:42 +053013800 hdd_adapter_t *pAdapter = NULL;
13801 hdd_context_t *pHddCtx = NULL;
13802 hdd_wext_state_t *pwextBuf = NULL;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053013803 hdd_config_t *cfg_param = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -070013804 tCsrScanRequest scanRequest;
13805 tANI_U8 *channelList = NULL, i;
13806 v_U32_t scanId = 0;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053013807 int status;
13808 hdd_scaninfo_t *pScanInfo = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -070013809 v_U8_t* pP2pIe = NULL;
Agarwal Ashishbd3e10b2014-11-24 19:19:46 +053013810 int ret = 0;
Sushant Kaushik86592172015-04-27 16:35:03 +053013811 v_U8_t *pWpsIe=NULL;
Deepthi Gowrid5c5c2b2015-06-11 17:00:46 +053013812 bool is_p2p_scan = false;
Sreelakshmi Konamki20ebed92016-10-27 12:13:30 +053013813 v_U8_t curr_session_id;
13814 scan_reject_states curr_reason;
Jeff Johnson295189b2012-06-20 16:38:30 -070013815
Siddharth Bhal0c162d02014-05-06 19:50:42 +053013816#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,6,0))
13817 struct net_device *dev = NULL;
13818 if (NULL == request)
13819 {
13820 hddLog(VOS_TRACE_LEVEL_ERROR,
13821 "%s: scan req param null", __func__);
13822 return -EINVAL;
13823 }
13824 dev = request->wdev->netdev;
13825#endif
13826
13827 pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
13828 pHddCtx = WLAN_HDD_GET_CTX( pAdapter );
13829 pwextBuf = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
13830
Jeff Johnson295189b2012-06-20 16:38:30 -070013831 ENTER();
13832
Sushant Kaushik8bc7df22014-04-09 17:55:29 +053013833 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s (%d)",
13834 __func__, hdd_device_modetoString(pAdapter->device_mode),
13835 pAdapter->device_mode);
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053013836
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053013837 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053013838 if (0 != status)
13839 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053013840 return status;
13841 }
13842
Siddharth Bhal0c162d02014-05-06 19:50:42 +053013843 if (NULL == pwextBuf)
13844 {
13845 hddLog (VOS_TRACE_LEVEL_ERROR, "%s ERROR: invalid WEXT state\n",
13846 __func__);
13847 return -EIO;
13848 }
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053013849 cfg_param = pHddCtx->cfg_ini;
13850 pScanInfo = &pHddCtx->scan_info;
13851
Jeff Johnson295189b2012-06-20 16:38:30 -070013852#ifdef WLAN_BTAMP_FEATURE
13853 //Scan not supported when AMP traffic is on.
Gopichand Nakkala681989c2013-03-06 22:27:48 -080013854 if (VOS_TRUE == WLANBAP_AmpSessionOn())
Jeff Johnson295189b2012-06-20 16:38:30 -070013855 {
Madan Mohan Koyyalamudifd4e1da2012-11-09 17:50:19 -080013856 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -070013857 "%s: No scanning when AMP is on", __func__);
13858 return -EOPNOTSUPP;
13859 }
13860#endif
13861 //Scan on any other interface is not supported.
Gopichand Nakkala681989c2013-03-06 22:27:48 -080013862 if (pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -070013863 {
Gopichand Nakkala681989c2013-03-06 22:27:48 -080013864 hddLog(VOS_TRACE_LEVEL_ERROR,
Sushant Kaushik8bc7df22014-04-09 17:55:29 +053013865 "%s: Not scanning on device_mode = %s (%d)",
13866 __func__, hdd_device_modetoString(pAdapter->device_mode),
13867 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -070013868 return -EOPNOTSUPP;
13869 }
13870
13871 if (TRUE == pScanInfo->mScanPending)
13872 {
Kiet Lamac06e2c2013-10-23 16:25:07 +053013873 if ( MAX_PENDING_LOG > pScanInfo->mScanPendingCounter++ )
13874 {
13875 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: mScanPending is TRUE", __func__);
13876 }
Gopichand Nakkala681989c2013-03-06 22:27:48 -080013877 return -EBUSY;
Jeff Johnson295189b2012-06-20 16:38:30 -070013878 }
13879
Hanumantha Reddy Pothula4b6be062015-08-18 14:06:24 +053013880 // Don't allow scan if PNO scan is going on.
13881 if (pHddCtx->isPnoEnable)
13882 {
13883 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
13884 FL("pno scan in progress"));
13885 return -EBUSY;
13886 }
13887
Gopichand Nakkala747461f2013-04-24 19:24:45 +053013888 //Don't Allow Scan and return busy if Remain On
Jeff Johnson32d95a32012-09-10 13:15:23 -070013889 //Channel and action frame is pending
13890 //Otherwise Cancel Remain On Channel and allow Scan
13891 //If no action frame pending
Gopichand Nakkala681989c2013-03-06 22:27:48 -080013892 if (0 != wlan_hdd_check_remain_on_channel(pAdapter))
Jeff Johnson32d95a32012-09-10 13:15:23 -070013893 {
Kiet Lamac06e2c2013-10-23 16:25:07 +053013894 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Remain On Channel Pending", __func__);
Jeff Johnson32d95a32012-09-10 13:15:23 -070013895 return -EBUSY;
13896 }
13897
Jeff Johnson295189b2012-06-20 16:38:30 -070013898 if (mutex_lock_interruptible(&pHddCtx->tmInfo.tmOperationLock))
13899 {
13900 VOS_TRACE(VOS_MODULE_ID_HDD,VOS_TRACE_LEVEL_ERROR,
Jeff Johnson1250df42012-12-10 14:31:52 -080013901 "%s: Acquire lock fail", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -070013902 return -EAGAIN;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053013903 }
Jeff Johnson295189b2012-06-20 16:38:30 -070013904 if (TRUE == pHddCtx->tmInfo.tmAction.enterImps)
13905 {
Nirav Shah20ac06f2013-12-12 18:14:06 +053013906 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -070013907 "%s: MAX TM Level Scan not allowed", __func__);
13908 mutex_unlock(&pHddCtx->tmInfo.tmOperationLock);
Gopichand Nakkala747461f2013-04-24 19:24:45 +053013909 return -EBUSY;
Jeff Johnson295189b2012-06-20 16:38:30 -070013910 }
13911 mutex_unlock(&pHddCtx->tmInfo.tmOperationLock);
13912
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -080013913 /* Check if scan is allowed at this point of time.
13914 */
Hanumanth Reddy Pothulaec960842016-09-14 19:04:26 +053013915 if (TRUE == pHddCtx->btCoexModeSet)
13916 {
13917 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
13918 FL("BTCoex Mode operation in progress"));
13919 return -EBUSY;
13920 }
Sreelakshmi Konamki20ebed92016-10-27 12:13:30 +053013921 if (hdd_isConnectionInProgress(pHddCtx, &curr_session_id, &curr_reason))
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -080013922 {
Agrawal Ashishc932a8d2016-08-17 19:21:02 +053013923 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Scan not allowed"));
Sreelakshmi Konamki20ebed92016-10-27 12:13:30 +053013924 if (pHddCtx->last_scan_reject_session_id != curr_session_id ||
13925 pHddCtx->last_scan_reject_reason != curr_reason ||
13926 !pHddCtx->last_scan_reject_timestamp)
13927 {
13928 pHddCtx->last_scan_reject_session_id = curr_session_id;
13929 pHddCtx->last_scan_reject_reason = curr_reason;
Sreelakshmi Konamkif0646d52016-12-09 12:35:31 +053013930 pHddCtx->last_scan_reject_timestamp = jiffies_to_msecs(jiffies);
Agrawal Ashishc932a8d2016-08-17 19:21:02 +053013931 }
Sreelakshmi Konamki20ebed92016-10-27 12:13:30 +053013932 else {
Sreelakshmi Konamkif0646d52016-12-09 12:35:31 +053013933 if ((jiffies_to_msecs(jiffies) -
Sreelakshmi Konamki20ebed92016-10-27 12:13:30 +053013934 pHddCtx->last_scan_reject_timestamp) >=
13935 SCAN_REJECT_THRESHOLD_TIME)
13936 {
13937 pHddCtx->last_scan_reject_timestamp = 0;
13938 if (pHddCtx->cfg_ini->enableFatalEvent)
13939 vos_fatal_event_logs_req(WLAN_LOG_TYPE_FATAL,
13940 WLAN_LOG_INDICATOR_HOST_DRIVER,
13941 WLAN_LOG_REASON_SCAN_NOT_ALLOWED,
13942 FALSE, FALSE);
13943 else
13944 {
13945 hddLog(LOGE, FL("Triggering SSR"));
13946 vos_wlanRestart();
13947 }
13948 }
13949 }
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -080013950 return -EBUSY;
13951 }
Sreelakshmi Konamki20ebed92016-10-27 12:13:30 +053013952 pHddCtx->last_scan_reject_timestamp = 0;
13953 pHddCtx->last_scan_reject_session_id = 0xFF;
13954 pHddCtx->last_scan_reject_reason = 0;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053013955
Jeff Johnson295189b2012-06-20 16:38:30 -070013956 vos_mem_zero( &scanRequest, sizeof(scanRequest));
13957
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +053013958 /* Even though supplicant doesn't provide any SSIDs, n_ssids is set to 1.
13959 * Becasue of this, driver is assuming that this is not wildcard scan and so
13960 * is not aging out the scan results.
13961 */
13962 if (request->ssids && '\0' == request->ssids->ssid[0])
Jeff Johnson295189b2012-06-20 16:38:30 -070013963 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +053013964 request->n_ssids = 0;
Jeff Johnson295189b2012-06-20 16:38:30 -070013965 }
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +053013966
13967 if ((request->ssids) && (0 < request->n_ssids))
13968 {
13969 tCsrSSIDInfo *SsidInfo;
13970 int j;
13971 scanRequest.SSIDs.numOfSSIDs = request->n_ssids;
13972 /* Allocate num_ssid tCsrSSIDInfo structure */
13973 SsidInfo = scanRequest.SSIDs.SSIDList =
13974 ( tCsrSSIDInfo *)vos_mem_malloc(
13975 request->n_ssids*sizeof(tCsrSSIDInfo));
13976
13977 if(NULL == scanRequest.SSIDs.SSIDList)
13978 {
13979 hddLog(VOS_TRACE_LEVEL_ERROR,
13980 "%s: memory alloc failed SSIDInfo buffer", __func__);
13981 return -ENOMEM;
13982 }
13983
13984 /* copy all the ssid's and their length */
13985 for(j = 0; j < request->n_ssids; j++, SsidInfo++)
13986 {
13987 /* get the ssid length */
13988 SsidInfo->SSID.length = request->ssids[j].ssid_len;
13989 vos_mem_copy(SsidInfo->SSID.ssId, &request->ssids[j].ssid[0],
13990 SsidInfo->SSID.length);
13991 SsidInfo->SSID.ssId[SsidInfo->SSID.length] = '\0';
13992 hddLog(VOS_TRACE_LEVEL_INFO, "SSID number %d: %s",
13993 j, SsidInfo->SSID.ssId);
13994 }
13995 /* set the scan type to active */
13996 scanRequest.scanType = eSIR_ACTIVE_SCAN;
13997 }
13998 else if(WLAN_HDD_P2P_GO == pAdapter->device_mode)
Jeff Johnson295189b2012-06-20 16:38:30 -070013999 {
Siddharth Bhal0c162d02014-05-06 19:50:42 +053014000 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
14001 TRACE_CODE_HDD_CFG80211_SCAN,
14002 pAdapter->sessionId, 0));
Jeff Johnson295189b2012-06-20 16:38:30 -070014003 /* set the scan type to active */
14004 scanRequest.scanType = eSIR_ACTIVE_SCAN;
Jeff Johnson295189b2012-06-20 16:38:30 -070014005 }
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +053014006 else
14007 {
14008 /*Set the scan type to default type, in this case it is ACTIVE*/
14009 scanRequest.scanType = pScanInfo->scan_mode;
14010 }
14011 scanRequest.minChnTime = cfg_param->nActiveMinChnTime;
14012 scanRequest.maxChnTime = cfg_param->nActiveMaxChnTime;
Jeff Johnson295189b2012-06-20 16:38:30 -070014013
Selvaraj, Sridhard2b078a2016-06-18 10:44:37 +053014014 csr_scan_request_assign_bssid(&scanRequest, request);
14015
Jeff Johnson295189b2012-06-20 16:38:30 -070014016 /* set BSSType to default type */
14017 scanRequest.BSSType = eCSR_BSS_TYPE_ANY;
14018
14019 /*TODO: scan the requested channels only*/
14020
14021 /*Right now scanning all the channels */
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +053014022 if (MAX_CHANNEL < request->n_channels)
Jeff Johnson295189b2012-06-20 16:38:30 -070014023 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +053014024 hddLog(VOS_TRACE_LEVEL_WARN,
14025 "No of Scan Channels exceeded limit: %d", request->n_channels);
14026 request->n_channels = MAX_CHANNEL;
14027 }
14028
14029 hddLog(VOS_TRACE_LEVEL_INFO,
14030 "No of Scan Channels: %d", request->n_channels);
14031
14032
14033 if( request->n_channels )
14034 {
14035 char chList [(request->n_channels*5)+1];
14036 int len;
14037 channelList = vos_mem_malloc( request->n_channels );
14038 if( NULL == channelList )
c_hpothu53512302014-04-15 18:49:53 +053014039 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +053014040 hddLog(VOS_TRACE_LEVEL_ERROR,
14041 "%s: memory alloc failed channelList", __func__);
14042 status = -ENOMEM;
14043 goto free_mem;
c_hpothu53512302014-04-15 18:49:53 +053014044 }
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +053014045
14046 for( i = 0, len = 0; i < request->n_channels ; i++ )
14047 {
14048 channelList[i] = request->channels[i]->hw_value;
14049 len += snprintf(chList+len, 5, "%d ", channelList[i]);
14050 }
14051
Nirav Shah20ac06f2013-12-12 18:14:06 +053014052 hddLog(VOS_TRACE_LEVEL_INFO,
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +053014053 "Channel-List: %s ", chList);
14054 }
c_hpothu53512302014-04-15 18:49:53 +053014055
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +053014056 scanRequest.ChannelInfo.numOfChannels = request->n_channels;
14057 scanRequest.ChannelInfo.ChannelList = channelList;
14058
14059 /* set requestType to full scan */
14060 scanRequest.requestType = eCSR_SCAN_REQUEST_FULL_SCAN;
14061
Agarwal Ashishbd3e10b2014-11-24 19:19:46 +053014062 /* if there is back to back scan happening in driver with in
14063 * nDeferScanTimeInterval interval driver should defer new scan request
14064 * and should provide last cached scan results instead of new channel list.
14065 * This rule is not applicable if scan is p2p scan.
14066 * This condition will work only in case when last request no of channels
14067 * and channels are exactly same as new request.
Agarwal Ashish57e84372014-12-05 18:26:53 +053014068 * This should be done only in connected state
Sushant Kaushik86592172015-04-27 16:35:03 +053014069 * Scan shouldn't be defered for WPS scan case.
Agarwal Ashishbd3e10b2014-11-24 19:19:46 +053014070 */
Agarwal Ashishbd3e10b2014-11-24 19:19:46 +053014071
Sushant Kaushik86592172015-04-27 16:35:03 +053014072 pWpsIe = wlan_hdd_get_wps_ie_ptr((v_U8_t*)request->ie,request->ie_len);
14073 /* if wps ie is NULL , then only defer scan */
14074 if ( pWpsIe == NULL &&
14075 (VOS_STATUS_SUCCESS == hdd_is_any_session_connected(pHddCtx)))
Agarwal Ashish57e84372014-12-05 18:26:53 +053014076 {
14077 if ( pScanInfo->last_scan_timestamp !=0 &&
14078 ((vos_timer_get_system_time() - pScanInfo->last_scan_timestamp ) < pHddCtx->cfg_ini->nDeferScanTimeInterval))
14079 {
14080 if ( request->no_cck == FALSE && scanRequest.ChannelInfo.numOfChannels != 1 &&
14081 (pScanInfo->last_scan_numChannels == scanRequest.ChannelInfo.numOfChannels) &&
14082 vos_mem_compare(pScanInfo->last_scan_channelList,
14083 channelList, pScanInfo->last_scan_numChannels))
14084 {
14085 hddLog(VOS_TRACE_LEVEL_WARN,
14086 " New and old station scan time differ is less then %u",
14087 pHddCtx->cfg_ini->nDeferScanTimeInterval);
14088
14089 ret = wlan_hdd_cfg80211_update_bss((WLAN_HDD_GET_CTX(pAdapter))->wiphy,
Agarwal Ashishbd3e10b2014-11-24 19:19:46 +053014090 pAdapter);
14091
Agarwal Ashish57e84372014-12-05 18:26:53 +053014092 hddLog(VOS_TRACE_LEVEL_WARN,
Masti, Narayanraddide03eb02015-02-06 11:23:50 +053014093 "Return old cached scan as all channels and no of channels are same");
14094
Agarwal Ashish57e84372014-12-05 18:26:53 +053014095 if (0 > ret)
14096 hddLog(VOS_TRACE_LEVEL_INFO, "%s: NO SCAN result", __func__);
Agarwal Ashishbd3e10b2014-11-24 19:19:46 +053014097
Agarwal Ashish57e84372014-12-05 18:26:53 +053014098 cfg80211_scan_done(request, eCSR_SCAN_SUCCESS);
Masti, Narayanraddide03eb02015-02-06 11:23:50 +053014099
14100 status = eHAL_STATUS_SUCCESS;
14101 goto free_mem;
Agarwal Ashish57e84372014-12-05 18:26:53 +053014102 }
14103 }
Agarwal Ashishbd3e10b2014-11-24 19:19:46 +053014104 }
14105
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +053014106 /* Flush the scan results(only p2p beacons) for STA scan and P2P
14107 * search (Flush on both full scan and social scan but not on single
14108 * channel scan).P2P search happens on 3 social channels (1, 6, 11)
14109 */
14110
14111 /* Supplicant does single channel scan after 8-way handshake
14112 * and in that case driver shoudnt flush scan results. If
14113 * driver flushes the scan results here and unfortunately if
14114 * the AP doesnt respond to our probe req then association
14115 * fails which is not desired
14116 */
Deepthi Gowrid5c5c2b2015-06-11 17:00:46 +053014117 if ((request->n_ssids == 1)
14118 && (request->ssids != NULL)
14119 && vos_mem_compare(&request->ssids[0], "DIRECT-", 7))
14120 is_p2p_scan = true;
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +053014121
Deepthi Gowrid5c5c2b2015-06-11 17:00:46 +053014122 if( is_p2p_scan ||
14123 (request->n_channels != WLAN_HDD_P2P_SINGLE_CHANNEL_SCAN) )
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +053014124 {
14125 hddLog(VOS_TRACE_LEVEL_DEBUG, "Flushing P2P Results");
14126 sme_ScanFlushP2PResult( WLAN_HDD_GET_HAL_CTX(pAdapter),
14127 pAdapter->sessionId );
14128 }
14129
14130 if( request->ie_len )
14131 {
14132 /* save this for future association (join requires this) */
14133 /*TODO: Array needs to be converted to dynamic allocation,
14134 * as multiple ie.s can be sent in cfg80211_scan_request structure
14135 * CR 597966
14136 */
14137 memset( &pScanInfo->scanAddIE, 0, sizeof(pScanInfo->scanAddIE) );
14138 memcpy( pScanInfo->scanAddIE.addIEdata, request->ie, request->ie_len);
14139 pScanInfo->scanAddIE.length = request->ie_len;
14140
14141 if ((WLAN_HDD_INFRA_STATION == pAdapter->device_mode) ||
14142 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode) ||
14143 (WLAN_HDD_P2P_DEVICE == pAdapter->device_mode))
Jeff Johnson295189b2012-06-20 16:38:30 -070014144 {
Ganesh Kondabattini7500fb32015-04-10 14:50:32 +053014145 if (request->ie_len <= SIR_MAC_MAX_ADD_IE_LENGTH)
Jeff Johnson295189b2012-06-20 16:38:30 -070014146 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +053014147 pwextBuf->roamProfile.nAddIEScanLength = request->ie_len;
14148 memcpy( pwextBuf->roamProfile.addIEScan,
14149 request->ie, request->ie_len);
14150 }
14151 else
14152 {
14153 hddLog(VOS_TRACE_LEVEL_ERROR, "Scan Ie length is invalid:"
14154 "%zu", request->ie_len);
Jeff Johnson295189b2012-06-20 16:38:30 -070014155 }
14156
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +053014157 }
14158 scanRequest.uIEFieldLen = pScanInfo->scanAddIE.length;
14159 scanRequest.pIEField = pScanInfo->scanAddIE.addIEdata;
14160
14161 pP2pIe = wlan_hdd_get_p2p_ie_ptr((v_U8_t*)request->ie,
14162 request->ie_len);
14163 if (pP2pIe != NULL)
14164 {
14165#ifdef WLAN_FEATURE_P2P_DEBUG
14166 if (((globalP2PConnectionStatus == P2P_GO_NEG_COMPLETED) ||
14167 (globalP2PConnectionStatus == P2P_GO_NEG_PROCESS)) &&
14168 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode))
Nirav Shah20ac06f2013-12-12 18:14:06 +053014169 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +053014170 globalP2PConnectionStatus = P2P_CLIENT_CONNECTING_STATE_1;
14171 hddLog(VOS_TRACE_LEVEL_ERROR,"[P2P State] Changing state from "
14172 "Go nego completed to Connection is started");
14173 hddLog(VOS_TRACE_LEVEL_ERROR,"[P2P]P2P Scanning is started "
14174 "for 8way Handshake");
Nirav Shah20ac06f2013-12-12 18:14:06 +053014175 }
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +053014176 else if((globalP2PConnectionStatus == P2P_CLIENT_DISCONNECTED_STATE) &&
14177 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode))
Jeff Johnson295189b2012-06-20 16:38:30 -070014178 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +053014179 globalP2PConnectionStatus = P2P_CLIENT_CONNECTING_STATE_2;
14180 hddLog(VOS_TRACE_LEVEL_ERROR,"[P2P State] Changing state from "
14181 "Disconnected state to Connection is started");
14182 hddLog(VOS_TRACE_LEVEL_ERROR,"[P2P]P2P Scanning is started "
14183 "for 4way Handshake");
14184 }
14185#endif
14186
14187 /* no_cck will be set during p2p find to disable 11b rates */
14188 if(TRUE == request->no_cck)
14189 {
14190 hddLog(VOS_TRACE_LEVEL_INFO,
14191 "%s: This is a P2P Search", __func__);
14192 scanRequest.p2pSearch = 1;
14193
14194 if( request->n_channels == WLAN_HDD_P2P_SOCIAL_CHANNELS )
Agarwal Ashish4f616132013-12-30 23:32:50 +053014195 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +053014196 /* set requestType to P2P Discovery */
14197 scanRequest.requestType = eCSR_SCAN_P2P_DISCOVERY;
14198 }
14199
14200 /*
14201 Skip Dfs Channel in case of P2P Search
14202 if it is set in ini file
14203 */
14204 if(cfg_param->skipDfsChnlInP2pSearch)
14205 {
14206 scanRequest.skipDfsChnlInP2pSearch = 1;
Agarwal Ashish4f616132013-12-30 23:32:50 +053014207 }
14208 else
14209 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +053014210 scanRequest.skipDfsChnlInP2pSearch = 0;
Agarwal Ashish4f616132013-12-30 23:32:50 +053014211 }
Jeff Johnson295189b2012-06-20 16:38:30 -070014212
Agarwal Ashish4f616132013-12-30 23:32:50 +053014213 }
Jeff Johnson295189b2012-06-20 16:38:30 -070014214 }
14215 }
14216
14217 INIT_COMPLETION(pScanInfo->scan_req_completion_event);
14218
Pradeep Reddy POTTETIc7822df2015-02-19 20:15:41 +053014219#ifdef FEATURE_WLAN_TDLS
14220 /* if tdls disagree scan right now, return immediately.
14221 tdls will schedule the scan when scan is allowed. (return SUCCESS)
14222 or will reject the scan if any TDLS is in progress. (return -EBUSY)
14223 */
14224 status = wlan_hdd_tdls_scan_callback (pAdapter,
14225 wiphy,
14226#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,6,0))
14227 dev,
14228#endif
14229 request);
Abhishek Singhe2b63952016-01-05 18:27:29 +053014230 if (status <= 0)
Pradeep Reddy POTTETIc7822df2015-02-19 20:15:41 +053014231 {
Abhishek Singhe2b63952016-01-05 18:27:29 +053014232 if (!status)
Pradeep Reddy POTTETIc7822df2015-02-19 20:15:41 +053014233 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: TDLS in progress."
14234 "scan rejected %d", __func__, status);
14235 else
14236 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: TDLS teardown is ongoing %d",
14237 __func__, status);
Abhishek Singhe2b63952016-01-05 18:27:29 +053014238 hdd_wlan_block_scan_by_tdls();
Gupta, Kapil2ebf3e02016-03-17 19:45:19 +053014239 goto free_mem;
Pradeep Reddy POTTETIc7822df2015-02-19 20:15:41 +053014240 }
14241#endif
14242
Madan Mohan Koyyalamudi9f5a10c2012-09-28 14:46:16 -070014243 /* acquire the wakelock to avoid the apps suspend during the scan. To
14244 * address the following issues.
14245 * 1) Disconnected scenario: we are not allowing the suspend as WLAN is not in
14246 * BMPS/IMPS this result in android trying to suspend aggressively and backing off
14247 * for long time, this result in apps running at full power for long time.
14248 * 2) Connected scenario: If we allow the suspend during the scan, RIVA will
14249 * be stuck in full power because of resume BMPS
14250 */
Sushant Kaushik83392fa2015-05-05 17:44:40 +053014251 hdd_prevent_suspend(WIFI_POWER_EVENT_WAKELOCK_SCAN);
Jeff Johnsone7245742012-09-05 17:12:55 -070014252
Nirav Shah20ac06f2013-12-12 18:14:06 +053014253 hddLog(VOS_TRACE_LEVEL_INFO_HIGH,
14254 "requestType %d, scanType %d, minChnTime %d, maxChnTime %d,"
Sushant Kaushik8bc7df22014-04-09 17:55:29 +053014255 "p2pSearch %d, skipDfsChnlInP2pSearch %d",
14256 scanRequest.requestType, scanRequest.scanType,
14257 scanRequest.minChnTime, scanRequest.maxChnTime,
Nirav Shah20ac06f2013-12-12 18:14:06 +053014258 scanRequest.p2pSearch, scanRequest.skipDfsChnlInP2pSearch);
14259
Hanumantha Reddy Pothulaca1d1cc2015-10-26 15:37:35 +053014260 if (pHddCtx->spoofMacAddr.isEnabled &&
14261 pHddCtx->cfg_ini->enableMacSpoofing == 1)
Siddharth Bhal76972212014-10-15 16:22:51 +053014262 {
14263 hddLog(VOS_TRACE_LEVEL_INFO,
14264 "%s: MAC Spoofing enabled for current scan", __func__);
14265 /* Updating SelfSta Mac Addr in TL which will be used to get staidx
14266 * to fill TxBds for probe request during current scan
14267 */
Padma, Santhosh Kumar79236142015-02-09 18:19:33 +053014268 status = WLANTL_updateSpoofMacAddr(pHddCtx->pvosContext,
Siddharth Bhal76972212014-10-15 16:22:51 +053014269 &pHddCtx->spoofMacAddr.randomMacAddr, &pAdapter->macAddressCurrent);
Padma, Santhosh Kumar79236142015-02-09 18:19:33 +053014270
14271 if(status != VOS_STATUS_SUCCESS)
14272 {
Sushant Kaushik83392fa2015-05-05 17:44:40 +053014273 hdd_allow_suspend(WIFI_POWER_EVENT_WAKELOCK_SCAN);
Padma, Santhosh Kumar79236142015-02-09 18:19:33 +053014274 status = -EFAULT;
Ganesh Kondabattini6d3b4902015-05-12 23:19:22 +053014275#ifdef FEATURE_WLAN_TDLS
14276 wlan_hdd_tdls_scan_done_callback(pAdapter);
14277#endif
Padma, Santhosh Kumar79236142015-02-09 18:19:33 +053014278 goto free_mem;
14279 }
Siddharth Bhal76972212014-10-15 16:22:51 +053014280 }
Mahesh A Saptasagar51dc36c2015-06-16 12:07:15 +053014281 wlan_hdd_get_frame_logs(pAdapter, WLAN_HDD_GET_FRAME_LOG_CMD_CLEAR);
Jeff Johnsone7245742012-09-05 17:12:55 -070014282 status = sme_ScanRequest( WLAN_HDD_GET_HAL_CTX(pAdapter),
Jeff Johnson295189b2012-06-20 16:38:30 -070014283 pAdapter->sessionId, &scanRequest, &scanId,
14284 &hdd_cfg80211_scan_done_callback, dev );
Jeff Johnsone7245742012-09-05 17:12:55 -070014285
Jeff Johnson295189b2012-06-20 16:38:30 -070014286 if (eHAL_STATUS_SUCCESS != status)
14287 {
14288 hddLog(VOS_TRACE_LEVEL_ERROR,
14289 "%s: sme_ScanRequest returned error %d", __func__, status);
14290 complete(&pScanInfo->scan_req_completion_event);
Madan Mohan Koyyalamudi3b230fe2012-10-18 14:46:32 -070014291 if(eHAL_STATUS_RESOURCES == status)
14292 {
Nirav Shah20ac06f2013-12-12 18:14:06 +053014293 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: HO is in progress."
14294 "So defer the scan by informing busy",__func__);
Madan Mohan Koyyalamudi3b230fe2012-10-18 14:46:32 -070014295 status = -EBUSY;
14296 } else {
14297 status = -EIO;
14298 }
Sushant Kaushik83392fa2015-05-05 17:44:40 +053014299 hdd_allow_suspend(WIFI_POWER_EVENT_WAKELOCK_SCAN);
Pradeep Reddy POTTETIc7822df2015-02-19 20:15:41 +053014300
14301#ifdef FEATURE_WLAN_TDLS
14302 wlan_hdd_tdls_scan_done_callback(pAdapter);
14303#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070014304 goto free_mem;
14305 }
14306
14307 pScanInfo->mScanPending = TRUE;
Kaushik, Sushant4975a572014-10-21 16:07:48 +053014308 pScanInfo->sessionId = pAdapter->sessionId;
Jeff Johnson295189b2012-06-20 16:38:30 -070014309 pAdapter->request = request;
14310 pScanInfo->scanId = scanId;
14311
14312 complete(&pScanInfo->scan_req_completion_event);
14313
14314free_mem:
14315 if( scanRequest.SSIDs.SSIDList )
14316 {
14317 vos_mem_free(scanRequest.SSIDs.SSIDList);
14318 }
14319
14320 if( channelList )
14321 vos_mem_free( channelList );
14322
14323 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -070014324 return status;
14325}
14326
Mahesh A Saptasagarfafb7fe2014-05-16 13:19:37 +053014327int wlan_hdd_cfg80211_scan( struct wiphy *wiphy,
14328#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,6,0))
14329 struct net_device *dev,
14330#endif
14331 struct cfg80211_scan_request *request)
14332{
14333 int ret;
14334
14335 vos_ssr_protect(__func__);
14336 ret = __wlan_hdd_cfg80211_scan(wiphy,
14337#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,6,0))
14338 dev,
14339#endif
14340 request);
14341 vos_ssr_unprotect(__func__);
14342
14343 return ret;
14344}
Shailender Karmuchi15cd0672013-05-15 19:50:04 -070014345
14346void hdd_select_cbmode( hdd_adapter_t *pAdapter,v_U8_t operationChannel)
14347{
14348 v_U8_t iniDot11Mode =
14349 (WLAN_HDD_GET_CTX(pAdapter))->cfg_ini->dot11Mode;
14350 eHddDot11Mode hddDot11Mode = iniDot11Mode;
14351
Arun Kumar Khandavalli94a2bb02013-12-28 19:17:25 +053014352 hddLog(LOG1, FL("Channel Bonding Mode Selected is %u"),
14353 iniDot11Mode);
Shailender Karmuchi15cd0672013-05-15 19:50:04 -070014354 switch ( iniDot11Mode )
14355 {
14356 case eHDD_DOT11_MODE_AUTO:
14357 case eHDD_DOT11_MODE_11ac:
14358 case eHDD_DOT11_MODE_11ac_ONLY:
14359#ifdef WLAN_FEATURE_11AC
Abhishek Singh4b1d2352014-08-01 21:59:28 +053014360 if ( sme_IsFeatureSupportedByDriver(DOT11AC) &&
14361 sme_IsFeatureSupportedByFW(DOT11AC) )
14362 hddDot11Mode = eHDD_DOT11_MODE_11ac;
14363 else
14364 hddDot11Mode = eHDD_DOT11_MODE_11n;
Shailender Karmuchi15cd0672013-05-15 19:50:04 -070014365#else
14366 hddDot11Mode = eHDD_DOT11_MODE_11n;
14367#endif
14368 break;
14369 case eHDD_DOT11_MODE_11n:
14370 case eHDD_DOT11_MODE_11n_ONLY:
14371 hddDot11Mode = eHDD_DOT11_MODE_11n;
14372 break;
14373 default:
14374 hddDot11Mode = iniDot11Mode;
14375 break;
14376 }
Hardik Kantilal Patel086e0a32014-11-20 14:56:26 +053014377#ifdef WLAN_FEATURE_AP_HT40_24G
14378 if (operationChannel > SIR_11B_CHANNEL_END)
14379#endif
14380 {
14381 /* This call decides required channel bonding mode */
14382 sme_SelectCBMode((WLAN_HDD_GET_CTX(pAdapter)->hHal),
Shailender Karmuchi15cd0672013-05-15 19:50:04 -070014383 hdd_cfg_xlate_to_csr_phy_mode(hddDot11Mode),
14384 operationChannel);
Hardik Kantilal Patel086e0a32014-11-20 14:56:26 +053014385 }
Shailender Karmuchi15cd0672013-05-15 19:50:04 -070014386}
14387
Jeff Johnson295189b2012-06-20 16:38:30 -070014388/*
14389 * FUNCTION: wlan_hdd_cfg80211_connect_start
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014390 * This function is used to start the association process
Jeff Johnson295189b2012-06-20 16:38:30 -070014391 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014392int wlan_hdd_cfg80211_connect_start( hdd_adapter_t *pAdapter,
Hanumantha Reddy Pothula64081b72015-09-11 15:47:32 +053014393 const u8 *ssid, size_t ssid_len, const u8 *bssid,
14394 const u8 *bssid_hint, u8 operatingChannel)
Jeff Johnson295189b2012-06-20 16:38:30 -070014395{
14396 int status = 0;
14397 hdd_wext_state_t *pWextState;
Yue Mae36e3552014-03-05 17:06:20 -080014398 hdd_context_t *pHddCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -070014399 v_U32_t roamId;
14400 tCsrRoamProfile *pRoamProfile;
Jeff Johnson295189b2012-06-20 16:38:30 -070014401 eCsrAuthType RSNAuthType;
14402
14403 ENTER();
14404
14405 pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Yue Mae36e3552014-03-05 17:06:20 -080014406 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
14407
14408 status = wlan_hdd_validate_context(pHddCtx);
14409 if (status)
14410 {
Yue Mae36e3552014-03-05 17:06:20 -080014411 return status;
14412 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014413
Jeff Johnson295189b2012-06-20 16:38:30 -070014414 if (SIR_MAC_MAX_SSID_LENGTH < ssid_len)
14415 {
14416 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: wrong SSID len", __func__);
14417 return -EINVAL;
14418 }
14419
14420 pRoamProfile = &pWextState->roamProfile;
14421
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014422 if (pRoamProfile)
Jeff Johnson295189b2012-06-20 16:38:30 -070014423 {
Jeff Johnsone7245742012-09-05 17:12:55 -070014424 hdd_station_ctx_t *pHddStaCtx;
14425 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -070014426
Siddharth Bhalda0d1622015-04-24 15:47:49 +053014427 wlan_hdd_get_frame_logs(pAdapter, WLAN_HDD_GET_FRAME_LOG_CMD_CLEAR);
14428
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014429 if (HDD_WMM_USER_MODE_NO_QOS ==
Jeff Johnson295189b2012-06-20 16:38:30 -070014430 (WLAN_HDD_GET_CTX(pAdapter))->cfg_ini->WmmMode)
14431 {
14432 /*QoS not enabled in cfg file*/
14433 pRoamProfile->uapsd_mask = 0;
14434 }
14435 else
14436 {
14437 /*QoS enabled, update uapsd mask from cfg file*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014438 pRoamProfile->uapsd_mask =
Jeff Johnson295189b2012-06-20 16:38:30 -070014439 (WLAN_HDD_GET_CTX(pAdapter))->cfg_ini->UapsdMask;
14440 }
14441
14442 pRoamProfile->SSIDs.numOfSSIDs = 1;
14443 pRoamProfile->SSIDs.SSIDList->SSID.length = ssid_len;
14444 vos_mem_zero(pRoamProfile->SSIDs.SSIDList->SSID.ssId,
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014445 sizeof(pRoamProfile->SSIDs.SSIDList->SSID.ssId));
Jeff Johnson295189b2012-06-20 16:38:30 -070014446 vos_mem_copy((void *)(pRoamProfile->SSIDs.SSIDList->SSID.ssId),
14447 ssid, ssid_len);
14448
Abhishek Singhb3e376c2017-01-04 15:27:13 +053014449 vos_mem_zero(pRoamProfile->BSSIDs.bssid, WNI_CFG_BSSID_LEN);
14450 vos_mem_zero(pRoamProfile->bssid_hint, WNI_CFG_BSSID_LEN);
14451
Jeff Johnson295189b2012-06-20 16:38:30 -070014452 if (bssid)
14453 {
14454 pRoamProfile->BSSIDs.numOfBSSIDs = 1;
Abhishek Singhb3e376c2017-01-04 15:27:13 +053014455 vos_mem_copy(pRoamProfile->BSSIDs.bssid, bssid,
Jeff Johnson295189b2012-06-20 16:38:30 -070014456 WNI_CFG_BSSID_LEN);
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014457 /* Save BSSID in seperate variable as well, as RoamProfile
14458 BSSID is getting zeroed out in the association process. And in
Jeff Johnson295189b2012-06-20 16:38:30 -070014459 case of join failure we should send valid BSSID to supplicant
14460 */
Abhishek Singhb3e376c2017-01-04 15:27:13 +053014461 vos_mem_copy(pWextState->req_bssId, bssid,
Jeff Johnson295189b2012-06-20 16:38:30 -070014462 WNI_CFG_BSSID_LEN);
Abhishek Singhb3e376c2017-01-04 15:27:13 +053014463
Jeff Johnson295189b2012-06-20 16:38:30 -070014464 }
Abhishek Singhb3e376c2017-01-04 15:27:13 +053014465 else if (bssid_hint)
Dhanashri Atre51981c62013-06-13 11:47:57 -070014466 {
Abhishek Singhb3e376c2017-01-04 15:27:13 +053014467 /* Store bssid_hint to use in the scan filter. */
14468 vos_mem_copy(pRoamProfile->bssid_hint, bssid_hint,
14469 WNI_CFG_BSSID_LEN);
14470 /*
14471 * Save BSSID in seperate variable as well, as RoamProfile
14472 * BSSID is getting zeroed out in the association process. And in
14473 * case of join failure we should send valid BSSID to supplicant
14474 */
14475 vos_mem_copy(pWextState->req_bssId, bssid_hint,
14476 WNI_CFG_BSSID_LEN);
14477 hddLog(LOG1, FL(" bssid_hint: "MAC_ADDRESS_STR),
14478 MAC_ADDR_ARRAY(pRoamProfile->bssid_hint));
Dhanashri Atre51981c62013-06-13 11:47:57 -070014479 }
Jeff Johnson295189b2012-06-20 16:38:30 -070014480
Abhishek Singhb3e376c2017-01-04 15:27:13 +053014481
Arun Kumar Khandavalli94a2bb02013-12-28 19:17:25 +053014482 hddLog(LOG1, FL("Connect to SSID: %s opertating Channel: %u"),
14483 pRoamProfile->SSIDs.SSIDList->SSID.ssId, operatingChannel);
Jeff Johnson295189b2012-06-20 16:38:30 -070014484 if ((IW_AUTH_WPA_VERSION_WPA == pWextState->wpaVersion) ||
14485 (IW_AUTH_WPA_VERSION_WPA2 == pWextState->wpaVersion))
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014486 {
Jeff Johnson295189b2012-06-20 16:38:30 -070014487 /*set gen ie*/
14488 hdd_SetGENIEToCsr(pAdapter, &RSNAuthType);
14489 /*set auth*/
14490 hdd_set_csr_auth_type(pAdapter, RSNAuthType);
14491 }
Jeff Johnson295189b2012-06-20 16:38:30 -070014492#ifdef FEATURE_WLAN_WAPI
14493 if (pAdapter->wapi_info.nWapiMode)
14494 {
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -070014495 hddLog(LOG1, "%s: Setting WAPI AUTH Type and Encryption Mode values", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -070014496 switch (pAdapter->wapi_info.wapiAuthMode)
14497 {
14498 case WAPI_AUTH_MODE_PSK:
14499 {
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -070014500 hddLog(LOG1, "%s: WAPI AUTH TYPE: PSK: %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -070014501 pAdapter->wapi_info.wapiAuthMode);
14502 pRoamProfile->AuthType.authType[0] = eCSR_AUTH_TYPE_WAPI_WAI_PSK;
14503 break;
14504 }
14505 case WAPI_AUTH_MODE_CERT:
14506 {
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -070014507 hddLog(LOG1, "%s: WAPI AUTH TYPE: CERT: %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -070014508 pAdapter->wapi_info.wapiAuthMode);
14509 pRoamProfile->AuthType.authType[0] = eCSR_AUTH_TYPE_WAPI_WAI_CERTIFICATE;
14510 break;
14511 }
14512 } // End of switch
14513 if ( pAdapter->wapi_info.wapiAuthMode == WAPI_AUTH_MODE_PSK ||
14514 pAdapter->wapi_info.wapiAuthMode == WAPI_AUTH_MODE_CERT)
14515 {
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -070014516 hddLog(LOG1, "%s: WAPI PAIRWISE/GROUP ENCRYPTION: WPI", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -070014517 pRoamProfile->AuthType.numEntries = 1;
14518 pRoamProfile->EncryptionType.numEntries = 1;
14519 pRoamProfile->EncryptionType.encryptionType[0] = eCSR_ENCRYPT_TYPE_WPI;
14520 pRoamProfile->mcEncryptionType.numEntries = 1;
14521 pRoamProfile->mcEncryptionType.encryptionType[0] = eCSR_ENCRYPT_TYPE_WPI;
14522 }
14523 }
14524#endif /* FEATURE_WLAN_WAPI */
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053014525#ifdef WLAN_FEATURE_GTK_OFFLOAD
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053014526 /* Initializing gtkOffloadReqParams */
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053014527 if ((WLAN_HDD_INFRA_STATION == pAdapter->device_mode) ||
14528 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode))
14529 {
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053014530 memset(&pHddStaCtx->gtkOffloadReqParams, 0,
14531 sizeof (tSirGtkOffloadParams));
14532 pHddStaCtx->gtkOffloadReqParams.ulFlags = GTK_OFFLOAD_DISABLE;
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053014533 }
14534#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070014535 pRoamProfile->csrPersona = pAdapter->device_mode;
14536
Jeff Johnson32d95a32012-09-10 13:15:23 -070014537 if( operatingChannel )
14538 {
14539 pRoamProfile->ChannelInfo.ChannelList = &operatingChannel;
14540 pRoamProfile->ChannelInfo.numOfChannels = 1;
14541 }
Chet Lanctot186b5732013-03-18 10:26:30 -070014542 else
14543 {
14544 pRoamProfile->ChannelInfo.ChannelList = NULL;
14545 pRoamProfile->ChannelInfo.numOfChannels = 0;
14546 }
Shailender Karmuchi15cd0672013-05-15 19:50:04 -070014547 if ( (WLAN_HDD_IBSS == pAdapter->device_mode) && operatingChannel)
14548 {
14549 hdd_select_cbmode(pAdapter,operatingChannel);
14550 }
Arun Kumar Khandavalli94a2bb02013-12-28 19:17:25 +053014551
Agarwal Ashish40f9b872015-09-01 16:17:35 +053014552 /*
14553 * Change conn_state to connecting before sme_RoamConnect(),
14554 * because sme_RoamConnect() has a direct path to call
14555 * hdd_smeRoamCallback(), which will change the conn_state
14556 * If direct path, conn_state will be accordingly changed
14557 * to NotConnected or Associated by either
14558 * hdd_AssociationCompletionHandler() or hdd_DisConnectHandler()
14559 * in sme_RoamCallback()
14560 * if sme_RomConnect is to be queued,
14561 * Connecting state will remain until it is completed.
14562 * If connection state is not changed,
14563 * connection state will remain in eConnectionState_NotConnected state.
14564 * In hdd_AssociationCompletionHandler, "hddDisconInProgress" is set to true
14565 * if conn state is eConnectionState_NotConnected.
14566 * If "hddDisconInProgress" is set to true then cfg80211 layer is not
14567 * informed of connect result indication which is an issue.
14568 */
14569
Gopichand Nakkalaa3c8fb62013-06-21 15:36:42 +053014570 if (WLAN_HDD_INFRA_STATION == pAdapter->device_mode ||
14571 WLAN_HDD_P2P_CLIENT == pAdapter->device_mode)
Abhishek Singhf4669da2014-05-26 15:07:49 +053014572 {
14573 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Agarwal Ashish40f9b872015-09-01 16:17:35 +053014574 FL("Set HDD connState to eConnectionState_Connecting"));
Madan Mohan Koyyalamudidf86c422012-12-04 17:03:44 -080014575 hdd_connSetConnectionState(WLAN_HDD_GET_STATION_CTX_PTR(pAdapter),
14576 eConnectionState_Connecting);
Abhishek Singhf4669da2014-05-26 15:07:49 +053014577 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014578 status = sme_RoamConnect( WLAN_HDD_GET_HAL_CTX(pAdapter),
Jeff Johnson295189b2012-06-20 16:38:30 -070014579 pAdapter->sessionId, pRoamProfile, &roamId);
14580
Gopichand Nakkalaa3c8fb62013-06-21 15:36:42 +053014581 if ((eHAL_STATUS_SUCCESS != status) &&
14582 (WLAN_HDD_INFRA_STATION == pAdapter->device_mode ||
14583 WLAN_HDD_P2P_CLIENT == pAdapter->device_mode))
Madan Mohan Koyyalamudid5acbf52012-11-28 01:45:08 +053014584
14585 {
Agarwal Ashish40f9b872015-09-01 16:17:35 +053014586 hddLog(VOS_TRACE_LEVEL_ERROR,
14587 FL("sme_RoamConnect (session %d) failed with status %d. -> NotConnected"),
14588 pAdapter->sessionId, status);
Madan Mohan Koyyalamudi42dcd162012-12-03 16:34:04 -080014589 /* change back to NotAssociated */
Madan Mohan Koyyalamudid5acbf52012-11-28 01:45:08 +053014590 hdd_connSetConnectionState(WLAN_HDD_GET_STATION_CTX_PTR(pAdapter),
Madan Mohan Koyyalamudi42dcd162012-12-03 16:34:04 -080014591 eConnectionState_NotConnected);
Madan Mohan Koyyalamudid5acbf52012-11-28 01:45:08 +053014592 }
Madan Mohan Koyyalamudidf86c422012-12-04 17:03:44 -080014593
14594 pRoamProfile->ChannelInfo.ChannelList = NULL;
14595 pRoamProfile->ChannelInfo.numOfChannels = 0;
14596
Jeff Johnson295189b2012-06-20 16:38:30 -070014597 }
14598 else
14599 {
14600 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: No valid Roam profile", __func__);
14601 return -EINVAL;
14602 }
Madan Mohan Koyyalamudifd4e1da2012-11-09 17:50:19 -080014603 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -070014604 return status;
14605}
14606
14607/*
14608 * FUNCTION: wlan_hdd_set_cfg80211_auth_type
14609 * This function is used to set the authentication type (OPEN/SHARED).
14610 *
14611 */
14612static int wlan_hdd_cfg80211_set_auth_type(hdd_adapter_t *pAdapter,
14613 enum nl80211_auth_type auth_type)
14614{
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014615 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -070014616 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
14617
14618 ENTER();
14619
14620 /*set authentication type*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014621 switch (auth_type)
Jeff Johnson295189b2012-06-20 16:38:30 -070014622 {
Jeff Johnson295189b2012-06-20 16:38:30 -070014623 case NL80211_AUTHTYPE_AUTOMATIC:
Gopichand Nakkala29149562013-05-10 21:43:41 +053014624 hddLog(VOS_TRACE_LEVEL_INFO,
14625 "%s: set authentication type to AUTOSWITCH", __func__);
14626 pHddStaCtx->conn_info.authType = eCSR_AUTH_TYPE_AUTOSWITCH;
14627 break;
14628
14629 case NL80211_AUTHTYPE_OPEN_SYSTEM:
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070014630#ifdef WLAN_FEATURE_VOWIFI_11R
14631 case NL80211_AUTHTYPE_FT:
14632#endif /* WLAN_FEATURE_VOWIFI_11R */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014633 hddLog(VOS_TRACE_LEVEL_INFO,
Jeff Johnson295189b2012-06-20 16:38:30 -070014634 "%s: set authentication type to OPEN", __func__);
14635 pHddStaCtx->conn_info.authType = eCSR_AUTH_TYPE_OPEN_SYSTEM;
14636 break;
14637
14638 case NL80211_AUTHTYPE_SHARED_KEY:
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014639 hddLog(VOS_TRACE_LEVEL_INFO,
Jeff Johnson295189b2012-06-20 16:38:30 -070014640 "%s: set authentication type to SHARED", __func__);
14641 pHddStaCtx->conn_info.authType = eCSR_AUTH_TYPE_SHARED_KEY;
14642 break;
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -080014643#ifdef FEATURE_WLAN_ESE
Jeff Johnson295189b2012-06-20 16:38:30 -070014644 case NL80211_AUTHTYPE_NETWORK_EAP:
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014645 hddLog(VOS_TRACE_LEVEL_INFO,
Jeff Johnson295189b2012-06-20 16:38:30 -070014646 "%s: set authentication type to CCKM WPA", __func__);
14647 pHddStaCtx->conn_info.authType = eCSR_AUTH_TYPE_CCKM_WPA;//eCSR_AUTH_TYPE_CCKM_RSN needs to be handled as well if required.
14648 break;
14649#endif
14650
14651
14652 default:
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014653 hddLog(VOS_TRACE_LEVEL_ERROR,
14654 "%s: Unsupported authentication type %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -070014655 auth_type);
14656 pHddStaCtx->conn_info.authType = eCSR_AUTH_TYPE_UNKNOWN;
14657 return -EINVAL;
14658 }
14659
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014660 pWextState->roamProfile.AuthType.authType[0] =
Jeff Johnson295189b2012-06-20 16:38:30 -070014661 pHddStaCtx->conn_info.authType;
14662 return 0;
14663}
14664
14665/*
14666 * FUNCTION: wlan_hdd_set_akm_suite
14667 * This function is used to set the key mgmt type(PSK/8021x).
14668 *
14669 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014670static int wlan_hdd_set_akm_suite( hdd_adapter_t *pAdapter,
Jeff Johnson295189b2012-06-20 16:38:30 -070014671 u32 key_mgmt
14672 )
14673{
14674 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
14675 ENTER();
Abhishek Singhae408032014-09-25 17:22:04 +053014676 /* Should be in ieee802_11_defs.h */
14677#define WLAN_AKM_SUITE_8021X_SHA256 0x000FAC05
14678#define WLAN_AKM_SUITE_PSK_SHA256 0x000FAC06
Jeff Johnson295189b2012-06-20 16:38:30 -070014679 /*set key mgmt type*/
14680 switch(key_mgmt)
14681 {
14682 case WLAN_AKM_SUITE_PSK:
Abhishek Singhae408032014-09-25 17:22:04 +053014683 case WLAN_AKM_SUITE_PSK_SHA256:
Gopichand Nakkala356fb102013-03-06 12:34:04 +053014684#ifdef WLAN_FEATURE_VOWIFI_11R
14685 case WLAN_AKM_SUITE_FT_PSK:
14686#endif
14687 hddLog(VOS_TRACE_LEVEL_INFO, "%s: setting key mgmt type to PSK",
Jeff Johnson295189b2012-06-20 16:38:30 -070014688 __func__);
14689 pWextState->authKeyMgmt |= IW_AUTH_KEY_MGMT_PSK;
14690 break;
14691
14692 case WLAN_AKM_SUITE_8021X:
Abhishek Singhae408032014-09-25 17:22:04 +053014693 case WLAN_AKM_SUITE_8021X_SHA256:
Gopichand Nakkala356fb102013-03-06 12:34:04 +053014694#ifdef WLAN_FEATURE_VOWIFI_11R
14695 case WLAN_AKM_SUITE_FT_8021X:
14696#endif
14697 hddLog(VOS_TRACE_LEVEL_INFO, "%s: setting key mgmt type to 8021x",
Jeff Johnson295189b2012-06-20 16:38:30 -070014698 __func__);
14699 pWextState->authKeyMgmt |= IW_AUTH_KEY_MGMT_802_1X;
14700 break;
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -080014701#ifdef FEATURE_WLAN_ESE
Jeff Johnson295189b2012-06-20 16:38:30 -070014702#define WLAN_AKM_SUITE_CCKM 0x00409600 /* Should be in ieee802_11_defs.h */
14703#define IW_AUTH_KEY_MGMT_CCKM 8 /* Should be in linux/wireless.h */
14704 case WLAN_AKM_SUITE_CCKM:
14705 hddLog(VOS_TRACE_LEVEL_INFO, "%s: setting key mgmt type to CCKM",
14706 __func__);
14707 pWextState->authKeyMgmt |= IW_AUTH_KEY_MGMT_CCKM;
14708 break;
14709#endif
Leela Venkata Kiran Kumar Reddy Chiralae208a832014-04-27 22:34:25 -070014710#ifndef WLAN_AKM_SUITE_OSEN
14711#define WLAN_AKM_SUITE_OSEN 0x506f9a01 /* Should be in ieee802_11_defs.h */
14712 case WLAN_AKM_SUITE_OSEN:
14713 hddLog(VOS_TRACE_LEVEL_INFO, "%s: setting key mgmt type to OSEN",
14714 __func__);
14715 pWextState->authKeyMgmt |= IW_AUTH_KEY_MGMT_802_1X;
14716 break;
14717#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070014718
14719 default:
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014720 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Unsupported key mgmt type %d",
Jeff Johnson295189b2012-06-20 16:38:30 -070014721 __func__, key_mgmt);
14722 return -EINVAL;
14723
14724 }
14725 return 0;
14726}
14727
14728/*
14729 * FUNCTION: wlan_hdd_cfg80211_set_cipher
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014730 * This function is used to set the encryption type
Jeff Johnson295189b2012-06-20 16:38:30 -070014731 * (NONE/WEP40/WEP104/TKIP/CCMP).
14732 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014733static int wlan_hdd_cfg80211_set_cipher( hdd_adapter_t *pAdapter,
14734 u32 cipher,
Jeff Johnson295189b2012-06-20 16:38:30 -070014735 bool ucast
14736 )
14737{
14738 eCsrEncryptionType encryptionType = eCSR_ENCRYPT_TYPE_NONE;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014739 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -070014740 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
14741
14742 ENTER();
14743
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014744 if (!cipher)
Jeff Johnson295189b2012-06-20 16:38:30 -070014745 {
Ratheesh S P36dbc932015-08-07 14:28:57 +053014746 hddLog(VOS_TRACE_LEVEL_INFO, "%s: received cipher %d - considering none",
Jeff Johnson295189b2012-06-20 16:38:30 -070014747 __func__, cipher);
14748 encryptionType = eCSR_ENCRYPT_TYPE_NONE;
14749 }
14750 else
14751 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014752
Jeff Johnson295189b2012-06-20 16:38:30 -070014753 /*set encryption method*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014754 switch (cipher)
Jeff Johnson295189b2012-06-20 16:38:30 -070014755 {
14756 case IW_AUTH_CIPHER_NONE:
14757 encryptionType = eCSR_ENCRYPT_TYPE_NONE;
14758 break;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014759
Jeff Johnson295189b2012-06-20 16:38:30 -070014760 case WLAN_CIPHER_SUITE_WEP40:
Gopichand Nakkala29149562013-05-10 21:43:41 +053014761 encryptionType = eCSR_ENCRYPT_TYPE_WEP40;
Jeff Johnson295189b2012-06-20 16:38:30 -070014762 break;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014763
Jeff Johnson295189b2012-06-20 16:38:30 -070014764 case WLAN_CIPHER_SUITE_WEP104:
Gopichand Nakkala29149562013-05-10 21:43:41 +053014765 encryptionType = eCSR_ENCRYPT_TYPE_WEP104;
Jeff Johnson295189b2012-06-20 16:38:30 -070014766 break;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014767
Jeff Johnson295189b2012-06-20 16:38:30 -070014768 case WLAN_CIPHER_SUITE_TKIP:
14769 encryptionType = eCSR_ENCRYPT_TYPE_TKIP;
14770 break;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014771
Jeff Johnson295189b2012-06-20 16:38:30 -070014772 case WLAN_CIPHER_SUITE_CCMP:
14773 encryptionType = eCSR_ENCRYPT_TYPE_AES;
14774 break;
14775#ifdef FEATURE_WLAN_WAPI
14776 case WLAN_CIPHER_SUITE_SMS4:
14777 encryptionType = eCSR_ENCRYPT_TYPE_WPI;
14778 break;
14779#endif
14780
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -080014781#ifdef FEATURE_WLAN_ESE
Jeff Johnson295189b2012-06-20 16:38:30 -070014782 case WLAN_CIPHER_SUITE_KRK:
14783 encryptionType = eCSR_ENCRYPT_TYPE_KRK;
14784 break;
14785#endif
14786 default:
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014787 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Unsupported cipher type %d",
Jeff Johnson295189b2012-06-20 16:38:30 -070014788 __func__, cipher);
14789 return -EOPNOTSUPP;
14790 }
14791 }
14792
14793 if (ucast)
14794 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014795 hddLog(VOS_TRACE_LEVEL_INFO, "%s: setting unicast cipher type to %d",
Jeff Johnson295189b2012-06-20 16:38:30 -070014796 __func__, encryptionType);
14797 pHddStaCtx->conn_info.ucEncryptionType = encryptionType;
14798 pWextState->roamProfile.EncryptionType.numEntries = 1;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014799 pWextState->roamProfile.EncryptionType.encryptionType[0] =
Jeff Johnson295189b2012-06-20 16:38:30 -070014800 encryptionType;
14801 }
14802 else
14803 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014804 hddLog(VOS_TRACE_LEVEL_INFO, "%s: setting mcast cipher type to %d",
Jeff Johnson295189b2012-06-20 16:38:30 -070014805 __func__, encryptionType);
14806 pHddStaCtx->conn_info.mcEncryptionType = encryptionType;
14807 pWextState->roamProfile.mcEncryptionType.numEntries = 1;
14808 pWextState->roamProfile.mcEncryptionType.encryptionType[0] = encryptionType;
14809 }
14810
14811 return 0;
14812}
14813
14814
14815/*
14816 * FUNCTION: wlan_hdd_cfg80211_set_ie
14817 * This function is used to parse WPA/RSN IE's.
14818 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014819int wlan_hdd_cfg80211_set_ie( hdd_adapter_t *pAdapter,
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053014820#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,18,0))
14821 const u8 *ie,
14822#else
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014823 u8 *ie,
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053014824#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070014825 size_t ie_len
14826 )
14827{
14828 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053014829#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,18,0))
14830 const u8 *genie = ie;
14831#else
Jeff Johnson295189b2012-06-20 16:38:30 -070014832 u8 *genie = ie;
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053014833#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070014834 v_U16_t remLen = ie_len;
14835#ifdef FEATURE_WLAN_WAPI
14836 v_U32_t akmsuite[MAX_NUM_AKM_SUITES];
14837 u16 *tmp;
14838 v_U16_t akmsuiteCount;
14839 int *akmlist;
14840#endif
14841 ENTER();
14842
14843 /* clear previous assocAddIE */
14844 pWextState->assocAddIE.length = 0;
14845 pWextState->roamProfile.bWPSAssociation = VOS_FALSE;
Leela Venkata Kiran Kumar Reddy Chiralaf257bef2014-04-11 18:48:12 -070014846 pWextState->roamProfile.bOSENAssociation = VOS_FALSE;
Jeff Johnson295189b2012-06-20 16:38:30 -070014847
14848 while (remLen >= 2)
14849 {
14850 v_U16_t eLen = 0;
14851 v_U8_t elementId;
14852 elementId = *genie++;
14853 eLen = *genie++;
14854 remLen -= 2;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014855
Arif Hussain6d2a3322013-11-17 19:50:10 -080014856 hddLog(VOS_TRACE_LEVEL_INFO, "%s: IE[0x%X], LEN[%d]",
Jeff Johnson295189b2012-06-20 16:38:30 -070014857 __func__, elementId, eLen);
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014858
14859 switch ( elementId )
Jeff Johnson295189b2012-06-20 16:38:30 -070014860 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014861 case DOT11F_EID_WPA:
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -070014862 if (4 > eLen) /* should have at least OUI which is 4 bytes so extra 2 bytes not needed */
Jeff Johnson295189b2012-06-20 16:38:30 -070014863 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014864 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -070014865 "%s: Invalid WPA IE", __func__);
14866 return -EINVAL;
14867 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014868 else if (0 == memcmp(&genie[0], "\x00\x50\xf2\x04", 4))
Jeff Johnson295189b2012-06-20 16:38:30 -070014869 {
14870 v_U16_t curAddIELen = pWextState->assocAddIE.length;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014871 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set WPS IE(len %d)",
Jeff Johnson295189b2012-06-20 16:38:30 -070014872 __func__, eLen + 2);
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014873
Ganesh Kondabattini7500fb32015-04-10 14:50:32 +053014874 if( SIR_MAC_MAX_ADD_IE_LENGTH < (pWextState->assocAddIE.length + eLen) )
Jeff Johnson295189b2012-06-20 16:38:30 -070014875 {
Jeff Johnson902c9832012-12-10 14:28:09 -080014876 hddLog(VOS_TRACE_LEVEL_FATAL, "Cannot accommodate assocAddIE. "
14877 "Need bigger buffer space");
Jeff Johnson295189b2012-06-20 16:38:30 -070014878 VOS_ASSERT(0);
14879 return -ENOMEM;
14880 }
14881 // WSC IE is saved to Additional IE ; it should be accumulated to handle WPS IE + P2P IE
14882 memcpy( pWextState->assocAddIE.addIEdata + curAddIELen, genie - 2, eLen + 2);
14883 pWextState->assocAddIE.length += eLen + 2;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014884
Jeff Johnson295189b2012-06-20 16:38:30 -070014885 pWextState->roamProfile.bWPSAssociation = VOS_TRUE;
14886 pWextState->roamProfile.pAddIEAssoc = pWextState->assocAddIE.addIEdata;
14887 pWextState->roamProfile.nAddIEAssocLength = pWextState->assocAddIE.length;
14888 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014889 else if (0 == memcmp(&genie[0], "\x00\x50\xf2", 3))
14890 {
Jeff Johnson295189b2012-06-20 16:38:30 -070014891 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set WPA IE (len %d)",__func__, eLen + 2);
14892 memset( pWextState->WPARSNIE, 0, MAX_WPA_RSN_IE_LEN );
14893 memcpy( pWextState->WPARSNIE, genie - 2, (eLen + 2) /*ie_len*/);
14894 pWextState->roamProfile.pWPAReqIE = pWextState->WPARSNIE;
14895 pWextState->roamProfile.nWPAReqIELength = eLen + 2;//ie_len;
14896 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014897 else if ( (0 == memcmp(&genie[0], P2P_OUI_TYPE,
Kiet Lam8da98992013-11-21 15:59:07 +053014898 P2P_OUI_TYPE_SIZE)))
Jeff Johnson295189b2012-06-20 16:38:30 -070014899 {
14900 v_U16_t curAddIELen = pWextState->assocAddIE.length;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014901 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set P2P IE(len %d)",
Jeff Johnson295189b2012-06-20 16:38:30 -070014902 __func__, eLen + 2);
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014903
Ganesh Kondabattini7500fb32015-04-10 14:50:32 +053014904 if( SIR_MAC_MAX_ADD_IE_LENGTH < (pWextState->assocAddIE.length + eLen) )
Jeff Johnson295189b2012-06-20 16:38:30 -070014905 {
Jeff Johnson902c9832012-12-10 14:28:09 -080014906 hddLog(VOS_TRACE_LEVEL_FATAL, "Cannot accommodate assocAddIE "
14907 "Need bigger buffer space");
Jeff Johnson295189b2012-06-20 16:38:30 -070014908 VOS_ASSERT(0);
14909 return -ENOMEM;
14910 }
14911 // P2P IE is saved to Additional IE ; it should be accumulated to handle WPS IE + P2P IE
14912 memcpy( pWextState->assocAddIE.addIEdata + curAddIELen, genie - 2, eLen + 2);
14913 pWextState->assocAddIE.length += eLen + 2;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014914
Jeff Johnson295189b2012-06-20 16:38:30 -070014915 pWextState->roamProfile.pAddIEAssoc = pWextState->assocAddIE.addIEdata;
14916 pWextState->roamProfile.nAddIEAssocLength = pWextState->assocAddIE.length;
14917 }
Jeff Johnson295189b2012-06-20 16:38:30 -070014918#ifdef WLAN_FEATURE_WFD
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014919 else if ( (0 == memcmp(&genie[0], WFD_OUI_TYPE,
14920 WFD_OUI_TYPE_SIZE))
Jeff Johnson295189b2012-06-20 16:38:30 -070014921 /*Consider WFD IE, only for P2P Client */
14922 && (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode) )
14923 {
14924 v_U16_t curAddIELen = pWextState->assocAddIE.length;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014925 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set WFD IE(len %d)",
Jeff Johnson295189b2012-06-20 16:38:30 -070014926 __func__, eLen + 2);
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014927
Ganesh Kondabattini7500fb32015-04-10 14:50:32 +053014928 if( SIR_MAC_MAX_ADD_IE_LENGTH < (pWextState->assocAddIE.length + eLen) )
Jeff Johnson295189b2012-06-20 16:38:30 -070014929 {
Jeff Johnson902c9832012-12-10 14:28:09 -080014930 hddLog(VOS_TRACE_LEVEL_FATAL, "Cannot accommodate assocAddIE "
14931 "Need bigger buffer space");
Jeff Johnson295189b2012-06-20 16:38:30 -070014932 VOS_ASSERT(0);
14933 return -ENOMEM;
14934 }
14935 // WFD IE is saved to Additional IE ; it should be accumulated to handle
14936 // WPS IE + P2P IE + WFD IE
14937 memcpy( pWextState->assocAddIE.addIEdata + curAddIELen, genie - 2, eLen + 2);
14938 pWextState->assocAddIE.length += eLen + 2;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014939
Jeff Johnson295189b2012-06-20 16:38:30 -070014940 pWextState->roamProfile.pAddIEAssoc = pWextState->assocAddIE.addIEdata;
14941 pWextState->roamProfile.nAddIEAssocLength = pWextState->assocAddIE.length;
14942 }
14943#endif
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -070014944 /* Appending HS 2.0 Indication Element in Assiciation Request */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014945 else if ( (0 == memcmp(&genie[0], HS20_OUI_TYPE,
Madan Mohan Koyyalamudi1bed5982012-10-22 14:38:06 -070014946 HS20_OUI_TYPE_SIZE)) )
14947 {
14948 v_U16_t curAddIELen = pWextState->assocAddIE.length;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014949 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set HS20 IE(len %d)",
Madan Mohan Koyyalamudi1bed5982012-10-22 14:38:06 -070014950 __func__, eLen + 2);
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -070014951
Ganesh Kondabattini7500fb32015-04-10 14:50:32 +053014952 if( SIR_MAC_MAX_ADD_IE_LENGTH < (pWextState->assocAddIE.length + eLen) )
Madan Mohan Koyyalamudi1bed5982012-10-22 14:38:06 -070014953 {
Jeff Johnson902c9832012-12-10 14:28:09 -080014954 hddLog(VOS_TRACE_LEVEL_FATAL, "Cannot accommodate assocAddIE "
14955 "Need bigger buffer space");
Madan Mohan Koyyalamudi1bed5982012-10-22 14:38:06 -070014956 VOS_ASSERT(0);
14957 return -ENOMEM;
14958 }
14959 memcpy( pWextState->assocAddIE.addIEdata + curAddIELen, genie - 2, eLen + 2);
14960 pWextState->assocAddIE.length += eLen + 2;
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -070014961
Madan Mohan Koyyalamudi1bed5982012-10-22 14:38:06 -070014962 pWextState->roamProfile.pAddIEAssoc = pWextState->assocAddIE.addIEdata;
14963 pWextState->roamProfile.nAddIEAssocLength = pWextState->assocAddIE.length;
14964 }
Leela Venkata Kiran Kumar Reddy Chiralaf257bef2014-04-11 18:48:12 -070014965 /* Appending OSEN Information Element in Assiciation Request */
14966 else if ( (0 == memcmp(&genie[0], OSEN_OUI_TYPE,
14967 OSEN_OUI_TYPE_SIZE)) )
14968 {
14969 v_U16_t curAddIELen = pWextState->assocAddIE.length;
14970 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set OSEN IE(len %d)",
14971 __func__, eLen + 2);
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -070014972
Ganesh Kondabattini7500fb32015-04-10 14:50:32 +053014973 if( SIR_MAC_MAX_ADD_IE_LENGTH < (pWextState->assocAddIE.length + eLen) )
Leela Venkata Kiran Kumar Reddy Chiralaf257bef2014-04-11 18:48:12 -070014974 {
14975 hddLog(VOS_TRACE_LEVEL_FATAL, "Cannot accommodate assocAddIE "
14976 "Need bigger buffer space");
14977 VOS_ASSERT(0);
14978 return -ENOMEM;
14979 }
14980 memcpy( pWextState->assocAddIE.addIEdata + curAddIELen, genie - 2, eLen + 2);
14981 pWextState->assocAddIE.length += eLen + 2;
14982
14983 pWextState->roamProfile.bOSENAssociation = VOS_TRUE;
14984 pWextState->roamProfile.pAddIEAssoc = pWextState->assocAddIE.addIEdata;
14985 pWextState->roamProfile.nAddIEAssocLength = pWextState->assocAddIE.length;
14986 }
14987
Abhishek Singh4322e622015-06-10 15:42:54 +053014988 /* Update only for WPA IE */
14989 if (!memcmp(genie, WPA_OUI_TYPE, WPA_OUI_TYPE_SIZE) &&
14990 (WLAN_HDD_IBSS == pAdapter->device_mode)) {
Praveen Kumar Sirisilla7d68b7b2013-09-22 14:01:42 -070014991
14992 /* populating as ADDIE in beacon frames */
14993 if (ccmCfgSetStr(WLAN_HDD_GET_HAL_CTX(pAdapter),
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053014994 WNI_CFG_PROBE_RSP_BCN_ADDNIE_DATA, (u8 *)genie - 2, eLen + 2,
Praveen Kumar Sirisilla7d68b7b2013-09-22 14:01:42 -070014995 NULL, eANI_BOOLEAN_FALSE)== eHAL_STATUS_SUCCESS)
14996 {
14997 if (ccmCfgSetInt(WLAN_HDD_GET_HAL_CTX(pAdapter),
14998 WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG, 1,NULL,
14999 eANI_BOOLEAN_FALSE) == eHAL_STATUS_FAILURE)
15000 {
15001 hddLog(LOGE,
15002 "Coldn't pass "
15003 "WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG to CCM");
15004 }
15005 }/* ccmCfgSetStr(,WNI_CFG_PROBE_RSP_BCN_ADDNIE_DATA, , )*/
15006 else
15007 hddLog(LOGE,
15008 "Could not pass on "
15009 "WNI_CFG_PROBE_RSP_BCN_ADDNIE_DATA to CCM");
15010
15011 /* IBSS mode doesn't contain params->proberesp_ies still
15012 beaconIE's need to be populated in probe response frames */
15013 if ( (NULL != (genie - 2)) && (0 != eLen + 2) )
15014 {
15015 u16 rem_probe_resp_ie_len = eLen + 2;
15016 u8 probe_rsp_ie_len[3] = {0};
15017 u8 counter = 0;
15018
15019 /* Check Probe Resp Length if it is greater then 255 then
15020 Store Probe Rsp IEs into WNI_CFG_PROBE_RSP_ADDNIE_DATA1
15021 & WNI_CFG_PROBE_RSP_ADDNIE_DATA2 CFG Variable As We are
15022 not able Store More then 255 bytes into One Variable */
15023
15024 while ((rem_probe_resp_ie_len > 0) && (counter < 3))
15025 {
15026 if (rem_probe_resp_ie_len > MAX_CFG_STRING_LEN)
15027 {
15028 probe_rsp_ie_len[counter++] = MAX_CFG_STRING_LEN;
15029 rem_probe_resp_ie_len -= MAX_CFG_STRING_LEN;
15030 }
15031 else
15032 {
15033 probe_rsp_ie_len[counter++] = rem_probe_resp_ie_len;
15034 rem_probe_resp_ie_len = 0;
15035 }
15036 }
15037
15038 rem_probe_resp_ie_len = 0;
15039
15040 if (probe_rsp_ie_len[0] > 0)
15041 {
15042 if (ccmCfgSetStr(WLAN_HDD_GET_HAL_CTX(pAdapter),
15043 WNI_CFG_PROBE_RSP_ADDNIE_DATA1,
15044 (tANI_U8*)(genie - 2),
15045 probe_rsp_ie_len[0], NULL,
15046 eANI_BOOLEAN_FALSE)
15047 == eHAL_STATUS_FAILURE)
15048 {
15049 hddLog(LOGE,
15050 "Could not pass"
15051 "on WNI_CFG_PROBE_RSP_ADDNIE_DATA1 to CCM");
15052 }
15053 rem_probe_resp_ie_len += probe_rsp_ie_len[0];
15054 }
15055
15056 if (probe_rsp_ie_len[1] > 0)
15057 {
15058 if (ccmCfgSetStr(WLAN_HDD_GET_HAL_CTX(pAdapter),
15059 WNI_CFG_PROBE_RSP_ADDNIE_DATA2,
15060 (tANI_U8*)(genie - (2 + rem_probe_resp_ie_len)),
15061 probe_rsp_ie_len[1], NULL,
15062 eANI_BOOLEAN_FALSE)
15063 == eHAL_STATUS_FAILURE)
15064 {
15065 hddLog(LOGE,
15066 "Could not pass"
15067 "on WNI_CFG_PROBE_RSP_ADDNIE_DATA2 to CCM");
15068 }
15069 rem_probe_resp_ie_len += probe_rsp_ie_len[1];
15070 }
15071
15072 if (probe_rsp_ie_len[2] > 0)
15073 {
15074 if (ccmCfgSetStr(WLAN_HDD_GET_HAL_CTX(pAdapter),
15075 WNI_CFG_PROBE_RSP_ADDNIE_DATA3,
15076 (tANI_U8*)(genie - (2 + rem_probe_resp_ie_len)),
15077 probe_rsp_ie_len[2], NULL,
15078 eANI_BOOLEAN_FALSE)
15079 == eHAL_STATUS_FAILURE)
15080 {
15081 hddLog(LOGE,
15082 "Could not pass"
15083 "on WNI_CFG_PROBE_RSP_ADDNIE_DATA3 to CCM");
15084 }
15085 rem_probe_resp_ie_len += probe_rsp_ie_len[2];
15086 }
15087
15088 if (ccmCfgSetInt(WLAN_HDD_GET_HAL_CTX(pAdapter),
15089 WNI_CFG_PROBE_RSP_ADDNIE_FLAG, 1,NULL,
15090 eANI_BOOLEAN_FALSE) == eHAL_STATUS_FAILURE)
15091 {
15092 hddLog(LOGE,
15093 "Could not pass"
15094 "on WNI_CFG_PROBE_RSP_ADDNIE_FLAG to CCM");
15095 }
15096 }
Praveen Kumar Sirisilla7d68b7b2013-09-22 14:01:42 -070015097 } /* end of if (WLAN_HDD_IBSS == pAdapter->device_mode) */
Jeff Johnson295189b2012-06-20 16:38:30 -070015098 break;
15099 case DOT11F_EID_RSN:
15100 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set RSN IE(len %d)",__func__, eLen + 2);
15101 memset( pWextState->WPARSNIE, 0, MAX_WPA_RSN_IE_LEN );
15102 memcpy( pWextState->WPARSNIE, genie - 2, (eLen + 2)/*ie_len*/);
15103 pWextState->roamProfile.pRSNReqIE = pWextState->WPARSNIE;
15104 pWextState->roamProfile.nRSNReqIELength = eLen + 2; //ie_len;
15105 break;
Abhishek Singh15d95602015-03-24 15:52:57 +053015106
Abhishek Singhb16f3562016-01-20 11:08:32 +053015107 /* Appending extended capabilities with Interworking or
15108 * bsstransition bit set in Assoc Req.
Abhishek Singh15d95602015-03-24 15:52:57 +053015109 *
15110 * In assoc req this EXT Cap will only be taken into account if
Abhishek Singhb16f3562016-01-20 11:08:32 +053015111 * interworkingService or bsstransition bit is set to 1.
15112 * Driver is only interested in interworkingService and
15113 * bsstransition capability from supplicant.
15114 * If in future any other EXT Cap info is
Abhishek Singh15d95602015-03-24 15:52:57 +053015115 * required from supplicat, it needs to be handled while
15116 * sending Assoc Req in LIM.
15117 */
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -070015118 case DOT11F_EID_EXTCAP:
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015119 {
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -070015120 v_U16_t curAddIELen = pWextState->assocAddIE.length;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015121 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set Extended CAPS IE(len %d)",
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -070015122 __func__, eLen + 2);
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015123
Ganesh Kondabattini7500fb32015-04-10 14:50:32 +053015124 if( SIR_MAC_MAX_ADD_IE_LENGTH < (pWextState->assocAddIE.length + eLen) )
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -070015125 {
Jeff Johnson902c9832012-12-10 14:28:09 -080015126 hddLog(VOS_TRACE_LEVEL_FATAL, "Cannot accommodate assocAddIE "
15127 "Need bigger buffer space");
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -070015128 VOS_ASSERT(0);
15129 return -ENOMEM;
15130 }
15131 memcpy( pWextState->assocAddIE.addIEdata + curAddIELen, genie - 2, eLen + 2);
15132 pWextState->assocAddIE.length += eLen + 2;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015133
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -070015134 pWextState->roamProfile.pAddIEAssoc = pWextState->assocAddIE.addIEdata;
15135 pWextState->roamProfile.nAddIEAssocLength = pWextState->assocAddIE.length;
15136 break;
15137 }
Jeff Johnson295189b2012-06-20 16:38:30 -070015138#ifdef FEATURE_WLAN_WAPI
15139 case WLAN_EID_WAPI:
15140 pAdapter->wapi_info.nWapiMode = 1; //Setting WAPI Mode to ON=1
Jeff Johnson0299d0a2013-10-30 12:37:43 -070015141 hddLog(VOS_TRACE_LEVEL_INFO, "WAPI MODE IS %u",
Jeff Johnson295189b2012-06-20 16:38:30 -070015142 pAdapter->wapi_info.nWapiMode);
15143 tmp = (u16 *)ie;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015144 tmp = tmp + 2; // Skip element Id and Len, Version
Jeff Johnson295189b2012-06-20 16:38:30 -070015145 akmsuiteCount = WPA_GET_LE16(tmp);
15146 tmp = tmp + 1;
15147 akmlist = (int *)(tmp);
15148 if(akmsuiteCount <= MAX_NUM_AKM_SUITES)
15149 {
15150 memcpy(akmsuite, akmlist, (4*akmsuiteCount));
15151 }
15152 else
15153 {
Arif Hussain6d2a3322013-11-17 19:50:10 -080015154 hddLog(VOS_TRACE_LEVEL_FATAL, "Invalid akmSuite count");
Jeff Johnson295189b2012-06-20 16:38:30 -070015155 VOS_ASSERT(0);
15156 return -EINVAL;
15157 }
15158
15159 if (WAPI_PSK_AKM_SUITE == akmsuite[0])
15160 {
15161 hddLog(VOS_TRACE_LEVEL_INFO, "%s: WAPI AUTH MODE SET TO PSK",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -070015162 __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -070015163 pAdapter->wapi_info.wapiAuthMode = WAPI_AUTH_MODE_PSK;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015164 }
Jeff Johnson295189b2012-06-20 16:38:30 -070015165 if (WAPI_CERT_AKM_SUITE == akmsuite[0])
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015166 {
Jeff Johnson295189b2012-06-20 16:38:30 -070015167 hddLog(VOS_TRACE_LEVEL_INFO, "%s: WAPI AUTH MODE SET TO CERTIFICATE",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -070015168 __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -070015169 pAdapter->wapi_info.wapiAuthMode = WAPI_AUTH_MODE_CERT;
15170 }
15171 break;
15172#endif
15173 default:
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015174 hddLog (VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -070015175 "%s Set UNKNOWN IE %X", __func__, elementId);
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -070015176 /* when Unknown IE is received we should break and continue
15177 * to the next IE in the buffer instead we were returning
15178 * so changing this to break */
15179 break;
Jeff Johnson295189b2012-06-20 16:38:30 -070015180 }
15181 genie += eLen;
15182 remLen -= eLen;
15183 }
15184 EXIT();
15185 return 0;
15186}
15187
15188/*
Gopichand Nakkala18f0c262013-05-07 23:25:08 +053015189 * FUNCTION: hdd_isWPAIEPresent
15190 * Parse the received IE to find the WPA IE
15191 *
15192 */
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053015193static bool hdd_isWPAIEPresent(
15194#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 18, 0))
15195 const u8 *ie,
15196#else
15197 u8 *ie,
15198#endif
15199 u8 ie_len)
Gopichand Nakkala18f0c262013-05-07 23:25:08 +053015200{
15201 v_U8_t eLen = 0;
15202 v_U16_t remLen = ie_len;
15203 v_U8_t elementId = 0;
15204
15205 while (remLen >= 2)
15206 {
15207 elementId = *ie++;
15208 eLen = *ie++;
15209 remLen -= 2;
15210 if (eLen > remLen)
15211 {
15212 hddLog(VOS_TRACE_LEVEL_ERROR,
15213 "%s: IE length is wrong %d", __func__, eLen);
15214 return FALSE;
15215 }
15216 if ((elementId == DOT11F_EID_WPA) && (remLen > 5))
15217 {
15218 /* OUI - 0x00 0X50 0XF2
15219 WPA Information Element - 0x01
15220 WPA version - 0x01*/
15221 if (0 == memcmp(&ie[0], "\x00\x50\xf2\x01\x01", 5))
15222 return TRUE;
15223 }
15224 ie += eLen;
15225 remLen -= eLen;
15226 }
15227 return FALSE;
15228}
15229
15230/*
Jeff Johnson295189b2012-06-20 16:38:30 -070015231 * FUNCTION: wlan_hdd_cfg80211_set_privacy
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015232 * This function is used to initialize the security
Jeff Johnson295189b2012-06-20 16:38:30 -070015233 * parameters during connect operation.
15234 */
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053015235int wlan_hdd_cfg80211_set_privacy(hdd_adapter_t *pAdapter,
Jeff Johnson295189b2012-06-20 16:38:30 -070015236 struct cfg80211_connect_params *req
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053015237 )
Jeff Johnson295189b2012-06-20 16:38:30 -070015238{
15239 int status = 0;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015240 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -070015241 ENTER();
15242
15243 /*set wpa version*/
15244 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_DISABLED;
15245
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015246 if (req->crypto.wpa_versions)
Jeff Johnson295189b2012-06-20 16:38:30 -070015247 {
Gopichand Nakkala781ded42013-06-28 12:10:45 +053015248 if (NL80211_WPA_VERSION_1 == req->crypto.wpa_versions)
Jeff Johnson295189b2012-06-20 16:38:30 -070015249 {
15250 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_WPA;
15251 }
15252 else if (NL80211_WPA_VERSION_2 == req->crypto.wpa_versions)
15253 {
15254 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_WPA2;
15255 }
15256 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015257
15258 hddLog(VOS_TRACE_LEVEL_INFO, "%s: set wpa version to %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -070015259 pWextState->wpaVersion);
15260
15261 /*set authentication type*/
15262 status = wlan_hdd_cfg80211_set_auth_type(pAdapter, req->auth_type);
15263
15264 if (0 > status)
15265 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015266 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -070015267 "%s: failed to set authentication type ", __func__);
15268 return status;
15269 }
15270
15271 /*set key mgmt type*/
15272 if (req->crypto.n_akm_suites)
15273 {
15274 status = wlan_hdd_set_akm_suite(pAdapter, req->crypto.akm_suites[0]);
15275 if (0 > status)
15276 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015277 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to set akm suite",
Jeff Johnson295189b2012-06-20 16:38:30 -070015278 __func__);
15279 return status;
15280 }
15281 }
15282
15283 /*set pairwise cipher type*/
15284 if (req->crypto.n_ciphers_pairwise)
15285 {
15286 status = wlan_hdd_cfg80211_set_cipher(pAdapter,
15287 req->crypto.ciphers_pairwise[0], true);
15288 if (0 > status)
15289 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015290 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -070015291 "%s: failed to set unicast cipher type", __func__);
15292 return status;
15293 }
15294 }
15295 else
15296 {
15297 /*Reset previous cipher suite to none*/
15298 status = wlan_hdd_cfg80211_set_cipher(pAdapter, 0, true);
15299 if (0 > status)
15300 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015301 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -070015302 "%s: failed to set unicast cipher type", __func__);
15303 return status;
15304 }
15305 }
15306
15307 /*set group cipher type*/
15308 status = wlan_hdd_cfg80211_set_cipher(pAdapter, req->crypto.cipher_group,
15309 false);
15310
15311 if (0 > status)
15312 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015313 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to set mcast cipher type",
Jeff Johnson295189b2012-06-20 16:38:30 -070015314 __func__);
15315 return status;
15316 }
15317
Chet Lanctot186b5732013-03-18 10:26:30 -070015318#ifdef WLAN_FEATURE_11W
15319 pWextState->roamProfile.MFPEnabled = (req->mfp == NL80211_MFP_REQUIRED);
15320#endif
15321
Jeff Johnson295189b2012-06-20 16:38:30 -070015322 /*parse WPA/RSN IE, and set the correspoing fileds in Roam profile*/
15323 if (req->ie_len)
15324 {
15325 status = wlan_hdd_cfg80211_set_ie(pAdapter, req->ie, req->ie_len);
15326 if ( 0 > status)
15327 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015328 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to parse the WPA/RSN IE",
Jeff Johnson295189b2012-06-20 16:38:30 -070015329 __func__);
15330 return status;
15331 }
15332 }
15333
15334 /*incase of WEP set default key information*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015335 if (req->key && req->key_len)
Jeff Johnson295189b2012-06-20 16:38:30 -070015336 {
15337 if ( (WLAN_CIPHER_SUITE_WEP40 == req->crypto.ciphers_pairwise[0])
15338 || (WLAN_CIPHER_SUITE_WEP104 == req->crypto.ciphers_pairwise[0])
15339 )
15340 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015341 if ( IW_AUTH_KEY_MGMT_802_1X
Jeff Johnson295189b2012-06-20 16:38:30 -070015342 == (pWextState->authKeyMgmt & IW_AUTH_KEY_MGMT_802_1X ))
15343 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015344 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Dynamic WEP not supported",
Jeff Johnson295189b2012-06-20 16:38:30 -070015345 __func__);
15346 return -EOPNOTSUPP;
15347 }
15348 else
15349 {
15350 u8 key_len = req->key_len;
15351 u8 key_idx = req->key_idx;
15352
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015353 if ((eCSR_SECURITY_WEP_KEYSIZE_MAX_BYTES >= key_len)
Jeff Johnson295189b2012-06-20 16:38:30 -070015354 && (CSR_MAX_NUM_KEY > key_idx)
15355 )
15356 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015357 hddLog(VOS_TRACE_LEVEL_INFO,
15358 "%s: setting default wep key, key_idx = %hu key_len %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -070015359 __func__, key_idx, key_len);
15360 vos_mem_copy(
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015361 &pWextState->roamProfile.Keys.KeyMaterial[key_idx][0],
Jeff Johnson295189b2012-06-20 16:38:30 -070015362 req->key, key_len);
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015363 pWextState->roamProfile.Keys.KeyLength[key_idx] =
Jeff Johnson295189b2012-06-20 16:38:30 -070015364 (u8)key_len;
15365 pWextState->roamProfile.Keys.defaultIndex = (u8)key_idx;
15366 }
15367 }
15368 }
15369 }
15370
15371 return status;
15372}
15373
15374/*
Vinay Krishna Eranna21042322014-01-08 19:21:39 +053015375 * FUNCTION: wlan_hdd_try_disconnect
15376 * This function is used to disconnect from previous
15377 * connection
15378 */
Agrawal Ashishc407f192017-01-23 17:18:35 +053015379int wlan_hdd_try_disconnect( hdd_adapter_t *pAdapter )
Vinay Krishna Eranna21042322014-01-08 19:21:39 +053015380{
15381 long ret = 0;
Abhishek Singhf1b048a2016-01-13 13:57:27 +053015382 int status, result = 0;
Vinay Krishna Eranna21042322014-01-08 19:21:39 +053015383 hdd_station_ctx_t *pHddStaCtx;
15384 eMib_dot11DesiredBssType connectedBssType;
Abhishek Singh19a7dd92015-12-30 16:31:51 +053015385 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Vinay Krishna Eranna21042322014-01-08 19:21:39 +053015386
Abhishek Singh19a7dd92015-12-30 16:31:51 +053015387 ret = wlan_hdd_validate_context(pHddCtx);
15388 if (0 != ret)
15389 {
15390 return ret;
15391 }
Vinay Krishna Eranna21042322014-01-08 19:21:39 +053015392 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
15393
15394 hdd_connGetConnectedBssType(pHddStaCtx,&connectedBssType );
15395
15396 if((eMib_dot11DesiredBssType_independent == connectedBssType) ||
15397 (eConnectionState_Associated == pHddStaCtx->conn_info.connState) ||
Abhishek Singh630ff592016-01-07 18:15:53 +053015398 (eConnectionState_Connecting == pHddStaCtx->conn_info.connState) ||
Vinay Krishna Eranna21042322014-01-08 19:21:39 +053015399 (eConnectionState_IbssConnected == pHddStaCtx->conn_info.connState))
15400 {
Abhishek Singh9f4df782017-03-15 17:29:10 +053015401 /* Indicate disconnect to SME so that in-progress connection or preauth
15402 * can be aborted
15403 */
15404 sme_abortConnection(WLAN_HDD_GET_HAL_CTX(pAdapter),
15405 pAdapter->sessionId);
Abhishek Singh19a7dd92015-12-30 16:31:51 +053015406 spin_lock_bh(&pAdapter->lock_for_active_session);
15407 if (eConnectionState_Associated == pHddStaCtx->conn_info.connState)
15408 {
15409 wlan_hdd_decr_active_session(pHddCtx, pAdapter->device_mode);
15410 }
15411 spin_unlock_bh(&pAdapter->lock_for_active_session);
Abhishek Singhf7962582015-10-23 10:54:06 +053015412 hdd_connSetConnectionState(pHddStaCtx,
15413 eConnectionState_Disconnecting);
Vinay Krishna Eranna21042322014-01-08 19:21:39 +053015414 /* Issue disconnect to CSR */
15415 INIT_COMPLETION(pAdapter->disconnect_comp_var);
Abhishek Singhf1b048a2016-01-13 13:57:27 +053015416 status = sme_RoamDisconnect(WLAN_HDD_GET_HAL_CTX(pAdapter),
Vinay Krishna Eranna21042322014-01-08 19:21:39 +053015417 pAdapter->sessionId,
Abhishek Singhf1b048a2016-01-13 13:57:27 +053015418 eCSR_DISCONNECT_REASON_UNSPECIFIED);
15419 if(eHAL_STATUS_CMD_NOT_QUEUED == status) {
15420 hddLog(LOG1,
15421 FL("Already disconnected or connect was in sme/roam pending list and removed by disconnect"));
15422 } else if ( 0 != status ) {
15423 hddLog(LOGE,
15424 FL("csrRoamDisconnect failure, returned %d"),
15425 (int)status );
15426 result = -EINVAL;
15427 goto disconnected;
15428 }
15429 ret = wait_for_completion_timeout(
Vinay Krishna Eranna21042322014-01-08 19:21:39 +053015430 &pAdapter->disconnect_comp_var,
15431 msecs_to_jiffies(WLAN_WAIT_TIME_DISCONNECT));
Abhishek Singhf1b048a2016-01-13 13:57:27 +053015432 if (!ret && ( eHAL_STATUS_CMD_NOT_QUEUED != status)) {
15433 hddLog(LOGE,
15434 "%s: Failed to disconnect, timed out", __func__);
15435 result = -ETIMEDOUT;
Vinay Krishna Eranna21042322014-01-08 19:21:39 +053015436 }
15437 }
15438 else if(eConnectionState_Disconnecting == pHddStaCtx->conn_info.connState)
15439 {
Abhishek Singhf1b048a2016-01-13 13:57:27 +053015440 ret = wait_for_completion_timeout(
Vinay Krishna Eranna21042322014-01-08 19:21:39 +053015441 &pAdapter->disconnect_comp_var,
15442 msecs_to_jiffies(WLAN_WAIT_TIME_DISCONNECT));
Abhishek Singhf1b048a2016-01-13 13:57:27 +053015443 if (!ret)
Vinay Krishna Eranna21042322014-01-08 19:21:39 +053015444 {
15445 hddLog(LOGE, FL("Failed to receive disconnect event"));
Abhishek Singhf1b048a2016-01-13 13:57:27 +053015446 result = -ETIMEDOUT;
Vinay Krishna Eranna21042322014-01-08 19:21:39 +053015447 }
15448 }
Abhishek Singhf1b048a2016-01-13 13:57:27 +053015449disconnected:
15450 hddLog(LOG1,
15451 FL("Set HDD connState to eConnectionState_NotConnected"));
15452 pHddStaCtx->conn_info.connState = eConnectionState_NotConnected;
15453 return result;
Vinay Krishna Eranna21042322014-01-08 19:21:39 +053015454}
15455
Selvaraj, Sridhar95e226f2016-06-18 12:27:25 +053015456/**
15457 * wlan_hdd_reassoc_bssid_hint() - Start reassociation if bssid is present
15458 * @adapter: Pointer to the HDD adapter
15459 * @req: Pointer to the structure cfg_connect_params receieved from user space
15460 *
15461 * This function will start reassociation if bssid hint, channel hint and
15462 * previous bssid parameters are present in the connect request
15463 *
15464 * Return: success if reassociation is happening
15465 * Error code if reassociation is not permitted or not happening
15466 */
15467#ifdef CFG80211_CONNECT_PREV_BSSID
15468static int wlan_hdd_reassoc_bssid_hint(hdd_adapter_t *adapter,
15469 struct cfg80211_connect_params *req)
15470{
15471 int status = -EPERM;
15472 if (req->bssid_hint && req->channel_hint && req->prev_bssid) {
15473 hddLog(VOS_TRACE_LEVEL_INFO,
15474 FL("REASSOC Attempt on channel %d to "MAC_ADDRESS_STR),
15475 req->channel_hint->hw_value,
15476 MAC_ADDR_ARRAY(req->bssid_hint));
15477 status = hdd_reassoc(adapter, req->bssid_hint,
15478 req->channel_hint->hw_value,
15479 CONNECT_CMD_USERSPACE);
15480 }
15481 return status;
15482}
15483#else
15484static int wlan_hdd_reassoc_bssid_hint(hdd_adapter_t *adapter,
15485 struct cfg80211_connect_params *req)
15486{
15487 return -EPERM;
15488}
15489#endif
15490
Vinay Krishna Eranna21042322014-01-08 19:21:39 +053015491/*
Agarwal Ashish51325b52014-06-16 16:50:49 +053015492 * FUNCTION: __wlan_hdd_cfg80211_connect
15493 * This function is used to start the association process
Jeff Johnson295189b2012-06-20 16:38:30 -070015494 */
Mahesh A Saptasagarfafb7fe2014-05-16 13:19:37 +053015495static int __wlan_hdd_cfg80211_connect( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -070015496 struct net_device *ndev,
15497 struct cfg80211_connect_params *req
15498 )
15499{
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053015500 int status;
Sreelakshmi Konamkie6521742016-03-18 12:44:27 +053015501 u16 channel;
Edhar, Mahesh Kumar496c7f72016-03-18 12:47:44 +053015502#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 15, 0)) || \
15503 defined(CFG80211_BSSID_HINT_BACKPORT)
Sreelakshmi Konamkie6521742016-03-18 12:44:27 +053015504 const u8 *bssid_hint = req->bssid_hint;
15505#else
15506 const u8 *bssid_hint = NULL;
15507#endif
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015508 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( ndev );
Jeff Johnson295189b2012-06-20 16:38:30 -070015509 VOS_STATUS exitbmpsStatus = VOS_STATUS_E_INVAL;
Sushant Kaushikba6764e2014-06-30 19:52:09 +053015510 hdd_context_t *pHddCtx = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -070015511
15512 ENTER();
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053015513
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053015514 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
15515 TRACE_CODE_HDD_CFG80211_CONNECT,
15516 pAdapter->sessionId, pAdapter->device_mode));
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015517 hddLog(VOS_TRACE_LEVEL_INFO,
Sushant Kaushik8bc7df22014-04-09 17:55:29 +053015518 "%s: device_mode = %s (%d)", __func__,
15519 hdd_device_modetoString(pAdapter->device_mode),
15520 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -070015521
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053015522 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Rajesh Chauhana0516c62014-01-30 16:11:18 -080015523 if (!pHddCtx)
15524 {
15525 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
15526 "%s: HDD context is null", __func__);
Agarwal Ashish51325b52014-06-16 16:50:49 +053015527 return -EINVAL;
Rajesh Chauhana0516c62014-01-30 16:11:18 -080015528 }
15529
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053015530 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053015531 if (0 != status)
Jeff Johnson295189b2012-06-20 16:38:30 -070015532 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053015533 return status;
Jeff Johnson295189b2012-06-20 16:38:30 -070015534 }
15535
Selvaraj, Sridhar95e226f2016-06-18 12:27:25 +053015536 status = wlan_hdd_reassoc_bssid_hint(pAdapter, req);
15537 if (0 == status)
15538 return status;
15539
Agarwal Ashish51325b52014-06-16 16:50:49 +053015540
Jeff Johnson295189b2012-06-20 16:38:30 -070015541#ifdef WLAN_BTAMP_FEATURE
15542 //Infra connect not supported when AMP traffic is on.
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015543 if( VOS_TRUE == WLANBAP_AmpSessionOn() )
Jeff Johnson295189b2012-06-20 16:38:30 -070015544 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015545 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -070015546 "%s: No connection when AMP is on", __func__);
Madan Mohan Koyyalamudicae253a2012-11-06 19:10:35 -080015547 return -ECONNREFUSED;
Jeff Johnson295189b2012-06-20 16:38:30 -070015548 }
15549#endif
Vinay Krishna Eranna21042322014-01-08 19:21:39 +053015550
15551 //If Device Mode is Station Concurrent Sessions Exit BMps
15552 //P2P Mode will be taken care in Open/close adapter
15553 if((WLAN_HDD_INFRA_STATION == pAdapter->device_mode) &&
Agarwal Ashish51325b52014-06-16 16:50:49 +053015554 (vos_concurrent_open_sessions_running())) {
15555 exitbmpsStatus = hdd_disable_bmps_imps(pHddCtx,
15556 WLAN_HDD_INFRA_STATION);
Vinay Krishna Eranna21042322014-01-08 19:21:39 +053015557 }
15558
15559 /*Try disconnecting if already in connected state*/
15560 status = wlan_hdd_try_disconnect(pAdapter);
15561 if ( 0 > status)
15562 {
15563 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Failed to disconnect the existing"
15564 " connection"));
15565 return -EALREADY;
15566 }
Agrawal Ashish559530c2015-12-01 18:04:20 +053015567 /* Check for max concurrent connections after doing disconnect if any*/
15568 if (vos_max_concurrent_connections_reached()) {
15569 hddLog(VOS_TRACE_LEVEL_INFO, FL("Reached max concurrent connections"));
15570 return -ECONNREFUSED;
15571 }
Vinay Krishna Eranna21042322014-01-08 19:21:39 +053015572
Jeff Johnson295189b2012-06-20 16:38:30 -070015573 /*initialise security parameters*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015574 status = wlan_hdd_cfg80211_set_privacy(pAdapter, req);
Jeff Johnson295189b2012-06-20 16:38:30 -070015575
15576 if ( 0 > status)
15577 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015578 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to set security params",
Jeff Johnson295189b2012-06-20 16:38:30 -070015579 __func__);
15580 return status;
15581 }
Sravan Kumar Kairam589c5722016-01-27 20:28:53 +053015582
15583 if (pHddCtx->spoofMacAddr.isEnabled)
15584 {
15585 hddLog(VOS_TRACE_LEVEL_INFO,
15586 "%s: MAC Spoofing enabled ", __func__);
15587 /* Updating SelfSta Mac Addr in TL which will be used to get staidx
15588 * to fill TxBds for probe request during SSID scan which may happen
15589 * as part of connect command
15590 */
15591 status = WLANTL_updateSpoofMacAddr(pHddCtx->pvosContext,
15592 &pHddCtx->spoofMacAddr.randomMacAddr, &pAdapter->macAddressCurrent);
15593 if (status != VOS_STATUS_SUCCESS)
15594 return -ECONNREFUSED;
15595 }
15596
Sreelakshmi Konamkie6521742016-03-18 12:44:27 +053015597 if (req->channel)
15598 channel = req->channel->hw_value;
Mohit Khanna765234a2012-09-11 15:08:35 -070015599 else
Sreelakshmi Konamkie6521742016-03-18 12:44:27 +053015600 channel = 0;
Kapil Gupta312028a2016-10-25 14:15:20 +053015601
15602 /* Abort if any scan is going on */
15603 status = wlan_hdd_scan_abort(pAdapter);
15604 if (0 != status)
15605 hddLog(VOS_TRACE_LEVEL_ERROR, FL("scan abort failed"));
15606
Sreelakshmi Konamkie6521742016-03-18 12:44:27 +053015607 status = wlan_hdd_cfg80211_connect_start(pAdapter, req->ssid,
15608 req->ssid_len, req->bssid,
15609 bssid_hint, channel);
Jeff Johnson295189b2012-06-20 16:38:30 -070015610
Sushant Kaushikd7083982015-03-18 14:33:24 +053015611 if (0 != status)
Jeff Johnson295189b2012-06-20 16:38:30 -070015612 {
15613 //ReEnable BMPS if disabled
15614 if((VOS_STATUS_SUCCESS == exitbmpsStatus) &&
15615 (NULL != pHddCtx))
15616 {
Gopichand Nakkalaa2fe5b02013-06-06 16:32:28 +053015617 if (pHddCtx->hdd_wlan_suspended)
15618 {
15619 hdd_set_pwrparams(pHddCtx);
15620 }
Jeff Johnson295189b2012-06-20 16:38:30 -070015621 //ReEnable Bmps and Imps back
15622 hdd_enable_bmps_imps(pHddCtx);
15623 }
Agarwal Ashish51325b52014-06-16 16:50:49 +053015624 hddLog(VOS_TRACE_LEVEL_ERROR, FL("connect failed"));
Jeff Johnson295189b2012-06-20 16:38:30 -070015625 return status;
15626 }
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053015627 pHddCtx->isAmpAllowed = VOS_FALSE;
Jeff Johnson295189b2012-06-20 16:38:30 -070015628 EXIT();
15629 return status;
15630}
15631
Mahesh A Saptasagarfafb7fe2014-05-16 13:19:37 +053015632static int wlan_hdd_cfg80211_connect( struct wiphy *wiphy,
15633 struct net_device *ndev,
15634 struct cfg80211_connect_params *req)
15635{
15636 int ret;
15637 vos_ssr_protect(__func__);
15638 ret = __wlan_hdd_cfg80211_connect(wiphy, ndev, req);
15639 vos_ssr_unprotect(__func__);
15640
15641 return ret;
15642}
Jeff Johnson295189b2012-06-20 16:38:30 -070015643
15644/*
Gopichand Nakkala78a6c812013-05-13 16:39:49 +053015645 * FUNCTION: wlan_hdd_disconnect
15646 * This function is used to issue a disconnect request to SME
15647 */
15648int wlan_hdd_disconnect( hdd_adapter_t *pAdapter, u16 reason )
15649{
Abhishek Singh6ab864d2014-11-27 12:10:10 +053015650 int status, result = 0;
Gopichand Nakkala78a6c812013-05-13 16:39:49 +053015651 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053015652 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Abhishek Singhdc2bfd42014-06-19 17:59:05 +053015653 long ret;
Padma, Santhosh Kumar5f7d10e2016-12-05 18:55:06 +053015654 eConnectionState prev_conn_state;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053015655
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053015656 ENTER();
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053015657
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053015658 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053015659 if (0 != status)
15660 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053015661 return status;
15662 }
Abhishek Singh07e4a892015-11-23 11:29:57 +053015663 /* Indicate sme of disconnect so that in progress connection or preauth
15664 * can be aborted
15665 */
15666 sme_abortConnection(WLAN_HDD_GET_HAL_CTX(pAdapter),
Sushant Kaushikb4834d22015-07-15 15:29:05 +053015667 pAdapter->sessionId);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053015668 pHddCtx->isAmpAllowed = VOS_TRUE;
Agarwal Ashishc65b5ca2014-07-28 21:02:57 +053015669
Agarwal Ashish47d18112014-08-04 19:55:07 +053015670 /* Need to apply spin lock before decreasing active sessions
15671 * as there can be chance for double decrement if context switch
15672 * Calls hdd_DisConnectHandler.
15673 */
15674
Padma, Santhosh Kumar5f7d10e2016-12-05 18:55:06 +053015675 prev_conn_state = pHddStaCtx->conn_info.connState;
15676
Agarwal Ashish47d18112014-08-04 19:55:07 +053015677 spin_lock_bh(&pAdapter->lock_for_active_session);
Agarwal Ashishc65b5ca2014-07-28 21:02:57 +053015678 if (eConnectionState_Associated == pHddStaCtx->conn_info.connState)
15679 {
Agarwal Ashishc65b5ca2014-07-28 21:02:57 +053015680 wlan_hdd_decr_active_session(pHddCtx, pAdapter->device_mode);
15681 }
Agarwal Ashish47d18112014-08-04 19:55:07 +053015682 hdd_connSetConnectionState( pHddStaCtx, eConnectionState_Disconnecting );
15683 spin_unlock_bh(&pAdapter->lock_for_active_session);
Agarwal Ashishc65b5ca2014-07-28 21:02:57 +053015684
Abhishek Singhf4669da2014-05-26 15:07:49 +053015685 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Agarwal Ashish47d18112014-08-04 19:55:07 +053015686 FL( "Set HDD connState to eConnectionState_Disconnecting" ));
15687
Gopichand Nakkala78a6c812013-05-13 16:39:49 +053015688 INIT_COMPLETION(pAdapter->disconnect_comp_var);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053015689
Mihir Shete182a0b22014-08-18 16:08:48 +053015690 /*
15691 * stop tx queues before deleting STA/BSS context from the firmware.
15692 * tx has to be disabled because the firmware can get busy dropping
15693 * the tx frames after BSS/STA has been deleted and will not send
15694 * back a response resulting in WDI timeout
15695 */
Padma, Santhosh Kumar9dacb5c2014-12-17 19:22:56 +053015696 hddLog(VOS_TRACE_LEVEL_INFO, FL("Disabling queues"));
Mihir Shete182a0b22014-08-18 16:08:48 +053015697 netif_tx_disable(pAdapter->dev);
15698 netif_carrier_off(pAdapter->dev);
Arun Kumar Khandavalli94a2bb02013-12-28 19:17:25 +053015699
Mihir Shete182a0b22014-08-18 16:08:48 +053015700 /*issue disconnect*/
Gopichand Nakkala78a6c812013-05-13 16:39:49 +053015701 status = sme_RoamDisconnect( WLAN_HDD_GET_HAL_CTX(pAdapter),
15702 pAdapter->sessionId, reason);
Padma, Santhosh Kumar5f7d10e2016-12-05 18:55:06 +053015703 if((eHAL_STATUS_CMD_NOT_QUEUED == status) &&
15704 prev_conn_state != eConnectionState_Connecting)
15705 {
15706 hddLog(LOG1,
15707 FL("status = %d, already disconnected"), status);
15708 result = 0;
15709 goto disconnected;
15710 }
15711 /*
15712 * Wait here instead of returning directly, this will block the next
15713 * connect command and allow processing of the scan for ssid and
15714 * the previous connect command in CSR. Else we might hit some
15715 * race conditions leading to SME and HDD out of sync.
15716 */
15717 else if(eHAL_STATUS_CMD_NOT_QUEUED == status)
Abhishek Singhf1b048a2016-01-13 13:57:27 +053015718 {
15719 hddLog(LOG1,
15720 FL("Already disconnected or connect was in sme/roam pending list and removed by disconnect"));
Abhishek Singhdc2bfd42014-06-19 17:59:05 +053015721 }
15722 else if ( 0 != status )
Gopichand Nakkala78a6c812013-05-13 16:39:49 +053015723 {
Abhishek Singhf1b048a2016-01-13 13:57:27 +053015724 hddLog(LOGE,
15725 FL("csrRoamDisconnect failure, returned %d"),
15726 (int)status);
Abhishek Singh6ab864d2014-11-27 12:10:10 +053015727 result = -EINVAL;
15728 goto disconnected;
Gopichand Nakkala78a6c812013-05-13 16:39:49 +053015729 }
Abhishek Singhf1b048a2016-01-13 13:57:27 +053015730 ret = wait_for_completion_timeout(
Gopichand Nakkala78a6c812013-05-13 16:39:49 +053015731 &pAdapter->disconnect_comp_var,
15732 msecs_to_jiffies(WLAN_WAIT_TIME_DISCONNECT));
Abhishek Singhf1b048a2016-01-13 13:57:27 +053015733 if (!ret && (eHAL_STATUS_CMD_NOT_QUEUED != status))
c_hpothu6ff1c3c2013-10-01 19:01:57 +053015734 {
Abhishek Singhf1b048a2016-01-13 13:57:27 +053015735 hddLog(LOGE,
Mahesh A Saptasagar05a357e2014-02-26 16:28:06 +053015736 "%s: Failed to disconnect, timed out", __func__);
Abhishek Singh6ab864d2014-11-27 12:10:10 +053015737 result = -ETIMEDOUT;
Mahesh A Saptasagar05a357e2014-02-26 16:28:06 +053015738 }
Abhishek Singh6ab864d2014-11-27 12:10:10 +053015739disconnected:
Abhishek Singhf1b048a2016-01-13 13:57:27 +053015740 hddLog(LOG1,
Abhishek Singhdc2bfd42014-06-19 17:59:05 +053015741 FL("Set HDD connState to eConnectionState_NotConnected"));
15742 pHddStaCtx->conn_info.connState = eConnectionState_NotConnected;
Mahesh A Saptasagar936ffc32016-05-25 11:27:43 +053015743#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,11,0)
15744 /* Sending disconnect event to userspace for kernel version < 3.11
15745 * is handled by __cfg80211_disconnect call to __cfg80211_disconnected
15746 */
15747 hddLog(LOG1, FL("Send disconnected event to userspace"));
15748
Mahesh A Saptasagarf5859b12016-06-01 17:17:50 +053015749 wlan_hdd_cfg80211_indicate_disconnect(pAdapter->dev, true,
Mahesh A Saptasagar936ffc32016-05-25 11:27:43 +053015750 WLAN_REASON_UNSPECIFIED);
15751#endif
Abhishek Singhdc2bfd42014-06-19 17:59:05 +053015752
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053015753 EXIT();
Abhishek Singh6ab864d2014-11-27 12:10:10 +053015754 return result;
Gopichand Nakkala78a6c812013-05-13 16:39:49 +053015755}
15756
15757
15758/*
Mahesh A Saptasagarfafb7fe2014-05-16 13:19:37 +053015759 * FUNCTION: __wlan_hdd_cfg80211_disconnect
Jeff Johnson295189b2012-06-20 16:38:30 -070015760 * This function is used to issue a disconnect request to SME
15761 */
Mahesh A Saptasagarfafb7fe2014-05-16 13:19:37 +053015762static int __wlan_hdd_cfg80211_disconnect( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -070015763 struct net_device *dev,
15764 u16 reason
15765 )
15766{
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015767 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053015768 int status;
Chandrasekaran, Manishekar41b8e1f2015-03-10 13:30:28 +053015769 tCsrRoamProfile *pRoamProfile;
15770 hdd_station_ctx_t *pHddStaCtx;
15771 hdd_context_t *pHddCtx;
Gopichand Nakkalaaa353782013-05-17 20:36:22 +053015772#ifdef FEATURE_WLAN_TDLS
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -080015773 tANI_U8 staIdx;
15774#endif
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015775
Jeff Johnson295189b2012-06-20 16:38:30 -070015776 ENTER();
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053015777
Chandrasekaran, Manishekar41b8e1f2015-03-10 13:30:28 +053015778 if (!pAdapter) {
15779 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD adpater is NULL"));
15780 return -EINVAL;
15781 }
15782
15783 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
15784 if (!pHddStaCtx) {
15785 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD STA context is NULL"));
15786 return -EINVAL;
15787 }
15788
15789 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
15790 status = wlan_hdd_validate_context(pHddCtx);
15791 if (0 != status)
15792 {
15793 return status;
15794 }
15795
15796 pRoamProfile = &(WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter))->roamProfile;
15797
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053015798 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
15799 TRACE_CODE_HDD_CFG80211_DISCONNECT,
15800 pAdapter->sessionId, reason));
Sushant Kaushik8bc7df22014-04-09 17:55:29 +053015801 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s(%d)",
15802 __func__, hdd_device_modetoString(pAdapter->device_mode),
15803 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -070015804
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015805 hddLog(VOS_TRACE_LEVEL_INFO, "%s: Disconnect called with reason code %d",
15806 __func__, reason);
Jeff Johnson295189b2012-06-20 16:38:30 -070015807
Jeff Johnson295189b2012-06-20 16:38:30 -070015808 if (NULL != pRoamProfile)
15809 {
15810 /*issue disconnect request to SME, if station is in connected state*/
Mahesh A Saptasagar280fd5a2013-12-05 15:38:31 +053015811 if ((pHddStaCtx->conn_info.connState == eConnectionState_Associated) ||
15812 (pHddStaCtx->conn_info.connState == eConnectionState_Connecting))
Jeff Johnson295189b2012-06-20 16:38:30 -070015813 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015814 eCsrRoamDisconnectReason reasonCode =
Jeff Johnson295189b2012-06-20 16:38:30 -070015815 eCSR_DISCONNECT_REASON_UNSPECIFIED;
Gopichand Nakkalaaa353782013-05-17 20:36:22 +053015816 hdd_scaninfo_t *pScanInfo;
Jeff Johnson295189b2012-06-20 16:38:30 -070015817 switch(reason)
15818 {
15819 case WLAN_REASON_MIC_FAILURE:
15820 reasonCode = eCSR_DISCONNECT_REASON_MIC_ERROR;
15821 break;
15822
15823 case WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY:
15824 case WLAN_REASON_DISASSOC_AP_BUSY:
15825 case WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA:
15826 reasonCode = eCSR_DISCONNECT_REASON_DISASSOC;
15827 break;
15828
15829 case WLAN_REASON_PREV_AUTH_NOT_VALID:
15830 case WLAN_REASON_CLASS2_FRAME_FROM_NONAUTH_STA:
Abhishek Singhc3269a52014-05-21 17:22:24 +053015831 case WLAN_REASON_DEAUTH_LEAVING:
Jeff Johnson295189b2012-06-20 16:38:30 -070015832 reasonCode = eCSR_DISCONNECT_REASON_DEAUTH;
15833 break;
15834
Jeff Johnson295189b2012-06-20 16:38:30 -070015835 default:
15836 reasonCode = eCSR_DISCONNECT_REASON_UNSPECIFIED;
15837 break;
15838 }
Gopichand Nakkalaaa353782013-05-17 20:36:22 +053015839 pScanInfo = &pHddCtx->scan_info;
15840 if (pScanInfo->mScanPending)
15841 {
Srinivas, Dasari138af4f2014-02-07 11:13:45 +053015842 hddLog(VOS_TRACE_LEVEL_INFO, "Disconnect is in progress, "
Gopichand Nakkalaaa353782013-05-17 20:36:22 +053015843 "Aborting Scan");
Kaushik, Sushant4975a572014-10-21 16:07:48 +053015844 hdd_abort_mac_scan(pHddCtx, pScanInfo->sessionId,
Srinivas, Dasari138af4f2014-02-07 11:13:45 +053015845 eCSR_SCAN_ABORT_DEFAULT);
Gopichand Nakkalaaa353782013-05-17 20:36:22 +053015846 }
Agarwal Ashishc089cec2015-08-10 13:10:04 +053015847 wlan_hdd_cancel_existing_remain_on_channel(pAdapter);
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -080015848#ifdef FEATURE_WLAN_TDLS
15849 /* First clean up the tdls peers if any */
Gopichand Nakkala4327a152013-03-04 23:22:42 -080015850 for (staIdx = 0 ; staIdx < HDD_MAX_NUM_TDLS_STA; staIdx++)
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -080015851 {
Gopichand Nakkala4327a152013-03-04 23:22:42 -080015852 if ((pHddCtx->tdlsConnInfo[staIdx].sessionId == pAdapter->sessionId) &&
15853 (pHddCtx->tdlsConnInfo[staIdx].staId))
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -080015854 {
Hoonki Lee11f7dda2013-02-14 16:55:44 -080015855 uint8 *mac;
Gopichand Nakkala4327a152013-03-04 23:22:42 -080015856 mac = pHddCtx->tdlsConnInfo[staIdx].peerMac.bytes;
Masti, Narayanraddi34e0e562015-03-05 18:23:03 +053015857 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070015858 "%s: call sme_DeleteTdlsPeerSta staId %d sessionId %d " MAC_ADDRESS_STR,
Gopichand Nakkala4327a152013-03-04 23:22:42 -080015859 __func__, pHddCtx->tdlsConnInfo[staIdx].staId, pAdapter->sessionId,
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070015860 MAC_ADDR_ARRAY(mac));
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053015861 status = sme_DeleteTdlsPeerSta(
15862 WLAN_HDD_GET_HAL_CTX(pAdapter),
15863 pAdapter->sessionId,
15864 mac);
15865 if (status != eHAL_STATUS_SUCCESS) {
15866 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Failed to delete TDLS peer STA"));
15867 return -EPERM;
15868 }
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -080015869 }
15870 }
15871#endif
Padma, Santhosh Kumar5f7d10e2016-12-05 18:55:06 +053015872
15873 hddLog(LOG1, FL("Disconnecting with reasoncode:%u connState %d"),
15874 reasonCode,
15875 pHddStaCtx->conn_info.connState);
Gopichand Nakkala78a6c812013-05-13 16:39:49 +053015876 status = wlan_hdd_disconnect(pAdapter, reasonCode);
15877 if ( 0 != status )
Jeff Johnson295189b2012-06-20 16:38:30 -070015878 {
15879 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -080015880 "%s wlan_hdd_disconnect failure, returned %d",
Jeff Johnson295189b2012-06-20 16:38:30 -070015881 __func__, (int)status );
15882 return -EINVAL;
15883 }
Jeff Johnson295189b2012-06-20 16:38:30 -070015884 }
Mahesh A Saptasagar280fd5a2013-12-05 15:38:31 +053015885 else
15886 {
15887 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: unexpected cfg disconnect API"
15888 "called while in %d state", __func__,
15889 pHddStaCtx->conn_info.connState);
15890 }
Jeff Johnson295189b2012-06-20 16:38:30 -070015891 }
15892 else
15893 {
15894 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: No valid roam profile", __func__);
15895 }
15896
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053015897 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -070015898 return status;
15899}
15900
Mahesh A Saptasagarfafb7fe2014-05-16 13:19:37 +053015901static int wlan_hdd_cfg80211_disconnect( struct wiphy *wiphy,
15902 struct net_device *dev,
15903 u16 reason
15904 )
15905{
15906 int ret;
15907 vos_ssr_protect(__func__);
15908 ret = __wlan_hdd_cfg80211_disconnect(wiphy, dev, reason);
15909 vos_ssr_unprotect(__func__);
15910
15911 return ret;
15912}
Gopichand Nakkala78a6c812013-05-13 16:39:49 +053015913
Jeff Johnson295189b2012-06-20 16:38:30 -070015914/*
15915 * FUNCTION: wlan_hdd_cfg80211_set_privacy_ibss
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015916 * This function is used to initialize the security
Jeff Johnson295189b2012-06-20 16:38:30 -070015917 * settings in IBSS mode.
15918 */
15919static int wlan_hdd_cfg80211_set_privacy_ibss(
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015920 hdd_adapter_t *pAdapter,
Jeff Johnson295189b2012-06-20 16:38:30 -070015921 struct cfg80211_ibss_params *params
15922 )
15923{
15924 int status = 0;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015925 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -070015926 eCsrEncryptionType encryptionType = eCSR_ENCRYPT_TYPE_NONE;
15927 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015928
Jeff Johnson295189b2012-06-20 16:38:30 -070015929 ENTER();
15930
15931 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_DISABLED;
Ravi Joshib58ca0d2013-10-29 09:50:23 -070015932 vos_mem_zero(&pHddStaCtx->ibss_enc_key, sizeof(tCsrRoamSetKey));
Jeff Johnson295189b2012-06-20 16:38:30 -070015933
15934 if (params->ie_len && ( NULL != params->ie) )
15935 {
Shailender Karmuchi67edd312013-06-18 16:30:48 -070015936 if (wlan_hdd_cfg80211_get_ie_ptr (params->ie,
15937 params->ie_len, WLAN_EID_RSN ))
Jeff Johnson295189b2012-06-20 16:38:30 -070015938 {
15939 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_WPA2;
15940 encryptionType = eCSR_ENCRYPT_TYPE_AES;
15941 }
Shailender Karmuchi67edd312013-06-18 16:30:48 -070015942 else if ( hdd_isWPAIEPresent (params->ie, params->ie_len ))
Jeff Johnson295189b2012-06-20 16:38:30 -070015943 {
Shailender Karmuchi642e9812013-05-30 14:34:49 -070015944 tDot11fIEWPA dot11WPAIE;
15945 tHalHandle halHandle = WLAN_HDD_GET_HAL_CTX(pAdapter);
Shailender Karmuchi67edd312013-06-18 16:30:48 -070015946 u8 *ie;
Shailender Karmuchi642e9812013-05-30 14:34:49 -070015947
Wilson Yang00256342013-10-10 23:13:38 -070015948 memset(&dot11WPAIE, 0, sizeof(dot11WPAIE));
Shailender Karmuchi67edd312013-06-18 16:30:48 -070015949 ie = wlan_hdd_cfg80211_get_ie_ptr (params->ie,
15950 params->ie_len, DOT11F_EID_WPA);
15951 if ( NULL != ie )
15952 {
15953 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_WPA;
15954 // Unpack the WPA IE
15955 //Skip past the EID byte and length byte - and four byte WiFi OUI
15956 dot11fUnpackIeWPA((tpAniSirGlobal) halHandle,
15957 &ie[2+4],
15958 ie[1] - 4,
15959 &dot11WPAIE);
15960 /*Extract the multicast cipher, the encType for unicast
15961 cipher for wpa-none is none*/
15962 encryptionType =
15963 hdd_TranslateWPAToCsrEncryptionType(dot11WPAIE.multicast_cipher);
15964 }
Jeff Johnson295189b2012-06-20 16:38:30 -070015965 }
Shailender Karmuchi67edd312013-06-18 16:30:48 -070015966
Jeff Johnson295189b2012-06-20 16:38:30 -070015967 status = wlan_hdd_cfg80211_set_ie(pAdapter, params->ie, params->ie_len);
15968
15969 if (0 > status)
15970 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015971 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to parse WPA/RSN IE",
Jeff Johnson295189b2012-06-20 16:38:30 -070015972 __func__);
15973 return status;
15974 }
15975 }
15976
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015977 pWextState->roamProfile.AuthType.authType[0] =
15978 pHddStaCtx->conn_info.authType =
Jeff Johnson295189b2012-06-20 16:38:30 -070015979 eCSR_AUTH_TYPE_OPEN_SYSTEM;
15980
15981 if (params->privacy)
15982 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015983 /* Security enabled IBSS, At this time there is no information available
15984 * about the security paramters, so initialise the encryption type to
Jeff Johnson295189b2012-06-20 16:38:30 -070015985 * eCSR_ENCRYPT_TYPE_WEP40_STATICKEY.
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015986 * The correct security parameters will be updated later in
Jeff Johnson295189b2012-06-20 16:38:30 -070015987 * wlan_hdd_cfg80211_add_key */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053015988 /* Hal expects encryption type to be set inorder
Jeff Johnson295189b2012-06-20 16:38:30 -070015989 *enable privacy bit in beacons */
15990
15991 encryptionType = eCSR_ENCRYPT_TYPE_WEP40_STATICKEY;
15992 }
Shailender Karmuchi642e9812013-05-30 14:34:49 -070015993 VOS_TRACE (VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO_HIGH,
15994 "encryptionType=%d", encryptionType);
Jeff Johnson295189b2012-06-20 16:38:30 -070015995 pHddStaCtx->conn_info.ucEncryptionType = encryptionType;
15996 pWextState->roamProfile.EncryptionType.numEntries = 1;
15997 pWextState->roamProfile.EncryptionType.encryptionType[0] = encryptionType;
Jeff Johnson295189b2012-06-20 16:38:30 -070015998 return status;
15999}
16000
16001/*
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053016002 * FUNCTION: __wlan_hdd_cfg80211_join_ibss
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016003 * This function is used to create/join an IBSS
Jeff Johnson295189b2012-06-20 16:38:30 -070016004 */
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053016005static int __wlan_hdd_cfg80211_join_ibss( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -070016006 struct net_device *dev,
16007 struct cfg80211_ibss_params *params
16008 )
16009{
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016010 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
Jeff Johnson295189b2012-06-20 16:38:30 -070016011 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
16012 tCsrRoamProfile *pRoamProfile;
16013 int status;
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053016014 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
16015 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053016016 tSirMacAddr bssid;
Jeff Johnson295189b2012-06-20 16:38:30 -070016017
16018 ENTER();
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053016019
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053016020 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
16021 TRACE_CODE_HDD_CFG80211_JOIN_IBSS,
16022 pAdapter->sessionId, pAdapter->device_mode));
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016023 hddLog(VOS_TRACE_LEVEL_INFO,
Sushant Kaushik8bc7df22014-04-09 17:55:29 +053016024 "%s: device_mode = %s (%d)", __func__,
16025 hdd_device_modetoString(pAdapter->device_mode),
16026 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -070016027
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053016028 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053016029 if (0 != status)
Jeff Johnson295189b2012-06-20 16:38:30 -070016030 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053016031 return status;
Jeff Johnson295189b2012-06-20 16:38:30 -070016032 }
16033
16034 if (NULL == pWextState)
16035 {
Arif Hussain6d2a3322013-11-17 19:50:10 -080016036 hddLog (VOS_TRACE_LEVEL_ERROR, "%s ERROR: Data Storage Corruption",
Jeff Johnson295189b2012-06-20 16:38:30 -070016037 __func__);
16038 return -EIO;
16039 }
16040
Agarwal Ashish51325b52014-06-16 16:50:49 +053016041 if (vos_max_concurrent_connections_reached()) {
16042 hddLog(VOS_TRACE_LEVEL_INFO, FL("Reached max concurrent connections"));
16043 return -ECONNREFUSED;
16044 }
16045
Vinay Krishna Eranna21042322014-01-08 19:21:39 +053016046 /*Try disconnecting if already in connected state*/
16047 status = wlan_hdd_try_disconnect(pAdapter);
16048 if ( 0 > status)
16049 {
16050 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Failed to disconnect the existing"
16051 " IBSS connection"));
16052 return -EALREADY;
16053 }
16054
Jeff Johnson295189b2012-06-20 16:38:30 -070016055 pRoamProfile = &pWextState->roamProfile;
16056
16057 if ( eCSR_BSS_TYPE_START_IBSS != pRoamProfile->BSSType )
16058 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016059 hddLog (VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -080016060 "%s Interface type is not set to IBSS", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -070016061 return -EINVAL;
16062 }
16063
Praveen Kumar Sirisillad123d142013-09-24 16:50:13 -070016064 /* BSSID is provided by upper layers hence no need to AUTO generate */
16065 if (NULL != params->bssid) {
16066 if (ccmCfgSetInt(pHddCtx->hHal, WNI_CFG_IBSS_AUTO_BSSID, 0,
16067 NULL, eANI_BOOLEAN_FALSE)==eHAL_STATUS_FAILURE) {
16068 hddLog (VOS_TRACE_LEVEL_ERROR,
16069 "%s:ccmCfgStInt faild for WNI_CFG_IBSS_AUTO_BSSID", __func__);
16070 return -EIO;
16071 }
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053016072 vos_mem_copy((v_U8_t *)bssid, (v_U8_t *)params->bssid, sizeof(bssid));
Praveen Kumar Sirisillad123d142013-09-24 16:50:13 -070016073 }
krunal sonie9002db2013-11-25 14:24:17 -080016074 else if(pHddCtx->cfg_ini->isCoalesingInIBSSAllowed == 0)
16075 {
16076 if (ccmCfgSetInt(pHddCtx->hHal, WNI_CFG_IBSS_AUTO_BSSID, 0,
16077 NULL, eANI_BOOLEAN_FALSE)==eHAL_STATUS_FAILURE)
16078 {
16079 hddLog (VOS_TRACE_LEVEL_ERROR,
16080 "%s:ccmCfgStInt faild for WNI_CFG_IBSS_AUTO_BSSID", __func__);
16081 return -EIO;
16082 }
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053016083
16084 vos_mem_copy((v_U8_t *)bssid,
krunal sonie9002db2013-11-25 14:24:17 -080016085 (v_U8_t *)&pHddCtx->cfg_ini->IbssBssid.bytes[0],
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053016086 sizeof(bssid));
krunal sonie9002db2013-11-25 14:24:17 -080016087 }
Praveen Kumar Sirisillad123d142013-09-24 16:50:13 -070016088
Jeff Johnson295189b2012-06-20 16:38:30 -070016089 /* Set Channel */
Yue Maf49ba872013-08-19 12:04:25 -070016090 if (NULL !=
16091#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0))
16092 params->chandef.chan)
16093#else
16094 params->channel)
16095#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070016096 {
16097 u8 channelNum;
Shailender Karmuchi15cd0672013-05-15 19:50:04 -070016098 v_U32_t numChans = WNI_CFG_VALID_CHANNEL_LIST_LEN;
16099 v_U8_t validChan[WNI_CFG_VALID_CHANNEL_LIST_LEN];
16100 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
16101 int indx;
Jeff Johnson295189b2012-06-20 16:38:30 -070016102
16103 /* Get channel number */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016104 channelNum =
Yue Maf49ba872013-08-19 12:04:25 -070016105 ieee80211_frequency_to_channel(
16106#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0))
16107 params->chandef.chan->center_freq);
16108#else
16109 params->channel->center_freq);
16110#endif
Shailender Karmuchi15cd0672013-05-15 19:50:04 -070016111
16112 if (0 != ccmCfgGetStr(hHal, WNI_CFG_VALID_CHANNEL_LIST,
16113 validChan, &numChans))
Jeff Johnson295189b2012-06-20 16:38:30 -070016114 {
Shailender Karmuchi15cd0672013-05-15 19:50:04 -070016115 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: No valid channel list",
16116 __func__);
16117 return -EOPNOTSUPP;
Jeff Johnson295189b2012-06-20 16:38:30 -070016118 }
Shailender Karmuchi15cd0672013-05-15 19:50:04 -070016119
16120 for (indx = 0; indx < numChans; indx++)
Jeff Johnson295189b2012-06-20 16:38:30 -070016121 {
Shailender Karmuchi15cd0672013-05-15 19:50:04 -070016122 if (channelNum == validChan[indx])
16123 {
16124 break;
16125 }
16126 }
16127 if (indx >= numChans)
16128 {
16129 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Not valid Channel %d",
Jeff Johnson295189b2012-06-20 16:38:30 -070016130 __func__, channelNum);
16131 return -EINVAL;
16132 }
Shailender Karmuchi15cd0672013-05-15 19:50:04 -070016133 /* Set the Operational Channel */
16134 hddLog(VOS_TRACE_LEVEL_INFO_HIGH, "%s: set channel %d", __func__,
16135 channelNum);
16136 pRoamProfile->ChannelInfo.numOfChannels = 1;
16137 pHddStaCtx->conn_info.operationChannel = channelNum;
16138 pRoamProfile->ChannelInfo.ChannelList =
16139 &pHddStaCtx->conn_info.operationChannel;
Jeff Johnson295189b2012-06-20 16:38:30 -070016140 }
16141
16142 /* Initialize security parameters */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016143 status = wlan_hdd_cfg80211_set_privacy_ibss(pAdapter, params);
Jeff Johnson295189b2012-06-20 16:38:30 -070016144 if (status < 0)
16145 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016146 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to set security parameters",
Jeff Johnson295189b2012-06-20 16:38:30 -070016147 __func__);
16148 return status;
16149 }
16150
16151 /* Issue connect start */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016152 status = wlan_hdd_cfg80211_connect_start(pAdapter, params->ssid,
Abhishek Singh4d924682015-11-17 15:23:06 +053016153 params->ssid_len, (const u8 *)&bssid, NULL,
Shailender Karmuchi15cd0672013-05-15 19:50:04 -070016154 pHddStaCtx->conn_info.operationChannel);
Jeff Johnson295189b2012-06-20 16:38:30 -070016155
16156 if (0 > status)
Jeff Johnson295189b2012-06-20 16:38:30 -070016157 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: connect failed", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -070016158
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053016159 EXIT();
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053016160 return status;
Jeff Johnson295189b2012-06-20 16:38:30 -070016161}
16162
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053016163static int wlan_hdd_cfg80211_join_ibss( struct wiphy *wiphy,
16164 struct net_device *dev,
16165 struct cfg80211_ibss_params *params
16166 )
16167{
16168 int ret = 0;
16169
16170 vos_ssr_protect(__func__);
16171 ret = __wlan_hdd_cfg80211_join_ibss(wiphy, dev, params);
16172 vos_ssr_unprotect(__func__);
16173
16174 return ret;
16175}
16176
Jeff Johnson295189b2012-06-20 16:38:30 -070016177/*
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053016178 * FUNCTION: __wlan_hdd_cfg80211_leave_ibss
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016179 * This function is used to leave an IBSS
Jeff Johnson295189b2012-06-20 16:38:30 -070016180 */
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053016181static int __wlan_hdd_cfg80211_leave_ibss( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -070016182 struct net_device *dev
16183 )
16184{
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016185 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053016186 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
16187 tCsrRoamProfile *pRoamProfile;
16188 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053016189 int status;
Abhishek Singh69de3302016-11-11 16:44:32 +053016190 eHalStatus hal_status;
Abhishek Singh7cd040e2016-01-07 10:51:04 +053016191#ifdef WLAN_FEATURE_RMC
16192 tANI_U8 addIE[WNI_CFG_PROBE_RSP_BCN_ADDNIE_DATA_LEN] = {0};
16193#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070016194
16195 ENTER();
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053016196
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053016197 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
16198 TRACE_CODE_HDD_CFG80211_LEAVE_IBSS,
16199 pAdapter->sessionId, eCSR_DISCONNECT_REASON_IBSS_LEAVE));
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053016200 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053016201 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070016202 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053016203 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070016204 }
16205
Sushant Kaushik8bc7df22014-04-09 17:55:29 +053016206 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s (%d)", __func__,
16207 hdd_device_modetoString(pAdapter->device_mode),
16208 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -070016209 if (NULL == pWextState)
16210 {
Arif Hussain6d2a3322013-11-17 19:50:10 -080016211 hddLog (VOS_TRACE_LEVEL_ERROR, "%s ERROR: Data Storage Corruption",
Jeff Johnson295189b2012-06-20 16:38:30 -070016212 __func__);
16213 return -EIO;
16214 }
16215
16216 pRoamProfile = &pWextState->roamProfile;
16217
16218 /* Issue disconnect only if interface type is set to IBSS */
16219 if (eCSR_BSS_TYPE_START_IBSS != pRoamProfile->BSSType)
16220 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016221 hddLog (VOS_TRACE_LEVEL_ERROR, "%s: BSS Type is not set to IBSS",
Jeff Johnson295189b2012-06-20 16:38:30 -070016222 __func__);
16223 return -EINVAL;
16224 }
16225
Abhishek Singh7cd040e2016-01-07 10:51:04 +053016226#ifdef WLAN_FEATURE_RMC
16227 /* Clearing add IE of beacon */
16228 if (ccmCfgSetStr(pHddCtx->hHal,
16229 WNI_CFG_PROBE_RSP_BCN_ADDNIE_DATA, &addIE[0],
16230 WNI_CFG_PROBE_RSP_BCN_ADDNIE_DATA_LEN,
16231 NULL, eANI_BOOLEAN_FALSE) != eHAL_STATUS_SUCCESS)
16232 {
16233 hddLog (VOS_TRACE_LEVEL_ERROR,
16234 "%s: unable to clear PROBE_RSP_BCN_ADDNIE_DATA", __func__);
16235 return -EINVAL;
16236 }
16237 if (ccmCfgSetInt(pHddCtx->hHal,
16238 WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG, 0, NULL,
16239 eANI_BOOLEAN_FALSE) != eHAL_STATUS_SUCCESS)
16240 {
16241 hddLog (VOS_TRACE_LEVEL_ERROR,
16242 "%s: unable to clear WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG",
16243 __func__);
16244 return -EINVAL;
16245 }
16246
16247 // Reset WNI_CFG_PROBE_RSP Flags
16248 wlan_hdd_reset_prob_rspies(pAdapter);
16249
16250 if (ccmCfgSetInt(WLAN_HDD_GET_HAL_CTX(pAdapter),
16251 WNI_CFG_PROBE_RSP_ADDNIE_FLAG, 0,NULL,
16252 eANI_BOOLEAN_FALSE) == eHAL_STATUS_FAILURE)
16253 {
16254 hddLog (VOS_TRACE_LEVEL_ERROR,
16255 "%s: unable to clear WNI_CFG_PROBE_RSP_ADDNIE_FLAG",
16256 __func__);
16257 return -EINVAL;
16258 }
16259#endif
16260
Jeff Johnson295189b2012-06-20 16:38:30 -070016261 /* Issue Disconnect request */
16262 INIT_COMPLETION(pAdapter->disconnect_comp_var);
Abhishek Singh69de3302016-11-11 16:44:32 +053016263 hal_status = sme_RoamDisconnect(WLAN_HDD_GET_HAL_CTX(pAdapter),
16264 pAdapter->sessionId,
16265 eCSR_DISCONNECT_REASON_IBSS_LEAVE);
16266 if (!HAL_STATUS_SUCCESS(hal_status)) {
16267 hddLog(LOGE,
16268 FL("sme_RoamDisconnect failed hal_status(%d)"),
16269 hal_status);
16270 return -EAGAIN;
16271 }
16272 status = wait_for_completion_timeout(
16273 &pAdapter->disconnect_comp_var,
16274 msecs_to_jiffies(WLAN_WAIT_TIME_DISCONNECT));
16275 if (!status) {
16276 hddLog(LOGE,
16277 FL("wait on disconnect_comp_var failed"));
16278 return -ETIMEDOUT;
16279 }
Jeff Johnson295189b2012-06-20 16:38:30 -070016280
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053016281 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -070016282 return 0;
16283}
16284
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053016285static int wlan_hdd_cfg80211_leave_ibss( struct wiphy *wiphy,
16286 struct net_device *dev
16287 )
16288{
16289 int ret = 0;
16290
16291 vos_ssr_protect(__func__);
16292 ret = __wlan_hdd_cfg80211_leave_ibss(wiphy, dev);
16293 vos_ssr_unprotect(__func__);
16294
16295 return ret;
16296}
16297
Jeff Johnson295189b2012-06-20 16:38:30 -070016298/*
Mahesh A Saptasagar179d2252014-06-02 21:32:21 +053016299 * FUNCTION: __wlan_hdd_cfg80211_set_wiphy_params
Jeff Johnson295189b2012-06-20 16:38:30 -070016300 * This function is used to set the phy parameters
16301 * (RTS Threshold/FRAG Threshold/Retry Count etc ...)
16302 */
Mahesh A Saptasagar179d2252014-06-02 21:32:21 +053016303static int __wlan_hdd_cfg80211_set_wiphy_params(struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -070016304 u32 changed)
16305{
16306 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
16307 tHalHandle hHal = pHddCtx->hHal;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053016308 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -070016309
16310 ENTER();
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053016311
16312 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053016313 TRACE_CODE_HDD_CFG80211_SET_WIPHY_PARAMS,
16314 NO_SESSION, wiphy->rts_threshold));
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053016315
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053016316 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053016317 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070016318 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053016319 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070016320 }
16321
Jeff Johnson295189b2012-06-20 16:38:30 -070016322 if (changed & WIPHY_PARAM_RTS_THRESHOLD)
16323 {
16324 u16 rts_threshold = (wiphy->rts_threshold == -1) ?
16325 WNI_CFG_RTS_THRESHOLD_STAMAX :
16326 wiphy->rts_threshold;
16327
16328 if ((WNI_CFG_RTS_THRESHOLD_STAMIN > rts_threshold) ||
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016329 (WNI_CFG_RTS_THRESHOLD_STAMAX < rts_threshold))
Jeff Johnson295189b2012-06-20 16:38:30 -070016330 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016331 hddLog(VOS_TRACE_LEVEL_ERROR,
16332 "%s: Invalid RTS Threshold value %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -070016333 __func__, rts_threshold);
16334 return -EINVAL;
16335 }
16336
16337 if (0 != ccmCfgSetInt(hHal, WNI_CFG_RTS_THRESHOLD,
16338 rts_threshold, ccmCfgSetCallback,
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016339 eANI_BOOLEAN_TRUE))
Jeff Johnson295189b2012-06-20 16:38:30 -070016340 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016341 hddLog(VOS_TRACE_LEVEL_ERROR,
16342 "%s: ccmCfgSetInt failed for rts_threshold value %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -070016343 __func__, rts_threshold);
16344 return -EIO;
16345 }
16346
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016347 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: set rts threshold %hu", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -070016348 rts_threshold);
16349 }
16350
16351 if (changed & WIPHY_PARAM_FRAG_THRESHOLD)
16352 {
16353 u16 frag_threshold = (wiphy->frag_threshold == -1) ?
16354 WNI_CFG_FRAGMENTATION_THRESHOLD_STAMAX :
16355 wiphy->frag_threshold;
16356
16357 if ((WNI_CFG_FRAGMENTATION_THRESHOLD_STAMIN > frag_threshold)||
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016358 (WNI_CFG_FRAGMENTATION_THRESHOLD_STAMAX < frag_threshold) )
Jeff Johnson295189b2012-06-20 16:38:30 -070016359 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016360 hddLog(VOS_TRACE_LEVEL_ERROR,
16361 "%s: Invalid frag_threshold value %hu", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -070016362 frag_threshold);
16363 return -EINVAL;
16364 }
16365
16366 if (0 != ccmCfgSetInt(hHal, WNI_CFG_FRAGMENTATION_THRESHOLD,
16367 frag_threshold, ccmCfgSetCallback,
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016368 eANI_BOOLEAN_TRUE))
Jeff Johnson295189b2012-06-20 16:38:30 -070016369 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016370 hddLog(VOS_TRACE_LEVEL_ERROR,
16371 "%s: ccmCfgSetInt failed for frag_threshold value %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -070016372 __func__, frag_threshold);
16373 return -EIO;
16374 }
16375
16376 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: set frag threshold %hu", __func__,
16377 frag_threshold);
16378 }
16379
16380 if ((changed & WIPHY_PARAM_RETRY_SHORT)
16381 || (changed & WIPHY_PARAM_RETRY_LONG))
16382 {
16383 u8 retry_value = (changed & WIPHY_PARAM_RETRY_SHORT) ?
16384 wiphy->retry_short :
16385 wiphy->retry_long;
16386
16387 if ((WNI_CFG_LONG_RETRY_LIMIT_STAMIN > retry_value) ||
16388 (WNI_CFG_LONG_RETRY_LIMIT_STAMAX < retry_value))
16389 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016390 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid Retry count %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -070016391 __func__, retry_value);
16392 return -EINVAL;
16393 }
16394
16395 if (changed & WIPHY_PARAM_RETRY_SHORT)
16396 {
16397 if (0 != ccmCfgSetInt(hHal, WNI_CFG_LONG_RETRY_LIMIT,
16398 retry_value, ccmCfgSetCallback,
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016399 eANI_BOOLEAN_TRUE))
Jeff Johnson295189b2012-06-20 16:38:30 -070016400 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016401 hddLog(VOS_TRACE_LEVEL_ERROR,
16402 "%s: ccmCfgSetInt failed for long retry count %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -070016403 __func__, retry_value);
16404 return -EIO;
16405 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016406 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: set long retry count %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -070016407 __func__, retry_value);
16408 }
16409 else if (changed & WIPHY_PARAM_RETRY_SHORT)
16410 {
16411 if (0 != ccmCfgSetInt(hHal, WNI_CFG_SHORT_RETRY_LIMIT,
16412 retry_value, ccmCfgSetCallback,
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016413 eANI_BOOLEAN_TRUE))
Jeff Johnson295189b2012-06-20 16:38:30 -070016414 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016415 hddLog(VOS_TRACE_LEVEL_ERROR,
16416 "%s: ccmCfgSetInt failed for short retry count %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -070016417 __func__, retry_value);
16418 return -EIO;
16419 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016420 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: set short retry count %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -070016421 __func__, retry_value);
16422 }
16423 }
16424
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053016425 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -070016426 return 0;
16427}
16428
Mahesh A Saptasagar179d2252014-06-02 21:32:21 +053016429static int wlan_hdd_cfg80211_set_wiphy_params(struct wiphy *wiphy,
16430 u32 changed)
16431{
16432 int ret;
16433
16434 vos_ssr_protect(__func__);
16435 ret = __wlan_hdd_cfg80211_set_wiphy_params(wiphy, changed);
16436 vos_ssr_unprotect(__func__);
16437
16438 return ret;
16439}
16440
Jeff Johnson295189b2012-06-20 16:38:30 -070016441/*
Mahesh A Saptasagar179d2252014-06-02 21:32:21 +053016442 * FUNCTION: __wlan_hdd_cfg80211_set_txpower
Jeff Johnson295189b2012-06-20 16:38:30 -070016443 * This function is used to set the txpower
16444 */
Mahesh A Saptasagar179d2252014-06-02 21:32:21 +053016445static int __wlan_hdd_cfg80211_set_txpower(struct wiphy *wiphy,
Yue Maf49ba872013-08-19 12:04:25 -070016446#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0)
16447 struct wireless_dev *wdev,
16448#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070016449#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,35)
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016450 enum tx_power_setting type,
Jeff Johnson295189b2012-06-20 16:38:30 -070016451#else
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016452 enum nl80211_tx_power_setting type,
Jeff Johnson295189b2012-06-20 16:38:30 -070016453#endif
16454 int dbm)
16455{
16456 hdd_context_t *pHddCtx = (hdd_context_t*) wiphy_priv(wiphy);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053016457 tHalHandle hHal = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -070016458 tSirMacAddr bssid = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF};
16459 tSirMacAddr selfMac = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF};
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053016460 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -070016461
16462 ENTER();
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053016463
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053016464 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
16465 TRACE_CODE_HDD_CFG80211_SET_TXPOWER,
16466 NO_SESSION, type ));
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053016467 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053016468 if (0 != status)
16469 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053016470 return status;
16471 }
16472
16473 hHal = pHddCtx->hHal;
16474
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016475 if (0 != ccmCfgSetInt(hHal, WNI_CFG_CURRENT_TX_POWER_LEVEL,
16476 dbm, ccmCfgSetCallback,
16477 eANI_BOOLEAN_TRUE))
Jeff Johnson295189b2012-06-20 16:38:30 -070016478 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016479 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -070016480 "%s: ccmCfgSetInt failed for tx power %hu", __func__, dbm);
16481 return -EIO;
16482 }
16483
16484 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: set tx power level %d dbm", __func__,
16485 dbm);
16486
16487 switch(type)
16488 {
16489 case NL80211_TX_POWER_AUTOMATIC: /*automatically determine transmit power*/
16490 /* Fall through */
16491 case NL80211_TX_POWER_LIMITED: /*limit TX power by the mBm parameter*/
16492 if( sme_SetMaxTxPower(hHal, bssid, selfMac, dbm) != eHAL_STATUS_SUCCESS )
16493 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016494 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Setting maximum tx power failed",
16495 __func__);
16496 return -EIO;
Jeff Johnson295189b2012-06-20 16:38:30 -070016497 }
16498 break;
16499 case NL80211_TX_POWER_FIXED: /*fix TX power to the mBm parameter*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016500 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: NL80211_TX_POWER_FIXED not supported",
Jeff Johnson295189b2012-06-20 16:38:30 -070016501 __func__);
16502 return -EOPNOTSUPP;
16503 break;
16504 default:
Gopichand Nakkala747461f2013-04-24 19:24:45 +053016505 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid power setting type %d",
16506 __func__, type);
Jeff Johnson295189b2012-06-20 16:38:30 -070016507 return -EIO;
16508 }
16509
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053016510 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -070016511 return 0;
16512}
16513
Mahesh A Saptasagar179d2252014-06-02 21:32:21 +053016514static int wlan_hdd_cfg80211_set_txpower(struct wiphy *wiphy,
16515#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0)
16516 struct wireless_dev *wdev,
16517#endif
16518#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,35)
16519 enum tx_power_setting type,
16520#else
16521 enum nl80211_tx_power_setting type,
16522#endif
16523 int dbm)
16524{
16525 int ret;
16526 vos_ssr_protect(__func__);
16527 ret = __wlan_hdd_cfg80211_set_txpower(wiphy,
16528#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0)
16529 wdev,
16530#endif
16531#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,35)
16532 type,
16533#else
16534 type,
16535#endif
16536 dbm);
16537 vos_ssr_unprotect(__func__);
16538
16539 return ret;
16540}
16541
Jeff Johnson295189b2012-06-20 16:38:30 -070016542/*
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053016543 * FUNCTION: __wlan_hdd_cfg80211_get_txpower
Jeff Johnson295189b2012-06-20 16:38:30 -070016544 * This function is used to read the txpower
16545 */
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053016546static int __wlan_hdd_cfg80211_get_txpower(struct wiphy *wiphy,
Yue Maf49ba872013-08-19 12:04:25 -070016547#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0)
16548 struct wireless_dev *wdev,
16549#endif
16550 int *dbm)
Jeff Johnson295189b2012-06-20 16:38:30 -070016551{
16552
16553 hdd_adapter_t *pAdapter;
16554 hdd_context_t *pHddCtx = (hdd_context_t*) wiphy_priv(wiphy);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053016555 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -070016556
Jeff Johnsone7245742012-09-05 17:12:55 -070016557 ENTER();
16558
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053016559 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053016560 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070016561 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053016562 *dbm = 0;
16563 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070016564 }
16565
Jeff Johnson295189b2012-06-20 16:38:30 -070016566 pAdapter = hdd_get_adapter(pHddCtx, WLAN_HDD_INFRA_STATION);
16567 if (NULL == pAdapter)
16568 {
16569 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: Not in station context " ,__func__);
16570 return -ENOENT;
16571 }
16572
Konamki, Sreelakshmi7b464be2015-07-14 12:17:01 +053016573 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
16574 TRACE_CODE_HDD_CFG80211_GET_TXPOWER,
16575 pAdapter->sessionId, pAdapter->device_mode));
Jeff Johnson295189b2012-06-20 16:38:30 -070016576 wlan_hdd_get_classAstats(pAdapter);
16577 *dbm = pAdapter->hdd_stats.ClassA_stat.max_pwr;
16578
Jeff Johnsone7245742012-09-05 17:12:55 -070016579 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -070016580 return 0;
16581}
16582
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053016583static int wlan_hdd_cfg80211_get_txpower(struct wiphy *wiphy,
16584#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0)
16585 struct wireless_dev *wdev,
16586#endif
16587 int *dbm)
16588{
16589 int ret;
16590
16591 vos_ssr_protect(__func__);
16592 ret = __wlan_hdd_cfg80211_get_txpower(wiphy,
16593#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0)
16594 wdev,
16595#endif
16596 dbm);
16597 vos_ssr_unprotect(__func__);
16598
16599 return ret;
16600}
16601
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053016602static int __wlan_hdd_cfg80211_get_station(struct wiphy *wiphy, struct net_device *dev,
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053016603#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,18,0))
16604 const u8* mac,
16605#else
16606 u8* mac,
16607#endif
16608 struct station_info *sinfo)
Jeff Johnson295189b2012-06-20 16:38:30 -070016609{
16610 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
16611 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
16612 int ssidlen = pHddStaCtx->conn_info.SSID.SSID.length;
c_hpothu44ff4e02014-05-08 00:13:57 +053016613 tANI_U32 rate_flags;
Jeff Johnson295189b2012-06-20 16:38:30 -070016614
16615 hdd_context_t *pHddCtx = (hdd_context_t*) wiphy_priv(wiphy);
16616 hdd_config_t *pCfg = pHddCtx->cfg_ini;
Jeff Johnson295189b2012-06-20 16:38:30 -070016617
16618 tANI_U8 OperationalRates[CSR_DOT11_SUPPORTED_RATES_MAX];
16619 tANI_U32 ORLeng = CSR_DOT11_SUPPORTED_RATES_MAX;
16620 tANI_U8 ExtendedRates[CSR_DOT11_EXTENDED_SUPPORTED_RATES_MAX];
16621 tANI_U32 ERLeng = CSR_DOT11_EXTENDED_SUPPORTED_RATES_MAX;
16622 tANI_U8 MCSRates[SIZE_OF_BASIC_MCS_SET];
16623 tANI_U32 MCSLeng = SIZE_OF_BASIC_MCS_SET;
16624 tANI_U16 maxRate = 0;
16625 tANI_U16 myRate;
16626 tANI_U16 currentRate = 0;
16627 tANI_U8 maxSpeedMCS = 0;
16628 tANI_U8 maxMCSIdx = 0;
16629 tANI_U8 rateFlag = 1;
c_hpothu79aab322014-07-14 21:11:01 +053016630 tANI_U8 i, j, rssidx, mode=0;
Madan Mohan Koyyalamudic75be962012-10-18 19:19:03 -070016631 tANI_U16 temp;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053016632 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -070016633
Leo Chang6f8870f2013-03-26 18:11:36 -070016634#ifdef WLAN_FEATURE_11AC
16635 tANI_U32 vht_mcs_map;
16636 eDataRate11ACMaxMcs vhtMaxMcs;
16637#endif /* WLAN_FEATURE_11AC */
16638
Jeff Johnsone7245742012-09-05 17:12:55 -070016639 ENTER();
16640
Jeff Johnson295189b2012-06-20 16:38:30 -070016641 if ((eConnectionState_Associated != pHddStaCtx->conn_info.connState) ||
16642 (0 == ssidlen))
16643 {
16644 hddLog(VOS_TRACE_LEVEL_INFO, "%s: Not associated or"
16645 " Invalid ssidlen, %d", __func__, ssidlen);
16646 /*To keep GUI happy*/
16647 return 0;
16648 }
16649
Mukul Sharma811205f2014-07-09 21:07:30 +053016650 if (VOS_TRUE == pHddStaCtx->hdd_ReassocScenario)
16651 {
16652 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
16653 "%s: Roaming in progress, so unable to proceed this request", __func__);
Sachin Ahuja81ab1812016-08-19 21:35:58 +053016654 /* return a cached value */
16655 sinfo->signal = pAdapter->rssi;
Mukul Sharma811205f2014-07-09 21:07:30 +053016656 return 0;
16657 }
16658
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053016659 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053016660 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070016661 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053016662 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070016663 }
16664
Hanumantha Reddy Pothuladce66742015-08-25 18:08:44 +053016665 wlan_hdd_get_station_stats(pAdapter);
16666 rate_flags = pAdapter->hdd_stats.ClassA_stat.tx_rate_flags;
Jeff Johnson295189b2012-06-20 16:38:30 -070016667
Kiet Lam3b17fc82013-09-27 05:24:08 +053016668 wlan_hdd_get_rssi(pAdapter, &sinfo->signal);
16669 sinfo->filled |= STATION_INFO_SIGNAL;
16670
c_hpothu09f19542014-05-30 21:53:31 +053016671 /*overwrite rate_flags if MAX link-speed need to be reported*/
c_hpothu44ff4e02014-05-08 00:13:57 +053016672 if ((eHDD_LINK_SPEED_REPORT_MAX == pCfg->reportMaxLinkSpeed) ||
16673 (eHDD_LINK_SPEED_REPORT_MAX_SCALED == pCfg->reportMaxLinkSpeed &&
c_hpothu79aab322014-07-14 21:11:01 +053016674 sinfo->signal >= pCfg->linkSpeedRssiLow))
c_hpothu44ff4e02014-05-08 00:13:57 +053016675 {
16676 rate_flags = pAdapter->maxRateFlags;
16677 }
c_hpothu44ff4e02014-05-08 00:13:57 +053016678
Jeff Johnson295189b2012-06-20 16:38:30 -070016679 //convert to the UI units of 100kbps
16680 myRate = pAdapter->hdd_stats.ClassA_stat.tx_rate * 5;
16681
16682#ifdef LINKSPEED_DEBUG_ENABLED
Leo Chang6f8870f2013-03-26 18:11:36 -070016683 pr_info("RSSI %d, RLMS %u, rate %d, rssi high %d, rssi mid %d, rssi low %d, rate_flags 0x%x, MCS %d\n",
Jeff Johnson295189b2012-06-20 16:38:30 -070016684 sinfo->signal,
16685 pCfg->reportMaxLinkSpeed,
16686 myRate,
16687 (int) pCfg->linkSpeedRssiHigh,
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -070016688 (int) pCfg->linkSpeedRssiMid,
16689 (int) pCfg->linkSpeedRssiLow,
Leo Chang6f8870f2013-03-26 18:11:36 -070016690 (int) rate_flags,
16691 (int) pAdapter->hdd_stats.ClassA_stat.mcs_index);
Jeff Johnson295189b2012-06-20 16:38:30 -070016692#endif //LINKSPEED_DEBUG_ENABLED
16693
16694 if (eHDD_LINK_SPEED_REPORT_ACTUAL != pCfg->reportMaxLinkSpeed)
16695 {
16696 // we do not want to necessarily report the current speed
16697 if (eHDD_LINK_SPEED_REPORT_MAX == pCfg->reportMaxLinkSpeed)
16698 {
16699 // report the max possible speed
16700 rssidx = 0;
16701 }
16702 else if (eHDD_LINK_SPEED_REPORT_MAX_SCALED == pCfg->reportMaxLinkSpeed)
16703 {
16704 // report the max possible speed with RSSI scaling
16705 if (sinfo->signal >= pCfg->linkSpeedRssiHigh)
16706 {
16707 // report the max possible speed
16708 rssidx = 0;
16709 }
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -070016710 else if (sinfo->signal >= pCfg->linkSpeedRssiMid)
Jeff Johnson295189b2012-06-20 16:38:30 -070016711 {
16712 // report middle speed
16713 rssidx = 1;
16714 }
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -070016715 else if (sinfo->signal >= pCfg->linkSpeedRssiLow)
16716 {
16717 // report middle speed
16718 rssidx = 2;
16719 }
Jeff Johnson295189b2012-06-20 16:38:30 -070016720 else
16721 {
16722 // report actual speed
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -070016723 rssidx = 3;
Jeff Johnson295189b2012-06-20 16:38:30 -070016724 }
16725 }
16726 else
16727 {
16728 // unknown, treat as eHDD_LINK_SPEED_REPORT_MAX
16729 hddLog(VOS_TRACE_LEVEL_ERROR,
16730 "%s: Invalid value for reportMaxLinkSpeed: %u",
16731 __func__, pCfg->reportMaxLinkSpeed);
16732 rssidx = 0;
16733 }
16734
16735 maxRate = 0;
16736
16737 /* Get Basic Rate Set */
Gopichand Nakkala05ab1322013-02-15 11:28:38 +053016738 if (0 != ccmCfgGetStr(WLAN_HDD_GET_HAL_CTX(pAdapter), WNI_CFG_OPERATIONAL_RATE_SET,
16739 OperationalRates, &ORLeng))
16740 {
16741 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: ccm api returned failure", __func__);
16742 /*To keep GUI happy*/
16743 return 0;
16744 }
16745
Jeff Johnson295189b2012-06-20 16:38:30 -070016746 for (i = 0; i < ORLeng; i++)
16747 {
Jeff Johnsone7245742012-09-05 17:12:55 -070016748 for (j = 0; j < (sizeof(supported_data_rate) / sizeof(supported_data_rate[0])); j ++)
Jeff Johnson295189b2012-06-20 16:38:30 -070016749 {
16750 /* Validate Rate Set */
16751 if (supported_data_rate[j].beacon_rate_index == (OperationalRates[i] & 0x7F))
16752 {
16753 currentRate = supported_data_rate[j].supported_rate[rssidx];
16754 break;
16755 }
16756 }
16757 /* Update MAX rate */
16758 maxRate = (currentRate > maxRate)?currentRate:maxRate;
16759 }
16760
16761 /* Get Extended Rate Set */
Gopichand Nakkala05ab1322013-02-15 11:28:38 +053016762 if (0 != ccmCfgGetStr(WLAN_HDD_GET_HAL_CTX(pAdapter), WNI_CFG_EXTENDED_OPERATIONAL_RATE_SET,
16763 ExtendedRates, &ERLeng))
16764 {
16765 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: ccm api returned failure", __func__);
16766 /*To keep GUI happy*/
16767 return 0;
16768 }
16769
Jeff Johnson295189b2012-06-20 16:38:30 -070016770 for (i = 0; i < ERLeng; i++)
16771 {
Jeff Johnsone7245742012-09-05 17:12:55 -070016772 for (j = 0; j < (sizeof(supported_data_rate) / sizeof(supported_data_rate[0])); j ++)
Jeff Johnson295189b2012-06-20 16:38:30 -070016773 {
16774 if (supported_data_rate[j].beacon_rate_index == (ExtendedRates[i] & 0x7F))
16775 {
16776 currentRate = supported_data_rate[j].supported_rate[rssidx];
16777 break;
16778 }
16779 }
16780 /* Update MAX rate */
16781 maxRate = (currentRate > maxRate)?currentRate:maxRate;
16782 }
c_hpothu79aab322014-07-14 21:11:01 +053016783
Kiet Lamb69f8dc2013-11-15 15:34:27 +053016784 /* Get MCS Rate Set --
Kaushik, Sushantdc304d82014-01-22 10:58:37 +053016785 Only if we are always reporting max speed (or)
Kiet Lamb69f8dc2013-11-15 15:34:27 +053016786 if we have good rssi */
c_hpothu79aab322014-07-14 21:11:01 +053016787 if ((3 != rssidx) && !(rate_flags & eHAL_TX_RATE_LEGACY))
Jeff Johnson295189b2012-06-20 16:38:30 -070016788 {
c_hpothu79aab322014-07-14 21:11:01 +053016789 if (rate_flags & eHAL_TX_RATE_VHT80)
16790 mode = 2;
16791 else if (rate_flags & (eHAL_TX_RATE_VHT40 | eHAL_TX_RATE_HT40))
16792 mode = 1;
16793 else
16794 mode = 0;
16795
Gopichand Nakkala05ab1322013-02-15 11:28:38 +053016796 if (0 != ccmCfgGetStr(WLAN_HDD_GET_HAL_CTX(pAdapter), WNI_CFG_CURRENT_MCS_SET,
16797 MCSRates, &MCSLeng))
16798 {
16799 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: ccm api returned failure", __func__);
16800 /*To keep GUI happy*/
16801 return 0;
16802 }
Jeff Johnson295189b2012-06-20 16:38:30 -070016803 rateFlag = 0;
Leo Chang6f8870f2013-03-26 18:11:36 -070016804#ifdef WLAN_FEATURE_11AC
16805 /* VHT80 rate has seperate rate table */
Gopichand Nakkala4c705372013-04-24 13:20:33 +053016806 if (rate_flags & (eHAL_TX_RATE_VHT20|eHAL_TX_RATE_VHT40|eHAL_TX_RATE_VHT80))
Jeff Johnson295189b2012-06-20 16:38:30 -070016807 {
Leo Chang6f8870f2013-03-26 18:11:36 -070016808 ccmCfgGetInt(WLAN_HDD_GET_HAL_CTX(pAdapter), WNI_CFG_VHT_TX_MCS_MAP, &vht_mcs_map);
Gopichand Nakkala4c705372013-04-24 13:20:33 +053016809 vhtMaxMcs = (eDataRate11ACMaxMcs)(vht_mcs_map & DATA_RATE_11AC_MCS_MASK );
Leo Chang6f8870f2013-03-26 18:11:36 -070016810 if (rate_flags & eHAL_TX_RATE_SGI)
Jeff Johnson295189b2012-06-20 16:38:30 -070016811 {
Leo Chang6f8870f2013-03-26 18:11:36 -070016812 rateFlag |= 1;
Jeff Johnson295189b2012-06-20 16:38:30 -070016813 }
Leo Chang6f8870f2013-03-26 18:11:36 -070016814 if (DATA_RATE_11AC_MAX_MCS_7 == vhtMaxMcs)
Jeff Johnson295189b2012-06-20 16:38:30 -070016815 {
Leo Chang6f8870f2013-03-26 18:11:36 -070016816 maxMCSIdx = 7;
16817 }
16818 else if (DATA_RATE_11AC_MAX_MCS_8 == vhtMaxMcs)
16819 {
16820 maxMCSIdx = 8;
16821 }
16822 else if (DATA_RATE_11AC_MAX_MCS_9 == vhtMaxMcs)
16823 {
Gopichand Nakkala4c705372013-04-24 13:20:33 +053016824 //VHT20 is supporting 0~8
16825 if (rate_flags & eHAL_TX_RATE_VHT20)
16826 maxMCSIdx = 8;
16827 else
16828 maxMCSIdx = 9;
Leo Chang6f8870f2013-03-26 18:11:36 -070016829 }
Gopichand Nakkala4c705372013-04-24 13:20:33 +053016830
c_hpothu79aab322014-07-14 21:11:01 +053016831 if (0 != rssidx)/*check for scaled */
16832 {
16833 //get middle rate MCS index if rssi=1/2
16834 for (i=0; i <= maxMCSIdx; i++)
16835 {
16836 if (sinfo->signal <= rssiMcsTbl[mode][i])
16837 {
16838 maxMCSIdx = i;
16839 break;
16840 }
16841 }
16842 }
16843
Gopichand Nakkala4c705372013-04-24 13:20:33 +053016844 if (rate_flags & eHAL_TX_RATE_VHT80)
16845 {
16846 currentRate = supported_vht_mcs_rate[pAdapter->hdd_stats.ClassA_stat.mcs_index].supported_VHT80_rate[rateFlag];
16847 maxRate = supported_vht_mcs_rate[maxMCSIdx].supported_VHT80_rate[rateFlag];
16848 }
16849 else if (rate_flags & eHAL_TX_RATE_VHT40)
16850 {
16851 currentRate = supported_vht_mcs_rate[pAdapter->hdd_stats.ClassA_stat.mcs_index].supported_VHT40_rate[rateFlag];
16852 maxRate = supported_vht_mcs_rate[maxMCSIdx].supported_VHT40_rate[rateFlag];
16853 }
16854 else if (rate_flags & eHAL_TX_RATE_VHT20)
16855 {
16856 currentRate = supported_vht_mcs_rate[pAdapter->hdd_stats.ClassA_stat.mcs_index].supported_VHT20_rate[rateFlag];
16857 maxRate = supported_vht_mcs_rate[maxMCSIdx].supported_VHT20_rate[rateFlag];
16858 }
16859
Leo Chang6f8870f2013-03-26 18:11:36 -070016860 maxSpeedMCS = 1;
16861 if (currentRate > maxRate)
16862 {
16863 maxRate = currentRate;
16864 }
Gopichand Nakkala4c705372013-04-24 13:20:33 +053016865
Leo Chang6f8870f2013-03-26 18:11:36 -070016866 }
16867 else
16868#endif /* WLAN_FEATURE_11AC */
16869 {
16870 if (rate_flags & eHAL_TX_RATE_HT40)
16871 {
16872 rateFlag |= 1;
16873 }
16874 if (rate_flags & eHAL_TX_RATE_SGI)
16875 {
16876 rateFlag |= 2;
16877 }
16878
Girish Gowli01abcee2014-07-31 20:18:55 +053016879 temp = sizeof(supported_mcs_rate) / sizeof(supported_mcs_rate[0]);
c_hpothu79aab322014-07-14 21:11:01 +053016880 if (rssidx == 1 || rssidx == 2)
16881 {
16882 //get middle rate MCS index if rssi=1/2
16883 for (i=0; i <= 7; i++)
16884 {
16885 if (sinfo->signal <= rssiMcsTbl[mode][i])
16886 {
16887 temp = i+1;
16888 break;
16889 }
16890 }
16891 }
c_hpothu79aab322014-07-14 21:11:01 +053016892
16893 for (i = 0; i < MCSLeng; i++)
16894 {
Leo Chang6f8870f2013-03-26 18:11:36 -070016895 for (j = 0; j < temp; j++)
16896 {
16897 if (supported_mcs_rate[j].beacon_rate_index == MCSRates[i])
16898 {
16899 currentRate = supported_mcs_rate[j].supported_rate[rateFlag];
Hanumantha Reddy Pothulafa623742015-06-16 14:08:24 +053016900 maxMCSIdx = supported_mcs_rate[j].beacon_rate_index;
Leo Chang6f8870f2013-03-26 18:11:36 -070016901 break;
16902 }
16903 }
16904 if ((j < temp) && (currentRate > maxRate))
16905 {
16906 maxRate = currentRate;
Leo Chang6f8870f2013-03-26 18:11:36 -070016907 }
Jeff Johnson295189b2012-06-20 16:38:30 -070016908 }
Hanumantha Reddy Pothulafa623742015-06-16 14:08:24 +053016909 maxSpeedMCS = 1;
Jeff Johnson295189b2012-06-20 16:38:30 -070016910 }
16911 }
16912
Gopichand Nakkala4c705372013-04-24 13:20:33 +053016913 else if (!(rate_flags & eHAL_TX_RATE_LEGACY))
16914 {
16915 maxRate = myRate;
16916 maxSpeedMCS = 1;
16917 maxMCSIdx = pAdapter->hdd_stats.ClassA_stat.mcs_index;
16918 }
Jeff Johnson295189b2012-06-20 16:38:30 -070016919 // make sure we report a value at least as big as our current rate
c_hpothu79aab322014-07-14 21:11:01 +053016920 if ((maxRate < myRate) || (0 == maxRate))
Jeff Johnson295189b2012-06-20 16:38:30 -070016921 {
16922 maxRate = myRate;
16923 if (rate_flags & eHAL_TX_RATE_LEGACY)
16924 {
16925 maxSpeedMCS = 0;
16926 }
16927 else
16928 {
16929 maxSpeedMCS = 1;
16930 maxMCSIdx = pAdapter->hdd_stats.ClassA_stat.mcs_index;
16931 }
16932 }
16933
Gopichand Nakkala4c705372013-04-24 13:20:33 +053016934 if (rate_flags & eHAL_TX_RATE_LEGACY)
Jeff Johnson295189b2012-06-20 16:38:30 -070016935 {
16936 sinfo->txrate.legacy = maxRate;
16937#ifdef LINKSPEED_DEBUG_ENABLED
16938 pr_info("Reporting legacy rate %d\n", sinfo->txrate.legacy);
16939#endif //LINKSPEED_DEBUG_ENABLED
16940 }
16941 else
16942 {
16943 sinfo->txrate.mcs = maxMCSIdx;
Leo Chang6f8870f2013-03-26 18:11:36 -070016944#ifdef WLAN_FEATURE_11AC
16945 sinfo->txrate.nss = 1;
16946 if (rate_flags & eHAL_TX_RATE_VHT80)
16947 {
16948 sinfo->txrate.flags |= RATE_INFO_FLAGS_VHT_MCS;
Gopichand Nakkala4c705372013-04-24 13:20:33 +053016949 sinfo->txrate.flags |= RATE_INFO_FLAGS_80_MHZ_WIDTH;
Leo Chang6f8870f2013-03-26 18:11:36 -070016950 }
Gopichand Nakkala4c705372013-04-24 13:20:33 +053016951 else if (rate_flags & eHAL_TX_RATE_VHT40)
Leo Chang6f8870f2013-03-26 18:11:36 -070016952 {
Gopichand Nakkala4c705372013-04-24 13:20:33 +053016953 sinfo->txrate.flags |= RATE_INFO_FLAGS_VHT_MCS;
16954 sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
16955 }
16956 else if (rate_flags & eHAL_TX_RATE_VHT20)
16957 {
16958 sinfo->txrate.flags |= RATE_INFO_FLAGS_VHT_MCS;
16959 }
16960#endif /* WLAN_FEATURE_11AC */
16961 if (rate_flags & (eHAL_TX_RATE_HT20 | eHAL_TX_RATE_HT40))
16962 {
16963 sinfo->txrate.flags |= RATE_INFO_FLAGS_MCS;
16964 if (rate_flags & eHAL_TX_RATE_HT40)
16965 {
16966 sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
16967 }
Leo Chang6f8870f2013-03-26 18:11:36 -070016968 }
Jeff Johnson295189b2012-06-20 16:38:30 -070016969 if (rate_flags & eHAL_TX_RATE_SGI)
16970 {
16971 sinfo->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
16972 }
Gopichand Nakkala4c705372013-04-24 13:20:33 +053016973
Jeff Johnson295189b2012-06-20 16:38:30 -070016974#ifdef LINKSPEED_DEBUG_ENABLED
16975 pr_info("Reporting MCS rate %d flags %x\n",
16976 sinfo->txrate.mcs,
16977 sinfo->txrate.flags );
16978#endif //LINKSPEED_DEBUG_ENABLED
16979 }
16980 }
16981 else
16982 {
16983 // report current rate instead of max rate
16984
16985 if (rate_flags & eHAL_TX_RATE_LEGACY)
16986 {
16987 //provide to the UI in units of 100kbps
16988 sinfo->txrate.legacy = myRate;
16989#ifdef LINKSPEED_DEBUG_ENABLED
16990 pr_info("Reporting actual legacy rate %d\n", sinfo->txrate.legacy);
16991#endif //LINKSPEED_DEBUG_ENABLED
16992 }
16993 else
16994 {
16995 //must be MCS
16996 sinfo->txrate.mcs = pAdapter->hdd_stats.ClassA_stat.mcs_index;
Leo Chang6f8870f2013-03-26 18:11:36 -070016997#ifdef WLAN_FEATURE_11AC
16998 sinfo->txrate.nss = 1;
16999 if (rate_flags & eHAL_TX_RATE_VHT80)
17000 {
17001 sinfo->txrate.flags |= RATE_INFO_FLAGS_VHT_MCS;
17002 }
17003 else
17004#endif /* WLAN_FEATURE_11AC */
17005 {
17006 sinfo->txrate.flags |= RATE_INFO_FLAGS_MCS;
17007 }
Jeff Johnson295189b2012-06-20 16:38:30 -070017008 if (rate_flags & eHAL_TX_RATE_SGI)
17009 {
17010 sinfo->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
17011 }
17012 if (rate_flags & eHAL_TX_RATE_HT40)
17013 {
17014 sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
17015 }
Leo Chang6f8870f2013-03-26 18:11:36 -070017016#ifdef WLAN_FEATURE_11AC
17017 else if (rate_flags & eHAL_TX_RATE_VHT80)
17018 {
17019 sinfo->txrate.flags |= RATE_INFO_FLAGS_80_MHZ_WIDTH;
17020 }
17021#endif /* WLAN_FEATURE_11AC */
Jeff Johnson295189b2012-06-20 16:38:30 -070017022#ifdef LINKSPEED_DEBUG_ENABLED
17023 pr_info("Reporting actual MCS rate %d flags %x\n",
17024 sinfo->txrate.mcs,
17025 sinfo->txrate.flags );
17026#endif //LINKSPEED_DEBUG_ENABLED
17027 }
17028 }
17029 sinfo->filled |= STATION_INFO_TX_BITRATE;
17030
Madan Mohan Koyyalamudi4d4d2812012-09-24 14:08:29 -070017031 sinfo->tx_packets =
17032 pAdapter->hdd_stats.summary_stat.tx_frm_cnt[0] +
17033 pAdapter->hdd_stats.summary_stat.tx_frm_cnt[1] +
17034 pAdapter->hdd_stats.summary_stat.tx_frm_cnt[2] +
17035 pAdapter->hdd_stats.summary_stat.tx_frm_cnt[3];
17036
17037 sinfo->tx_retries =
17038 pAdapter->hdd_stats.summary_stat.retry_cnt[0] +
17039 pAdapter->hdd_stats.summary_stat.retry_cnt[1] +
17040 pAdapter->hdd_stats.summary_stat.retry_cnt[2] +
17041 pAdapter->hdd_stats.summary_stat.retry_cnt[3];
17042
17043 sinfo->tx_failed =
17044 pAdapter->hdd_stats.summary_stat.fail_cnt[0] +
17045 pAdapter->hdd_stats.summary_stat.fail_cnt[1] +
17046 pAdapter->hdd_stats.summary_stat.fail_cnt[2] +
17047 pAdapter->hdd_stats.summary_stat.fail_cnt[3];
17048
17049 sinfo->filled |=
17050 STATION_INFO_TX_PACKETS |
17051 STATION_INFO_TX_RETRIES |
17052 STATION_INFO_TX_FAILED;
17053
Edhar, Mahesh Kumar3cc9f232015-12-29 14:41:01 +053017054 sinfo->rx_packets = pAdapter->hdd_stats.summary_stat.rx_frm_cnt;
17055 sinfo->filled |= STATION_INFO_RX_PACKETS;
17056
17057 if (rate_flags & eHAL_TX_RATE_LEGACY)
17058 hddLog(LOG1, FL("Reporting RSSI:%d legacy rate %d pkt cnt tx %d rx %d"),
17059 sinfo->signal, sinfo->txrate.legacy, sinfo->tx_packets,
17060 sinfo->rx_packets);
17061 else
17062 hddLog(LOG1,
17063 FL("Reporting RSSI:%d MCS rate %d flags 0x%x pkt cnt tx %d rx %d"),
17064 sinfo->signal, sinfo->txrate.mcs, sinfo->txrate.flags,
17065 sinfo->tx_packets, sinfo->rx_packets);
17066
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053017067 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
17068 TRACE_CODE_HDD_CFG80211_GET_STA,
17069 pAdapter->sessionId, maxRate));
Madan Mohan Koyyalamudi4d4d2812012-09-24 14:08:29 -070017070 EXIT();
17071 return 0;
Jeff Johnson295189b2012-06-20 16:38:30 -070017072}
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053017073#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,16,0))
17074static int wlan_hdd_cfg80211_get_station(struct wiphy *wiphy, struct net_device *dev,
17075 const u8* mac, struct station_info *sinfo)
17076#else
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053017077static int wlan_hdd_cfg80211_get_station(struct wiphy *wiphy, struct net_device *dev,
17078 u8* mac, struct station_info *sinfo)
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053017079#endif
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053017080{
17081 int ret;
17082
17083 vos_ssr_protect(__func__);
17084 ret = __wlan_hdd_cfg80211_get_station(wiphy, dev, mac, sinfo);
17085 vos_ssr_unprotect(__func__);
17086
17087 return ret;
17088}
17089
17090static int __wlan_hdd_cfg80211_set_power_mgmt(struct wiphy *wiphy,
Sameer Thalappilc9f26e92013-06-07 10:11:06 -070017091 struct net_device *dev, bool mode, int timeout)
Jeff Johnson295189b2012-06-20 16:38:30 -070017092{
17093 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Gopichand Nakkala20c4c042013-04-19 22:08:55 +053017094 hdd_context_t *pHddCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -070017095 VOS_STATUS vos_status;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053017096 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -070017097
Jeff Johnsone7245742012-09-05 17:12:55 -070017098 ENTER();
17099
Jeff Johnson295189b2012-06-20 16:38:30 -070017100 if (NULL == pAdapter)
17101 {
Arif Hussain6d2a3322013-11-17 19:50:10 -080017102 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Adapter is NULL", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -070017103 return -ENODEV;
17104 }
17105
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053017106 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
17107 TRACE_CODE_HDD_CFG80211_SET_POWER_MGMT,
17108 pAdapter->sessionId, timeout));
17109
Gopichand Nakkala20c4c042013-04-19 22:08:55 +053017110 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053017111 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053017112 if (0 != status)
Gopichand Nakkala747461f2013-04-24 19:24:45 +053017113 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053017114 return status;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053017115 }
17116
Gopichand Nakkala20c4c042013-04-19 22:08:55 +053017117 if ((DRIVER_POWER_MODE_AUTO == !mode) &&
17118 (TRUE == pHddCtx->hdd_wlan_suspended) &&
17119 (pHddCtx->cfg_ini->fhostArpOffload) &&
17120 (eConnectionState_Associated ==
17121 (WLAN_HDD_GET_STATION_CTX_PTR(pAdapter))->conn_info.connState))
17122 {
Amar Singhald53568e2013-09-26 11:03:45 -070017123
17124 hddLog(VOS_TRACE_LEVEL_INFO,
17125 "offload: in cfg80211_set_power_mgmt, calling arp offload");
Gopichand Nakkalab03e8082013-05-30 18:09:25 +053017126 vos_status = hdd_conf_arp_offload(pAdapter, TRUE);
Gopichand Nakkala20c4c042013-04-19 22:08:55 +053017127 if (!VOS_IS_STATUS_SUCCESS(vos_status))
17128 {
17129 hddLog(VOS_TRACE_LEVEL_INFO,
Arif Hussain6d2a3322013-11-17 19:50:10 -080017130 "%s:Failed to enable ARPOFFLOAD Feature %d",
Gopichand Nakkala20c4c042013-04-19 22:08:55 +053017131 __func__, vos_status);
17132 }
17133 }
17134
Jeff Johnson295189b2012-06-20 16:38:30 -070017135 /**The get power cmd from the supplicant gets updated by the nl only
17136 *on successful execution of the function call
17137 *we are oppositely mapped w.r.t mode in the driver
17138 **/
17139 vos_status = wlan_hdd_enter_bmps(pAdapter, !mode);
17140
17141 if (VOS_STATUS_E_FAILURE == vos_status)
17142 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +053017143 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
17144 "%s: failed to enter bmps mode", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -070017145 return -EINVAL;
17146 }
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053017147 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -070017148 return 0;
17149}
17150
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053017151static int wlan_hdd_cfg80211_set_power_mgmt(struct wiphy *wiphy,
17152 struct net_device *dev, bool mode, int timeout)
17153{
17154 int ret;
Jeff Johnson295189b2012-06-20 16:38:30 -070017155
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053017156 vos_ssr_protect(__func__);
17157 ret = __wlan_hdd_cfg80211_set_power_mgmt(wiphy, dev, mode, timeout);
17158 vos_ssr_unprotect(__func__);
17159
17160 return ret;
17161}
Sushant Kaushik084f6592015-09-10 13:11:56 +053017162
Jeff Johnson295189b2012-06-20 16:38:30 -070017163#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053017164static int __wlan_hdd_set_default_mgmt_key(struct wiphy *wiphy,
17165 struct net_device *netdev,
17166 u8 key_index)
17167{
17168 ENTER();
17169 return 0;
17170}
17171
Jeff Johnson295189b2012-06-20 16:38:30 -070017172static int wlan_hdd_set_default_mgmt_key(struct wiphy *wiphy,
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053017173 struct net_device *netdev,
17174 u8 key_index)
17175{
17176 int ret;
17177 vos_ssr_protect(__func__);
17178 ret = __wlan_hdd_set_default_mgmt_key(wiphy, netdev, key_index);
17179 vos_ssr_unprotect(__func__);
17180 return ret;
17181}
17182#endif //LINUX_VERSION_CODE
17183
17184#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
17185static int __wlan_hdd_set_txq_params(struct wiphy *wiphy,
17186 struct net_device *dev,
17187 struct ieee80211_txq_params *params)
17188{
17189 ENTER();
17190 return 0;
17191}
17192#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
17193static int __wlan_hdd_set_txq_params(struct wiphy *wiphy,
17194 struct ieee80211_txq_params *params)
Jeff Johnson295189b2012-06-20 16:38:30 -070017195{
Jeff Johnsone7245742012-09-05 17:12:55 -070017196 ENTER();
Jeff Johnson295189b2012-06-20 16:38:30 -070017197 return 0;
17198}
Gopichand Nakkala747461f2013-04-24 19:24:45 +053017199#endif //LINUX_VERSION_CODE
Jeff Johnson295189b2012-06-20 16:38:30 -070017200
17201#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
17202static int wlan_hdd_set_txq_params(struct wiphy *wiphy,
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053017203 struct net_device *dev,
17204 struct ieee80211_txq_params *params)
Jeff Johnson295189b2012-06-20 16:38:30 -070017205{
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053017206 int ret;
17207
17208 vos_ssr_protect(__func__);
17209 ret = __wlan_hdd_set_txq_params(wiphy, dev, params);
17210 vos_ssr_unprotect(__func__);
17211 return ret;
Jeff Johnson295189b2012-06-20 16:38:30 -070017212}
17213#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
17214static int wlan_hdd_set_txq_params(struct wiphy *wiphy,
17215 struct ieee80211_txq_params *params)
17216{
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053017217 int ret;
17218
17219 vos_ssr_protect(__func__);
17220 ret = __wlan_hdd_set_txq_params(wiphy, params);
17221 vos_ssr_unprotect(__func__);
17222 return ret;
Jeff Johnson295189b2012-06-20 16:38:30 -070017223}
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053017224#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070017225
Naresh Jayaram69e3f282014-10-14 12:29:12 +053017226static int __wlan_hdd_cfg80211_del_station(struct wiphy *wiphy,
Hanumantha Reddy Pothulabfd06f72014-10-31 14:03:37 +053017227 struct net_device *dev,
17228 struct tagCsrDelStaParams *pDelStaParams)
Jeff Johnson295189b2012-06-20 16:38:30 -070017229{
17230 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053017231 hdd_context_t *pHddCtx;
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -080017232 VOS_STATUS vos_status;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053017233 int status;
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -080017234 v_U8_t staId;
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +053017235 v_CONTEXT_t pVosContext = NULL;
17236 ptSapContext pSapCtx = NULL;
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053017237
Jeff Johnsone7245742012-09-05 17:12:55 -070017238 ENTER();
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053017239
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053017240 if ( NULL == pAdapter )
Jeff Johnson295189b2012-06-20 16:38:30 -070017241 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053017242 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid Adapter" ,__func__);
Jeff Johnson295189b2012-06-20 16:38:30 -070017243 return -EINVAL;
17244 }
17245
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053017246 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
17247 TRACE_CODE_HDD_CFG80211_DEL_STA,
17248 pAdapter->sessionId, pAdapter->device_mode));
17249
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053017250 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
17251 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053017252 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070017253 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053017254 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070017255 }
17256
Jeff Johnson295189b2012-06-20 16:38:30 -070017257 if ( (WLAN_HDD_SOFTAP == pAdapter->device_mode)
Jeff Johnson295189b2012-06-20 16:38:30 -070017258 || (WLAN_HDD_P2P_GO == pAdapter->device_mode)
Jeff Johnson295189b2012-06-20 16:38:30 -070017259 )
17260 {
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +053017261 pVosContext = ( WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
17262 pSapCtx = VOS_GET_SAP_CB(pVosContext);
17263 if(pSapCtx == NULL){
17264 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
17265 FL("psapCtx is NULL"));
17266 return -ENOENT;
17267 }
Agrawal Ashish306b75f2017-01-11 19:16:25 +053017268 if (pHddCtx->cfg_ini->enable_sap_auth_offload)
17269 {
17270 VOS_TRACE(VOS_MODULE_ID_SAP, VOS_TRACE_LEVEL_INFO,
17271 "Change reason code to eSIR_MAC_DISASSOC_LEAVING_BSS_REASON in sap auth offload");
17272 pDelStaParams->reason_code = eSIR_MAC_DISASSOC_LEAVING_BSS_REASON;
17273 }
Hanumantha Reddy Pothulabfd06f72014-10-31 14:03:37 +053017274 if (vos_is_macaddr_broadcast((v_MACADDR_t *)pDelStaParams->peerMacAddr))
Jeff Johnson295189b2012-06-20 16:38:30 -070017275 {
17276 v_U16_t i;
17277 for(i = 0; i < WLAN_MAX_STA_COUNT; i++)
17278 {
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +053017279 if ((pSapCtx->aStaInfo[i].isUsed) &&
17280 (!pSapCtx->aStaInfo[i].isDeauthInProgress))
Jeff Johnson295189b2012-06-20 16:38:30 -070017281 {
Hanumantha Reddy Pothulabfd06f72014-10-31 14:03:37 +053017282 vos_mem_copy(pDelStaParams->peerMacAddr,
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +053017283 pSapCtx->aStaInfo[i].macAddrSTA.bytes,
Hanumantha Reddy Pothulabfd06f72014-10-31 14:03:37 +053017284 ETHER_ADDR_LEN);
17285
Jeff Johnson295189b2012-06-20 16:38:30 -070017286 hddLog(VOS_TRACE_LEVEL_INFO,
Arif Hussain24bafea2013-11-15 15:10:03 -080017287 "%s: Delete STA with MAC::"
17288 MAC_ADDRESS_STR,
Hanumantha Reddy Pothulabfd06f72014-10-31 14:03:37 +053017289 __func__,
17290 MAC_ADDR_ARRAY(pDelStaParams->peerMacAddr));
17291 vos_status = hdd_softap_sta_deauth(pAdapter, pDelStaParams);
Rajesh Chauhan18488fc2013-08-22 10:15:03 -070017292 if (VOS_IS_STATUS_SUCCESS(vos_status))
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +053017293 pSapCtx->aStaInfo[i].isDeauthInProgress = TRUE;
Jeff Johnson295189b2012-06-20 16:38:30 -070017294 }
17295 }
17296 }
17297 else
17298 {
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -080017299
Hanumantha Reddy Pothulabfd06f72014-10-31 14:03:37 +053017300 vos_status = hdd_softap_GetStaId(pAdapter,
17301 (v_MACADDR_t *)pDelStaParams->peerMacAddr, &staId);
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -080017302 if (!VOS_IS_STATUS_SUCCESS(vos_status))
17303 {
17304 hddLog(VOS_TRACE_LEVEL_INFO,
Arif Hussain24bafea2013-11-15 15:10:03 -080017305 "%s: Skip this DEL STA as this is not used::"
17306 MAC_ADDRESS_STR,
Hanumantha Reddy Pothulabfd06f72014-10-31 14:03:37 +053017307 __func__, MAC_ADDR_ARRAY(pDelStaParams->peerMacAddr));
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -080017308 return -ENOENT;
17309 }
17310
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +053017311 if( pSapCtx->aStaInfo[staId].isDeauthInProgress == TRUE)
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -080017312 {
17313 hddLog(VOS_TRACE_LEVEL_INFO,
Arif Hussain24bafea2013-11-15 15:10:03 -080017314 "%s: Skip this DEL STA as deauth is in progress::"
17315 MAC_ADDRESS_STR,
Hanumantha Reddy Pothulabfd06f72014-10-31 14:03:37 +053017316 __func__, MAC_ADDR_ARRAY(pDelStaParams->peerMacAddr));
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -080017317 return -ENOENT;
17318 }
17319
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +053017320 pSapCtx->aStaInfo[staId].isDeauthInProgress = TRUE;
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -080017321
Jeff Johnson295189b2012-06-20 16:38:30 -070017322 hddLog(VOS_TRACE_LEVEL_INFO,
17323 "%s: Delete STA with MAC::"
Arif Hussain24bafea2013-11-15 15:10:03 -080017324 MAC_ADDRESS_STR,
Jeff Johnson295189b2012-06-20 16:38:30 -070017325 __func__,
Hanumantha Reddy Pothulabfd06f72014-10-31 14:03:37 +053017326 MAC_ADDR_ARRAY(pDelStaParams->peerMacAddr));
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -080017327
Hanumantha Reddy Pothulabfd06f72014-10-31 14:03:37 +053017328 vos_status = hdd_softap_sta_deauth(pAdapter, pDelStaParams);
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -080017329 if (!VOS_IS_STATUS_SUCCESS(vos_status))
17330 {
Sachin Ahujabcb0b7e2014-11-07 13:01:24 +053017331 pSapCtx->aStaInfo[staId].isDeauthInProgress = FALSE;
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -080017332 hddLog(VOS_TRACE_LEVEL_INFO,
17333 "%s: STA removal failed for ::"
Arif Hussain24bafea2013-11-15 15:10:03 -080017334 MAC_ADDRESS_STR,
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -080017335 __func__,
Hanumantha Reddy Pothulabfd06f72014-10-31 14:03:37 +053017336 MAC_ADDR_ARRAY(pDelStaParams->peerMacAddr));
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -080017337 return -ENOENT;
17338 }
17339
Jeff Johnson295189b2012-06-20 16:38:30 -070017340 }
17341 }
17342
17343 EXIT();
17344
17345 return 0;
17346}
Naresh Jayaram69e3f282014-10-14 12:29:12 +053017347
17348#ifdef CFG80211_DEL_STA_V2
Kapil Gupta137ef892016-12-13 19:38:00 +053017349int wlan_hdd_cfg80211_del_station(struct wiphy *wiphy,
Naresh Jayaram69e3f282014-10-14 12:29:12 +053017350 struct net_device *dev,
17351 struct station_del_parameters *param)
17352#else
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053017353#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,16,0))
Kapil Gupta137ef892016-12-13 19:38:00 +053017354int wlan_hdd_cfg80211_del_station(struct wiphy *wiphy,
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053017355 struct net_device *dev, const u8 *mac)
17356#else
Kapil Gupta137ef892016-12-13 19:38:00 +053017357int wlan_hdd_cfg80211_del_station(struct wiphy *wiphy,
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053017358 struct net_device *dev, u8 *mac)
Naresh Jayaram69e3f282014-10-14 12:29:12 +053017359#endif
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053017360#endif
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053017361{
17362 int ret;
Hanumantha Reddy Pothulabfd06f72014-10-31 14:03:37 +053017363 struct tagCsrDelStaParams delStaParams;
Jeff Johnson295189b2012-06-20 16:38:30 -070017364
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053017365 vos_ssr_protect(__func__);
Hanumantha Reddy Pothulabfd06f72014-10-31 14:03:37 +053017366
Naresh Jayaram69e3f282014-10-14 12:29:12 +053017367#ifdef CFG80211_DEL_STA_V2
Hanumantha Reddy Pothulabfd06f72014-10-31 14:03:37 +053017368 if (NULL == param) {
17369 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid argumet passed", __func__);
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053017370 vos_ssr_unprotect(__func__);
Hanumantha Reddy Pothulabfd06f72014-10-31 14:03:37 +053017371 return -EINVAL;
17372 }
17373
17374 WLANSAP_PopulateDelStaParams(param->mac, param->reason_code,
17375 param->subtype, &delStaParams);
17376
Naresh Jayaram69e3f282014-10-14 12:29:12 +053017377#else
Sushant Kaushik4cd28f62014-12-26 14:23:50 +053017378 WLANSAP_PopulateDelStaParams(mac, eSIR_MAC_DEAUTH_LEAVING_BSS_REASON,
Hanumantha Reddy Pothulabfd06f72014-10-31 14:03:37 +053017379 (SIR_MAC_MGMT_DEAUTH >> 4), &delStaParams);
Naresh Jayaram69e3f282014-10-14 12:29:12 +053017380#endif
Hanumantha Reddy Pothulabfd06f72014-10-31 14:03:37 +053017381 ret = __wlan_hdd_cfg80211_del_station(wiphy, dev, &delStaParams);
17382
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053017383 vos_ssr_unprotect(__func__);
17384
17385 return ret;
17386}
17387
17388static int __wlan_hdd_cfg80211_add_station(struct wiphy *wiphy,
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053017389 struct net_device *dev,
17390#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,18,0))
17391 const u8 *mac,
17392#else
17393 u8 *mac,
17394#endif
17395 struct station_parameters *params)
Hoonki Lee11f7dda2013-02-14 16:55:44 -080017396{
Mahesh A Saptasagar74088392015-02-05 17:22:09 +053017397 hdd_adapter_t *pAdapter;
17398 hdd_context_t *pHddCtx;
Gopichand Nakkalab977a972013-02-18 19:15:09 -080017399 int status = -EPERM;
Hoonki Lee11f7dda2013-02-14 16:55:44 -080017400#ifdef FEATURE_WLAN_TDLS
17401 u32 mask, set;
Mahesh A Saptasagar74088392015-02-05 17:22:09 +053017402
Hoonki Lee11f7dda2013-02-14 16:55:44 -080017403 ENTER();
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053017404
Mahesh A Saptasagar74088392015-02-05 17:22:09 +053017405 pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
17406 if (NULL == pAdapter)
17407 {
17408 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
17409 "%s: Adapter is NULL",__func__);
17410 return -EINVAL;
17411 }
17412 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
17413 status = wlan_hdd_validate_context(pHddCtx);
17414 if (0 != status)
17415 {
Mahesh A Saptasagar74088392015-02-05 17:22:09 +053017416 return status;
17417 }
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053017418
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053017419 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
17420 TRACE_CODE_HDD_CFG80211_ADD_STA,
17421 pAdapter->sessionId, params->listen_interval));
Mohit Khanna698ba2a2012-12-04 15:08:18 -080017422 mask = params->sta_flags_mask;
17423
17424 set = params->sta_flags_set;
17425
Masti, Narayanraddi34e0e562015-03-05 18:23:03 +053017426 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070017427 "%s: mask 0x%x set 0x%x " MAC_ADDRESS_STR,
17428 __func__, mask, set, MAC_ADDR_ARRAY(mac));
Mohit Khanna698ba2a2012-12-04 15:08:18 -080017429
17430 if (mask & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
17431 if (set & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
Gopichand Nakkala681989c2013-03-06 22:27:48 -080017432 status = wlan_hdd_tdls_add_station(wiphy, dev, mac, 0, NULL);
Mohit Khanna698ba2a2012-12-04 15:08:18 -080017433 }
17434 }
17435#endif
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053017436 EXIT();
Gopichand Nakkalab977a972013-02-18 19:15:09 -080017437 return status;
Jeff Johnson295189b2012-06-20 16:38:30 -070017438}
17439
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053017440#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,16,0))
17441static int wlan_hdd_cfg80211_add_station(struct wiphy *wiphy,
17442 struct net_device *dev, const u8 *mac,
17443 struct station_parameters *params)
17444#else
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053017445static int wlan_hdd_cfg80211_add_station(struct wiphy *wiphy,
17446 struct net_device *dev, u8 *mac, struct station_parameters *params)
Anand N Sunkadb3ab97d2015-07-29 09:58:13 +053017447#endif
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053017448{
17449 int ret;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070017450
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053017451 vos_ssr_protect(__func__);
17452 ret = __wlan_hdd_cfg80211_add_station(wiphy, dev, mac, params);
17453 vos_ssr_unprotect(__func__);
17454
17455 return ret;
17456}
Jeff Johnson04dd8a82012-06-29 20:41:40 -070017457#ifdef FEATURE_WLAN_LFR
Wilson Yang6507c4e2013-10-01 20:11:19 -070017458
Mahesh A Saptasagarf7418d72014-06-02 14:48:54 +053017459static int __wlan_hdd_cfg80211_set_pmksa(struct wiphy *wiphy, struct net_device *dev,
Jeff Johnsond13512a2012-07-17 11:42:19 -070017460 struct cfg80211_pmksa *pmksa)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070017461{
Jeff Johnson04dd8a82012-06-29 20:41:40 -070017462 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
17463 tHalHandle halHandle;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053017464 eHalStatus result;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053017465 int status;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053017466 hdd_context_t *pHddCtx;
Kanchanapally, Vidyullatha2633ace2014-09-25 15:16:50 +053017467 tPmkidCacheInfo pmk_id;
Jeff Johnsone7245742012-09-05 17:12:55 -070017468
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053017469 ENTER();
17470
Gopichand Nakkala747461f2013-04-24 19:24:45 +053017471 // Validate pAdapter
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053017472 if ( NULL == pAdapter )
Jeff Johnson04dd8a82012-06-29 20:41:40 -070017473 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053017474 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid Adapter" ,__func__);
Jeff Johnson04dd8a82012-06-29 20:41:40 -070017475 return -EINVAL;
17476 }
17477
Kanchanapally, Vidyullatha2633ace2014-09-25 15:16:50 +053017478 if (!pmksa) {
17479 hddLog(LOGE, FL("pmksa is NULL"));
17480 return -EINVAL;
17481 }
17482
17483 if (!pmksa->bssid || !pmksa->pmkid) {
17484 hddLog(LOGE, FL("pmksa->bssid(%p) or pmksa->pmkid(%p) is NULL"),
17485 pmksa->bssid, pmksa->pmkid);
17486 return -EINVAL;
17487 }
17488
17489 hddLog(VOS_TRACE_LEVEL_DEBUG, "%s: set PMKSA for " MAC_ADDRESS_STR,
17490 __func__, MAC_ADDR_ARRAY(pmksa->bssid));
17491
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053017492 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
17493 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053017494 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070017495 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053017496 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070017497 }
17498
Gopichand Nakkala747461f2013-04-24 19:24:45 +053017499 // Retrieve halHandle
Jeff Johnson04dd8a82012-06-29 20:41:40 -070017500 halHandle = WLAN_HDD_GET_HAL_CTX(pAdapter);
17501
Kanchanapally, Vidyullatha2633ace2014-09-25 15:16:50 +053017502 vos_mem_copy(pmk_id.BSSID, pmksa->bssid, ETHER_ADDR_LEN);
17503 vos_mem_copy(pmk_id.PMKID, pmksa->pmkid, CSR_RSN_PMKID_SIZE);
Jeff Johnson04dd8a82012-06-29 20:41:40 -070017504
Kanchanapally, Vidyullatha2633ace2014-09-25 15:16:50 +053017505 /* Add to the PMKSA ID Cache in CSR */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053017506 result = sme_RoamSetPMKIDCache(halHandle,pAdapter->sessionId,
Kanchanapally, Vidyullatha2633ace2014-09-25 15:16:50 +053017507 &pmk_id, 1, FALSE);
17508
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053017509 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
17510 TRACE_CODE_HDD_CFG80211_SET_PMKSA,
17511 pAdapter->sessionId, result));
Kanchanapally, Vidyullatha2633ace2014-09-25 15:16:50 +053017512
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053017513 EXIT();
Kanchanapally, Vidyullatha2633ace2014-09-25 15:16:50 +053017514 return HAL_STATUS_SUCCESS(result) ? 0 : -EINVAL;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070017515}
17516
Mahesh A Saptasagarf7418d72014-06-02 14:48:54 +053017517static int wlan_hdd_cfg80211_set_pmksa(struct wiphy *wiphy, struct net_device *dev,
17518 struct cfg80211_pmksa *pmksa)
17519{
17520 int ret;
17521
17522 vos_ssr_protect(__func__);
17523 ret = __wlan_hdd_cfg80211_set_pmksa(wiphy, dev, pmksa);
17524 vos_ssr_unprotect(__func__);
17525
17526 return ret;
17527}
Jeff Johnson04dd8a82012-06-29 20:41:40 -070017528
Wilson Yang6507c4e2013-10-01 20:11:19 -070017529
Mahesh A Saptasagarf7418d72014-06-02 14:48:54 +053017530static int __wlan_hdd_cfg80211_del_pmksa(struct wiphy *wiphy, struct net_device *dev,
Wilson Yang6507c4e2013-10-01 20:11:19 -070017531 struct cfg80211_pmksa *pmksa)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070017532{
Wilson Yang6507c4e2013-10-01 20:11:19 -070017533 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
17534 tHalHandle halHandle;
Wilson Yang6507c4e2013-10-01 20:11:19 -070017535 hdd_context_t *pHddCtx;
Wilson Yangef657d32014-01-15 19:19:23 -080017536 int status = 0;
Wilson Yang6507c4e2013-10-01 20:11:19 -070017537
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053017538 ENTER();
17539
Wilson Yang6507c4e2013-10-01 20:11:19 -070017540 /* Validate pAdapter */
17541 if (NULL == pAdapter)
17542 {
17543 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid Adapter" ,__func__);
17544 return -EINVAL;
17545 }
17546
Kanchanapally, Vidyullatha2633ace2014-09-25 15:16:50 +053017547 if (!pmksa) {
17548 hddLog(LOGE, FL("pmksa is NULL"));
17549 return -EINVAL;
17550 }
17551
17552 if (!pmksa->bssid) {
17553 hddLog(LOGE, FL("pmksa->bssid is NULL"));
17554 return -EINVAL;
17555 }
17556
Kiet Lam98c46a12014-10-31 15:34:57 -070017557 hddLog(VOS_TRACE_LEVEL_DEBUG, "%s: deleting PMKSA for " MAC_ADDRESS_STR,
17558 __func__, MAC_ADDR_ARRAY(pmksa->bssid));
17559
Wilson Yang6507c4e2013-10-01 20:11:19 -070017560 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
17561 status = wlan_hdd_validate_context(pHddCtx);
Wilson Yang6507c4e2013-10-01 20:11:19 -070017562 if (0 != status)
17563 {
Wilson Yang6507c4e2013-10-01 20:11:19 -070017564 return status;
17565 }
17566
17567 /*Retrieve halHandle*/
17568 halHandle = WLAN_HDD_GET_HAL_CTX(pAdapter);
17569
Konamki, Sreelakshmi7b464be2015-07-14 12:17:01 +053017570 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
17571 TRACE_CODE_HDD_CFG80211_DEL_PMKSA,
17572 pAdapter->sessionId, 0));
Kanchanapally, Vidyullatha2633ace2014-09-25 15:16:50 +053017573 /* Delete the PMKID CSR cache */
17574 if (eHAL_STATUS_SUCCESS !=
17575 sme_RoamDelPMKIDfromCache(halHandle,
17576 pAdapter->sessionId, pmksa->bssid, FALSE)) {
17577 hddLog(LOGE, FL("Failed to delete PMKSA for "MAC_ADDRESS_STR),
17578 MAC_ADDR_ARRAY(pmksa->bssid));
17579 status = -EINVAL;
Wilson Yang6507c4e2013-10-01 20:11:19 -070017580 }
17581
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053017582 EXIT();
17583 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070017584}
17585
Wilson Yang6507c4e2013-10-01 20:11:19 -070017586
Mahesh A Saptasagarf7418d72014-06-02 14:48:54 +053017587static int wlan_hdd_cfg80211_del_pmksa(struct wiphy *wiphy, struct net_device *dev,
17588 struct cfg80211_pmksa *pmksa)
17589{
17590 int ret;
Wilson Yang6507c4e2013-10-01 20:11:19 -070017591
Mahesh A Saptasagarf7418d72014-06-02 14:48:54 +053017592 vos_ssr_protect(__func__);
17593 ret = __wlan_hdd_cfg80211_del_pmksa(wiphy, dev, pmksa);
17594 vos_ssr_unprotect(__func__);
17595
17596 return ret;
17597
17598}
17599
17600static int __wlan_hdd_cfg80211_flush_pmksa(struct wiphy *wiphy, struct net_device *dev)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070017601{
Wilson Yang6507c4e2013-10-01 20:11:19 -070017602 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
17603 tHalHandle halHandle;
17604 hdd_context_t *pHddCtx;
Wilson Yangef657d32014-01-15 19:19:23 -080017605 int status = 0;
Wilson Yang6507c4e2013-10-01 20:11:19 -070017606
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053017607 ENTER();
Wilson Yang6507c4e2013-10-01 20:11:19 -070017608
17609 /* Validate pAdapter */
17610 if (NULL == pAdapter)
17611 {
17612 hddLog(VOS_TRACE_LEVEL_ERROR,
17613 "%s: Invalid Adapter" ,__func__);
17614 return -EINVAL;
17615 }
17616
17617 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
17618 status = wlan_hdd_validate_context(pHddCtx);
Wilson Yang6507c4e2013-10-01 20:11:19 -070017619 if (0 != status)
17620 {
Wilson Yang6507c4e2013-10-01 20:11:19 -070017621 return status;
17622 }
17623
17624 /*Retrieve halHandle*/
17625 halHandle = WLAN_HDD_GET_HAL_CTX(pAdapter);
17626
Kanchanapally, Vidyullatha2633ace2014-09-25 15:16:50 +053017627 /* Flush the PMKID cache in CSR */
17628 if (eHAL_STATUS_SUCCESS !=
17629 sme_RoamDelPMKIDfromCache(halHandle, pAdapter->sessionId, NULL, TRUE)) {
17630 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Cannot flush PMKIDCache"));
17631 status = -EINVAL;
Wilson Yang6507c4e2013-10-01 20:11:19 -070017632 }
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053017633 EXIT();
Wilson Yangef657d32014-01-15 19:19:23 -080017634 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070017635}
Mahesh A Saptasagarf7418d72014-06-02 14:48:54 +053017636
17637static int wlan_hdd_cfg80211_flush_pmksa(struct wiphy *wiphy, struct net_device *dev)
17638{
17639 int ret;
17640
17641 vos_ssr_protect(__func__);
17642 ret = __wlan_hdd_cfg80211_flush_pmksa(wiphy, dev);
17643 vos_ssr_unprotect(__func__);
17644
17645 return ret;
17646}
Jeff Johnson04dd8a82012-06-29 20:41:40 -070017647#endif
17648
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070017649#if defined(WLAN_FEATURE_VOWIFI_11R) && defined(KERNEL_SUPPORT_11R_CFG80211)
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053017650static int __wlan_hdd_cfg80211_update_ft_ies(struct wiphy *wiphy,
17651 struct net_device *dev,
17652 struct cfg80211_update_ft_ies_params *ftie)
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070017653{
17654 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
17655 hdd_station_ctx_t *pHddStaCtx;
Masti, Narayanraddic80e2bf2015-01-27 16:39:00 +053017656 hdd_context_t *pHddCtx;
17657 int ret = 0;
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070017658
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053017659 ENTER();
17660
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070017661 if (NULL == pAdapter)
17662 {
Arif Hussain6d2a3322013-11-17 19:50:10 -080017663 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Adapter is NULL", __func__);
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070017664 return -ENODEV;
17665 }
Masti, Narayanraddic80e2bf2015-01-27 16:39:00 +053017666 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
17667 ret = wlan_hdd_validate_context(pHddCtx);
17668 if (0 != ret)
17669 {
Masti, Narayanraddic80e2bf2015-01-27 16:39:00 +053017670 return ret;
17671 }
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070017672 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Mahesh A Saptasagar74088392015-02-05 17:22:09 +053017673 if (NULL == pHddStaCtx)
17674 {
17675 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: STA Context is NULL", __func__);
17676 return -EINVAL;
17677 }
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070017678
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053017679 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
17680 TRACE_CODE_HDD_CFG80211_UPDATE_FT_IES,
17681 pAdapter->sessionId, pHddStaCtx->conn_info.connState));
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070017682 // Added for debug on reception of Re-assoc Req.
17683 if (eConnectionState_Associated != pHddStaCtx->conn_info.connState)
17684 {
Arif Hussain6d2a3322013-11-17 19:50:10 -080017685 hddLog(LOGE, FL("Called with Ie of length = %zu when not associated"),
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070017686 ftie->ie_len);
Arif Hussain6d2a3322013-11-17 19:50:10 -080017687 hddLog(LOGE, FL("Should be Re-assoc Req IEs"));
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070017688 }
17689
17690#ifdef WLAN_FEATURE_VOWIFI_11R_DEBUG
Arif Hussain6d2a3322013-11-17 19:50:10 -080017691 hddLog(LOGE, FL("%s called with Ie of length = %zu"), __func__,
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070017692 ftie->ie_len);
17693#endif
17694
17695 // Pass the received FT IEs to SME
Gopichand Nakkala356fb102013-03-06 12:34:04 +053017696 sme_SetFTIEs( WLAN_HDD_GET_HAL_CTX(pAdapter), pAdapter->sessionId,
17697 (const u8 *)ftie->ie,
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070017698 ftie->ie_len);
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053017699
17700 EXIT();
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070017701 return 0;
17702}
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053017703
17704static int wlan_hdd_cfg80211_update_ft_ies(struct wiphy *wiphy,
17705 struct net_device *dev,
17706 struct cfg80211_update_ft_ies_params *ftie)
17707{
17708 int ret;
17709
17710 vos_ssr_protect(__func__);
17711 ret = __wlan_hdd_cfg80211_update_ft_ies(wiphy, dev, ftie);
17712 vos_ssr_unprotect(__func__);
17713
17714 return ret;
17715}
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070017716#endif
Jeff Johnson04dd8a82012-06-29 20:41:40 -070017717
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053017718#ifdef FEATURE_WLAN_SCAN_PNO
17719
17720void hdd_cfg80211_sched_scan_done_callback(void *callbackContext,
17721 tSirPrefNetworkFoundInd *pPrefNetworkFoundInd)
17722{
17723 int ret;
17724 hdd_adapter_t* pAdapter = (hdd_adapter_t*)callbackContext;
17725 hdd_context_t *pHddCtx;
17726
Nirav Shah80830bf2013-12-31 16:35:12 +053017727 ENTER();
17728
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053017729 if (NULL == pAdapter)
17730 {
Agarwal Ashish971c2882013-10-30 20:11:12 +053017731 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053017732 "%s: HDD adapter is Null", __func__);
17733 return ;
17734 }
17735
17736 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
17737 if (NULL == pHddCtx)
17738 {
17739 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
17740 "%s: HDD context is Null!!!", __func__);
17741 return ;
17742 }
17743
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053017744 spin_lock(&pHddCtx->schedScan_lock);
17745 if (TRUE == pHddCtx->isWiphySuspended)
17746 {
17747 pHddCtx->isSchedScanUpdatePending = TRUE;
17748 spin_unlock(&pHddCtx->schedScan_lock);
17749 hddLog(VOS_TRACE_LEVEL_INFO,
17750 "%s: Update cfg80211 scan database after it resume", __func__);
17751 return ;
17752 }
17753 spin_unlock(&pHddCtx->schedScan_lock);
17754
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053017755 ret = wlan_hdd_cfg80211_update_bss(pHddCtx->wiphy, pAdapter);
17756
17757 if (0 > ret)
17758 hddLog(VOS_TRACE_LEVEL_INFO, "%s: NO SCAN result", __func__);
Mahesh A Saptasagarfb49cdd2015-10-16 18:41:59 +053017759 else
17760 {
17761 /* Acquire wakelock to handle the case where APP's tries to suspend
17762 * immediatly after the driver gets connect request(i.e after pno)
17763 * from supplicant, this result in app's is suspending and not able
17764 * to process the connect request to AP */
17765 hdd_prevent_suspend_timeout(1000, WIFI_POWER_EVENT_WAKELOCK_SCAN);
17766 }
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053017767 cfg80211_sched_scan_results(pHddCtx->wiphy);
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053017768 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
17769 "%s: cfg80211 scan result database updated", __func__);
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053017770}
17771
17772/*
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +053017773 * FUNCTION: wlan_hdd_is_pno_allowed
Vinay Krishna Erannacbf75f42014-02-26 17:35:20 +053017774 * Disallow pno if any session is active
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +053017775 */
17776static eHalStatus wlan_hdd_is_pno_allowed(hdd_adapter_t *pAdapter)
17777{
17778 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
17779 hdd_adapter_t *pTempAdapter = NULL;
Vinay Krishna Eranna23ffd182013-12-26 19:16:55 +053017780 hdd_station_ctx_t *pStaCtx;
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +053017781 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
17782 int status = 0;
Agrawal Ashishcff31692016-12-16 17:17:50 +053017783
17784 if (WLAN_HDD_INFRA_STATION != pAdapter->device_mode)
17785 {
17786 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
17787 "%s: PNO is allowed only in STA interface", __func__);
17788 return eHAL_STATUS_FAILURE;
17789 }
17790
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +053017791 status = hdd_get_front_adapter(pHddCtx, &pAdapterNode);
17792
Vinay Krishna Erannacbf75f42014-02-26 17:35:20 +053017793 /* The current firmware design does not allow PNO during any
Agrawal Ashishcff31692016-12-16 17:17:50 +053017794 * active sessions. PNO is allowed only in case when sap session
17795 * is present and sapo auth offload feature enabled in firmare.
Vinay Krishna Erannacbf75f42014-02-26 17:35:20 +053017796 */
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +053017797 while ((NULL != pAdapterNode) && (VOS_STATUS_SUCCESS == status))
17798 {
17799 pTempAdapter = pAdapterNode->pAdapter;
Vinay Krishna Eranna23ffd182013-12-26 19:16:55 +053017800 pStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pTempAdapter);
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +053017801
Vinay Krishna Eranna23ffd182013-12-26 19:16:55 +053017802 if (((WLAN_HDD_INFRA_STATION == pTempAdapter->device_mode)
17803 && (eConnectionState_NotConnected != pStaCtx->conn_info.connState))
17804 || (WLAN_HDD_P2P_CLIENT == pTempAdapter->device_mode)
17805 || (WLAN_HDD_P2P_GO == pTempAdapter->device_mode)
Agrawal Ashishcff31692016-12-16 17:17:50 +053017806 || (WLAN_HDD_SOFTAP == pTempAdapter->device_mode &&
17807 !pHddCtx->cfg_ini->enable_sap_auth_offload)
Siddharth Bhal63a19a72014-11-07 14:31:56 +053017808 || (WLAN_HDD_TM_LEVEL_4 == pHddCtx->tmInfo.currentTmLevel)
Vinay Krishna Eranna23ffd182013-12-26 19:16:55 +053017809 )
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +053017810 {
Vinay Krishna Eranna23ffd182013-12-26 19:16:55 +053017811 return eHAL_STATUS_FAILURE;
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +053017812 }
17813 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
17814 pAdapterNode = pNext;
17815 }
Vinay Krishna Eranna23ffd182013-12-26 19:16:55 +053017816 return eHAL_STATUS_SUCCESS;
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +053017817}
17818
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053017819void hdd_cfg80211_sched_scan_start_status_cb(void *callbackContext, VOS_STATUS status)
17820{
17821 hdd_adapter_t *pAdapter = callbackContext;
17822 hdd_context_t *pHddCtx;
17823
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053017824 ENTER();
17825
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053017826 if ((NULL == pAdapter) || (WLAN_HDD_ADAPTER_MAGIC != pAdapter->magic))
17827 {
17828 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
17829 FL("Invalid adapter or adapter has invalid magic"));
17830 return;
17831 }
17832
17833 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
17834 if (0 != wlan_hdd_validate_context(pHddCtx))
17835 {
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053017836 return;
17837 }
17838
c_hpothub53c45d2014-08-18 16:53:14 +053017839 if (VOS_STATUS_SUCCESS != status)
17840 {
17841 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053017842 FL("PNO enable response status = %d"), status);
c_hpothub53c45d2014-08-18 16:53:14 +053017843 pHddCtx->isPnoEnable = FALSE;
17844 }
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053017845
17846 pAdapter->pno_req_status = (status == VOS_STATUS_SUCCESS) ? 0 : -EBUSY;
17847 complete(&pAdapter->pno_comp_var);
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053017848 EXIT();
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053017849}
17850
Anurag Chouhan343af7e2016-12-16 13:11:19 +053017851#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,4,0)) || \
17852 defined (CFG80211_MULTI_SCAN_PLAN_BACKPORT)
17853/**
17854 * hdd_config_sched_scan_plan() - configures the sched scan plans
17855 * from the framework.
17856 * @pno_req: pointer to PNO scan request
17857 * @request: pointer to scan request from framework
17858 *
17859 * Return: None
17860 */
17861static void hdd_config_sched_scan_plan(tpSirPNOScanReq pno_req,
17862 struct cfg80211_sched_scan_request *request,
17863 hdd_context_t *hdd_ctx)
17864{
17865 v_U32_t i = 0;
17866
Anurag Chouhanf3e52b72016-12-21 11:33:37 +053017867 pno_req->scanTimers.ucScanTimersCount = request->n_scan_plans;
Anurag Chouhan343af7e2016-12-16 13:11:19 +053017868 for (i = 0; i < request->n_scan_plans; i++)
17869 {
Anurag Chouhanf3e52b72016-12-21 11:33:37 +053017870 pno_req->scanTimers.aTimerValues[i].uTimerRepeat =
17871 request->scan_plans[i].iterations;
17872 pno_req->scanTimers.aTimerValues[i].uTimerValue =
17873 request->scan_plans[i].interval;
Anurag Chouhan343af7e2016-12-16 13:11:19 +053017874 }
17875}
17876#else
Anurag Chouhanf3e52b72016-12-21 11:33:37 +053017877static void hdd_config_sched_scan_plan(tpSirPNOScanReq pno_req,
Anurag Chouhan343af7e2016-12-16 13:11:19 +053017878 struct cfg80211_sched_scan_request *request,
17879 hdd_context_t *hdd_ctx)
17880{
17881 v_U32_t i, temp_int;
17882 /* Driver gets only one time interval which is hardcoded in
17883 * supplicant for 10000ms. Taking power consumption into account 6
17884 * timers will be used, Timervalue is increased exponentially
17885 * i.e 10,20,40, 80,160,320 secs. And number of scan cycle for each
17886 * timer is configurable through INI param gPNOScanTimerRepeatValue.
17887 * If it is set to 0 only one timer will be used and PNO scan cycle
17888 * will be repeated after each interval specified by supplicant
17889 * till PNO is disabled.
17890 */
17891 if (0 == hdd_ctx->cfg_ini->configPNOScanTimerRepeatValue)
Anurag Chouhanf3e52b72016-12-21 11:33:37 +053017892 pno_req->scanTimers.ucScanTimersCount =
Anurag Chouhan343af7e2016-12-16 13:11:19 +053017893 HDD_PNO_SCAN_TIMERS_SET_ONE;
17894 else
Anurag Chouhanf3e52b72016-12-21 11:33:37 +053017895 pno_req->scanTimers.ucScanTimersCount =
Anurag Chouhan343af7e2016-12-16 13:11:19 +053017896 HDD_PNO_SCAN_TIMERS_SET_MULTIPLE;
17897
17898 temp_int = (request->interval)/1000;
17899 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
17900 "Base scan interval = %d PNOScanTimerRepeatValue = %d",
17901 temp_int, hdd_ctx->cfg_ini->configPNOScanTimerRepeatValue);
Anurag Chouhanf3e52b72016-12-21 11:33:37 +053017902 for ( i = 0; i < pno_req->scanTimers.ucScanTimersCount; i++)
Anurag Chouhan343af7e2016-12-16 13:11:19 +053017903 {
Anurag Chouhanf3e52b72016-12-21 11:33:37 +053017904 pno_req->scanTimers.aTimerValues[i].uTimerRepeat =
Anurag Chouhan343af7e2016-12-16 13:11:19 +053017905 hdd_ctx->cfg_ini->configPNOScanTimerRepeatValue;
Anurag Chouhanf3e52b72016-12-21 11:33:37 +053017906 pno_req->scanTimers.aTimerValues[i].uTimerValue = temp_int;
Anurag Chouhan343af7e2016-12-16 13:11:19 +053017907 temp_int *= 2;
17908 }
17909 //Repeat last timer until pno disabled.
Anurag Chouhanf3e52b72016-12-21 11:33:37 +053017910 pno_req->scanTimers.aTimerValues[i-1].uTimerRepeat = 0;
Anurag Chouhan343af7e2016-12-16 13:11:19 +053017911}
17912#endif
17913
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +053017914/*
Mahesh A Saptasagar6cc38562014-05-23 21:22:17 +053017915 * FUNCTION: __wlan_hdd_cfg80211_sched_scan_start
17916 * Function to enable PNO
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053017917 */
Mahesh A Saptasagar6cc38562014-05-23 21:22:17 +053017918static int __wlan_hdd_cfg80211_sched_scan_start(struct wiphy *wiphy,
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053017919 struct net_device *dev, struct cfg80211_sched_scan_request *request)
17920{
17921 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053017922 tSirPNOScanReq pnoRequest = {0};
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053017923 hdd_context_t *pHddCtx;
17924 tHalHandle hHal;
Anurag Chouhan343af7e2016-12-16 13:11:19 +053017925 v_U32_t i, indx, num_ch, j;
Sushant Kaushikd62d9782014-02-19 15:39:40 +053017926 u8 valid_ch[WNI_CFG_VALID_CHANNEL_LIST_LEN] = {0};
17927 u8 channels_allowed[WNI_CFG_VALID_CHANNEL_LIST_LEN] = {0};
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053017928 v_U32_t num_channels_allowed = WNI_CFG_VALID_CHANNEL_LIST_LEN;
17929 eHalStatus status = eHAL_STATUS_FAILURE;
Kamath Vinayakba5313f2013-08-22 15:52:39 +053017930 int ret = 0;
Sachin Ahuja697ba3f2014-11-12 18:57:11 +053017931 hdd_config_t *pConfig = NULL;
17932 v_U32_t num_ignore_dfs_ch = 0;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053017933
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053017934 ENTER();
17935
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053017936 if (NULL == pAdapter)
17937 {
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053017938 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053017939 "%s: HDD adapter is Null", __func__);
17940 return -ENODEV;
17941 }
17942
17943 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053017944 ret = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053017945
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053017946 if (0 != ret)
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053017947 {
Kamath Vinayakba5313f2013-08-22 15:52:39 +053017948 return -EINVAL;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053017949 }
17950
Sachin Ahuja697ba3f2014-11-12 18:57:11 +053017951 pConfig = pHddCtx->cfg_ini;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053017952 hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
17953 if (NULL == hHal)
17954 {
17955 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
17956 "%s: HAL context is Null!!!", __func__);
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053017957 return -EINVAL;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053017958 }
Konamki, Sreelakshmi7b464be2015-07-14 12:17:01 +053017959 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
17960 TRACE_CODE_HDD_CFG80211_SCHED_SCAN_START,
17961 pAdapter->sessionId, pAdapter->device_mode));
Sushant Kaushik2fe89932014-09-03 10:58:09 +053017962 sme_ScanFlushResult(hHal, pAdapter->sessionId);
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +053017963 ret = wlan_hdd_scan_abort(pAdapter);
Girish Gowli4bf7a632014-06-12 13:42:11 +053017964 if (ret < 0)
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +053017965 {
17966 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
17967 "%s: aborting the existing scan is unsuccessfull", __func__);
17968 return -EBUSY;
17969 }
17970
Vinay Krishna Eranna23ffd182013-12-26 19:16:55 +053017971 if (eHAL_STATUS_SUCCESS != wlan_hdd_is_pno_allowed(pAdapter))
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +053017972 {
Vinay Krishna Erannacbf75f42014-02-26 17:35:20 +053017973 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_WARN,
Vinay Krishna Eranna23ffd182013-12-26 19:16:55 +053017974 FL("Cannot handle sched_scan"));
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +053017975 return -EBUSY;
17976 }
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053017977
c_hpothu37f21312014-04-09 21:49:54 +053017978 if (TRUE == pHddCtx->isPnoEnable)
17979 {
17980 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_WARN,
17981 FL("already PNO is enabled"));
17982 return -EBUSY;
17983 }
c_hpothu225aa7c2014-10-22 17:45:13 +053017984
17985 if (VOS_STATUS_SUCCESS != wlan_hdd_cancel_remain_on_channel(pHddCtx))
17986 {
17987 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
17988 "%s: abort ROC failed ", __func__);
17989 return -EBUSY;
17990 }
17991
c_hpothu37f21312014-04-09 21:49:54 +053017992 pHddCtx->isPnoEnable = TRUE;
17993
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053017994 pnoRequest.enable = 1; /*Enable PNO */
17995 pnoRequest.ucNetworksCount = request->n_match_sets;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053017996
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053017997 if (( !pnoRequest.ucNetworksCount ) ||
17998 ( pnoRequest.ucNetworksCount > SIR_PNO_MAX_SUPP_NETWORKS ))
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053017999 {
18000 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Sushant Kaushik1e406c32014-05-09 15:57:52 +053018001 "%s: Network input is not correct %d Max Network supported is %d",
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053018002 __func__, pnoRequest.ucNetworksCount,
Sushant Kaushik1e406c32014-05-09 15:57:52 +053018003 SIR_PNO_MAX_SUPP_NETWORKS);
Kamath Vinayakba5313f2013-08-22 15:52:39 +053018004 ret = -EINVAL;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018005 goto error;
18006 }
18007
18008 if ( SIR_PNO_MAX_NETW_CHANNELS_EX < request->n_channels )
18009 {
18010 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Nirav Shah80830bf2013-12-31 16:35:12 +053018011 "%s: Incorrect number of channels %d",
18012 __func__, request->n_channels);
Kamath Vinayakba5313f2013-08-22 15:52:39 +053018013 ret = -EINVAL;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018014 goto error;
18015 }
18016
18017 /* Framework provides one set of channels(all)
18018 * common for all saved profile */
18019 if (0 != ccmCfgGetStr(hHal, WNI_CFG_VALID_CHANNEL_LIST,
18020 channels_allowed, &num_channels_allowed))
18021 {
18022 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
18023 "%s: failed to get valid channel list", __func__);
Kamath Vinayakba5313f2013-08-22 15:52:39 +053018024 ret = -EINVAL;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018025 goto error;
18026 }
18027 /* Checking each channel against allowed channel list */
18028 num_ch = 0;
Nirav Shah80830bf2013-12-31 16:35:12 +053018029 if (request->n_channels)
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018030 {
Nirav Shah80830bf2013-12-31 16:35:12 +053018031 char chList [(request->n_channels*5)+1];
18032 int len;
18033 for (i = 0, len = 0; i < request->n_channels; i++)
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018034 {
Nirav Shah80830bf2013-12-31 16:35:12 +053018035 for (indx = 0; indx < num_channels_allowed; indx++)
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018036 {
Nirav Shah80830bf2013-12-31 16:35:12 +053018037 if (request->channels[i]->hw_value == channels_allowed[indx])
18038 {
Sachin Ahuja697ba3f2014-11-12 18:57:11 +053018039 if ((!pConfig->enableDFSPnoChnlScan) &&
18040 (NV_CHANNEL_DFS == vos_nv_getChannelEnabledState(channels_allowed[indx])))
18041 {
18042 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
18043 "%s : Dropping DFS channel : %d",
18044 __func__,channels_allowed[indx]);
18045 num_ignore_dfs_ch++;
18046 break;
18047 }
18048
Nirav Shah80830bf2013-12-31 16:35:12 +053018049 valid_ch[num_ch++] = request->channels[i]->hw_value;
18050 len += snprintf(chList+len, 5, "%d ",
18051 request->channels[i]->hw_value);
18052 break ;
18053 }
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018054 }
18055 }
Nirav Shah80830bf2013-12-31 16:35:12 +053018056 hddLog(VOS_TRACE_LEVEL_INFO,"Channel-List: %s ", chList);
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018057
Sachin Ahuja697ba3f2014-11-12 18:57:11 +053018058 /*If all channels are DFS and dropped, then ignore the PNO request*/
18059 if (num_ignore_dfs_ch == request->n_channels)
18060 {
18061 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
18062 "%s : All requested channels are DFS channels", __func__);
18063 ret = -EINVAL;
18064 goto error;
18065 }
18066 }
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053018067
18068 pnoRequest.aNetworks =
18069 vos_mem_malloc(sizeof(tSirNetworkType)*pnoRequest.ucNetworksCount);
18070 if (pnoRequest.aNetworks == NULL)
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018071 {
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053018072 VOS_TRACE(VOS_MODULE_ID_SME, VOS_TRACE_LEVEL_ERROR,
18073 FL("failed to allocate memory aNetworks %u"),
18074 (uint32)sizeof(tSirNetworkType)*pnoRequest.ucNetworksCount);
18075 goto error;
18076 }
18077 vos_mem_zero(pnoRequest.aNetworks,
18078 sizeof(tSirNetworkType)*pnoRequest.ucNetworksCount);
18079
18080 /* Filling per profile params */
18081 for (i = 0; i < pnoRequest.ucNetworksCount; i++)
18082 {
18083 pnoRequest.aNetworks[i].ssId.length =
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018084 request->match_sets[i].ssid.ssid_len;
18085
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053018086 if (( 0 == pnoRequest.aNetworks[i].ssId.length ) ||
18087 ( pnoRequest.aNetworks[i].ssId.length > 32 ) )
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018088 {
18089 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Nirav Shah80830bf2013-12-31 16:35:12 +053018090 "%s: SSID Len %d is not correct for network %d",
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053018091 __func__, pnoRequest.aNetworks[i].ssId.length, i);
Kamath Vinayakba5313f2013-08-22 15:52:39 +053018092 ret = -EINVAL;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018093 goto error;
18094 }
18095
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053018096 memcpy(pnoRequest.aNetworks[i].ssId.ssId,
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018097 request->match_sets[i].ssid.ssid,
18098 request->match_sets[i].ssid.ssid_len);
Sushant Kaushik1e406c32014-05-09 15:57:52 +053018099 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
18100 "%s: SSID of network %d is %s ", __func__,
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053018101 i, pnoRequest.aNetworks[i].ssId.ssId);
18102 pnoRequest.aNetworks[i].authentication = 0; /*eAUTH_TYPE_ANY*/
18103 pnoRequest.aNetworks[i].encryption = 0; /*eED_ANY*/
18104 pnoRequest.aNetworks[i].bcastNetwType = 0; /*eBCAST_UNKNOWN*/
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018105
18106 /*Copying list of valid channel into request */
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053018107 memcpy(pnoRequest.aNetworks[i].aChannels, valid_ch, num_ch);
18108 pnoRequest.aNetworks[i].ucChannelCount = num_ch;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018109
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053018110 pnoRequest.aNetworks[i].rssiThreshold = 0; //Default value
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018111 }
18112
Mahesh A Saptasagar7bd6ad42014-07-21 18:56:33 +053018113 for (i = 0; i < request->n_ssids; i++)
18114 {
18115 j = 0;
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053018116 while (j < pnoRequest.ucNetworksCount)
Mahesh A Saptasagar7bd6ad42014-07-21 18:56:33 +053018117 {
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053018118 if ((pnoRequest.aNetworks[j].ssId.length ==
Mahesh A Saptasagar7bd6ad42014-07-21 18:56:33 +053018119 request->ssids[i].ssid_len) &&
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053018120 (0 == memcmp(pnoRequest.aNetworks[j].ssId.ssId,
Mahesh A Saptasagar7bd6ad42014-07-21 18:56:33 +053018121 request->ssids[i].ssid,
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053018122 pnoRequest.aNetworks[j].ssId.length)))
Mahesh A Saptasagar7bd6ad42014-07-21 18:56:33 +053018123 {
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053018124 pnoRequest.aNetworks[j].bcastNetwType = eBCAST_HIDDEN;
Mahesh A Saptasagar7bd6ad42014-07-21 18:56:33 +053018125 break;
18126 }
18127 j++;
18128 }
18129 }
18130 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
18131 "Number of hidden networks being Configured = %d",
18132 request->n_ssids);
Madan Mohan Koyyalamudia7765d52013-09-18 16:49:56 +053018133 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Jeff Johnson59a121e2013-11-30 09:46:08 -080018134 "request->ie_len = %zu", request->ie_len);
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053018135
18136 pnoRequest.p24GProbeTemplate = vos_mem_malloc(SIR_PNO_MAX_PB_REQ_SIZE);
18137 if (pnoRequest.p24GProbeTemplate == NULL)
18138 {
18139 VOS_TRACE(VOS_MODULE_ID_SME, VOS_TRACE_LEVEL_ERROR,
18140 FL("failed to allocate memory p24GProbeTemplate %u"),
18141 SIR_PNO_MAX_PB_REQ_SIZE);
18142 goto error;
18143 }
18144
18145 pnoRequest.p5GProbeTemplate = vos_mem_malloc(SIR_PNO_MAX_PB_REQ_SIZE);
18146 if (pnoRequest.p5GProbeTemplate == NULL)
18147 {
18148 VOS_TRACE(VOS_MODULE_ID_SME, VOS_TRACE_LEVEL_ERROR,
18149 FL("failed to allocate memory p5GProbeTemplate %u"),
18150 SIR_PNO_MAX_PB_REQ_SIZE);
18151 goto error;
18152 }
18153
18154 vos_mem_zero(pnoRequest.p24GProbeTemplate, SIR_PNO_MAX_PB_REQ_SIZE);
18155 vos_mem_zero(pnoRequest.p5GProbeTemplate, SIR_PNO_MAX_PB_REQ_SIZE);
18156
Hanumantha Reddy Pothula06e87b22015-03-02 18:02:23 +053018157 if ((0 < request->ie_len) && (request->ie_len <= SIR_PNO_MAX_PB_REQ_SIZE) &&
18158 (NULL != request->ie))
Madan Mohan Koyyalamudia7765d52013-09-18 16:49:56 +053018159 {
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053018160 pnoRequest.us24GProbeTemplateLen = request->ie_len;
18161 memcpy(pnoRequest.p24GProbeTemplate, request->ie,
18162 pnoRequest.us24GProbeTemplateLen);
Madan Mohan Koyyalamudia7765d52013-09-18 16:49:56 +053018163
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053018164 pnoRequest.us5GProbeTemplateLen = request->ie_len;
18165 memcpy(pnoRequest.p5GProbeTemplate, request->ie,
18166 pnoRequest.us5GProbeTemplateLen);
Madan Mohan Koyyalamudia7765d52013-09-18 16:49:56 +053018167 }
18168
Anurag Chouhanf3e52b72016-12-21 11:33:37 +053018169 hdd_config_sched_scan_plan(&pnoRequest, request, pHddCtx);
Madan Mohan Koyyalamudi1d16f462013-08-27 16:25:34 +053018170
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053018171 pnoRequest.modePNO = SIR_PNO_MODE_IMMEDIATE;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018172
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053018173 INIT_COMPLETION(pAdapter->pno_comp_var);
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053018174 pnoRequest.statusCallback = hdd_cfg80211_sched_scan_start_status_cb;
18175 pnoRequest.callbackContext = pAdapter;
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053018176 pAdapter->pno_req_status = 0;
18177
Nirav Shah80830bf2013-12-31 16:35:12 +053018178 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
18179 "SessionId %d, enable %d, modePNO %d, ucScanTimersCount %d",
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053018180 pAdapter->sessionId, pnoRequest.enable, pnoRequest.modePNO,
18181 pnoRequest.scanTimers.ucScanTimersCount);
Nirav Shah80830bf2013-12-31 16:35:12 +053018182
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018183 status = sme_SetPreferredNetworkList(WLAN_HDD_GET_HAL_CTX(pAdapter),
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053018184 &pnoRequest, pAdapter->sessionId,
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018185 hdd_cfg80211_sched_scan_done_callback, pAdapter);
18186 if (eHAL_STATUS_SUCCESS != status)
18187 {
18188 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Nirav Shah80830bf2013-12-31 16:35:12 +053018189 "%s: Failed to enable PNO", __func__);
Kamath Vinayakba5313f2013-08-22 15:52:39 +053018190 ret = -EINVAL;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018191 goto error;
18192 }
18193
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053018194 ret = wait_for_completion_timeout(
18195 &pAdapter->pno_comp_var,
18196 msecs_to_jiffies(WLAN_WAIT_TIME_PNO));
18197 if (0 >= ret)
18198 {
18199 // Did not receive the response for PNO enable in time.
18200 // Assuming the PNO enable was success.
18201 // Returning error from here, because we timeout, results
18202 // in side effect of Wifi (Wifi Setting) not to work.
18203 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
18204 FL("Timed out waiting for PNO to be Enabled"));
18205 ret = 0;
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053018206 }
18207
18208 ret = pAdapter->pno_req_status;
c_hpothu37f21312014-04-09 21:49:54 +053018209 return ret;
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053018210
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018211error:
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053018212 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
18213 FL("PNO scanRequest offloaded ret = %d"), ret);
c_hpothu37f21312014-04-09 21:49:54 +053018214 pHddCtx->isPnoEnable = FALSE;
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053018215 if (pnoRequest.aNetworks)
18216 vos_mem_free(pnoRequest.aNetworks);
18217 if (pnoRequest.p24GProbeTemplate)
18218 vos_mem_free(pnoRequest.p24GProbeTemplate);
18219 if (pnoRequest.p5GProbeTemplate)
18220 vos_mem_free(pnoRequest.p5GProbeTemplate);
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053018221
18222 EXIT();
Kamath Vinayakba5313f2013-08-22 15:52:39 +053018223 return ret;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018224}
18225
18226/*
Mahesh A Saptasagar6cc38562014-05-23 21:22:17 +053018227 * FUNCTION: wlan_hdd_cfg80211_sched_scan_start
18228 * NL interface to enable PNO
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018229 */
Mahesh A Saptasagar6cc38562014-05-23 21:22:17 +053018230static int wlan_hdd_cfg80211_sched_scan_start(struct wiphy *wiphy,
18231 struct net_device *dev, struct cfg80211_sched_scan_request *request)
18232{
18233 int ret;
18234
18235 vos_ssr_protect(__func__);
18236 ret = __wlan_hdd_cfg80211_sched_scan_start(wiphy, dev, request);
18237 vos_ssr_unprotect(__func__);
18238
18239 return ret;
18240}
18241
18242/*
18243 * FUNCTION: __wlan_hdd_cfg80211_sched_scan_stop
18244 * Function to disable PNO
18245 */
18246static int __wlan_hdd_cfg80211_sched_scan_stop(struct wiphy *wiphy,
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018247 struct net_device *dev)
18248{
18249 eHalStatus status = eHAL_STATUS_FAILURE;
18250 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
18251 hdd_context_t *pHddCtx;
18252 tHalHandle hHal;
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053018253 tSirPNOScanReq pnoRequest = {0};
Kamath Vinayakba5313f2013-08-22 15:52:39 +053018254 int ret = 0;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018255
18256 ENTER();
18257
18258 if (NULL == pAdapter)
18259 {
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053018260 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018261 "%s: HDD adapter is Null", __func__);
18262 return -ENODEV;
18263 }
18264
18265 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018266
Kamath Vinayakba5313f2013-08-22 15:52:39 +053018267 if (NULL == pHddCtx)
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018268 {
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +053018269 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Kamath Vinayakba5313f2013-08-22 15:52:39 +053018270 "%s: HDD context is Null", __func__);
18271 return -ENODEV;
18272 }
18273
18274 /* The return 0 is intentional when isLogpInProgress and
18275 * isLoadUnloadInProgress. We did observe a crash due to a return of
18276 * failure in sched_scan_stop , especially for a case where the unload
18277 * of the happens at the same time. The function __cfg80211_stop_sched_scan
18278 * was clearing rdev->sched_scan_req only when the sched_scan_stop returns
18279 * success. If it returns a failure , then its next invocation due to the
18280 * clean up of the second interface will have the dev pointer corresponding
18281 * to the first one leading to a crash.
18282 */
18283 if (pHddCtx->isLogpInProgress)
18284 {
18285 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
18286 "%s: LOGP in Progress. Ignore!!!", __func__);
Mahesh A Saptasagar0c11d822015-10-08 19:54:08 +053018287 pHddCtx->isPnoEnable = FALSE;
Kamath Vinayakba5313f2013-08-22 15:52:39 +053018288 return ret;
18289 }
18290
Mihir Shete18156292014-03-11 15:38:30 +053018291 if (WLAN_HDD_IS_LOAD_UNLOAD_IN_PROGRESS(pHddCtx))
Kamath Vinayakba5313f2013-08-22 15:52:39 +053018292 {
18293 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
18294 "%s: Unloading/Loading in Progress. Ignore!!!", __func__);
18295 return ret;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018296 }
18297
18298 hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
18299 if (NULL == hHal)
18300 {
18301 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
18302 "%s: HAL context is Null!!!", __func__);
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053018303 return -EINVAL;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018304 }
18305
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053018306 pnoRequest.enable = 0; /* Disable PNO */
18307 pnoRequest.ucNetworksCount = 0;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018308
Konamki, Sreelakshmi7b464be2015-07-14 12:17:01 +053018309 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
18310 TRACE_CODE_HDD_CFG80211_SCHED_SCAN_STOP,
18311 pAdapter->sessionId, pAdapter->device_mode));
Hanumantha Reddy Pothula0e408dc2015-11-23 12:04:53 +053018312
18313 INIT_COMPLETION(pAdapter->pno_comp_var);
18314 pnoRequest.statusCallback = hdd_cfg80211_sched_scan_start_status_cb;
18315 pnoRequest.callbackContext = pAdapter;
18316 pAdapter->pno_req_status = 0;
Hanumantha Reddy Pothulad769f3e2015-02-19 17:00:02 +053018317 status = sme_SetPreferredNetworkList(hHal, &pnoRequest,
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018318 pAdapter->sessionId,
18319 NULL, pAdapter);
18320 if (eHAL_STATUS_SUCCESS != status)
18321 {
18322 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
18323 "Failed to disabled PNO");
Kamath Vinayakba5313f2013-08-22 15:52:39 +053018324 ret = -EINVAL;
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053018325 goto error;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018326 }
Hanumantha Reddy Pothula0e408dc2015-11-23 12:04:53 +053018327 ret = wait_for_completion_timeout(
18328 &pAdapter->pno_comp_var,
18329 msecs_to_jiffies(WLAN_WAIT_TIME_PNO));
18330 if (0 >= ret)
18331 {
18332 // Did not receive the response for PNO disable in time.
18333 // Assuming the PNO disable was success.
18334 // Returning error from here, because we timeout, results
18335 // in side effect of Wifi (Wifi Setting) not to work.
Anurag Chouhan96b41cb2016-09-28 18:54:47 +053018336 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Hanumantha Reddy Pothula0e408dc2015-11-23 12:04:53 +053018337 FL("Timed out waiting for PNO to be disabled"));
18338 ret = 0;
18339 }
18340
18341 ret = pAdapter->pno_req_status;
18342 pHddCtx->isPnoEnable = (ret == 0) ? FALSE : TRUE;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018343
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053018344error:
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053018345 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053018346 FL("PNO scan disabled ret = %d"), ret);
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018347
18348 EXIT();
Kamath Vinayakba5313f2013-08-22 15:52:39 +053018349 return ret;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018350}
18351
Mahesh A Saptasagar6cc38562014-05-23 21:22:17 +053018352/*
18353 * FUNCTION: wlan_hdd_cfg80211_sched_scan_stop
18354 * NL interface to disable PNO
18355 */
18356static int wlan_hdd_cfg80211_sched_scan_stop(struct wiphy *wiphy,
18357 struct net_device *dev)
18358{
18359 int ret;
18360
18361 vos_ssr_protect(__func__);
18362 ret = __wlan_hdd_cfg80211_sched_scan_stop(wiphy, dev);
18363 vos_ssr_unprotect(__func__);
18364
18365 return ret;
18366}
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053018367#endif /*FEATURE_WLAN_SCAN_PNO*/
18368
18369
Mohit Khanna698ba2a2012-12-04 15:08:18 -080018370#ifdef FEATURE_WLAN_TDLS
Sunil Dutt Undekarieacac6f2014-03-21 14:08:53 +053018371#if TDLS_MGMT_VERSION2
Anand N Sunkad9f80b742015-07-30 20:05:51 +053018372static int __wlan_hdd_cfg80211_tdls_mgmt(struct wiphy *wiphy,
18373 struct net_device *dev,
18374 u8 *peer, u8 action_code,
18375 u8 dialog_token,
18376 u16 status_code, u32 peer_capability,
18377 const u8 *buf, size_t len)
18378#else /* TDLS_MGMT_VERSION2 */
18379#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 17, 0)) || defined(WITH_BACKPORTS)
18380static int __wlan_hdd_cfg80211_tdls_mgmt(struct wiphy *wiphy,
18381 struct net_device *dev,
18382 const u8 *peer, u8 action_code,
18383 u8 dialog_token, u16 status_code,
18384 u32 peer_capability, bool initiator,
18385 const u8 *buf, size_t len)
18386#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 16, 0))
18387static int __wlan_hdd_cfg80211_tdls_mgmt(struct wiphy *wiphy,
18388 struct net_device *dev,
18389 const u8 *peer, u8 action_code,
18390 u8 dialog_token, u16 status_code,
18391 u32 peer_capability, const u8 *buf,
18392 size_t len)
18393#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 15, 0))
18394static int __wlan_hdd_cfg80211_tdls_mgmt(struct wiphy *wiphy,
18395 struct net_device *dev,
18396 u8 *peer, u8 action_code,
18397 u8 dialog_token,
18398 u16 status_code, u32 peer_capability,
18399 const u8 *buf, size_t len)
Sunil Dutt Undekarieacac6f2014-03-21 14:08:53 +053018400#else
Anand N Sunkad9f80b742015-07-30 20:05:51 +053018401static int __wlan_hdd_cfg80211_tdls_mgmt(struct wiphy *wiphy,
18402 struct net_device *dev,
18403 u8 *peer, u8 action_code,
18404 u8 dialog_token,
18405 u16 status_code, const u8 *buf,
18406 size_t len)
18407#endif
Sunil Dutt Undekarieacac6f2014-03-21 14:08:53 +053018408#endif
Mohit Khanna698ba2a2012-12-04 15:08:18 -080018409{
Mahesh A Saptasagar74088392015-02-05 17:22:09 +053018410 hdd_adapter_t *pAdapter;
18411 hdd_context_t *pHddCtx;
Mohit Khanna698ba2a2012-12-04 15:08:18 -080018412 VOS_STATUS status;
Gopichand Nakkala05922802013-03-14 12:23:19 -070018413 int max_sta_failed = 0;
Hoonki Leea34dd892013-02-05 22:56:02 -080018414 int responder;
Hoonki Leed37cbb32013-04-20 00:31:14 -070018415 long rc;
Ganesh Kondabattini862aec92015-01-22 20:58:46 +053018416 int ret;
Masti, Narayanraddi3b681932015-10-08 19:22:25 +053018417 hddTdlsPeer_t *pTdlsPeer;
Anand N Sunkad9bfc2622015-07-30 15:18:54 +053018418#if !(TDLS_MGMT_VERSION2) && (LINUX_VERSION_CODE < KERNEL_VERSION(3,15,0))
Sunil Dutt Undekarieacac6f2014-03-21 14:08:53 +053018419 u32 peer_capability = 0;
18420#endif
Rajesh Chauhana34c6e62014-03-25 16:37:58 +053018421 tANI_U16 numCurrTdlsPeers;
Ganesh Kondabattini8d0d35b2015-08-20 15:39:09 +053018422 hdd_station_ctx_t *pHddStaCtx = NULL;
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053018423
Mahesh A Saptasagar74088392015-02-05 17:22:09 +053018424 pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
18425 if (NULL == pAdapter)
18426 {
18427 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
18428 "%s: Adapter is NULL",__func__);
18429 return -EINVAL;
18430 }
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053018431 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
18432 TRACE_CODE_HDD_CFG80211_TDLS_MGMT,
18433 pAdapter->sessionId, action_code));
Ganesh Kondabattini8d0d35b2015-08-20 15:39:09 +053018434
Mahesh A Saptasagar74088392015-02-05 17:22:09 +053018435 pHddCtx = wiphy_priv(wiphy);
Hoonki Lee11f7dda2013-02-14 16:55:44 -080018436 if (NULL == pHddCtx || NULL == pHddCtx->cfg_ini)
Mohit Khanna698ba2a2012-12-04 15:08:18 -080018437 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053018438 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Mohit Khanna698ba2a2012-12-04 15:08:18 -080018439 "Invalid arguments");
18440 return -EINVAL;
18441 }
Ganesh Kondabattini8d0d35b2015-08-20 15:39:09 +053018442
Sameer Thalappil75ea31a2013-02-21 19:38:16 -080018443 if (pHddCtx->isLogpInProgress)
18444 {
18445 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
18446 "%s:LOGP in Progress. Ignore!!!", __func__);
Atul Mittal115287b2014-07-08 13:26:33 +053018447 wlan_hdd_tdls_set_link_status(pAdapter,
18448 peer,
18449 eTDLS_LINK_IDLE,
18450 eTDLS_LINK_UNSPECIFIED);
Sameer Thalappil75ea31a2013-02-21 19:38:16 -080018451 return -EBUSY;
18452 }
Ganesh Kondabattini8d0d35b2015-08-20 15:39:09 +053018453
Mahesh A Saptasagar74088392015-02-05 17:22:09 +053018454 if (WLAN_HDD_IS_LOAD_UNLOAD_IN_PROGRESS(pHddCtx))
18455 {
18456 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
18457 "%s: Unloading/Loading in Progress. Ignore!!!", __func__);
18458 return -EAGAIN;
18459 }
Ganesh Kondabattini8d0d35b2015-08-20 15:39:09 +053018460
Hoonki Lee27511902013-03-14 18:19:06 -070018461 if (eTDLS_SUPPORT_NOT_ENABLED == pHddCtx->tdls_mode)
Mohit Khanna698ba2a2012-12-04 15:08:18 -080018462 {
Masti, Narayanraddi34e0e562015-03-05 18:23:03 +053018463 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Hoonki Lee27511902013-03-14 18:19:06 -070018464 "%s: TDLS mode is disabled OR not enabled in FW."
18465 MAC_ADDRESS_STR " action %d declined.",
18466 __func__, MAC_ADDR_ARRAY(peer), action_code);
Mohit Khanna698ba2a2012-12-04 15:08:18 -080018467 return -ENOTSUPP;
18468 }
Lee Hoonkic1262f22013-01-24 21:59:00 -080018469
Ganesh Kondabattini8d0d35b2015-08-20 15:39:09 +053018470 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
18471
18472 if( NULL == pHddStaCtx )
18473 {
18474 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
18475 "%s: HDD station context NULL ",__func__);
18476 return -EINVAL;
18477 }
18478
18479 /* STA should be connected and authenticated
18480 * before sending any TDLS frames
18481 */
18482 if ((eConnectionState_Associated != pHddStaCtx->conn_info.connState) ||
18483 (FALSE == pHddStaCtx->conn_info.uIsAuthenticated))
18484 {
18485 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
18486 "STA is not connected or unauthenticated. "
18487 "connState %u, uIsAuthenticated %u",
18488 pHddStaCtx->conn_info.connState,
18489 pHddStaCtx->conn_info.uIsAuthenticated);
18490 return -EAGAIN;
18491 }
18492
Hoonki Lee27511902013-03-14 18:19:06 -070018493 /* other than teardown frame, other mgmt frames are not sent if disabled */
18494 if (SIR_MAC_TDLS_TEARDOWN != action_code)
18495 {
18496 /* if tdls_mode is disabled to respond to peer's request */
18497 if (eTDLS_SUPPORT_DISABLED == pHddCtx->tdls_mode)
18498 {
Masti, Narayanraddi34e0e562015-03-05 18:23:03 +053018499 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Hoonki Lee27511902013-03-14 18:19:06 -070018500 "%s: " MAC_ADDRESS_STR
Gopichand Nakkala34d1b062013-03-19 15:28:33 -070018501 " TDLS mode is disabled. action %d declined.",
18502 __func__, MAC_ADDR_ARRAY(peer), action_code);
Hoonki Lee27511902013-03-14 18:19:06 -070018503
Ganesh Kondabattini8d0d35b2015-08-20 15:39:09 +053018504 return -ENOTSUPP;
Hoonki Lee27511902013-03-14 18:19:06 -070018505 }
Agarwal Ashish4b87f922014-06-18 03:03:21 +053018506
18507 if (vos_max_concurrent_connections_reached())
18508 {
18509 hddLog(VOS_TRACE_LEVEL_INFO, FL("Reached max concurrent connections"));
18510 return -EINVAL;
18511 }
Hoonki Lee27511902013-03-14 18:19:06 -070018512 }
18513
Gopichand Nakkalab977a972013-02-18 19:15:09 -080018514 if (WLAN_IS_TDLS_SETUP_ACTION(action_code))
18515 {
Pradeep Reddy POTTETI9db32f02015-01-29 15:22:54 +053018516 if (NULL != wlan_hdd_tdls_is_progress(pHddCtx, peer, TRUE, TRUE))
Gopichand Nakkalab977a972013-02-18 19:15:09 -080018517 {
18518 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070018519 "%s: " MAC_ADDRESS_STR
Gopichand Nakkala34d1b062013-03-19 15:28:33 -070018520 " TDLS setup is ongoing. action %d declined.",
18521 __func__, MAC_ADDR_ARRAY(peer), action_code);
18522 return -EPERM;
Gopichand Nakkalab977a972013-02-18 19:15:09 -080018523 }
18524 }
18525
Hoonki Lee11f7dda2013-02-14 16:55:44 -080018526 if (SIR_MAC_TDLS_SETUP_REQ == action_code ||
18527 SIR_MAC_TDLS_SETUP_RSP == action_code )
Lee Hoonkic1262f22013-01-24 21:59:00 -080018528 {
Rajesh Chauhana34c6e62014-03-25 16:37:58 +053018529 numCurrTdlsPeers = wlan_hdd_tdlsConnectedPeers(pAdapter);
18530 if (HDD_MAX_NUM_TDLS_STA <= numCurrTdlsPeers)
Lee Hoonkic1262f22013-01-24 21:59:00 -080018531 {
18532 /* supplicant still sends tdls_mgmt(SETUP_REQ) even after
18533 we return error code at 'add_station()'. Hence we have this
18534 check again in addtion to add_station().
18535 Anyway, there is no hard to double-check. */
Hoonki Lee11f7dda2013-02-14 16:55:44 -080018536 if (SIR_MAC_TDLS_SETUP_REQ == action_code)
Lee Hoonkic1262f22013-01-24 21:59:00 -080018537 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070018538 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
18539 "%s: " MAC_ADDRESS_STR
Rajesh Chauhana34c6e62014-03-25 16:37:58 +053018540 " TDLS Max peer already connected. action (%d) declined. Num of peers (%d), Max allowed (%d).",
18541 __func__, MAC_ADDR_ARRAY(peer), action_code,
18542 numCurrTdlsPeers, HDD_MAX_NUM_TDLS_STA);
Sunil Dutt388ac8f2013-11-28 18:06:52 +053018543 return -EINVAL;
Lee Hoonkic1262f22013-01-24 21:59:00 -080018544 }
18545 else
18546 {
Gopichand Nakkalab977a972013-02-18 19:15:09 -080018547 /* maximum reached. tweak to send error code to peer and return
18548 error code to supplicant */
Lee Hoonkic1262f22013-01-24 21:59:00 -080018549 status_code = eSIR_MAC_UNSPEC_FAILURE_STATUS;
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070018550 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
18551 "%s: " MAC_ADDRESS_STR
Rajesh Chauhana34c6e62014-03-25 16:37:58 +053018552 " TDLS Max peer already connected, send response status (%d). Num of peers (%d), Max allowed (%d).",
18553 __func__, MAC_ADDR_ARRAY(peer), status_code,
18554 numCurrTdlsPeers, HDD_MAX_NUM_TDLS_STA);
Gopichand Nakkala05922802013-03-14 12:23:19 -070018555 max_sta_failed = -EPERM;
Gopichand Nakkalab977a972013-02-18 19:15:09 -080018556 /* fall through to send setup resp with failure status
18557 code */
Lee Hoonkic1262f22013-01-24 21:59:00 -080018558 }
18559 }
Hoonki Lee11f7dda2013-02-14 16:55:44 -080018560 else
18561 {
Masti, Narayanraddi6b93b472015-09-04 17:48:11 +053018562 mutex_lock(&pHddCtx->tdls_lock);
18563 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peer, FALSE);
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070018564 if (pTdlsPeer && TDLS_IS_CONNECTED(pTdlsPeer))
Hoonki Lee11f7dda2013-02-14 16:55:44 -080018565 {
Masti, Narayanraddi6b93b472015-09-04 17:48:11 +053018566 mutex_unlock(&pHddCtx->tdls_lock);
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070018567 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkala34d1b062013-03-19 15:28:33 -070018568 "%s:" MAC_ADDRESS_STR " already connected. action %d declined.",
18569 __func__, MAC_ADDR_ARRAY(peer), action_code);
Hoonki Lee11f7dda2013-02-14 16:55:44 -080018570 return -EPERM;
18571 }
Masti, Narayanraddi6b93b472015-09-04 17:48:11 +053018572 mutex_unlock(&pHddCtx->tdls_lock);
Hoonki Lee11f7dda2013-02-14 16:55:44 -080018573 }
Lee Hoonkic1262f22013-01-24 21:59:00 -080018574 }
Mohit Khanna698ba2a2012-12-04 15:08:18 -080018575
Masti, Narayanraddi34e0e562015-03-05 18:23:03 +053018576 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Arun Kumar Khandavalli9fb625e2014-03-17 16:07:40 +053018577 "%s: " MAC_ADDRESS_STR " action %d, dialog_token %d status %d, len = %zu",
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070018578 "tdls_mgmt", MAC_ADDR_ARRAY(peer),
18579 action_code, dialog_token, status_code, len);
Mohit Khanna698ba2a2012-12-04 15:08:18 -080018580
Hoonki Leea34dd892013-02-05 22:56:02 -080018581 /*Except teardown responder will not be used so just make 0*/
18582 responder = 0;
Hoonki Lee11f7dda2013-02-14 16:55:44 -080018583 if (SIR_MAC_TDLS_TEARDOWN == action_code)
Hoonki Leea34dd892013-02-05 22:56:02 -080018584 {
Gopichand Nakkala97a65fd2013-04-16 16:59:38 -070018585
Masti, Narayanraddi6b93b472015-09-04 17:48:11 +053018586 mutex_lock(&pHddCtx->tdls_lock);
18587 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peer, FALSE);
Gopichand Nakkala97a65fd2013-04-16 16:59:38 -070018588
18589 if(pTdlsPeer && TDLS_IS_CONNECTED(pTdlsPeer))
18590 responder = pTdlsPeer->is_responder;
18591 else
Hoonki Leea34dd892013-02-05 22:56:02 -080018592 {
Gopichand Nakkala97a65fd2013-04-16 16:59:38 -070018593 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Arun Kumar Khandavalli9fb625e2014-03-17 16:07:40 +053018594 "%s: " MAC_ADDRESS_STR " peer doesn't exist or not connected %d dialog_token %d status %d, len = %zu",
Gopichand Nakkala97a65fd2013-04-16 16:59:38 -070018595 __func__, MAC_ADDR_ARRAY(peer), (NULL == pTdlsPeer) ? -1 : pTdlsPeer->link_status,
18596 dialog_token, status_code, len);
Masti, Narayanraddi6b93b472015-09-04 17:48:11 +053018597 mutex_unlock(&pHddCtx->tdls_lock);
Gopichand Nakkala97a65fd2013-04-16 16:59:38 -070018598 return -EPERM;
Hoonki Leea34dd892013-02-05 22:56:02 -080018599 }
Masti, Narayanraddi6b93b472015-09-04 17:48:11 +053018600 mutex_unlock(&pHddCtx->tdls_lock);
Mohit Khanna698ba2a2012-12-04 15:08:18 -080018601 }
Mohit Khanna698ba2a2012-12-04 15:08:18 -080018602
Masti, Narayanraddi3b681932015-10-08 19:22:25 +053018603 /* Discard TDLS setup if peer is removed by user app */
18604 if ((pHddCtx->cfg_ini->fTDLSExternalControl) &&
18605 ((SIR_MAC_TDLS_SETUP_REQ == action_code) ||
18606 (SIR_MAC_TDLS_SETUP_CNF == action_code) ||
18607 (SIR_MAC_TDLS_DIS_REQ == action_code))) {
18608
18609 mutex_lock(&pHddCtx->tdls_lock);
18610 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peer, FALSE);
18611 if (pTdlsPeer && (FALSE == pTdlsPeer->isForcedPeer)) {
18612 mutex_unlock(&pHddCtx->tdls_lock);
18613 hddLog(LOGE, FL("TDLS External Control enabled, but peer "
18614 MAC_ADDRESS_STR " is not forced, so reject the action code %d"),
18615 MAC_ADDR_ARRAY(peer), action_code);
18616 return -EINVAL;
18617 }
18618 mutex_unlock(&pHddCtx->tdls_lock);
18619 }
18620
Gopichand Nakkala2f1ff152013-07-01 11:27:43 +053018621 /* For explicit trigger of DIS_REQ come out of BMPS for
18622 successfully receiving DIS_RSP from peer. */
Hoonki Lee14621352013-04-16 17:51:19 -070018623 if ((SIR_MAC_TDLS_SETUP_RSP == action_code) ||
Deepthi Gowrif78f1f72016-03-21 13:13:28 +053018624 (SIR_MAC_TDLS_SETUP_CNF== action_code) ||
Gopichand Nakkala2f1ff152013-07-01 11:27:43 +053018625 (SIR_MAC_TDLS_DIS_RSP == action_code) ||
18626 (SIR_MAC_TDLS_DIS_REQ == action_code))
Hoonki Lee14621352013-04-16 17:51:19 -070018627 {
18628 if (TRUE == sme_IsPmcBmps(WLAN_HDD_GET_HAL_CTX(pAdapter)))
18629 {
Masti, Narayanraddi34e0e562015-03-05 18:23:03 +053018630 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Gopichand Nakkala2f1ff152013-07-01 11:27:43 +053018631 "%s: Sending frame action_code %u.Disable BMPS", __func__, action_code);
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053018632 status = hdd_disable_bmps_imps(pHddCtx, WLAN_HDD_INFRA_STATION);
18633 if (status != VOS_STATUS_SUCCESS) {
18634 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Failed to set BMPS/IMPS"));
18635 }
Hoonki Lee14621352013-04-16 17:51:19 -070018636 }
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053018637 if (SIR_MAC_TDLS_DIS_REQ != action_code) {
Anand N Sunkad9bfc2622015-07-30 15:18:54 +053018638 if (0 != wlan_hdd_tdls_set_cap(pAdapter, peer, eTDLS_CAP_SUPPORTED)) {
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053018639 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Failed to set TDLS capabilities"));
18640 }
18641 }
Hoonki Lee14621352013-04-16 17:51:19 -070018642 }
18643
Hoonki Lee5305c3a2013-04-29 23:28:59 -070018644 /* make sure doesn't call send_mgmt() while it is pending */
18645 if (TDLS_CTX_MAGIC == pAdapter->mgmtTxCompletionStatus)
18646 {
18647 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -080018648 "%s: " MAC_ADDRESS_STR " action %d couldn't sent, as one is pending. return EBUSY",
Hoonki Lee5305c3a2013-04-29 23:28:59 -070018649 __func__, MAC_ADDR_ARRAY(peer), action_code);
Ganesh Kondabattini862aec92015-01-22 20:58:46 +053018650 ret = -EBUSY;
18651 goto tx_failed;
Hoonki Lee5305c3a2013-04-29 23:28:59 -070018652 }
18653
18654 pAdapter->mgmtTxCompletionStatus = TDLS_CTX_MAGIC;
Gopichand Nakkalab977a972013-02-18 19:15:09 -080018655 INIT_COMPLETION(pAdapter->tdls_mgmt_comp);
18656
Ganesh Kondabattini8d0d35b2015-08-20 15:39:09 +053018657 status = sme_SendTdlsMgmtFrame(WLAN_HDD_GET_HAL_CTX(pAdapter),
18658 pAdapter->sessionId, peer, action_code, dialog_token,
18659 status_code, peer_capability, (tANI_U8 *)buf, len,
18660 responder);
Mohit Khanna698ba2a2012-12-04 15:08:18 -080018661
Gopichand Nakkalab977a972013-02-18 19:15:09 -080018662 if (VOS_STATUS_SUCCESS != status)
18663 {
Mohit Khanna698ba2a2012-12-04 15:08:18 -080018664 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
18665 "%s: sme_SendTdlsMgmtFrame failed!", __func__);
Hoonki Lee5305c3a2013-04-29 23:28:59 -070018666 pAdapter->mgmtTxCompletionStatus = FALSE;
Ganesh Kondabattini862aec92015-01-22 20:58:46 +053018667 ret = -EINVAL;
18668 goto tx_failed;
Mohit Khanna698ba2a2012-12-04 15:08:18 -080018669 }
18670
Ganesh Kondabattini8d0d35b2015-08-20 15:39:09 +053018671 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
18672 "%s: Wait for tdls_mgmt_comp. Timeout %u ms", __func__,
18673 WAIT_TIME_TDLS_MGMT);
18674
Hoonki Leed37cbb32013-04-20 00:31:14 -070018675 rc = wait_for_completion_interruptible_timeout(&pAdapter->tdls_mgmt_comp,
18676 msecs_to_jiffies(WAIT_TIME_TDLS_MGMT));
18677
18678 if ((rc <= 0) || (TRUE != pAdapter->mgmtTxCompletionStatus))
Gopichand Nakkalab977a972013-02-18 19:15:09 -080018679 {
Hoonki Leed37cbb32013-04-20 00:31:14 -070018680 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Jeff Johnson0299d0a2013-10-30 12:37:43 -070018681 "%s: Mgmt Tx Completion failed status %ld TxCompletion %u",
Hoonki Leed37cbb32013-04-20 00:31:14 -070018682 __func__, rc, pAdapter->mgmtTxCompletionStatus);
Hoonki Lee5305c3a2013-04-29 23:28:59 -070018683 pAdapter->mgmtTxCompletionStatus = FALSE;
Yue Ma4f55ef32014-01-23 16:45:33 -080018684
18685 if (pHddCtx->isLogpInProgress)
18686 {
18687 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
18688 "%s: LOGP in Progress. Ignore!!!", __func__);
18689 return -EAGAIN;
18690 }
Abhishek Singh837adf22015-10-01 17:37:37 +053018691 if (rc <= 0)
18692 vos_fatal_event_logs_req(WLAN_LOG_TYPE_FATAL,
18693 WLAN_LOG_INDICATOR_HOST_DRIVER,
18694 WLAN_LOG_REASON_HDD_TIME_OUT,
18695 TRUE, TRUE);
Yue Ma4f55ef32014-01-23 16:45:33 -080018696
Ganesh Kondabattini862aec92015-01-22 20:58:46 +053018697 ret = -EINVAL;
18698 goto tx_failed;
Gopichand Nakkalab977a972013-02-18 19:15:09 -080018699 }
Ganesh Kondabattini8d0d35b2015-08-20 15:39:09 +053018700 else
18701 {
18702 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
18703 "%s: Mgmt Tx Completion status %ld TxCompletion %u",
18704 __func__, rc, pAdapter->mgmtTxCompletionStatus);
18705 }
Gopichand Nakkalab977a972013-02-18 19:15:09 -080018706
Gopichand Nakkala05922802013-03-14 12:23:19 -070018707 if (max_sta_failed)
Hoonki Lee14621352013-04-16 17:51:19 -070018708 {
Ganesh Kondabattini862aec92015-01-22 20:58:46 +053018709 ret = max_sta_failed;
18710 goto tx_failed;
Hoonki Lee14621352013-04-16 17:51:19 -070018711 }
Gopichand Nakkalab977a972013-02-18 19:15:09 -080018712
Hoonki Leea34dd892013-02-05 22:56:02 -080018713 if (SIR_MAC_TDLS_SETUP_RSP == action_code)
18714 {
Anand N Sunkad9bfc2622015-07-30 15:18:54 +053018715 if (0 != wlan_hdd_tdls_set_responder(pAdapter, peer, TRUE)) {
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053018716 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Failed to set TDLS responder: Setup Response"));
18717 }
Hoonki Leea34dd892013-02-05 22:56:02 -080018718 }
18719 else if (SIR_MAC_TDLS_SETUP_CNF == action_code)
18720 {
Anand N Sunkad9bfc2622015-07-30 15:18:54 +053018721 if (0 != wlan_hdd_tdls_set_responder(pAdapter, peer, FALSE)) {
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053018722 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Failed to set TDLS responder: Setup Response"));
18723 }
Hoonki Leea34dd892013-02-05 22:56:02 -080018724 }
Mohit Khanna698ba2a2012-12-04 15:08:18 -080018725
18726 return 0;
Ganesh Kondabattini862aec92015-01-22 20:58:46 +053018727
18728tx_failed:
18729 /* add_station will be called before sending TDLS_SETUP_REQ and
18730 * TDLS_SETUP_RSP and as part of add_station driver will enable
18731 * BMPS. NL80211_TDLS_DISABLE_LINK will be called if the tx of
18732 * TDLS_SETUP_REQ or TDLS_SETUP_RSP fails. BMPS will be enabled
18733 * as part of processing NL80211_TDLS_DISABLE_LINK. So need to
18734 * enable BMPS for TDLS_SETUP_REQ and TDLS_SETUP_RSP if tx fails.
18735 */
18736
18737 if ((SIR_MAC_TDLS_SETUP_REQ == action_code) ||
18738 (SIR_MAC_TDLS_SETUP_RSP == action_code))
18739 wlan_hdd_tdls_check_bmps(pAdapter);
18740 return ret;
Mohit Khanna698ba2a2012-12-04 15:08:18 -080018741}
18742
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053018743#if TDLS_MGMT_VERSION2
18744static int wlan_hdd_cfg80211_tdls_mgmt(struct wiphy *wiphy, struct net_device *dev,
18745 u8 *peer, u8 action_code, u8 dialog_token,
18746 u16 status_code, u32 peer_capability,
18747 const u8 *buf, size_t len)
Anand N Sunkad9bfc2622015-07-30 15:18:54 +053018748#else /* TDLS_MGMT_VERSION2 */
18749#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,17,0))
18750static int wlan_hdd_cfg80211_tdls_mgmt(struct wiphy *wiphy,
18751 struct net_device *dev,
18752 const u8 *peer, u8 action_code,
18753 u8 dialog_token, u16 status_code,
18754 u32 peer_capability, bool initiator,
18755 const u8 *buf, size_t len)
18756#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,16,0))
18757static int wlan_hdd_cfg80211_tdls_mgmt(struct wiphy *wiphy,
18758 struct net_device *dev,
18759 const u8 *peer, u8 action_code,
18760 u8 dialog_token, u16 status_code,
18761 u32 peer_capability, const u8 *buf,
18762 size_t len)
18763#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,15,0))
18764static int wlan_hdd_cfg80211_tdls_mgmt(struct wiphy *wiphy,
18765 struct net_device *dev,
18766 u8 *peer, u8 action_code,
18767 u8 dialog_token,
18768 u16 status_code, u32 peer_capability,
18769 const u8 *buf, size_t len)
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053018770#else
18771static int wlan_hdd_cfg80211_tdls_mgmt(struct wiphy *wiphy, struct net_device *dev,
18772 u8 *peer, u8 action_code, u8 dialog_token,
18773 u16 status_code, const u8 *buf, size_t len)
18774#endif
Anand N Sunkad9bfc2622015-07-30 15:18:54 +053018775#endif
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053018776{
18777 int ret;
18778
Anand N Sunkad9f80b742015-07-30 20:05:51 +053018779 vos_ssr_protect(__func__);
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053018780#if TDLS_MGMT_VERSION2
Anand N Sunkad9f80b742015-07-30 20:05:51 +053018781 ret = __wlan_hdd_cfg80211_tdls_mgmt(wiphy, dev, peer, action_code,
18782 dialog_token, status_code,
18783 peer_capability, buf, len);
18784#else /* TDLS_MGMT_VERSION2 */
18785#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 17, 0)) || defined(WITH_BACKPORTS)
18786 ret = __wlan_hdd_cfg80211_tdls_mgmt(wiphy, dev, peer, action_code,
18787 dialog_token, status_code,
18788 peer_capability, initiator,
18789 buf, len);
18790#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 16, 0))
18791 ret = __wlan_hdd_cfg80211_tdls_mgmt(wiphy, dev, peer, action_code,
18792 dialog_token, status_code,
18793 peer_capability, buf, len);
18794#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 15, 0))
18795 ret = __wlan_hdd_cfg80211_tdls_mgmt(wiphy, dev, peer, action_code,
18796 dialog_token, status_code,
18797 peer_capability, buf, len);
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053018798#else
Anand N Sunkad9f80b742015-07-30 20:05:51 +053018799 ret = __wlan_hdd_cfg80211_tdls_mgmt(wiphy, dev, peer, action_code,
18800 dialog_token, status_code, buf, len);
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053018801#endif
Anand N Sunkad9f80b742015-07-30 20:05:51 +053018802#endif
18803 vos_ssr_unprotect(__func__);
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053018804
Anand N Sunkad9f80b742015-07-30 20:05:51 +053018805 return ret;
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053018806}
Atul Mittal115287b2014-07-08 13:26:33 +053018807
18808int wlan_hdd_tdls_extctrl_config_peer(hdd_adapter_t *pAdapter,
Anand N Sunkad9bfc2622015-07-30 15:18:54 +053018809#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,18,0))
18810 const u8 *peer,
18811#else
Atul Mittal115287b2014-07-08 13:26:33 +053018812 u8 *peer,
Anand N Sunkad9bfc2622015-07-30 15:18:54 +053018813#endif
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053018814 tdls_req_params_t *tdls_peer_params,
Atul Mittal115287b2014-07-08 13:26:33 +053018815 cfg80211_exttdls_callback callback)
18816{
18817
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053018818 hddTdlsPeer_t *pTdlsPeer = NULL;
Atul Mittal115287b2014-07-08 13:26:33 +053018819 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Pradeep Reddy POTTETIe30ed252015-02-18 14:27:55 +053018820 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Atul Mittal115287b2014-07-08 13:26:33 +053018821 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
18822 " %s : NL80211_TDLS_SETUP for " MAC_ADDRESS_STR,
18823 __func__, MAC_ADDR_ARRAY(peer));
18824
18825 if ( (FALSE == pHddCtx->cfg_ini->fTDLSExternalControl) ||
18826 (FALSE == pHddCtx->cfg_ini->fEnableTDLSImplicitTrigger) ) {
18827
18828 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053018829 " %s TDLS External control (%d) and Implicit Trigger (%d) not enabled ",
18830 __func__, pHddCtx->cfg_ini->fTDLSExternalControl,
18831 pHddCtx->cfg_ini->fEnableTDLSImplicitTrigger);
Atul Mittal115287b2014-07-08 13:26:33 +053018832 return -ENOTSUPP;
18833 }
18834
18835 /* To cater the requirement of establishing the TDLS link
18836 * irrespective of the data traffic , get an entry of TDLS peer.
18837 */
Masti, Narayanraddi6dbcdbb2015-05-13 10:28:06 +053018838 mutex_lock(&pHddCtx->tdls_lock);
Atul Mittal115287b2014-07-08 13:26:33 +053018839 pTdlsPeer = wlan_hdd_tdls_get_peer(pAdapter, peer);
18840 if (pTdlsPeer == NULL) {
18841 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
18842 "%s: peer " MAC_ADDRESS_STR " not existing",
18843 __func__, MAC_ADDR_ARRAY(peer));
Masti, Narayanraddi6dbcdbb2015-05-13 10:28:06 +053018844 mutex_unlock(&pHddCtx->tdls_lock);
Atul Mittal115287b2014-07-08 13:26:33 +053018845 return -EINVAL;
18846 }
18847
Pradeep Reddy POTTETI60ad2402015-02-26 16:48:21 +053018848 /* check FW TDLS Off Channel capability */
18849 if ((TRUE == sme_IsFeatureSupportedByFW(TDLS_OFF_CHANNEL)) &&
Pradeep Reddy POTTETI0cb99bc2015-06-08 12:59:09 +053018850 (TRUE == pHddCtx->cfg_ini->fEnableTDLSOffChannel) &&
Pradeep Reddy POTTETI60ad2402015-02-26 16:48:21 +053018851 (NULL != tdls_peer_params))
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053018852 {
18853 pTdlsPeer->peerParams.channel = tdls_peer_params->channel;
18854 pTdlsPeer->peerParams.global_operating_class =
18855 tdls_peer_params->global_operating_class;
18856 pTdlsPeer->peerParams.max_latency_ms = tdls_peer_params->max_latency_ms;
18857 pTdlsPeer->peerParams.min_bandwidth_kbps =
18858 tdls_peer_params->min_bandwidth_kbps;
Pradeep Reddy POTTETIe30ed252015-02-18 14:27:55 +053018859 /* check configured channel is valid, non dfs and
18860 * not current operating channel */
18861 if ((sme_IsTdlsOffChannelValid(WLAN_HDD_GET_HAL_CTX(pAdapter),
18862 tdls_peer_params->channel)) &&
18863 (pHddStaCtx) &&
18864 (tdls_peer_params->channel !=
18865 pHddStaCtx->conn_info.operationChannel))
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053018866 {
18867 pTdlsPeer->isOffChannelConfigured = TRUE;
18868 }
18869 else
18870 {
18871 pTdlsPeer->isOffChannelConfigured = FALSE;
18872 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
18873 "%s: Configured Tdls Off Channel is not valid", __func__);
18874
18875 }
18876 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Pradeep Reddy POTTETIe30ed252015-02-18 14:27:55 +053018877 "%s: tdls_off_channel %d isOffChannelConfigured %d "
18878 "current operating channel %d",
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053018879 __func__, pTdlsPeer->peerParams.channel,
Pradeep Reddy POTTETIe30ed252015-02-18 14:27:55 +053018880 pTdlsPeer->isOffChannelConfigured,
18881 (pHddStaCtx ? pHddStaCtx->conn_info.operationChannel : 0));
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053018882 }
18883 else
18884 {
18885 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Pradeep Reddy POTTETI0cb99bc2015-06-08 12:59:09 +053018886 "%s: TDLS off channel FW capability %d, "
18887 "host capab %d or Invalid TDLS Peer Params", __func__,
18888 sme_IsFeatureSupportedByFW(TDLS_OFF_CHANNEL),
18889 pHddCtx->cfg_ini->fEnableTDLSOffChannel);
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053018890 }
18891
Atul Mittal115287b2014-07-08 13:26:33 +053018892 if ( 0 != wlan_hdd_tdls_set_force_peer(pAdapter, peer, TRUE) ) {
18893
Masti, Narayanraddi6b93b472015-09-04 17:48:11 +053018894 mutex_unlock(&pHddCtx->tdls_lock);
18895
Atul Mittal115287b2014-07-08 13:26:33 +053018896 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
18897 " %s TDLS Add Force Peer Failed",
18898 __func__);
18899 return -EINVAL;
18900 }
18901 /*EXT TDLS*/
18902
18903 if ( 0 != wlan_hdd_set_callback(pTdlsPeer, callback) ) {
Masti, Narayanraddi6b93b472015-09-04 17:48:11 +053018904 mutex_unlock(&pHddCtx->tdls_lock);
Atul Mittal115287b2014-07-08 13:26:33 +053018905 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
18906 " %s TDLS set callback Failed",
18907 __func__);
18908 return -EINVAL;
18909 }
18910
Masti, Narayanraddi6b93b472015-09-04 17:48:11 +053018911 mutex_unlock(&pHddCtx->tdls_lock);
18912
Atul Mittal115287b2014-07-08 13:26:33 +053018913 return(0);
18914
18915}
18916
Anand N Sunkad9bfc2622015-07-30 15:18:54 +053018917int wlan_hdd_tdls_extctrl_deconfig_peer(hdd_adapter_t *pAdapter,
18918#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,18,0))
18919 const u8 *peer
18920#else
18921 u8 *peer
18922#endif
18923)
Atul Mittal115287b2014-07-08 13:26:33 +053018924{
18925
18926 hddTdlsPeer_t *pTdlsPeer;
18927 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Abhishek Singhff7c2f92016-01-05 15:28:12 +053018928
Atul Mittal115287b2014-07-08 13:26:33 +053018929 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
18930 " %s : NL80211_TDLS_TEARDOWN for " MAC_ADDRESS_STR,
18931 __func__, MAC_ADDR_ARRAY(peer));
18932
Chandrasekaran, Manishekar41b8e1f2015-03-10 13:30:28 +053018933 if (0 != wlan_hdd_validate_context(pHddCtx)) {
18934 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD context is NULL"));
18935 return -EINVAL;
18936 }
18937
Atul Mittal115287b2014-07-08 13:26:33 +053018938 if ( (FALSE == pHddCtx->cfg_ini->fTDLSExternalControl) ||
18939 (FALSE == pHddCtx->cfg_ini->fEnableTDLSImplicitTrigger) ) {
18940
18941 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053018942 " %s TDLS External control (%d) and Implicit Trigger (%d) not enabled ",
18943 __func__, pHddCtx->cfg_ini->fTDLSExternalControl,
18944 pHddCtx->cfg_ini->fEnableTDLSImplicitTrigger);
Atul Mittal115287b2014-07-08 13:26:33 +053018945 return -ENOTSUPP;
18946 }
18947
Masti, Narayanraddi6b93b472015-09-04 17:48:11 +053018948 mutex_lock(&pHddCtx->tdls_lock);
18949 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peer, FALSE);
Atul Mittal115287b2014-07-08 13:26:33 +053018950
18951 if ( NULL == pTdlsPeer ) {
Masti, Narayanraddi6b93b472015-09-04 17:48:11 +053018952 mutex_unlock(&pHddCtx->tdls_lock);
Atul Mittal115287b2014-07-08 13:26:33 +053018953 hddLog(VOS_TRACE_LEVEL_INFO, "%s: " MAC_ADDRESS_STR
Agarwal Ashisha7ef41d2015-06-25 18:00:26 +053018954 " peer not existing",
Atul Mittal115287b2014-07-08 13:26:33 +053018955 __func__, MAC_ADDR_ARRAY(peer));
18956 return -EINVAL;
18957 }
18958 else {
18959 wlan_hdd_tdls_indicate_teardown(pAdapter, pTdlsPeer,
18960 eSIR_MAC_TDLS_TEARDOWN_UNSPEC_REASON);
Abhishek Singhff7c2f92016-01-05 15:28:12 +053018961 hdd_send_wlan_tdls_teardown_event(eTDLS_TEARDOWN_EXT_CTRL,
18962 pTdlsPeer->peerMac);
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053018963 /* if channel switch is configured, reset
18964 the channel for this peer */
18965 if (TRUE == pTdlsPeer->isOffChannelConfigured)
18966 {
18967 pTdlsPeer->peerParams.channel = 0;
18968 pTdlsPeer->isOffChannelConfigured = FALSE;
18969 }
Atul Mittal115287b2014-07-08 13:26:33 +053018970 }
18971
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053018972 if ( 0 != wlan_hdd_tdls_set_force_peer(pAdapter, peer, FALSE) ) {
Masti, Narayanraddi6b93b472015-09-04 17:48:11 +053018973 mutex_unlock(&pHddCtx->tdls_lock);
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053018974 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Failed to set force peer"));
Atul Mittal115287b2014-07-08 13:26:33 +053018975 return -EINVAL;
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053018976 }
Atul Mittal115287b2014-07-08 13:26:33 +053018977
18978 /*EXT TDLS*/
18979
18980 if ( 0 != wlan_hdd_set_callback(pTdlsPeer, NULL )) {
Masti, Narayanraddi6b93b472015-09-04 17:48:11 +053018981 mutex_unlock(&pHddCtx->tdls_lock);
Atul Mittal115287b2014-07-08 13:26:33 +053018982 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
18983 " %s TDLS set callback Failed",
18984 __func__);
18985 return -EINVAL;
18986 }
Atul Mittal115287b2014-07-08 13:26:33 +053018987
Masti, Narayanraddi6b93b472015-09-04 17:48:11 +053018988 mutex_unlock(&pHddCtx->tdls_lock);
18989
18990 return(0);
Atul Mittal115287b2014-07-08 13:26:33 +053018991}
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053018992static int __wlan_hdd_cfg80211_tdls_oper(struct wiphy *wiphy, struct net_device *dev,
Anand N Sunkad9bfc2622015-07-30 15:18:54 +053018993#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,18,0))
18994 const u8 *peer,
18995#else
18996 u8 *peer,
18997#endif
18998 enum nl80211_tdls_operation oper)
Mohit Khanna698ba2a2012-12-04 15:08:18 -080018999{
19000 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
19001 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053019002 int status;
Hoonki Lee5305c3a2013-04-29 23:28:59 -070019003 hddTdlsPeer_t *pTdlsPeer;
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053019004
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053019005 ENTER();
19006
Chandrasekaran, Manishekar41b8e1f2015-03-10 13:30:28 +053019007 if (!pAdapter) {
19008 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD adpater is NULL"));
19009 return -EINVAL;
19010 }
19011
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053019012 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
19013 TRACE_CODE_HDD_CFG80211_TDLS_OPER,
19014 pAdapter->sessionId, oper));
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053019015 if ( NULL == peer )
Mohit Khanna698ba2a2012-12-04 15:08:18 -080019016 {
Gopichand Nakkalab977a972013-02-18 19:15:09 -080019017 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Chilam Ngc4244af2013-04-01 15:37:32 -070019018 "%s: Invalid arguments", __func__);
Mohit Khanna698ba2a2012-12-04 15:08:18 -080019019 return -EINVAL;
19020 }
Hoonki Lee1090c6a2013-01-16 17:40:54 -080019021
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053019022 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053019023 if (0 != status)
Sameer Thalappil75ea31a2013-02-21 19:38:16 -080019024 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053019025 return status;
Sameer Thalappil75ea31a2013-02-21 19:38:16 -080019026 }
19027
Mohit Khanna698ba2a2012-12-04 15:08:18 -080019028
19029 if( FALSE == pHddCtx->cfg_ini->fEnableTDLSSupport ||
Hoonki Lee1090c6a2013-01-16 17:40:54 -080019030 FALSE == sme_IsFeatureSupportedByFW(TDLS))
Mohit Khanna698ba2a2012-12-04 15:08:18 -080019031 {
Hoonki Lee1090c6a2013-01-16 17:40:54 -080019032 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053019033 "TDLS Disabled in INI (%d) OR not enabled in FW (%d) "
19034 "Cannot process TDLS commands",
19035 pHddCtx->cfg_ini->fEnableTDLSSupport,
19036 sme_IsFeatureSupportedByFW(TDLS));
Mohit Khanna698ba2a2012-12-04 15:08:18 -080019037 return -ENOTSUPP;
19038 }
19039
19040 switch (oper) {
19041 case NL80211_TDLS_ENABLE_LINK:
19042 {
Mohit Khanna698ba2a2012-12-04 15:08:18 -080019043 VOS_STATUS status;
c_hpothu6ff1c3c2013-10-01 19:01:57 +053019044 long ret;
Hanumantha Reddy Pothulada389492016-02-11 17:29:27 +053019045 tCsrTdlsLinkEstablishParams tdlsLinkEstablishParams = { {0}, 0,
19046 0, 0, 0, 0, 0, 0, {0}, 0, {0} };
Agarwal Ashish16020c42014-12-29 22:01:11 +053019047 WLAN_STADescType staDesc;
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053019048 tANI_U16 numCurrTdlsPeers = 0;
19049 hddTdlsPeer_t *connPeer = NULL;
Pradeep Reddy POTTETIfcac7902015-04-16 12:25:17 +053019050 tANI_U8 suppChannelLen = 0;
Masti, Narayanraddi09c52d52015-12-19 14:19:18 +053019051 tSirMacAddr peerMac;
19052 int channel;
19053 tTDLSLinkStatus peer_status = eTDLS_LINK_IDLE;
Mohit Khanna698ba2a2012-12-04 15:08:18 -080019054
Agarwal Ashisha7ef41d2015-06-25 18:00:26 +053019055 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
19056 " %s : NL80211_TDLS_ENABLE_LINK for " MAC_ADDRESS_STR,
19057 __func__, MAC_ADDR_ARRAY(peer));
Masti, Narayanraddi6b93b472015-09-04 17:48:11 +053019058
Masti, Narayanraddi09c52d52015-12-19 14:19:18 +053019059 mutex_lock(&pHddCtx->tdls_lock);
19060 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peer, FALSE);
Agarwal Ashish16020c42014-12-29 22:01:11 +053019061 memset(&staDesc, 0, sizeof(staDesc));
Sunil Dutt41de4e22013-11-14 18:09:02 +053019062 if ( NULL == pTdlsPeer ) {
Masti, Narayanraddi09c52d52015-12-19 14:19:18 +053019063 mutex_unlock(&pHddCtx->tdls_lock);
Sunil Dutt41de4e22013-11-14 18:09:02 +053019064 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: " MAC_ADDRESS_STR
19065 " (oper %d) not exsting. ignored",
19066 __func__, MAC_ADDR_ARRAY(peer), (int)oper);
19067 return -EINVAL;
19068 }
19069
19070 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
19071 "%s: " MAC_ADDRESS_STR " link_status %d (%s) ", "tdls_oper",
19072 MAC_ADDR_ARRAY(peer), pTdlsPeer->link_status,
19073 "NL80211_TDLS_ENABLE_LINK");
19074
Gopichand Nakkala2f4a2822013-04-17 11:22:01 -070019075 if (!TDLS_STA_INDEX_VALID(pTdlsPeer->staId))
19076 {
19077 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid Staion Index %u "
19078 MAC_ADDRESS_STR " failed",
19079 __func__, pTdlsPeer->staId, MAC_ADDR_ARRAY(peer));
Masti, Narayanraddi09c52d52015-12-19 14:19:18 +053019080 mutex_unlock(&pHddCtx->tdls_lock);
Gopichand Nakkala2f4a2822013-04-17 11:22:01 -070019081 return -EINVAL;
19082 }
19083
Pradeep Reddy POTTETIf3148e82015-04-16 12:10:33 +053019084 /* before starting tdls connection, set tdls
19085 * off channel established status to default value */
19086 pTdlsPeer->isOffChannelEstablished = FALSE;
Masti, Narayanraddi09c52d52015-12-19 14:19:18 +053019087
19088 mutex_unlock(&pHddCtx->tdls_lock);
19089
Deepthi Gowri2d85bbf2016-07-25 15:43:31 +053019090 wlan_hdd_tdls_set_cap(pAdapter, peer, eTDLS_CAP_SUPPORTED);
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053019091 /* TDLS Off Channel, Disable tdls channel switch,
19092 when there are more than one tdls link */
19093 numCurrTdlsPeers = wlan_hdd_tdlsConnectedPeers(pAdapter);
Pradeep Reddy POTTETIa9991b62015-03-26 18:03:19 +053019094 if (numCurrTdlsPeers == 2)
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053019095 {
Masti, Narayanraddi09c52d52015-12-19 14:19:18 +053019096 mutex_lock(&pHddCtx->tdls_lock);
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053019097 /* get connected peer and send disable tdls off chan */
19098 connPeer = wlan_hdd_tdls_get_connected_peer(pAdapter);
Pradeep Reddy POTTETIfdaf38b2015-05-13 13:01:22 +053019099 if ((connPeer) &&
19100 (connPeer->isOffChannelSupported == TRUE) &&
19101 (connPeer->isOffChannelConfigured == TRUE))
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053019102 {
19103 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
19104 "%s: More then one peer connected, Disable "
19105 "TDLS channel switch", __func__);
19106
Pradeep Reddy POTTETI16d83332015-03-26 18:28:13 +053019107 connPeer->isOffChannelEstablished = FALSE;
Masti, Narayanraddi09c52d52015-12-19 14:19:18 +053019108 vos_mem_copy(peerMac, connPeer->peerMac, sizeof (tSirMacAddr));
19109 channel = connPeer->peerParams.channel;
19110
19111 mutex_unlock(&pHddCtx->tdls_lock);
Masti, Narayanraddi6b93b472015-09-04 17:48:11 +053019112
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053019113 ret = sme_SendTdlsChanSwitchReq(
19114 WLAN_HDD_GET_HAL_CTX(pAdapter),
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053019115 pAdapter->sessionId,
Masti, Narayanraddi09c52d52015-12-19 14:19:18 +053019116 peerMac,
19117 channel,
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053019118 TDLS_OFF_CHANNEL_BW_OFFSET,
19119 TDLS_CHANNEL_SWITCH_DISABLE);
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053019120 if (ret != VOS_STATUS_SUCCESS) {
Agarwal Ashisha7ef41d2015-06-25 18:00:26 +053019121 hddLog(VOS_TRACE_LEVEL_ERROR,
19122 FL("Failed to send TDLS switch channel request"));
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053019123 }
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053019124 }
19125 else
19126 {
19127 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
19128 "%s: No TDLS Connected Peer or "
Pradeep Reddy POTTETIfdaf38b2015-05-13 13:01:22 +053019129 "isOffChannelSupported %d "
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053019130 "isOffChannelConfigured %d",
19131 __func__,
Pradeep Reddy POTTETIfdaf38b2015-05-13 13:01:22 +053019132 (connPeer ? (connPeer->isOffChannelSupported)
19133 : -1),
19134 (connPeer ? (connPeer->isOffChannelConfigured)
19135 : -1));
Masti, Narayanraddi09c52d52015-12-19 14:19:18 +053019136 mutex_unlock(&pHddCtx->tdls_lock);
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053019137 }
19138 }
19139
Masti, Narayanraddi09c52d52015-12-19 14:19:18 +053019140 mutex_lock(&pHddCtx->tdls_lock);
19141 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peer, FALSE);
19142 if ( NULL == pTdlsPeer ) {
19143 mutex_unlock(&pHddCtx->tdls_lock);
19144 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
19145 "%s: " MAC_ADDRESS_STR
19146 " (oper %d) peer got freed in other context. ignored",
19147 __func__, MAC_ADDR_ARRAY(peer), (int)oper);
19148 return -EINVAL;
19149 }
19150 peer_status = pTdlsPeer->link_status;
19151 mutex_unlock(&pHddCtx->tdls_lock);
19152
19153 if (eTDLS_LINK_CONNECTED != peer_status)
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070019154 {
Madan Mohan Koyyalamudice419872013-09-13 19:36:52 +053019155 if (IS_ADVANCE_TDLS_ENABLE) {
Gopichand Nakkala24be5312013-07-02 16:47:12 +053019156
Madan Mohan Koyyalamudice419872013-09-13 19:36:52 +053019157 if (0 != wlan_hdd_tdls_get_link_establish_params(
19158 pAdapter, peer,&tdlsLinkEstablishParams)) {
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053019159 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Failed to get link establishment params"));
Madan Mohan Koyyalamudice419872013-09-13 19:36:52 +053019160 return -EINVAL;
19161 }
19162 INIT_COMPLETION(pAdapter->tdls_link_establish_req_comp);
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +053019163
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053019164 ret = sme_SendTdlsLinkEstablishParams(
19165 WLAN_HDD_GET_HAL_CTX(pAdapter),
19166 pAdapter->sessionId, peer,
19167 &tdlsLinkEstablishParams);
19168 if (ret != VOS_STATUS_SUCCESS) {
19169 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Failed to send link establishment params"));
19170 }
Madan Mohan Koyyalamudice419872013-09-13 19:36:52 +053019171 /* Send TDLS peer UAPSD capabilities to the firmware and
19172 * register with the TL on after the response for this operation
19173 * is received .
19174 */
19175 ret = wait_for_completion_interruptible_timeout(
19176 &pAdapter->tdls_link_establish_req_comp,
19177 msecs_to_jiffies(WAIT_TIME_TDLS_LINK_ESTABLISH_REQ));
Masti, Narayanraddie1892a52015-12-15 15:01:01 +053019178
19179 mutex_lock(&pHddCtx->tdls_lock);
19180 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peer, FALSE);
19181 if ( NULL == pTdlsPeer ) {
19182 mutex_unlock(&pHddCtx->tdls_lock);
19183 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
19184 "%s %d: " MAC_ADDRESS_STR
19185 " (oper %d) peer got freed in other context. ignored",
19186 __func__, __LINE__, MAC_ADDR_ARRAY(peer),
19187 (int)oper);
19188 return -EINVAL;
19189 }
19190 peer_status = pTdlsPeer->link_status;
19191 mutex_unlock(&pHddCtx->tdls_lock);
19192
19193 if (ret <= 0 || (peer_status == eTDLS_LINK_TEARING))
Madan Mohan Koyyalamudice419872013-09-13 19:36:52 +053019194 {
19195 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Agarwal Ashisha7ef41d2015-06-25 18:00:26 +053019196 FL("Link Establish Request Failed Status %ld"),
19197 ret);
Madan Mohan Koyyalamudice419872013-09-13 19:36:52 +053019198 return -EINVAL;
19199 }
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +053019200 }
Masti, Narayanraddi6b93b472015-09-04 17:48:11 +053019201
Masti, Narayanraddi09c52d52015-12-19 14:19:18 +053019202 mutex_lock(&pHddCtx->tdls_lock);
19203 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peer, FALSE);
19204 if ( NULL == pTdlsPeer ) {
19205 mutex_unlock(&pHddCtx->tdls_lock);
19206 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
19207 "%s: " MAC_ADDRESS_STR
19208 " (oper %d) peer got freed in other context. ignored",
19209 __func__, MAC_ADDR_ARRAY(peer), (int)oper);
19210 return -EINVAL;
19211 }
19212
Atul Mittal115287b2014-07-08 13:26:33 +053019213 wlan_hdd_tdls_set_peer_link_status(pTdlsPeer,
19214 eTDLS_LINK_CONNECTED,
19215 eTDLS_LINK_SUCCESS);
Agarwal Ashish16020c42014-12-29 22:01:11 +053019216 staDesc.ucSTAId = pTdlsPeer->staId;
19217 staDesc.ucQosEnabled = tdlsLinkEstablishParams.qos;
Masti, Narayanraddi3d799022015-12-24 18:22:36 +053019218
19219 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
19220 "%s: tdlsLinkEstablishParams of peer "
19221 MAC_ADDRESS_STR "uapsdQueues: %d"
19222 "qos: %d maxSp: %d isBufSta: %d isOffChannelSupported: %d"
19223 "isResponder: %d peerstaId: %d",
19224 __func__,
19225 MAC_ADDR_ARRAY(tdlsLinkEstablishParams.peerMac),
19226 tdlsLinkEstablishParams.uapsdQueues,
19227 tdlsLinkEstablishParams.qos,
19228 tdlsLinkEstablishParams.maxSp,
19229 tdlsLinkEstablishParams.isBufSta,
19230 tdlsLinkEstablishParams.isOffChannelSupported,
19231 tdlsLinkEstablishParams.isResponder,
19232 pTdlsPeer->staId);
19233
19234 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
19235 "%s: StaDesc ucSTAId: %d ucQosEnabled: %d",
19236 __func__,
19237 staDesc.ucSTAId,
19238 staDesc.ucQosEnabled);
19239
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053019240 ret = WLANTL_UpdateTdlsSTAClient(
19241 pHddCtx->pvosContext,
19242 &staDesc);
19243 if (ret != VOS_STATUS_SUCCESS) {
19244 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Failed to update TDLS STA params"));
19245 }
Agarwal Ashish16020c42014-12-29 22:01:11 +053019246
Gopichand Nakkala471708b2013-06-04 20:03:01 +053019247 /* Mark TDLS client Authenticated .*/
19248 status = WLANTL_ChangeSTAState( pHddCtx->pvosContext,
19249 pTdlsPeer->staId,
19250 WLANTL_STA_AUTHENTICATED);
Gopichand Nakkalaccd3a382013-03-19 13:56:10 -070019251 if (VOS_STATUS_SUCCESS == status)
19252 {
Hoonki Lee14621352013-04-16 17:51:19 -070019253 if (pTdlsPeer->is_responder == 0)
19254 {
19255 v_U8_t staId = (v_U8_t)pTdlsPeer->staId;
Ganesh Kondabattinicbfdc392015-09-11 19:12:59 +053019256 tdlsConnInfo_t *tdlsInfo;
19257
19258 tdlsInfo = wlan_hdd_get_conn_info(pHddCtx, staId);
19259
Hanumantha Reddy Pothulac8238402016-03-24 18:02:23 +053019260 if (!vos_timer_is_initialized(
19261 &pTdlsPeer->initiatorWaitTimeoutTimer))
19262 {
19263 /* Initialize initiator wait callback */
19264 vos_timer_init(
Ganesh Kondabattinicbfdc392015-09-11 19:12:59 +053019265 &pTdlsPeer->initiatorWaitTimeoutTimer,
19266 VOS_TIMER_TYPE_SW,
19267 wlan_hdd_tdls_initiator_wait_cb,
19268 tdlsInfo);
Hanumantha Reddy Pothulac8238402016-03-24 18:02:23 +053019269 }
Hoonki Lee14621352013-04-16 17:51:19 -070019270 wlan_hdd_tdls_timer_restart(pAdapter,
19271 &pTdlsPeer->initiatorWaitTimeoutTimer,
19272 WAIT_TIME_TDLS_INITIATOR);
19273 /* suspend initiator TX until it receives direct packet from the
19274 reponder or WAIT_TIME_TDLS_INITIATOR timer expires */
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053019275 ret = WLANTL_SuspendDataTx(
19276 (WLAN_HDD_GET_CTX(pAdapter))->pvosContext,
19277 &staId, NULL);
19278 if (ret != VOS_STATUS_SUCCESS) {
19279 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Failed to suspend data tx"));
19280 }
Hoonki Lee14621352013-04-16 17:51:19 -070019281 }
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053019282
Pradeep Reddy POTTETIfcac7902015-04-16 12:25:17 +053019283 if ((TRUE == pTdlsPeer->isOffChannelSupported) &&
Pradeep Reddy POTTETIfdaf38b2015-05-13 13:01:22 +053019284 (TRUE == pTdlsPeer->isOffChannelConfigured))
Pradeep Reddy POTTETIfcac7902015-04-16 12:25:17 +053019285 {
Pradeep Reddy POTTETIfdaf38b2015-05-13 13:01:22 +053019286 suppChannelLen =
19287 tdlsLinkEstablishParams.supportedChannelsLen;
19288
19289 if ((suppChannelLen > 0) &&
19290 (suppChannelLen <= SIR_MAC_MAX_SUPP_CHANNELS))
19291 {
19292 tANI_U8 suppPeerChannel = 0;
19293 int i = 0;
19294 for (i = 0U; i < suppChannelLen; i++)
19295 {
19296 suppPeerChannel =
19297 tdlsLinkEstablishParams.supportedChannels[i];
19298
19299 pTdlsPeer->isOffChannelSupported = FALSE;
19300 if (suppPeerChannel ==
19301 pTdlsPeer->peerParams.channel)
19302 {
19303 pTdlsPeer->isOffChannelSupported = TRUE;
19304 break;
19305 }
19306 }
19307 }
19308 else
19309 {
19310 pTdlsPeer->isOffChannelSupported = FALSE;
19311 }
Pradeep Reddy POTTETIfcac7902015-04-16 12:25:17 +053019312 }
19313 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
19314 "%s: TDLS channel switch request for channel "
19315 "%d isOffChannelConfigured %d suppChannelLen "
Pradeep Reddy POTTETIfdaf38b2015-05-13 13:01:22 +053019316 "%d isOffChannelSupported %d", __func__,
19317 pTdlsPeer->peerParams.channel,
Pradeep Reddy POTTETIfcac7902015-04-16 12:25:17 +053019318 pTdlsPeer->isOffChannelConfigured,
Pradeep Reddy POTTETIfdaf38b2015-05-13 13:01:22 +053019319 suppChannelLen,
19320 pTdlsPeer->isOffChannelSupported);
Pradeep Reddy POTTETIfcac7902015-04-16 12:25:17 +053019321
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053019322 /* TDLS Off Channel, Enable tdls channel switch,
19323 when their is only one tdls link and it supports */
19324 numCurrTdlsPeers = wlan_hdd_tdlsConnectedPeers(pAdapter);
19325 if ((numCurrTdlsPeers == 1) &&
19326 (TRUE == pTdlsPeer->isOffChannelSupported) &&
19327 (TRUE == pTdlsPeer->isOffChannelConfigured))
19328 {
19329 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
19330 "%s: Send TDLS channel switch request for channel %d",
19331 __func__, pTdlsPeer->peerParams.channel);
Pradeep Reddy POTTETI16d83332015-03-26 18:28:13 +053019332
19333 pTdlsPeer->isOffChannelEstablished = TRUE;
Masti, Narayanraddi09c52d52015-12-19 14:19:18 +053019334 vos_mem_copy(peerMac, pTdlsPeer->peerMac, sizeof (tSirMacAddr));
19335 channel = pTdlsPeer->peerParams.channel;
19336
19337 mutex_unlock(&pHddCtx->tdls_lock);
19338
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053019339 ret = sme_SendTdlsChanSwitchReq(WLAN_HDD_GET_HAL_CTX(pAdapter),
19340 pAdapter->sessionId,
Masti, Narayanraddi09c52d52015-12-19 14:19:18 +053019341 peerMac,
19342 channel,
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053019343 TDLS_OFF_CHANNEL_BW_OFFSET,
19344 TDLS_CHANNEL_SWITCH_ENABLE);
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053019345 if (ret != VOS_STATUS_SUCCESS) {
19346 hddLog(VOS_TRACE_LEVEL_ERROR, FL("TDLS offchannel: Failed to send TDLS switch channel req"));
19347 }
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053019348 }
19349 else
19350 {
19351 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
19352 "%s: TDLS channel switch request not sent"
19353 " numCurrTdlsPeers %d "
19354 "isOffChannelSupported %d "
19355 "isOffChannelConfigured %d",
19356 __func__, numCurrTdlsPeers,
19357 pTdlsPeer->isOffChannelSupported,
19358 pTdlsPeer->isOffChannelConfigured);
Masti, Narayanraddi09c52d52015-12-19 14:19:18 +053019359 mutex_unlock(&pHddCtx->tdls_lock);
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053019360 }
19361
Gopichand Nakkalaccd3a382013-03-19 13:56:10 -070019362 }
Masti, Narayanraddi09c52d52015-12-19 14:19:18 +053019363 else
19364 mutex_unlock(&pHddCtx->tdls_lock);
19365
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070019366 wlan_hdd_tdls_check_bmps(pAdapter);
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +053019367
19368 /* Update TL about the UAPSD masks , to route the packets to firmware */
Gopichand Nakkala574f6d12013-06-27 19:38:43 +053019369 if ((TRUE == pHddCtx->cfg_ini->fEnableTDLSBufferSta)
19370 || pHddCtx->cfg_ini->fTDLSUapsdMask )
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +053019371 {
Gopichand Nakkala574f6d12013-06-27 19:38:43 +053019372 int ac;
19373 uint8 ucAc[4] = { WLANTL_AC_VO,
19374 WLANTL_AC_VI,
19375 WLANTL_AC_BK,
19376 WLANTL_AC_BE };
19377 uint8 tlTid[4] = { 7, 5, 2, 3 } ;
19378 for(ac=0; ac < 4; ac++)
19379 {
19380 status = WLANTL_EnableUAPSDForAC( (WLAN_HDD_GET_CTX(pAdapter))->pvosContext,
19381 pTdlsPeer->staId, ucAc[ac],
19382 tlTid[ac], tlTid[ac], 0, 0,
19383 WLANTL_BI_DIR );
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053019384 if (status != VOS_STATUS_SUCCESS) {
19385 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Failed to enable UAPSD for AC"));
19386 }
Gopichand Nakkala574f6d12013-06-27 19:38:43 +053019387 }
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +053019388 }
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070019389 }
Masti, Narayanraddi09c52d52015-12-19 14:19:18 +053019390
Bhargav Shah66896792015-10-01 18:17:37 +053019391 /* stop TCP delack timer if TDLS is enable */
19392 set_bit(WLAN_TDLS_MODE, &pHddCtx->mode);
19393 hdd_manage_delack_timer(pHddCtx);
Abhishek Singh67fa6bc2016-01-05 15:57:19 +053019394 hdd_wlan_tdls_enable_link_event(peer,
19395 pTdlsPeer->isOffChannelSupported,
19396 pTdlsPeer->isOffChannelConfigured,
19397 pTdlsPeer->isOffChannelEstablished);
Mohit Khanna698ba2a2012-12-04 15:08:18 -080019398 }
19399 break;
19400 case NL80211_TDLS_DISABLE_LINK:
Lee Hoonkic1262f22013-01-24 21:59:00 -080019401 {
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053019402 tANI_U16 numCurrTdlsPeers = 0;
19403 hddTdlsPeer_t *connPeer = NULL;
19404
Agarwal Ashisha7ef41d2015-06-25 18:00:26 +053019405 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
19406 " %s : NL80211_TDLS_DISABLE_LINK for " MAC_ADDRESS_STR,
19407 __func__, MAC_ADDR_ARRAY(peer));
19408
Masti, Narayanraddi8208f062015-10-15 13:16:17 +053019409 mutex_lock(&pHddCtx->tdls_lock);
19410 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peer, FALSE);
Sunil Dutt41de4e22013-11-14 18:09:02 +053019411
Agarwal Ashisha7ef41d2015-06-25 18:00:26 +053019412
Sunil Dutt41de4e22013-11-14 18:09:02 +053019413 if ( NULL == pTdlsPeer ) {
Masti, Narayanraddi8208f062015-10-15 13:16:17 +053019414 mutex_unlock(&pHddCtx->tdls_lock);
Sunil Dutt41de4e22013-11-14 18:09:02 +053019415 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: " MAC_ADDRESS_STR
19416 " (oper %d) not exsting. ignored",
19417 __func__, MAC_ADDR_ARRAY(peer), (int)oper);
19418 return -EINVAL;
19419 }
19420
19421 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
19422 "%s: " MAC_ADDRESS_STR " link_status %d (%s) ", "tdls_oper",
19423 MAC_ADDR_ARRAY(peer), pTdlsPeer->link_status,
19424 "NL80211_TDLS_DISABLE_LINK");
19425
Hoonki Lee5305c3a2013-04-29 23:28:59 -070019426 if(TDLS_STA_INDEX_VALID(pTdlsPeer->staId))
Lee Hoonkic1262f22013-01-24 21:59:00 -080019427 {
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070019428 long status;
19429
Pradeep Reddy POTTETIf3148e82015-04-16 12:10:33 +053019430 /* set tdls off channel status to false for this peer */
19431 pTdlsPeer->isOffChannelEstablished = FALSE;
Atul Mittal271a7652014-09-12 13:18:22 +053019432 wlan_hdd_tdls_set_peer_link_status(pTdlsPeer,
19433 eTDLS_LINK_TEARING,
19434 (pTdlsPeer->link_status == eTDLS_LINK_TEARING)?
19435 eTDLS_LINK_UNSPECIFIED:
19436 eTDLS_LINK_DROPPED_BY_REMOTE);
Masti, Narayanraddi8208f062015-10-15 13:16:17 +053019437 mutex_unlock(&pHddCtx->tdls_lock);
19438
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070019439 INIT_COMPLETION(pAdapter->tdls_del_station_comp);
19440
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053019441 status = sme_DeleteTdlsPeerSta(
19442 WLAN_HDD_GET_HAL_CTX(pAdapter),
19443 pAdapter->sessionId, peer );
19444 if (status != VOS_STATUS_SUCCESS) {
19445 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Failed to delete TDLS peer STA"));
19446 }
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070019447
19448 status = wait_for_completion_interruptible_timeout(&pAdapter->tdls_del_station_comp,
19449 msecs_to_jiffies(WAIT_TIME_TDLS_DEL_STA));
Masti, Narayanraddi8208f062015-10-15 13:16:17 +053019450
19451 mutex_lock(&pHddCtx->tdls_lock);
19452 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peer, FALSE);
19453 if ( NULL == pTdlsPeer ) {
19454 mutex_unlock(&pHddCtx->tdls_lock);
19455 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: " MAC_ADDRESS_STR
19456 " peer was freed in other context",
19457 __func__, MAC_ADDR_ARRAY(peer));
19458 return -EINVAL;
19459 }
19460
Atul Mittal271a7652014-09-12 13:18:22 +053019461 wlan_hdd_tdls_set_peer_link_status(pTdlsPeer,
Atul Mittal454664b2014-10-10 11:03:46 +053019462 eTDLS_LINK_IDLE,
19463 eTDLS_LINK_UNSPECIFIED);
Masti, Narayanraddi8208f062015-10-15 13:16:17 +053019464 mutex_unlock(&pHddCtx->tdls_lock);
19465
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070019466 if (status <= 0)
19467 {
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070019468 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
19469 "%s: Del station failed status %ld",
19470 __func__, status);
19471 return -EPERM;
19472 }
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053019473
19474 /* TDLS Off Channel, Enable tdls channel switch,
19475 when their is only one tdls link and it supports */
19476 numCurrTdlsPeers = wlan_hdd_tdlsConnectedPeers(pAdapter);
19477 if (numCurrTdlsPeers == 1)
19478 {
Masti, Narayanraddi8208f062015-10-15 13:16:17 +053019479 tSirMacAddr peerMac;
19480 int channel;
Masti, Narayanraddi3818aea2015-10-17 15:20:28 +053019481
Masti, Narayanraddi8208f062015-10-15 13:16:17 +053019482 mutex_lock(&pHddCtx->tdls_lock);
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053019483 connPeer = wlan_hdd_tdls_get_connected_peer(pAdapter);
Masti, Narayanraddi3818aea2015-10-17 15:20:28 +053019484
19485 if (connPeer == NULL) {
19486 mutex_unlock(&pHddCtx->tdls_lock);
19487 hddLog(VOS_TRACE_LEVEL_ERROR,
19488 "%s connPeer is NULL", __func__);
19489 return -EINVAL;
19490 }
19491
Masti, Narayanraddi8208f062015-10-15 13:16:17 +053019492 vos_mem_copy(peerMac, connPeer->peerMac, sizeof(tSirMacAddr));
19493 channel = connPeer->peerParams.channel;
19494
19495 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
19496 "%s: TDLS channel switch "
19497 "isOffChannelSupported %d "
19498 "isOffChannelConfigured %d "
19499 "isOffChannelEstablished %d",
19500 __func__,
19501 (connPeer ? connPeer->isOffChannelSupported : -1),
19502 (connPeer ? connPeer->isOffChannelConfigured : -1),
19503 (connPeer ? connPeer->isOffChannelEstablished : -1));
19504
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053019505 if ((connPeer) &&
19506 (connPeer->isOffChannelSupported == TRUE) &&
19507 (connPeer->isOffChannelConfigured == TRUE))
19508 {
Pradeep Reddy POTTETI16d83332015-03-26 18:28:13 +053019509 connPeer->isOffChannelEstablished = TRUE;
Masti, Narayanraddi8208f062015-10-15 13:16:17 +053019510 mutex_unlock(&pHddCtx->tdls_lock);
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053019511 status = sme_SendTdlsChanSwitchReq(
19512 WLAN_HDD_GET_HAL_CTX(pAdapter),
19513 pAdapter->sessionId,
Masti, Narayanraddi8208f062015-10-15 13:16:17 +053019514 peerMac,
19515 channel,
Chandrasekaran, Manishekar0de84dc2015-03-10 15:12:34 +053019516 TDLS_OFF_CHANNEL_BW_OFFSET,
19517 TDLS_CHANNEL_SWITCH_ENABLE);
19518 if (status != VOS_STATUS_SUCCESS) {
19519 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Failed to send TDLS switch channel req"));
19520 }
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053019521 }
Masti, Narayanraddi8208f062015-10-15 13:16:17 +053019522 else
19523 mutex_unlock(&pHddCtx->tdls_lock);
19524 }
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053019525 else
19526 {
19527 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
19528 "%s: TDLS channel switch request not sent "
19529 "numCurrTdlsPeers %d ",
19530 __func__, numCurrTdlsPeers);
19531 }
Lee Hoonkic1262f22013-01-24 21:59:00 -080019532 }
19533 else
19534 {
Masti, Narayanraddi8208f062015-10-15 13:16:17 +053019535 mutex_unlock(&pHddCtx->tdls_lock);
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070019536 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
19537 "%s: TDLS Peer Station doesn't exist.", __func__);
Lee Hoonkic1262f22013-01-24 21:59:00 -080019538 }
Bhargav Shah66896792015-10-01 18:17:37 +053019539 if (numCurrTdlsPeers == 0) {
19540 /* start TCP delack timer if TDLS is disable */
19541 clear_bit(WLAN_TDLS_MODE, &pHddCtx->mode);
19542 hdd_manage_delack_timer(pHddCtx);
19543 }
Lee Hoonkic1262f22013-01-24 21:59:00 -080019544 }
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070019545 break;
Mohit Khanna698ba2a2012-12-04 15:08:18 -080019546 case NL80211_TDLS_TEARDOWN:
Sunil Dutt41de4e22013-11-14 18:09:02 +053019547 {
Atul Mittal115287b2014-07-08 13:26:33 +053019548 status = wlan_hdd_tdls_extctrl_deconfig_peer(pAdapter, peer);
Sunil Dutt41de4e22013-11-14 18:09:02 +053019549
Atul Mittal115287b2014-07-08 13:26:33 +053019550 if (0 != status)
19551 {
19552 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Agarwal Ashisha7ef41d2015-06-25 18:00:26 +053019553 FL("Error in TDLS Teardown"));
Atul Mittal115287b2014-07-08 13:26:33 +053019554 return status;
Sunil Dutt41de4e22013-11-14 18:09:02 +053019555 }
Sunil Dutt41de4e22013-11-14 18:09:02 +053019556 break;
19557 }
Mohit Khanna698ba2a2012-12-04 15:08:18 -080019558 case NL80211_TDLS_SETUP:
Sunil Dutt41de4e22013-11-14 18:09:02 +053019559 {
Atul Mittal115287b2014-07-08 13:26:33 +053019560 status = wlan_hdd_tdls_extctrl_config_peer(pAdapter,
19561 peer,
Pradeep Reddy POTTETIe309c152015-02-06 13:21:07 +053019562 NULL,
Atul Mittal115287b2014-07-08 13:26:33 +053019563 NULL);
Sunil Dutt41de4e22013-11-14 18:09:02 +053019564
Atul Mittal115287b2014-07-08 13:26:33 +053019565 if (0 != status)
19566 {
19567 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Agarwal Ashisha7ef41d2015-06-25 18:00:26 +053019568 FL("Error in TDLS Setup"));
Atul Mittal115287b2014-07-08 13:26:33 +053019569 return status;
Naresh Jayaram937abdf2013-11-26 19:50:25 +053019570 }
Naresh Jayaramdb4514b2013-11-25 18:08:10 +053019571 break;
Sunil Dutt41de4e22013-11-14 18:09:02 +053019572 }
Mohit Khanna698ba2a2012-12-04 15:08:18 -080019573 case NL80211_TDLS_DISCOVERY_REQ:
19574 /* We don't support in-driver setup/teardown/discovery */
c_hpothu6ff1c3c2013-10-01 19:01:57 +053019575 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_WARN,
Agarwal Ashisha7ef41d2015-06-25 18:00:26 +053019576 "%s: Driver doesn't support in-driver setup/teardown/discovery "
c_hpothu6ff1c3c2013-10-01 19:01:57 +053019577 ,__func__);
Mohit Khanna698ba2a2012-12-04 15:08:18 -080019578 return -ENOTSUPP;
19579 default:
c_hpothu6ff1c3c2013-10-01 19:01:57 +053019580 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
19581 "%s: unsupported event",__func__);
Mohit Khanna698ba2a2012-12-04 15:08:18 -080019582 return -ENOTSUPP;
19583 }
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053019584
19585 EXIT();
Mohit Khanna698ba2a2012-12-04 15:08:18 -080019586 return 0;
19587}
Chilam NG571c65a2013-01-19 12:27:36 +053019588
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053019589static int wlan_hdd_cfg80211_tdls_oper(struct wiphy *wiphy, struct net_device *dev,
Anand N Sunkad9bfc2622015-07-30 15:18:54 +053019590#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,18,0))
19591 const u8 *peer,
19592#else
19593 u8 *peer,
19594#endif
19595 enum nl80211_tdls_operation oper)
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053019596{
19597 int ret;
19598
19599 vos_ssr_protect(__func__);
19600 ret = __wlan_hdd_cfg80211_tdls_oper(wiphy, dev, peer, oper);
19601 vos_ssr_unprotect(__func__);
19602
19603 return ret;
19604}
19605
Chilam NG571c65a2013-01-19 12:27:36 +053019606int wlan_hdd_cfg80211_send_tdls_discover_req(struct wiphy *wiphy,
19607 struct net_device *dev, u8 *peer)
19608{
Arif Hussaina7c8e412013-11-20 11:06:42 -080019609 hddLog(VOS_TRACE_LEVEL_INFO,
19610 "tdls send discover req: "MAC_ADDRESS_STR,
19611 MAC_ADDR_ARRAY(peer));
Sunil Dutt Undekarieacac6f2014-03-21 14:08:53 +053019612#if TDLS_MGMT_VERSION2
19613 return wlan_hdd_cfg80211_tdls_mgmt(wiphy, dev, peer,
19614 WLAN_TDLS_DISCOVERY_REQUEST, 1, 0, 0, NULL, 0);
19615#else
Anand N Sunkad9bfc2622015-07-30 15:18:54 +053019616#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,17,0))
19617 return wlan_hdd_cfg80211_tdls_mgmt(wiphy, dev, peer,
19618 WLAN_TDLS_DISCOVERY_REQUEST, 1, 0, 0, 0, NULL, 0);
19619#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,16,0))
19620 return wlan_hdd_cfg80211_tdls_mgmt(wiphy, dev, peer,
19621 WLAN_TDLS_DISCOVERY_REQUEST, 1, 0, 0, NULL, 0);
19622#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,15,0))
19623 return wlan_hdd_cfg80211_tdls_mgmt(wiphy, dev, peer,
19624 WLAN_TDLS_DISCOVERY_REQUEST, 1, 0, 0, NULL, 0);
19625#else
Chilam NG571c65a2013-01-19 12:27:36 +053019626 return wlan_hdd_cfg80211_tdls_mgmt(wiphy, dev, peer,
19627 WLAN_TDLS_DISCOVERY_REQUEST, 1, 0, NULL, 0);
Sunil Dutt Undekarieacac6f2014-03-21 14:08:53 +053019628#endif
Anand N Sunkad9bfc2622015-07-30 15:18:54 +053019629#endif /* KERNEL_VERSION */
Chilam NG571c65a2013-01-19 12:27:36 +053019630}
Mohit Khanna698ba2a2012-12-04 15:08:18 -080019631#endif
19632
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053019633#ifdef WLAN_FEATURE_GTK_OFFLOAD
19634/*
19635 * FUNCTION: wlan_hdd_cfg80211_update_replayCounterCallback
19636 * Callback rountine called upon receiving response for
19637 * get offload info
19638 */
19639void wlan_hdd_cfg80211_update_replayCounterCallback(void *callbackContext,
19640 tpSirGtkOffloadGetInfoRspParams pGtkOffloadGetInfoRsp)
19641{
19642
19643 hdd_adapter_t *pAdapter = (hdd_adapter_t *)callbackContext;
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053019644 tANI_U8 tempReplayCounter[8];
19645 hdd_station_ctx_t *pHddStaCtx;
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053019646
19647 ENTER();
19648
19649 if (NULL == pAdapter)
19650 {
Agarwal Ashish971c2882013-10-30 20:11:12 +053019651 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053019652 "%s: HDD adapter is Null", __func__);
19653 return ;
19654 }
19655
19656 if (NULL == pGtkOffloadGetInfoRsp)
19657 {
19658 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
19659 "%s: pGtkOffloadGetInfoRsp is Null", __func__);
19660 return ;
19661 }
19662
19663 if (VOS_STATUS_SUCCESS != pGtkOffloadGetInfoRsp->ulStatus)
19664 {
19665 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
19666 "%s: wlan Failed to get replay counter value",
19667 __func__);
19668 return ;
19669 }
19670
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053019671 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
19672 /* Update replay counter */
19673 pHddStaCtx->gtkOffloadReqParams.ullKeyReplayCounter =
19674 pGtkOffloadGetInfoRsp->ullKeyReplayCounter;
19675
19676 {
19677 /* changing from little to big endian since supplicant
19678 * works on big endian format
19679 */
19680 int i;
19681 tANI_U8 *p = (tANI_U8 *)&pGtkOffloadGetInfoRsp->ullKeyReplayCounter;
19682
19683 for (i = 0; i < 8; i++)
19684 {
19685 tempReplayCounter[7-i] = (tANI_U8)p[i];
19686 }
19687 }
19688
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053019689 /* Update replay counter to NL */
19690 cfg80211_gtk_rekey_notify(pAdapter->dev, pGtkOffloadGetInfoRsp->bssId,
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053019691 tempReplayCounter, GFP_KERNEL);
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053019692}
19693
19694/*
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053019695 * FUNCTION: __wlan_hdd_cfg80211_set_rekey_data
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053019696 * This function is used to offload GTK rekeying job to the firmware.
19697 */
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053019698int __wlan_hdd_cfg80211_set_rekey_data(struct wiphy *wiphy, struct net_device *dev,
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053019699 struct cfg80211_gtk_rekey_data *data)
19700{
19701 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
19702 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
19703 hdd_station_ctx_t *pHddStaCtx;
19704 tHalHandle hHal;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053019705 int result;
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053019706 tSirGtkOffloadParams hddGtkOffloadReqParams;
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053019707 eHalStatus status = eHAL_STATUS_FAILURE;
19708
19709 ENTER();
19710
19711 if (NULL == pAdapter)
19712 {
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053019713 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053019714 "%s: HDD adapter is Null", __func__);
19715 return -ENODEV;
19716 }
19717
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053019718 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
19719 TRACE_CODE_HDD_CFG80211_SET_REKEY_DATA,
19720 pAdapter->sessionId, pAdapter->device_mode));
19721
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053019722 result = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053019723 if (0 != result)
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053019724 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053019725 return result;
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053019726 }
19727
19728 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
19729 hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
19730 if (NULL == hHal)
19731 {
19732 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
19733 "%s: HAL context is Null!!!", __func__);
19734 return -EAGAIN;
19735 }
19736
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053019737 pHddStaCtx->gtkOffloadReqParams.ulFlags = GTK_OFFLOAD_ENABLE;
19738 memcpy(pHddStaCtx->gtkOffloadReqParams.aKCK, data->kck, NL80211_KCK_LEN);
19739 memcpy(pHddStaCtx->gtkOffloadReqParams.aKEK, data->kek, NL80211_KEK_LEN);
19740 memcpy(pHddStaCtx->gtkOffloadReqParams.bssId, &pHddStaCtx->conn_info.bssId,
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053019741 WNI_CFG_BSSID_LEN);
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053019742 {
19743 /* changing from big to little endian since driver
19744 * works on little endian format
19745 */
19746 tANI_U8 *p =
19747 (tANI_U8 *)&pHddStaCtx->gtkOffloadReqParams.ullKeyReplayCounter;
19748 int i;
19749
19750 for (i = 0; i < 8; i++)
19751 {
19752 p[7-i] = data->replay_ctr[i];
19753 }
19754 }
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053019755
19756 if (TRUE == pHddCtx->hdd_wlan_suspended)
19757 {
19758 /* if wlan is suspended, enable GTK offload directly from here */
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053019759 memcpy(&hddGtkOffloadReqParams, &pHddStaCtx->gtkOffloadReqParams,
19760 sizeof (tSirGtkOffloadParams));
19761 status = sme_SetGTKOffload(hHal, &hddGtkOffloadReqParams,
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053019762 pAdapter->sessionId);
19763
19764 if (eHAL_STATUS_SUCCESS != status)
19765 {
19766 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
19767 "%s: sme_SetGTKOffload failed, returned %d",
19768 __func__, status);
Vinay Krishna Eranna6f22c1f2014-10-13 16:03:06 +053019769
19770 /* Need to clear any trace of key value in the memory.
19771 * Thus zero out the memory even though it is local
19772 * variable.
19773 */
19774 vos_mem_zero(&hddGtkOffloadReqParams,
19775 sizeof(hddGtkOffloadReqParams));
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053019776 return status;
19777 }
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053019778 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
19779 "%s: sme_SetGTKOffload successfull", __func__);
19780 }
19781 else
19782 {
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053019783 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
19784 "%s: wlan not suspended GTKOffload request is stored",
19785 __func__);
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053019786 }
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053019787
Vinay Krishna Eranna6f22c1f2014-10-13 16:03:06 +053019788 /* Need to clear any trace of key value in the memory.
19789 * Thus zero out the memory even though it is local
19790 * variable.
19791 */
19792 vos_mem_zero(&hddGtkOffloadReqParams,
19793 sizeof(hddGtkOffloadReqParams));
19794
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053019795 EXIT();
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053019796 return eHAL_STATUS_SUCCESS;
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053019797}
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053019798
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053019799int wlan_hdd_cfg80211_set_rekey_data(struct wiphy *wiphy, struct net_device *dev,
19800 struct cfg80211_gtk_rekey_data *data)
19801{
19802 int ret;
19803
19804 vos_ssr_protect(__func__);
19805 ret = __wlan_hdd_cfg80211_set_rekey_data(wiphy, dev, data);
19806 vos_ssr_unprotect(__func__);
19807
19808 return ret;
19809}
19810#endif /*WLAN_FEATURE_GTK_OFFLOAD*/
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +053019811/*
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053019812 * FUNCTION: __wlan_hdd_cfg80211_set_mac_acl
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +053019813 * This function is used to set access control policy
19814 */
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053019815static int __wlan_hdd_cfg80211_set_mac_acl(struct wiphy *wiphy,
19816 struct net_device *dev,
19817 const struct cfg80211_acl_data *params)
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +053019818{
19819 int i;
19820 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
19821 hdd_hostapd_state_t *pHostapdState;
19822 tsap_Config_t *pConfig;
19823 v_CONTEXT_t pVosContext = NULL;
19824 hdd_context_t *pHddCtx;
19825 int status;
19826
19827 ENTER();
19828
19829 if (NULL == pAdapter)
19830 {
19831 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
19832 "%s: HDD adapter is Null", __func__);
19833 return -ENODEV;
19834 }
19835
19836 if (NULL == params)
19837 {
19838 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
19839 "%s: params is Null", __func__);
19840 return -EINVAL;
19841 }
19842
19843 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
19844 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +053019845 if (0 != status)
19846 {
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +053019847 return status;
19848 }
19849
19850 pVosContext = pHddCtx->pvosContext;
19851 pHostapdState = WLAN_HDD_GET_HOSTAP_STATE_PTR(pAdapter);
19852
19853 if (NULL == pHostapdState)
19854 {
19855 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
19856 "%s: pHostapdState is Null", __func__);
19857 return -EINVAL;
19858 }
19859
19860 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,"acl policy: = %d"
19861 "no acl entries = %d", params->acl_policy, params->n_acl_entries);
Konamki, Sreelakshmi7b464be2015-07-14 12:17:01 +053019862 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
19863 TRACE_CODE_HDD_CFG80211_SET_MAC_ACL,
19864 pAdapter->sessionId, pAdapter->device_mode));
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +053019865
19866 if (WLAN_HDD_SOFTAP == pAdapter->device_mode)
19867 {
19868 pConfig = &pAdapter->sessionCtx.ap.sapConfig;
19869
19870 /* default value */
19871 pConfig->num_accept_mac = 0;
19872 pConfig->num_deny_mac = 0;
19873
19874 /**
19875 * access control policy
19876 * @NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED: Deny stations which are
19877 * listed in hostapd.deny file.
19878 * @NL80211_ACL_POLICY_DENY_UNLESS_LISTED: Allow stations which are
19879 * listed in hostapd.accept file.
19880 */
19881 if (NL80211_ACL_POLICY_DENY_UNLESS_LISTED == params->acl_policy)
19882 {
19883 pConfig->SapMacaddr_acl = eSAP_DENY_UNLESS_ACCEPTED;
19884 }
19885 else if (NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED == params->acl_policy)
19886 {
19887 pConfig->SapMacaddr_acl = eSAP_ACCEPT_UNLESS_DENIED;
19888 }
19889 else
19890 {
19891 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
19892 "%s:Acl Policy : %d is not supported",
19893 __func__, params->acl_policy);
19894 return -ENOTSUPP;
19895 }
19896
19897 if (eSAP_DENY_UNLESS_ACCEPTED == pConfig->SapMacaddr_acl)
19898 {
19899 pConfig->num_accept_mac = params->n_acl_entries;
19900 for (i = 0; i < params->n_acl_entries; i++)
19901 {
19902 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
19903 "** Add ACL MAC entry %i in WhiletList :"
19904 MAC_ADDRESS_STR, i,
19905 MAC_ADDR_ARRAY(params->mac_addrs[i].addr));
19906
19907 vos_mem_copy(&pConfig->accept_mac[i], params->mac_addrs[i].addr,
19908 sizeof(qcmacaddr));
19909 }
19910 }
19911 else if (eSAP_ACCEPT_UNLESS_DENIED == pConfig->SapMacaddr_acl)
19912 {
19913 pConfig->num_deny_mac = params->n_acl_entries;
19914 for (i = 0; i < params->n_acl_entries; i++)
19915 {
19916 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
19917 "** Add ACL MAC entry %i in BlackList :"
19918 MAC_ADDRESS_STR, i,
19919 MAC_ADDR_ARRAY(params->mac_addrs[i].addr));
19920
19921 vos_mem_copy(&pConfig->deny_mac[i], params->mac_addrs[i].addr,
19922 sizeof(qcmacaddr));
19923 }
19924 }
19925
19926 if (VOS_STATUS_SUCCESS != WLANSAP_SetMacACL(pVosContext, pConfig))
19927 {
19928 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
19929 "%s: SAP Set Mac Acl fail", __func__);
19930 return -EINVAL;
19931 }
19932 }
19933 else
19934 {
19935 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Sushant Kaushik8bc7df22014-04-09 17:55:29 +053019936 "%s: Invalid device_mode = %s (%d)",
19937 __func__, hdd_device_modetoString(pAdapter->device_mode),
19938 pAdapter->device_mode);
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +053019939 return -EINVAL;
19940 }
19941
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053019942 EXIT();
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +053019943 return 0;
19944}
19945
Mahesh A Saptasagard68eb282014-12-17 14:20:19 +053019946static int wlan_hdd_cfg80211_set_mac_acl(struct wiphy *wiphy,
19947 struct net_device *dev,
19948 const struct cfg80211_acl_data *params)
19949{
19950 int ret;
19951 vos_ssr_protect(__func__);
19952 ret = __wlan_hdd_cfg80211_set_mac_acl(wiphy, dev, params);
19953 vos_ssr_unprotect(__func__);
19954
19955 return ret;
19956}
19957
Leo Chang9056f462013-08-01 19:21:11 -070019958#ifdef WLAN_NL80211_TESTMODE
19959#ifdef FEATURE_WLAN_LPHB
Leo Changd9df8aa2013-09-26 13:32:26 -070019960void wlan_hdd_cfg80211_lphb_ind_handler
Leo Chang9056f462013-08-01 19:21:11 -070019961(
19962 void *pAdapter,
19963 void *indCont
19964)
19965{
Leo Changd9df8aa2013-09-26 13:32:26 -070019966 tSirLPHBInd *lphbInd;
19967 struct sk_buff *skb;
c_hpothu73f35e62014-04-18 13:40:08 +053019968 hdd_context_t *pHddCtxt;
Leo Chang9056f462013-08-01 19:21:11 -070019969
19970 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Leo Changd9df8aa2013-09-26 13:32:26 -070019971 "LPHB indication arrived");
Leo Chang9056f462013-08-01 19:21:11 -070019972
c_hpothu73f35e62014-04-18 13:40:08 +053019973 if (pAdapter == NULL)
19974 {
19975 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
19976 "%s: pAdapter is NULL\n",__func__);
19977 return;
19978 }
19979
Leo Chang9056f462013-08-01 19:21:11 -070019980 if (NULL == indCont)
19981 {
19982 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Leo Changd9df8aa2013-09-26 13:32:26 -070019983 "LPHB IND, invalid argument");
Leo Chang9056f462013-08-01 19:21:11 -070019984 return;
19985 }
19986
c_hpothu73f35e62014-04-18 13:40:08 +053019987 pHddCtxt = (hdd_context_t *)pAdapter;
Leo Changd9df8aa2013-09-26 13:32:26 -070019988 lphbInd = (tSirLPHBInd *)indCont;
Leo Chang9056f462013-08-01 19:21:11 -070019989 skb = cfg80211_testmode_alloc_event_skb(
c_hpothu73f35e62014-04-18 13:40:08 +053019990 pHddCtxt->wiphy,
Leo Changd9df8aa2013-09-26 13:32:26 -070019991 sizeof(tSirLPHBInd),
Leo Chang9056f462013-08-01 19:21:11 -070019992 GFP_ATOMIC);
19993 if (!skb)
19994 {
19995 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
19996 "LPHB timeout, NL buffer alloc fail");
19997 return;
19998 }
19999
Leo Changac3ba772013-10-07 09:47:04 -070020000 if(nla_put_u32(skb, WLAN_HDD_TM_ATTR_CMD, WLAN_HDD_TM_CMD_WLAN_HB))
Leo Changd9df8aa2013-09-26 13:32:26 -070020001 {
20002 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
20003 "WLAN_HDD_TM_ATTR_CMD put fail");
20004 goto nla_put_failure;
20005 }
Leo Changac3ba772013-10-07 09:47:04 -070020006 if(nla_put_u32(skb, WLAN_HDD_TM_ATTR_TYPE, lphbInd->protocolType))
Leo Changd9df8aa2013-09-26 13:32:26 -070020007 {
20008 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
20009 "WLAN_HDD_TM_ATTR_TYPE put fail");
20010 goto nla_put_failure;
20011 }
Leo Changac3ba772013-10-07 09:47:04 -070020012 if(nla_put(skb, WLAN_HDD_TM_ATTR_DATA,
Leo Changd9df8aa2013-09-26 13:32:26 -070020013 sizeof(tSirLPHBInd), lphbInd))
20014 {
20015 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
20016 "WLAN_HDD_TM_ATTR_DATA put fail");
20017 goto nla_put_failure;
20018 }
Leo Chang9056f462013-08-01 19:21:11 -070020019 cfg80211_testmode_event(skb, GFP_ATOMIC);
20020 return;
20021
20022nla_put_failure:
20023 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
20024 "NLA Put fail");
20025 kfree_skb(skb);
20026
20027 return;
20028}
20029#endif /* FEATURE_WLAN_LPHB */
20030
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053020031static int __wlan_hdd_cfg80211_testmode(struct wiphy *wiphy, void *data, int len)
Leo Chang9056f462013-08-01 19:21:11 -070020032{
20033 struct nlattr *tb[WLAN_HDD_TM_ATTR_MAX + 1];
20034 int err = 0;
20035#ifdef FEATURE_WLAN_LPHB
20036 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
Leo Changd9df8aa2013-09-26 13:32:26 -070020037 eHalStatus smeStatus;
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053020038
20039 ENTER();
20040
Masti, Narayanraddic80e2bf2015-01-27 16:39:00 +053020041 err = wlan_hdd_validate_context(pHddCtx);
20042 if (0 != err)
20043 {
Masti, Narayanraddic80e2bf2015-01-27 16:39:00 +053020044 return err;
20045 }
Leo Chang9056f462013-08-01 19:21:11 -070020046#endif /* FEATURE_WLAN_LPHB */
20047
20048 err = nla_parse(tb, WLAN_HDD_TM_ATTR_MAX, data, len, wlan_hdd_tm_policy);
20049 if (err)
20050 {
20051 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
20052 "%s Testmode INV ATTR", __func__);
20053 return err;
20054 }
20055
20056 if (!tb[WLAN_HDD_TM_ATTR_CMD])
20057 {
20058 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
20059 "%s Testmode INV CMD", __func__);
20060 return -EINVAL;
20061 }
20062
Konamki, Sreelakshmi7b464be2015-07-14 12:17:01 +053020063 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
20064 TRACE_CODE_HDD_CFG80211_TESTMODE,
20065 NO_SESSION, nla_get_u32(tb[WLAN_HDD_TM_ATTR_CMD])));
Leo Chang9056f462013-08-01 19:21:11 -070020066 switch (nla_get_u32(tb[WLAN_HDD_TM_ATTR_CMD]))
20067 {
20068#ifdef FEATURE_WLAN_LPHB
20069 /* Low Power Heartbeat configuration request */
20070 case WLAN_HDD_TM_CMD_WLAN_HB:
20071 {
20072 int buf_len;
20073 void *buf;
20074 tSirLPHBReq *hb_params = NULL;
Amar Singhal05852702014-02-04 14:40:00 -080020075 tSirLPHBReq *hb_params_temp = NULL;
Leo Chang9056f462013-08-01 19:21:11 -070020076
20077 if (!tb[WLAN_HDD_TM_ATTR_DATA])
20078 {
20079 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
20080 "%s Testmode INV DATA", __func__);
20081 return -EINVAL;
20082 }
20083
20084 buf = nla_data(tb[WLAN_HDD_TM_ATTR_DATA]);
20085 buf_len = nla_len(tb[WLAN_HDD_TM_ATTR_DATA]);
Amar Singhal05852702014-02-04 14:40:00 -080020086
Manjeet Singh3c577442017-02-10 19:03:38 +053020087 if (buf_len > sizeof(*hb_params)) {
20088 hddLog(LOGE, FL("buf_len=%d exceeded hb_params size limit"),
20089 buf_len);
20090 return -ERANGE;
20091 }
20092
Amar Singhal05852702014-02-04 14:40:00 -080020093 hb_params_temp =(tSirLPHBReq *)buf;
20094 if ((hb_params_temp->cmd == LPHB_SET_TCP_PARAMS_INDID) &&
20095 (hb_params_temp->params.lphbTcpParamReq.timePeriodSec == 0))
20096 return -EINVAL;
20097
Leo Chang9056f462013-08-01 19:21:11 -070020098 hb_params = (tSirLPHBReq *)vos_mem_malloc(sizeof(tSirLPHBReq));
20099 if (NULL == hb_params)
20100 {
20101 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
20102 "%s Request Buffer Alloc Fail", __func__);
20103 return -EINVAL;
20104 }
20105
20106 vos_mem_copy(hb_params, buf, buf_len);
Leo Changd9df8aa2013-09-26 13:32:26 -070020107 smeStatus = sme_LPHBConfigReq((tHalHandle)(pHddCtx->hHal),
20108 hb_params,
20109 wlan_hdd_cfg80211_lphb_ind_handler);
20110 if (eHAL_STATUS_SUCCESS != smeStatus)
Leo Chang9056f462013-08-01 19:21:11 -070020111 {
Leo Changd9df8aa2013-09-26 13:32:26 -070020112 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
20113 "LPHB Config Fail, disable");
Leo Chang9056f462013-08-01 19:21:11 -070020114 vos_mem_free(hb_params);
20115 }
Leo Chang9056f462013-08-01 19:21:11 -070020116 return 0;
20117 }
20118#endif /* FEATURE_WLAN_LPHB */
20119 default:
c_hpothu6ff1c3c2013-10-01 19:01:57 +053020120 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
20121 "%s: unsupported event",__func__);
Leo Chang9056f462013-08-01 19:21:11 -070020122 return -EOPNOTSUPP;
20123 }
20124
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053020125 EXIT();
20126 return err;
Leo Chang9056f462013-08-01 19:21:11 -070020127}
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053020128
Anand N Sunkade9adb1b2015-07-29 09:56:45 +053020129static int wlan_hdd_cfg80211_testmode(struct wiphy *wiphy,
20130#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0))
20131 struct wireless_dev *wdev,
20132#endif
20133 void *data, int len)
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053020134{
20135 int ret;
20136
20137 vos_ssr_protect(__func__);
20138 ret = __wlan_hdd_cfg80211_testmode(wiphy, data, len);
20139 vos_ssr_unprotect(__func__);
20140
20141 return ret;
20142}
Leo Chang9056f462013-08-01 19:21:11 -070020143#endif /* CONFIG_NL80211_TESTMODE */
20144
Arun Khandavalli08bcafd2016-11-08 14:45:48 +053020145extern void hdd_set_wlan_suspend_mode(bool suspend);
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053020146static int __wlan_hdd_cfg80211_dump_survey(struct wiphy *wiphy,
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053020147 struct net_device *dev,
20148 int idx, struct survey_info *survey)
20149{
20150 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
20151 hdd_context_t *pHddCtx;
Mihir Sheted9072e02013-08-21 17:02:29 +053020152 hdd_station_ctx_t *pHddStaCtx;
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053020153 tHalHandle halHandle;
Mihir Sheted9072e02013-08-21 17:02:29 +053020154 v_U32_t channel = 0, freq = 0; /* Initialization Required */
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053020155 v_S7_t snr,rssi;
20156 int status, i, j, filled = 0;
20157
20158 ENTER();
20159
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053020160 if (NULL == pAdapter)
20161 {
20162 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
20163 "%s: HDD adapter is Null", __func__);
20164 return -ENODEV;
20165 }
20166
20167 if (NULL == wiphy)
20168 {
20169 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
20170 "%s: wiphy is Null", __func__);
20171 return -ENODEV;
20172 }
20173
20174 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
20175 status = wlan_hdd_validate_context(pHddCtx);
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053020176 if (0 != status)
20177 {
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053020178 return status;
20179 }
20180
Mihir Sheted9072e02013-08-21 17:02:29 +053020181 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
20182
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053020183 if (0 == pHddCtx->cfg_ini->fEnableSNRMonitoring ||
Mihir Sheted9072e02013-08-21 17:02:29 +053020184 0 != pAdapter->survey_idx ||
20185 eConnectionState_Associated != pHddStaCtx->conn_info.connState)
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053020186 {
20187 /* The survey dump ops when implemented completely is expected to
20188 * return a survey of all channels and the ops is called by the
20189 * kernel with incremental values of the argument 'idx' till it
20190 * returns -ENONET. But we can only support the survey for the
20191 * operating channel for now. survey_idx is used to track
20192 * that the ops is called only once and then return -ENONET for
20193 * the next iteration
20194 */
20195 pAdapter->survey_idx = 0;
20196 return -ENONET;
20197 }
20198
Mukul Sharma9d5233b2015-06-11 20:28:20 +053020199 if (VOS_TRUE == pHddStaCtx->hdd_ReassocScenario)
20200 {
20201 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
20202 "%s: Roaming in progress, hence return ", __func__);
20203 return -ENONET;
20204 }
20205
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053020206 halHandle = WLAN_HDD_GET_HAL_CTX(pAdapter);
20207
20208 wlan_hdd_get_snr(pAdapter, &snr);
20209 wlan_hdd_get_rssi(pAdapter, &rssi);
20210
Konamki, Sreelakshmi7b464be2015-07-14 12:17:01 +053020211 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
20212 TRACE_CODE_HDD_CFG80211_DUMP_SURVEY,
20213 pAdapter->sessionId, pAdapter->device_mode));
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053020214 sme_GetOperationChannel(halHandle, &channel, pAdapter->sessionId);
20215 hdd_wlan_get_freq(channel, &freq);
20216
20217
20218 for (i = 0; i < IEEE80211_NUM_BANDS; i++)
20219 {
20220 if (NULL == wiphy->bands[i])
20221 {
20222 VOS_TRACE(VOS_MODULE_ID_VOSS, VOS_TRACE_LEVEL_INFO,
20223 "%s: wiphy->bands[i] is NULL, i = %d", __func__, i);
20224 continue;
20225 }
20226
20227 for (j = 0; j < wiphy->bands[i]->n_channels; j++)
20228 {
20229 struct ieee80211_supported_band *band = wiphy->bands[i];
20230
20231 if (band->channels[j].center_freq == (v_U16_t)freq)
20232 {
20233 survey->channel = &band->channels[j];
20234 /* The Rx BDs contain SNR values in dB for the received frames
20235 * while the supplicant expects noise. So we calculate and
20236 * return the value of noise (dBm)
20237 * SNR (dB) = RSSI (dBm) - NOISE (dBm)
20238 */
20239 survey->noise = rssi - snr;
20240 survey->filled = SURVEY_INFO_NOISE_DBM;
20241 filled = 1;
20242 }
20243 }
20244 }
20245
20246 if (filled)
20247 pAdapter->survey_idx = 1;
20248 else
20249 {
20250 pAdapter->survey_idx = 0;
20251 return -ENONET;
20252 }
20253
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053020254 EXIT();
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053020255 return 0;
20256}
20257
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053020258static int wlan_hdd_cfg80211_dump_survey(struct wiphy *wiphy,
20259 struct net_device *dev,
20260 int idx, struct survey_info *survey)
20261{
20262 int ret;
20263
20264 vos_ssr_protect(__func__);
20265 ret = __wlan_hdd_cfg80211_dump_survey(wiphy, dev, idx, survey);
20266 vos_ssr_unprotect(__func__);
20267
20268 return ret;
20269}
20270
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053020271/*
Mahesh A Saptasagarbcc5b662014-06-02 21:46:23 +053020272 * FUNCTION: __wlan_hdd_cfg80211_resume_wlan
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053020273 * this is called when cfg80211 driver resume
20274 * driver updates latest sched_scan scan result(if any) to cfg80211 database
20275 */
Mahesh A Saptasagarbcc5b662014-06-02 21:46:23 +053020276int __wlan_hdd_cfg80211_resume_wlan(struct wiphy *wiphy)
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053020277{
20278 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
20279 hdd_adapter_t *pAdapter;
20280 hdd_adapter_list_node_t *pAdapterNode, *pNext;
20281 VOS_STATUS status = VOS_STATUS_SUCCESS;
20282
20283 ENTER();
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053020284
Mahesh A Saptasagar74088392015-02-05 17:22:09 +053020285 if (0 != wlan_hdd_validate_context(pHddCtx))
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053020286 {
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053020287 return 0;
20288 }
20289
Konamki, Sreelakshmi7b464be2015-07-14 12:17:01 +053020290 MTRACE(vos_trace(VOS_MODULE_ID_HDD, TRACE_CODE_HDD_CFG80211_RESUME_WLAN,
20291 NO_SESSION, pHddCtx->isWiphySuspended));
Arun Khandavalli08bcafd2016-11-08 14:45:48 +053020292
Nishank Aggarwalc11826c2016-12-15 18:54:10 +053020293 if (pHddCtx->is_ap_mode_wow_supported)
Arun Khandavalli08bcafd2016-11-08 14:45:48 +053020294 {
20295 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
20296 "%s: Resume SoftAP", __func__);
20297 hdd_set_wlan_suspend_mode(false);
20298 }
20299
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053020300 spin_lock(&pHddCtx->schedScan_lock);
20301 pHddCtx->isWiphySuspended = FALSE;
20302 if (TRUE != pHddCtx->isSchedScanUpdatePending)
20303 {
20304 spin_unlock(&pHddCtx->schedScan_lock);
20305 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
20306 "%s: Return resume is not due to PNO indication", __func__);
20307 return 0;
20308 }
20309 // Reset flag to avoid updatating cfg80211 data old results again
20310 pHddCtx->isSchedScanUpdatePending = FALSE;
20311 spin_unlock(&pHddCtx->schedScan_lock);
20312
20313 status = hdd_get_front_adapter ( pHddCtx, &pAdapterNode );
20314
20315 while ( NULL != pAdapterNode && VOS_STATUS_SUCCESS == status )
20316 {
20317 pAdapter = pAdapterNode->pAdapter;
20318 if ( (NULL != pAdapter) &&
20319 (WLAN_HDD_INFRA_STATION == pAdapter->device_mode) )
20320 {
20321 if (0 != wlan_hdd_cfg80211_update_bss(pHddCtx->wiphy, pAdapter))
Mahesh A Saptasagarb9c50402014-01-16 15:49:22 +053020322 {
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053020323 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_WARN,
20324 "%s: NO SCAN result", __func__);
Mahesh A Saptasagarb9c50402014-01-16 15:49:22 +053020325 }
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053020326 else
Mahesh A Saptasagarb9c50402014-01-16 15:49:22 +053020327 {
20328 /* Acquire wakelock to handle the case where APP's tries to
20329 * suspend immediately after updating the scan results. Whis
20330 * results in app's is in suspended state and not able to
20331 * process the connect request to AP
20332 */
Sushant Kaushik83392fa2015-05-05 17:44:40 +053020333 hdd_prevent_suspend_timeout(2000,
20334 WIFI_POWER_EVENT_WAKELOCK_RESUME_WLAN);
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053020335 cfg80211_sched_scan_results(pHddCtx->wiphy);
Mahesh A Saptasagarb9c50402014-01-16 15:49:22 +053020336 }
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053020337
20338 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
20339 "%s : cfg80211 scan result database updated", __func__);
20340
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053020341 EXIT();
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053020342 return 0;
20343
20344 }
20345 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
20346 pAdapterNode = pNext;
20347 }
20348
20349 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
20350 "%s: Failed to find Adapter", __func__);
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053020351 EXIT();
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053020352 return 0;
20353}
20354
Mahesh A Saptasagarbcc5b662014-06-02 21:46:23 +053020355int wlan_hdd_cfg80211_resume_wlan(struct wiphy *wiphy)
20356{
20357 int ret;
20358
20359 vos_ssr_protect(__func__);
20360 ret = __wlan_hdd_cfg80211_resume_wlan(wiphy);
20361 vos_ssr_unprotect(__func__);
20362
20363 return ret;
20364}
20365
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053020366/*
Mahesh A Saptasagarbcc5b662014-06-02 21:46:23 +053020367 * FUNCTION: __wlan_hdd_cfg80211_suspend_wlan
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053020368 * this is called when cfg80211 driver suspends
20369 */
Mahesh A Saptasagarbcc5b662014-06-02 21:46:23 +053020370int __wlan_hdd_cfg80211_suspend_wlan(struct wiphy *wiphy,
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053020371 struct cfg80211_wowlan *wow)
20372{
20373 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
Masti, Narayanraddic80e2bf2015-01-27 16:39:00 +053020374 int ret = 0;
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053020375
20376 ENTER();
Hanumantha Reddy Pothula7dc0e6c2015-03-06 15:11:16 +053020377
Masti, Narayanraddic80e2bf2015-01-27 16:39:00 +053020378 ret = wlan_hdd_validate_context(pHddCtx);
20379 if (0 != ret)
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053020380 {
Masti, Narayanraddic80e2bf2015-01-27 16:39:00 +053020381 return ret;
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053020382 }
20383
Nishank Aggarwalc11826c2016-12-15 18:54:10 +053020384 if (pHddCtx->is_ap_mode_wow_supported) {
Arun Khandavalli08bcafd2016-11-08 14:45:48 +053020385 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
20386 "%s: Suspend SoftAP", __func__);
20387 hdd_set_wlan_suspend_mode(true);
20388 }
20389
Masti, Narayanraddic80e2bf2015-01-27 16:39:00 +053020390
Konamki, Sreelakshmi7b464be2015-07-14 12:17:01 +053020391 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
20392 TRACE_CODE_HDD_CFG80211_SUSPEND_WLAN,
20393 NO_SESSION, pHddCtx->isWiphySuspended));
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053020394 pHddCtx->isWiphySuspended = TRUE;
20395
20396 EXIT();
20397
20398 return 0;
20399}
20400
Mahesh A Saptasagarbcc5b662014-06-02 21:46:23 +053020401int wlan_hdd_cfg80211_suspend_wlan(struct wiphy *wiphy,
20402 struct cfg80211_wowlan *wow)
20403{
20404 int ret;
20405
20406 vos_ssr_protect(__func__);
20407 ret = __wlan_hdd_cfg80211_suspend_wlan(wiphy, wow);
20408 vos_ssr_unprotect(__func__);
20409
20410 return ret;
20411}
Padma, Santhosh Kumar2ccac212015-10-20 17:27:27 +053020412
20413#ifdef FEATURE_OEM_DATA_SUPPORT
20414static void wlan_hdd_cfg80211_oem_data_rsp_ind_new(void *ctx,
Padma, Santhosh Kumarf75c37b2016-01-25 10:36:08 +053020415 void *pMsg, tANI_U32 evLen)
Padma, Santhosh Kumar2ccac212015-10-20 17:27:27 +053020416{
20417 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
20418
20419 ENTER();
20420
20421 if (wlan_hdd_validate_context(pHddCtx)) {
20422 return;
20423 }
20424 if (!pMsg)
20425 {
20426 hddLog(VOS_TRACE_LEVEL_ERROR, FL("pMsg is null"));
20427 return;
20428 }
20429
Padma, Santhosh Kumarf75c37b2016-01-25 10:36:08 +053020430 send_oem_data_rsp_msg(evLen, pMsg);
Padma, Santhosh Kumar2ccac212015-10-20 17:27:27 +053020431
20432 EXIT();
20433 return;
20434
20435}
20436
20437void wlan_hdd_cfg80211_oemdata_callback(void *ctx, const tANI_U16 evType,
Padma, Santhosh Kumarf75c37b2016-01-25 10:36:08 +053020438 void *pMsg, tANI_U32 evLen)
Padma, Santhosh Kumar2ccac212015-10-20 17:27:27 +053020439{
20440 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
20441
20442 ENTER();
20443
20444 if (wlan_hdd_validate_context(pHddCtx)) {
20445 return;
20446 }
20447
Padma, Santhosh Kumarf75c37b2016-01-25 10:36:08 +053020448 hddLog(VOS_TRACE_LEVEL_INFO, FL("Rcvd Event (%d) evLen %d"), evType, evLen);
Padma, Santhosh Kumar2ccac212015-10-20 17:27:27 +053020449
20450 switch(evType) {
20451 case SIR_HAL_START_OEM_DATA_RSP_IND_NEW:
Padma, Santhosh Kumarf75c37b2016-01-25 10:36:08 +053020452 wlan_hdd_cfg80211_oem_data_rsp_ind_new(ctx, pMsg, evLen);
Padma, Santhosh Kumar2ccac212015-10-20 17:27:27 +053020453 break;
20454 default:
20455 hddLog(VOS_TRACE_LEVEL_ERROR, FL("invalid event type %d "), evType);
20456 break;
20457 }
20458 EXIT();
20459}
20460#endif
20461
Kanchanapally, Vidyullatha740d64e2016-05-03 15:25:54 +053020462#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,5,0)) || \
20463 defined(CFG80211_ABORT_SCAN)
Kanchanapally, Vidyullathac4735162016-02-09 17:49:39 +053020464/**
20465 * __wlan_hdd_cfg80211_abort_scan() - cfg80211 abort scan api
20466 * @wiphy: Pointer to wiphy
20467 * @wdev: Pointer to wireless device structure
20468 *
20469 * This function is used to abort an ongoing scan
20470 *
20471 * Return: None
20472 */
20473static void __wlan_hdd_cfg80211_abort_scan(struct wiphy *wiphy,
20474 struct wireless_dev *wdev)
20475{
20476 struct net_device *dev = wdev->netdev;
20477 hdd_adapter_t *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
20478 hdd_context_t *hdd_ctx = wiphy_priv(wiphy);
20479 int ret;
20480
20481 ENTER();
20482
20483 if (NULL == adapter) {
20484 hddLog(VOS_TRACE_LEVEL_FATAL, FL("HDD adapter is NULL"));
20485 return;
20486 }
20487
20488 ret = wlan_hdd_validate_context(hdd_ctx);
20489 if (0 != ret)
20490 return;
20491
20492 wlan_hdd_scan_abort(adapter);
20493
20494 return;
20495}
20496
20497/**
20498 * wlan_hdd_cfg80211_abort_scan - cfg80211 abort scan api
20499 * @wiphy: Pointer to wiphy
20500 * @wdev: Pointer to wireless device structure
20501 *
20502 * Return: None
20503 */
20504void wlan_hdd_cfg80211_abort_scan(struct wiphy *wiphy,
20505 struct wireless_dev *wdev)
20506{
20507 vos_ssr_protect(__func__);
20508 __wlan_hdd_cfg80211_abort_scan(wiphy, wdev);
20509 vos_ssr_unprotect(__func__);
20510
20511 return;
20512}
Kanchanapally, Vidyullatha740d64e2016-05-03 15:25:54 +053020513#endif
Kanchanapally, Vidyullathac4735162016-02-09 17:49:39 +053020514
Jeff Johnson295189b2012-06-20 16:38:30 -070020515/* cfg80211_ops */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053020516static struct cfg80211_ops wlan_hdd_cfg80211_ops =
Jeff Johnson295189b2012-06-20 16:38:30 -070020517{
20518 .add_virtual_intf = wlan_hdd_add_virtual_intf,
20519 .del_virtual_intf = wlan_hdd_del_virtual_intf,
20520 .change_virtual_intf = wlan_hdd_cfg80211_change_iface,
20521 .change_station = wlan_hdd_change_station,
20522#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
20523 .add_beacon = wlan_hdd_cfg80211_add_beacon,
20524 .del_beacon = wlan_hdd_cfg80211_del_beacon,
20525 .set_beacon = wlan_hdd_cfg80211_set_beacon,
Jeff Johnson04dd8a82012-06-29 20:41:40 -070020526#else
20527 .start_ap = wlan_hdd_cfg80211_start_ap,
20528 .change_beacon = wlan_hdd_cfg80211_change_beacon,
20529 .stop_ap = wlan_hdd_cfg80211_stop_ap,
Jeff Johnson295189b2012-06-20 16:38:30 -070020530#endif
20531 .change_bss = wlan_hdd_cfg80211_change_bss,
20532 .add_key = wlan_hdd_cfg80211_add_key,
20533 .get_key = wlan_hdd_cfg80211_get_key,
20534 .del_key = wlan_hdd_cfg80211_del_key,
20535 .set_default_key = wlan_hdd_cfg80211_set_default_key,
Jeff Johnson3bbe4bf2013-01-18 17:05:29 -080020536#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,6,0))
Jeff Johnson295189b2012-06-20 16:38:30 -070020537 .set_channel = wlan_hdd_cfg80211_set_channel,
Jeff Johnson3bbe4bf2013-01-18 17:05:29 -080020538#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070020539 .scan = wlan_hdd_cfg80211_scan,
20540 .connect = wlan_hdd_cfg80211_connect,
20541 .disconnect = wlan_hdd_cfg80211_disconnect,
20542 .join_ibss = wlan_hdd_cfg80211_join_ibss,
20543 .leave_ibss = wlan_hdd_cfg80211_leave_ibss,
20544 .set_wiphy_params = wlan_hdd_cfg80211_set_wiphy_params,
20545 .set_tx_power = wlan_hdd_cfg80211_set_txpower,
20546 .get_tx_power = wlan_hdd_cfg80211_get_txpower,
Jeff Johnson295189b2012-06-20 16:38:30 -070020547 .remain_on_channel = wlan_hdd_cfg80211_remain_on_channel,
20548 .cancel_remain_on_channel = wlan_hdd_cfg80211_cancel_remain_on_channel,
DARAM SUDHA39eede62014-02-12 11:16:40 +053020549 .mgmt_tx = wlan_hdd_mgmt_tx,
Jeff Johnson295189b2012-06-20 16:38:30 -070020550#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
20551 .mgmt_tx_cancel_wait = wlan_hdd_cfg80211_mgmt_tx_cancel_wait,
20552 .set_default_mgmt_key = wlan_hdd_set_default_mgmt_key,
20553 .set_txq_params = wlan_hdd_set_txq_params,
20554#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070020555 .get_station = wlan_hdd_cfg80211_get_station,
20556 .set_power_mgmt = wlan_hdd_cfg80211_set_power_mgmt,
20557 .del_station = wlan_hdd_cfg80211_del_station,
Jeff Johnson04dd8a82012-06-29 20:41:40 -070020558 .add_station = wlan_hdd_cfg80211_add_station,
20559#ifdef FEATURE_WLAN_LFR
20560 .set_pmksa = wlan_hdd_cfg80211_set_pmksa,
20561 .del_pmksa = wlan_hdd_cfg80211_del_pmksa,
20562 .flush_pmksa = wlan_hdd_cfg80211_flush_pmksa,
20563#endif
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070020564#if defined(WLAN_FEATURE_VOWIFI_11R) && defined(KERNEL_SUPPORT_11R_CFG80211)
20565 .update_ft_ies = wlan_hdd_cfg80211_update_ft_ies,
20566#endif
Mohit Khanna698ba2a2012-12-04 15:08:18 -080020567#ifdef FEATURE_WLAN_TDLS
20568 .tdls_mgmt = wlan_hdd_cfg80211_tdls_mgmt,
20569 .tdls_oper = wlan_hdd_cfg80211_tdls_oper,
20570#endif
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053020571#ifdef WLAN_FEATURE_GTK_OFFLOAD
20572 .set_rekey_data = wlan_hdd_cfg80211_set_rekey_data,
20573#endif /* WLAN_FEATURE_GTK_OFFLOAD */
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053020574#ifdef FEATURE_WLAN_SCAN_PNO
20575 .sched_scan_start = wlan_hdd_cfg80211_sched_scan_start,
20576 .sched_scan_stop = wlan_hdd_cfg80211_sched_scan_stop,
20577#endif /*FEATURE_WLAN_SCAN_PNO */
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053020578 .resume = wlan_hdd_cfg80211_resume_wlan,
20579 .suspend = wlan_hdd_cfg80211_suspend_wlan,
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +053020580 .set_mac_acl = wlan_hdd_cfg80211_set_mac_acl,
Leo Chang9056f462013-08-01 19:21:11 -070020581#ifdef WLAN_NL80211_TESTMODE
20582 .testmode_cmd = wlan_hdd_cfg80211_testmode,
20583#endif
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053020584 .dump_survey = wlan_hdd_cfg80211_dump_survey,
Kanchanapally, Vidyullatha740d64e2016-05-03 15:25:54 +053020585#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,5,0)) || \
20586 defined(CFG80211_ABORT_SCAN)
Kanchanapally, Vidyullathac4735162016-02-09 17:49:39 +053020587 .abort_scan = wlan_hdd_cfg80211_abort_scan,
Kanchanapally, Vidyullatha740d64e2016-05-03 15:25:54 +053020588#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070020589};
20590