blob: 5a734617a5abc5a4bff450c96b3065a2d7b7c589 [file] [log] [blame]
Jeff Johnson295189b2012-06-20 16:38:30 -07001/*
Kiet Lam842dad02014-02-18 18:44:02 -08002 * Copyright (c) 2012-2014 The Linux Foundation. All rights reserved.
3 *
4 * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
5 *
6 *
7 * Permission to use, copy, modify, and/or distribute this software for
8 * any purpose with or without fee is hereby granted, provided that the
9 * above copyright notice and this permission notice appear in all
10 * copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
13 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
14 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
15 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
16 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
17 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
18 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19 * PERFORMANCE OF THIS SOFTWARE.
20 */
21
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.
Kiet Lamaa8e15a2014-02-11 23:30:06 -080026 */
Kiet Lam842dad02014-02-18 18:44:02 -080027
28
Kiet Lama7f454d2014-07-24 12:04:06 -070029
30
Jeff Johnson295189b2012-06-20 16:38:30 -070031/**========================================================================
32
33 \file wlan_hdd_cfg80211.c
34
35 \brief WLAN Host Device Driver implementation
36
Jeff Johnson295189b2012-06-20 16:38:30 -070037 ========================================================================*/
38
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070039/**=========================================================================
Jeff Johnson295189b2012-06-20 16:38:30 -070040
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070041 EDIT HISTORY FOR FILE
Jeff Johnson295189b2012-06-20 16:38:30 -070042
43
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070044 This section contains comments describing changes made to the module.
45 Notice that changes are listed in reverse chronological order.
Jeff Johnson295189b2012-06-20 16:38:30 -070046
47
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070048 $Header:$ $DateTime: $ $Author: $
Jeff Johnson295189b2012-06-20 16:38:30 -070049
50
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070051 when who what, where, why
Jeff Johnson295189b2012-06-20 16:38:30 -070052 -------- --- --------------------------------------------------------
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070053 21/12/09 Ashwani Created module.
Jeff Johnson295189b2012-06-20 16:38:30 -070054
55 07/06/10 Kumar Deepak Implemented cfg80211 callbacks for ANDROID
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070056 Ganesh K
Jeff Johnson295189b2012-06-20 16:38:30 -070057 ==========================================================================*/
58
Jeff Johnson295189b2012-06-20 16:38:30 -070059
60#include <linux/version.h>
61#include <linux/module.h>
62#include <linux/kernel.h>
63#include <linux/init.h>
64#include <linux/wireless.h>
65#include <wlan_hdd_includes.h>
66#include <net/arp.h>
67#include <net/cfg80211.h>
68#include <linux/wireless.h>
69#include <wlan_hdd_wowl.h>
70#include <aniGlobal.h>
71#include "ccmApi.h"
72#include "sirParams.h"
73#include "dot11f.h"
74#include "wlan_hdd_assoc.h"
75#include "wlan_hdd_wext.h"
76#include "sme_Api.h"
77#include "wlan_hdd_p2p.h"
78#include "wlan_hdd_cfg80211.h"
79#include "wlan_hdd_hostapd.h"
80#include "sapInternal.h"
81#include "wlan_hdd_softap_tx_rx.h"
82#include "wlan_hdd_main.h"
Madan Mohan Koyyalamudid5acbf52012-11-28 01:45:08 +053083#include "wlan_hdd_assoc.h"
Gopichand Nakkala20c4c042013-04-19 22:08:55 +053084#include "wlan_hdd_power.h"
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053085#include "wlan_hdd_trace.h"
86#include "vos_types.h"
87#include "vos_trace.h"
Jeff Johnson295189b2012-06-20 16:38:30 -070088#ifdef WLAN_BTAMP_FEATURE
89#include "bap_hdd_misc.h"
90#endif
91#include <qc_sap_ioctl.h>
Mohit Khanna698ba2a2012-12-04 15:08:18 -080092#ifdef FEATURE_WLAN_TDLS
93#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"
Mohit Khanna698ba2a2012-12-04 15:08:18 -080096#endif
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +053097#include "wlan_nv.h"
Leo Chang6fe1f922013-06-07 19:21:24 -070098#include "wlan_hdd_dev_pwr.h"
Jeff Johnson295189b2012-06-20 16:38:30 -070099
100#define g_mode_rates_size (12)
101#define a_mode_rates_size (8)
102#define FREQ_BASE_80211G (2407)
103#define FREQ_BAND_DIFF_80211G (5)
Jeff Johnson04dd8a82012-06-29 20:41:40 -0700104#define MAX_SCAN_SSID 9
Kiet Lamac06e2c2013-10-23 16:25:07 +0530105#define MAX_PENDING_LOG 5
Jeff Johnson295189b2012-06-20 16:38:30 -0700106#define GET_IE_LEN_IN_BSS_DESC(lenInBss) ( lenInBss + sizeof(lenInBss) - \
krunal soni2a6a9062014-02-11 14:14:23 -0800107 ((uintptr_t)OFFSET_OF( tSirBssDescription, ieFields)))
Jeff Johnson295189b2012-06-20 16:38:30 -0700108
109#define HDD2GHZCHAN(freq, chan, flag) { \
110 .band = IEEE80211_BAND_2GHZ, \
111 .center_freq = (freq), \
112 .hw_value = (chan),\
113 .flags = (flag), \
114 .max_antenna_gain = 0 ,\
115 .max_power = 30, \
116}
117
118#define HDD5GHZCHAN(freq, chan, flag) { \
119 .band = IEEE80211_BAND_5GHZ, \
120 .center_freq = (freq), \
121 .hw_value = (chan),\
122 .flags = (flag), \
123 .max_antenna_gain = 0 ,\
124 .max_power = 30, \
125}
126
127#define HDD_G_MODE_RATETAB(rate, rate_id, flag)\
128{\
129 .bitrate = rate, \
130 .hw_value = rate_id, \
131 .flags = flag, \
132}
133
Lee Hoonkic1262f22013-01-24 21:59:00 -0800134#ifndef WLAN_FEATURE_TDLS_DEBUG
135#define TDLS_LOG_LEVEL VOS_TRACE_LEVEL_INFO
136#else
137#define TDLS_LOG_LEVEL VOS_TRACE_LEVEL_ERROR
138#endif
139
Gopichand Nakkala356fb102013-03-06 12:34:04 +0530140#ifdef WLAN_FEATURE_VOWIFI_11R
141#define WLAN_AKM_SUITE_FT_8021X 0x000FAC03
142#define WLAN_AKM_SUITE_FT_PSK 0x000FAC04
143#endif
144
Naresh Jayaram3180aa42014-02-12 21:47:26 +0530145#define HDD_CHANNEL_14 14
146
Sunil Duttc69bccb2014-05-26 21:30:20 +0530147#ifdef WLAN_FEATURE_LINK_LAYER_STATS
148/*
149 * Used to allocate the size of 4096 for the link layer stats.
150 * The size of 4096 is considered assuming that all data per
151 * respective event fit with in the limit.Please take a call
152 * on the limit based on the data requirements on link layer
153 * statistics.
154 */
155#define LL_STATS_EVENT_BUF_SIZE 4096
156#endif
Dino Mycle6fb96c12014-06-10 11:52:40 +0530157#ifdef WLAN_FEATURE_EXTSCAN
158/*
159 * Used to allocate the size of 4096 for the EXTScan NL data.
160 * The size of 4096 is considered assuming that all data per
161 * respective event fit with in the limit.Please take a call
162 * on the limit based on the data requirements.
163 */
164
165#define EXTSCAN_EVENT_BUF_SIZE 4096
166#define EXTSCAN_MAX_CACHED_RESULTS_PER_IND 32
167#endif
Sunil Duttc69bccb2014-05-26 21:30:20 +0530168
Atul Mittal115287b2014-07-08 13:26:33 +0530169/*EXT TDLS*/
170/*
171 * Used to allocate the size of 4096 for the TDLS.
172 * The size of 4096 is considered assuming that all data per
173 * respective event fit with in the limit.Please take a call
174 * on the limit based on the data requirements on link layer
175 * statistics.
176 */
177#define EXTTDLS_EVENT_BUF_SIZE 4096
178
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530179static const u32 hdd_cipher_suites[] =
Jeff Johnson295189b2012-06-20 16:38:30 -0700180{
181 WLAN_CIPHER_SUITE_WEP40,
182 WLAN_CIPHER_SUITE_WEP104,
183 WLAN_CIPHER_SUITE_TKIP,
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -0800184#ifdef FEATURE_WLAN_ESE
Jeff Johnson295189b2012-06-20 16:38:30 -0700185#define WLAN_CIPHER_SUITE_KRK 0x004096ff /* use for KRK */
186 WLAN_CIPHER_SUITE_KRK,
187 WLAN_CIPHER_SUITE_CCMP,
188#else
189 WLAN_CIPHER_SUITE_CCMP,
190#endif
191#ifdef FEATURE_WLAN_WAPI
192 WLAN_CIPHER_SUITE_SMS4,
193#endif
Chet Lanctot186b5732013-03-18 10:26:30 -0700194#ifdef WLAN_FEATURE_11W
195 WLAN_CIPHER_SUITE_AES_CMAC,
196#endif
Jeff Johnson295189b2012-06-20 16:38:30 -0700197};
198
199static inline int is_broadcast_ether_addr(const u8 *addr)
200{
201 return ((addr[0] == 0xff) && (addr[1] == 0xff) && (addr[2] == 0xff) &&
202 (addr[3] == 0xff) && (addr[4] == 0xff) && (addr[5] == 0xff));
203}
204
205static struct ieee80211_channel hdd_channels_2_4_GHZ[] =
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530206{
Jeff Johnson295189b2012-06-20 16:38:30 -0700207 HDD2GHZCHAN(2412, 1, 0) ,
208 HDD2GHZCHAN(2417, 2, 0) ,
209 HDD2GHZCHAN(2422, 3, 0) ,
210 HDD2GHZCHAN(2427, 4, 0) ,
211 HDD2GHZCHAN(2432, 5, 0) ,
212 HDD2GHZCHAN(2437, 6, 0) ,
213 HDD2GHZCHAN(2442, 7, 0) ,
214 HDD2GHZCHAN(2447, 8, 0) ,
215 HDD2GHZCHAN(2452, 9, 0) ,
216 HDD2GHZCHAN(2457, 10, 0) ,
217 HDD2GHZCHAN(2462, 11, 0) ,
218 HDD2GHZCHAN(2467, 12, 0) ,
219 HDD2GHZCHAN(2472, 13, 0) ,
220 HDD2GHZCHAN(2484, 14, 0) ,
221};
222
Jeff Johnson295189b2012-06-20 16:38:30 -0700223static struct ieee80211_channel hdd_social_channels_2_4_GHZ[] =
224{
225 HDD2GHZCHAN(2412, 1, 0) ,
226 HDD2GHZCHAN(2437, 6, 0) ,
227 HDD2GHZCHAN(2462, 11, 0) ,
228};
Jeff Johnson295189b2012-06-20 16:38:30 -0700229
230static struct ieee80211_channel hdd_channels_5_GHZ[] =
231{
Madan Mohan Koyyalamudic3a240c2012-09-28 15:34:08 -0700232 HDD5GHZCHAN(4920, 240, 0) ,
233 HDD5GHZCHAN(4940, 244, 0) ,
234 HDD5GHZCHAN(4960, 248, 0) ,
235 HDD5GHZCHAN(4980, 252, 0) ,
236 HDD5GHZCHAN(5040, 208, 0) ,
237 HDD5GHZCHAN(5060, 212, 0) ,
238 HDD5GHZCHAN(5080, 216, 0) ,
Jeff Johnson295189b2012-06-20 16:38:30 -0700239 HDD5GHZCHAN(5180, 36, 0) ,
240 HDD5GHZCHAN(5200, 40, 0) ,
241 HDD5GHZCHAN(5220, 44, 0) ,
242 HDD5GHZCHAN(5240, 48, 0) ,
243 HDD5GHZCHAN(5260, 52, 0) ,
244 HDD5GHZCHAN(5280, 56, 0) ,
245 HDD5GHZCHAN(5300, 60, 0) ,
246 HDD5GHZCHAN(5320, 64, 0) ,
247 HDD5GHZCHAN(5500,100, 0) ,
248 HDD5GHZCHAN(5520,104, 0) ,
249 HDD5GHZCHAN(5540,108, 0) ,
250 HDD5GHZCHAN(5560,112, 0) ,
251 HDD5GHZCHAN(5580,116, 0) ,
252 HDD5GHZCHAN(5600,120, 0) ,
253 HDD5GHZCHAN(5620,124, 0) ,
254 HDD5GHZCHAN(5640,128, 0) ,
255 HDD5GHZCHAN(5660,132, 0) ,
256 HDD5GHZCHAN(5680,136, 0) ,
257 HDD5GHZCHAN(5700,140, 0) ,
Leo Chang80de3c22013-11-26 10:52:12 -0800258#ifdef FEATURE_WLAN_CH144
259 HDD5GHZCHAN(5720,144, 0) ,
260#endif /* FEATURE_WLAN_CH144 */
Jeff Johnson295189b2012-06-20 16:38:30 -0700261 HDD5GHZCHAN(5745,149, 0) ,
262 HDD5GHZCHAN(5765,153, 0) ,
263 HDD5GHZCHAN(5785,157, 0) ,
264 HDD5GHZCHAN(5805,161, 0) ,
265 HDD5GHZCHAN(5825,165, 0) ,
266};
267
268static struct ieee80211_rate g_mode_rates[] =
269{
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530270 HDD_G_MODE_RATETAB(10, 0x1, 0),
271 HDD_G_MODE_RATETAB(20, 0x2, 0),
272 HDD_G_MODE_RATETAB(55, 0x4, 0),
273 HDD_G_MODE_RATETAB(110, 0x8, 0),
274 HDD_G_MODE_RATETAB(60, 0x10, 0),
275 HDD_G_MODE_RATETAB(90, 0x20, 0),
276 HDD_G_MODE_RATETAB(120, 0x40, 0),
277 HDD_G_MODE_RATETAB(180, 0x80, 0),
278 HDD_G_MODE_RATETAB(240, 0x100, 0),
279 HDD_G_MODE_RATETAB(360, 0x200, 0),
280 HDD_G_MODE_RATETAB(480, 0x400, 0),
Jeff Johnson295189b2012-06-20 16:38:30 -0700281 HDD_G_MODE_RATETAB(540, 0x800, 0),
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530282};
Jeff Johnson295189b2012-06-20 16:38:30 -0700283
284static struct ieee80211_rate a_mode_rates[] =
285{
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530286 HDD_G_MODE_RATETAB(60, 0x10, 0),
287 HDD_G_MODE_RATETAB(90, 0x20, 0),
288 HDD_G_MODE_RATETAB(120, 0x40, 0),
289 HDD_G_MODE_RATETAB(180, 0x80, 0),
290 HDD_G_MODE_RATETAB(240, 0x100, 0),
291 HDD_G_MODE_RATETAB(360, 0x200, 0),
292 HDD_G_MODE_RATETAB(480, 0x400, 0),
Jeff Johnson295189b2012-06-20 16:38:30 -0700293 HDD_G_MODE_RATETAB(540, 0x800, 0),
294};
295
296static struct ieee80211_supported_band wlan_hdd_band_2_4_GHZ =
297{
298 .channels = hdd_channels_2_4_GHZ,
299 .n_channels = ARRAY_SIZE(hdd_channels_2_4_GHZ),
300 .band = IEEE80211_BAND_2GHZ,
301 .bitrates = g_mode_rates,
302 .n_bitrates = g_mode_rates_size,
303 .ht_cap.ht_supported = 1,
304 .ht_cap.cap = IEEE80211_HT_CAP_SGI_20
305 | IEEE80211_HT_CAP_GRN_FLD
306 | IEEE80211_HT_CAP_DSSSCCK40
307 | IEEE80211_HT_CAP_LSIG_TXOP_PROT,
308 .ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K,
309 .ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_16,
310 .ht_cap.mcs.rx_mask = { 0xff, 0, 0, 0, 0, 0, 0, 0, 0, 0, },
311 .ht_cap.mcs.rx_highest = cpu_to_le16( 72 ),
312 .ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED,
313};
314
Jeff Johnson295189b2012-06-20 16:38:30 -0700315static struct ieee80211_supported_band wlan_hdd_band_p2p_2_4_GHZ =
316{
317 .channels = hdd_social_channels_2_4_GHZ,
318 .n_channels = ARRAY_SIZE(hdd_social_channels_2_4_GHZ),
319 .band = IEEE80211_BAND_2GHZ,
320 .bitrates = g_mode_rates,
321 .n_bitrates = g_mode_rates_size,
322 .ht_cap.ht_supported = 1,
323 .ht_cap.cap = IEEE80211_HT_CAP_SGI_20
324 | IEEE80211_HT_CAP_GRN_FLD
325 | IEEE80211_HT_CAP_DSSSCCK40
326 | IEEE80211_HT_CAP_LSIG_TXOP_PROT,
327 .ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K,
328 .ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_16,
329 .ht_cap.mcs.rx_mask = { 0xff, 0, 0, 0, 0, 0, 0, 0, 0, 0, },
330 .ht_cap.mcs.rx_highest = cpu_to_le16( 72 ),
331 .ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED,
332};
Jeff Johnson295189b2012-06-20 16:38:30 -0700333
334static struct ieee80211_supported_band wlan_hdd_band_5_GHZ =
335{
336 .channels = hdd_channels_5_GHZ,
337 .n_channels = ARRAY_SIZE(hdd_channels_5_GHZ),
338 .band = IEEE80211_BAND_5GHZ,
339 .bitrates = a_mode_rates,
340 .n_bitrates = a_mode_rates_size,
341 .ht_cap.ht_supported = 1,
342 .ht_cap.cap = IEEE80211_HT_CAP_SGI_20
343 | IEEE80211_HT_CAP_GRN_FLD
344 | IEEE80211_HT_CAP_DSSSCCK40
345 | IEEE80211_HT_CAP_LSIG_TXOP_PROT
346 | IEEE80211_HT_CAP_SGI_40
347 | IEEE80211_HT_CAP_SUP_WIDTH_20_40,
348 .ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K,
349 .ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_16,
350 .ht_cap.mcs.rx_mask = { 0xff, 0, 0, 0, 0, 0, 0, 0, 0, 0, },
351 .ht_cap.mcs.rx_highest = cpu_to_le16( 72 ),
352 .ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED,
353};
354
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530355/* This structure contain information what kind of frame are expected in
Jeff Johnson295189b2012-06-20 16:38:30 -0700356 TX/RX direction for each kind of interface */
357static const struct ieee80211_txrx_stypes
358wlan_hdd_txrx_stypes[NUM_NL80211_IFTYPES] = {
359 [NL80211_IFTYPE_STATION] = {
360 .tx = 0xffff,
361 .rx = BIT(SIR_MAC_MGMT_ACTION) |
362 BIT(SIR_MAC_MGMT_PROBE_REQ),
363 },
364 [NL80211_IFTYPE_AP] = {
365 .tx = 0xffff,
366 .rx = BIT(SIR_MAC_MGMT_ASSOC_REQ) |
367 BIT(SIR_MAC_MGMT_REASSOC_REQ) |
368 BIT(SIR_MAC_MGMT_PROBE_REQ) |
369 BIT(SIR_MAC_MGMT_DISASSOC) |
370 BIT(SIR_MAC_MGMT_AUTH) |
371 BIT(SIR_MAC_MGMT_DEAUTH) |
372 BIT(SIR_MAC_MGMT_ACTION),
373 },
Jeff Johnsonbc006202013-04-29 14:05:30 -0700374 [NL80211_IFTYPE_ADHOC] = {
375 .tx = 0xffff,
376 .rx = BIT(SIR_MAC_MGMT_ASSOC_REQ) |
377 BIT(SIR_MAC_MGMT_REASSOC_REQ) |
378 BIT(SIR_MAC_MGMT_PROBE_REQ) |
379 BIT(SIR_MAC_MGMT_DISASSOC) |
380 BIT(SIR_MAC_MGMT_AUTH) |
381 BIT(SIR_MAC_MGMT_DEAUTH) |
382 BIT(SIR_MAC_MGMT_ACTION),
383 },
Jeff Johnson295189b2012-06-20 16:38:30 -0700384 [NL80211_IFTYPE_P2P_CLIENT] = {
385 .tx = 0xffff,
386 .rx = BIT(SIR_MAC_MGMT_ACTION) |
387 BIT(SIR_MAC_MGMT_PROBE_REQ),
388 },
389 [NL80211_IFTYPE_P2P_GO] = {
390 /* This is also same as for SoftAP */
391 .tx = 0xffff,
392 .rx = BIT(SIR_MAC_MGMT_ASSOC_REQ) |
393 BIT(SIR_MAC_MGMT_REASSOC_REQ) |
394 BIT(SIR_MAC_MGMT_PROBE_REQ) |
395 BIT(SIR_MAC_MGMT_DISASSOC) |
396 BIT(SIR_MAC_MGMT_AUTH) |
397 BIT(SIR_MAC_MGMT_DEAUTH) |
398 BIT(SIR_MAC_MGMT_ACTION),
399 },
Jeff Johnson295189b2012-06-20 16:38:30 -0700400};
401
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800402#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800403static const struct ieee80211_iface_limit
404wlan_hdd_iface_limit[] = {
405 {
Sunil Ravia72c3992013-01-31 06:12:22 -0800406 /* max = 3 ; Our driver create two interfaces during driver init
407 * wlan0 and p2p0 interfaces. p2p0 is considered as station
408 * interface until a group is formed. In JB architecture, once the
409 * group is formed, interface type of p2p0 is changed to P2P GO or
410 * Client.
411 * When supplicant remove the group, it first issue a set interface
412 * cmd to change the mode back to Station. In JB this works fine as
413 * we advertize two station type interface during driver init.
414 * Some vendors create separate interface for P2P GO/Client,
415 * after group formation(Third one). But while group remove
416 * supplicant first tries to change the mode(3rd interface) to STATION
417 * But as we advertized only two sta type interfaces nl80211 was
418 * returning error for the third one which was leading to failure in
419 * delete interface. Ideally while removing the group, supplicant
420 * should not try to change the 3rd interface mode to Station type.
421 * Till we get a fix in wpa_supplicant, we advertize max STA
422 * interface type to 3
423 */
424 .max = 3,
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800425 .types = BIT(NL80211_IFTYPE_STATION),
426 },
427 {
428 .max = 1,
Jeff Johnsonbc006202013-04-29 14:05:30 -0700429 .types = BIT(NL80211_IFTYPE_ADHOC) | BIT(NL80211_IFTYPE_AP),
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800430 },
431 {
432 .max = 1,
433 .types = BIT(NL80211_IFTYPE_P2P_GO) |
434 BIT(NL80211_IFTYPE_P2P_CLIENT),
435 },
436};
437
438/* By default, only single channel concurrency is allowed */
439static struct ieee80211_iface_combination
440wlan_hdd_iface_combination = {
441 .limits = wlan_hdd_iface_limit,
442 .num_different_channels = 1,
Sunil Ravia72c3992013-01-31 06:12:22 -0800443 /*
444 * max = WLAN_MAX_INTERFACES ; JellyBean architecture creates wlan0
445 * and p2p0 interfaces during driver init
446 * Some vendors create separate interface for P2P operations.
447 * wlan0: STA interface
448 * p2p0: P2P Device interface, action frames goes
449 * through this interface.
450 * p2p-xx: P2P interface, After GO negotiation this interface is
451 * created for p2p operations(GO/CLIENT interface).
452 */
453 .max_interfaces = WLAN_MAX_INTERFACES,
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800454 .n_limits = ARRAY_SIZE(wlan_hdd_iface_limit),
455 .beacon_int_infra_match = false,
456};
457#endif
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800458
Jeff Johnson295189b2012-06-20 16:38:30 -0700459static struct cfg80211_ops wlan_hdd_cfg80211_ops;
460
461/* Data rate 100KBPS based on IE Index */
462struct index_data_rate_type
463{
464 v_U8_t beacon_rate_index;
465 v_U16_t supported_rate[4];
466};
467
468/* 11B, 11G Rate table include Basic rate and Extended rate
469 The IDX field is the rate index
470 The HI field is the rate when RSSI is strong or being ignored
471 (in this case we report actual rate)
472 The MID field is the rate when RSSI is moderate
473 (in this case we cap 11b rates at 5.5 and 11g rates at 24)
474 The LO field is the rate when RSSI is low
475 (in this case we don't report rates, actual current rate used)
476 */
477static const struct
478{
479 v_U8_t beacon_rate_index;
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -0700480 v_U16_t supported_rate[4];
Jeff Johnson295189b2012-06-20 16:38:30 -0700481} supported_data_rate[] =
482{
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -0700483/* IDX HI HM LM LO (RSSI-based index */
484 {2, { 10, 10, 10, 0}},
485 {4, { 20, 20, 10, 0}},
486 {11, { 55, 20, 10, 0}},
487 {12, { 60, 55, 20, 0}},
488 {18, { 90, 55, 20, 0}},
489 {22, {110, 55, 20, 0}},
490 {24, {120, 90, 60, 0}},
491 {36, {180, 120, 60, 0}},
492 {44, {220, 180, 60, 0}},
493 {48, {240, 180, 90, 0}},
494 {66, {330, 180, 90, 0}},
495 {72, {360, 240, 90, 0}},
496 {96, {480, 240, 120, 0}},
497 {108, {540, 240, 120, 0}}
Jeff Johnson295189b2012-06-20 16:38:30 -0700498};
499
500/* MCS Based rate table */
501static struct index_data_rate_type supported_mcs_rate[] =
502{
503/* MCS L20 L40 S20 S40 */
504 {0, {65, 135, 72, 150}},
505 {1, {130, 270, 144, 300}},
506 {2, {195, 405, 217, 450}},
507 {3, {260, 540, 289, 600}},
508 {4, {390, 810, 433, 900}},
509 {5, {520, 1080, 578, 1200}},
510 {6, {585, 1215, 650, 1350}},
511 {7, {650, 1350, 722, 1500}}
512};
513
Leo Chang6f8870f2013-03-26 18:11:36 -0700514#ifdef WLAN_FEATURE_11AC
515
Gopichand Nakkala4c705372013-04-24 13:20:33 +0530516#define DATA_RATE_11AC_MCS_MASK 0x03
Leo Chang6f8870f2013-03-26 18:11:36 -0700517
518struct index_vht_data_rate_type
519{
520 v_U8_t beacon_rate_index;
Gopichand Nakkala4c705372013-04-24 13:20:33 +0530521 v_U16_t supported_VHT80_rate[2];
522 v_U16_t supported_VHT40_rate[2];
523 v_U16_t supported_VHT20_rate[2];
Leo Chang6f8870f2013-03-26 18:11:36 -0700524};
525
526typedef enum
527{
528 DATA_RATE_11AC_MAX_MCS_7,
529 DATA_RATE_11AC_MAX_MCS_8,
530 DATA_RATE_11AC_MAX_MCS_9,
531 DATA_RATE_11AC_MAX_MCS_NA
532} eDataRate11ACMaxMcs;
533
Mahesh A Saptasagar7bd6ad42014-07-21 18:56:33 +0530534/* SSID broadcast type */
535typedef enum eSSIDBcastType
536{
537 eBCAST_UNKNOWN = 0,
538 eBCAST_NORMAL = 1,
539 eBCAST_HIDDEN = 2,
540} tSSIDBcastType;
541
Leo Chang6f8870f2013-03-26 18:11:36 -0700542/* MCS Based VHT rate table */
543static struct index_vht_data_rate_type supported_vht_mcs_rate[] =
544{
Gopichand Nakkala4c705372013-04-24 13:20:33 +0530545/* MCS L80 S80 L40 S40 L20 S40*/
546 {0, {293, 325}, {135, 150}, {65, 72}},
547 {1, {585, 650}, {270, 300}, {130, 144}},
548 {2, {878, 975}, {405, 450}, {195, 217}},
549 {3, {1170, 1300}, {540, 600}, {260, 289}},
550 {4, {1755, 1950}, {810, 900}, {390, 433}},
551 {5, {2340, 2600}, {1080, 1200}, {520, 578}},
552 {6, {2633, 2925}, {1215, 1350}, {585, 650}},
553 {7, {2925, 3250}, {1350, 1500}, {650, 722}},
554 {8, {3510, 3900}, {1620, 1800}, {780, 867}},
555 {9, {3900, 4333}, {1800, 2000}, {780, 867}}
Leo Chang6f8870f2013-03-26 18:11:36 -0700556};
557#endif /* WLAN_FEATURE_11AC */
558
c_hpothu79aab322014-07-14 21:11:01 +0530559/*array index points to MCS and array value points respective rssi*/
560static int rssiMcsTbl[][10] =
561{
562/*MCS 0 1 2 3 4 5 6 7 8 9*/
563 {-82, -79, -77, -74, -70, -66, -65, -64, -59, -57}, //20
564 {-79, -76, -74, -71, -67, -63, -62, -61, -56, -54}, //40
565 {-76, -73, -71, -68, -64, -60, -59, -58, -53, -51} //80
566};
567
Jeff Johnson295189b2012-06-20 16:38:30 -0700568extern struct net_device_ops net_ops_struct;
569
Leo Chang9056f462013-08-01 19:21:11 -0700570#ifdef WLAN_NL80211_TESTMODE
571enum wlan_hdd_tm_attr
572{
573 WLAN_HDD_TM_ATTR_INVALID = 0,
574 WLAN_HDD_TM_ATTR_CMD = 1,
575 WLAN_HDD_TM_ATTR_DATA = 2,
576 WLAN_HDD_TM_ATTR_TYPE = 3,
577 /* keep last */
578 WLAN_HDD_TM_ATTR_AFTER_LAST,
579 WLAN_HDD_TM_ATTR_MAX = WLAN_HDD_TM_ATTR_AFTER_LAST - 1,
580};
581
582enum wlan_hdd_tm_cmd
583{
584 WLAN_HDD_TM_CMD_WLAN_HB = 1,
585};
586
587#define WLAN_HDD_TM_DATA_MAX_LEN 5000
588
589static const struct nla_policy wlan_hdd_tm_policy[WLAN_HDD_TM_ATTR_MAX + 1] =
590{
591 [WLAN_HDD_TM_ATTR_CMD] = { .type = NLA_U32 },
592 [WLAN_HDD_TM_ATTR_DATA] = { .type = NLA_BINARY,
593 .len = WLAN_HDD_TM_DATA_MAX_LEN },
594};
595#endif /* WLAN_NL80211_TESTMODE */
596
Rajesh Chauhan98a31f82014-01-06 20:15:25 -0800597#ifdef FEATURE_WLAN_CH_AVOID
598/*
599 * FUNCTION: wlan_hdd_send_avoid_freq_event
600 * This is called when wlan driver needs to send vendor specific
601 * avoid frequency range event to userspace
602 */
603int wlan_hdd_send_avoid_freq_event(hdd_context_t *pHddCtx,
604 tHddAvoidFreqList *pAvoidFreqList)
605{
606 struct sk_buff *vendor_event;
607
608 ENTER();
609
610 if (!pHddCtx)
611 {
612 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
613 "%s: HDD context is null", __func__);
614 return -1;
615 }
616
617 if (!pAvoidFreqList)
618 {
619 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
620 "%s: pAvoidFreqList is null", __func__);
621 return -1;
622 }
623
624 vendor_event = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
625 sizeof(tHddAvoidFreqList),
Sunil Duttc69bccb2014-05-26 21:30:20 +0530626 QCA_NL80211_VENDOR_SUBCMD_AVOID_FREQUENCY_INDEX,
Rajesh Chauhan98a31f82014-01-06 20:15:25 -0800627 GFP_KERNEL);
628 if (!vendor_event)
629 {
630 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
631 "%s: cfg80211_vendor_event_alloc failed", __func__);
632 return -1;
633 }
634
635 memcpy(skb_put(vendor_event, sizeof(tHddAvoidFreqList)),
636 (void *)pAvoidFreqList, sizeof(tHddAvoidFreqList));
637
638 cfg80211_vendor_event(vendor_event, GFP_KERNEL);
639
640 EXIT();
641 return 0;
642}
643#endif /* FEATURE_WLAN_CH_AVOID */
644
Sunil Duttc69bccb2014-05-26 21:30:20 +0530645#ifdef WLAN_FEATURE_LINK_LAYER_STATS
646
647static v_BOOL_t put_wifi_rate_stat( tpSirWifiRateStat stats,
648 struct sk_buff *vendor_event)
649{
650 if (nla_put_u8(vendor_event,
651 QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_PREAMBLE,
652 stats->rate.preamble) ||
653 nla_put_u8(vendor_event,
654 QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_NSS,
655 stats->rate.nss) ||
656 nla_put_u8(vendor_event,
657 QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_BW,
658 stats->rate.bw) ||
659 nla_put_u8(vendor_event,
660 QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_MCS_INDEX,
661 stats->rate.rateMcsIdx) ||
662 nla_put_u32(vendor_event, QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_BIT_RATE,
663 stats->rate.bitrate ) ||
664 nla_put_u32(vendor_event, QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_TX_MPDU,
665 stats->txMpdu ) ||
666 nla_put_u32(vendor_event, QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_RX_MPDU,
667 stats->rxMpdu ) ||
668 nla_put_u32(vendor_event, QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_MPDU_LOST,
669 stats->mpduLost ) ||
670 nla_put_u32(vendor_event, QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_RETRIES,
671 stats->retries) ||
672 nla_put_u32(vendor_event,
673 QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_RETRIES_SHORT,
674 stats->retriesShort ) ||
675 nla_put_u32(vendor_event,
676 QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_RETRIES_LONG,
677 stats->retriesLong))
678 {
679 hddLog(VOS_TRACE_LEVEL_ERROR,
680 FL("QCA_WLAN_VENDOR_ATTR put fail"));
681 return FALSE;
682 }
683 return TRUE;
684}
685
686static v_BOOL_t put_wifi_peer_info( tpSirWifiPeerInfo stats,
687 struct sk_buff *vendor_event)
688{
689 u32 i = 0;
690 struct nlattr *rateInfo;
691 if (nla_put_u32(vendor_event, QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_TYPE,
692 stats->type) ||
693 nla_put(vendor_event,
694 QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_MAC_ADDRESS,
695 VOS_MAC_ADDR_SIZE, &stats->peerMacAddress[0]) ||
696 nla_put_u32(vendor_event,
697 QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_CAPABILITIES,
698 stats->capabilities) ||
699 nla_put_u32(vendor_event,
700 QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_NUM_RATES,
701 stats->numRate))
702 {
703 hddLog(VOS_TRACE_LEVEL_ERROR,
704 FL("QCA_WLAN_VENDOR_ATTR put fail"));
705 goto error;
706 }
707
708 rateInfo = nla_nest_start(vendor_event,
709 QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_RATE_INFO);
710 for (i = 0; i < stats->numRate; i++)
711 {
712 struct nlattr *rates;
713 tpSirWifiRateStat pRateStats = (tpSirWifiRateStat )((uint8 *)
714 stats->rateStats +
715 (i * sizeof(tSirWifiRateStat)));
716 rates = nla_nest_start(vendor_event, i);
717
718 if (FALSE == put_wifi_rate_stat(pRateStats, vendor_event))
719 {
720 hddLog(VOS_TRACE_LEVEL_ERROR,
721 FL("QCA_WLAN_VENDOR_ATTR put fail"));
722 return FALSE;
723 }
724 nla_nest_end(vendor_event, rates);
725 }
726 nla_nest_end(vendor_event, rateInfo);
727
728 return TRUE;
729error:
730 return FALSE;
731}
732
733static v_BOOL_t put_wifi_wmm_ac_stat( tpSirWifiWmmAcStat stats,
734 struct sk_buff *vendor_event)
735{
736 if (nla_put_u32(vendor_event, QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_AC,
737 stats->ac ) ||
738 nla_put_u32(vendor_event,
739 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_TX_MPDU,
740 stats->txMpdu ) ||
741 nla_put_u32(vendor_event,
742 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_RX_MPDU,
743 stats->rxMpdu ) ||
744 nla_put_u32(vendor_event,
745 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_TX_MCAST,
746 stats->txMcast ) ||
747 nla_put_u32(vendor_event,
748 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_RX_MCAST,
749 stats->rxMcast ) ||
750 nla_put_u32(vendor_event,
751 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_RX_AMPDU,
752 stats->rxAmpdu ) ||
753 nla_put_u32(vendor_event,
754 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_TX_AMPDU,
755 stats->txAmpdu ) ||
756 nla_put_u32(vendor_event,
757 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_MPDU_LOST,
758 stats->mpduLost )||
759 nla_put_u32(vendor_event,
760 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_RETRIES,
761 stats->retries ) ||
762 nla_put_u32(vendor_event,
763 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_RETRIES_SHORT,
764 stats->retriesShort ) ||
765 nla_put_u32(vendor_event,
766 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_RETRIES_LONG,
767 stats->retriesLong ) ||
768 nla_put_u32(vendor_event,
769 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_CONTENTION_TIME_MIN,
770 stats->contentionTimeMin ) ||
771 nla_put_u32(vendor_event,
772 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_CONTENTION_TIME_MAX,
773 stats->contentionTimeMax ) ||
774 nla_put_u32(vendor_event,
775 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_CONTENTION_TIME_AVG,
776 stats->contentionTimeAvg ) ||
777 nla_put_u32(vendor_event,
778 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_CONTENTION_NUM_SAMPLES,
779 stats->contentionNumSamples ))
780 {
781 hddLog(VOS_TRACE_LEVEL_ERROR,
782 FL("QCA_WLAN_VENDOR_ATTR put fail") );
783 return FALSE;
784 }
785 return TRUE;
786}
787
788static v_BOOL_t put_wifi_interface_info(tpSirWifiInterfaceInfo stats,
789 struct sk_buff *vendor_event)
790{
Dino Myclec8f3f332014-07-21 16:48:27 +0530791 if (nla_put_s32(vendor_event,
Sunil Duttc69bccb2014-05-26 21:30:20 +0530792 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_MODE, stats->mode ) ||
793 nla_put(vendor_event,
794 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_MAC_ADDR,
795 VOS_MAC_ADDR_SIZE, stats->macAddr) ||
796 nla_put_u32(vendor_event,
797 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_STATE,
798 stats->state ) ||
799 nla_put_u32(vendor_event,
800 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_ROAMING,
801 stats->roaming ) ||
802 nla_put_u32(vendor_event,
803 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_CAPABILITIES,
804 stats->capabilities ) ||
805 nla_put(vendor_event,
806 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_SSID,
807 strlen(stats->ssid), stats->ssid) ||
808 nla_put(vendor_event,
809 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_BSSID,
810 WNI_CFG_BSSID_LEN, stats->bssid) ||
811 nla_put(vendor_event,
812 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_AP_COUNTRY_STR,
813 WNI_CFG_COUNTRY_CODE_LEN, stats->apCountryStr) ||
814 nla_put(vendor_event,
815 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_COUNTRY_STR,
816 WNI_CFG_COUNTRY_CODE_LEN, stats->countryStr)
817 )
818 {
819 hddLog(VOS_TRACE_LEVEL_ERROR,
820 FL("QCA_WLAN_VENDOR_ATTR put fail") );
821 return FALSE;
822 }
823 return TRUE;
824}
825
826static v_BOOL_t put_wifi_iface_stats(tpSirWifiIfaceStat pWifiIfaceStat,
827 struct sk_buff *vendor_event)
828{
829 int i = 0;
830 struct nlattr *wmmInfo;
831 if (FALSE == put_wifi_interface_info(
832 &pWifiIfaceStat->info,
833 vendor_event))
834 {
835 hddLog(VOS_TRACE_LEVEL_ERROR,
836 FL("QCA_WLAN_VENDOR_ATTR put fail") );
837 return FALSE;
838
839 }
840
841 if (nla_put_u32(vendor_event,
842 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_BEACON_RX,
843 pWifiIfaceStat->beaconRx) ||
844 nla_put_u32(vendor_event,
845 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_MGMT_RX,
846 pWifiIfaceStat->mgmtRx) ||
847 nla_put_u32(vendor_event,
848 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_MGMT_ACTION_RX,
849 pWifiIfaceStat->mgmtActionRx) ||
850 nla_put_u32(vendor_event,
851 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_MGMT_ACTION_TX,
852 pWifiIfaceStat->mgmtActionTx) ||
853 nla_put_u32(vendor_event,
854 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_RSSI_MGMT,
855 pWifiIfaceStat->rssiMgmt) ||
856 nla_put_u32(vendor_event,
857 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_RSSI_DATA,
858 pWifiIfaceStat->rssiData) ||
859 nla_put_u32(vendor_event,
860 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_RSSI_ACK,
861 pWifiIfaceStat->rssiAck))
862 {
863 hddLog(VOS_TRACE_LEVEL_ERROR,
864 FL("QCA_WLAN_VENDOR_ATTR put fail"));
865 return FALSE;
866 }
867
868 wmmInfo = nla_nest_start(vendor_event,
869 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_INFO);
870 for (i = 0; i < WIFI_AC_MAX; i++)
871 {
872 struct nlattr *wmmStats;
873 wmmStats = nla_nest_start(vendor_event, i);
874 if (FALSE == put_wifi_wmm_ac_stat(
875 &pWifiIfaceStat->AccessclassStats[i],
876 vendor_event))
877 {
878 hddLog(VOS_TRACE_LEVEL_ERROR,
879 FL("QCA_WLAN_VENDOR_ATTR put Fail"));
880 return FALSE;
881 }
882
883 nla_nest_end(vendor_event, wmmStats);
884 }
885 nla_nest_end(vendor_event, wmmInfo);
886 return TRUE;
887}
888
889static tSirWifiInterfaceMode
890 hdd_map_device_to_ll_iface_mode ( int deviceMode )
891{
892 switch (deviceMode)
893 {
894 case WLAN_HDD_INFRA_STATION:
895 return WIFI_INTERFACE_STA;
896 case WLAN_HDD_SOFTAP:
897 return WIFI_INTERFACE_SOFTAP;
898 case WLAN_HDD_P2P_CLIENT:
899 return WIFI_INTERFACE_P2P_CLIENT;
900 case WLAN_HDD_P2P_GO:
901 return WIFI_INTERFACE_P2P_GO;
902 case WLAN_HDD_IBSS:
903 return WIFI_INTERFACE_IBSS;
904 default:
Dino Myclec8f3f332014-07-21 16:48:27 +0530905 return WIFI_INTERFACE_UNKNOWN;
Sunil Duttc69bccb2014-05-26 21:30:20 +0530906 }
907}
908
909static v_BOOL_t hdd_get_interface_info(hdd_adapter_t *pAdapter,
910 tpSirWifiInterfaceInfo pInfo)
911{
912 v_U8_t *staMac = NULL;
913 hdd_station_ctx_t *pHddStaCtx;
914 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
915 tpAniSirGlobal pMac = PMAC_STRUCT( hHal );
916
917 pInfo->mode = hdd_map_device_to_ll_iface_mode(pAdapter->device_mode);
918
919 vos_mem_copy(pInfo->macAddr,
920 pAdapter->macAddressCurrent.bytes, sizeof(v_MACADDR_t));
921
922 if (((WLAN_HDD_INFRA_STATION == pAdapter->device_mode) ||
923 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode) ||
924 (WLAN_HDD_P2P_DEVICE == pAdapter->device_mode)))
925 {
926 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
927 if (eConnectionState_NotConnected == pHddStaCtx->conn_info.connState)
928 {
929 pInfo->state = WIFI_DISCONNECTED;
930 }
931 if (eConnectionState_Connecting == pHddStaCtx->conn_info.connState)
932 {
933 hddLog(VOS_TRACE_LEVEL_ERROR,
934 "%s: Session ID %d, Connection is in progress", __func__,
935 pAdapter->sessionId);
936 pInfo->state = WIFI_ASSOCIATING;
937 }
938 if ((eConnectionState_Associated == pHddStaCtx->conn_info.connState) &&
939 (VOS_FALSE == pHddStaCtx->conn_info.uIsAuthenticated))
940 {
941 staMac = (v_U8_t *) &(pAdapter->macAddressCurrent.bytes[0]);
942 hddLog(VOS_TRACE_LEVEL_ERROR,
943 "%s: client " MAC_ADDRESS_STR
944 " is in the middle of WPS/EAPOL exchange.", __func__,
945 MAC_ADDR_ARRAY(staMac));
946 pInfo->state = WIFI_AUTHENTICATING;
947 }
948 if (eConnectionState_Associated == pHddStaCtx->conn_info.connState)
949 {
950 pInfo->state = WIFI_ASSOCIATED;
951 vos_mem_copy(pInfo->bssid,
952 &pHddStaCtx->conn_info.bssId, WNI_CFG_BSSID_LEN);
953 vos_mem_copy(pInfo->ssid,
954 pHddStaCtx->conn_info.SSID.SSID.ssId,
955 pHddStaCtx->conn_info.SSID.SSID.length);
956 //NULL Terminate the string.
957 pInfo->ssid[pHddStaCtx->conn_info.SSID.SSID.length] = 0;
958 }
959 }
960 vos_mem_copy(pInfo->countryStr,
961 pMac->scan.countryCodeCurrent, WNI_CFG_COUNTRY_CODE_LEN);
962
963 vos_mem_copy(pInfo->apCountryStr,
964 pMac->scan.countryCodeCurrent, WNI_CFG_COUNTRY_CODE_LEN);
965
966 return TRUE;
967}
968
969/*
970 * hdd_link_layer_process_peer_stats () - This function is called after
971 * receiving Link Layer Peer statistics from FW.This function converts
972 * the firmware data to the NL data and sends the same to the kernel/upper
973 * layers.
974 */
975static v_VOID_t hdd_link_layer_process_peer_stats(hdd_adapter_t *pAdapter,
976 v_VOID_t *pData)
977{
978 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
979 tpSirWifiRateStat pWifiRateStat;
980 tpSirWifiPeerStat pWifiPeerStat;
981 tpSirWifiPeerInfo pWifiPeerInfo;
982 struct nlattr *peerInfo;
983 struct sk_buff *vendor_event;
984 int status, i;
985
986 status = wlan_hdd_validate_context(pHddCtx);
987 if (0 != status)
988 {
989 hddLog(VOS_TRACE_LEVEL_ERROR,
990 FL("HDD context is not valid") );
991 return;
992 }
993
994 pWifiPeerStat = (tpSirWifiPeerStat) pData;
995
996 hddLog(VOS_TRACE_LEVEL_INFO,
997 "LL_STATS_PEER_ALL : numPeers %u",
998 pWifiPeerStat->numPeers);
999 {
1000 for (i = 0; i < pWifiPeerStat->numPeers; i++)
1001 {
1002 pWifiPeerInfo = (tpSirWifiPeerInfo)
1003 ((uint8 *)pWifiPeerStat->peerInfo +
1004 ( i * sizeof(tSirWifiPeerInfo)));
1005
1006 hddLog(VOS_TRACE_LEVEL_INFO,
1007 " %d) LL_STATS Channel Stats "
1008 " Peer Type %u "
1009 " peerMacAddress %pM "
1010 " capabilities 0x%x "
1011 " numRate %u ",
1012 i,
1013 pWifiPeerInfo->type,
1014 pWifiPeerInfo->peerMacAddress,
1015 pWifiPeerInfo->capabilities,
1016 pWifiPeerInfo->numRate);
1017 {
1018 int j;
1019 for (j = 0; j < pWifiPeerInfo->numRate; j++)
1020 {
1021 pWifiRateStat = (tpSirWifiRateStat)
1022 ((tANI_U8 *) pWifiPeerInfo->rateStats +
1023 ( j * sizeof(tSirWifiRateStat)));
1024
1025 hddLog(VOS_TRACE_LEVEL_INFO,
1026 " peer Rate Stats "
1027 " preamble %u "
1028 " nss %u "
1029 " bw %u "
1030 " rateMcsIdx %u "
1031 " reserved %u "
1032 " bitrate %u "
1033 " txMpdu %u "
1034 " rxMpdu %u "
1035 " mpduLost %u "
1036 " retries %u "
1037 " retriesShort %u "
1038 " retriesLong %u",
1039 pWifiRateStat->rate.preamble,
1040 pWifiRateStat->rate.nss,
1041 pWifiRateStat->rate.bw,
1042 pWifiRateStat->rate.rateMcsIdx,
1043 pWifiRateStat->rate.reserved,
1044 pWifiRateStat->rate.bitrate,
1045 pWifiRateStat->txMpdu,
1046 pWifiRateStat->rxMpdu,
1047 pWifiRateStat->mpduLost,
1048 pWifiRateStat->retries,
1049 pWifiRateStat->retriesShort,
1050 pWifiRateStat->retriesLong);
1051 }
1052 }
1053 }
1054 }
1055
1056 /*
1057 * Allocate a size of 4096 for the peer stats comprising
1058 * each of size = sizeof (tSirWifiPeerInfo) + numRate *
1059 * sizeof (tSirWifiRateStat).Each field is put with an
1060 * NL attribute.The size of 4096 is considered assuming
1061 * that number of rates shall not exceed beyond 50 with
1062 * the sizeof (tSirWifiRateStat) being 32.
1063 */
1064 vendor_event = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
1065 LL_STATS_EVENT_BUF_SIZE + NLMSG_HDRLEN,
1066 QCA_NL80211_VENDOR_SUBCMD_LL_PEER_INFO_STATS_INDEX,
1067 GFP_KERNEL);
1068 if (!vendor_event)
1069 {
1070 hddLog(VOS_TRACE_LEVEL_ERROR,
1071 "%s: cfg80211_vendor_event_alloc failed",
1072 __func__);
1073 return;
1074 }
1075 if (nla_put_u32(vendor_event,
1076 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_NUM_PEERS,
1077 pWifiPeerStat->numPeers))
1078 {
1079 hddLog(VOS_TRACE_LEVEL_ERROR,
1080 "%s: QCA_WLAN_VENDOR_ATTR put fail", __func__);
1081 kfree_skb(vendor_event);
1082 return;
1083 }
1084
1085 peerInfo = nla_nest_start(vendor_event,
1086 QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO);
1087
1088 pWifiPeerInfo = (tpSirWifiPeerInfo) ((uint8 *)
1089 pWifiPeerStat->peerInfo);
1090
1091 for (i = 1; i <= pWifiPeerStat->numPeers; i++)
1092 {
1093 struct nlattr *peers = nla_nest_start(vendor_event, i);
1094 int numRate = pWifiPeerInfo->numRate;
1095
1096 if (FALSE == put_wifi_peer_info(
1097 pWifiPeerInfo, vendor_event))
1098 {
1099 hddLog(VOS_TRACE_LEVEL_ERROR,
1100 "%s: put_wifi_peer_info put fail", __func__);
1101 kfree_skb(vendor_event);
1102 return;
1103 }
1104
1105 pWifiPeerInfo = (tpSirWifiPeerInfo) ((uint8 *)
1106 pWifiPeerStat->peerInfo +
1107 (i * sizeof(tSirWifiPeerInfo)) +
1108 (numRate * sizeof (tSirWifiRateStat)));
1109 nla_nest_end(vendor_event, peers);
1110 }
1111 nla_nest_end(vendor_event, peerInfo);
1112 cfg80211_vendor_event(vendor_event, GFP_KERNEL);
1113}
1114
1115/*
1116 * hdd_link_layer_process_iface_stats () - This function is called after
1117 * receiving Link Layer Interface statistics from FW.This function converts
1118 * the firmware data to the NL data and sends the same to the kernel/upper
1119 * layers.
1120 */
1121static v_VOID_t hdd_link_layer_process_iface_stats(hdd_adapter_t *pAdapter,
1122 v_VOID_t *pData)
1123{
1124 tpSirWifiIfaceStat pWifiIfaceStat;
1125 struct sk_buff *vendor_event;
1126 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
1127 int status;
1128
1129 status = wlan_hdd_validate_context(pHddCtx);
1130 if (0 != status)
1131 {
1132 hddLog(VOS_TRACE_LEVEL_ERROR,
1133 FL("HDD context is not valid") );
1134 return;
1135 }
1136 /*
1137 * Allocate a size of 4096 for the interface stats comprising
1138 * sizeof (tpSirWifiIfaceStat).The size of 4096 is considered
1139 * assuming that all these fit with in the limit.Please take
1140 * a call on the limit based on the data requirements on
1141 * interface statistics.
1142 */
1143 vendor_event = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
1144 LL_STATS_EVENT_BUF_SIZE + NLMSG_HDRLEN,
1145 QCA_NL80211_VENDOR_SUBCMD_LL_IFACE_STATS_INDEX,
1146 GFP_KERNEL);
1147 if (!vendor_event)
1148 {
1149 hddLog(VOS_TRACE_LEVEL_ERROR,
1150 FL("cfg80211_vendor_event_alloc failed") );
1151 return;
1152 }
1153
1154 pWifiIfaceStat = (tpSirWifiIfaceStat) pData;
1155
1156 hddLog(VOS_TRACE_LEVEL_INFO,
1157 "WMI_LINK_STATS_IFACE Data");
1158
1159 hddLog(VOS_TRACE_LEVEL_INFO,
1160 "LL_STATS_IFACE: "
1161 " Mode %u "
1162 " MAC %pM "
1163 " State %u "
1164 " Roaming %u "
1165 " capabilities 0x%x "
1166 " SSID %s "
1167 " BSSID %pM",
1168 pWifiIfaceStat->info.mode,
1169 pWifiIfaceStat->info.macAddr,
1170 pWifiIfaceStat->info.state,
1171 pWifiIfaceStat->info.roaming,
1172 pWifiIfaceStat->info.capabilities,
1173 pWifiIfaceStat->info.ssid,
1174 pWifiIfaceStat->info.bssid);
1175
1176 hddLog(VOS_TRACE_LEVEL_INFO,
1177 " AP country str: %c%c%c",
1178 pWifiIfaceStat->info.apCountryStr[0],
1179 pWifiIfaceStat->info.apCountryStr[1],
1180 pWifiIfaceStat->info.apCountryStr[2]);
1181
1182
1183 hddLog(VOS_TRACE_LEVEL_INFO,
1184 " Country Str Association: %c%c%c",
1185 pWifiIfaceStat->info.countryStr[0],
1186 pWifiIfaceStat->info.countryStr[1],
1187 pWifiIfaceStat->info.countryStr[2]);
1188
1189 hddLog(VOS_TRACE_LEVEL_INFO,
1190 " beaconRx %u "
1191 " mgmtRx %u "
1192 " mgmtActionRx %u "
1193 " mgmtActionTx %u "
1194 " rssiMgmt %u "
1195 " rssiData %u "
1196 " rssiAck %u",
1197 pWifiIfaceStat->beaconRx,
1198 pWifiIfaceStat->mgmtRx,
1199 pWifiIfaceStat->mgmtActionRx,
1200 pWifiIfaceStat->mgmtActionTx,
1201 pWifiIfaceStat->rssiMgmt,
1202 pWifiIfaceStat->rssiData,
1203 pWifiIfaceStat->rssiAck );
1204
1205
1206 {
1207 int i;
1208 for (i = 0 ; i < WIFI_AC_MAX; i ++)
1209 {
1210 hddLog(VOS_TRACE_LEVEL_INFO,
1211
1212 " %d) LL_STATS IFACE: "
1213 " ac: %u txMpdu: %u "
1214 " rxMpdu: %u txMcast: %u "
1215 " rxMcast: %u rxAmpdu: %u "
1216 " txAmpdu: %u mpduLost: %u "
1217 " retries: %u retriesShort: %u "
1218 " retriesLong: %u contentionTimeMin: %u "
1219 " contentionTimeMax: %u contentionTimeAvg: %u "
1220 " contentionNumSamples: %u",
1221 i,
1222 pWifiIfaceStat->AccessclassStats[i].ac,
1223 pWifiIfaceStat->AccessclassStats[i].txMpdu,
1224 pWifiIfaceStat->AccessclassStats[i].rxMpdu,
1225 pWifiIfaceStat->AccessclassStats[i].txMcast,
1226 pWifiIfaceStat->AccessclassStats[i].rxMcast,
1227 pWifiIfaceStat->AccessclassStats[i].rxAmpdu,
1228 pWifiIfaceStat->AccessclassStats[i].txAmpdu,
1229 pWifiIfaceStat->AccessclassStats[i].mpduLost,
1230 pWifiIfaceStat->AccessclassStats[i].retries,
1231 pWifiIfaceStat->
1232 AccessclassStats[i].retriesShort,
1233 pWifiIfaceStat->AccessclassStats[i].retriesLong,
1234 pWifiIfaceStat->
1235 AccessclassStats[i].contentionTimeMin,
1236 pWifiIfaceStat->
1237 AccessclassStats[i].contentionTimeMax,
1238 pWifiIfaceStat->
1239 AccessclassStats[i].contentionTimeAvg,
1240 pWifiIfaceStat->
1241 AccessclassStats[i].contentionNumSamples);
1242
1243 }
1244 }
1245
1246 if (FALSE == hdd_get_interface_info( pAdapter,
1247 &pWifiIfaceStat->info))
1248 {
1249 hddLog(VOS_TRACE_LEVEL_ERROR,
1250 FL("hdd_get_interface_info get fail") );
1251 kfree_skb(vendor_event);
1252 return;
1253 }
1254
1255 if (FALSE == put_wifi_iface_stats( pWifiIfaceStat,
1256 vendor_event))
1257 {
1258 hddLog(VOS_TRACE_LEVEL_ERROR,
1259 FL("put_wifi_iface_stats fail") );
1260 kfree_skb(vendor_event);
1261 return;
1262 }
1263 cfg80211_vendor_event(vendor_event, GFP_KERNEL);
1264}
1265
1266/*
1267 * hdd_link_layer_process_radio_stats () - This function is called after
1268 * receiving Link Layer Radio statistics from FW.This function converts
1269 * the firmware data to the NL data and sends the same to the kernel/upper
1270 * layers.
1271 */
1272static v_VOID_t hdd_link_layer_process_radio_stats(hdd_adapter_t *pAdapter,
1273 v_VOID_t *pData)
1274{
1275 int status, i;
1276 tpSirWifiRadioStat pWifiRadioStat;
1277 tpSirWifiChannelStats pWifiChannelStats;
1278 struct sk_buff *vendor_event;
1279 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
1280 struct nlattr *chList;
1281
1282 status = wlan_hdd_validate_context(pHddCtx);
1283 if (0 != status)
1284 {
1285 hddLog(VOS_TRACE_LEVEL_ERROR,
1286 FL("HDD context is not valid") );
1287 return;
1288 }
1289 pWifiRadioStat = (tpSirWifiRadioStat) pData;
1290
1291 hddLog(VOS_TRACE_LEVEL_INFO,
1292 "LL_STATS_RADIO"
1293 " radio is %d onTime is %u "
1294 " txTime is %u rxTime is %u "
1295 " onTimeScan is %u onTimeNbd is %u "
Dino Mycle6fb96c12014-06-10 11:52:40 +05301296 " onTimeEXTScan is %u onTimeRoamScan is %u "
Sunil Duttc69bccb2014-05-26 21:30:20 +05301297 " onTimePnoScan is %u onTimeHs20 is %u "
1298 " numChannels is %u",
1299 pWifiRadioStat->radio, pWifiRadioStat->onTime,
1300 pWifiRadioStat->txTime, pWifiRadioStat->rxTime,
1301 pWifiRadioStat->onTimeScan, pWifiRadioStat->onTimeNbd,
Dino Mycle6fb96c12014-06-10 11:52:40 +05301302 pWifiRadioStat->onTimeEXTScan,
Sunil Duttc69bccb2014-05-26 21:30:20 +05301303 pWifiRadioStat->onTimeRoamScan,
1304 pWifiRadioStat->onTimePnoScan,
1305 pWifiRadioStat->onTimeHs20,
1306 pWifiRadioStat->numChannels);
1307 /*
1308 * Allocate a size of 4096 for the Radio stats comprising
1309 * sizeof (tSirWifiRadioStat) + numChannels * sizeof
1310 * (tSirWifiChannelStats).Each channel data is put with an
1311 * NL attribute.The size of 4096 is considered assuming that
1312 * number of channels shall not exceed beyond 60 with the
1313 * sizeof (tSirWifiChannelStats) being 24 bytes.
1314 */
1315
1316 vendor_event = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
1317 LL_STATS_EVENT_BUF_SIZE + NLMSG_HDRLEN ,
1318 QCA_NL80211_VENDOR_SUBCMD_LL_RADIO_STATS_INDEX,
1319 GFP_KERNEL);
1320
1321 if (!vendor_event)
1322 {
1323 hddLog(VOS_TRACE_LEVEL_ERROR,
1324 FL("cfg80211_vendor_event_alloc failed") );
1325 return;
1326 }
1327
1328 if (nla_put_u32(vendor_event,
1329 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ID,
1330 pWifiRadioStat->radio) ||
1331 nla_put_u32(vendor_event,
1332 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME,
1333 pWifiRadioStat->onTime) ||
1334 nla_put_u32(vendor_event,
1335 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_TX_TIME,
1336 pWifiRadioStat->txTime) ||
1337 nla_put_u32(vendor_event,
1338 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_RX_TIME,
1339 pWifiRadioStat->rxTime) ||
1340 nla_put_u32(vendor_event,
1341 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME_SCAN,
1342 pWifiRadioStat->onTimeScan) ||
1343 nla_put_u32(vendor_event,
1344 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME_NBD,
1345 pWifiRadioStat->onTimeNbd) ||
1346 nla_put_u32(vendor_event,
Dino Mycle6fb96c12014-06-10 11:52:40 +05301347 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME_EXTSCAN,
1348 pWifiRadioStat->onTimeEXTScan)||
Sunil Duttc69bccb2014-05-26 21:30:20 +05301349 nla_put_u32(vendor_event,
1350 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME_ROAM_SCAN,
1351 pWifiRadioStat->onTimeRoamScan) ||
1352 nla_put_u32(vendor_event,
1353 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME_PNO_SCAN,
1354 pWifiRadioStat->onTimePnoScan) ||
1355 nla_put_u32(vendor_event,
1356 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME_HS20,
1357 pWifiRadioStat->onTimeHs20) ||
1358 nla_put_u32(vendor_event,
1359 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_NUM_CHANNELS,
1360 pWifiRadioStat->numChannels))
1361 {
1362 hddLog(VOS_TRACE_LEVEL_ERROR,
1363 FL("QCA_WLAN_VENDOR_ATTR put fail"));
1364 kfree_skb(vendor_event);
1365 return ;
1366 }
1367
1368 chList = nla_nest_start(vendor_event,
1369 QCA_WLAN_VENDOR_ATTR_LL_STATS_CH_INFO);
1370 for (i = 0; i < pWifiRadioStat->numChannels; i++)
1371 {
1372 struct nlattr *chInfo;
1373
1374 pWifiChannelStats = (tpSirWifiChannelStats) ((uint8*)
1375 pWifiRadioStat->channels +
1376 (i * sizeof(tSirWifiChannelStats)));
1377
1378 hddLog(VOS_TRACE_LEVEL_INFO,
1379 " %d) Channel Info"
1380 " width is %u "
1381 " CenterFreq %u "
1382 " CenterFreq0 %u "
1383 " CenterFreq1 %u "
1384 " onTime %u "
1385 " ccaBusyTime %u",
1386 i,
1387 pWifiChannelStats->channel.width,
1388 pWifiChannelStats->channel.centerFreq,
1389 pWifiChannelStats->channel.centerFreq0,
1390 pWifiChannelStats->channel.centerFreq1,
1391 pWifiChannelStats->onTime,
1392 pWifiChannelStats->ccaBusyTime);
1393
1394
1395 chInfo = nla_nest_start(vendor_event, i);
1396
1397 if (nla_put_u32(vendor_event,
1398 QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_INFO_WIDTH,
1399 pWifiChannelStats->channel.width) ||
1400 nla_put_u32(vendor_event,
1401 QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_INFO_CENTER_FREQ,
1402 pWifiChannelStats->channel.centerFreq) ||
1403 nla_put_u32(vendor_event,
1404 QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_INFO_CENTER_FREQ0,
1405 pWifiChannelStats->channel.centerFreq0) ||
1406 nla_put_u32(vendor_event,
1407 QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_INFO_CENTER_FREQ1,
1408 pWifiChannelStats->channel.centerFreq1) ||
1409 nla_put_u32(vendor_event,
1410 QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_ON_TIME,
1411 pWifiChannelStats->onTime) ||
1412 nla_put_u32(vendor_event,
1413 QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_CCA_BUSY_TIME,
1414 pWifiChannelStats->ccaBusyTime))
1415 {
1416 hddLog(VOS_TRACE_LEVEL_ERROR,
1417 FL("cfg80211_vendor_event_alloc failed") );
1418 kfree_skb(vendor_event);
1419 return ;
1420 }
1421 nla_nest_end(vendor_event, chInfo);
1422 }
1423 nla_nest_end(vendor_event, chList);
1424
1425 cfg80211_vendor_event(vendor_event, GFP_KERNEL);
1426 return;
1427}
1428
1429/*
1430 * hdd_link_layer_stats_ind_callback () - This function is called after
1431 * receiving Link Layer indications from FW.This callback converts the firmware
1432 * data to the NL data and send the same to the kernel/upper layers.
1433 */
1434static void hdd_link_layer_stats_ind_callback ( void *pCtx,
1435 int indType,
Dino Mycled3d50022014-07-07 12:58:25 +05301436 void *pRsp, u8 *macAddr)
Sunil Duttc69bccb2014-05-26 21:30:20 +05301437{
Dino Mycled3d50022014-07-07 12:58:25 +05301438 hdd_context_t *pHddCtx = (hdd_context_t *)pCtx;
1439 hdd_adapter_t *pAdapter = NULL;
1440 tpSirLLStatsResults linkLayerStatsResults = (tpSirLLStatsResults)pRsp;
Sunil Duttc69bccb2014-05-26 21:30:20 +05301441 int status;
1442
1443 status = wlan_hdd_validate_context(pHddCtx);
1444
1445 if (0 != status)
1446 {
1447 hddLog(VOS_TRACE_LEVEL_ERROR,
1448 FL("HDD context is not valid"));
1449 return;
1450 }
1451
Dino Mycled3d50022014-07-07 12:58:25 +05301452
1453
1454 pAdapter = hdd_get_adapter_by_macaddr(pHddCtx, macAddr);
1455 if (NULL == pAdapter)
1456 {
1457 hddLog(VOS_TRACE_LEVEL_ERROR,
1458 FL(" MAC address %pM does not exist with host"),
1459 macAddr);
1460 return;
1461 }
1462
Sunil Duttc69bccb2014-05-26 21:30:20 +05301463 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Dino Mycled3d50022014-07-07 12:58:25 +05301464 "%s: Interface: %s LLStats indType: %d", __func__,
1465 pAdapter->dev->name, indType);
1466
Sunil Duttc69bccb2014-05-26 21:30:20 +05301467 switch (indType)
1468 {
1469 case SIR_HAL_LL_STATS_RESULTS_RSP:
1470 {
Sunil Duttc69bccb2014-05-26 21:30:20 +05301471 hddLog(VOS_TRACE_LEVEL_INFO,
1472 FL("RESPONSE SIR_HAL_LL_STATS_RESULTS_RSP") );
1473 hddLog(VOS_TRACE_LEVEL_INFO,
1474 "LL_STATS RESULTS RESPONSE paramID = 0x%x",
1475 linkLayerStatsResults->paramId);
1476 hddLog(VOS_TRACE_LEVEL_INFO,
Dino Mycled3d50022014-07-07 12:58:25 +05301477 "LL_STATS RESULTS RESPONSE ifaceId = %u MAC: %pM",
1478 linkLayerStatsResults->ifaceId, macAddr);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301479 hddLog(VOS_TRACE_LEVEL_INFO,
1480 "LL_STATS RESULTS RESPONSE respId = %u",
1481 linkLayerStatsResults->respId);
1482 hddLog(VOS_TRACE_LEVEL_INFO,
1483 "LL_STATS RESULTS RESPONSE moreResultToFollow = %u",
1484 linkLayerStatsResults->moreResultToFollow);
1485 hddLog(VOS_TRACE_LEVEL_INFO,
1486 "LL_STATS RESULTS RESPONSE result = %p",
1487 linkLayerStatsResults->result);
1488 if ( linkLayerStatsResults->paramId & WMI_LINK_STATS_RADIO )
1489 {
1490 hdd_link_layer_process_radio_stats(pAdapter,
1491 (v_VOID_t *)linkLayerStatsResults->result);
1492 }
1493 else if ( linkLayerStatsResults->paramId & WMI_LINK_STATS_IFACE )
1494 {
1495 hdd_link_layer_process_iface_stats(pAdapter,
1496 (v_VOID_t *)linkLayerStatsResults->result);
1497 }
1498 else if ( linkLayerStatsResults->paramId &
1499 WMI_LINK_STATS_ALL_PEER )
1500 {
1501 hdd_link_layer_process_peer_stats(pAdapter,
1502 (v_VOID_t *)linkLayerStatsResults->result);
1503 } /* WMI_LINK_STATS_ALL_PEER */
1504 else
1505 {
1506 hddLog(VOS_TRACE_LEVEL_ERROR,
1507 FL("INVALID LL_STATS_NOTIFY RESPONSE ***********"));
1508 }
1509
1510 break;
1511 }
1512 default:
1513 hddLog(VOS_TRACE_LEVEL_ERROR, "invalid event type %d", indType);
1514 break;
1515 }
1516 return;
1517}
1518
1519const struct
1520nla_policy
1521qca_wlan_vendor_ll_set_policy[QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_MAX +1] =
1522{
1523 [QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_CONFIG_MPDU_SIZE_THRESHOLD] =
1524 { .type = NLA_U32 },
1525 [QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_CONFIG_AGGRESSIVE_STATS_GATHERING] =
1526 { .type = NLA_U32 },
1527};
1528
1529static int wlan_hdd_cfg80211_ll_stats_set(struct wiphy *wiphy,
1530 struct wireless_dev *wdev,
1531 void *data,
1532 int data_len)
1533{
1534 int status;
1535 struct nlattr *tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_MAX + 1];
Dino Mycledf0a5d92014-07-04 09:41:55 +05301536 tSirLLStatsSetReq linkLayerStatsSetReq;
Sunil Duttc69bccb2014-05-26 21:30:20 +05301537 struct net_device *dev = wdev->netdev;
1538 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
1539 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
1540
1541 status = wlan_hdd_validate_context(pHddCtx);
1542 if (0 != status)
1543 {
1544 hddLog(VOS_TRACE_LEVEL_ERROR,
1545 FL("HDD context is not valid"));
1546 return -EINVAL;
1547 }
1548
1549 if (NULL == pAdapter)
1550 {
1551 hddLog(VOS_TRACE_LEVEL_ERROR,
1552 FL("HDD adapter is Null"));
1553 return -ENODEV;
1554 }
Dino Mycledf0a5d92014-07-04 09:41:55 +05301555 /* check the LLStats Capability */
1556 if ( (TRUE != pHddCtx->cfg_ini->fEnableLLStats) ||
1557 (TRUE != sme_IsFeatureSupportedByFW(LINK_LAYER_STATS_MEAS)))
1558 {
1559 hddLog(VOS_TRACE_LEVEL_ERROR,
1560 FL("Link Layer Statistics not supported by Firmware"));
1561 return -EINVAL;
1562 }
Sunil Duttc69bccb2014-05-26 21:30:20 +05301563
1564 if (nla_parse(tb_vendor, QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_MAX,
1565 (struct nlattr *)data,
1566 data_len, qca_wlan_vendor_ll_set_policy))
1567 {
1568 hddLog(VOS_TRACE_LEVEL_ERROR, FL() );
1569 return -EINVAL;
1570 }
1571 if (!tb_vendor
1572 [QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_CONFIG_MPDU_SIZE_THRESHOLD])
1573 {
1574 hddLog(VOS_TRACE_LEVEL_ERROR, FL("MPDU size Not present"));
1575 return -EINVAL;
1576 }
1577 if (!tb_vendor[
1578 QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_CONFIG_AGGRESSIVE_STATS_GATHERING])
1579 {
1580 hddLog(VOS_TRACE_LEVEL_ERROR, FL(" Stats Gathering Not Present"));
1581 return -EINVAL;
1582 }
Sunil Duttc69bccb2014-05-26 21:30:20 +05301583 // Shall take the request Id if the Upper layers pass. 1 For now.
Dino Mycledf0a5d92014-07-04 09:41:55 +05301584 linkLayerStatsSetReq.reqId = 1;
Sunil Duttc69bccb2014-05-26 21:30:20 +05301585
Dino Mycledf0a5d92014-07-04 09:41:55 +05301586 linkLayerStatsSetReq.mpduSizeThreshold =
Sunil Duttc69bccb2014-05-26 21:30:20 +05301587 nla_get_u32(
1588 tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_CONFIG_MPDU_SIZE_THRESHOLD]);
1589
Dino Mycledf0a5d92014-07-04 09:41:55 +05301590 linkLayerStatsSetReq.aggressiveStatisticsGathering =
Sunil Duttc69bccb2014-05-26 21:30:20 +05301591 nla_get_u32(
1592 tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_CONFIG_AGGRESSIVE_STATS_GATHERING]);
1593
Dino Mycled3d50022014-07-07 12:58:25 +05301594 vos_mem_copy(linkLayerStatsSetReq.macAddr,
1595 pAdapter->macAddressCurrent.bytes, sizeof(v_MACADDR_t));
Sunil Duttc69bccb2014-05-26 21:30:20 +05301596
1597
1598 hddLog(VOS_TRACE_LEVEL_INFO,
Dino Mycled3d50022014-07-07 12:58:25 +05301599 "LL_STATS_SET reqId = %d", linkLayerStatsSetReq.reqId);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301600 hddLog(VOS_TRACE_LEVEL_INFO,
Dino Mycled3d50022014-07-07 12:58:25 +05301601 "LL_STATS_SET MAC = %pM", linkLayerStatsSetReq.macAddr);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301602 hddLog(VOS_TRACE_LEVEL_INFO,
1603 "LL_STATS_SET mpduSizeThreshold = %d",
Dino Mycledf0a5d92014-07-04 09:41:55 +05301604 linkLayerStatsSetReq.mpduSizeThreshold);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301605 hddLog(VOS_TRACE_LEVEL_INFO,
1606 "LL_STATS_SET aggressive Statistics Gathering = %d",
Dino Mycledf0a5d92014-07-04 09:41:55 +05301607 linkLayerStatsSetReq.aggressiveStatisticsGathering);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301608
1609 if (eHAL_STATUS_SUCCESS != sme_SetLinkLayerStatsIndCB(
1610 pHddCtx->hHal,
Dino Mycled3d50022014-07-07 12:58:25 +05301611 hdd_link_layer_stats_ind_callback))
Sunil Duttc69bccb2014-05-26 21:30:20 +05301612 {
1613 hddLog(VOS_TRACE_LEVEL_ERROR, "%s:"
1614 "sme_SetLinkLayerStatsIndCB Failed", __func__);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301615 return -EINVAL;
1616
1617 }
1618 if (eHAL_STATUS_SUCCESS != sme_LLStatsSetReq( pHddCtx->hHal,
Dino Mycledf0a5d92014-07-04 09:41:55 +05301619 &linkLayerStatsSetReq))
Sunil Duttc69bccb2014-05-26 21:30:20 +05301620 {
1621 hddLog(VOS_TRACE_LEVEL_ERROR, "%s:"
1622 "sme_LLStatsSetReq Failed", __func__);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301623 return -EINVAL;
1624 }
1625
1626 pAdapter->isLinkLayerStatsSet = 1;
1627
1628 return 0;
1629}
1630
1631const struct
1632nla_policy
1633qca_wlan_vendor_ll_get_policy[QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_MAX +1] =
1634{
1635 /* Unsigned 32bit value provided by the caller issuing the GET stats
1636 * command. When reporting
1637 * the stats results, the driver uses the same value to indicate
1638 * which GET request the results
1639 * correspond to.
1640 */
1641 [QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_CONFIG_REQ_ID] = { .type = NLA_U32 },
1642
1643 /* Unsigned 32bit value . bit mask to identify what statistics are
1644 requested for retrieval */
1645 [QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_CONFIG_REQ_MASK] = { .type = NLA_U32 },
1646};
1647
1648static int wlan_hdd_cfg80211_ll_stats_get(struct wiphy *wiphy,
1649 struct wireless_dev *wdev,
1650 void *data,
1651 int data_len)
1652{
1653 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
1654 struct nlattr *tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_MAX + 1];
Dino Mycledf0a5d92014-07-04 09:41:55 +05301655 tSirLLStatsGetReq linkLayerStatsGetReq;
Sunil Duttc69bccb2014-05-26 21:30:20 +05301656 struct net_device *dev = wdev->netdev;
1657 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
1658 int status;
1659
1660 status = wlan_hdd_validate_context(pHddCtx);
1661 if (0 != status)
1662 {
1663 hddLog(VOS_TRACE_LEVEL_ERROR,
1664 FL("HDD context is not valid"));
1665 return -EINVAL ;
1666 }
1667
1668 if (NULL == pAdapter)
1669 {
1670 hddLog(VOS_TRACE_LEVEL_FATAL,
1671 "%s: HDD adapter is Null", __func__);
1672 return -ENODEV;
1673 }
Dino Mycledf0a5d92014-07-04 09:41:55 +05301674 /* check the LLStats Capability */
1675 if ( (TRUE != pHddCtx->cfg_ini->fEnableLLStats) ||
1676 (TRUE != sme_IsFeatureSupportedByFW(LINK_LAYER_STATS_MEAS)))
1677 {
1678 hddLog(VOS_TRACE_LEVEL_ERROR,
1679 FL("Link Layer Statistics not supported by Firmware"));
1680 return -EINVAL;
1681 }
1682
Sunil Duttc69bccb2014-05-26 21:30:20 +05301683
1684 if (!pAdapter->isLinkLayerStatsSet)
1685 {
1686 hddLog(VOS_TRACE_LEVEL_FATAL,
1687 "%s: isLinkLayerStatsSet : %d",
1688 __func__, pAdapter->isLinkLayerStatsSet);
1689 return -EINVAL;
1690 }
1691
1692 if (nla_parse(tb_vendor, QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_MAX,
1693 (struct nlattr *)data,
1694 data_len, qca_wlan_vendor_ll_get_policy))
1695 {
1696 hddLog(VOS_TRACE_LEVEL_ERROR, FL() );
1697 return -EINVAL;
1698 }
1699
1700 if (!tb_vendor
1701 [QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_CONFIG_REQ_ID])
1702 {
1703 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Request Id Not present"));
1704 return -EINVAL;
1705 }
1706
1707 if (!tb_vendor
1708 [QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_CONFIG_REQ_MASK])
1709 {
1710 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Req Mask Not present"));
1711 return -EINVAL;
1712 }
1713
Sunil Duttc69bccb2014-05-26 21:30:20 +05301714
Dino Mycledf0a5d92014-07-04 09:41:55 +05301715 linkLayerStatsGetReq.reqId =
Sunil Duttc69bccb2014-05-26 21:30:20 +05301716 nla_get_u32( tb_vendor[
1717 QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_CONFIG_REQ_ID]);
Dino Mycledf0a5d92014-07-04 09:41:55 +05301718 linkLayerStatsGetReq.paramIdMask =
Sunil Duttc69bccb2014-05-26 21:30:20 +05301719 nla_get_u32( tb_vendor[
1720 QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_CONFIG_REQ_MASK]);
1721
Dino Mycled3d50022014-07-07 12:58:25 +05301722 vos_mem_copy(linkLayerStatsGetReq.macAddr,
1723 pAdapter->macAddressCurrent.bytes, sizeof(v_MACADDR_t));
Sunil Duttc69bccb2014-05-26 21:30:20 +05301724
1725 hddLog(VOS_TRACE_LEVEL_INFO,
Dino Mycledf0a5d92014-07-04 09:41:55 +05301726 "LL_STATS_GET reqId = %d", linkLayerStatsGetReq.reqId);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301727 hddLog(VOS_TRACE_LEVEL_INFO,
Dino Mycled3d50022014-07-07 12:58:25 +05301728 "LL_STATS_GET MAC = %pM", linkLayerStatsGetReq.macAddr);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301729 hddLog(VOS_TRACE_LEVEL_INFO,
1730 "LL_STATS_GET paramIdMask = %d",
Dino Mycledf0a5d92014-07-04 09:41:55 +05301731 linkLayerStatsGetReq.paramIdMask);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301732
1733 if (eHAL_STATUS_SUCCESS != sme_LLStatsGetReq( pHddCtx->hHal,
Dino Mycledf0a5d92014-07-04 09:41:55 +05301734 &linkLayerStatsGetReq))
Sunil Duttc69bccb2014-05-26 21:30:20 +05301735 {
1736 hddLog(VOS_TRACE_LEVEL_ERROR, "%s:"
1737 "sme_LLStatsGetReq Failed", __func__);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301738 return -EINVAL;
1739 }
1740 return 0;
1741}
1742
1743const struct
1744nla_policy
1745qca_wlan_vendor_ll_clr_policy[QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_MAX +1] =
1746{
1747 [QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_REQ_MASK] = {.type = NLA_U32 },
1748 [QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_STOP_REQ] = {.type = NLA_U8 },
1749 [QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_RSP_MASK] = {.type = NLA_U32 },
1750 [QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_STOP_RSP] = {.type = NLA_U8 },
1751};
1752
1753static int wlan_hdd_cfg80211_ll_stats_clear(struct wiphy *wiphy,
1754 struct wireless_dev *wdev,
1755 void *data,
1756 int data_len)
1757{
1758 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
1759 struct nlattr *tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_MAX + 1];
Dino Mycledf0a5d92014-07-04 09:41:55 +05301760 tSirLLStatsClearReq linkLayerStatsClearReq;
Sunil Duttc69bccb2014-05-26 21:30:20 +05301761 struct net_device *dev = wdev->netdev;
1762 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
1763 u32 statsClearReqMask;
1764 u8 stopReq;
1765 int status;
1766
1767 status = wlan_hdd_validate_context(pHddCtx);
1768 if (0 != status)
1769 {
1770 hddLog(VOS_TRACE_LEVEL_ERROR,
1771 FL("HDD context is not valid"));
1772 return -EINVAL;
1773 }
1774
1775 if (NULL == pAdapter)
1776 {
1777 hddLog(VOS_TRACE_LEVEL_FATAL,
1778 "%s: HDD adapter is Null", __func__);
1779 return -ENODEV;
1780 }
Dino Mycledf0a5d92014-07-04 09:41:55 +05301781 /* check the LLStats Capability */
1782 if ( (TRUE != pHddCtx->cfg_ini->fEnableLLStats) ||
1783 (TRUE != sme_IsFeatureSupportedByFW(LINK_LAYER_STATS_MEAS)))
1784 {
1785 hddLog(VOS_TRACE_LEVEL_ERROR,
1786 FL("Enable LLStats Capability"));
1787 return -EINVAL;
1788 }
Sunil Duttc69bccb2014-05-26 21:30:20 +05301789
1790 if (!pAdapter->isLinkLayerStatsSet)
1791 {
1792 hddLog(VOS_TRACE_LEVEL_FATAL,
1793 "%s: isLinkLayerStatsSet : %d",
1794 __func__, pAdapter->isLinkLayerStatsSet);
1795 return -EINVAL;
1796 }
1797
1798 if (nla_parse(tb_vendor, QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_MAX,
1799 (struct nlattr *)data,
1800 data_len, qca_wlan_vendor_ll_clr_policy))
1801 {
1802 hddLog(VOS_TRACE_LEVEL_ERROR, FL() );
1803 return -EINVAL;
1804 }
1805
1806 if (!tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_REQ_MASK] ||
1807
1808 !tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_STOP_REQ])
1809 {
1810 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Error in LL_STATS CLR CONFIG PARA") );
1811 return -EINVAL;
1812
1813 }
1814
Sunil Duttc69bccb2014-05-26 21:30:20 +05301815
Dino Mycledf0a5d92014-07-04 09:41:55 +05301816 statsClearReqMask = linkLayerStatsClearReq.statsClearReqMask =
Sunil Duttc69bccb2014-05-26 21:30:20 +05301817 nla_get_u32(
1818 tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_REQ_MASK]);
1819
Dino Mycledf0a5d92014-07-04 09:41:55 +05301820 stopReq = linkLayerStatsClearReq.stopReq =
Sunil Duttc69bccb2014-05-26 21:30:20 +05301821 nla_get_u8(
1822 tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_STOP_REQ]);
1823
1824 // Shall take the request Id if the Upper layers pass. 1 For now.
Dino Mycledf0a5d92014-07-04 09:41:55 +05301825 linkLayerStatsClearReq.reqId = 1;
Sunil Duttc69bccb2014-05-26 21:30:20 +05301826
Dino Mycled3d50022014-07-07 12:58:25 +05301827 vos_mem_copy(linkLayerStatsClearReq.macAddr,
1828 pAdapter->macAddressCurrent.bytes, sizeof(v_MACADDR_t));
Sunil Duttc69bccb2014-05-26 21:30:20 +05301829
1830 hddLog(VOS_TRACE_LEVEL_INFO,
Dino Mycledf0a5d92014-07-04 09:41:55 +05301831 "LL_STATS_CLEAR reqId = %d", linkLayerStatsClearReq.reqId);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301832 hddLog(VOS_TRACE_LEVEL_INFO,
Dino Mycled3d50022014-07-07 12:58:25 +05301833 "LL_STATS_CLEAR MAC = %pM", linkLayerStatsClearReq.macAddr);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301834 hddLog(VOS_TRACE_LEVEL_INFO,
1835 "LL_STATS_CLEAR statsClearReqMask = 0x%X",
Dino Mycledf0a5d92014-07-04 09:41:55 +05301836 linkLayerStatsClearReq.statsClearReqMask);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301837 hddLog(VOS_TRACE_LEVEL_INFO,
1838 "LL_STATS_CLEAR stopReq = %d",
Dino Mycledf0a5d92014-07-04 09:41:55 +05301839 linkLayerStatsClearReq.stopReq);
Sunil Duttc69bccb2014-05-26 21:30:20 +05301840
1841 if (eHAL_STATUS_SUCCESS == sme_LLStatsClearReq(pHddCtx->hHal,
Dino Mycledf0a5d92014-07-04 09:41:55 +05301842 &linkLayerStatsClearReq))
Sunil Duttc69bccb2014-05-26 21:30:20 +05301843 {
1844 struct sk_buff *temp_skbuff;
1845 temp_skbuff = cfg80211_vendor_cmd_alloc_reply_skb(wiphy,
1846 2 * sizeof(u32) +
1847 NLMSG_HDRLEN);
1848
1849 if (temp_skbuff != NULL)
1850 {
1851
1852 if (nla_put_u32(temp_skbuff,
1853 QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_RSP_MASK,
1854 statsClearReqMask) ||
1855 nla_put_u32(temp_skbuff,
1856 QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_STOP_RSP,
1857 stopReq))
1858 {
1859 hddLog(VOS_TRACE_LEVEL_ERROR, FL("LL_STATS_CLR put fail"));
1860 kfree_skb(temp_skbuff);
1861 return -EINVAL;
1862 }
1863 /* If the ask is to stop the stats collection as part of clear
1864 * (stopReq = 1) , ensure that no further requests of get
1865 * go to the firmware by having isLinkLayerStatsSet set to 0.
1866 * However it the stopReq as part of the clear request is 0 ,
Dino Mycledf0a5d92014-07-04 09:41:55 +05301867 * the request to get the statistics are honoured as in this
Sunil Duttc69bccb2014-05-26 21:30:20 +05301868 * case the firmware is just asked to clear the statistics.
1869 */
Dino Mycledf0a5d92014-07-04 09:41:55 +05301870 if (linkLayerStatsClearReq.stopReq == 1)
Sunil Duttc69bccb2014-05-26 21:30:20 +05301871 pAdapter->isLinkLayerStatsSet = 0;
1872 return cfg80211_vendor_cmd_reply(temp_skbuff);
1873 }
1874 return -ENOMEM;
1875 }
Sunil Duttc69bccb2014-05-26 21:30:20 +05301876 return -EINVAL;
1877}
1878#endif /* WLAN_FEATURE_LINK_LAYER_STATS */
1879
Dino Mycle6fb96c12014-06-10 11:52:40 +05301880#ifdef WLAN_FEATURE_EXTSCAN
1881static const struct nla_policy
1882wlan_hdd_extscan_config_policy
1883 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX + 1] =
1884{
1885 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID] =
1886 { .type = NLA_U32 },
1887 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_GET_VALID_CHANNELS_CONFIG_PARAM_WIFI_BAND] =
1888 { .type = NLA_U32 },
1889 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_CHANNEL_SPEC_CHANNEL] = { .type = NLA_U32 },
1890 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_CHANNEL_SPEC_DWELL_TIME] =
1891 { .type = NLA_U32 },
1892 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_CHANNEL_SPEC_PASSIVE] = { .type = NLA_U8 },
1893 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_CHANNEL_SPEC_CLASS] = { .type = NLA_U8 },
1894
1895 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_INDEX] = { .type = NLA_U8 },
1896 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_BAND] = { .type = NLA_U8 },
1897 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_PERIOD] = { .type = NLA_U32 },
1898 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_REPORT_EVENTS] =
1899 { .type = NLA_U8 },
1900 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_NUM_CHANNEL_SPECS] =
1901 { .type = NLA_U32 },
1902 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_SCAN_CMD_PARAMS_BASE_PERIOD] =
1903 { .type = NLA_U32 },
1904 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_SCAN_CMD_PARAMS_MAX_AP_PER_SCAN] =
1905 { .type = NLA_U32 },
1906 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_SCAN_CMD_PARAMS_REPORT_THRESHOLD] =
1907 { .type = NLA_U8 },
1908 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_SCAN_CMD_PARAMS_NUM_BUCKETS] =
1909 { .type = NLA_U8 },
1910 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_GET_CACHED_SCAN_RESULTS_CONFIG_PARAM_FLUSH] =
1911 { .type = NLA_U8 },
1912
1913 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_GET_CACHED_SCAN_RESULTS_CONFIG_PARAM_MAX] =
1914 { .type = NLA_U32 },
1915 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_BSSID] =
1916 { .type = NLA_UNSPEC },
1917 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_RSSI_LOW] =
1918 { .type = NLA_S32 },
1919 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_RSSI_HIGH] =
1920 { .type = NLA_S32 },
1921 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_CHANNEL] =
1922 { .type = NLA_U32 },
1923 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_BSSID_HOTLIST_PARAMS_NUM_AP] =
1924 { .type = NLA_U32 },
1925 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_SIGNIFICANT_CHANGE_PARAMS_RSSI_SAMPLE_SIZE] =
1926 { .type = NLA_U32 },
1927 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_SIGNIFICANT_CHANGE_PARAMS_LOST_AP_SAMPLE_SIZE]
1928 = { .type = NLA_U32 },
1929 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_SIGNIFICANT_CHANGE_PARAMS_MIN_BREACHING] =
1930 { .type = NLA_U32 },
1931 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_SIGNIFICANT_CHANGE_PARAMS_NUM_AP] = { .type =
1932 NLA_U32 },
1933};
1934
1935static void wlan_hdd_cfg80211_extscan_get_capabilities_ind(void *ctx, void *pMsg)
1936{
1937 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
1938 struct sk_buff *skb = NULL;
1939 tpSirEXTScanCapabilitiesEvent pData =
1940 (tpSirEXTScanCapabilitiesEvent) pMsg;
1941
1942 if (wlan_hdd_validate_context(pHddCtx) || !pData) {
1943 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD context is not valid "
1944 "or pData(%p) is null"), pData);
1945 return;
1946 }
1947
1948 skb = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
1949 EXTSCAN_EVENT_BUF_SIZE + NLMSG_HDRLEN,
1950 QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_GET_CAPABILITIES_INDEX,
1951 GFP_KERNEL);
1952
1953 if (!skb) {
1954 hddLog(VOS_TRACE_LEVEL_ERROR,
1955 FL("cfg80211_vendor_event_alloc failed"));
1956 return;
1957 }
1958
1959 hddLog(VOS_TRACE_LEVEL_INFO, "Req Id (%u)", pData->requestId);
1960 hddLog(VOS_TRACE_LEVEL_INFO, "Scan cache size (%u)", pData->scanCacheSize);
1961 hddLog(VOS_TRACE_LEVEL_INFO, "Scan buckets (%u)", pData->scanBuckets);
1962 hddLog(VOS_TRACE_LEVEL_INFO, "Max AP per scan (%u)", pData->maxApPerScan);
1963 hddLog(VOS_TRACE_LEVEL_INFO, "maxRssiSampleSize (%u)",
1964 pData->maxRssiSampleSize);
1965 hddLog(VOS_TRACE_LEVEL_INFO, "maxScanReportingThreshold (%u)",
1966 pData->maxScanReportingThreshold);
1967 hddLog(VOS_TRACE_LEVEL_INFO, "maxHotlistAPs (%u)", pData->maxHotlistAPs);
1968 hddLog(VOS_TRACE_LEVEL_INFO, "maxSignificantWifiChangeAPs (%u)",
1969 pData->maxSignificantWifiChangeAPs);
1970 hddLog(VOS_TRACE_LEVEL_INFO, "maxBsidHistoryEntries (%u)",
1971 pData->maxBsidHistoryEntries);
1972
1973 if (nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_REQUEST_ID,
1974 pData->requestId) ||
1975 nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_STATUS, pData->status) ||
1976 nla_put_u32(skb,
1977 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_CAPABILITIES_MAX_SCAN_CACHE_SIZE,
1978 pData->scanCacheSize) ||
1979 nla_put_u32(skb,
1980 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_CAPABILITIES_MAX_SCAN_BUCKETS,
1981 pData->scanBuckets) ||
1982 nla_put_u32(skb,
1983 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_CAPABILITIES_MAX_AP_CACHE_PER_SCAN,
1984 pData->maxApPerScan) ||
1985 nla_put_u32(skb,
1986 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_CAPABILITIES_MAX_RSSI_SAMPLE_SIZE,
1987 pData->maxRssiSampleSize) ||
1988 nla_put_u32(skb,
1989 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_CAPABILITIES_MAX_SCAN_REPORTING_THRESHOLD,
1990 pData->maxScanReportingThreshold) ||
1991 nla_put_u32(skb,
1992 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_CAPABILITIES_MAX_HOTLIST_APS,
1993 pData->maxHotlistAPs) ||
1994 nla_put_u32(skb,
1995 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_CAPABILITIES_MAX_SIGNIFICANT_WIFI_CHANGE_APS,
1996 pData->maxSignificantWifiChangeAPs) ||
1997 nla_put_u32(skb,
1998 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_CAPABILITIES_MAX_BSSID_HISTORY_ENTRIES,
1999 pData->maxBsidHistoryEntries)) {
2000 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla put fail"));
2001 goto nla_put_failure;
2002 }
2003
2004 cfg80211_vendor_event(skb, GFP_KERNEL);
2005 return;
2006
2007nla_put_failure:
2008 kfree_skb(skb);
2009 return;
2010}
2011
2012
2013static void wlan_hdd_cfg80211_extscan_start_rsp(void *ctx, void *pMsg)
2014{
2015 tpSirEXTScanStartRspParams pData = (tpSirEXTScanStartRspParams) pMsg;
2016 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
2017 struct sk_buff *skb = NULL;
2018 tpAniSirGlobal pMac = PMAC_STRUCT( pHddCtx->hHal );
2019
2020
2021 if (wlan_hdd_validate_context(pHddCtx) || !pData) {
2022 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD context is not valid "
2023 "or pData(%p) is null"), pData);
2024 return;
2025 }
2026
2027 skb = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
2028 EXTSCAN_EVENT_BUF_SIZE + NLMSG_HDRLEN,
2029 QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_START_INDEX,
2030 GFP_KERNEL);
2031
2032 if (!skb) {
2033 hddLog(VOS_TRACE_LEVEL_ERROR,
2034 FL("cfg80211_vendor_event_alloc failed"));
2035 return;
2036 }
2037 hddLog(VOS_TRACE_LEVEL_INFO, FL("Entering "));
2038 hddLog(VOS_TRACE_LEVEL_INFO, "Req Id (%u)", pData->requestId);
2039 hddLog(VOS_TRACE_LEVEL_INFO, "Status (%u)", pData->status);
2040
2041 if (nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_REQUEST_ID,
2042 pData->requestId) ||
2043 nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_STATUS, pData->status)) {
2044 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla put fail"));
2045 goto nla_put_failure;
2046 }
2047
2048 /*
2049 * Store the Request ID for comparing with the requestID obtained
2050 * in other requests.HDD shall return a failure is the extscan_stop
2051 * request is issued with a different requestId as that of the
2052 * extscan_start request. Also, This requestId shall be used while
2053 * indicating the full scan results to the upper layers.
2054 * The requestId is stored with the assumption that the firmware
2055 * shall return the ext scan start request's requestId in ext scan
2056 * start response.
2057 */
2058 if (pData->status == 0)
2059 pMac->sme.extScanStartReqId = pData->requestId;
2060
2061
2062 cfg80211_vendor_event(skb, GFP_KERNEL);
2063 return;
2064
2065nla_put_failure:
2066 kfree_skb(skb);
2067 return;
2068}
2069
2070
2071static void wlan_hdd_cfg80211_extscan_stop_rsp(void *ctx, void *pMsg)
2072{
2073 tpSirEXTScanStopRspParams pData = (tpSirEXTScanStopRspParams) pMsg;
2074 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
2075 struct sk_buff *skb = NULL;
2076
2077 if (wlan_hdd_validate_context(pHddCtx) || !pData) {
2078 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD context is not valid "
2079 "or pData(%p) is null"), pData);
2080 return;
2081 }
2082
2083 skb = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
2084 EXTSCAN_EVENT_BUF_SIZE + NLMSG_HDRLEN,
2085 QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_STOP_INDEX,
2086 GFP_KERNEL);
2087
2088 if (!skb) {
2089 hddLog(VOS_TRACE_LEVEL_ERROR,
2090 FL("cfg80211_vendor_event_alloc failed"));
2091 return;
2092 }
2093 hddLog(VOS_TRACE_LEVEL_INFO, FL("Entering "));
2094 hddLog(VOS_TRACE_LEVEL_INFO, "Req Id (%u)", pData->requestId);
2095
2096 if (nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_REQUEST_ID,
2097 pData->requestId) ||
2098 nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_STATUS, pData->status)) {
2099 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla put fail"));
2100 goto nla_put_failure;
2101 }
2102
2103 cfg80211_vendor_event(skb, GFP_KERNEL);
2104 return;
2105
2106nla_put_failure:
2107 kfree_skb(skb);
2108 return;
2109}
2110
2111
2112static void wlan_hdd_cfg80211_extscan_set_bss_hotlist_rsp(void *ctx,
2113 void *pMsg)
2114{
2115 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
2116 struct sk_buff *skb = NULL;
2117 tpSirEXTScanSetBssidHotListRspParams pData =
2118 (tpSirEXTScanSetBssidHotListRspParams) pMsg;
2119
2120 if (wlan_hdd_validate_context(pHddCtx) || !pData) {
2121 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD context is not valid "
2122 "or pData(%p) is null"), pData);
2123 return;
2124 }
2125 skb = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
2126 EXTSCAN_EVENT_BUF_SIZE + NLMSG_HDRLEN,
2127 QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_SET_BSSID_HOTLIST_INDEX,
2128 GFP_KERNEL);
2129
2130 if (!skb) {
2131 hddLog(VOS_TRACE_LEVEL_ERROR,
2132 FL("cfg80211_vendor_event_alloc failed"));
2133 return;
2134 }
2135 hddLog(VOS_TRACE_LEVEL_INFO, FL("Entering "));
2136 hddLog(VOS_TRACE_LEVEL_INFO, "Req Id (%u)", pData->requestId);
2137 hddLog(VOS_TRACE_LEVEL_INFO, "Status (%u)", pData->status);
2138
2139 if (nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_REQUEST_ID,
2140 pData->requestId) ||
2141 nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_STATUS, pData->status)) {
2142 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla put fail"));
2143 goto nla_put_failure;
2144 }
2145
2146 cfg80211_vendor_event(skb, GFP_KERNEL);
2147 return;
2148
2149nla_put_failure:
2150 kfree_skb(skb);
2151 return;
2152}
2153
2154static void wlan_hdd_cfg80211_extscan_reset_bss_hotlist_rsp(void *ctx,
2155 void *pMsg)
2156{
2157 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
2158 struct sk_buff *skb = NULL;
2159 tpSirEXTScanResetBssidHotlistRspParams pData =
2160 (tpSirEXTScanResetBssidHotlistRspParams) pMsg;
2161
2162 if (wlan_hdd_validate_context(pHddCtx) || !pData) {
2163 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD context is not valid "
2164 "or pData(%p) is null"), pData);
2165 return;
2166 }
2167
2168 skb = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
2169 EXTSCAN_EVENT_BUF_SIZE + NLMSG_HDRLEN,
2170 QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_RESET_BSSID_HOTLIST_INDEX,
2171 GFP_KERNEL);
2172
2173 if (!skb) {
2174 hddLog(VOS_TRACE_LEVEL_ERROR,
2175 FL("cfg80211_vendor_event_alloc failed"));
2176 return;
2177 }
2178 hddLog(VOS_TRACE_LEVEL_INFO, FL("Entering "));
2179 hddLog(VOS_TRACE_LEVEL_INFO, "Req Id (%u)", pData->requestId);
2180
2181 if (nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_REQUEST_ID,
2182 pData->requestId) ||
2183 nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_STATUS, pData->status)) {
2184 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla put fail"));
2185 goto nla_put_failure;
2186 }
2187
2188 cfg80211_vendor_event(skb, GFP_KERNEL);
2189 return;
2190
2191nla_put_failure:
2192 kfree_skb(skb);
2193 return;
2194}
2195
2196
2197static void wlan_hdd_cfg80211_extscan_set_signf_wifi_change_rsp(void *ctx,
2198 void *pMsg)
2199{
2200 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
2201 struct sk_buff *skb = NULL;
2202 tpSirEXTScanSetSignificantChangeRspParams pData =
2203 (tpSirEXTScanSetSignificantChangeRspParams) pMsg;
2204
2205 if (wlan_hdd_validate_context(pHddCtx) || !pData) {
2206 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD context is not valid "
2207 "or pData(%p) is null"), pData);
2208 return;
2209 }
2210
2211 skb = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
2212 EXTSCAN_EVENT_BUF_SIZE + NLMSG_HDRLEN,
2213 QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_SET_SIGNIFICANT_CHANGE_INDEX,
2214 GFP_KERNEL);
2215
2216 if (!skb) {
2217 hddLog(VOS_TRACE_LEVEL_ERROR,
2218 FL("cfg80211_vendor_event_alloc failed"));
2219 return;
2220 }
2221 hddLog(VOS_TRACE_LEVEL_INFO, FL("Entering "));
2222 hddLog(VOS_TRACE_LEVEL_INFO, "Req Id (%u)", pData->requestId);
2223 hddLog(VOS_TRACE_LEVEL_INFO, "Status (%u)", pData->status);
2224
2225 if (nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_REQUEST_ID,
2226 pData->requestId) ||
2227 nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_STATUS, pData->status)) {
2228 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla put fail"));
2229 goto nla_put_failure;
2230 }
2231
2232 cfg80211_vendor_event(skb, GFP_KERNEL);
2233 return;
2234
2235nla_put_failure:
2236 kfree_skb(skb);
2237 return;
2238}
2239
2240
2241static void wlan_hdd_cfg80211_extscan_reset_signf_wifi_change_rsp(void *ctx,
2242 void *pMsg)
2243{
2244 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
2245 struct sk_buff *skb = NULL;
2246 tpSirEXTScanResetSignificantChangeRspParams pData =
2247 (tpSirEXTScanResetSignificantChangeRspParams) pMsg;
2248
2249 if (wlan_hdd_validate_context(pHddCtx) || !pData) {
2250 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD context is not valid "
2251 "or pData(%p) is null"), pData);
2252 return;
2253 }
2254
2255 skb = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
2256 EXTSCAN_EVENT_BUF_SIZE + NLMSG_HDRLEN,
2257 QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_RESET_SIGNIFICANT_CHANGE_INDEX,
2258 GFP_KERNEL);
2259
2260 if (!skb) {
2261 hddLog(VOS_TRACE_LEVEL_ERROR,
2262 FL("cfg80211_vendor_event_alloc failed"));
2263 return;
2264 }
2265 hddLog(VOS_TRACE_LEVEL_INFO, FL("Entering "));
2266 hddLog(VOS_TRACE_LEVEL_INFO, "Req Id (%u)", pData->requestId);
2267 hddLog(VOS_TRACE_LEVEL_INFO, "Status (%u)", pData->status);
2268
2269 if (nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_REQUEST_ID,
2270 pData->requestId) ||
2271 nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_STATUS, pData->status)) {
2272 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla put fail"));
2273 goto nla_put_failure;
2274 }
2275
2276 cfg80211_vendor_event(skb, GFP_KERNEL);
2277 return;
2278
2279nla_put_failure:
2280 kfree_skb(skb);
2281 return;
2282}
2283
2284static void wlan_hdd_cfg80211_extscan_cached_results_ind(void *ctx,
2285 void *pMsg)
2286{
2287 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
2288 struct sk_buff *skb = NULL;
2289 tANI_U32 i = 0, j, resultsPerEvent;
2290 tANI_S32 totalResults;
2291 tpSirWifiScanResultEvent pData = (tpSirWifiScanResultEvent) pMsg;
2292 tpSirWifiScanResult pSirWifiScanResult;
2293
2294 if (wlan_hdd_validate_context(pHddCtx) || !pData) {
2295 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD context is not valid "
2296 "or pData(%p) is null"), pData);
2297 return;
2298 }
2299 totalResults = pData->numOfAps;
2300 hddLog(VOS_TRACE_LEVEL_INFO, "Req Id (%u)", pData->requestId);
2301 hddLog(VOS_TRACE_LEVEL_INFO, "Num results (%u)", pData->numOfAps);
2302 hddLog(VOS_TRACE_LEVEL_INFO, "More Data (%u)", pData->moreData);
2303
2304 do{
2305 resultsPerEvent = ((totalResults >= EXTSCAN_MAX_CACHED_RESULTS_PER_IND) ?
2306 EXTSCAN_MAX_CACHED_RESULTS_PER_IND : totalResults);
2307 totalResults -= EXTSCAN_MAX_CACHED_RESULTS_PER_IND;
2308
2309 skb = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
2310 EXTSCAN_EVENT_BUF_SIZE + NLMSG_HDRLEN,
2311 QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_GET_CACHED_RESULTS_INDEX,
2312 GFP_KERNEL);
2313
2314 if (!skb) {
2315 hddLog(VOS_TRACE_LEVEL_ERROR,
2316 FL("cfg80211_vendor_event_alloc failed"));
2317 return;
2318 }
2319
2320 hddLog(VOS_TRACE_LEVEL_INFO, "resultsPerEvent (%u)", resultsPerEvent);
2321
2322 if (nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_REQUEST_ID,
2323 pData->requestId) ||
2324 nla_put_u32(skb,
2325 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_NUM_RESULTS_AVAILABLE,
2326 resultsPerEvent)) {
2327 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2328 goto fail;
2329 }
2330 if (nla_put_u8(skb,
2331 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_MORE_DATA,
2332 pData->moreData ? 1 : (totalResults > 0 ? 1 : 0 )))
2333 {
2334 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2335 goto fail;
2336 }
2337
2338 if (resultsPerEvent) {
2339 struct nlattr *aps;
2340
2341 aps = nla_nest_start(skb,
2342 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_LIST);
2343 if (!aps)
2344 {
2345 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2346 goto fail;
2347 }
2348
2349 for (j = 0; j < resultsPerEvent; j++, i++) {
2350 struct nlattr *ap;
2351 pSirWifiScanResult = (tpSirWifiScanResult) ((tANI_U8 *)
2352 pData->ap + ( i* sizeof(tSirWifiScanResult)));
2353
2354 hddLog(VOS_TRACE_LEVEL_INFO, "[index=%u] Timestamp(%llu) "
2355 "Ssid (%s)"
2356 "Bssid: %pM "
2357 "Channel (%u)"
2358 "Rssi (%d)"
2359 "RTT (%u)"
2360 "RTT_SD (%u)",
2361 i,
2362 pSirWifiScanResult->ts,
2363 pSirWifiScanResult->ssid,
2364 pSirWifiScanResult->bssid,
2365 pSirWifiScanResult->channel,
2366 pSirWifiScanResult->rssi,
2367 pSirWifiScanResult->rtt,
2368 pSirWifiScanResult->rtt_sd);
2369
2370 ap = nla_nest_start(skb, j + 1);
2371 if (!ap)
2372 {
2373 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2374 goto fail;
2375 }
2376
2377 if (nla_put_u64(skb,
2378 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_TIME_STAMP,
2379 pSirWifiScanResult->ts) )
2380 {
2381 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2382 goto fail;
2383 }
2384 if (nla_put(skb,
2385 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_SSID,
2386 sizeof(pSirWifiScanResult->ssid),
2387 pSirWifiScanResult->ssid) )
2388 {
2389 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2390 goto fail;
2391 }
2392 if (nla_put(skb,
2393 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_BSSID,
2394 sizeof(pSirWifiScanResult->bssid),
2395 pSirWifiScanResult->bssid) )
2396 {
2397 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2398 goto fail;
2399 }
2400 if (nla_put_u32(skb,
2401 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_CHANNEL,
2402 pSirWifiScanResult->channel) )
2403 {
2404 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2405 goto fail;
2406 }
2407 if (nla_put_u32(skb,
2408 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_RSSI,
2409 pSirWifiScanResult->rssi) )
2410 {
2411 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2412 goto fail;
2413 }
2414 if (nla_put_u32(skb,
2415 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_RTT,
2416 pSirWifiScanResult->rtt) )
2417 {
2418 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2419 goto fail;
2420 }
2421 if (nla_put_u32(skb,
2422 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_RTT_SD,
2423 pSirWifiScanResult->rtt_sd))
2424 {
2425 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2426 goto fail;
2427 }
2428
2429 nla_nest_end(skb, ap);
2430 }
2431 nla_nest_end(skb, aps);
2432
2433 }
2434 cfg80211_vendor_event(skb, GFP_KERNEL);
2435 } while (totalResults > 0);
2436
2437 return;
2438fail:
2439 kfree_skb(skb);
2440 return;
2441}
2442
2443static void wlan_hdd_cfg80211_extscan_hotlist_match_ind(void *ctx,
2444 void *pMsg)
2445{
2446 tpSirWifiScanResultEvent pData = (tpSirWifiScanResultEvent) pMsg;
2447 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
2448 struct sk_buff *skb = NULL;
2449 tANI_U32 i;
2450
2451 if (wlan_hdd_validate_context(pHddCtx) || !pData) {
2452 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD context is not valid "
2453 "or pData(%p) is null"), pData);
2454 return;
2455 }
2456
2457 skb = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
2458 EXTSCAN_EVENT_BUF_SIZE + NLMSG_HDRLEN,
2459 QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_HOTLIST_AP_FOUND_INDEX,
2460 GFP_KERNEL);
2461
2462 if (!skb) {
2463 hddLog(VOS_TRACE_LEVEL_ERROR,
2464 FL("cfg80211_vendor_event_alloc failed"));
2465 return;
2466 }
2467 hddLog(VOS_TRACE_LEVEL_INFO, FL("Entering "));
2468 hddLog(VOS_TRACE_LEVEL_INFO, "Req Id (%u)", pData->requestId);
2469 hddLog(VOS_TRACE_LEVEL_INFO, "Num results (%u)", pData->numOfAps);
2470 hddLog(VOS_TRACE_LEVEL_INFO, "More Data (%u)", pData->moreData);
2471
2472 for (i = 0; i < pData->numOfAps; i++) {
2473 hddLog(VOS_TRACE_LEVEL_INFO, "[index=%u] Timestamp(0x%lld) "
2474 "Ssid (%s) "
2475 "Bssid (" MAC_ADDRESS_STR ") "
2476 "Channel (%u) "
2477 "Rssi (%d) "
2478 "RTT (%u) "
2479 "RTT_SD (%u) ",
2480 i,
2481 pData->ap[i].ts,
2482 pData->ap[i].ssid,
2483 MAC_ADDR_ARRAY(pData->ap[i].bssid),
2484 pData->ap[i].channel,
2485 pData->ap[i].rssi,
2486 pData->ap[i].rtt,
2487 pData->ap[i].rtt_sd);
2488 }
2489
2490 if (nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_REQUEST_ID,
2491 pData->requestId) ||
2492 nla_put_u32(skb,
2493 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_NUM_RESULTS_AVAILABLE,
2494 pData->numOfAps)) {
2495 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2496 goto fail;
2497 }
2498 if (pData->numOfAps) {
2499 struct nlattr *aps;
2500
2501 aps = nla_nest_start(skb,
2502 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_LIST);
2503 if (!aps)
2504 goto fail;
2505
2506 for (i = 0; i < pData->numOfAps; i++) {
2507 struct nlattr *ap;
2508
2509 ap = nla_nest_start(skb, i + 1);
2510 if (!ap)
2511 goto fail;
2512
2513 if (nla_put_u64(skb,
2514 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_TIME_STAMP,
2515 pData->ap[i].ts) ||
2516 nla_put(skb,
2517 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_SSID,
2518 sizeof(pData->ap[i].ssid),
2519 pData->ap[i].ssid) ||
2520 nla_put(skb,
2521 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_BSSID,
2522 sizeof(pData->ap[i].bssid),
2523 pData->ap[i].bssid) ||
2524 nla_put_u32(skb,
2525 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_CHANNEL,
2526 pData->ap[i].channel) ||
2527 nla_put_s32(skb,
2528 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_RSSI,
2529 pData->ap[i].rssi) ||
2530 nla_put_u32(skb,
2531 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_RTT,
2532 pData->ap[i].rtt) ||
2533 nla_put_u32(skb,
2534 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_RTT_SD,
2535 pData->ap[i].rtt_sd))
2536 goto fail;
2537
2538 nla_nest_end(skb, ap);
2539 }
2540 nla_nest_end(skb, aps);
2541
2542 if (nla_put_u8(skb,
2543 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_MORE_DATA,
2544 pData->moreData))
2545 goto fail;
2546 }
2547
2548 cfg80211_vendor_event(skb, GFP_KERNEL);
2549 return;
2550
2551fail:
2552 kfree_skb(skb);
2553 return;
2554
2555}
2556static void wlan_hdd_cfg80211_extscan_signif_wifi_change_results_ind(void *ctx,
2557 void *pMsg)
2558{
2559 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
2560 struct sk_buff *skb = NULL;
2561 tANI_U32 i, j;
2562 tpSirWifiSignificantChangeEvent pData =
2563 (tpSirWifiSignificantChangeEvent) pMsg;
2564
2565 if (wlan_hdd_validate_context(pHddCtx) || !pData) {
2566 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD context is not valid "
2567 "or pData(%p) is null"), pData);
2568 return;
2569 }
2570 skb = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
2571 EXTSCAN_EVENT_BUF_SIZE,
2572 QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_SIGNIFICANT_CHANGE_INDEX,
2573 GFP_KERNEL);
2574
2575 if (!skb) {
2576 hddLog(VOS_TRACE_LEVEL_ERROR,
2577 FL("cfg80211_vendor_event_alloc failed"));
2578 return;
2579 }
2580 hddLog(VOS_TRACE_LEVEL_INFO, FL("Entering "));
2581 hddLog(VOS_TRACE_LEVEL_INFO, "Req Id (%u)", pData->requestId);
2582 hddLog(VOS_TRACE_LEVEL_INFO, "total List Size %u ", pData->numSigRssiBss);
2583 hddLog(VOS_TRACE_LEVEL_INFO, " CUrrent List size (%u)",
2584 pData->numSigRssiBss);
2585 hddLog(VOS_TRACE_LEVEL_INFO, "moreData (%u)", pData->moreData);
2586
2587 for (i = 0; i < pData->numSigRssiBss; i++) {
2588 hddLog(VOS_TRACE_LEVEL_INFO , "Rssi List [%d] BSSID: (%pM) Channel %u "
2589 " num RSSI %u ",
2590 i, pData->sigRssiResult[i].bssid,
2591 pData->sigRssiResult[i].channel,
2592 pData->sigRssiResult[i].numRssi);
2593
2594 for (j = 0; j < pData->sigRssiResult[i].numRssi; j++){
2595
2596 hddLog(VOS_TRACE_LEVEL_INFO,
2597 " [%d]",
Dino Myclec8f3f332014-07-21 16:48:27 +05302598 pData->sigRssiResult[i].rssi[j]);
Dino Mycle6fb96c12014-06-10 11:52:40 +05302599
2600 }
2601 }
2602
2603
2604 if (nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_REQUEST_ID,
2605 pData->requestId) ||
2606 nla_put_u32(skb,
2607 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_NUM_RESULTS_AVAILABLE,
2608 pData->numSigRssiBss)) {
2609 hddLog(VOS_TRACE_LEVEL_ERROR, FL("put fail"));
2610 goto fail;
2611 }
2612
2613 if (pData->numSigRssiBss) {
2614 struct nlattr *aps;
2615 aps = nla_nest_start(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_LIST);
2616 if (!aps)
2617 goto fail;
2618 for (i = 0; i < pData->numSigRssiBss; i++) {
2619 struct nlattr *ap;
2620
2621 ap = nla_nest_start(skb, i);
2622 if (!ap)
2623 goto fail;
2624 if (nla_put(skb,
2625 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SIGNIFICANT_CHANGE_RESULT_BSSID,
2626 sizeof(tSirMacAddr), pData->sigRssiResult[i].bssid) ||
2627 nla_put_u32(skb,
2628 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SIGNIFICANT_CHANGE_RESULT_CHANNEL,
2629 pData->sigRssiResult[i].channel) ||
2630 nla_put_u32(skb,
2631 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SIGNIFICANT_CHANGE_RESULT_NUM_RSSI,
2632 pData->sigRssiResult[i].numRssi) ||
2633 nla_put(skb,
2634 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SIGNIFICANT_CHANGE_RESULT_RSSI_LIST,
2635 sizeof(s32) * pData->sigRssiResult[i].numRssi,
2636 pData->sigRssiResult[i].rssi))
2637 goto fail;
2638 nla_nest_end(skb, ap);
2639 }
2640 nla_nest_end(skb, aps);
2641 if (nla_put_u8(skb,
2642 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_MORE_DATA,
2643 pData->moreData))
2644 goto fail;
2645 }
2646 cfg80211_vendor_event(skb, GFP_KERNEL);
2647 return;
2648fail:
2649 kfree_skb(skb);
2650 return;
2651}
2652
2653static void wlan_hdd_cfg80211_extscan_full_scan_result_event(void *ctx,
2654 void *pMsg)
2655{
2656 struct sk_buff *skb;
2657 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
2658 tpSirWifiFullScanResultEvent pData =
2659 (tpSirWifiFullScanResultEvent) (pMsg);
2660
2661 if (wlan_hdd_validate_context(pHddCtx) || !pData) {
2662 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD context is not valid "
2663 "or pData(%p) is null"), pData);
2664 return;
2665 }
2666
2667 skb = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
2668 EXTSCAN_EVENT_BUF_SIZE + NLMSG_HDRLEN,
2669 QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_FULL_SCAN_RESULT_INDEX,
2670 GFP_KERNEL);
2671
2672 if (!skb) {
2673 hddLog(VOS_TRACE_LEVEL_ERROR,
2674 FL("cfg80211_vendor_event_alloc failed"));
2675 return;
2676 }
2677
2678 hddLog(VOS_TRACE_LEVEL_INFO, FL("Entering "));
2679 hddLog(VOS_TRACE_LEVEL_INFO, FL("Req Id (%u)"), pData->requestId);
2680 hddLog(VOS_TRACE_LEVEL_INFO, FL("More Data (%u)"), pData->moreData);
2681 hddLog(VOS_TRACE_LEVEL_INFO, FL("AP Info: Timestamp(0x%llX) "
2682 "Ssid (%s)"
2683 "Bssid (" MAC_ADDRESS_STR ")"
2684 "Channel (%u)"
2685 "Rssi (%d)"
2686 "RTT (%u)"
2687 "RTT_SD (%u)"),
2688 pData->ap.ts,
2689 pData->ap.ssid,
2690 MAC_ADDR_ARRAY(pData->ap.bssid),
2691 pData->ap.channel,
2692 pData->ap.rssi,
2693 pData->ap.rtt,
2694 pData->ap.rtt_sd);
2695 hddLog(VOS_TRACE_LEVEL_INFO, "IE Length (%u)", pData->ieLength);
2696 if (nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_REQUEST_ID,
2697 pData->requestId) ||
2698 nla_put_u64(skb,
2699 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_TIME_STAMP,
2700 pData->ap.ts) ||
2701 nla_put(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_SSID,
2702 sizeof(pData->ap.ssid),
2703 pData->ap.ssid) ||
2704 nla_put(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_BSSID,
2705 WNI_CFG_BSSID_LEN,
2706 pData->ap.bssid) ||
2707 nla_put_u32(skb,
2708 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_CHANNEL,
2709 pData->ap.channel) ||
2710 nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_RSSI,
2711 pData->ap.rssi) ||
2712 nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_RTT,
2713 pData->ap.rtt) ||
2714 nla_put_u32(skb,
2715 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_RTT_SD,
2716 pData->ap.rtt_sd) ||
2717 nla_put_u16(skb,
2718 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_BEACON_PERIOD,
2719 pData->ap.beaconPeriod) ||
2720 nla_put_u16(skb,
2721 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_CAPABILITY,
2722 pData->ap.capability) ||
2723 nla_put_u32(skb,
2724 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_IE_LENGTH,
2725 pData->ieLength))
2726 {
2727 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla put fail"));
2728 goto nla_put_failure;
2729 }
2730 if (nla_put(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_RESULT_IE_DATA,
2731 pData->ieLength,
2732 pData->ie))
2733 {
2734 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla put fail"));
2735 goto nla_put_failure;
2736 }
2737
2738 cfg80211_vendor_event(skb, GFP_KERNEL);
2739 return;
2740
2741nla_put_failure:
2742 kfree_skb(skb);
2743 return;
2744}
2745
2746static void wlan_hdd_cfg80211_extscan_scan_res_available_event(void *ctx,
2747 void *pMsg)
2748{
2749 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
2750 struct sk_buff *skb = NULL;
2751 tpSirEXTScanResultsAvailableIndParams pData =
2752 (tpSirEXTScanResultsAvailableIndParams) pMsg;
2753
2754 if (wlan_hdd_validate_context(pHddCtx) || !pData) {
2755 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD context is not valid "
2756 "or pData(%p) is null"), pData);
2757 return;
2758 }
2759
2760 skb = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
2761 EXTSCAN_EVENT_BUF_SIZE + NLMSG_HDRLEN,
2762 QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_SCAN_RESULTS_AVAILABLE_INDEX,
2763 GFP_KERNEL);
2764
2765 if (!skb) {
2766 hddLog(VOS_TRACE_LEVEL_ERROR,
2767 FL("cfg80211_vendor_event_alloc failed"));
2768 return;
2769 }
2770
2771 hddLog(VOS_TRACE_LEVEL_INFO, FL("Entering "));
2772 hddLog(VOS_TRACE_LEVEL_INFO, "Req Id (%u)", pData->requestId);
2773 hddLog(VOS_TRACE_LEVEL_INFO, "Num results (%u)",
2774 pData->numResultsAvailable);
2775 if (nla_put_u32(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_REQUEST_ID,
2776 pData->requestId) ||
2777 nla_put_u32(skb,
2778 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_NUM_RESULTS_AVAILABLE,
2779 pData->numResultsAvailable)) {
2780 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla put fail"));
2781 goto nla_put_failure;
2782 }
2783
2784 cfg80211_vendor_event(skb, GFP_KERNEL);
2785 return;
2786
2787nla_put_failure:
2788 kfree_skb(skb);
2789 return;
2790}
2791
2792static void wlan_hdd_cfg80211_extscan_scan_progress_event(void *ctx, void *pMsg)
2793{
2794 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
2795 struct sk_buff *skb = NULL;
2796 tpSirEXTScanProgressIndParams pData =
2797 (tpSirEXTScanProgressIndParams) pMsg;
2798
2799 if (wlan_hdd_validate_context(pHddCtx) || !pData) {
2800 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD context is not valid "
2801 "or pData(%p) is null"), pData);
2802 return;
2803 }
2804
2805 skb = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
2806 EXTSCAN_EVENT_BUF_SIZE + NLMSG_HDRLEN,
2807 QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_SCAN_EVENT_INDEX,
2808 GFP_KERNEL);
2809
2810 if (!skb) {
2811 hddLog(VOS_TRACE_LEVEL_ERROR,
2812 FL("cfg80211_vendor_event_alloc failed"));
2813 return;
2814 }
2815 hddLog(VOS_TRACE_LEVEL_INFO, FL("Entering "));
2816 hddLog(VOS_TRACE_LEVEL_INFO, "Scan event type (%u)",
2817 pData->extScanEventType);
2818 hddLog(VOS_TRACE_LEVEL_INFO, "Scan event status (%u)",
2819 pData->status);
2820
2821 if (nla_put_u8(skb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_EVENT_TYPE,
2822 pData->extScanEventType) ||
2823 nla_put_u32(skb,
Dasari Srinivas5a288652014-06-30 17:13:22 +05302824 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_REQUEST_ID,
2825 pData->requestId) ||
2826 nla_put_u32(skb,
Dino Mycle6fb96c12014-06-10 11:52:40 +05302827 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_SCAN_EVENT_STATUS,
2828 pData->status)) {
2829 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla put fail"));
2830 goto nla_put_failure;
2831 }
2832
2833 cfg80211_vendor_event(skb, GFP_KERNEL);
2834 return;
2835
2836nla_put_failure:
2837 kfree_skb(skb);
2838 return;
2839}
2840
2841void wlan_hdd_cfg80211_extscan_callback(void *ctx, const tANI_U16 evType,
2842 void *pMsg)
2843{
2844 hdd_context_t *pHddCtx = (hdd_context_t *)ctx;
2845
2846 if (wlan_hdd_validate_context(pHddCtx)) {
2847 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD context is not valid"));
2848 return;
2849 }
2850
2851 hddLog(VOS_TRACE_LEVEL_INFO, FL("Rcvd Event (%d)"), evType);
2852
2853
2854 switch(evType) {
2855 case SIR_HAL_EXTSCAN_START_RSP:
2856 wlan_hdd_cfg80211_extscan_start_rsp(ctx, pMsg);
2857 break;
2858
2859 case SIR_HAL_EXTSCAN_STOP_RSP:
2860 wlan_hdd_cfg80211_extscan_stop_rsp(ctx, pMsg);
2861 break;
2862 case SIR_HAL_EXTSCAN_GET_CACHED_RESULTS_RSP:
2863 /* There is no need to send this response to upper layer
2864 Just log the message */
2865 hddLog(VOS_TRACE_LEVEL_INFO,
2866 FL("Rcvd SIR_HAL_EXTSCAN_CACHED_RESULTS_RSP"));
2867 break;
2868 case SIR_HAL_EXTSCAN_SET_BSS_HOTLIST_RSP:
2869 wlan_hdd_cfg80211_extscan_set_bss_hotlist_rsp(ctx, pMsg);
2870 break;
2871
2872 case SIR_HAL_EXTSCAN_RESET_BSS_HOTLIST_RSP:
2873 wlan_hdd_cfg80211_extscan_reset_bss_hotlist_rsp(ctx, pMsg);
2874 break;
2875
2876 case SIR_HAL_EXTSCAN_SET_SIGNF_RSSI_CHANGE_RSP:
2877 wlan_hdd_cfg80211_extscan_set_signf_wifi_change_rsp(ctx, pMsg);
2878 break;
2879
2880 case SIR_HAL_EXTSCAN_RESET_SIGNF_RSSI_CHANGE_RSP:
2881 wlan_hdd_cfg80211_extscan_reset_signf_wifi_change_rsp(ctx, pMsg);
2882 break;
2883 case SIR_HAL_EXTSCAN_GET_CAPABILITIES_RSP:
2884 wlan_hdd_cfg80211_extscan_get_capabilities_ind(ctx, pMsg);
2885 break;
2886 case SIR_HAL_EXTSCAN_PROGRESS_IND:
2887 wlan_hdd_cfg80211_extscan_scan_progress_event(ctx, pMsg);
2888 break;
2889 case SIR_HAL_EXTSCAN_SCAN_AVAILABLE_IND:
2890 wlan_hdd_cfg80211_extscan_scan_res_available_event(ctx, pMsg);
2891 break;
2892 case SIR_HAL_EXTSCAN_SCAN_RESULT_IND:
2893 wlan_hdd_cfg80211_extscan_cached_results_ind(ctx, pMsg);
2894 break;
2895 case SIR_HAL_EXTSCAN_HOTLIST_MATCH_IND:
2896 wlan_hdd_cfg80211_extscan_hotlist_match_ind(ctx, pMsg);
2897 break;
2898 case SIR_HAL_EXTSCAN_SIGNF_WIFI_CHANGE_IND:
2899 wlan_hdd_cfg80211_extscan_signif_wifi_change_results_ind(ctx, pMsg);
2900 break;
2901 case SIR_HAL_EXTSCAN_FULL_SCAN_RESULT_IND:
2902 wlan_hdd_cfg80211_extscan_full_scan_result_event(ctx, pMsg);
2903 break;
2904 default:
2905 hddLog(VOS_TRACE_LEVEL_ERROR, FL("invalid event type %d "), evType);
2906 break;
2907 }
2908}
2909
2910static int wlan_hdd_cfg80211_extscan_get_capabilities(struct wiphy *wiphy,
2911 struct wireless_dev *wdev,
2912 void *data, int dataLen)
2913{
Dino Myclee8843b32014-07-04 14:21:45 +05302914 tSirGetEXTScanCapabilitiesReqParams reqMsg;
Dino Mycle6fb96c12014-06-10 11:52:40 +05302915 struct net_device *dev = wdev->netdev;
2916 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
2917 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
2918 struct nlattr
2919 *tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX + 1];
2920 eHalStatus status;
2921
2922 hddLog(VOS_TRACE_LEVEL_INFO, FL("Entering"));
2923 status = wlan_hdd_validate_context(pHddCtx);
2924 if (0 != status)
2925 {
2926 hddLog(VOS_TRACE_LEVEL_ERROR,
2927 FL("HDD context is not valid"));
2928 return -EINVAL;
2929 }
Dino Myclee8843b32014-07-04 14:21:45 +05302930 /* check the EXTScan Capability */
2931 if ( (TRUE != pHddCtx->cfg_ini->fEnableEXTScan) ||
2932 (TRUE != sme_IsFeatureSupportedByFW(EXTENDED_SCAN)))
2933 {
2934 hddLog(VOS_TRACE_LEVEL_ERROR,
2935 FL("EXTScan not enabled/supported by Firmware"));
2936 return -EINVAL;
2937 }
2938
Dino Mycle6fb96c12014-06-10 11:52:40 +05302939 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX,
2940 data, dataLen,
2941 wlan_hdd_extscan_config_policy)) {
2942 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid ATTR"));
2943 return -EINVAL;
2944 }
2945
2946 /* Parse and fetch request Id */
2947 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]) {
2948 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr request id failed"));
2949 return -EINVAL;
2950 }
2951
Dino Mycle6fb96c12014-06-10 11:52:40 +05302952
Dino Myclee8843b32014-07-04 14:21:45 +05302953 reqMsg.requestId = nla_get_u32(
Dino Mycle6fb96c12014-06-10 11:52:40 +05302954 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]);
Dino Myclee8843b32014-07-04 14:21:45 +05302955 hddLog(VOS_TRACE_LEVEL_INFO, FL("Req Id (%d)"), reqMsg.requestId);
Dino Mycle6fb96c12014-06-10 11:52:40 +05302956
Dino Myclee8843b32014-07-04 14:21:45 +05302957 reqMsg.sessionId = pAdapter->sessionId;
2958 hddLog(VOS_TRACE_LEVEL_INFO, FL("Session Id (%d)"), reqMsg.sessionId);
Dino Mycle6fb96c12014-06-10 11:52:40 +05302959
Dino Myclee8843b32014-07-04 14:21:45 +05302960 status = sme_EXTScanGetCapabilities(pHddCtx->hHal, &reqMsg);
Dino Mycle6fb96c12014-06-10 11:52:40 +05302961 if (!HAL_STATUS_SUCCESS(status)) {
2962 hddLog(VOS_TRACE_LEVEL_ERROR,
2963 FL("sme_EXTScanGetCapabilities failed(err=%d)"), status);
Dino Mycle6fb96c12014-06-10 11:52:40 +05302964 return -EINVAL;
2965 }
2966
2967 return 0;
2968}
2969
2970
2971static int wlan_hdd_cfg80211_extscan_get_cached_results(struct wiphy *wiphy,
2972 struct wireless_dev *wdev,
2973 void *data, int dataLen)
2974{
Dino Myclee8843b32014-07-04 14:21:45 +05302975 tSirEXTScanGetCachedResultsReqParams reqMsg;
Dino Mycle6fb96c12014-06-10 11:52:40 +05302976 struct net_device *dev = wdev->netdev;
2977 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
2978 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
2979 struct nlattr
2980 *tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX + 1];
2981 eHalStatus status;
2982
2983 status = wlan_hdd_validate_context(pHddCtx);
2984 if (0 != status)
2985 {
2986 hddLog(VOS_TRACE_LEVEL_ERROR,
2987 FL("HDD context is not valid"));
2988 return -EINVAL;
2989 }
Dino Myclee8843b32014-07-04 14:21:45 +05302990 /* check the EXTScan Capability */
2991 if ( (TRUE != pHddCtx->cfg_ini->fEnableEXTScan) ||
2992 (TRUE != sme_IsFeatureSupportedByFW(EXTENDED_SCAN)))
2993 {
2994 hddLog(VOS_TRACE_LEVEL_ERROR,
2995 FL("EXTScan not enabled/supported by Firmware"));
2996 return -EINVAL;
2997 }
2998
Dino Mycle6fb96c12014-06-10 11:52:40 +05302999 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX,
3000 data, dataLen,
3001 wlan_hdd_extscan_config_policy)) {
3002 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid ATTR"));
3003 return -EINVAL;
3004 }
3005 /* Parse and fetch request Id */
3006 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]) {
3007 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr request id failed"));
3008 return -EINVAL;
3009 }
Dino Mycle6fb96c12014-06-10 11:52:40 +05303010
Dino Myclee8843b32014-07-04 14:21:45 +05303011 reqMsg.requestId = nla_get_u32(
Dino Mycle6fb96c12014-06-10 11:52:40 +05303012 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]);
3013
Dino Myclee8843b32014-07-04 14:21:45 +05303014 hddLog(VOS_TRACE_LEVEL_INFO, FL("Req Id (%d)"), reqMsg.requestId);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303015
Dino Myclee8843b32014-07-04 14:21:45 +05303016 reqMsg.sessionId = pAdapter->sessionId;
3017 hddLog(VOS_TRACE_LEVEL_INFO, FL("Session Id (%d)"), reqMsg.sessionId);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303018
3019 /* Parse and fetch flush parameter */
3020 if (!tb
3021 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_GET_CACHED_SCAN_RESULTS_CONFIG_PARAM_FLUSH])
3022 {
3023 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr flush failed"));
3024 goto failed;
3025 }
Dino Myclee8843b32014-07-04 14:21:45 +05303026 reqMsg.flush = nla_get_u8(
Dino Mycle6fb96c12014-06-10 11:52:40 +05303027 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_GET_CACHED_SCAN_RESULTS_CONFIG_PARAM_FLUSH]);
3028
Dino Myclee8843b32014-07-04 14:21:45 +05303029 hddLog(VOS_TRACE_LEVEL_INFO, FL("Flush (%d)"), reqMsg.flush);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303030
Dino Myclee8843b32014-07-04 14:21:45 +05303031 status = sme_getCachedResults(pHddCtx->hHal, &reqMsg);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303032 if (!HAL_STATUS_SUCCESS(status)) {
3033 hddLog(VOS_TRACE_LEVEL_ERROR,
3034 FL("sme_getCachedResults failed(err=%d)"), status);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303035 return -EINVAL;
3036 }
3037 return 0;
3038
3039failed:
Dino Mycle6fb96c12014-06-10 11:52:40 +05303040 return -EINVAL;
3041}
3042
3043static int wlan_hdd_cfg80211_extscan_set_bssid_hotlist(struct wiphy *wiphy,
3044 struct wireless_dev *wdev,
3045 void *data, int dataLen)
3046{
3047 tpSirEXTScanSetBssidHotListReqParams pReqMsg = NULL;
3048 struct net_device *dev = wdev->netdev;
3049 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
3050 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
3051 struct nlattr
3052 *tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX + 1];
3053 struct nlattr
3054 *tb2[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX + 1];
3055 struct nlattr *apTh;
3056 eHalStatus status;
3057 tANI_U8 i = 0;
3058 int rem;
3059
3060 status = wlan_hdd_validate_context(pHddCtx);
3061 if (0 != status)
3062 {
3063 hddLog(VOS_TRACE_LEVEL_ERROR,
3064 FL("HDD context is not valid"));
3065 return -EINVAL;
3066 }
Dino Myclee8843b32014-07-04 14:21:45 +05303067 /* check the EXTScan Capability */
3068 if ( (TRUE != pHddCtx->cfg_ini->fEnableEXTScan) ||
3069 (TRUE != sme_IsFeatureSupportedByFW(EXTENDED_SCAN)))
3070 {
3071 hddLog(VOS_TRACE_LEVEL_ERROR,
3072 FL("EXTScan not enabled/supported by Firmware"));
3073 return -EINVAL;
3074 }
3075
Dino Mycle6fb96c12014-06-10 11:52:40 +05303076 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX,
3077 data, dataLen,
3078 wlan_hdd_extscan_config_policy)) {
3079 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid ATTR"));
3080 return -EINVAL;
3081 }
3082
3083 /* Parse and fetch request Id */
3084 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]) {
3085 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr request id failed"));
3086 return -EINVAL;
3087 }
Dino Mycle6fb96c12014-06-10 11:52:40 +05303088 pReqMsg = (tpSirEXTScanSetBssidHotListReqParams)
3089 vos_mem_malloc(sizeof(*pReqMsg));
3090 if (!pReqMsg) {
3091 hddLog(VOS_TRACE_LEVEL_ERROR, FL("vos_mem_malloc failed"));
3092 return -ENOMEM;
3093 }
3094
Dino Myclee8843b32014-07-04 14:21:45 +05303095
Dino Mycle6fb96c12014-06-10 11:52:40 +05303096 pReqMsg->requestId = nla_get_u32(
3097 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]);
3098 hddLog(VOS_TRACE_LEVEL_INFO, FL("Req Id (%d)"), pReqMsg->requestId);
3099
3100 /* Parse and fetch number of APs */
3101 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BSSID_HOTLIST_PARAMS_NUM_AP]) {
3102 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr number of AP failed"));
3103 goto fail;
3104 }
3105
3106 pReqMsg->sessionId = pAdapter->sessionId;
3107 hddLog(VOS_TRACE_LEVEL_INFO, FL("Session Id (%d)"), pReqMsg->sessionId);
3108
3109 pReqMsg->numAp = nla_get_u32(
3110 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BSSID_HOTLIST_PARAMS_NUM_AP]);
3111 hddLog(VOS_TRACE_LEVEL_INFO, FL("Number of AP (%d)"), pReqMsg->numAp);
3112
3113 nla_for_each_nested(apTh,
3114 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM], rem) {
3115 if(nla_parse(tb2, QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX,
3116 nla_data(apTh), nla_len(apTh),
3117 NULL)) {
3118 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla_parse failed"));
3119 goto fail;
3120 }
3121
3122 /* Parse and fetch MAC address */
3123 if (!tb2[QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_BSSID]) {
3124 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr mac address failed"));
3125 goto fail;
3126 }
3127 memcpy(pReqMsg->ap[i].bssid, nla_data(
3128 tb2[QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_BSSID]),
3129 sizeof(tSirMacAddr));
3130 hddLog(VOS_TRACE_LEVEL_INFO, FL("BSSID: %pM "), pReqMsg->ap[i].bssid);
3131
3132 /* Parse and fetch low RSSI */
3133 if (!tb2[QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_RSSI_LOW]) {
3134 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr low RSSI failed"));
3135 goto fail;
3136 }
3137 pReqMsg->ap[i].low = nla_get_s32(
3138 tb2[QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_RSSI_LOW]);
3139 hddLog(VOS_TRACE_LEVEL_INFO, FL("RSSI low (%d)"), pReqMsg->ap[i].low);
3140
3141 /* Parse and fetch high RSSI */
3142 if (!tb2[QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_RSSI_HIGH]) {
3143 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr high RSSI failed"));
3144 goto fail;
3145 }
3146 pReqMsg->ap[i].high = nla_get_s32(
3147 tb2[QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_RSSI_HIGH]);
3148 hddLog(VOS_TRACE_LEVEL_INFO, FL("RSSI High (%d)"),
3149 pReqMsg->ap[i].high);
3150
3151 /* Parse and fetch channel */
3152 if (!tb2[QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_CHANNEL]) {
3153 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr channel failed"));
3154 goto fail;
3155 }
3156 pReqMsg->ap[i].channel = nla_get_u32(
3157 tb2[QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_CHANNEL]);
3158 hddLog(VOS_TRACE_LEVEL_INFO,
3159 FL("Channel (%u)"), pReqMsg->ap[i].channel);
3160 i++;
3161 }
3162 status = sme_SetBssHotlist(pHddCtx->hHal, pReqMsg);
3163 if (!HAL_STATUS_SUCCESS(status)) {
3164 hddLog(VOS_TRACE_LEVEL_ERROR,
3165 FL("sme_SetBssHotlist failed(err=%d)"), status);
3166 vos_mem_free(pReqMsg);
3167 return -EINVAL;
3168 }
3169
Dino Myclee8843b32014-07-04 14:21:45 +05303170 vos_mem_free(pReqMsg);
3171
Dino Mycle6fb96c12014-06-10 11:52:40 +05303172 return 0;
3173
3174fail:
3175 vos_mem_free(pReqMsg);
3176 return -EINVAL;
3177}
3178
3179static int wlan_hdd_cfg80211_extscan_set_significant_change(struct wiphy *wiphy,
3180 struct wireless_dev *wdev,
3181 void *data, int dataLen)
3182{
3183 tpSirEXTScanSetSignificantChangeReqParams pReqMsg = NULL;
3184 struct net_device *dev = wdev->netdev;
3185 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
3186 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
3187 struct nlattr
3188 *tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX + 1];
3189 struct nlattr
3190 *tb2[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX + 1];
3191 struct nlattr *apTh;
3192 eHalStatus status;
3193 int i = 0;
3194 int rem;
3195
3196 status = wlan_hdd_validate_context(pHddCtx);
3197 if (0 != status)
3198 {
3199 hddLog(VOS_TRACE_LEVEL_ERROR,
3200 FL("HDD context is not valid"));
3201 return -EINVAL;
3202 }
Dino Myclee8843b32014-07-04 14:21:45 +05303203 /* check the EXTScan Capability */
3204 if ( (TRUE != pHddCtx->cfg_ini->fEnableEXTScan) ||
3205 (TRUE != sme_IsFeatureSupportedByFW(EXTENDED_SCAN)))
3206 {
3207 hddLog(VOS_TRACE_LEVEL_ERROR,
3208 FL("EXTScan not enabled/supported by Firmware"));
3209 return -EINVAL;
3210 }
3211
Dino Mycle6fb96c12014-06-10 11:52:40 +05303212 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX,
3213 data, dataLen,
3214 wlan_hdd_extscan_config_policy)) {
3215 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid ATTR"));
3216 return -EINVAL;
3217 }
3218
3219 /* Parse and fetch request Id */
3220 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]) {
3221 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr request id failed"));
3222 return -EINVAL;
3223 }
Dino Mycle6fb96c12014-06-10 11:52:40 +05303224 pReqMsg = (tpSirEXTScanSetSignificantChangeReqParams)
Dino Myclee8843b32014-07-04 14:21:45 +05303225 vos_mem_malloc(sizeof(*pReqMsg));
Dino Mycle6fb96c12014-06-10 11:52:40 +05303226 if (!pReqMsg) {
Dino Myclee8843b32014-07-04 14:21:45 +05303227 hddLog(VOS_TRACE_LEVEL_ERROR, FL("vos_mem_malloc failed"));
3228 return -ENOMEM;
Dino Mycle6fb96c12014-06-10 11:52:40 +05303229 }
3230
Dino Myclee8843b32014-07-04 14:21:45 +05303231
3232
Dino Mycle6fb96c12014-06-10 11:52:40 +05303233 pReqMsg->requestId = nla_get_u32(
3234 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]);
3235 hddLog(VOS_TRACE_LEVEL_INFO, FL("Req Id (%d)"), pReqMsg->requestId);
3236
3237 /* Parse and fetch RSSI sample size */
3238 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SIGNIFICANT_CHANGE_PARAMS_RSSI_SAMPLE_SIZE])
3239 {
3240 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr RSSI sample size failed"));
3241 goto fail;
3242 }
3243 pReqMsg->rssiSampleSize = nla_get_u32(
3244 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SIGNIFICANT_CHANGE_PARAMS_RSSI_SAMPLE_SIZE]);
3245 hddLog(VOS_TRACE_LEVEL_INFO,
3246 FL("RSSI sample size (%u)"), pReqMsg->rssiSampleSize);
3247
3248 /* Parse and fetch lost AP sample size */
3249 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SIGNIFICANT_CHANGE_PARAMS_LOST_AP_SAMPLE_SIZE])
3250 {
3251 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr lost AP sample size failed"));
3252 goto fail;
3253 }
3254 pReqMsg->lostApSampleSize = nla_get_u32(
3255 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SIGNIFICANT_CHANGE_PARAMS_LOST_AP_SAMPLE_SIZE]);
3256 hddLog(VOS_TRACE_LEVEL_INFO,
3257 FL("Lost AP sample size (%u)"), pReqMsg->lostApSampleSize);
3258 /* Parse and fetch minimum Breaching */
3259 if (!tb
3260 [QCA_WLAN_VENDOR_ATTR_EXTSCAN_SIGNIFICANT_CHANGE_PARAMS_MIN_BREACHING]) {
3261 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr minBreaching failed"));
3262 goto fail;
3263 }
3264 pReqMsg->minBreaching = nla_get_u32(
3265 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SIGNIFICANT_CHANGE_PARAMS_MIN_BREACHING]);
3266 hddLog(VOS_TRACE_LEVEL_INFO, FL(" Breaching (%d)"), pReqMsg->minBreaching);
3267
3268 /* Parse and fetch number of APs */
3269 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SIGNIFICANT_CHANGE_PARAMS_NUM_AP]) {
3270 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr number of AP failed"));
3271 goto fail;
3272 }
3273 pReqMsg->numAp = nla_get_u32(
3274 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SIGNIFICANT_CHANGE_PARAMS_NUM_AP]);
3275 hddLog(VOS_TRACE_LEVEL_INFO, FL("Number of AP (%d)"), pReqMsg->numAp);
3276
3277 pReqMsg->sessionId = pAdapter->sessionId;
3278 hddLog(VOS_TRACE_LEVEL_INFO, FL("Session Id (%d)"), pReqMsg->sessionId);
3279
3280 nla_for_each_nested(apTh,
3281 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM], rem) {
3282 if(nla_parse(tb2,
3283 QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX,
3284 nla_data(apTh), nla_len(apTh),
3285 NULL)) {
3286 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla_parse failed"));
3287 goto fail;
3288 }
3289
3290 /* Parse and fetch MAC address */
3291 if (!tb2[QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_BSSID]) {
3292 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr mac address failed"));
3293 goto fail;
3294 }
3295 memcpy(pReqMsg->ap[i].bssid, nla_data(
3296 tb2[QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_BSSID]),
3297 sizeof(tSirMacAddr));
3298
3299 /* Parse and fetch low RSSI */
3300 if (!tb2[QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_RSSI_LOW]) {
3301 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr low RSSI failed"));
3302 goto fail;
3303 }
3304 pReqMsg->ap[i].low = nla_get_s32(
3305 tb2[QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_RSSI_LOW]);
3306 hddLog(VOS_TRACE_LEVEL_INFO, FL("RSSI low (%d)"), pReqMsg->ap[i].low);
3307
3308 /* Parse and fetch high RSSI */
3309 if (!tb2[QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_RSSI_HIGH]) {
3310 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr high RSSI failed"));
3311 goto fail;
3312 }
3313 pReqMsg->ap[i].high = nla_get_s32(
3314 tb2[QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_RSSI_HIGH]);
3315 hddLog(VOS_TRACE_LEVEL_INFO,
3316 FL("RSSI High (%d)"), pReqMsg->ap[i].high);
3317
3318 /* Parse and fetch channel */
3319 if (!tb2[QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_CHANNEL]) {
3320 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr channel failed"));
3321 goto fail;
3322 }
3323 pReqMsg->ap[i].channel = nla_get_u32(
3324 tb2[QCA_WLAN_VENDOR_ATTR_EXTSCAN_AP_THRESHOLD_PARAM_CHANNEL]);
3325 hddLog(VOS_TRACE_LEVEL_INFO,
3326 FL("Channel (%u)"), pReqMsg->ap[i].channel);
3327 i++;
3328 }
3329
3330 status = sme_SetSignificantChange(pHddCtx->hHal, pReqMsg);
3331 if (!HAL_STATUS_SUCCESS(status)) {
3332 hddLog(VOS_TRACE_LEVEL_ERROR,
3333 FL("sme_SetSignificantChange failed(err=%d)"), status);
3334 vos_mem_free(pReqMsg);
3335 return -EINVAL;
3336 }
Dino Myclee8843b32014-07-04 14:21:45 +05303337 vos_mem_free(pReqMsg);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303338 hddLog(VOS_TRACE_LEVEL_ERROR, FL(" Exiting"));
3339 return 0;
3340
3341fail:
3342 vos_mem_free(pReqMsg);
3343 return -EINVAL;
3344}
3345
3346static int wlan_hdd_cfg80211_extscan_get_valid_channels(struct wiphy *wiphy,
3347 struct wireless_dev *wdev,
3348 void *data, int dataLen)
3349{
3350 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
3351 tANI_U32 ChannelList[WNI_CFG_VALID_CHANNEL_LIST_LEN] = {0};
3352 tANI_U8 numChannels = 0;
3353 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX + 1];
3354 tANI_U32 requestId;
3355 tWifiBand wifiBand;
3356 eHalStatus status;
3357 struct sk_buff *replySkb;
3358 tANI_U8 i;
3359
3360 hddLog(VOS_TRACE_LEVEL_INFO, FL("Entering"));
3361 status = wlan_hdd_validate_context(pHddCtx);
3362 if (0 != status)
3363 {
3364 hddLog(VOS_TRACE_LEVEL_ERROR,
3365 FL("HDD context is not valid"));
3366 return -EINVAL;
3367 }
Dino Myclee8843b32014-07-04 14:21:45 +05303368 /* check the EXTScan Capability */
3369 if ( (TRUE != pHddCtx->cfg_ini->fEnableEXTScan) ||
3370 (TRUE != sme_IsFeatureSupportedByFW(EXTENDED_SCAN)))
3371 {
3372 hddLog(VOS_TRACE_LEVEL_ERROR,
3373 FL("EXTScan not enabled/supported by Firmware"));
3374 return -EINVAL;
3375 }
3376
Dino Mycle6fb96c12014-06-10 11:52:40 +05303377 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX,
3378 data, dataLen,
3379 wlan_hdd_extscan_config_policy)) {
3380 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid ATTR"));
3381 return -EINVAL;
3382 }
3383
3384 /* Parse and fetch request Id */
3385 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]) {
3386 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr request id failed"));
3387 return -EINVAL;
3388 }
3389 requestId = nla_get_u32(
3390 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]);
3391 hddLog(VOS_TRACE_LEVEL_INFO, FL("Req Id (%d)"), requestId);
3392
3393 /* Parse and fetch wifi band */
3394 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_GET_VALID_CHANNELS_CONFIG_PARAM_WIFI_BAND])
3395 {
3396 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr wifi band failed"));
3397 return -EINVAL;
3398 }
3399 wifiBand = nla_get_u32(
3400 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_GET_VALID_CHANNELS_CONFIG_PARAM_WIFI_BAND]);
3401 hddLog(VOS_TRACE_LEVEL_INFO, FL("Wifi band (%d)"), wifiBand);
3402
3403 status = sme_GetValidChannelsByBand((tHalHandle)(pHddCtx->hHal),
3404 wifiBand, ChannelList,
3405 &numChannels);
3406 if (eHAL_STATUS_SUCCESS != status) {
3407 hddLog(VOS_TRACE_LEVEL_ERROR,
3408 FL("sme_GetValidChannelsByBand failed (err=%d)"), status);
3409 return -EINVAL;
3410 }
3411 hddLog(VOS_TRACE_LEVEL_INFO, FL("Number of channels (%d)"), numChannels);
3412 for (i = 0; i < numChannels; i++)
3413 hddLog(VOS_TRACE_LEVEL_INFO, "Channel: %u ", ChannelList[i]);
3414
3415 replySkb = cfg80211_vendor_cmd_alloc_reply_skb(wiphy, sizeof(u32) +
3416 sizeof(u32) * numChannels +
3417 NLMSG_HDRLEN);
3418
3419 if (!replySkb) {
3420 hddLog(VOS_TRACE_LEVEL_ERROR,
3421 FL("valid channels: buffer alloc fail"));
3422 return -EINVAL;
3423 }
3424 if (nla_put_u32(replySkb,
3425 QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_NUM_CHANNELS,
3426 numChannels) ||
3427 nla_put(replySkb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_RESULTS_CHANNELS,
3428 sizeof(u32) * numChannels, ChannelList)) {
3429
3430 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla put fail"));
3431 kfree_skb(replySkb);
3432 return -EINVAL;
3433 }
3434
3435 return cfg80211_vendor_cmd_reply(replySkb);
3436}
3437
3438static int wlan_hdd_cfg80211_extscan_start(struct wiphy *wiphy,
3439 struct wireless_dev *wdev,
3440 void *data, int dataLen)
3441{
Dino Myclee8843b32014-07-04 14:21:45 +05303442 tpSirEXTScanStartReqParams pReqMsg = NULL;
Dino Mycle6fb96c12014-06-10 11:52:40 +05303443 struct net_device *dev = wdev->netdev;
3444 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
3445 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
3446 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX + 1];
3447 struct nlattr *bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX + 1];
3448 struct nlattr *channel[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX + 1];
3449 struct nlattr *buckets;
3450 struct nlattr *channels;
3451 int rem1;
3452 int rem2;
3453 eHalStatus status;
Dasari Srinivas8b2ce272014-09-16 16:57:30 +05303454 tANI_U32 j = 0, index = 0;
Dino Mycle6fb96c12014-06-10 11:52:40 +05303455
3456 status = wlan_hdd_validate_context(pHddCtx);
3457 if (0 != status)
3458 {
3459 hddLog(VOS_TRACE_LEVEL_ERROR,
3460 FL("HDD context is not valid"));
3461 return -EINVAL;
3462 }
Dino Myclee8843b32014-07-04 14:21:45 +05303463 /* check the EXTScan Capability */
3464 if ( (TRUE != pHddCtx->cfg_ini->fEnableEXTScan) ||
3465 (TRUE != sme_IsFeatureSupportedByFW(EXTENDED_SCAN)))
3466 {
3467 hddLog(VOS_TRACE_LEVEL_ERROR,
3468 FL("EXTScan not enabled/supported by Firmware"));
3469 return -EINVAL;
3470 }
3471
Dino Mycle6fb96c12014-06-10 11:52:40 +05303472 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX,
3473 data, dataLen,
3474 wlan_hdd_extscan_config_policy)) {
3475 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid ATTR"));
3476 return -EINVAL;
3477 }
3478
3479 /* Parse and fetch request Id */
3480 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]) {
3481 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr request id failed"));
3482 return -EINVAL;
3483 }
3484
Dino Myclee8843b32014-07-04 14:21:45 +05303485 pReqMsg = (tpSirEXTScanStartReqParams)
3486 vos_mem_malloc(sizeof(*pReqMsg));
Dino Mycle6fb96c12014-06-10 11:52:40 +05303487 if (!pReqMsg) {
Dino Myclee8843b32014-07-04 14:21:45 +05303488 hddLog(VOS_TRACE_LEVEL_ERROR, FL("vos_mem_malloc failed"));
3489 return -ENOMEM;
Dino Mycle6fb96c12014-06-10 11:52:40 +05303490 }
3491
3492 pReqMsg->requestId = nla_get_u32(
3493 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]);
3494 hddLog(VOS_TRACE_LEVEL_INFO, FL("Req Id (%d)"), pReqMsg->requestId);
3495
3496 pReqMsg->sessionId = pAdapter->sessionId;
3497 hddLog(VOS_TRACE_LEVEL_INFO, FL("Session Id (%d)"), pReqMsg->sessionId);
3498
3499 /* Parse and fetch base period */
3500 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SCAN_CMD_PARAMS_BASE_PERIOD]) {
3501 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr base period failed"));
3502 goto fail;
3503 }
3504 pReqMsg->basePeriod = nla_get_u32(
3505 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SCAN_CMD_PARAMS_BASE_PERIOD]);
3506 hddLog(VOS_TRACE_LEVEL_INFO, FL("Base Period (%d)"),
3507 pReqMsg->basePeriod);
3508
3509 /* Parse and fetch max AP per scan */
3510 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SCAN_CMD_PARAMS_MAX_AP_PER_SCAN]) {
3511 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr max_ap_per_scan failed"));
3512 goto fail;
3513 }
3514 pReqMsg->maxAPperScan = nla_get_u32(
3515 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SCAN_CMD_PARAMS_MAX_AP_PER_SCAN]);
3516 hddLog(VOS_TRACE_LEVEL_INFO, FL("Max AP per Scan (%d)"),
3517 pReqMsg->maxAPperScan);
3518
3519 /* Parse and fetch report threshold */
3520 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SCAN_CMD_PARAMS_REPORT_THRESHOLD]) {
3521 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr report_threshold failed"));
3522 goto fail;
3523 }
3524 pReqMsg->reportThreshold = nla_get_u8(
3525 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SCAN_CMD_PARAMS_REPORT_THRESHOLD]);
3526 hddLog(VOS_TRACE_LEVEL_INFO, FL("Report Threshold (%d)"),
3527 pReqMsg->reportThreshold);
3528
3529 /* Parse and fetch number of buckets */
3530 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SCAN_CMD_PARAMS_NUM_BUCKETS]) {
3531 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr number of buckets failed"));
3532 goto fail;
3533 }
3534 pReqMsg->numBuckets = nla_get_u8(
3535 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SCAN_CMD_PARAMS_NUM_BUCKETS]);
3536 if (pReqMsg->numBuckets > WLAN_EXTSCAN_MAX_BUCKETS) {
3537 hddLog(VOS_TRACE_LEVEL_WARN, FL("Exceeded MAX number of buckets "
3538 "Setting numBuckets to %u"), WLAN_EXTSCAN_MAX_BUCKETS);
3539 pReqMsg->numBuckets = WLAN_EXTSCAN_MAX_BUCKETS;
3540 }
3541 hddLog(VOS_TRACE_LEVEL_INFO, FL("Number of Buckets (%d)"),
3542 pReqMsg->numBuckets);
3543 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC]) {
3544 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr bucket spec failed"));
3545 goto fail;
3546 }
3547
3548 nla_for_each_nested(buckets,
3549 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC], rem1) {
3550 if(nla_parse(bucket,
3551 QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX,
3552 nla_data(buckets), nla_len(buckets), NULL)) { //policy
3553 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla_parse failed"));
3554 goto fail;
3555 }
3556
3557 /* Parse and fetch bucket spec */
3558 if (!bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_INDEX]) {
3559 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr bucket index failed"));
3560 goto fail;
3561 }
Dasari Srinivas8b2ce272014-09-16 16:57:30 +05303562
3563 pReqMsg->buckets[index].bucket = nla_get_u8(
3564 bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_INDEX]);
3565
3566 hddLog(VOS_TRACE_LEVEL_INFO, FL("Bucket spec Index (%d)"),
3567 pReqMsg->buckets[index].bucket);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303568
3569 /* Parse and fetch wifi band */
3570 if (!bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_BAND]) {
3571 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr wifi band failed"));
3572 goto fail;
3573 }
Dasari Srinivas8b2ce272014-09-16 16:57:30 +05303574 pReqMsg->buckets[index].band = nla_get_u8(
Dino Mycle6fb96c12014-06-10 11:52:40 +05303575 bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_BAND]);
3576 hddLog(VOS_TRACE_LEVEL_INFO, FL("Wifi band (%d)"),
Dasari Srinivas8b2ce272014-09-16 16:57:30 +05303577 pReqMsg->buckets[index].band);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303578
3579 /* Parse and fetch period */
3580 if (!bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_PERIOD]) {
3581 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr period failed"));
3582 goto fail;
3583 }
Dasari Srinivas8b2ce272014-09-16 16:57:30 +05303584 pReqMsg->buckets[index].period = nla_get_u32(
Dino Mycle6fb96c12014-06-10 11:52:40 +05303585 bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_PERIOD]);
3586 hddLog(VOS_TRACE_LEVEL_INFO, FL("period (%d)"),
Dasari Srinivas8b2ce272014-09-16 16:57:30 +05303587 pReqMsg->buckets[index].period);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303588
3589 /* Parse and fetch report events */
3590 if (!bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_REPORT_EVENTS]) {
3591 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr report events failed"));
3592 goto fail;
3593 }
Dasari Srinivas8b2ce272014-09-16 16:57:30 +05303594 pReqMsg->buckets[index].reportEvents = nla_get_u8(
Dino Mycle6fb96c12014-06-10 11:52:40 +05303595 bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_REPORT_EVENTS]);
3596 hddLog(VOS_TRACE_LEVEL_INFO, FL("report events (%d)"),
Dasari Srinivas8b2ce272014-09-16 16:57:30 +05303597 pReqMsg->buckets[index].reportEvents);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303598
3599 /* Parse and fetch number of channels */
Dasari Srinivas8b2ce272014-09-16 16:57:30 +05303600 if (!bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_NUM_CHANNEL_SPECS])
3601 {
Dino Mycle6fb96c12014-06-10 11:52:40 +05303602 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr num channels failed"));
3603 goto fail;
3604 }
Dasari Srinivas8b2ce272014-09-16 16:57:30 +05303605 pReqMsg->buckets[index].numChannels = nla_get_u32(
Dino Mycle6fb96c12014-06-10 11:52:40 +05303606 bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_BUCKET_SPEC_NUM_CHANNEL_SPECS]);
3607 hddLog(VOS_TRACE_LEVEL_INFO, FL("num channels (%d)"),
Dasari Srinivas8b2ce272014-09-16 16:57:30 +05303608 pReqMsg->buckets[index].numChannels);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303609
3610 if (!bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_CHANNEL_SPEC]) {
3611 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr channel spec failed"));
3612 goto fail;
3613 }
3614
3615 j = 0;
3616 nla_for_each_nested(channels,
3617 bucket[QCA_WLAN_VENDOR_ATTR_EXTSCAN_CHANNEL_SPEC], rem2) {
3618 if(nla_parse(channel,
3619 QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX,
3620 nla_data(channels), nla_len(channels),
3621 NULL)) { //wlan_hdd_extscan_config_policy here
3622 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla_parse failed"));
3623 goto fail;
3624 }
3625
3626 /* Parse and fetch channel */
3627 if (!channel[QCA_WLAN_VENDOR_ATTR_EXTSCAN_CHANNEL_SPEC_CHANNEL]) {
3628 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr channel failed"));
3629 goto fail;
3630 }
Dasari Srinivas8b2ce272014-09-16 16:57:30 +05303631 pReqMsg->buckets[index].channels[j].channel = nla_get_u32(
Dino Mycle6fb96c12014-06-10 11:52:40 +05303632 channel[QCA_WLAN_VENDOR_ATTR_EXTSCAN_CHANNEL_SPEC_CHANNEL]);
3633 hddLog(VOS_TRACE_LEVEL_INFO, FL("channel (%u)"),
Dasari Srinivas8b2ce272014-09-16 16:57:30 +05303634 pReqMsg->buckets[index].channels[j].channel);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303635
3636 /* Parse and fetch dwell time */
3637 if (!channel[QCA_WLAN_VENDOR_ATTR_EXTSCAN_CHANNEL_SPEC_DWELL_TIME]) {
3638 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr dwelltime failed"));
3639 goto fail;
3640 }
Dasari Srinivas8b2ce272014-09-16 16:57:30 +05303641 pReqMsg->buckets[index].channels[j].dwellTimeMs = nla_get_u32(
Dino Mycle6fb96c12014-06-10 11:52:40 +05303642 channel[QCA_WLAN_VENDOR_ATTR_EXTSCAN_CHANNEL_SPEC_DWELL_TIME]);
3643 hddLog(VOS_TRACE_LEVEL_INFO, FL("Dwell time (%u ms)"),
Dasari Srinivas8b2ce272014-09-16 16:57:30 +05303644 pReqMsg->buckets[index].channels[j].dwellTimeMs);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303645
3646 /* Parse and fetch channel spec passive */
3647 if (!channel[QCA_WLAN_VENDOR_ATTR_EXTSCAN_CHANNEL_SPEC_PASSIVE]) {
3648 hddLog(VOS_TRACE_LEVEL_ERROR,
3649 FL("attr channel spec passive failed"));
3650 goto fail;
3651 }
Dasari Srinivas8b2ce272014-09-16 16:57:30 +05303652 pReqMsg->buckets[index].channels[j].passive = nla_get_u8(
Dino Mycle6fb96c12014-06-10 11:52:40 +05303653 channel[QCA_WLAN_VENDOR_ATTR_EXTSCAN_CHANNEL_SPEC_PASSIVE]);
3654 hddLog(VOS_TRACE_LEVEL_INFO, FL("Chnl spec passive (%u)"),
Dasari Srinivas8b2ce272014-09-16 16:57:30 +05303655 pReqMsg->buckets[index].channels[j].passive);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303656 j++;
3657 }
Dasari Srinivas8b2ce272014-09-16 16:57:30 +05303658 index++;
Dino Mycle6fb96c12014-06-10 11:52:40 +05303659 }
3660 status = sme_EXTScanStart(pHddCtx->hHal, pReqMsg);
3661 if (!HAL_STATUS_SUCCESS(status)) {
3662 hddLog(VOS_TRACE_LEVEL_ERROR,
3663 FL("sme_EXTScanStart failed(err=%d)"), status);
3664 vos_mem_free(pReqMsg);
3665 return -EINVAL;
3666 }
3667
Dino Myclee8843b32014-07-04 14:21:45 +05303668 vos_mem_free(pReqMsg);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303669 return 0;
3670
3671fail:
3672 vos_mem_free(pReqMsg);
3673 return -EINVAL;
3674}
3675
3676static int wlan_hdd_cfg80211_extscan_stop(struct wiphy *wiphy,
3677 struct wireless_dev *wdev,
3678 void *data, int dataLen)
3679{
Dino Myclee8843b32014-07-04 14:21:45 +05303680 tSirEXTScanStopReqParams reqMsg;
Dino Mycle6fb96c12014-06-10 11:52:40 +05303681 struct net_device *dev = wdev->netdev;
3682 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
3683 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
3684 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX + 1];
3685 eHalStatus status;
3686
3687 status = wlan_hdd_validate_context(pHddCtx);
3688 if (0 != status)
3689 {
3690 hddLog(VOS_TRACE_LEVEL_ERROR,
3691 FL("HDD context is not valid"));
3692 return -EINVAL;
3693 }
Dino Myclee8843b32014-07-04 14:21:45 +05303694 /* check the EXTScan Capability */
3695 if ( (TRUE != pHddCtx->cfg_ini->fEnableEXTScan) ||
3696 (TRUE != sme_IsFeatureSupportedByFW(EXTENDED_SCAN)))
3697 {
3698 hddLog(VOS_TRACE_LEVEL_ERROR,
3699 FL("EXTScan not enabled/supported by Firmware"));
3700 return -EINVAL;
3701 }
3702
Dino Mycle6fb96c12014-06-10 11:52:40 +05303703 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX,
3704 data, dataLen,
3705 wlan_hdd_extscan_config_policy)) {
3706 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid ATTR"));
3707 return -EINVAL;
3708 }
3709
3710 /* Parse and fetch request Id */
3711 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]) {
3712 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr request id failed"));
3713 return -EINVAL;
3714 }
3715
Dino Myclee8843b32014-07-04 14:21:45 +05303716 reqMsg.requestId = nla_get_u32(
Dino Mycle6fb96c12014-06-10 11:52:40 +05303717 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]);
Dino Myclee8843b32014-07-04 14:21:45 +05303718 hddLog(VOS_TRACE_LEVEL_INFO, FL("Req Id (%d)"), reqMsg.requestId);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303719
Dino Myclee8843b32014-07-04 14:21:45 +05303720 reqMsg.sessionId = pAdapter->sessionId;
3721 hddLog(VOS_TRACE_LEVEL_INFO, FL("Session Id (%d)"), reqMsg.sessionId);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303722
Dino Myclee8843b32014-07-04 14:21:45 +05303723 status = sme_EXTScanStop(pHddCtx->hHal, &reqMsg);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303724 if (!HAL_STATUS_SUCCESS(status)) {
3725 hddLog(VOS_TRACE_LEVEL_ERROR,
3726 FL("sme_EXTScanStop failed(err=%d)"), status);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303727 return -EINVAL;
3728 }
3729
3730 return 0;
3731}
3732
3733static int wlan_hdd_cfg80211_extscan_reset_bssid_hotlist(struct wiphy *wiphy,
3734 struct wireless_dev *wdev,
3735 void *data, int dataLen)
3736{
Dino Myclee8843b32014-07-04 14:21:45 +05303737 tSirEXTScanResetBssidHotlistReqParams reqMsg;
Dino Mycle6fb96c12014-06-10 11:52:40 +05303738 struct net_device *dev = wdev->netdev;
3739 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
3740 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
3741 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX + 1];
3742 eHalStatus status;
3743
3744 status = wlan_hdd_validate_context(pHddCtx);
3745 if (0 != status)
3746 {
3747 hddLog(VOS_TRACE_LEVEL_ERROR,
3748 FL("HDD context is not valid"));
3749 return -EINVAL;
3750 }
Dino Myclee8843b32014-07-04 14:21:45 +05303751 /* check the EXTScan Capability */
3752 if ( (TRUE != pHddCtx->cfg_ini->fEnableEXTScan) ||
3753 (TRUE != sme_IsFeatureSupportedByFW(EXTENDED_SCAN)))
3754 {
3755 hddLog(VOS_TRACE_LEVEL_ERROR,
3756 FL("EXTScan not enabled/supported by Firmware"));
3757 return -EINVAL;
3758 }
3759
Dino Mycle6fb96c12014-06-10 11:52:40 +05303760 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX,
3761 data, dataLen,
3762 wlan_hdd_extscan_config_policy)) {
3763 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid ATTR"));
3764 return -EINVAL;
3765 }
3766
3767 /* Parse and fetch request Id */
3768 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]) {
3769 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr request id failed"));
3770 return -EINVAL;
3771 }
3772
Dino Myclee8843b32014-07-04 14:21:45 +05303773 reqMsg.requestId = nla_get_u32(
Dino Mycle6fb96c12014-06-10 11:52:40 +05303774 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]);
Dino Myclee8843b32014-07-04 14:21:45 +05303775 hddLog(VOS_TRACE_LEVEL_INFO, FL("Req Id (%d)"), reqMsg.requestId);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303776
Dino Myclee8843b32014-07-04 14:21:45 +05303777 reqMsg.sessionId = pAdapter->sessionId;
3778 hddLog(VOS_TRACE_LEVEL_INFO, FL("Session Id (%d)"), reqMsg.sessionId);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303779
Dino Myclee8843b32014-07-04 14:21:45 +05303780 status = sme_ResetBssHotlist(pHddCtx->hHal, &reqMsg);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303781 if (!HAL_STATUS_SUCCESS(status)) {
3782 hddLog(VOS_TRACE_LEVEL_ERROR,
3783 FL("sme_ResetBssHotlist failed(err=%d)"), status);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303784 return -EINVAL;
3785 }
3786
3787 return 0;
3788}
3789
3790static int wlan_hdd_cfg80211_extscan_reset_significant_change(
3791 struct wiphy *wiphy,
3792 struct wireless_dev *wdev,
3793 void *data, int dataLen)
3794{
Dino Myclee8843b32014-07-04 14:21:45 +05303795 tSirEXTScanResetSignificantChangeReqParams reqMsg;
Dino Mycle6fb96c12014-06-10 11:52:40 +05303796 struct net_device *dev = wdev->netdev;
3797 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
3798 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
3799 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX + 1];
3800 eHalStatus status;
3801
3802 hddLog(VOS_TRACE_LEVEL_INFO, FL(" Entering"));
3803 status = wlan_hdd_validate_context(pHddCtx);
3804 if (0 != status)
3805 {
3806 hddLog(VOS_TRACE_LEVEL_ERROR,
3807 FL("HDD context is not valid"));
3808 return -EINVAL;
3809 }
Dino Myclee8843b32014-07-04 14:21:45 +05303810 /* check the EXTScan Capability */
3811 if ( (TRUE != pHddCtx->cfg_ini->fEnableEXTScan) ||
3812 (TRUE != sme_IsFeatureSupportedByFW(EXTENDED_SCAN)))
3813 {
3814 hddLog(VOS_TRACE_LEVEL_ERROR,
3815 FL("EXTScan not enabled/supported by Firmware"));
3816 return -EINVAL;
3817 }
3818
Dino Mycle6fb96c12014-06-10 11:52:40 +05303819 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_MAX,
3820 data, dataLen,
3821 wlan_hdd_extscan_config_policy)) {
3822 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid ATTR"));
3823 return -EINVAL;
3824 }
3825
3826 /* Parse and fetch request Id */
3827 if (!tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]) {
3828 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr request id failed"));
3829 return -EINVAL;
3830 }
3831
Dino Mycle6fb96c12014-06-10 11:52:40 +05303832
Dino Myclee8843b32014-07-04 14:21:45 +05303833 reqMsg.requestId = nla_get_u32(
Dino Mycle6fb96c12014-06-10 11:52:40 +05303834 tb[QCA_WLAN_VENDOR_ATTR_EXTSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID]);
Dino Myclee8843b32014-07-04 14:21:45 +05303835 hddLog(VOS_TRACE_LEVEL_INFO, FL("Req Id (%d)"), reqMsg.requestId);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303836
Dino Myclee8843b32014-07-04 14:21:45 +05303837 reqMsg.sessionId = pAdapter->sessionId;
3838 hddLog(VOS_TRACE_LEVEL_INFO, FL("Session Id (%d)"), reqMsg.sessionId);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303839
Dino Myclee8843b32014-07-04 14:21:45 +05303840 status = sme_ResetSignificantChange(pHddCtx->hHal, &reqMsg);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303841 if (!HAL_STATUS_SUCCESS(status)) {
3842 hddLog(VOS_TRACE_LEVEL_ERROR,
3843 FL("sme_ResetSignificantChange failed(err=%d)"), status);
Dino Mycle6fb96c12014-06-10 11:52:40 +05303844 return -EINVAL;
3845 }
3846
3847 hddLog(VOS_TRACE_LEVEL_ERROR, FL(" Exiting"));
3848 return 0;
3849}
3850
3851#endif /* WLAN_FEATURE_EXTSCAN */
3852
Atul Mittal115287b2014-07-08 13:26:33 +05303853/*EXT TDLS*/
3854static const struct nla_policy
3855wlan_hdd_tdls_config_enable_policy[QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_MAX +1] =
3856{
3857 [QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_MAC_ADDR] = {.type = NLA_UNSPEC },
3858 [QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_CHANNEL] = {.type = NLA_S32 },
3859 [QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_GLOBAL_OPERATING_CLASS] =
3860 {.type = NLA_S32 },
3861 [QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_MAX_LATENCY_MS] = {.type = NLA_S32 },
3862 [QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_MIN_BANDWIDTH_KBPS] = {.type = NLA_S32 },
3863
3864};
3865
3866static const struct nla_policy
3867wlan_hdd_tdls_config_disable_policy[QCA_WLAN_VENDOR_ATTR_TDLS_DISABLE_MAX +1] =
3868{
3869 [QCA_WLAN_VENDOR_ATTR_TDLS_DISABLE_MAC_ADDR] = {.type = NLA_UNSPEC },
3870
3871};
3872
3873static const struct nla_policy
3874wlan_hdd_tdls_config_state_change_policy[
3875 QCA_WLAN_VENDOR_ATTR_TDLS_STATE_MAX +1] =
3876{
3877 [QCA_WLAN_VENDOR_ATTR_TDLS_STATE_MAC_ADDR] = {.type = NLA_UNSPEC },
3878 [QCA_WLAN_VENDOR_ATTR_TDLS_NEW_STATE] = {.type = NLA_S32 },
3879 [QCA_WLAN_VENDOR_ATTR_TDLS_STATE_REASON] = {.type = NLA_S32 },
3880
3881};
3882
3883static const struct nla_policy
3884wlan_hdd_tdls_config_get_status_policy[
3885 QCA_WLAN_VENDOR_ATTR_TDLS_GET_STATUS_MAX +1] =
3886{
3887 [QCA_WLAN_VENDOR_ATTR_TDLS_GET_STATUS_MAC_ADDR] = {.type = NLA_UNSPEC },
3888 [QCA_WLAN_VENDOR_ATTR_TDLS_GET_STATUS_STATE] = {.type = NLA_S32 },
3889 [QCA_WLAN_VENDOR_ATTR_TDLS_GET_STATUS_REASON] = {.type = NLA_S32 },
3890
3891};
3892static int wlan_hdd_cfg80211_exttdls_get_status(struct wiphy *wiphy,
3893 struct wireless_dev *wdev,
3894 void *data,
3895 int data_len)
3896{
3897 u8 peer[6] = {0};
3898 struct net_device *dev = wdev->netdev;
3899 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
3900 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
3901 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_TDLS_GET_STATUS_MAX + 1];
3902 eHalStatus ret;
3903 tANI_S32 state;
3904 tANI_S32 reason;
3905 struct sk_buff *skb = NULL;
3906
3907 ret = wlan_hdd_validate_context(pHddCtx);
3908 if (0 != ret) {
3909
3910 return -EINVAL;
3911 }
3912 if (pHddCtx->cfg_ini->fTDLSExternalControl == FALSE) {
3913
3914 return -ENOTSUPP;
3915 }
3916 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_TDLS_GET_STATUS_MAX,
3917 data, data_len,
3918 wlan_hdd_tdls_config_get_status_policy)) {
3919 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid ATTR"));
3920 return -EINVAL;
3921 }
3922
3923 /* Parse and fetch mac address */
3924 if (!tb[QCA_WLAN_VENDOR_ATTR_TDLS_GET_STATUS_MAC_ADDR]) {
3925 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr mac addr failed"));
3926 return -EINVAL;
3927 }
3928
3929 memcpy(peer, nla_data(
3930 tb[QCA_WLAN_VENDOR_ATTR_TDLS_GET_STATUS_MAC_ADDR]),
3931 sizeof(peer));
3932 hddLog(VOS_TRACE_LEVEL_INFO, FL(MAC_ADDRESS_STR),MAC_ADDR_ARRAY(peer));
3933
3934 ret = wlan_hdd_tdls_get_status(pAdapter, peer, &state, &reason);
3935
3936 if (0 != ret) {
3937 hddLog(VOS_TRACE_LEVEL_ERROR,
3938 FL("get status Failed"));
3939 return -EINVAL;
3940 }
3941 skb = cfg80211_vendor_cmd_alloc_reply_skb(wiphy,
3942 2 * sizeof(s32) +
3943 NLMSG_HDRLEN);
3944
3945 if (!skb) {
3946 hddLog(VOS_TRACE_LEVEL_ERROR,
3947 FL("cfg80211_vendor_cmd_alloc_reply_skb failed"));
3948 return -EINVAL;
3949 }
3950 hddLog(VOS_TRACE_LEVEL_INFO, FL("Reason (%d) Status (%d) tdls peer" MAC_ADDRESS_STR),
3951 reason,
3952 state,
3953 MAC_ADDR_ARRAY(peer));
3954
3955 if (nla_put_s32(skb, QCA_WLAN_VENDOR_ATTR_TDLS_GET_STATUS_STATE, state) ||
3956 nla_put_s32(skb, QCA_WLAN_VENDOR_ATTR_TDLS_GET_STATUS_REASON, reason)) {
3957
3958 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla put fail"));
3959 goto nla_put_failure;
3960 }
3961
3962 return cfg80211_vendor_cmd_reply(skb);
3963
3964nla_put_failure:
3965 kfree_skb(skb);
3966 return -EINVAL;
3967}
3968
3969static int wlan_hdd_cfg80211_exttdls_callback(tANI_U8* mac,
3970 tANI_S32 state,
3971 tANI_S32 reason,
3972 void *ctx)
3973{
3974 hdd_adapter_t* pAdapter = (hdd_adapter_t*)ctx;
3975 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
3976 struct sk_buff *skb = NULL;
3977
3978 if (wlan_hdd_validate_context(pHddCtx)) {
3979 hddLog(VOS_TRACE_LEVEL_ERROR, FL("HDD context is not valid "));
3980 return -EINVAL;
3981 }
3982
3983 if (pHddCtx->cfg_ini->fTDLSExternalControl == FALSE) {
3984
3985 return -ENOTSUPP;
3986 }
3987 skb = cfg80211_vendor_event_alloc(
3988 pHddCtx->wiphy,
3989 EXTTDLS_EVENT_BUF_SIZE + NLMSG_HDRLEN,
3990 QCA_NL80211_VENDOR_SUBCMD_TDLS_STATE_CHANGE_INDEX,
3991 GFP_KERNEL);
3992
3993 if (!skb) {
3994 hddLog(VOS_TRACE_LEVEL_ERROR,
3995 FL("cfg80211_vendor_event_alloc failed"));
3996 return -EINVAL;
3997 }
3998 hddLog(VOS_TRACE_LEVEL_INFO, FL("Entering "));
3999 hddLog(VOS_TRACE_LEVEL_INFO, "Reason (%d) Status (%d)", reason, state);
4000 hddLog(VOS_TRACE_LEVEL_WARN, "tdls peer " MAC_ADDRESS_STR,
4001 MAC_ADDR_ARRAY(mac));
4002
4003 if (nla_put(skb, QCA_WLAN_VENDOR_ATTR_TDLS_STATE_MAC_ADDR,
4004 VOS_MAC_ADDR_SIZE, mac) ||
4005 nla_put_s32(skb, QCA_WLAN_VENDOR_ATTR_TDLS_NEW_STATE, state) ||
4006 nla_put_s32(skb, QCA_WLAN_VENDOR_ATTR_TDLS_STATE_REASON, reason)
4007 ) {
4008
4009 hddLog(VOS_TRACE_LEVEL_ERROR, FL("nla put fail"));
4010 goto nla_put_failure;
4011 }
4012
4013 cfg80211_vendor_event(skb, GFP_KERNEL);
4014 return (0);
4015
4016nla_put_failure:
4017 kfree_skb(skb);
4018 return -EINVAL;
4019}
4020
4021static int wlan_hdd_cfg80211_exttdls_enable(struct wiphy *wiphy,
4022 struct wireless_dev *wdev,
4023 void *data,
4024 int data_len)
4025{
4026 u8 peer[6] = {0};
4027 struct net_device *dev = wdev->netdev;
4028 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
4029 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
4030 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_MAX + 1];
4031 eHalStatus status;
4032 tdls_req_params_t pReqMsg = {0};
4033
4034 status = wlan_hdd_validate_context(pHddCtx);
4035 if (0 != status) {
4036 hddLog(VOS_TRACE_LEVEL_ERROR,
4037 FL("HDD context is not valid"));
4038 return -EINVAL;
4039 }
4040 if (pHddCtx->cfg_ini->fTDLSExternalControl == FALSE) {
4041
4042 return -ENOTSUPP;
4043 }
4044 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_MAX,
4045 data, data_len,
4046 wlan_hdd_tdls_config_enable_policy)) {
4047 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid ATTR"));
4048 return -EINVAL;
4049 }
4050
4051 /* Parse and fetch mac address */
4052 if (!tb[QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_MAC_ADDR]) {
4053 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr mac addr failed"));
4054 return -EINVAL;
4055 }
4056
4057 memcpy(peer, nla_data(
4058 tb[QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_MAC_ADDR]),
4059 sizeof(peer));
4060 hddLog(VOS_TRACE_LEVEL_INFO, FL(MAC_ADDRESS_STR),MAC_ADDR_ARRAY(peer));
4061
4062 /* Parse and fetch channel */
4063 if (!tb[QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_CHANNEL]) {
4064 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr channel failed"));
4065 return -EINVAL;
4066 }
4067 pReqMsg.channel = nla_get_s32(
4068 tb[QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_CHANNEL]);
4069 hddLog(VOS_TRACE_LEVEL_INFO, FL("Channel Num (%d)"), pReqMsg.channel);
4070
4071 /* Parse and fetch global operating class */
4072 if (!tb[QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_GLOBAL_OPERATING_CLASS]) {
4073 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr operating class failed"));
4074 return -EINVAL;
4075 }
4076 pReqMsg.global_operating_class = nla_get_s32(
4077 tb[QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_GLOBAL_OPERATING_CLASS]);
4078 hddLog(VOS_TRACE_LEVEL_INFO, FL("Operating class (%d)"),
4079 pReqMsg.global_operating_class);
4080
4081 /* Parse and fetch latency ms */
4082 if (!tb[QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_MAX_LATENCY_MS]) {
4083 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr latency failed"));
4084 return -EINVAL;
4085 }
4086 pReqMsg.max_latency_ms = nla_get_s32(
4087 tb[QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_MAX_LATENCY_MS]);
4088 hddLog(VOS_TRACE_LEVEL_INFO, FL("Latency (%d)"),
4089 pReqMsg.max_latency_ms);
4090
4091 /* Parse and fetch required bandwidth kbps */
4092 if (!tb[QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_MIN_BANDWIDTH_KBPS]) {
4093 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr bandwidth failed"));
4094 return -EINVAL;
4095 }
4096
4097 pReqMsg.min_bandwidth_kbps = nla_get_s32(
4098 tb[QCA_WLAN_VENDOR_ATTR_TDLS_ENABLE_MIN_BANDWIDTH_KBPS]);
4099 hddLog(VOS_TRACE_LEVEL_INFO, FL("Bandwidth (%d)"),
4100 pReqMsg.min_bandwidth_kbps);
4101
4102 return (wlan_hdd_tdls_extctrl_config_peer(pAdapter,
4103 peer,
4104 wlan_hdd_cfg80211_exttdls_callback));
4105}
4106
4107static int wlan_hdd_cfg80211_exttdls_disable(struct wiphy *wiphy,
4108 struct wireless_dev *wdev,
4109 void *data,
4110 int data_len)
4111{
4112 u8 peer[6] = {0};
4113 struct net_device *dev = wdev->netdev;
4114 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
4115 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
4116 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_TDLS_DISABLE_MAX + 1];
4117 eHalStatus status;
4118
4119 status = wlan_hdd_validate_context(pHddCtx);
4120 if (0 != status) {
4121 hddLog(VOS_TRACE_LEVEL_ERROR,
4122 FL("HDD context is not valid"));
4123 return -EINVAL;
4124 }
4125 if (pHddCtx->cfg_ini->fTDLSExternalControl == FALSE) {
4126
4127 return -ENOTSUPP;
4128 }
4129 if (nla_parse(tb, QCA_WLAN_VENDOR_ATTR_TDLS_DISABLE_MAX,
4130 data, data_len,
4131 wlan_hdd_tdls_config_disable_policy)) {
4132 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Invalid ATTR"));
4133 return -EINVAL;
4134 }
4135 /* Parse and fetch mac address */
4136 if (!tb[QCA_WLAN_VENDOR_ATTR_TDLS_DISABLE_MAC_ADDR]) {
4137 hddLog(VOS_TRACE_LEVEL_ERROR, FL("attr mac addr failed"));
4138 return -EINVAL;
4139 }
4140
4141 memcpy(peer, nla_data(
4142 tb[QCA_WLAN_VENDOR_ATTR_TDLS_DISABLE_MAC_ADDR]),
4143 sizeof(peer));
4144 hddLog(VOS_TRACE_LEVEL_INFO, FL(MAC_ADDRESS_STR),MAC_ADDR_ARRAY(peer));
4145
4146 return (wlan_hdd_tdls_extctrl_deconfig_peer(pAdapter, peer));
4147}
4148
4149
Sunil Duttc69bccb2014-05-26 21:30:20 +05304150const struct wiphy_vendor_command hdd_wiphy_vendor_commands[] =
4151{
4152#ifdef WLAN_FEATURE_LINK_LAYER_STATS
4153 {
4154 .info.vendor_id = QCA_NL80211_VENDOR_ID,
4155 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_CLR,
4156 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
4157 WIPHY_VENDOR_CMD_NEED_NETDEV |
4158 WIPHY_VENDOR_CMD_NEED_RUNNING,
4159 .doit = wlan_hdd_cfg80211_ll_stats_clear
4160 },
4161
4162 {
4163 .info.vendor_id = QCA_NL80211_VENDOR_ID,
4164 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_SET,
4165 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
4166 WIPHY_VENDOR_CMD_NEED_NETDEV |
4167 WIPHY_VENDOR_CMD_NEED_RUNNING,
4168 .doit = wlan_hdd_cfg80211_ll_stats_set
4169 },
4170
4171 {
4172 .info.vendor_id = QCA_NL80211_VENDOR_ID,
4173 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_GET,
4174 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
4175 WIPHY_VENDOR_CMD_NEED_NETDEV |
4176 WIPHY_VENDOR_CMD_NEED_RUNNING,
4177 .doit = wlan_hdd_cfg80211_ll_stats_get
Dino Mycle6fb96c12014-06-10 11:52:40 +05304178 },
Sunil Duttc69bccb2014-05-26 21:30:20 +05304179#endif /* WLAN_FEATURE_LINK_LAYER_STATS */
Dino Mycle6fb96c12014-06-10 11:52:40 +05304180#ifdef WLAN_FEATURE_EXTSCAN
4181 {
4182 .info.vendor_id = QCA_NL80211_VENDOR_ID,
4183 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_START,
4184 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
4185 WIPHY_VENDOR_CMD_NEED_NETDEV |
4186 WIPHY_VENDOR_CMD_NEED_RUNNING,
4187 .doit = wlan_hdd_cfg80211_extscan_start
4188 },
4189 {
4190 .info.vendor_id = QCA_NL80211_VENDOR_ID,
4191 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_STOP,
4192 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
4193 WIPHY_VENDOR_CMD_NEED_NETDEV |
4194 WIPHY_VENDOR_CMD_NEED_RUNNING,
4195 .doit = wlan_hdd_cfg80211_extscan_stop
4196 },
4197 {
4198 .info.vendor_id = QCA_NL80211_VENDOR_ID,
4199 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_GET_VALID_CHANNELS,
4200 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
4201 WIPHY_VENDOR_CMD_NEED_NETDEV,
4202 .doit = wlan_hdd_cfg80211_extscan_get_valid_channels
4203 },
4204 {
4205 .info.vendor_id = QCA_NL80211_VENDOR_ID,
4206 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_GET_CAPABILITIES,
4207 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
4208 WIPHY_VENDOR_CMD_NEED_NETDEV |
4209 WIPHY_VENDOR_CMD_NEED_RUNNING,
4210 .doit = wlan_hdd_cfg80211_extscan_get_capabilities
4211 },
4212 {
4213 .info.vendor_id = QCA_NL80211_VENDOR_ID,
4214 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_GET_CACHED_RESULTS,
4215 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
4216 WIPHY_VENDOR_CMD_NEED_NETDEV |
4217 WIPHY_VENDOR_CMD_NEED_RUNNING,
4218 .doit = wlan_hdd_cfg80211_extscan_get_cached_results
4219 },
4220 {
4221 .info.vendor_id = QCA_NL80211_VENDOR_ID,
4222 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_SET_BSSID_HOTLIST,
4223 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
4224 WIPHY_VENDOR_CMD_NEED_NETDEV |
4225 WIPHY_VENDOR_CMD_NEED_RUNNING,
4226 .doit = wlan_hdd_cfg80211_extscan_set_bssid_hotlist
4227 },
4228 {
4229 .info.vendor_id = QCA_NL80211_VENDOR_ID,
4230 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_RESET_BSSID_HOTLIST,
4231 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
4232 WIPHY_VENDOR_CMD_NEED_NETDEV |
4233 WIPHY_VENDOR_CMD_NEED_RUNNING,
4234 .doit = wlan_hdd_cfg80211_extscan_reset_bssid_hotlist
4235 },
4236 {
4237 .info.vendor_id = QCA_NL80211_VENDOR_ID,
4238 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_SET_SIGNIFICANT_CHANGE,
4239 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
4240 WIPHY_VENDOR_CMD_NEED_NETDEV |
4241 WIPHY_VENDOR_CMD_NEED_RUNNING,
4242 .doit = wlan_hdd_cfg80211_extscan_set_significant_change
4243 },
4244 {
4245 .info.vendor_id = QCA_NL80211_VENDOR_ID,
4246 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_RESET_SIGNIFICANT_CHANGE,
4247 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
4248 WIPHY_VENDOR_CMD_NEED_NETDEV |
4249 WIPHY_VENDOR_CMD_NEED_RUNNING,
4250 .doit = wlan_hdd_cfg80211_extscan_reset_significant_change
4251 },
4252#endif /* WLAN_FEATURE_EXTSCAN */
Atul Mittal115287b2014-07-08 13:26:33 +05304253/*EXT TDLS*/
4254 {
4255 .info.vendor_id = QCA_NL80211_VENDOR_ID,
4256 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_TDLS_ENABLE,
4257 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
4258 WIPHY_VENDOR_CMD_NEED_NETDEV |
4259 WIPHY_VENDOR_CMD_NEED_RUNNING,
4260 .doit = wlan_hdd_cfg80211_exttdls_enable
4261 },
4262 {
4263 .info.vendor_id = QCA_NL80211_VENDOR_ID,
4264 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_TDLS_DISABLE,
4265 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
4266 WIPHY_VENDOR_CMD_NEED_NETDEV |
4267 WIPHY_VENDOR_CMD_NEED_RUNNING,
4268 .doit = wlan_hdd_cfg80211_exttdls_disable
4269 },
4270 {
4271 .info.vendor_id = QCA_NL80211_VENDOR_ID,
4272 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_TDLS_GET_STATUS,
4273 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
4274 WIPHY_VENDOR_CMD_NEED_NETDEV,
4275 .doit = wlan_hdd_cfg80211_exttdls_get_status
4276 },
4277
Sunil Duttc69bccb2014-05-26 21:30:20 +05304278};
4279
Rajesh Chauhan98a31f82014-01-06 20:15:25 -08004280/* vendor specific events */
Sunil Duttc69bccb2014-05-26 21:30:20 +05304281static const
4282struct nl80211_vendor_cmd_info wlan_hdd_cfg80211_vendor_events[] =
Rajesh Chauhan98a31f82014-01-06 20:15:25 -08004283{
4284#ifdef FEATURE_WLAN_CH_AVOID
4285 {
Sunil Duttc69bccb2014-05-26 21:30:20 +05304286 .vendor_id = QCA_NL80211_VENDOR_ID,
4287 .subcmd = QCA_NL80211_VENDOR_SUBCMD_AVOID_FREQUENCY
Rajesh Chauhan98a31f82014-01-06 20:15:25 -08004288 },
Sunil Duttc69bccb2014-05-26 21:30:20 +05304289#endif /* FEATURE_WLAN_CH_AVOID Index = 0*/
4290#ifdef WLAN_FEATURE_LINK_LAYER_STATS
4291 {
4292 /* Index = 1*/
4293 .vendor_id = QCA_NL80211_VENDOR_ID,
4294 .subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_SET
4295 },
4296 {
4297 /* Index = 2*/
4298 .vendor_id = QCA_NL80211_VENDOR_ID,
4299 .subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_GET
4300 },
4301 {
4302 /* Index = 3*/
4303 .vendor_id = QCA_NL80211_VENDOR_ID,
4304 .subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_CLR
4305 },
4306 {
4307 /* Index = 4*/
4308 .vendor_id = QCA_NL80211_VENDOR_ID,
4309 .subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_RADIO_RESULTS
4310 },
4311 {
4312 /* Index = 5*/
4313 .vendor_id = QCA_NL80211_VENDOR_ID,
4314 .subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_IFACE_RESULTS
4315 },
4316 {
4317 /* Index = 6*/
4318 .vendor_id = QCA_NL80211_VENDOR_ID,
4319 .subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_PEERS_RESULTS
4320 },
4321#endif /* WLAN_FEATURE_LINK_LAYER_STATS */
Dino Mycle6fb96c12014-06-10 11:52:40 +05304322#ifdef WLAN_FEATURE_EXTSCAN
4323 {
4324 .vendor_id = QCA_NL80211_VENDOR_ID,
4325 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_START
4326 },
4327 {
4328 .vendor_id = QCA_NL80211_VENDOR_ID,
4329 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_STOP
4330 },
4331 {
4332 .vendor_id = QCA_NL80211_VENDOR_ID,
4333 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_GET_CAPABILITIES
4334 },
4335 {
4336 .vendor_id = QCA_NL80211_VENDOR_ID,
4337 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_GET_CACHED_RESULTS
4338 },
4339 {
4340 .vendor_id = QCA_NL80211_VENDOR_ID,
4341 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_SCAN_RESULTS_AVAILABLE
4342 },
4343 {
4344 .vendor_id = QCA_NL80211_VENDOR_ID,
4345 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_FULL_SCAN_RESULT
4346 },
4347 {
4348 .vendor_id = QCA_NL80211_VENDOR_ID,
4349 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_SCAN_EVENT
4350 },
4351 {
4352 .vendor_id = QCA_NL80211_VENDOR_ID,
4353 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_HOTLIST_AP_FOUND
4354 },
4355 {
4356 .vendor_id = QCA_NL80211_VENDOR_ID,
4357 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_SET_BSSID_HOTLIST
4358 },
4359 {
4360 .vendor_id = QCA_NL80211_VENDOR_ID,
4361 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_RESET_BSSID_HOTLIST
4362 },
4363 {
4364 .vendor_id = QCA_NL80211_VENDOR_ID,
4365 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_SIGNIFICANT_CHANGE
4366 },
4367 {
4368 .vendor_id = QCA_NL80211_VENDOR_ID,
4369 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_SET_SIGNIFICANT_CHANGE
4370 },
4371 {
4372 .vendor_id = QCA_NL80211_VENDOR_ID,
4373 .subcmd = QCA_NL80211_VENDOR_SUBCMD_EXTSCAN_RESET_SIGNIFICANT_CHANGE
4374 },
4375#endif /* WLAN_FEATURE_EXTSCAN */
Atul Mittal115287b2014-07-08 13:26:33 +05304376/*EXT TDLS*/
4377 {
4378 .vendor_id = QCA_NL80211_VENDOR_ID,
4379 .subcmd = QCA_NL80211_VENDOR_SUBCMD_TDLS_STATE
4380 },
Rajesh Chauhan98a31f82014-01-06 20:15:25 -08004381};
4382
Jeff Johnson295189b2012-06-20 16:38:30 -07004383/*
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05304384 * FUNCTION: wlan_hdd_cfg80211_wiphy_alloc
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304385 * This function is called by hdd_wlan_startup()
4386 * during initialization.
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05304387 * This function is used to allocate wiphy structure.
Jeff Johnson295189b2012-06-20 16:38:30 -07004388 */
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05304389struct wiphy *wlan_hdd_cfg80211_wiphy_alloc(int priv_size)
Jeff Johnson295189b2012-06-20 16:38:30 -07004390{
4391 struct wiphy *wiphy;
4392 ENTER();
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304393 /*
4394 * Create wiphy device
Jeff Johnson295189b2012-06-20 16:38:30 -07004395 */
4396 wiphy = wiphy_new(&wlan_hdd_cfg80211_ops, priv_size);
4397
4398 if (!wiphy)
4399 {
4400 /* Print error and jump into err label and free the memory */
4401 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: wiphy init failed", __func__);
4402 return NULL;
4403 }
4404
Sunil Duttc69bccb2014-05-26 21:30:20 +05304405
Jeff Johnson295189b2012-06-20 16:38:30 -07004406 return wiphy;
4407}
4408
4409/*
4410 * FUNCTION: wlan_hdd_cfg80211_update_band
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304411 * This function is called from the supplicant through a
Jeff Johnson295189b2012-06-20 16:38:30 -07004412 * private ioctl to change the band value
4413 */
4414int wlan_hdd_cfg80211_update_band(struct wiphy *wiphy, eCsrBand eBand)
4415{
Gopichand Nakkala1f7a64f2013-04-01 18:37:17 +05304416 int i, j;
4417 eNVChannelEnabledType channelEnabledState;
4418
Jeff Johnsone7245742012-09-05 17:12:55 -07004419 ENTER();
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05304420
Gopichand Nakkala1f7a64f2013-04-01 18:37:17 +05304421 for (i = 0; i < IEEE80211_NUM_BANDS; i++)
Jeff Johnson295189b2012-06-20 16:38:30 -07004422 {
Gopichand Nakkala1f7a64f2013-04-01 18:37:17 +05304423
4424 if (NULL == wiphy->bands[i])
4425 {
4426 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: wiphy->bands[i] is NULL, i = %d",
4427 __func__, i);
4428 continue;
4429 }
4430
4431 for (j = 0; j < wiphy->bands[i]->n_channels; j++)
4432 {
4433 struct ieee80211_supported_band *band = wiphy->bands[i];
4434
4435 channelEnabledState = vos_nv_getChannelEnabledState(
4436 band->channels[j].hw_value);
4437
4438 if (IEEE80211_BAND_2GHZ == i && eCSR_BAND_5G == eBand) // 5G only
4439 {
4440 // Enable Social channels for P2P
4441 if (WLAN_HDD_IS_SOCIAL_CHANNEL(band->channels[j].center_freq) &&
4442 NV_CHANNEL_ENABLE == channelEnabledState)
4443 band->channels[j].flags &= ~IEEE80211_CHAN_DISABLED;
4444 else
4445 band->channels[j].flags |= IEEE80211_CHAN_DISABLED;
4446 continue;
4447 }
4448 else if (IEEE80211_BAND_5GHZ == i && eCSR_BAND_24 == eBand) // 2G only
4449 {
4450 band->channels[j].flags |= IEEE80211_CHAN_DISABLED;
4451 continue;
4452 }
4453
4454 if (NV_CHANNEL_DISABLE == channelEnabledState ||
4455 NV_CHANNEL_INVALID == channelEnabledState)
4456 {
4457 band->channels[j].flags |= IEEE80211_CHAN_DISABLED;
4458 }
4459 else if (NV_CHANNEL_DFS == channelEnabledState)
4460 {
4461 band->channels[j].flags &= ~IEEE80211_CHAN_DISABLED;
4462 band->channels[j].flags |= IEEE80211_CHAN_RADAR;
4463 }
4464 else
4465 {
4466 band->channels[j].flags &= ~(IEEE80211_CHAN_DISABLED
4467 |IEEE80211_CHAN_RADAR);
4468 }
4469 }
Jeff Johnson295189b2012-06-20 16:38:30 -07004470 }
4471 return 0;
4472}
4473/*
4474 * FUNCTION: wlan_hdd_cfg80211_init
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304475 * This function is called by hdd_wlan_startup()
4476 * during initialization.
Jeff Johnson295189b2012-06-20 16:38:30 -07004477 * This function is used to initialize and register wiphy structure.
4478 */
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05304479int wlan_hdd_cfg80211_init(struct device *dev,
Jeff Johnson295189b2012-06-20 16:38:30 -07004480 struct wiphy *wiphy,
4481 hdd_config_t *pCfg
4482 )
4483{
Gopichand Nakkala1f7a64f2013-04-01 18:37:17 +05304484 int i, j;
Vinay Krishna Erannafacf5e22014-02-24 13:16:25 +05304485 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
4486
Jeff Johnsone7245742012-09-05 17:12:55 -07004487 ENTER();
4488
Jeff Johnson295189b2012-06-20 16:38:30 -07004489 /* Now bind the underlying wlan device with wiphy */
4490 set_wiphy_dev(wiphy, dev);
4491
4492 wiphy->mgmt_stypes = wlan_hdd_txrx_stypes;
Amar Singhalfddc28c2013-09-05 13:03:40 -07004493
Kiet Lam6c583332013-10-14 05:37:09 +05304494#ifndef CONFIG_ENABLE_LINUX_REG
Amar Singhal0a402232013-10-11 20:57:16 -07004495 /* the flag for the other case would be initialzed in
4496 vos_init_wiphy_from_nv_bin */
Amar Singhal0a402232013-10-11 20:57:16 -07004497 wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY;
Kiet Lam6c583332013-10-14 05:37:09 +05304498#endif
Amar Singhala49cbc52013-10-08 18:37:44 -07004499
Amar Singhalfddc28c2013-09-05 13:03:40 -07004500 /* This will disable updating of NL channels from passive to
4501 * active if a beacon is received on passive channel. */
4502 wiphy->flags |= WIPHY_FLAG_DISABLE_BEACON_HINTS;
Amar Singhalf0073192013-09-20 12:34:56 -07004503
Amar Singhalfddc28c2013-09-05 13:03:40 -07004504
Amar Singhala49cbc52013-10-08 18:37:44 -07004505
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004506#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
Madan Mohan Koyyalamudi1b4afb02012-10-22 15:25:16 -07004507 wiphy->flags |= WIPHY_FLAG_HAVE_AP_SME
4508 | WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD
4509 | WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL
Jeff Johnsone7245742012-09-05 17:12:55 -07004510 | WIPHY_FLAG_OFFCHAN_TX;
Kiet Lam6c583332013-10-14 05:37:09 +05304511 wiphy->country_ie_pref = NL80211_COUNTRY_IE_IGNORE_CORE;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004512#endif
Amar Singhala49cbc52013-10-08 18:37:44 -07004513
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004514#if defined (WLAN_FEATURE_VOWIFI_11R) || defined (FEATURE_WLAN_ESE) || defined(FEATURE_WLAN_LFR)
Srinivas Girigowda640728a2013-03-28 12:21:54 -07004515 if (pCfg->isFastTransitionEnabled
James Zmuda77fb5ae2013-01-29 08:00:17 -08004516#ifdef FEATURE_WLAN_LFR
Srinivas Girigowda640728a2013-03-28 12:21:54 -07004517 || pCfg->isFastRoamIniFeatureEnabled
4518#endif
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08004519#ifdef FEATURE_WLAN_ESE
4520 || pCfg->isEseIniFeatureEnabled
Srinivas Girigowda640728a2013-03-28 12:21:54 -07004521#endif
4522 )
4523 {
4524 wiphy->flags |= WIPHY_FLAG_SUPPORTS_FW_ROAM;
4525 }
James Zmuda77fb5ae2013-01-29 08:00:17 -08004526#endif
Mohit Khanna698ba2a2012-12-04 15:08:18 -08004527#ifdef FEATURE_WLAN_TDLS
4528 wiphy->flags |= WIPHY_FLAG_SUPPORTS_TDLS
4529 | WIPHY_FLAG_TDLS_EXTERNAL_SETUP;
4530#endif
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05304531#ifdef FEATURE_WLAN_SCAN_PNO
Hardik Kantilal Patel3dfd8792013-11-13 20:34:57 +05304532 if (pCfg->configPNOScanSupport)
4533 {
4534 wiphy->flags |= WIPHY_FLAG_SUPPORTS_SCHED_SCAN;
4535 wiphy->max_sched_scan_ssids = SIR_PNO_MAX_SUPP_NETWORKS;
4536 wiphy->max_match_sets = SIR_PNO_MAX_SUPP_NETWORKS;
4537 wiphy->max_sched_scan_ie_len = SIR_MAC_MAX_IE_LENGTH;
4538 }
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05304539#endif/*FEATURE_WLAN_SCAN_PNO*/
Mohit Khanna698ba2a2012-12-04 15:08:18 -08004540
Amar Singhalfddc28c2013-09-05 13:03:40 -07004541#ifdef CONFIG_ENABLE_LINUX_REG
Madan Mohan Koyyalamudic3a240c2012-09-28 15:34:08 -07004542 /* even with WIPHY_FLAG_CUSTOM_REGULATORY,
4543 driver can still register regulatory callback and
Amar Singhalfddc28c2013-09-05 13:03:40 -07004544 it will get regulatory settings in wiphy->band[], but
Madan Mohan Koyyalamudic3a240c2012-09-28 15:34:08 -07004545 driver need to determine what to do with both
4546 regulatory settings */
Amar Singhalfddc28c2013-09-05 13:03:40 -07004547
4548 wiphy->reg_notifier = wlan_hdd_linux_reg_notifier;
Amar Singhala49cbc52013-10-08 18:37:44 -07004549#else
4550 wiphy->reg_notifier = wlan_hdd_crda_reg_notifier;
Amar Singhalfddc28c2013-09-05 13:03:40 -07004551#endif
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004552
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304553 wiphy->max_scan_ssids = MAX_SCAN_SSID;
4554
Madan Mohan Koyyalamudi6815b162013-07-19 17:17:46 +05304555 wiphy->max_scan_ie_len = SIR_MAC_MAX_IE_LENGTH;
Jeff Johnson295189b2012-06-20 16:38:30 -07004556
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05304557 wiphy->max_acl_mac_addrs = MAX_ACL_MAC_ADDRESS;
4558
Jeff Johnson295189b2012-06-20 16:38:30 -07004559 /* Supports STATION & AD-HOC modes right now */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304560 wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION)
Jeff Johnson295189b2012-06-20 16:38:30 -07004561 | BIT(NL80211_IFTYPE_ADHOC)
Jeff Johnson295189b2012-06-20 16:38:30 -07004562 | BIT(NL80211_IFTYPE_P2P_CLIENT)
4563 | BIT(NL80211_IFTYPE_P2P_GO)
Jeff Johnson295189b2012-06-20 16:38:30 -07004564 | BIT(NL80211_IFTYPE_AP);
4565
Rashmi Ramannabd3feb72014-02-25 16:14:48 +05304566 if( pCfg->advertiseConcurrentOperation )
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -08004567 {
Rashmi Ramannabd3feb72014-02-25 16:14:48 +05304568#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
4569 if( pCfg->enableMCC )
4570 {
4571 /* Currently, supports up to two channels */
4572 wlan_hdd_iface_combination.num_different_channels = 2;
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -08004573
Rashmi Ramannabd3feb72014-02-25 16:14:48 +05304574 if( !pCfg->allowMCCGODiffBI )
4575 wlan_hdd_iface_combination.beacon_int_infra_match = true;
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -08004576
Rashmi Ramannabd3feb72014-02-25 16:14:48 +05304577 }
4578 wiphy->iface_combinations = &wlan_hdd_iface_combination;
4579 wiphy->n_iface_combinations = 1;
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -08004580#endif
Rashmi Ramannabd3feb72014-02-25 16:14:48 +05304581 }
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -08004582
Jeff Johnson295189b2012-06-20 16:38:30 -07004583 /* Before registering we need to update the ht capabilitied based
4584 * on ini values*/
4585 if( !pCfg->ShortGI20MhzEnable )
4586 {
4587 wlan_hdd_band_2_4_GHZ.ht_cap.cap &= ~IEEE80211_HT_CAP_SGI_20;
4588 wlan_hdd_band_5_GHZ.ht_cap.cap &= ~IEEE80211_HT_CAP_SGI_20;
4589 wlan_hdd_band_p2p_2_4_GHZ.ht_cap.cap &= ~IEEE80211_HT_CAP_SGI_20;
4590 }
4591
4592 if( !pCfg->ShortGI40MhzEnable )
4593 {
4594 wlan_hdd_band_5_GHZ.ht_cap.cap &= ~IEEE80211_HT_CAP_SGI_40;
4595 }
4596
4597 if( !pCfg->nChannelBondingMode5GHz )
4598 {
4599 wlan_hdd_band_5_GHZ.ht_cap.cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
4600 }
4601
Gopichand Nakkala1f7a64f2013-04-01 18:37:17 +05304602 wiphy->bands[IEEE80211_BAND_2GHZ] = &wlan_hdd_band_2_4_GHZ;
Vinay Krishna Erannafacf5e22014-02-24 13:16:25 +05304603 if (true == hdd_is_5g_supported(pHddCtx))
4604 {
4605 wiphy->bands[IEEE80211_BAND_5GHZ] = &wlan_hdd_band_5_GHZ;
4606 }
Gopichand Nakkala1f7a64f2013-04-01 18:37:17 +05304607
4608 for (i = 0; i < IEEE80211_NUM_BANDS; i++)
4609 {
4610
4611 if (NULL == wiphy->bands[i])
4612 {
4613 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: wiphy->bands[i] is NULL, i = %d",
4614 __func__, i);
4615 continue;
4616 }
4617
4618 for (j = 0; j < wiphy->bands[i]->n_channels; j++)
4619 {
4620 struct ieee80211_supported_band *band = wiphy->bands[i];
4621
4622 if (IEEE80211_BAND_2GHZ == i && eCSR_BAND_5G == pCfg->nBandCapability) // 5G only
4623 {
4624 // Enable social channels for P2P
4625 if (WLAN_HDD_IS_SOCIAL_CHANNEL(band->channels[j].center_freq))
4626 band->channels[j].flags &= ~IEEE80211_CHAN_DISABLED;
4627 else
4628 band->channels[j].flags |= IEEE80211_CHAN_DISABLED;
4629 continue;
4630 }
4631 else if (IEEE80211_BAND_5GHZ == i && eCSR_BAND_24 == pCfg->nBandCapability) // 2G only
4632 {
4633 band->channels[j].flags |= IEEE80211_CHAN_DISABLED;
4634 continue;
4635 }
4636 }
Jeff Johnson295189b2012-06-20 16:38:30 -07004637 }
4638 /*Initialise the supported cipher suite details*/
4639 wiphy->cipher_suites = hdd_cipher_suites;
4640 wiphy->n_cipher_suites = ARRAY_SIZE(hdd_cipher_suites);
4641
4642 /*signal strength in mBm (100*dBm) */
4643 wiphy->signal_type = CFG80211_SIGNAL_TYPE_MBM;
4644
4645#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
Sushant Kaushik4f640e42014-07-08 12:27:09 +05304646 wiphy->max_remain_on_channel_duration = 5000;
Jeff Johnson295189b2012-06-20 16:38:30 -07004647#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07004648
Sunil Duttc69bccb2014-05-26 21:30:20 +05304649 wiphy->n_vendor_commands = ARRAY_SIZE(hdd_wiphy_vendor_commands);
4650 wiphy->vendor_commands = hdd_wiphy_vendor_commands;
Rajesh Chauhan98a31f82014-01-06 20:15:25 -08004651 wiphy->vendor_events = wlan_hdd_cfg80211_vendor_events;
4652 wiphy->n_vendor_events = ARRAY_SIZE(wlan_hdd_cfg80211_vendor_events);
4653
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05304654 EXIT();
4655 return 0;
4656}
4657
4658/* In this function we are registering wiphy. */
4659int wlan_hdd_cfg80211_register(struct wiphy *wiphy)
4660{
4661 ENTER();
4662 /* Register our wiphy dev with cfg80211 */
Jeff Johnson295189b2012-06-20 16:38:30 -07004663 if (0 > wiphy_register(wiphy))
4664 {
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05304665 /* print error */
Jeff Johnson295189b2012-06-20 16:38:30 -07004666 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: wiphy register failed", __func__);
4667 return -EIO;
4668 }
4669
4670 EXIT();
4671 return 0;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304672}
Jeff Johnson295189b2012-06-20 16:38:30 -07004673
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05304674/* In this function we are updating channel list when,
4675 regulatory domain is FCC and country code is US.
4676 Here In FCC standard 5GHz UNII-1 Bands are indoor only.
4677 As per FCC smart phone is not a indoor device.
4678 GO should not opeate on indoor channels */
4679void wlan_hdd_cfg80211_update_reg_info(struct wiphy *wiphy)
4680{
4681 int j;
4682 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
4683 tANI_U8 defaultCountryCode[3] = SME_INVALID_COUNTRY_CODE;
4684 //Default counrtycode from NV at the time of wiphy initialization.
4685 if (eHAL_STATUS_SUCCESS != sme_GetDefaultCountryCodeFrmNv(pHddCtx->hHal,
4686 &defaultCountryCode[0]))
4687 {
Jeff Johnson0299d0a2013-10-30 12:37:43 -07004688 hddLog(LOGE, FL("Failed to get default country code from NV"));
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05304689 }
4690 if ((defaultCountryCode[0]== 'U') && (defaultCountryCode[1]=='S'))
4691 {
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05304692 if (NULL == wiphy->bands[IEEE80211_BAND_5GHZ])
4693 {
4694 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: wiphy->bands[IEEE80211_BAND_5GHZ] is NULL",__func__ );
4695 return;
4696 }
4697 for (j = 0; j < wiphy->bands[IEEE80211_BAND_5GHZ]->n_channels; j++)
4698 {
4699 struct ieee80211_supported_band *band = wiphy->bands[IEEE80211_BAND_5GHZ];
4700 // Mark UNII -1 band channel as passive
4701 if (WLAN_HDD_CHANNEL_IN_UNII_1_BAND(band->channels[j].center_freq))
4702 band->channels[j].flags |= IEEE80211_CHAN_PASSIVE_SCAN;
4703 }
4704 }
4705}
4706
Agarwal Ashish8fa0e9a2014-05-23 00:40:12 +05304707/* This function registers for all frame which supplicant is interested in */
4708void wlan_hdd_cfg80211_register_frames(hdd_adapter_t* pAdapter)
Jeff Johnson295189b2012-06-20 16:38:30 -07004709{
Jeff Johnson295189b2012-06-20 16:38:30 -07004710 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
4711 /* Register for all P2P action, public action etc frames */
4712 v_U16_t type = (SIR_MAC_MGMT_FRAME << 2) | ( SIR_MAC_MGMT_ACTION << 4);
4713
Jeff Johnsone7245742012-09-05 17:12:55 -07004714 ENTER();
4715
Jeff Johnson295189b2012-06-20 16:38:30 -07004716 /* Right now we are registering these frame when driver is getting
4717 initialized. Once we will move to 2.6.37 kernel, in which we have
4718 frame register ops, we will move this code as a part of that */
4719 /* GAS Initial Request */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304720 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
Jeff Johnson295189b2012-06-20 16:38:30 -07004721 (v_U8_t*)GAS_INITIAL_REQ, GAS_INITIAL_REQ_SIZE );
4722
4723 /* GAS Initial Response */
4724 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
4725 (v_U8_t*)GAS_INITIAL_RSP, GAS_INITIAL_RSP_SIZE );
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304726
Jeff Johnson295189b2012-06-20 16:38:30 -07004727 /* GAS Comeback Request */
4728 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
4729 (v_U8_t*)GAS_COMEBACK_REQ, GAS_COMEBACK_REQ_SIZE );
4730
4731 /* GAS Comeback Response */
4732 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
4733 (v_U8_t*)GAS_COMEBACK_RSP, GAS_COMEBACK_RSP_SIZE );
4734
4735 /* P2P Public Action */
4736 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304737 (v_U8_t*)P2P_PUBLIC_ACTION_FRAME,
Jeff Johnson295189b2012-06-20 16:38:30 -07004738 P2P_PUBLIC_ACTION_FRAME_SIZE );
4739
4740 /* P2P Action */
4741 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
4742 (v_U8_t*)P2P_ACTION_FRAME,
4743 P2P_ACTION_FRAME_SIZE );
Chet Lanctot186b5732013-03-18 10:26:30 -07004744
Gopichand Nakkalae3d56e72013-04-21 23:33:32 +05304745 /* WNM BSS Transition Request frame */
4746 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
4747 (v_U8_t*)WNM_BSS_ACTION_FRAME,
4748 WNM_BSS_ACTION_FRAME_SIZE );
Leela Venkata Kiran Kumar Reddy Chiralae8e62c82013-10-29 18:23:26 -07004749
4750 /* WNM-Notification */
4751 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
4752 (v_U8_t*)WNM_NOTIFICATION_FRAME,
4753 WNM_NOTIFICATION_FRAME_SIZE );
Jeff Johnson295189b2012-06-20 16:38:30 -07004754}
4755
Agarwal Ashish8fa0e9a2014-05-23 00:40:12 +05304756void wlan_hdd_cfg80211_deregister_frames(hdd_adapter_t* pAdapter)
Jeff Johnson295189b2012-06-20 16:38:30 -07004757{
Jeff Johnson295189b2012-06-20 16:38:30 -07004758 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
4759 /* Register for all P2P action, public action etc frames */
4760 v_U16_t type = (SIR_MAC_MGMT_FRAME << 2) | ( SIR_MAC_MGMT_ACTION << 4);
4761
Jeff Johnsone7245742012-09-05 17:12:55 -07004762 ENTER();
4763
Jeff Johnson295189b2012-06-20 16:38:30 -07004764 /* Right now we are registering these frame when driver is getting
4765 initialized. Once we will move to 2.6.37 kernel, in which we have
4766 frame register ops, we will move this code as a part of that */
4767 /* GAS Initial Request */
4768
4769 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
4770 (v_U8_t*)GAS_INITIAL_REQ, GAS_INITIAL_REQ_SIZE );
4771
4772 /* GAS Initial Response */
4773 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
4774 (v_U8_t*)GAS_INITIAL_RSP, GAS_INITIAL_RSP_SIZE );
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304775
Jeff Johnson295189b2012-06-20 16:38:30 -07004776 /* GAS Comeback Request */
4777 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
4778 (v_U8_t*)GAS_COMEBACK_REQ, GAS_COMEBACK_REQ_SIZE );
4779
4780 /* GAS Comeback Response */
4781 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
4782 (v_U8_t*)GAS_COMEBACK_RSP, GAS_COMEBACK_RSP_SIZE );
4783
4784 /* P2P Public Action */
4785 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304786 (v_U8_t*)P2P_PUBLIC_ACTION_FRAME,
Jeff Johnson295189b2012-06-20 16:38:30 -07004787 P2P_PUBLIC_ACTION_FRAME_SIZE );
4788
4789 /* P2P Action */
4790 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
4791 (v_U8_t*)P2P_ACTION_FRAME,
4792 P2P_ACTION_FRAME_SIZE );
Leela Venkata Kiran Kumar Reddy Chiralae8e62c82013-10-29 18:23:26 -07004793 /* WNM-Notification */
4794 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
4795 (v_U8_t*)WNM_NOTIFICATION_FRAME,
4796 WNM_NOTIFICATION_FRAME_SIZE );
Jeff Johnson295189b2012-06-20 16:38:30 -07004797}
4798
4799#ifdef FEATURE_WLAN_WAPI
4800void wlan_hdd_cfg80211_set_key_wapi(hdd_adapter_t* pAdapter, u8 key_index,
4801 const u8 *mac_addr, u8 *key , int key_Len)
4802{
4803 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
4804 tCsrRoamSetKey setKey;
4805 v_BOOL_t isConnected = TRUE;
4806 int status = 0;
4807 v_U32_t roamId= 0xFF;
4808 tANI_U8 *pKeyPtr = NULL;
4809 int n = 0;
4810
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05304811 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s(%d)",
4812 __func__, hdd_device_modetoString(pAdapter->device_mode),
4813 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07004814
Gopichand Nakkalae7480202013-02-11 15:24:22 +05304815 vos_mem_zero(&setKey, sizeof(tCsrRoamSetKey));
Jeff Johnson295189b2012-06-20 16:38:30 -07004816 setKey.keyId = key_index; // Store Key ID
4817 setKey.encType = eCSR_ENCRYPT_TYPE_WPI; // SET WAPI Encryption
4818 setKey.keyDirection = eSIR_TX_RX; // Key Directionn both TX and RX
4819 setKey.paeRole = 0 ; // the PAE role
4820 if (!mac_addr || is_broadcast_ether_addr(mac_addr))
4821 {
4822 vos_set_macaddr_broadcast( (v_MACADDR_t *)setKey.peerMac );
4823 }
4824 else
4825 {
4826 isConnected = hdd_connIsConnected(pHddStaCtx);
4827 vos_mem_copy(setKey.peerMac,&pHddStaCtx->conn_info.bssId,WNI_CFG_BSSID_LEN);
4828 }
4829 setKey.keyLength = key_Len;
4830 pKeyPtr = setKey.Key;
4831 memcpy( pKeyPtr, key, key_Len);
4832
Arif Hussain6d2a3322013-11-17 19:50:10 -08004833 hddLog(VOS_TRACE_LEVEL_INFO,"%s: WAPI KEY LENGTH:0x%04x",
Jeff Johnson295189b2012-06-20 16:38:30 -07004834 __func__, key_Len);
4835 for (n = 0 ; n < key_Len; n++)
4836 hddLog(VOS_TRACE_LEVEL_INFO, "%s WAPI KEY Data[%d]:%02x ",
4837 __func__,n,setKey.Key[n]);
4838
4839 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_SETTING_KEY;
4840 if ( isConnected )
4841 {
4842 status= sme_RoamSetKey( WLAN_HDD_GET_HAL_CTX(pAdapter),
4843 pAdapter->sessionId, &setKey, &roamId );
4844 }
4845 if ( status != 0 )
4846 {
4847 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4848 "[%4d] sme_RoamSetKey returned ERROR status= %d",
4849 __LINE__, status );
4850 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_NONE;
4851 }
4852}
4853#endif /* FEATURE_WLAN_WAPI*/
4854
4855#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304856int wlan_hdd_cfg80211_alloc_new_beacon(hdd_adapter_t *pAdapter,
Jeff Johnson295189b2012-06-20 16:38:30 -07004857 beacon_data_t **ppBeacon,
4858 struct beacon_parameters *params)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004859#else
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304860int wlan_hdd_cfg80211_alloc_new_beacon(hdd_adapter_t *pAdapter,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004861 beacon_data_t **ppBeacon,
4862 struct cfg80211_beacon_data *params,
4863 int dtim_period)
4864#endif
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304865{
Jeff Johnson295189b2012-06-20 16:38:30 -07004866 int size;
4867 beacon_data_t *beacon = NULL;
4868 beacon_data_t *old = NULL;
4869 int head_len,tail_len;
4870
Jeff Johnsone7245742012-09-05 17:12:55 -07004871 ENTER();
Jeff Johnson295189b2012-06-20 16:38:30 -07004872 if (params->head && !params->head_len)
c_hpothu6ff1c3c2013-10-01 19:01:57 +05304873 {
4874 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4875 FL("head_len is NULL"));
Jeff Johnson295189b2012-06-20 16:38:30 -07004876 return -EINVAL;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05304877 }
Jeff Johnson295189b2012-06-20 16:38:30 -07004878
4879 old = pAdapter->sessionCtx.ap.beacon;
4880
4881 if (!params->head && !old)
c_hpothu6ff1c3c2013-10-01 19:01:57 +05304882 {
4883 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4884 FL("session(%d) old and new heads points to NULL"),
4885 pAdapter->sessionId);
Jeff Johnson295189b2012-06-20 16:38:30 -07004886 return -EINVAL;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05304887 }
4888
4889 if (params->tail && !params->tail_len)
4890 {
4891 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4892 FL("tail_len is zero but tail is not NULL"));
4893 return -EINVAL;
4894 }
Jeff Johnson295189b2012-06-20 16:38:30 -07004895
Jeff Johnson295189b2012-06-20 16:38:30 -07004896#if (LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,38))
4897 /* Kernel 3.0 is not updating dtim_period for set beacon */
4898 if (!params->dtim_period)
c_hpothu6ff1c3c2013-10-01 19:01:57 +05304899 {
4900 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4901 FL("dtim period is 0"));
Jeff Johnson295189b2012-06-20 16:38:30 -07004902 return -EINVAL;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05304903 }
Jeff Johnson295189b2012-06-20 16:38:30 -07004904#endif
4905
4906 if(params->head)
4907 head_len = params->head_len;
4908 else
4909 head_len = old->head_len;
4910
4911 if(params->tail || !old)
4912 tail_len = params->tail_len;
4913 else
4914 tail_len = old->tail_len;
4915
4916 size = sizeof(beacon_data_t) + head_len + tail_len;
4917
4918 beacon = kzalloc(size, GFP_KERNEL);
4919
4920 if( beacon == NULL )
c_hpothu6ff1c3c2013-10-01 19:01:57 +05304921 {
4922 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4923 FL("Mem allocation for beacon failed"));
Jeff Johnson295189b2012-06-20 16:38:30 -07004924 return -ENOMEM;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05304925 }
Jeff Johnson295189b2012-06-20 16:38:30 -07004926
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004927#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
Jeff Johnson295189b2012-06-20 16:38:30 -07004928 if(params->dtim_period || !old )
4929 beacon->dtim_period = params->dtim_period;
4930 else
4931 beacon->dtim_period = old->dtim_period;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004932#else
4933 if(dtim_period || !old )
4934 beacon->dtim_period = dtim_period;
4935 else
4936 beacon->dtim_period = old->dtim_period;
4937#endif
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304938
Jeff Johnson295189b2012-06-20 16:38:30 -07004939 beacon->head = ((u8 *) beacon) + sizeof(beacon_data_t);
4940 beacon->tail = beacon->head + head_len;
4941 beacon->head_len = head_len;
4942 beacon->tail_len = tail_len;
4943
4944 if(params->head) {
4945 memcpy (beacon->head,params->head,beacon->head_len);
4946 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304947 else {
Jeff Johnson295189b2012-06-20 16:38:30 -07004948 if(old)
4949 memcpy (beacon->head,old->head,beacon->head_len);
4950 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304951
Jeff Johnson295189b2012-06-20 16:38:30 -07004952 if(params->tail) {
4953 memcpy (beacon->tail,params->tail,beacon->tail_len);
4954 }
4955 else {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304956 if(old)
Jeff Johnson295189b2012-06-20 16:38:30 -07004957 memcpy (beacon->tail,old->tail,beacon->tail_len);
4958 }
4959
4960 *ppBeacon = beacon;
4961
4962 kfree(old);
4963
4964 return 0;
4965
4966}
Jeff Johnson295189b2012-06-20 16:38:30 -07004967
4968v_U8_t* wlan_hdd_cfg80211_get_ie_ptr(v_U8_t *pIes, int length, v_U8_t eid)
4969{
4970 int left = length;
4971 v_U8_t *ptr = pIes;
4972 v_U8_t elem_id,elem_len;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304973
Jeff Johnson295189b2012-06-20 16:38:30 -07004974 while(left >= 2)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304975 {
Jeff Johnson295189b2012-06-20 16:38:30 -07004976 elem_id = ptr[0];
4977 elem_len = ptr[1];
4978 left -= 2;
4979 if(elem_len > left)
4980 {
4981 hddLog(VOS_TRACE_LEVEL_FATAL,
Madan Mohan Koyyalamudi8bdd3112012-09-24 13:55:14 -07004982 FL("****Invalid IEs eid = %d elem_len=%d left=%d*****"),
Jeff Johnson295189b2012-06-20 16:38:30 -07004983 eid,elem_len,left);
4984 return NULL;
4985 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304986 if (elem_id == eid)
Jeff Johnson295189b2012-06-20 16:38:30 -07004987 {
4988 return ptr;
4989 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304990
Jeff Johnson295189b2012-06-20 16:38:30 -07004991 left -= elem_len;
4992 ptr += (elem_len + 2);
4993 }
4994 return NULL;
4995}
4996
Jeff Johnson295189b2012-06-20 16:38:30 -07004997/* Check if rate is 11g rate or not */
4998static int wlan_hdd_rate_is_11g(u8 rate)
4999{
Sanjay Devnani28322e22013-06-21 16:13:40 -07005000 static const u8 gRateArray[8] = {12, 18, 24, 36, 48, 72, 96, 108}; /* actual rate * 2 */
Jeff Johnson295189b2012-06-20 16:38:30 -07005001 u8 i;
5002 for (i = 0; i < 8; i++)
5003 {
5004 if(rate == gRateArray[i])
5005 return TRUE;
5006 }
5007 return FALSE;
5008}
5009
5010/* Check for 11g rate and set proper 11g only mode */
5011static void wlan_hdd_check_11gmode(u8 *pIe, u8* require_ht,
5012 u8* pCheckRatesfor11g, eSapPhyMode* pSapHw_mode)
5013{
5014 u8 i, num_rates = pIe[0];
5015
5016 pIe += 1;
5017 for ( i = 0; i < num_rates; i++)
5018 {
5019 if( *pCheckRatesfor11g && (TRUE == wlan_hdd_rate_is_11g(pIe[i] & RATE_MASK)))
5020 {
5021 /* If rate set have 11g rate than change the mode to 11G */
5022 *pSapHw_mode = eSAP_DOT11_MODE_11g;
5023 if (pIe[i] & BASIC_RATE_MASK)
5024 {
5025 /* If we have 11g rate as basic rate, it means mode
5026 is 11g only mode.
5027 */
5028 *pSapHw_mode = eSAP_DOT11_MODE_11g_ONLY;
5029 *pCheckRatesfor11g = FALSE;
5030 }
5031 }
5032 else if((BASIC_RATE_MASK | WLAN_BSS_MEMBERSHIP_SELECTOR_HT_PHY) == pIe[i])
5033 {
5034 *require_ht = TRUE;
5035 }
5036 }
5037 return;
5038}
5039
5040static void wlan_hdd_set_sapHwmode(hdd_adapter_t *pHostapdAdapter)
5041{
5042 tsap_Config_t *pConfig = &pHostapdAdapter->sessionCtx.ap.sapConfig;
5043 beacon_data_t *pBeacon = pHostapdAdapter->sessionCtx.ap.beacon;
5044 struct ieee80211_mgmt *pMgmt_frame = (struct ieee80211_mgmt*)pBeacon->head;
5045 u8 checkRatesfor11g = TRUE;
5046 u8 require_ht = FALSE;
5047 u8 *pIe=NULL;
5048
5049 pConfig->SapHw_mode= eSAP_DOT11_MODE_11b;
5050
5051 pIe = wlan_hdd_cfg80211_get_ie_ptr(&pMgmt_frame->u.beacon.variable[0],
5052 pBeacon->head_len, WLAN_EID_SUPP_RATES);
5053 if (pIe != NULL)
5054 {
5055 pIe += 1;
5056 wlan_hdd_check_11gmode(pIe, &require_ht, &checkRatesfor11g,
5057 &pConfig->SapHw_mode);
5058 }
5059
5060 pIe = wlan_hdd_cfg80211_get_ie_ptr(pBeacon->tail, pBeacon->tail_len,
5061 WLAN_EID_EXT_SUPP_RATES);
5062 if (pIe != NULL)
5063 {
5064
5065 pIe += 1;
5066 wlan_hdd_check_11gmode(pIe, &require_ht, &checkRatesfor11g,
5067 &pConfig->SapHw_mode);
5068 }
5069
5070 if( pConfig->channel > 14 )
5071 {
5072 pConfig->SapHw_mode= eSAP_DOT11_MODE_11a;
5073 }
5074
5075 pIe = wlan_hdd_cfg80211_get_ie_ptr(pBeacon->tail, pBeacon->tail_len,
5076 WLAN_EID_HT_CAPABILITY);
5077
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305078 if(pIe)
Jeff Johnson295189b2012-06-20 16:38:30 -07005079 {
5080 pConfig->SapHw_mode= eSAP_DOT11_MODE_11n;
5081 if(require_ht)
5082 pConfig->SapHw_mode= eSAP_DOT11_MODE_11n_ONLY;
5083 }
5084}
5085
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05305086static int wlan_hdd_add_ie(hdd_adapter_t* pHostapdAdapter, v_U8_t *genie,
5087 v_U8_t *total_ielen, v_U8_t *oui, v_U8_t oui_size)
5088{
Arif Hussaine7f3ea52013-09-12 21:56:36 -07005089 v_U16_t ielen = 0;
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05305090 v_U8_t *pIe = NULL;
5091 beacon_data_t *pBeacon = pHostapdAdapter->sessionCtx.ap.beacon;
5092
5093 pIe = wlan_hdd_get_vendor_oui_ie_ptr(oui, oui_size,
5094 pBeacon->tail, pBeacon->tail_len);
5095
5096 if (pIe)
5097 {
5098 ielen = pIe[1] + 2;
5099 if ((*total_ielen + ielen) <= MAX_GENIE_LEN)
5100 {
5101 vos_mem_copy(&genie[*total_ielen], pIe, ielen);
5102 }
5103 else
5104 {
5105 hddLog( VOS_TRACE_LEVEL_ERROR, "**Ie Length is too big***");
5106 return -EINVAL;
5107 }
5108 *total_ielen += ielen;
5109 }
5110 return 0;
5111}
5112
Arif Hussaine7f3ea52013-09-12 21:56:36 -07005113static void wlan_hdd_add_hostapd_conf_vsie(hdd_adapter_t* pHostapdAdapter,
5114 v_U8_t *genie, v_U8_t *total_ielen)
5115{
5116 beacon_data_t *pBeacon = pHostapdAdapter->sessionCtx.ap.beacon;
5117 int left = pBeacon->tail_len;
5118 v_U8_t *ptr = pBeacon->tail;
5119 v_U8_t elem_id, elem_len;
5120 v_U16_t ielen = 0;
5121
5122 if ( NULL == ptr || 0 == left )
5123 return;
5124
5125 while (left >= 2)
5126 {
5127 elem_id = ptr[0];
5128 elem_len = ptr[1];
5129 left -= 2;
5130 if (elem_len > left)
5131 {
5132 hddLog( VOS_TRACE_LEVEL_ERROR,
5133 "****Invalid IEs eid = %d elem_len=%d left=%d*****",
5134 elem_id, elem_len, left);
5135 return;
5136 }
5137 if (IE_EID_VENDOR == elem_id)
5138 {
5139 /* skipping the VSIE's which we don't want to include or
5140 * it will be included by existing code
5141 */
5142 if ((memcmp( &ptr[2], WPS_OUI_TYPE, WPS_OUI_TYPE_SIZE) != 0 ) &&
5143#ifdef WLAN_FEATURE_WFD
5144 (memcmp( &ptr[2], WFD_OUI_TYPE, WFD_OUI_TYPE_SIZE) != 0) &&
5145#endif
5146 (memcmp( &ptr[2], WHITELIST_OUI_TYPE, WPA_OUI_TYPE_SIZE) != 0) &&
5147 (memcmp( &ptr[2], BLACKLIST_OUI_TYPE, WPA_OUI_TYPE_SIZE) != 0) &&
5148 (memcmp( &ptr[2], "\x00\x50\xf2\x02", WPA_OUI_TYPE_SIZE) != 0) &&
5149 (memcmp( &ptr[2], WPA_OUI_TYPE, WPA_OUI_TYPE_SIZE) != 0) &&
5150 (memcmp( &ptr[2], P2P_OUI_TYPE, P2P_OUI_TYPE_SIZE) != 0))
5151 {
5152 ielen = ptr[1] + 2;
5153 if ((*total_ielen + ielen) <= MAX_GENIE_LEN)
5154 {
5155 vos_mem_copy(&genie[*total_ielen], ptr, ielen);
5156 *total_ielen += ielen;
5157 }
5158 else
5159 {
5160 hddLog( VOS_TRACE_LEVEL_ERROR,
5161 "IE Length is too big "
5162 "IEs eid=%d elem_len=%d total_ie_lent=%d",
5163 elem_id, elem_len, *total_ielen);
5164 }
5165 }
5166 }
5167
5168 left -= elem_len;
5169 ptr += (elem_len + 2);
5170 }
5171 return;
5172}
5173
Jeff Johnson04dd8a82012-06-29 20:41:40 -07005174#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
Jeff Johnson295189b2012-06-20 16:38:30 -07005175static int wlan_hdd_cfg80211_update_apies(hdd_adapter_t* pHostapdAdapter,
5176 struct beacon_parameters *params)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07005177#else
5178static int wlan_hdd_cfg80211_update_apies(hdd_adapter_t* pHostapdAdapter,
5179 struct cfg80211_beacon_data *params)
5180#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07005181{
5182 v_U8_t *genie;
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05305183 v_U8_t total_ielen = 0;
Jeff Johnson295189b2012-06-20 16:38:30 -07005184 v_U8_t addIE[1] = {0};
Jeff Johnsone7245742012-09-05 17:12:55 -07005185 int ret = 0;
Jeff Johnson295189b2012-06-20 16:38:30 -07005186
5187 genie = vos_mem_malloc(MAX_GENIE_LEN);
5188
5189 if(genie == NULL) {
5190
5191 return -ENOMEM;
5192 }
5193
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05305194 if (0 != wlan_hdd_add_ie(pHostapdAdapter, genie,
5195 &total_ielen, WPS_OUI_TYPE, WPS_OUI_TYPE_SIZE))
Jeff Johnson295189b2012-06-20 16:38:30 -07005196 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05305197 hddLog(LOGE,
5198 FL("Adding WPS IE failed"));
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05305199 ret = -EINVAL;
5200 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07005201 }
5202
5203#ifdef WLAN_FEATURE_WFD
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05305204 if (0 != wlan_hdd_add_ie(pHostapdAdapter, genie,
5205 &total_ielen, WFD_OUI_TYPE, WFD_OUI_TYPE_SIZE))
5206 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05305207 hddLog(LOGE,
5208 FL("Adding WFD IE failed"));
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05305209 ret = -EINVAL;
5210 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07005211 }
5212#endif
5213
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05305214 if (0 != wlan_hdd_add_ie(pHostapdAdapter, genie,
5215 &total_ielen, P2P_OUI_TYPE, P2P_OUI_TYPE_SIZE))
Jeff Johnson295189b2012-06-20 16:38:30 -07005216 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05305217 hddLog(LOGE,
5218 FL("Adding P2P IE failed"));
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05305219 ret = -EINVAL;
5220 goto done;
5221 }
5222
5223 if (WLAN_HDD_SOFTAP == pHostapdAdapter->device_mode)
5224 {
Arif Hussaine7f3ea52013-09-12 21:56:36 -07005225 wlan_hdd_add_hostapd_conf_vsie(pHostapdAdapter, genie, &total_ielen);
Jeff Johnson295189b2012-06-20 16:38:30 -07005226 }
Jeff Johnson295189b2012-06-20 16:38:30 -07005227
5228 if (ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
5229 WNI_CFG_PROBE_RSP_BCN_ADDNIE_DATA, genie, total_ielen, NULL,
5230 eANI_BOOLEAN_FALSE)==eHAL_STATUS_FAILURE)
5231 {
5232 hddLog(LOGE,
5233 "Could not pass on WNI_CFG_PROBE_RSP_BCN_ADDNIE_DATA to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07005234 ret = -EINVAL;
5235 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07005236 }
5237
5238 if (ccmCfgSetInt((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
5239 WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG, 1,NULL,
5240 test_bit(SOFTAP_BSS_STARTED, &pHostapdAdapter->event_flags) ?
5241 eANI_BOOLEAN_TRUE : eANI_BOOLEAN_FALSE)
5242 ==eHAL_STATUS_FAILURE)
5243 {
5244 hddLog(LOGE,
5245 "Could not pass on WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07005246 ret = -EINVAL;
5247 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07005248 }
5249
5250 // Added for ProResp IE
5251 if ( (params->proberesp_ies != NULL) && (params->proberesp_ies_len != 0) )
5252 {
5253 u16 rem_probe_resp_ie_len = params->proberesp_ies_len;
5254 u8 probe_rsp_ie_len[3] = {0};
5255 u8 counter = 0;
5256 /* Check Probe Resp Length if it is greater then 255 then Store
5257 Probe Resp IEs into WNI_CFG_PROBE_RSP_ADDNIE_DATA1 &
5258 WNI_CFG_PROBE_RSP_ADDNIE_DATA2 CFG Variable As We are not able
5259 Store More then 255 bytes into One Variable.
5260 */
5261 while ((rem_probe_resp_ie_len > 0) && (counter < 3))
5262 {
5263 if (rem_probe_resp_ie_len > MAX_CFG_STRING_LEN)
5264 {
5265 probe_rsp_ie_len[counter++] = MAX_CFG_STRING_LEN;
5266 rem_probe_resp_ie_len -= MAX_CFG_STRING_LEN;
5267 }
5268 else
5269 {
5270 probe_rsp_ie_len[counter++] = rem_probe_resp_ie_len;
5271 rem_probe_resp_ie_len = 0;
5272 }
5273 }
5274
5275 rem_probe_resp_ie_len = 0;
5276
5277 if (probe_rsp_ie_len[0] > 0)
5278 {
5279 if (ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
5280 WNI_CFG_PROBE_RSP_ADDNIE_DATA1,
5281 (tANI_U8*)&params->proberesp_ies[rem_probe_resp_ie_len],
5282 probe_rsp_ie_len[0], NULL,
5283 eANI_BOOLEAN_FALSE) == eHAL_STATUS_FAILURE)
5284 {
5285 hddLog(LOGE,
5286 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_DATA1 to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07005287 ret = -EINVAL;
5288 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07005289 }
5290 rem_probe_resp_ie_len += probe_rsp_ie_len[0];
5291 }
5292
5293 if (probe_rsp_ie_len[1] > 0)
5294 {
5295 if (ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
5296 WNI_CFG_PROBE_RSP_ADDNIE_DATA2,
5297 (tANI_U8*)&params->proberesp_ies[rem_probe_resp_ie_len],
5298 probe_rsp_ie_len[1], NULL,
5299 eANI_BOOLEAN_FALSE) == eHAL_STATUS_FAILURE)
5300 {
5301 hddLog(LOGE,
5302 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_DATA2 to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07005303 ret = -EINVAL;
5304 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07005305 }
5306 rem_probe_resp_ie_len += probe_rsp_ie_len[1];
5307 }
5308
5309 if (probe_rsp_ie_len[2] > 0)
5310 {
5311 if (ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
5312 WNI_CFG_PROBE_RSP_ADDNIE_DATA3,
5313 (tANI_U8*)&params->proberesp_ies[rem_probe_resp_ie_len],
5314 probe_rsp_ie_len[2], NULL,
5315 eANI_BOOLEAN_FALSE) == eHAL_STATUS_FAILURE)
5316 {
5317 hddLog(LOGE,
5318 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_DATA3 to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07005319 ret = -EINVAL;
5320 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07005321 }
5322 rem_probe_resp_ie_len += probe_rsp_ie_len[2];
5323 }
5324
5325 if (probe_rsp_ie_len[1] == 0 )
5326 {
5327 if ( eHAL_STATUS_FAILURE == ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
5328 WNI_CFG_PROBE_RSP_ADDNIE_DATA2, (tANI_U8*)addIE, 0, NULL,
5329 eANI_BOOLEAN_FALSE) )
5330 {
5331 hddLog(LOGE,
Arif Hussain6d2a3322013-11-17 19:50:10 -08005332 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_DATA2 to CCM");
Jeff Johnson295189b2012-06-20 16:38:30 -07005333 }
5334 }
5335
5336 if (probe_rsp_ie_len[2] == 0 )
5337 {
5338 if ( eHAL_STATUS_FAILURE == ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
5339 WNI_CFG_PROBE_RSP_ADDNIE_DATA3, (tANI_U8*)addIE, 0, NULL,
5340 eANI_BOOLEAN_FALSE) )
5341 {
5342 hddLog(LOGE,
Arif Hussain6d2a3322013-11-17 19:50:10 -08005343 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_DATA3 to CCM");
Jeff Johnson295189b2012-06-20 16:38:30 -07005344 }
5345 }
5346
5347 if (ccmCfgSetInt((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
5348 WNI_CFG_PROBE_RSP_ADDNIE_FLAG, 1,NULL,
5349 test_bit(SOFTAP_BSS_STARTED, &pHostapdAdapter->event_flags) ?
5350 eANI_BOOLEAN_TRUE : eANI_BOOLEAN_FALSE)
5351 == eHAL_STATUS_FAILURE)
5352 {
5353 hddLog(LOGE,
5354 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_FLAG to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07005355 ret = -EINVAL;
5356 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07005357 }
5358 }
5359 else
5360 {
5361 // Reset WNI_CFG_PROBE_RSP Flags
5362 wlan_hdd_reset_prob_rspies(pHostapdAdapter);
5363
5364 hddLog(VOS_TRACE_LEVEL_INFO,
5365 "%s: No Probe Response IE received in set beacon",
5366 __func__);
5367 }
5368
5369 // Added for AssocResp IE
5370 if ( (params->assocresp_ies != NULL) && (params->assocresp_ies_len != 0) )
5371 {
5372 if (ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
5373 WNI_CFG_ASSOC_RSP_ADDNIE_DATA, (tANI_U8*)params->assocresp_ies,
5374 params->assocresp_ies_len, NULL,
5375 eANI_BOOLEAN_FALSE) == eHAL_STATUS_FAILURE)
5376 {
5377 hddLog(LOGE,
5378 "Could not pass on WNI_CFG_ASSOC_RSP_ADDNIE_DATA to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07005379 ret = -EINVAL;
5380 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07005381 }
5382
5383 if (ccmCfgSetInt((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
5384 WNI_CFG_ASSOC_RSP_ADDNIE_FLAG, 1, NULL,
5385 test_bit(SOFTAP_BSS_STARTED, &pHostapdAdapter->event_flags) ?
5386 eANI_BOOLEAN_TRUE : eANI_BOOLEAN_FALSE)
5387 == eHAL_STATUS_FAILURE)
5388 {
5389 hddLog(LOGE,
5390 "Could not pass on WNI_CFG_ASSOC_RSP_ADDNIE_FLAG to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07005391 ret = -EINVAL;
5392 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07005393 }
5394 }
5395 else
5396 {
5397 hddLog(VOS_TRACE_LEVEL_INFO,
5398 "%s: No Assoc Response IE received in set beacon",
5399 __func__);
5400
5401 if ( eHAL_STATUS_FAILURE == ccmCfgSetInt((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
5402 WNI_CFG_ASSOC_RSP_ADDNIE_FLAG, 0, NULL,
5403 eANI_BOOLEAN_FALSE) )
5404 {
5405 hddLog(LOGE,
Arif Hussain6d2a3322013-11-17 19:50:10 -08005406 "Could not pass on WNI_CFG_ASSOC_RSP_ADDNIE_FLAG to CCM");
Jeff Johnson295189b2012-06-20 16:38:30 -07005407 }
5408 }
5409
Jeff Johnsone7245742012-09-05 17:12:55 -07005410done:
Jeff Johnson295189b2012-06-20 16:38:30 -07005411 vos_mem_free(genie);
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05305412 return ret;
Jeff Johnson295189b2012-06-20 16:38:30 -07005413}
Jeff Johnson295189b2012-06-20 16:38:30 -07005414
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305415/*
Jeff Johnson295189b2012-06-20 16:38:30 -07005416 * FUNCTION: wlan_hdd_validate_operation_channel
5417 * called by wlan_hdd_cfg80211_start_bss() and
5418 * wlan_hdd_cfg80211_set_channel()
5419 * This function validates whether given channel is part of valid
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305420 * channel list.
5421 */
Varun Reddy Yeturu920df212013-05-22 08:07:23 -07005422VOS_STATUS wlan_hdd_validate_operation_channel(hdd_adapter_t *pAdapter,int channel)
Jeff Johnson295189b2012-06-20 16:38:30 -07005423{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305424
Jeff Johnson295189b2012-06-20 16:38:30 -07005425 v_U32_t num_ch = 0;
5426 u8 valid_ch[WNI_CFG_VALID_CHANNEL_LIST_LEN];
5427 u32 indx = 0;
5428 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +05305429 v_U8_t fValidChannel = FALSE, count = 0;
5430 hdd_config_t *hdd_pConfig_ini= (WLAN_HDD_GET_CTX(pAdapter))->cfg_ini;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305431
Jeff Johnson295189b2012-06-20 16:38:30 -07005432 num_ch = WNI_CFG_VALID_CHANNEL_LIST_LEN;
5433
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +05305434 if ( hdd_pConfig_ini->sapAllowAllChannel)
Jeff Johnson295189b2012-06-20 16:38:30 -07005435 {
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +05305436 /* Validate the channel */
5437 for (count = RF_CHAN_1 ; count <= RF_CHAN_165 ; count++)
Jeff Johnson295189b2012-06-20 16:38:30 -07005438 {
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +05305439 if ( channel == rfChannels[count].channelNum )
5440 {
5441 fValidChannel = TRUE;
5442 break;
5443 }
5444 }
5445 if (fValidChannel != TRUE)
5446 {
5447 hddLog(VOS_TRACE_LEVEL_ERROR,
5448 "%s: Invalid Channel [%d]", __func__, channel);
5449 return VOS_STATUS_E_FAILURE;
Jeff Johnson295189b2012-06-20 16:38:30 -07005450 }
5451 }
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +05305452 else
Jeff Johnson295189b2012-06-20 16:38:30 -07005453 {
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +05305454 if (0 != ccmCfgGetStr(hHal, WNI_CFG_VALID_CHANNEL_LIST,
5455 valid_ch, &num_ch))
5456 {
5457 hddLog(VOS_TRACE_LEVEL_ERROR,
5458 "%s: failed to get valid channel list", __func__);
5459 return VOS_STATUS_E_FAILURE;
5460 }
5461 for (indx = 0; indx < num_ch; indx++)
5462 {
5463 if (channel == valid_ch[indx])
5464 {
5465 break;
5466 }
5467 }
5468
Rashmi Ramanna3b59e122014-04-10 14:45:13 +05305469 if (indx >= num_ch)
5470 {
5471 if (WLAN_HDD_P2P_GO == pAdapter->device_mode)
5472 {
5473 eCsrBand band;
5474 unsigned int freq;
5475
5476 sme_GetFreqBand(hHal, &band);
5477
5478 if (eCSR_BAND_5G == band)
5479 {
5480#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,38))
5481 if (channel <= ARRAY_SIZE(hdd_channels_2_4_GHZ))
5482 {
5483 freq = ieee80211_channel_to_frequency(channel,
5484 IEEE80211_BAND_2GHZ);
5485 }
5486 else
5487 {
5488 freq = ieee80211_channel_to_frequency(channel,
5489 IEEE80211_BAND_5GHZ);
5490 }
5491#else
5492 freq = ieee80211_channel_to_frequency(channel);
5493#endif
5494 if(WLAN_HDD_IS_SOCIAL_CHANNEL(freq))
5495 return VOS_STATUS_SUCCESS;
5496 }
5497 }
5498
5499 hddLog(VOS_TRACE_LEVEL_ERROR,
5500 "%s: Invalid Channel [%d]", __func__, channel);
5501 return VOS_STATUS_E_FAILURE;
5502 }
Jeff Johnson295189b2012-06-20 16:38:30 -07005503 }
Rashmi Ramanna3b59e122014-04-10 14:45:13 +05305504
Jeff Johnson295189b2012-06-20 16:38:30 -07005505 return VOS_STATUS_SUCCESS;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305506
Jeff Johnson295189b2012-06-20 16:38:30 -07005507}
5508
Viral Modi3a32cc52013-02-08 11:14:52 -08005509/**
5510 * FUNCTION: wlan_hdd_cfg80211_set_channel
5511 * This function is used to set the channel number
5512 */
5513static int wlan_hdd_cfg80211_set_channel( struct wiphy *wiphy, struct net_device *dev,
5514 struct ieee80211_channel *chan,
5515 enum nl80211_channel_type channel_type
5516 )
5517{
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05305518 hdd_adapter_t *pAdapter = NULL;
Viral Modi3a32cc52013-02-08 11:14:52 -08005519 v_U32_t num_ch = 0;
Jeff Johnson4416a782013-03-25 14:17:50 -07005520 int channel = 0;
Viral Modi3a32cc52013-02-08 11:14:52 -08005521 int freq = chan->center_freq; /* freq is in MHZ */
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305522 hdd_context_t *pHddCtx;
5523 int status;
Viral Modi3a32cc52013-02-08 11:14:52 -08005524
5525 ENTER();
5526
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05305527
Viral Modi3a32cc52013-02-08 11:14:52 -08005528 if( NULL == dev )
5529 {
5530 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08005531 "%s: Called with dev = NULL.", __func__);
Viral Modi3a32cc52013-02-08 11:14:52 -08005532 return -ENODEV;
5533 }
5534 pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +05305535
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05305536 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
5537 TRACE_CODE_HDD_CFG80211_SET_CHANNEL, pAdapter->sessionId,
5538 channel_type ));
Viral Modi3a32cc52013-02-08 11:14:52 -08005539 hddLog(VOS_TRACE_LEVEL_INFO,
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05305540 "%s: device_mode = %s (%d) freq = %d", __func__,
5541 hdd_device_modetoString(pAdapter->device_mode),
5542 pAdapter->device_mode, chan->center_freq);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305543
5544 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
5545 status = wlan_hdd_validate_context(pHddCtx);
5546
5547 if (0 != status)
Viral Modi3a32cc52013-02-08 11:14:52 -08005548 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305549 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
5550 "%s: HDD context is not valid", __func__);
5551 return status;
Viral Modi3a32cc52013-02-08 11:14:52 -08005552 }
5553
5554 /*
5555 * Do freq to chan conversion
5556 * TODO: for 11a
5557 */
5558
5559 channel = ieee80211_frequency_to_channel(freq);
5560
5561 /* Check freq range */
5562 if ((WNI_CFG_CURRENT_CHANNEL_STAMIN > channel) ||
5563 (WNI_CFG_CURRENT_CHANNEL_STAMAX < channel))
5564 {
5565 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08005566 "%s: Channel [%d] is outside valid range from %d to %d",
Viral Modi3a32cc52013-02-08 11:14:52 -08005567 __func__, channel, WNI_CFG_CURRENT_CHANNEL_STAMIN,
5568 WNI_CFG_CURRENT_CHANNEL_STAMAX);
5569 return -EINVAL;
5570 }
5571
5572 num_ch = WNI_CFG_VALID_CHANNEL_LIST_LEN;
5573
Gopichand Nakkala6ab19562013-03-07 13:59:42 +05305574 if ((WLAN_HDD_SOFTAP != pAdapter->device_mode) &&
5575 (WLAN_HDD_P2P_GO != pAdapter->device_mode))
Viral Modi3a32cc52013-02-08 11:14:52 -08005576 {
5577 if(VOS_STATUS_SUCCESS != wlan_hdd_validate_operation_channel(pAdapter,channel))
5578 {
5579 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08005580 "%s: Invalid Channel [%d]", __func__, channel);
Viral Modi3a32cc52013-02-08 11:14:52 -08005581 return -EINVAL;
5582 }
5583 hddLog(VOS_TRACE_LEVEL_INFO_HIGH,
5584 "%s: set channel to [%d] for device mode =%d",
5585 __func__, channel,pAdapter->device_mode);
5586 }
5587 if( (pAdapter->device_mode == WLAN_HDD_INFRA_STATION)
Viral Modi3a32cc52013-02-08 11:14:52 -08005588 || (pAdapter->device_mode == WLAN_HDD_P2P_CLIENT)
Viral Modi3a32cc52013-02-08 11:14:52 -08005589 )
5590 {
5591 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
5592 tCsrRoamProfile * pRoamProfile = &pWextState->roamProfile;
5593 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
5594
5595 if (eConnectionState_IbssConnected == pHddStaCtx->conn_info.connState)
5596 {
5597 /* Link is up then return cant set channel*/
5598 hddLog( VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08005599 "%s: IBSS Associated, can't set the channel", __func__);
Viral Modi3a32cc52013-02-08 11:14:52 -08005600 return -EINVAL;
5601 }
5602
5603 num_ch = pRoamProfile->ChannelInfo.numOfChannels = 1;
5604 pHddStaCtx->conn_info.operationChannel = channel;
5605 pRoamProfile->ChannelInfo.ChannelList =
5606 &pHddStaCtx->conn_info.operationChannel;
5607 }
5608 else if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Viral Modi3a32cc52013-02-08 11:14:52 -08005609 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Viral Modi3a32cc52013-02-08 11:14:52 -08005610 )
5611 {
Gopichand Nakkalac8fa7b62013-03-11 13:56:41 +05305612 if (WLAN_HDD_P2P_GO == pAdapter->device_mode)
5613 {
5614 if(VOS_STATUS_SUCCESS !=
5615 wlan_hdd_validate_operation_channel(pAdapter,channel))
5616 {
5617 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08005618 "%s: Invalid Channel [%d]", __func__, channel);
Gopichand Nakkalac8fa7b62013-03-11 13:56:41 +05305619 return -EINVAL;
5620 }
5621 (WLAN_HDD_GET_AP_CTX_PTR(pAdapter))->sapConfig.channel = channel;
5622 }
5623 else if ( WLAN_HDD_SOFTAP == pAdapter->device_mode )
Viral Modi3a32cc52013-02-08 11:14:52 -08005624 {
5625 hdd_config_t *cfg_param = (WLAN_HDD_GET_CTX(pAdapter))->cfg_ini;
5626
5627 /* If auto channel selection is configured as enable/ 1 then ignore
5628 channel set by supplicant
5629 */
5630 if ( cfg_param->apAutoChannelSelection )
5631 {
Gopichand Nakkalac8fa7b62013-03-11 13:56:41 +05305632 (WLAN_HDD_GET_AP_CTX_PTR(pAdapter))->sapConfig.channel =
5633 AUTO_CHANNEL_SELECT;
Viral Modi3a32cc52013-02-08 11:14:52 -08005634 hddLog(VOS_TRACE_LEVEL_INFO_HIGH,
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05305635 "%s: set channel to auto channel (0) for device mode =%s (%d)",
5636 __func__, hdd_device_modetoString(pAdapter->device_mode),
5637 pAdapter->device_mode);
Viral Modi3a32cc52013-02-08 11:14:52 -08005638 }
Gopichand Nakkalac8fa7b62013-03-11 13:56:41 +05305639 else
5640 {
5641 if(VOS_STATUS_SUCCESS !=
5642 wlan_hdd_validate_operation_channel(pAdapter,channel))
5643 {
5644 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08005645 "%s: Invalid Channel [%d]", __func__, channel);
Gopichand Nakkalac8fa7b62013-03-11 13:56:41 +05305646 return -EINVAL;
5647 }
5648 (WLAN_HDD_GET_AP_CTX_PTR(pAdapter))->sapConfig.channel = channel;
5649 }
Viral Modi3a32cc52013-02-08 11:14:52 -08005650 }
5651 }
5652 else
5653 {
5654 hddLog(VOS_TRACE_LEVEL_FATAL,
5655 "%s: Invalid device mode failed to set valid channel", __func__);
5656 return -EINVAL;
5657 }
5658 EXIT();
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305659 return status;
Viral Modi3a32cc52013-02-08 11:14:52 -08005660}
5661
Jeff Johnson295189b2012-06-20 16:38:30 -07005662#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
5663static int wlan_hdd_cfg80211_start_bss(hdd_adapter_t *pHostapdAdapter,
5664 struct beacon_parameters *params)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07005665#else
5666static int wlan_hdd_cfg80211_start_bss(hdd_adapter_t *pHostapdAdapter,
5667 struct cfg80211_beacon_data *params,
5668 const u8 *ssid, size_t ssid_len,
5669 enum nl80211_hidden_ssid hidden_ssid)
5670#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07005671{
5672 tsap_Config_t *pConfig;
5673 beacon_data_t *pBeacon = NULL;
5674 struct ieee80211_mgmt *pMgmt_frame;
5675 v_U8_t *pIe=NULL;
5676 v_U16_t capab_info;
5677 eCsrAuthType RSNAuthType;
5678 eCsrEncryptionType RSNEncryptType;
5679 eCsrEncryptionType mcRSNEncryptType;
5680 int status = VOS_STATUS_SUCCESS;
5681 tpWLAN_SAPEventCB pSapEventCallback;
5682 hdd_hostapd_state_t *pHostapdState;
5683 v_U8_t wpaRsnIEdata[(SIR_MAC_MAX_IE_LENGTH * 2)+4]; //Max ie length 255 * 2(WPA+RSN) + 2 bytes (vendor specific ID) * 2
5684 v_CONTEXT_t pVosContext = (WLAN_HDD_GET_CTX(pHostapdAdapter))->pvosContext;
Madan Mohan Koyylamudia16d0202013-02-01 11:05:57 +05305685 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pHostapdAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07005686 struct qc_mac_acl_entry *acl_entry = NULL;
Siddharth Bhal5cba24e2014-05-08 18:59:39 +05305687 hdd_config_t *iniConfig;
Jeff Johnson295189b2012-06-20 16:38:30 -07005688 v_SINT_t i;
Madan Mohan Koyyalamudi543172b2012-12-05 16:40:18 -08005689 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pHostapdAdapter);
Chet Lanctot40142442014-05-20 13:39:25 -07005690 v_BOOL_t MFPCapable = VOS_FALSE;
5691 v_BOOL_t MFPRequired = VOS_FALSE;
Abhishek Singhf0ac1752014-03-05 17:47:09 +05305692 eHddDot11Mode sapDot11Mode =
5693 (WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini->sapDot11Mode;
Jeff Johnson295189b2012-06-20 16:38:30 -07005694
5695 ENTER();
5696
Siddharth Bhal5cba24e2014-05-08 18:59:39 +05305697 iniConfig = pHddCtx->cfg_ini;
5698
Jeff Johnson295189b2012-06-20 16:38:30 -07005699 pHostapdState = WLAN_HDD_GET_HOSTAP_STATE_PTR(pHostapdAdapter);
5700
5701 pConfig = &pHostapdAdapter->sessionCtx.ap.sapConfig;
5702
5703 pBeacon = pHostapdAdapter->sessionCtx.ap.beacon;
5704
5705 pMgmt_frame = (struct ieee80211_mgmt*)pBeacon->head;
5706
5707 pConfig->beacon_int = pMgmt_frame->u.beacon.beacon_int;
5708
5709 //channel is already set in the set_channel Call back
5710 //pConfig->channel = pCommitConfig->channel;
5711
5712 /*Protection parameter to enable or disable*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305713 pConfig->protEnabled =
Jeff Johnson295189b2012-06-20 16:38:30 -07005714 (WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini->apProtEnabled;
5715
5716 pConfig->dtim_period = pBeacon->dtim_period;
5717
Arif Hussain6d2a3322013-11-17 19:50:10 -08005718 hddLog(VOS_TRACE_LEVEL_INFO_HIGH,"****pConfig->dtim_period=%d***",
Jeff Johnson295189b2012-06-20 16:38:30 -07005719 pConfig->dtim_period);
5720
5721
Madan Mohan Koyyalamudie0ca11f2012-11-27 15:57:52 -08005722 if (pHostapdAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson32d95a32012-09-10 13:15:23 -07005723 {
5724 pIe = wlan_hdd_cfg80211_get_ie_ptr(pBeacon->tail, pBeacon->tail_len,
Jeff Johnson295189b2012-06-20 16:38:30 -07005725 WLAN_EID_COUNTRY);
Kiet Lam083504c2013-11-25 14:17:45 +05305726 if(memcmp(pHddCtx->cfg_ini->apCntryCode, CFG_AP_COUNTRY_CODE_DEFAULT, 3) != 0)
5727 {
5728 tANI_BOOLEAN restartNeeded;
5729 pConfig->ieee80211d = 1;
5730 vos_mem_copy(pConfig->countryCode, pHddCtx->cfg_ini->apCntryCode, 3);
5731 sme_setRegInfo(hHal, pConfig->countryCode);
5732 sme_ResetCountryCodeInformation(hHal, &restartNeeded);
5733 }
5734 else if(pIe)
Jeff Johnson295189b2012-06-20 16:38:30 -07005735 {
Jeff Johnson32d95a32012-09-10 13:15:23 -07005736 tANI_BOOLEAN restartNeeded;
Jeff Johnson32d95a32012-09-10 13:15:23 -07005737 pConfig->ieee80211d = 1;
5738 vos_mem_copy(pConfig->countryCode, &pIe[2], 3);
5739 sme_setRegInfo(hHal, pConfig->countryCode);
5740 sme_ResetCountryCodeInformation(hHal, &restartNeeded);
Jeff Johnson295189b2012-06-20 16:38:30 -07005741 }
Jeff Johnson32d95a32012-09-10 13:15:23 -07005742 else
5743 {
5744 pConfig->ieee80211d = 0;
5745 }
Madan Mohan Koyylamudia16d0202013-02-01 11:05:57 +05305746 /*
5747 * If auto channel is configured i.e. channel is 0,
5748 * so skip channel validation.
5749 */
5750 if( AUTO_CHANNEL_SELECT != pConfig->channel )
5751 {
5752 if(VOS_STATUS_SUCCESS != wlan_hdd_validate_operation_channel(pHostapdAdapter,pConfig->channel))
5753 {
5754 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08005755 "%s: Invalid Channel [%d]", __func__, pConfig->channel);
Madan Mohan Koyylamudia16d0202013-02-01 11:05:57 +05305756 return -EINVAL;
5757 }
5758 }
5759 else
5760 {
5761 if(1 != pHddCtx->is_dynamic_channel_range_set)
5762 {
5763 hdd_config_t *hdd_pConfig= (WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini;
5764 WLANSAP_SetChannelRange(hHal, hdd_pConfig->apStartChannelNum,
5765 hdd_pConfig->apEndChannelNum,hdd_pConfig->apOperatingBand);
5766 }
5767 pHddCtx->is_dynamic_channel_range_set = 0;
5768 }
Jeff Johnson295189b2012-06-20 16:38:30 -07005769 }
Jeff Johnson32d95a32012-09-10 13:15:23 -07005770 else
Jeff Johnson295189b2012-06-20 16:38:30 -07005771 {
5772 pConfig->ieee80211d = 0;
5773 }
5774 pConfig->authType = eSAP_AUTO_SWITCH;
5775
5776 capab_info = pMgmt_frame->u.beacon.capab_info;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305777
5778 pConfig->privacy = (pMgmt_frame->u.beacon.capab_info &
Jeff Johnson295189b2012-06-20 16:38:30 -07005779 WLAN_CAPABILITY_PRIVACY) ? VOS_TRUE : VOS_FALSE;
5780
5781 (WLAN_HDD_GET_AP_CTX_PTR(pHostapdAdapter))->uPrivacy = pConfig->privacy;
5782
5783 /*Set wps station to configured*/
5784 pIe = wlan_hdd_get_wps_ie_ptr(pBeacon->tail, pBeacon->tail_len);
5785
5786 if(pIe)
5787 {
5788 if(pIe[1] < (2 + WPS_OUI_TYPE_SIZE))
5789 {
Arif Hussain6d2a3322013-11-17 19:50:10 -08005790 hddLog( VOS_TRACE_LEVEL_ERROR, "**Wps Ie Length is too small***");
Jeff Johnson295189b2012-06-20 16:38:30 -07005791 return -EINVAL;
5792 }
5793 else if(memcmp(&pIe[2], WPS_OUI_TYPE, WPS_OUI_TYPE_SIZE) == 0)
5794 {
Madan Mohan Koyyalamudi8bdd3112012-09-24 13:55:14 -07005795 hddLog( VOS_TRACE_LEVEL_INFO, "** WPS IE(len %d) ***", (pIe[1]+2));
Jeff Johnson295189b2012-06-20 16:38:30 -07005796 /* Check 15 bit of WPS IE as it contain information for wps state
5797 * WPS state
5798 */
5799 if(SAP_WPS_ENABLED_UNCONFIGURED == pIe[15])
5800 {
5801 pConfig->wps_state = SAP_WPS_ENABLED_UNCONFIGURED;
5802 } else if(SAP_WPS_ENABLED_CONFIGURED == pIe[15])
5803 {
5804 pConfig->wps_state = SAP_WPS_ENABLED_CONFIGURED;
5805 }
5806 }
5807 }
5808 else
5809 {
5810 pConfig->wps_state = SAP_WPS_DISABLED;
5811 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305812 pConfig->fwdWPSPBCProbeReq = 1; // Forward WPS PBC probe request frame up
Jeff Johnson295189b2012-06-20 16:38:30 -07005813
c_hpothufe599e92014-06-16 11:38:55 +05305814 pConfig->RSNEncryptType = eCSR_ENCRYPT_TYPE_NONE;
5815 pConfig->mcRSNEncryptType = eCSR_ENCRYPT_TYPE_NONE;
5816 (WLAN_HDD_GET_AP_CTX_PTR(pHostapdAdapter))->ucEncryptType =
5817 eCSR_ENCRYPT_TYPE_NONE;
5818
Jeff Johnson295189b2012-06-20 16:38:30 -07005819 pConfig->RSNWPAReqIELength = 0;
5820 pConfig->pRSNWPAReqIE = NULL;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305821 pIe = wlan_hdd_cfg80211_get_ie_ptr(pBeacon->tail, pBeacon->tail_len,
Jeff Johnson295189b2012-06-20 16:38:30 -07005822 WLAN_EID_RSN);
5823 if(pIe && pIe[1])
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305824 {
Jeff Johnson295189b2012-06-20 16:38:30 -07005825 pConfig->RSNWPAReqIELength = pIe[1] + 2;
5826 memcpy(&wpaRsnIEdata[0], pIe, pConfig->RSNWPAReqIELength);
5827 pConfig->pRSNWPAReqIE = &wpaRsnIEdata[0];
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305828 /* The actual processing may eventually be more extensive than
5829 * this. Right now, just consume any PMKIDs that are sent in
Jeff Johnson295189b2012-06-20 16:38:30 -07005830 * by the app.
5831 * */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305832 status = hdd_softap_unpackIE(
Jeff Johnson295189b2012-06-20 16:38:30 -07005833 vos_get_context( VOS_MODULE_ID_SME, pVosContext),
5834 &RSNEncryptType,
5835 &mcRSNEncryptType,
5836 &RSNAuthType,
Chet Lanctot8cecea22014-02-11 19:09:36 -08005837 &MFPCapable,
5838 &MFPRequired,
Jeff Johnson295189b2012-06-20 16:38:30 -07005839 pConfig->pRSNWPAReqIE[1]+2,
5840 pConfig->pRSNWPAReqIE );
5841
5842 if( VOS_STATUS_SUCCESS == status )
5843 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305844 /* Now copy over all the security attributes you have
5845 * parsed out
Jeff Johnson295189b2012-06-20 16:38:30 -07005846 * */
5847 pConfig->RSNEncryptType = RSNEncryptType; // Use the cipher type in the RSN IE
5848 pConfig->mcRSNEncryptType = mcRSNEncryptType;
5849 (WLAN_HDD_GET_AP_CTX_PTR(pHostapdAdapter))->ucEncryptType
5850 = RSNEncryptType;
Gopichand Nakkala66c0bd02013-04-10 11:36:29 +05305851 hddLog( LOG1, FL("CSR AuthType = %d, "
Arif Hussain6d2a3322013-11-17 19:50:10 -08005852 "EncryptionType = %d mcEncryptionType = %d"),
Jeff Johnson295189b2012-06-20 16:38:30 -07005853 RSNAuthType, RSNEncryptType, mcRSNEncryptType);
5854 }
5855 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305856
Jeff Johnson295189b2012-06-20 16:38:30 -07005857 pIe = wlan_hdd_get_vendor_oui_ie_ptr(WPA_OUI_TYPE, WPA_OUI_TYPE_SIZE,
5858 pBeacon->tail, pBeacon->tail_len);
5859
5860 if(pIe && pIe[1] && (pIe[0] == DOT11F_EID_WPA))
5861 {
5862 if (pConfig->pRSNWPAReqIE)
5863 {
5864 /*Mixed mode WPA/WPA2*/
5865 memcpy((&wpaRsnIEdata[0] + pConfig->RSNWPAReqIELength), pIe, pIe[1] + 2);
5866 pConfig->RSNWPAReqIELength += pIe[1] + 2;
5867 }
5868 else
5869 {
5870 pConfig->RSNWPAReqIELength = pIe[1] + 2;
5871 memcpy(&wpaRsnIEdata[0], pIe, pConfig->RSNWPAReqIELength);
5872 pConfig->pRSNWPAReqIE = &wpaRsnIEdata[0];
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305873 status = hdd_softap_unpackIE(
Jeff Johnson295189b2012-06-20 16:38:30 -07005874 vos_get_context( VOS_MODULE_ID_SME, pVosContext),
5875 &RSNEncryptType,
5876 &mcRSNEncryptType,
5877 &RSNAuthType,
Chet Lanctot8cecea22014-02-11 19:09:36 -08005878 &MFPCapable,
5879 &MFPRequired,
Jeff Johnson295189b2012-06-20 16:38:30 -07005880 pConfig->pRSNWPAReqIE[1]+2,
5881 pConfig->pRSNWPAReqIE );
5882
5883 if( VOS_STATUS_SUCCESS == status )
5884 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305885 /* Now copy over all the security attributes you have
5886 * parsed out
Jeff Johnson295189b2012-06-20 16:38:30 -07005887 * */
5888 pConfig->RSNEncryptType = RSNEncryptType; // Use the cipher type in the RSN IE
5889 pConfig->mcRSNEncryptType = mcRSNEncryptType;
5890 (WLAN_HDD_GET_AP_CTX_PTR(pHostapdAdapter))->ucEncryptType
5891 = RSNEncryptType;
Gopichand Nakkala66c0bd02013-04-10 11:36:29 +05305892 hddLog( LOG1, FL("CSR AuthType = %d, "
Arif Hussain6d2a3322013-11-17 19:50:10 -08005893 "EncryptionType = %d mcEncryptionType = %d"),
Jeff Johnson295189b2012-06-20 16:38:30 -07005894 RSNAuthType, RSNEncryptType, mcRSNEncryptType);
5895 }
5896 }
5897 }
5898
Jeff Johnson4416a782013-03-25 14:17:50 -07005899 if (pConfig->RSNWPAReqIELength > sizeof wpaRsnIEdata) {
5900 hddLog( VOS_TRACE_LEVEL_ERROR, "**RSNWPAReqIELength is too large***");
5901 return -EINVAL;
5902 }
5903
Jeff Johnson295189b2012-06-20 16:38:30 -07005904 pConfig->SSIDinfo.ssidHidden = VOS_FALSE;
5905
Jeff Johnson04dd8a82012-06-29 20:41:40 -07005906#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
Jeff Johnson295189b2012-06-20 16:38:30 -07005907 if (params->ssid != NULL)
5908 {
5909 memcpy(pConfig->SSIDinfo.ssid.ssId, params->ssid, params->ssid_len);
5910 pConfig->SSIDinfo.ssid.length = params->ssid_len;
5911 if (params->hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE)
5912 pConfig->SSIDinfo.ssidHidden = VOS_TRUE;
5913 }
Jeff Johnson04dd8a82012-06-29 20:41:40 -07005914#else
5915 if (ssid != NULL)
5916 {
5917 memcpy(pConfig->SSIDinfo.ssid.ssId, ssid, ssid_len);
5918 pConfig->SSIDinfo.ssid.length = ssid_len;
5919 if (hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE)
5920 pConfig->SSIDinfo.ssidHidden = VOS_TRUE;
5921 }
5922#endif
5923
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305924 vos_mem_copy(pConfig->self_macaddr.bytes,
Jeff Johnson295189b2012-06-20 16:38:30 -07005925 pHostapdAdapter->macAddressCurrent.bytes, sizeof(v_MACADDR_t));
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305926
Jeff Johnson295189b2012-06-20 16:38:30 -07005927 /* default value */
5928 pConfig->SapMacaddr_acl = eSAP_ACCEPT_UNLESS_DENIED;
5929 pConfig->num_accept_mac = 0;
5930 pConfig->num_deny_mac = 0;
5931
5932 pIe = wlan_hdd_get_vendor_oui_ie_ptr(BLACKLIST_OUI_TYPE, WPA_OUI_TYPE_SIZE,
5933 pBeacon->tail, pBeacon->tail_len);
5934
5935 /* pIe for black list is following form:
5936 type : 1 byte
5937 length : 1 byte
5938 OUI : 4 bytes
5939 acl type : 1 byte
5940 no of mac addr in black list: 1 byte
5941 list of mac_acl_entries: variable, 6 bytes per mac address + sizeof(int) for vlan id
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305942 */
5943 if ((pIe != NULL) && (pIe[1] != 0))
Jeff Johnson295189b2012-06-20 16:38:30 -07005944 {
5945 pConfig->SapMacaddr_acl = pIe[6];
5946 pConfig->num_deny_mac = pIe[7];
Arif Hussain6d2a3322013-11-17 19:50:10 -08005947 hddLog(VOS_TRACE_LEVEL_INFO,"acl type = %d no deny mac = %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07005948 pIe[6], pIe[7]);
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05305949 if (pConfig->num_deny_mac > MAX_ACL_MAC_ADDRESS)
5950 pConfig->num_deny_mac = MAX_ACL_MAC_ADDRESS;
Jeff Johnson295189b2012-06-20 16:38:30 -07005951 acl_entry = (struct qc_mac_acl_entry *)(pIe + 8);
5952 for (i = 0; i < pConfig->num_deny_mac; i++)
5953 {
5954 vos_mem_copy(&pConfig->deny_mac[i], acl_entry->addr, sizeof(qcmacaddr));
5955 acl_entry++;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305956 }
Jeff Johnson295189b2012-06-20 16:38:30 -07005957 }
5958 pIe = wlan_hdd_get_vendor_oui_ie_ptr(WHITELIST_OUI_TYPE, WPA_OUI_TYPE_SIZE,
5959 pBeacon->tail, pBeacon->tail_len);
5960
5961 /* pIe for white list is following form:
5962 type : 1 byte
5963 length : 1 byte
5964 OUI : 4 bytes
5965 acl type : 1 byte
5966 no of mac addr in white list: 1 byte
5967 list of mac_acl_entries: variable, 6 bytes per mac address + sizeof(int) for vlan id
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305968 */
5969 if ((pIe != NULL) && (pIe[1] != 0))
Jeff Johnson295189b2012-06-20 16:38:30 -07005970 {
5971 pConfig->SapMacaddr_acl = pIe[6];
5972 pConfig->num_accept_mac = pIe[7];
Arif Hussain6d2a3322013-11-17 19:50:10 -08005973 hddLog(VOS_TRACE_LEVEL_INFO,"acl type = %d no accept mac = %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07005974 pIe[6], pIe[7]);
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05305975 if (pConfig->num_accept_mac > MAX_ACL_MAC_ADDRESS)
5976 pConfig->num_accept_mac = MAX_ACL_MAC_ADDRESS;
Jeff Johnson295189b2012-06-20 16:38:30 -07005977 acl_entry = (struct qc_mac_acl_entry *)(pIe + 8);
5978 for (i = 0; i < pConfig->num_accept_mac; i++)
5979 {
5980 vos_mem_copy(&pConfig->accept_mac[i], acl_entry->addr, sizeof(qcmacaddr));
5981 acl_entry++;
5982 }
5983 }
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05305984
Jeff Johnson295189b2012-06-20 16:38:30 -07005985 wlan_hdd_set_sapHwmode(pHostapdAdapter);
5986
Jeff Johnsone7245742012-09-05 17:12:55 -07005987#ifdef WLAN_FEATURE_11AC
Ravi Kumar Vaishnavbbaebbe2013-01-15 17:09:48 -08005988 /* Overwrite the hostapd setting for HW mode only for 11ac.
Kiet Lam0f320422013-11-21 19:29:17 +05305989 * This is valid only if mode is set to 11n in hostapd, either AUTO or
5990 * 11ac in .ini and 11ac is supported by both host and firmware.
5991 * Otherwise, leave whatever is set in hostapd (a OR b OR g OR n mode)
5992 */
Ravi Kumar Vaishnavbbaebbe2013-01-15 17:09:48 -08005993 if( ((pConfig->SapHw_mode == eSAP_DOT11_MODE_11n) ||
5994 (pConfig->SapHw_mode == eSAP_DOT11_MODE_11n_ONLY)) &&
Abhishek Singhf0ac1752014-03-05 17:47:09 +05305995 (( sapDot11Mode == eHDD_DOT11_MODE_AUTO ) ||
5996 ( sapDot11Mode == eHDD_DOT11_MODE_11ac ) ||
5997 ( sapDot11Mode == eHDD_DOT11_MODE_11ac_ONLY ) ) &&
5998 (sme_IsFeatureSupportedByDriver(DOT11AC)) &&
5999 (sme_IsFeatureSupportedByFW(DOT11AC)) )
Jeff Johnsone7245742012-09-05 17:12:55 -07006000 {
Siddharth Bhalf42f8592014-05-15 13:39:07 +05306001 v_U32_t operatingBand = 0;
Jeff Johnsone7245742012-09-05 17:12:55 -07006002 pConfig->SapHw_mode = eSAP_DOT11_MODE_11ac;
Siddharth Bhalf42f8592014-05-15 13:39:07 +05306003 ccmCfgGetInt(hHal, WNI_CFG_SAP_CHANNEL_SELECT_OPERATING_BAND, &operatingBand);
Ravi Joshi83bfaa12013-05-28 22:12:08 -07006004
Siddharth Bhal5cba24e2014-05-08 18:59:39 +05306005 /* If ACS disable and selected channel <= 14
6006 * OR
6007 * ACS enabled and ACS operating band is choosen as 2.4
6008 * AND
6009 * VHT in 2.4G Disabled
6010 * THEN
6011 * Fallback to 11N mode
6012 */
6013 if (((AUTO_CHANNEL_SELECT != pConfig->channel && pConfig->channel <= SIR_11B_CHANNEL_END)
6014 || (AUTO_CHANNEL_SELECT == pConfig->channel &&
Siddharth Bhalf42f8592014-05-15 13:39:07 +05306015 operatingBand == RF_SUBBAND_2_4_GHZ)) &&
Siddharth Bhal5cba24e2014-05-08 18:59:39 +05306016 iniConfig->enableVhtFor24GHzBand == FALSE)
Ravi Joshi83bfaa12013-05-28 22:12:08 -07006017 {
Siddharth Bhalf42f8592014-05-15 13:39:07 +05306018 hddLog(LOGW, FL("Setting hwmode to 11n, operatingBand = %d, Channel = %d"),
6019 operatingBand, pConfig->channel);
Ravi Joshi83bfaa12013-05-28 22:12:08 -07006020 pConfig->SapHw_mode = eSAP_DOT11_MODE_11n;
6021 }
Jeff Johnsone7245742012-09-05 17:12:55 -07006022 }
6023#endif
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306024
Ravi Joshiaeb7d9e2013-05-02 12:28:14 -07006025 if ( AUTO_CHANNEL_SELECT != pConfig->channel )
6026 {
6027 sme_SelectCBMode(hHal,
6028 sapConvertSapPhyModeToCsrPhyMode(pConfig->SapHw_mode),
6029 pConfig->channel);
6030 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006031 // ht_capab is not what the name conveys,this is used for protection bitmap
6032 pConfig->ht_capab =
6033 (WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini->apProtection;
6034
6035 if ( 0 != wlan_hdd_cfg80211_update_apies(pHostapdAdapter, params) )
6036 {
6037 hddLog(LOGE, FL("SAP Not able to set AP IEs"));
6038 return -EINVAL;
6039 }
6040
6041 //Uapsd Enabled Bit
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306042 pConfig->UapsdEnable =
Jeff Johnson295189b2012-06-20 16:38:30 -07006043 (WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini->apUapsdEnabled;
6044 //Enable OBSS protection
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306045 pConfig->obssProtEnabled =
6046 (WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini->apOBSSProtEnabled;
Jeff Johnson295189b2012-06-20 16:38:30 -07006047
Chet Lanctot8cecea22014-02-11 19:09:36 -08006048#ifdef WLAN_FEATURE_11W
6049 pConfig->mfpCapable = MFPCapable;
6050 pConfig->mfpRequired = MFPRequired;
6051 hddLog(LOGW, FL("Soft AP MFP capable %d, MFP required %d\n"),
6052 pConfig->mfpCapable, pConfig->mfpRequired);
6053#endif
6054
Arif Hussain6d2a3322013-11-17 19:50:10 -08006055 hddLog(LOGW, FL("SOftAP macaddress : "MAC_ADDRESS_STR),
Jeff Johnson295189b2012-06-20 16:38:30 -07006056 MAC_ADDR_ARRAY(pHostapdAdapter->macAddressCurrent.bytes));
Arif Hussain6d2a3322013-11-17 19:50:10 -08006057 hddLog(LOGW,FL("ssid =%s, beaconint=%d, channel=%d"),
6058 pConfig->SSIDinfo.ssid.ssId, (int)pConfig->beacon_int,
6059 (int)pConfig->channel);
6060 hddLog(LOGW,FL("hw_mode=%x, privacy=%d, authType=%d"),
6061 pConfig->SapHw_mode, pConfig->privacy,
6062 pConfig->authType);
6063 hddLog(LOGW,FL("RSN/WPALen=%d, Uapsd = %d"),
6064 (int)pConfig->RSNWPAReqIELength, pConfig->UapsdEnable);
6065 hddLog(LOGW,FL("ProtEnabled = %d, OBSSProtEnabled = %d"),
6066 pConfig->protEnabled, pConfig->obssProtEnabled);
Jeff Johnson295189b2012-06-20 16:38:30 -07006067
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306068 if(test_bit(SOFTAP_BSS_STARTED, &pHostapdAdapter->event_flags))
Jeff Johnson295189b2012-06-20 16:38:30 -07006069 {
6070 //Bss already started. just return.
6071 //TODO Probably it should update some beacon params.
6072 hddLog( LOGE, "Bss Already started...Ignore the request");
6073 EXIT();
6074 return 0;
6075 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306076
Agarwal Ashish51325b52014-06-16 16:50:49 +05306077 if (vos_max_concurrent_connections_reached()) {
6078 hddLog(VOS_TRACE_LEVEL_INFO, FL("Reached max concurrent connections"));
6079 return -EINVAL;
6080 }
6081
Jeff Johnson295189b2012-06-20 16:38:30 -07006082 pConfig->persona = pHostapdAdapter->device_mode;
6083
6084 pSapEventCallback = hdd_hostapd_SAPEventCB;
6085 if(WLANSAP_StartBss(pVosContext, pSapEventCallback, pConfig,
6086 (v_PVOID_t)pHostapdAdapter->dev) != VOS_STATUS_SUCCESS)
6087 {
Arif Hussain6d2a3322013-11-17 19:50:10 -08006088 hddLog(LOGE,FL("SAP Start Bss fail"));
Jeff Johnson295189b2012-06-20 16:38:30 -07006089 return -EINVAL;
6090 }
6091
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306092 hddLog(LOG1,
Jeff Johnson295189b2012-06-20 16:38:30 -07006093 FL("Waiting for Scan to complete(auto mode) and BSS to start"));
6094
6095 status = vos_wait_single_event(&pHostapdState->vosEvent, 10000);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306096
Jeff Johnson295189b2012-06-20 16:38:30 -07006097 if (!VOS_IS_STATUS_SUCCESS(status))
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306098 {
6099 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08006100 ("ERROR: HDD vos wait for single_event failed!!"));
Tushnim Bhattacharyyaad37df12013-10-02 12:01:33 -07006101 smeGetCommandQStatus(hHal);
Jeff Johnson295189b2012-06-20 16:38:30 -07006102 VOS_ASSERT(0);
6103 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306104
Jeff Johnson295189b2012-06-20 16:38:30 -07006105 set_bit(SOFTAP_BSS_STARTED, &pHostapdAdapter->event_flags);
Agarwal Ashish51325b52014-06-16 16:50:49 +05306106 wlan_hdd_incr_active_session(pHddCtx, pHostapdAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07006107
Madan Mohan Koyyalamudi26bd7142012-10-30 18:14:19 -07006108#ifdef WLAN_FEATURE_P2P_DEBUG
6109 if (pHostapdAdapter->device_mode == WLAN_HDD_P2P_GO)
6110 {
6111 if(globalP2PConnectionStatus == P2P_GO_NEG_COMPLETED)
6112 {
6113 globalP2PConnectionStatus = P2P_GO_COMPLETED_STATE;
6114 hddLog(LOGE,"[P2P State] From Go nego completed to "
Jeff Johnson1250df42012-12-10 14:31:52 -08006115 "Non-autonomous Group started");
Madan Mohan Koyyalamudi26bd7142012-10-30 18:14:19 -07006116 }
6117 else if(globalP2PConnectionStatus == P2P_NOT_ACTIVE)
6118 {
6119 globalP2PConnectionStatus = P2P_GO_COMPLETED_STATE;
6120 hddLog(LOGE,"[P2P State] From Inactive to "
Jeff Johnson1250df42012-12-10 14:31:52 -08006121 "Autonomous Group started");
Madan Mohan Koyyalamudi26bd7142012-10-30 18:14:19 -07006122 }
6123 }
6124#endif
6125
Jeff Johnson295189b2012-06-20 16:38:30 -07006126 pHostapdState->bCommit = TRUE;
6127 EXIT();
6128
6129 return 0;
6130}
6131
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006132#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306133static int wlan_hdd_cfg80211_add_beacon(struct wiphy *wiphy,
6134 struct net_device *dev,
Jeff Johnson295189b2012-06-20 16:38:30 -07006135 struct beacon_parameters *params)
6136{
6137 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +05306138 hdd_context_t *pHddCtx;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306139 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07006140
6141 ENTER();
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +05306142
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05306143 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
6144 TRACE_CODE_HDD_CFG80211_ADD_BEACON,
6145 pAdapter->sessionId, params->interval));
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05306146 hddLog(VOS_TRACE_LEVEL_INFO_HIGH, "device mode=%s (%d)",
6147 hdd_device_modetoString(pAdapter->device_mode),
6148 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07006149
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306150 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
6151 status = wlan_hdd_validate_context(pHddCtx);
6152
6153 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006154 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306155 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6156 "%s: HDD context is not valid", __func__);
6157 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006158 }
6159
Agarwal Ashish51325b52014-06-16 16:50:49 +05306160 if (vos_max_concurrent_connections_reached()) {
6161 hddLog(VOS_TRACE_LEVEL_INFO, FL("Reached max concurrent connections"));
6162 return -EINVAL;
6163 }
6164
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306165 if ( (pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -07006166 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Jeff Johnson295189b2012-06-20 16:38:30 -07006167 )
6168 {
6169 beacon_data_t *old,*new;
6170
6171 old = pAdapter->sessionCtx.ap.beacon;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306172
Jeff Johnson295189b2012-06-20 16:38:30 -07006173 if (old)
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306174 {
6175 hddLog(VOS_TRACE_LEVEL_WARN,
6176 FL("already beacon info added to session(%d)"),
6177 pAdapter->sessionId);
Jeff Johnson295189b2012-06-20 16:38:30 -07006178 return -EALREADY;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306179 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006180
6181 status = wlan_hdd_cfg80211_alloc_new_beacon(pAdapter,&new,params);
6182
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306183 if(status != VOS_STATUS_SUCCESS)
Jeff Johnson295189b2012-06-20 16:38:30 -07006184 {
6185 hddLog(VOS_TRACE_LEVEL_FATAL,
Arif Hussain6d2a3322013-11-17 19:50:10 -08006186 "%s:Error!!! Allocating the new beacon",__func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07006187 return -EINVAL;
6188 }
6189
6190 pAdapter->sessionCtx.ap.beacon = new;
6191
6192 status = wlan_hdd_cfg80211_start_bss(pAdapter, params);
6193 }
6194
6195 EXIT();
6196 return status;
6197}
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306198
6199static int wlan_hdd_cfg80211_set_beacon(struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07006200 struct net_device *dev,
6201 struct beacon_parameters *params)
6202{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306203 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +05306204 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
6205 hdd_context_t *pHddCtx;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306206 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07006207
6208 ENTER();
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +05306209 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
6210 TRACE_CODE_HDD_CFG80211_SET_BEACON,
6211 pAdapter->sessionId, pHddStaCtx->conn_info.authType));
6212 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s (%d)",
6213 __func__, hdd_device_modetoString(pAdapter->device_mode),
6214 pAdapter->device_mode);
6215
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306216 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
6217 status = wlan_hdd_validate_context(pHddCtx);
6218
6219 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006220 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306221 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6222 "%s: HDD context is not valid", __func__);
6223 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006224 }
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +05306225
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306226 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -07006227 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306228 )
Jeff Johnson295189b2012-06-20 16:38:30 -07006229 {
6230 beacon_data_t *old,*new;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306231
Jeff Johnson295189b2012-06-20 16:38:30 -07006232 old = pAdapter->sessionCtx.ap.beacon;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306233
Jeff Johnson295189b2012-06-20 16:38:30 -07006234 if (!old)
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306235 {
6236 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6237 FL("session(%d) old and new heads points to NULL"),
6238 pAdapter->sessionId);
Jeff Johnson295189b2012-06-20 16:38:30 -07006239 return -ENOENT;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306240 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006241
6242 status = wlan_hdd_cfg80211_alloc_new_beacon(pAdapter,&new,params);
6243
6244 if(status != VOS_STATUS_SUCCESS) {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306245 hddLog(VOS_TRACE_LEVEL_FATAL,
Arif Hussain6d2a3322013-11-17 19:50:10 -08006246 "%s: Error!!! Allocating the new beacon",__func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07006247 return -EINVAL;
6248 }
6249
6250 pAdapter->sessionCtx.ap.beacon = new;
6251
6252 status = wlan_hdd_cfg80211_start_bss(pAdapter, params);
6253 }
6254
6255 EXIT();
6256 return status;
6257}
6258
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006259#endif //(LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
6260
6261#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
Jeff Johnson295189b2012-06-20 16:38:30 -07006262static int wlan_hdd_cfg80211_del_beacon(struct wiphy *wiphy,
6263 struct net_device *dev)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006264#else
6265static int wlan_hdd_cfg80211_stop_ap (struct wiphy *wiphy,
6266 struct net_device *dev)
6267#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07006268{
6269 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Jeff Johnsone7245742012-09-05 17:12:55 -07006270 hdd_context_t *pHddCtx = NULL;
6271 hdd_scaninfo_t *pScanInfo = NULL;
6272 hdd_adapter_t *staAdapter = NULL;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306273 VOS_STATUS status;
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +05306274 long ret;
Jeff Johnson295189b2012-06-20 16:38:30 -07006275
6276 ENTER();
6277
6278 if (NULL == pAdapter)
6279 {
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +05306280 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07006281 "%s: HDD adapter context is Null", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07006282 return -ENODEV;
6283 }
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07006284
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05306285 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
6286 TRACE_CODE_HDD_CFG80211_STOP_AP,
6287 pAdapter->sessionId, pAdapter->device_mode));
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306288 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
6289 status = wlan_hdd_validate_context(pHddCtx);
6290
6291 if (0 != status)
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07006292 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306293 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6294 "%s: HDD context is not valid", __func__);
6295 return status;
Jeff Johnson4416a782013-03-25 14:17:50 -07006296 }
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07006297
6298 staAdapter = hdd_get_adapter(pAdapter->pHddCtx, WLAN_HDD_INFRA_STATION);
6299 if (NULL == staAdapter)
6300 {
6301 staAdapter = hdd_get_adapter(pAdapter->pHddCtx, WLAN_HDD_P2P_CLIENT);
6302 if (NULL == staAdapter)
6303 {
Rajesh Chauhan52d885b2013-11-01 10:54:25 -07006304 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO_HIGH,
6305 "%s: HDD adapter context for STA/P2P-CLI is Null",
6306 __func__);
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07006307 }
6308 }
6309
6310 pScanInfo = &pHddCtx->scan_info;
6311
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05306312 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s (%d)",
6313 __func__, hdd_device_modetoString(pAdapter->device_mode),
6314 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07006315
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +05306316 ret = wlan_hdd_scan_abort(pAdapter);
6317
Girish Gowli4bf7a632014-06-12 13:42:11 +05306318 if (ret < 0)
Jeff Johnsone7245742012-09-05 17:12:55 -07006319 {
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +05306320 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6321 FL("Timeout occurred while waiting for abortscan %ld"), ret);
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306322
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +05306323 if (pHddCtx->isLogpInProgress)
Jeff Johnsone7245742012-09-05 17:12:55 -07006324 {
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +05306325 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6326 "%s: LOGP in Progress. Ignore!!!", __func__);
Yue Ma4f55ef32014-01-23 16:45:33 -08006327
Jeff Johnsone7245742012-09-05 17:12:55 -07006328 VOS_ASSERT(pScanInfo->mScanPending);
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +05306329 return -EAGAIN;
Jeff Johnsone7245742012-09-05 17:12:55 -07006330 }
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +05306331 VOS_ASSERT(pScanInfo->mScanPending);
Jeff Johnsone7245742012-09-05 17:12:55 -07006332 }
6333
Rashmi Ramanna1f0948d2014-08-28 15:33:48 +05306334 /* Delete all associated STAs before stopping AP/P2P GO */
6335 hdd_del_all_sta(pAdapter);
Arun Kumar Khandavallia3bd8002014-01-17 16:21:19 +05306336 hdd_hostapd_stop(dev);
6337
Jeff Johnson295189b2012-06-20 16:38:30 -07006338 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -07006339 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Jeff Johnson295189b2012-06-20 16:38:30 -07006340 )
6341 {
6342 beacon_data_t *old;
6343
6344 old = pAdapter->sessionCtx.ap.beacon;
6345
6346 if (!old)
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306347 {
6348 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6349 FL("session(%d) beacon data points to NULL"),
6350 pAdapter->sessionId);
Jeff Johnson295189b2012-06-20 16:38:30 -07006351 return -ENOENT;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306352 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006353
Jeff Johnson295189b2012-06-20 16:38:30 -07006354 hdd_cleanup_actionframe(pHddCtx, pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07006355
6356 mutex_lock(&pHddCtx->sap_lock);
6357 if(test_bit(SOFTAP_BSS_STARTED, &pAdapter->event_flags))
6358 {
Jeff Johnson4416a782013-03-25 14:17:50 -07006359 if ( VOS_STATUS_SUCCESS == (status = WLANSAP_StopBss(pHddCtx->pvosContext) ) )
Jeff Johnson295189b2012-06-20 16:38:30 -07006360 {
6361 hdd_hostapd_state_t *pHostapdState = WLAN_HDD_GET_HOSTAP_STATE_PTR(pAdapter);
6362
6363 status = vos_wait_single_event(&pHostapdState->vosEvent, 10000);
6364
6365 if (!VOS_IS_STATUS_SUCCESS(status))
6366 {
6367 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08006368 ("ERROR: HDD vos wait for single_event failed!!"));
Jeff Johnson295189b2012-06-20 16:38:30 -07006369 VOS_ASSERT(0);
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05306370 }
6371 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006372 clear_bit(SOFTAP_BSS_STARTED, &pAdapter->event_flags);
Agarwal Ashish51325b52014-06-16 16:50:49 +05306373 /* BSS stopped, clear the active sessions for this device mode */
6374 wlan_hdd_decr_active_session(pHddCtx, pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07006375 }
6376 mutex_unlock(&pHddCtx->sap_lock);
6377
6378 if(status != VOS_STATUS_SUCCESS)
6379 {
6380 hddLog(VOS_TRACE_LEVEL_FATAL,
Arif Hussain6d2a3322013-11-17 19:50:10 -08006381 "%s:Error!!! Stopping the BSS",__func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07006382 return -EINVAL;
6383 }
6384
Jeff Johnson4416a782013-03-25 14:17:50 -07006385 if (ccmCfgSetInt(pHddCtx->hHal,
Jeff Johnson295189b2012-06-20 16:38:30 -07006386 WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG, 0,NULL, eANI_BOOLEAN_FALSE)
6387 ==eHAL_STATUS_FAILURE)
6388 {
6389 hddLog(LOGE,
Arif Hussain6d2a3322013-11-17 19:50:10 -08006390 "Could not pass on WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG to CCM");
Jeff Johnson295189b2012-06-20 16:38:30 -07006391 }
6392
Jeff Johnson4416a782013-03-25 14:17:50 -07006393 if ( eHAL_STATUS_FAILURE == ccmCfgSetInt(pHddCtx->hHal,
Jeff Johnson295189b2012-06-20 16:38:30 -07006394 WNI_CFG_ASSOC_RSP_ADDNIE_FLAG, 0, NULL,
6395 eANI_BOOLEAN_FALSE) )
6396 {
6397 hddLog(LOGE,
Arif Hussain6d2a3322013-11-17 19:50:10 -08006398 "Could not pass on WNI_CFG_ASSOC_RSP_ADDNIE_FLAG to CCM");
Jeff Johnson295189b2012-06-20 16:38:30 -07006399 }
6400
6401 // Reset WNI_CFG_PROBE_RSP Flags
6402 wlan_hdd_reset_prob_rspies(pAdapter);
6403
6404 pAdapter->sessionCtx.ap.beacon = NULL;
6405 kfree(old);
Madan Mohan Koyyalamudi26bd7142012-10-30 18:14:19 -07006406#ifdef WLAN_FEATURE_P2P_DEBUG
6407 if((pAdapter->device_mode == WLAN_HDD_P2P_GO) &&
6408 (globalP2PConnectionStatus == P2P_GO_COMPLETED_STATE))
6409 {
6410 hddLog(LOGE,"[P2P State] From GO completed to Inactive state "
6411 "GO got removed");
6412 globalP2PConnectionStatus = P2P_NOT_ACTIVE;
6413 }
6414#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07006415 }
6416 EXIT();
6417 return status;
6418}
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006419
6420#if (LINUX_VERSION_CODE > KERNEL_VERSION(3,3,0))
6421
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05306422static int wlan_hdd_cfg80211_start_ap(struct wiphy *wiphy,
6423 struct net_device *dev,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006424 struct cfg80211_ap_settings *params)
6425{
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05306426 hdd_adapter_t *pAdapter;
6427 hdd_context_t *pHddCtx;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306428 int status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006429
6430 ENTER();
6431
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05306432 if (NULL == dev)
Madan Mohan Koyyalamudib2c36892012-10-18 20:52:38 -07006433 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306434 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05306435 "%s: Device is Null", __func__);
6436 return -ENODEV;
6437 }
6438
6439 pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
6440 if (NULL == pAdapter)
6441 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306442 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05306443 "%s: HDD adapter is Null", __func__);
6444 return -ENODEV;
6445 }
6446
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05306447 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
6448 TRACE_CODE_HDD_CFG80211_START_AP, pAdapter->sessionId,
6449 params-> beacon_interval));
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05306450 if (WLAN_HDD_ADAPTER_MAGIC != pAdapter->magic)
6451 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306452 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05306453 "%s: HDD adapter magic is invalid", __func__);
6454 return -ENODEV;
6455 }
6456
6457 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306458 status = wlan_hdd_validate_context(pHddCtx);
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05306459
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306460 if (0 != status)
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05306461 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306462 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6463 "%s: HDD context is not valid", __func__);
6464 return status;
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05306465 }
6466
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05306467 hddLog(VOS_TRACE_LEVEL_INFO_HIGH, "%s: device mode = %s (%d)",
6468 __func__, hdd_device_modetoString(pAdapter->device_mode),
6469 pAdapter->device_mode);
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05306470
6471 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006472 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006473 )
6474 {
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05306475 beacon_data_t *old, *new;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006476
6477 old = pAdapter->sessionCtx.ap.beacon;
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05306478
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006479 if (old)
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306480 {
6481 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_WARN,
6482 FL("already beacon info added to session(%d)"),
6483 pAdapter->sessionId);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006484 return -EALREADY;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306485 }
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006486
6487 status = wlan_hdd_cfg80211_alloc_new_beacon(pAdapter, &new, &params->beacon, params->dtim_period);
6488
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05306489 if (status != 0)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006490 {
6491 hddLog(VOS_TRACE_LEVEL_FATAL,
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05306492 "%s:Error!!! Allocating the new beacon", __func__);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006493 return -EINVAL;
6494 }
6495 pAdapter->sessionCtx.ap.beacon = new;
Viral Modi3a32cc52013-02-08 11:14:52 -08006496#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,6,0))
Yue Maf49ba872013-08-19 12:04:25 -07006497 wlan_hdd_cfg80211_set_channel(wiphy, dev,
6498#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,8,0))
6499 params->channel, params->channel_type);
6500#else
6501 params->chandef.chan, cfg80211_get_chandef_type(&(params->chandef)));
6502#endif
Viral Modi3a32cc52013-02-08 11:14:52 -08006503#endif
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006504 status = wlan_hdd_cfg80211_start_bss(pAdapter, &params->beacon, params->ssid,
6505 params->ssid_len, params->hidden_ssid);
6506 }
6507
6508 EXIT();
6509 return status;
6510}
6511
6512
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306513static int wlan_hdd_cfg80211_change_beacon(struct wiphy *wiphy,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006514 struct net_device *dev,
6515 struct cfg80211_beacon_data *params)
6516{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306517 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +05306518 hdd_context_t *pHddCtx;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306519 int status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006520
6521 ENTER();
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +05306522
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05306523 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
6524 TRACE_CODE_HDD_CFG80211_CHANGE_BEACON,
6525 pAdapter->sessionId, pAdapter->device_mode));
Arif Hussain6d2a3322013-11-17 19:50:10 -08006526 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %d",
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006527 __func__, pAdapter->device_mode);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306528
6529 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
6530 status = wlan_hdd_validate_context(pHddCtx);
6531
6532 if (0 != status)
Madan Mohan Koyyalamudib2c36892012-10-18 20:52:38 -07006533 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306534 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6535 "%s: HDD context is not valid", __func__);
6536 return status;
Madan Mohan Koyyalamudib2c36892012-10-18 20:52:38 -07006537 }
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006538
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306539 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006540 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306541 )
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006542 {
6543 beacon_data_t *old,*new;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306544
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006545 old = pAdapter->sessionCtx.ap.beacon;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306546
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006547 if (!old)
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306548 {
6549 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6550 FL("session(%d) beacon data points to NULL"),
6551 pAdapter->sessionId);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006552 return -ENOENT;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306553 }
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006554
6555 status = wlan_hdd_cfg80211_alloc_new_beacon(pAdapter, &new, params, 0);
6556
6557 if(status != VOS_STATUS_SUCCESS) {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306558 hddLog(VOS_TRACE_LEVEL_FATAL,
Arif Hussain6d2a3322013-11-17 19:50:10 -08006559 "%s: Error!!! Allocating the new beacon",__func__);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006560 return -EINVAL;
6561 }
6562
6563 pAdapter->sessionCtx.ap.beacon = new;
6564
6565 status = wlan_hdd_cfg80211_start_bss(pAdapter, params, NULL, 0, 0);
6566 }
6567
6568 EXIT();
6569 return status;
6570}
6571
6572#endif //(LINUX_VERSION_CODE > KERNEL_VERSION(3,3,0))
6573
Jeff Johnson295189b2012-06-20 16:38:30 -07006574
Mahesh A Saptasagar179d2252014-06-02 21:32:21 +05306575static int __wlan_hdd_cfg80211_change_bss (struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07006576 struct net_device *dev,
6577 struct bss_parameters *params)
6578{
6579 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
6580
6581 ENTER();
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +05306582
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05306583 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
6584 TRACE_CODE_HDD_CFG80211_CHANGE_BSS,
6585 pAdapter->sessionId, params->ap_isolate));
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05306586 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s (%d)",
6587 __func__, hdd_device_modetoString(pAdapter->device_mode),
6588 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07006589
6590 if((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -07006591 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306592 )
Jeff Johnson295189b2012-06-20 16:38:30 -07006593 {
6594 /* ap_isolate == -1 means that in change bss, upper layer doesn't
6595 * want to update this parameter */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306596 if (-1 != params->ap_isolate)
Jeff Johnson295189b2012-06-20 16:38:30 -07006597 {
6598 pAdapter->sessionCtx.ap.apDisableIntraBssFwd = !!params->ap_isolate;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306599 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006600 }
6601
6602 EXIT();
6603 return 0;
6604}
6605
Mahesh A Saptasagar179d2252014-06-02 21:32:21 +05306606static int wlan_hdd_cfg80211_change_bss (struct wiphy *wiphy,
6607 struct net_device *dev,
6608 struct bss_parameters *params)
6609{
6610 int ret;
6611
6612 vos_ssr_protect(__func__);
6613 ret = __wlan_hdd_cfg80211_change_bss(wiphy, dev, params);
6614 vos_ssr_unprotect(__func__);
6615
6616 return ret;
6617}
Kiet Lam10841362013-11-01 11:36:50 +05306618/* FUNCTION: wlan_hdd_change_country_code_cd
6619* to wait for contry code completion
6620*/
6621void* wlan_hdd_change_country_code_cb(void *pAdapter)
6622{
6623 hdd_adapter_t *call_back_pAdapter = pAdapter;
6624 complete(&call_back_pAdapter->change_country_code);
6625 return NULL;
6626}
6627
Jeff Johnson295189b2012-06-20 16:38:30 -07006628/*
Mahesh A Saptasagar0e59c472014-04-14 19:17:41 +05306629 * FUNCTION: __wlan_hdd_cfg80211_change_iface
Jeff Johnson295189b2012-06-20 16:38:30 -07006630 * This function is used to set the interface type (INFRASTRUCTURE/ADHOC)
6631 */
Mahesh A Saptasagar0e59c472014-04-14 19:17:41 +05306632int __wlan_hdd_cfg80211_change_iface( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07006633 struct net_device *ndev,
6634 enum nl80211_iftype type,
6635 u32 *flags,
6636 struct vif_params *params
6637 )
6638{
6639 struct wireless_dev *wdev;
6640 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( ndev );
Rajesh Chauhana0516c62014-01-30 16:11:18 -08006641 hdd_context_t *pHddCtx;
Mohit Khanna0f232092012-09-11 14:46:08 -07006642 hdd_adapter_t *pP2pAdapter = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07006643 tCsrRoamProfile *pRoamProfile = NULL;
6644 eCsrRoamBssType LastBSSType;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306645 hdd_config_t *pConfig = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07006646 eMib_dot11DesiredBssType connectedBssType;
6647 VOS_STATUS status;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306648 long ret;
Jeff Johnson295189b2012-06-20 16:38:30 -07006649
6650 ENTER();
6651
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05306652 if (!pAdapter)
Rajesh Chauhana0516c62014-01-30 16:11:18 -08006653 {
6654 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6655 "%s: Adapter context is null", __func__);
6656 return VOS_STATUS_E_FAILURE;
6657 }
6658
6659 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
6660 if (!pHddCtx)
6661 {
6662 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6663 "%s: HDD context is null", __func__);
6664 return VOS_STATUS_E_FAILURE;
6665 }
6666
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05306667 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
6668 TRACE_CODE_HDD_CFG80211_CHANGE_IFACE,
6669 pAdapter->sessionId, type));
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306670 status = wlan_hdd_validate_context(pHddCtx);
6671
6672 if (0 != status)
Jeff Johnson295189b2012-06-20 16:38:30 -07006673 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306674 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6675 "%s: HDD context is not valid", __func__);
6676 return status;
Jeff Johnson295189b2012-06-20 16:38:30 -07006677 }
6678
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05306679 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s (%d)",
6680 __func__, hdd_device_modetoString(pAdapter->device_mode),
6681 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07006682
Agarwal Ashish51325b52014-06-16 16:50:49 +05306683 if (vos_max_concurrent_connections_reached()) {
6684 hddLog(VOS_TRACE_LEVEL_INFO, FL("Reached max concurrent connections"));
6685 return -EINVAL;
6686 }
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306687 pConfig = pHddCtx->cfg_ini;
Jeff Johnson295189b2012-06-20 16:38:30 -07006688 wdev = ndev->ieee80211_ptr;
6689
6690#ifdef WLAN_BTAMP_FEATURE
6691 if((NL80211_IFTYPE_P2P_CLIENT == type)||
6692 (NL80211_IFTYPE_ADHOC == type)||
6693 (NL80211_IFTYPE_AP == type)||
6694 (NL80211_IFTYPE_P2P_GO == type))
6695 {
6696 pHddCtx->isAmpAllowed = VOS_FALSE;
6697 // stop AMP traffic
6698 status = WLANBAP_StopAmp();
6699 if(VOS_STATUS_SUCCESS != status )
6700 {
6701 pHddCtx->isAmpAllowed = VOS_TRUE;
6702 hddLog(VOS_TRACE_LEVEL_FATAL,
6703 "%s: Failed to stop AMP", __func__);
6704 return -EINVAL;
6705 }
6706 }
6707#endif //WLAN_BTAMP_FEATURE
6708 /* Reset the current device mode bit mask*/
6709 wlan_hdd_clear_concurrency_mode(pHddCtx, pAdapter->device_mode);
6710
6711 if( (pAdapter->device_mode == WLAN_HDD_INFRA_STATION)
Jeff Johnson295189b2012-06-20 16:38:30 -07006712 || (pAdapter->device_mode == WLAN_HDD_P2P_CLIENT)
Jeff Johnsone7245742012-09-05 17:12:55 -07006713 || (pAdapter->device_mode == WLAN_HDD_P2P_DEVICE)
Jeff Johnson295189b2012-06-20 16:38:30 -07006714 )
6715 {
6716 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Rajesh Chauhana0516c62014-01-30 16:11:18 -08006717 if (!pWextState)
6718 {
6719 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6720 "%s: pWextState is null", __func__);
6721 return VOS_STATUS_E_FAILURE;
6722 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006723 pRoamProfile = &pWextState->roamProfile;
6724 LastBSSType = pRoamProfile->BSSType;
6725
6726 switch (type)
6727 {
6728 case NL80211_IFTYPE_STATION:
Jeff Johnson295189b2012-06-20 16:38:30 -07006729 case NL80211_IFTYPE_P2P_CLIENT:
Jeff Johnson295189b2012-06-20 16:38:30 -07006730 hddLog(VOS_TRACE_LEVEL_INFO,
6731 "%s: setting interface Type to INFRASTRUCTURE", __func__);
6732 pRoamProfile->BSSType = eCSR_BSS_TYPE_INFRASTRUCTURE;
Jeff Johnsone7245742012-09-05 17:12:55 -07006733#ifdef WLAN_FEATURE_11AC
6734 if(pConfig->dot11Mode == eHDD_DOT11_MODE_AUTO)
6735 {
6736 pConfig->dot11Mode = eHDD_DOT11_MODE_11ac;
6737 }
6738#endif
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306739 pRoamProfile->phyMode =
Jeff Johnsone7245742012-09-05 17:12:55 -07006740 hdd_cfg_xlate_to_csr_phy_mode(pConfig->dot11Mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07006741 wdev->iftype = type;
Gopichand Nakkalaf527dc62012-12-31 16:35:10 -08006742 //Check for sub-string p2p to confirm its a p2p interface
6743 if (NULL != strstr(ndev->name,"p2p"))
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306744 {
Gopichand Nakkala864d3552012-12-31 16:08:51 -08006745 pAdapter->device_mode = (type == NL80211_IFTYPE_STATION) ?
6746 WLAN_HDD_P2P_DEVICE : WLAN_HDD_P2P_CLIENT;
6747 }
6748 else
6749 {
6750 pAdapter->device_mode = (type == NL80211_IFTYPE_STATION) ?
Jeff Johnson295189b2012-06-20 16:38:30 -07006751 WLAN_HDD_INFRA_STATION: WLAN_HDD_P2P_CLIENT;
Gopichand Nakkala864d3552012-12-31 16:08:51 -08006752 }
Madan Mohan Koyyalamudi81746922013-07-17 14:38:51 +05306753#ifdef FEATURE_WLAN_TDLS
6754 /* The open adapter for the p2p shall skip initializations in
6755 * tdls_init if the device mode is WLAN_HDD_P2P_DEVICE, for
6756 * TDLS is supported only on WLAN_HDD_P2P_CLIENT. Hence invoke
6757 * tdls_init when the change_iface sets the device mode to
6758 * WLAN_HDD_P2P_CLIENT.
6759 */
6760
6761 if ( pAdapter->device_mode == WLAN_HDD_P2P_CLIENT)
6762 {
Agarwal Ashish4b87f922014-06-18 03:03:21 +05306763 if (0 != wlan_hdd_sta_tdls_init (pAdapter))
Madan Mohan Koyyalamudi81746922013-07-17 14:38:51 +05306764 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306765 hddLog(VOS_TRACE_LEVEL_ERROR,
6766 "%s: tdls initialization failed", __func__);
Madan Mohan Koyyalamudi81746922013-07-17 14:38:51 +05306767 return -EINVAL;
6768 }
6769 }
6770#endif
6771
Jeff Johnson295189b2012-06-20 16:38:30 -07006772 break;
6773 case NL80211_IFTYPE_ADHOC:
6774 hddLog(VOS_TRACE_LEVEL_INFO,
6775 "%s: setting interface Type to ADHOC", __func__);
6776 pRoamProfile->BSSType = eCSR_BSS_TYPE_START_IBSS;
6777 pRoamProfile->phyMode =
6778 hdd_cfg_xlate_to_csr_phy_mode(pConfig->dot11Mode);
Shailender Karmuchia734f332013-04-19 14:02:48 -07006779 pAdapter->device_mode = WLAN_HDD_IBSS;
Jeff Johnson295189b2012-06-20 16:38:30 -07006780 wdev->iftype = type;
6781 break;
6782
6783 case NL80211_IFTYPE_AP:
Jeff Johnson295189b2012-06-20 16:38:30 -07006784 case NL80211_IFTYPE_P2P_GO:
Jeff Johnson295189b2012-06-20 16:38:30 -07006785 {
6786 hddLog(VOS_TRACE_LEVEL_INFO_HIGH,
6787 "%s: setting interface Type to %s", __func__,
6788 (type == NL80211_IFTYPE_AP) ? "SoftAP" : "P2pGo");
6789
Gopichand Nakkalaf527dc62012-12-31 16:35:10 -08006790 //Cancel any remain on channel for GO mode
6791 if (NL80211_IFTYPE_P2P_GO == type)
6792 {
6793 wlan_hdd_cancel_existing_remain_on_channel(pAdapter);
6794 }
Mohit Khanna0f232092012-09-11 14:46:08 -07006795 if (NL80211_IFTYPE_AP == type)
6796 {
6797 /* As Loading WLAN Driver one interface being created for p2p device
6798 * address. This will take one HW STA and the max number of clients
6799 * that can connect to softAP will be reduced by one. so while changing
6800 * the interface type to NL80211_IFTYPE_AP (SoftAP) remove p2p0
6801 * interface as it is not required in SoftAP mode.
6802 */
6803
6804 // Get P2P Adapter
6805 pP2pAdapter = hdd_get_adapter(pHddCtx, WLAN_HDD_P2P_DEVICE);
6806
6807 if (pP2pAdapter)
6808 {
Agarwal Ashish3a38bd12014-06-12 15:16:52 +05306809 hdd_stop_adapter(pHddCtx, pP2pAdapter, VOS_TRUE);
Mohit Khanna0f232092012-09-11 14:46:08 -07006810 hdd_deinit_adapter(pHddCtx, pP2pAdapter);
6811 hdd_close_adapter(pHddCtx, pP2pAdapter, VOS_TRUE);
6812 }
6813 }
Swaroop Goltia2e32212014-04-09 23:37:33 +05306814 //Disable IMPS & BMPS for SAP/GO
6815 if(VOS_STATUS_E_FAILURE ==
6816 hdd_disable_bmps_imps(pHddCtx, WLAN_HDD_P2P_GO))
6817 {
6818 //Fail to Exit BMPS
6819 VOS_ASSERT(0);
6820 }
Deepthi Gowri500fc472014-08-11 19:53:10 +05306821
6822 hdd_stop_adapter( pHddCtx, pAdapter, VOS_TRUE );
6823
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05306824#ifdef FEATURE_WLAN_TDLS
Mohit Khanna0f232092012-09-11 14:46:08 -07006825
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05306826 /* A Mutex Lock is introduced while changing the mode to
6827 * protect the concurrent access for the Adapters by TDLS
6828 * module.
6829 */
Rajesh Chauhana34c6e62014-03-25 16:37:58 +05306830 mutex_lock(&pHddCtx->tdls_lock);
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05306831#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07006832 //De-init the adapter.
Jeff Johnson295189b2012-06-20 16:38:30 -07006833 hdd_deinit_adapter( pHddCtx, pAdapter );
6834 memset(&pAdapter->sessionCtx, 0, sizeof(pAdapter->sessionCtx));
Jeff Johnson295189b2012-06-20 16:38:30 -07006835 pAdapter->device_mode = (type == NL80211_IFTYPE_AP) ?
6836 WLAN_HDD_SOFTAP : WLAN_HDD_P2P_GO;
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05306837#ifdef FEATURE_WLAN_TDLS
6838 mutex_unlock(&pHddCtx->tdls_lock);
6839#endif
Madan Mohan Koyyalamudi3ff2a0b2012-10-15 14:33:46 -07006840 if ((WLAN_HDD_SOFTAP == pAdapter->device_mode) &&
6841 (pConfig->apRandomBssidEnabled))
6842 {
6843 /* To meet Android requirements create a randomized
6844 MAC address of the form 02:1A:11:Fx:xx:xx */
6845 get_random_bytes(&ndev->dev_addr[3], 3);
6846 ndev->dev_addr[0] = 0x02;
6847 ndev->dev_addr[1] = 0x1A;
6848 ndev->dev_addr[2] = 0x11;
6849 ndev->dev_addr[3] |= 0xF0;
6850 memcpy(pAdapter->macAddressCurrent.bytes, ndev->dev_addr,
6851 VOS_MAC_ADDR_SIZE);
Arif Hussain24bafea2013-11-15 15:10:03 -08006852 pr_info("wlan: Generated HotSpot BSSID " MAC_ADDRESS_STR"\n",
6853 MAC_ADDR_ARRAY(ndev->dev_addr));
Madan Mohan Koyyalamudi3ff2a0b2012-10-15 14:33:46 -07006854 }
6855
Jeff Johnson295189b2012-06-20 16:38:30 -07006856 hdd_set_ap_ops( pAdapter->dev );
6857
Kiet Lam10841362013-11-01 11:36:50 +05306858 /* This is for only SAP mode where users can
6859 * control country through ini.
6860 * P2P GO follows station country code
6861 * acquired during the STA scanning. */
6862 if((NL80211_IFTYPE_AP == type) &&
6863 (memcmp(pConfig->apCntryCode, CFG_AP_COUNTRY_CODE_DEFAULT, 3) != 0))
6864 {
6865 int status = 0;
6866 VOS_TRACE(VOS_MODULE_ID_HDD,VOS_TRACE_LEVEL_INFO,
6867 "%s: setting country code from INI ", __func__);
6868 init_completion(&pAdapter->change_country_code);
6869 status = (int)sme_ChangeCountryCode(pHddCtx->hHal,
6870 (void *)(tSmeChangeCountryCallback)
6871 wlan_hdd_change_country_code_cb,
6872 pConfig->apCntryCode, pAdapter,
6873 pHddCtx->pvosContext,
Abhishek Singha306a442013-11-07 18:39:01 +05306874 eSIR_FALSE,
6875 eSIR_TRUE);
Kiet Lam10841362013-11-01 11:36:50 +05306876 if (eHAL_STATUS_SUCCESS == status)
6877 {
6878 /* Wait for completion */
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306879 ret = wait_for_completion_interruptible_timeout(
Kiet Lam10841362013-11-01 11:36:50 +05306880 &pAdapter->change_country_code,
6881 msecs_to_jiffies(WLAN_WAIT_TIME_COUNTRY));
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306882 if (ret <= 0)
Kiet Lam10841362013-11-01 11:36:50 +05306883 {
6884 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306885 FL("SME Timed out while setting country code %ld"),
6886 ret);
Yue Ma4f55ef32014-01-23 16:45:33 -08006887
6888 if (pHddCtx->isLogpInProgress)
6889 {
6890 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6891 "%s: LOGP in Progress. Ignore!!!", __func__);
6892 return -EAGAIN;
6893 }
Kiet Lam10841362013-11-01 11:36:50 +05306894 }
6895 }
6896 else
6897 {
6898 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08006899 "%s: SME Change Country code failed",__func__);
Kiet Lam10841362013-11-01 11:36:50 +05306900 return -EINVAL;
6901 }
6902 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006903 status = hdd_init_ap_mode(pAdapter);
6904 if(status != VOS_STATUS_SUCCESS)
6905 {
6906 hddLog(VOS_TRACE_LEVEL_FATAL,
6907 "%s: Error initializing the ap mode", __func__);
6908 return -EINVAL;
6909 }
6910 hdd_set_conparam(1);
6911
Jeff Johnson295189b2012-06-20 16:38:30 -07006912 /*interface type changed update in wiphy structure*/
6913 if(wdev)
6914 {
6915 wdev->iftype = type;
6916 pHddCtx->change_iface = type;
6917 }
6918 else
6919 {
6920 hddLog(VOS_TRACE_LEVEL_ERROR,
6921 "%s: ERROR !!!! Wireless dev is NULL", __func__);
6922 return -EINVAL;
6923 }
6924 goto done;
6925 }
6926
6927 default:
6928 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Unsupported interface Type",
6929 __func__);
6930 return -EOPNOTSUPP;
6931 }
6932 }
6933 else if ( (pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -07006934 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Jeff Johnson295189b2012-06-20 16:38:30 -07006935 )
6936 {
6937 switch(type)
6938 {
6939 case NL80211_IFTYPE_STATION:
Jeff Johnson295189b2012-06-20 16:38:30 -07006940 case NL80211_IFTYPE_P2P_CLIENT:
Jeff Johnson295189b2012-06-20 16:38:30 -07006941 case NL80211_IFTYPE_ADHOC:
Deepthi Gowri500fc472014-08-11 19:53:10 +05306942
6943 hdd_stop_adapter( pHddCtx, pAdapter, VOS_TRUE );
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05306944#ifdef FEATURE_WLAN_TDLS
6945
6946 /* A Mutex Lock is introduced while changing the mode to
6947 * protect the concurrent access for the Adapters by TDLS
6948 * module.
6949 */
Rajesh Chauhana34c6e62014-03-25 16:37:58 +05306950 mutex_lock(&pHddCtx->tdls_lock);
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05306951#endif
Jeff Johnson32d95a32012-09-10 13:15:23 -07006952 hdd_deinit_adapter( pHddCtx, pAdapter );
Jeff Johnson295189b2012-06-20 16:38:30 -07006953 wdev->iftype = type;
Gopichand Nakkalaf527dc62012-12-31 16:35:10 -08006954 //Check for sub-string p2p to confirm its a p2p interface
6955 if (NULL != strstr(ndev->name,"p2p"))
Gopichand Nakkala864d3552012-12-31 16:08:51 -08006956 {
6957 pAdapter->device_mode = (type == NL80211_IFTYPE_STATION) ?
6958 WLAN_HDD_P2P_DEVICE : WLAN_HDD_P2P_CLIENT;
6959 }
6960 else
6961 {
6962 pAdapter->device_mode = (type == NL80211_IFTYPE_STATION) ?
Jeff Johnson295189b2012-06-20 16:38:30 -07006963 WLAN_HDD_INFRA_STATION: WLAN_HDD_P2P_CLIENT;
Gopichand Nakkala864d3552012-12-31 16:08:51 -08006964 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006965 hdd_set_conparam(0);
6966 pHddCtx->change_iface = type;
Jeff Johnson295189b2012-06-20 16:38:30 -07006967 memset(&pAdapter->sessionCtx, 0, sizeof(pAdapter->sessionCtx));
6968 hdd_set_station_ops( pAdapter->dev );
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05306969#ifdef FEATURE_WLAN_TDLS
6970 mutex_unlock(&pHddCtx->tdls_lock);
6971#endif
Sunil Dutt66485cb2013-12-19 19:05:03 +05306972 status = hdd_init_station_mode( pAdapter );
Jeff Johnson295189b2012-06-20 16:38:30 -07006973 if( VOS_STATUS_SUCCESS != status )
6974 return -EOPNOTSUPP;
Jeff Johnsone7245742012-09-05 17:12:55 -07006975 /* In case of JB, for P2P-GO, only change interface will be called,
6976 * This is the right place to enable back bmps_imps()
6977 */
Gopichand Nakkalaa2fe5b02013-06-06 16:32:28 +05306978 if (pHddCtx->hdd_wlan_suspended)
6979 {
6980 hdd_set_pwrparams(pHddCtx);
6981 }
Jeff Johnsone7245742012-09-05 17:12:55 -07006982 hdd_enable_bmps_imps(pHddCtx);
Jeff Johnson295189b2012-06-20 16:38:30 -07006983 goto done;
6984 case NL80211_IFTYPE_AP:
Jeff Johnson295189b2012-06-20 16:38:30 -07006985 case NL80211_IFTYPE_P2P_GO:
Jeff Johnson295189b2012-06-20 16:38:30 -07006986 wdev->iftype = type;
Jeff Johnson295189b2012-06-20 16:38:30 -07006987 pAdapter->device_mode = (type == NL80211_IFTYPE_AP) ?
6988 WLAN_HDD_SOFTAP : WLAN_HDD_P2P_GO;
Jeff Johnson295189b2012-06-20 16:38:30 -07006989 goto done;
6990 default:
6991 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Unsupported interface Type",
6992 __func__);
6993 return -EOPNOTSUPP;
6994
6995 }
6996
6997 }
6998 else
6999 {
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05307000 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: unsupported device mode(%s (%d))",
7001 __func__, hdd_device_modetoString(pAdapter->device_mode),
7002 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07007003 return -EOPNOTSUPP;
7004 }
7005
7006
7007 if(pRoamProfile)
7008 {
7009 if ( LastBSSType != pRoamProfile->BSSType )
7010 {
7011 /*interface type changed update in wiphy structure*/
7012 wdev->iftype = type;
7013
7014 /*the BSS mode changed, We need to issue disconnect
7015 if connected or in IBSS disconnect state*/
7016 if ( hdd_connGetConnectedBssType(
7017 WLAN_HDD_GET_STATION_CTX_PTR(pAdapter), &connectedBssType ) ||
7018 ( eCSR_BSS_TYPE_START_IBSS == LastBSSType ) )
7019 {
7020 /*need to issue a disconnect to CSR.*/
7021 INIT_COMPLETION(pAdapter->disconnect_comp_var);
7022 if( eHAL_STATUS_SUCCESS ==
7023 sme_RoamDisconnect( WLAN_HDD_GET_HAL_CTX(pAdapter),
7024 pAdapter->sessionId,
7025 eCSR_DISCONNECT_REASON_UNSPECIFIED ) )
7026 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05307027 ret = wait_for_completion_interruptible_timeout(
7028 &pAdapter->disconnect_comp_var,
7029 msecs_to_jiffies(WLAN_WAIT_TIME_DISCONNECT));
7030 if (ret <= 0)
7031 {
7032 hddLog(VOS_TRACE_LEVEL_ERROR,
7033 FL("wait on disconnect_comp_var failed %ld"), ret);
7034 }
Jeff Johnson295189b2012-06-20 16:38:30 -07007035 }
7036 }
7037 }
7038 }
7039
7040done:
7041 /*set bitmask based on updated value*/
7042 wlan_hdd_set_concurrency_mode(pHddCtx, pAdapter->device_mode);
Leo Chang6fe1f922013-06-07 19:21:24 -07007043
7044 /* Only STA mode support TM now
7045 * all other mode, TM feature should be disabled */
7046 if ( (pHddCtx->cfg_ini->thermalMitigationEnable) &&
7047 (~VOS_STA & pHddCtx->concurrency_mode) )
7048 {
7049 hddDevTmLevelChangedHandler(pHddCtx->parent_dev, 0);
7050 }
7051
Jeff Johnson295189b2012-06-20 16:38:30 -07007052#ifdef WLAN_BTAMP_FEATURE
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307053 if((NL80211_IFTYPE_STATION == type) && (pHddCtx->concurrency_mode <= 1) &&
Agarwal Ashish51325b52014-06-16 16:50:49 +05307054 (pHddCtx->no_of_open_sessions[WLAN_HDD_INFRA_STATION] <=1))
Jeff Johnson295189b2012-06-20 16:38:30 -07007055 {
7056 //we are ok to do AMP
7057 pHddCtx->isAmpAllowed = VOS_TRUE;
7058 }
7059#endif //WLAN_BTAMP_FEATURE
7060 EXIT();
7061 return 0;
7062}
7063
Mahesh A Saptasagar0e59c472014-04-14 19:17:41 +05307064/*
7065 * FUNCTION: wlan_hdd_cfg80211_change_iface
7066 * wrapper function to protect the actual implementation from SSR.
7067 */
7068int wlan_hdd_cfg80211_change_iface( struct wiphy *wiphy,
7069 struct net_device *ndev,
7070 enum nl80211_iftype type,
7071 u32 *flags,
7072 struct vif_params *params
7073 )
7074{
7075 int ret;
7076
7077 vos_ssr_protect(__func__);
7078 ret = __wlan_hdd_cfg80211_change_iface(wiphy, ndev, type, flags, params);
7079 vos_ssr_unprotect(__func__);
7080
7081 return ret;
7082}
7083
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007084#ifdef FEATURE_WLAN_TDLS
7085static int wlan_hdd_tdls_add_station(struct wiphy *wiphy,
7086 struct net_device *dev, u8 *mac, bool update, tCsrStaParams *StaParams)
7087{
7088 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
7089 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
7090 VOS_STATUS status;
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007091 hddTdlsPeer_t *pTdlsPeer;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05307092 long ret;
Rajesh Chauhana34c6e62014-03-25 16:37:58 +05307093 tANI_U16 numCurrTdlsPeers;
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007094
7095 ENTER();
7096
Gopichand Nakkala838be5d2013-04-10 22:41:51 +05307097 if (NULL == pHddCtx || NULL == pHddCtx->cfg_ini)
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007098 {
7099 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7100 "Invalid arguments");
7101 return -EINVAL;
7102 }
Hoonki Lee27511902013-03-14 18:19:06 -07007103
7104 if ((eTDLS_SUPPORT_NOT_ENABLED == pHddCtx->tdls_mode) ||
7105 (eTDLS_SUPPORT_DISABLED == pHddCtx->tdls_mode))
7106 {
7107 VOS_TRACE( VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
7108 "%s: TDLS mode is disabled OR not enabled in FW."
7109 MAC_ADDRESS_STR " Request declined.",
7110 __func__, MAC_ADDR_ARRAY(mac));
7111 return -ENOTSUPP;
7112 }
7113
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007114 if (pHddCtx->isLogpInProgress)
7115 {
7116 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7117 "%s:LOGP in Progress. Ignore!!!", __func__);
Atul Mittal115287b2014-07-08 13:26:33 +05307118 wlan_hdd_tdls_set_link_status(pAdapter,
7119 mac,
7120 eTDLS_LINK_IDLE,
7121 eTDLS_LINK_UNSPECIFIED);
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007122 return -EBUSY;
7123 }
7124
Naresh Jayaram9c6f4462014-02-13 12:20:31 +05307125 pTdlsPeer = wlan_hdd_tdls_get_peer(pAdapter, mac);
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007126
7127 if ( NULL == pTdlsPeer ) {
7128 VOS_TRACE( VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
7129 "%s: " MAC_ADDRESS_STR " (update %d) not exist. return invalid",
7130 __func__, MAC_ADDR_ARRAY(mac), update);
7131 return -EINVAL;
Gopichand Nakkala34d1b062013-03-19 15:28:33 -07007132 }
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007133
7134 /* in add station, we accept existing valid staId if there is */
7135 if ((0 == update) &&
7136 ((pTdlsPeer->link_status >= eTDLS_LINK_CONNECTING) ||
7137 (TDLS_STA_INDEX_VALID(pTdlsPeer->staId))))
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07007138 {
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007139 VOS_TRACE( VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07007140 "%s: " MAC_ADDRESS_STR
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007141 " link_status %d. staId %d. add station ignored.",
7142 __func__, MAC_ADDR_ARRAY(mac), pTdlsPeer->link_status, pTdlsPeer->staId);
7143 return 0;
7144 }
7145 /* in change station, we accept only when staId is valid */
7146 if ((1 == update) &&
7147 ((pTdlsPeer->link_status > eTDLS_LINK_CONNECTING) ||
7148 (!TDLS_STA_INDEX_VALID(pTdlsPeer->staId))))
7149 {
7150 VOS_TRACE( VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
7151 "%s: " MAC_ADDRESS_STR
7152 " link status %d. staId %d. change station %s.",
7153 __func__, MAC_ADDR_ARRAY(mac), pTdlsPeer->link_status, pTdlsPeer->staId,
7154 (TDLS_STA_INDEX_VALID(pTdlsPeer->staId)) ? "ignored" : "declined");
7155 return (TDLS_STA_INDEX_VALID(pTdlsPeer->staId)) ? 0 : -EPERM;
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07007156 }
Gopichand Nakkala34d1b062013-03-19 15:28:33 -07007157
7158 /* when others are on-going, we want to change link_status to idle */
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05307159 if (NULL != wlan_hdd_tdls_is_progress(pHddCtx, mac, TRUE))
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007160 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007161 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7162 "%s: " MAC_ADDRESS_STR
7163 " TDLS setup is ongoing. Request declined.",
7164 __func__, MAC_ADDR_ARRAY(mac));
Gopichand Nakkala05922802013-03-14 12:23:19 -07007165 goto error;
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007166 }
7167
7168 /* first to check if we reached to maximum supported TDLS peer.
7169 TODO: for now, return -EPERM looks working fine,
7170 but need to check if any other errno fit into this category.*/
Rajesh Chauhana34c6e62014-03-25 16:37:58 +05307171 numCurrTdlsPeers = wlan_hdd_tdlsConnectedPeers(pAdapter);
7172 if (HDD_MAX_NUM_TDLS_STA <= numCurrTdlsPeers)
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007173 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007174 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7175 "%s: " MAC_ADDRESS_STR
Rajesh Chauhana34c6e62014-03-25 16:37:58 +05307176 " TDLS Max peer already connected. Request declined."
7177 " Num of peers (%d), Max allowed (%d).",
7178 __func__, MAC_ADDR_ARRAY(mac), numCurrTdlsPeers,
7179 HDD_MAX_NUM_TDLS_STA);
Gopichand Nakkala05922802013-03-14 12:23:19 -07007180 goto error;
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007181 }
7182 else
7183 {
7184 hddTdlsPeer_t *pTdlsPeer;
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05307185 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, mac, TRUE);
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07007186 if (pTdlsPeer && TDLS_IS_CONNECTED(pTdlsPeer))
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007187 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007188 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7189 "%s: " MAC_ADDRESS_STR " already connected. Request declined.",
7190 __func__, MAC_ADDR_ARRAY(mac));
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007191 return -EPERM;
7192 }
7193 }
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07007194 if (0 == update)
Atul Mittal115287b2014-07-08 13:26:33 +05307195 wlan_hdd_tdls_set_link_status(pAdapter,
7196 mac,
7197 eTDLS_LINK_CONNECTING,
7198 eTDLS_LINK_SUCCESS);
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007199
Jeff Johnsond75fe012013-04-06 10:53:06 -07007200 /* debug code */
Gopichand Nakkala838be5d2013-04-10 22:41:51 +05307201 if (NULL != StaParams)
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07007202 {
7203 VOS_TRACE(VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
7204 "%s: TDLS Peer Parameters.", __func__);
Hoonki Lee66b75f32013-04-16 18:30:07 -07007205 if(StaParams->htcap_present)
7206 {
7207 VOS_TRACE(VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
7208 "ht_capa->cap_info: %0x", StaParams->HTCap.capInfo);
7209 VOS_TRACE(VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
7210 "ht_capa->extended_capabilities: %0x",
7211 StaParams->HTCap.extendedHtCapInfo);
7212 }
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07007213 VOS_TRACE(VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
7214 "params->capability: %0x",StaParams->capability);
7215 VOS_TRACE(VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
Jeff Johnson0299d0a2013-10-30 12:37:43 -07007216 "params->ext_capab_len: %0x",StaParams->extn_capability[0]);
Hoonki Lee66b75f32013-04-16 18:30:07 -07007217 if(StaParams->vhtcap_present)
7218 {
7219 VOS_TRACE(VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
7220 "rxMcsMap %x rxHighest %x txMcsMap %x txHighest %x",
7221 StaParams->VHTCap.suppMcs.rxMcsMap, StaParams->VHTCap.suppMcs.rxHighest,
7222 StaParams->VHTCap.suppMcs.txMcsMap, StaParams->VHTCap.suppMcs.txHighest);
7223 }
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07007224 {
7225 int i = 0;
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007226 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO, "Supported rates:");
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07007227 for (i = 0; i < sizeof(StaParams->supported_rates); i++)
7228 VOS_TRACE(VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
7229 "[%d]: %x ", i, StaParams->supported_rates[i]);
7230 }
Jeff Johnsond75fe012013-04-06 10:53:06 -07007231 } /* end debug code */
Gopichand Nakkala838be5d2013-04-10 22:41:51 +05307232 else if ((1 == update) && (NULL == StaParams))
7233 {
7234 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7235 "%s : update is true, but staParams is NULL. Error!", __func__);
7236 return -EPERM;
7237 }
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007238
7239 INIT_COMPLETION(pAdapter->tdls_add_station_comp);
7240
7241 if (!update)
7242 {
7243 status = sme_AddTdlsPeerSta(WLAN_HDD_GET_HAL_CTX(pAdapter),
7244 pAdapter->sessionId, mac);
7245 }
7246 else
7247 {
7248 status = sme_ChangeTdlsPeerSta(WLAN_HDD_GET_HAL_CTX(pAdapter),
7249 pAdapter->sessionId, mac, StaParams);
7250 }
7251
c_hpothu6ff1c3c2013-10-01 19:01:57 +05307252 ret = wait_for_completion_interruptible_timeout(&pAdapter->tdls_add_station_comp,
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007253 msecs_to_jiffies(WAIT_TIME_TDLS_ADD_STA));
7254
c_hpothu6ff1c3c2013-10-01 19:01:57 +05307255 if (ret <= 0)
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007256 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007257 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
c_hpothu6ff1c3c2013-10-01 19:01:57 +05307258 "%s: timeout waiting for tdls add station indication %ld",
7259 __func__, ret);
Gopichand Nakkala34d1b062013-03-19 15:28:33 -07007260 return -EPERM;
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007261 }
c_hpothu6ff1c3c2013-10-01 19:01:57 +05307262
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007263 if ( eHAL_STATUS_SUCCESS != pAdapter->tdlsAddStaStatus)
7264 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007265 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007266 "%s: Add Station is unsucessful", __func__);
Gopichand Nakkala34d1b062013-03-19 15:28:33 -07007267 return -EPERM;
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007268 }
7269
7270 return 0;
Gopichand Nakkala05922802013-03-14 12:23:19 -07007271
7272error:
Atul Mittal115287b2014-07-08 13:26:33 +05307273 wlan_hdd_tdls_set_link_status(pAdapter,
7274 mac,
7275 eTDLS_LINK_IDLE,
7276 eTDLS_LINK_UNSPECIFIED);
Gopichand Nakkala05922802013-03-14 12:23:19 -07007277 return -EPERM;
7278
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007279}
7280#endif
7281
Jeff Johnson295189b2012-06-20 16:38:30 -07007282static int wlan_hdd_change_station(struct wiphy *wiphy,
7283 struct net_device *dev,
7284 u8 *mac,
7285 struct station_parameters *params)
7286{
7287 VOS_STATUS status = VOS_STATUS_SUCCESS;
7288 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
Gopichand Nakkala29149562013-05-10 21:43:41 +05307289 hdd_context_t *pHddCtx;
7290 hdd_station_ctx_t *pHddStaCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -07007291 v_MACADDR_t STAMacAddress;
Gopichand Nakkalab0856222013-03-12 22:39:05 -07007292#ifdef FEATURE_WLAN_TDLS
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007293 tCsrStaParams StaParams = {0};
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007294 tANI_U8 isBufSta = 0;
Naresh Jayaram3180aa42014-02-12 21:47:26 +05307295 tANI_U8 isOffChannelSupported = 0;
Gopichand Nakkalab0856222013-03-12 22:39:05 -07007296#endif
Jeff Johnsone7245742012-09-05 17:12:55 -07007297 ENTER();
7298
Gopichand Nakkala29149562013-05-10 21:43:41 +05307299 if ((NULL == pAdapter))
7300 {
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +05307301 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
Gopichand Nakkala29149562013-05-10 21:43:41 +05307302 "invalid adapter ");
7303 return -EINVAL;
7304 }
7305
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05307306 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
7307 TRACE_CODE_HDD_CHANGE_STATION,
7308 pAdapter->sessionId, params->listen_interval));
Gopichand Nakkala29149562013-05-10 21:43:41 +05307309 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
7310 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
7311
7312 if ((NULL == pHddCtx) || (NULL == pHddStaCtx))
7313 {
7314 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
7315 "invalid HDD state or HDD station context");
7316 return -EINVAL;
7317 }
7318
7319 if (pHddCtx->isLogpInProgress)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07007320 {
7321 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7322 "%s:LOGP in Progress. Ignore!!!", __func__);
7323 return -EAGAIN;
7324 }
7325
Jeff Johnson295189b2012-06-20 16:38:30 -07007326 vos_mem_copy(STAMacAddress.bytes, mac, sizeof(v_MACADDR_t));
7327
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007328 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
7329 || (pAdapter->device_mode == WLAN_HDD_P2P_GO))
Jeff Johnson295189b2012-06-20 16:38:30 -07007330 {
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007331 if (params->sta_flags_set & BIT(NL80211_STA_FLAG_AUTHORIZED))
Jeff Johnson295189b2012-06-20 16:38:30 -07007332 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307333 status = hdd_softap_change_STA_state( pAdapter, &STAMacAddress,
Jeff Johnson295189b2012-06-20 16:38:30 -07007334 WLANTL_STA_AUTHENTICATED);
7335
Gopichand Nakkala29149562013-05-10 21:43:41 +05307336 if (status != VOS_STATUS_SUCCESS)
7337 {
7338 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
7339 "%s: Not able to change TL state to AUTHENTICATED", __func__);
7340 return -EINVAL;
7341 }
Jeff Johnson295189b2012-06-20 16:38:30 -07007342 }
7343 }
Hoonki Leea6d49be2013-04-05 09:43:25 -07007344 else if ((pAdapter->device_mode == WLAN_HDD_INFRA_STATION)
7345 || (pAdapter->device_mode == WLAN_HDD_P2P_CLIENT)) {
Gopichand Nakkala29149562013-05-10 21:43:41 +05307346#ifdef FEATURE_WLAN_TDLS
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07007347 if (params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
7348 StaParams.capability = params->capability;
7349 StaParams.uapsd_queues = params->uapsd_queues;
7350 StaParams.max_sp = params->max_sp;
7351
Naresh Jayaram3180aa42014-02-12 21:47:26 +05307352 /* Convert (first channel , number of channels) tuple to
7353 * the total list of channels. This goes with the assumption
7354 * that if the first channel is < 14, then the next channels
7355 * are an incremental of 1 else an incremental of 4 till the number
7356 * of channels.
7357 */
7358 if (0 != params->supported_channels_len) {
7359 int i = 0,j = 0,k = 0, no_of_channels = 0 ;
7360 for ( i = 0 ; i < params->supported_channels_len ; i+=2)
7361 {
7362 int wifi_chan_index;
7363 StaParams.supported_channels[j] = params->supported_channels[i];
7364 wifi_chan_index =
7365 ((StaParams.supported_channels[j] <= HDD_CHANNEL_14 ) ? 1 : 4 );
7366 no_of_channels = params->supported_channels[i+1];
7367 for(k=1; k <= no_of_channels; k++)
7368 {
7369 StaParams.supported_channels[j+1] =
7370 StaParams.supported_channels[j] + wifi_chan_index;
7371 j+=1;
7372 }
7373 }
7374 StaParams.supported_channels_len = j;
7375 }
7376 vos_mem_copy(StaParams.supported_oper_classes,
7377 params->supported_oper_classes,
7378 params->supported_oper_classes_len);
7379 StaParams.supported_oper_classes_len =
7380 params->supported_oper_classes_len;
7381
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07007382 if (0 != params->ext_capab_len)
7383 vos_mem_copy(StaParams.extn_capability, params->ext_capab,
7384 sizeof(StaParams.extn_capability));
7385
7386 if (NULL != params->ht_capa)
Hoonki Lee66b75f32013-04-16 18:30:07 -07007387 {
7388 StaParams.htcap_present = 1;
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07007389 vos_mem_copy(&StaParams.HTCap, params->ht_capa, sizeof(tSirHTCap));
Hoonki Lee66b75f32013-04-16 18:30:07 -07007390 }
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07007391
7392 StaParams.supported_rates_len = params->supported_rates_len;
7393
7394 /* Note : The Maximum sizeof supported_rates sent by the Supplicant is 32.
7395 * The supported_rates array , for all the structures propogating till Add Sta
7396 * to the firmware has to be modified , if the supplicant (ieee80211) is
7397 * modified to send more rates.
7398 */
7399
7400 /* To avoid Data Currption , set to max length to SIR_MAC_MAX_SUPP_RATES
7401 */
7402 if (StaParams.supported_rates_len > SIR_MAC_MAX_SUPP_RATES)
7403 StaParams.supported_rates_len = SIR_MAC_MAX_SUPP_RATES;
7404
7405 if (0 != StaParams.supported_rates_len) {
7406 int i = 0;
7407 vos_mem_copy(StaParams.supported_rates, params->supported_rates,
7408 StaParams.supported_rates_len);
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007409 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07007410 "Supported Rates with Length %d", StaParams.supported_rates_len);
7411 for (i=0; i < StaParams.supported_rates_len; i++)
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007412 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07007413 "[%d]: %0x", i, StaParams.supported_rates[i]);
7414 }
7415
7416 if (NULL != params->vht_capa)
Hoonki Lee66b75f32013-04-16 18:30:07 -07007417 {
7418 StaParams.vhtcap_present = 1;
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07007419 vos_mem_copy(&StaParams.VHTCap, params->vht_capa, sizeof(tSirVHTCap));
Hoonki Lee66b75f32013-04-16 18:30:07 -07007420 }
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07007421
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007422 if (0 != params->ext_capab_len ) {
7423 /*Define A Macro : TODO Sunil*/
7424 if ((1<<4) & StaParams.extn_capability[3]) {
7425 isBufSta = 1;
7426 }
Naresh Jayaram3180aa42014-02-12 21:47:26 +05307427 /* TDLS Channel Switching Support */
7428 if ((1<<6) & StaParams.extn_capability[3]) {
7429 isOffChannelSupported = 1;
7430 }
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007431 }
Naresh Jayaram3180aa42014-02-12 21:47:26 +05307432 status = wlan_hdd_tdls_set_peer_caps( pAdapter, mac,
7433 &StaParams, isBufSta,
7434 isOffChannelSupported);
7435
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +05307436 if (VOS_STATUS_SUCCESS != status) {
7437 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7438 "%s: wlan_hdd_tdls_set_peer_caps failed!", __func__);
7439 return -EINVAL;
7440 }
Gopichand Nakkala681989c2013-03-06 22:27:48 -08007441 status = wlan_hdd_tdls_add_station(wiphy, dev, mac, 1, &StaParams);
7442
7443 if (VOS_STATUS_SUCCESS != status) {
7444 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7445 "%s: sme_ChangeTdlsPeerSta failed!", __func__);
7446 return -EINVAL;
7447 }
7448 }
Gopichand Nakkalab0856222013-03-12 22:39:05 -07007449#endif
Gopichand Nakkala6239acd2013-06-14 14:48:00 +05307450 }
Jeff Johnsone7245742012-09-05 17:12:55 -07007451 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -07007452 return status;
7453}
7454
7455/*
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +05307456 * FUNCTION: __wlan_hdd_cfg80211_add_key
Jeff Johnson295189b2012-06-20 16:38:30 -07007457 * This function is used to initialize the key information
7458 */
7459#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +05307460static int __wlan_hdd_cfg80211_add_key( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07007461 struct net_device *ndev,
7462 u8 key_index, bool pairwise,
7463 const u8 *mac_addr,
7464 struct key_params *params
7465 )
7466#else
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +05307467static int __wlan_hdd_cfg80211_add_key( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07007468 struct net_device *ndev,
7469 u8 key_index, const u8 *mac_addr,
7470 struct key_params *params
7471 )
7472#endif
7473{
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07007474 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( ndev );
Jeff Johnson295189b2012-06-20 16:38:30 -07007475 tCsrRoamSetKey setKey;
7476 u8 groupmacaddr[WNI_CFG_BSSID_LEN] = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF};
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05307477 int status;
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07007478 v_U32_t roamId= 0xFF;
7479 v_CONTEXT_t pVosContext = (WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
Jeff Johnson295189b2012-06-20 16:38:30 -07007480 hdd_hostapd_state_t *pHostapdState;
7481 VOS_STATUS vos_status;
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07007482 eHalStatus halStatus;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05307483 hdd_context_t *pHddCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -07007484
7485 ENTER();
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +05307486
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05307487 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
7488 TRACE_CODE_HDD_CFG80211_ADD_KEY,
7489 pAdapter->sessionId, params->key_len));
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05307490 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
7491 status = wlan_hdd_validate_context(pHddCtx);
7492
7493 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07007494 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05307495 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7496 "%s: HDD context is not valid", __func__);
7497 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07007498 }
7499
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05307500 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s (%d)",
7501 __func__, hdd_device_modetoString(pAdapter->device_mode),
7502 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07007503
7504 if (CSR_MAX_NUM_KEY <= key_index)
7505 {
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07007506 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid key index %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07007507 key_index);
7508
7509 return -EINVAL;
7510 }
7511
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07007512 if (CSR_MAX_KEY_LEN < params->key_len)
7513 {
7514 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid key length %d", __func__,
7515 params->key_len);
7516
7517 return -EINVAL;
7518 }
7519
7520 hddLog(VOS_TRACE_LEVEL_INFO,
7521 "%s: called with key index = %d & key length %d",
7522 __func__, key_index, params->key_len);
Jeff Johnson295189b2012-06-20 16:38:30 -07007523
7524 /*extract key idx, key len and key*/
7525 vos_mem_zero(&setKey,sizeof(tCsrRoamSetKey));
7526 setKey.keyId = key_index;
7527 setKey.keyLength = params->key_len;
7528 vos_mem_copy(&setKey.Key[0],params->key, params->key_len);
7529
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07007530 switch (params->cipher)
Jeff Johnson295189b2012-06-20 16:38:30 -07007531 {
7532 case WLAN_CIPHER_SUITE_WEP40:
7533 setKey.encType = eCSR_ENCRYPT_TYPE_WEP40_STATICKEY;
7534 break;
7535
7536 case WLAN_CIPHER_SUITE_WEP104:
7537 setKey.encType = eCSR_ENCRYPT_TYPE_WEP104_STATICKEY;
7538 break;
7539
7540 case WLAN_CIPHER_SUITE_TKIP:
7541 {
7542 u8 *pKey = &setKey.Key[0];
7543 setKey.encType = eCSR_ENCRYPT_TYPE_TKIP;
7544
7545 vos_mem_zero(pKey, CSR_MAX_KEY_LEN);
7546
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07007547 /*Supplicant sends the 32bytes key in this order
Jeff Johnson295189b2012-06-20 16:38:30 -07007548
7549 |--------------|----------|----------|
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07007550 | Tk1 |TX-MIC | RX Mic |
Jeff Johnson295189b2012-06-20 16:38:30 -07007551 |--------------|----------|----------|
7552 <---16bytes---><--8bytes--><--8bytes-->
7553
7554 */
7555 /*Sme expects the 32 bytes key to be in the below order
7556
7557 |--------------|----------|----------|
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07007558 | Tk1 |RX-MIC | TX Mic |
Jeff Johnson295189b2012-06-20 16:38:30 -07007559 |--------------|----------|----------|
7560 <---16bytes---><--8bytes--><--8bytes-->
7561 */
7562 /* Copy the Temporal Key 1 (TK1) */
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07007563 vos_mem_copy(pKey, params->key, 16);
Jeff Johnson295189b2012-06-20 16:38:30 -07007564
7565 /*Copy the rx mic first*/
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07007566 vos_mem_copy(&pKey[16], &params->key[24], 8);
Jeff Johnson295189b2012-06-20 16:38:30 -07007567
7568 /*Copy the tx mic */
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07007569 vos_mem_copy(&pKey[24], &params->key[16], 8);
Jeff Johnson295189b2012-06-20 16:38:30 -07007570
7571
7572 break;
7573 }
7574
7575 case WLAN_CIPHER_SUITE_CCMP:
7576 setKey.encType = eCSR_ENCRYPT_TYPE_AES;
7577 break;
7578
7579#ifdef FEATURE_WLAN_WAPI
7580 case WLAN_CIPHER_SUITE_SMS4:
7581 {
7582 vos_mem_zero(&setKey,sizeof(tCsrRoamSetKey));
7583 wlan_hdd_cfg80211_set_key_wapi(pAdapter, key_index, mac_addr,
7584 params->key, params->key_len);
7585 return 0;
7586 }
7587#endif
Chet Lanctot186b5732013-03-18 10:26:30 -07007588
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08007589#ifdef FEATURE_WLAN_ESE
Jeff Johnson295189b2012-06-20 16:38:30 -07007590 case WLAN_CIPHER_SUITE_KRK:
7591 setKey.encType = eCSR_ENCRYPT_TYPE_KRK;
7592 break;
7593#endif
Chet Lanctot186b5732013-03-18 10:26:30 -07007594
7595#ifdef WLAN_FEATURE_11W
7596 case WLAN_CIPHER_SUITE_AES_CMAC:
7597 setKey.encType = eCSR_ENCRYPT_TYPE_AES_CMAC;
Chet Lanctot3b5158a2013-03-31 16:45:21 -07007598 break;
Chet Lanctot186b5732013-03-18 10:26:30 -07007599#endif
7600
Jeff Johnson295189b2012-06-20 16:38:30 -07007601 default:
Jeff Johnson0299d0a2013-10-30 12:37:43 -07007602 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: unsupported cipher type %u",
Jeff Johnson295189b2012-06-20 16:38:30 -07007603 __func__, params->cipher);
7604 return -EOPNOTSUPP;
7605 }
7606
7607 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: encryption type %d",
7608 __func__, setKey.encType);
7609
Shailender Karmuchi642e9812013-05-30 14:34:49 -07007610 if (
Jeff Johnson295189b2012-06-20 16:38:30 -07007611#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
7612 (!pairwise)
7613#else
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07007614 (!mac_addr || is_broadcast_ether_addr(mac_addr))
Jeff Johnson295189b2012-06-20 16:38:30 -07007615#endif
Shailender Karmuchi642e9812013-05-30 14:34:49 -07007616 )
7617 {
7618 /* set group key*/
7619 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
7620 "%s- %d: setting Broadcast key",
7621 __func__, __LINE__);
7622 setKey.keyDirection = eSIR_RX_ONLY;
7623 vos_mem_copy(setKey.peerMac,groupmacaddr,WNI_CFG_BSSID_LEN);
7624 }
7625 else
7626 {
7627 /* set pairwise key*/
7628 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
7629 "%s- %d: setting pairwise key",
7630 __func__, __LINE__);
7631 setKey.keyDirection = eSIR_TX_RX;
7632 vos_mem_copy(setKey.peerMac, mac_addr,WNI_CFG_BSSID_LEN);
7633 }
7634 if ((WLAN_HDD_IBSS == pAdapter->device_mode) && !pairwise)
7635 {
7636 setKey.keyDirection = eSIR_TX_RX;
7637 /*Set the group key*/
7638 status = sme_RoamSetKey( WLAN_HDD_GET_HAL_CTX(pAdapter),
7639 pAdapter->sessionId, &setKey, &roamId );
Jeff Johnson295189b2012-06-20 16:38:30 -07007640
Shailender Karmuchi642e9812013-05-30 14:34:49 -07007641 if ( 0 != status )
7642 {
7643 hddLog(VOS_TRACE_LEVEL_ERROR,
7644 "%s: sme_RoamSetKey failed, returned %d", __func__, status);
7645 return -EINVAL;
7646 }
7647 /*Save the keys here and call sme_RoamSetKey for setting
7648 the PTK after peer joins the IBSS network*/
7649 vos_mem_copy(&pAdapter->sessionCtx.station.ibss_enc_key,
7650 &setKey, sizeof(tCsrRoamSetKey));
7651 return status;
7652 }
Gopichand Nakkala29149562013-05-10 21:43:41 +05307653 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP) ||
7654 (pAdapter->device_mode == WLAN_HDD_P2P_GO))
7655 {
Jeff Johnson295189b2012-06-20 16:38:30 -07007656 pHostapdState = WLAN_HDD_GET_HOSTAP_STATE_PTR(pAdapter);
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07007657 if( pHostapdState->bssState == BSS_START )
7658 {
c_hpothu7c55da62014-01-23 18:34:02 +05307659 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
7660 vos_status = wlan_hdd_check_ula_done(pAdapter);
7661
7662 if ( vos_status != VOS_STATUS_SUCCESS )
7663 {
7664 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7665 "[%4d] wlan_hdd_check_ula_done returned ERROR status= %d",
7666 __LINE__, vos_status );
7667
7668 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_NONE;
7669
7670 return -EINVAL;
7671 }
7672
Jeff Johnson295189b2012-06-20 16:38:30 -07007673 status = WLANSAP_SetKeySta( pVosContext, &setKey);
7674
7675 if ( status != eHAL_STATUS_SUCCESS )
7676 {
7677 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7678 "[%4d] WLANSAP_SetKeySta returned ERROR status= %d",
7679 __LINE__, status );
7680 }
7681 }
7682
7683 /* Saving WEP keys */
7684 else if( eCSR_ENCRYPT_TYPE_WEP40_STATICKEY == setKey.encType ||
7685 eCSR_ENCRYPT_TYPE_WEP104_STATICKEY == setKey.encType )
7686 {
7687 //Save the wep key in ap context. Issue setkey after the BSS is started.
7688 hdd_ap_ctx_t *pAPCtx = WLAN_HDD_GET_AP_CTX_PTR(pAdapter);
7689 vos_mem_copy(&pAPCtx->wepKey[key_index], &setKey, sizeof(tCsrRoamSetKey));
7690 }
7691 else
7692 {
7693 //Save the key in ap context. Issue setkey after the BSS is started.
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07007694 hdd_ap_ctx_t *pAPCtx = WLAN_HDD_GET_AP_CTX_PTR(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07007695 vos_mem_copy(&pAPCtx->groupKey, &setKey, sizeof(tCsrRoamSetKey));
7696 }
7697 }
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07007698 else if ( (pAdapter->device_mode == WLAN_HDD_INFRA_STATION) ||
7699 (pAdapter->device_mode == WLAN_HDD_P2P_CLIENT) )
Jeff Johnson295189b2012-06-20 16:38:30 -07007700 {
7701 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
7702 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
7703
Gopichand Nakkala3d295922013-05-07 16:19:14 +05307704#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
7705 if (!pairwise)
7706#else
7707 if (!mac_addr || is_broadcast_ether_addr(mac_addr))
7708#endif
7709 {
7710 /* set group key*/
7711 if (pHddStaCtx->roam_info.deferKeyComplete)
7712 {
7713 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
7714 "%s- %d: Perform Set key Complete",
7715 __func__, __LINE__);
7716 hdd_PerformRoamSetKeyComplete(pAdapter);
7717 }
7718 }
7719
Jeff Johnson295189b2012-06-20 16:38:30 -07007720 pWextState->roamProfile.Keys.KeyLength[key_index] = (u8)params->key_len;
7721
Venkata Prathyusha Kuntupalliee2ce712013-01-17 14:09:24 -08007722 pWextState->roamProfile.Keys.defaultIndex = key_index;
7723
7724
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07007725 vos_mem_copy(&pWextState->roamProfile.Keys.KeyMaterial[key_index][0],
Jeff Johnson295189b2012-06-20 16:38:30 -07007726 params->key, params->key_len);
7727
Gopichand Nakkala3d295922013-05-07 16:19:14 +05307728
Jeff Johnson295189b2012-06-20 16:38:30 -07007729 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_SETTING_KEY;
7730
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307731 hddLog(VOS_TRACE_LEVEL_INFO_MED,
Jeff Johnson295189b2012-06-20 16:38:30 -07007732 "%s: set key for peerMac %2x:%2x:%2x:%2x:%2x:%2x, direction %d",
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307733 __func__, setKey.peerMac[0], setKey.peerMac[1],
7734 setKey.peerMac[2], setKey.peerMac[3],
7735 setKey.peerMac[4], setKey.peerMac[5],
Jeff Johnson295189b2012-06-20 16:38:30 -07007736 setKey.keyDirection);
7737
7738 vos_status = wlan_hdd_check_ula_done(pAdapter);
7739
7740 if ( vos_status != VOS_STATUS_SUCCESS )
7741 {
7742 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7743 "[%4d] wlan_hdd_check_ula_done returned ERROR status= %d",
7744 __LINE__, vos_status );
7745
7746 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_NONE;
7747
7748 return -EINVAL;
7749
7750 }
7751
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07007752#ifdef WLAN_FEATURE_VOWIFI_11R
Gopichand Nakkala3d295922013-05-07 16:19:14 +05307753 /* The supplicant may attempt to set the PTK once pre-authentication
7754 is done. Save the key in the UMAC and include it in the ADD BSS
7755 request */
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07007756 halStatus = sme_FTUpdateKey( WLAN_HDD_GET_HAL_CTX(pAdapter), &setKey);
Gopichand Nakkala3d295922013-05-07 16:19:14 +05307757 if ( halStatus == eHAL_STATUS_FT_PREAUTH_KEY_SUCCESS )
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07007758 {
Gopichand Nakkala3d295922013-05-07 16:19:14 +05307759 hddLog(VOS_TRACE_LEVEL_INFO_MED,
7760 "%s: Update PreAuth Key success", __func__);
7761 return 0;
7762 }
7763 else if ( halStatus == eHAL_STATUS_FT_PREAUTH_KEY_FAILED )
7764 {
7765 hddLog(VOS_TRACE_LEVEL_ERROR,
7766 "%s: Update PreAuth Key failed", __func__);
Gopichand Nakkalad7d13652013-02-15 01:48:00 +05307767 return -EINVAL;
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07007768 }
7769#endif /* WLAN_FEATURE_VOWIFI_11R */
Jeff Johnson295189b2012-06-20 16:38:30 -07007770
7771 /* issue set key request to SME*/
7772 status = sme_RoamSetKey( WLAN_HDD_GET_HAL_CTX(pAdapter),
7773 pAdapter->sessionId, &setKey, &roamId );
7774
7775 if ( 0 != status )
7776 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307777 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07007778 "%s: sme_RoamSetKey failed, returned %d", __func__, status);
7779 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_NONE;
7780 return -EINVAL;
7781 }
7782
7783
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307784 /* in case of IBSS as there was no information available about WEP keys during
7785 * IBSS join, group key intialized with NULL key, so re-initialize group key
Jeff Johnson295189b2012-06-20 16:38:30 -07007786 * with correct value*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307787 if ( (eCSR_BSS_TYPE_START_IBSS == pWextState->roamProfile.BSSType) &&
7788 !( ( IW_AUTH_KEY_MGMT_802_1X
7789 == (pWextState->authKeyMgmt & IW_AUTH_KEY_MGMT_802_1X))
Jeff Johnson295189b2012-06-20 16:38:30 -07007790 && (eCSR_AUTH_TYPE_OPEN_SYSTEM == pHddStaCtx->conn_info.authType)
7791 )
7792 &&
7793 ( (WLAN_CIPHER_SUITE_WEP40 == params->cipher)
7794 || (WLAN_CIPHER_SUITE_WEP104 == params->cipher)
7795 )
7796 )
7797 {
7798 setKey.keyDirection = eSIR_RX_ONLY;
7799 vos_mem_copy(setKey.peerMac,groupmacaddr,WNI_CFG_BSSID_LEN);
7800
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307801 hddLog(VOS_TRACE_LEVEL_INFO_MED,
Jeff Johnson295189b2012-06-20 16:38:30 -07007802 "%s: set key peerMac %2x:%2x:%2x:%2x:%2x:%2x, direction %d",
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307803 __func__, setKey.peerMac[0], setKey.peerMac[1],
7804 setKey.peerMac[2], setKey.peerMac[3],
7805 setKey.peerMac[4], setKey.peerMac[5],
Jeff Johnson295189b2012-06-20 16:38:30 -07007806 setKey.keyDirection);
7807
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307808 status = sme_RoamSetKey( WLAN_HDD_GET_HAL_CTX(pAdapter),
Jeff Johnson295189b2012-06-20 16:38:30 -07007809 pAdapter->sessionId, &setKey, &roamId );
7810
7811 if ( 0 != status )
7812 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307813 hddLog(VOS_TRACE_LEVEL_ERROR,
7814 "%s: sme_RoamSetKey failed for group key (IBSS), returned %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07007815 __func__, status);
7816 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_NONE;
7817 return -EINVAL;
7818 }
7819 }
7820 }
7821
7822 return 0;
7823}
7824
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +05307825#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
7826static int wlan_hdd_cfg80211_add_key( struct wiphy *wiphy,
7827 struct net_device *ndev,
7828 u8 key_index, bool pairwise,
7829 const u8 *mac_addr,
7830 struct key_params *params
7831 )
7832#else
7833static int wlan_hdd_cfg80211_add_key( struct wiphy *wiphy,
7834 struct net_device *ndev,
7835 u8 key_index, const u8 *mac_addr,
7836 struct key_params *params
7837 )
7838#endif
7839{
7840 int ret;
7841 vos_ssr_protect(__func__);
7842#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
7843 ret = __wlan_hdd_cfg80211_add_key(wiphy, ndev, key_index, pairwise,
7844 mac_addr, params);
7845#else
7846 ret = __wlan_hdd_cfg80211_add_key(wiphy, ndev, key_index, mac_addr,
7847 params);
7848#endif
7849 vos_ssr_unprotect(__func__);
7850
7851 return ret;
7852}
7853
Jeff Johnson295189b2012-06-20 16:38:30 -07007854/*
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +05307855 * FUNCTION: __wlan_hdd_cfg80211_get_key
Jeff Johnson295189b2012-06-20 16:38:30 -07007856 * This function is used to get the key information
7857 */
7858#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +05307859static int __wlan_hdd_cfg80211_get_key(
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307860 struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07007861 struct net_device *ndev,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307862 u8 key_index, bool pairwise,
Jeff Johnson295189b2012-06-20 16:38:30 -07007863 const u8 *mac_addr, void *cookie,
7864 void (*callback)(void *cookie, struct key_params*)
7865 )
7866#else
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +05307867static int __wlan_hdd_cfg80211_get_key(
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307868 struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07007869 struct net_device *ndev,
7870 u8 key_index, const u8 *mac_addr, void *cookie,
7871 void (*callback)(void *cookie, struct key_params*)
7872 )
7873#endif
7874{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307875 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( ndev );
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +05307876 hdd_wext_state_t *pWextState= WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
7877 tCsrRoamProfile *pRoamProfile = &(pWextState->roamProfile);
Jeff Johnson295189b2012-06-20 16:38:30 -07007878 struct key_params params;
7879
7880 ENTER();
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307881
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05307882 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s (%d)",
7883 __func__, hdd_device_modetoString(pAdapter->device_mode),
7884 pAdapter->device_mode);
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +05307885
Jeff Johnson295189b2012-06-20 16:38:30 -07007886 memset(&params, 0, sizeof(params));
7887
7888 if (CSR_MAX_NUM_KEY <= key_index)
7889 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05307890 hddLog(VOS_TRACE_LEVEL_ERROR, FL("invalid key index %d"), key_index);
Jeff Johnson295189b2012-06-20 16:38:30 -07007891 return -EINVAL;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307892 }
Jeff Johnson295189b2012-06-20 16:38:30 -07007893
7894 switch(pRoamProfile->EncryptionType.encryptionType[0])
7895 {
7896 case eCSR_ENCRYPT_TYPE_NONE:
7897 params.cipher = IW_AUTH_CIPHER_NONE;
7898 break;
7899
7900 case eCSR_ENCRYPT_TYPE_WEP40_STATICKEY:
7901 case eCSR_ENCRYPT_TYPE_WEP40:
7902 params.cipher = WLAN_CIPHER_SUITE_WEP40;
7903 break;
7904
7905 case eCSR_ENCRYPT_TYPE_WEP104_STATICKEY:
7906 case eCSR_ENCRYPT_TYPE_WEP104:
7907 params.cipher = WLAN_CIPHER_SUITE_WEP104;
7908 break;
7909
7910 case eCSR_ENCRYPT_TYPE_TKIP:
7911 params.cipher = WLAN_CIPHER_SUITE_TKIP;
7912 break;
7913
7914 case eCSR_ENCRYPT_TYPE_AES:
7915 params.cipher = WLAN_CIPHER_SUITE_AES_CMAC;
7916 break;
7917
7918 default:
7919 params.cipher = IW_AUTH_CIPHER_NONE;
7920 break;
7921 }
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +05307922
c_hpothuaaf19692014-05-17 17:01:48 +05307923 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
7924 TRACE_CODE_HDD_CFG80211_GET_KEY,
7925 pAdapter->sessionId, params.cipher));
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +05307926
Jeff Johnson295189b2012-06-20 16:38:30 -07007927 params.key_len = pRoamProfile->Keys.KeyLength[key_index];
7928 params.seq_len = 0;
7929 params.seq = NULL;
7930 params.key = &pRoamProfile->Keys.KeyMaterial[key_index][0];
7931 callback(cookie, &params);
7932 return 0;
7933}
7934
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +05307935#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
7936static int wlan_hdd_cfg80211_get_key(
7937 struct wiphy *wiphy,
7938 struct net_device *ndev,
7939 u8 key_index, bool pairwise,
7940 const u8 *mac_addr, void *cookie,
7941 void (*callback)(void *cookie, struct key_params*)
7942 )
7943#else
7944static int wlan_hdd_cfg80211_get_key(
7945 struct wiphy *wiphy,
7946 struct net_device *ndev,
7947 u8 key_index, const u8 *mac_addr, void *cookie,
7948 void (*callback)(void *cookie, struct key_params*)
7949 )
7950#endif
7951{
7952 int ret;
7953
7954 vos_ssr_protect(__func__);
7955#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
7956 ret = __wlan_hdd_cfg80211_get_key(wiphy, ndev, key_index, pairwise,
7957 mac_addr, cookie, callback);
7958#else
7959 ret = __wlan_hdd_cfg80211_get_key(wiphy, ndev, key_index, mac_addr,
7960 callback);
7961#endif
7962 vos_ssr_unprotect(__func__);
7963
7964 return ret;
7965}
7966
Jeff Johnson295189b2012-06-20 16:38:30 -07007967/*
7968 * FUNCTION: wlan_hdd_cfg80211_del_key
7969 * This function is used to delete the key information
7970 */
7971#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307972static int wlan_hdd_cfg80211_del_key( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07007973 struct net_device *ndev,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307974 u8 key_index,
7975 bool pairwise,
Jeff Johnson295189b2012-06-20 16:38:30 -07007976 const u8 *mac_addr
7977 )
7978#else
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307979static int wlan_hdd_cfg80211_del_key( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07007980 struct net_device *ndev,
7981 u8 key_index,
7982 const u8 *mac_addr
7983 )
7984#endif
7985{
7986 int status = 0;
7987
7988 //This code needs to be revisited. There is sme_removeKey API, we should
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307989 //plan to use that. After the change to use correct index in setkey,
Jeff Johnson295189b2012-06-20 16:38:30 -07007990 //it is observed that this is invalidating peer
7991 //key index whenever re-key is done. This is affecting data link.
7992 //It should be ok to ignore del_key.
7993#if 0
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307994 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( ndev );
7995 v_CONTEXT_t pVosContext = (WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
Jeff Johnson295189b2012-06-20 16:38:30 -07007996 u8 groupmacaddr[WNI_CFG_BSSID_LEN] = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF};
7997 tCsrRoamSetKey setKey;
7998 v_U32_t roamId= 0xFF;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307999
Jeff Johnson295189b2012-06-20 16:38:30 -07008000 ENTER();
8001
8002 hddLog(VOS_TRACE_LEVEL_INFO_HIGH, "%s: device_mode = %d\n",
8003 __func__,pAdapter->device_mode);
8004
8005 if (CSR_MAX_NUM_KEY <= key_index)
8006 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308007 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid key index %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07008008 key_index);
8009
8010 return -EINVAL;
8011 }
8012
8013 vos_mem_zero(&setKey,sizeof(tCsrRoamSetKey));
8014 setKey.keyId = key_index;
8015
8016 if (mac_addr)
8017 vos_mem_copy(setKey.peerMac, mac_addr,WNI_CFG_BSSID_LEN);
8018 else
8019 vos_mem_copy(setKey.peerMac, groupmacaddr, WNI_CFG_BSSID_LEN);
8020
8021 setKey.encType = eCSR_ENCRYPT_TYPE_NONE;
8022
8023 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -07008024 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308025 )
8026 {
8027
8028 hdd_hostapd_state_t *pHostapdState =
Jeff Johnson295189b2012-06-20 16:38:30 -07008029 WLAN_HDD_GET_HOSTAP_STATE_PTR(pAdapter);
8030 if( pHostapdState->bssState == BSS_START)
8031 {
8032 status = WLANSAP_SetKeySta( pVosContext, &setKey);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308033
Jeff Johnson295189b2012-06-20 16:38:30 -07008034 if ( status != eHAL_STATUS_SUCCESS )
8035 {
8036 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8037 "[%4d] WLANSAP_SetKeySta returned ERROR status= %d",
8038 __LINE__, status );
8039 }
8040 }
8041 }
8042 else if ( (pAdapter->device_mode == WLAN_HDD_INFRA_STATION)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308043 || (pAdapter->device_mode == WLAN_HDD_P2P_CLIENT)
Jeff Johnson295189b2012-06-20 16:38:30 -07008044 )
8045 {
8046 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
8047
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308048 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_SETTING_KEY;
8049
8050 hddLog(VOS_TRACE_LEVEL_INFO_MED,
Jeff Johnson295189b2012-06-20 16:38:30 -07008051 "%s: delete key for peerMac %2x:%2x:%2x:%2x:%2x:%2x",
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308052 __func__, setKey.peerMac[0], setKey.peerMac[1],
8053 setKey.peerMac[2], setKey.peerMac[3],
Jeff Johnson295189b2012-06-20 16:38:30 -07008054 setKey.peerMac[4], setKey.peerMac[5]);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308055 if(pAdapter->sessionCtx.station.conn_info.connState ==
8056 eConnectionState_Associated)
Jeff Johnson295189b2012-06-20 16:38:30 -07008057 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308058 status = sme_RoamSetKey( WLAN_HDD_GET_HAL_CTX(pAdapter),
Jeff Johnson295189b2012-06-20 16:38:30 -07008059 pAdapter->sessionId, &setKey, &roamId );
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308060
Jeff Johnson295189b2012-06-20 16:38:30 -07008061 if ( 0 != status )
8062 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308063 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07008064 "%s: sme_RoamSetKey failure, returned %d",
8065 __func__, status);
8066 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_NONE;
8067 return -EINVAL;
8068 }
8069 }
8070 }
8071#endif
Jeff Johnsone7245742012-09-05 17:12:55 -07008072 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -07008073 return status;
8074}
8075
8076/*
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +05308077 * FUNCTION: __wlan_hdd_cfg80211_set_default_key
Jeff Johnson295189b2012-06-20 16:38:30 -07008078 * This function is used to set the default tx key index
8079 */
8080#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +05308081static int __wlan_hdd_cfg80211_set_default_key( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07008082 struct net_device *ndev,
8083 u8 key_index,
8084 bool unicast, bool multicast)
8085#else
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +05308086static int __wlan_hdd_cfg80211_set_default_key( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07008087 struct net_device *ndev,
8088 u8 key_index)
8089#endif
8090{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308091 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( ndev );
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308092 int status;
Gopichand Nakkala29149562013-05-10 21:43:41 +05308093 hdd_wext_state_t *pWextState;
8094 hdd_station_ctx_t *pHddStaCtx;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308095 hdd_context_t *pHddCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -07008096
8097 ENTER();
8098
Gopichand Nakkala29149562013-05-10 21:43:41 +05308099 if ((NULL == pAdapter))
8100 {
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +05308101 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
Gopichand Nakkala29149562013-05-10 21:43:41 +05308102 "invalid adapter");
8103 return -EINVAL;
8104 }
8105
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05308106 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
8107 TRACE_CODE_HDD_CFG80211_SET_DEFAULT_KEY,
8108 pAdapter->sessionId, key_index));
8109
Gopichand Nakkala29149562013-05-10 21:43:41 +05308110 pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
8111 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
8112
8113 if ((NULL == pWextState) || (NULL == pHddStaCtx))
8114 {
8115 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
8116 "invalid Wext state or HDD context");
8117 return -EINVAL;
8118 }
8119
Arif Hussain6d2a3322013-11-17 19:50:10 -08008120 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %d key_index = %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07008121 __func__,pAdapter->device_mode, key_index);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308122
Jeff Johnson295189b2012-06-20 16:38:30 -07008123 if (CSR_MAX_NUM_KEY <= key_index)
8124 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308125 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid key index %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07008126 key_index);
8127
8128 return -EINVAL;
8129 }
8130
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308131 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
8132 status = wlan_hdd_validate_context(pHddCtx);
8133
8134 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008135 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308136 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8137 "%s: HDD context is not valid", __func__);
8138 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008139 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308140
Jeff Johnson295189b2012-06-20 16:38:30 -07008141 if ((pAdapter->device_mode == WLAN_HDD_INFRA_STATION)
Jeff Johnson295189b2012-06-20 16:38:30 -07008142 || (pAdapter->device_mode == WLAN_HDD_P2P_CLIENT)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308143 )
Jeff Johnson295189b2012-06-20 16:38:30 -07008144 {
Gopichand Nakkala29149562013-05-10 21:43:41 +05308145 if ( (eCSR_ENCRYPT_TYPE_TKIP !=
Arif Hussain6943f522013-11-04 20:10:10 -08008146 pHddStaCtx->conn_info.ucEncryptionType) &&
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308147 (eCSR_ENCRYPT_TYPE_AES !=
Arif Hussain6943f522013-11-04 20:10:10 -08008148 pHddStaCtx->conn_info.ucEncryptionType)
Jeff Johnson295189b2012-06-20 16:38:30 -07008149 )
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308150 {
8151 /* if default key index is not same as previous one,
Jeff Johnson295189b2012-06-20 16:38:30 -07008152 * then update the default key index */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308153
Jeff Johnson295189b2012-06-20 16:38:30 -07008154 tCsrRoamSetKey setKey;
8155 v_U32_t roamId= 0xFF;
8156 tCsrKeys *Keys = &pWextState->roamProfile.Keys;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308157
8158 hddLog(VOS_TRACE_LEVEL_INFO_HIGH, "%s: default tx key index %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07008159 __func__, key_index);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308160
Jeff Johnson295189b2012-06-20 16:38:30 -07008161 Keys->defaultIndex = (u8)key_index;
8162 vos_mem_zero(&setKey,sizeof(tCsrRoamSetKey));
8163 setKey.keyId = key_index;
8164 setKey.keyLength = Keys->KeyLength[key_index];
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308165
8166 vos_mem_copy(&setKey.Key[0],
8167 &Keys->KeyMaterial[key_index][0],
Jeff Johnson295189b2012-06-20 16:38:30 -07008168 Keys->KeyLength[key_index]);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308169
Gopichand Nakkala29149562013-05-10 21:43:41 +05308170 setKey.keyDirection = eSIR_TX_RX;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308171
8172 vos_mem_copy(setKey.peerMac,
Jeff Johnson295189b2012-06-20 16:38:30 -07008173 &pHddStaCtx->conn_info.bssId[0],
8174 WNI_CFG_BSSID_LEN);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308175
Gopichand Nakkala29149562013-05-10 21:43:41 +05308176 if (Keys->KeyLength[key_index] == CSR_WEP40_KEY_LEN &&
8177 pWextState->roamProfile.EncryptionType.encryptionType[0] ==
8178 eCSR_ENCRYPT_TYPE_WEP104)
8179 {
8180 /*In the case of dynamic wep supplicant hardcodes DWEP type to eCSR_ENCRYPT_TYPE_WEP104
8181 even though ap is configured for WEP-40 encryption. In this canse the key length
8182 is 5 but the encryption type is 104 hence checking the key langht(5) and encryption
8183 type(104) and switching encryption type to 40*/
8184 pWextState->roamProfile.EncryptionType.encryptionType[0] =
8185 eCSR_ENCRYPT_TYPE_WEP40;
8186 pWextState->roamProfile.mcEncryptionType.encryptionType[0] =
8187 eCSR_ENCRYPT_TYPE_WEP40;
8188 }
8189
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308190 setKey.encType =
Jeff Johnson295189b2012-06-20 16:38:30 -07008191 pWextState->roamProfile.EncryptionType.encryptionType[0];
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308192
Jeff Johnson295189b2012-06-20 16:38:30 -07008193 /* issue set key request */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308194 status = sme_RoamSetKey( WLAN_HDD_GET_HAL_CTX(pAdapter),
Jeff Johnson295189b2012-06-20 16:38:30 -07008195 pAdapter->sessionId, &setKey, &roamId );
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308196
Jeff Johnson295189b2012-06-20 16:38:30 -07008197 if ( 0 != status )
8198 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308199 hddLog(VOS_TRACE_LEVEL_ERROR,
8200 "%s: sme_RoamSetKey failed, returned %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07008201 status);
8202 return -EINVAL;
8203 }
8204 }
8205 }
8206
8207 /* In SoftAp mode setting key direction for default mode */
8208 else if ( WLAN_HDD_SOFTAP == pAdapter->device_mode )
8209 {
8210 if ( (eCSR_ENCRYPT_TYPE_TKIP !=
8211 pWextState->roamProfile.EncryptionType.encryptionType[0]) &&
8212 (eCSR_ENCRYPT_TYPE_AES !=
8213 pWextState->roamProfile.EncryptionType.encryptionType[0])
8214 )
8215 {
8216 /* Saving key direction for default key index to TX default */
8217 hdd_ap_ctx_t *pAPCtx = WLAN_HDD_GET_AP_CTX_PTR(pAdapter);
8218 pAPCtx->wepKey[key_index].keyDirection = eSIR_TX_DEFAULT;
8219 }
8220 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308221
Jeff Johnson295189b2012-06-20 16:38:30 -07008222 return status;
8223}
8224
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +05308225#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
8226static int wlan_hdd_cfg80211_set_default_key( struct wiphy *wiphy,
8227 struct net_device *ndev,
8228 u8 key_index,
8229 bool unicast, bool multicast)
8230#else
8231static int wlan_hdd_cfg80211_set_default_key( struct wiphy *wiphy,
8232 struct net_device *ndev,
8233 u8 key_index)
8234#endif
8235{
8236 int ret;
8237 vos_ssr_protect(__func__);
8238#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
8239 ret = __wlan_hdd_cfg80211_set_default_key(wiphy, ndev, key_index, unicast,
8240 multicast);
8241#else
8242 ret = __wlan_hdd_cfg80211_set_default_key(wiphy, ndev, key_index);
8243#endif
8244 vos_ssr_unprotect(__func__);
8245
8246 return ret;
8247}
8248
Jeff Johnson295189b2012-06-20 16:38:30 -07008249/*
8250 * FUNCTION: wlan_hdd_cfg80211_inform_bss
8251 * This function is used to inform the BSS details to nl80211 interface.
8252 */
8253static struct cfg80211_bss* wlan_hdd_cfg80211_inform_bss(
8254 hdd_adapter_t *pAdapter, tCsrRoamConnectedProfile *roamProfile)
8255{
8256 struct net_device *dev = pAdapter->dev;
8257 struct wireless_dev *wdev = dev->ieee80211_ptr;
8258 struct wiphy *wiphy = wdev->wiphy;
8259 tSirBssDescription *pBssDesc = roamProfile->pBssDesc;
8260 int chan_no;
8261 int ie_length;
8262 const char *ie;
8263 unsigned int freq;
8264 struct ieee80211_channel *chan;
8265 int rssi = 0;
8266 struct cfg80211_bss *bss = NULL;
8267
8268 ENTER();
8269
8270 if( NULL == pBssDesc )
8271 {
Arif Hussain6d2a3322013-11-17 19:50:10 -08008272 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: pBssDesc is NULL", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07008273 return bss;
8274 }
8275
8276 chan_no = pBssDesc->channelId;
8277 ie_length = GET_IE_LEN_IN_BSS_DESC( pBssDesc->length );
8278 ie = ((ie_length != 0) ? (const char *)&pBssDesc->ieFields: NULL);
8279
8280 if( NULL == ie )
8281 {
Arif Hussain6d2a3322013-11-17 19:50:10 -08008282 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: IE of BSS descriptor is NULL", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07008283 return bss;
8284 }
8285
8286#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,38))
8287 if (chan_no <= ARRAY_SIZE(hdd_channels_2_4_GHZ))
8288 {
8289 freq = ieee80211_channel_to_frequency(chan_no, IEEE80211_BAND_2GHZ);
8290 }
8291 else
8292 {
8293 freq = ieee80211_channel_to_frequency(chan_no, IEEE80211_BAND_5GHZ);
8294 }
8295#else
8296 freq = ieee80211_channel_to_frequency(chan_no);
8297#endif
8298
8299 chan = __ieee80211_get_channel(wiphy, freq);
8300
Santhosh Kumar Padmaa45fdb12014-04-15 15:54:38 +05308301 if (!chan) {
8302 hddLog(VOS_TRACE_LEVEL_ERROR, "%s chan pointer is NULL", __func__);
8303 return NULL;
8304 }
8305
Abhishek Singhaee43942014-06-16 18:55:47 +05308306 rssi = (VOS_MIN ((pBssDesc->rssi + pBssDesc->sinr), 0))*100;
Jeff Johnson295189b2012-06-20 16:38:30 -07008307
Abhishek Singhaee43942014-06-16 18:55:47 +05308308 return cfg80211_inform_bss(wiphy, chan, pBssDesc->bssId,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308309 le64_to_cpu(*(__le64 *)pBssDesc->timeStamp),
Jeff Johnson295189b2012-06-20 16:38:30 -07008310 pBssDesc->capabilityInfo,
8311 pBssDesc->beaconInterval, ie, ie_length,
Abhishek Singhaee43942014-06-16 18:55:47 +05308312 rssi, GFP_KERNEL );
Jeff Johnson295189b2012-06-20 16:38:30 -07008313}
8314
8315
8316
8317/*
8318 * FUNCTION: wlan_hdd_cfg80211_inform_bss_frame
8319 * This function is used to inform the BSS details to nl80211 interface.
8320 */
8321struct cfg80211_bss*
8322wlan_hdd_cfg80211_inform_bss_frame( hdd_adapter_t *pAdapter,
8323 tSirBssDescription *bss_desc
8324 )
8325{
8326 /*
8327 cfg80211_inform_bss() is not updating ie field of bss entry, if entry
8328 already exists in bss data base of cfg80211 for that particular BSS ID.
8329 Using cfg80211_inform_bss_frame to update the bss entry instead of
8330 cfg80211_inform_bss, But this call expects mgmt packet as input. As of
8331 now there is no possibility to get the mgmt(probe response) frame from PE,
8332 converting bss_desc to ieee80211_mgmt(probe response) and passing to
8333 cfg80211_inform_bss_frame.
8334 */
8335 struct net_device *dev = pAdapter->dev;
8336 struct wireless_dev *wdev = dev->ieee80211_ptr;
8337 struct wiphy *wiphy = wdev->wiphy;
8338 int chan_no = bss_desc->channelId;
Madan Mohan Koyyalamudi86f629e2012-11-09 16:27:29 -08008339#ifdef WLAN_ENABLE_AGEIE_ON_SCAN_RESULTS
8340 qcom_ie_age *qie_age = NULL;
8341 int ie_length = GET_IE_LEN_IN_BSS_DESC( bss_desc->length ) + sizeof(qcom_ie_age);
8342#else
Jeff Johnson295189b2012-06-20 16:38:30 -07008343 int ie_length = GET_IE_LEN_IN_BSS_DESC( bss_desc->length );
Madan Mohan Koyyalamudi86f629e2012-11-09 16:27:29 -08008344#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07008345 const char *ie =
8346 ((ie_length != 0) ? (const char *)&bss_desc->ieFields: NULL);
8347 unsigned int freq;
8348 struct ieee80211_channel *chan;
Abhishek Singh1e2bfa32014-01-02 15:44:15 +05308349 struct ieee80211_mgmt *mgmt = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07008350 struct cfg80211_bss *bss_status = NULL;
8351 size_t frame_len = sizeof (struct ieee80211_mgmt) + ie_length;
8352 int rssi = 0;
Wilson Yangf80a0542013-10-07 13:02:37 -07008353 hdd_context_t *pHddCtx;
8354 int status;
Jeff Johnsone7245742012-09-05 17:12:55 -07008355#ifdef WLAN_OPEN_SOURCE
8356 struct timespec ts;
8357#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07008358
Wilson Yangf80a0542013-10-07 13:02:37 -07008359 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
8360 status = wlan_hdd_validate_context(pHddCtx);
8361
8362 /*bss_update is not allowed during wlan driver loading or unloading*/
Mihir Shete18156292014-03-11 15:38:30 +05308363 if (WLAN_HDD_IS_LOAD_UNLOAD_IN_PROGRESS(pHddCtx))
Wilson Yangf80a0542013-10-07 13:02:37 -07008364 {
8365 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8366 "%s:Loading_unloading in Progress. Ignore!!!",__func__);
8367 return NULL;
8368 }
8369
8370
8371 if (0 != status)
8372 {
8373 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8374 "%s: HDD context is not valid", __func__);
Madan Mohan Koyyalamudi2e5c9142012-11-02 13:17:48 -07008375 return NULL;
Wilson Yangf80a0542013-10-07 13:02:37 -07008376 }
8377
Abhishek Singh1e2bfa32014-01-02 15:44:15 +05308378 mgmt = kzalloc((sizeof (struct ieee80211_mgmt) + ie_length), GFP_KERNEL);
Wilson Yangf80a0542013-10-07 13:02:37 -07008379 if (!mgmt)
8380 {
8381 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8382 "%s: memory allocation failed ", __func__);
8383 return NULL;
8384 }
Madan Mohan Koyyalamudi2e5c9142012-11-02 13:17:48 -07008385
Jeff Johnson295189b2012-06-20 16:38:30 -07008386 memcpy(mgmt->bssid, bss_desc->bssId, ETH_ALEN);
Jeff Johnsone7245742012-09-05 17:12:55 -07008387
8388#ifdef WLAN_OPEN_SOURCE
8389 /* Android does not want the timestamp from the frame.
8390 Instead it wants a monotonic increasing value */
8391 get_monotonic_boottime(&ts);
8392 mgmt->u.probe_resp.timestamp =
8393 ((u64)ts.tv_sec * 1000000) + (ts.tv_nsec / 1000);
8394#else
8395 /* keep old behavior for non-open source (for now) */
Jeff Johnson295189b2012-06-20 16:38:30 -07008396 memcpy(&mgmt->u.probe_resp.timestamp, bss_desc->timeStamp,
8397 sizeof (bss_desc->timeStamp));
Jeff Johnsone7245742012-09-05 17:12:55 -07008398
8399#endif
8400
Jeff Johnson295189b2012-06-20 16:38:30 -07008401 mgmt->u.probe_resp.beacon_int = bss_desc->beaconInterval;
8402 mgmt->u.probe_resp.capab_info = bss_desc->capabilityInfo;
Madan Mohan Koyyalamudi86f629e2012-11-09 16:27:29 -08008403
8404#ifdef WLAN_ENABLE_AGEIE_ON_SCAN_RESULTS
8405 /* GPS Requirement: need age ie per entry. Using vendor specific. */
8406 /* Assuming this is the last IE, copy at the end */
8407 ie_length -=sizeof(qcom_ie_age);
8408 qie_age = (qcom_ie_age *)(mgmt->u.probe_resp.variable + ie_length);
8409 qie_age->element_id = QCOM_VENDOR_IE_ID;
8410 qie_age->len = QCOM_VENDOR_IE_AGE_LEN;
8411 qie_age->oui_1 = QCOM_OUI1;
8412 qie_age->oui_2 = QCOM_OUI2;
8413 qie_age->oui_3 = QCOM_OUI3;
8414 qie_age->type = QCOM_VENDOR_IE_AGE_TYPE;
8415 qie_age->age = vos_timer_get_system_ticks() - bss_desc->nReceivedTime;
8416#endif
8417
Jeff Johnson295189b2012-06-20 16:38:30 -07008418 memcpy(mgmt->u.probe_resp.variable, ie, ie_length);
Gopichand Nakkalad908ec82013-05-16 19:32:19 +05308419 if (bss_desc->fProbeRsp)
8420 {
8421 mgmt->frame_control |=
8422 (u16)(IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_PROBE_RESP);
8423 }
8424 else
8425 {
8426 mgmt->frame_control |=
8427 (u16)(IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_BEACON);
8428 }
Jeff Johnson295189b2012-06-20 16:38:30 -07008429
8430#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,38))
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308431 if (chan_no <= ARRAY_SIZE(hdd_channels_2_4_GHZ) &&
Jeff Johnson295189b2012-06-20 16:38:30 -07008432 (wiphy->bands[IEEE80211_BAND_2GHZ] != NULL))
8433 {
8434 freq = ieee80211_channel_to_frequency(chan_no, IEEE80211_BAND_2GHZ);
8435 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308436 else if ((chan_no > ARRAY_SIZE(hdd_channels_2_4_GHZ)) &&
Jeff Johnson295189b2012-06-20 16:38:30 -07008437 (wiphy->bands[IEEE80211_BAND_5GHZ] != NULL))
8438
8439 {
8440 freq = ieee80211_channel_to_frequency(chan_no, IEEE80211_BAND_5GHZ);
8441 }
8442 else
8443 {
Nirav Shah20ac06f2013-12-12 18:14:06 +05308444 hddLog(VOS_TRACE_LEVEL_ERROR, "%s Invalid chan_no:%d",
8445 __func__, chan_no);
Jeff Johnson295189b2012-06-20 16:38:30 -07008446 kfree(mgmt);
8447 return NULL;
8448 }
8449#else
8450 freq = ieee80211_channel_to_frequency(chan_no);
8451#endif
8452 chan = __ieee80211_get_channel(wiphy, freq);
Leela V Kiran Kumar Reddy90032de2013-01-24 18:33:30 -08008453 /*when the band is changed on the fly using the GUI, three things are done
8454 * 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)
8455 * as part of the scan abort, message willbe queued to PE and we proceed with flushing and changinh the band.
8456 * pe will stop the scanning further and report back the results what ever it had till now by calling the call back function.
8457 * if the time between update band and scandone call back is sufficent enough the band change reflects in SME, SME validates the channels
8458 * and discards the channels correponding to previous band and calls back with zero bss results.
8459 * 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
8460 * all the channels correponding to previous band.this is due to race condition.but those channels are invalid to the new band and so
8461 * this function __ieee80211_get_channel will return NULL.Each time we report scan result with this pointer null warning kernel trace is printed.
8462 * if the scan results contain large number of APs continuosly kernel warning trace is printed and it will lead to apps watch dog bark.
8463 * So drop the bss and continue to next bss.
8464 */
8465 if(chan == NULL)
8466 {
Nirav Shah20ac06f2013-12-12 18:14:06 +05308467 hddLog(VOS_TRACE_LEVEL_ERROR, "%s chan pointer is NULL", __func__);
Chilam Ngc4244af2013-04-01 15:37:32 -07008468 kfree(mgmt);
Leela V Kiran Kumar Reddy90032de2013-01-24 18:33:30 -08008469 return NULL;
8470 }
Jeff Johnson295189b2012-06-20 16:38:30 -07008471 /*To keep the rssi icon of the connected AP in the scan window
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308472 *and the rssi icon of the wireless networks in sync
Jeff Johnson295189b2012-06-20 16:38:30 -07008473 * */
8474 if (( eConnectionState_Associated ==
8475 pAdapter->sessionCtx.station.conn_info.connState ) &&
8476 ( VOS_TRUE == vos_mem_compare(bss_desc->bssId,
8477 pAdapter->sessionCtx.station.conn_info.bssId,
8478 WNI_CFG_BSSID_LEN)))
8479 {
8480 /* supplicant takes the signal strength in terms of mBm(100*dBm) */
8481 rssi = (pAdapter->rssi * 100);
8482 }
8483 else
8484 {
8485 rssi = (VOS_MIN ((bss_desc->rssi + bss_desc->sinr), 0))*100;
8486 }
8487
Nirav Shah20ac06f2013-12-12 18:14:06 +05308488 hddLog(VOS_TRACE_LEVEL_INFO, "%s: BSSID:" MAC_ADDRESS_STR " Channel:%d"
8489 "RSSI:%d", __func__, MAC_ADDR_ARRAY(mgmt->bssid),
8490 chan->center_freq, (int)(rssi/100));
8491
Jeff Johnson295189b2012-06-20 16:38:30 -07008492 bss_status = cfg80211_inform_bss_frame(wiphy, chan, mgmt,
8493 frame_len, rssi, GFP_KERNEL);
8494 kfree(mgmt);
8495 return bss_status;
8496}
8497
8498/*
8499 * FUNCTION: wlan_hdd_cfg80211_update_bss_db
8500 * This function is used to update the BSS data base of CFG8011
8501 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308502struct cfg80211_bss* wlan_hdd_cfg80211_update_bss_db( hdd_adapter_t *pAdapter,
Jeff Johnson295189b2012-06-20 16:38:30 -07008503 tCsrRoamInfo *pRoamInfo
8504 )
8505{
8506 tCsrRoamConnectedProfile roamProfile;
8507 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
8508 struct cfg80211_bss *bss = NULL;
8509
8510 ENTER();
8511
8512 memset(&roamProfile, 0, sizeof(tCsrRoamConnectedProfile));
8513 sme_RoamGetConnectProfile(hHal, pAdapter->sessionId, &roamProfile);
8514
8515 if (NULL != roamProfile.pBssDesc)
8516 {
Girish Gowlif4b68022014-08-28 23:18:57 +05308517 bss = wlan_hdd_cfg80211_inform_bss_frame(pAdapter,
8518 roamProfile.pBssDesc);
Jeff Johnson295189b2012-06-20 16:38:30 -07008519
8520 if (NULL == bss)
8521 {
8522 hddLog(VOS_TRACE_LEVEL_INFO, "%s: cfg80211_inform_bss return NULL",
8523 __func__);
8524 }
8525
8526 sme_RoamFreeConnectProfile(hHal, &roamProfile);
8527 }
8528 else
8529 {
8530 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: roamProfile.pBssDesc is NULL",
8531 __func__);
8532 }
8533 return bss;
8534}
8535
8536/*
8537 * FUNCTION: wlan_hdd_cfg80211_update_bss
8538 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308539static int wlan_hdd_cfg80211_update_bss( struct wiphy *wiphy,
8540 hdd_adapter_t *pAdapter
Jeff Johnson295189b2012-06-20 16:38:30 -07008541 )
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308542{
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +05308543 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07008544 tCsrScanResultInfo *pScanResult;
8545 eHalStatus status = 0;
8546 tScanResultHandle pResult;
8547 struct cfg80211_bss *bss_status = NULL;
Wilson Yangf80a0542013-10-07 13:02:37 -07008548 hdd_context_t *pHddCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -07008549
8550 ENTER();
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +05308551
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05308552 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
8553 TRACE_CODE_HDD_CFG80211_UPDATE_BSS,
8554 NO_SESSION, pAdapter->sessionId));
8555
Wilson Yangf80a0542013-10-07 13:02:37 -07008556 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
8557
8558 if (pHddCtx->isLogpInProgress)
Jeff Johnson295189b2012-06-20 16:38:30 -07008559 {
Wilson Yangf80a0542013-10-07 13:02:37 -07008560 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
8561 "%s:LOGP in Progress. Ignore!!!",__func__);
8562 return -EAGAIN;
Jeff Johnson295189b2012-06-20 16:38:30 -07008563 }
8564
Wilson Yangf80a0542013-10-07 13:02:37 -07008565
8566 /*bss_update is not allowed during wlan driver loading or unloading*/
Mihir Shete18156292014-03-11 15:38:30 +05308567 if (WLAN_HDD_IS_LOAD_UNLOAD_IN_PROGRESS(pHddCtx))
Wilson Yangf80a0542013-10-07 13:02:37 -07008568 {
8569 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8570 "%s:Loading_unloading in Progress. Ignore!!!",__func__);
8571 return VOS_STATUS_E_PERM;
8572 }
8573
8574
Jeff Johnson295189b2012-06-20 16:38:30 -07008575 /*
8576 * start getting scan results and populate cgf80211 BSS database
8577 */
8578 status = sme_ScanGetResult(hHal, pAdapter->sessionId, NULL, &pResult);
8579
8580 /* no scan results */
8581 if (NULL == pResult)
8582 {
Nirav Shah20ac06f2013-12-12 18:14:06 +05308583 hddLog(VOS_TRACE_LEVEL_INFO, "%s: No scan result Status %d",
8584 __func__, status);
Jeff Johnson295189b2012-06-20 16:38:30 -07008585 return status;
8586 }
8587
8588 pScanResult = sme_ScanResultGetFirst(hHal, pResult);
8589
8590 while (pScanResult)
8591 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308592 /*
8593 * cfg80211_inform_bss() is not updating ie field of bss entry, if
8594 * entry already exists in bss data base of cfg80211 for that
8595 * particular BSS ID. Using cfg80211_inform_bss_frame to update the
8596 * bss entry instead of cfg80211_inform_bss, But this call expects
8597 * mgmt packet as input. As of now there is no possibility to get
8598 * the mgmt(probe response) frame from PE, converting bss_desc to
Jeff Johnson295189b2012-06-20 16:38:30 -07008599 * ieee80211_mgmt(probe response) and passing to c
8600 * fg80211_inform_bss_frame.
8601 * */
8602
8603 bss_status = wlan_hdd_cfg80211_inform_bss_frame(pAdapter,
8604 &pScanResult->BssDescriptor);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308605
Jeff Johnson295189b2012-06-20 16:38:30 -07008606
8607 if (NULL == bss_status)
8608 {
8609 hddLog(VOS_TRACE_LEVEL_INFO,
Arif Hussain6d2a3322013-11-17 19:50:10 -08008610 "%s: NULL returned by cfg80211_inform_bss", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07008611 }
8612 else
8613 {
Yue Maf49ba872013-08-19 12:04:25 -07008614 cfg80211_put_bss(
8615#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,9,0))
8616 wiphy,
8617#endif
8618 bss_status);
Jeff Johnson295189b2012-06-20 16:38:30 -07008619 }
8620
8621 pScanResult = sme_ScanResultGetNext(hHal, pResult);
8622 }
8623
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308624 sme_ScanResultPurge(hHal, pResult);
Jeff Johnson295189b2012-06-20 16:38:30 -07008625
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308626 return 0;
Jeff Johnson295189b2012-06-20 16:38:30 -07008627}
8628
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008629void
8630hddPrintMacAddr(tCsrBssid macAddr, tANI_U8 logLevel)
8631{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308632 VOS_TRACE(VOS_MODULE_ID_HDD, logLevel,
Arif Hussaina7c8e412013-11-20 11:06:42 -08008633 MAC_ADDRESS_STR, MAC_ADDR_ARRAY(macAddr));
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008634} /****** end hddPrintMacAddr() ******/
8635
8636void
Madan Mohan Koyyalamudic75be962012-10-18 19:19:03 -07008637hddPrintPmkId(tANI_U8 *pmkId, tANI_U8 logLevel)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008638{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308639 VOS_TRACE(VOS_MODULE_ID_HDD, logLevel,
Arif Hussain6d2a3322013-11-17 19:50:10 -08008640 "%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X",
Madan Mohan Koyyalamudic75be962012-10-18 19:19:03 -07008641 pmkId[0], pmkId[1], pmkId[2], pmkId[3], pmkId[4],
8642 pmkId[5], pmkId[6], pmkId[7], pmkId[8], pmkId[9], pmkId[10],
8643 pmkId[11], pmkId[12], pmkId[13], pmkId[14], pmkId[15]);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008644} /****** end hddPrintPmkId() ******/
8645
8646//hddPrintMacAddr(tCsrBssid macAddr, tANI_U8 logLevel);
8647//hddPrintMacAddr(macAddr, VOS_TRACE_LEVEL_FATAL);
8648
8649//void sirDumpBuf(tpAniSirGlobal pMac, tANI_U8 modId, tANI_U32 level, tANI_U8 *buf, tANI_U32 size);
8650//sirDumpBuf(pMac, VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL, pmkid, 16);
8651
8652#define dump_bssid(bssid) \
8653 { \
Jeff Johnsone7245742012-09-05 17:12:55 -07008654 hddLog(VOS_TRACE_LEVEL_INFO, "BSSID (MAC) address:\t"); \
8655 hddPrintMacAddr(bssid, VOS_TRACE_LEVEL_INFO);\
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008656 }
8657
8658#define dump_pmkid(pMac, pmkid) \
8659 { \
Jeff Johnsone7245742012-09-05 17:12:55 -07008660 hddLog(VOS_TRACE_LEVEL_INFO, "PMKSA-ID:\t"); \
8661 hddPrintPmkId(pmkid, VOS_TRACE_LEVEL_INFO);\
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008662 }
8663
Madan Mohan Koyyalamudi1b4afb02012-10-22 15:25:16 -07008664#if defined(FEATURE_WLAN_LFR) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008665/*
8666 * FUNCTION: wlan_hdd_cfg80211_pmksa_candidate_notify
8667 * This function is used to notify the supplicant of a new PMKSA candidate.
8668 */
8669int wlan_hdd_cfg80211_pmksa_candidate_notify(
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308670 hdd_adapter_t *pAdapter, tCsrRoamInfo *pRoamInfo,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008671 int index, bool preauth )
8672{
Jeff Johnsone7245742012-09-05 17:12:55 -07008673#ifdef FEATURE_WLAN_OKC
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008674 struct net_device *dev = pAdapter->dev;
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07008675 hdd_context_t *pHddCtx = (hdd_context_t*)pAdapter->pHddCtx;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008676
8677 ENTER();
Jeff Johnsone7245742012-09-05 17:12:55 -07008678 hddLog(VOS_TRACE_LEVEL_INFO, "%s is going to notify supplicant of:", __func__);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008679
8680 if( NULL == pRoamInfo )
8681 {
Arif Hussain6d2a3322013-11-17 19:50:10 -08008682 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: pRoamInfo is NULL", __func__);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008683 return -EINVAL;
8684 }
8685
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07008686 if (eANI_BOOLEAN_TRUE == hdd_is_okc_mode_enabled(pHddCtx))
8687 {
8688 dump_bssid(pRoamInfo->bssid);
8689 cfg80211_pmksa_candidate_notify(dev, index,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008690 pRoamInfo->bssid, preauth, GFP_KERNEL);
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07008691 }
Jeff Johnsone7245742012-09-05 17:12:55 -07008692#endif /* FEATURE_WLAN_OKC */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308693 return 0;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008694}
8695#endif //FEATURE_WLAN_LFR
8696
Yue Maef608272013-04-08 23:09:17 -07008697#ifdef FEATURE_WLAN_LFR_METRICS
8698/*
8699 * FUNCTION: wlan_hdd_cfg80211_roam_metrics_preauth
8700 * 802.11r/LFR metrics reporting function to report preauth initiation
8701 *
8702 */
8703#define MAX_LFR_METRICS_EVENT_LENGTH 100
8704VOS_STATUS wlan_hdd_cfg80211_roam_metrics_preauth(hdd_adapter_t *pAdapter,
8705 tCsrRoamInfo *pRoamInfo)
8706{
8707 unsigned char metrics_notification[MAX_LFR_METRICS_EVENT_LENGTH + 1];
8708 union iwreq_data wrqu;
8709
8710 ENTER();
8711
8712 if (NULL == pAdapter)
8713 {
8714 hddLog(LOGE, "%s: pAdapter is NULL!", __func__);
8715 return VOS_STATUS_E_FAILURE;
8716 }
8717
8718 /* create the event */
8719 memset(&wrqu, 0, sizeof(wrqu));
8720 memset(metrics_notification, 0, sizeof(metrics_notification));
8721
8722 wrqu.data.pointer = metrics_notification;
8723 wrqu.data.length = scnprintf(metrics_notification,
8724 sizeof(metrics_notification), "QCOM: LFR_PREAUTH_INIT "
8725 MAC_ADDRESS_STR, MAC_ADDR_ARRAY(pRoamInfo->bssid));
8726
8727 wireless_send_event(pAdapter->dev, IWEVCUSTOM, &wrqu, metrics_notification);
8728
8729 EXIT();
8730
8731 return VOS_STATUS_SUCCESS;
8732}
8733
8734/*
8735 * FUNCTION: wlan_hdd_cfg80211_roam_metrics_preauth_status
8736 * 802.11r/LFR metrics reporting function to report preauth completion
8737 * or failure
8738 */
8739VOS_STATUS wlan_hdd_cfg80211_roam_metrics_preauth_status(
8740 hdd_adapter_t *pAdapter, tCsrRoamInfo *pRoamInfo, bool preauth_status)
8741{
8742 unsigned char metrics_notification[MAX_LFR_METRICS_EVENT_LENGTH + 1];
8743 union iwreq_data wrqu;
8744
8745 ENTER();
8746
8747 if (NULL == pAdapter)
8748 {
8749 hddLog(LOGE, "%s: pAdapter is NULL!", __func__);
8750 return VOS_STATUS_E_FAILURE;
8751 }
8752
8753 /* create the event */
8754 memset(&wrqu, 0, sizeof(wrqu));
8755 memset(metrics_notification, 0, sizeof(metrics_notification));
8756
8757 scnprintf(metrics_notification, sizeof(metrics_notification),
8758 "QCOM: LFR_PREAUTH_STATUS "MAC_ADDRESS_STR,
8759 MAC_ADDR_ARRAY(pRoamInfo->bssid));
8760
8761 if (1 == preauth_status)
8762 strncat(metrics_notification, " TRUE", 5);
8763 else
8764 strncat(metrics_notification, " FALSE", 6);
8765
8766 wrqu.data.pointer = metrics_notification;
8767 wrqu.data.length = strlen(metrics_notification);
8768
8769 wireless_send_event(pAdapter->dev, IWEVCUSTOM, &wrqu, metrics_notification);
8770
8771 EXIT();
8772
8773 return VOS_STATUS_SUCCESS;
8774}
8775
8776/*
8777 * FUNCTION: wlan_hdd_cfg80211_roam_metrics_handover
8778 * 802.11r/LFR metrics reporting function to report handover initiation
8779 *
8780 */
8781VOS_STATUS wlan_hdd_cfg80211_roam_metrics_handover(hdd_adapter_t * pAdapter,
8782 tCsrRoamInfo *pRoamInfo)
8783{
8784 unsigned char metrics_notification[MAX_LFR_METRICS_EVENT_LENGTH + 1];
8785 union iwreq_data wrqu;
8786
8787 ENTER();
8788
8789 if (NULL == pAdapter)
8790 {
8791 hddLog(LOGE, "%s: pAdapter is NULL!", __func__);
8792 return VOS_STATUS_E_FAILURE;
8793 }
8794
8795 /* create the event */
8796 memset(&wrqu, 0, sizeof(wrqu));
8797 memset(metrics_notification, 0, sizeof(metrics_notification));
8798
8799 wrqu.data.pointer = metrics_notification;
8800 wrqu.data.length = scnprintf(metrics_notification,
8801 sizeof(metrics_notification), "QCOM: LFR_PREAUTH_HANDOVER "
8802 MAC_ADDRESS_STR, MAC_ADDR_ARRAY(pRoamInfo->bssid));
8803
8804 wireless_send_event(pAdapter->dev, IWEVCUSTOM, &wrqu, metrics_notification);
8805
8806 EXIT();
8807
8808 return VOS_STATUS_SUCCESS;
8809}
8810#endif
8811
Jeff Johnson295189b2012-06-20 16:38:30 -07008812/*
8813 * FUNCTION: hdd_cfg80211_scan_done_callback
8814 * scanning callback function, called after finishing scan
8815 *
8816 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308817static eHalStatus hdd_cfg80211_scan_done_callback(tHalHandle halHandle,
Jeff Johnson295189b2012-06-20 16:38:30 -07008818 void *pContext, tANI_U32 scanId, eCsrScanStatus status)
8819{
8820 struct net_device *dev = (struct net_device *) pContext;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308821 //struct wireless_dev *wdev = dev->ieee80211_ptr;
Jeff Johnson295189b2012-06-20 16:38:30 -07008822 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07008823 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
8824 hdd_scaninfo_t *pScanInfo = &pHddCtx->scan_info;
Jeff Johnson295189b2012-06-20 16:38:30 -07008825 struct cfg80211_scan_request *req = NULL;
8826 int ret = 0;
Mahesh A Saptasagar05a357e2014-02-26 16:28:06 +05308827 bool aborted = false;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05308828 long waitRet = 0;
Jeff Johnson295189b2012-06-20 16:38:30 -07008829
8830 ENTER();
8831
8832 hddLog(VOS_TRACE_LEVEL_INFO,
8833 "%s called with halHandle = %p, pContext = %p,"
Arif Hussain6d2a3322013-11-17 19:50:10 -08008834 "scanID = %d, returned status = %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07008835 __func__, halHandle, pContext, (int) scanId, (int) status);
8836
Kiet Lamac06e2c2013-10-23 16:25:07 +05308837 pScanInfo->mScanPendingCounter = 0;
8838
Jeff Johnson295189b2012-06-20 16:38:30 -07008839 //Block on scan req completion variable. Can't wait forever though.
c_hpothu6ff1c3c2013-10-01 19:01:57 +05308840 waitRet = wait_for_completion_interruptible_timeout(
Jeff Johnson295189b2012-06-20 16:38:30 -07008841 &pScanInfo->scan_req_completion_event,
8842 msecs_to_jiffies(WLAN_WAIT_TIME_SCAN_REQ));
c_hpothu6ff1c3c2013-10-01 19:01:57 +05308843 if (waitRet <= 0)
Jeff Johnson295189b2012-06-20 16:38:30 -07008844 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05308845 hddLog(VOS_TRACE_LEVEL_ERROR,
8846 "%s wait on scan_req_completion_event failed %ld",__func__, waitRet);
Jeff Johnson295189b2012-06-20 16:38:30 -07008847 VOS_ASSERT(pScanInfo->mScanPending);
Jeff Johnsone7245742012-09-05 17:12:55 -07008848 goto allow_suspend;
Jeff Johnson295189b2012-06-20 16:38:30 -07008849 }
8850
Yue Maef608272013-04-08 23:09:17 -07008851 if (pScanInfo->mScanPending != VOS_TRUE)
Jeff Johnson295189b2012-06-20 16:38:30 -07008852 {
8853 VOS_ASSERT(pScanInfo->mScanPending);
Jeff Johnsone7245742012-09-05 17:12:55 -07008854 goto allow_suspend;
Jeff Johnson295189b2012-06-20 16:38:30 -07008855 }
8856
8857 /* Check the scanId */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308858 if (pScanInfo->scanId != scanId)
Jeff Johnson295189b2012-06-20 16:38:30 -07008859 {
8860 hddLog(VOS_TRACE_LEVEL_INFO,
8861 "%s called with mismatched scanId pScanInfo->scanId = %d "
Arif Hussain6d2a3322013-11-17 19:50:10 -08008862 "scanId = %d", __func__, (int) pScanInfo->scanId,
Jeff Johnson295189b2012-06-20 16:38:30 -07008863 (int) scanId);
8864 }
8865
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308866 ret = wlan_hdd_cfg80211_update_bss((WLAN_HDD_GET_CTX(pAdapter))->wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07008867 pAdapter);
8868
8869 if (0 > ret)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308870 hddLog(VOS_TRACE_LEVEL_INFO, "%s: NO SCAN result", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07008871
8872
8873 /* If any client wait scan result through WEXT
8874 * send scan done event to client */
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07008875 if (pHddCtx->scan_info.waitScanResult)
Jeff Johnson295189b2012-06-20 16:38:30 -07008876 {
8877 /* The other scan request waiting for current scan finish
8878 * Send event to notify current scan finished */
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07008879 if(WEXT_SCAN_PENDING_DELAY == pHddCtx->scan_info.scan_pending_option)
Jeff Johnson295189b2012-06-20 16:38:30 -07008880 {
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07008881 vos_event_set(&pHddCtx->scan_info.scan_finished_event);
Jeff Johnson295189b2012-06-20 16:38:30 -07008882 }
8883 /* Send notify to WEXT client */
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07008884 else if(WEXT_SCAN_PENDING_PIGGYBACK == pHddCtx->scan_info.scan_pending_option)
Jeff Johnson295189b2012-06-20 16:38:30 -07008885 {
8886 struct net_device *dev = pAdapter->dev;
8887 union iwreq_data wrqu;
8888 int we_event;
8889 char *msg;
8890
8891 memset(&wrqu, '\0', sizeof(wrqu));
8892 we_event = SIOCGIWSCAN;
8893 msg = NULL;
8894 wireless_send_event(dev, we_event, &wrqu, msg);
8895 }
8896 }
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07008897 pHddCtx->scan_info.waitScanResult = FALSE;
Jeff Johnson295189b2012-06-20 16:38:30 -07008898
8899 /* Get the Scan Req */
8900 req = pAdapter->request;
8901
8902 if (!req)
8903 {
Arif Hussain6d2a3322013-11-17 19:50:10 -08008904 hddLog(VOS_TRACE_LEVEL_ERROR, "request is became NULL");
Madan Mohan Koyyalamudi9f5a10c2012-09-28 14:46:16 -07008905 pScanInfo->mScanPending = VOS_FALSE;
Jeff Johnsone7245742012-09-05 17:12:55 -07008906 goto allow_suspend;
Jeff Johnson295189b2012-06-20 16:38:30 -07008907 }
8908
8909 /*
8910 * setting up 0, just in case.
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308911 */
Jeff Johnson295189b2012-06-20 16:38:30 -07008912 req->n_ssids = 0;
8913 req->n_channels = 0;
8914 req->ie = 0;
8915
Jeff Johnson295189b2012-06-20 16:38:30 -07008916 pAdapter->request = NULL;
Jeff Johnsone7245742012-09-05 17:12:55 -07008917 /* Scan is no longer pending */
8918 pScanInfo->mScanPending = VOS_FALSE;
Jeff Johnson295189b2012-06-20 16:38:30 -07008919
Madan Mohan Koyyalamudib764bf82012-10-11 16:38:51 -07008920 /*
8921 * cfg80211_scan_done informing NL80211 about completion
8922 * of scanning
8923 */
Mahesh A Saptasagar05a357e2014-02-26 16:28:06 +05308924 if (status == eCSR_SCAN_ABORT || status == eCSR_SCAN_FAILURE)
8925 {
8926 aborted = true;
8927 }
8928 cfg80211_scan_done(req, aborted);
Madan Mohan Koyyalamudif4e81002012-11-13 10:46:38 -08008929 complete(&pScanInfo->abortscan_event_var);
Jeff Johnson295189b2012-06-20 16:38:30 -07008930
Jeff Johnsone7245742012-09-05 17:12:55 -07008931allow_suspend:
Madan Mohan Koyyalamudi9f5a10c2012-09-28 14:46:16 -07008932 /* release the wake lock at the end of the scan*/
8933 hdd_allow_suspend();
Jeff Johnsone7245742012-09-05 17:12:55 -07008934
Madan Mohan Koyyalamudi10d83a92012-09-28 15:47:05 -07008935 /* Acquire wakelock to handle the case where APP's tries to suspend
8936 * immediatly after the driver gets connect request(i.e after scan)
8937 * from supplicant, this result in app's is suspending and not able
8938 * to process the connect request to AP */
Mahesh A Saptasagarb9c50402014-01-16 15:49:22 +05308939 hdd_prevent_suspend_timeout(1000);
Madan Mohan Koyyalamudi10d83a92012-09-28 15:47:05 -07008940
Gopichand Nakkala638ebc72013-03-21 18:04:02 -07008941#ifdef FEATURE_WLAN_TDLS
c_hpothu3c8f8e82014-06-02 18:01:50 +05308942 if (!(eTDLS_SUPPORT_NOT_ENABLED == pHddCtx->tdls_mode))
8943 {
8944 wlan_hdd_tdls_scan_done_callback(pAdapter);
8945 }
Gopichand Nakkala638ebc72013-03-21 18:04:02 -07008946#endif
8947
Jeff Johnson295189b2012-06-20 16:38:30 -07008948 EXIT();
8949 return 0;
8950}
8951
8952/*
Rashmi Ramannab1429032014-04-26 14:59:09 +05308953 * FUNCTION: hdd_isConnectionInProgress
8954 * Go through each adapter and check if Connection is in progress
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08008955 *
8956 */
Ganesh Kondabattiniaeb7b772014-08-11 20:00:36 +05308957v_BOOL_t hdd_isConnectionInProgress( hdd_context_t *pHddCtx, v_BOOL_t isRoC )
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08008958{
8959 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
8960 hdd_station_ctx_t *pHddStaCtx = NULL;
8961 hdd_adapter_t *pAdapter = NULL;
8962 VOS_STATUS status = 0;
8963 v_U8_t staId = 0;
8964 v_U8_t *staMac = NULL;
8965
c_hpothu9b781ba2013-12-30 20:57:45 +05308966 if (TRUE == pHddCtx->btCoexModeSet)
8967 {
8968 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Rashmi Ramannab1429032014-04-26 14:59:09 +05308969 FL("BTCoex Mode operation in progress"));
8970 return VOS_TRUE;
c_hpothu9b781ba2013-12-30 20:57:45 +05308971 }
8972
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08008973 status = hdd_get_front_adapter ( pHddCtx, &pAdapterNode );
8974
8975 while ( NULL != pAdapterNode && VOS_STATUS_SUCCESS == status )
8976 {
8977 pAdapter = pAdapterNode->pAdapter;
8978
8979 if( pAdapter )
8980 {
8981 hddLog(VOS_TRACE_LEVEL_INFO,
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05308982 "%s: Adapter with device mode %s (%d) exists",
8983 __func__, hdd_device_modetoString(pAdapter->device_mode),
8984 pAdapter->device_mode);
Ganesh Kondabattiniaeb7b772014-08-11 20:00:36 +05308985 if ((((!isRoC) && (WLAN_HDD_INFRA_STATION == pAdapter->device_mode)) ||
Rashmi Ramannab1429032014-04-26 14:59:09 +05308986 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode) ||
8987 (WLAN_HDD_P2P_DEVICE == pAdapter->device_mode)) &&
8988 (eConnectionState_Connecting ==
8989 (WLAN_HDD_GET_STATION_CTX_PTR(pAdapter))->conn_info.connState))
8990 {
8991 hddLog(VOS_TRACE_LEVEL_ERROR,
8992 "%s: %p(%d) Connection is in progress", __func__,
8993 WLAN_HDD_GET_STATION_CTX_PTR(pAdapter), pAdapter->sessionId);
8994 return VOS_TRUE;
8995 }
Ganesh Kondabattiniaeb7b772014-08-11 20:00:36 +05308996 if (((!isRoC) && (WLAN_HDD_INFRA_STATION == pAdapter->device_mode)) ||
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05308997 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode) ||
8998 (WLAN_HDD_P2P_DEVICE == pAdapter->device_mode))
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08008999 {
9000 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
9001 if ((eConnectionState_Associated == pHddStaCtx->conn_info.connState) &&
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05309002 (VOS_FALSE == pHddStaCtx->conn_info.uIsAuthenticated))
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08009003 {
9004 staMac = (v_U8_t *) &(pAdapter->macAddressCurrent.bytes[0]);
9005 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain24bafea2013-11-15 15:10:03 -08009006 "%s: client " MAC_ADDRESS_STR
9007 " is in the middle of WPS/EAPOL exchange.", __func__,
9008 MAC_ADDR_ARRAY(staMac));
Rashmi Ramannab1429032014-04-26 14:59:09 +05309009 return VOS_TRUE;
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08009010 }
9011 }
9012 else if ((WLAN_HDD_SOFTAP == pAdapter->device_mode) ||
9013 (WLAN_HDD_P2P_GO == pAdapter->device_mode))
9014 {
9015 for (staId = 0; staId < WLAN_MAX_STA_COUNT; staId++)
9016 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309017 if ((pAdapter->aStaInfo[staId].isUsed) &&
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08009018 (WLANTL_STA_CONNECTED == pAdapter->aStaInfo[staId].tlSTAState))
9019 {
9020 staMac = (v_U8_t *) &(pAdapter->aStaInfo[staId].macAddrSTA.bytes[0]);
9021
9022 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain24bafea2013-11-15 15:10:03 -08009023 "%s: client " MAC_ADDRESS_STR " of SoftAP/P2P-GO is in the "
9024 "middle of WPS/EAPOL exchange.", __func__,
9025 MAC_ADDR_ARRAY(staMac));
Rashmi Ramannab1429032014-04-26 14:59:09 +05309026 return VOS_TRUE;
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08009027 }
9028 }
9029 }
9030 }
9031 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
9032 pAdapterNode = pNext;
9033 }
Rashmi Ramannab1429032014-04-26 14:59:09 +05309034 return VOS_FALSE;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309035}
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08009036
9037/*
Mahesh A Saptasagarfafb7fe2014-05-16 13:19:37 +05309038 * FUNCTION: __wlan_hdd_cfg80211_scan
Jeff Johnson295189b2012-06-20 16:38:30 -07009039 * this scan respond to scan trigger and update cfg80211 scan database
9040 * later, scan dump command can be used to recieve scan results
9041 */
Mahesh A Saptasagarfafb7fe2014-05-16 13:19:37 +05309042int __wlan_hdd_cfg80211_scan( struct wiphy *wiphy,
Jeff Johnson3bbe4bf2013-01-18 17:05:29 -08009043#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,6,0))
9044 struct net_device *dev,
9045#endif
9046 struct cfg80211_scan_request *request)
9047{
Siddharth Bhal0c162d02014-05-06 19:50:42 +05309048 hdd_adapter_t *pAdapter = NULL;
9049 hdd_context_t *pHddCtx = NULL;
9050 hdd_wext_state_t *pwextBuf = NULL;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309051 hdd_config_t *cfg_param = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07009052 tCsrScanRequest scanRequest;
9053 tANI_U8 *channelList = NULL, i;
9054 v_U32_t scanId = 0;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309055 int status;
9056 hdd_scaninfo_t *pScanInfo = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07009057 v_U8_t* pP2pIe = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07009058
Siddharth Bhal0c162d02014-05-06 19:50:42 +05309059#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,6,0))
9060 struct net_device *dev = NULL;
9061 if (NULL == request)
9062 {
9063 hddLog(VOS_TRACE_LEVEL_ERROR,
9064 "%s: scan req param null", __func__);
9065 return -EINVAL;
9066 }
9067 dev = request->wdev->netdev;
9068#endif
9069
9070 pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
9071 pHddCtx = WLAN_HDD_GET_CTX( pAdapter );
9072 pwextBuf = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
9073
Jeff Johnson295189b2012-06-20 16:38:30 -07009074 ENTER();
9075
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +05309076
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05309077 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s (%d)",
9078 __func__, hdd_device_modetoString(pAdapter->device_mode),
9079 pAdapter->device_mode);
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +05309080
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309081 status = wlan_hdd_validate_context(pHddCtx);
9082
9083 if (0 != status)
9084 {
9085 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
9086 "%s: HDD context is not valid", __func__);
9087 return status;
9088 }
9089
Siddharth Bhal0c162d02014-05-06 19:50:42 +05309090 if (NULL == pwextBuf)
9091 {
9092 hddLog (VOS_TRACE_LEVEL_ERROR, "%s ERROR: invalid WEXT state\n",
9093 __func__);
9094 return -EIO;
9095 }
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309096 cfg_param = pHddCtx->cfg_ini;
9097 pScanInfo = &pHddCtx->scan_info;
9098
Jeff Johnson295189b2012-06-20 16:38:30 -07009099#ifdef WLAN_BTAMP_FEATURE
9100 //Scan not supported when AMP traffic is on.
Gopichand Nakkala681989c2013-03-06 22:27:48 -08009101 if (VOS_TRUE == WLANBAP_AmpSessionOn())
Jeff Johnson295189b2012-06-20 16:38:30 -07009102 {
Madan Mohan Koyyalamudifd4e1da2012-11-09 17:50:19 -08009103 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07009104 "%s: No scanning when AMP is on", __func__);
9105 return -EOPNOTSUPP;
9106 }
9107#endif
9108 //Scan on any other interface is not supported.
Gopichand Nakkala681989c2013-03-06 22:27:48 -08009109 if (pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -07009110 {
Gopichand Nakkala681989c2013-03-06 22:27:48 -08009111 hddLog(VOS_TRACE_LEVEL_ERROR,
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05309112 "%s: Not scanning on device_mode = %s (%d)",
9113 __func__, hdd_device_modetoString(pAdapter->device_mode),
9114 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07009115 return -EOPNOTSUPP;
9116 }
9117
9118 if (TRUE == pScanInfo->mScanPending)
9119 {
Kiet Lamac06e2c2013-10-23 16:25:07 +05309120 if ( MAX_PENDING_LOG > pScanInfo->mScanPendingCounter++ )
9121 {
9122 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: mScanPending is TRUE", __func__);
9123 }
Gopichand Nakkala681989c2013-03-06 22:27:48 -08009124 return -EBUSY;
Jeff Johnson295189b2012-06-20 16:38:30 -07009125 }
9126
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309127 //Don't Allow Scan and return busy if Remain On
Jeff Johnson32d95a32012-09-10 13:15:23 -07009128 //Channel and action frame is pending
9129 //Otherwise Cancel Remain On Channel and allow Scan
9130 //If no action frame pending
Gopichand Nakkala681989c2013-03-06 22:27:48 -08009131 if (0 != wlan_hdd_check_remain_on_channel(pAdapter))
Jeff Johnson32d95a32012-09-10 13:15:23 -07009132 {
Kiet Lamac06e2c2013-10-23 16:25:07 +05309133 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Remain On Channel Pending", __func__);
Jeff Johnson32d95a32012-09-10 13:15:23 -07009134 return -EBUSY;
9135 }
Gopichand Nakkala681989c2013-03-06 22:27:48 -08009136#ifdef FEATURE_WLAN_TDLS
Gopichand Nakkala638ebc72013-03-21 18:04:02 -07009137 /* if tdls disagree scan right now, return immediately.
9138 tdls will schedule the scan when scan is allowed. (return SUCCESS)
9139 or will reject the scan if any TDLS is in progress. (return -EBUSY)
9140 */
9141 status = wlan_hdd_tdls_scan_callback (pAdapter,
9142 wiphy,
9143#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,6,0))
9144 dev,
Gopichand Nakkalac3c42b92013-03-20 19:42:34 -07009145#endif
Gopichand Nakkala638ebc72013-03-21 18:04:02 -07009146 request);
9147 if(status <= 0)
9148 {
Nirav Shah20ac06f2013-12-12 18:14:06 +05309149 if(!status)
9150 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: TDLS in progress."
9151 "scan rejected %d", __func__, status);
9152 else
9153 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: TDLS teardown is ongoing %d",
9154 __func__, status);
9155
Gopichand Nakkala638ebc72013-03-21 18:04:02 -07009156 return status;
Gopichand Nakkala681989c2013-03-06 22:27:48 -08009157 }
9158#endif
Jeff Johnson32d95a32012-09-10 13:15:23 -07009159
Jeff Johnson295189b2012-06-20 16:38:30 -07009160 if (mutex_lock_interruptible(&pHddCtx->tmInfo.tmOperationLock))
9161 {
9162 VOS_TRACE(VOS_MODULE_ID_HDD,VOS_TRACE_LEVEL_ERROR,
Jeff Johnson1250df42012-12-10 14:31:52 -08009163 "%s: Acquire lock fail", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07009164 return -EAGAIN;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309165 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009166 if (TRUE == pHddCtx->tmInfo.tmAction.enterImps)
9167 {
Nirav Shah20ac06f2013-12-12 18:14:06 +05309168 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07009169 "%s: MAX TM Level Scan not allowed", __func__);
9170 mutex_unlock(&pHddCtx->tmInfo.tmOperationLock);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309171 return -EBUSY;
Jeff Johnson295189b2012-06-20 16:38:30 -07009172 }
9173 mutex_unlock(&pHddCtx->tmInfo.tmOperationLock);
9174
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08009175 /* Check if scan is allowed at this point of time.
9176 */
Ganesh Kondabattiniaeb7b772014-08-11 20:00:36 +05309177 if (hdd_isConnectionInProgress(pHddCtx, VOS_FALSE))
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08009178 {
9179 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Scan not allowed", __func__);
9180 return -EBUSY;
9181 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309182
Jeff Johnson295189b2012-06-20 16:38:30 -07009183 vos_mem_zero( &scanRequest, sizeof(scanRequest));
9184
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05309185 hddLog(VOS_TRACE_LEVEL_INFO, "scan request for ssid = %d",
9186 (int)request->n_ssids);
9187
9188 /* Even though supplicant doesn't provide any SSIDs, n_ssids is set to 1.
9189 * Becasue of this, driver is assuming that this is not wildcard scan and so
9190 * is not aging out the scan results.
9191 */
9192 if (request->ssids && '\0' == request->ssids->ssid[0])
Jeff Johnson295189b2012-06-20 16:38:30 -07009193 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05309194 request->n_ssids = 0;
Jeff Johnson295189b2012-06-20 16:38:30 -07009195 }
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05309196
9197 if ((request->ssids) && (0 < request->n_ssids))
9198 {
9199 tCsrSSIDInfo *SsidInfo;
9200 int j;
9201 scanRequest.SSIDs.numOfSSIDs = request->n_ssids;
9202 /* Allocate num_ssid tCsrSSIDInfo structure */
9203 SsidInfo = scanRequest.SSIDs.SSIDList =
9204 ( tCsrSSIDInfo *)vos_mem_malloc(
9205 request->n_ssids*sizeof(tCsrSSIDInfo));
9206
9207 if(NULL == scanRequest.SSIDs.SSIDList)
9208 {
9209 hddLog(VOS_TRACE_LEVEL_ERROR,
9210 "%s: memory alloc failed SSIDInfo buffer", __func__);
9211 return -ENOMEM;
9212 }
9213
9214 /* copy all the ssid's and their length */
9215 for(j = 0; j < request->n_ssids; j++, SsidInfo++)
9216 {
9217 /* get the ssid length */
9218 SsidInfo->SSID.length = request->ssids[j].ssid_len;
9219 vos_mem_copy(SsidInfo->SSID.ssId, &request->ssids[j].ssid[0],
9220 SsidInfo->SSID.length);
9221 SsidInfo->SSID.ssId[SsidInfo->SSID.length] = '\0';
9222 hddLog(VOS_TRACE_LEVEL_INFO, "SSID number %d: %s",
9223 j, SsidInfo->SSID.ssId);
9224 }
9225 /* set the scan type to active */
9226 scanRequest.scanType = eSIR_ACTIVE_SCAN;
9227 }
9228 else if(WLAN_HDD_P2P_GO == pAdapter->device_mode)
Jeff Johnson295189b2012-06-20 16:38:30 -07009229 {
Siddharth Bhal0c162d02014-05-06 19:50:42 +05309230 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
9231 TRACE_CODE_HDD_CFG80211_SCAN,
9232 pAdapter->sessionId, 0));
Jeff Johnson295189b2012-06-20 16:38:30 -07009233 /* set the scan type to active */
9234 scanRequest.scanType = eSIR_ACTIVE_SCAN;
Jeff Johnson295189b2012-06-20 16:38:30 -07009235 }
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05309236 else
9237 {
9238 /*Set the scan type to default type, in this case it is ACTIVE*/
9239 scanRequest.scanType = pScanInfo->scan_mode;
9240 }
9241 scanRequest.minChnTime = cfg_param->nActiveMinChnTime;
9242 scanRequest.maxChnTime = cfg_param->nActiveMaxChnTime;
Jeff Johnson295189b2012-06-20 16:38:30 -07009243
9244 /* set BSSType to default type */
9245 scanRequest.BSSType = eCSR_BSS_TYPE_ANY;
9246
9247 /*TODO: scan the requested channels only*/
9248
9249 /*Right now scanning all the channels */
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05309250 if (MAX_CHANNEL < request->n_channels)
Jeff Johnson295189b2012-06-20 16:38:30 -07009251 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05309252 hddLog(VOS_TRACE_LEVEL_WARN,
9253 "No of Scan Channels exceeded limit: %d", request->n_channels);
9254 request->n_channels = MAX_CHANNEL;
9255 }
9256
9257 hddLog(VOS_TRACE_LEVEL_INFO,
9258 "No of Scan Channels: %d", request->n_channels);
9259
9260
9261 if( request->n_channels )
9262 {
9263 char chList [(request->n_channels*5)+1];
9264 int len;
9265 channelList = vos_mem_malloc( request->n_channels );
9266 if( NULL == channelList )
c_hpothu53512302014-04-15 18:49:53 +05309267 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05309268 hddLog(VOS_TRACE_LEVEL_ERROR,
9269 "%s: memory alloc failed channelList", __func__);
9270 status = -ENOMEM;
9271 goto free_mem;
c_hpothu53512302014-04-15 18:49:53 +05309272 }
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05309273
9274 for( i = 0, len = 0; i < request->n_channels ; i++ )
9275 {
9276 channelList[i] = request->channels[i]->hw_value;
9277 len += snprintf(chList+len, 5, "%d ", channelList[i]);
9278 }
9279
Nirav Shah20ac06f2013-12-12 18:14:06 +05309280 hddLog(VOS_TRACE_LEVEL_INFO,
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05309281 "Channel-List: %s ", chList);
9282 }
c_hpothu53512302014-04-15 18:49:53 +05309283
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05309284 scanRequest.ChannelInfo.numOfChannels = request->n_channels;
9285 scanRequest.ChannelInfo.ChannelList = channelList;
9286
9287 /* set requestType to full scan */
9288 scanRequest.requestType = eCSR_SCAN_REQUEST_FULL_SCAN;
9289
9290 /* Flush the scan results(only p2p beacons) for STA scan and P2P
9291 * search (Flush on both full scan and social scan but not on single
9292 * channel scan).P2P search happens on 3 social channels (1, 6, 11)
9293 */
9294
9295 /* Supplicant does single channel scan after 8-way handshake
9296 * and in that case driver shoudnt flush scan results. If
9297 * driver flushes the scan results here and unfortunately if
9298 * the AP doesnt respond to our probe req then association
9299 * fails which is not desired
9300 */
9301
9302 if( request->n_channels != WLAN_HDD_P2P_SINGLE_CHANNEL_SCAN )
9303 {
9304 hddLog(VOS_TRACE_LEVEL_DEBUG, "Flushing P2P Results");
9305 sme_ScanFlushP2PResult( WLAN_HDD_GET_HAL_CTX(pAdapter),
9306 pAdapter->sessionId );
9307 }
9308
9309 if( request->ie_len )
9310 {
9311 /* save this for future association (join requires this) */
9312 /*TODO: Array needs to be converted to dynamic allocation,
9313 * as multiple ie.s can be sent in cfg80211_scan_request structure
9314 * CR 597966
9315 */
9316 memset( &pScanInfo->scanAddIE, 0, sizeof(pScanInfo->scanAddIE) );
9317 memcpy( pScanInfo->scanAddIE.addIEdata, request->ie, request->ie_len);
9318 pScanInfo->scanAddIE.length = request->ie_len;
9319
9320 if ((WLAN_HDD_INFRA_STATION == pAdapter->device_mode) ||
9321 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode) ||
9322 (WLAN_HDD_P2P_DEVICE == pAdapter->device_mode))
Jeff Johnson295189b2012-06-20 16:38:30 -07009323 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05309324 if ( request->ie_len <= SIR_MAC_MAX_IE_LENGTH)
Jeff Johnson295189b2012-06-20 16:38:30 -07009325 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05309326 pwextBuf->roamProfile.nAddIEScanLength = request->ie_len;
9327 memcpy( pwextBuf->roamProfile.addIEScan,
9328 request->ie, request->ie_len);
9329 }
9330 else
9331 {
9332 hddLog(VOS_TRACE_LEVEL_ERROR, "Scan Ie length is invalid:"
9333 "%zu", request->ie_len);
Jeff Johnson295189b2012-06-20 16:38:30 -07009334 }
9335
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05309336 }
9337 scanRequest.uIEFieldLen = pScanInfo->scanAddIE.length;
9338 scanRequest.pIEField = pScanInfo->scanAddIE.addIEdata;
9339
9340 pP2pIe = wlan_hdd_get_p2p_ie_ptr((v_U8_t*)request->ie,
9341 request->ie_len);
9342 if (pP2pIe != NULL)
9343 {
9344#ifdef WLAN_FEATURE_P2P_DEBUG
9345 if (((globalP2PConnectionStatus == P2P_GO_NEG_COMPLETED) ||
9346 (globalP2PConnectionStatus == P2P_GO_NEG_PROCESS)) &&
9347 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode))
Nirav Shah20ac06f2013-12-12 18:14:06 +05309348 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05309349 globalP2PConnectionStatus = P2P_CLIENT_CONNECTING_STATE_1;
9350 hddLog(VOS_TRACE_LEVEL_ERROR,"[P2P State] Changing state from "
9351 "Go nego completed to Connection is started");
9352 hddLog(VOS_TRACE_LEVEL_ERROR,"[P2P]P2P Scanning is started "
9353 "for 8way Handshake");
Nirav Shah20ac06f2013-12-12 18:14:06 +05309354 }
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05309355 else if((globalP2PConnectionStatus == P2P_CLIENT_DISCONNECTED_STATE) &&
9356 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode))
Jeff Johnson295189b2012-06-20 16:38:30 -07009357 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05309358 globalP2PConnectionStatus = P2P_CLIENT_CONNECTING_STATE_2;
9359 hddLog(VOS_TRACE_LEVEL_ERROR,"[P2P State] Changing state from "
9360 "Disconnected state to Connection is started");
9361 hddLog(VOS_TRACE_LEVEL_ERROR,"[P2P]P2P Scanning is started "
9362 "for 4way Handshake");
9363 }
9364#endif
9365
9366 /* no_cck will be set during p2p find to disable 11b rates */
9367 if(TRUE == request->no_cck)
9368 {
9369 hddLog(VOS_TRACE_LEVEL_INFO,
9370 "%s: This is a P2P Search", __func__);
9371 scanRequest.p2pSearch = 1;
9372
9373 if( request->n_channels == WLAN_HDD_P2P_SOCIAL_CHANNELS )
Agarwal Ashish4f616132013-12-30 23:32:50 +05309374 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05309375 /* set requestType to P2P Discovery */
9376 scanRequest.requestType = eCSR_SCAN_P2P_DISCOVERY;
9377 }
9378
9379 /*
9380 Skip Dfs Channel in case of P2P Search
9381 if it is set in ini file
9382 */
9383 if(cfg_param->skipDfsChnlInP2pSearch)
9384 {
9385 scanRequest.skipDfsChnlInP2pSearch = 1;
Agarwal Ashish4f616132013-12-30 23:32:50 +05309386 }
9387 else
9388 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05309389 scanRequest.skipDfsChnlInP2pSearch = 0;
Agarwal Ashish4f616132013-12-30 23:32:50 +05309390 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009391
Agarwal Ashish4f616132013-12-30 23:32:50 +05309392 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009393 }
9394 }
9395
9396 INIT_COMPLETION(pScanInfo->scan_req_completion_event);
9397
Madan Mohan Koyyalamudi9f5a10c2012-09-28 14:46:16 -07009398 /* acquire the wakelock to avoid the apps suspend during the scan. To
9399 * address the following issues.
9400 * 1) Disconnected scenario: we are not allowing the suspend as WLAN is not in
9401 * BMPS/IMPS this result in android trying to suspend aggressively and backing off
9402 * for long time, this result in apps running at full power for long time.
9403 * 2) Connected scenario: If we allow the suspend during the scan, RIVA will
9404 * be stuck in full power because of resume BMPS
9405 */
9406 hdd_prevent_suspend();
Jeff Johnsone7245742012-09-05 17:12:55 -07009407
Nirav Shah20ac06f2013-12-12 18:14:06 +05309408 hddLog(VOS_TRACE_LEVEL_INFO_HIGH,
9409 "requestType %d, scanType %d, minChnTime %d, maxChnTime %d,"
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05309410 "p2pSearch %d, skipDfsChnlInP2pSearch %d",
9411 scanRequest.requestType, scanRequest.scanType,
9412 scanRequest.minChnTime, scanRequest.maxChnTime,
Nirav Shah20ac06f2013-12-12 18:14:06 +05309413 scanRequest.p2pSearch, scanRequest.skipDfsChnlInP2pSearch);
9414
Jeff Johnsone7245742012-09-05 17:12:55 -07009415 status = sme_ScanRequest( WLAN_HDD_GET_HAL_CTX(pAdapter),
Jeff Johnson295189b2012-06-20 16:38:30 -07009416 pAdapter->sessionId, &scanRequest, &scanId,
9417 &hdd_cfg80211_scan_done_callback, dev );
Jeff Johnsone7245742012-09-05 17:12:55 -07009418
Jeff Johnson295189b2012-06-20 16:38:30 -07009419 if (eHAL_STATUS_SUCCESS != status)
9420 {
9421 hddLog(VOS_TRACE_LEVEL_ERROR,
9422 "%s: sme_ScanRequest returned error %d", __func__, status);
9423 complete(&pScanInfo->scan_req_completion_event);
Madan Mohan Koyyalamudi3b230fe2012-10-18 14:46:32 -07009424 if(eHAL_STATUS_RESOURCES == status)
9425 {
Nirav Shah20ac06f2013-12-12 18:14:06 +05309426 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: HO is in progress."
9427 "So defer the scan by informing busy",__func__);
Madan Mohan Koyyalamudi3b230fe2012-10-18 14:46:32 -07009428 status = -EBUSY;
9429 } else {
9430 status = -EIO;
9431 }
Madan Mohan Koyyalamudi9f5a10c2012-09-28 14:46:16 -07009432 hdd_allow_suspend();
Jeff Johnson295189b2012-06-20 16:38:30 -07009433 goto free_mem;
9434 }
9435
9436 pScanInfo->mScanPending = TRUE;
9437 pAdapter->request = request;
9438 pScanInfo->scanId = scanId;
9439
9440 complete(&pScanInfo->scan_req_completion_event);
9441
9442free_mem:
9443 if( scanRequest.SSIDs.SSIDList )
9444 {
9445 vos_mem_free(scanRequest.SSIDs.SSIDList);
9446 }
9447
9448 if( channelList )
9449 vos_mem_free( channelList );
9450
9451 EXIT();
9452
9453 return status;
9454}
9455
Mahesh A Saptasagarfafb7fe2014-05-16 13:19:37 +05309456int wlan_hdd_cfg80211_scan( struct wiphy *wiphy,
9457#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,6,0))
9458 struct net_device *dev,
9459#endif
9460 struct cfg80211_scan_request *request)
9461{
9462 int ret;
9463
9464 vos_ssr_protect(__func__);
9465 ret = __wlan_hdd_cfg80211_scan(wiphy,
9466#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,6,0))
9467 dev,
9468#endif
9469 request);
9470 vos_ssr_unprotect(__func__);
9471
9472 return ret;
9473}
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07009474
9475void hdd_select_cbmode( hdd_adapter_t *pAdapter,v_U8_t operationChannel)
9476{
9477 v_U8_t iniDot11Mode =
9478 (WLAN_HDD_GET_CTX(pAdapter))->cfg_ini->dot11Mode;
9479 eHddDot11Mode hddDot11Mode = iniDot11Mode;
9480
Arun Kumar Khandavalli94a2bb02013-12-28 19:17:25 +05309481 hddLog(LOG1, FL("Channel Bonding Mode Selected is %u"),
9482 iniDot11Mode);
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07009483 switch ( iniDot11Mode )
9484 {
9485 case eHDD_DOT11_MODE_AUTO:
9486 case eHDD_DOT11_MODE_11ac:
9487 case eHDD_DOT11_MODE_11ac_ONLY:
9488#ifdef WLAN_FEATURE_11AC
Abhishek Singh4b1d2352014-08-01 21:59:28 +05309489 if ( sme_IsFeatureSupportedByDriver(DOT11AC) &&
9490 sme_IsFeatureSupportedByFW(DOT11AC) )
9491 hddDot11Mode = eHDD_DOT11_MODE_11ac;
9492 else
9493 hddDot11Mode = eHDD_DOT11_MODE_11n;
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07009494#else
9495 hddDot11Mode = eHDD_DOT11_MODE_11n;
9496#endif
9497 break;
9498 case eHDD_DOT11_MODE_11n:
9499 case eHDD_DOT11_MODE_11n_ONLY:
9500 hddDot11Mode = eHDD_DOT11_MODE_11n;
9501 break;
9502 default:
9503 hddDot11Mode = iniDot11Mode;
9504 break;
9505 }
9506 /* This call decides required channel bonding mode */
9507 sme_SelectCBMode((WLAN_HDD_GET_CTX(pAdapter)->hHal),
9508 hdd_cfg_xlate_to_csr_phy_mode(hddDot11Mode),
9509 operationChannel);
9510}
9511
Jeff Johnson295189b2012-06-20 16:38:30 -07009512/*
9513 * FUNCTION: wlan_hdd_cfg80211_connect_start
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309514 * This function is used to start the association process
Jeff Johnson295189b2012-06-20 16:38:30 -07009515 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309516int wlan_hdd_cfg80211_connect_start( hdd_adapter_t *pAdapter,
Jeff Johnson32d95a32012-09-10 13:15:23 -07009517 const u8 *ssid, size_t ssid_len, const u8 *bssid, u8 operatingChannel)
Jeff Johnson295189b2012-06-20 16:38:30 -07009518{
9519 int status = 0;
9520 hdd_wext_state_t *pWextState;
Yue Mae36e3552014-03-05 17:06:20 -08009521 hdd_context_t *pHddCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -07009522 v_U32_t roamId;
9523 tCsrRoamProfile *pRoamProfile;
Jeff Johnson295189b2012-06-20 16:38:30 -07009524 eCsrAuthType RSNAuthType;
9525
9526 ENTER();
9527
9528 pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Yue Mae36e3552014-03-05 17:06:20 -08009529 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
9530
9531 status = wlan_hdd_validate_context(pHddCtx);
9532 if (status)
9533 {
9534 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
9535 "%s: HDD context is not valid!", __func__);
9536 return status;
9537 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309538
Jeff Johnson295189b2012-06-20 16:38:30 -07009539 if (SIR_MAC_MAX_SSID_LENGTH < ssid_len)
9540 {
9541 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: wrong SSID len", __func__);
9542 return -EINVAL;
9543 }
9544
9545 pRoamProfile = &pWextState->roamProfile;
9546
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309547 if (pRoamProfile)
Jeff Johnson295189b2012-06-20 16:38:30 -07009548 {
Jeff Johnsone7245742012-09-05 17:12:55 -07009549 hdd_station_ctx_t *pHddStaCtx;
9550 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07009551
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309552 if (HDD_WMM_USER_MODE_NO_QOS ==
Jeff Johnson295189b2012-06-20 16:38:30 -07009553 (WLAN_HDD_GET_CTX(pAdapter))->cfg_ini->WmmMode)
9554 {
9555 /*QoS not enabled in cfg file*/
9556 pRoamProfile->uapsd_mask = 0;
9557 }
9558 else
9559 {
9560 /*QoS enabled, update uapsd mask from cfg file*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309561 pRoamProfile->uapsd_mask =
Jeff Johnson295189b2012-06-20 16:38:30 -07009562 (WLAN_HDD_GET_CTX(pAdapter))->cfg_ini->UapsdMask;
9563 }
9564
9565 pRoamProfile->SSIDs.numOfSSIDs = 1;
9566 pRoamProfile->SSIDs.SSIDList->SSID.length = ssid_len;
9567 vos_mem_zero(pRoamProfile->SSIDs.SSIDList->SSID.ssId,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309568 sizeof(pRoamProfile->SSIDs.SSIDList->SSID.ssId));
Jeff Johnson295189b2012-06-20 16:38:30 -07009569 vos_mem_copy((void *)(pRoamProfile->SSIDs.SSIDList->SSID.ssId),
9570 ssid, ssid_len);
9571
9572 if (bssid)
9573 {
9574 pRoamProfile->BSSIDs.numOfBSSIDs = 1;
9575 vos_mem_copy((void *)(pRoamProfile->BSSIDs.bssid), bssid,
9576 WNI_CFG_BSSID_LEN);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309577 /* Save BSSID in seperate variable as well, as RoamProfile
9578 BSSID is getting zeroed out in the association process. And in
Jeff Johnson295189b2012-06-20 16:38:30 -07009579 case of join failure we should send valid BSSID to supplicant
9580 */
9581 vos_mem_copy((void *)(pWextState->req_bssId), bssid,
9582 WNI_CFG_BSSID_LEN);
9583 }
Dhanashri Atre51981c62013-06-13 11:47:57 -07009584 else
9585 {
9586 vos_mem_zero((void *)(pRoamProfile->BSSIDs.bssid),WNI_CFG_BSSID_LEN);
9587 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009588
Arun Kumar Khandavalli94a2bb02013-12-28 19:17:25 +05309589 hddLog(LOG1, FL("Connect to SSID: %s opertating Channel: %u"),
9590 pRoamProfile->SSIDs.SSIDList->SSID.ssId, operatingChannel);
Jeff Johnson295189b2012-06-20 16:38:30 -07009591 if ((IW_AUTH_WPA_VERSION_WPA == pWextState->wpaVersion) ||
9592 (IW_AUTH_WPA_VERSION_WPA2 == pWextState->wpaVersion))
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309593 {
Jeff Johnson295189b2012-06-20 16:38:30 -07009594 /*set gen ie*/
9595 hdd_SetGENIEToCsr(pAdapter, &RSNAuthType);
9596 /*set auth*/
9597 hdd_set_csr_auth_type(pAdapter, RSNAuthType);
9598 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009599#ifdef FEATURE_WLAN_WAPI
9600 if (pAdapter->wapi_info.nWapiMode)
9601 {
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07009602 hddLog(LOG1, "%s: Setting WAPI AUTH Type and Encryption Mode values", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07009603 switch (pAdapter->wapi_info.wapiAuthMode)
9604 {
9605 case WAPI_AUTH_MODE_PSK:
9606 {
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07009607 hddLog(LOG1, "%s: WAPI AUTH TYPE: PSK: %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07009608 pAdapter->wapi_info.wapiAuthMode);
9609 pRoamProfile->AuthType.authType[0] = eCSR_AUTH_TYPE_WAPI_WAI_PSK;
9610 break;
9611 }
9612 case WAPI_AUTH_MODE_CERT:
9613 {
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07009614 hddLog(LOG1, "%s: WAPI AUTH TYPE: CERT: %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07009615 pAdapter->wapi_info.wapiAuthMode);
9616 pRoamProfile->AuthType.authType[0] = eCSR_AUTH_TYPE_WAPI_WAI_CERTIFICATE;
9617 break;
9618 }
9619 } // End of switch
9620 if ( pAdapter->wapi_info.wapiAuthMode == WAPI_AUTH_MODE_PSK ||
9621 pAdapter->wapi_info.wapiAuthMode == WAPI_AUTH_MODE_CERT)
9622 {
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07009623 hddLog(LOG1, "%s: WAPI PAIRWISE/GROUP ENCRYPTION: WPI", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07009624 pRoamProfile->AuthType.numEntries = 1;
9625 pRoamProfile->EncryptionType.numEntries = 1;
9626 pRoamProfile->EncryptionType.encryptionType[0] = eCSR_ENCRYPT_TYPE_WPI;
9627 pRoamProfile->mcEncryptionType.numEntries = 1;
9628 pRoamProfile->mcEncryptionType.encryptionType[0] = eCSR_ENCRYPT_TYPE_WPI;
9629 }
9630 }
9631#endif /* FEATURE_WLAN_WAPI */
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05309632#ifdef WLAN_FEATURE_GTK_OFFLOAD
Gopichand Nakkalad36ee622013-05-07 14:13:27 +05309633 /* Initializing gtkOffloadReqParams */
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05309634 if ((WLAN_HDD_INFRA_STATION == pAdapter->device_mode) ||
9635 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode))
9636 {
Gopichand Nakkalad36ee622013-05-07 14:13:27 +05309637 memset(&pHddStaCtx->gtkOffloadReqParams, 0,
9638 sizeof (tSirGtkOffloadParams));
9639 pHddStaCtx->gtkOffloadReqParams.ulFlags = GTK_OFFLOAD_DISABLE;
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05309640 }
9641#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07009642 pRoamProfile->csrPersona = pAdapter->device_mode;
9643
Jeff Johnson32d95a32012-09-10 13:15:23 -07009644 if( operatingChannel )
9645 {
9646 pRoamProfile->ChannelInfo.ChannelList = &operatingChannel;
9647 pRoamProfile->ChannelInfo.numOfChannels = 1;
9648 }
Chet Lanctot186b5732013-03-18 10:26:30 -07009649 else
9650 {
9651 pRoamProfile->ChannelInfo.ChannelList = NULL;
9652 pRoamProfile->ChannelInfo.numOfChannels = 0;
9653 }
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07009654 if ( (WLAN_HDD_IBSS == pAdapter->device_mode) && operatingChannel)
9655 {
9656 hdd_select_cbmode(pAdapter,operatingChannel);
9657 }
Arun Kumar Khandavalli94a2bb02013-12-28 19:17:25 +05309658
Madan Mohan Koyyalamudi42dcd162012-12-03 16:34:04 -08009659 /* change conn_state to connecting before sme_RoamConnect(), because sme_RoamConnect()
9660 * has a direct path to call hdd_smeRoamCallback(), which will change the conn_state
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309661 * If direct path, conn_state will be accordingly changed to NotConnected or Associated
Madan Mohan Koyyalamudi42dcd162012-12-03 16:34:04 -08009662 * by either hdd_AssociationCompletionHandler() or hdd_DisConnectHandler() in sme_RoamCallback()
Madan Mohan Koyyalamudidf86c422012-12-04 17:03:44 -08009663 * if sme_RomConnect is to be queued, Connecting state will remain until it is completed.
9664 */
Gopichand Nakkalaa3c8fb62013-06-21 15:36:42 +05309665 if (WLAN_HDD_INFRA_STATION == pAdapter->device_mode ||
9666 WLAN_HDD_P2P_CLIENT == pAdapter->device_mode)
Abhishek Singhf4669da2014-05-26 15:07:49 +05309667 {
9668 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
9669 "%s: Set HDD connState to eConnectionState_Connecting",
9670 __func__);
Madan Mohan Koyyalamudidf86c422012-12-04 17:03:44 -08009671 hdd_connSetConnectionState(WLAN_HDD_GET_STATION_CTX_PTR(pAdapter),
9672 eConnectionState_Connecting);
Abhishek Singhf4669da2014-05-26 15:07:49 +05309673 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309674 status = sme_RoamConnect( WLAN_HDD_GET_HAL_CTX(pAdapter),
Jeff Johnson295189b2012-06-20 16:38:30 -07009675 pAdapter->sessionId, pRoamProfile, &roamId);
9676
Gopichand Nakkalaa3c8fb62013-06-21 15:36:42 +05309677 if ((eHAL_STATUS_SUCCESS != status) &&
9678 (WLAN_HDD_INFRA_STATION == pAdapter->device_mode ||
9679 WLAN_HDD_P2P_CLIENT == pAdapter->device_mode))
Madan Mohan Koyyalamudid5acbf52012-11-28 01:45:08 +05309680
9681 {
Madan Mohan Koyyalamudi42dcd162012-12-03 16:34:04 -08009682 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: sme_RoamConnect (session %d) failed with "
9683 "status %d. -> NotConnected", __func__, pAdapter->sessionId, status);
9684 /* change back to NotAssociated */
Madan Mohan Koyyalamudid5acbf52012-11-28 01:45:08 +05309685 hdd_connSetConnectionState(WLAN_HDD_GET_STATION_CTX_PTR(pAdapter),
Madan Mohan Koyyalamudi42dcd162012-12-03 16:34:04 -08009686 eConnectionState_NotConnected);
Madan Mohan Koyyalamudid5acbf52012-11-28 01:45:08 +05309687 }
Madan Mohan Koyyalamudidf86c422012-12-04 17:03:44 -08009688
9689 pRoamProfile->ChannelInfo.ChannelList = NULL;
9690 pRoamProfile->ChannelInfo.numOfChannels = 0;
9691
Jeff Johnson295189b2012-06-20 16:38:30 -07009692 }
9693 else
9694 {
9695 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: No valid Roam profile", __func__);
9696 return -EINVAL;
9697 }
Madan Mohan Koyyalamudifd4e1da2012-11-09 17:50:19 -08009698 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -07009699 return status;
9700}
9701
9702/*
9703 * FUNCTION: wlan_hdd_set_cfg80211_auth_type
9704 * This function is used to set the authentication type (OPEN/SHARED).
9705 *
9706 */
9707static int wlan_hdd_cfg80211_set_auth_type(hdd_adapter_t *pAdapter,
9708 enum nl80211_auth_type auth_type)
9709{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309710 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07009711 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
9712
9713 ENTER();
9714
9715 /*set authentication type*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309716 switch (auth_type)
Jeff Johnson295189b2012-06-20 16:38:30 -07009717 {
Jeff Johnson295189b2012-06-20 16:38:30 -07009718 case NL80211_AUTHTYPE_AUTOMATIC:
Gopichand Nakkala29149562013-05-10 21:43:41 +05309719 hddLog(VOS_TRACE_LEVEL_INFO,
9720 "%s: set authentication type to AUTOSWITCH", __func__);
9721 pHddStaCtx->conn_info.authType = eCSR_AUTH_TYPE_AUTOSWITCH;
9722 break;
9723
9724 case NL80211_AUTHTYPE_OPEN_SYSTEM:
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07009725#ifdef WLAN_FEATURE_VOWIFI_11R
9726 case NL80211_AUTHTYPE_FT:
9727#endif /* WLAN_FEATURE_VOWIFI_11R */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309728 hddLog(VOS_TRACE_LEVEL_INFO,
Jeff Johnson295189b2012-06-20 16:38:30 -07009729 "%s: set authentication type to OPEN", __func__);
9730 pHddStaCtx->conn_info.authType = eCSR_AUTH_TYPE_OPEN_SYSTEM;
9731 break;
9732
9733 case NL80211_AUTHTYPE_SHARED_KEY:
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309734 hddLog(VOS_TRACE_LEVEL_INFO,
Jeff Johnson295189b2012-06-20 16:38:30 -07009735 "%s: set authentication type to SHARED", __func__);
9736 pHddStaCtx->conn_info.authType = eCSR_AUTH_TYPE_SHARED_KEY;
9737 break;
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08009738#ifdef FEATURE_WLAN_ESE
Jeff Johnson295189b2012-06-20 16:38:30 -07009739 case NL80211_AUTHTYPE_NETWORK_EAP:
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309740 hddLog(VOS_TRACE_LEVEL_INFO,
Jeff Johnson295189b2012-06-20 16:38:30 -07009741 "%s: set authentication type to CCKM WPA", __func__);
9742 pHddStaCtx->conn_info.authType = eCSR_AUTH_TYPE_CCKM_WPA;//eCSR_AUTH_TYPE_CCKM_RSN needs to be handled as well if required.
9743 break;
9744#endif
9745
9746
9747 default:
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309748 hddLog(VOS_TRACE_LEVEL_ERROR,
9749 "%s: Unsupported authentication type %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07009750 auth_type);
9751 pHddStaCtx->conn_info.authType = eCSR_AUTH_TYPE_UNKNOWN;
9752 return -EINVAL;
9753 }
9754
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309755 pWextState->roamProfile.AuthType.authType[0] =
Jeff Johnson295189b2012-06-20 16:38:30 -07009756 pHddStaCtx->conn_info.authType;
9757 return 0;
9758}
9759
9760/*
9761 * FUNCTION: wlan_hdd_set_akm_suite
9762 * This function is used to set the key mgmt type(PSK/8021x).
9763 *
9764 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309765static int wlan_hdd_set_akm_suite( hdd_adapter_t *pAdapter,
Jeff Johnson295189b2012-06-20 16:38:30 -07009766 u32 key_mgmt
9767 )
9768{
9769 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
9770 ENTER();
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309771
Jeff Johnson295189b2012-06-20 16:38:30 -07009772 /*set key mgmt type*/
9773 switch(key_mgmt)
9774 {
9775 case WLAN_AKM_SUITE_PSK:
Gopichand Nakkala356fb102013-03-06 12:34:04 +05309776#ifdef WLAN_FEATURE_VOWIFI_11R
9777 case WLAN_AKM_SUITE_FT_PSK:
9778#endif
9779 hddLog(VOS_TRACE_LEVEL_INFO, "%s: setting key mgmt type to PSK",
Jeff Johnson295189b2012-06-20 16:38:30 -07009780 __func__);
9781 pWextState->authKeyMgmt |= IW_AUTH_KEY_MGMT_PSK;
9782 break;
9783
9784 case WLAN_AKM_SUITE_8021X:
Gopichand Nakkala356fb102013-03-06 12:34:04 +05309785#ifdef WLAN_FEATURE_VOWIFI_11R
9786 case WLAN_AKM_SUITE_FT_8021X:
9787#endif
9788 hddLog(VOS_TRACE_LEVEL_INFO, "%s: setting key mgmt type to 8021x",
Jeff Johnson295189b2012-06-20 16:38:30 -07009789 __func__);
9790 pWextState->authKeyMgmt |= IW_AUTH_KEY_MGMT_802_1X;
9791 break;
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08009792#ifdef FEATURE_WLAN_ESE
Jeff Johnson295189b2012-06-20 16:38:30 -07009793#define WLAN_AKM_SUITE_CCKM 0x00409600 /* Should be in ieee802_11_defs.h */
9794#define IW_AUTH_KEY_MGMT_CCKM 8 /* Should be in linux/wireless.h */
9795 case WLAN_AKM_SUITE_CCKM:
9796 hddLog(VOS_TRACE_LEVEL_INFO, "%s: setting key mgmt type to CCKM",
9797 __func__);
9798 pWextState->authKeyMgmt |= IW_AUTH_KEY_MGMT_CCKM;
9799 break;
9800#endif
Leela Venkata Kiran Kumar Reddy Chiralae208a832014-04-27 22:34:25 -07009801#ifndef WLAN_AKM_SUITE_OSEN
9802#define WLAN_AKM_SUITE_OSEN 0x506f9a01 /* Should be in ieee802_11_defs.h */
9803 case WLAN_AKM_SUITE_OSEN:
9804 hddLog(VOS_TRACE_LEVEL_INFO, "%s: setting key mgmt type to OSEN",
9805 __func__);
9806 pWextState->authKeyMgmt |= IW_AUTH_KEY_MGMT_802_1X;
9807 break;
9808#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07009809
9810 default:
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309811 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Unsupported key mgmt type %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07009812 __func__, key_mgmt);
9813 return -EINVAL;
9814
9815 }
9816 return 0;
9817}
9818
9819/*
9820 * FUNCTION: wlan_hdd_cfg80211_set_cipher
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309821 * This function is used to set the encryption type
Jeff Johnson295189b2012-06-20 16:38:30 -07009822 * (NONE/WEP40/WEP104/TKIP/CCMP).
9823 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309824static int wlan_hdd_cfg80211_set_cipher( hdd_adapter_t *pAdapter,
9825 u32 cipher,
Jeff Johnson295189b2012-06-20 16:38:30 -07009826 bool ucast
9827 )
9828{
9829 eCsrEncryptionType encryptionType = eCSR_ENCRYPT_TYPE_NONE;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309830 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07009831 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
9832
9833 ENTER();
9834
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309835 if (!cipher)
Jeff Johnson295189b2012-06-20 16:38:30 -07009836 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309837 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: received cipher %d - considering none",
Jeff Johnson295189b2012-06-20 16:38:30 -07009838 __func__, cipher);
9839 encryptionType = eCSR_ENCRYPT_TYPE_NONE;
9840 }
9841 else
9842 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309843
Jeff Johnson295189b2012-06-20 16:38:30 -07009844 /*set encryption method*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309845 switch (cipher)
Jeff Johnson295189b2012-06-20 16:38:30 -07009846 {
9847 case IW_AUTH_CIPHER_NONE:
9848 encryptionType = eCSR_ENCRYPT_TYPE_NONE;
9849 break;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309850
Jeff Johnson295189b2012-06-20 16:38:30 -07009851 case WLAN_CIPHER_SUITE_WEP40:
Gopichand Nakkala29149562013-05-10 21:43:41 +05309852 encryptionType = eCSR_ENCRYPT_TYPE_WEP40;
Jeff Johnson295189b2012-06-20 16:38:30 -07009853 break;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309854
Jeff Johnson295189b2012-06-20 16:38:30 -07009855 case WLAN_CIPHER_SUITE_WEP104:
Gopichand Nakkala29149562013-05-10 21:43:41 +05309856 encryptionType = eCSR_ENCRYPT_TYPE_WEP104;
Jeff Johnson295189b2012-06-20 16:38:30 -07009857 break;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309858
Jeff Johnson295189b2012-06-20 16:38:30 -07009859 case WLAN_CIPHER_SUITE_TKIP:
9860 encryptionType = eCSR_ENCRYPT_TYPE_TKIP;
9861 break;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309862
Jeff Johnson295189b2012-06-20 16:38:30 -07009863 case WLAN_CIPHER_SUITE_CCMP:
9864 encryptionType = eCSR_ENCRYPT_TYPE_AES;
9865 break;
9866#ifdef FEATURE_WLAN_WAPI
9867 case WLAN_CIPHER_SUITE_SMS4:
9868 encryptionType = eCSR_ENCRYPT_TYPE_WPI;
9869 break;
9870#endif
9871
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08009872#ifdef FEATURE_WLAN_ESE
Jeff Johnson295189b2012-06-20 16:38:30 -07009873 case WLAN_CIPHER_SUITE_KRK:
9874 encryptionType = eCSR_ENCRYPT_TYPE_KRK;
9875 break;
9876#endif
9877 default:
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309878 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Unsupported cipher type %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07009879 __func__, cipher);
9880 return -EOPNOTSUPP;
9881 }
9882 }
9883
9884 if (ucast)
9885 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309886 hddLog(VOS_TRACE_LEVEL_INFO, "%s: setting unicast cipher type to %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07009887 __func__, encryptionType);
9888 pHddStaCtx->conn_info.ucEncryptionType = encryptionType;
9889 pWextState->roamProfile.EncryptionType.numEntries = 1;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309890 pWextState->roamProfile.EncryptionType.encryptionType[0] =
Jeff Johnson295189b2012-06-20 16:38:30 -07009891 encryptionType;
9892 }
9893 else
9894 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309895 hddLog(VOS_TRACE_LEVEL_INFO, "%s: setting mcast cipher type to %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07009896 __func__, encryptionType);
9897 pHddStaCtx->conn_info.mcEncryptionType = encryptionType;
9898 pWextState->roamProfile.mcEncryptionType.numEntries = 1;
9899 pWextState->roamProfile.mcEncryptionType.encryptionType[0] = encryptionType;
9900 }
9901
9902 return 0;
9903}
9904
9905
9906/*
9907 * FUNCTION: wlan_hdd_cfg80211_set_ie
9908 * This function is used to parse WPA/RSN IE's.
9909 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309910int wlan_hdd_cfg80211_set_ie( hdd_adapter_t *pAdapter,
9911 u8 *ie,
Jeff Johnson295189b2012-06-20 16:38:30 -07009912 size_t ie_len
9913 )
9914{
9915 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
9916 u8 *genie = ie;
9917 v_U16_t remLen = ie_len;
9918#ifdef FEATURE_WLAN_WAPI
9919 v_U32_t akmsuite[MAX_NUM_AKM_SUITES];
9920 u16 *tmp;
9921 v_U16_t akmsuiteCount;
9922 int *akmlist;
9923#endif
9924 ENTER();
9925
9926 /* clear previous assocAddIE */
9927 pWextState->assocAddIE.length = 0;
9928 pWextState->roamProfile.bWPSAssociation = VOS_FALSE;
Leela Venkata Kiran Kumar Reddy Chiralaf257bef2014-04-11 18:48:12 -07009929 pWextState->roamProfile.bOSENAssociation = VOS_FALSE;
Jeff Johnson295189b2012-06-20 16:38:30 -07009930
9931 while (remLen >= 2)
9932 {
9933 v_U16_t eLen = 0;
9934 v_U8_t elementId;
9935 elementId = *genie++;
9936 eLen = *genie++;
9937 remLen -= 2;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309938
Arif Hussain6d2a3322013-11-17 19:50:10 -08009939 hddLog(VOS_TRACE_LEVEL_INFO, "%s: IE[0x%X], LEN[%d]",
Jeff Johnson295189b2012-06-20 16:38:30 -07009940 __func__, elementId, eLen);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309941
9942 switch ( elementId )
Jeff Johnson295189b2012-06-20 16:38:30 -07009943 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309944 case DOT11F_EID_WPA:
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -07009945 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 -07009946 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309947 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07009948 "%s: Invalid WPA IE", __func__);
9949 return -EINVAL;
9950 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309951 else if (0 == memcmp(&genie[0], "\x00\x50\xf2\x04", 4))
Jeff Johnson295189b2012-06-20 16:38:30 -07009952 {
9953 v_U16_t curAddIELen = pWextState->assocAddIE.length;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309954 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set WPS IE(len %d)",
Jeff Johnson295189b2012-06-20 16:38:30 -07009955 __func__, eLen + 2);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309956
Jeff Johnson295189b2012-06-20 16:38:30 -07009957 if( SIR_MAC_MAX_IE_LENGTH < (pWextState->assocAddIE.length + eLen) )
9958 {
Jeff Johnson902c9832012-12-10 14:28:09 -08009959 hddLog(VOS_TRACE_LEVEL_FATAL, "Cannot accommodate assocAddIE. "
9960 "Need bigger buffer space");
Jeff Johnson295189b2012-06-20 16:38:30 -07009961 VOS_ASSERT(0);
9962 return -ENOMEM;
9963 }
9964 // WSC IE is saved to Additional IE ; it should be accumulated to handle WPS IE + P2P IE
9965 memcpy( pWextState->assocAddIE.addIEdata + curAddIELen, genie - 2, eLen + 2);
9966 pWextState->assocAddIE.length += eLen + 2;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309967
Jeff Johnson295189b2012-06-20 16:38:30 -07009968 pWextState->roamProfile.bWPSAssociation = VOS_TRUE;
9969 pWextState->roamProfile.pAddIEAssoc = pWextState->assocAddIE.addIEdata;
9970 pWextState->roamProfile.nAddIEAssocLength = pWextState->assocAddIE.length;
9971 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309972 else if (0 == memcmp(&genie[0], "\x00\x50\xf2", 3))
9973 {
Jeff Johnson295189b2012-06-20 16:38:30 -07009974 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set WPA IE (len %d)",__func__, eLen + 2);
9975 memset( pWextState->WPARSNIE, 0, MAX_WPA_RSN_IE_LEN );
9976 memcpy( pWextState->WPARSNIE, genie - 2, (eLen + 2) /*ie_len*/);
9977 pWextState->roamProfile.pWPAReqIE = pWextState->WPARSNIE;
9978 pWextState->roamProfile.nWPAReqIELength = eLen + 2;//ie_len;
9979 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309980 else if ( (0 == memcmp(&genie[0], P2P_OUI_TYPE,
Kiet Lam8da98992013-11-21 15:59:07 +05309981 P2P_OUI_TYPE_SIZE)))
Jeff Johnson295189b2012-06-20 16:38:30 -07009982 {
9983 v_U16_t curAddIELen = pWextState->assocAddIE.length;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309984 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set P2P IE(len %d)",
Jeff Johnson295189b2012-06-20 16:38:30 -07009985 __func__, eLen + 2);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309986
Jeff Johnson295189b2012-06-20 16:38:30 -07009987 if( SIR_MAC_MAX_IE_LENGTH < (pWextState->assocAddIE.length + eLen) )
9988 {
Jeff Johnson902c9832012-12-10 14:28:09 -08009989 hddLog(VOS_TRACE_LEVEL_FATAL, "Cannot accommodate assocAddIE "
9990 "Need bigger buffer space");
Jeff Johnson295189b2012-06-20 16:38:30 -07009991 VOS_ASSERT(0);
9992 return -ENOMEM;
9993 }
9994 // P2P IE is saved to Additional IE ; it should be accumulated to handle WPS IE + P2P IE
9995 memcpy( pWextState->assocAddIE.addIEdata + curAddIELen, genie - 2, eLen + 2);
9996 pWextState->assocAddIE.length += eLen + 2;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309997
Jeff Johnson295189b2012-06-20 16:38:30 -07009998 pWextState->roamProfile.pAddIEAssoc = pWextState->assocAddIE.addIEdata;
9999 pWextState->roamProfile.nAddIEAssocLength = pWextState->assocAddIE.length;
10000 }
Jeff Johnson295189b2012-06-20 16:38:30 -070010001#ifdef WLAN_FEATURE_WFD
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010002 else if ( (0 == memcmp(&genie[0], WFD_OUI_TYPE,
10003 WFD_OUI_TYPE_SIZE))
Jeff Johnson295189b2012-06-20 16:38:30 -070010004 /*Consider WFD IE, only for P2P Client */
10005 && (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode) )
10006 {
10007 v_U16_t curAddIELen = pWextState->assocAddIE.length;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010008 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set WFD IE(len %d)",
Jeff Johnson295189b2012-06-20 16:38:30 -070010009 __func__, eLen + 2);
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010010
Jeff Johnson295189b2012-06-20 16:38:30 -070010011 if( SIR_MAC_MAX_IE_LENGTH < (pWextState->assocAddIE.length + eLen) )
10012 {
Jeff Johnson902c9832012-12-10 14:28:09 -080010013 hddLog(VOS_TRACE_LEVEL_FATAL, "Cannot accommodate assocAddIE "
10014 "Need bigger buffer space");
Jeff Johnson295189b2012-06-20 16:38:30 -070010015 VOS_ASSERT(0);
10016 return -ENOMEM;
10017 }
10018 // WFD IE is saved to Additional IE ; it should be accumulated to handle
10019 // WPS IE + P2P IE + WFD IE
10020 memcpy( pWextState->assocAddIE.addIEdata + curAddIELen, genie - 2, eLen + 2);
10021 pWextState->assocAddIE.length += eLen + 2;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010022
Jeff Johnson295189b2012-06-20 16:38:30 -070010023 pWextState->roamProfile.pAddIEAssoc = pWextState->assocAddIE.addIEdata;
10024 pWextState->roamProfile.nAddIEAssocLength = pWextState->assocAddIE.length;
10025 }
10026#endif
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -070010027 /* Appending HS 2.0 Indication Element in Assiciation Request */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010028 else if ( (0 == memcmp(&genie[0], HS20_OUI_TYPE,
Madan Mohan Koyyalamudi1bed5982012-10-22 14:38:06 -070010029 HS20_OUI_TYPE_SIZE)) )
10030 {
10031 v_U16_t curAddIELen = pWextState->assocAddIE.length;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010032 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set HS20 IE(len %d)",
Madan Mohan Koyyalamudi1bed5982012-10-22 14:38:06 -070010033 __func__, eLen + 2);
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -070010034
Madan Mohan Koyyalamudi1bed5982012-10-22 14:38:06 -070010035 if( SIR_MAC_MAX_IE_LENGTH < (pWextState->assocAddIE.length + eLen) )
10036 {
Jeff Johnson902c9832012-12-10 14:28:09 -080010037 hddLog(VOS_TRACE_LEVEL_FATAL, "Cannot accommodate assocAddIE "
10038 "Need bigger buffer space");
Madan Mohan Koyyalamudi1bed5982012-10-22 14:38:06 -070010039 VOS_ASSERT(0);
10040 return -ENOMEM;
10041 }
10042 memcpy( pWextState->assocAddIE.addIEdata + curAddIELen, genie - 2, eLen + 2);
10043 pWextState->assocAddIE.length += eLen + 2;
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -070010044
Madan Mohan Koyyalamudi1bed5982012-10-22 14:38:06 -070010045 pWextState->roamProfile.pAddIEAssoc = pWextState->assocAddIE.addIEdata;
10046 pWextState->roamProfile.nAddIEAssocLength = pWextState->assocAddIE.length;
10047 }
Leela Venkata Kiran Kumar Reddy Chiralaf257bef2014-04-11 18:48:12 -070010048 /* Appending OSEN Information Element in Assiciation Request */
10049 else if ( (0 == memcmp(&genie[0], OSEN_OUI_TYPE,
10050 OSEN_OUI_TYPE_SIZE)) )
10051 {
10052 v_U16_t curAddIELen = pWextState->assocAddIE.length;
10053 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set OSEN IE(len %d)",
10054 __func__, eLen + 2);
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -070010055
Leela Venkata Kiran Kumar Reddy Chiralaf257bef2014-04-11 18:48:12 -070010056 if( SIR_MAC_MAX_IE_LENGTH < (pWextState->assocAddIE.length + eLen) )
10057 {
10058 hddLog(VOS_TRACE_LEVEL_FATAL, "Cannot accommodate assocAddIE "
10059 "Need bigger buffer space");
10060 VOS_ASSERT(0);
10061 return -ENOMEM;
10062 }
10063 memcpy( pWextState->assocAddIE.addIEdata + curAddIELen, genie - 2, eLen + 2);
10064 pWextState->assocAddIE.length += eLen + 2;
10065
10066 pWextState->roamProfile.bOSENAssociation = VOS_TRUE;
10067 pWextState->roamProfile.pAddIEAssoc = pWextState->assocAddIE.addIEdata;
10068 pWextState->roamProfile.nAddIEAssocLength = pWextState->assocAddIE.length;
10069 }
10070
10071 break;
Praveen Kumar Sirisilla7d68b7b2013-09-22 14:01:42 -070010072 if (WLAN_HDD_IBSS == pAdapter->device_mode) {
10073
10074 /* populating as ADDIE in beacon frames */
10075 if (ccmCfgSetStr(WLAN_HDD_GET_HAL_CTX(pAdapter),
10076 WNI_CFG_PROBE_RSP_BCN_ADDNIE_DATA, genie - 2, eLen + 2,
10077 NULL, eANI_BOOLEAN_FALSE)== eHAL_STATUS_SUCCESS)
10078 {
10079 if (ccmCfgSetInt(WLAN_HDD_GET_HAL_CTX(pAdapter),
10080 WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG, 1,NULL,
10081 eANI_BOOLEAN_FALSE) == eHAL_STATUS_FAILURE)
10082 {
10083 hddLog(LOGE,
10084 "Coldn't pass "
10085 "WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG to CCM");
10086 }
10087 }/* ccmCfgSetStr(,WNI_CFG_PROBE_RSP_BCN_ADDNIE_DATA, , )*/
10088 else
10089 hddLog(LOGE,
10090 "Could not pass on "
10091 "WNI_CFG_PROBE_RSP_BCN_ADDNIE_DATA to CCM");
10092
10093 /* IBSS mode doesn't contain params->proberesp_ies still
10094 beaconIE's need to be populated in probe response frames */
10095 if ( (NULL != (genie - 2)) && (0 != eLen + 2) )
10096 {
10097 u16 rem_probe_resp_ie_len = eLen + 2;
10098 u8 probe_rsp_ie_len[3] = {0};
10099 u8 counter = 0;
10100
10101 /* Check Probe Resp Length if it is greater then 255 then
10102 Store Probe Rsp IEs into WNI_CFG_PROBE_RSP_ADDNIE_DATA1
10103 & WNI_CFG_PROBE_RSP_ADDNIE_DATA2 CFG Variable As We are
10104 not able Store More then 255 bytes into One Variable */
10105
10106 while ((rem_probe_resp_ie_len > 0) && (counter < 3))
10107 {
10108 if (rem_probe_resp_ie_len > MAX_CFG_STRING_LEN)
10109 {
10110 probe_rsp_ie_len[counter++] = MAX_CFG_STRING_LEN;
10111 rem_probe_resp_ie_len -= MAX_CFG_STRING_LEN;
10112 }
10113 else
10114 {
10115 probe_rsp_ie_len[counter++] = rem_probe_resp_ie_len;
10116 rem_probe_resp_ie_len = 0;
10117 }
10118 }
10119
10120 rem_probe_resp_ie_len = 0;
10121
10122 if (probe_rsp_ie_len[0] > 0)
10123 {
10124 if (ccmCfgSetStr(WLAN_HDD_GET_HAL_CTX(pAdapter),
10125 WNI_CFG_PROBE_RSP_ADDNIE_DATA1,
10126 (tANI_U8*)(genie - 2),
10127 probe_rsp_ie_len[0], NULL,
10128 eANI_BOOLEAN_FALSE)
10129 == eHAL_STATUS_FAILURE)
10130 {
10131 hddLog(LOGE,
10132 "Could not pass"
10133 "on WNI_CFG_PROBE_RSP_ADDNIE_DATA1 to CCM");
10134 }
10135 rem_probe_resp_ie_len += probe_rsp_ie_len[0];
10136 }
10137
10138 if (probe_rsp_ie_len[1] > 0)
10139 {
10140 if (ccmCfgSetStr(WLAN_HDD_GET_HAL_CTX(pAdapter),
10141 WNI_CFG_PROBE_RSP_ADDNIE_DATA2,
10142 (tANI_U8*)(genie - (2 + rem_probe_resp_ie_len)),
10143 probe_rsp_ie_len[1], NULL,
10144 eANI_BOOLEAN_FALSE)
10145 == eHAL_STATUS_FAILURE)
10146 {
10147 hddLog(LOGE,
10148 "Could not pass"
10149 "on WNI_CFG_PROBE_RSP_ADDNIE_DATA2 to CCM");
10150 }
10151 rem_probe_resp_ie_len += probe_rsp_ie_len[1];
10152 }
10153
10154 if (probe_rsp_ie_len[2] > 0)
10155 {
10156 if (ccmCfgSetStr(WLAN_HDD_GET_HAL_CTX(pAdapter),
10157 WNI_CFG_PROBE_RSP_ADDNIE_DATA3,
10158 (tANI_U8*)(genie - (2 + rem_probe_resp_ie_len)),
10159 probe_rsp_ie_len[2], NULL,
10160 eANI_BOOLEAN_FALSE)
10161 == eHAL_STATUS_FAILURE)
10162 {
10163 hddLog(LOGE,
10164 "Could not pass"
10165 "on WNI_CFG_PROBE_RSP_ADDNIE_DATA3 to CCM");
10166 }
10167 rem_probe_resp_ie_len += probe_rsp_ie_len[2];
10168 }
10169
10170 if (ccmCfgSetInt(WLAN_HDD_GET_HAL_CTX(pAdapter),
10171 WNI_CFG_PROBE_RSP_ADDNIE_FLAG, 1,NULL,
10172 eANI_BOOLEAN_FALSE) == eHAL_STATUS_FAILURE)
10173 {
10174 hddLog(LOGE,
10175 "Could not pass"
10176 "on WNI_CFG_PROBE_RSP_ADDNIE_FLAG to CCM");
10177 }
10178 }
10179 else
10180 {
10181 // Reset WNI_CFG_PROBE_RSP Flags
10182 wlan_hdd_reset_prob_rspies(pAdapter);
10183
10184 hddLog(VOS_TRACE_LEVEL_INFO,
10185 "%s: No Probe Response IE received in set beacon",
10186 __func__);
10187 }
10188 } /* end of if (WLAN_HDD_IBSS == pAdapter->device_mode) */
Jeff Johnson295189b2012-06-20 16:38:30 -070010189 break;
10190 case DOT11F_EID_RSN:
10191 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set RSN IE(len %d)",__func__, eLen + 2);
10192 memset( pWextState->WPARSNIE, 0, MAX_WPA_RSN_IE_LEN );
10193 memcpy( pWextState->WPARSNIE, genie - 2, (eLen + 2)/*ie_len*/);
10194 pWextState->roamProfile.pRSNReqIE = pWextState->WPARSNIE;
10195 pWextState->roamProfile.nRSNReqIELength = eLen + 2; //ie_len;
10196 break;
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -070010197 /* Appending Extended Capabilities with Interworking bit set in Assoc Req */
10198 case DOT11F_EID_EXTCAP:
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010199 {
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -070010200 v_U16_t curAddIELen = pWextState->assocAddIE.length;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010201 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set Extended CAPS IE(len %d)",
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -070010202 __func__, eLen + 2);
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010203
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -070010204 if( SIR_MAC_MAX_IE_LENGTH < (pWextState->assocAddIE.length + eLen) )
10205 {
Jeff Johnson902c9832012-12-10 14:28:09 -080010206 hddLog(VOS_TRACE_LEVEL_FATAL, "Cannot accommodate assocAddIE "
10207 "Need bigger buffer space");
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -070010208 VOS_ASSERT(0);
10209 return -ENOMEM;
10210 }
10211 memcpy( pWextState->assocAddIE.addIEdata + curAddIELen, genie - 2, eLen + 2);
10212 pWextState->assocAddIE.length += eLen + 2;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010213
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -070010214 pWextState->roamProfile.pAddIEAssoc = pWextState->assocAddIE.addIEdata;
10215 pWextState->roamProfile.nAddIEAssocLength = pWextState->assocAddIE.length;
10216 break;
10217 }
Jeff Johnson295189b2012-06-20 16:38:30 -070010218#ifdef FEATURE_WLAN_WAPI
10219 case WLAN_EID_WAPI:
10220 pAdapter->wapi_info.nWapiMode = 1; //Setting WAPI Mode to ON=1
Jeff Johnson0299d0a2013-10-30 12:37:43 -070010221 hddLog(VOS_TRACE_LEVEL_INFO, "WAPI MODE IS %u",
Jeff Johnson295189b2012-06-20 16:38:30 -070010222 pAdapter->wapi_info.nWapiMode);
10223 tmp = (u16 *)ie;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010224 tmp = tmp + 2; // Skip element Id and Len, Version
Jeff Johnson295189b2012-06-20 16:38:30 -070010225 akmsuiteCount = WPA_GET_LE16(tmp);
10226 tmp = tmp + 1;
10227 akmlist = (int *)(tmp);
10228 if(akmsuiteCount <= MAX_NUM_AKM_SUITES)
10229 {
10230 memcpy(akmsuite, akmlist, (4*akmsuiteCount));
10231 }
10232 else
10233 {
Arif Hussain6d2a3322013-11-17 19:50:10 -080010234 hddLog(VOS_TRACE_LEVEL_FATAL, "Invalid akmSuite count");
Jeff Johnson295189b2012-06-20 16:38:30 -070010235 VOS_ASSERT(0);
10236 return -EINVAL;
10237 }
10238
10239 if (WAPI_PSK_AKM_SUITE == akmsuite[0])
10240 {
10241 hddLog(VOS_TRACE_LEVEL_INFO, "%s: WAPI AUTH MODE SET TO PSK",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -070010242 __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -070010243 pAdapter->wapi_info.wapiAuthMode = WAPI_AUTH_MODE_PSK;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010244 }
Jeff Johnson295189b2012-06-20 16:38:30 -070010245 if (WAPI_CERT_AKM_SUITE == akmsuite[0])
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010246 {
Jeff Johnson295189b2012-06-20 16:38:30 -070010247 hddLog(VOS_TRACE_LEVEL_INFO, "%s: WAPI AUTH MODE SET TO CERTIFICATE",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -070010248 __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -070010249 pAdapter->wapi_info.wapiAuthMode = WAPI_AUTH_MODE_CERT;
10250 }
10251 break;
10252#endif
10253 default:
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010254 hddLog (VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -070010255 "%s Set UNKNOWN IE %X", __func__, elementId);
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -070010256 /* when Unknown IE is received we should break and continue
10257 * to the next IE in the buffer instead we were returning
10258 * so changing this to break */
10259 break;
Jeff Johnson295189b2012-06-20 16:38:30 -070010260 }
10261 genie += eLen;
10262 remLen -= eLen;
10263 }
10264 EXIT();
10265 return 0;
10266}
10267
10268/*
Gopichand Nakkala18f0c262013-05-07 23:25:08 +053010269 * FUNCTION: hdd_isWPAIEPresent
10270 * Parse the received IE to find the WPA IE
10271 *
10272 */
10273static bool hdd_isWPAIEPresent(u8 *ie, u8 ie_len)
10274{
10275 v_U8_t eLen = 0;
10276 v_U16_t remLen = ie_len;
10277 v_U8_t elementId = 0;
10278
10279 while (remLen >= 2)
10280 {
10281 elementId = *ie++;
10282 eLen = *ie++;
10283 remLen -= 2;
10284 if (eLen > remLen)
10285 {
10286 hddLog(VOS_TRACE_LEVEL_ERROR,
10287 "%s: IE length is wrong %d", __func__, eLen);
10288 return FALSE;
10289 }
10290 if ((elementId == DOT11F_EID_WPA) && (remLen > 5))
10291 {
10292 /* OUI - 0x00 0X50 0XF2
10293 WPA Information Element - 0x01
10294 WPA version - 0x01*/
10295 if (0 == memcmp(&ie[0], "\x00\x50\xf2\x01\x01", 5))
10296 return TRUE;
10297 }
10298 ie += eLen;
10299 remLen -= eLen;
10300 }
10301 return FALSE;
10302}
10303
10304/*
Jeff Johnson295189b2012-06-20 16:38:30 -070010305 * FUNCTION: wlan_hdd_cfg80211_set_privacy
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010306 * This function is used to initialize the security
Jeff Johnson295189b2012-06-20 16:38:30 -070010307 * parameters during connect operation.
10308 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010309int wlan_hdd_cfg80211_set_privacy( hdd_adapter_t *pAdapter,
Jeff Johnson295189b2012-06-20 16:38:30 -070010310 struct cfg80211_connect_params *req
10311 )
10312{
10313 int status = 0;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010314 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -070010315 ENTER();
10316
10317 /*set wpa version*/
10318 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_DISABLED;
10319
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010320 if (req->crypto.wpa_versions)
Jeff Johnson295189b2012-06-20 16:38:30 -070010321 {
Gopichand Nakkala781ded42013-06-28 12:10:45 +053010322 if (NL80211_WPA_VERSION_1 == req->crypto.wpa_versions)
Jeff Johnson295189b2012-06-20 16:38:30 -070010323 {
10324 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_WPA;
10325 }
10326 else if (NL80211_WPA_VERSION_2 == req->crypto.wpa_versions)
10327 {
10328 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_WPA2;
10329 }
10330 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010331
10332 hddLog(VOS_TRACE_LEVEL_INFO, "%s: set wpa version to %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -070010333 pWextState->wpaVersion);
10334
10335 /*set authentication type*/
10336 status = wlan_hdd_cfg80211_set_auth_type(pAdapter, req->auth_type);
10337
10338 if (0 > status)
10339 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010340 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -070010341 "%s: failed to set authentication type ", __func__);
10342 return status;
10343 }
10344
10345 /*set key mgmt type*/
10346 if (req->crypto.n_akm_suites)
10347 {
10348 status = wlan_hdd_set_akm_suite(pAdapter, req->crypto.akm_suites[0]);
10349 if (0 > status)
10350 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010351 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to set akm suite",
Jeff Johnson295189b2012-06-20 16:38:30 -070010352 __func__);
10353 return status;
10354 }
10355 }
10356
10357 /*set pairwise cipher type*/
10358 if (req->crypto.n_ciphers_pairwise)
10359 {
10360 status = wlan_hdd_cfg80211_set_cipher(pAdapter,
10361 req->crypto.ciphers_pairwise[0], true);
10362 if (0 > status)
10363 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010364 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -070010365 "%s: failed to set unicast cipher type", __func__);
10366 return status;
10367 }
10368 }
10369 else
10370 {
10371 /*Reset previous cipher suite to none*/
10372 status = wlan_hdd_cfg80211_set_cipher(pAdapter, 0, true);
10373 if (0 > status)
10374 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010375 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -070010376 "%s: failed to set unicast cipher type", __func__);
10377 return status;
10378 }
10379 }
10380
10381 /*set group cipher type*/
10382 status = wlan_hdd_cfg80211_set_cipher(pAdapter, req->crypto.cipher_group,
10383 false);
10384
10385 if (0 > status)
10386 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010387 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to set mcast cipher type",
Jeff Johnson295189b2012-06-20 16:38:30 -070010388 __func__);
10389 return status;
10390 }
10391
Chet Lanctot186b5732013-03-18 10:26:30 -070010392#ifdef WLAN_FEATURE_11W
10393 pWextState->roamProfile.MFPEnabled = (req->mfp == NL80211_MFP_REQUIRED);
10394#endif
10395
Jeff Johnson295189b2012-06-20 16:38:30 -070010396 /*parse WPA/RSN IE, and set the correspoing fileds in Roam profile*/
10397 if (req->ie_len)
10398 {
10399 status = wlan_hdd_cfg80211_set_ie(pAdapter, req->ie, req->ie_len);
10400 if ( 0 > status)
10401 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010402 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to parse the WPA/RSN IE",
Jeff Johnson295189b2012-06-20 16:38:30 -070010403 __func__);
10404 return status;
10405 }
10406 }
10407
10408 /*incase of WEP set default key information*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010409 if (req->key && req->key_len)
Jeff Johnson295189b2012-06-20 16:38:30 -070010410 {
10411 if ( (WLAN_CIPHER_SUITE_WEP40 == req->crypto.ciphers_pairwise[0])
10412 || (WLAN_CIPHER_SUITE_WEP104 == req->crypto.ciphers_pairwise[0])
10413 )
10414 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010415 if ( IW_AUTH_KEY_MGMT_802_1X
Jeff Johnson295189b2012-06-20 16:38:30 -070010416 == (pWextState->authKeyMgmt & IW_AUTH_KEY_MGMT_802_1X ))
10417 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010418 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Dynamic WEP not supported",
Jeff Johnson295189b2012-06-20 16:38:30 -070010419 __func__);
10420 return -EOPNOTSUPP;
10421 }
10422 else
10423 {
10424 u8 key_len = req->key_len;
10425 u8 key_idx = req->key_idx;
10426
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010427 if ((eCSR_SECURITY_WEP_KEYSIZE_MAX_BYTES >= key_len)
Jeff Johnson295189b2012-06-20 16:38:30 -070010428 && (CSR_MAX_NUM_KEY > key_idx)
10429 )
10430 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010431 hddLog(VOS_TRACE_LEVEL_INFO,
10432 "%s: setting default wep key, key_idx = %hu key_len %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -070010433 __func__, key_idx, key_len);
10434 vos_mem_copy(
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010435 &pWextState->roamProfile.Keys.KeyMaterial[key_idx][0],
Jeff Johnson295189b2012-06-20 16:38:30 -070010436 req->key, key_len);
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010437 pWextState->roamProfile.Keys.KeyLength[key_idx] =
Jeff Johnson295189b2012-06-20 16:38:30 -070010438 (u8)key_len;
10439 pWextState->roamProfile.Keys.defaultIndex = (u8)key_idx;
10440 }
10441 }
10442 }
10443 }
10444
10445 return status;
10446}
10447
10448/*
Vinay Krishna Eranna21042322014-01-08 19:21:39 +053010449 * FUNCTION: wlan_hdd_try_disconnect
10450 * This function is used to disconnect from previous
10451 * connection
10452 */
10453static int wlan_hdd_try_disconnect( hdd_adapter_t *pAdapter )
10454{
10455 long ret = 0;
10456 hdd_station_ctx_t *pHddStaCtx;
10457 eMib_dot11DesiredBssType connectedBssType;
10458
10459 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
10460
10461 hdd_connGetConnectedBssType(pHddStaCtx,&connectedBssType );
10462
10463 if((eMib_dot11DesiredBssType_independent == connectedBssType) ||
10464 (eConnectionState_Associated == pHddStaCtx->conn_info.connState) ||
10465 (eConnectionState_IbssConnected == pHddStaCtx->conn_info.connState))
10466 {
10467 /* Issue disconnect to CSR */
10468 INIT_COMPLETION(pAdapter->disconnect_comp_var);
10469 if( eHAL_STATUS_SUCCESS ==
10470 sme_RoamDisconnect( WLAN_HDD_GET_HAL_CTX(pAdapter),
10471 pAdapter->sessionId,
10472 eCSR_DISCONNECT_REASON_UNSPECIFIED ) )
10473 {
10474 ret = wait_for_completion_interruptible_timeout(
10475 &pAdapter->disconnect_comp_var,
10476 msecs_to_jiffies(WLAN_WAIT_TIME_DISCONNECT));
10477 if (0 >= ret)
10478 {
10479 hddLog(LOGE, FL("Failed to receive disconnect event"));
10480 return -EALREADY;
10481 }
10482 }
10483 }
10484 else if(eConnectionState_Disconnecting == pHddStaCtx->conn_info.connState)
10485 {
10486 ret = wait_for_completion_interruptible_timeout(
10487 &pAdapter->disconnect_comp_var,
10488 msecs_to_jiffies(WLAN_WAIT_TIME_DISCONNECT));
10489 if (0 >= ret)
10490 {
10491 hddLog(LOGE, FL("Failed to receive disconnect event"));
10492 return -EALREADY;
10493 }
10494 }
10495
10496 return 0;
10497}
10498
10499/*
Agarwal Ashish51325b52014-06-16 16:50:49 +053010500 * FUNCTION: __wlan_hdd_cfg80211_connect
10501 * This function is used to start the association process
Jeff Johnson295189b2012-06-20 16:38:30 -070010502 */
Mahesh A Saptasagarfafb7fe2014-05-16 13:19:37 +053010503static int __wlan_hdd_cfg80211_connect( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -070010504 struct net_device *ndev,
10505 struct cfg80211_connect_params *req
10506 )
10507{
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010508 int status;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010509 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( ndev );
Jeff Johnson295189b2012-06-20 16:38:30 -070010510 VOS_STATUS exitbmpsStatus = VOS_STATUS_E_INVAL;
Sushant Kaushikba6764e2014-06-30 19:52:09 +053010511 hdd_context_t *pHddCtx = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -070010512
10513 ENTER();
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053010514
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053010515 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
10516 TRACE_CODE_HDD_CFG80211_CONNECT,
10517 pAdapter->sessionId, pAdapter->device_mode));
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010518 hddLog(VOS_TRACE_LEVEL_INFO,
Sushant Kaushik8bc7df22014-04-09 17:55:29 +053010519 "%s: device_mode = %s (%d)", __func__,
10520 hdd_device_modetoString(pAdapter->device_mode),
10521 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -070010522
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010523 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Rajesh Chauhana0516c62014-01-30 16:11:18 -080010524 if (!pHddCtx)
10525 {
10526 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10527 "%s: HDD context is null", __func__);
Agarwal Ashish51325b52014-06-16 16:50:49 +053010528 return -EINVAL;
Rajesh Chauhana0516c62014-01-30 16:11:18 -080010529 }
10530
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010531 status = wlan_hdd_validate_context(pHddCtx);
10532
10533 if (0 != status)
Jeff Johnson295189b2012-06-20 16:38:30 -070010534 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010535 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10536 "%s: HDD context is not valid", __func__);
10537 return status;
Jeff Johnson295189b2012-06-20 16:38:30 -070010538 }
10539
Agarwal Ashish51325b52014-06-16 16:50:49 +053010540 if (vos_max_concurrent_connections_reached()) {
10541 hddLog(VOS_TRACE_LEVEL_INFO, FL("Reached max concurrent connections"));
10542 return -ECONNREFUSED;
10543 }
10544
Jeff Johnson295189b2012-06-20 16:38:30 -070010545#ifdef WLAN_BTAMP_FEATURE
10546 //Infra connect not supported when AMP traffic is on.
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010547 if( VOS_TRUE == WLANBAP_AmpSessionOn() )
Jeff Johnson295189b2012-06-20 16:38:30 -070010548 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010549 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -070010550 "%s: No connection when AMP is on", __func__);
Madan Mohan Koyyalamudicae253a2012-11-06 19:10:35 -080010551 return -ECONNREFUSED;
Jeff Johnson295189b2012-06-20 16:38:30 -070010552 }
10553#endif
Vinay Krishna Eranna21042322014-01-08 19:21:39 +053010554
10555 //If Device Mode is Station Concurrent Sessions Exit BMps
10556 //P2P Mode will be taken care in Open/close adapter
10557 if((WLAN_HDD_INFRA_STATION == pAdapter->device_mode) &&
Agarwal Ashish51325b52014-06-16 16:50:49 +053010558 (vos_concurrent_open_sessions_running())) {
10559 exitbmpsStatus = hdd_disable_bmps_imps(pHddCtx,
10560 WLAN_HDD_INFRA_STATION);
Vinay Krishna Eranna21042322014-01-08 19:21:39 +053010561 }
10562
10563 /*Try disconnecting if already in connected state*/
10564 status = wlan_hdd_try_disconnect(pAdapter);
10565 if ( 0 > status)
10566 {
10567 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Failed to disconnect the existing"
10568 " connection"));
10569 return -EALREADY;
10570 }
10571
Jeff Johnson295189b2012-06-20 16:38:30 -070010572 /*initialise security parameters*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010573 status = wlan_hdd_cfg80211_set_privacy(pAdapter, req);
Jeff Johnson295189b2012-06-20 16:38:30 -070010574
10575 if ( 0 > status)
10576 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010577 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to set security params",
Jeff Johnson295189b2012-06-20 16:38:30 -070010578 __func__);
10579 return status;
10580 }
Mohit Khanna765234a2012-09-11 15:08:35 -070010581 if ( req->channel )
10582 {
10583 status = wlan_hdd_cfg80211_connect_start(pAdapter, req->ssid,
10584 req->ssid_len, req->bssid,
10585 req->channel->hw_value);
10586 }
10587 else
10588 {
10589 status = wlan_hdd_cfg80211_connect_start(pAdapter, req->ssid,
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010590 req->ssid_len, req->bssid, 0);
Mohit Khanna765234a2012-09-11 15:08:35 -070010591 }
Jeff Johnson295189b2012-06-20 16:38:30 -070010592
10593 if (0 > status)
10594 {
10595 //ReEnable BMPS if disabled
10596 if((VOS_STATUS_SUCCESS == exitbmpsStatus) &&
10597 (NULL != pHddCtx))
10598 {
Gopichand Nakkalaa2fe5b02013-06-06 16:32:28 +053010599 if (pHddCtx->hdd_wlan_suspended)
10600 {
10601 hdd_set_pwrparams(pHddCtx);
10602 }
Jeff Johnson295189b2012-06-20 16:38:30 -070010603 //ReEnable Bmps and Imps back
10604 hdd_enable_bmps_imps(pHddCtx);
10605 }
Agarwal Ashish51325b52014-06-16 16:50:49 +053010606 hddLog(VOS_TRACE_LEVEL_ERROR, FL("connect failed"));
Jeff Johnson295189b2012-06-20 16:38:30 -070010607 return status;
10608 }
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010609 pHddCtx->isAmpAllowed = VOS_FALSE;
Jeff Johnson295189b2012-06-20 16:38:30 -070010610 EXIT();
10611 return status;
10612}
10613
Mahesh A Saptasagarfafb7fe2014-05-16 13:19:37 +053010614static int wlan_hdd_cfg80211_connect( struct wiphy *wiphy,
10615 struct net_device *ndev,
10616 struct cfg80211_connect_params *req)
10617{
10618 int ret;
10619 vos_ssr_protect(__func__);
10620 ret = __wlan_hdd_cfg80211_connect(wiphy, ndev, req);
10621 vos_ssr_unprotect(__func__);
10622
10623 return ret;
10624}
Jeff Johnson295189b2012-06-20 16:38:30 -070010625
10626/*
Gopichand Nakkala78a6c812013-05-13 16:39:49 +053010627 * FUNCTION: wlan_hdd_disconnect
10628 * This function is used to issue a disconnect request to SME
10629 */
10630int wlan_hdd_disconnect( hdd_adapter_t *pAdapter, u16 reason )
10631{
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010632 int status;
Gopichand Nakkala78a6c812013-05-13 16:39:49 +053010633 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010634 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Abhishek Singhdc2bfd42014-06-19 17:59:05 +053010635 long ret;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010636
10637 status = wlan_hdd_validate_context(pHddCtx);
10638
10639 if (0 != status)
10640 {
10641 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10642 "%s: HDD context is not valid", __func__);
10643 return status;
10644 }
10645
10646 pHddCtx->isAmpAllowed = VOS_TRUE;
Agarwal Ashishc65b5ca2014-07-28 21:02:57 +053010647
Agarwal Ashish47d18112014-08-04 19:55:07 +053010648 /* Need to apply spin lock before decreasing active sessions
10649 * as there can be chance for double decrement if context switch
10650 * Calls hdd_DisConnectHandler.
10651 */
10652
10653 spin_lock_bh(&pAdapter->lock_for_active_session);
Agarwal Ashishc65b5ca2014-07-28 21:02:57 +053010654 if (eConnectionState_Associated == pHddStaCtx->conn_info.connState)
10655 {
Agarwal Ashishc65b5ca2014-07-28 21:02:57 +053010656 wlan_hdd_decr_active_session(pHddCtx, pAdapter->device_mode);
10657 }
Agarwal Ashish47d18112014-08-04 19:55:07 +053010658 hdd_connSetConnectionState( pHddStaCtx, eConnectionState_Disconnecting );
10659 spin_unlock_bh(&pAdapter->lock_for_active_session);
Agarwal Ashishc65b5ca2014-07-28 21:02:57 +053010660
Abhishek Singhf4669da2014-05-26 15:07:49 +053010661 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Agarwal Ashish47d18112014-08-04 19:55:07 +053010662 FL( "Set HDD connState to eConnectionState_Disconnecting" ));
10663
Gopichand Nakkala78a6c812013-05-13 16:39:49 +053010664 INIT_COMPLETION(pAdapter->disconnect_comp_var);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010665
Mihir Shete182a0b22014-08-18 16:08:48 +053010666 /*
10667 * stop tx queues before deleting STA/BSS context from the firmware.
10668 * tx has to be disabled because the firmware can get busy dropping
10669 * the tx frames after BSS/STA has been deleted and will not send
10670 * back a response resulting in WDI timeout
10671 */
10672 netif_tx_disable(pAdapter->dev);
10673 netif_carrier_off(pAdapter->dev);
Arun Kumar Khandavalli94a2bb02013-12-28 19:17:25 +053010674
Mihir Shete182a0b22014-08-18 16:08:48 +053010675 /*issue disconnect*/
Gopichand Nakkala78a6c812013-05-13 16:39:49 +053010676 status = sme_RoamDisconnect( WLAN_HDD_GET_HAL_CTX(pAdapter),
10677 pAdapter->sessionId, reason);
Abhishek Singhdc2bfd42014-06-19 17:59:05 +053010678 if(eHAL_STATUS_CMD_NOT_QUEUED == status)
10679 {
10680 hddLog(VOS_TRACE_LEVEL_INFO,
10681 FL("status = %d, already disconnected"),
10682 (int)status );
Gopichand Nakkala78a6c812013-05-13 16:39:49 +053010683
Abhishek Singhdc2bfd42014-06-19 17:59:05 +053010684 }
10685 else if ( 0 != status )
Gopichand Nakkala78a6c812013-05-13 16:39:49 +053010686 {
10687 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -080010688 "%s csrRoamDisconnect failure, returned %d",
Gopichand Nakkala78a6c812013-05-13 16:39:49 +053010689 __func__, (int)status );
10690 return -EINVAL;
10691 }
Abhishek Singhdc2bfd42014-06-19 17:59:05 +053010692 ret = wait_for_completion_interruptible_timeout(
Gopichand Nakkala78a6c812013-05-13 16:39:49 +053010693 &pAdapter->disconnect_comp_var,
10694 msecs_to_jiffies(WLAN_WAIT_TIME_DISCONNECT));
Abhishek Singhdc2bfd42014-06-19 17:59:05 +053010695 if (!ret && ( eHAL_STATUS_CMD_NOT_QUEUED != status ))
c_hpothu6ff1c3c2013-10-01 19:01:57 +053010696 {
10697 hddLog(VOS_TRACE_LEVEL_ERROR,
Mahesh A Saptasagar05a357e2014-02-26 16:28:06 +053010698 "%s: Failed to disconnect, timed out", __func__);
10699 return -ETIMEDOUT;
10700 }
Abhishek Singhdc2bfd42014-06-19 17:59:05 +053010701 else if (ret == -ERESTARTSYS)
Mahesh A Saptasagar05a357e2014-02-26 16:28:06 +053010702 {
10703 hddLog(VOS_TRACE_LEVEL_ERROR,
10704 "%s: Failed to disconnect, wait interrupted", __func__);
Abhishek Singhdc2bfd42014-06-19 17:59:05 +053010705 return ret;
c_hpothu6ff1c3c2013-10-01 19:01:57 +053010706 }
Abhishek Singhdc2bfd42014-06-19 17:59:05 +053010707 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
10708 FL("Set HDD connState to eConnectionState_NotConnected"));
10709 pHddStaCtx->conn_info.connState = eConnectionState_NotConnected;
10710
Mahesh A Saptasagar05a357e2014-02-26 16:28:06 +053010711 return 0;
Gopichand Nakkala78a6c812013-05-13 16:39:49 +053010712}
10713
10714
10715/*
Mahesh A Saptasagarfafb7fe2014-05-16 13:19:37 +053010716 * FUNCTION: __wlan_hdd_cfg80211_disconnect
Jeff Johnson295189b2012-06-20 16:38:30 -070010717 * This function is used to issue a disconnect request to SME
10718 */
Mahesh A Saptasagarfafb7fe2014-05-16 13:19:37 +053010719static int __wlan_hdd_cfg80211_disconnect( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -070010720 struct net_device *dev,
10721 u16 reason
10722 )
10723{
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010724 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053010725 tCsrRoamProfile *pRoamProfile =
10726 &(WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter))->roamProfile;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010727 int status;
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053010728 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
10729 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Gopichand Nakkalaaa353782013-05-17 20:36:22 +053010730#ifdef FEATURE_WLAN_TDLS
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -080010731 tANI_U8 staIdx;
10732#endif
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010733
Jeff Johnson295189b2012-06-20 16:38:30 -070010734 ENTER();
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053010735
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053010736 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
10737 TRACE_CODE_HDD_CFG80211_DISCONNECT,
10738 pAdapter->sessionId, reason));
Sushant Kaushik8bc7df22014-04-09 17:55:29 +053010739 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s(%d)",
10740 __func__, hdd_device_modetoString(pAdapter->device_mode),
10741 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -070010742
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010743 hddLog(VOS_TRACE_LEVEL_INFO, "%s: Disconnect called with reason code %d",
10744 __func__, reason);
Jeff Johnson295189b2012-06-20 16:38:30 -070010745
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010746 status = wlan_hdd_validate_context(pHddCtx);
10747
10748 if (0 != status)
Jeff Johnson295189b2012-06-20 16:38:30 -070010749 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010750 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10751 "%s: HDD context is not valid", __func__);
10752 return status;
Jeff Johnson295189b2012-06-20 16:38:30 -070010753 }
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010754
Jeff Johnson295189b2012-06-20 16:38:30 -070010755 if (NULL != pRoamProfile)
10756 {
10757 /*issue disconnect request to SME, if station is in connected state*/
Mahesh A Saptasagar280fd5a2013-12-05 15:38:31 +053010758 if ((pHddStaCtx->conn_info.connState == eConnectionState_Associated) ||
10759 (pHddStaCtx->conn_info.connState == eConnectionState_Connecting))
Jeff Johnson295189b2012-06-20 16:38:30 -070010760 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010761 eCsrRoamDisconnectReason reasonCode =
Jeff Johnson295189b2012-06-20 16:38:30 -070010762 eCSR_DISCONNECT_REASON_UNSPECIFIED;
Gopichand Nakkalaaa353782013-05-17 20:36:22 +053010763 hdd_scaninfo_t *pScanInfo;
Jeff Johnson295189b2012-06-20 16:38:30 -070010764 switch(reason)
10765 {
10766 case WLAN_REASON_MIC_FAILURE:
10767 reasonCode = eCSR_DISCONNECT_REASON_MIC_ERROR;
10768 break;
10769
10770 case WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY:
10771 case WLAN_REASON_DISASSOC_AP_BUSY:
10772 case WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA:
10773 reasonCode = eCSR_DISCONNECT_REASON_DISASSOC;
10774 break;
10775
10776 case WLAN_REASON_PREV_AUTH_NOT_VALID:
10777 case WLAN_REASON_CLASS2_FRAME_FROM_NONAUTH_STA:
Abhishek Singhc3269a52014-05-21 17:22:24 +053010778 case WLAN_REASON_DEAUTH_LEAVING:
Jeff Johnson295189b2012-06-20 16:38:30 -070010779 reasonCode = eCSR_DISCONNECT_REASON_DEAUTH;
10780 break;
10781
Jeff Johnson295189b2012-06-20 16:38:30 -070010782 default:
10783 reasonCode = eCSR_DISCONNECT_REASON_UNSPECIFIED;
10784 break;
10785 }
Gopichand Nakkalaaa353782013-05-17 20:36:22 +053010786 pScanInfo = &pHddCtx->scan_info;
10787 if (pScanInfo->mScanPending)
10788 {
Srinivas, Dasari138af4f2014-02-07 11:13:45 +053010789 hddLog(VOS_TRACE_LEVEL_INFO, "Disconnect is in progress, "
Gopichand Nakkalaaa353782013-05-17 20:36:22 +053010790 "Aborting Scan");
Srinivas, Dasari138af4f2014-02-07 11:13:45 +053010791 hdd_abort_mac_scan(pHddCtx, pAdapter->sessionId,
10792 eCSR_SCAN_ABORT_DEFAULT);
Gopichand Nakkalaaa353782013-05-17 20:36:22 +053010793 }
Jeff Johnson295189b2012-06-20 16:38:30 -070010794
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -080010795#ifdef FEATURE_WLAN_TDLS
10796 /* First clean up the tdls peers if any */
Gopichand Nakkala4327a152013-03-04 23:22:42 -080010797 for (staIdx = 0 ; staIdx < HDD_MAX_NUM_TDLS_STA; staIdx++)
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -080010798 {
Gopichand Nakkala4327a152013-03-04 23:22:42 -080010799 if ((pHddCtx->tdlsConnInfo[staIdx].sessionId == pAdapter->sessionId) &&
10800 (pHddCtx->tdlsConnInfo[staIdx].staId))
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -080010801 {
Hoonki Lee11f7dda2013-02-14 16:55:44 -080010802 uint8 *mac;
Gopichand Nakkala4327a152013-03-04 23:22:42 -080010803 mac = pHddCtx->tdlsConnInfo[staIdx].peerMac.bytes;
Hoonki Lee11f7dda2013-02-14 16:55:44 -080010804 VOS_TRACE(VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070010805 "%s: call sme_DeleteTdlsPeerSta staId %d sessionId %d " MAC_ADDRESS_STR,
Gopichand Nakkala4327a152013-03-04 23:22:42 -080010806 __func__, pHddCtx->tdlsConnInfo[staIdx].staId, pAdapter->sessionId,
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070010807 MAC_ADDR_ARRAY(mac));
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -080010808 sme_DeleteTdlsPeerSta(WLAN_HDD_GET_HAL_CTX(pAdapter),
Gopichand Nakkala4327a152013-03-04 23:22:42 -080010809 pAdapter->sessionId,
10810 mac);
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -080010811 }
10812 }
10813#endif
Arun Kumar Khandavalli94a2bb02013-12-28 19:17:25 +053010814 hddLog(LOG1, FL("Disconnecting with reasoncode:%u"), reasonCode);
Gopichand Nakkala78a6c812013-05-13 16:39:49 +053010815 status = wlan_hdd_disconnect(pAdapter, reasonCode);
10816 if ( 0 != status )
Jeff Johnson295189b2012-06-20 16:38:30 -070010817 {
10818 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -080010819 "%s wlan_hdd_disconnect failure, returned %d",
Jeff Johnson295189b2012-06-20 16:38:30 -070010820 __func__, (int)status );
10821 return -EINVAL;
10822 }
Jeff Johnson295189b2012-06-20 16:38:30 -070010823 }
Mahesh A Saptasagar280fd5a2013-12-05 15:38:31 +053010824 else
10825 {
10826 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: unexpected cfg disconnect API"
10827 "called while in %d state", __func__,
10828 pHddStaCtx->conn_info.connState);
10829 }
Jeff Johnson295189b2012-06-20 16:38:30 -070010830 }
10831 else
10832 {
10833 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: No valid roam profile", __func__);
10834 }
10835
10836 return status;
10837}
10838
Mahesh A Saptasagarfafb7fe2014-05-16 13:19:37 +053010839static int wlan_hdd_cfg80211_disconnect( struct wiphy *wiphy,
10840 struct net_device *dev,
10841 u16 reason
10842 )
10843{
10844 int ret;
10845 vos_ssr_protect(__func__);
10846 ret = __wlan_hdd_cfg80211_disconnect(wiphy, dev, reason);
10847 vos_ssr_unprotect(__func__);
10848
10849 return ret;
10850}
Gopichand Nakkala78a6c812013-05-13 16:39:49 +053010851
Jeff Johnson295189b2012-06-20 16:38:30 -070010852/*
10853 * FUNCTION: wlan_hdd_cfg80211_set_privacy_ibss
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010854 * This function is used to initialize the security
Jeff Johnson295189b2012-06-20 16:38:30 -070010855 * settings in IBSS mode.
10856 */
10857static int wlan_hdd_cfg80211_set_privacy_ibss(
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010858 hdd_adapter_t *pAdapter,
Jeff Johnson295189b2012-06-20 16:38:30 -070010859 struct cfg80211_ibss_params *params
10860 )
10861{
10862 int status = 0;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010863 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -070010864 eCsrEncryptionType encryptionType = eCSR_ENCRYPT_TYPE_NONE;
10865 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010866
Jeff Johnson295189b2012-06-20 16:38:30 -070010867 ENTER();
10868
10869 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_DISABLED;
Ravi Joshib58ca0d2013-10-29 09:50:23 -070010870 vos_mem_zero(&pHddStaCtx->ibss_enc_key, sizeof(tCsrRoamSetKey));
Jeff Johnson295189b2012-06-20 16:38:30 -070010871
10872 if (params->ie_len && ( NULL != params->ie) )
10873 {
Shailender Karmuchi67edd312013-06-18 16:30:48 -070010874 if (wlan_hdd_cfg80211_get_ie_ptr (params->ie,
10875 params->ie_len, WLAN_EID_RSN ))
Jeff Johnson295189b2012-06-20 16:38:30 -070010876 {
10877 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_WPA2;
10878 encryptionType = eCSR_ENCRYPT_TYPE_AES;
10879 }
Shailender Karmuchi67edd312013-06-18 16:30:48 -070010880 else if ( hdd_isWPAIEPresent (params->ie, params->ie_len ))
Jeff Johnson295189b2012-06-20 16:38:30 -070010881 {
Shailender Karmuchi642e9812013-05-30 14:34:49 -070010882 tDot11fIEWPA dot11WPAIE;
10883 tHalHandle halHandle = WLAN_HDD_GET_HAL_CTX(pAdapter);
Shailender Karmuchi67edd312013-06-18 16:30:48 -070010884 u8 *ie;
Shailender Karmuchi642e9812013-05-30 14:34:49 -070010885
Wilson Yang00256342013-10-10 23:13:38 -070010886 memset(&dot11WPAIE, 0, sizeof(dot11WPAIE));
Shailender Karmuchi67edd312013-06-18 16:30:48 -070010887 ie = wlan_hdd_cfg80211_get_ie_ptr (params->ie,
10888 params->ie_len, DOT11F_EID_WPA);
10889 if ( NULL != ie )
10890 {
10891 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_WPA;
10892 // Unpack the WPA IE
10893 //Skip past the EID byte and length byte - and four byte WiFi OUI
10894 dot11fUnpackIeWPA((tpAniSirGlobal) halHandle,
10895 &ie[2+4],
10896 ie[1] - 4,
10897 &dot11WPAIE);
10898 /*Extract the multicast cipher, the encType for unicast
10899 cipher for wpa-none is none*/
10900 encryptionType =
10901 hdd_TranslateWPAToCsrEncryptionType(dot11WPAIE.multicast_cipher);
10902 }
Jeff Johnson295189b2012-06-20 16:38:30 -070010903 }
Shailender Karmuchi67edd312013-06-18 16:30:48 -070010904
Jeff Johnson295189b2012-06-20 16:38:30 -070010905 status = wlan_hdd_cfg80211_set_ie(pAdapter, params->ie, params->ie_len);
10906
10907 if (0 > status)
10908 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010909 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to parse WPA/RSN IE",
Jeff Johnson295189b2012-06-20 16:38:30 -070010910 __func__);
10911 return status;
10912 }
10913 }
10914
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010915 pWextState->roamProfile.AuthType.authType[0] =
10916 pHddStaCtx->conn_info.authType =
Jeff Johnson295189b2012-06-20 16:38:30 -070010917 eCSR_AUTH_TYPE_OPEN_SYSTEM;
10918
10919 if (params->privacy)
10920 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010921 /* Security enabled IBSS, At this time there is no information available
10922 * about the security paramters, so initialise the encryption type to
Jeff Johnson295189b2012-06-20 16:38:30 -070010923 * eCSR_ENCRYPT_TYPE_WEP40_STATICKEY.
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010924 * The correct security parameters will be updated later in
Jeff Johnson295189b2012-06-20 16:38:30 -070010925 * wlan_hdd_cfg80211_add_key */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010926 /* Hal expects encryption type to be set inorder
Jeff Johnson295189b2012-06-20 16:38:30 -070010927 *enable privacy bit in beacons */
10928
10929 encryptionType = eCSR_ENCRYPT_TYPE_WEP40_STATICKEY;
10930 }
Shailender Karmuchi642e9812013-05-30 14:34:49 -070010931 VOS_TRACE (VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO_HIGH,
10932 "encryptionType=%d", encryptionType);
Jeff Johnson295189b2012-06-20 16:38:30 -070010933 pHddStaCtx->conn_info.ucEncryptionType = encryptionType;
10934 pWextState->roamProfile.EncryptionType.numEntries = 1;
10935 pWextState->roamProfile.EncryptionType.encryptionType[0] = encryptionType;
Jeff Johnson295189b2012-06-20 16:38:30 -070010936 return status;
10937}
10938
10939/*
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053010940 * FUNCTION: __wlan_hdd_cfg80211_join_ibss
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010941 * This function is used to create/join an IBSS
Jeff Johnson295189b2012-06-20 16:38:30 -070010942 */
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053010943static int __wlan_hdd_cfg80211_join_ibss( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -070010944 struct net_device *dev,
10945 struct cfg80211_ibss_params *params
10946 )
10947{
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010948 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
Jeff Johnson295189b2012-06-20 16:38:30 -070010949 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
10950 tCsrRoamProfile *pRoamProfile;
10951 int status;
krunal sonie9002db2013-11-25 14:24:17 -080010952 bool alloc_bssid = VOS_FALSE;
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053010953 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
10954 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -070010955
10956 ENTER();
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053010957
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053010958 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
10959 TRACE_CODE_HDD_CFG80211_JOIN_IBSS,
10960 pAdapter->sessionId, pAdapter->device_mode));
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010961 hddLog(VOS_TRACE_LEVEL_INFO,
Sushant Kaushik8bc7df22014-04-09 17:55:29 +053010962 "%s: device_mode = %s (%d)", __func__,
10963 hdd_device_modetoString(pAdapter->device_mode),
10964 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -070010965
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010966 status = wlan_hdd_validate_context(pHddCtx);
10967
10968 if (0 != status)
Jeff Johnson295189b2012-06-20 16:38:30 -070010969 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010970 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10971 "%s: HDD context is not valid", __func__);
10972 return status;
Jeff Johnson295189b2012-06-20 16:38:30 -070010973 }
10974
10975 if (NULL == pWextState)
10976 {
Arif Hussain6d2a3322013-11-17 19:50:10 -080010977 hddLog (VOS_TRACE_LEVEL_ERROR, "%s ERROR: Data Storage Corruption",
Jeff Johnson295189b2012-06-20 16:38:30 -070010978 __func__);
10979 return -EIO;
10980 }
10981
Agarwal Ashish51325b52014-06-16 16:50:49 +053010982 if (vos_max_concurrent_connections_reached()) {
10983 hddLog(VOS_TRACE_LEVEL_INFO, FL("Reached max concurrent connections"));
10984 return -ECONNREFUSED;
10985 }
10986
Vinay Krishna Eranna21042322014-01-08 19:21:39 +053010987 /*Try disconnecting if already in connected state*/
10988 status = wlan_hdd_try_disconnect(pAdapter);
10989 if ( 0 > status)
10990 {
10991 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Failed to disconnect the existing"
10992 " IBSS connection"));
10993 return -EALREADY;
10994 }
10995
Jeff Johnson295189b2012-06-20 16:38:30 -070010996 pRoamProfile = &pWextState->roamProfile;
10997
10998 if ( eCSR_BSS_TYPE_START_IBSS != pRoamProfile->BSSType )
10999 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011000 hddLog (VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -080011001 "%s Interface type is not set to IBSS", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -070011002 return -EINVAL;
11003 }
11004
Praveen Kumar Sirisillad123d142013-09-24 16:50:13 -070011005 /* BSSID is provided by upper layers hence no need to AUTO generate */
11006 if (NULL != params->bssid) {
11007 if (ccmCfgSetInt(pHddCtx->hHal, WNI_CFG_IBSS_AUTO_BSSID, 0,
11008 NULL, eANI_BOOLEAN_FALSE)==eHAL_STATUS_FAILURE) {
11009 hddLog (VOS_TRACE_LEVEL_ERROR,
11010 "%s:ccmCfgStInt faild for WNI_CFG_IBSS_AUTO_BSSID", __func__);
11011 return -EIO;
11012 }
11013 }
krunal sonie9002db2013-11-25 14:24:17 -080011014 else if(pHddCtx->cfg_ini->isCoalesingInIBSSAllowed == 0)
11015 {
11016 if (ccmCfgSetInt(pHddCtx->hHal, WNI_CFG_IBSS_AUTO_BSSID, 0,
11017 NULL, eANI_BOOLEAN_FALSE)==eHAL_STATUS_FAILURE)
11018 {
11019 hddLog (VOS_TRACE_LEVEL_ERROR,
11020 "%s:ccmCfgStInt faild for WNI_CFG_IBSS_AUTO_BSSID", __func__);
11021 return -EIO;
11022 }
11023 params->bssid = vos_mem_malloc(sizeof(VOS_MAC_ADDR_SIZE));
11024 if (!params->bssid)
11025 {
11026 hddLog (VOS_TRACE_LEVEL_ERROR,
11027 "%s:Failed memory allocation", __func__);
11028 return -EIO;
11029 }
11030 vos_mem_copy((v_U8_t *)params->bssid,
11031 (v_U8_t *)&pHddCtx->cfg_ini->IbssBssid.bytes[0],
11032 VOS_MAC_ADDR_SIZE);
11033 alloc_bssid = VOS_TRUE;
11034 }
Praveen Kumar Sirisillad123d142013-09-24 16:50:13 -070011035
Jeff Johnson295189b2012-06-20 16:38:30 -070011036 /* Set Channel */
Yue Maf49ba872013-08-19 12:04:25 -070011037 if (NULL !=
11038#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0))
11039 params->chandef.chan)
11040#else
11041 params->channel)
11042#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070011043 {
11044 u8 channelNum;
Shailender Karmuchi15cd0672013-05-15 19:50:04 -070011045 v_U32_t numChans = WNI_CFG_VALID_CHANNEL_LIST_LEN;
11046 v_U8_t validChan[WNI_CFG_VALID_CHANNEL_LIST_LEN];
11047 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
11048 int indx;
Jeff Johnson295189b2012-06-20 16:38:30 -070011049
11050 /* Get channel number */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011051 channelNum =
Yue Maf49ba872013-08-19 12:04:25 -070011052 ieee80211_frequency_to_channel(
11053#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0))
11054 params->chandef.chan->center_freq);
11055#else
11056 params->channel->center_freq);
11057#endif
Shailender Karmuchi15cd0672013-05-15 19:50:04 -070011058
11059 if (0 != ccmCfgGetStr(hHal, WNI_CFG_VALID_CHANNEL_LIST,
11060 validChan, &numChans))
Jeff Johnson295189b2012-06-20 16:38:30 -070011061 {
Shailender Karmuchi15cd0672013-05-15 19:50:04 -070011062 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: No valid channel list",
11063 __func__);
11064 return -EOPNOTSUPP;
Jeff Johnson295189b2012-06-20 16:38:30 -070011065 }
Shailender Karmuchi15cd0672013-05-15 19:50:04 -070011066
11067 for (indx = 0; indx < numChans; indx++)
Jeff Johnson295189b2012-06-20 16:38:30 -070011068 {
Shailender Karmuchi15cd0672013-05-15 19:50:04 -070011069 if (channelNum == validChan[indx])
11070 {
11071 break;
11072 }
11073 }
11074 if (indx >= numChans)
11075 {
11076 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Not valid Channel %d",
Jeff Johnson295189b2012-06-20 16:38:30 -070011077 __func__, channelNum);
11078 return -EINVAL;
11079 }
Shailender Karmuchi15cd0672013-05-15 19:50:04 -070011080 /* Set the Operational Channel */
11081 hddLog(VOS_TRACE_LEVEL_INFO_HIGH, "%s: set channel %d", __func__,
11082 channelNum);
11083 pRoamProfile->ChannelInfo.numOfChannels = 1;
11084 pHddStaCtx->conn_info.operationChannel = channelNum;
11085 pRoamProfile->ChannelInfo.ChannelList =
11086 &pHddStaCtx->conn_info.operationChannel;
Jeff Johnson295189b2012-06-20 16:38:30 -070011087 }
11088
11089 /* Initialize security parameters */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011090 status = wlan_hdd_cfg80211_set_privacy_ibss(pAdapter, params);
Jeff Johnson295189b2012-06-20 16:38:30 -070011091 if (status < 0)
11092 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011093 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to set security parameters",
Jeff Johnson295189b2012-06-20 16:38:30 -070011094 __func__);
11095 return status;
11096 }
11097
11098 /* Issue connect start */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011099 status = wlan_hdd_cfg80211_connect_start(pAdapter, params->ssid,
Shailender Karmuchi15cd0672013-05-15 19:50:04 -070011100 params->ssid_len, params->bssid,
11101 pHddStaCtx->conn_info.operationChannel);
Jeff Johnson295189b2012-06-20 16:38:30 -070011102
11103 if (0 > status)
11104 {
11105 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: connect failed", __func__);
11106 return status;
11107 }
11108
krunal sonie9002db2013-11-25 14:24:17 -080011109 if (NULL != params->bssid &&
11110 pHddCtx->cfg_ini->isCoalesingInIBSSAllowed == 0 &&
11111 alloc_bssid == VOS_TRUE)
11112 {
11113 vos_mem_free(params->bssid);
11114 }
Jeff Johnson295189b2012-06-20 16:38:30 -070011115 return 0;
11116}
11117
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053011118static int wlan_hdd_cfg80211_join_ibss( struct wiphy *wiphy,
11119 struct net_device *dev,
11120 struct cfg80211_ibss_params *params
11121 )
11122{
11123 int ret = 0;
11124
11125 vos_ssr_protect(__func__);
11126 ret = __wlan_hdd_cfg80211_join_ibss(wiphy, dev, params);
11127 vos_ssr_unprotect(__func__);
11128
11129 return ret;
11130}
11131
Jeff Johnson295189b2012-06-20 16:38:30 -070011132/*
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053011133 * FUNCTION: __wlan_hdd_cfg80211_leave_ibss
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011134 * This function is used to leave an IBSS
Jeff Johnson295189b2012-06-20 16:38:30 -070011135 */
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053011136static int __wlan_hdd_cfg80211_leave_ibss( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -070011137 struct net_device *dev
11138 )
11139{
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011140 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053011141 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
11142 tCsrRoamProfile *pRoamProfile;
11143 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011144 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -070011145
11146 ENTER();
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053011147
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053011148 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
11149 TRACE_CODE_HDD_CFG80211_LEAVE_IBSS,
11150 pAdapter->sessionId, eCSR_DISCONNECT_REASON_IBSS_LEAVE));
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011151 status = wlan_hdd_validate_context(pHddCtx);
11152
11153 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070011154 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011155 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11156 "%s: HDD context is not valid", __func__);
11157 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070011158 }
11159
Sushant Kaushik8bc7df22014-04-09 17:55:29 +053011160 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s (%d)", __func__,
11161 hdd_device_modetoString(pAdapter->device_mode),
11162 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -070011163 if (NULL == pWextState)
11164 {
Arif Hussain6d2a3322013-11-17 19:50:10 -080011165 hddLog (VOS_TRACE_LEVEL_ERROR, "%s ERROR: Data Storage Corruption",
Jeff Johnson295189b2012-06-20 16:38:30 -070011166 __func__);
11167 return -EIO;
11168 }
11169
11170 pRoamProfile = &pWextState->roamProfile;
11171
11172 /* Issue disconnect only if interface type is set to IBSS */
11173 if (eCSR_BSS_TYPE_START_IBSS != pRoamProfile->BSSType)
11174 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011175 hddLog (VOS_TRACE_LEVEL_ERROR, "%s: BSS Type is not set to IBSS",
Jeff Johnson295189b2012-06-20 16:38:30 -070011176 __func__);
11177 return -EINVAL;
11178 }
11179
11180 /* Issue Disconnect request */
11181 INIT_COMPLETION(pAdapter->disconnect_comp_var);
11182 sme_RoamDisconnect( WLAN_HDD_GET_HAL_CTX(pAdapter), pAdapter->sessionId,
11183 eCSR_DISCONNECT_REASON_IBSS_LEAVE);
11184
11185 return 0;
11186}
11187
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053011188static int wlan_hdd_cfg80211_leave_ibss( struct wiphy *wiphy,
11189 struct net_device *dev
11190 )
11191{
11192 int ret = 0;
11193
11194 vos_ssr_protect(__func__);
11195 ret = __wlan_hdd_cfg80211_leave_ibss(wiphy, dev);
11196 vos_ssr_unprotect(__func__);
11197
11198 return ret;
11199}
11200
Jeff Johnson295189b2012-06-20 16:38:30 -070011201/*
Mahesh A Saptasagar179d2252014-06-02 21:32:21 +053011202 * FUNCTION: __wlan_hdd_cfg80211_set_wiphy_params
Jeff Johnson295189b2012-06-20 16:38:30 -070011203 * This function is used to set the phy parameters
11204 * (RTS Threshold/FRAG Threshold/Retry Count etc ...)
11205 */
Mahesh A Saptasagar179d2252014-06-02 21:32:21 +053011206static int __wlan_hdd_cfg80211_set_wiphy_params(struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -070011207 u32 changed)
11208{
11209 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
11210 tHalHandle hHal = pHddCtx->hHal;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011211 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -070011212
11213 ENTER();
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053011214 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
11215 TRACE_CODE_HDD_CFG80211_SET_WIPHY_PARAMS,
11216 NO_SESSION, wiphy->rts_threshold));
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011217 status = wlan_hdd_validate_context(pHddCtx);
11218
11219 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070011220 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011221 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11222 "%s: HDD context is not valid", __func__);
11223 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070011224 }
11225
Jeff Johnson295189b2012-06-20 16:38:30 -070011226 if (changed & WIPHY_PARAM_RTS_THRESHOLD)
11227 {
11228 u16 rts_threshold = (wiphy->rts_threshold == -1) ?
11229 WNI_CFG_RTS_THRESHOLD_STAMAX :
11230 wiphy->rts_threshold;
11231
11232 if ((WNI_CFG_RTS_THRESHOLD_STAMIN > rts_threshold) ||
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011233 (WNI_CFG_RTS_THRESHOLD_STAMAX < rts_threshold))
Jeff Johnson295189b2012-06-20 16:38:30 -070011234 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011235 hddLog(VOS_TRACE_LEVEL_ERROR,
11236 "%s: Invalid RTS Threshold value %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -070011237 __func__, rts_threshold);
11238 return -EINVAL;
11239 }
11240
11241 if (0 != ccmCfgSetInt(hHal, WNI_CFG_RTS_THRESHOLD,
11242 rts_threshold, ccmCfgSetCallback,
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011243 eANI_BOOLEAN_TRUE))
Jeff Johnson295189b2012-06-20 16:38:30 -070011244 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011245 hddLog(VOS_TRACE_LEVEL_ERROR,
11246 "%s: ccmCfgSetInt failed for rts_threshold value %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -070011247 __func__, rts_threshold);
11248 return -EIO;
11249 }
11250
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011251 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: set rts threshold %hu", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -070011252 rts_threshold);
11253 }
11254
11255 if (changed & WIPHY_PARAM_FRAG_THRESHOLD)
11256 {
11257 u16 frag_threshold = (wiphy->frag_threshold == -1) ?
11258 WNI_CFG_FRAGMENTATION_THRESHOLD_STAMAX :
11259 wiphy->frag_threshold;
11260
11261 if ((WNI_CFG_FRAGMENTATION_THRESHOLD_STAMIN > frag_threshold)||
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011262 (WNI_CFG_FRAGMENTATION_THRESHOLD_STAMAX < frag_threshold) )
Jeff Johnson295189b2012-06-20 16:38:30 -070011263 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011264 hddLog(VOS_TRACE_LEVEL_ERROR,
11265 "%s: Invalid frag_threshold value %hu", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -070011266 frag_threshold);
11267 return -EINVAL;
11268 }
11269
11270 if (0 != ccmCfgSetInt(hHal, WNI_CFG_FRAGMENTATION_THRESHOLD,
11271 frag_threshold, ccmCfgSetCallback,
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011272 eANI_BOOLEAN_TRUE))
Jeff Johnson295189b2012-06-20 16:38:30 -070011273 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011274 hddLog(VOS_TRACE_LEVEL_ERROR,
11275 "%s: ccmCfgSetInt failed for frag_threshold value %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -070011276 __func__, frag_threshold);
11277 return -EIO;
11278 }
11279
11280 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: set frag threshold %hu", __func__,
11281 frag_threshold);
11282 }
11283
11284 if ((changed & WIPHY_PARAM_RETRY_SHORT)
11285 || (changed & WIPHY_PARAM_RETRY_LONG))
11286 {
11287 u8 retry_value = (changed & WIPHY_PARAM_RETRY_SHORT) ?
11288 wiphy->retry_short :
11289 wiphy->retry_long;
11290
11291 if ((WNI_CFG_LONG_RETRY_LIMIT_STAMIN > retry_value) ||
11292 (WNI_CFG_LONG_RETRY_LIMIT_STAMAX < retry_value))
11293 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011294 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid Retry count %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -070011295 __func__, retry_value);
11296 return -EINVAL;
11297 }
11298
11299 if (changed & WIPHY_PARAM_RETRY_SHORT)
11300 {
11301 if (0 != ccmCfgSetInt(hHal, WNI_CFG_LONG_RETRY_LIMIT,
11302 retry_value, ccmCfgSetCallback,
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011303 eANI_BOOLEAN_TRUE))
Jeff Johnson295189b2012-06-20 16:38:30 -070011304 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011305 hddLog(VOS_TRACE_LEVEL_ERROR,
11306 "%s: ccmCfgSetInt failed for long retry count %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -070011307 __func__, retry_value);
11308 return -EIO;
11309 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011310 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: set long retry count %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -070011311 __func__, retry_value);
11312 }
11313 else if (changed & WIPHY_PARAM_RETRY_SHORT)
11314 {
11315 if (0 != ccmCfgSetInt(hHal, WNI_CFG_SHORT_RETRY_LIMIT,
11316 retry_value, ccmCfgSetCallback,
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011317 eANI_BOOLEAN_TRUE))
Jeff Johnson295189b2012-06-20 16:38:30 -070011318 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011319 hddLog(VOS_TRACE_LEVEL_ERROR,
11320 "%s: ccmCfgSetInt failed for short retry count %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -070011321 __func__, retry_value);
11322 return -EIO;
11323 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011324 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: set short retry count %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -070011325 __func__, retry_value);
11326 }
11327 }
11328
11329 return 0;
11330}
11331
Mahesh A Saptasagar179d2252014-06-02 21:32:21 +053011332static int wlan_hdd_cfg80211_set_wiphy_params(struct wiphy *wiphy,
11333 u32 changed)
11334{
11335 int ret;
11336
11337 vos_ssr_protect(__func__);
11338 ret = __wlan_hdd_cfg80211_set_wiphy_params(wiphy, changed);
11339 vos_ssr_unprotect(__func__);
11340
11341 return ret;
11342}
11343
Jeff Johnson295189b2012-06-20 16:38:30 -070011344/*
Mahesh A Saptasagar179d2252014-06-02 21:32:21 +053011345 * FUNCTION: __wlan_hdd_cfg80211_set_txpower
Jeff Johnson295189b2012-06-20 16:38:30 -070011346 * This function is used to set the txpower
11347 */
Mahesh A Saptasagar179d2252014-06-02 21:32:21 +053011348static int __wlan_hdd_cfg80211_set_txpower(struct wiphy *wiphy,
Yue Maf49ba872013-08-19 12:04:25 -070011349#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0)
11350 struct wireless_dev *wdev,
11351#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070011352#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,35)
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011353 enum tx_power_setting type,
Jeff Johnson295189b2012-06-20 16:38:30 -070011354#else
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011355 enum nl80211_tx_power_setting type,
Jeff Johnson295189b2012-06-20 16:38:30 -070011356#endif
11357 int dbm)
11358{
11359 hdd_context_t *pHddCtx = (hdd_context_t*) wiphy_priv(wiphy);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011360 tHalHandle hHal = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -070011361 tSirMacAddr bssid = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF};
11362 tSirMacAddr selfMac = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF};
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011363 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -070011364
11365 ENTER();
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053011366 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
11367 TRACE_CODE_HDD_CFG80211_SET_TXPOWER,
11368 NO_SESSION, type ));
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011369 status = wlan_hdd_validate_context(pHddCtx);
11370
11371 if (0 != status)
11372 {
11373 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11374 "%s: HDD context is not valid", __func__);
11375 return status;
11376 }
11377
11378 hHal = pHddCtx->hHal;
11379
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011380 if (0 != ccmCfgSetInt(hHal, WNI_CFG_CURRENT_TX_POWER_LEVEL,
11381 dbm, ccmCfgSetCallback,
11382 eANI_BOOLEAN_TRUE))
Jeff Johnson295189b2012-06-20 16:38:30 -070011383 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011384 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -070011385 "%s: ccmCfgSetInt failed for tx power %hu", __func__, dbm);
11386 return -EIO;
11387 }
11388
11389 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: set tx power level %d dbm", __func__,
11390 dbm);
11391
11392 switch(type)
11393 {
11394 case NL80211_TX_POWER_AUTOMATIC: /*automatically determine transmit power*/
11395 /* Fall through */
11396 case NL80211_TX_POWER_LIMITED: /*limit TX power by the mBm parameter*/
11397 if( sme_SetMaxTxPower(hHal, bssid, selfMac, dbm) != eHAL_STATUS_SUCCESS )
11398 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011399 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Setting maximum tx power failed",
11400 __func__);
11401 return -EIO;
Jeff Johnson295189b2012-06-20 16:38:30 -070011402 }
11403 break;
11404 case NL80211_TX_POWER_FIXED: /*fix TX power to the mBm parameter*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011405 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: NL80211_TX_POWER_FIXED not supported",
Jeff Johnson295189b2012-06-20 16:38:30 -070011406 __func__);
11407 return -EOPNOTSUPP;
11408 break;
11409 default:
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011410 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid power setting type %d",
11411 __func__, type);
Jeff Johnson295189b2012-06-20 16:38:30 -070011412 return -EIO;
11413 }
11414
11415 return 0;
11416}
11417
Mahesh A Saptasagar179d2252014-06-02 21:32:21 +053011418static int wlan_hdd_cfg80211_set_txpower(struct wiphy *wiphy,
11419#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0)
11420 struct wireless_dev *wdev,
11421#endif
11422#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,35)
11423 enum tx_power_setting type,
11424#else
11425 enum nl80211_tx_power_setting type,
11426#endif
11427 int dbm)
11428{
11429 int ret;
11430 vos_ssr_protect(__func__);
11431 ret = __wlan_hdd_cfg80211_set_txpower(wiphy,
11432#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0)
11433 wdev,
11434#endif
11435#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,35)
11436 type,
11437#else
11438 type,
11439#endif
11440 dbm);
11441 vos_ssr_unprotect(__func__);
11442
11443 return ret;
11444}
11445
Jeff Johnson295189b2012-06-20 16:38:30 -070011446/*
11447 * FUNCTION: wlan_hdd_cfg80211_get_txpower
11448 * This function is used to read the txpower
11449 */
Yue Maf49ba872013-08-19 12:04:25 -070011450static int wlan_hdd_cfg80211_get_txpower(struct wiphy *wiphy,
11451#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0)
11452 struct wireless_dev *wdev,
11453#endif
11454 int *dbm)
Jeff Johnson295189b2012-06-20 16:38:30 -070011455{
11456
11457 hdd_adapter_t *pAdapter;
11458 hdd_context_t *pHddCtx = (hdd_context_t*) wiphy_priv(wiphy);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011459 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -070011460
Jeff Johnsone7245742012-09-05 17:12:55 -070011461 ENTER();
11462
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011463 status = wlan_hdd_validate_context(pHddCtx);
Jeff Johnson295189b2012-06-20 16:38:30 -070011464
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011465 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070011466 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011467 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11468 "%s: HDD context is not valid", __func__);
11469 *dbm = 0;
11470 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070011471 }
11472
Jeff Johnson295189b2012-06-20 16:38:30 -070011473 pAdapter = hdd_get_adapter(pHddCtx, WLAN_HDD_INFRA_STATION);
11474 if (NULL == pAdapter)
11475 {
11476 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: Not in station context " ,__func__);
11477 return -ENOENT;
11478 }
11479
11480 wlan_hdd_get_classAstats(pAdapter);
11481 *dbm = pAdapter->hdd_stats.ClassA_stat.max_pwr;
11482
Jeff Johnsone7245742012-09-05 17:12:55 -070011483 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -070011484 return 0;
11485}
11486
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053011487static int __wlan_hdd_cfg80211_get_station(struct wiphy *wiphy, struct net_device *dev,
Jeff Johnson295189b2012-06-20 16:38:30 -070011488 u8* mac, struct station_info *sinfo)
11489{
11490 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
11491 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
11492 int ssidlen = pHddStaCtx->conn_info.SSID.SSID.length;
c_hpothu44ff4e02014-05-08 00:13:57 +053011493 tANI_U32 rate_flags;
Jeff Johnson295189b2012-06-20 16:38:30 -070011494
11495 hdd_context_t *pHddCtx = (hdd_context_t*) wiphy_priv(wiphy);
11496 hdd_config_t *pCfg = pHddCtx->cfg_ini;
Jeff Johnson295189b2012-06-20 16:38:30 -070011497
11498 tANI_U8 OperationalRates[CSR_DOT11_SUPPORTED_RATES_MAX];
11499 tANI_U32 ORLeng = CSR_DOT11_SUPPORTED_RATES_MAX;
11500 tANI_U8 ExtendedRates[CSR_DOT11_EXTENDED_SUPPORTED_RATES_MAX];
11501 tANI_U32 ERLeng = CSR_DOT11_EXTENDED_SUPPORTED_RATES_MAX;
11502 tANI_U8 MCSRates[SIZE_OF_BASIC_MCS_SET];
11503 tANI_U32 MCSLeng = SIZE_OF_BASIC_MCS_SET;
11504 tANI_U16 maxRate = 0;
11505 tANI_U16 myRate;
11506 tANI_U16 currentRate = 0;
11507 tANI_U8 maxSpeedMCS = 0;
11508 tANI_U8 maxMCSIdx = 0;
11509 tANI_U8 rateFlag = 1;
c_hpothu79aab322014-07-14 21:11:01 +053011510 tANI_U8 i, j, rssidx, mode=0;
Madan Mohan Koyyalamudic75be962012-10-18 19:19:03 -070011511 tANI_U16 temp;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011512 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -070011513
Leo Chang6f8870f2013-03-26 18:11:36 -070011514#ifdef WLAN_FEATURE_11AC
11515 tANI_U32 vht_mcs_map;
11516 eDataRate11ACMaxMcs vhtMaxMcs;
11517#endif /* WLAN_FEATURE_11AC */
11518
Jeff Johnsone7245742012-09-05 17:12:55 -070011519 ENTER();
11520
Jeff Johnson295189b2012-06-20 16:38:30 -070011521 if ((eConnectionState_Associated != pHddStaCtx->conn_info.connState) ||
11522 (0 == ssidlen))
11523 {
11524 hddLog(VOS_TRACE_LEVEL_INFO, "%s: Not associated or"
11525 " Invalid ssidlen, %d", __func__, ssidlen);
11526 /*To keep GUI happy*/
11527 return 0;
11528 }
11529
Mukul Sharma811205f2014-07-09 21:07:30 +053011530 if (VOS_TRUE == pHddStaCtx->hdd_ReassocScenario)
11531 {
11532 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
11533 "%s: Roaming in progress, so unable to proceed this request", __func__);
11534 return 0;
11535 }
11536
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011537 status = wlan_hdd_validate_context(pHddCtx);
11538
11539 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070011540 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011541 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11542 "%s: HDD context is not valid", __func__);
11543 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070011544 }
11545
Jeff Johnson295189b2012-06-20 16:38:30 -070011546
Kiet Lam3b17fc82013-09-27 05:24:08 +053011547 wlan_hdd_get_rssi(pAdapter, &sinfo->signal);
11548 sinfo->filled |= STATION_INFO_SIGNAL;
11549
c_hpothu09f19542014-05-30 21:53:31 +053011550 wlan_hdd_get_station_stats(pAdapter);
11551 rate_flags = pAdapter->hdd_stats.ClassA_stat.tx_rate_flags;
11552
11553 /*overwrite rate_flags if MAX link-speed need to be reported*/
c_hpothu44ff4e02014-05-08 00:13:57 +053011554 if ((eHDD_LINK_SPEED_REPORT_MAX == pCfg->reportMaxLinkSpeed) ||
11555 (eHDD_LINK_SPEED_REPORT_MAX_SCALED == pCfg->reportMaxLinkSpeed &&
c_hpothu79aab322014-07-14 21:11:01 +053011556 sinfo->signal >= pCfg->linkSpeedRssiLow))
c_hpothu44ff4e02014-05-08 00:13:57 +053011557 {
11558 rate_flags = pAdapter->maxRateFlags;
11559 }
c_hpothu44ff4e02014-05-08 00:13:57 +053011560
Jeff Johnson295189b2012-06-20 16:38:30 -070011561 //convert to the UI units of 100kbps
11562 myRate = pAdapter->hdd_stats.ClassA_stat.tx_rate * 5;
11563
11564#ifdef LINKSPEED_DEBUG_ENABLED
Leo Chang6f8870f2013-03-26 18:11:36 -070011565 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 -070011566 sinfo->signal,
11567 pCfg->reportMaxLinkSpeed,
11568 myRate,
11569 (int) pCfg->linkSpeedRssiHigh,
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -070011570 (int) pCfg->linkSpeedRssiMid,
11571 (int) pCfg->linkSpeedRssiLow,
Leo Chang6f8870f2013-03-26 18:11:36 -070011572 (int) rate_flags,
11573 (int) pAdapter->hdd_stats.ClassA_stat.mcs_index);
Jeff Johnson295189b2012-06-20 16:38:30 -070011574#endif //LINKSPEED_DEBUG_ENABLED
11575
11576 if (eHDD_LINK_SPEED_REPORT_ACTUAL != pCfg->reportMaxLinkSpeed)
11577 {
11578 // we do not want to necessarily report the current speed
11579 if (eHDD_LINK_SPEED_REPORT_MAX == pCfg->reportMaxLinkSpeed)
11580 {
11581 // report the max possible speed
11582 rssidx = 0;
11583 }
11584 else if (eHDD_LINK_SPEED_REPORT_MAX_SCALED == pCfg->reportMaxLinkSpeed)
11585 {
11586 // report the max possible speed with RSSI scaling
11587 if (sinfo->signal >= pCfg->linkSpeedRssiHigh)
11588 {
11589 // report the max possible speed
11590 rssidx = 0;
11591 }
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -070011592 else if (sinfo->signal >= pCfg->linkSpeedRssiMid)
Jeff Johnson295189b2012-06-20 16:38:30 -070011593 {
11594 // report middle speed
11595 rssidx = 1;
11596 }
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -070011597 else if (sinfo->signal >= pCfg->linkSpeedRssiLow)
11598 {
11599 // report middle speed
11600 rssidx = 2;
11601 }
Jeff Johnson295189b2012-06-20 16:38:30 -070011602 else
11603 {
11604 // report actual speed
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -070011605 rssidx = 3;
Jeff Johnson295189b2012-06-20 16:38:30 -070011606 }
11607 }
11608 else
11609 {
11610 // unknown, treat as eHDD_LINK_SPEED_REPORT_MAX
11611 hddLog(VOS_TRACE_LEVEL_ERROR,
11612 "%s: Invalid value for reportMaxLinkSpeed: %u",
11613 __func__, pCfg->reportMaxLinkSpeed);
11614 rssidx = 0;
11615 }
11616
11617 maxRate = 0;
11618
11619 /* Get Basic Rate Set */
Gopichand Nakkala05ab1322013-02-15 11:28:38 +053011620 if (0 != ccmCfgGetStr(WLAN_HDD_GET_HAL_CTX(pAdapter), WNI_CFG_OPERATIONAL_RATE_SET,
11621 OperationalRates, &ORLeng))
11622 {
11623 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: ccm api returned failure", __func__);
11624 /*To keep GUI happy*/
11625 return 0;
11626 }
11627
Jeff Johnson295189b2012-06-20 16:38:30 -070011628 for (i = 0; i < ORLeng; i++)
11629 {
Jeff Johnsone7245742012-09-05 17:12:55 -070011630 for (j = 0; j < (sizeof(supported_data_rate) / sizeof(supported_data_rate[0])); j ++)
Jeff Johnson295189b2012-06-20 16:38:30 -070011631 {
11632 /* Validate Rate Set */
11633 if (supported_data_rate[j].beacon_rate_index == (OperationalRates[i] & 0x7F))
11634 {
11635 currentRate = supported_data_rate[j].supported_rate[rssidx];
11636 break;
11637 }
11638 }
11639 /* Update MAX rate */
11640 maxRate = (currentRate > maxRate)?currentRate:maxRate;
11641 }
11642
11643 /* Get Extended Rate Set */
Gopichand Nakkala05ab1322013-02-15 11:28:38 +053011644 if (0 != ccmCfgGetStr(WLAN_HDD_GET_HAL_CTX(pAdapter), WNI_CFG_EXTENDED_OPERATIONAL_RATE_SET,
11645 ExtendedRates, &ERLeng))
11646 {
11647 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: ccm api returned failure", __func__);
11648 /*To keep GUI happy*/
11649 return 0;
11650 }
11651
Jeff Johnson295189b2012-06-20 16:38:30 -070011652 for (i = 0; i < ERLeng; i++)
11653 {
Jeff Johnsone7245742012-09-05 17:12:55 -070011654 for (j = 0; j < (sizeof(supported_data_rate) / sizeof(supported_data_rate[0])); j ++)
Jeff Johnson295189b2012-06-20 16:38:30 -070011655 {
11656 if (supported_data_rate[j].beacon_rate_index == (ExtendedRates[i] & 0x7F))
11657 {
11658 currentRate = supported_data_rate[j].supported_rate[rssidx];
11659 break;
11660 }
11661 }
11662 /* Update MAX rate */
11663 maxRate = (currentRate > maxRate)?currentRate:maxRate;
11664 }
c_hpothu79aab322014-07-14 21:11:01 +053011665
Kiet Lamb69f8dc2013-11-15 15:34:27 +053011666 /* Get MCS Rate Set --
Kaushik, Sushantdc304d82014-01-22 10:58:37 +053011667 Only if we are always reporting max speed (or)
Kiet Lamb69f8dc2013-11-15 15:34:27 +053011668 if we have good rssi */
c_hpothu79aab322014-07-14 21:11:01 +053011669 if ((3 != rssidx) && !(rate_flags & eHAL_TX_RATE_LEGACY))
Jeff Johnson295189b2012-06-20 16:38:30 -070011670 {
c_hpothu79aab322014-07-14 21:11:01 +053011671 if (rate_flags & eHAL_TX_RATE_VHT80)
11672 mode = 2;
11673 else if (rate_flags & (eHAL_TX_RATE_VHT40 | eHAL_TX_RATE_HT40))
11674 mode = 1;
11675 else
11676 mode = 0;
11677
Gopichand Nakkala05ab1322013-02-15 11:28:38 +053011678 if (0 != ccmCfgGetStr(WLAN_HDD_GET_HAL_CTX(pAdapter), WNI_CFG_CURRENT_MCS_SET,
11679 MCSRates, &MCSLeng))
11680 {
11681 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: ccm api returned failure", __func__);
11682 /*To keep GUI happy*/
11683 return 0;
11684 }
Jeff Johnson295189b2012-06-20 16:38:30 -070011685 rateFlag = 0;
Leo Chang6f8870f2013-03-26 18:11:36 -070011686#ifdef WLAN_FEATURE_11AC
11687 /* VHT80 rate has seperate rate table */
Gopichand Nakkala4c705372013-04-24 13:20:33 +053011688 if (rate_flags & (eHAL_TX_RATE_VHT20|eHAL_TX_RATE_VHT40|eHAL_TX_RATE_VHT80))
Jeff Johnson295189b2012-06-20 16:38:30 -070011689 {
Leo Chang6f8870f2013-03-26 18:11:36 -070011690 ccmCfgGetInt(WLAN_HDD_GET_HAL_CTX(pAdapter), WNI_CFG_VHT_TX_MCS_MAP, &vht_mcs_map);
Gopichand Nakkala4c705372013-04-24 13:20:33 +053011691 vhtMaxMcs = (eDataRate11ACMaxMcs)(vht_mcs_map & DATA_RATE_11AC_MCS_MASK );
Leo Chang6f8870f2013-03-26 18:11:36 -070011692 if (rate_flags & eHAL_TX_RATE_SGI)
Jeff Johnson295189b2012-06-20 16:38:30 -070011693 {
Leo Chang6f8870f2013-03-26 18:11:36 -070011694 rateFlag |= 1;
Jeff Johnson295189b2012-06-20 16:38:30 -070011695 }
Leo Chang6f8870f2013-03-26 18:11:36 -070011696 if (DATA_RATE_11AC_MAX_MCS_7 == vhtMaxMcs)
Jeff Johnson295189b2012-06-20 16:38:30 -070011697 {
Leo Chang6f8870f2013-03-26 18:11:36 -070011698 maxMCSIdx = 7;
11699 }
11700 else if (DATA_RATE_11AC_MAX_MCS_8 == vhtMaxMcs)
11701 {
11702 maxMCSIdx = 8;
11703 }
11704 else if (DATA_RATE_11AC_MAX_MCS_9 == vhtMaxMcs)
11705 {
Gopichand Nakkala4c705372013-04-24 13:20:33 +053011706 //VHT20 is supporting 0~8
11707 if (rate_flags & eHAL_TX_RATE_VHT20)
11708 maxMCSIdx = 8;
11709 else
11710 maxMCSIdx = 9;
Leo Chang6f8870f2013-03-26 18:11:36 -070011711 }
Gopichand Nakkala4c705372013-04-24 13:20:33 +053011712
c_hpothu79aab322014-07-14 21:11:01 +053011713 if (0 != rssidx)/*check for scaled */
11714 {
11715 //get middle rate MCS index if rssi=1/2
11716 for (i=0; i <= maxMCSIdx; i++)
11717 {
11718 if (sinfo->signal <= rssiMcsTbl[mode][i])
11719 {
11720 maxMCSIdx = i;
11721 break;
11722 }
11723 }
11724 }
11725
Gopichand Nakkala4c705372013-04-24 13:20:33 +053011726 if (rate_flags & eHAL_TX_RATE_VHT80)
11727 {
11728 currentRate = supported_vht_mcs_rate[pAdapter->hdd_stats.ClassA_stat.mcs_index].supported_VHT80_rate[rateFlag];
11729 maxRate = supported_vht_mcs_rate[maxMCSIdx].supported_VHT80_rate[rateFlag];
11730 }
11731 else if (rate_flags & eHAL_TX_RATE_VHT40)
11732 {
11733 currentRate = supported_vht_mcs_rate[pAdapter->hdd_stats.ClassA_stat.mcs_index].supported_VHT40_rate[rateFlag];
11734 maxRate = supported_vht_mcs_rate[maxMCSIdx].supported_VHT40_rate[rateFlag];
11735 }
11736 else if (rate_flags & eHAL_TX_RATE_VHT20)
11737 {
11738 currentRate = supported_vht_mcs_rate[pAdapter->hdd_stats.ClassA_stat.mcs_index].supported_VHT20_rate[rateFlag];
11739 maxRate = supported_vht_mcs_rate[maxMCSIdx].supported_VHT20_rate[rateFlag];
11740 }
11741
Leo Chang6f8870f2013-03-26 18:11:36 -070011742 maxSpeedMCS = 1;
11743 if (currentRate > maxRate)
11744 {
11745 maxRate = currentRate;
11746 }
Gopichand Nakkala4c705372013-04-24 13:20:33 +053011747
Leo Chang6f8870f2013-03-26 18:11:36 -070011748 }
11749 else
11750#endif /* WLAN_FEATURE_11AC */
11751 {
11752 if (rate_flags & eHAL_TX_RATE_HT40)
11753 {
11754 rateFlag |= 1;
11755 }
11756 if (rate_flags & eHAL_TX_RATE_SGI)
11757 {
11758 rateFlag |= 2;
11759 }
11760
Girish Gowli01abcee2014-07-31 20:18:55 +053011761 temp = sizeof(supported_mcs_rate) / sizeof(supported_mcs_rate[0]);
c_hpothu79aab322014-07-14 21:11:01 +053011762 if (rssidx == 1 || rssidx == 2)
11763 {
11764 //get middle rate MCS index if rssi=1/2
11765 for (i=0; i <= 7; i++)
11766 {
11767 if (sinfo->signal <= rssiMcsTbl[mode][i])
11768 {
11769 temp = i+1;
11770 break;
11771 }
11772 }
11773 }
c_hpothu79aab322014-07-14 21:11:01 +053011774
11775 for (i = 0; i < MCSLeng; i++)
11776 {
Leo Chang6f8870f2013-03-26 18:11:36 -070011777 for (j = 0; j < temp; j++)
11778 {
11779 if (supported_mcs_rate[j].beacon_rate_index == MCSRates[i])
11780 {
11781 currentRate = supported_mcs_rate[j].supported_rate[rateFlag];
11782 break;
11783 }
11784 }
11785 if ((j < temp) && (currentRate > maxRate))
11786 {
11787 maxRate = currentRate;
11788 maxSpeedMCS = 1;
11789 maxMCSIdx = supported_mcs_rate[j].beacon_rate_index;
11790 }
Jeff Johnson295189b2012-06-20 16:38:30 -070011791 }
11792 }
11793 }
11794
Gopichand Nakkala4c705372013-04-24 13:20:33 +053011795 else if (!(rate_flags & eHAL_TX_RATE_LEGACY))
11796 {
11797 maxRate = myRate;
11798 maxSpeedMCS = 1;
11799 maxMCSIdx = pAdapter->hdd_stats.ClassA_stat.mcs_index;
11800 }
Jeff Johnson295189b2012-06-20 16:38:30 -070011801 // make sure we report a value at least as big as our current rate
c_hpothu79aab322014-07-14 21:11:01 +053011802 if ((maxRate < myRate) || (0 == maxRate))
Jeff Johnson295189b2012-06-20 16:38:30 -070011803 {
11804 maxRate = myRate;
11805 if (rate_flags & eHAL_TX_RATE_LEGACY)
11806 {
11807 maxSpeedMCS = 0;
11808 }
11809 else
11810 {
11811 maxSpeedMCS = 1;
11812 maxMCSIdx = pAdapter->hdd_stats.ClassA_stat.mcs_index;
11813 }
11814 }
11815
Gopichand Nakkala4c705372013-04-24 13:20:33 +053011816 if (rate_flags & eHAL_TX_RATE_LEGACY)
Jeff Johnson295189b2012-06-20 16:38:30 -070011817 {
11818 sinfo->txrate.legacy = maxRate;
11819#ifdef LINKSPEED_DEBUG_ENABLED
11820 pr_info("Reporting legacy rate %d\n", sinfo->txrate.legacy);
11821#endif //LINKSPEED_DEBUG_ENABLED
11822 }
11823 else
11824 {
11825 sinfo->txrate.mcs = maxMCSIdx;
Leo Chang6f8870f2013-03-26 18:11:36 -070011826#ifdef WLAN_FEATURE_11AC
11827 sinfo->txrate.nss = 1;
11828 if (rate_flags & eHAL_TX_RATE_VHT80)
11829 {
11830 sinfo->txrate.flags |= RATE_INFO_FLAGS_VHT_MCS;
Gopichand Nakkala4c705372013-04-24 13:20:33 +053011831 sinfo->txrate.flags |= RATE_INFO_FLAGS_80_MHZ_WIDTH;
Leo Chang6f8870f2013-03-26 18:11:36 -070011832 }
Gopichand Nakkala4c705372013-04-24 13:20:33 +053011833 else if (rate_flags & eHAL_TX_RATE_VHT40)
Leo Chang6f8870f2013-03-26 18:11:36 -070011834 {
Gopichand Nakkala4c705372013-04-24 13:20:33 +053011835 sinfo->txrate.flags |= RATE_INFO_FLAGS_VHT_MCS;
11836 sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
11837 }
11838 else if (rate_flags & eHAL_TX_RATE_VHT20)
11839 {
11840 sinfo->txrate.flags |= RATE_INFO_FLAGS_VHT_MCS;
11841 }
11842#endif /* WLAN_FEATURE_11AC */
11843 if (rate_flags & (eHAL_TX_RATE_HT20 | eHAL_TX_RATE_HT40))
11844 {
11845 sinfo->txrate.flags |= RATE_INFO_FLAGS_MCS;
11846 if (rate_flags & eHAL_TX_RATE_HT40)
11847 {
11848 sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
11849 }
Leo Chang6f8870f2013-03-26 18:11:36 -070011850 }
Jeff Johnson295189b2012-06-20 16:38:30 -070011851 if (rate_flags & eHAL_TX_RATE_SGI)
11852 {
11853 sinfo->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
11854 }
Gopichand Nakkala4c705372013-04-24 13:20:33 +053011855
Jeff Johnson295189b2012-06-20 16:38:30 -070011856#ifdef LINKSPEED_DEBUG_ENABLED
11857 pr_info("Reporting MCS rate %d flags %x\n",
11858 sinfo->txrate.mcs,
11859 sinfo->txrate.flags );
11860#endif //LINKSPEED_DEBUG_ENABLED
11861 }
11862 }
11863 else
11864 {
11865 // report current rate instead of max rate
11866
11867 if (rate_flags & eHAL_TX_RATE_LEGACY)
11868 {
11869 //provide to the UI in units of 100kbps
11870 sinfo->txrate.legacy = myRate;
11871#ifdef LINKSPEED_DEBUG_ENABLED
11872 pr_info("Reporting actual legacy rate %d\n", sinfo->txrate.legacy);
11873#endif //LINKSPEED_DEBUG_ENABLED
11874 }
11875 else
11876 {
11877 //must be MCS
11878 sinfo->txrate.mcs = pAdapter->hdd_stats.ClassA_stat.mcs_index;
Leo Chang6f8870f2013-03-26 18:11:36 -070011879#ifdef WLAN_FEATURE_11AC
11880 sinfo->txrate.nss = 1;
11881 if (rate_flags & eHAL_TX_RATE_VHT80)
11882 {
11883 sinfo->txrate.flags |= RATE_INFO_FLAGS_VHT_MCS;
11884 }
11885 else
11886#endif /* WLAN_FEATURE_11AC */
11887 {
11888 sinfo->txrate.flags |= RATE_INFO_FLAGS_MCS;
11889 }
Jeff Johnson295189b2012-06-20 16:38:30 -070011890 if (rate_flags & eHAL_TX_RATE_SGI)
11891 {
11892 sinfo->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
11893 }
11894 if (rate_flags & eHAL_TX_RATE_HT40)
11895 {
11896 sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
11897 }
Leo Chang6f8870f2013-03-26 18:11:36 -070011898#ifdef WLAN_FEATURE_11AC
11899 else if (rate_flags & eHAL_TX_RATE_VHT80)
11900 {
11901 sinfo->txrate.flags |= RATE_INFO_FLAGS_80_MHZ_WIDTH;
11902 }
11903#endif /* WLAN_FEATURE_11AC */
Jeff Johnson295189b2012-06-20 16:38:30 -070011904#ifdef LINKSPEED_DEBUG_ENABLED
11905 pr_info("Reporting actual MCS rate %d flags %x\n",
11906 sinfo->txrate.mcs,
11907 sinfo->txrate.flags );
11908#endif //LINKSPEED_DEBUG_ENABLED
11909 }
11910 }
11911 sinfo->filled |= STATION_INFO_TX_BITRATE;
11912
Madan Mohan Koyyalamudi4d4d2812012-09-24 14:08:29 -070011913 sinfo->tx_packets =
11914 pAdapter->hdd_stats.summary_stat.tx_frm_cnt[0] +
11915 pAdapter->hdd_stats.summary_stat.tx_frm_cnt[1] +
11916 pAdapter->hdd_stats.summary_stat.tx_frm_cnt[2] +
11917 pAdapter->hdd_stats.summary_stat.tx_frm_cnt[3];
11918
11919 sinfo->tx_retries =
11920 pAdapter->hdd_stats.summary_stat.retry_cnt[0] +
11921 pAdapter->hdd_stats.summary_stat.retry_cnt[1] +
11922 pAdapter->hdd_stats.summary_stat.retry_cnt[2] +
11923 pAdapter->hdd_stats.summary_stat.retry_cnt[3];
11924
11925 sinfo->tx_failed =
11926 pAdapter->hdd_stats.summary_stat.fail_cnt[0] +
11927 pAdapter->hdd_stats.summary_stat.fail_cnt[1] +
11928 pAdapter->hdd_stats.summary_stat.fail_cnt[2] +
11929 pAdapter->hdd_stats.summary_stat.fail_cnt[3];
11930
11931 sinfo->filled |=
11932 STATION_INFO_TX_PACKETS |
11933 STATION_INFO_TX_RETRIES |
11934 STATION_INFO_TX_FAILED;
11935
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053011936 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
11937 TRACE_CODE_HDD_CFG80211_GET_STA,
11938 pAdapter->sessionId, maxRate));
Madan Mohan Koyyalamudi4d4d2812012-09-24 14:08:29 -070011939 EXIT();
11940 return 0;
Jeff Johnson295189b2012-06-20 16:38:30 -070011941}
11942
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053011943static int wlan_hdd_cfg80211_get_station(struct wiphy *wiphy, struct net_device *dev,
11944 u8* mac, struct station_info *sinfo)
11945{
11946 int ret;
11947
11948 vos_ssr_protect(__func__);
11949 ret = __wlan_hdd_cfg80211_get_station(wiphy, dev, mac, sinfo);
11950 vos_ssr_unprotect(__func__);
11951
11952 return ret;
11953}
11954
11955static int __wlan_hdd_cfg80211_set_power_mgmt(struct wiphy *wiphy,
Sameer Thalappilc9f26e92013-06-07 10:11:06 -070011956 struct net_device *dev, bool mode, int timeout)
Jeff Johnson295189b2012-06-20 16:38:30 -070011957{
11958 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Gopichand Nakkala20c4c042013-04-19 22:08:55 +053011959 hdd_context_t *pHddCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -070011960 VOS_STATUS vos_status;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011961 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -070011962
Jeff Johnsone7245742012-09-05 17:12:55 -070011963 ENTER();
11964
Jeff Johnson295189b2012-06-20 16:38:30 -070011965 if (NULL == pAdapter)
11966 {
Arif Hussain6d2a3322013-11-17 19:50:10 -080011967 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Adapter is NULL", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -070011968 return -ENODEV;
11969 }
11970
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053011971 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
11972 TRACE_CODE_HDD_CFG80211_SET_POWER_MGMT,
11973 pAdapter->sessionId, timeout));
11974
Gopichand Nakkala20c4c042013-04-19 22:08:55 +053011975 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011976 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkala20c4c042013-04-19 22:08:55 +053011977
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011978 if (0 != status)
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011979 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053011980 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11981 "%s: HDD context is not valid", __func__);
11982 return status;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011983 }
11984
Gopichand Nakkala20c4c042013-04-19 22:08:55 +053011985 if ((DRIVER_POWER_MODE_AUTO == !mode) &&
11986 (TRUE == pHddCtx->hdd_wlan_suspended) &&
11987 (pHddCtx->cfg_ini->fhostArpOffload) &&
11988 (eConnectionState_Associated ==
11989 (WLAN_HDD_GET_STATION_CTX_PTR(pAdapter))->conn_info.connState))
11990 {
Amar Singhald53568e2013-09-26 11:03:45 -070011991
11992 hddLog(VOS_TRACE_LEVEL_INFO,
11993 "offload: in cfg80211_set_power_mgmt, calling arp offload");
Gopichand Nakkalab03e8082013-05-30 18:09:25 +053011994 vos_status = hdd_conf_arp_offload(pAdapter, TRUE);
Gopichand Nakkala20c4c042013-04-19 22:08:55 +053011995 if (!VOS_IS_STATUS_SUCCESS(vos_status))
11996 {
11997 hddLog(VOS_TRACE_LEVEL_INFO,
Arif Hussain6d2a3322013-11-17 19:50:10 -080011998 "%s:Failed to enable ARPOFFLOAD Feature %d",
Gopichand Nakkala20c4c042013-04-19 22:08:55 +053011999 __func__, vos_status);
12000 }
12001 }
12002
Jeff Johnson295189b2012-06-20 16:38:30 -070012003 /**The get power cmd from the supplicant gets updated by the nl only
12004 *on successful execution of the function call
12005 *we are oppositely mapped w.r.t mode in the driver
12006 **/
12007 vos_status = wlan_hdd_enter_bmps(pAdapter, !mode);
12008
Jeff Johnsone7245742012-09-05 17:12:55 -070012009 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -070012010 if (VOS_STATUS_E_FAILURE == vos_status)
12011 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +053012012 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
12013 "%s: failed to enter bmps mode", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -070012014 return -EINVAL;
12015 }
12016 return 0;
12017}
12018
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053012019static int wlan_hdd_cfg80211_set_power_mgmt(struct wiphy *wiphy,
12020 struct net_device *dev, bool mode, int timeout)
12021{
12022 int ret;
Jeff Johnson295189b2012-06-20 16:38:30 -070012023
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053012024 vos_ssr_protect(__func__);
12025 ret = __wlan_hdd_cfg80211_set_power_mgmt(wiphy, dev, mode, timeout);
12026 vos_ssr_unprotect(__func__);
12027
12028 return ret;
12029}
Jeff Johnson295189b2012-06-20 16:38:30 -070012030#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
12031static int wlan_hdd_set_default_mgmt_key(struct wiphy *wiphy,
12032 struct net_device *netdev,
12033 u8 key_index)
12034{
Jeff Johnsone7245742012-09-05 17:12:55 -070012035 ENTER();
Jeff Johnson295189b2012-06-20 16:38:30 -070012036 return 0;
12037}
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012038#endif //LINUX_VERSION_CODE
Jeff Johnson295189b2012-06-20 16:38:30 -070012039
12040#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
12041static int wlan_hdd_set_txq_params(struct wiphy *wiphy,
12042 struct net_device *dev,
12043 struct ieee80211_txq_params *params)
12044{
Jeff Johnsone7245742012-09-05 17:12:55 -070012045 ENTER();
Jeff Johnson295189b2012-06-20 16:38:30 -070012046 return 0;
12047}
12048#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
12049static int wlan_hdd_set_txq_params(struct wiphy *wiphy,
12050 struct ieee80211_txq_params *params)
12051{
Jeff Johnsone7245742012-09-05 17:12:55 -070012052 ENTER();
Jeff Johnson295189b2012-06-20 16:38:30 -070012053 return 0;
12054}
12055#endif //LINUX_VERSION_CODE
12056
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053012057static int __wlan_hdd_cfg80211_del_station(struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -070012058 struct net_device *dev, u8 *mac)
12059{
12060 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053012061 hdd_context_t *pHddCtx;
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -080012062 VOS_STATUS vos_status;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053012063 int status;
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -080012064 v_U8_t staId;
Jeff Johnson295189b2012-06-20 16:38:30 -070012065
Jeff Johnsone7245742012-09-05 17:12:55 -070012066 ENTER();
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053012067
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053012068 if ( NULL == pAdapter )
Jeff Johnson295189b2012-06-20 16:38:30 -070012069 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053012070 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid Adapter" ,__func__);
Jeff Johnson295189b2012-06-20 16:38:30 -070012071 return -EINVAL;
12072 }
12073
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053012074 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
12075 TRACE_CODE_HDD_CFG80211_DEL_STA,
12076 pAdapter->sessionId, pAdapter->device_mode));
12077
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053012078 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
12079 status = wlan_hdd_validate_context(pHddCtx);
Jeff Johnson295189b2012-06-20 16:38:30 -070012080
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053012081 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012082 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053012083 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
12084 "%s: HDD context is not valid", __func__);
12085 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012086 }
12087
Jeff Johnson295189b2012-06-20 16:38:30 -070012088 if ( (WLAN_HDD_SOFTAP == pAdapter->device_mode)
Jeff Johnson295189b2012-06-20 16:38:30 -070012089 || (WLAN_HDD_P2P_GO == pAdapter->device_mode)
Jeff Johnson295189b2012-06-20 16:38:30 -070012090 )
12091 {
12092 if( NULL == mac )
12093 {
12094 v_U16_t i;
12095 for(i = 0; i < WLAN_MAX_STA_COUNT; i++)
12096 {
Rajesh Chauhan18488fc2013-08-22 10:15:03 -070012097 if ((pAdapter->aStaInfo[i].isUsed) &&
12098 (!pAdapter->aStaInfo[i].isDeauthInProgress))
Jeff Johnson295189b2012-06-20 16:38:30 -070012099 {
12100 u8 *macAddr = pAdapter->aStaInfo[i].macAddrSTA.bytes;
12101 hddLog(VOS_TRACE_LEVEL_INFO,
Arif Hussain24bafea2013-11-15 15:10:03 -080012102 "%s: Delete STA with MAC::"
12103 MAC_ADDRESS_STR,
12104 __func__, MAC_ADDR_ARRAY(macAddr));
Rajesh Chauhan18488fc2013-08-22 10:15:03 -070012105 vos_status = hdd_softap_sta_deauth(pAdapter, macAddr);
12106 if (VOS_IS_STATUS_SUCCESS(vos_status))
12107 pAdapter->aStaInfo[i].isDeauthInProgress = TRUE;
Jeff Johnson295189b2012-06-20 16:38:30 -070012108 }
12109 }
12110 }
12111 else
12112 {
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -080012113
12114 vos_status = hdd_softap_GetStaId(pAdapter,(v_MACADDR_t *)mac, &staId);
12115 if (!VOS_IS_STATUS_SUCCESS(vos_status))
12116 {
12117 hddLog(VOS_TRACE_LEVEL_INFO,
Arif Hussain24bafea2013-11-15 15:10:03 -080012118 "%s: Skip this DEL STA as this is not used::"
12119 MAC_ADDRESS_STR,
12120 __func__, MAC_ADDR_ARRAY(mac));
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -080012121 return -ENOENT;
12122 }
12123
12124 if( pAdapter->aStaInfo[staId].isDeauthInProgress == TRUE)
12125 {
12126 hddLog(VOS_TRACE_LEVEL_INFO,
Arif Hussain24bafea2013-11-15 15:10:03 -080012127 "%s: Skip this DEL STA as deauth is in progress::"
12128 MAC_ADDRESS_STR,
12129 __func__, MAC_ADDR_ARRAY(mac));
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -080012130 return -ENOENT;
12131 }
12132
12133 pAdapter->aStaInfo[staId].isDeauthInProgress = TRUE;
12134
Jeff Johnson295189b2012-06-20 16:38:30 -070012135 hddLog(VOS_TRACE_LEVEL_INFO,
12136 "%s: Delete STA with MAC::"
Arif Hussain24bafea2013-11-15 15:10:03 -080012137 MAC_ADDRESS_STR,
Jeff Johnson295189b2012-06-20 16:38:30 -070012138 __func__,
Arif Hussain24bafea2013-11-15 15:10:03 -080012139 MAC_ADDR_ARRAY(mac));
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -080012140
12141 vos_status = hdd_softap_sta_deauth(pAdapter, mac);
12142 if (!VOS_IS_STATUS_SUCCESS(vos_status))
12143 {
12144 pAdapter->aStaInfo[staId].isDeauthInProgress = FALSE;
12145 hddLog(VOS_TRACE_LEVEL_INFO,
12146 "%s: STA removal failed for ::"
Arif Hussain24bafea2013-11-15 15:10:03 -080012147 MAC_ADDRESS_STR,
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -080012148 __func__,
Arif Hussain24bafea2013-11-15 15:10:03 -080012149 MAC_ADDR_ARRAY(mac));
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -080012150 return -ENOENT;
12151 }
12152
Jeff Johnson295189b2012-06-20 16:38:30 -070012153 }
12154 }
12155
12156 EXIT();
12157
12158 return 0;
12159}
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053012160static int wlan_hdd_cfg80211_del_station(struct wiphy *wiphy,
12161 struct net_device *dev, u8 *mac)
12162{
12163 int ret;
Jeff Johnson295189b2012-06-20 16:38:30 -070012164
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053012165 vos_ssr_protect(__func__);
12166 ret = __wlan_hdd_cfg80211_del_station(wiphy, dev, mac);
12167 vos_ssr_unprotect(__func__);
12168
12169 return ret;
12170}
12171
12172static int __wlan_hdd_cfg80211_add_station(struct wiphy *wiphy,
Hoonki Lee11f7dda2013-02-14 16:55:44 -080012173 struct net_device *dev, u8 *mac, struct station_parameters *params)
12174{
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053012175 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Gopichand Nakkalab977a972013-02-18 19:15:09 -080012176 int status = -EPERM;
Hoonki Lee11f7dda2013-02-14 16:55:44 -080012177#ifdef FEATURE_WLAN_TDLS
12178 u32 mask, set;
Hoonki Lee11f7dda2013-02-14 16:55:44 -080012179 ENTER();
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053012180
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053012181 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
12182 TRACE_CODE_HDD_CFG80211_ADD_STA,
12183 pAdapter->sessionId, params->listen_interval));
Mohit Khanna698ba2a2012-12-04 15:08:18 -080012184 mask = params->sta_flags_mask;
12185
12186 set = params->sta_flags_set;
12187
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070012188#ifdef WLAN_FEATURE_TDLS_DEBUG
12189 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
12190 "%s: mask 0x%x set 0x%x " MAC_ADDRESS_STR,
12191 __func__, mask, set, MAC_ADDR_ARRAY(mac));
12192#endif
Mohit Khanna698ba2a2012-12-04 15:08:18 -080012193
12194 if (mask & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
12195 if (set & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
Gopichand Nakkala681989c2013-03-06 22:27:48 -080012196 status = wlan_hdd_tdls_add_station(wiphy, dev, mac, 0, NULL);
Mohit Khanna698ba2a2012-12-04 15:08:18 -080012197 }
12198 }
12199#endif
Gopichand Nakkalab977a972013-02-18 19:15:09 -080012200 return status;
Jeff Johnson295189b2012-06-20 16:38:30 -070012201}
12202
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053012203static int wlan_hdd_cfg80211_add_station(struct wiphy *wiphy,
12204 struct net_device *dev, u8 *mac, struct station_parameters *params)
12205{
12206 int ret;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012207
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053012208 vos_ssr_protect(__func__);
12209 ret = __wlan_hdd_cfg80211_add_station(wiphy, dev, mac, params);
12210 vos_ssr_unprotect(__func__);
12211
12212 return ret;
12213}
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012214#ifdef FEATURE_WLAN_LFR
Wilson Yang6507c4e2013-10-01 20:11:19 -070012215
Mahesh A Saptasagarf7418d72014-06-02 14:48:54 +053012216static int __wlan_hdd_cfg80211_set_pmksa(struct wiphy *wiphy, struct net_device *dev,
Jeff Johnsond13512a2012-07-17 11:42:19 -070012217 struct cfg80211_pmksa *pmksa)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012218{
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012219 tANI_U32 j=0;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012220 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Agarwal Ashish3da95242014-05-21 14:57:17 +053012221 hdd_station_ctx_t *pHddStaCtx;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012222 tHalHandle halHandle;
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012223 eHalStatus result;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053012224 int status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012225 tANI_U8 BSSIDMatched = 0;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053012226 hdd_context_t *pHddCtx;
Jeff Johnson0299d0a2013-10-30 12:37:43 -070012227 hddLog(VOS_TRACE_LEVEL_DEBUG, "%s: set PMKSA for " MAC_ADDRESS_STR,
12228 __func__, MAC_ADDR_ARRAY(pmksa->bssid));
Jeff Johnsone7245742012-09-05 17:12:55 -070012229
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012230 // Validate pAdapter
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053012231 if ( NULL == pAdapter )
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012232 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053012233 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid Adapter" ,__func__);
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012234 return -EINVAL;
12235 }
12236
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053012237 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
12238 status = wlan_hdd_validate_context(pHddCtx);
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012239
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053012240 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012241 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053012242 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
12243 "%s: HDD context is not valid", __func__);
12244 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012245 }
12246
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012247 // Retrieve halHandle
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012248 halHandle = WLAN_HDD_GET_HAL_CTX(pAdapter);
Agarwal Ashish3da95242014-05-21 14:57:17 +053012249 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012250
Agarwal Ashish3da95242014-05-21 14:57:17 +053012251 for (j = 0; j < pHddStaCtx->PMKIDCacheIndex; j++)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012252 {
Agarwal Ashish3da95242014-05-21 14:57:17 +053012253 if (vos_mem_compare(pHddStaCtx->PMKIDCache[j].BSSID,
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012254 pmksa->bssid, WNI_CFG_BSSID_LEN))
12255 {
12256 /* BSSID matched previous entry. Overwrite it. */
12257 BSSIDMatched = 1;
Agarwal Ashish3da95242014-05-21 14:57:17 +053012258 vos_mem_copy(pHddStaCtx->PMKIDCache[j].BSSID,
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012259 pmksa->bssid, WNI_CFG_BSSID_LEN);
Agarwal Ashish3da95242014-05-21 14:57:17 +053012260 vos_mem_copy(pHddStaCtx->PMKIDCache[j].PMKID,
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012261 pmksa->pmkid,
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012262 CSR_RSN_PMKID_SIZE);
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012263 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: Reusing cache entry %d.",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -070012264 __func__, j );
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012265 dump_bssid(pmksa->bssid);
12266 dump_pmkid(halHandle, pmksa->pmkid);
12267 break;
12268 }
12269 }
12270
Madan Mohan Koyyalamudic4b317d2012-10-18 19:43:08 -070012271 /* Check we compared all entries,if then take the first slot now */
Agarwal Ashish3da95242014-05-21 14:57:17 +053012272 if (j == MAX_PMKSAIDS_IN_CACHE) pHddStaCtx->PMKIDCacheIndex=0;
Madan Mohan Koyyalamudic4b317d2012-10-18 19:43:08 -070012273
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012274 if (!BSSIDMatched)
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012275 {
12276 // Now, we DON'T have a BSSID match, so take a new entry in the cache.
Agarwal Ashish3da95242014-05-21 14:57:17 +053012277 vos_mem_copy(pHddStaCtx->PMKIDCache[pHddStaCtx->PMKIDCacheIndex].BSSID,
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012278 pmksa->bssid, ETHER_ADDR_LEN);
Agarwal Ashish3da95242014-05-21 14:57:17 +053012279 vos_mem_copy(pHddStaCtx->PMKIDCache[pHddStaCtx->PMKIDCacheIndex].PMKID,
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012280 pmksa->pmkid,
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012281 CSR_RSN_PMKID_SIZE);
Agarwal Ashish3da95242014-05-21 14:57:17 +053012282 hddLog(VOS_TRACE_LEVEL_DEBUG, "%s: Adding a new cache entry %d.",
12283 __func__, pHddStaCtx->PMKIDCacheIndex );
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012284 dump_bssid(pmksa->bssid);
12285 dump_pmkid(halHandle, pmksa->pmkid);
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012286 // Increment the HDD Local Cache index
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012287 // The "i=0" doesn't work for the call to sme_RoamSetPMKIDCache() - LFR FIXME
Agarwal Ashish3da95242014-05-21 14:57:17 +053012288 if (pHddStaCtx->PMKIDCacheIndex <= (MAX_PMKSAIDS_IN_CACHE-1))
12289 pHddStaCtx->PMKIDCacheIndex++;
12290 else
12291 pHddStaCtx->PMKIDCacheIndex = 0;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012292 }
12293
12294
12295 // Calling csrRoamSetPMKIDCache to configure the PMKIDs into the cache
Agarwal Ashish3da95242014-05-21 14:57:17 +053012296 hddLog(VOS_TRACE_LEVEL_DEBUG, "%s: Calling csrRoamSetPMKIDCache with %d cache entries.",
12297 __func__, pHddStaCtx->PMKIDCacheIndex );
12298
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012299 // Finally set the PMKSA ID Cache in CSR
Gopichand Nakkala747461f2013-04-24 19:24:45 +053012300 result = sme_RoamSetPMKIDCache(halHandle,pAdapter->sessionId,
Agarwal Ashish3da95242014-05-21 14:57:17 +053012301 pHddStaCtx->PMKIDCache,
12302 pHddStaCtx->PMKIDCacheIndex);
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053012303 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
12304 TRACE_CODE_HDD_CFG80211_SET_PMKSA,
12305 pAdapter->sessionId, result));
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012306 return 0;
12307}
12308
Mahesh A Saptasagarf7418d72014-06-02 14:48:54 +053012309static int wlan_hdd_cfg80211_set_pmksa(struct wiphy *wiphy, struct net_device *dev,
12310 struct cfg80211_pmksa *pmksa)
12311{
12312 int ret;
12313
12314 vos_ssr_protect(__func__);
12315 ret = __wlan_hdd_cfg80211_set_pmksa(wiphy, dev, pmksa);
12316 vos_ssr_unprotect(__func__);
12317
12318 return ret;
12319}
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012320
Wilson Yang6507c4e2013-10-01 20:11:19 -070012321
Mahesh A Saptasagarf7418d72014-06-02 14:48:54 +053012322static int __wlan_hdd_cfg80211_del_pmksa(struct wiphy *wiphy, struct net_device *dev,
Wilson Yang6507c4e2013-10-01 20:11:19 -070012323 struct cfg80211_pmksa *pmksa)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012324{
Wilson Yang6507c4e2013-10-01 20:11:19 -070012325 tANI_U32 j=0;
12326 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Agarwal Ashish3da95242014-05-21 14:57:17 +053012327 hdd_station_ctx_t *pHddStaCtx;
Wilson Yang6507c4e2013-10-01 20:11:19 -070012328 tHalHandle halHandle;
Wilson Yang6507c4e2013-10-01 20:11:19 -070012329 tANI_U8 BSSIDMatched = 0;
Wilson Yang6507c4e2013-10-01 20:11:19 -070012330 hdd_context_t *pHddCtx;
Wilson Yangef657d32014-01-15 19:19:23 -080012331 int status = 0;
Wilson Yang6507c4e2013-10-01 20:11:19 -070012332
Jeff Johnson0299d0a2013-10-30 12:37:43 -070012333 hddLog(VOS_TRACE_LEVEL_DEBUG, "%s: deleting PMKSA for " MAC_ADDRESS_STR,
12334 __func__, MAC_ADDR_ARRAY(pmksa->bssid));
Wilson Yang6507c4e2013-10-01 20:11:19 -070012335
12336 /* Validate pAdapter */
12337 if (NULL == pAdapter)
12338 {
12339 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid Adapter" ,__func__);
12340 return -EINVAL;
12341 }
12342
12343 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
12344 status = wlan_hdd_validate_context(pHddCtx);
12345
12346 if (0 != status)
12347 {
12348 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
12349 "%s: HDD context is not valid", __func__);
12350 return status;
12351 }
12352
12353 /*Retrieve halHandle*/
12354 halHandle = WLAN_HDD_GET_HAL_CTX(pAdapter);
Agarwal Ashish3da95242014-05-21 14:57:17 +053012355 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Wilson Yang6507c4e2013-10-01 20:11:19 -070012356
12357 /*in case index is 0,no entry to delete*/
Agarwal Ashish3da95242014-05-21 14:57:17 +053012358 if (0 == pHddStaCtx->PMKIDCacheIndex)
Wilson Yang6507c4e2013-10-01 20:11:19 -070012359 {
Agarwal Ashish3da95242014-05-21 14:57:17 +053012360 hddLog(VOS_TRACE_LEVEL_INFO, FL("No entries to flush"));
12361 return 0;
Wilson Yang6507c4e2013-10-01 20:11:19 -070012362 }
12363
12364 /*find the matching PMKSA entry from j=0 to (index-1),
12365 * and delete the matched one
12366 */
Agarwal Ashish3da95242014-05-21 14:57:17 +053012367 for (j = 0; j < pHddStaCtx->PMKIDCacheIndex; j++)
Wilson Yang6507c4e2013-10-01 20:11:19 -070012368 {
Agarwal Ashish3da95242014-05-21 14:57:17 +053012369 if (vos_mem_compare(pHddStaCtx->PMKIDCache[j].BSSID,
Wilson Yang6507c4e2013-10-01 20:11:19 -070012370 pmksa->bssid,
12371 WNI_CFG_BSSID_LEN))
12372 {
12373 /* BSSID matched entry */
12374 BSSIDMatched = 1;
Agarwal Ashish3da95242014-05-21 14:57:17 +053012375 if (j < pHddStaCtx->PMKIDCacheIndex-1)
Wilson Yang6507c4e2013-10-01 20:11:19 -070012376 {
12377 /*replace the matching entry with the last entry in HDD local cache*/
Agarwal Ashish3da95242014-05-21 14:57:17 +053012378 vos_mem_copy(pHddStaCtx->PMKIDCache[j].BSSID,
12379 pHddStaCtx->PMKIDCache[pHddStaCtx->PMKIDCacheIndex-1].BSSID,
12380 VOS_MAC_ADDR_SIZE);
12381 vos_mem_copy(pHddStaCtx->PMKIDCache[j].PMKID,
12382 pHddStaCtx->PMKIDCache[pHddStaCtx->PMKIDCacheIndex-1].PMKID,
12383 CSR_RSN_PMKID_SIZE);
12384 }
Wilson Yang6507c4e2013-10-01 20:11:19 -070012385
12386 /*clear the last entry in HDD cache ---[index-1]*/
Agarwal Ashish3da95242014-05-21 14:57:17 +053012387 vos_mem_zero(pHddStaCtx->PMKIDCache[pHddStaCtx->PMKIDCacheIndex-1].BSSID,
12388 VOS_MAC_ADDR_SIZE);
12389 vos_mem_zero(pHddStaCtx->PMKIDCache[pHddStaCtx->PMKIDCacheIndex-1].PMKID,
12390 CSR_RSN_PMKID_SIZE);
Wilson Yang6507c4e2013-10-01 20:11:19 -070012391 /*reduce the PMKID array index*/
Agarwal Ashish3da95242014-05-21 14:57:17 +053012392 pHddStaCtx->PMKIDCacheIndex--;
Wilson Yang6507c4e2013-10-01 20:11:19 -070012393 /*delete the last PMKID cache in CSR*/
Wilson Yangef657d32014-01-15 19:19:23 -080012394 if (eHAL_STATUS_SUCCESS !=
12395 sme_RoamDelPMKIDfromCache(halHandle, pAdapter->sessionId, pmksa->bssid))
Wilson Yang6507c4e2013-10-01 20:11:19 -070012396 {
12397 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: cannot delete PMKSA %d CONTENT.",
Agarwal Ashish3da95242014-05-21 14:57:17 +053012398 __func__, pHddStaCtx->PMKIDCacheIndex);
Wilson Yangef657d32014-01-15 19:19:23 -080012399 status = -EINVAL;
Wilson Yang6507c4e2013-10-01 20:11:19 -070012400 }
12401
12402 dump_bssid(pmksa->bssid);
12403 dump_pmkid(halHandle,pmksa->pmkid);
12404
12405 break;
12406 }
12407 }
12408
12409 /* we compare all entries,but cannot find matching entry */
12410 if (j == MAX_PMKSAIDS_IN_CACHE && !BSSIDMatched)
12411 {
Jeff Johnson0299d0a2013-10-30 12:37:43 -070012412 hddLog(VOS_TRACE_LEVEL_FATAL,
12413 "%s: No such PMKSA entry existed " MAC_ADDRESS_STR,
12414 __func__, MAC_ADDR_ARRAY(pmksa->bssid));
Wilson Yang6507c4e2013-10-01 20:11:19 -070012415 dump_bssid(pmksa->bssid);
12416 dump_pmkid(halHandle, pmksa->pmkid);
12417 return -EINVAL;
12418 }
Wilson Yangef657d32014-01-15 19:19:23 -080012419 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012420}
12421
Wilson Yang6507c4e2013-10-01 20:11:19 -070012422
Mahesh A Saptasagarf7418d72014-06-02 14:48:54 +053012423static int wlan_hdd_cfg80211_del_pmksa(struct wiphy *wiphy, struct net_device *dev,
12424 struct cfg80211_pmksa *pmksa)
12425{
12426 int ret;
Wilson Yang6507c4e2013-10-01 20:11:19 -070012427
Mahesh A Saptasagarf7418d72014-06-02 14:48:54 +053012428 vos_ssr_protect(__func__);
12429 ret = __wlan_hdd_cfg80211_del_pmksa(wiphy, dev, pmksa);
12430 vos_ssr_unprotect(__func__);
12431
12432 return ret;
12433
12434}
12435
12436static int __wlan_hdd_cfg80211_flush_pmksa(struct wiphy *wiphy, struct net_device *dev)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012437{
Wilson Yang6507c4e2013-10-01 20:11:19 -070012438 tANI_U32 j=0;
12439 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Agarwal Ashish3da95242014-05-21 14:57:17 +053012440 hdd_station_ctx_t *pHddStaCtx;
Wilson Yang6507c4e2013-10-01 20:11:19 -070012441 tHalHandle halHandle;
12442 hdd_context_t *pHddCtx;
12443 tANI_U8 *pBSSId;
Wilson Yangef657d32014-01-15 19:19:23 -080012444 int status = 0;
Wilson Yang6507c4e2013-10-01 20:11:19 -070012445
12446 hddLog(VOS_TRACE_LEVEL_DEBUG, "%s: flushing PMKSA ",__func__);
12447
12448 /* Validate pAdapter */
12449 if (NULL == pAdapter)
12450 {
12451 hddLog(VOS_TRACE_LEVEL_ERROR,
12452 "%s: Invalid Adapter" ,__func__);
12453 return -EINVAL;
12454 }
12455
12456 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
12457 status = wlan_hdd_validate_context(pHddCtx);
12458
12459 if (0 != status)
12460 {
12461 hddLog(VOS_TRACE_LEVEL_ERROR,
12462 "%s: HDD context is not valid", __func__);
12463 return status;
12464 }
12465
12466 /*Retrieve halHandle*/
12467 halHandle = WLAN_HDD_GET_HAL_CTX(pAdapter);
Agarwal Ashish3da95242014-05-21 14:57:17 +053012468 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Wilson Yang6507c4e2013-10-01 20:11:19 -070012469
12470 /*in case index is 0,no entry to delete*/
Agarwal Ashish3da95242014-05-21 14:57:17 +053012471 if (0 == pHddStaCtx->PMKIDCacheIndex)
Wilson Yang6507c4e2013-10-01 20:11:19 -070012472 {
Vinay Krishna Erannacbf75f42014-02-26 17:35:20 +053012473 hddLog(VOS_TRACE_LEVEL_ERROR, FL("No entries to flush"));
Agarwal Ashish3da95242014-05-21 14:57:17 +053012474 return 0;
Wilson Yang6507c4e2013-10-01 20:11:19 -070012475 }
12476
12477 /*delete all the PMKSA one by one */
Agarwal Ashish3da95242014-05-21 14:57:17 +053012478 for (j = 0; j < pHddStaCtx->PMKIDCacheIndex; j++)
Wilson Yang6507c4e2013-10-01 20:11:19 -070012479 {
Agarwal Ashish3da95242014-05-21 14:57:17 +053012480 pBSSId =(tANI_U8 *)(pHddStaCtx->PMKIDCache[j].BSSID);
Wilson Yang6507c4e2013-10-01 20:11:19 -070012481 /*delete the PMKID in CSR*/
Wilson Yangef657d32014-01-15 19:19:23 -080012482 if (eHAL_STATUS_SUCCESS !=
12483 sme_RoamDelPMKIDfromCache(halHandle, pAdapter->sessionId, pBSSId))
Wilson Yang6507c4e2013-10-01 20:11:19 -070012484 {
12485 hddLog(VOS_TRACE_LEVEL_ERROR ,"%s cannot flush PMKIDCache %d.",
12486 __func__,j);
Wilson Yangef657d32014-01-15 19:19:23 -080012487 status = -EINVAL;
Wilson Yang6507c4e2013-10-01 20:11:19 -070012488 }
Kiet Lam8d21d5b2013-10-31 17:18:29 +053012489 /*clear the entry in HDD cache 0--index-1 */
Agarwal Ashish3da95242014-05-21 14:57:17 +053012490 vos_mem_zero(pHddStaCtx->PMKIDCache[j].BSSID, VOS_MAC_ADDR_SIZE);
12491 vos_mem_zero(pHddStaCtx->PMKIDCache[j].PMKID, CSR_RSN_PMKID_SIZE);
12492 }
Wilson Yang6507c4e2013-10-01 20:11:19 -070012493
Agarwal Ashish3da95242014-05-21 14:57:17 +053012494 pHddStaCtx->PMKIDCacheIndex = 0;
Wilson Yangef657d32014-01-15 19:19:23 -080012495 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012496}
Mahesh A Saptasagarf7418d72014-06-02 14:48:54 +053012497
12498static int wlan_hdd_cfg80211_flush_pmksa(struct wiphy *wiphy, struct net_device *dev)
12499{
12500 int ret;
12501
12502 vos_ssr_protect(__func__);
12503 ret = __wlan_hdd_cfg80211_flush_pmksa(wiphy, dev);
12504 vos_ssr_unprotect(__func__);
12505
12506 return ret;
12507}
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012508#endif
12509
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070012510#if defined(WLAN_FEATURE_VOWIFI_11R) && defined(KERNEL_SUPPORT_11R_CFG80211)
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053012511static int __wlan_hdd_cfg80211_update_ft_ies(struct wiphy *wiphy,
12512 struct net_device *dev,
12513 struct cfg80211_update_ft_ies_params *ftie)
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070012514{
12515 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
12516 hdd_station_ctx_t *pHddStaCtx;
12517
12518 if (NULL == pAdapter)
12519 {
Arif Hussain6d2a3322013-11-17 19:50:10 -080012520 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Adapter is NULL", __func__);
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070012521 return -ENODEV;
12522 }
12523
12524 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
12525
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053012526 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
12527 TRACE_CODE_HDD_CFG80211_UPDATE_FT_IES,
12528 pAdapter->sessionId, pHddStaCtx->conn_info.connState));
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070012529 // Added for debug on reception of Re-assoc Req.
12530 if (eConnectionState_Associated != pHddStaCtx->conn_info.connState)
12531 {
Arif Hussain6d2a3322013-11-17 19:50:10 -080012532 hddLog(LOGE, FL("Called with Ie of length = %zu when not associated"),
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070012533 ftie->ie_len);
Arif Hussain6d2a3322013-11-17 19:50:10 -080012534 hddLog(LOGE, FL("Should be Re-assoc Req IEs"));
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070012535 }
12536
12537#ifdef WLAN_FEATURE_VOWIFI_11R_DEBUG
Arif Hussain6d2a3322013-11-17 19:50:10 -080012538 hddLog(LOGE, FL("%s called with Ie of length = %zu"), __func__,
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070012539 ftie->ie_len);
12540#endif
12541
12542 // Pass the received FT IEs to SME
Gopichand Nakkala356fb102013-03-06 12:34:04 +053012543 sme_SetFTIEs( WLAN_HDD_GET_HAL_CTX(pAdapter), pAdapter->sessionId,
12544 (const u8 *)ftie->ie,
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070012545 ftie->ie_len);
12546 return 0;
12547}
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053012548
12549static int wlan_hdd_cfg80211_update_ft_ies(struct wiphy *wiphy,
12550 struct net_device *dev,
12551 struct cfg80211_update_ft_ies_params *ftie)
12552{
12553 int ret;
12554
12555 vos_ssr_protect(__func__);
12556 ret = __wlan_hdd_cfg80211_update_ft_ies(wiphy, dev, ftie);
12557 vos_ssr_unprotect(__func__);
12558
12559 return ret;
12560}
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070012561#endif
Jeff Johnson04dd8a82012-06-29 20:41:40 -070012562
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012563#ifdef FEATURE_WLAN_SCAN_PNO
12564
12565void hdd_cfg80211_sched_scan_done_callback(void *callbackContext,
12566 tSirPrefNetworkFoundInd *pPrefNetworkFoundInd)
12567{
12568 int ret;
12569 hdd_adapter_t* pAdapter = (hdd_adapter_t*)callbackContext;
12570 hdd_context_t *pHddCtx;
12571
Nirav Shah80830bf2013-12-31 16:35:12 +053012572 ENTER();
12573
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012574 if (NULL == pAdapter)
12575 {
Agarwal Ashish971c2882013-10-30 20:11:12 +053012576 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012577 "%s: HDD adapter is Null", __func__);
12578 return ;
12579 }
12580
12581 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
12582 if (NULL == pHddCtx)
12583 {
12584 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
12585 "%s: HDD context is Null!!!", __func__);
12586 return ;
12587 }
12588
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053012589 spin_lock(&pHddCtx->schedScan_lock);
12590 if (TRUE == pHddCtx->isWiphySuspended)
12591 {
12592 pHddCtx->isSchedScanUpdatePending = TRUE;
12593 spin_unlock(&pHddCtx->schedScan_lock);
12594 hddLog(VOS_TRACE_LEVEL_INFO,
12595 "%s: Update cfg80211 scan database after it resume", __func__);
12596 return ;
12597 }
12598 spin_unlock(&pHddCtx->schedScan_lock);
12599
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012600 ret = wlan_hdd_cfg80211_update_bss(pHddCtx->wiphy, pAdapter);
12601
12602 if (0 > ret)
12603 hddLog(VOS_TRACE_LEVEL_INFO, "%s: NO SCAN result", __func__);
12604
12605 cfg80211_sched_scan_results(pHddCtx->wiphy);
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053012606 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
12607 "%s: cfg80211 scan result database updated", __func__);
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012608}
12609
12610/*
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +053012611 * FUNCTION: wlan_hdd_is_pno_allowed
Vinay Krishna Erannacbf75f42014-02-26 17:35:20 +053012612 * Disallow pno if any session is active
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +053012613 */
12614static eHalStatus wlan_hdd_is_pno_allowed(hdd_adapter_t *pAdapter)
12615{
12616 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
12617 hdd_adapter_t *pTempAdapter = NULL;
Vinay Krishna Eranna23ffd182013-12-26 19:16:55 +053012618 hdd_station_ctx_t *pStaCtx;
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +053012619 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
12620 int status = 0;
12621 status = hdd_get_front_adapter(pHddCtx, &pAdapterNode);
12622
Vinay Krishna Erannacbf75f42014-02-26 17:35:20 +053012623 /* The current firmware design does not allow PNO during any
12624 * active sessions. Hence, determine the active sessions
12625 * and return a failure.
12626 */
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +053012627 while ((NULL != pAdapterNode) && (VOS_STATUS_SUCCESS == status))
12628 {
12629 pTempAdapter = pAdapterNode->pAdapter;
Vinay Krishna Eranna23ffd182013-12-26 19:16:55 +053012630 pStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pTempAdapter);
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +053012631
Vinay Krishna Eranna23ffd182013-12-26 19:16:55 +053012632 if (((WLAN_HDD_INFRA_STATION == pTempAdapter->device_mode)
12633 && (eConnectionState_NotConnected != pStaCtx->conn_info.connState))
12634 || (WLAN_HDD_P2P_CLIENT == pTempAdapter->device_mode)
12635 || (WLAN_HDD_P2P_GO == pTempAdapter->device_mode)
12636 || (WLAN_HDD_SOFTAP == pTempAdapter->device_mode)
12637 )
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +053012638 {
Vinay Krishna Eranna23ffd182013-12-26 19:16:55 +053012639 return eHAL_STATUS_FAILURE;
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +053012640 }
12641 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
12642 pAdapterNode = pNext;
12643 }
Vinay Krishna Eranna23ffd182013-12-26 19:16:55 +053012644 return eHAL_STATUS_SUCCESS;
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +053012645}
12646
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053012647void hdd_cfg80211_sched_scan_start_status_cb(void *callbackContext, VOS_STATUS status)
12648{
12649 hdd_adapter_t *pAdapter = callbackContext;
12650 hdd_context_t *pHddCtx;
12651
12652 if ((NULL == pAdapter) || (WLAN_HDD_ADAPTER_MAGIC != pAdapter->magic))
12653 {
12654 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
12655 FL("Invalid adapter or adapter has invalid magic"));
12656 return;
12657 }
12658
12659 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
12660 if (0 != wlan_hdd_validate_context(pHddCtx))
12661 {
12662 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
12663 FL("HDD context is not valid"));
12664 return;
12665 }
12666
c_hpothub53c45d2014-08-18 16:53:14 +053012667 if (VOS_STATUS_SUCCESS != status)
12668 {
12669 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053012670 FL("PNO enable response status = %d"), status);
c_hpothub53c45d2014-08-18 16:53:14 +053012671 pHddCtx->isPnoEnable = FALSE;
12672 }
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053012673
12674 pAdapter->pno_req_status = (status == VOS_STATUS_SUCCESS) ? 0 : -EBUSY;
12675 complete(&pAdapter->pno_comp_var);
12676}
12677
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +053012678/*
Mahesh A Saptasagar6cc38562014-05-23 21:22:17 +053012679 * FUNCTION: __wlan_hdd_cfg80211_sched_scan_start
12680 * Function to enable PNO
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012681 */
Mahesh A Saptasagar6cc38562014-05-23 21:22:17 +053012682static int __wlan_hdd_cfg80211_sched_scan_start(struct wiphy *wiphy,
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012683 struct net_device *dev, struct cfg80211_sched_scan_request *request)
12684{
12685 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
12686 tpSirPNOScanReq pPnoRequest = NULL;
12687 hdd_context_t *pHddCtx;
12688 tHalHandle hHal;
Mahesh A Saptasagar7bd6ad42014-07-21 18:56:33 +053012689 v_U32_t i, indx, num_ch, tempInterval, j;
Sushant Kaushikd62d9782014-02-19 15:39:40 +053012690 u8 valid_ch[WNI_CFG_VALID_CHANNEL_LIST_LEN] = {0};
12691 u8 channels_allowed[WNI_CFG_VALID_CHANNEL_LIST_LEN] = {0};
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012692 v_U32_t num_channels_allowed = WNI_CFG_VALID_CHANNEL_LIST_LEN;
12693 eHalStatus status = eHAL_STATUS_FAILURE;
Kamath Vinayakba5313f2013-08-22 15:52:39 +053012694 int ret = 0;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012695
12696 if (NULL == pAdapter)
12697 {
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053012698 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012699 "%s: HDD adapter is Null", __func__);
12700 return -ENODEV;
12701 }
12702
12703 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053012704 ret = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012705
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053012706 if (0 != ret)
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012707 {
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +053012708 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
12709 "%s: HDD context is not valid", __func__);
Kamath Vinayakba5313f2013-08-22 15:52:39 +053012710 return -EINVAL;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012711 }
12712
12713 hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
12714 if (NULL == hHal)
12715 {
12716 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
12717 "%s: HAL context is Null!!!", __func__);
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053012718 return -EINVAL;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012719 }
Sushant Kaushik2fe89932014-09-03 10:58:09 +053012720 sme_ScanFlushResult(hHal, pAdapter->sessionId);
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +053012721 ret = wlan_hdd_scan_abort(pAdapter);
Girish Gowli4bf7a632014-06-12 13:42:11 +053012722 if (ret < 0)
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +053012723 {
12724 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
12725 "%s: aborting the existing scan is unsuccessfull", __func__);
12726 return -EBUSY;
12727 }
12728
Vinay Krishna Eranna23ffd182013-12-26 19:16:55 +053012729 if (eHAL_STATUS_SUCCESS != wlan_hdd_is_pno_allowed(pAdapter))
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +053012730 {
Vinay Krishna Erannacbf75f42014-02-26 17:35:20 +053012731 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_WARN,
Vinay Krishna Eranna23ffd182013-12-26 19:16:55 +053012732 FL("Cannot handle sched_scan"));
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +053012733 return -EBUSY;
12734 }
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012735
c_hpothu37f21312014-04-09 21:49:54 +053012736 if (TRUE == pHddCtx->isPnoEnable)
12737 {
12738 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_WARN,
12739 FL("already PNO is enabled"));
12740 return -EBUSY;
12741 }
12742 pHddCtx->isPnoEnable = TRUE;
12743
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012744 pPnoRequest = (tpSirPNOScanReq) vos_mem_malloc(sizeof (tSirPNOScanReq));
12745 if (NULL == pPnoRequest)
12746 {
12747 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
12748 "%s: vos_mem_malloc failed", __func__);
c_hpothu37f21312014-04-09 21:49:54 +053012749 pHddCtx->isPnoEnable = FALSE;
Kamath Vinayakba5313f2013-08-22 15:52:39 +053012750 return -ENOMEM;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012751 }
12752
Madan Mohan Koyyalamudic3f04352013-09-26 19:21:48 +053012753 memset(pPnoRequest, 0, sizeof (tSirPNOScanReq));
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012754 pPnoRequest->enable = 1; /*Enable PNO */
12755 pPnoRequest->ucNetworksCount = request->n_match_sets;
12756
12757 if (( !pPnoRequest->ucNetworksCount ) ||
12758 ( pPnoRequest->ucNetworksCount > SIR_PNO_MAX_SUPP_NETWORKS ))
12759 {
12760 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Sushant Kaushik1e406c32014-05-09 15:57:52 +053012761 "%s: Network input is not correct %d Max Network supported is %d",
12762 __func__, pPnoRequest->ucNetworksCount,
12763 SIR_PNO_MAX_SUPP_NETWORKS);
Kamath Vinayakba5313f2013-08-22 15:52:39 +053012764 ret = -EINVAL;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012765 goto error;
12766 }
12767
12768 if ( SIR_PNO_MAX_NETW_CHANNELS_EX < request->n_channels )
12769 {
12770 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Nirav Shah80830bf2013-12-31 16:35:12 +053012771 "%s: Incorrect number of channels %d",
12772 __func__, request->n_channels);
Kamath Vinayakba5313f2013-08-22 15:52:39 +053012773 ret = -EINVAL;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012774 goto error;
12775 }
12776
12777 /* Framework provides one set of channels(all)
12778 * common for all saved profile */
12779 if (0 != ccmCfgGetStr(hHal, WNI_CFG_VALID_CHANNEL_LIST,
12780 channels_allowed, &num_channels_allowed))
12781 {
12782 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
12783 "%s: failed to get valid channel list", __func__);
Kamath Vinayakba5313f2013-08-22 15:52:39 +053012784 ret = -EINVAL;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012785 goto error;
12786 }
12787 /* Checking each channel against allowed channel list */
12788 num_ch = 0;
Nirav Shah80830bf2013-12-31 16:35:12 +053012789 if (request->n_channels)
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012790 {
Nirav Shah80830bf2013-12-31 16:35:12 +053012791 char chList [(request->n_channels*5)+1];
12792 int len;
12793 for (i = 0, len = 0; i < request->n_channels; i++)
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012794 {
Nirav Shah80830bf2013-12-31 16:35:12 +053012795 for (indx = 0; indx < num_channels_allowed; indx++)
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012796 {
Nirav Shah80830bf2013-12-31 16:35:12 +053012797 if (request->channels[i]->hw_value == channels_allowed[indx])
12798 {
12799 valid_ch[num_ch++] = request->channels[i]->hw_value;
12800 len += snprintf(chList+len, 5, "%d ",
12801 request->channels[i]->hw_value);
12802 break ;
12803 }
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012804 }
12805 }
Nirav Shah80830bf2013-12-31 16:35:12 +053012806 hddLog(VOS_TRACE_LEVEL_INFO,"Channel-List: %s ", chList);
12807 }
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012808
12809 /* Filling per profile params */
12810 for (i = 0; i < pPnoRequest->ucNetworksCount; i++)
12811 {
12812 pPnoRequest->aNetworks[i].ssId.length =
12813 request->match_sets[i].ssid.ssid_len;
12814
12815 if (( 0 == pPnoRequest->aNetworks[i].ssId.length ) ||
12816 ( pPnoRequest->aNetworks[i].ssId.length > 32 ) )
12817 {
12818 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Nirav Shah80830bf2013-12-31 16:35:12 +053012819 "%s: SSID Len %d is not correct for network %d",
12820 __func__, pPnoRequest->aNetworks[i].ssId.length, i);
Kamath Vinayakba5313f2013-08-22 15:52:39 +053012821 ret = -EINVAL;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012822 goto error;
12823 }
12824
12825 memcpy(pPnoRequest->aNetworks[i].ssId.ssId,
12826 request->match_sets[i].ssid.ssid,
12827 request->match_sets[i].ssid.ssid_len);
Sushant Kaushik1e406c32014-05-09 15:57:52 +053012828 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
12829 "%s: SSID of network %d is %s ", __func__,
12830 i, pPnoRequest->aNetworks[i].ssId.ssId);
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012831 pPnoRequest->aNetworks[i].authentication = 0; /*eAUTH_TYPE_ANY*/
12832 pPnoRequest->aNetworks[i].encryption = 0; /*eED_ANY*/
12833 pPnoRequest->aNetworks[i].bcastNetwType = 0; /*eBCAST_UNKNOWN*/
12834
12835 /*Copying list of valid channel into request */
12836 memcpy(pPnoRequest->aNetworks[i].aChannels, valid_ch, num_ch);
12837 pPnoRequest->aNetworks[i].ucChannelCount = num_ch;
12838
12839 pPnoRequest->aNetworks[i].rssiThreshold = 0; //Default value
12840 }
12841
Mahesh A Saptasagar7bd6ad42014-07-21 18:56:33 +053012842 for (i = 0; i < request->n_ssids; i++)
12843 {
12844 j = 0;
12845 while (j < pPnoRequest->ucNetworksCount)
12846 {
12847 if ((pPnoRequest->aNetworks[j].ssId.length ==
12848 request->ssids[i].ssid_len) &&
12849 (0 == memcmp(pPnoRequest->aNetworks[j].ssId.ssId,
12850 request->ssids[i].ssid,
12851 pPnoRequest->aNetworks[j].ssId.length)))
12852 {
12853 pPnoRequest->aNetworks[j].bcastNetwType = eBCAST_HIDDEN;
12854 break;
12855 }
12856 j++;
12857 }
12858 }
12859 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
12860 "Number of hidden networks being Configured = %d",
12861 request->n_ssids);
Madan Mohan Koyyalamudia7765d52013-09-18 16:49:56 +053012862 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Jeff Johnson59a121e2013-11-30 09:46:08 -080012863 "request->ie_len = %zu", request->ie_len);
Madan Mohan Koyyalamudia7765d52013-09-18 16:49:56 +053012864 if ((0 < request->ie_len) && (NULL != request->ie))
12865 {
12866 pPnoRequest->us24GProbeTemplateLen = request->ie_len;
12867 memcpy(&pPnoRequest->p24GProbeTemplate, request->ie,
12868 pPnoRequest->us24GProbeTemplateLen);
12869
12870 pPnoRequest->us5GProbeTemplateLen = request->ie_len;
12871 memcpy(&pPnoRequest->p5GProbeTemplate, request->ie,
12872 pPnoRequest->us5GProbeTemplateLen);
12873 }
12874
Madan Mohan Koyyalamudi1d16f462013-08-27 16:25:34 +053012875 /* Driver gets only one time interval which is hardcoded in
12876 * supplicant for 10000ms. Taking power consumption into account 6 timers
12877 * will be used, Timervalue is increased exponentially i.e 10,20,40,
12878 * 80,160,320 secs. And number of scan cycle for each timer
12879 * is configurable through INI param gPNOScanTimerRepeatValue.
12880 * If it is set to 0 only one timer will be used and PNO scan cycle
12881 * will be repeated after each interval specified by supplicant
12882 * till PNO is disabled.
12883 */
12884 if (0 == pHddCtx->cfg_ini->configPNOScanTimerRepeatValue)
12885 pPnoRequest->scanTimers.ucScanTimersCount = HDD_PNO_SCAN_TIMERS_SET_ONE;
12886 else
12887 pPnoRequest->scanTimers.ucScanTimersCount =
12888 HDD_PNO_SCAN_TIMERS_SET_MULTIPLE;
12889
12890 tempInterval = (request->interval)/1000;
12891 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
12892 "Base scan interval = %d PNOScanTimerRepeatValue = %d",
12893 tempInterval, pHddCtx->cfg_ini->configPNOScanTimerRepeatValue);
12894 for ( i = 0; i < pPnoRequest->scanTimers.ucScanTimersCount; i++)
12895 {
12896 pPnoRequest->scanTimers.aTimerValues[i].uTimerRepeat =
12897 pHddCtx->cfg_ini->configPNOScanTimerRepeatValue;
12898 pPnoRequest->scanTimers.aTimerValues[i].uTimerValue = tempInterval;
12899 tempInterval *= 2;
12900 }
12901 //Repeat last timer until pno disabled.
12902 pPnoRequest->scanTimers.aTimerValues[i-1].uTimerRepeat = 0;
12903
Madan Mohan Koyyalamudid206c7b2013-09-26 22:54:51 +053012904 pPnoRequest->modePNO = SIR_PNO_MODE_IMMEDIATE;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012905
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053012906 INIT_COMPLETION(pAdapter->pno_comp_var);
12907 pPnoRequest->statusCallback = hdd_cfg80211_sched_scan_start_status_cb;
12908 pPnoRequest->callbackContext = pAdapter;
12909 pAdapter->pno_req_status = 0;
12910
Nirav Shah80830bf2013-12-31 16:35:12 +053012911 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
12912 "SessionId %d, enable %d, modePNO %d, ucScanTimersCount %d",
12913 pAdapter->sessionId, pPnoRequest->enable, pPnoRequest->modePNO,
12914 pPnoRequest->scanTimers.ucScanTimersCount);
12915
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012916 status = sme_SetPreferredNetworkList(WLAN_HDD_GET_HAL_CTX(pAdapter),
12917 pPnoRequest, pAdapter->sessionId,
12918 hdd_cfg80211_sched_scan_done_callback, pAdapter);
12919 if (eHAL_STATUS_SUCCESS != status)
12920 {
12921 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Nirav Shah80830bf2013-12-31 16:35:12 +053012922 "%s: Failed to enable PNO", __func__);
Kamath Vinayakba5313f2013-08-22 15:52:39 +053012923 ret = -EINVAL;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012924 goto error;
12925 }
12926
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053012927 ret = wait_for_completion_timeout(
12928 &pAdapter->pno_comp_var,
12929 msecs_to_jiffies(WLAN_WAIT_TIME_PNO));
12930 if (0 >= ret)
12931 {
12932 // Did not receive the response for PNO enable in time.
12933 // Assuming the PNO enable was success.
12934 // Returning error from here, because we timeout, results
12935 // in side effect of Wifi (Wifi Setting) not to work.
12936 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
12937 FL("Timed out waiting for PNO to be Enabled"));
12938 ret = 0;
12939 goto error;
12940 }
12941
c_hpothu3c986b22014-07-09 14:45:09 +053012942 vos_mem_free(pPnoRequest);
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053012943 ret = pAdapter->pno_req_status;
c_hpothu37f21312014-04-09 21:49:54 +053012944 return ret;
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053012945
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012946error:
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053012947 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
12948 FL("PNO scanRequest offloaded ret = %d"), ret);
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012949 vos_mem_free(pPnoRequest);
c_hpothu37f21312014-04-09 21:49:54 +053012950 pHddCtx->isPnoEnable = FALSE;
Kamath Vinayakba5313f2013-08-22 15:52:39 +053012951 return ret;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012952}
12953
12954/*
Mahesh A Saptasagar6cc38562014-05-23 21:22:17 +053012955 * FUNCTION: wlan_hdd_cfg80211_sched_scan_start
12956 * NL interface to enable PNO
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012957 */
Mahesh A Saptasagar6cc38562014-05-23 21:22:17 +053012958static int wlan_hdd_cfg80211_sched_scan_start(struct wiphy *wiphy,
12959 struct net_device *dev, struct cfg80211_sched_scan_request *request)
12960{
12961 int ret;
12962
12963 vos_ssr_protect(__func__);
12964 ret = __wlan_hdd_cfg80211_sched_scan_start(wiphy, dev, request);
12965 vos_ssr_unprotect(__func__);
12966
12967 return ret;
12968}
12969
12970/*
12971 * FUNCTION: __wlan_hdd_cfg80211_sched_scan_stop
12972 * Function to disable PNO
12973 */
12974static int __wlan_hdd_cfg80211_sched_scan_stop(struct wiphy *wiphy,
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012975 struct net_device *dev)
12976{
12977 eHalStatus status = eHAL_STATUS_FAILURE;
12978 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
12979 hdd_context_t *pHddCtx;
12980 tHalHandle hHal;
12981 tpSirPNOScanReq pPnoRequest = NULL;
Kamath Vinayakba5313f2013-08-22 15:52:39 +053012982 int ret = 0;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012983
12984 ENTER();
12985
12986 if (NULL == pAdapter)
12987 {
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053012988 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012989 "%s: HDD adapter is Null", __func__);
12990 return -ENODEV;
12991 }
12992
12993 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012994
Kamath Vinayakba5313f2013-08-22 15:52:39 +053012995 if (NULL == pHddCtx)
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053012996 {
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +053012997 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Kamath Vinayakba5313f2013-08-22 15:52:39 +053012998 "%s: HDD context is Null", __func__);
12999 return -ENODEV;
13000 }
13001
13002 /* The return 0 is intentional when isLogpInProgress and
13003 * isLoadUnloadInProgress. We did observe a crash due to a return of
13004 * failure in sched_scan_stop , especially for a case where the unload
13005 * of the happens at the same time. The function __cfg80211_stop_sched_scan
13006 * was clearing rdev->sched_scan_req only when the sched_scan_stop returns
13007 * success. If it returns a failure , then its next invocation due to the
13008 * clean up of the second interface will have the dev pointer corresponding
13009 * to the first one leading to a crash.
13010 */
13011 if (pHddCtx->isLogpInProgress)
13012 {
13013 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13014 "%s: LOGP in Progress. Ignore!!!", __func__);
13015 return ret;
13016 }
13017
Mihir Shete18156292014-03-11 15:38:30 +053013018 if (WLAN_HDD_IS_LOAD_UNLOAD_IN_PROGRESS(pHddCtx))
Kamath Vinayakba5313f2013-08-22 15:52:39 +053013019 {
13020 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13021 "%s: Unloading/Loading in Progress. Ignore!!!", __func__);
13022 return ret;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053013023 }
13024
13025 hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
13026 if (NULL == hHal)
13027 {
13028 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13029 "%s: HAL context is Null!!!", __func__);
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053013030 return -EINVAL;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053013031 }
13032
13033 pPnoRequest = (tpSirPNOScanReq) vos_mem_malloc(sizeof (tSirPNOScanReq));
13034 if (NULL == pPnoRequest)
13035 {
13036 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
13037 "%s: vos_mem_malloc failed", __func__);
Kamath Vinayakba5313f2013-08-22 15:52:39 +053013038 return -ENOMEM;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053013039 }
13040
13041 memset(pPnoRequest, 0, sizeof (tSirPNOScanReq));
13042 pPnoRequest->enable = 0; /* Disable PNO */
13043 pPnoRequest->ucNetworksCount = 0;
13044
13045 status = sme_SetPreferredNetworkList(hHal, pPnoRequest,
13046 pAdapter->sessionId,
13047 NULL, pAdapter);
13048 if (eHAL_STATUS_SUCCESS != status)
13049 {
13050 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13051 "Failed to disabled PNO");
Kamath Vinayakba5313f2013-08-22 15:52:39 +053013052 ret = -EINVAL;
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053013053 goto error;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053013054 }
c_hpothu37f21312014-04-09 21:49:54 +053013055 pHddCtx->isPnoEnable = FALSE;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053013056
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053013057error:
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053013058 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053013059 FL("PNO scan disabled ret = %d"), ret);
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053013060 vos_mem_free(pPnoRequest);
13061
13062 EXIT();
Kamath Vinayakba5313f2013-08-22 15:52:39 +053013063 return ret;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053013064}
13065
Mahesh A Saptasagar6cc38562014-05-23 21:22:17 +053013066/*
13067 * FUNCTION: wlan_hdd_cfg80211_sched_scan_stop
13068 * NL interface to disable PNO
13069 */
13070static int wlan_hdd_cfg80211_sched_scan_stop(struct wiphy *wiphy,
13071 struct net_device *dev)
13072{
13073 int ret;
13074
13075 vos_ssr_protect(__func__);
13076 ret = __wlan_hdd_cfg80211_sched_scan_stop(wiphy, dev);
13077 vos_ssr_unprotect(__func__);
13078
13079 return ret;
13080}
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053013081#endif /*FEATURE_WLAN_SCAN_PNO*/
13082
13083
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013084#ifdef FEATURE_WLAN_TDLS
Sunil Dutt Undekarieacac6f2014-03-21 14:08:53 +053013085#if TDLS_MGMT_VERSION2
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013086static int wlan_hdd_cfg80211_tdls_mgmt(struct wiphy *wiphy, struct net_device *dev,
13087 u8 *peer, u8 action_code, u8 dialog_token,
Sunil Dutt Undekarieacac6f2014-03-21 14:08:53 +053013088 u16 status_code, u32 peer_capability, const u8 *buf, size_t len)
13089#else
13090static int wlan_hdd_cfg80211_tdls_mgmt(struct wiphy *wiphy, struct net_device *dev,
13091 u8 *peer, u8 action_code, u8 dialog_token,
13092 u16 status_code, const u8 *buf, size_t len)
13093#endif
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013094{
13095
13096 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
13097 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013098 u8 peerMac[6];
13099 VOS_STATUS status;
Gopichand Nakkala05922802013-03-14 12:23:19 -070013100 int max_sta_failed = 0;
Hoonki Leea34dd892013-02-05 22:56:02 -080013101 int responder;
Hoonki Leed37cbb32013-04-20 00:31:14 -070013102 long rc;
Sunil Dutt Undekarieacac6f2014-03-21 14:08:53 +053013103#if !(TDLS_MGMT_VERSION2)
13104 u32 peer_capability = 0;
13105#endif
Rajesh Chauhana34c6e62014-03-25 16:37:58 +053013106 tANI_U16 numCurrTdlsPeers;
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053013107
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053013108 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
13109 TRACE_CODE_HDD_CFG80211_TDLS_MGMT,
13110 pAdapter->sessionId, action_code));
Hoonki Lee11f7dda2013-02-14 16:55:44 -080013111 if (NULL == pHddCtx || NULL == pHddCtx->cfg_ini)
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013112 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053013113 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013114 "Invalid arguments");
13115 return -EINVAL;
13116 }
13117
Sameer Thalappil75ea31a2013-02-21 19:38:16 -080013118 if (pHddCtx->isLogpInProgress)
13119 {
13120 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13121 "%s:LOGP in Progress. Ignore!!!", __func__);
Atul Mittal115287b2014-07-08 13:26:33 +053013122 wlan_hdd_tdls_set_link_status(pAdapter,
13123 peer,
13124 eTDLS_LINK_IDLE,
13125 eTDLS_LINK_UNSPECIFIED);
Sameer Thalappil75ea31a2013-02-21 19:38:16 -080013126 return -EBUSY;
13127 }
13128
Hoonki Lee27511902013-03-14 18:19:06 -070013129 if (eTDLS_SUPPORT_NOT_ENABLED == pHddCtx->tdls_mode)
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013130 {
Hoonki Lee27511902013-03-14 18:19:06 -070013131 VOS_TRACE( VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
13132 "%s: TDLS mode is disabled OR not enabled in FW."
13133 MAC_ADDRESS_STR " action %d declined.",
13134 __func__, MAC_ADDR_ARRAY(peer), action_code);
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013135 return -ENOTSUPP;
13136 }
Lee Hoonkic1262f22013-01-24 21:59:00 -080013137
Hoonki Lee27511902013-03-14 18:19:06 -070013138 /* other than teardown frame, other mgmt frames are not sent if disabled */
13139 if (SIR_MAC_TDLS_TEARDOWN != action_code)
13140 {
13141 /* if tdls_mode is disabled to respond to peer's request */
13142 if (eTDLS_SUPPORT_DISABLED == pHddCtx->tdls_mode)
13143 {
13144 VOS_TRACE( VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
13145 "%s: " MAC_ADDRESS_STR
Gopichand Nakkala34d1b062013-03-19 15:28:33 -070013146 " TDLS mode is disabled. action %d declined.",
13147 __func__, MAC_ADDR_ARRAY(peer), action_code);
Hoonki Lee27511902013-03-14 18:19:06 -070013148
13149 return -ENOTSUPP;
13150 }
Agarwal Ashish4b87f922014-06-18 03:03:21 +053013151
13152 if (vos_max_concurrent_connections_reached())
13153 {
13154 hddLog(VOS_TRACE_LEVEL_INFO, FL("Reached max concurrent connections"));
13155 return -EINVAL;
13156 }
Hoonki Lee27511902013-03-14 18:19:06 -070013157 }
13158
Gopichand Nakkalab977a972013-02-18 19:15:09 -080013159 if (WLAN_IS_TDLS_SETUP_ACTION(action_code))
13160 {
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +053013161 if (NULL != wlan_hdd_tdls_is_progress(pHddCtx, peer, TRUE))
Gopichand Nakkalab977a972013-02-18 19:15:09 -080013162 {
13163 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070013164 "%s: " MAC_ADDRESS_STR
Gopichand Nakkala34d1b062013-03-19 15:28:33 -070013165 " TDLS setup is ongoing. action %d declined.",
13166 __func__, MAC_ADDR_ARRAY(peer), action_code);
13167 return -EPERM;
Gopichand Nakkalab977a972013-02-18 19:15:09 -080013168 }
13169 }
13170
Hoonki Lee11f7dda2013-02-14 16:55:44 -080013171 if (SIR_MAC_TDLS_SETUP_REQ == action_code ||
13172 SIR_MAC_TDLS_SETUP_RSP == action_code )
Lee Hoonkic1262f22013-01-24 21:59:00 -080013173 {
Rajesh Chauhana34c6e62014-03-25 16:37:58 +053013174 numCurrTdlsPeers = wlan_hdd_tdlsConnectedPeers(pAdapter);
13175 if (HDD_MAX_NUM_TDLS_STA <= numCurrTdlsPeers)
Lee Hoonkic1262f22013-01-24 21:59:00 -080013176 {
13177 /* supplicant still sends tdls_mgmt(SETUP_REQ) even after
13178 we return error code at 'add_station()'. Hence we have this
13179 check again in addtion to add_station().
13180 Anyway, there is no hard to double-check. */
Hoonki Lee11f7dda2013-02-14 16:55:44 -080013181 if (SIR_MAC_TDLS_SETUP_REQ == action_code)
Lee Hoonkic1262f22013-01-24 21:59:00 -080013182 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070013183 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13184 "%s: " MAC_ADDRESS_STR
Rajesh Chauhana34c6e62014-03-25 16:37:58 +053013185 " TDLS Max peer already connected. action (%d) declined. Num of peers (%d), Max allowed (%d).",
13186 __func__, MAC_ADDR_ARRAY(peer), action_code,
13187 numCurrTdlsPeers, HDD_MAX_NUM_TDLS_STA);
Sunil Dutt388ac8f2013-11-28 18:06:52 +053013188 return -EINVAL;
Lee Hoonkic1262f22013-01-24 21:59:00 -080013189 }
13190 else
13191 {
Gopichand Nakkalab977a972013-02-18 19:15:09 -080013192 /* maximum reached. tweak to send error code to peer and return
13193 error code to supplicant */
Lee Hoonkic1262f22013-01-24 21:59:00 -080013194 status_code = eSIR_MAC_UNSPEC_FAILURE_STATUS;
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070013195 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13196 "%s: " MAC_ADDRESS_STR
Rajesh Chauhana34c6e62014-03-25 16:37:58 +053013197 " TDLS Max peer already connected, send response status (%d). Num of peers (%d), Max allowed (%d).",
13198 __func__, MAC_ADDR_ARRAY(peer), status_code,
13199 numCurrTdlsPeers, HDD_MAX_NUM_TDLS_STA);
Gopichand Nakkala05922802013-03-14 12:23:19 -070013200 max_sta_failed = -EPERM;
Gopichand Nakkalab977a972013-02-18 19:15:09 -080013201 /* fall through to send setup resp with failure status
13202 code */
Lee Hoonkic1262f22013-01-24 21:59:00 -080013203 }
13204 }
Hoonki Lee11f7dda2013-02-14 16:55:44 -080013205 else
13206 {
13207 hddTdlsPeer_t *pTdlsPeer;
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +053013208 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peer, TRUE);
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070013209 if (pTdlsPeer && TDLS_IS_CONNECTED(pTdlsPeer))
Hoonki Lee11f7dda2013-02-14 16:55:44 -080013210 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070013211 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkala34d1b062013-03-19 15:28:33 -070013212 "%s:" MAC_ADDRESS_STR " already connected. action %d declined.",
13213 __func__, MAC_ADDR_ARRAY(peer), action_code);
Hoonki Lee11f7dda2013-02-14 16:55:44 -080013214 return -EPERM;
13215 }
13216 }
Lee Hoonkic1262f22013-01-24 21:59:00 -080013217 }
Hoonki Lee11f7dda2013-02-14 16:55:44 -080013218 vos_mem_copy(peerMac, peer, 6);
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013219
Hoonki Lee1090c6a2013-01-16 17:40:54 -080013220#ifdef WLAN_FEATURE_TDLS_DEBUG
13221 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Arun Kumar Khandavalli9fb625e2014-03-17 16:07:40 +053013222 "%s: " MAC_ADDRESS_STR " action %d, dialog_token %d status %d, len = %zu",
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070013223 "tdls_mgmt", MAC_ADDR_ARRAY(peer),
13224 action_code, dialog_token, status_code, len);
Hoonki Lee1090c6a2013-01-16 17:40:54 -080013225#endif
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013226
Hoonki Leea34dd892013-02-05 22:56:02 -080013227 /*Except teardown responder will not be used so just make 0*/
13228 responder = 0;
Hoonki Lee11f7dda2013-02-14 16:55:44 -080013229 if (SIR_MAC_TDLS_TEARDOWN == action_code)
Hoonki Leea34dd892013-02-05 22:56:02 -080013230 {
Gopichand Nakkala97a65fd2013-04-16 16:59:38 -070013231
13232 hddTdlsPeer_t *pTdlsPeer;
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +053013233 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peerMac, TRUE);
Gopichand Nakkala97a65fd2013-04-16 16:59:38 -070013234
13235 if(pTdlsPeer && TDLS_IS_CONNECTED(pTdlsPeer))
13236 responder = pTdlsPeer->is_responder;
13237 else
Hoonki Leea34dd892013-02-05 22:56:02 -080013238 {
Gopichand Nakkala97a65fd2013-04-16 16:59:38 -070013239 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Arun Kumar Khandavalli9fb625e2014-03-17 16:07:40 +053013240 "%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 -070013241 __func__, MAC_ADDR_ARRAY(peer), (NULL == pTdlsPeer) ? -1 : pTdlsPeer->link_status,
13242 dialog_token, status_code, len);
13243 return -EPERM;
Hoonki Leea34dd892013-02-05 22:56:02 -080013244 }
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013245 }
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013246
Gopichand Nakkala2f1ff152013-07-01 11:27:43 +053013247 /* For explicit trigger of DIS_REQ come out of BMPS for
13248 successfully receiving DIS_RSP from peer. */
Hoonki Lee14621352013-04-16 17:51:19 -070013249 if ((SIR_MAC_TDLS_SETUP_RSP == action_code) ||
Gopichand Nakkala2f1ff152013-07-01 11:27:43 +053013250 (SIR_MAC_TDLS_DIS_RSP == action_code) ||
13251 (SIR_MAC_TDLS_DIS_REQ == action_code))
Hoonki Lee14621352013-04-16 17:51:19 -070013252 {
13253 if (TRUE == sme_IsPmcBmps(WLAN_HDD_GET_HAL_CTX(pAdapter)))
13254 {
13255 VOS_TRACE( VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
Gopichand Nakkala2f1ff152013-07-01 11:27:43 +053013256 "%s: Sending frame action_code %u.Disable BMPS", __func__, action_code);
Hoonki Lee14621352013-04-16 17:51:19 -070013257 hdd_disable_bmps_imps(pHddCtx, WLAN_HDD_INFRA_STATION);
13258 }
Gopichand Nakkala2f1ff152013-07-01 11:27:43 +053013259 if (SIR_MAC_TDLS_DIS_REQ != action_code)
13260 wlan_hdd_tdls_set_cap(pAdapter, peerMac, eTDLS_CAP_SUPPORTED);
Hoonki Lee14621352013-04-16 17:51:19 -070013261 }
13262
Hoonki Lee5305c3a2013-04-29 23:28:59 -070013263 /* make sure doesn't call send_mgmt() while it is pending */
13264 if (TDLS_CTX_MAGIC == pAdapter->mgmtTxCompletionStatus)
13265 {
13266 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -080013267 "%s: " MAC_ADDRESS_STR " action %d couldn't sent, as one is pending. return EBUSY",
Hoonki Lee5305c3a2013-04-29 23:28:59 -070013268 __func__, MAC_ADDR_ARRAY(peer), action_code);
13269 return -EBUSY;
13270 }
13271
13272 pAdapter->mgmtTxCompletionStatus = TDLS_CTX_MAGIC;
Gopichand Nakkalab977a972013-02-18 19:15:09 -080013273 INIT_COMPLETION(pAdapter->tdls_mgmt_comp);
13274
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013275 status = sme_SendTdlsMgmtFrame(WLAN_HDD_GET_HAL_CTX(pAdapter), pAdapter->sessionId,
Pradeep Reddy POTTETIca171f82014-03-21 14:17:35 +053013276 peerMac, action_code, dialog_token, status_code, peer_capability, (tANI_U8 *)buf, len, responder);
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013277
Gopichand Nakkalab977a972013-02-18 19:15:09 -080013278 if (VOS_STATUS_SUCCESS != status)
13279 {
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013280 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13281 "%s: sme_SendTdlsMgmtFrame failed!", __func__);
Hoonki Lee5305c3a2013-04-29 23:28:59 -070013282 pAdapter->mgmtTxCompletionStatus = FALSE;
Hoonki Lee14621352013-04-16 17:51:19 -070013283 wlan_hdd_tdls_check_bmps(pAdapter);
Sunil Dutt388ac8f2013-11-28 18:06:52 +053013284 return -EINVAL;
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013285 }
13286
Hoonki Leed37cbb32013-04-20 00:31:14 -070013287 rc = wait_for_completion_interruptible_timeout(&pAdapter->tdls_mgmt_comp,
13288 msecs_to_jiffies(WAIT_TIME_TDLS_MGMT));
13289
13290 if ((rc <= 0) || (TRUE != pAdapter->mgmtTxCompletionStatus))
Gopichand Nakkalab977a972013-02-18 19:15:09 -080013291 {
Hoonki Leed37cbb32013-04-20 00:31:14 -070013292 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Jeff Johnson0299d0a2013-10-30 12:37:43 -070013293 "%s: Mgmt Tx Completion failed status %ld TxCompletion %u",
Hoonki Leed37cbb32013-04-20 00:31:14 -070013294 __func__, rc, pAdapter->mgmtTxCompletionStatus);
Hoonki Lee5305c3a2013-04-29 23:28:59 -070013295 pAdapter->mgmtTxCompletionStatus = FALSE;
Yue Ma4f55ef32014-01-23 16:45:33 -080013296
13297 if (pHddCtx->isLogpInProgress)
13298 {
13299 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13300 "%s: LOGP in Progress. Ignore!!!", __func__);
13301 return -EAGAIN;
13302 }
13303
Hoonki Leed37cbb32013-04-20 00:31:14 -070013304 wlan_hdd_tdls_check_bmps(pAdapter);
Sunil Dutt388ac8f2013-11-28 18:06:52 +053013305 return -EINVAL;
Gopichand Nakkalab977a972013-02-18 19:15:09 -080013306 }
13307
Gopichand Nakkala05922802013-03-14 12:23:19 -070013308 if (max_sta_failed)
Hoonki Lee14621352013-04-16 17:51:19 -070013309 {
13310 wlan_hdd_tdls_check_bmps(pAdapter);
Gopichand Nakkala05922802013-03-14 12:23:19 -070013311 return max_sta_failed;
Hoonki Lee14621352013-04-16 17:51:19 -070013312 }
Gopichand Nakkalab977a972013-02-18 19:15:09 -080013313
Hoonki Leea34dd892013-02-05 22:56:02 -080013314 if (SIR_MAC_TDLS_SETUP_RSP == action_code)
13315 {
Gopichand Nakkala4327a152013-03-04 23:22:42 -080013316 wlan_hdd_tdls_set_responder(pAdapter, peerMac, TRUE);
Hoonki Leea34dd892013-02-05 22:56:02 -080013317 }
13318 else if (SIR_MAC_TDLS_SETUP_CNF == action_code)
13319 {
Gopichand Nakkala4327a152013-03-04 23:22:42 -080013320 wlan_hdd_tdls_set_responder(pAdapter, peerMac, FALSE);
Hoonki Leea34dd892013-02-05 22:56:02 -080013321 }
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013322
13323 return 0;
13324}
13325
Atul Mittal115287b2014-07-08 13:26:33 +053013326
13327int wlan_hdd_tdls_extctrl_config_peer(hdd_adapter_t *pAdapter,
13328 u8 *peer,
13329 cfg80211_exttdls_callback callback)
13330{
13331
13332 hddTdlsPeer_t *pTdlsPeer;
13333 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
13334 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
13335 " %s : NL80211_TDLS_SETUP for " MAC_ADDRESS_STR,
13336 __func__, MAC_ADDR_ARRAY(peer));
13337
13338 if ( (FALSE == pHddCtx->cfg_ini->fTDLSExternalControl) ||
13339 (FALSE == pHddCtx->cfg_ini->fEnableTDLSImplicitTrigger) ) {
13340
13341 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
13342 " %s TDLS External control and Implicit Trigger not enabled ",
13343 __func__);
13344 return -ENOTSUPP;
13345 }
13346
13347 /* To cater the requirement of establishing the TDLS link
13348 * irrespective of the data traffic , get an entry of TDLS peer.
13349 */
13350 pTdlsPeer = wlan_hdd_tdls_get_peer(pAdapter, peer);
13351 if (pTdlsPeer == NULL) {
13352 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13353 "%s: peer " MAC_ADDRESS_STR " not existing",
13354 __func__, MAC_ADDR_ARRAY(peer));
13355 return -EINVAL;
13356 }
13357
13358 if ( 0 != wlan_hdd_tdls_set_force_peer(pAdapter, peer, TRUE) ) {
13359
13360 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13361 " %s TDLS Add Force Peer Failed",
13362 __func__);
13363 return -EINVAL;
13364 }
13365 /*EXT TDLS*/
13366
13367 if ( 0 != wlan_hdd_set_callback(pTdlsPeer, callback) ) {
13368 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13369 " %s TDLS set callback Failed",
13370 __func__);
13371 return -EINVAL;
13372 }
13373
13374 return(0);
13375
13376}
13377
13378int wlan_hdd_tdls_extctrl_deconfig_peer(hdd_adapter_t *pAdapter, u8 *peer)
13379{
13380
13381 hddTdlsPeer_t *pTdlsPeer;
13382 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
13383 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
13384 " %s : NL80211_TDLS_TEARDOWN for " MAC_ADDRESS_STR,
13385 __func__, MAC_ADDR_ARRAY(peer));
13386
13387 if ( (FALSE == pHddCtx->cfg_ini->fTDLSExternalControl) ||
13388 (FALSE == pHddCtx->cfg_ini->fEnableTDLSImplicitTrigger) ) {
13389
13390 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
13391 " %s TDLS External control and Implicit Trigger not enabled ",
13392 __func__);
13393 return -ENOTSUPP;
13394 }
13395
13396
13397 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peer, TRUE);
13398
13399 if ( NULL == pTdlsPeer ) {
13400 hddLog(VOS_TRACE_LEVEL_INFO, "%s: " MAC_ADDRESS_STR
13401 " peer not exsting",
13402 __func__, MAC_ADDR_ARRAY(peer));
13403 return -EINVAL;
13404 }
13405 else {
13406 wlan_hdd_tdls_indicate_teardown(pAdapter, pTdlsPeer,
13407 eSIR_MAC_TDLS_TEARDOWN_UNSPEC_REASON);
13408 }
13409
13410 if ( 0 != wlan_hdd_tdls_set_force_peer(pAdapter, peer, FALSE) )
13411 return -EINVAL;
13412
13413 /*EXT TDLS*/
13414
13415 if ( 0 != wlan_hdd_set_callback(pTdlsPeer, NULL )) {
13416
13417 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13418 " %s TDLS set callback Failed",
13419 __func__);
13420 return -EINVAL;
13421 }
13422 return(0);
13423
13424}
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053013425static int __wlan_hdd_cfg80211_tdls_oper(struct wiphy *wiphy, struct net_device *dev,
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013426 u8 *peer, enum nl80211_tdls_operation oper)
13427{
13428 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
13429 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053013430 int status;
Hoonki Lee5305c3a2013-04-29 23:28:59 -070013431 hddTdlsPeer_t *pTdlsPeer;
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053013432
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053013433 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
13434 TRACE_CODE_HDD_CFG80211_TDLS_OPER,
13435 pAdapter->sessionId, oper));
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053013436 if ( NULL == peer )
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013437 {
Gopichand Nakkalab977a972013-02-18 19:15:09 -080013438 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Chilam Ngc4244af2013-04-01 15:37:32 -070013439 "%s: Invalid arguments", __func__);
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013440 return -EINVAL;
13441 }
Hoonki Lee1090c6a2013-01-16 17:40:54 -080013442
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053013443 status = wlan_hdd_validate_context(pHddCtx);
13444
13445 if (0 != status)
Sameer Thalappil75ea31a2013-02-21 19:38:16 -080013446 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053013447 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13448 "%s: HDD context is not valid", __func__);
13449 return status;
Sameer Thalappil75ea31a2013-02-21 19:38:16 -080013450 }
13451
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013452
13453 if( FALSE == pHddCtx->cfg_ini->fEnableTDLSSupport ||
Hoonki Lee1090c6a2013-01-16 17:40:54 -080013454 FALSE == sme_IsFeatureSupportedByFW(TDLS))
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013455 {
Hoonki Lee1090c6a2013-01-16 17:40:54 -080013456 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Chilam Ngc4244af2013-04-01 15:37:32 -070013457 "TDLS Disabled in INI OR not enabled in FW. "
13458 "Cannot process TDLS commands");
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013459 return -ENOTSUPP;
13460 }
13461
13462 switch (oper) {
13463 case NL80211_TDLS_ENABLE_LINK:
13464 {
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013465 VOS_STATUS status;
c_hpothu6ff1c3c2013-10-01 19:01:57 +053013466 long ret;
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +053013467 tCsrTdlsLinkEstablishParams tdlsLinkEstablishParams;
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013468
Sunil Dutt41de4e22013-11-14 18:09:02 +053013469 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peer, TRUE);
13470
13471 if ( NULL == pTdlsPeer ) {
13472 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: " MAC_ADDRESS_STR
13473 " (oper %d) not exsting. ignored",
13474 __func__, MAC_ADDR_ARRAY(peer), (int)oper);
13475 return -EINVAL;
13476 }
13477
13478 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13479 "%s: " MAC_ADDRESS_STR " link_status %d (%s) ", "tdls_oper",
13480 MAC_ADDR_ARRAY(peer), pTdlsPeer->link_status,
13481 "NL80211_TDLS_ENABLE_LINK");
13482
Gopichand Nakkala2f4a2822013-04-17 11:22:01 -070013483 if (!TDLS_STA_INDEX_VALID(pTdlsPeer->staId))
13484 {
13485 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid Staion Index %u "
13486 MAC_ADDRESS_STR " failed",
13487 __func__, pTdlsPeer->staId, MAC_ADDR_ARRAY(peer));
13488 return -EINVAL;
13489 }
13490
Hoonki Lee5305c3a2013-04-29 23:28:59 -070013491 if (eTDLS_LINK_CONNECTED != pTdlsPeer->link_status)
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070013492 {
Madan Mohan Koyyalamudice419872013-09-13 19:36:52 +053013493 if (IS_ADVANCE_TDLS_ENABLE) {
Gopichand Nakkala24be5312013-07-02 16:47:12 +053013494
Madan Mohan Koyyalamudice419872013-09-13 19:36:52 +053013495 if (0 != wlan_hdd_tdls_get_link_establish_params(
13496 pAdapter, peer,&tdlsLinkEstablishParams)) {
13497 return -EINVAL;
13498 }
13499 INIT_COMPLETION(pAdapter->tdls_link_establish_req_comp);
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +053013500
Madan Mohan Koyyalamudice419872013-09-13 19:36:52 +053013501 sme_SendTdlsLinkEstablishParams(WLAN_HDD_GET_HAL_CTX(pAdapter),
13502 pAdapter->sessionId, peer, &tdlsLinkEstablishParams);
13503 /* Send TDLS peer UAPSD capabilities to the firmware and
13504 * register with the TL on after the response for this operation
13505 * is received .
13506 */
13507 ret = wait_for_completion_interruptible_timeout(
13508 &pAdapter->tdls_link_establish_req_comp,
13509 msecs_to_jiffies(WAIT_TIME_TDLS_LINK_ESTABLISH_REQ));
13510 if (ret <= 0)
13511 {
13512 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13513 "%s: Link Establish Request Faled Status %ld",
13514 __func__, ret);
13515 return -EINVAL;
13516 }
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +053013517 }
Atul Mittal115287b2014-07-08 13:26:33 +053013518 wlan_hdd_tdls_set_peer_link_status(pTdlsPeer,
13519 eTDLS_LINK_CONNECTED,
13520 eTDLS_LINK_SUCCESS);
Gopichand Nakkala471708b2013-06-04 20:03:01 +053013521 /* Mark TDLS client Authenticated .*/
13522 status = WLANTL_ChangeSTAState( pHddCtx->pvosContext,
13523 pTdlsPeer->staId,
13524 WLANTL_STA_AUTHENTICATED);
Gopichand Nakkalaccd3a382013-03-19 13:56:10 -070013525 if (VOS_STATUS_SUCCESS == status)
13526 {
Hoonki Lee14621352013-04-16 17:51:19 -070013527 if (pTdlsPeer->is_responder == 0)
13528 {
13529 v_U8_t staId = (v_U8_t)pTdlsPeer->staId;
13530
13531 wlan_hdd_tdls_timer_restart(pAdapter,
13532 &pTdlsPeer->initiatorWaitTimeoutTimer,
13533 WAIT_TIME_TDLS_INITIATOR);
13534 /* suspend initiator TX until it receives direct packet from the
13535 reponder or WAIT_TIME_TDLS_INITIATOR timer expires */
13536 WLANTL_SuspendDataTx( (WLAN_HDD_GET_CTX(pAdapter))->pvosContext,
13537 &staId, NULL);
13538 }
Gopichand Nakkalaccd3a382013-03-19 13:56:10 -070013539 wlan_hdd_tdls_increment_peer_count(pAdapter);
13540 }
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070013541 wlan_hdd_tdls_check_bmps(pAdapter);
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +053013542
13543 /* Update TL about the UAPSD masks , to route the packets to firmware */
Gopichand Nakkala574f6d12013-06-27 19:38:43 +053013544 if ((TRUE == pHddCtx->cfg_ini->fEnableTDLSBufferSta)
13545 || pHddCtx->cfg_ini->fTDLSUapsdMask )
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +053013546 {
Gopichand Nakkala574f6d12013-06-27 19:38:43 +053013547 int ac;
13548 uint8 ucAc[4] = { WLANTL_AC_VO,
13549 WLANTL_AC_VI,
13550 WLANTL_AC_BK,
13551 WLANTL_AC_BE };
13552 uint8 tlTid[4] = { 7, 5, 2, 3 } ;
13553 for(ac=0; ac < 4; ac++)
13554 {
13555 status = WLANTL_EnableUAPSDForAC( (WLAN_HDD_GET_CTX(pAdapter))->pvosContext,
13556 pTdlsPeer->staId, ucAc[ac],
13557 tlTid[ac], tlTid[ac], 0, 0,
13558 WLANTL_BI_DIR );
13559 }
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +053013560 }
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070013561 }
13562
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013563 }
13564 break;
13565 case NL80211_TDLS_DISABLE_LINK:
Lee Hoonkic1262f22013-01-24 21:59:00 -080013566 {
Sunil Dutt41de4e22013-11-14 18:09:02 +053013567 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peer, TRUE);
13568
13569 if ( NULL == pTdlsPeer ) {
13570 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: " MAC_ADDRESS_STR
13571 " (oper %d) not exsting. ignored",
13572 __func__, MAC_ADDR_ARRAY(peer), (int)oper);
13573 return -EINVAL;
13574 }
13575
13576 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13577 "%s: " MAC_ADDRESS_STR " link_status %d (%s) ", "tdls_oper",
13578 MAC_ADDR_ARRAY(peer), pTdlsPeer->link_status,
13579 "NL80211_TDLS_DISABLE_LINK");
13580
Hoonki Lee5305c3a2013-04-29 23:28:59 -070013581 if(TDLS_STA_INDEX_VALID(pTdlsPeer->staId))
Lee Hoonkic1262f22013-01-24 21:59:00 -080013582 {
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070013583 long status;
13584
Atul Mittal271a7652014-09-12 13:18:22 +053013585
13586 wlan_hdd_tdls_set_peer_link_status(pTdlsPeer,
13587 eTDLS_LINK_TEARING,
13588 (pTdlsPeer->link_status == eTDLS_LINK_TEARING)?
13589 eTDLS_LINK_UNSPECIFIED:
13590 eTDLS_LINK_DROPPED_BY_REMOTE);
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070013591 INIT_COMPLETION(pAdapter->tdls_del_station_comp);
13592
Lee Hoonkic1262f22013-01-24 21:59:00 -080013593 sme_DeleteTdlsPeerSta( WLAN_HDD_GET_HAL_CTX(pAdapter),
13594 pAdapter->sessionId, peer );
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070013595
13596 status = wait_for_completion_interruptible_timeout(&pAdapter->tdls_del_station_comp,
13597 msecs_to_jiffies(WAIT_TIME_TDLS_DEL_STA));
Atul Mittal271a7652014-09-12 13:18:22 +053013598 wlan_hdd_tdls_set_peer_link_status(pTdlsPeer,
13599 eTDLS_LINK_IDLE,
13600 (pTdlsPeer->link_status == eTDLS_LINK_TEARING)?
13601 eTDLS_LINK_UNSPECIFIED:
13602 eTDLS_LINK_DROPPED_BY_REMOTE);
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070013603 if (status <= 0)
13604 {
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070013605 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13606 "%s: Del station failed status %ld",
13607 __func__, status);
13608 return -EPERM;
13609 }
Lee Hoonkic1262f22013-01-24 21:59:00 -080013610 }
13611 else
13612 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070013613 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13614 "%s: TDLS Peer Station doesn't exist.", __func__);
Lee Hoonkic1262f22013-01-24 21:59:00 -080013615 }
Lee Hoonkic1262f22013-01-24 21:59:00 -080013616 }
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070013617 break;
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013618 case NL80211_TDLS_TEARDOWN:
Sunil Dutt41de4e22013-11-14 18:09:02 +053013619 {
Atul Mittal115287b2014-07-08 13:26:33 +053013620 status = wlan_hdd_tdls_extctrl_deconfig_peer(pAdapter, peer);
Sunil Dutt41de4e22013-11-14 18:09:02 +053013621
Atul Mittal115287b2014-07-08 13:26:33 +053013622 if (0 != status)
13623 {
13624 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13625 "%s: Error in TDLS Teardown", __func__);
13626 return status;
Sunil Dutt41de4e22013-11-14 18:09:02 +053013627 }
Sunil Dutt41de4e22013-11-14 18:09:02 +053013628 break;
13629 }
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013630 case NL80211_TDLS_SETUP:
Sunil Dutt41de4e22013-11-14 18:09:02 +053013631 {
Atul Mittal115287b2014-07-08 13:26:33 +053013632 status = wlan_hdd_tdls_extctrl_config_peer(pAdapter,
13633 peer,
13634 NULL);
Sunil Dutt41de4e22013-11-14 18:09:02 +053013635
Atul Mittal115287b2014-07-08 13:26:33 +053013636 if (0 != status)
13637 {
13638 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13639 "%s: Error in TDLS Setup", __func__);
13640 return status;
Naresh Jayaram937abdf2013-11-26 19:50:25 +053013641 }
Naresh Jayaramdb4514b2013-11-25 18:08:10 +053013642 break;
Sunil Dutt41de4e22013-11-14 18:09:02 +053013643 }
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013644 case NL80211_TDLS_DISCOVERY_REQ:
13645 /* We don't support in-driver setup/teardown/discovery */
c_hpothu6ff1c3c2013-10-01 19:01:57 +053013646 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_WARN,
13647 "%s: We don't support in-driver setup/teardown/discovery "
13648 ,__func__);
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013649 return -ENOTSUPP;
13650 default:
c_hpothu6ff1c3c2013-10-01 19:01:57 +053013651 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13652 "%s: unsupported event",__func__);
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013653 return -ENOTSUPP;
13654 }
13655 return 0;
13656}
Chilam NG571c65a2013-01-19 12:27:36 +053013657
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053013658static int wlan_hdd_cfg80211_tdls_oper(struct wiphy *wiphy, struct net_device *dev,
13659 u8 *peer, enum nl80211_tdls_operation oper)
13660{
13661 int ret;
13662
13663 vos_ssr_protect(__func__);
13664 ret = __wlan_hdd_cfg80211_tdls_oper(wiphy, dev, peer, oper);
13665 vos_ssr_unprotect(__func__);
13666
13667 return ret;
13668}
13669
Chilam NG571c65a2013-01-19 12:27:36 +053013670int wlan_hdd_cfg80211_send_tdls_discover_req(struct wiphy *wiphy,
13671 struct net_device *dev, u8 *peer)
13672{
Arif Hussaina7c8e412013-11-20 11:06:42 -080013673 hddLog(VOS_TRACE_LEVEL_INFO,
13674 "tdls send discover req: "MAC_ADDRESS_STR,
13675 MAC_ADDR_ARRAY(peer));
Chilam NG571c65a2013-01-19 12:27:36 +053013676
Sunil Dutt Undekarieacac6f2014-03-21 14:08:53 +053013677#if TDLS_MGMT_VERSION2
13678 return wlan_hdd_cfg80211_tdls_mgmt(wiphy, dev, peer,
13679 WLAN_TDLS_DISCOVERY_REQUEST, 1, 0, 0, NULL, 0);
13680#else
Chilam NG571c65a2013-01-19 12:27:36 +053013681 return wlan_hdd_cfg80211_tdls_mgmt(wiphy, dev, peer,
13682 WLAN_TDLS_DISCOVERY_REQUEST, 1, 0, NULL, 0);
Sunil Dutt Undekarieacac6f2014-03-21 14:08:53 +053013683#endif
Chilam NG571c65a2013-01-19 12:27:36 +053013684}
Mohit Khanna698ba2a2012-12-04 15:08:18 -080013685#endif
13686
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053013687#ifdef WLAN_FEATURE_GTK_OFFLOAD
13688/*
13689 * FUNCTION: wlan_hdd_cfg80211_update_replayCounterCallback
13690 * Callback rountine called upon receiving response for
13691 * get offload info
13692 */
13693void wlan_hdd_cfg80211_update_replayCounterCallback(void *callbackContext,
13694 tpSirGtkOffloadGetInfoRspParams pGtkOffloadGetInfoRsp)
13695{
13696
13697 hdd_adapter_t *pAdapter = (hdd_adapter_t *)callbackContext;
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053013698 tANI_U8 tempReplayCounter[8];
13699 hdd_station_ctx_t *pHddStaCtx;
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053013700
13701 ENTER();
13702
13703 if (NULL == pAdapter)
13704 {
Agarwal Ashish971c2882013-10-30 20:11:12 +053013705 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053013706 "%s: HDD adapter is Null", __func__);
13707 return ;
13708 }
13709
13710 if (NULL == pGtkOffloadGetInfoRsp)
13711 {
13712 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13713 "%s: pGtkOffloadGetInfoRsp is Null", __func__);
13714 return ;
13715 }
13716
13717 if (VOS_STATUS_SUCCESS != pGtkOffloadGetInfoRsp->ulStatus)
13718 {
13719 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13720 "%s: wlan Failed to get replay counter value",
13721 __func__);
13722 return ;
13723 }
13724
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053013725 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
13726 /* Update replay counter */
13727 pHddStaCtx->gtkOffloadReqParams.ullKeyReplayCounter =
13728 pGtkOffloadGetInfoRsp->ullKeyReplayCounter;
13729
13730 {
13731 /* changing from little to big endian since supplicant
13732 * works on big endian format
13733 */
13734 int i;
13735 tANI_U8 *p = (tANI_U8 *)&pGtkOffloadGetInfoRsp->ullKeyReplayCounter;
13736
13737 for (i = 0; i < 8; i++)
13738 {
13739 tempReplayCounter[7-i] = (tANI_U8)p[i];
13740 }
13741 }
13742
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053013743 /* Update replay counter to NL */
13744 cfg80211_gtk_rekey_notify(pAdapter->dev, pGtkOffloadGetInfoRsp->bssId,
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053013745 tempReplayCounter, GFP_KERNEL);
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053013746}
13747
13748/*
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053013749 * FUNCTION: __wlan_hdd_cfg80211_set_rekey_data
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053013750 * This function is used to offload GTK rekeying job to the firmware.
13751 */
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053013752int __wlan_hdd_cfg80211_set_rekey_data(struct wiphy *wiphy, struct net_device *dev,
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053013753 struct cfg80211_gtk_rekey_data *data)
13754{
13755 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
13756 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
13757 hdd_station_ctx_t *pHddStaCtx;
13758 tHalHandle hHal;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053013759 int result;
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053013760 tSirGtkOffloadParams hddGtkOffloadReqParams;
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053013761 eHalStatus status = eHAL_STATUS_FAILURE;
13762
13763 ENTER();
13764
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053013765
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053013766 if (NULL == pAdapter)
13767 {
Kaushik, Sushantb1ed0f42014-07-01 18:26:31 +053013768 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053013769 "%s: HDD adapter is Null", __func__);
13770 return -ENODEV;
13771 }
13772
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053013773 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
13774 TRACE_CODE_HDD_CFG80211_SET_REKEY_DATA,
13775 pAdapter->sessionId, pAdapter->device_mode));
13776
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053013777 result = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053013778
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053013779 if (0 != result)
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053013780 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053013781 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13782 "%s: HDD context is not valid", __func__);
13783 return result;
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053013784 }
13785
13786 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
13787 hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
13788 if (NULL == hHal)
13789 {
13790 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13791 "%s: HAL context is Null!!!", __func__);
13792 return -EAGAIN;
13793 }
13794
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053013795 pHddStaCtx->gtkOffloadReqParams.ulFlags = GTK_OFFLOAD_ENABLE;
13796 memcpy(pHddStaCtx->gtkOffloadReqParams.aKCK, data->kck, NL80211_KCK_LEN);
13797 memcpy(pHddStaCtx->gtkOffloadReqParams.aKEK, data->kek, NL80211_KEK_LEN);
13798 memcpy(pHddStaCtx->gtkOffloadReqParams.bssId, &pHddStaCtx->conn_info.bssId,
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053013799 WNI_CFG_BSSID_LEN);
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053013800 {
13801 /* changing from big to little endian since driver
13802 * works on little endian format
13803 */
13804 tANI_U8 *p =
13805 (tANI_U8 *)&pHddStaCtx->gtkOffloadReqParams.ullKeyReplayCounter;
13806 int i;
13807
13808 for (i = 0; i < 8; i++)
13809 {
13810 p[7-i] = data->replay_ctr[i];
13811 }
13812 }
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053013813
13814 if (TRUE == pHddCtx->hdd_wlan_suspended)
13815 {
13816 /* if wlan is suspended, enable GTK offload directly from here */
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053013817 memcpy(&hddGtkOffloadReqParams, &pHddStaCtx->gtkOffloadReqParams,
13818 sizeof (tSirGtkOffloadParams));
13819 status = sme_SetGTKOffload(hHal, &hddGtkOffloadReqParams,
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053013820 pAdapter->sessionId);
13821
13822 if (eHAL_STATUS_SUCCESS != status)
13823 {
13824 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13825 "%s: sme_SetGTKOffload failed, returned %d",
13826 __func__, status);
13827 return status;
13828 }
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053013829 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
13830 "%s: sme_SetGTKOffload successfull", __func__);
13831 }
13832 else
13833 {
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053013834 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
13835 "%s: wlan not suspended GTKOffload request is stored",
13836 __func__);
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053013837 }
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053013838
13839 return eHAL_STATUS_SUCCESS;
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053013840}
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053013841
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053013842int wlan_hdd_cfg80211_set_rekey_data(struct wiphy *wiphy, struct net_device *dev,
13843 struct cfg80211_gtk_rekey_data *data)
13844{
13845 int ret;
13846
13847 vos_ssr_protect(__func__);
13848 ret = __wlan_hdd_cfg80211_set_rekey_data(wiphy, dev, data);
13849 vos_ssr_unprotect(__func__);
13850
13851 return ret;
13852}
13853#endif /*WLAN_FEATURE_GTK_OFFLOAD*/
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +053013854/*
13855 * FUNCTION: wlan_hdd_cfg80211_set_mac_acl
13856 * This function is used to set access control policy
13857 */
13858static int wlan_hdd_cfg80211_set_mac_acl(struct wiphy *wiphy,
13859 struct net_device *dev, const struct cfg80211_acl_data *params)
13860{
13861 int i;
13862 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
13863 hdd_hostapd_state_t *pHostapdState;
13864 tsap_Config_t *pConfig;
13865 v_CONTEXT_t pVosContext = NULL;
13866 hdd_context_t *pHddCtx;
13867 int status;
13868
13869 ENTER();
13870
13871 if (NULL == pAdapter)
13872 {
13873 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
13874 "%s: HDD adapter is Null", __func__);
13875 return -ENODEV;
13876 }
13877
13878 if (NULL == params)
13879 {
13880 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
13881 "%s: params is Null", __func__);
13882 return -EINVAL;
13883 }
13884
13885 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
13886 status = wlan_hdd_validate_context(pHddCtx);
13887
13888 if (0 != status)
13889 {
13890 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13891 "%s: HDD context is not valid", __func__);
13892 return status;
13893 }
13894
13895 pVosContext = pHddCtx->pvosContext;
13896 pHostapdState = WLAN_HDD_GET_HOSTAP_STATE_PTR(pAdapter);
13897
13898 if (NULL == pHostapdState)
13899 {
13900 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
13901 "%s: pHostapdState is Null", __func__);
13902 return -EINVAL;
13903 }
13904
13905 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,"acl policy: = %d"
13906 "no acl entries = %d", params->acl_policy, params->n_acl_entries);
13907
13908 if (WLAN_HDD_SOFTAP == pAdapter->device_mode)
13909 {
13910 pConfig = &pAdapter->sessionCtx.ap.sapConfig;
13911
13912 /* default value */
13913 pConfig->num_accept_mac = 0;
13914 pConfig->num_deny_mac = 0;
13915
13916 /**
13917 * access control policy
13918 * @NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED: Deny stations which are
13919 * listed in hostapd.deny file.
13920 * @NL80211_ACL_POLICY_DENY_UNLESS_LISTED: Allow stations which are
13921 * listed in hostapd.accept file.
13922 */
13923 if (NL80211_ACL_POLICY_DENY_UNLESS_LISTED == params->acl_policy)
13924 {
13925 pConfig->SapMacaddr_acl = eSAP_DENY_UNLESS_ACCEPTED;
13926 }
13927 else if (NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED == params->acl_policy)
13928 {
13929 pConfig->SapMacaddr_acl = eSAP_ACCEPT_UNLESS_DENIED;
13930 }
13931 else
13932 {
13933 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13934 "%s:Acl Policy : %d is not supported",
13935 __func__, params->acl_policy);
13936 return -ENOTSUPP;
13937 }
13938
13939 if (eSAP_DENY_UNLESS_ACCEPTED == pConfig->SapMacaddr_acl)
13940 {
13941 pConfig->num_accept_mac = params->n_acl_entries;
13942 for (i = 0; i < params->n_acl_entries; i++)
13943 {
13944 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
13945 "** Add ACL MAC entry %i in WhiletList :"
13946 MAC_ADDRESS_STR, i,
13947 MAC_ADDR_ARRAY(params->mac_addrs[i].addr));
13948
13949 vos_mem_copy(&pConfig->accept_mac[i], params->mac_addrs[i].addr,
13950 sizeof(qcmacaddr));
13951 }
13952 }
13953 else if (eSAP_ACCEPT_UNLESS_DENIED == pConfig->SapMacaddr_acl)
13954 {
13955 pConfig->num_deny_mac = params->n_acl_entries;
13956 for (i = 0; i < params->n_acl_entries; i++)
13957 {
13958 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
13959 "** Add ACL MAC entry %i in BlackList :"
13960 MAC_ADDRESS_STR, i,
13961 MAC_ADDR_ARRAY(params->mac_addrs[i].addr));
13962
13963 vos_mem_copy(&pConfig->deny_mac[i], params->mac_addrs[i].addr,
13964 sizeof(qcmacaddr));
13965 }
13966 }
13967
13968 if (VOS_STATUS_SUCCESS != WLANSAP_SetMacACL(pVosContext, pConfig))
13969 {
13970 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
13971 "%s: SAP Set Mac Acl fail", __func__);
13972 return -EINVAL;
13973 }
13974 }
13975 else
13976 {
13977 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Sushant Kaushik8bc7df22014-04-09 17:55:29 +053013978 "%s: Invalid device_mode = %s (%d)",
13979 __func__, hdd_device_modetoString(pAdapter->device_mode),
13980 pAdapter->device_mode);
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +053013981 return -EINVAL;
13982 }
13983
13984 return 0;
13985}
13986
Leo Chang9056f462013-08-01 19:21:11 -070013987#ifdef WLAN_NL80211_TESTMODE
13988#ifdef FEATURE_WLAN_LPHB
Leo Changd9df8aa2013-09-26 13:32:26 -070013989void wlan_hdd_cfg80211_lphb_ind_handler
Leo Chang9056f462013-08-01 19:21:11 -070013990(
13991 void *pAdapter,
13992 void *indCont
13993)
13994{
Leo Changd9df8aa2013-09-26 13:32:26 -070013995 tSirLPHBInd *lphbInd;
13996 struct sk_buff *skb;
c_hpothu73f35e62014-04-18 13:40:08 +053013997 hdd_context_t *pHddCtxt;
Leo Chang9056f462013-08-01 19:21:11 -070013998
13999 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Leo Changd9df8aa2013-09-26 13:32:26 -070014000 "LPHB indication arrived");
Leo Chang9056f462013-08-01 19:21:11 -070014001
c_hpothu73f35e62014-04-18 13:40:08 +053014002 if (pAdapter == NULL)
14003 {
14004 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
14005 "%s: pAdapter is NULL\n",__func__);
14006 return;
14007 }
14008
Leo Chang9056f462013-08-01 19:21:11 -070014009 if (NULL == indCont)
14010 {
14011 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Leo Changd9df8aa2013-09-26 13:32:26 -070014012 "LPHB IND, invalid argument");
Leo Chang9056f462013-08-01 19:21:11 -070014013 return;
14014 }
14015
c_hpothu73f35e62014-04-18 13:40:08 +053014016 pHddCtxt = (hdd_context_t *)pAdapter;
Leo Changd9df8aa2013-09-26 13:32:26 -070014017 lphbInd = (tSirLPHBInd *)indCont;
Leo Chang9056f462013-08-01 19:21:11 -070014018 skb = cfg80211_testmode_alloc_event_skb(
c_hpothu73f35e62014-04-18 13:40:08 +053014019 pHddCtxt->wiphy,
Leo Changd9df8aa2013-09-26 13:32:26 -070014020 sizeof(tSirLPHBInd),
Leo Chang9056f462013-08-01 19:21:11 -070014021 GFP_ATOMIC);
14022 if (!skb)
14023 {
14024 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
14025 "LPHB timeout, NL buffer alloc fail");
14026 return;
14027 }
14028
Leo Changac3ba772013-10-07 09:47:04 -070014029 if(nla_put_u32(skb, WLAN_HDD_TM_ATTR_CMD, WLAN_HDD_TM_CMD_WLAN_HB))
Leo Changd9df8aa2013-09-26 13:32:26 -070014030 {
14031 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
14032 "WLAN_HDD_TM_ATTR_CMD put fail");
14033 goto nla_put_failure;
14034 }
Leo Changac3ba772013-10-07 09:47:04 -070014035 if(nla_put_u32(skb, WLAN_HDD_TM_ATTR_TYPE, lphbInd->protocolType))
Leo Changd9df8aa2013-09-26 13:32:26 -070014036 {
14037 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
14038 "WLAN_HDD_TM_ATTR_TYPE put fail");
14039 goto nla_put_failure;
14040 }
Leo Changac3ba772013-10-07 09:47:04 -070014041 if(nla_put(skb, WLAN_HDD_TM_ATTR_DATA,
Leo Changd9df8aa2013-09-26 13:32:26 -070014042 sizeof(tSirLPHBInd), lphbInd))
14043 {
14044 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
14045 "WLAN_HDD_TM_ATTR_DATA put fail");
14046 goto nla_put_failure;
14047 }
Leo Chang9056f462013-08-01 19:21:11 -070014048 cfg80211_testmode_event(skb, GFP_ATOMIC);
14049 return;
14050
14051nla_put_failure:
14052 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
14053 "NLA Put fail");
14054 kfree_skb(skb);
14055
14056 return;
14057}
14058#endif /* FEATURE_WLAN_LPHB */
14059
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053014060static int __wlan_hdd_cfg80211_testmode(struct wiphy *wiphy, void *data, int len)
Leo Chang9056f462013-08-01 19:21:11 -070014061{
14062 struct nlattr *tb[WLAN_HDD_TM_ATTR_MAX + 1];
14063 int err = 0;
14064#ifdef FEATURE_WLAN_LPHB
14065 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
Leo Changd9df8aa2013-09-26 13:32:26 -070014066 eHalStatus smeStatus;
Leo Chang9056f462013-08-01 19:21:11 -070014067#endif /* FEATURE_WLAN_LPHB */
14068
14069 err = nla_parse(tb, WLAN_HDD_TM_ATTR_MAX, data, len, wlan_hdd_tm_policy);
14070 if (err)
14071 {
14072 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
14073 "%s Testmode INV ATTR", __func__);
14074 return err;
14075 }
14076
14077 if (!tb[WLAN_HDD_TM_ATTR_CMD])
14078 {
14079 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
14080 "%s Testmode INV CMD", __func__);
14081 return -EINVAL;
14082 }
14083
14084 switch (nla_get_u32(tb[WLAN_HDD_TM_ATTR_CMD]))
14085 {
14086#ifdef FEATURE_WLAN_LPHB
14087 /* Low Power Heartbeat configuration request */
14088 case WLAN_HDD_TM_CMD_WLAN_HB:
14089 {
14090 int buf_len;
14091 void *buf;
14092 tSirLPHBReq *hb_params = NULL;
Amar Singhal05852702014-02-04 14:40:00 -080014093 tSirLPHBReq *hb_params_temp = NULL;
Leo Chang9056f462013-08-01 19:21:11 -070014094
14095 if (!tb[WLAN_HDD_TM_ATTR_DATA])
14096 {
14097 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
14098 "%s Testmode INV DATA", __func__);
14099 return -EINVAL;
14100 }
14101
14102 buf = nla_data(tb[WLAN_HDD_TM_ATTR_DATA]);
14103 buf_len = nla_len(tb[WLAN_HDD_TM_ATTR_DATA]);
Amar Singhal05852702014-02-04 14:40:00 -080014104
14105 hb_params_temp =(tSirLPHBReq *)buf;
14106 if ((hb_params_temp->cmd == LPHB_SET_TCP_PARAMS_INDID) &&
14107 (hb_params_temp->params.lphbTcpParamReq.timePeriodSec == 0))
14108 return -EINVAL;
14109
Leo Chang9056f462013-08-01 19:21:11 -070014110 hb_params = (tSirLPHBReq *)vos_mem_malloc(sizeof(tSirLPHBReq));
14111 if (NULL == hb_params)
14112 {
14113 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
14114 "%s Request Buffer Alloc Fail", __func__);
14115 return -EINVAL;
14116 }
14117
14118 vos_mem_copy(hb_params, buf, buf_len);
Leo Changd9df8aa2013-09-26 13:32:26 -070014119 smeStatus = sme_LPHBConfigReq((tHalHandle)(pHddCtx->hHal),
14120 hb_params,
14121 wlan_hdd_cfg80211_lphb_ind_handler);
14122 if (eHAL_STATUS_SUCCESS != smeStatus)
Leo Chang9056f462013-08-01 19:21:11 -070014123 {
Leo Changd9df8aa2013-09-26 13:32:26 -070014124 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
14125 "LPHB Config Fail, disable");
Leo Chang9056f462013-08-01 19:21:11 -070014126 vos_mem_free(hb_params);
14127 }
Leo Chang9056f462013-08-01 19:21:11 -070014128 return 0;
14129 }
14130#endif /* FEATURE_WLAN_LPHB */
14131 default:
c_hpothu6ff1c3c2013-10-01 19:01:57 +053014132 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
14133 "%s: unsupported event",__func__);
Leo Chang9056f462013-08-01 19:21:11 -070014134 return -EOPNOTSUPP;
14135 }
14136
14137 return err;
14138}
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053014139
14140static int wlan_hdd_cfg80211_testmode(struct wiphy *wiphy, void *data, int len)
14141{
14142 int ret;
14143
14144 vos_ssr_protect(__func__);
14145 ret = __wlan_hdd_cfg80211_testmode(wiphy, data, len);
14146 vos_ssr_unprotect(__func__);
14147
14148 return ret;
14149}
Leo Chang9056f462013-08-01 19:21:11 -070014150#endif /* CONFIG_NL80211_TESTMODE */
14151
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053014152static int __wlan_hdd_cfg80211_dump_survey(struct wiphy *wiphy,
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053014153 struct net_device *dev,
14154 int idx, struct survey_info *survey)
14155{
14156 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
14157 hdd_context_t *pHddCtx;
Mihir Sheted9072e02013-08-21 17:02:29 +053014158 hdd_station_ctx_t *pHddStaCtx;
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053014159 tHalHandle halHandle;
Mihir Sheted9072e02013-08-21 17:02:29 +053014160 v_U32_t channel = 0, freq = 0; /* Initialization Required */
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053014161 v_S7_t snr,rssi;
14162 int status, i, j, filled = 0;
14163
14164 ENTER();
14165
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053014166 if (NULL == pAdapter)
14167 {
14168 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
14169 "%s: HDD adapter is Null", __func__);
14170 return -ENODEV;
14171 }
14172
14173 if (NULL == wiphy)
14174 {
14175 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
14176 "%s: wiphy is Null", __func__);
14177 return -ENODEV;
14178 }
14179
14180 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
14181 status = wlan_hdd_validate_context(pHddCtx);
14182
14183 if (0 != status)
14184 {
14185 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
14186 "%s: HDD context is not valid", __func__);
14187 return status;
14188 }
14189
Mihir Sheted9072e02013-08-21 17:02:29 +053014190 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
14191
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053014192 if (0 == pHddCtx->cfg_ini->fEnableSNRMonitoring ||
Mihir Sheted9072e02013-08-21 17:02:29 +053014193 0 != pAdapter->survey_idx ||
14194 eConnectionState_Associated != pHddStaCtx->conn_info.connState)
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053014195 {
14196 /* The survey dump ops when implemented completely is expected to
14197 * return a survey of all channels and the ops is called by the
14198 * kernel with incremental values of the argument 'idx' till it
14199 * returns -ENONET. But we can only support the survey for the
14200 * operating channel for now. survey_idx is used to track
14201 * that the ops is called only once and then return -ENONET for
14202 * the next iteration
14203 */
14204 pAdapter->survey_idx = 0;
14205 return -ENONET;
14206 }
14207
14208 halHandle = WLAN_HDD_GET_HAL_CTX(pAdapter);
14209
14210 wlan_hdd_get_snr(pAdapter, &snr);
14211 wlan_hdd_get_rssi(pAdapter, &rssi);
14212
14213 sme_GetOperationChannel(halHandle, &channel, pAdapter->sessionId);
14214 hdd_wlan_get_freq(channel, &freq);
14215
14216
14217 for (i = 0; i < IEEE80211_NUM_BANDS; i++)
14218 {
14219 if (NULL == wiphy->bands[i])
14220 {
14221 VOS_TRACE(VOS_MODULE_ID_VOSS, VOS_TRACE_LEVEL_INFO,
14222 "%s: wiphy->bands[i] is NULL, i = %d", __func__, i);
14223 continue;
14224 }
14225
14226 for (j = 0; j < wiphy->bands[i]->n_channels; j++)
14227 {
14228 struct ieee80211_supported_band *band = wiphy->bands[i];
14229
14230 if (band->channels[j].center_freq == (v_U16_t)freq)
14231 {
14232 survey->channel = &band->channels[j];
14233 /* The Rx BDs contain SNR values in dB for the received frames
14234 * while the supplicant expects noise. So we calculate and
14235 * return the value of noise (dBm)
14236 * SNR (dB) = RSSI (dBm) - NOISE (dBm)
14237 */
14238 survey->noise = rssi - snr;
14239 survey->filled = SURVEY_INFO_NOISE_DBM;
14240 filled = 1;
14241 }
14242 }
14243 }
14244
14245 if (filled)
14246 pAdapter->survey_idx = 1;
14247 else
14248 {
14249 pAdapter->survey_idx = 0;
14250 return -ENONET;
14251 }
14252
14253 return 0;
14254}
14255
Mahesh A Saptasagar27574072014-06-17 13:39:04 +053014256static int wlan_hdd_cfg80211_dump_survey(struct wiphy *wiphy,
14257 struct net_device *dev,
14258 int idx, struct survey_info *survey)
14259{
14260 int ret;
14261
14262 vos_ssr_protect(__func__);
14263 ret = __wlan_hdd_cfg80211_dump_survey(wiphy, dev, idx, survey);
14264 vos_ssr_unprotect(__func__);
14265
14266 return ret;
14267}
14268
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053014269/*
Mahesh A Saptasagarbcc5b662014-06-02 21:46:23 +053014270 * FUNCTION: __wlan_hdd_cfg80211_resume_wlan
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053014271 * this is called when cfg80211 driver resume
14272 * driver updates latest sched_scan scan result(if any) to cfg80211 database
14273 */
Mahesh A Saptasagarbcc5b662014-06-02 21:46:23 +053014274int __wlan_hdd_cfg80211_resume_wlan(struct wiphy *wiphy)
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053014275{
14276 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
14277 hdd_adapter_t *pAdapter;
14278 hdd_adapter_list_node_t *pAdapterNode, *pNext;
14279 VOS_STATUS status = VOS_STATUS_SUCCESS;
14280
14281 ENTER();
14282
14283 if ( NULL == pHddCtx )
14284 {
14285 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
14286 "%s: HddCtx validation failed", __func__);
14287 return 0;
14288 }
14289
14290 if (pHddCtx->isLogpInProgress)
14291 {
14292 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
14293 "%s: LOGP in Progress. Ignore!!!", __func__);
14294 return 0;
14295 }
14296
Mihir Shete18156292014-03-11 15:38:30 +053014297 if (WLAN_HDD_IS_LOAD_UNLOAD_IN_PROGRESS(pHddCtx))
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053014298 {
14299 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
14300 "%s: Unloading/Loading in Progress. Ignore!!!", __func__);
14301 return 0;
14302 }
14303
14304 spin_lock(&pHddCtx->schedScan_lock);
14305 pHddCtx->isWiphySuspended = FALSE;
14306 if (TRUE != pHddCtx->isSchedScanUpdatePending)
14307 {
14308 spin_unlock(&pHddCtx->schedScan_lock);
14309 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
14310 "%s: Return resume is not due to PNO indication", __func__);
14311 return 0;
14312 }
14313 // Reset flag to avoid updatating cfg80211 data old results again
14314 pHddCtx->isSchedScanUpdatePending = FALSE;
14315 spin_unlock(&pHddCtx->schedScan_lock);
14316
Mahesh A Saptasagarb9c50402014-01-16 15:49:22 +053014317
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053014318 status = hdd_get_front_adapter ( pHddCtx, &pAdapterNode );
14319
14320 while ( NULL != pAdapterNode && VOS_STATUS_SUCCESS == status )
14321 {
14322 pAdapter = pAdapterNode->pAdapter;
14323 if ( (NULL != pAdapter) &&
14324 (WLAN_HDD_INFRA_STATION == pAdapter->device_mode) )
14325 {
14326 if (0 != wlan_hdd_cfg80211_update_bss(pHddCtx->wiphy, pAdapter))
Mahesh A Saptasagarb9c50402014-01-16 15:49:22 +053014327 {
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053014328 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_WARN,
14329 "%s: NO SCAN result", __func__);
Mahesh A Saptasagarb9c50402014-01-16 15:49:22 +053014330 }
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053014331 else
Mahesh A Saptasagarb9c50402014-01-16 15:49:22 +053014332 {
14333 /* Acquire wakelock to handle the case where APP's tries to
14334 * suspend immediately after updating the scan results. Whis
14335 * results in app's is in suspended state and not able to
14336 * process the connect request to AP
14337 */
14338 hdd_prevent_suspend_timeout(2000);
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053014339 cfg80211_sched_scan_results(pHddCtx->wiphy);
Mahesh A Saptasagarb9c50402014-01-16 15:49:22 +053014340 }
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053014341
14342 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
14343 "%s : cfg80211 scan result database updated", __func__);
14344
14345 return 0;
14346
14347 }
14348 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
14349 pAdapterNode = pNext;
14350 }
14351
14352 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
14353 "%s: Failed to find Adapter", __func__);
14354 return 0;
14355}
14356
Mahesh A Saptasagarbcc5b662014-06-02 21:46:23 +053014357int wlan_hdd_cfg80211_resume_wlan(struct wiphy *wiphy)
14358{
14359 int ret;
14360
14361 vos_ssr_protect(__func__);
14362 ret = __wlan_hdd_cfg80211_resume_wlan(wiphy);
14363 vos_ssr_unprotect(__func__);
14364
14365 return ret;
14366}
14367
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053014368/*
Mahesh A Saptasagarbcc5b662014-06-02 21:46:23 +053014369 * FUNCTION: __wlan_hdd_cfg80211_suspend_wlan
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053014370 * this is called when cfg80211 driver suspends
14371 */
Mahesh A Saptasagarbcc5b662014-06-02 21:46:23 +053014372int __wlan_hdd_cfg80211_suspend_wlan(struct wiphy *wiphy,
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053014373 struct cfg80211_wowlan *wow)
14374{
14375 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
14376
14377 ENTER();
14378 if (NULL == pHddCtx)
14379 {
14380 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
14381 "%s: HddCtx validation failed", __func__);
14382 return 0;
14383 }
14384
14385 pHddCtx->isWiphySuspended = TRUE;
14386
14387 EXIT();
14388
14389 return 0;
14390}
14391
Mahesh A Saptasagarbcc5b662014-06-02 21:46:23 +053014392int wlan_hdd_cfg80211_suspend_wlan(struct wiphy *wiphy,
14393 struct cfg80211_wowlan *wow)
14394{
14395 int ret;
14396
14397 vos_ssr_protect(__func__);
14398 ret = __wlan_hdd_cfg80211_suspend_wlan(wiphy, wow);
14399 vos_ssr_unprotect(__func__);
14400
14401 return ret;
14402}
Jeff Johnson295189b2012-06-20 16:38:30 -070014403/* cfg80211_ops */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053014404static struct cfg80211_ops wlan_hdd_cfg80211_ops =
Jeff Johnson295189b2012-06-20 16:38:30 -070014405{
14406 .add_virtual_intf = wlan_hdd_add_virtual_intf,
14407 .del_virtual_intf = wlan_hdd_del_virtual_intf,
14408 .change_virtual_intf = wlan_hdd_cfg80211_change_iface,
14409 .change_station = wlan_hdd_change_station,
14410#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
14411 .add_beacon = wlan_hdd_cfg80211_add_beacon,
14412 .del_beacon = wlan_hdd_cfg80211_del_beacon,
14413 .set_beacon = wlan_hdd_cfg80211_set_beacon,
Jeff Johnson04dd8a82012-06-29 20:41:40 -070014414#else
14415 .start_ap = wlan_hdd_cfg80211_start_ap,
14416 .change_beacon = wlan_hdd_cfg80211_change_beacon,
14417 .stop_ap = wlan_hdd_cfg80211_stop_ap,
Jeff Johnson295189b2012-06-20 16:38:30 -070014418#endif
14419 .change_bss = wlan_hdd_cfg80211_change_bss,
14420 .add_key = wlan_hdd_cfg80211_add_key,
14421 .get_key = wlan_hdd_cfg80211_get_key,
14422 .del_key = wlan_hdd_cfg80211_del_key,
14423 .set_default_key = wlan_hdd_cfg80211_set_default_key,
Jeff Johnson3bbe4bf2013-01-18 17:05:29 -080014424#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,6,0))
Jeff Johnson295189b2012-06-20 16:38:30 -070014425 .set_channel = wlan_hdd_cfg80211_set_channel,
Jeff Johnson3bbe4bf2013-01-18 17:05:29 -080014426#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070014427 .scan = wlan_hdd_cfg80211_scan,
14428 .connect = wlan_hdd_cfg80211_connect,
14429 .disconnect = wlan_hdd_cfg80211_disconnect,
14430 .join_ibss = wlan_hdd_cfg80211_join_ibss,
14431 .leave_ibss = wlan_hdd_cfg80211_leave_ibss,
14432 .set_wiphy_params = wlan_hdd_cfg80211_set_wiphy_params,
14433 .set_tx_power = wlan_hdd_cfg80211_set_txpower,
14434 .get_tx_power = wlan_hdd_cfg80211_get_txpower,
Jeff Johnson295189b2012-06-20 16:38:30 -070014435 .remain_on_channel = wlan_hdd_cfg80211_remain_on_channel,
14436 .cancel_remain_on_channel = wlan_hdd_cfg80211_cancel_remain_on_channel,
DARAM SUDHA39eede62014-02-12 11:16:40 +053014437 .mgmt_tx = wlan_hdd_mgmt_tx,
Jeff Johnson295189b2012-06-20 16:38:30 -070014438#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
14439 .mgmt_tx_cancel_wait = wlan_hdd_cfg80211_mgmt_tx_cancel_wait,
14440 .set_default_mgmt_key = wlan_hdd_set_default_mgmt_key,
14441 .set_txq_params = wlan_hdd_set_txq_params,
14442#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070014443 .get_station = wlan_hdd_cfg80211_get_station,
14444 .set_power_mgmt = wlan_hdd_cfg80211_set_power_mgmt,
14445 .del_station = wlan_hdd_cfg80211_del_station,
Jeff Johnson04dd8a82012-06-29 20:41:40 -070014446 .add_station = wlan_hdd_cfg80211_add_station,
14447#ifdef FEATURE_WLAN_LFR
14448 .set_pmksa = wlan_hdd_cfg80211_set_pmksa,
14449 .del_pmksa = wlan_hdd_cfg80211_del_pmksa,
14450 .flush_pmksa = wlan_hdd_cfg80211_flush_pmksa,
14451#endif
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070014452#if defined(WLAN_FEATURE_VOWIFI_11R) && defined(KERNEL_SUPPORT_11R_CFG80211)
14453 .update_ft_ies = wlan_hdd_cfg80211_update_ft_ies,
14454#endif
Mohit Khanna698ba2a2012-12-04 15:08:18 -080014455#ifdef FEATURE_WLAN_TDLS
14456 .tdls_mgmt = wlan_hdd_cfg80211_tdls_mgmt,
14457 .tdls_oper = wlan_hdd_cfg80211_tdls_oper,
14458#endif
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053014459#ifdef WLAN_FEATURE_GTK_OFFLOAD
14460 .set_rekey_data = wlan_hdd_cfg80211_set_rekey_data,
14461#endif /* WLAN_FEATURE_GTK_OFFLOAD */
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053014462#ifdef FEATURE_WLAN_SCAN_PNO
14463 .sched_scan_start = wlan_hdd_cfg80211_sched_scan_start,
14464 .sched_scan_stop = wlan_hdd_cfg80211_sched_scan_stop,
14465#endif /*FEATURE_WLAN_SCAN_PNO */
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053014466 .resume = wlan_hdd_cfg80211_resume_wlan,
14467 .suspend = wlan_hdd_cfg80211_suspend_wlan,
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +053014468 .set_mac_acl = wlan_hdd_cfg80211_set_mac_acl,
Leo Chang9056f462013-08-01 19:21:11 -070014469#ifdef WLAN_NL80211_TESTMODE
14470 .testmode_cmd = wlan_hdd_cfg80211_testmode,
14471#endif
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053014472 .dump_survey = wlan_hdd_cfg80211_dump_survey,
Jeff Johnson295189b2012-06-20 16:38:30 -070014473};
14474