blob: 9f98e910a64d0d83de992db75c468d994b4341a3 [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 Lamaa8e15a2014-02-11 23:30:06 -080023 * Copyright (c) 2012-2014 Qualcomm Atheros, Inc.
24 * All Rights Reserved.
25 * Qualcomm Atheros Confidential and Proprietary.
Kiet Lam842dad02014-02-18 18:44:02 -080026 *
Kiet Lamaa8e15a2014-02-11 23:30:06 -080027 */
Kiet Lam842dad02014-02-18 18:44:02 -080028
29
Jeff Johnson295189b2012-06-20 16:38:30 -070030/**========================================================================
31
32 \file wlan_hdd_cfg80211.c
33
34 \brief WLAN Host Device Driver implementation
35
Jeff Johnson295189b2012-06-20 16:38:30 -070036 ========================================================================*/
37
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070038/**=========================================================================
Jeff Johnson295189b2012-06-20 16:38:30 -070039
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070040 EDIT HISTORY FOR FILE
Jeff Johnson295189b2012-06-20 16:38:30 -070041
42
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070043 This section contains comments describing changes made to the module.
44 Notice that changes are listed in reverse chronological order.
Jeff Johnson295189b2012-06-20 16:38:30 -070045
46
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070047 $Header:$ $DateTime: $ $Author: $
Jeff Johnson295189b2012-06-20 16:38:30 -070048
49
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070050 when who what, where, why
Jeff Johnson295189b2012-06-20 16:38:30 -070051 -------- --- --------------------------------------------------------
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070052 21/12/09 Ashwani Created module.
Jeff Johnson295189b2012-06-20 16:38:30 -070053
54 07/06/10 Kumar Deepak Implemented cfg80211 callbacks for ANDROID
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070055 Ganesh K
Jeff Johnson295189b2012-06-20 16:38:30 -070056 ==========================================================================*/
57
Jeff Johnson295189b2012-06-20 16:38:30 -070058
59#include <linux/version.h>
60#include <linux/module.h>
61#include <linux/kernel.h>
62#include <linux/init.h>
63#include <linux/wireless.h>
64#include <wlan_hdd_includes.h>
65#include <net/arp.h>
66#include <net/cfg80211.h>
67#include <linux/wireless.h>
68#include <wlan_hdd_wowl.h>
69#include <aniGlobal.h>
70#include "ccmApi.h"
71#include "sirParams.h"
72#include "dot11f.h"
73#include "wlan_hdd_assoc.h"
74#include "wlan_hdd_wext.h"
75#include "sme_Api.h"
76#include "wlan_hdd_p2p.h"
77#include "wlan_hdd_cfg80211.h"
78#include "wlan_hdd_hostapd.h"
79#include "sapInternal.h"
80#include "wlan_hdd_softap_tx_rx.h"
81#include "wlan_hdd_main.h"
Madan Mohan Koyyalamudid5acbf52012-11-28 01:45:08 +053082#include "wlan_hdd_assoc.h"
Gopichand Nakkala20c4c042013-04-19 22:08:55 +053083#include "wlan_hdd_power.h"
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053084#include "wlan_hdd_trace.h"
85#include "vos_types.h"
86#include "vos_trace.h"
Jeff Johnson295189b2012-06-20 16:38:30 -070087#ifdef WLAN_BTAMP_FEATURE
88#include "bap_hdd_misc.h"
89#endif
90#include <qc_sap_ioctl.h>
Mohit Khanna698ba2a2012-12-04 15:08:18 -080091#ifdef FEATURE_WLAN_TDLS
92#include "wlan_hdd_tdls.h"
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +053093#include "wlan_hdd_wmm.h"
Madan Mohan Koyyalamudice419872013-09-13 19:36:52 +053094#include "wlan_qct_wda.h"
Mohit Khanna698ba2a2012-12-04 15:08:18 -080095#endif
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +053096#include "wlan_nv.h"
Leo Chang6fe1f922013-06-07 19:21:24 -070097#include "wlan_hdd_dev_pwr.h"
Jeff Johnson295189b2012-06-20 16:38:30 -070098
99#define g_mode_rates_size (12)
100#define a_mode_rates_size (8)
101#define FREQ_BASE_80211G (2407)
102#define FREQ_BAND_DIFF_80211G (5)
Jeff Johnson04dd8a82012-06-29 20:41:40 -0700103#define MAX_SCAN_SSID 9
Kiet Lamac06e2c2013-10-23 16:25:07 +0530104#define MAX_PENDING_LOG 5
Jeff Johnson295189b2012-06-20 16:38:30 -0700105#define GET_IE_LEN_IN_BSS_DESC(lenInBss) ( lenInBss + sizeof(lenInBss) - \
krunal soni2a6a9062014-02-11 14:14:23 -0800106 ((uintptr_t)OFFSET_OF( tSirBssDescription, ieFields)))
Jeff Johnson295189b2012-06-20 16:38:30 -0700107
108#define HDD2GHZCHAN(freq, chan, flag) { \
109 .band = IEEE80211_BAND_2GHZ, \
110 .center_freq = (freq), \
111 .hw_value = (chan),\
112 .flags = (flag), \
113 .max_antenna_gain = 0 ,\
114 .max_power = 30, \
115}
116
117#define HDD5GHZCHAN(freq, chan, flag) { \
118 .band = IEEE80211_BAND_5GHZ, \
119 .center_freq = (freq), \
120 .hw_value = (chan),\
121 .flags = (flag), \
122 .max_antenna_gain = 0 ,\
123 .max_power = 30, \
124}
125
126#define HDD_G_MODE_RATETAB(rate, rate_id, flag)\
127{\
128 .bitrate = rate, \
129 .hw_value = rate_id, \
130 .flags = flag, \
131}
132
Lee Hoonkic1262f22013-01-24 21:59:00 -0800133#ifndef WLAN_FEATURE_TDLS_DEBUG
134#define TDLS_LOG_LEVEL VOS_TRACE_LEVEL_INFO
135#else
136#define TDLS_LOG_LEVEL VOS_TRACE_LEVEL_ERROR
137#endif
138
Gopichand Nakkala356fb102013-03-06 12:34:04 +0530139#ifdef WLAN_FEATURE_VOWIFI_11R
140#define WLAN_AKM_SUITE_FT_8021X 0x000FAC03
141#define WLAN_AKM_SUITE_FT_PSK 0x000FAC04
142#endif
143
Naresh Jayaram3180aa42014-02-12 21:47:26 +0530144#define HDD_CHANNEL_14 14
145
Sunil Duttc69bccb2014-05-26 21:30:20 +0530146#ifdef WLAN_FEATURE_LINK_LAYER_STATS
147/*
148 * Used to allocate the size of 4096 for the link layer stats.
149 * The size of 4096 is considered assuming that all data per
150 * respective event fit with in the limit.Please take a call
151 * on the limit based on the data requirements on link layer
152 * statistics.
153 */
154#define LL_STATS_EVENT_BUF_SIZE 4096
155#endif
156
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530157static const u32 hdd_cipher_suites[] =
Jeff Johnson295189b2012-06-20 16:38:30 -0700158{
159 WLAN_CIPHER_SUITE_WEP40,
160 WLAN_CIPHER_SUITE_WEP104,
161 WLAN_CIPHER_SUITE_TKIP,
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -0800162#ifdef FEATURE_WLAN_ESE
Jeff Johnson295189b2012-06-20 16:38:30 -0700163#define WLAN_CIPHER_SUITE_KRK 0x004096ff /* use for KRK */
164 WLAN_CIPHER_SUITE_KRK,
165 WLAN_CIPHER_SUITE_CCMP,
166#else
167 WLAN_CIPHER_SUITE_CCMP,
168#endif
169#ifdef FEATURE_WLAN_WAPI
170 WLAN_CIPHER_SUITE_SMS4,
171#endif
Chet Lanctot186b5732013-03-18 10:26:30 -0700172#ifdef WLAN_FEATURE_11W
173 WLAN_CIPHER_SUITE_AES_CMAC,
174#endif
Jeff Johnson295189b2012-06-20 16:38:30 -0700175};
176
177static inline int is_broadcast_ether_addr(const u8 *addr)
178{
179 return ((addr[0] == 0xff) && (addr[1] == 0xff) && (addr[2] == 0xff) &&
180 (addr[3] == 0xff) && (addr[4] == 0xff) && (addr[5] == 0xff));
181}
182
183static struct ieee80211_channel hdd_channels_2_4_GHZ[] =
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530184{
Jeff Johnson295189b2012-06-20 16:38:30 -0700185 HDD2GHZCHAN(2412, 1, 0) ,
186 HDD2GHZCHAN(2417, 2, 0) ,
187 HDD2GHZCHAN(2422, 3, 0) ,
188 HDD2GHZCHAN(2427, 4, 0) ,
189 HDD2GHZCHAN(2432, 5, 0) ,
190 HDD2GHZCHAN(2437, 6, 0) ,
191 HDD2GHZCHAN(2442, 7, 0) ,
192 HDD2GHZCHAN(2447, 8, 0) ,
193 HDD2GHZCHAN(2452, 9, 0) ,
194 HDD2GHZCHAN(2457, 10, 0) ,
195 HDD2GHZCHAN(2462, 11, 0) ,
196 HDD2GHZCHAN(2467, 12, 0) ,
197 HDD2GHZCHAN(2472, 13, 0) ,
198 HDD2GHZCHAN(2484, 14, 0) ,
199};
200
Jeff Johnson295189b2012-06-20 16:38:30 -0700201static struct ieee80211_channel hdd_social_channels_2_4_GHZ[] =
202{
203 HDD2GHZCHAN(2412, 1, 0) ,
204 HDD2GHZCHAN(2437, 6, 0) ,
205 HDD2GHZCHAN(2462, 11, 0) ,
206};
Jeff Johnson295189b2012-06-20 16:38:30 -0700207
208static struct ieee80211_channel hdd_channels_5_GHZ[] =
209{
Madan Mohan Koyyalamudic3a240c2012-09-28 15:34:08 -0700210 HDD5GHZCHAN(4920, 240, 0) ,
211 HDD5GHZCHAN(4940, 244, 0) ,
212 HDD5GHZCHAN(4960, 248, 0) ,
213 HDD5GHZCHAN(4980, 252, 0) ,
214 HDD5GHZCHAN(5040, 208, 0) ,
215 HDD5GHZCHAN(5060, 212, 0) ,
216 HDD5GHZCHAN(5080, 216, 0) ,
Jeff Johnson295189b2012-06-20 16:38:30 -0700217 HDD5GHZCHAN(5180, 36, 0) ,
218 HDD5GHZCHAN(5200, 40, 0) ,
219 HDD5GHZCHAN(5220, 44, 0) ,
220 HDD5GHZCHAN(5240, 48, 0) ,
221 HDD5GHZCHAN(5260, 52, 0) ,
222 HDD5GHZCHAN(5280, 56, 0) ,
223 HDD5GHZCHAN(5300, 60, 0) ,
224 HDD5GHZCHAN(5320, 64, 0) ,
225 HDD5GHZCHAN(5500,100, 0) ,
226 HDD5GHZCHAN(5520,104, 0) ,
227 HDD5GHZCHAN(5540,108, 0) ,
228 HDD5GHZCHAN(5560,112, 0) ,
229 HDD5GHZCHAN(5580,116, 0) ,
230 HDD5GHZCHAN(5600,120, 0) ,
231 HDD5GHZCHAN(5620,124, 0) ,
232 HDD5GHZCHAN(5640,128, 0) ,
233 HDD5GHZCHAN(5660,132, 0) ,
234 HDD5GHZCHAN(5680,136, 0) ,
235 HDD5GHZCHAN(5700,140, 0) ,
Leo Chang80de3c22013-11-26 10:52:12 -0800236#ifdef FEATURE_WLAN_CH144
237 HDD5GHZCHAN(5720,144, 0) ,
238#endif /* FEATURE_WLAN_CH144 */
Jeff Johnson295189b2012-06-20 16:38:30 -0700239 HDD5GHZCHAN(5745,149, 0) ,
240 HDD5GHZCHAN(5765,153, 0) ,
241 HDD5GHZCHAN(5785,157, 0) ,
242 HDD5GHZCHAN(5805,161, 0) ,
243 HDD5GHZCHAN(5825,165, 0) ,
244};
245
246static struct ieee80211_rate g_mode_rates[] =
247{
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530248 HDD_G_MODE_RATETAB(10, 0x1, 0),
249 HDD_G_MODE_RATETAB(20, 0x2, 0),
250 HDD_G_MODE_RATETAB(55, 0x4, 0),
251 HDD_G_MODE_RATETAB(110, 0x8, 0),
252 HDD_G_MODE_RATETAB(60, 0x10, 0),
253 HDD_G_MODE_RATETAB(90, 0x20, 0),
254 HDD_G_MODE_RATETAB(120, 0x40, 0),
255 HDD_G_MODE_RATETAB(180, 0x80, 0),
256 HDD_G_MODE_RATETAB(240, 0x100, 0),
257 HDD_G_MODE_RATETAB(360, 0x200, 0),
258 HDD_G_MODE_RATETAB(480, 0x400, 0),
Jeff Johnson295189b2012-06-20 16:38:30 -0700259 HDD_G_MODE_RATETAB(540, 0x800, 0),
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530260};
Jeff Johnson295189b2012-06-20 16:38:30 -0700261
262static struct ieee80211_rate a_mode_rates[] =
263{
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530264 HDD_G_MODE_RATETAB(60, 0x10, 0),
265 HDD_G_MODE_RATETAB(90, 0x20, 0),
266 HDD_G_MODE_RATETAB(120, 0x40, 0),
267 HDD_G_MODE_RATETAB(180, 0x80, 0),
268 HDD_G_MODE_RATETAB(240, 0x100, 0),
269 HDD_G_MODE_RATETAB(360, 0x200, 0),
270 HDD_G_MODE_RATETAB(480, 0x400, 0),
Jeff Johnson295189b2012-06-20 16:38:30 -0700271 HDD_G_MODE_RATETAB(540, 0x800, 0),
272};
273
274static struct ieee80211_supported_band wlan_hdd_band_2_4_GHZ =
275{
276 .channels = hdd_channels_2_4_GHZ,
277 .n_channels = ARRAY_SIZE(hdd_channels_2_4_GHZ),
278 .band = IEEE80211_BAND_2GHZ,
279 .bitrates = g_mode_rates,
280 .n_bitrates = g_mode_rates_size,
281 .ht_cap.ht_supported = 1,
282 .ht_cap.cap = IEEE80211_HT_CAP_SGI_20
283 | IEEE80211_HT_CAP_GRN_FLD
284 | IEEE80211_HT_CAP_DSSSCCK40
285 | IEEE80211_HT_CAP_LSIG_TXOP_PROT,
286 .ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K,
287 .ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_16,
288 .ht_cap.mcs.rx_mask = { 0xff, 0, 0, 0, 0, 0, 0, 0, 0, 0, },
289 .ht_cap.mcs.rx_highest = cpu_to_le16( 72 ),
290 .ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED,
291};
292
Jeff Johnson295189b2012-06-20 16:38:30 -0700293static struct ieee80211_supported_band wlan_hdd_band_p2p_2_4_GHZ =
294{
295 .channels = hdd_social_channels_2_4_GHZ,
296 .n_channels = ARRAY_SIZE(hdd_social_channels_2_4_GHZ),
297 .band = IEEE80211_BAND_2GHZ,
298 .bitrates = g_mode_rates,
299 .n_bitrates = g_mode_rates_size,
300 .ht_cap.ht_supported = 1,
301 .ht_cap.cap = IEEE80211_HT_CAP_SGI_20
302 | IEEE80211_HT_CAP_GRN_FLD
303 | IEEE80211_HT_CAP_DSSSCCK40
304 | IEEE80211_HT_CAP_LSIG_TXOP_PROT,
305 .ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K,
306 .ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_16,
307 .ht_cap.mcs.rx_mask = { 0xff, 0, 0, 0, 0, 0, 0, 0, 0, 0, },
308 .ht_cap.mcs.rx_highest = cpu_to_le16( 72 ),
309 .ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED,
310};
Jeff Johnson295189b2012-06-20 16:38:30 -0700311
312static struct ieee80211_supported_band wlan_hdd_band_5_GHZ =
313{
314 .channels = hdd_channels_5_GHZ,
315 .n_channels = ARRAY_SIZE(hdd_channels_5_GHZ),
316 .band = IEEE80211_BAND_5GHZ,
317 .bitrates = a_mode_rates,
318 .n_bitrates = a_mode_rates_size,
319 .ht_cap.ht_supported = 1,
320 .ht_cap.cap = IEEE80211_HT_CAP_SGI_20
321 | IEEE80211_HT_CAP_GRN_FLD
322 | IEEE80211_HT_CAP_DSSSCCK40
323 | IEEE80211_HT_CAP_LSIG_TXOP_PROT
324 | IEEE80211_HT_CAP_SGI_40
325 | IEEE80211_HT_CAP_SUP_WIDTH_20_40,
326 .ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K,
327 .ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_16,
328 .ht_cap.mcs.rx_mask = { 0xff, 0, 0, 0, 0, 0, 0, 0, 0, 0, },
329 .ht_cap.mcs.rx_highest = cpu_to_le16( 72 ),
330 .ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED,
331};
332
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530333/* This structure contain information what kind of frame are expected in
Jeff Johnson295189b2012-06-20 16:38:30 -0700334 TX/RX direction for each kind of interface */
335static const struct ieee80211_txrx_stypes
336wlan_hdd_txrx_stypes[NUM_NL80211_IFTYPES] = {
337 [NL80211_IFTYPE_STATION] = {
338 .tx = 0xffff,
339 .rx = BIT(SIR_MAC_MGMT_ACTION) |
340 BIT(SIR_MAC_MGMT_PROBE_REQ),
341 },
342 [NL80211_IFTYPE_AP] = {
343 .tx = 0xffff,
344 .rx = BIT(SIR_MAC_MGMT_ASSOC_REQ) |
345 BIT(SIR_MAC_MGMT_REASSOC_REQ) |
346 BIT(SIR_MAC_MGMT_PROBE_REQ) |
347 BIT(SIR_MAC_MGMT_DISASSOC) |
348 BIT(SIR_MAC_MGMT_AUTH) |
349 BIT(SIR_MAC_MGMT_DEAUTH) |
350 BIT(SIR_MAC_MGMT_ACTION),
351 },
Jeff Johnsonbc006202013-04-29 14:05:30 -0700352 [NL80211_IFTYPE_ADHOC] = {
353 .tx = 0xffff,
354 .rx = BIT(SIR_MAC_MGMT_ASSOC_REQ) |
355 BIT(SIR_MAC_MGMT_REASSOC_REQ) |
356 BIT(SIR_MAC_MGMT_PROBE_REQ) |
357 BIT(SIR_MAC_MGMT_DISASSOC) |
358 BIT(SIR_MAC_MGMT_AUTH) |
359 BIT(SIR_MAC_MGMT_DEAUTH) |
360 BIT(SIR_MAC_MGMT_ACTION),
361 },
Jeff Johnson295189b2012-06-20 16:38:30 -0700362 [NL80211_IFTYPE_P2P_CLIENT] = {
363 .tx = 0xffff,
364 .rx = BIT(SIR_MAC_MGMT_ACTION) |
365 BIT(SIR_MAC_MGMT_PROBE_REQ),
366 },
367 [NL80211_IFTYPE_P2P_GO] = {
368 /* This is also same as for SoftAP */
369 .tx = 0xffff,
370 .rx = BIT(SIR_MAC_MGMT_ASSOC_REQ) |
371 BIT(SIR_MAC_MGMT_REASSOC_REQ) |
372 BIT(SIR_MAC_MGMT_PROBE_REQ) |
373 BIT(SIR_MAC_MGMT_DISASSOC) |
374 BIT(SIR_MAC_MGMT_AUTH) |
375 BIT(SIR_MAC_MGMT_DEAUTH) |
376 BIT(SIR_MAC_MGMT_ACTION),
377 },
Jeff Johnson295189b2012-06-20 16:38:30 -0700378};
379
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800380#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800381static const struct ieee80211_iface_limit
382wlan_hdd_iface_limit[] = {
383 {
Sunil Ravia72c3992013-01-31 06:12:22 -0800384 /* max = 3 ; Our driver create two interfaces during driver init
385 * wlan0 and p2p0 interfaces. p2p0 is considered as station
386 * interface until a group is formed. In JB architecture, once the
387 * group is formed, interface type of p2p0 is changed to P2P GO or
388 * Client.
389 * When supplicant remove the group, it first issue a set interface
390 * cmd to change the mode back to Station. In JB this works fine as
391 * we advertize two station type interface during driver init.
392 * Some vendors create separate interface for P2P GO/Client,
393 * after group formation(Third one). But while group remove
394 * supplicant first tries to change the mode(3rd interface) to STATION
395 * But as we advertized only two sta type interfaces nl80211 was
396 * returning error for the third one which was leading to failure in
397 * delete interface. Ideally while removing the group, supplicant
398 * should not try to change the 3rd interface mode to Station type.
399 * Till we get a fix in wpa_supplicant, we advertize max STA
400 * interface type to 3
401 */
402 .max = 3,
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800403 .types = BIT(NL80211_IFTYPE_STATION),
404 },
405 {
406 .max = 1,
Jeff Johnsonbc006202013-04-29 14:05:30 -0700407 .types = BIT(NL80211_IFTYPE_ADHOC) | BIT(NL80211_IFTYPE_AP),
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800408 },
409 {
410 .max = 1,
411 .types = BIT(NL80211_IFTYPE_P2P_GO) |
412 BIT(NL80211_IFTYPE_P2P_CLIENT),
413 },
414};
415
416/* By default, only single channel concurrency is allowed */
417static struct ieee80211_iface_combination
418wlan_hdd_iface_combination = {
419 .limits = wlan_hdd_iface_limit,
420 .num_different_channels = 1,
Sunil Ravia72c3992013-01-31 06:12:22 -0800421 /*
422 * max = WLAN_MAX_INTERFACES ; JellyBean architecture creates wlan0
423 * and p2p0 interfaces during driver init
424 * Some vendors create separate interface for P2P operations.
425 * wlan0: STA interface
426 * p2p0: P2P Device interface, action frames goes
427 * through this interface.
428 * p2p-xx: P2P interface, After GO negotiation this interface is
429 * created for p2p operations(GO/CLIENT interface).
430 */
431 .max_interfaces = WLAN_MAX_INTERFACES,
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800432 .n_limits = ARRAY_SIZE(wlan_hdd_iface_limit),
433 .beacon_int_infra_match = false,
434};
435#endif
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800436
Jeff Johnson295189b2012-06-20 16:38:30 -0700437static struct cfg80211_ops wlan_hdd_cfg80211_ops;
438
439/* Data rate 100KBPS based on IE Index */
440struct index_data_rate_type
441{
442 v_U8_t beacon_rate_index;
443 v_U16_t supported_rate[4];
444};
445
446/* 11B, 11G Rate table include Basic rate and Extended rate
447 The IDX field is the rate index
448 The HI field is the rate when RSSI is strong or being ignored
449 (in this case we report actual rate)
450 The MID field is the rate when RSSI is moderate
451 (in this case we cap 11b rates at 5.5 and 11g rates at 24)
452 The LO field is the rate when RSSI is low
453 (in this case we don't report rates, actual current rate used)
454 */
455static const struct
456{
457 v_U8_t beacon_rate_index;
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -0700458 v_U16_t supported_rate[4];
Jeff Johnson295189b2012-06-20 16:38:30 -0700459} supported_data_rate[] =
460{
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -0700461/* IDX HI HM LM LO (RSSI-based index */
462 {2, { 10, 10, 10, 0}},
463 {4, { 20, 20, 10, 0}},
464 {11, { 55, 20, 10, 0}},
465 {12, { 60, 55, 20, 0}},
466 {18, { 90, 55, 20, 0}},
467 {22, {110, 55, 20, 0}},
468 {24, {120, 90, 60, 0}},
469 {36, {180, 120, 60, 0}},
470 {44, {220, 180, 60, 0}},
471 {48, {240, 180, 90, 0}},
472 {66, {330, 180, 90, 0}},
473 {72, {360, 240, 90, 0}},
474 {96, {480, 240, 120, 0}},
475 {108, {540, 240, 120, 0}}
Jeff Johnson295189b2012-06-20 16:38:30 -0700476};
477
478/* MCS Based rate table */
479static struct index_data_rate_type supported_mcs_rate[] =
480{
481/* MCS L20 L40 S20 S40 */
482 {0, {65, 135, 72, 150}},
483 {1, {130, 270, 144, 300}},
484 {2, {195, 405, 217, 450}},
485 {3, {260, 540, 289, 600}},
486 {4, {390, 810, 433, 900}},
487 {5, {520, 1080, 578, 1200}},
488 {6, {585, 1215, 650, 1350}},
489 {7, {650, 1350, 722, 1500}}
490};
491
Leo Chang6f8870f2013-03-26 18:11:36 -0700492#ifdef WLAN_FEATURE_11AC
493
Gopichand Nakkala4c705372013-04-24 13:20:33 +0530494#define DATA_RATE_11AC_MCS_MASK 0x03
Leo Chang6f8870f2013-03-26 18:11:36 -0700495
496struct index_vht_data_rate_type
497{
498 v_U8_t beacon_rate_index;
Gopichand Nakkala4c705372013-04-24 13:20:33 +0530499 v_U16_t supported_VHT80_rate[2];
500 v_U16_t supported_VHT40_rate[2];
501 v_U16_t supported_VHT20_rate[2];
Leo Chang6f8870f2013-03-26 18:11:36 -0700502};
503
504typedef enum
505{
506 DATA_RATE_11AC_MAX_MCS_7,
507 DATA_RATE_11AC_MAX_MCS_8,
508 DATA_RATE_11AC_MAX_MCS_9,
509 DATA_RATE_11AC_MAX_MCS_NA
510} eDataRate11ACMaxMcs;
511
512/* MCS Based VHT rate table */
513static struct index_vht_data_rate_type supported_vht_mcs_rate[] =
514{
Gopichand Nakkala4c705372013-04-24 13:20:33 +0530515/* MCS L80 S80 L40 S40 L20 S40*/
516 {0, {293, 325}, {135, 150}, {65, 72}},
517 {1, {585, 650}, {270, 300}, {130, 144}},
518 {2, {878, 975}, {405, 450}, {195, 217}},
519 {3, {1170, 1300}, {540, 600}, {260, 289}},
520 {4, {1755, 1950}, {810, 900}, {390, 433}},
521 {5, {2340, 2600}, {1080, 1200}, {520, 578}},
522 {6, {2633, 2925}, {1215, 1350}, {585, 650}},
523 {7, {2925, 3250}, {1350, 1500}, {650, 722}},
524 {8, {3510, 3900}, {1620, 1800}, {780, 867}},
525 {9, {3900, 4333}, {1800, 2000}, {780, 867}}
Leo Chang6f8870f2013-03-26 18:11:36 -0700526};
527#endif /* WLAN_FEATURE_11AC */
528
Jeff Johnson295189b2012-06-20 16:38:30 -0700529extern struct net_device_ops net_ops_struct;
530
Leo Chang9056f462013-08-01 19:21:11 -0700531#ifdef WLAN_NL80211_TESTMODE
532enum wlan_hdd_tm_attr
533{
534 WLAN_HDD_TM_ATTR_INVALID = 0,
535 WLAN_HDD_TM_ATTR_CMD = 1,
536 WLAN_HDD_TM_ATTR_DATA = 2,
537 WLAN_HDD_TM_ATTR_TYPE = 3,
538 /* keep last */
539 WLAN_HDD_TM_ATTR_AFTER_LAST,
540 WLAN_HDD_TM_ATTR_MAX = WLAN_HDD_TM_ATTR_AFTER_LAST - 1,
541};
542
543enum wlan_hdd_tm_cmd
544{
545 WLAN_HDD_TM_CMD_WLAN_HB = 1,
546};
547
548#define WLAN_HDD_TM_DATA_MAX_LEN 5000
549
550static const struct nla_policy wlan_hdd_tm_policy[WLAN_HDD_TM_ATTR_MAX + 1] =
551{
552 [WLAN_HDD_TM_ATTR_CMD] = { .type = NLA_U32 },
553 [WLAN_HDD_TM_ATTR_DATA] = { .type = NLA_BINARY,
554 .len = WLAN_HDD_TM_DATA_MAX_LEN },
555};
556#endif /* WLAN_NL80211_TESTMODE */
557
Rajesh Chauhan98a31f82014-01-06 20:15:25 -0800558#ifdef FEATURE_WLAN_CH_AVOID
559/*
560 * FUNCTION: wlan_hdd_send_avoid_freq_event
561 * This is called when wlan driver needs to send vendor specific
562 * avoid frequency range event to userspace
563 */
564int wlan_hdd_send_avoid_freq_event(hdd_context_t *pHddCtx,
565 tHddAvoidFreqList *pAvoidFreqList)
566{
567 struct sk_buff *vendor_event;
568
569 ENTER();
570
571 if (!pHddCtx)
572 {
573 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
574 "%s: HDD context is null", __func__);
575 return -1;
576 }
577
578 if (!pAvoidFreqList)
579 {
580 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
581 "%s: pAvoidFreqList is null", __func__);
582 return -1;
583 }
584
585 vendor_event = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
586 sizeof(tHddAvoidFreqList),
Sunil Duttc69bccb2014-05-26 21:30:20 +0530587 QCA_NL80211_VENDOR_SUBCMD_AVOID_FREQUENCY_INDEX,
Rajesh Chauhan98a31f82014-01-06 20:15:25 -0800588 GFP_KERNEL);
589 if (!vendor_event)
590 {
591 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
592 "%s: cfg80211_vendor_event_alloc failed", __func__);
593 return -1;
594 }
595
596 memcpy(skb_put(vendor_event, sizeof(tHddAvoidFreqList)),
597 (void *)pAvoidFreqList, sizeof(tHddAvoidFreqList));
598
599 cfg80211_vendor_event(vendor_event, GFP_KERNEL);
600
601 EXIT();
602 return 0;
603}
604#endif /* FEATURE_WLAN_CH_AVOID */
605
Sunil Duttc69bccb2014-05-26 21:30:20 +0530606#ifdef WLAN_FEATURE_LINK_LAYER_STATS
607
608static v_BOOL_t put_wifi_rate_stat( tpSirWifiRateStat stats,
609 struct sk_buff *vendor_event)
610{
611 if (nla_put_u8(vendor_event,
612 QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_PREAMBLE,
613 stats->rate.preamble) ||
614 nla_put_u8(vendor_event,
615 QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_NSS,
616 stats->rate.nss) ||
617 nla_put_u8(vendor_event,
618 QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_BW,
619 stats->rate.bw) ||
620 nla_put_u8(vendor_event,
621 QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_MCS_INDEX,
622 stats->rate.rateMcsIdx) ||
623 nla_put_u32(vendor_event, QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_BIT_RATE,
624 stats->rate.bitrate ) ||
625 nla_put_u32(vendor_event, QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_TX_MPDU,
626 stats->txMpdu ) ||
627 nla_put_u32(vendor_event, QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_RX_MPDU,
628 stats->rxMpdu ) ||
629 nla_put_u32(vendor_event, QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_MPDU_LOST,
630 stats->mpduLost ) ||
631 nla_put_u32(vendor_event, QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_RETRIES,
632 stats->retries) ||
633 nla_put_u32(vendor_event,
634 QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_RETRIES_SHORT,
635 stats->retriesShort ) ||
636 nla_put_u32(vendor_event,
637 QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_RETRIES_LONG,
638 stats->retriesLong))
639 {
640 hddLog(VOS_TRACE_LEVEL_ERROR,
641 FL("QCA_WLAN_VENDOR_ATTR put fail"));
642 return FALSE;
643 }
644 return TRUE;
645}
646
647static v_BOOL_t put_wifi_peer_info( tpSirWifiPeerInfo stats,
648 struct sk_buff *vendor_event)
649{
650 u32 i = 0;
651 struct nlattr *rateInfo;
652 if (nla_put_u32(vendor_event, QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_TYPE,
653 stats->type) ||
654 nla_put(vendor_event,
655 QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_MAC_ADDRESS,
656 VOS_MAC_ADDR_SIZE, &stats->peerMacAddress[0]) ||
657 nla_put_u32(vendor_event,
658 QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_CAPABILITIES,
659 stats->capabilities) ||
660 nla_put_u32(vendor_event,
661 QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_NUM_RATES,
662 stats->numRate))
663 {
664 hddLog(VOS_TRACE_LEVEL_ERROR,
665 FL("QCA_WLAN_VENDOR_ATTR put fail"));
666 goto error;
667 }
668
669 rateInfo = nla_nest_start(vendor_event,
670 QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_RATE_INFO);
671 for (i = 0; i < stats->numRate; i++)
672 {
673 struct nlattr *rates;
674 tpSirWifiRateStat pRateStats = (tpSirWifiRateStat )((uint8 *)
675 stats->rateStats +
676 (i * sizeof(tSirWifiRateStat)));
677 rates = nla_nest_start(vendor_event, i);
678
679 if (FALSE == put_wifi_rate_stat(pRateStats, vendor_event))
680 {
681 hddLog(VOS_TRACE_LEVEL_ERROR,
682 FL("QCA_WLAN_VENDOR_ATTR put fail"));
683 return FALSE;
684 }
685 nla_nest_end(vendor_event, rates);
686 }
687 nla_nest_end(vendor_event, rateInfo);
688
689 return TRUE;
690error:
691 return FALSE;
692}
693
694static v_BOOL_t put_wifi_wmm_ac_stat( tpSirWifiWmmAcStat stats,
695 struct sk_buff *vendor_event)
696{
697 if (nla_put_u32(vendor_event, QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_AC,
698 stats->ac ) ||
699 nla_put_u32(vendor_event,
700 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_TX_MPDU,
701 stats->txMpdu ) ||
702 nla_put_u32(vendor_event,
703 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_RX_MPDU,
704 stats->rxMpdu ) ||
705 nla_put_u32(vendor_event,
706 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_TX_MCAST,
707 stats->txMcast ) ||
708 nla_put_u32(vendor_event,
709 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_RX_MCAST,
710 stats->rxMcast ) ||
711 nla_put_u32(vendor_event,
712 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_RX_AMPDU,
713 stats->rxAmpdu ) ||
714 nla_put_u32(vendor_event,
715 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_TX_AMPDU,
716 stats->txAmpdu ) ||
717 nla_put_u32(vendor_event,
718 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_MPDU_LOST,
719 stats->mpduLost )||
720 nla_put_u32(vendor_event,
721 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_RETRIES,
722 stats->retries ) ||
723 nla_put_u32(vendor_event,
724 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_RETRIES_SHORT,
725 stats->retriesShort ) ||
726 nla_put_u32(vendor_event,
727 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_RETRIES_LONG,
728 stats->retriesLong ) ||
729 nla_put_u32(vendor_event,
730 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_CONTENTION_TIME_MIN,
731 stats->contentionTimeMin ) ||
732 nla_put_u32(vendor_event,
733 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_CONTENTION_TIME_MAX,
734 stats->contentionTimeMax ) ||
735 nla_put_u32(vendor_event,
736 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_CONTENTION_TIME_AVG,
737 stats->contentionTimeAvg ) ||
738 nla_put_u32(vendor_event,
739 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_CONTENTION_NUM_SAMPLES,
740 stats->contentionNumSamples ))
741 {
742 hddLog(VOS_TRACE_LEVEL_ERROR,
743 FL("QCA_WLAN_VENDOR_ATTR put fail") );
744 return FALSE;
745 }
746 return TRUE;
747}
748
749static v_BOOL_t put_wifi_interface_info(tpSirWifiInterfaceInfo stats,
750 struct sk_buff *vendor_event)
751{
752 if (nla_put_u32(vendor_event,
753 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_MODE, stats->mode ) ||
754 nla_put(vendor_event,
755 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_MAC_ADDR,
756 VOS_MAC_ADDR_SIZE, stats->macAddr) ||
757 nla_put_u32(vendor_event,
758 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_STATE,
759 stats->state ) ||
760 nla_put_u32(vendor_event,
761 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_ROAMING,
762 stats->roaming ) ||
763 nla_put_u32(vendor_event,
764 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_CAPABILITIES,
765 stats->capabilities ) ||
766 nla_put(vendor_event,
767 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_SSID,
768 strlen(stats->ssid), stats->ssid) ||
769 nla_put(vendor_event,
770 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_BSSID,
771 WNI_CFG_BSSID_LEN, stats->bssid) ||
772 nla_put(vendor_event,
773 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_AP_COUNTRY_STR,
774 WNI_CFG_COUNTRY_CODE_LEN, stats->apCountryStr) ||
775 nla_put(vendor_event,
776 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_COUNTRY_STR,
777 WNI_CFG_COUNTRY_CODE_LEN, stats->countryStr)
778 )
779 {
780 hddLog(VOS_TRACE_LEVEL_ERROR,
781 FL("QCA_WLAN_VENDOR_ATTR put fail") );
782 return FALSE;
783 }
784 return TRUE;
785}
786
787static v_BOOL_t put_wifi_iface_stats(tpSirWifiIfaceStat pWifiIfaceStat,
788 struct sk_buff *vendor_event)
789{
790 int i = 0;
791 struct nlattr *wmmInfo;
792 if (FALSE == put_wifi_interface_info(
793 &pWifiIfaceStat->info,
794 vendor_event))
795 {
796 hddLog(VOS_TRACE_LEVEL_ERROR,
797 FL("QCA_WLAN_VENDOR_ATTR put fail") );
798 return FALSE;
799
800 }
801
802 if (nla_put_u32(vendor_event,
803 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_BEACON_RX,
804 pWifiIfaceStat->beaconRx) ||
805 nla_put_u32(vendor_event,
806 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_MGMT_RX,
807 pWifiIfaceStat->mgmtRx) ||
808 nla_put_u32(vendor_event,
809 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_MGMT_ACTION_RX,
810 pWifiIfaceStat->mgmtActionRx) ||
811 nla_put_u32(vendor_event,
812 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_MGMT_ACTION_TX,
813 pWifiIfaceStat->mgmtActionTx) ||
814 nla_put_u32(vendor_event,
815 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_RSSI_MGMT,
816 pWifiIfaceStat->rssiMgmt) ||
817 nla_put_u32(vendor_event,
818 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_RSSI_DATA,
819 pWifiIfaceStat->rssiData) ||
820 nla_put_u32(vendor_event,
821 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_RSSI_ACK,
822 pWifiIfaceStat->rssiAck))
823 {
824 hddLog(VOS_TRACE_LEVEL_ERROR,
825 FL("QCA_WLAN_VENDOR_ATTR put fail"));
826 return FALSE;
827 }
828
829 wmmInfo = nla_nest_start(vendor_event,
830 QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_INFO);
831 for (i = 0; i < WIFI_AC_MAX; i++)
832 {
833 struct nlattr *wmmStats;
834 wmmStats = nla_nest_start(vendor_event, i);
835 if (FALSE == put_wifi_wmm_ac_stat(
836 &pWifiIfaceStat->AccessclassStats[i],
837 vendor_event))
838 {
839 hddLog(VOS_TRACE_LEVEL_ERROR,
840 FL("QCA_WLAN_VENDOR_ATTR put Fail"));
841 return FALSE;
842 }
843
844 nla_nest_end(vendor_event, wmmStats);
845 }
846 nla_nest_end(vendor_event, wmmInfo);
847 return TRUE;
848}
849
850static tSirWifiInterfaceMode
851 hdd_map_device_to_ll_iface_mode ( int deviceMode )
852{
853 switch (deviceMode)
854 {
855 case WLAN_HDD_INFRA_STATION:
856 return WIFI_INTERFACE_STA;
857 case WLAN_HDD_SOFTAP:
858 return WIFI_INTERFACE_SOFTAP;
859 case WLAN_HDD_P2P_CLIENT:
860 return WIFI_INTERFACE_P2P_CLIENT;
861 case WLAN_HDD_P2P_GO:
862 return WIFI_INTERFACE_P2P_GO;
863 case WLAN_HDD_IBSS:
864 return WIFI_INTERFACE_IBSS;
865 default:
866 /* Return Interface Mode as STA for all the unsupported modes */
867 return WIFI_INTERFACE_STA;
868 }
869}
870
871static v_BOOL_t hdd_get_interface_info(hdd_adapter_t *pAdapter,
872 tpSirWifiInterfaceInfo pInfo)
873{
874 v_U8_t *staMac = NULL;
875 hdd_station_ctx_t *pHddStaCtx;
876 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
877 tpAniSirGlobal pMac = PMAC_STRUCT( hHal );
878
879 pInfo->mode = hdd_map_device_to_ll_iface_mode(pAdapter->device_mode);
880
881 vos_mem_copy(pInfo->macAddr,
882 pAdapter->macAddressCurrent.bytes, sizeof(v_MACADDR_t));
883
884 if (((WLAN_HDD_INFRA_STATION == pAdapter->device_mode) ||
885 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode) ||
886 (WLAN_HDD_P2P_DEVICE == pAdapter->device_mode)))
887 {
888 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
889 if (eConnectionState_NotConnected == pHddStaCtx->conn_info.connState)
890 {
891 pInfo->state = WIFI_DISCONNECTED;
892 }
893 if (eConnectionState_Connecting == pHddStaCtx->conn_info.connState)
894 {
895 hddLog(VOS_TRACE_LEVEL_ERROR,
896 "%s: Session ID %d, Connection is in progress", __func__,
897 pAdapter->sessionId);
898 pInfo->state = WIFI_ASSOCIATING;
899 }
900 if ((eConnectionState_Associated == pHddStaCtx->conn_info.connState) &&
901 (VOS_FALSE == pHddStaCtx->conn_info.uIsAuthenticated))
902 {
903 staMac = (v_U8_t *) &(pAdapter->macAddressCurrent.bytes[0]);
904 hddLog(VOS_TRACE_LEVEL_ERROR,
905 "%s: client " MAC_ADDRESS_STR
906 " is in the middle of WPS/EAPOL exchange.", __func__,
907 MAC_ADDR_ARRAY(staMac));
908 pInfo->state = WIFI_AUTHENTICATING;
909 }
910 if (eConnectionState_Associated == pHddStaCtx->conn_info.connState)
911 {
912 pInfo->state = WIFI_ASSOCIATED;
913 vos_mem_copy(pInfo->bssid,
914 &pHddStaCtx->conn_info.bssId, WNI_CFG_BSSID_LEN);
915 vos_mem_copy(pInfo->ssid,
916 pHddStaCtx->conn_info.SSID.SSID.ssId,
917 pHddStaCtx->conn_info.SSID.SSID.length);
918 //NULL Terminate the string.
919 pInfo->ssid[pHddStaCtx->conn_info.SSID.SSID.length] = 0;
920 }
921 }
922 vos_mem_copy(pInfo->countryStr,
923 pMac->scan.countryCodeCurrent, WNI_CFG_COUNTRY_CODE_LEN);
924
925 vos_mem_copy(pInfo->apCountryStr,
926 pMac->scan.countryCodeCurrent, WNI_CFG_COUNTRY_CODE_LEN);
927
928 return TRUE;
929}
930
931/*
932 * hdd_link_layer_process_peer_stats () - This function is called after
933 * receiving Link Layer Peer statistics from FW.This function converts
934 * the firmware data to the NL data and sends the same to the kernel/upper
935 * layers.
936 */
937static v_VOID_t hdd_link_layer_process_peer_stats(hdd_adapter_t *pAdapter,
938 v_VOID_t *pData)
939{
940 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
941 tpSirWifiRateStat pWifiRateStat;
942 tpSirWifiPeerStat pWifiPeerStat;
943 tpSirWifiPeerInfo pWifiPeerInfo;
944 struct nlattr *peerInfo;
945 struct sk_buff *vendor_event;
946 int status, i;
947
948 status = wlan_hdd_validate_context(pHddCtx);
949 if (0 != status)
950 {
951 hddLog(VOS_TRACE_LEVEL_ERROR,
952 FL("HDD context is not valid") );
953 return;
954 }
955
956 pWifiPeerStat = (tpSirWifiPeerStat) pData;
957
958 hddLog(VOS_TRACE_LEVEL_INFO,
959 "LL_STATS_PEER_ALL : numPeers %u",
960 pWifiPeerStat->numPeers);
961 {
962 for (i = 0; i < pWifiPeerStat->numPeers; i++)
963 {
964 pWifiPeerInfo = (tpSirWifiPeerInfo)
965 ((uint8 *)pWifiPeerStat->peerInfo +
966 ( i * sizeof(tSirWifiPeerInfo)));
967
968 hddLog(VOS_TRACE_LEVEL_INFO,
969 " %d) LL_STATS Channel Stats "
970 " Peer Type %u "
971 " peerMacAddress %pM "
972 " capabilities 0x%x "
973 " numRate %u ",
974 i,
975 pWifiPeerInfo->type,
976 pWifiPeerInfo->peerMacAddress,
977 pWifiPeerInfo->capabilities,
978 pWifiPeerInfo->numRate);
979 {
980 int j;
981 for (j = 0; j < pWifiPeerInfo->numRate; j++)
982 {
983 pWifiRateStat = (tpSirWifiRateStat)
984 ((tANI_U8 *) pWifiPeerInfo->rateStats +
985 ( j * sizeof(tSirWifiRateStat)));
986
987 hddLog(VOS_TRACE_LEVEL_INFO,
988 " peer Rate Stats "
989 " preamble %u "
990 " nss %u "
991 " bw %u "
992 " rateMcsIdx %u "
993 " reserved %u "
994 " bitrate %u "
995 " txMpdu %u "
996 " rxMpdu %u "
997 " mpduLost %u "
998 " retries %u "
999 " retriesShort %u "
1000 " retriesLong %u",
1001 pWifiRateStat->rate.preamble,
1002 pWifiRateStat->rate.nss,
1003 pWifiRateStat->rate.bw,
1004 pWifiRateStat->rate.rateMcsIdx,
1005 pWifiRateStat->rate.reserved,
1006 pWifiRateStat->rate.bitrate,
1007 pWifiRateStat->txMpdu,
1008 pWifiRateStat->rxMpdu,
1009 pWifiRateStat->mpduLost,
1010 pWifiRateStat->retries,
1011 pWifiRateStat->retriesShort,
1012 pWifiRateStat->retriesLong);
1013 }
1014 }
1015 }
1016 }
1017
1018 /*
1019 * Allocate a size of 4096 for the peer stats comprising
1020 * each of size = sizeof (tSirWifiPeerInfo) + numRate *
1021 * sizeof (tSirWifiRateStat).Each field is put with an
1022 * NL attribute.The size of 4096 is considered assuming
1023 * that number of rates shall not exceed beyond 50 with
1024 * the sizeof (tSirWifiRateStat) being 32.
1025 */
1026 vendor_event = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
1027 LL_STATS_EVENT_BUF_SIZE + NLMSG_HDRLEN,
1028 QCA_NL80211_VENDOR_SUBCMD_LL_PEER_INFO_STATS_INDEX,
1029 GFP_KERNEL);
1030 if (!vendor_event)
1031 {
1032 hddLog(VOS_TRACE_LEVEL_ERROR,
1033 "%s: cfg80211_vendor_event_alloc failed",
1034 __func__);
1035 return;
1036 }
1037 if (nla_put_u32(vendor_event,
1038 QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_NUM_PEERS,
1039 pWifiPeerStat->numPeers))
1040 {
1041 hddLog(VOS_TRACE_LEVEL_ERROR,
1042 "%s: QCA_WLAN_VENDOR_ATTR put fail", __func__);
1043 kfree_skb(vendor_event);
1044 return;
1045 }
1046
1047 peerInfo = nla_nest_start(vendor_event,
1048 QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO);
1049
1050 pWifiPeerInfo = (tpSirWifiPeerInfo) ((uint8 *)
1051 pWifiPeerStat->peerInfo);
1052
1053 for (i = 1; i <= pWifiPeerStat->numPeers; i++)
1054 {
1055 struct nlattr *peers = nla_nest_start(vendor_event, i);
1056 int numRate = pWifiPeerInfo->numRate;
1057
1058 if (FALSE == put_wifi_peer_info(
1059 pWifiPeerInfo, vendor_event))
1060 {
1061 hddLog(VOS_TRACE_LEVEL_ERROR,
1062 "%s: put_wifi_peer_info put fail", __func__);
1063 kfree_skb(vendor_event);
1064 return;
1065 }
1066
1067 pWifiPeerInfo = (tpSirWifiPeerInfo) ((uint8 *)
1068 pWifiPeerStat->peerInfo +
1069 (i * sizeof(tSirWifiPeerInfo)) +
1070 (numRate * sizeof (tSirWifiRateStat)));
1071 nla_nest_end(vendor_event, peers);
1072 }
1073 nla_nest_end(vendor_event, peerInfo);
1074 cfg80211_vendor_event(vendor_event, GFP_KERNEL);
1075}
1076
1077/*
1078 * hdd_link_layer_process_iface_stats () - This function is called after
1079 * receiving Link Layer Interface statistics from FW.This function converts
1080 * the firmware data to the NL data and sends the same to the kernel/upper
1081 * layers.
1082 */
1083static v_VOID_t hdd_link_layer_process_iface_stats(hdd_adapter_t *pAdapter,
1084 v_VOID_t *pData)
1085{
1086 tpSirWifiIfaceStat pWifiIfaceStat;
1087 struct sk_buff *vendor_event;
1088 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
1089 int status;
1090
1091 status = wlan_hdd_validate_context(pHddCtx);
1092 if (0 != status)
1093 {
1094 hddLog(VOS_TRACE_LEVEL_ERROR,
1095 FL("HDD context is not valid") );
1096 return;
1097 }
1098 /*
1099 * Allocate a size of 4096 for the interface stats comprising
1100 * sizeof (tpSirWifiIfaceStat).The size of 4096 is considered
1101 * assuming that all these fit with in the limit.Please take
1102 * a call on the limit based on the data requirements on
1103 * interface statistics.
1104 */
1105 vendor_event = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
1106 LL_STATS_EVENT_BUF_SIZE + NLMSG_HDRLEN,
1107 QCA_NL80211_VENDOR_SUBCMD_LL_IFACE_STATS_INDEX,
1108 GFP_KERNEL);
1109 if (!vendor_event)
1110 {
1111 hddLog(VOS_TRACE_LEVEL_ERROR,
1112 FL("cfg80211_vendor_event_alloc failed") );
1113 return;
1114 }
1115
1116 pWifiIfaceStat = (tpSirWifiIfaceStat) pData;
1117
1118 hddLog(VOS_TRACE_LEVEL_INFO,
1119 "WMI_LINK_STATS_IFACE Data");
1120
1121 hddLog(VOS_TRACE_LEVEL_INFO,
1122 "LL_STATS_IFACE: "
1123 " Mode %u "
1124 " MAC %pM "
1125 " State %u "
1126 " Roaming %u "
1127 " capabilities 0x%x "
1128 " SSID %s "
1129 " BSSID %pM",
1130 pWifiIfaceStat->info.mode,
1131 pWifiIfaceStat->info.macAddr,
1132 pWifiIfaceStat->info.state,
1133 pWifiIfaceStat->info.roaming,
1134 pWifiIfaceStat->info.capabilities,
1135 pWifiIfaceStat->info.ssid,
1136 pWifiIfaceStat->info.bssid);
1137
1138 hddLog(VOS_TRACE_LEVEL_INFO,
1139 " AP country str: %c%c%c",
1140 pWifiIfaceStat->info.apCountryStr[0],
1141 pWifiIfaceStat->info.apCountryStr[1],
1142 pWifiIfaceStat->info.apCountryStr[2]);
1143
1144
1145 hddLog(VOS_TRACE_LEVEL_INFO,
1146 " Country Str Association: %c%c%c",
1147 pWifiIfaceStat->info.countryStr[0],
1148 pWifiIfaceStat->info.countryStr[1],
1149 pWifiIfaceStat->info.countryStr[2]);
1150
1151 hddLog(VOS_TRACE_LEVEL_INFO,
1152 " beaconRx %u "
1153 " mgmtRx %u "
1154 " mgmtActionRx %u "
1155 " mgmtActionTx %u "
1156 " rssiMgmt %u "
1157 " rssiData %u "
1158 " rssiAck %u",
1159 pWifiIfaceStat->beaconRx,
1160 pWifiIfaceStat->mgmtRx,
1161 pWifiIfaceStat->mgmtActionRx,
1162 pWifiIfaceStat->mgmtActionTx,
1163 pWifiIfaceStat->rssiMgmt,
1164 pWifiIfaceStat->rssiData,
1165 pWifiIfaceStat->rssiAck );
1166
1167
1168 {
1169 int i;
1170 for (i = 0 ; i < WIFI_AC_MAX; i ++)
1171 {
1172 hddLog(VOS_TRACE_LEVEL_INFO,
1173
1174 " %d) LL_STATS IFACE: "
1175 " ac: %u txMpdu: %u "
1176 " rxMpdu: %u txMcast: %u "
1177 " rxMcast: %u rxAmpdu: %u "
1178 " txAmpdu: %u mpduLost: %u "
1179 " retries: %u retriesShort: %u "
1180 " retriesLong: %u contentionTimeMin: %u "
1181 " contentionTimeMax: %u contentionTimeAvg: %u "
1182 " contentionNumSamples: %u",
1183 i,
1184 pWifiIfaceStat->AccessclassStats[i].ac,
1185 pWifiIfaceStat->AccessclassStats[i].txMpdu,
1186 pWifiIfaceStat->AccessclassStats[i].rxMpdu,
1187 pWifiIfaceStat->AccessclassStats[i].txMcast,
1188 pWifiIfaceStat->AccessclassStats[i].rxMcast,
1189 pWifiIfaceStat->AccessclassStats[i].rxAmpdu,
1190 pWifiIfaceStat->AccessclassStats[i].txAmpdu,
1191 pWifiIfaceStat->AccessclassStats[i].mpduLost,
1192 pWifiIfaceStat->AccessclassStats[i].retries,
1193 pWifiIfaceStat->
1194 AccessclassStats[i].retriesShort,
1195 pWifiIfaceStat->AccessclassStats[i].retriesLong,
1196 pWifiIfaceStat->
1197 AccessclassStats[i].contentionTimeMin,
1198 pWifiIfaceStat->
1199 AccessclassStats[i].contentionTimeMax,
1200 pWifiIfaceStat->
1201 AccessclassStats[i].contentionTimeAvg,
1202 pWifiIfaceStat->
1203 AccessclassStats[i].contentionNumSamples);
1204
1205 }
1206 }
1207
1208 if (FALSE == hdd_get_interface_info( pAdapter,
1209 &pWifiIfaceStat->info))
1210 {
1211 hddLog(VOS_TRACE_LEVEL_ERROR,
1212 FL("hdd_get_interface_info get fail") );
1213 kfree_skb(vendor_event);
1214 return;
1215 }
1216
1217 if (FALSE == put_wifi_iface_stats( pWifiIfaceStat,
1218 vendor_event))
1219 {
1220 hddLog(VOS_TRACE_LEVEL_ERROR,
1221 FL("put_wifi_iface_stats fail") );
1222 kfree_skb(vendor_event);
1223 return;
1224 }
1225 cfg80211_vendor_event(vendor_event, GFP_KERNEL);
1226}
1227
1228/*
1229 * hdd_link_layer_process_radio_stats () - This function is called after
1230 * receiving Link Layer Radio statistics from FW.This function converts
1231 * the firmware data to the NL data and sends the same to the kernel/upper
1232 * layers.
1233 */
1234static v_VOID_t hdd_link_layer_process_radio_stats(hdd_adapter_t *pAdapter,
1235 v_VOID_t *pData)
1236{
1237 int status, i;
1238 tpSirWifiRadioStat pWifiRadioStat;
1239 tpSirWifiChannelStats pWifiChannelStats;
1240 struct sk_buff *vendor_event;
1241 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
1242 struct nlattr *chList;
1243
1244 status = wlan_hdd_validate_context(pHddCtx);
1245 if (0 != status)
1246 {
1247 hddLog(VOS_TRACE_LEVEL_ERROR,
1248 FL("HDD context is not valid") );
1249 return;
1250 }
1251 pWifiRadioStat = (tpSirWifiRadioStat) pData;
1252
1253 hddLog(VOS_TRACE_LEVEL_INFO,
1254 "LL_STATS_RADIO"
1255 " radio is %d onTime is %u "
1256 " txTime is %u rxTime is %u "
1257 " onTimeScan is %u onTimeNbd is %u "
1258 " onTimeGscan is %u onTimeRoamScan is %u "
1259 " onTimePnoScan is %u onTimeHs20 is %u "
1260 " numChannels is %u",
1261 pWifiRadioStat->radio, pWifiRadioStat->onTime,
1262 pWifiRadioStat->txTime, pWifiRadioStat->rxTime,
1263 pWifiRadioStat->onTimeScan, pWifiRadioStat->onTimeNbd,
1264 pWifiRadioStat->onTimeGscan,
1265 pWifiRadioStat->onTimeRoamScan,
1266 pWifiRadioStat->onTimePnoScan,
1267 pWifiRadioStat->onTimeHs20,
1268 pWifiRadioStat->numChannels);
1269 /*
1270 * Allocate a size of 4096 for the Radio stats comprising
1271 * sizeof (tSirWifiRadioStat) + numChannels * sizeof
1272 * (tSirWifiChannelStats).Each channel data is put with an
1273 * NL attribute.The size of 4096 is considered assuming that
1274 * number of channels shall not exceed beyond 60 with the
1275 * sizeof (tSirWifiChannelStats) being 24 bytes.
1276 */
1277
1278 vendor_event = cfg80211_vendor_event_alloc(pHddCtx->wiphy,
1279 LL_STATS_EVENT_BUF_SIZE + NLMSG_HDRLEN ,
1280 QCA_NL80211_VENDOR_SUBCMD_LL_RADIO_STATS_INDEX,
1281 GFP_KERNEL);
1282
1283 if (!vendor_event)
1284 {
1285 hddLog(VOS_TRACE_LEVEL_ERROR,
1286 FL("cfg80211_vendor_event_alloc failed") );
1287 return;
1288 }
1289
1290 if (nla_put_u32(vendor_event,
1291 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ID,
1292 pWifiRadioStat->radio) ||
1293 nla_put_u32(vendor_event,
1294 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME,
1295 pWifiRadioStat->onTime) ||
1296 nla_put_u32(vendor_event,
1297 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_TX_TIME,
1298 pWifiRadioStat->txTime) ||
1299 nla_put_u32(vendor_event,
1300 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_RX_TIME,
1301 pWifiRadioStat->rxTime) ||
1302 nla_put_u32(vendor_event,
1303 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME_SCAN,
1304 pWifiRadioStat->onTimeScan) ||
1305 nla_put_u32(vendor_event,
1306 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME_NBD,
1307 pWifiRadioStat->onTimeNbd) ||
1308 nla_put_u32(vendor_event,
1309 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME_GSCAN,
1310 pWifiRadioStat->onTimeGscan)||
1311 nla_put_u32(vendor_event,
1312 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME_ROAM_SCAN,
1313 pWifiRadioStat->onTimeRoamScan) ||
1314 nla_put_u32(vendor_event,
1315 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME_PNO_SCAN,
1316 pWifiRadioStat->onTimePnoScan) ||
1317 nla_put_u32(vendor_event,
1318 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME_HS20,
1319 pWifiRadioStat->onTimeHs20) ||
1320 nla_put_u32(vendor_event,
1321 QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_NUM_CHANNELS,
1322 pWifiRadioStat->numChannels))
1323 {
1324 hddLog(VOS_TRACE_LEVEL_ERROR,
1325 FL("QCA_WLAN_VENDOR_ATTR put fail"));
1326 kfree_skb(vendor_event);
1327 return ;
1328 }
1329
1330 chList = nla_nest_start(vendor_event,
1331 QCA_WLAN_VENDOR_ATTR_LL_STATS_CH_INFO);
1332 for (i = 0; i < pWifiRadioStat->numChannels; i++)
1333 {
1334 struct nlattr *chInfo;
1335
1336 pWifiChannelStats = (tpSirWifiChannelStats) ((uint8*)
1337 pWifiRadioStat->channels +
1338 (i * sizeof(tSirWifiChannelStats)));
1339
1340 hddLog(VOS_TRACE_LEVEL_INFO,
1341 " %d) Channel Info"
1342 " width is %u "
1343 " CenterFreq %u "
1344 " CenterFreq0 %u "
1345 " CenterFreq1 %u "
1346 " onTime %u "
1347 " ccaBusyTime %u",
1348 i,
1349 pWifiChannelStats->channel.width,
1350 pWifiChannelStats->channel.centerFreq,
1351 pWifiChannelStats->channel.centerFreq0,
1352 pWifiChannelStats->channel.centerFreq1,
1353 pWifiChannelStats->onTime,
1354 pWifiChannelStats->ccaBusyTime);
1355
1356
1357 chInfo = nla_nest_start(vendor_event, i);
1358
1359 if (nla_put_u32(vendor_event,
1360 QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_INFO_WIDTH,
1361 pWifiChannelStats->channel.width) ||
1362 nla_put_u32(vendor_event,
1363 QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_INFO_CENTER_FREQ,
1364 pWifiChannelStats->channel.centerFreq) ||
1365 nla_put_u32(vendor_event,
1366 QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_INFO_CENTER_FREQ0,
1367 pWifiChannelStats->channel.centerFreq0) ||
1368 nla_put_u32(vendor_event,
1369 QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_INFO_CENTER_FREQ1,
1370 pWifiChannelStats->channel.centerFreq1) ||
1371 nla_put_u32(vendor_event,
1372 QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_ON_TIME,
1373 pWifiChannelStats->onTime) ||
1374 nla_put_u32(vendor_event,
1375 QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_CCA_BUSY_TIME,
1376 pWifiChannelStats->ccaBusyTime))
1377 {
1378 hddLog(VOS_TRACE_LEVEL_ERROR,
1379 FL("cfg80211_vendor_event_alloc failed") );
1380 kfree_skb(vendor_event);
1381 return ;
1382 }
1383 nla_nest_end(vendor_event, chInfo);
1384 }
1385 nla_nest_end(vendor_event, chList);
1386
1387 cfg80211_vendor_event(vendor_event, GFP_KERNEL);
1388 return;
1389}
1390
1391/*
1392 * hdd_link_layer_stats_ind_callback () - This function is called after
1393 * receiving Link Layer indications from FW.This callback converts the firmware
1394 * data to the NL data and send the same to the kernel/upper layers.
1395 */
1396static void hdd_link_layer_stats_ind_callback ( void *pCtx,
1397 int indType,
1398 void *pRsp )
1399{
1400 hdd_adapter_t *pAdapter = (hdd_adapter_t *)pCtx;
1401 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
1402 int status;
1403
1404 status = wlan_hdd_validate_context(pHddCtx);
1405
1406 if (0 != status)
1407 {
1408 hddLog(VOS_TRACE_LEVEL_ERROR,
1409 FL("HDD context is not valid"));
1410 return;
1411 }
1412
1413 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
1414 "%s: Link Layer Indication indType: %d", __func__, indType);
1415 switch (indType)
1416 {
1417 case SIR_HAL_LL_STATS_RESULTS_RSP:
1418 {
1419 tpSirLLStatsResults linkLayerStatsResults =
1420 (tpSirLLStatsResults)pRsp;
1421
1422
1423 hddLog(VOS_TRACE_LEVEL_INFO,
1424 FL("RESPONSE SIR_HAL_LL_STATS_RESULTS_RSP") );
1425 hddLog(VOS_TRACE_LEVEL_INFO,
1426 "LL_STATS RESULTS RESPONSE paramID = 0x%x",
1427 linkLayerStatsResults->paramId);
1428 hddLog(VOS_TRACE_LEVEL_INFO,
1429 "LL_STATS RESULTS RESPONSE ifaceId = %u",
1430 linkLayerStatsResults->ifaceId);
1431 hddLog(VOS_TRACE_LEVEL_INFO,
1432 "LL_STATS RESULTS RESPONSE respId = %u",
1433 linkLayerStatsResults->respId);
1434 hddLog(VOS_TRACE_LEVEL_INFO,
1435 "LL_STATS RESULTS RESPONSE moreResultToFollow = %u",
1436 linkLayerStatsResults->moreResultToFollow);
1437 hddLog(VOS_TRACE_LEVEL_INFO,
1438 "LL_STATS RESULTS RESPONSE result = %p",
1439 linkLayerStatsResults->result);
1440 if ( linkLayerStatsResults->paramId & WMI_LINK_STATS_RADIO )
1441 {
1442 hdd_link_layer_process_radio_stats(pAdapter,
1443 (v_VOID_t *)linkLayerStatsResults->result);
1444 }
1445 else if ( linkLayerStatsResults->paramId & WMI_LINK_STATS_IFACE )
1446 {
1447 hdd_link_layer_process_iface_stats(pAdapter,
1448 (v_VOID_t *)linkLayerStatsResults->result);
1449 }
1450 else if ( linkLayerStatsResults->paramId &
1451 WMI_LINK_STATS_ALL_PEER )
1452 {
1453 hdd_link_layer_process_peer_stats(pAdapter,
1454 (v_VOID_t *)linkLayerStatsResults->result);
1455 } /* WMI_LINK_STATS_ALL_PEER */
1456 else
1457 {
1458 hddLog(VOS_TRACE_LEVEL_ERROR,
1459 FL("INVALID LL_STATS_NOTIFY RESPONSE ***********"));
1460 }
1461
1462 break;
1463 }
1464 default:
1465 hddLog(VOS_TRACE_LEVEL_ERROR, "invalid event type %d", indType);
1466 break;
1467 }
1468 return;
1469}
1470
1471const struct
1472nla_policy
1473qca_wlan_vendor_ll_set_policy[QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_MAX +1] =
1474{
1475 [QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_CONFIG_MPDU_SIZE_THRESHOLD] =
1476 { .type = NLA_U32 },
1477 [QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_CONFIG_AGGRESSIVE_STATS_GATHERING] =
1478 { .type = NLA_U32 },
1479};
1480
1481static int wlan_hdd_cfg80211_ll_stats_set(struct wiphy *wiphy,
1482 struct wireless_dev *wdev,
1483 void *data,
1484 int data_len)
1485{
1486 int status;
1487 struct nlattr *tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_MAX + 1];
1488 tpSirLLStatsSetReq pLinkLayerStatsSetReq;
1489 struct net_device *dev = wdev->netdev;
1490 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
1491 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
1492
1493 status = wlan_hdd_validate_context(pHddCtx);
1494 if (0 != status)
1495 {
1496 hddLog(VOS_TRACE_LEVEL_ERROR,
1497 FL("HDD context is not valid"));
1498 return -EINVAL;
1499 }
1500
1501 if (NULL == pAdapter)
1502 {
1503 hddLog(VOS_TRACE_LEVEL_ERROR,
1504 FL("HDD adapter is Null"));
1505 return -ENODEV;
1506 }
1507
1508 if (nla_parse(tb_vendor, QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_MAX,
1509 (struct nlattr *)data,
1510 data_len, qca_wlan_vendor_ll_set_policy))
1511 {
1512 hddLog(VOS_TRACE_LEVEL_ERROR, FL() );
1513 return -EINVAL;
1514 }
1515 if (!tb_vendor
1516 [QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_CONFIG_MPDU_SIZE_THRESHOLD])
1517 {
1518 hddLog(VOS_TRACE_LEVEL_ERROR, FL("MPDU size Not present"));
1519 return -EINVAL;
1520 }
1521 if (!tb_vendor[
1522 QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_CONFIG_AGGRESSIVE_STATS_GATHERING])
1523 {
1524 hddLog(VOS_TRACE_LEVEL_ERROR, FL(" Stats Gathering Not Present"));
1525 return -EINVAL;
1526 }
1527 pLinkLayerStatsSetReq = vos_mem_malloc(sizeof(tSirLLStatsSetReq));
1528 if (NULL == pLinkLayerStatsSetReq)
1529 {
1530 hddLog(VOS_TRACE_LEVEL_ERROR,
1531 FL(" Unable to allocate memory to pLinkLayerStatsSetReq") );
1532 return -ENOMEM;
1533 }
1534 // Shall take the request Id if the Upper layers pass. 1 For now.
1535 pLinkLayerStatsSetReq->reqId = 1;
1536
1537 pLinkLayerStatsSetReq->mpduSizeThreshold =
1538 nla_get_u32(
1539 tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_CONFIG_MPDU_SIZE_THRESHOLD]);
1540
1541 pLinkLayerStatsSetReq->aggressiveStatisticsGathering =
1542 nla_get_u32(
1543 tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_CONFIG_AGGRESSIVE_STATS_GATHERING]);
1544
1545 /* staId 0 in Firmware is reserved for Broadcast/Multicast data.
1546 * Hence the interface staId start from 1. Hence the staId matching the
1547 * interface in the firmware is sessionId + 1.
1548 */
1549 pLinkLayerStatsSetReq->staId = pAdapter->sessionId + 1;
1550
1551
1552 hddLog(VOS_TRACE_LEVEL_INFO,
1553 "LL_STATS_SET reqId = %d",
1554 pLinkLayerStatsSetReq->reqId);
1555 hddLog(VOS_TRACE_LEVEL_INFO,
1556 "LL_STATS_SET staId = %d", pLinkLayerStatsSetReq->staId);
1557 hddLog(VOS_TRACE_LEVEL_INFO,
1558 "LL_STATS_SET mpduSizeThreshold = %d",
1559 pLinkLayerStatsSetReq->mpduSizeThreshold);
1560 hddLog(VOS_TRACE_LEVEL_INFO,
1561 "LL_STATS_SET aggressive Statistics Gathering = %d",
1562 pLinkLayerStatsSetReq->aggressiveStatisticsGathering);
1563
1564 if (eHAL_STATUS_SUCCESS != sme_SetLinkLayerStatsIndCB(
1565 pHddCtx->hHal,
1566 pAdapter->sessionId,
1567 hdd_link_layer_stats_ind_callback,
1568 pAdapter))
1569 {
1570 hddLog(VOS_TRACE_LEVEL_ERROR, "%s:"
1571 "sme_SetLinkLayerStatsIndCB Failed", __func__);
1572 vos_mem_free(pLinkLayerStatsSetReq);
1573 return -EINVAL;
1574
1575 }
1576 if (eHAL_STATUS_SUCCESS != sme_LLStatsSetReq( pHddCtx->hHal,
1577 pLinkLayerStatsSetReq))
1578 {
1579 hddLog(VOS_TRACE_LEVEL_ERROR, "%s:"
1580 "sme_LLStatsSetReq Failed", __func__);
1581 vos_mem_free(pLinkLayerStatsSetReq);
1582 return -EINVAL;
1583 }
1584
1585 pAdapter->isLinkLayerStatsSet = 1;
1586
1587 return 0;
1588}
1589
1590const struct
1591nla_policy
1592qca_wlan_vendor_ll_get_policy[QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_MAX +1] =
1593{
1594 /* Unsigned 32bit value provided by the caller issuing the GET stats
1595 * command. When reporting
1596 * the stats results, the driver uses the same value to indicate
1597 * which GET request the results
1598 * correspond to.
1599 */
1600 [QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_CONFIG_REQ_ID] = { .type = NLA_U32 },
1601
1602 /* Unsigned 32bit value . bit mask to identify what statistics are
1603 requested for retrieval */
1604 [QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_CONFIG_REQ_MASK] = { .type = NLA_U32 },
1605};
1606
1607static int wlan_hdd_cfg80211_ll_stats_get(struct wiphy *wiphy,
1608 struct wireless_dev *wdev,
1609 void *data,
1610 int data_len)
1611{
1612 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
1613 struct nlattr *tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_MAX + 1];
1614 tpSirLLStatsGetReq pLinkLayerStatsGetReq;
1615 struct net_device *dev = wdev->netdev;
1616 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
1617 int status;
1618
1619 status = wlan_hdd_validate_context(pHddCtx);
1620 if (0 != status)
1621 {
1622 hddLog(VOS_TRACE_LEVEL_ERROR,
1623 FL("HDD context is not valid"));
1624 return -EINVAL ;
1625 }
1626
1627 if (NULL == pAdapter)
1628 {
1629 hddLog(VOS_TRACE_LEVEL_FATAL,
1630 "%s: HDD adapter is Null", __func__);
1631 return -ENODEV;
1632 }
1633
1634 if (!pAdapter->isLinkLayerStatsSet)
1635 {
1636 hddLog(VOS_TRACE_LEVEL_FATAL,
1637 "%s: isLinkLayerStatsSet : %d",
1638 __func__, pAdapter->isLinkLayerStatsSet);
1639 return -EINVAL;
1640 }
1641
1642 if (nla_parse(tb_vendor, QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_MAX,
1643 (struct nlattr *)data,
1644 data_len, qca_wlan_vendor_ll_get_policy))
1645 {
1646 hddLog(VOS_TRACE_LEVEL_ERROR, FL() );
1647 return -EINVAL;
1648 }
1649
1650 if (!tb_vendor
1651 [QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_CONFIG_REQ_ID])
1652 {
1653 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Request Id Not present"));
1654 return -EINVAL;
1655 }
1656
1657 if (!tb_vendor
1658 [QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_CONFIG_REQ_MASK])
1659 {
1660 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Req Mask Not present"));
1661 return -EINVAL;
1662 }
1663
1664 pLinkLayerStatsGetReq = vos_mem_malloc(sizeof(tSirLLStatsGetReq));
1665
1666 if (NULL == pLinkLayerStatsGetReq)
1667 {
1668 hddLog(VOS_TRACE_LEVEL_ERROR,
1669 FL("Unable to allocate memory to pLinkLayerStatsGetReq"));
1670 return -ENOMEM;
1671 }
1672
1673 pLinkLayerStatsGetReq->reqId =
1674 nla_get_u32( tb_vendor[
1675 QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_CONFIG_REQ_ID]);
1676 pLinkLayerStatsGetReq->paramIdMask =
1677 nla_get_u32( tb_vendor[
1678 QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_CONFIG_REQ_MASK]);
1679
1680 /* staId 0 in Firmware is reserved for Broadcast/Multicast data.
1681 * Hence the interface staId start from 1. Hence the staId matching the
1682 * interface in the firmware is sessionId + 1.
1683 */
1684 pLinkLayerStatsGetReq->staId = pAdapter->sessionId + 1;
1685
1686 hddLog(VOS_TRACE_LEVEL_INFO,
1687 "LL_STATS_GET reqId = %d", pLinkLayerStatsGetReq->reqId);
1688 hddLog(VOS_TRACE_LEVEL_INFO,
1689 "LL_STATS_GET staId = %d", pLinkLayerStatsGetReq->staId);
1690 hddLog(VOS_TRACE_LEVEL_INFO,
1691 "LL_STATS_GET paramIdMask = %d",
1692 pLinkLayerStatsGetReq->paramIdMask);
1693
1694 if (eHAL_STATUS_SUCCESS != sme_LLStatsGetReq( pHddCtx->hHal,
1695 pLinkLayerStatsGetReq))
1696 {
1697 hddLog(VOS_TRACE_LEVEL_ERROR, "%s:"
1698 "sme_LLStatsGetReq Failed", __func__);
1699 vos_mem_free(pLinkLayerStatsGetReq);
1700 return -EINVAL;
1701 }
1702 return 0;
1703}
1704
1705const struct
1706nla_policy
1707qca_wlan_vendor_ll_clr_policy[QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_MAX +1] =
1708{
1709 [QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_REQ_MASK] = {.type = NLA_U32 },
1710 [QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_STOP_REQ] = {.type = NLA_U8 },
1711 [QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_RSP_MASK] = {.type = NLA_U32 },
1712 [QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_STOP_RSP] = {.type = NLA_U8 },
1713};
1714
1715static int wlan_hdd_cfg80211_ll_stats_clear(struct wiphy *wiphy,
1716 struct wireless_dev *wdev,
1717 void *data,
1718 int data_len)
1719{
1720 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
1721 struct nlattr *tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_MAX + 1];
1722 tpSirLLStatsClearReq pLinkLayerStatsClearReq;
1723 struct net_device *dev = wdev->netdev;
1724 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
1725 u32 statsClearReqMask;
1726 u8 stopReq;
1727 int status;
1728
1729 status = wlan_hdd_validate_context(pHddCtx);
1730 if (0 != status)
1731 {
1732 hddLog(VOS_TRACE_LEVEL_ERROR,
1733 FL("HDD context is not valid"));
1734 return -EINVAL;
1735 }
1736
1737 if (NULL == pAdapter)
1738 {
1739 hddLog(VOS_TRACE_LEVEL_FATAL,
1740 "%s: HDD adapter is Null", __func__);
1741 return -ENODEV;
1742 }
1743
1744 if (!pAdapter->isLinkLayerStatsSet)
1745 {
1746 hddLog(VOS_TRACE_LEVEL_FATAL,
1747 "%s: isLinkLayerStatsSet : %d",
1748 __func__, pAdapter->isLinkLayerStatsSet);
1749 return -EINVAL;
1750 }
1751
1752 if (nla_parse(tb_vendor, QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_MAX,
1753 (struct nlattr *)data,
1754 data_len, qca_wlan_vendor_ll_clr_policy))
1755 {
1756 hddLog(VOS_TRACE_LEVEL_ERROR, FL() );
1757 return -EINVAL;
1758 }
1759
1760 if (!tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_REQ_MASK] ||
1761
1762 !tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_STOP_REQ])
1763 {
1764 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Error in LL_STATS CLR CONFIG PARA") );
1765 return -EINVAL;
1766
1767 }
1768
1769 pLinkLayerStatsClearReq = vos_mem_malloc(sizeof(tSirLLStatsClearReq));
1770 if (NULL == pLinkLayerStatsClearReq)
1771 {
1772 hddLog(VOS_TRACE_LEVEL_ERROR,
1773 FL("Unable to allocate memory to pLinkLayerStatsClearReq"));
1774 return -ENOMEM;
1775 }
1776
1777 statsClearReqMask = pLinkLayerStatsClearReq->statsClearReqMask =
1778 nla_get_u32(
1779 tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_REQ_MASK]);
1780
1781 stopReq = pLinkLayerStatsClearReq->stopReq =
1782 nla_get_u8(
1783 tb_vendor[QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_STOP_REQ]);
1784
1785 // Shall take the request Id if the Upper layers pass. 1 For now.
1786 pLinkLayerStatsClearReq->reqId = 1;
1787
1788 /* staId 0 in Firmware is reserved for Broadcast/Multicast data.
1789 * Hence the interface staId start from 1. Hence the staId matching the
1790 * interface in the firmware is sessionId + 1.
1791 */
1792 pLinkLayerStatsClearReq->staId = pAdapter->sessionId + 1;
1793
1794 hddLog(VOS_TRACE_LEVEL_INFO,
1795 "LL_STATS_CLEAR reqId = %d", pLinkLayerStatsClearReq->reqId);
1796 hddLog(VOS_TRACE_LEVEL_INFO,
1797 "LL_STATS_CLEAR staId = %d", pLinkLayerStatsClearReq->staId);
1798 hddLog(VOS_TRACE_LEVEL_INFO,
1799 "LL_STATS_CLEAR statsClearReqMask = 0x%X",
1800 pLinkLayerStatsClearReq->statsClearReqMask);
1801 hddLog(VOS_TRACE_LEVEL_INFO,
1802 "LL_STATS_CLEAR stopReq = %d",
1803 pLinkLayerStatsClearReq->stopReq);
1804
1805 if (eHAL_STATUS_SUCCESS == sme_LLStatsClearReq(pHddCtx->hHal,
1806 pLinkLayerStatsClearReq))
1807 {
1808 struct sk_buff *temp_skbuff;
1809 temp_skbuff = cfg80211_vendor_cmd_alloc_reply_skb(wiphy,
1810 2 * sizeof(u32) +
1811 NLMSG_HDRLEN);
1812
1813 if (temp_skbuff != NULL)
1814 {
1815
1816 if (nla_put_u32(temp_skbuff,
1817 QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_RSP_MASK,
1818 statsClearReqMask) ||
1819 nla_put_u32(temp_skbuff,
1820 QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_STOP_RSP,
1821 stopReq))
1822 {
1823 hddLog(VOS_TRACE_LEVEL_ERROR, FL("LL_STATS_CLR put fail"));
1824 kfree_skb(temp_skbuff);
1825 return -EINVAL;
1826 }
1827 /* If the ask is to stop the stats collection as part of clear
1828 * (stopReq = 1) , ensure that no further requests of get
1829 * go to the firmware by having isLinkLayerStatsSet set to 0.
1830 * However it the stopReq as part of the clear request is 0 ,
1831 * the request to get the statistics are ehonoured as in this
1832 * case the firmware is just asked to clear the statistics.
1833 */
1834 if (pLinkLayerStatsClearReq->stopReq == 1)
1835 pAdapter->isLinkLayerStatsSet = 0;
1836 return cfg80211_vendor_cmd_reply(temp_skbuff);
1837 }
1838 return -ENOMEM;
1839 }
1840 vos_mem_free(pLinkLayerStatsClearReq);
1841 return -EINVAL;
1842}
1843#endif /* WLAN_FEATURE_LINK_LAYER_STATS */
1844
1845const struct wiphy_vendor_command hdd_wiphy_vendor_commands[] =
1846{
1847#ifdef WLAN_FEATURE_LINK_LAYER_STATS
1848 {
1849 .info.vendor_id = QCA_NL80211_VENDOR_ID,
1850 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_CLR,
1851 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
1852 WIPHY_VENDOR_CMD_NEED_NETDEV |
1853 WIPHY_VENDOR_CMD_NEED_RUNNING,
1854 .doit = wlan_hdd_cfg80211_ll_stats_clear
1855 },
1856
1857 {
1858 .info.vendor_id = QCA_NL80211_VENDOR_ID,
1859 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_SET,
1860 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
1861 WIPHY_VENDOR_CMD_NEED_NETDEV |
1862 WIPHY_VENDOR_CMD_NEED_RUNNING,
1863 .doit = wlan_hdd_cfg80211_ll_stats_set
1864 },
1865
1866 {
1867 .info.vendor_id = QCA_NL80211_VENDOR_ID,
1868 .info.subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_GET,
1869 .flags = WIPHY_VENDOR_CMD_NEED_WDEV |
1870 WIPHY_VENDOR_CMD_NEED_NETDEV |
1871 WIPHY_VENDOR_CMD_NEED_RUNNING,
1872 .doit = wlan_hdd_cfg80211_ll_stats_get
1873 }
1874#endif /* WLAN_FEATURE_LINK_LAYER_STATS */
1875};
1876
Rajesh Chauhan98a31f82014-01-06 20:15:25 -08001877/* vendor specific events */
Sunil Duttc69bccb2014-05-26 21:30:20 +05301878static const
1879struct nl80211_vendor_cmd_info wlan_hdd_cfg80211_vendor_events[] =
Rajesh Chauhan98a31f82014-01-06 20:15:25 -08001880{
1881#ifdef FEATURE_WLAN_CH_AVOID
1882 {
Sunil Duttc69bccb2014-05-26 21:30:20 +05301883 .vendor_id = QCA_NL80211_VENDOR_ID,
1884 .subcmd = QCA_NL80211_VENDOR_SUBCMD_AVOID_FREQUENCY
Rajesh Chauhan98a31f82014-01-06 20:15:25 -08001885 },
Sunil Duttc69bccb2014-05-26 21:30:20 +05301886#endif /* FEATURE_WLAN_CH_AVOID Index = 0*/
1887#ifdef WLAN_FEATURE_LINK_LAYER_STATS
1888 {
1889 /* Index = 1*/
1890 .vendor_id = QCA_NL80211_VENDOR_ID,
1891 .subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_SET
1892 },
1893 {
1894 /* Index = 2*/
1895 .vendor_id = QCA_NL80211_VENDOR_ID,
1896 .subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_GET
1897 },
1898 {
1899 /* Index = 3*/
1900 .vendor_id = QCA_NL80211_VENDOR_ID,
1901 .subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_CLR
1902 },
1903 {
1904 /* Index = 4*/
1905 .vendor_id = QCA_NL80211_VENDOR_ID,
1906 .subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_RADIO_RESULTS
1907 },
1908 {
1909 /* Index = 5*/
1910 .vendor_id = QCA_NL80211_VENDOR_ID,
1911 .subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_IFACE_RESULTS
1912 },
1913 {
1914 /* Index = 6*/
1915 .vendor_id = QCA_NL80211_VENDOR_ID,
1916 .subcmd = QCA_NL80211_VENDOR_SUBCMD_LL_STATS_PEERS_RESULTS
1917 },
1918#endif /* WLAN_FEATURE_LINK_LAYER_STATS */
1919
Rajesh Chauhan98a31f82014-01-06 20:15:25 -08001920};
1921
Jeff Johnson295189b2012-06-20 16:38:30 -07001922/*
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05301923 * FUNCTION: wlan_hdd_cfg80211_wiphy_alloc
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301924 * This function is called by hdd_wlan_startup()
1925 * during initialization.
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05301926 * This function is used to allocate wiphy structure.
Jeff Johnson295189b2012-06-20 16:38:30 -07001927 */
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05301928struct wiphy *wlan_hdd_cfg80211_wiphy_alloc(int priv_size)
Jeff Johnson295189b2012-06-20 16:38:30 -07001929{
1930 struct wiphy *wiphy;
1931 ENTER();
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301932 /*
1933 * Create wiphy device
Jeff Johnson295189b2012-06-20 16:38:30 -07001934 */
1935 wiphy = wiphy_new(&wlan_hdd_cfg80211_ops, priv_size);
1936
1937 if (!wiphy)
1938 {
1939 /* Print error and jump into err label and free the memory */
1940 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: wiphy init failed", __func__);
1941 return NULL;
1942 }
1943
Sunil Duttc69bccb2014-05-26 21:30:20 +05301944
Jeff Johnson295189b2012-06-20 16:38:30 -07001945 return wiphy;
1946}
1947
1948/*
1949 * FUNCTION: wlan_hdd_cfg80211_update_band
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301950 * This function is called from the supplicant through a
Jeff Johnson295189b2012-06-20 16:38:30 -07001951 * private ioctl to change the band value
1952 */
1953int wlan_hdd_cfg80211_update_band(struct wiphy *wiphy, eCsrBand eBand)
1954{
Gopichand Nakkala1f7a64f2013-04-01 18:37:17 +05301955 int i, j;
1956 eNVChannelEnabledType channelEnabledState;
1957
Jeff Johnsone7245742012-09-05 17:12:55 -07001958 ENTER();
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05301959
Gopichand Nakkala1f7a64f2013-04-01 18:37:17 +05301960 for (i = 0; i < IEEE80211_NUM_BANDS; i++)
Jeff Johnson295189b2012-06-20 16:38:30 -07001961 {
Gopichand Nakkala1f7a64f2013-04-01 18:37:17 +05301962
1963 if (NULL == wiphy->bands[i])
1964 {
1965 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: wiphy->bands[i] is NULL, i = %d",
1966 __func__, i);
1967 continue;
1968 }
1969
1970 for (j = 0; j < wiphy->bands[i]->n_channels; j++)
1971 {
1972 struct ieee80211_supported_band *band = wiphy->bands[i];
1973
1974 channelEnabledState = vos_nv_getChannelEnabledState(
1975 band->channels[j].hw_value);
1976
1977 if (IEEE80211_BAND_2GHZ == i && eCSR_BAND_5G == eBand) // 5G only
1978 {
1979 // Enable Social channels for P2P
1980 if (WLAN_HDD_IS_SOCIAL_CHANNEL(band->channels[j].center_freq) &&
1981 NV_CHANNEL_ENABLE == channelEnabledState)
1982 band->channels[j].flags &= ~IEEE80211_CHAN_DISABLED;
1983 else
1984 band->channels[j].flags |= IEEE80211_CHAN_DISABLED;
1985 continue;
1986 }
1987 else if (IEEE80211_BAND_5GHZ == i && eCSR_BAND_24 == eBand) // 2G only
1988 {
1989 band->channels[j].flags |= IEEE80211_CHAN_DISABLED;
1990 continue;
1991 }
1992
1993 if (NV_CHANNEL_DISABLE == channelEnabledState ||
1994 NV_CHANNEL_INVALID == channelEnabledState)
1995 {
1996 band->channels[j].flags |= IEEE80211_CHAN_DISABLED;
1997 }
1998 else if (NV_CHANNEL_DFS == channelEnabledState)
1999 {
2000 band->channels[j].flags &= ~IEEE80211_CHAN_DISABLED;
2001 band->channels[j].flags |= IEEE80211_CHAN_RADAR;
2002 }
2003 else
2004 {
2005 band->channels[j].flags &= ~(IEEE80211_CHAN_DISABLED
2006 |IEEE80211_CHAN_RADAR);
2007 }
2008 }
Jeff Johnson295189b2012-06-20 16:38:30 -07002009 }
2010 return 0;
2011}
2012/*
2013 * FUNCTION: wlan_hdd_cfg80211_init
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302014 * This function is called by hdd_wlan_startup()
2015 * during initialization.
Jeff Johnson295189b2012-06-20 16:38:30 -07002016 * This function is used to initialize and register wiphy structure.
2017 */
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05302018int wlan_hdd_cfg80211_init(struct device *dev,
Jeff Johnson295189b2012-06-20 16:38:30 -07002019 struct wiphy *wiphy,
2020 hdd_config_t *pCfg
2021 )
2022{
Gopichand Nakkala1f7a64f2013-04-01 18:37:17 +05302023 int i, j;
Vinay Krishna Erannafacf5e22014-02-24 13:16:25 +05302024 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
2025
Jeff Johnsone7245742012-09-05 17:12:55 -07002026 ENTER();
2027
Jeff Johnson295189b2012-06-20 16:38:30 -07002028 /* Now bind the underlying wlan device with wiphy */
2029 set_wiphy_dev(wiphy, dev);
2030
2031 wiphy->mgmt_stypes = wlan_hdd_txrx_stypes;
Amar Singhalfddc28c2013-09-05 13:03:40 -07002032
Kiet Lam6c583332013-10-14 05:37:09 +05302033#ifndef CONFIG_ENABLE_LINUX_REG
Amar Singhal0a402232013-10-11 20:57:16 -07002034 /* the flag for the other case would be initialzed in
2035 vos_init_wiphy_from_nv_bin */
Amar Singhal0a402232013-10-11 20:57:16 -07002036 wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY;
Kiet Lam6c583332013-10-14 05:37:09 +05302037#endif
Amar Singhala49cbc52013-10-08 18:37:44 -07002038
Amar Singhalfddc28c2013-09-05 13:03:40 -07002039 /* This will disable updating of NL channels from passive to
2040 * active if a beacon is received on passive channel. */
2041 wiphy->flags |= WIPHY_FLAG_DISABLE_BEACON_HINTS;
Amar Singhalf0073192013-09-20 12:34:56 -07002042
Amar Singhalfddc28c2013-09-05 13:03:40 -07002043
Amar Singhala49cbc52013-10-08 18:37:44 -07002044
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002045#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
Madan Mohan Koyyalamudi1b4afb02012-10-22 15:25:16 -07002046 wiphy->flags |= WIPHY_FLAG_HAVE_AP_SME
2047 | WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD
2048 | WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL
Jeff Johnsone7245742012-09-05 17:12:55 -07002049 | WIPHY_FLAG_OFFCHAN_TX;
Kiet Lam6c583332013-10-14 05:37:09 +05302050 wiphy->country_ie_pref = NL80211_COUNTRY_IE_IGNORE_CORE;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002051#endif
Amar Singhala49cbc52013-10-08 18:37:44 -07002052
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08002053#if defined (WLAN_FEATURE_VOWIFI_11R) || defined (FEATURE_WLAN_ESE) || defined(FEATURE_WLAN_LFR)
Srinivas Girigowda640728a2013-03-28 12:21:54 -07002054 if (pCfg->isFastTransitionEnabled
James Zmuda77fb5ae2013-01-29 08:00:17 -08002055#ifdef FEATURE_WLAN_LFR
Srinivas Girigowda640728a2013-03-28 12:21:54 -07002056 || pCfg->isFastRoamIniFeatureEnabled
2057#endif
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08002058#ifdef FEATURE_WLAN_ESE
2059 || pCfg->isEseIniFeatureEnabled
Srinivas Girigowda640728a2013-03-28 12:21:54 -07002060#endif
2061 )
2062 {
2063 wiphy->flags |= WIPHY_FLAG_SUPPORTS_FW_ROAM;
2064 }
James Zmuda77fb5ae2013-01-29 08:00:17 -08002065#endif
Mohit Khanna698ba2a2012-12-04 15:08:18 -08002066#ifdef FEATURE_WLAN_TDLS
2067 wiphy->flags |= WIPHY_FLAG_SUPPORTS_TDLS
2068 | WIPHY_FLAG_TDLS_EXTERNAL_SETUP;
2069#endif
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05302070#ifdef FEATURE_WLAN_SCAN_PNO
Hardik Kantilal Patel3dfd8792013-11-13 20:34:57 +05302071 if (pCfg->configPNOScanSupport)
2072 {
2073 wiphy->flags |= WIPHY_FLAG_SUPPORTS_SCHED_SCAN;
2074 wiphy->max_sched_scan_ssids = SIR_PNO_MAX_SUPP_NETWORKS;
2075 wiphy->max_match_sets = SIR_PNO_MAX_SUPP_NETWORKS;
2076 wiphy->max_sched_scan_ie_len = SIR_MAC_MAX_IE_LENGTH;
2077 }
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05302078#endif/*FEATURE_WLAN_SCAN_PNO*/
Mohit Khanna698ba2a2012-12-04 15:08:18 -08002079
Amar Singhalfddc28c2013-09-05 13:03:40 -07002080#ifdef CONFIG_ENABLE_LINUX_REG
Madan Mohan Koyyalamudic3a240c2012-09-28 15:34:08 -07002081 /* even with WIPHY_FLAG_CUSTOM_REGULATORY,
2082 driver can still register regulatory callback and
Amar Singhalfddc28c2013-09-05 13:03:40 -07002083 it will get regulatory settings in wiphy->band[], but
Madan Mohan Koyyalamudic3a240c2012-09-28 15:34:08 -07002084 driver need to determine what to do with both
2085 regulatory settings */
Amar Singhalfddc28c2013-09-05 13:03:40 -07002086
2087 wiphy->reg_notifier = wlan_hdd_linux_reg_notifier;
Amar Singhala49cbc52013-10-08 18:37:44 -07002088#else
2089 wiphy->reg_notifier = wlan_hdd_crda_reg_notifier;
Amar Singhalfddc28c2013-09-05 13:03:40 -07002090#endif
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002091
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302092 wiphy->max_scan_ssids = MAX_SCAN_SSID;
2093
Madan Mohan Koyyalamudi6815b162013-07-19 17:17:46 +05302094 wiphy->max_scan_ie_len = SIR_MAC_MAX_IE_LENGTH;
Jeff Johnson295189b2012-06-20 16:38:30 -07002095
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05302096 wiphy->max_acl_mac_addrs = MAX_ACL_MAC_ADDRESS;
2097
Jeff Johnson295189b2012-06-20 16:38:30 -07002098 /* Supports STATION & AD-HOC modes right now */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302099 wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION)
Jeff Johnson295189b2012-06-20 16:38:30 -07002100 | BIT(NL80211_IFTYPE_ADHOC)
Jeff Johnson295189b2012-06-20 16:38:30 -07002101 | BIT(NL80211_IFTYPE_P2P_CLIENT)
2102 | BIT(NL80211_IFTYPE_P2P_GO)
Jeff Johnson295189b2012-06-20 16:38:30 -07002103 | BIT(NL80211_IFTYPE_AP);
2104
Rashmi Ramannabd3feb72014-02-25 16:14:48 +05302105 if( pCfg->advertiseConcurrentOperation )
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -08002106 {
Rashmi Ramannabd3feb72014-02-25 16:14:48 +05302107#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
2108 if( pCfg->enableMCC )
2109 {
2110 /* Currently, supports up to two channels */
2111 wlan_hdd_iface_combination.num_different_channels = 2;
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -08002112
Rashmi Ramannabd3feb72014-02-25 16:14:48 +05302113 if( !pCfg->allowMCCGODiffBI )
2114 wlan_hdd_iface_combination.beacon_int_infra_match = true;
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -08002115
Rashmi Ramannabd3feb72014-02-25 16:14:48 +05302116 }
2117 wiphy->iface_combinations = &wlan_hdd_iface_combination;
2118 wiphy->n_iface_combinations = 1;
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -08002119#endif
Rashmi Ramannabd3feb72014-02-25 16:14:48 +05302120 }
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -08002121
Jeff Johnson295189b2012-06-20 16:38:30 -07002122 /* Before registering we need to update the ht capabilitied based
2123 * on ini values*/
2124 if( !pCfg->ShortGI20MhzEnable )
2125 {
2126 wlan_hdd_band_2_4_GHZ.ht_cap.cap &= ~IEEE80211_HT_CAP_SGI_20;
2127 wlan_hdd_band_5_GHZ.ht_cap.cap &= ~IEEE80211_HT_CAP_SGI_20;
2128 wlan_hdd_band_p2p_2_4_GHZ.ht_cap.cap &= ~IEEE80211_HT_CAP_SGI_20;
2129 }
2130
2131 if( !pCfg->ShortGI40MhzEnable )
2132 {
2133 wlan_hdd_band_5_GHZ.ht_cap.cap &= ~IEEE80211_HT_CAP_SGI_40;
2134 }
2135
2136 if( !pCfg->nChannelBondingMode5GHz )
2137 {
2138 wlan_hdd_band_5_GHZ.ht_cap.cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
2139 }
2140
Gopichand Nakkala1f7a64f2013-04-01 18:37:17 +05302141 wiphy->bands[IEEE80211_BAND_2GHZ] = &wlan_hdd_band_2_4_GHZ;
Vinay Krishna Erannafacf5e22014-02-24 13:16:25 +05302142 if (true == hdd_is_5g_supported(pHddCtx))
2143 {
2144 wiphy->bands[IEEE80211_BAND_5GHZ] = &wlan_hdd_band_5_GHZ;
2145 }
Gopichand Nakkala1f7a64f2013-04-01 18:37:17 +05302146
2147 for (i = 0; i < IEEE80211_NUM_BANDS; i++)
2148 {
2149
2150 if (NULL == wiphy->bands[i])
2151 {
2152 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: wiphy->bands[i] is NULL, i = %d",
2153 __func__, i);
2154 continue;
2155 }
2156
2157 for (j = 0; j < wiphy->bands[i]->n_channels; j++)
2158 {
2159 struct ieee80211_supported_band *band = wiphy->bands[i];
2160
2161 if (IEEE80211_BAND_2GHZ == i && eCSR_BAND_5G == pCfg->nBandCapability) // 5G only
2162 {
2163 // Enable social channels for P2P
2164 if (WLAN_HDD_IS_SOCIAL_CHANNEL(band->channels[j].center_freq))
2165 band->channels[j].flags &= ~IEEE80211_CHAN_DISABLED;
2166 else
2167 band->channels[j].flags |= IEEE80211_CHAN_DISABLED;
2168 continue;
2169 }
2170 else if (IEEE80211_BAND_5GHZ == i && eCSR_BAND_24 == pCfg->nBandCapability) // 2G only
2171 {
2172 band->channels[j].flags |= IEEE80211_CHAN_DISABLED;
2173 continue;
2174 }
2175 }
Jeff Johnson295189b2012-06-20 16:38:30 -07002176 }
2177 /*Initialise the supported cipher suite details*/
2178 wiphy->cipher_suites = hdd_cipher_suites;
2179 wiphy->n_cipher_suites = ARRAY_SIZE(hdd_cipher_suites);
2180
2181 /*signal strength in mBm (100*dBm) */
2182 wiphy->signal_type = CFG80211_SIGNAL_TYPE_MBM;
2183
2184#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
Jeff Johnson295189b2012-06-20 16:38:30 -07002185 wiphy->max_remain_on_channel_duration = 1000;
2186#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07002187
Sunil Duttc69bccb2014-05-26 21:30:20 +05302188 wiphy->n_vendor_commands = ARRAY_SIZE(hdd_wiphy_vendor_commands);
2189 wiphy->vendor_commands = hdd_wiphy_vendor_commands;
Rajesh Chauhan98a31f82014-01-06 20:15:25 -08002190 wiphy->vendor_events = wlan_hdd_cfg80211_vendor_events;
2191 wiphy->n_vendor_events = ARRAY_SIZE(wlan_hdd_cfg80211_vendor_events);
2192
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05302193 EXIT();
2194 return 0;
2195}
2196
2197/* In this function we are registering wiphy. */
2198int wlan_hdd_cfg80211_register(struct wiphy *wiphy)
2199{
2200 ENTER();
2201 /* Register our wiphy dev with cfg80211 */
Jeff Johnson295189b2012-06-20 16:38:30 -07002202 if (0 > wiphy_register(wiphy))
2203 {
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05302204 /* print error */
Jeff Johnson295189b2012-06-20 16:38:30 -07002205 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: wiphy register failed", __func__);
2206 return -EIO;
2207 }
2208
2209 EXIT();
2210 return 0;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302211}
Jeff Johnson295189b2012-06-20 16:38:30 -07002212
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05302213/* In this function we are updating channel list when,
2214 regulatory domain is FCC and country code is US.
2215 Here In FCC standard 5GHz UNII-1 Bands are indoor only.
2216 As per FCC smart phone is not a indoor device.
2217 GO should not opeate on indoor channels */
2218void wlan_hdd_cfg80211_update_reg_info(struct wiphy *wiphy)
2219{
2220 int j;
2221 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
2222 tANI_U8 defaultCountryCode[3] = SME_INVALID_COUNTRY_CODE;
2223 //Default counrtycode from NV at the time of wiphy initialization.
2224 if (eHAL_STATUS_SUCCESS != sme_GetDefaultCountryCodeFrmNv(pHddCtx->hHal,
2225 &defaultCountryCode[0]))
2226 {
Jeff Johnson0299d0a2013-10-30 12:37:43 -07002227 hddLog(LOGE, FL("Failed to get default country code from NV"));
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05302228 }
2229 if ((defaultCountryCode[0]== 'U') && (defaultCountryCode[1]=='S'))
2230 {
Madan Mohan Koyyalamudi71278262013-04-12 22:00:48 +05302231 if (NULL == wiphy->bands[IEEE80211_BAND_5GHZ])
2232 {
2233 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: wiphy->bands[IEEE80211_BAND_5GHZ] is NULL",__func__ );
2234 return;
2235 }
2236 for (j = 0; j < wiphy->bands[IEEE80211_BAND_5GHZ]->n_channels; j++)
2237 {
2238 struct ieee80211_supported_band *band = wiphy->bands[IEEE80211_BAND_5GHZ];
2239 // Mark UNII -1 band channel as passive
2240 if (WLAN_HDD_CHANNEL_IN_UNII_1_BAND(band->channels[j].center_freq))
2241 band->channels[j].flags |= IEEE80211_CHAN_PASSIVE_SCAN;
2242 }
2243 }
2244}
2245
Agarwal Ashish8fa0e9a2014-05-23 00:40:12 +05302246/* This function registers for all frame which supplicant is interested in */
2247void wlan_hdd_cfg80211_register_frames(hdd_adapter_t* pAdapter)
Jeff Johnson295189b2012-06-20 16:38:30 -07002248{
Jeff Johnson295189b2012-06-20 16:38:30 -07002249 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
2250 /* Register for all P2P action, public action etc frames */
2251 v_U16_t type = (SIR_MAC_MGMT_FRAME << 2) | ( SIR_MAC_MGMT_ACTION << 4);
2252
Jeff Johnsone7245742012-09-05 17:12:55 -07002253 ENTER();
2254
Jeff Johnson295189b2012-06-20 16:38:30 -07002255 /* Right now we are registering these frame when driver is getting
2256 initialized. Once we will move to 2.6.37 kernel, in which we have
2257 frame register ops, we will move this code as a part of that */
2258 /* GAS Initial Request */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302259 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
Jeff Johnson295189b2012-06-20 16:38:30 -07002260 (v_U8_t*)GAS_INITIAL_REQ, GAS_INITIAL_REQ_SIZE );
2261
2262 /* GAS Initial Response */
2263 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
2264 (v_U8_t*)GAS_INITIAL_RSP, GAS_INITIAL_RSP_SIZE );
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302265
Jeff Johnson295189b2012-06-20 16:38:30 -07002266 /* GAS Comeback Request */
2267 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
2268 (v_U8_t*)GAS_COMEBACK_REQ, GAS_COMEBACK_REQ_SIZE );
2269
2270 /* GAS Comeback Response */
2271 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
2272 (v_U8_t*)GAS_COMEBACK_RSP, GAS_COMEBACK_RSP_SIZE );
2273
2274 /* P2P Public Action */
2275 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302276 (v_U8_t*)P2P_PUBLIC_ACTION_FRAME,
Jeff Johnson295189b2012-06-20 16:38:30 -07002277 P2P_PUBLIC_ACTION_FRAME_SIZE );
2278
2279 /* P2P Action */
2280 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
2281 (v_U8_t*)P2P_ACTION_FRAME,
2282 P2P_ACTION_FRAME_SIZE );
Chet Lanctot186b5732013-03-18 10:26:30 -07002283
Gopichand Nakkalae3d56e72013-04-21 23:33:32 +05302284 /* WNM BSS Transition Request frame */
2285 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
2286 (v_U8_t*)WNM_BSS_ACTION_FRAME,
2287 WNM_BSS_ACTION_FRAME_SIZE );
Leela Venkata Kiran Kumar Reddy Chiralae8e62c82013-10-29 18:23:26 -07002288
2289 /* WNM-Notification */
2290 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
2291 (v_U8_t*)WNM_NOTIFICATION_FRAME,
2292 WNM_NOTIFICATION_FRAME_SIZE );
Jeff Johnson295189b2012-06-20 16:38:30 -07002293}
2294
Agarwal Ashish8fa0e9a2014-05-23 00:40:12 +05302295void wlan_hdd_cfg80211_deregister_frames(hdd_adapter_t* pAdapter)
Jeff Johnson295189b2012-06-20 16:38:30 -07002296{
Jeff Johnson295189b2012-06-20 16:38:30 -07002297 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
2298 /* Register for all P2P action, public action etc frames */
2299 v_U16_t type = (SIR_MAC_MGMT_FRAME << 2) | ( SIR_MAC_MGMT_ACTION << 4);
2300
Jeff Johnsone7245742012-09-05 17:12:55 -07002301 ENTER();
2302
Jeff Johnson295189b2012-06-20 16:38:30 -07002303 /* Right now we are registering these frame when driver is getting
2304 initialized. Once we will move to 2.6.37 kernel, in which we have
2305 frame register ops, we will move this code as a part of that */
2306 /* GAS Initial Request */
2307
2308 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
2309 (v_U8_t*)GAS_INITIAL_REQ, GAS_INITIAL_REQ_SIZE );
2310
2311 /* GAS Initial Response */
2312 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
2313 (v_U8_t*)GAS_INITIAL_RSP, GAS_INITIAL_RSP_SIZE );
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302314
Jeff Johnson295189b2012-06-20 16:38:30 -07002315 /* GAS Comeback Request */
2316 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
2317 (v_U8_t*)GAS_COMEBACK_REQ, GAS_COMEBACK_REQ_SIZE );
2318
2319 /* GAS Comeback Response */
2320 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
2321 (v_U8_t*)GAS_COMEBACK_RSP, GAS_COMEBACK_RSP_SIZE );
2322
2323 /* P2P Public Action */
2324 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302325 (v_U8_t*)P2P_PUBLIC_ACTION_FRAME,
Jeff Johnson295189b2012-06-20 16:38:30 -07002326 P2P_PUBLIC_ACTION_FRAME_SIZE );
2327
2328 /* P2P Action */
2329 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
2330 (v_U8_t*)P2P_ACTION_FRAME,
2331 P2P_ACTION_FRAME_SIZE );
Leela Venkata Kiran Kumar Reddy Chiralae8e62c82013-10-29 18:23:26 -07002332 /* WNM-Notification */
2333 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
2334 (v_U8_t*)WNM_NOTIFICATION_FRAME,
2335 WNM_NOTIFICATION_FRAME_SIZE );
Jeff Johnson295189b2012-06-20 16:38:30 -07002336}
2337
2338#ifdef FEATURE_WLAN_WAPI
2339void wlan_hdd_cfg80211_set_key_wapi(hdd_adapter_t* pAdapter, u8 key_index,
2340 const u8 *mac_addr, u8 *key , int key_Len)
2341{
2342 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
2343 tCsrRoamSetKey setKey;
2344 v_BOOL_t isConnected = TRUE;
2345 int status = 0;
2346 v_U32_t roamId= 0xFF;
2347 tANI_U8 *pKeyPtr = NULL;
2348 int n = 0;
2349
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05302350 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s(%d)",
2351 __func__, hdd_device_modetoString(pAdapter->device_mode),
2352 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07002353
Gopichand Nakkalae7480202013-02-11 15:24:22 +05302354 vos_mem_zero(&setKey, sizeof(tCsrRoamSetKey));
Jeff Johnson295189b2012-06-20 16:38:30 -07002355 setKey.keyId = key_index; // Store Key ID
2356 setKey.encType = eCSR_ENCRYPT_TYPE_WPI; // SET WAPI Encryption
2357 setKey.keyDirection = eSIR_TX_RX; // Key Directionn both TX and RX
2358 setKey.paeRole = 0 ; // the PAE role
2359 if (!mac_addr || is_broadcast_ether_addr(mac_addr))
2360 {
2361 vos_set_macaddr_broadcast( (v_MACADDR_t *)setKey.peerMac );
2362 }
2363 else
2364 {
2365 isConnected = hdd_connIsConnected(pHddStaCtx);
2366 vos_mem_copy(setKey.peerMac,&pHddStaCtx->conn_info.bssId,WNI_CFG_BSSID_LEN);
2367 }
2368 setKey.keyLength = key_Len;
2369 pKeyPtr = setKey.Key;
2370 memcpy( pKeyPtr, key, key_Len);
2371
Arif Hussain6d2a3322013-11-17 19:50:10 -08002372 hddLog(VOS_TRACE_LEVEL_INFO,"%s: WAPI KEY LENGTH:0x%04x",
Jeff Johnson295189b2012-06-20 16:38:30 -07002373 __func__, key_Len);
2374 for (n = 0 ; n < key_Len; n++)
2375 hddLog(VOS_TRACE_LEVEL_INFO, "%s WAPI KEY Data[%d]:%02x ",
2376 __func__,n,setKey.Key[n]);
2377
2378 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_SETTING_KEY;
2379 if ( isConnected )
2380 {
2381 status= sme_RoamSetKey( WLAN_HDD_GET_HAL_CTX(pAdapter),
2382 pAdapter->sessionId, &setKey, &roamId );
2383 }
2384 if ( status != 0 )
2385 {
2386 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2387 "[%4d] sme_RoamSetKey returned ERROR status= %d",
2388 __LINE__, status );
2389 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_NONE;
2390 }
2391}
2392#endif /* FEATURE_WLAN_WAPI*/
2393
2394#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302395int wlan_hdd_cfg80211_alloc_new_beacon(hdd_adapter_t *pAdapter,
Jeff Johnson295189b2012-06-20 16:38:30 -07002396 beacon_data_t **ppBeacon,
2397 struct beacon_parameters *params)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002398#else
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302399int wlan_hdd_cfg80211_alloc_new_beacon(hdd_adapter_t *pAdapter,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002400 beacon_data_t **ppBeacon,
2401 struct cfg80211_beacon_data *params,
2402 int dtim_period)
2403#endif
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302404{
Jeff Johnson295189b2012-06-20 16:38:30 -07002405 int size;
2406 beacon_data_t *beacon = NULL;
2407 beacon_data_t *old = NULL;
2408 int head_len,tail_len;
2409
Jeff Johnsone7245742012-09-05 17:12:55 -07002410 ENTER();
Jeff Johnson295189b2012-06-20 16:38:30 -07002411 if (params->head && !params->head_len)
c_hpothu6ff1c3c2013-10-01 19:01:57 +05302412 {
2413 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2414 FL("head_len is NULL"));
Jeff Johnson295189b2012-06-20 16:38:30 -07002415 return -EINVAL;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05302416 }
Jeff Johnson295189b2012-06-20 16:38:30 -07002417
2418 old = pAdapter->sessionCtx.ap.beacon;
2419
2420 if (!params->head && !old)
c_hpothu6ff1c3c2013-10-01 19:01:57 +05302421 {
2422 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2423 FL("session(%d) old and new heads points to NULL"),
2424 pAdapter->sessionId);
Jeff Johnson295189b2012-06-20 16:38:30 -07002425 return -EINVAL;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05302426 }
2427
2428 if (params->tail && !params->tail_len)
2429 {
2430 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2431 FL("tail_len is zero but tail is not NULL"));
2432 return -EINVAL;
2433 }
Jeff Johnson295189b2012-06-20 16:38:30 -07002434
Jeff Johnson295189b2012-06-20 16:38:30 -07002435#if (LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,38))
2436 /* Kernel 3.0 is not updating dtim_period for set beacon */
2437 if (!params->dtim_period)
c_hpothu6ff1c3c2013-10-01 19:01:57 +05302438 {
2439 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2440 FL("dtim period is 0"));
Jeff Johnson295189b2012-06-20 16:38:30 -07002441 return -EINVAL;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05302442 }
Jeff Johnson295189b2012-06-20 16:38:30 -07002443#endif
2444
2445 if(params->head)
2446 head_len = params->head_len;
2447 else
2448 head_len = old->head_len;
2449
2450 if(params->tail || !old)
2451 tail_len = params->tail_len;
2452 else
2453 tail_len = old->tail_len;
2454
2455 size = sizeof(beacon_data_t) + head_len + tail_len;
2456
2457 beacon = kzalloc(size, GFP_KERNEL);
2458
2459 if( beacon == NULL )
c_hpothu6ff1c3c2013-10-01 19:01:57 +05302460 {
2461 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2462 FL("Mem allocation for beacon failed"));
Jeff Johnson295189b2012-06-20 16:38:30 -07002463 return -ENOMEM;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05302464 }
Jeff Johnson295189b2012-06-20 16:38:30 -07002465
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002466#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
Jeff Johnson295189b2012-06-20 16:38:30 -07002467 if(params->dtim_period || !old )
2468 beacon->dtim_period = params->dtim_period;
2469 else
2470 beacon->dtim_period = old->dtim_period;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002471#else
2472 if(dtim_period || !old )
2473 beacon->dtim_period = dtim_period;
2474 else
2475 beacon->dtim_period = old->dtim_period;
2476#endif
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302477
Jeff Johnson295189b2012-06-20 16:38:30 -07002478 beacon->head = ((u8 *) beacon) + sizeof(beacon_data_t);
2479 beacon->tail = beacon->head + head_len;
2480 beacon->head_len = head_len;
2481 beacon->tail_len = tail_len;
2482
2483 if(params->head) {
2484 memcpy (beacon->head,params->head,beacon->head_len);
2485 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302486 else {
Jeff Johnson295189b2012-06-20 16:38:30 -07002487 if(old)
2488 memcpy (beacon->head,old->head,beacon->head_len);
2489 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302490
Jeff Johnson295189b2012-06-20 16:38:30 -07002491 if(params->tail) {
2492 memcpy (beacon->tail,params->tail,beacon->tail_len);
2493 }
2494 else {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302495 if(old)
Jeff Johnson295189b2012-06-20 16:38:30 -07002496 memcpy (beacon->tail,old->tail,beacon->tail_len);
2497 }
2498
2499 *ppBeacon = beacon;
2500
2501 kfree(old);
2502
2503 return 0;
2504
2505}
Jeff Johnson295189b2012-06-20 16:38:30 -07002506
2507v_U8_t* wlan_hdd_cfg80211_get_ie_ptr(v_U8_t *pIes, int length, v_U8_t eid)
2508{
2509 int left = length;
2510 v_U8_t *ptr = pIes;
2511 v_U8_t elem_id,elem_len;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302512
Jeff Johnson295189b2012-06-20 16:38:30 -07002513 while(left >= 2)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302514 {
Jeff Johnson295189b2012-06-20 16:38:30 -07002515 elem_id = ptr[0];
2516 elem_len = ptr[1];
2517 left -= 2;
2518 if(elem_len > left)
2519 {
2520 hddLog(VOS_TRACE_LEVEL_FATAL,
Madan Mohan Koyyalamudi8bdd3112012-09-24 13:55:14 -07002521 FL("****Invalid IEs eid = %d elem_len=%d left=%d*****"),
Jeff Johnson295189b2012-06-20 16:38:30 -07002522 eid,elem_len,left);
2523 return NULL;
2524 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302525 if (elem_id == eid)
Jeff Johnson295189b2012-06-20 16:38:30 -07002526 {
2527 return ptr;
2528 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302529
Jeff Johnson295189b2012-06-20 16:38:30 -07002530 left -= elem_len;
2531 ptr += (elem_len + 2);
2532 }
2533 return NULL;
2534}
2535
Jeff Johnson295189b2012-06-20 16:38:30 -07002536/* Check if rate is 11g rate or not */
2537static int wlan_hdd_rate_is_11g(u8 rate)
2538{
Sanjay Devnani28322e22013-06-21 16:13:40 -07002539 static const u8 gRateArray[8] = {12, 18, 24, 36, 48, 72, 96, 108}; /* actual rate * 2 */
Jeff Johnson295189b2012-06-20 16:38:30 -07002540 u8 i;
2541 for (i = 0; i < 8; i++)
2542 {
2543 if(rate == gRateArray[i])
2544 return TRUE;
2545 }
2546 return FALSE;
2547}
2548
2549/* Check for 11g rate and set proper 11g only mode */
2550static void wlan_hdd_check_11gmode(u8 *pIe, u8* require_ht,
2551 u8* pCheckRatesfor11g, eSapPhyMode* pSapHw_mode)
2552{
2553 u8 i, num_rates = pIe[0];
2554
2555 pIe += 1;
2556 for ( i = 0; i < num_rates; i++)
2557 {
2558 if( *pCheckRatesfor11g && (TRUE == wlan_hdd_rate_is_11g(pIe[i] & RATE_MASK)))
2559 {
2560 /* If rate set have 11g rate than change the mode to 11G */
2561 *pSapHw_mode = eSAP_DOT11_MODE_11g;
2562 if (pIe[i] & BASIC_RATE_MASK)
2563 {
2564 /* If we have 11g rate as basic rate, it means mode
2565 is 11g only mode.
2566 */
2567 *pSapHw_mode = eSAP_DOT11_MODE_11g_ONLY;
2568 *pCheckRatesfor11g = FALSE;
2569 }
2570 }
2571 else if((BASIC_RATE_MASK | WLAN_BSS_MEMBERSHIP_SELECTOR_HT_PHY) == pIe[i])
2572 {
2573 *require_ht = TRUE;
2574 }
2575 }
2576 return;
2577}
2578
2579static void wlan_hdd_set_sapHwmode(hdd_adapter_t *pHostapdAdapter)
2580{
2581 tsap_Config_t *pConfig = &pHostapdAdapter->sessionCtx.ap.sapConfig;
2582 beacon_data_t *pBeacon = pHostapdAdapter->sessionCtx.ap.beacon;
2583 struct ieee80211_mgmt *pMgmt_frame = (struct ieee80211_mgmt*)pBeacon->head;
2584 u8 checkRatesfor11g = TRUE;
2585 u8 require_ht = FALSE;
2586 u8 *pIe=NULL;
2587
2588 pConfig->SapHw_mode= eSAP_DOT11_MODE_11b;
2589
2590 pIe = wlan_hdd_cfg80211_get_ie_ptr(&pMgmt_frame->u.beacon.variable[0],
2591 pBeacon->head_len, WLAN_EID_SUPP_RATES);
2592 if (pIe != NULL)
2593 {
2594 pIe += 1;
2595 wlan_hdd_check_11gmode(pIe, &require_ht, &checkRatesfor11g,
2596 &pConfig->SapHw_mode);
2597 }
2598
2599 pIe = wlan_hdd_cfg80211_get_ie_ptr(pBeacon->tail, pBeacon->tail_len,
2600 WLAN_EID_EXT_SUPP_RATES);
2601 if (pIe != NULL)
2602 {
2603
2604 pIe += 1;
2605 wlan_hdd_check_11gmode(pIe, &require_ht, &checkRatesfor11g,
2606 &pConfig->SapHw_mode);
2607 }
2608
2609 if( pConfig->channel > 14 )
2610 {
2611 pConfig->SapHw_mode= eSAP_DOT11_MODE_11a;
2612 }
2613
2614 pIe = wlan_hdd_cfg80211_get_ie_ptr(pBeacon->tail, pBeacon->tail_len,
2615 WLAN_EID_HT_CAPABILITY);
2616
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302617 if(pIe)
Jeff Johnson295189b2012-06-20 16:38:30 -07002618 {
2619 pConfig->SapHw_mode= eSAP_DOT11_MODE_11n;
2620 if(require_ht)
2621 pConfig->SapHw_mode= eSAP_DOT11_MODE_11n_ONLY;
2622 }
2623}
2624
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05302625static int wlan_hdd_add_ie(hdd_adapter_t* pHostapdAdapter, v_U8_t *genie,
2626 v_U8_t *total_ielen, v_U8_t *oui, v_U8_t oui_size)
2627{
Arif Hussaine7f3ea52013-09-12 21:56:36 -07002628 v_U16_t ielen = 0;
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05302629 v_U8_t *pIe = NULL;
2630 beacon_data_t *pBeacon = pHostapdAdapter->sessionCtx.ap.beacon;
2631
2632 pIe = wlan_hdd_get_vendor_oui_ie_ptr(oui, oui_size,
2633 pBeacon->tail, pBeacon->tail_len);
2634
2635 if (pIe)
2636 {
2637 ielen = pIe[1] + 2;
2638 if ((*total_ielen + ielen) <= MAX_GENIE_LEN)
2639 {
2640 vos_mem_copy(&genie[*total_ielen], pIe, ielen);
2641 }
2642 else
2643 {
2644 hddLog( VOS_TRACE_LEVEL_ERROR, "**Ie Length is too big***");
2645 return -EINVAL;
2646 }
2647 *total_ielen += ielen;
2648 }
2649 return 0;
2650}
2651
Arif Hussaine7f3ea52013-09-12 21:56:36 -07002652static void wlan_hdd_add_hostapd_conf_vsie(hdd_adapter_t* pHostapdAdapter,
2653 v_U8_t *genie, v_U8_t *total_ielen)
2654{
2655 beacon_data_t *pBeacon = pHostapdAdapter->sessionCtx.ap.beacon;
2656 int left = pBeacon->tail_len;
2657 v_U8_t *ptr = pBeacon->tail;
2658 v_U8_t elem_id, elem_len;
2659 v_U16_t ielen = 0;
2660
2661 if ( NULL == ptr || 0 == left )
2662 return;
2663
2664 while (left >= 2)
2665 {
2666 elem_id = ptr[0];
2667 elem_len = ptr[1];
2668 left -= 2;
2669 if (elem_len > left)
2670 {
2671 hddLog( VOS_TRACE_LEVEL_ERROR,
2672 "****Invalid IEs eid = %d elem_len=%d left=%d*****",
2673 elem_id, elem_len, left);
2674 return;
2675 }
2676 if (IE_EID_VENDOR == elem_id)
2677 {
2678 /* skipping the VSIE's which we don't want to include or
2679 * it will be included by existing code
2680 */
2681 if ((memcmp( &ptr[2], WPS_OUI_TYPE, WPS_OUI_TYPE_SIZE) != 0 ) &&
2682#ifdef WLAN_FEATURE_WFD
2683 (memcmp( &ptr[2], WFD_OUI_TYPE, WFD_OUI_TYPE_SIZE) != 0) &&
2684#endif
2685 (memcmp( &ptr[2], WHITELIST_OUI_TYPE, WPA_OUI_TYPE_SIZE) != 0) &&
2686 (memcmp( &ptr[2], BLACKLIST_OUI_TYPE, WPA_OUI_TYPE_SIZE) != 0) &&
2687 (memcmp( &ptr[2], "\x00\x50\xf2\x02", WPA_OUI_TYPE_SIZE) != 0) &&
2688 (memcmp( &ptr[2], WPA_OUI_TYPE, WPA_OUI_TYPE_SIZE) != 0) &&
2689 (memcmp( &ptr[2], P2P_OUI_TYPE, P2P_OUI_TYPE_SIZE) != 0))
2690 {
2691 ielen = ptr[1] + 2;
2692 if ((*total_ielen + ielen) <= MAX_GENIE_LEN)
2693 {
2694 vos_mem_copy(&genie[*total_ielen], ptr, ielen);
2695 *total_ielen += ielen;
2696 }
2697 else
2698 {
2699 hddLog( VOS_TRACE_LEVEL_ERROR,
2700 "IE Length is too big "
2701 "IEs eid=%d elem_len=%d total_ie_lent=%d",
2702 elem_id, elem_len, *total_ielen);
2703 }
2704 }
2705 }
2706
2707 left -= elem_len;
2708 ptr += (elem_len + 2);
2709 }
2710 return;
2711}
2712
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002713#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
Jeff Johnson295189b2012-06-20 16:38:30 -07002714static int wlan_hdd_cfg80211_update_apies(hdd_adapter_t* pHostapdAdapter,
2715 struct beacon_parameters *params)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002716#else
2717static int wlan_hdd_cfg80211_update_apies(hdd_adapter_t* pHostapdAdapter,
2718 struct cfg80211_beacon_data *params)
2719#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07002720{
2721 v_U8_t *genie;
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05302722 v_U8_t total_ielen = 0;
Jeff Johnson295189b2012-06-20 16:38:30 -07002723 v_U8_t addIE[1] = {0};
Jeff Johnsone7245742012-09-05 17:12:55 -07002724 int ret = 0;
Jeff Johnson295189b2012-06-20 16:38:30 -07002725
2726 genie = vos_mem_malloc(MAX_GENIE_LEN);
2727
2728 if(genie == NULL) {
2729
2730 return -ENOMEM;
2731 }
2732
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05302733 if (0 != wlan_hdd_add_ie(pHostapdAdapter, genie,
2734 &total_ielen, WPS_OUI_TYPE, WPS_OUI_TYPE_SIZE))
Jeff Johnson295189b2012-06-20 16:38:30 -07002735 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05302736 hddLog(LOGE,
2737 FL("Adding WPS IE failed"));
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05302738 ret = -EINVAL;
2739 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07002740 }
2741
2742#ifdef WLAN_FEATURE_WFD
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05302743 if (0 != wlan_hdd_add_ie(pHostapdAdapter, genie,
2744 &total_ielen, WFD_OUI_TYPE, WFD_OUI_TYPE_SIZE))
2745 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05302746 hddLog(LOGE,
2747 FL("Adding WFD IE failed"));
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05302748 ret = -EINVAL;
2749 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07002750 }
2751#endif
2752
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05302753 if (0 != wlan_hdd_add_ie(pHostapdAdapter, genie,
2754 &total_ielen, P2P_OUI_TYPE, P2P_OUI_TYPE_SIZE))
Jeff Johnson295189b2012-06-20 16:38:30 -07002755 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05302756 hddLog(LOGE,
2757 FL("Adding P2P IE failed"));
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05302758 ret = -EINVAL;
2759 goto done;
2760 }
2761
2762 if (WLAN_HDD_SOFTAP == pHostapdAdapter->device_mode)
2763 {
Arif Hussaine7f3ea52013-09-12 21:56:36 -07002764 wlan_hdd_add_hostapd_conf_vsie(pHostapdAdapter, genie, &total_ielen);
Jeff Johnson295189b2012-06-20 16:38:30 -07002765 }
Jeff Johnson295189b2012-06-20 16:38:30 -07002766
2767 if (ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
2768 WNI_CFG_PROBE_RSP_BCN_ADDNIE_DATA, genie, total_ielen, NULL,
2769 eANI_BOOLEAN_FALSE)==eHAL_STATUS_FAILURE)
2770 {
2771 hddLog(LOGE,
2772 "Could not pass on WNI_CFG_PROBE_RSP_BCN_ADDNIE_DATA to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07002773 ret = -EINVAL;
2774 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07002775 }
2776
2777 if (ccmCfgSetInt((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
2778 WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG, 1,NULL,
2779 test_bit(SOFTAP_BSS_STARTED, &pHostapdAdapter->event_flags) ?
2780 eANI_BOOLEAN_TRUE : eANI_BOOLEAN_FALSE)
2781 ==eHAL_STATUS_FAILURE)
2782 {
2783 hddLog(LOGE,
2784 "Could not pass on WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07002785 ret = -EINVAL;
2786 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07002787 }
2788
2789 // Added for ProResp IE
2790 if ( (params->proberesp_ies != NULL) && (params->proberesp_ies_len != 0) )
2791 {
2792 u16 rem_probe_resp_ie_len = params->proberesp_ies_len;
2793 u8 probe_rsp_ie_len[3] = {0};
2794 u8 counter = 0;
2795 /* Check Probe Resp Length if it is greater then 255 then Store
2796 Probe Resp IEs into WNI_CFG_PROBE_RSP_ADDNIE_DATA1 &
2797 WNI_CFG_PROBE_RSP_ADDNIE_DATA2 CFG Variable As We are not able
2798 Store More then 255 bytes into One Variable.
2799 */
2800 while ((rem_probe_resp_ie_len > 0) && (counter < 3))
2801 {
2802 if (rem_probe_resp_ie_len > MAX_CFG_STRING_LEN)
2803 {
2804 probe_rsp_ie_len[counter++] = MAX_CFG_STRING_LEN;
2805 rem_probe_resp_ie_len -= MAX_CFG_STRING_LEN;
2806 }
2807 else
2808 {
2809 probe_rsp_ie_len[counter++] = rem_probe_resp_ie_len;
2810 rem_probe_resp_ie_len = 0;
2811 }
2812 }
2813
2814 rem_probe_resp_ie_len = 0;
2815
2816 if (probe_rsp_ie_len[0] > 0)
2817 {
2818 if (ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
2819 WNI_CFG_PROBE_RSP_ADDNIE_DATA1,
2820 (tANI_U8*)&params->proberesp_ies[rem_probe_resp_ie_len],
2821 probe_rsp_ie_len[0], NULL,
2822 eANI_BOOLEAN_FALSE) == eHAL_STATUS_FAILURE)
2823 {
2824 hddLog(LOGE,
2825 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_DATA1 to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07002826 ret = -EINVAL;
2827 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07002828 }
2829 rem_probe_resp_ie_len += probe_rsp_ie_len[0];
2830 }
2831
2832 if (probe_rsp_ie_len[1] > 0)
2833 {
2834 if (ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
2835 WNI_CFG_PROBE_RSP_ADDNIE_DATA2,
2836 (tANI_U8*)&params->proberesp_ies[rem_probe_resp_ie_len],
2837 probe_rsp_ie_len[1], NULL,
2838 eANI_BOOLEAN_FALSE) == eHAL_STATUS_FAILURE)
2839 {
2840 hddLog(LOGE,
2841 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_DATA2 to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07002842 ret = -EINVAL;
2843 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07002844 }
2845 rem_probe_resp_ie_len += probe_rsp_ie_len[1];
2846 }
2847
2848 if (probe_rsp_ie_len[2] > 0)
2849 {
2850 if (ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
2851 WNI_CFG_PROBE_RSP_ADDNIE_DATA3,
2852 (tANI_U8*)&params->proberesp_ies[rem_probe_resp_ie_len],
2853 probe_rsp_ie_len[2], NULL,
2854 eANI_BOOLEAN_FALSE) == eHAL_STATUS_FAILURE)
2855 {
2856 hddLog(LOGE,
2857 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_DATA3 to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07002858 ret = -EINVAL;
2859 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07002860 }
2861 rem_probe_resp_ie_len += probe_rsp_ie_len[2];
2862 }
2863
2864 if (probe_rsp_ie_len[1] == 0 )
2865 {
2866 if ( eHAL_STATUS_FAILURE == ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
2867 WNI_CFG_PROBE_RSP_ADDNIE_DATA2, (tANI_U8*)addIE, 0, NULL,
2868 eANI_BOOLEAN_FALSE) )
2869 {
2870 hddLog(LOGE,
Arif Hussain6d2a3322013-11-17 19:50:10 -08002871 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_DATA2 to CCM");
Jeff Johnson295189b2012-06-20 16:38:30 -07002872 }
2873 }
2874
2875 if (probe_rsp_ie_len[2] == 0 )
2876 {
2877 if ( eHAL_STATUS_FAILURE == ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
2878 WNI_CFG_PROBE_RSP_ADDNIE_DATA3, (tANI_U8*)addIE, 0, NULL,
2879 eANI_BOOLEAN_FALSE) )
2880 {
2881 hddLog(LOGE,
Arif Hussain6d2a3322013-11-17 19:50:10 -08002882 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_DATA3 to CCM");
Jeff Johnson295189b2012-06-20 16:38:30 -07002883 }
2884 }
2885
2886 if (ccmCfgSetInt((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
2887 WNI_CFG_PROBE_RSP_ADDNIE_FLAG, 1,NULL,
2888 test_bit(SOFTAP_BSS_STARTED, &pHostapdAdapter->event_flags) ?
2889 eANI_BOOLEAN_TRUE : eANI_BOOLEAN_FALSE)
2890 == eHAL_STATUS_FAILURE)
2891 {
2892 hddLog(LOGE,
2893 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_FLAG to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07002894 ret = -EINVAL;
2895 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07002896 }
2897 }
2898 else
2899 {
2900 // Reset WNI_CFG_PROBE_RSP Flags
2901 wlan_hdd_reset_prob_rspies(pHostapdAdapter);
2902
2903 hddLog(VOS_TRACE_LEVEL_INFO,
2904 "%s: No Probe Response IE received in set beacon",
2905 __func__);
2906 }
2907
2908 // Added for AssocResp IE
2909 if ( (params->assocresp_ies != NULL) && (params->assocresp_ies_len != 0) )
2910 {
2911 if (ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
2912 WNI_CFG_ASSOC_RSP_ADDNIE_DATA, (tANI_U8*)params->assocresp_ies,
2913 params->assocresp_ies_len, NULL,
2914 eANI_BOOLEAN_FALSE) == eHAL_STATUS_FAILURE)
2915 {
2916 hddLog(LOGE,
2917 "Could not pass on WNI_CFG_ASSOC_RSP_ADDNIE_DATA to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07002918 ret = -EINVAL;
2919 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07002920 }
2921
2922 if (ccmCfgSetInt((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
2923 WNI_CFG_ASSOC_RSP_ADDNIE_FLAG, 1, NULL,
2924 test_bit(SOFTAP_BSS_STARTED, &pHostapdAdapter->event_flags) ?
2925 eANI_BOOLEAN_TRUE : eANI_BOOLEAN_FALSE)
2926 == eHAL_STATUS_FAILURE)
2927 {
2928 hddLog(LOGE,
2929 "Could not pass on WNI_CFG_ASSOC_RSP_ADDNIE_FLAG to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07002930 ret = -EINVAL;
2931 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07002932 }
2933 }
2934 else
2935 {
2936 hddLog(VOS_TRACE_LEVEL_INFO,
2937 "%s: No Assoc Response IE received in set beacon",
2938 __func__);
2939
2940 if ( eHAL_STATUS_FAILURE == ccmCfgSetInt((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
2941 WNI_CFG_ASSOC_RSP_ADDNIE_FLAG, 0, NULL,
2942 eANI_BOOLEAN_FALSE) )
2943 {
2944 hddLog(LOGE,
Arif Hussain6d2a3322013-11-17 19:50:10 -08002945 "Could not pass on WNI_CFG_ASSOC_RSP_ADDNIE_FLAG to CCM");
Jeff Johnson295189b2012-06-20 16:38:30 -07002946 }
2947 }
2948
Jeff Johnsone7245742012-09-05 17:12:55 -07002949done:
Jeff Johnson295189b2012-06-20 16:38:30 -07002950 vos_mem_free(genie);
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05302951 return ret;
Jeff Johnson295189b2012-06-20 16:38:30 -07002952}
Jeff Johnson295189b2012-06-20 16:38:30 -07002953
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302954/*
Jeff Johnson295189b2012-06-20 16:38:30 -07002955 * FUNCTION: wlan_hdd_validate_operation_channel
2956 * called by wlan_hdd_cfg80211_start_bss() and
2957 * wlan_hdd_cfg80211_set_channel()
2958 * This function validates whether given channel is part of valid
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302959 * channel list.
2960 */
Varun Reddy Yeturu920df212013-05-22 08:07:23 -07002961VOS_STATUS wlan_hdd_validate_operation_channel(hdd_adapter_t *pAdapter,int channel)
Jeff Johnson295189b2012-06-20 16:38:30 -07002962{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302963
Jeff Johnson295189b2012-06-20 16:38:30 -07002964 v_U32_t num_ch = 0;
2965 u8 valid_ch[WNI_CFG_VALID_CHANNEL_LIST_LEN];
2966 u32 indx = 0;
2967 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +05302968 v_U8_t fValidChannel = FALSE, count = 0;
2969 hdd_config_t *hdd_pConfig_ini= (WLAN_HDD_GET_CTX(pAdapter))->cfg_ini;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302970
Jeff Johnson295189b2012-06-20 16:38:30 -07002971 num_ch = WNI_CFG_VALID_CHANNEL_LIST_LEN;
2972
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +05302973 if ( hdd_pConfig_ini->sapAllowAllChannel)
Jeff Johnson295189b2012-06-20 16:38:30 -07002974 {
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +05302975 /* Validate the channel */
2976 for (count = RF_CHAN_1 ; count <= RF_CHAN_165 ; count++)
Jeff Johnson295189b2012-06-20 16:38:30 -07002977 {
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +05302978 if ( channel == rfChannels[count].channelNum )
2979 {
2980 fValidChannel = TRUE;
2981 break;
2982 }
2983 }
2984 if (fValidChannel != TRUE)
2985 {
2986 hddLog(VOS_TRACE_LEVEL_ERROR,
2987 "%s: Invalid Channel [%d]", __func__, channel);
2988 return VOS_STATUS_E_FAILURE;
Jeff Johnson295189b2012-06-20 16:38:30 -07002989 }
2990 }
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +05302991 else
Jeff Johnson295189b2012-06-20 16:38:30 -07002992 {
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +05302993 if (0 != ccmCfgGetStr(hHal, WNI_CFG_VALID_CHANNEL_LIST,
2994 valid_ch, &num_ch))
2995 {
2996 hddLog(VOS_TRACE_LEVEL_ERROR,
2997 "%s: failed to get valid channel list", __func__);
2998 return VOS_STATUS_E_FAILURE;
2999 }
3000 for (indx = 0; indx < num_ch; indx++)
3001 {
3002 if (channel == valid_ch[indx])
3003 {
3004 break;
3005 }
3006 }
3007
Rashmi Ramanna3b59e122014-04-10 14:45:13 +05303008 if (indx >= num_ch)
3009 {
3010 if (WLAN_HDD_P2P_GO == pAdapter->device_mode)
3011 {
3012 eCsrBand band;
3013 unsigned int freq;
3014
3015 sme_GetFreqBand(hHal, &band);
3016
3017 if (eCSR_BAND_5G == band)
3018 {
3019#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,38))
3020 if (channel <= ARRAY_SIZE(hdd_channels_2_4_GHZ))
3021 {
3022 freq = ieee80211_channel_to_frequency(channel,
3023 IEEE80211_BAND_2GHZ);
3024 }
3025 else
3026 {
3027 freq = ieee80211_channel_to_frequency(channel,
3028 IEEE80211_BAND_5GHZ);
3029 }
3030#else
3031 freq = ieee80211_channel_to_frequency(channel);
3032#endif
3033 if(WLAN_HDD_IS_SOCIAL_CHANNEL(freq))
3034 return VOS_STATUS_SUCCESS;
3035 }
3036 }
3037
3038 hddLog(VOS_TRACE_LEVEL_ERROR,
3039 "%s: Invalid Channel [%d]", __func__, channel);
3040 return VOS_STATUS_E_FAILURE;
3041 }
Jeff Johnson295189b2012-06-20 16:38:30 -07003042 }
Rashmi Ramanna3b59e122014-04-10 14:45:13 +05303043
Jeff Johnson295189b2012-06-20 16:38:30 -07003044 return VOS_STATUS_SUCCESS;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303045
Jeff Johnson295189b2012-06-20 16:38:30 -07003046}
3047
Viral Modi3a32cc52013-02-08 11:14:52 -08003048/**
3049 * FUNCTION: wlan_hdd_cfg80211_set_channel
3050 * This function is used to set the channel number
3051 */
3052static int wlan_hdd_cfg80211_set_channel( struct wiphy *wiphy, struct net_device *dev,
3053 struct ieee80211_channel *chan,
3054 enum nl80211_channel_type channel_type
3055 )
3056{
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05303057 hdd_adapter_t *pAdapter = NULL;
Viral Modi3a32cc52013-02-08 11:14:52 -08003058 v_U32_t num_ch = 0;
Jeff Johnson4416a782013-03-25 14:17:50 -07003059 int channel = 0;
Viral Modi3a32cc52013-02-08 11:14:52 -08003060 int freq = chan->center_freq; /* freq is in MHZ */
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303061 hdd_context_t *pHddCtx;
3062 int status;
Viral Modi3a32cc52013-02-08 11:14:52 -08003063
3064 ENTER();
3065
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05303066
Viral Modi3a32cc52013-02-08 11:14:52 -08003067 if( NULL == dev )
3068 {
3069 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08003070 "%s: Called with dev = NULL.", __func__);
Viral Modi3a32cc52013-02-08 11:14:52 -08003071 return -ENODEV;
3072 }
3073 pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
3074
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05303075 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
3076 TRACE_CODE_HDD_CFG80211_SET_CHANNEL, pAdapter->sessionId,
3077 channel_type ));
Viral Modi3a32cc52013-02-08 11:14:52 -08003078 hddLog(VOS_TRACE_LEVEL_INFO,
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05303079 "%s: device_mode = %s (%d) freq = %d", __func__,
3080 hdd_device_modetoString(pAdapter->device_mode),
3081 pAdapter->device_mode, chan->center_freq);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303082
3083 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
3084 status = wlan_hdd_validate_context(pHddCtx);
3085
3086 if (0 != status)
Viral Modi3a32cc52013-02-08 11:14:52 -08003087 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303088 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3089 "%s: HDD context is not valid", __func__);
3090 return status;
Viral Modi3a32cc52013-02-08 11:14:52 -08003091 }
3092
3093 /*
3094 * Do freq to chan conversion
3095 * TODO: for 11a
3096 */
3097
3098 channel = ieee80211_frequency_to_channel(freq);
3099
3100 /* Check freq range */
3101 if ((WNI_CFG_CURRENT_CHANNEL_STAMIN > channel) ||
3102 (WNI_CFG_CURRENT_CHANNEL_STAMAX < channel))
3103 {
3104 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08003105 "%s: Channel [%d] is outside valid range from %d to %d",
Viral Modi3a32cc52013-02-08 11:14:52 -08003106 __func__, channel, WNI_CFG_CURRENT_CHANNEL_STAMIN,
3107 WNI_CFG_CURRENT_CHANNEL_STAMAX);
3108 return -EINVAL;
3109 }
3110
3111 num_ch = WNI_CFG_VALID_CHANNEL_LIST_LEN;
3112
Gopichand Nakkala6ab19562013-03-07 13:59:42 +05303113 if ((WLAN_HDD_SOFTAP != pAdapter->device_mode) &&
3114 (WLAN_HDD_P2P_GO != pAdapter->device_mode))
Viral Modi3a32cc52013-02-08 11:14:52 -08003115 {
3116 if(VOS_STATUS_SUCCESS != wlan_hdd_validate_operation_channel(pAdapter,channel))
3117 {
3118 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08003119 "%s: Invalid Channel [%d]", __func__, channel);
Viral Modi3a32cc52013-02-08 11:14:52 -08003120 return -EINVAL;
3121 }
3122 hddLog(VOS_TRACE_LEVEL_INFO_HIGH,
3123 "%s: set channel to [%d] for device mode =%d",
3124 __func__, channel,pAdapter->device_mode);
3125 }
3126 if( (pAdapter->device_mode == WLAN_HDD_INFRA_STATION)
Viral Modi3a32cc52013-02-08 11:14:52 -08003127 || (pAdapter->device_mode == WLAN_HDD_P2P_CLIENT)
Viral Modi3a32cc52013-02-08 11:14:52 -08003128 )
3129 {
3130 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
3131 tCsrRoamProfile * pRoamProfile = &pWextState->roamProfile;
3132 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
3133
3134 if (eConnectionState_IbssConnected == pHddStaCtx->conn_info.connState)
3135 {
3136 /* Link is up then return cant set channel*/
3137 hddLog( VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08003138 "%s: IBSS Associated, can't set the channel", __func__);
Viral Modi3a32cc52013-02-08 11:14:52 -08003139 return -EINVAL;
3140 }
3141
3142 num_ch = pRoamProfile->ChannelInfo.numOfChannels = 1;
3143 pHddStaCtx->conn_info.operationChannel = channel;
3144 pRoamProfile->ChannelInfo.ChannelList =
3145 &pHddStaCtx->conn_info.operationChannel;
3146 }
3147 else if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Viral Modi3a32cc52013-02-08 11:14:52 -08003148 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Viral Modi3a32cc52013-02-08 11:14:52 -08003149 )
3150 {
Gopichand Nakkalac8fa7b62013-03-11 13:56:41 +05303151 if (WLAN_HDD_P2P_GO == pAdapter->device_mode)
3152 {
3153 if(VOS_STATUS_SUCCESS !=
3154 wlan_hdd_validate_operation_channel(pAdapter,channel))
3155 {
3156 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08003157 "%s: Invalid Channel [%d]", __func__, channel);
Gopichand Nakkalac8fa7b62013-03-11 13:56:41 +05303158 return -EINVAL;
3159 }
3160 (WLAN_HDD_GET_AP_CTX_PTR(pAdapter))->sapConfig.channel = channel;
3161 }
3162 else if ( WLAN_HDD_SOFTAP == pAdapter->device_mode )
Viral Modi3a32cc52013-02-08 11:14:52 -08003163 {
3164 hdd_config_t *cfg_param = (WLAN_HDD_GET_CTX(pAdapter))->cfg_ini;
3165
3166 /* If auto channel selection is configured as enable/ 1 then ignore
3167 channel set by supplicant
3168 */
3169 if ( cfg_param->apAutoChannelSelection )
3170 {
Gopichand Nakkalac8fa7b62013-03-11 13:56:41 +05303171 (WLAN_HDD_GET_AP_CTX_PTR(pAdapter))->sapConfig.channel =
3172 AUTO_CHANNEL_SELECT;
Viral Modi3a32cc52013-02-08 11:14:52 -08003173 hddLog(VOS_TRACE_LEVEL_INFO_HIGH,
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05303174 "%s: set channel to auto channel (0) for device mode =%s (%d)",
3175 __func__, hdd_device_modetoString(pAdapter->device_mode),
3176 pAdapter->device_mode);
Viral Modi3a32cc52013-02-08 11:14:52 -08003177 }
Gopichand Nakkalac8fa7b62013-03-11 13:56:41 +05303178 else
3179 {
3180 if(VOS_STATUS_SUCCESS !=
3181 wlan_hdd_validate_operation_channel(pAdapter,channel))
3182 {
3183 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08003184 "%s: Invalid Channel [%d]", __func__, channel);
Gopichand Nakkalac8fa7b62013-03-11 13:56:41 +05303185 return -EINVAL;
3186 }
3187 (WLAN_HDD_GET_AP_CTX_PTR(pAdapter))->sapConfig.channel = channel;
3188 }
Viral Modi3a32cc52013-02-08 11:14:52 -08003189 }
3190 }
3191 else
3192 {
3193 hddLog(VOS_TRACE_LEVEL_FATAL,
3194 "%s: Invalid device mode failed to set valid channel", __func__);
3195 return -EINVAL;
3196 }
3197 EXIT();
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303198 return status;
Viral Modi3a32cc52013-02-08 11:14:52 -08003199}
3200
Jeff Johnson295189b2012-06-20 16:38:30 -07003201#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
3202static int wlan_hdd_cfg80211_start_bss(hdd_adapter_t *pHostapdAdapter,
3203 struct beacon_parameters *params)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07003204#else
3205static int wlan_hdd_cfg80211_start_bss(hdd_adapter_t *pHostapdAdapter,
3206 struct cfg80211_beacon_data *params,
3207 const u8 *ssid, size_t ssid_len,
3208 enum nl80211_hidden_ssid hidden_ssid)
3209#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07003210{
3211 tsap_Config_t *pConfig;
3212 beacon_data_t *pBeacon = NULL;
3213 struct ieee80211_mgmt *pMgmt_frame;
3214 v_U8_t *pIe=NULL;
3215 v_U16_t capab_info;
3216 eCsrAuthType RSNAuthType;
3217 eCsrEncryptionType RSNEncryptType;
3218 eCsrEncryptionType mcRSNEncryptType;
3219 int status = VOS_STATUS_SUCCESS;
3220 tpWLAN_SAPEventCB pSapEventCallback;
3221 hdd_hostapd_state_t *pHostapdState;
3222 v_U8_t wpaRsnIEdata[(SIR_MAC_MAX_IE_LENGTH * 2)+4]; //Max ie length 255 * 2(WPA+RSN) + 2 bytes (vendor specific ID) * 2
3223 v_CONTEXT_t pVosContext = (WLAN_HDD_GET_CTX(pHostapdAdapter))->pvosContext;
Madan Mohan Koyylamudia16d0202013-02-01 11:05:57 +05303224 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pHostapdAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07003225 struct qc_mac_acl_entry *acl_entry = NULL;
Siddharth Bhal5cba24e2014-05-08 18:59:39 +05303226 hdd_config_t *iniConfig;
Jeff Johnson295189b2012-06-20 16:38:30 -07003227 v_SINT_t i;
Madan Mohan Koyyalamudi543172b2012-12-05 16:40:18 -08003228 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pHostapdAdapter);
Chet Lanctot40142442014-05-20 13:39:25 -07003229 v_BOOL_t MFPCapable = VOS_FALSE;
3230 v_BOOL_t MFPRequired = VOS_FALSE;
Abhishek Singhf0ac1752014-03-05 17:47:09 +05303231 eHddDot11Mode sapDot11Mode =
3232 (WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini->sapDot11Mode;
Jeff Johnson295189b2012-06-20 16:38:30 -07003233
3234 ENTER();
3235
Siddharth Bhal5cba24e2014-05-08 18:59:39 +05303236 iniConfig = pHddCtx->cfg_ini;
3237
Jeff Johnson295189b2012-06-20 16:38:30 -07003238 pHostapdState = WLAN_HDD_GET_HOSTAP_STATE_PTR(pHostapdAdapter);
3239
3240 pConfig = &pHostapdAdapter->sessionCtx.ap.sapConfig;
3241
3242 pBeacon = pHostapdAdapter->sessionCtx.ap.beacon;
3243
3244 pMgmt_frame = (struct ieee80211_mgmt*)pBeacon->head;
3245
3246 pConfig->beacon_int = pMgmt_frame->u.beacon.beacon_int;
3247
3248 //channel is already set in the set_channel Call back
3249 //pConfig->channel = pCommitConfig->channel;
3250
3251 /*Protection parameter to enable or disable*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303252 pConfig->protEnabled =
Jeff Johnson295189b2012-06-20 16:38:30 -07003253 (WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini->apProtEnabled;
3254
3255 pConfig->dtim_period = pBeacon->dtim_period;
3256
Arif Hussain6d2a3322013-11-17 19:50:10 -08003257 hddLog(VOS_TRACE_LEVEL_INFO_HIGH,"****pConfig->dtim_period=%d***",
Jeff Johnson295189b2012-06-20 16:38:30 -07003258 pConfig->dtim_period);
3259
3260
Madan Mohan Koyyalamudie0ca11f2012-11-27 15:57:52 -08003261 if (pHostapdAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson32d95a32012-09-10 13:15:23 -07003262 {
3263 pIe = wlan_hdd_cfg80211_get_ie_ptr(pBeacon->tail, pBeacon->tail_len,
Jeff Johnson295189b2012-06-20 16:38:30 -07003264 WLAN_EID_COUNTRY);
Kiet Lam083504c2013-11-25 14:17:45 +05303265 if(memcmp(pHddCtx->cfg_ini->apCntryCode, CFG_AP_COUNTRY_CODE_DEFAULT, 3) != 0)
3266 {
3267 tANI_BOOLEAN restartNeeded;
3268 pConfig->ieee80211d = 1;
3269 vos_mem_copy(pConfig->countryCode, pHddCtx->cfg_ini->apCntryCode, 3);
3270 sme_setRegInfo(hHal, pConfig->countryCode);
3271 sme_ResetCountryCodeInformation(hHal, &restartNeeded);
3272 }
3273 else if(pIe)
Jeff Johnson295189b2012-06-20 16:38:30 -07003274 {
Jeff Johnson32d95a32012-09-10 13:15:23 -07003275 tANI_BOOLEAN restartNeeded;
Jeff Johnson32d95a32012-09-10 13:15:23 -07003276 pConfig->ieee80211d = 1;
3277 vos_mem_copy(pConfig->countryCode, &pIe[2], 3);
3278 sme_setRegInfo(hHal, pConfig->countryCode);
3279 sme_ResetCountryCodeInformation(hHal, &restartNeeded);
Jeff Johnson295189b2012-06-20 16:38:30 -07003280 }
Jeff Johnson32d95a32012-09-10 13:15:23 -07003281 else
3282 {
3283 pConfig->ieee80211d = 0;
3284 }
Madan Mohan Koyylamudia16d0202013-02-01 11:05:57 +05303285 /*
3286 * If auto channel is configured i.e. channel is 0,
3287 * so skip channel validation.
3288 */
3289 if( AUTO_CHANNEL_SELECT != pConfig->channel )
3290 {
3291 if(VOS_STATUS_SUCCESS != wlan_hdd_validate_operation_channel(pHostapdAdapter,pConfig->channel))
3292 {
3293 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08003294 "%s: Invalid Channel [%d]", __func__, pConfig->channel);
Madan Mohan Koyylamudia16d0202013-02-01 11:05:57 +05303295 return -EINVAL;
3296 }
3297 }
3298 else
3299 {
3300 if(1 != pHddCtx->is_dynamic_channel_range_set)
3301 {
3302 hdd_config_t *hdd_pConfig= (WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini;
3303 WLANSAP_SetChannelRange(hHal, hdd_pConfig->apStartChannelNum,
3304 hdd_pConfig->apEndChannelNum,hdd_pConfig->apOperatingBand);
3305 }
3306 pHddCtx->is_dynamic_channel_range_set = 0;
3307 }
Jeff Johnson295189b2012-06-20 16:38:30 -07003308 }
Jeff Johnson32d95a32012-09-10 13:15:23 -07003309 else
Jeff Johnson295189b2012-06-20 16:38:30 -07003310 {
3311 pConfig->ieee80211d = 0;
3312 }
3313 pConfig->authType = eSAP_AUTO_SWITCH;
3314
3315 capab_info = pMgmt_frame->u.beacon.capab_info;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303316
3317 pConfig->privacy = (pMgmt_frame->u.beacon.capab_info &
Jeff Johnson295189b2012-06-20 16:38:30 -07003318 WLAN_CAPABILITY_PRIVACY) ? VOS_TRUE : VOS_FALSE;
3319
3320 (WLAN_HDD_GET_AP_CTX_PTR(pHostapdAdapter))->uPrivacy = pConfig->privacy;
3321
3322 /*Set wps station to configured*/
3323 pIe = wlan_hdd_get_wps_ie_ptr(pBeacon->tail, pBeacon->tail_len);
3324
3325 if(pIe)
3326 {
3327 if(pIe[1] < (2 + WPS_OUI_TYPE_SIZE))
3328 {
Arif Hussain6d2a3322013-11-17 19:50:10 -08003329 hddLog( VOS_TRACE_LEVEL_ERROR, "**Wps Ie Length is too small***");
Jeff Johnson295189b2012-06-20 16:38:30 -07003330 return -EINVAL;
3331 }
3332 else if(memcmp(&pIe[2], WPS_OUI_TYPE, WPS_OUI_TYPE_SIZE) == 0)
3333 {
Madan Mohan Koyyalamudi8bdd3112012-09-24 13:55:14 -07003334 hddLog( VOS_TRACE_LEVEL_INFO, "** WPS IE(len %d) ***", (pIe[1]+2));
Jeff Johnson295189b2012-06-20 16:38:30 -07003335 /* Check 15 bit of WPS IE as it contain information for wps state
3336 * WPS state
3337 */
3338 if(SAP_WPS_ENABLED_UNCONFIGURED == pIe[15])
3339 {
3340 pConfig->wps_state = SAP_WPS_ENABLED_UNCONFIGURED;
3341 } else if(SAP_WPS_ENABLED_CONFIGURED == pIe[15])
3342 {
3343 pConfig->wps_state = SAP_WPS_ENABLED_CONFIGURED;
3344 }
3345 }
3346 }
3347 else
3348 {
3349 pConfig->wps_state = SAP_WPS_DISABLED;
3350 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303351 pConfig->fwdWPSPBCProbeReq = 1; // Forward WPS PBC probe request frame up
Jeff Johnson295189b2012-06-20 16:38:30 -07003352
3353 pConfig->RSNWPAReqIELength = 0;
3354 pConfig->pRSNWPAReqIE = NULL;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303355 pIe = wlan_hdd_cfg80211_get_ie_ptr(pBeacon->tail, pBeacon->tail_len,
Jeff Johnson295189b2012-06-20 16:38:30 -07003356 WLAN_EID_RSN);
3357 if(pIe && pIe[1])
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303358 {
Jeff Johnson295189b2012-06-20 16:38:30 -07003359 pConfig->RSNWPAReqIELength = pIe[1] + 2;
3360 memcpy(&wpaRsnIEdata[0], pIe, pConfig->RSNWPAReqIELength);
3361 pConfig->pRSNWPAReqIE = &wpaRsnIEdata[0];
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303362 /* The actual processing may eventually be more extensive than
3363 * this. Right now, just consume any PMKIDs that are sent in
Jeff Johnson295189b2012-06-20 16:38:30 -07003364 * by the app.
3365 * */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303366 status = hdd_softap_unpackIE(
Jeff Johnson295189b2012-06-20 16:38:30 -07003367 vos_get_context( VOS_MODULE_ID_SME, pVosContext),
3368 &RSNEncryptType,
3369 &mcRSNEncryptType,
3370 &RSNAuthType,
Chet Lanctot8cecea22014-02-11 19:09:36 -08003371 &MFPCapable,
3372 &MFPRequired,
Jeff Johnson295189b2012-06-20 16:38:30 -07003373 pConfig->pRSNWPAReqIE[1]+2,
3374 pConfig->pRSNWPAReqIE );
3375
3376 if( VOS_STATUS_SUCCESS == status )
3377 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303378 /* Now copy over all the security attributes you have
3379 * parsed out
Jeff Johnson295189b2012-06-20 16:38:30 -07003380 * */
3381 pConfig->RSNEncryptType = RSNEncryptType; // Use the cipher type in the RSN IE
3382 pConfig->mcRSNEncryptType = mcRSNEncryptType;
3383 (WLAN_HDD_GET_AP_CTX_PTR(pHostapdAdapter))->ucEncryptType
3384 = RSNEncryptType;
Gopichand Nakkala66c0bd02013-04-10 11:36:29 +05303385 hddLog( LOG1, FL("CSR AuthType = %d, "
Arif Hussain6d2a3322013-11-17 19:50:10 -08003386 "EncryptionType = %d mcEncryptionType = %d"),
Jeff Johnson295189b2012-06-20 16:38:30 -07003387 RSNAuthType, RSNEncryptType, mcRSNEncryptType);
3388 }
3389 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303390
Jeff Johnson295189b2012-06-20 16:38:30 -07003391 pIe = wlan_hdd_get_vendor_oui_ie_ptr(WPA_OUI_TYPE, WPA_OUI_TYPE_SIZE,
3392 pBeacon->tail, pBeacon->tail_len);
3393
3394 if(pIe && pIe[1] && (pIe[0] == DOT11F_EID_WPA))
3395 {
3396 if (pConfig->pRSNWPAReqIE)
3397 {
3398 /*Mixed mode WPA/WPA2*/
3399 memcpy((&wpaRsnIEdata[0] + pConfig->RSNWPAReqIELength), pIe, pIe[1] + 2);
3400 pConfig->RSNWPAReqIELength += pIe[1] + 2;
3401 }
3402 else
3403 {
3404 pConfig->RSNWPAReqIELength = pIe[1] + 2;
3405 memcpy(&wpaRsnIEdata[0], pIe, pConfig->RSNWPAReqIELength);
3406 pConfig->pRSNWPAReqIE = &wpaRsnIEdata[0];
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303407 status = hdd_softap_unpackIE(
Jeff Johnson295189b2012-06-20 16:38:30 -07003408 vos_get_context( VOS_MODULE_ID_SME, pVosContext),
3409 &RSNEncryptType,
3410 &mcRSNEncryptType,
3411 &RSNAuthType,
Chet Lanctot8cecea22014-02-11 19:09:36 -08003412 &MFPCapable,
3413 &MFPRequired,
Jeff Johnson295189b2012-06-20 16:38:30 -07003414 pConfig->pRSNWPAReqIE[1]+2,
3415 pConfig->pRSNWPAReqIE );
3416
3417 if( VOS_STATUS_SUCCESS == status )
3418 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303419 /* Now copy over all the security attributes you have
3420 * parsed out
Jeff Johnson295189b2012-06-20 16:38:30 -07003421 * */
3422 pConfig->RSNEncryptType = RSNEncryptType; // Use the cipher type in the RSN IE
3423 pConfig->mcRSNEncryptType = mcRSNEncryptType;
3424 (WLAN_HDD_GET_AP_CTX_PTR(pHostapdAdapter))->ucEncryptType
3425 = RSNEncryptType;
Gopichand Nakkala66c0bd02013-04-10 11:36:29 +05303426 hddLog( LOG1, FL("CSR AuthType = %d, "
Arif Hussain6d2a3322013-11-17 19:50:10 -08003427 "EncryptionType = %d mcEncryptionType = %d"),
Jeff Johnson295189b2012-06-20 16:38:30 -07003428 RSNAuthType, RSNEncryptType, mcRSNEncryptType);
3429 }
3430 }
3431 }
3432
Jeff Johnson4416a782013-03-25 14:17:50 -07003433 if (pConfig->RSNWPAReqIELength > sizeof wpaRsnIEdata) {
3434 hddLog( VOS_TRACE_LEVEL_ERROR, "**RSNWPAReqIELength is too large***");
3435 return -EINVAL;
3436 }
3437
Jeff Johnson295189b2012-06-20 16:38:30 -07003438 pConfig->SSIDinfo.ssidHidden = VOS_FALSE;
3439
Jeff Johnson04dd8a82012-06-29 20:41:40 -07003440#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
Jeff Johnson295189b2012-06-20 16:38:30 -07003441 if (params->ssid != NULL)
3442 {
3443 memcpy(pConfig->SSIDinfo.ssid.ssId, params->ssid, params->ssid_len);
3444 pConfig->SSIDinfo.ssid.length = params->ssid_len;
3445 if (params->hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE)
3446 pConfig->SSIDinfo.ssidHidden = VOS_TRUE;
3447 }
Jeff Johnson04dd8a82012-06-29 20:41:40 -07003448#else
3449 if (ssid != NULL)
3450 {
3451 memcpy(pConfig->SSIDinfo.ssid.ssId, ssid, ssid_len);
3452 pConfig->SSIDinfo.ssid.length = ssid_len;
3453 if (hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE)
3454 pConfig->SSIDinfo.ssidHidden = VOS_TRUE;
3455 }
3456#endif
3457
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303458 vos_mem_copy(pConfig->self_macaddr.bytes,
Jeff Johnson295189b2012-06-20 16:38:30 -07003459 pHostapdAdapter->macAddressCurrent.bytes, sizeof(v_MACADDR_t));
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303460
Jeff Johnson295189b2012-06-20 16:38:30 -07003461 /* default value */
3462 pConfig->SapMacaddr_acl = eSAP_ACCEPT_UNLESS_DENIED;
3463 pConfig->num_accept_mac = 0;
3464 pConfig->num_deny_mac = 0;
3465
3466 pIe = wlan_hdd_get_vendor_oui_ie_ptr(BLACKLIST_OUI_TYPE, WPA_OUI_TYPE_SIZE,
3467 pBeacon->tail, pBeacon->tail_len);
3468
3469 /* pIe for black list is following form:
3470 type : 1 byte
3471 length : 1 byte
3472 OUI : 4 bytes
3473 acl type : 1 byte
3474 no of mac addr in black list: 1 byte
3475 list of mac_acl_entries: variable, 6 bytes per mac address + sizeof(int) for vlan id
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303476 */
3477 if ((pIe != NULL) && (pIe[1] != 0))
Jeff Johnson295189b2012-06-20 16:38:30 -07003478 {
3479 pConfig->SapMacaddr_acl = pIe[6];
3480 pConfig->num_deny_mac = pIe[7];
Arif Hussain6d2a3322013-11-17 19:50:10 -08003481 hddLog(VOS_TRACE_LEVEL_INFO,"acl type = %d no deny mac = %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07003482 pIe[6], pIe[7]);
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05303483 if (pConfig->num_deny_mac > MAX_ACL_MAC_ADDRESS)
3484 pConfig->num_deny_mac = MAX_ACL_MAC_ADDRESS;
Jeff Johnson295189b2012-06-20 16:38:30 -07003485 acl_entry = (struct qc_mac_acl_entry *)(pIe + 8);
3486 for (i = 0; i < pConfig->num_deny_mac; i++)
3487 {
3488 vos_mem_copy(&pConfig->deny_mac[i], acl_entry->addr, sizeof(qcmacaddr));
3489 acl_entry++;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303490 }
Jeff Johnson295189b2012-06-20 16:38:30 -07003491 }
3492 pIe = wlan_hdd_get_vendor_oui_ie_ptr(WHITELIST_OUI_TYPE, WPA_OUI_TYPE_SIZE,
3493 pBeacon->tail, pBeacon->tail_len);
3494
3495 /* pIe for white list is following form:
3496 type : 1 byte
3497 length : 1 byte
3498 OUI : 4 bytes
3499 acl type : 1 byte
3500 no of mac addr in white list: 1 byte
3501 list of mac_acl_entries: variable, 6 bytes per mac address + sizeof(int) for vlan id
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303502 */
3503 if ((pIe != NULL) && (pIe[1] != 0))
Jeff Johnson295189b2012-06-20 16:38:30 -07003504 {
3505 pConfig->SapMacaddr_acl = pIe[6];
3506 pConfig->num_accept_mac = pIe[7];
Arif Hussain6d2a3322013-11-17 19:50:10 -08003507 hddLog(VOS_TRACE_LEVEL_INFO,"acl type = %d no accept mac = %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07003508 pIe[6], pIe[7]);
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05303509 if (pConfig->num_accept_mac > MAX_ACL_MAC_ADDRESS)
3510 pConfig->num_accept_mac = MAX_ACL_MAC_ADDRESS;
Jeff Johnson295189b2012-06-20 16:38:30 -07003511 acl_entry = (struct qc_mac_acl_entry *)(pIe + 8);
3512 for (i = 0; i < pConfig->num_accept_mac; i++)
3513 {
3514 vos_mem_copy(&pConfig->accept_mac[i], acl_entry->addr, sizeof(qcmacaddr));
3515 acl_entry++;
3516 }
3517 }
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05303518
Jeff Johnson295189b2012-06-20 16:38:30 -07003519 wlan_hdd_set_sapHwmode(pHostapdAdapter);
3520
Jeff Johnsone7245742012-09-05 17:12:55 -07003521#ifdef WLAN_FEATURE_11AC
Ravi Kumar Vaishnavbbaebbe2013-01-15 17:09:48 -08003522 /* Overwrite the hostapd setting for HW mode only for 11ac.
Kiet Lam0f320422013-11-21 19:29:17 +05303523 * This is valid only if mode is set to 11n in hostapd, either AUTO or
3524 * 11ac in .ini and 11ac is supported by both host and firmware.
3525 * Otherwise, leave whatever is set in hostapd (a OR b OR g OR n mode)
3526 */
Ravi Kumar Vaishnavbbaebbe2013-01-15 17:09:48 -08003527 if( ((pConfig->SapHw_mode == eSAP_DOT11_MODE_11n) ||
3528 (pConfig->SapHw_mode == eSAP_DOT11_MODE_11n_ONLY)) &&
Abhishek Singhf0ac1752014-03-05 17:47:09 +05303529 (( sapDot11Mode == eHDD_DOT11_MODE_AUTO ) ||
3530 ( sapDot11Mode == eHDD_DOT11_MODE_11ac ) ||
3531 ( sapDot11Mode == eHDD_DOT11_MODE_11ac_ONLY ) ) &&
3532 (sme_IsFeatureSupportedByDriver(DOT11AC)) &&
3533 (sme_IsFeatureSupportedByFW(DOT11AC)) )
Jeff Johnsone7245742012-09-05 17:12:55 -07003534 {
Siddharth Bhalf42f8592014-05-15 13:39:07 +05303535 v_U32_t operatingBand = 0;
Jeff Johnsone7245742012-09-05 17:12:55 -07003536 pConfig->SapHw_mode = eSAP_DOT11_MODE_11ac;
Siddharth Bhalf42f8592014-05-15 13:39:07 +05303537 ccmCfgGetInt(hHal, WNI_CFG_SAP_CHANNEL_SELECT_OPERATING_BAND, &operatingBand);
Ravi Joshi83bfaa12013-05-28 22:12:08 -07003538
Siddharth Bhal5cba24e2014-05-08 18:59:39 +05303539 /* If ACS disable and selected channel <= 14
3540 * OR
3541 * ACS enabled and ACS operating band is choosen as 2.4
3542 * AND
3543 * VHT in 2.4G Disabled
3544 * THEN
3545 * Fallback to 11N mode
3546 */
3547 if (((AUTO_CHANNEL_SELECT != pConfig->channel && pConfig->channel <= SIR_11B_CHANNEL_END)
3548 || (AUTO_CHANNEL_SELECT == pConfig->channel &&
Siddharth Bhalf42f8592014-05-15 13:39:07 +05303549 operatingBand == RF_SUBBAND_2_4_GHZ)) &&
Siddharth Bhal5cba24e2014-05-08 18:59:39 +05303550 iniConfig->enableVhtFor24GHzBand == FALSE)
Ravi Joshi83bfaa12013-05-28 22:12:08 -07003551 {
Siddharth Bhalf42f8592014-05-15 13:39:07 +05303552 hddLog(LOGW, FL("Setting hwmode to 11n, operatingBand = %d, Channel = %d"),
3553 operatingBand, pConfig->channel);
Ravi Joshi83bfaa12013-05-28 22:12:08 -07003554 pConfig->SapHw_mode = eSAP_DOT11_MODE_11n;
3555 }
Jeff Johnsone7245742012-09-05 17:12:55 -07003556 }
3557#endif
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303558
Ravi Joshiaeb7d9e2013-05-02 12:28:14 -07003559 if ( AUTO_CHANNEL_SELECT != pConfig->channel )
3560 {
3561 sme_SelectCBMode(hHal,
3562 sapConvertSapPhyModeToCsrPhyMode(pConfig->SapHw_mode),
3563 pConfig->channel);
3564 }
Jeff Johnson295189b2012-06-20 16:38:30 -07003565 // ht_capab is not what the name conveys,this is used for protection bitmap
3566 pConfig->ht_capab =
3567 (WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini->apProtection;
3568
3569 if ( 0 != wlan_hdd_cfg80211_update_apies(pHostapdAdapter, params) )
3570 {
3571 hddLog(LOGE, FL("SAP Not able to set AP IEs"));
3572 return -EINVAL;
3573 }
3574
3575 //Uapsd Enabled Bit
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303576 pConfig->UapsdEnable =
Jeff Johnson295189b2012-06-20 16:38:30 -07003577 (WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini->apUapsdEnabled;
3578 //Enable OBSS protection
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303579 pConfig->obssProtEnabled =
3580 (WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini->apOBSSProtEnabled;
Jeff Johnson295189b2012-06-20 16:38:30 -07003581
Chet Lanctot8cecea22014-02-11 19:09:36 -08003582#ifdef WLAN_FEATURE_11W
3583 pConfig->mfpCapable = MFPCapable;
3584 pConfig->mfpRequired = MFPRequired;
3585 hddLog(LOGW, FL("Soft AP MFP capable %d, MFP required %d\n"),
3586 pConfig->mfpCapable, pConfig->mfpRequired);
3587#endif
3588
Arif Hussain6d2a3322013-11-17 19:50:10 -08003589 hddLog(LOGW, FL("SOftAP macaddress : "MAC_ADDRESS_STR),
Jeff Johnson295189b2012-06-20 16:38:30 -07003590 MAC_ADDR_ARRAY(pHostapdAdapter->macAddressCurrent.bytes));
Arif Hussain6d2a3322013-11-17 19:50:10 -08003591 hddLog(LOGW,FL("ssid =%s, beaconint=%d, channel=%d"),
3592 pConfig->SSIDinfo.ssid.ssId, (int)pConfig->beacon_int,
3593 (int)pConfig->channel);
3594 hddLog(LOGW,FL("hw_mode=%x, privacy=%d, authType=%d"),
3595 pConfig->SapHw_mode, pConfig->privacy,
3596 pConfig->authType);
3597 hddLog(LOGW,FL("RSN/WPALen=%d, Uapsd = %d"),
3598 (int)pConfig->RSNWPAReqIELength, pConfig->UapsdEnable);
3599 hddLog(LOGW,FL("ProtEnabled = %d, OBSSProtEnabled = %d"),
3600 pConfig->protEnabled, pConfig->obssProtEnabled);
Jeff Johnson295189b2012-06-20 16:38:30 -07003601
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303602 if(test_bit(SOFTAP_BSS_STARTED, &pHostapdAdapter->event_flags))
Jeff Johnson295189b2012-06-20 16:38:30 -07003603 {
3604 //Bss already started. just return.
3605 //TODO Probably it should update some beacon params.
3606 hddLog( LOGE, "Bss Already started...Ignore the request");
3607 EXIT();
3608 return 0;
3609 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303610
Jeff Johnson295189b2012-06-20 16:38:30 -07003611 pConfig->persona = pHostapdAdapter->device_mode;
3612
3613 pSapEventCallback = hdd_hostapd_SAPEventCB;
3614 if(WLANSAP_StartBss(pVosContext, pSapEventCallback, pConfig,
3615 (v_PVOID_t)pHostapdAdapter->dev) != VOS_STATUS_SUCCESS)
3616 {
Arif Hussain6d2a3322013-11-17 19:50:10 -08003617 hddLog(LOGE,FL("SAP Start Bss fail"));
Jeff Johnson295189b2012-06-20 16:38:30 -07003618 return -EINVAL;
3619 }
3620
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303621 hddLog(LOG1,
Jeff Johnson295189b2012-06-20 16:38:30 -07003622 FL("Waiting for Scan to complete(auto mode) and BSS to start"));
3623
3624 status = vos_wait_single_event(&pHostapdState->vosEvent, 10000);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303625
Jeff Johnson295189b2012-06-20 16:38:30 -07003626 if (!VOS_IS_STATUS_SUCCESS(status))
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303627 {
3628 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08003629 ("ERROR: HDD vos wait for single_event failed!!"));
Tushnim Bhattacharyyaad37df12013-10-02 12:01:33 -07003630 smeGetCommandQStatus(hHal);
Jeff Johnson295189b2012-06-20 16:38:30 -07003631 VOS_ASSERT(0);
3632 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303633
Jeff Johnson295189b2012-06-20 16:38:30 -07003634 set_bit(SOFTAP_BSS_STARTED, &pHostapdAdapter->event_flags);
3635
Madan Mohan Koyyalamudi26bd7142012-10-30 18:14:19 -07003636#ifdef WLAN_FEATURE_P2P_DEBUG
3637 if (pHostapdAdapter->device_mode == WLAN_HDD_P2P_GO)
3638 {
3639 if(globalP2PConnectionStatus == P2P_GO_NEG_COMPLETED)
3640 {
3641 globalP2PConnectionStatus = P2P_GO_COMPLETED_STATE;
3642 hddLog(LOGE,"[P2P State] From Go nego completed to "
Jeff Johnson1250df42012-12-10 14:31:52 -08003643 "Non-autonomous Group started");
Madan Mohan Koyyalamudi26bd7142012-10-30 18:14:19 -07003644 }
3645 else if(globalP2PConnectionStatus == P2P_NOT_ACTIVE)
3646 {
3647 globalP2PConnectionStatus = P2P_GO_COMPLETED_STATE;
3648 hddLog(LOGE,"[P2P State] From Inactive to "
Jeff Johnson1250df42012-12-10 14:31:52 -08003649 "Autonomous Group started");
Madan Mohan Koyyalamudi26bd7142012-10-30 18:14:19 -07003650 }
3651 }
3652#endif
3653
Jeff Johnson295189b2012-06-20 16:38:30 -07003654 pHostapdState->bCommit = TRUE;
3655 EXIT();
3656
3657 return 0;
3658}
3659
Jeff Johnson04dd8a82012-06-29 20:41:40 -07003660#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303661static int wlan_hdd_cfg80211_add_beacon(struct wiphy *wiphy,
3662 struct net_device *dev,
Jeff Johnson295189b2012-06-20 16:38:30 -07003663 struct beacon_parameters *params)
3664{
3665 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303666 hdd_context_t *pHddCtx;
3667 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07003668
3669 ENTER();
3670
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05303671 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
3672 TRACE_CODE_HDD_CFG80211_ADD_BEACON,
3673 pAdapter->sessionId, params->interval));
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05303674 hddLog(VOS_TRACE_LEVEL_INFO_HIGH, "device mode=%s (%d)",
3675 hdd_device_modetoString(pAdapter->device_mode),
3676 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07003677
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303678 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
3679 status = wlan_hdd_validate_context(pHddCtx);
3680
3681 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07003682 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303683 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3684 "%s: HDD context is not valid", __func__);
3685 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07003686 }
3687
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303688 if ( (pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -07003689 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Jeff Johnson295189b2012-06-20 16:38:30 -07003690 )
3691 {
3692 beacon_data_t *old,*new;
3693
3694 old = pAdapter->sessionCtx.ap.beacon;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303695
Jeff Johnson295189b2012-06-20 16:38:30 -07003696 if (old)
c_hpothu6ff1c3c2013-10-01 19:01:57 +05303697 {
3698 hddLog(VOS_TRACE_LEVEL_WARN,
3699 FL("already beacon info added to session(%d)"),
3700 pAdapter->sessionId);
Jeff Johnson295189b2012-06-20 16:38:30 -07003701 return -EALREADY;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05303702 }
Jeff Johnson295189b2012-06-20 16:38:30 -07003703
3704 status = wlan_hdd_cfg80211_alloc_new_beacon(pAdapter,&new,params);
3705
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303706 if(status != VOS_STATUS_SUCCESS)
Jeff Johnson295189b2012-06-20 16:38:30 -07003707 {
3708 hddLog(VOS_TRACE_LEVEL_FATAL,
Arif Hussain6d2a3322013-11-17 19:50:10 -08003709 "%s:Error!!! Allocating the new beacon",__func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07003710 return -EINVAL;
3711 }
3712
3713 pAdapter->sessionCtx.ap.beacon = new;
3714
3715 status = wlan_hdd_cfg80211_start_bss(pAdapter, params);
3716 }
3717
3718 EXIT();
3719 return status;
3720}
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303721
3722static int wlan_hdd_cfg80211_set_beacon(struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07003723 struct net_device *dev,
3724 struct beacon_parameters *params)
3725{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303726 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05303727 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303728 hdd_context_t *pHddCtx;
3729 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07003730
3731 ENTER();
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05303732 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
3733 TRACE_CODE_HDD_CFG80211_SET_BEACON,
3734 pAdapter->sessionId, pHddStaCtx->conn_info.authType));
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05303735 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s (%d)",
3736 __func__, hdd_device_modetoString(pAdapter->device_mode),
3737 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07003738
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303739 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
3740 status = wlan_hdd_validate_context(pHddCtx);
3741
3742 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07003743 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303744 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3745 "%s: HDD context is not valid", __func__);
3746 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07003747 }
3748
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303749 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -07003750 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303751 )
Jeff Johnson295189b2012-06-20 16:38:30 -07003752 {
3753 beacon_data_t *old,*new;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303754
Jeff Johnson295189b2012-06-20 16:38:30 -07003755 old = pAdapter->sessionCtx.ap.beacon;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303756
Jeff Johnson295189b2012-06-20 16:38:30 -07003757 if (!old)
c_hpothu6ff1c3c2013-10-01 19:01:57 +05303758 {
3759 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3760 FL("session(%d) old and new heads points to NULL"),
3761 pAdapter->sessionId);
Jeff Johnson295189b2012-06-20 16:38:30 -07003762 return -ENOENT;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05303763 }
Jeff Johnson295189b2012-06-20 16:38:30 -07003764
3765 status = wlan_hdd_cfg80211_alloc_new_beacon(pAdapter,&new,params);
3766
3767 if(status != VOS_STATUS_SUCCESS) {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303768 hddLog(VOS_TRACE_LEVEL_FATAL,
Arif Hussain6d2a3322013-11-17 19:50:10 -08003769 "%s: Error!!! Allocating the new beacon",__func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07003770 return -EINVAL;
3771 }
3772
3773 pAdapter->sessionCtx.ap.beacon = new;
3774
3775 status = wlan_hdd_cfg80211_start_bss(pAdapter, params);
3776 }
3777
3778 EXIT();
3779 return status;
3780}
3781
Jeff Johnson04dd8a82012-06-29 20:41:40 -07003782#endif //(LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
3783
3784#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
Jeff Johnson295189b2012-06-20 16:38:30 -07003785static int wlan_hdd_cfg80211_del_beacon(struct wiphy *wiphy,
3786 struct net_device *dev)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07003787#else
3788static int wlan_hdd_cfg80211_stop_ap (struct wiphy *wiphy,
3789 struct net_device *dev)
3790#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07003791{
3792 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Jeff Johnsone7245742012-09-05 17:12:55 -07003793 hdd_context_t *pHddCtx = NULL;
3794 hdd_scaninfo_t *pScanInfo = NULL;
3795 hdd_adapter_t *staAdapter = NULL;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303796 VOS_STATUS status;
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +05303797 long ret;
Jeff Johnson295189b2012-06-20 16:38:30 -07003798
3799 ENTER();
3800
3801 if (NULL == pAdapter)
3802 {
3803 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07003804 "%s: HDD adapter context is Null", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07003805 return -ENODEV;
3806 }
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07003807
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05303808 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
3809 TRACE_CODE_HDD_CFG80211_STOP_AP,
3810 pAdapter->sessionId, pAdapter->device_mode));
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303811 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
3812 status = wlan_hdd_validate_context(pHddCtx);
3813
3814 if (0 != status)
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07003815 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303816 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3817 "%s: HDD context is not valid", __func__);
3818 return status;
Jeff Johnson4416a782013-03-25 14:17:50 -07003819 }
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07003820
3821 staAdapter = hdd_get_adapter(pAdapter->pHddCtx, WLAN_HDD_INFRA_STATION);
3822 if (NULL == staAdapter)
3823 {
3824 staAdapter = hdd_get_adapter(pAdapter->pHddCtx, WLAN_HDD_P2P_CLIENT);
3825 if (NULL == staAdapter)
3826 {
Rajesh Chauhan52d885b2013-11-01 10:54:25 -07003827 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO_HIGH,
3828 "%s: HDD adapter context for STA/P2P-CLI is Null",
3829 __func__);
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07003830 }
3831 }
3832
3833 pScanInfo = &pHddCtx->scan_info;
3834
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05303835 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s (%d)",
3836 __func__, hdd_device_modetoString(pAdapter->device_mode),
3837 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07003838
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +05303839 ret = wlan_hdd_scan_abort(pAdapter);
3840
3841 if (ret <= 0)
Jeff Johnsone7245742012-09-05 17:12:55 -07003842 {
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +05303843 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3844 FL("Timeout occurred while waiting for abortscan %ld"), ret);
c_hpothu6ff1c3c2013-10-01 19:01:57 +05303845
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +05303846 if (pHddCtx->isLogpInProgress)
Jeff Johnsone7245742012-09-05 17:12:55 -07003847 {
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +05303848 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3849 "%s: LOGP in Progress. Ignore!!!", __func__);
Yue Ma4f55ef32014-01-23 16:45:33 -08003850
Jeff Johnsone7245742012-09-05 17:12:55 -07003851 VOS_ASSERT(pScanInfo->mScanPending);
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +05303852 return -EAGAIN;
Jeff Johnsone7245742012-09-05 17:12:55 -07003853 }
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +05303854 VOS_ASSERT(pScanInfo->mScanPending);
Jeff Johnsone7245742012-09-05 17:12:55 -07003855 }
3856
Arun Kumar Khandavallia3bd8002014-01-17 16:21:19 +05303857 hdd_hostapd_stop(dev);
3858
Jeff Johnson295189b2012-06-20 16:38:30 -07003859 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -07003860 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Jeff Johnson295189b2012-06-20 16:38:30 -07003861 )
3862 {
3863 beacon_data_t *old;
3864
3865 old = pAdapter->sessionCtx.ap.beacon;
3866
3867 if (!old)
c_hpothu6ff1c3c2013-10-01 19:01:57 +05303868 {
3869 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3870 FL("session(%d) beacon data points to NULL"),
3871 pAdapter->sessionId);
Jeff Johnson295189b2012-06-20 16:38:30 -07003872 return -ENOENT;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05303873 }
Jeff Johnson295189b2012-06-20 16:38:30 -07003874
Jeff Johnson295189b2012-06-20 16:38:30 -07003875 hdd_cleanup_actionframe(pHddCtx, pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07003876
3877 mutex_lock(&pHddCtx->sap_lock);
3878 if(test_bit(SOFTAP_BSS_STARTED, &pAdapter->event_flags))
3879 {
Jeff Johnson4416a782013-03-25 14:17:50 -07003880 if ( VOS_STATUS_SUCCESS == (status = WLANSAP_StopBss(pHddCtx->pvosContext) ) )
Jeff Johnson295189b2012-06-20 16:38:30 -07003881 {
3882 hdd_hostapd_state_t *pHostapdState = WLAN_HDD_GET_HOSTAP_STATE_PTR(pAdapter);
3883
3884 status = vos_wait_single_event(&pHostapdState->vosEvent, 10000);
3885
3886 if (!VOS_IS_STATUS_SUCCESS(status))
3887 {
3888 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08003889 ("ERROR: HDD vos wait for single_event failed!!"));
Jeff Johnson295189b2012-06-20 16:38:30 -07003890 VOS_ASSERT(0);
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05303891 }
3892 }
Jeff Johnson295189b2012-06-20 16:38:30 -07003893 clear_bit(SOFTAP_BSS_STARTED, &pAdapter->event_flags);
3894 }
3895 mutex_unlock(&pHddCtx->sap_lock);
3896
3897 if(status != VOS_STATUS_SUCCESS)
3898 {
3899 hddLog(VOS_TRACE_LEVEL_FATAL,
Arif Hussain6d2a3322013-11-17 19:50:10 -08003900 "%s:Error!!! Stopping the BSS",__func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07003901 return -EINVAL;
3902 }
3903
Jeff Johnson4416a782013-03-25 14:17:50 -07003904 if (ccmCfgSetInt(pHddCtx->hHal,
Jeff Johnson295189b2012-06-20 16:38:30 -07003905 WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG, 0,NULL, eANI_BOOLEAN_FALSE)
3906 ==eHAL_STATUS_FAILURE)
3907 {
3908 hddLog(LOGE,
Arif Hussain6d2a3322013-11-17 19:50:10 -08003909 "Could not pass on WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG to CCM");
Jeff Johnson295189b2012-06-20 16:38:30 -07003910 }
3911
Jeff Johnson4416a782013-03-25 14:17:50 -07003912 if ( eHAL_STATUS_FAILURE == ccmCfgSetInt(pHddCtx->hHal,
Jeff Johnson295189b2012-06-20 16:38:30 -07003913 WNI_CFG_ASSOC_RSP_ADDNIE_FLAG, 0, NULL,
3914 eANI_BOOLEAN_FALSE) )
3915 {
3916 hddLog(LOGE,
Arif Hussain6d2a3322013-11-17 19:50:10 -08003917 "Could not pass on WNI_CFG_ASSOC_RSP_ADDNIE_FLAG to CCM");
Jeff Johnson295189b2012-06-20 16:38:30 -07003918 }
3919
3920 // Reset WNI_CFG_PROBE_RSP Flags
3921 wlan_hdd_reset_prob_rspies(pAdapter);
3922
3923 pAdapter->sessionCtx.ap.beacon = NULL;
3924 kfree(old);
Madan Mohan Koyyalamudi26bd7142012-10-30 18:14:19 -07003925#ifdef WLAN_FEATURE_P2P_DEBUG
3926 if((pAdapter->device_mode == WLAN_HDD_P2P_GO) &&
3927 (globalP2PConnectionStatus == P2P_GO_COMPLETED_STATE))
3928 {
3929 hddLog(LOGE,"[P2P State] From GO completed to Inactive state "
3930 "GO got removed");
3931 globalP2PConnectionStatus = P2P_NOT_ACTIVE;
3932 }
3933#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07003934 }
3935 EXIT();
3936 return status;
3937}
Jeff Johnson04dd8a82012-06-29 20:41:40 -07003938
3939#if (LINUX_VERSION_CODE > KERNEL_VERSION(3,3,0))
3940
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05303941static int wlan_hdd_cfg80211_start_ap(struct wiphy *wiphy,
3942 struct net_device *dev,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07003943 struct cfg80211_ap_settings *params)
3944{
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05303945 hdd_adapter_t *pAdapter;
3946 hdd_context_t *pHddCtx;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303947 int status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07003948
3949 ENTER();
3950
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05303951 if (NULL == dev)
Madan Mohan Koyyalamudib2c36892012-10-18 20:52:38 -07003952 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303953 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05303954 "%s: Device is Null", __func__);
3955 return -ENODEV;
3956 }
3957
3958 pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
3959 if (NULL == pAdapter)
3960 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303961 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05303962 "%s: HDD adapter is Null", __func__);
3963 return -ENODEV;
3964 }
3965
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05303966 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
3967 TRACE_CODE_HDD_CFG80211_START_AP, pAdapter->sessionId,
3968 params-> beacon_interval));
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05303969 if (WLAN_HDD_ADAPTER_MAGIC != pAdapter->magic)
3970 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303971 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05303972 "%s: HDD adapter magic is invalid", __func__);
3973 return -ENODEV;
3974 }
3975
3976 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303977 status = wlan_hdd_validate_context(pHddCtx);
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05303978
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303979 if (0 != status)
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05303980 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303981 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3982 "%s: HDD context is not valid", __func__);
3983 return status;
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05303984 }
3985
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05303986 hddLog(VOS_TRACE_LEVEL_INFO_HIGH, "%s: device mode = %s (%d)",
3987 __func__, hdd_device_modetoString(pAdapter->device_mode),
3988 pAdapter->device_mode);
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05303989
3990 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07003991 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07003992 )
3993 {
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05303994 beacon_data_t *old, *new;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07003995
3996 old = pAdapter->sessionCtx.ap.beacon;
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05303997
Jeff Johnson04dd8a82012-06-29 20:41:40 -07003998 if (old)
c_hpothu6ff1c3c2013-10-01 19:01:57 +05303999 {
4000 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_WARN,
4001 FL("already beacon info added to session(%d)"),
4002 pAdapter->sessionId);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004003 return -EALREADY;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05304004 }
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004005
4006 status = wlan_hdd_cfg80211_alloc_new_beacon(pAdapter, &new, &params->beacon, params->dtim_period);
4007
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05304008 if (status != 0)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004009 {
4010 hddLog(VOS_TRACE_LEVEL_FATAL,
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05304011 "%s:Error!!! Allocating the new beacon", __func__);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004012 return -EINVAL;
4013 }
4014 pAdapter->sessionCtx.ap.beacon = new;
Viral Modi3a32cc52013-02-08 11:14:52 -08004015#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,6,0))
Yue Maf49ba872013-08-19 12:04:25 -07004016 wlan_hdd_cfg80211_set_channel(wiphy, dev,
4017#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,8,0))
4018 params->channel, params->channel_type);
4019#else
4020 params->chandef.chan, cfg80211_get_chandef_type(&(params->chandef)));
4021#endif
Viral Modi3a32cc52013-02-08 11:14:52 -08004022#endif
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004023 status = wlan_hdd_cfg80211_start_bss(pAdapter, &params->beacon, params->ssid,
4024 params->ssid_len, params->hidden_ssid);
4025 }
4026
4027 EXIT();
4028 return status;
4029}
4030
4031
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304032static int wlan_hdd_cfg80211_change_beacon(struct wiphy *wiphy,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004033 struct net_device *dev,
4034 struct cfg80211_beacon_data *params)
4035{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304036 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05304037 hdd_context_t *pHddCtx;
4038 int status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004039
4040 ENTER();
4041
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05304042 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
4043 TRACE_CODE_HDD_CFG80211_CHANGE_BEACON,
4044 pAdapter->sessionId, pAdapter->device_mode));
Arif Hussain6d2a3322013-11-17 19:50:10 -08004045 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %d",
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004046 __func__, pAdapter->device_mode);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05304047
4048 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
4049 status = wlan_hdd_validate_context(pHddCtx);
4050
4051 if (0 != status)
Madan Mohan Koyyalamudib2c36892012-10-18 20:52:38 -07004052 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05304053 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4054 "%s: HDD context is not valid", __func__);
4055 return status;
Madan Mohan Koyyalamudib2c36892012-10-18 20:52:38 -07004056 }
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004057
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304058 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004059 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304060 )
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004061 {
4062 beacon_data_t *old,*new;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304063
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004064 old = pAdapter->sessionCtx.ap.beacon;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304065
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004066 if (!old)
c_hpothu6ff1c3c2013-10-01 19:01:57 +05304067 {
4068 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4069 FL("session(%d) beacon data points to NULL"),
4070 pAdapter->sessionId);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004071 return -ENOENT;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05304072 }
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004073
4074 status = wlan_hdd_cfg80211_alloc_new_beacon(pAdapter, &new, params, 0);
4075
4076 if(status != VOS_STATUS_SUCCESS) {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304077 hddLog(VOS_TRACE_LEVEL_FATAL,
Arif Hussain6d2a3322013-11-17 19:50:10 -08004078 "%s: Error!!! Allocating the new beacon",__func__);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004079 return -EINVAL;
4080 }
4081
4082 pAdapter->sessionCtx.ap.beacon = new;
4083
4084 status = wlan_hdd_cfg80211_start_bss(pAdapter, params, NULL, 0, 0);
4085 }
4086
4087 EXIT();
4088 return status;
4089}
4090
4091#endif //(LINUX_VERSION_CODE > KERNEL_VERSION(3,3,0))
4092
Jeff Johnson295189b2012-06-20 16:38:30 -07004093
Mahesh A Saptasagar179d2252014-06-02 21:32:21 +05304094static int __wlan_hdd_cfg80211_change_bss (struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07004095 struct net_device *dev,
4096 struct bss_parameters *params)
4097{
4098 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
4099
4100 ENTER();
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304101
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05304102 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
4103 TRACE_CODE_HDD_CFG80211_CHANGE_BSS,
4104 pAdapter->sessionId, params->ap_isolate));
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05304105 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s (%d)",
4106 __func__, hdd_device_modetoString(pAdapter->device_mode),
4107 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07004108
4109 if((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -07004110 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304111 )
Jeff Johnson295189b2012-06-20 16:38:30 -07004112 {
4113 /* ap_isolate == -1 means that in change bss, upper layer doesn't
4114 * want to update this parameter */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304115 if (-1 != params->ap_isolate)
Jeff Johnson295189b2012-06-20 16:38:30 -07004116 {
4117 pAdapter->sessionCtx.ap.apDisableIntraBssFwd = !!params->ap_isolate;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304118 }
Jeff Johnson295189b2012-06-20 16:38:30 -07004119 }
4120
4121 EXIT();
4122 return 0;
4123}
4124
Mahesh A Saptasagar179d2252014-06-02 21:32:21 +05304125static int wlan_hdd_cfg80211_change_bss (struct wiphy *wiphy,
4126 struct net_device *dev,
4127 struct bss_parameters *params)
4128{
4129 int ret;
4130
4131 vos_ssr_protect(__func__);
4132 ret = __wlan_hdd_cfg80211_change_bss(wiphy, dev, params);
4133 vos_ssr_unprotect(__func__);
4134
4135 return ret;
4136}
Kiet Lam10841362013-11-01 11:36:50 +05304137/* FUNCTION: wlan_hdd_change_country_code_cd
4138* to wait for contry code completion
4139*/
4140void* wlan_hdd_change_country_code_cb(void *pAdapter)
4141{
4142 hdd_adapter_t *call_back_pAdapter = pAdapter;
4143 complete(&call_back_pAdapter->change_country_code);
4144 return NULL;
4145}
4146
Jeff Johnson295189b2012-06-20 16:38:30 -07004147/*
Mahesh A Saptasagar0e59c472014-04-14 19:17:41 +05304148 * FUNCTION: __wlan_hdd_cfg80211_change_iface
Jeff Johnson295189b2012-06-20 16:38:30 -07004149 * This function is used to set the interface type (INFRASTRUCTURE/ADHOC)
4150 */
Mahesh A Saptasagar0e59c472014-04-14 19:17:41 +05304151int __wlan_hdd_cfg80211_change_iface( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07004152 struct net_device *ndev,
4153 enum nl80211_iftype type,
4154 u32 *flags,
4155 struct vif_params *params
4156 )
4157{
4158 struct wireless_dev *wdev;
4159 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( ndev );
Rajesh Chauhana0516c62014-01-30 16:11:18 -08004160 hdd_context_t *pHddCtx;
Mohit Khanna0f232092012-09-11 14:46:08 -07004161 hdd_adapter_t *pP2pAdapter = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07004162 tCsrRoamProfile *pRoamProfile = NULL;
4163 eCsrRoamBssType LastBSSType;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05304164 hdd_config_t *pConfig = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07004165 eMib_dot11DesiredBssType connectedBssType;
4166 VOS_STATUS status;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05304167 long ret;
Jeff Johnson295189b2012-06-20 16:38:30 -07004168
4169 ENTER();
4170
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05304171 if (!pAdapter)
Rajesh Chauhana0516c62014-01-30 16:11:18 -08004172 {
4173 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4174 "%s: Adapter context is null", __func__);
4175 return VOS_STATUS_E_FAILURE;
4176 }
4177
4178 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
4179 if (!pHddCtx)
4180 {
4181 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4182 "%s: HDD context is null", __func__);
4183 return VOS_STATUS_E_FAILURE;
4184 }
4185
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05304186 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
4187 TRACE_CODE_HDD_CFG80211_CHANGE_IFACE,
4188 pAdapter->sessionId, type));
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05304189 status = wlan_hdd_validate_context(pHddCtx);
4190
4191 if (0 != status)
Jeff Johnson295189b2012-06-20 16:38:30 -07004192 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05304193 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4194 "%s: HDD context is not valid", __func__);
4195 return status;
Jeff Johnson295189b2012-06-20 16:38:30 -07004196 }
4197
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05304198 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s (%d)",
4199 __func__, hdd_device_modetoString(pAdapter->device_mode),
4200 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07004201
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05304202 pConfig = pHddCtx->cfg_ini;
Jeff Johnson295189b2012-06-20 16:38:30 -07004203 wdev = ndev->ieee80211_ptr;
4204
4205#ifdef WLAN_BTAMP_FEATURE
4206 if((NL80211_IFTYPE_P2P_CLIENT == type)||
4207 (NL80211_IFTYPE_ADHOC == type)||
4208 (NL80211_IFTYPE_AP == type)||
4209 (NL80211_IFTYPE_P2P_GO == type))
4210 {
4211 pHddCtx->isAmpAllowed = VOS_FALSE;
4212 // stop AMP traffic
4213 status = WLANBAP_StopAmp();
4214 if(VOS_STATUS_SUCCESS != status )
4215 {
4216 pHddCtx->isAmpAllowed = VOS_TRUE;
4217 hddLog(VOS_TRACE_LEVEL_FATAL,
4218 "%s: Failed to stop AMP", __func__);
4219 return -EINVAL;
4220 }
4221 }
4222#endif //WLAN_BTAMP_FEATURE
4223 /* Reset the current device mode bit mask*/
4224 wlan_hdd_clear_concurrency_mode(pHddCtx, pAdapter->device_mode);
4225
4226 if( (pAdapter->device_mode == WLAN_HDD_INFRA_STATION)
Jeff Johnson295189b2012-06-20 16:38:30 -07004227 || (pAdapter->device_mode == WLAN_HDD_P2P_CLIENT)
Jeff Johnsone7245742012-09-05 17:12:55 -07004228 || (pAdapter->device_mode == WLAN_HDD_P2P_DEVICE)
Jeff Johnson295189b2012-06-20 16:38:30 -07004229 )
4230 {
4231 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Rajesh Chauhana0516c62014-01-30 16:11:18 -08004232 if (!pWextState)
4233 {
4234 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4235 "%s: pWextState is null", __func__);
4236 return VOS_STATUS_E_FAILURE;
4237 }
Jeff Johnson295189b2012-06-20 16:38:30 -07004238 pRoamProfile = &pWextState->roamProfile;
4239 LastBSSType = pRoamProfile->BSSType;
4240
4241 switch (type)
4242 {
4243 case NL80211_IFTYPE_STATION:
Jeff Johnson295189b2012-06-20 16:38:30 -07004244 case NL80211_IFTYPE_P2P_CLIENT:
Jeff Johnson295189b2012-06-20 16:38:30 -07004245 hddLog(VOS_TRACE_LEVEL_INFO,
4246 "%s: setting interface Type to INFRASTRUCTURE", __func__);
4247 pRoamProfile->BSSType = eCSR_BSS_TYPE_INFRASTRUCTURE;
Jeff Johnsone7245742012-09-05 17:12:55 -07004248#ifdef WLAN_FEATURE_11AC
4249 if(pConfig->dot11Mode == eHDD_DOT11_MODE_AUTO)
4250 {
4251 pConfig->dot11Mode = eHDD_DOT11_MODE_11ac;
4252 }
4253#endif
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304254 pRoamProfile->phyMode =
Jeff Johnsone7245742012-09-05 17:12:55 -07004255 hdd_cfg_xlate_to_csr_phy_mode(pConfig->dot11Mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07004256 wdev->iftype = type;
Gopichand Nakkalaf527dc62012-12-31 16:35:10 -08004257 //Check for sub-string p2p to confirm its a p2p interface
4258 if (NULL != strstr(ndev->name,"p2p"))
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304259 {
Gopichand Nakkala864d3552012-12-31 16:08:51 -08004260 pAdapter->device_mode = (type == NL80211_IFTYPE_STATION) ?
4261 WLAN_HDD_P2P_DEVICE : WLAN_HDD_P2P_CLIENT;
4262 }
4263 else
4264 {
4265 pAdapter->device_mode = (type == NL80211_IFTYPE_STATION) ?
Jeff Johnson295189b2012-06-20 16:38:30 -07004266 WLAN_HDD_INFRA_STATION: WLAN_HDD_P2P_CLIENT;
Gopichand Nakkala864d3552012-12-31 16:08:51 -08004267 }
Madan Mohan Koyyalamudi81746922013-07-17 14:38:51 +05304268#ifdef FEATURE_WLAN_TDLS
4269 /* The open adapter for the p2p shall skip initializations in
4270 * tdls_init if the device mode is WLAN_HDD_P2P_DEVICE, for
4271 * TDLS is supported only on WLAN_HDD_P2P_CLIENT. Hence invoke
4272 * tdls_init when the change_iface sets the device mode to
4273 * WLAN_HDD_P2P_CLIENT.
4274 */
4275
4276 if ( pAdapter->device_mode == WLAN_HDD_P2P_CLIENT)
4277 {
4278 if (0 != wlan_hdd_tdls_init (pAdapter))
4279 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05304280 hddLog(VOS_TRACE_LEVEL_ERROR,
4281 "%s: tdls initialization failed", __func__);
Madan Mohan Koyyalamudi81746922013-07-17 14:38:51 +05304282 return -EINVAL;
4283 }
4284 }
4285#endif
4286
Jeff Johnson295189b2012-06-20 16:38:30 -07004287 break;
4288 case NL80211_IFTYPE_ADHOC:
4289 hddLog(VOS_TRACE_LEVEL_INFO,
4290 "%s: setting interface Type to ADHOC", __func__);
4291 pRoamProfile->BSSType = eCSR_BSS_TYPE_START_IBSS;
4292 pRoamProfile->phyMode =
4293 hdd_cfg_xlate_to_csr_phy_mode(pConfig->dot11Mode);
Shailender Karmuchia734f332013-04-19 14:02:48 -07004294 pAdapter->device_mode = WLAN_HDD_IBSS;
Jeff Johnson295189b2012-06-20 16:38:30 -07004295 wdev->iftype = type;
4296 break;
4297
4298 case NL80211_IFTYPE_AP:
Jeff Johnson295189b2012-06-20 16:38:30 -07004299 case NL80211_IFTYPE_P2P_GO:
Jeff Johnson295189b2012-06-20 16:38:30 -07004300 {
4301 hddLog(VOS_TRACE_LEVEL_INFO_HIGH,
4302 "%s: setting interface Type to %s", __func__,
4303 (type == NL80211_IFTYPE_AP) ? "SoftAP" : "P2pGo");
4304
Gopichand Nakkalaf527dc62012-12-31 16:35:10 -08004305 //Cancel any remain on channel for GO mode
4306 if (NL80211_IFTYPE_P2P_GO == type)
4307 {
4308 wlan_hdd_cancel_existing_remain_on_channel(pAdapter);
4309 }
Mohit Khanna0f232092012-09-11 14:46:08 -07004310 if (NL80211_IFTYPE_AP == type)
4311 {
4312 /* As Loading WLAN Driver one interface being created for p2p device
4313 * address. This will take one HW STA and the max number of clients
4314 * that can connect to softAP will be reduced by one. so while changing
4315 * the interface type to NL80211_IFTYPE_AP (SoftAP) remove p2p0
4316 * interface as it is not required in SoftAP mode.
4317 */
4318
4319 // Get P2P Adapter
4320 pP2pAdapter = hdd_get_adapter(pHddCtx, WLAN_HDD_P2P_DEVICE);
4321
4322 if (pP2pAdapter)
4323 {
4324 hdd_stop_adapter(pHddCtx, pP2pAdapter);
4325 hdd_deinit_adapter(pHddCtx, pP2pAdapter);
4326 hdd_close_adapter(pHddCtx, pP2pAdapter, VOS_TRUE);
4327 }
4328 }
Swaroop Goltia2e32212014-04-09 23:37:33 +05304329 //Disable IMPS & BMPS for SAP/GO
4330 if(VOS_STATUS_E_FAILURE ==
4331 hdd_disable_bmps_imps(pHddCtx, WLAN_HDD_P2P_GO))
4332 {
4333 //Fail to Exit BMPS
4334 VOS_ASSERT(0);
4335 }
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05304336#ifdef FEATURE_WLAN_TDLS
Mohit Khanna0f232092012-09-11 14:46:08 -07004337
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05304338 /* A Mutex Lock is introduced while changing the mode to
4339 * protect the concurrent access for the Adapters by TDLS
4340 * module.
4341 */
Rajesh Chauhana34c6e62014-03-25 16:37:58 +05304342 mutex_lock(&pHddCtx->tdls_lock);
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05304343#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07004344 //De-init the adapter.
4345 hdd_stop_adapter( pHddCtx, pAdapter );
4346 hdd_deinit_adapter( pHddCtx, pAdapter );
4347 memset(&pAdapter->sessionCtx, 0, sizeof(pAdapter->sessionCtx));
Jeff Johnson295189b2012-06-20 16:38:30 -07004348 pAdapter->device_mode = (type == NL80211_IFTYPE_AP) ?
4349 WLAN_HDD_SOFTAP : WLAN_HDD_P2P_GO;
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05304350#ifdef FEATURE_WLAN_TDLS
4351 mutex_unlock(&pHddCtx->tdls_lock);
4352#endif
Madan Mohan Koyyalamudi3ff2a0b2012-10-15 14:33:46 -07004353 if ((WLAN_HDD_SOFTAP == pAdapter->device_mode) &&
4354 (pConfig->apRandomBssidEnabled))
4355 {
4356 /* To meet Android requirements create a randomized
4357 MAC address of the form 02:1A:11:Fx:xx:xx */
4358 get_random_bytes(&ndev->dev_addr[3], 3);
4359 ndev->dev_addr[0] = 0x02;
4360 ndev->dev_addr[1] = 0x1A;
4361 ndev->dev_addr[2] = 0x11;
4362 ndev->dev_addr[3] |= 0xF0;
4363 memcpy(pAdapter->macAddressCurrent.bytes, ndev->dev_addr,
4364 VOS_MAC_ADDR_SIZE);
Arif Hussain24bafea2013-11-15 15:10:03 -08004365 pr_info("wlan: Generated HotSpot BSSID " MAC_ADDRESS_STR"\n",
4366 MAC_ADDR_ARRAY(ndev->dev_addr));
Madan Mohan Koyyalamudi3ff2a0b2012-10-15 14:33:46 -07004367 }
4368
Jeff Johnson295189b2012-06-20 16:38:30 -07004369 hdd_set_ap_ops( pAdapter->dev );
4370
Kiet Lam10841362013-11-01 11:36:50 +05304371 /* This is for only SAP mode where users can
4372 * control country through ini.
4373 * P2P GO follows station country code
4374 * acquired during the STA scanning. */
4375 if((NL80211_IFTYPE_AP == type) &&
4376 (memcmp(pConfig->apCntryCode, CFG_AP_COUNTRY_CODE_DEFAULT, 3) != 0))
4377 {
4378 int status = 0;
4379 VOS_TRACE(VOS_MODULE_ID_HDD,VOS_TRACE_LEVEL_INFO,
4380 "%s: setting country code from INI ", __func__);
4381 init_completion(&pAdapter->change_country_code);
4382 status = (int)sme_ChangeCountryCode(pHddCtx->hHal,
4383 (void *)(tSmeChangeCountryCallback)
4384 wlan_hdd_change_country_code_cb,
4385 pConfig->apCntryCode, pAdapter,
4386 pHddCtx->pvosContext,
Abhishek Singha306a442013-11-07 18:39:01 +05304387 eSIR_FALSE,
4388 eSIR_TRUE);
Kiet Lam10841362013-11-01 11:36:50 +05304389 if (eHAL_STATUS_SUCCESS == status)
4390 {
4391 /* Wait for completion */
c_hpothu6ff1c3c2013-10-01 19:01:57 +05304392 ret = wait_for_completion_interruptible_timeout(
Kiet Lam10841362013-11-01 11:36:50 +05304393 &pAdapter->change_country_code,
4394 msecs_to_jiffies(WLAN_WAIT_TIME_COUNTRY));
c_hpothu6ff1c3c2013-10-01 19:01:57 +05304395 if (ret <= 0)
Kiet Lam10841362013-11-01 11:36:50 +05304396 {
4397 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
c_hpothu6ff1c3c2013-10-01 19:01:57 +05304398 FL("SME Timed out while setting country code %ld"),
4399 ret);
Yue Ma4f55ef32014-01-23 16:45:33 -08004400
4401 if (pHddCtx->isLogpInProgress)
4402 {
4403 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4404 "%s: LOGP in Progress. Ignore!!!", __func__);
4405 return -EAGAIN;
4406 }
Kiet Lam10841362013-11-01 11:36:50 +05304407 }
4408 }
4409 else
4410 {
4411 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08004412 "%s: SME Change Country code failed",__func__);
Kiet Lam10841362013-11-01 11:36:50 +05304413 return -EINVAL;
4414 }
4415 }
Jeff Johnson295189b2012-06-20 16:38:30 -07004416 status = hdd_init_ap_mode(pAdapter);
4417 if(status != VOS_STATUS_SUCCESS)
4418 {
4419 hddLog(VOS_TRACE_LEVEL_FATAL,
4420 "%s: Error initializing the ap mode", __func__);
4421 return -EINVAL;
4422 }
4423 hdd_set_conparam(1);
4424
Jeff Johnson295189b2012-06-20 16:38:30 -07004425 /*interface type changed update in wiphy structure*/
4426 if(wdev)
4427 {
4428 wdev->iftype = type;
4429 pHddCtx->change_iface = type;
4430 }
4431 else
4432 {
4433 hddLog(VOS_TRACE_LEVEL_ERROR,
4434 "%s: ERROR !!!! Wireless dev is NULL", __func__);
4435 return -EINVAL;
4436 }
4437 goto done;
4438 }
4439
4440 default:
4441 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Unsupported interface Type",
4442 __func__);
4443 return -EOPNOTSUPP;
4444 }
4445 }
4446 else if ( (pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -07004447 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Jeff Johnson295189b2012-06-20 16:38:30 -07004448 )
4449 {
4450 switch(type)
4451 {
4452 case NL80211_IFTYPE_STATION:
Jeff Johnson295189b2012-06-20 16:38:30 -07004453 case NL80211_IFTYPE_P2P_CLIENT:
Jeff Johnson295189b2012-06-20 16:38:30 -07004454 case NL80211_IFTYPE_ADHOC:
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05304455#ifdef FEATURE_WLAN_TDLS
4456
4457 /* A Mutex Lock is introduced while changing the mode to
4458 * protect the concurrent access for the Adapters by TDLS
4459 * module.
4460 */
Rajesh Chauhana34c6e62014-03-25 16:37:58 +05304461 mutex_lock(&pHddCtx->tdls_lock);
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05304462#endif
Jeff Johnson32d95a32012-09-10 13:15:23 -07004463 hdd_stop_adapter( pHddCtx, pAdapter );
4464 hdd_deinit_adapter( pHddCtx, pAdapter );
Jeff Johnson295189b2012-06-20 16:38:30 -07004465 wdev->iftype = type;
Gopichand Nakkalaf527dc62012-12-31 16:35:10 -08004466 //Check for sub-string p2p to confirm its a p2p interface
4467 if (NULL != strstr(ndev->name,"p2p"))
Gopichand Nakkala864d3552012-12-31 16:08:51 -08004468 {
4469 pAdapter->device_mode = (type == NL80211_IFTYPE_STATION) ?
4470 WLAN_HDD_P2P_DEVICE : WLAN_HDD_P2P_CLIENT;
4471 }
4472 else
4473 {
4474 pAdapter->device_mode = (type == NL80211_IFTYPE_STATION) ?
Jeff Johnson295189b2012-06-20 16:38:30 -07004475 WLAN_HDD_INFRA_STATION: WLAN_HDD_P2P_CLIENT;
Gopichand Nakkala864d3552012-12-31 16:08:51 -08004476 }
Jeff Johnson295189b2012-06-20 16:38:30 -07004477 hdd_set_conparam(0);
4478 pHddCtx->change_iface = type;
Jeff Johnson295189b2012-06-20 16:38:30 -07004479 memset(&pAdapter->sessionCtx, 0, sizeof(pAdapter->sessionCtx));
4480 hdd_set_station_ops( pAdapter->dev );
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05304481#ifdef FEATURE_WLAN_TDLS
4482 mutex_unlock(&pHddCtx->tdls_lock);
4483#endif
Sunil Dutt66485cb2013-12-19 19:05:03 +05304484 status = hdd_init_station_mode( pAdapter );
Jeff Johnson295189b2012-06-20 16:38:30 -07004485 if( VOS_STATUS_SUCCESS != status )
4486 return -EOPNOTSUPP;
Jeff Johnsone7245742012-09-05 17:12:55 -07004487 /* In case of JB, for P2P-GO, only change interface will be called,
4488 * This is the right place to enable back bmps_imps()
4489 */
Gopichand Nakkalaa2fe5b02013-06-06 16:32:28 +05304490 if (pHddCtx->hdd_wlan_suspended)
4491 {
4492 hdd_set_pwrparams(pHddCtx);
4493 }
Jeff Johnsone7245742012-09-05 17:12:55 -07004494 hdd_enable_bmps_imps(pHddCtx);
Jeff Johnson295189b2012-06-20 16:38:30 -07004495 goto done;
4496 case NL80211_IFTYPE_AP:
Jeff Johnson295189b2012-06-20 16:38:30 -07004497 case NL80211_IFTYPE_P2P_GO:
Jeff Johnson295189b2012-06-20 16:38:30 -07004498 wdev->iftype = type;
Jeff Johnson295189b2012-06-20 16:38:30 -07004499 pAdapter->device_mode = (type == NL80211_IFTYPE_AP) ?
4500 WLAN_HDD_SOFTAP : WLAN_HDD_P2P_GO;
Jeff Johnson295189b2012-06-20 16:38:30 -07004501 goto done;
4502 default:
4503 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Unsupported interface Type",
4504 __func__);
4505 return -EOPNOTSUPP;
4506
4507 }
4508
4509 }
4510 else
4511 {
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05304512 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: unsupported device mode(%s (%d))",
4513 __func__, hdd_device_modetoString(pAdapter->device_mode),
4514 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07004515 return -EOPNOTSUPP;
4516 }
4517
4518
4519 if(pRoamProfile)
4520 {
4521 if ( LastBSSType != pRoamProfile->BSSType )
4522 {
4523 /*interface type changed update in wiphy structure*/
4524 wdev->iftype = type;
4525
4526 /*the BSS mode changed, We need to issue disconnect
4527 if connected or in IBSS disconnect state*/
4528 if ( hdd_connGetConnectedBssType(
4529 WLAN_HDD_GET_STATION_CTX_PTR(pAdapter), &connectedBssType ) ||
4530 ( eCSR_BSS_TYPE_START_IBSS == LastBSSType ) )
4531 {
4532 /*need to issue a disconnect to CSR.*/
4533 INIT_COMPLETION(pAdapter->disconnect_comp_var);
4534 if( eHAL_STATUS_SUCCESS ==
4535 sme_RoamDisconnect( WLAN_HDD_GET_HAL_CTX(pAdapter),
4536 pAdapter->sessionId,
4537 eCSR_DISCONNECT_REASON_UNSPECIFIED ) )
4538 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05304539 ret = wait_for_completion_interruptible_timeout(
4540 &pAdapter->disconnect_comp_var,
4541 msecs_to_jiffies(WLAN_WAIT_TIME_DISCONNECT));
4542 if (ret <= 0)
4543 {
4544 hddLog(VOS_TRACE_LEVEL_ERROR,
4545 FL("wait on disconnect_comp_var failed %ld"), ret);
4546 }
Jeff Johnson295189b2012-06-20 16:38:30 -07004547 }
4548 }
4549 }
4550 }
4551
4552done:
4553 /*set bitmask based on updated value*/
4554 wlan_hdd_set_concurrency_mode(pHddCtx, pAdapter->device_mode);
Leo Chang6fe1f922013-06-07 19:21:24 -07004555
4556 /* Only STA mode support TM now
4557 * all other mode, TM feature should be disabled */
4558 if ( (pHddCtx->cfg_ini->thermalMitigationEnable) &&
4559 (~VOS_STA & pHddCtx->concurrency_mode) )
4560 {
4561 hddDevTmLevelChangedHandler(pHddCtx->parent_dev, 0);
4562 }
4563
Jeff Johnson295189b2012-06-20 16:38:30 -07004564#ifdef WLAN_BTAMP_FEATURE
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304565 if((NL80211_IFTYPE_STATION == type) && (pHddCtx->concurrency_mode <= 1) &&
Jeff Johnson295189b2012-06-20 16:38:30 -07004566 (pHddCtx->no_of_sessions[WLAN_HDD_INFRA_STATION] <=1))
4567 {
4568 //we are ok to do AMP
4569 pHddCtx->isAmpAllowed = VOS_TRUE;
4570 }
4571#endif //WLAN_BTAMP_FEATURE
4572 EXIT();
4573 return 0;
4574}
4575
Mahesh A Saptasagar0e59c472014-04-14 19:17:41 +05304576/*
4577 * FUNCTION: wlan_hdd_cfg80211_change_iface
4578 * wrapper function to protect the actual implementation from SSR.
4579 */
4580int wlan_hdd_cfg80211_change_iface( struct wiphy *wiphy,
4581 struct net_device *ndev,
4582 enum nl80211_iftype type,
4583 u32 *flags,
4584 struct vif_params *params
4585 )
4586{
4587 int ret;
4588
4589 vos_ssr_protect(__func__);
4590 ret = __wlan_hdd_cfg80211_change_iface(wiphy, ndev, type, flags, params);
4591 vos_ssr_unprotect(__func__);
4592
4593 return ret;
4594}
4595
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004596#ifdef FEATURE_WLAN_TDLS
4597static int wlan_hdd_tdls_add_station(struct wiphy *wiphy,
4598 struct net_device *dev, u8 *mac, bool update, tCsrStaParams *StaParams)
4599{
4600 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
4601 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
4602 VOS_STATUS status;
Hoonki Lee5305c3a2013-04-29 23:28:59 -07004603 hddTdlsPeer_t *pTdlsPeer;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05304604 long ret;
Rajesh Chauhana34c6e62014-03-25 16:37:58 +05304605 tANI_U16 numCurrTdlsPeers;
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004606
4607 ENTER();
4608
Gopichand Nakkala838be5d2013-04-10 22:41:51 +05304609 if (NULL == pHddCtx || NULL == pHddCtx->cfg_ini)
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004610 {
4611 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4612 "Invalid arguments");
4613 return -EINVAL;
4614 }
Hoonki Lee27511902013-03-14 18:19:06 -07004615
4616 if ((eTDLS_SUPPORT_NOT_ENABLED == pHddCtx->tdls_mode) ||
4617 (eTDLS_SUPPORT_DISABLED == pHddCtx->tdls_mode))
4618 {
4619 VOS_TRACE( VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
4620 "%s: TDLS mode is disabled OR not enabled in FW."
4621 MAC_ADDRESS_STR " Request declined.",
4622 __func__, MAC_ADDR_ARRAY(mac));
4623 return -ENOTSUPP;
4624 }
4625
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004626 if (pHddCtx->isLogpInProgress)
4627 {
4628 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4629 "%s:LOGP in Progress. Ignore!!!", __func__);
Gopichand Nakkala05922802013-03-14 12:23:19 -07004630 wlan_hdd_tdls_set_link_status(pAdapter, mac, eTDLS_LINK_IDLE);
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004631 return -EBUSY;
4632 }
4633
Naresh Jayaram9c6f4462014-02-13 12:20:31 +05304634 pTdlsPeer = wlan_hdd_tdls_get_peer(pAdapter, mac);
Hoonki Lee5305c3a2013-04-29 23:28:59 -07004635
4636 if ( NULL == pTdlsPeer ) {
4637 VOS_TRACE( VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
4638 "%s: " MAC_ADDRESS_STR " (update %d) not exist. return invalid",
4639 __func__, MAC_ADDR_ARRAY(mac), update);
4640 return -EINVAL;
Gopichand Nakkala34d1b062013-03-19 15:28:33 -07004641 }
Hoonki Lee5305c3a2013-04-29 23:28:59 -07004642
4643 /* in add station, we accept existing valid staId if there is */
4644 if ((0 == update) &&
4645 ((pTdlsPeer->link_status >= eTDLS_LINK_CONNECTING) ||
4646 (TDLS_STA_INDEX_VALID(pTdlsPeer->staId))))
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07004647 {
Hoonki Lee5305c3a2013-04-29 23:28:59 -07004648 VOS_TRACE( VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07004649 "%s: " MAC_ADDRESS_STR
Hoonki Lee5305c3a2013-04-29 23:28:59 -07004650 " link_status %d. staId %d. add station ignored.",
4651 __func__, MAC_ADDR_ARRAY(mac), pTdlsPeer->link_status, pTdlsPeer->staId);
4652 return 0;
4653 }
4654 /* in change station, we accept only when staId is valid */
4655 if ((1 == update) &&
4656 ((pTdlsPeer->link_status > eTDLS_LINK_CONNECTING) ||
4657 (!TDLS_STA_INDEX_VALID(pTdlsPeer->staId))))
4658 {
4659 VOS_TRACE( VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
4660 "%s: " MAC_ADDRESS_STR
4661 " link status %d. staId %d. change station %s.",
4662 __func__, MAC_ADDR_ARRAY(mac), pTdlsPeer->link_status, pTdlsPeer->staId,
4663 (TDLS_STA_INDEX_VALID(pTdlsPeer->staId)) ? "ignored" : "declined");
4664 return (TDLS_STA_INDEX_VALID(pTdlsPeer->staId)) ? 0 : -EPERM;
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07004665 }
Gopichand Nakkala34d1b062013-03-19 15:28:33 -07004666
4667 /* when others are on-going, we want to change link_status to idle */
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05304668 if (NULL != wlan_hdd_tdls_is_progress(pHddCtx, mac, TRUE))
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004669 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07004670 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4671 "%s: " MAC_ADDRESS_STR
4672 " TDLS setup is ongoing. Request declined.",
4673 __func__, MAC_ADDR_ARRAY(mac));
Gopichand Nakkala05922802013-03-14 12:23:19 -07004674 goto error;
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004675 }
4676
4677 /* first to check if we reached to maximum supported TDLS peer.
4678 TODO: for now, return -EPERM looks working fine,
4679 but need to check if any other errno fit into this category.*/
Rajesh Chauhana34c6e62014-03-25 16:37:58 +05304680 numCurrTdlsPeers = wlan_hdd_tdlsConnectedPeers(pAdapter);
4681 if (HDD_MAX_NUM_TDLS_STA <= numCurrTdlsPeers)
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004682 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07004683 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4684 "%s: " MAC_ADDRESS_STR
Rajesh Chauhana34c6e62014-03-25 16:37:58 +05304685 " TDLS Max peer already connected. Request declined."
4686 " Num of peers (%d), Max allowed (%d).",
4687 __func__, MAC_ADDR_ARRAY(mac), numCurrTdlsPeers,
4688 HDD_MAX_NUM_TDLS_STA);
Gopichand Nakkala05922802013-03-14 12:23:19 -07004689 goto error;
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004690 }
4691 else
4692 {
4693 hddTdlsPeer_t *pTdlsPeer;
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +05304694 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, mac, TRUE);
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07004695 if (pTdlsPeer && TDLS_IS_CONNECTED(pTdlsPeer))
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004696 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07004697 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4698 "%s: " MAC_ADDRESS_STR " already connected. Request declined.",
4699 __func__, MAC_ADDR_ARRAY(mac));
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004700 return -EPERM;
4701 }
4702 }
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07004703 if (0 == update)
4704 wlan_hdd_tdls_set_link_status(pAdapter, mac, eTDLS_LINK_CONNECTING);
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004705
Jeff Johnsond75fe012013-04-06 10:53:06 -07004706 /* debug code */
Gopichand Nakkala838be5d2013-04-10 22:41:51 +05304707 if (NULL != StaParams)
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07004708 {
4709 VOS_TRACE(VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
4710 "%s: TDLS Peer Parameters.", __func__);
Hoonki Lee66b75f32013-04-16 18:30:07 -07004711 if(StaParams->htcap_present)
4712 {
4713 VOS_TRACE(VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
4714 "ht_capa->cap_info: %0x", StaParams->HTCap.capInfo);
4715 VOS_TRACE(VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
4716 "ht_capa->extended_capabilities: %0x",
4717 StaParams->HTCap.extendedHtCapInfo);
4718 }
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07004719 VOS_TRACE(VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
4720 "params->capability: %0x",StaParams->capability);
4721 VOS_TRACE(VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
Jeff Johnson0299d0a2013-10-30 12:37:43 -07004722 "params->ext_capab_len: %0x",StaParams->extn_capability[0]);
Hoonki Lee66b75f32013-04-16 18:30:07 -07004723 if(StaParams->vhtcap_present)
4724 {
4725 VOS_TRACE(VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
4726 "rxMcsMap %x rxHighest %x txMcsMap %x txHighest %x",
4727 StaParams->VHTCap.suppMcs.rxMcsMap, StaParams->VHTCap.suppMcs.rxHighest,
4728 StaParams->VHTCap.suppMcs.txMcsMap, StaParams->VHTCap.suppMcs.txHighest);
4729 }
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07004730 {
4731 int i = 0;
Hoonki Lee5305c3a2013-04-29 23:28:59 -07004732 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO, "Supported rates:");
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07004733 for (i = 0; i < sizeof(StaParams->supported_rates); i++)
4734 VOS_TRACE(VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
4735 "[%d]: %x ", i, StaParams->supported_rates[i]);
4736 }
Jeff Johnsond75fe012013-04-06 10:53:06 -07004737 } /* end debug code */
Gopichand Nakkala838be5d2013-04-10 22:41:51 +05304738 else if ((1 == update) && (NULL == StaParams))
4739 {
4740 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4741 "%s : update is true, but staParams is NULL. Error!", __func__);
4742 return -EPERM;
4743 }
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004744
4745 INIT_COMPLETION(pAdapter->tdls_add_station_comp);
4746
4747 if (!update)
4748 {
4749 status = sme_AddTdlsPeerSta(WLAN_HDD_GET_HAL_CTX(pAdapter),
4750 pAdapter->sessionId, mac);
4751 }
4752 else
4753 {
4754 status = sme_ChangeTdlsPeerSta(WLAN_HDD_GET_HAL_CTX(pAdapter),
4755 pAdapter->sessionId, mac, StaParams);
4756 }
4757
c_hpothu6ff1c3c2013-10-01 19:01:57 +05304758 ret = wait_for_completion_interruptible_timeout(&pAdapter->tdls_add_station_comp,
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004759 msecs_to_jiffies(WAIT_TIME_TDLS_ADD_STA));
4760
c_hpothu6ff1c3c2013-10-01 19:01:57 +05304761 if (ret <= 0)
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004762 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07004763 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
c_hpothu6ff1c3c2013-10-01 19:01:57 +05304764 "%s: timeout waiting for tdls add station indication %ld",
4765 __func__, ret);
Gopichand Nakkala34d1b062013-03-19 15:28:33 -07004766 return -EPERM;
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004767 }
c_hpothu6ff1c3c2013-10-01 19:01:57 +05304768
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004769 if ( eHAL_STATUS_SUCCESS != pAdapter->tdlsAddStaStatus)
4770 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07004771 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004772 "%s: Add Station is unsucessful", __func__);
Gopichand Nakkala34d1b062013-03-19 15:28:33 -07004773 return -EPERM;
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004774 }
4775
4776 return 0;
Gopichand Nakkala05922802013-03-14 12:23:19 -07004777
4778error:
4779 wlan_hdd_tdls_set_link_status(pAdapter, mac, eTDLS_LINK_IDLE);
4780 return -EPERM;
4781
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004782}
4783#endif
4784
Jeff Johnson295189b2012-06-20 16:38:30 -07004785static int wlan_hdd_change_station(struct wiphy *wiphy,
4786 struct net_device *dev,
4787 u8 *mac,
4788 struct station_parameters *params)
4789{
4790 VOS_STATUS status = VOS_STATUS_SUCCESS;
4791 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
Gopichand Nakkala29149562013-05-10 21:43:41 +05304792 hdd_context_t *pHddCtx;
4793 hdd_station_ctx_t *pHddStaCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -07004794 v_MACADDR_t STAMacAddress;
Gopichand Nakkalab0856222013-03-12 22:39:05 -07004795#ifdef FEATURE_WLAN_TDLS
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004796 tCsrStaParams StaParams = {0};
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004797 tANI_U8 isBufSta = 0;
Naresh Jayaram3180aa42014-02-12 21:47:26 +05304798 tANI_U8 isOffChannelSupported = 0;
Gopichand Nakkalab0856222013-03-12 22:39:05 -07004799#endif
Jeff Johnsone7245742012-09-05 17:12:55 -07004800 ENTER();
4801
Gopichand Nakkala29149562013-05-10 21:43:41 +05304802 if ((NULL == pAdapter))
4803 {
4804 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
4805 "invalid adapter ");
4806 return -EINVAL;
4807 }
4808
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05304809 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
4810 TRACE_CODE_HDD_CHANGE_STATION,
4811 pAdapter->sessionId, params->listen_interval));
Gopichand Nakkala29149562013-05-10 21:43:41 +05304812 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
4813 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
4814
4815 if ((NULL == pHddCtx) || (NULL == pHddStaCtx))
4816 {
4817 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
4818 "invalid HDD state or HDD station context");
4819 return -EINVAL;
4820 }
4821
4822 if (pHddCtx->isLogpInProgress)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004823 {
4824 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4825 "%s:LOGP in Progress. Ignore!!!", __func__);
4826 return -EAGAIN;
4827 }
4828
Jeff Johnson295189b2012-06-20 16:38:30 -07004829 vos_mem_copy(STAMacAddress.bytes, mac, sizeof(v_MACADDR_t));
4830
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004831 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
4832 || (pAdapter->device_mode == WLAN_HDD_P2P_GO))
Jeff Johnson295189b2012-06-20 16:38:30 -07004833 {
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004834 if (params->sta_flags_set & BIT(NL80211_STA_FLAG_AUTHORIZED))
Jeff Johnson295189b2012-06-20 16:38:30 -07004835 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304836 status = hdd_softap_change_STA_state( pAdapter, &STAMacAddress,
Jeff Johnson295189b2012-06-20 16:38:30 -07004837 WLANTL_STA_AUTHENTICATED);
4838
Gopichand Nakkala29149562013-05-10 21:43:41 +05304839 if (status != VOS_STATUS_SUCCESS)
4840 {
4841 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
4842 "%s: Not able to change TL state to AUTHENTICATED", __func__);
4843 return -EINVAL;
4844 }
Jeff Johnson295189b2012-06-20 16:38:30 -07004845 }
4846 }
Hoonki Leea6d49be2013-04-05 09:43:25 -07004847 else if ((pAdapter->device_mode == WLAN_HDD_INFRA_STATION)
4848 || (pAdapter->device_mode == WLAN_HDD_P2P_CLIENT)) {
Gopichand Nakkala29149562013-05-10 21:43:41 +05304849#ifdef FEATURE_WLAN_TDLS
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07004850 if (params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
4851 StaParams.capability = params->capability;
4852 StaParams.uapsd_queues = params->uapsd_queues;
4853 StaParams.max_sp = params->max_sp;
4854
Naresh Jayaram3180aa42014-02-12 21:47:26 +05304855 /* Convert (first channel , number of channels) tuple to
4856 * the total list of channels. This goes with the assumption
4857 * that if the first channel is < 14, then the next channels
4858 * are an incremental of 1 else an incremental of 4 till the number
4859 * of channels.
4860 */
4861 if (0 != params->supported_channels_len) {
4862 int i = 0,j = 0,k = 0, no_of_channels = 0 ;
4863 for ( i = 0 ; i < params->supported_channels_len ; i+=2)
4864 {
4865 int wifi_chan_index;
4866 StaParams.supported_channels[j] = params->supported_channels[i];
4867 wifi_chan_index =
4868 ((StaParams.supported_channels[j] <= HDD_CHANNEL_14 ) ? 1 : 4 );
4869 no_of_channels = params->supported_channels[i+1];
4870 for(k=1; k <= no_of_channels; k++)
4871 {
4872 StaParams.supported_channels[j+1] =
4873 StaParams.supported_channels[j] + wifi_chan_index;
4874 j+=1;
4875 }
4876 }
4877 StaParams.supported_channels_len = j;
4878 }
4879 vos_mem_copy(StaParams.supported_oper_classes,
4880 params->supported_oper_classes,
4881 params->supported_oper_classes_len);
4882 StaParams.supported_oper_classes_len =
4883 params->supported_oper_classes_len;
4884
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07004885 if (0 != params->ext_capab_len)
4886 vos_mem_copy(StaParams.extn_capability, params->ext_capab,
4887 sizeof(StaParams.extn_capability));
4888
4889 if (NULL != params->ht_capa)
Hoonki Lee66b75f32013-04-16 18:30:07 -07004890 {
4891 StaParams.htcap_present = 1;
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07004892 vos_mem_copy(&StaParams.HTCap, params->ht_capa, sizeof(tSirHTCap));
Hoonki Lee66b75f32013-04-16 18:30:07 -07004893 }
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07004894
4895 StaParams.supported_rates_len = params->supported_rates_len;
4896
4897 /* Note : The Maximum sizeof supported_rates sent by the Supplicant is 32.
4898 * The supported_rates array , for all the structures propogating till Add Sta
4899 * to the firmware has to be modified , if the supplicant (ieee80211) is
4900 * modified to send more rates.
4901 */
4902
4903 /* To avoid Data Currption , set to max length to SIR_MAC_MAX_SUPP_RATES
4904 */
4905 if (StaParams.supported_rates_len > SIR_MAC_MAX_SUPP_RATES)
4906 StaParams.supported_rates_len = SIR_MAC_MAX_SUPP_RATES;
4907
4908 if (0 != StaParams.supported_rates_len) {
4909 int i = 0;
4910 vos_mem_copy(StaParams.supported_rates, params->supported_rates,
4911 StaParams.supported_rates_len);
Hoonki Lee5305c3a2013-04-29 23:28:59 -07004912 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07004913 "Supported Rates with Length %d", StaParams.supported_rates_len);
4914 for (i=0; i < StaParams.supported_rates_len; i++)
Hoonki Lee5305c3a2013-04-29 23:28:59 -07004915 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07004916 "[%d]: %0x", i, StaParams.supported_rates[i]);
4917 }
4918
4919 if (NULL != params->vht_capa)
Hoonki Lee66b75f32013-04-16 18:30:07 -07004920 {
4921 StaParams.vhtcap_present = 1;
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07004922 vos_mem_copy(&StaParams.VHTCap, params->vht_capa, sizeof(tSirVHTCap));
Hoonki Lee66b75f32013-04-16 18:30:07 -07004923 }
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07004924
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004925 if (0 != params->ext_capab_len ) {
4926 /*Define A Macro : TODO Sunil*/
4927 if ((1<<4) & StaParams.extn_capability[3]) {
4928 isBufSta = 1;
4929 }
Naresh Jayaram3180aa42014-02-12 21:47:26 +05304930 /* TDLS Channel Switching Support */
4931 if ((1<<6) & StaParams.extn_capability[3]) {
4932 isOffChannelSupported = 1;
4933 }
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004934 }
Naresh Jayaram3180aa42014-02-12 21:47:26 +05304935 status = wlan_hdd_tdls_set_peer_caps( pAdapter, mac,
4936 &StaParams, isBufSta,
4937 isOffChannelSupported);
4938
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +05304939 if (VOS_STATUS_SUCCESS != status) {
4940 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4941 "%s: wlan_hdd_tdls_set_peer_caps failed!", __func__);
4942 return -EINVAL;
4943 }
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004944 status = wlan_hdd_tdls_add_station(wiphy, dev, mac, 1, &StaParams);
4945
4946 if (VOS_STATUS_SUCCESS != status) {
4947 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4948 "%s: sme_ChangeTdlsPeerSta failed!", __func__);
4949 return -EINVAL;
4950 }
4951 }
Gopichand Nakkalab0856222013-03-12 22:39:05 -07004952#endif
Gopichand Nakkala6239acd2013-06-14 14:48:00 +05304953 }
Jeff Johnsone7245742012-09-05 17:12:55 -07004954 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -07004955 return status;
4956}
4957
4958/*
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +05304959 * FUNCTION: __wlan_hdd_cfg80211_add_key
Jeff Johnson295189b2012-06-20 16:38:30 -07004960 * This function is used to initialize the key information
4961 */
4962#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +05304963static int __wlan_hdd_cfg80211_add_key( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07004964 struct net_device *ndev,
4965 u8 key_index, bool pairwise,
4966 const u8 *mac_addr,
4967 struct key_params *params
4968 )
4969#else
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +05304970static int __wlan_hdd_cfg80211_add_key( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07004971 struct net_device *ndev,
4972 u8 key_index, const u8 *mac_addr,
4973 struct key_params *params
4974 )
4975#endif
4976{
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07004977 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( ndev );
Jeff Johnson295189b2012-06-20 16:38:30 -07004978 tCsrRoamSetKey setKey;
4979 u8 groupmacaddr[WNI_CFG_BSSID_LEN] = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF};
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05304980 int status;
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07004981 v_U32_t roamId= 0xFF;
4982 v_CONTEXT_t pVosContext = (WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
Jeff Johnson295189b2012-06-20 16:38:30 -07004983 hdd_hostapd_state_t *pHostapdState;
4984 VOS_STATUS vos_status;
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07004985 eHalStatus halStatus;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05304986 hdd_context_t *pHddCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -07004987
4988 ENTER();
4989
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05304990 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
4991 TRACE_CODE_HDD_CFG80211_ADD_KEY,
4992 pAdapter->sessionId, params->key_len));
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05304993 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
4994 status = wlan_hdd_validate_context(pHddCtx);
4995
4996 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004997 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05304998 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4999 "%s: HDD context is not valid", __func__);
5000 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07005001 }
5002
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05305003 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s (%d)",
5004 __func__, hdd_device_modetoString(pAdapter->device_mode),
5005 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07005006
5007 if (CSR_MAX_NUM_KEY <= key_index)
5008 {
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07005009 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid key index %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07005010 key_index);
5011
5012 return -EINVAL;
5013 }
5014
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07005015 if (CSR_MAX_KEY_LEN < params->key_len)
5016 {
5017 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid key length %d", __func__,
5018 params->key_len);
5019
5020 return -EINVAL;
5021 }
5022
5023 hddLog(VOS_TRACE_LEVEL_INFO,
5024 "%s: called with key index = %d & key length %d",
5025 __func__, key_index, params->key_len);
Jeff Johnson295189b2012-06-20 16:38:30 -07005026
5027 /*extract key idx, key len and key*/
5028 vos_mem_zero(&setKey,sizeof(tCsrRoamSetKey));
5029 setKey.keyId = key_index;
5030 setKey.keyLength = params->key_len;
5031 vos_mem_copy(&setKey.Key[0],params->key, params->key_len);
5032
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07005033 switch (params->cipher)
Jeff Johnson295189b2012-06-20 16:38:30 -07005034 {
5035 case WLAN_CIPHER_SUITE_WEP40:
5036 setKey.encType = eCSR_ENCRYPT_TYPE_WEP40_STATICKEY;
5037 break;
5038
5039 case WLAN_CIPHER_SUITE_WEP104:
5040 setKey.encType = eCSR_ENCRYPT_TYPE_WEP104_STATICKEY;
5041 break;
5042
5043 case WLAN_CIPHER_SUITE_TKIP:
5044 {
5045 u8 *pKey = &setKey.Key[0];
5046 setKey.encType = eCSR_ENCRYPT_TYPE_TKIP;
5047
5048 vos_mem_zero(pKey, CSR_MAX_KEY_LEN);
5049
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07005050 /*Supplicant sends the 32bytes key in this order
Jeff Johnson295189b2012-06-20 16:38:30 -07005051
5052 |--------------|----------|----------|
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07005053 | Tk1 |TX-MIC | RX Mic |
Jeff Johnson295189b2012-06-20 16:38:30 -07005054 |--------------|----------|----------|
5055 <---16bytes---><--8bytes--><--8bytes-->
5056
5057 */
5058 /*Sme expects the 32 bytes key to be in the below order
5059
5060 |--------------|----------|----------|
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07005061 | Tk1 |RX-MIC | TX Mic |
Jeff Johnson295189b2012-06-20 16:38:30 -07005062 |--------------|----------|----------|
5063 <---16bytes---><--8bytes--><--8bytes-->
5064 */
5065 /* Copy the Temporal Key 1 (TK1) */
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07005066 vos_mem_copy(pKey, params->key, 16);
Jeff Johnson295189b2012-06-20 16:38:30 -07005067
5068 /*Copy the rx mic first*/
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07005069 vos_mem_copy(&pKey[16], &params->key[24], 8);
Jeff Johnson295189b2012-06-20 16:38:30 -07005070
5071 /*Copy the tx mic */
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07005072 vos_mem_copy(&pKey[24], &params->key[16], 8);
Jeff Johnson295189b2012-06-20 16:38:30 -07005073
5074
5075 break;
5076 }
5077
5078 case WLAN_CIPHER_SUITE_CCMP:
5079 setKey.encType = eCSR_ENCRYPT_TYPE_AES;
5080 break;
5081
5082#ifdef FEATURE_WLAN_WAPI
5083 case WLAN_CIPHER_SUITE_SMS4:
5084 {
5085 vos_mem_zero(&setKey,sizeof(tCsrRoamSetKey));
5086 wlan_hdd_cfg80211_set_key_wapi(pAdapter, key_index, mac_addr,
5087 params->key, params->key_len);
5088 return 0;
5089 }
5090#endif
Chet Lanctot186b5732013-03-18 10:26:30 -07005091
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08005092#ifdef FEATURE_WLAN_ESE
Jeff Johnson295189b2012-06-20 16:38:30 -07005093 case WLAN_CIPHER_SUITE_KRK:
5094 setKey.encType = eCSR_ENCRYPT_TYPE_KRK;
5095 break;
5096#endif
Chet Lanctot186b5732013-03-18 10:26:30 -07005097
5098#ifdef WLAN_FEATURE_11W
5099 case WLAN_CIPHER_SUITE_AES_CMAC:
5100 setKey.encType = eCSR_ENCRYPT_TYPE_AES_CMAC;
Chet Lanctot3b5158a2013-03-31 16:45:21 -07005101 break;
Chet Lanctot186b5732013-03-18 10:26:30 -07005102#endif
5103
Jeff Johnson295189b2012-06-20 16:38:30 -07005104 default:
Jeff Johnson0299d0a2013-10-30 12:37:43 -07005105 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: unsupported cipher type %u",
Jeff Johnson295189b2012-06-20 16:38:30 -07005106 __func__, params->cipher);
5107 return -EOPNOTSUPP;
5108 }
5109
5110 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: encryption type %d",
5111 __func__, setKey.encType);
5112
Shailender Karmuchi642e9812013-05-30 14:34:49 -07005113 if (
Jeff Johnson295189b2012-06-20 16:38:30 -07005114#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
5115 (!pairwise)
5116#else
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07005117 (!mac_addr || is_broadcast_ether_addr(mac_addr))
Jeff Johnson295189b2012-06-20 16:38:30 -07005118#endif
Shailender Karmuchi642e9812013-05-30 14:34:49 -07005119 )
5120 {
5121 /* set group key*/
5122 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
5123 "%s- %d: setting Broadcast key",
5124 __func__, __LINE__);
5125 setKey.keyDirection = eSIR_RX_ONLY;
5126 vos_mem_copy(setKey.peerMac,groupmacaddr,WNI_CFG_BSSID_LEN);
5127 }
5128 else
5129 {
5130 /* set pairwise key*/
5131 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
5132 "%s- %d: setting pairwise key",
5133 __func__, __LINE__);
5134 setKey.keyDirection = eSIR_TX_RX;
5135 vos_mem_copy(setKey.peerMac, mac_addr,WNI_CFG_BSSID_LEN);
5136 }
5137 if ((WLAN_HDD_IBSS == pAdapter->device_mode) && !pairwise)
5138 {
5139 setKey.keyDirection = eSIR_TX_RX;
5140 /*Set the group key*/
5141 status = sme_RoamSetKey( WLAN_HDD_GET_HAL_CTX(pAdapter),
5142 pAdapter->sessionId, &setKey, &roamId );
Jeff Johnson295189b2012-06-20 16:38:30 -07005143
Shailender Karmuchi642e9812013-05-30 14:34:49 -07005144 if ( 0 != status )
5145 {
5146 hddLog(VOS_TRACE_LEVEL_ERROR,
5147 "%s: sme_RoamSetKey failed, returned %d", __func__, status);
5148 return -EINVAL;
5149 }
5150 /*Save the keys here and call sme_RoamSetKey for setting
5151 the PTK after peer joins the IBSS network*/
5152 vos_mem_copy(&pAdapter->sessionCtx.station.ibss_enc_key,
5153 &setKey, sizeof(tCsrRoamSetKey));
5154 return status;
5155 }
Gopichand Nakkala29149562013-05-10 21:43:41 +05305156 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP) ||
5157 (pAdapter->device_mode == WLAN_HDD_P2P_GO))
5158 {
Jeff Johnson295189b2012-06-20 16:38:30 -07005159 pHostapdState = WLAN_HDD_GET_HOSTAP_STATE_PTR(pAdapter);
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07005160 if( pHostapdState->bssState == BSS_START )
5161 {
c_hpothu7c55da62014-01-23 18:34:02 +05305162 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
5163 vos_status = wlan_hdd_check_ula_done(pAdapter);
5164
5165 if ( vos_status != VOS_STATUS_SUCCESS )
5166 {
5167 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
5168 "[%4d] wlan_hdd_check_ula_done returned ERROR status= %d",
5169 __LINE__, vos_status );
5170
5171 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_NONE;
5172
5173 return -EINVAL;
5174 }
5175
Jeff Johnson295189b2012-06-20 16:38:30 -07005176 status = WLANSAP_SetKeySta( pVosContext, &setKey);
5177
5178 if ( status != eHAL_STATUS_SUCCESS )
5179 {
5180 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
5181 "[%4d] WLANSAP_SetKeySta returned ERROR status= %d",
5182 __LINE__, status );
5183 }
5184 }
5185
5186 /* Saving WEP keys */
5187 else if( eCSR_ENCRYPT_TYPE_WEP40_STATICKEY == setKey.encType ||
5188 eCSR_ENCRYPT_TYPE_WEP104_STATICKEY == setKey.encType )
5189 {
5190 //Save the wep key in ap context. Issue setkey after the BSS is started.
5191 hdd_ap_ctx_t *pAPCtx = WLAN_HDD_GET_AP_CTX_PTR(pAdapter);
5192 vos_mem_copy(&pAPCtx->wepKey[key_index], &setKey, sizeof(tCsrRoamSetKey));
5193 }
5194 else
5195 {
5196 //Save the key in ap context. Issue setkey after the BSS is started.
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07005197 hdd_ap_ctx_t *pAPCtx = WLAN_HDD_GET_AP_CTX_PTR(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07005198 vos_mem_copy(&pAPCtx->groupKey, &setKey, sizeof(tCsrRoamSetKey));
5199 }
5200 }
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07005201 else if ( (pAdapter->device_mode == WLAN_HDD_INFRA_STATION) ||
5202 (pAdapter->device_mode == WLAN_HDD_P2P_CLIENT) )
Jeff Johnson295189b2012-06-20 16:38:30 -07005203 {
5204 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
5205 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
5206
Gopichand Nakkala3d295922013-05-07 16:19:14 +05305207#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
5208 if (!pairwise)
5209#else
5210 if (!mac_addr || is_broadcast_ether_addr(mac_addr))
5211#endif
5212 {
5213 /* set group key*/
5214 if (pHddStaCtx->roam_info.deferKeyComplete)
5215 {
5216 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
5217 "%s- %d: Perform Set key Complete",
5218 __func__, __LINE__);
5219 hdd_PerformRoamSetKeyComplete(pAdapter);
5220 }
5221 }
5222
Jeff Johnson295189b2012-06-20 16:38:30 -07005223 pWextState->roamProfile.Keys.KeyLength[key_index] = (u8)params->key_len;
5224
Venkata Prathyusha Kuntupalliee2ce712013-01-17 14:09:24 -08005225 pWextState->roamProfile.Keys.defaultIndex = key_index;
5226
5227
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07005228 vos_mem_copy(&pWextState->roamProfile.Keys.KeyMaterial[key_index][0],
Jeff Johnson295189b2012-06-20 16:38:30 -07005229 params->key, params->key_len);
5230
Gopichand Nakkala3d295922013-05-07 16:19:14 +05305231
Jeff Johnson295189b2012-06-20 16:38:30 -07005232 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_SETTING_KEY;
5233
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305234 hddLog(VOS_TRACE_LEVEL_INFO_MED,
Jeff Johnson295189b2012-06-20 16:38:30 -07005235 "%s: set key for peerMac %2x:%2x:%2x:%2x:%2x:%2x, direction %d",
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305236 __func__, setKey.peerMac[0], setKey.peerMac[1],
5237 setKey.peerMac[2], setKey.peerMac[3],
5238 setKey.peerMac[4], setKey.peerMac[5],
Jeff Johnson295189b2012-06-20 16:38:30 -07005239 setKey.keyDirection);
5240
5241 vos_status = wlan_hdd_check_ula_done(pAdapter);
5242
5243 if ( vos_status != VOS_STATUS_SUCCESS )
5244 {
5245 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
5246 "[%4d] wlan_hdd_check_ula_done returned ERROR status= %d",
5247 __LINE__, vos_status );
5248
5249 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_NONE;
5250
5251 return -EINVAL;
5252
5253 }
5254
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07005255#ifdef WLAN_FEATURE_VOWIFI_11R
Gopichand Nakkala3d295922013-05-07 16:19:14 +05305256 /* The supplicant may attempt to set the PTK once pre-authentication
5257 is done. Save the key in the UMAC and include it in the ADD BSS
5258 request */
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07005259 halStatus = sme_FTUpdateKey( WLAN_HDD_GET_HAL_CTX(pAdapter), &setKey);
Gopichand Nakkala3d295922013-05-07 16:19:14 +05305260 if ( halStatus == eHAL_STATUS_FT_PREAUTH_KEY_SUCCESS )
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07005261 {
Gopichand Nakkala3d295922013-05-07 16:19:14 +05305262 hddLog(VOS_TRACE_LEVEL_INFO_MED,
5263 "%s: Update PreAuth Key success", __func__);
5264 return 0;
5265 }
5266 else if ( halStatus == eHAL_STATUS_FT_PREAUTH_KEY_FAILED )
5267 {
5268 hddLog(VOS_TRACE_LEVEL_ERROR,
5269 "%s: Update PreAuth Key failed", __func__);
Gopichand Nakkalad7d13652013-02-15 01:48:00 +05305270 return -EINVAL;
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07005271 }
5272#endif /* WLAN_FEATURE_VOWIFI_11R */
Jeff Johnson295189b2012-06-20 16:38:30 -07005273
5274 /* issue set key request to SME*/
5275 status = sme_RoamSetKey( WLAN_HDD_GET_HAL_CTX(pAdapter),
5276 pAdapter->sessionId, &setKey, &roamId );
5277
5278 if ( 0 != status )
5279 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305280 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07005281 "%s: sme_RoamSetKey failed, returned %d", __func__, status);
5282 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_NONE;
5283 return -EINVAL;
5284 }
5285
5286
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305287 /* in case of IBSS as there was no information available about WEP keys during
5288 * IBSS join, group key intialized with NULL key, so re-initialize group key
Jeff Johnson295189b2012-06-20 16:38:30 -07005289 * with correct value*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305290 if ( (eCSR_BSS_TYPE_START_IBSS == pWextState->roamProfile.BSSType) &&
5291 !( ( IW_AUTH_KEY_MGMT_802_1X
5292 == (pWextState->authKeyMgmt & IW_AUTH_KEY_MGMT_802_1X))
Jeff Johnson295189b2012-06-20 16:38:30 -07005293 && (eCSR_AUTH_TYPE_OPEN_SYSTEM == pHddStaCtx->conn_info.authType)
5294 )
5295 &&
5296 ( (WLAN_CIPHER_SUITE_WEP40 == params->cipher)
5297 || (WLAN_CIPHER_SUITE_WEP104 == params->cipher)
5298 )
5299 )
5300 {
5301 setKey.keyDirection = eSIR_RX_ONLY;
5302 vos_mem_copy(setKey.peerMac,groupmacaddr,WNI_CFG_BSSID_LEN);
5303
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305304 hddLog(VOS_TRACE_LEVEL_INFO_MED,
Jeff Johnson295189b2012-06-20 16:38:30 -07005305 "%s: set key peerMac %2x:%2x:%2x:%2x:%2x:%2x, direction %d",
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305306 __func__, setKey.peerMac[0], setKey.peerMac[1],
5307 setKey.peerMac[2], setKey.peerMac[3],
5308 setKey.peerMac[4], setKey.peerMac[5],
Jeff Johnson295189b2012-06-20 16:38:30 -07005309 setKey.keyDirection);
5310
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305311 status = sme_RoamSetKey( WLAN_HDD_GET_HAL_CTX(pAdapter),
Jeff Johnson295189b2012-06-20 16:38:30 -07005312 pAdapter->sessionId, &setKey, &roamId );
5313
5314 if ( 0 != status )
5315 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305316 hddLog(VOS_TRACE_LEVEL_ERROR,
5317 "%s: sme_RoamSetKey failed for group key (IBSS), returned %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07005318 __func__, status);
5319 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_NONE;
5320 return -EINVAL;
5321 }
5322 }
5323 }
5324
5325 return 0;
5326}
5327
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +05305328#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
5329static int wlan_hdd_cfg80211_add_key( struct wiphy *wiphy,
5330 struct net_device *ndev,
5331 u8 key_index, bool pairwise,
5332 const u8 *mac_addr,
5333 struct key_params *params
5334 )
5335#else
5336static int wlan_hdd_cfg80211_add_key( struct wiphy *wiphy,
5337 struct net_device *ndev,
5338 u8 key_index, const u8 *mac_addr,
5339 struct key_params *params
5340 )
5341#endif
5342{
5343 int ret;
5344 vos_ssr_protect(__func__);
5345#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
5346 ret = __wlan_hdd_cfg80211_add_key(wiphy, ndev, key_index, pairwise,
5347 mac_addr, params);
5348#else
5349 ret = __wlan_hdd_cfg80211_add_key(wiphy, ndev, key_index, mac_addr,
5350 params);
5351#endif
5352 vos_ssr_unprotect(__func__);
5353
5354 return ret;
5355}
5356
Jeff Johnson295189b2012-06-20 16:38:30 -07005357/*
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +05305358 * FUNCTION: __wlan_hdd_cfg80211_get_key
Jeff Johnson295189b2012-06-20 16:38:30 -07005359 * This function is used to get the key information
5360 */
5361#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +05305362static int __wlan_hdd_cfg80211_get_key(
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305363 struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07005364 struct net_device *ndev,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305365 u8 key_index, bool pairwise,
Jeff Johnson295189b2012-06-20 16:38:30 -07005366 const u8 *mac_addr, void *cookie,
5367 void (*callback)(void *cookie, struct key_params*)
5368 )
5369#else
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +05305370static int __wlan_hdd_cfg80211_get_key(
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305371 struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07005372 struct net_device *ndev,
5373 u8 key_index, const u8 *mac_addr, void *cookie,
5374 void (*callback)(void *cookie, struct key_params*)
5375 )
5376#endif
5377{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305378 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( ndev );
Jeff Johnson295189b2012-06-20 16:38:30 -07005379 hdd_wext_state_t *pWextState= WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
5380 tCsrRoamProfile *pRoamProfile = &(pWextState->roamProfile);
5381 struct key_params params;
5382
5383 ENTER();
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305384
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05305385 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s (%d)",
5386 __func__, hdd_device_modetoString(pAdapter->device_mode),
5387 pAdapter->device_mode);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305388
Jeff Johnson295189b2012-06-20 16:38:30 -07005389 memset(&params, 0, sizeof(params));
5390
5391 if (CSR_MAX_NUM_KEY <= key_index)
5392 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05305393 hddLog(VOS_TRACE_LEVEL_ERROR, FL("invalid key index %d"), key_index);
Jeff Johnson295189b2012-06-20 16:38:30 -07005394 return -EINVAL;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305395 }
Jeff Johnson295189b2012-06-20 16:38:30 -07005396
5397 switch(pRoamProfile->EncryptionType.encryptionType[0])
5398 {
5399 case eCSR_ENCRYPT_TYPE_NONE:
5400 params.cipher = IW_AUTH_CIPHER_NONE;
5401 break;
5402
5403 case eCSR_ENCRYPT_TYPE_WEP40_STATICKEY:
5404 case eCSR_ENCRYPT_TYPE_WEP40:
5405 params.cipher = WLAN_CIPHER_SUITE_WEP40;
5406 break;
5407
5408 case eCSR_ENCRYPT_TYPE_WEP104_STATICKEY:
5409 case eCSR_ENCRYPT_TYPE_WEP104:
5410 params.cipher = WLAN_CIPHER_SUITE_WEP104;
5411 break;
5412
5413 case eCSR_ENCRYPT_TYPE_TKIP:
5414 params.cipher = WLAN_CIPHER_SUITE_TKIP;
5415 break;
5416
5417 case eCSR_ENCRYPT_TYPE_AES:
5418 params.cipher = WLAN_CIPHER_SUITE_AES_CMAC;
5419 break;
5420
5421 default:
5422 params.cipher = IW_AUTH_CIPHER_NONE;
5423 break;
5424 }
5425
c_hpothuaaf19692014-05-17 17:01:48 +05305426 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
5427 TRACE_CODE_HDD_CFG80211_GET_KEY,
5428 pAdapter->sessionId, params.cipher));
5429
Jeff Johnson295189b2012-06-20 16:38:30 -07005430 params.key_len = pRoamProfile->Keys.KeyLength[key_index];
5431 params.seq_len = 0;
5432 params.seq = NULL;
5433 params.key = &pRoamProfile->Keys.KeyMaterial[key_index][0];
5434 callback(cookie, &params);
5435 return 0;
5436}
5437
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +05305438#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
5439static int wlan_hdd_cfg80211_get_key(
5440 struct wiphy *wiphy,
5441 struct net_device *ndev,
5442 u8 key_index, bool pairwise,
5443 const u8 *mac_addr, void *cookie,
5444 void (*callback)(void *cookie, struct key_params*)
5445 )
5446#else
5447static int wlan_hdd_cfg80211_get_key(
5448 struct wiphy *wiphy,
5449 struct net_device *ndev,
5450 u8 key_index, const u8 *mac_addr, void *cookie,
5451 void (*callback)(void *cookie, struct key_params*)
5452 )
5453#endif
5454{
5455 int ret;
5456
5457 vos_ssr_protect(__func__);
5458#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
5459 ret = __wlan_hdd_cfg80211_get_key(wiphy, ndev, key_index, pairwise,
5460 mac_addr, cookie, callback);
5461#else
5462 ret = __wlan_hdd_cfg80211_get_key(wiphy, ndev, key_index, mac_addr,
5463 callback);
5464#endif
5465 vos_ssr_unprotect(__func__);
5466
5467 return ret;
5468}
5469
Jeff Johnson295189b2012-06-20 16:38:30 -07005470/*
5471 * FUNCTION: wlan_hdd_cfg80211_del_key
5472 * This function is used to delete the key information
5473 */
5474#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305475static int wlan_hdd_cfg80211_del_key( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07005476 struct net_device *ndev,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305477 u8 key_index,
5478 bool pairwise,
Jeff Johnson295189b2012-06-20 16:38:30 -07005479 const u8 *mac_addr
5480 )
5481#else
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305482static int wlan_hdd_cfg80211_del_key( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07005483 struct net_device *ndev,
5484 u8 key_index,
5485 const u8 *mac_addr
5486 )
5487#endif
5488{
5489 int status = 0;
5490
5491 //This code needs to be revisited. There is sme_removeKey API, we should
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305492 //plan to use that. After the change to use correct index in setkey,
Jeff Johnson295189b2012-06-20 16:38:30 -07005493 //it is observed that this is invalidating peer
5494 //key index whenever re-key is done. This is affecting data link.
5495 //It should be ok to ignore del_key.
5496#if 0
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305497 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( ndev );
5498 v_CONTEXT_t pVosContext = (WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
Jeff Johnson295189b2012-06-20 16:38:30 -07005499 u8 groupmacaddr[WNI_CFG_BSSID_LEN] = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF};
5500 tCsrRoamSetKey setKey;
5501 v_U32_t roamId= 0xFF;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305502
Jeff Johnson295189b2012-06-20 16:38:30 -07005503 ENTER();
5504
5505 hddLog(VOS_TRACE_LEVEL_INFO_HIGH, "%s: device_mode = %d\n",
5506 __func__,pAdapter->device_mode);
5507
5508 if (CSR_MAX_NUM_KEY <= key_index)
5509 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305510 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid key index %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07005511 key_index);
5512
5513 return -EINVAL;
5514 }
5515
5516 vos_mem_zero(&setKey,sizeof(tCsrRoamSetKey));
5517 setKey.keyId = key_index;
5518
5519 if (mac_addr)
5520 vos_mem_copy(setKey.peerMac, mac_addr,WNI_CFG_BSSID_LEN);
5521 else
5522 vos_mem_copy(setKey.peerMac, groupmacaddr, WNI_CFG_BSSID_LEN);
5523
5524 setKey.encType = eCSR_ENCRYPT_TYPE_NONE;
5525
5526 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -07005527 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305528 )
5529 {
5530
5531 hdd_hostapd_state_t *pHostapdState =
Jeff Johnson295189b2012-06-20 16:38:30 -07005532 WLAN_HDD_GET_HOSTAP_STATE_PTR(pAdapter);
5533 if( pHostapdState->bssState == BSS_START)
5534 {
5535 status = WLANSAP_SetKeySta( pVosContext, &setKey);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305536
Jeff Johnson295189b2012-06-20 16:38:30 -07005537 if ( status != eHAL_STATUS_SUCCESS )
5538 {
5539 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
5540 "[%4d] WLANSAP_SetKeySta returned ERROR status= %d",
5541 __LINE__, status );
5542 }
5543 }
5544 }
5545 else if ( (pAdapter->device_mode == WLAN_HDD_INFRA_STATION)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305546 || (pAdapter->device_mode == WLAN_HDD_P2P_CLIENT)
Jeff Johnson295189b2012-06-20 16:38:30 -07005547 )
5548 {
5549 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
5550
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305551 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_SETTING_KEY;
5552
5553 hddLog(VOS_TRACE_LEVEL_INFO_MED,
Jeff Johnson295189b2012-06-20 16:38:30 -07005554 "%s: delete key for peerMac %2x:%2x:%2x:%2x:%2x:%2x",
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305555 __func__, setKey.peerMac[0], setKey.peerMac[1],
5556 setKey.peerMac[2], setKey.peerMac[3],
Jeff Johnson295189b2012-06-20 16:38:30 -07005557 setKey.peerMac[4], setKey.peerMac[5]);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305558 if(pAdapter->sessionCtx.station.conn_info.connState ==
5559 eConnectionState_Associated)
Jeff Johnson295189b2012-06-20 16:38:30 -07005560 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305561 status = sme_RoamSetKey( WLAN_HDD_GET_HAL_CTX(pAdapter),
Jeff Johnson295189b2012-06-20 16:38:30 -07005562 pAdapter->sessionId, &setKey, &roamId );
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305563
Jeff Johnson295189b2012-06-20 16:38:30 -07005564 if ( 0 != status )
5565 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305566 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07005567 "%s: sme_RoamSetKey failure, returned %d",
5568 __func__, status);
5569 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_NONE;
5570 return -EINVAL;
5571 }
5572 }
5573 }
5574#endif
Jeff Johnsone7245742012-09-05 17:12:55 -07005575 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -07005576 return status;
5577}
5578
5579/*
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +05305580 * FUNCTION: __wlan_hdd_cfg80211_set_default_key
Jeff Johnson295189b2012-06-20 16:38:30 -07005581 * This function is used to set the default tx key index
5582 */
5583#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +05305584static int __wlan_hdd_cfg80211_set_default_key( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07005585 struct net_device *ndev,
5586 u8 key_index,
5587 bool unicast, bool multicast)
5588#else
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +05305589static int __wlan_hdd_cfg80211_set_default_key( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07005590 struct net_device *ndev,
5591 u8 key_index)
5592#endif
5593{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305594 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( ndev );
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305595 int status;
Gopichand Nakkala29149562013-05-10 21:43:41 +05305596 hdd_wext_state_t *pWextState;
5597 hdd_station_ctx_t *pHddStaCtx;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305598 hdd_context_t *pHddCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -07005599
5600 ENTER();
5601
Gopichand Nakkala29149562013-05-10 21:43:41 +05305602 if ((NULL == pAdapter))
5603 {
5604 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
5605 "invalid adapter");
5606 return -EINVAL;
5607 }
5608
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05305609 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
5610 TRACE_CODE_HDD_CFG80211_SET_DEFAULT_KEY,
5611 pAdapter->sessionId, key_index));
5612
Gopichand Nakkala29149562013-05-10 21:43:41 +05305613 pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
5614 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
5615
5616 if ((NULL == pWextState) || (NULL == pHddStaCtx))
5617 {
5618 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
5619 "invalid Wext state or HDD context");
5620 return -EINVAL;
5621 }
5622
Arif Hussain6d2a3322013-11-17 19:50:10 -08005623 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %d key_index = %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07005624 __func__,pAdapter->device_mode, key_index);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305625
Jeff Johnson295189b2012-06-20 16:38:30 -07005626 if (CSR_MAX_NUM_KEY <= key_index)
5627 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305628 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid key index %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07005629 key_index);
5630
5631 return -EINVAL;
5632 }
5633
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305634 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
5635 status = wlan_hdd_validate_context(pHddCtx);
5636
5637 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07005638 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305639 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
5640 "%s: HDD context is not valid", __func__);
5641 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07005642 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305643
Jeff Johnson295189b2012-06-20 16:38:30 -07005644 if ((pAdapter->device_mode == WLAN_HDD_INFRA_STATION)
Jeff Johnson295189b2012-06-20 16:38:30 -07005645 || (pAdapter->device_mode == WLAN_HDD_P2P_CLIENT)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305646 )
Jeff Johnson295189b2012-06-20 16:38:30 -07005647 {
Gopichand Nakkala29149562013-05-10 21:43:41 +05305648 if ( (eCSR_ENCRYPT_TYPE_TKIP !=
Arif Hussain6943f522013-11-04 20:10:10 -08005649 pHddStaCtx->conn_info.ucEncryptionType) &&
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305650 (eCSR_ENCRYPT_TYPE_AES !=
Arif Hussain6943f522013-11-04 20:10:10 -08005651 pHddStaCtx->conn_info.ucEncryptionType)
Jeff Johnson295189b2012-06-20 16:38:30 -07005652 )
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305653 {
5654 /* if default key index is not same as previous one,
Jeff Johnson295189b2012-06-20 16:38:30 -07005655 * then update the default key index */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305656
Jeff Johnson295189b2012-06-20 16:38:30 -07005657 tCsrRoamSetKey setKey;
5658 v_U32_t roamId= 0xFF;
5659 tCsrKeys *Keys = &pWextState->roamProfile.Keys;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305660
5661 hddLog(VOS_TRACE_LEVEL_INFO_HIGH, "%s: default tx key index %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07005662 __func__, key_index);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305663
Jeff Johnson295189b2012-06-20 16:38:30 -07005664 Keys->defaultIndex = (u8)key_index;
5665 vos_mem_zero(&setKey,sizeof(tCsrRoamSetKey));
5666 setKey.keyId = key_index;
5667 setKey.keyLength = Keys->KeyLength[key_index];
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305668
5669 vos_mem_copy(&setKey.Key[0],
5670 &Keys->KeyMaterial[key_index][0],
Jeff Johnson295189b2012-06-20 16:38:30 -07005671 Keys->KeyLength[key_index]);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305672
Gopichand Nakkala29149562013-05-10 21:43:41 +05305673 setKey.keyDirection = eSIR_TX_RX;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305674
5675 vos_mem_copy(setKey.peerMac,
Jeff Johnson295189b2012-06-20 16:38:30 -07005676 &pHddStaCtx->conn_info.bssId[0],
5677 WNI_CFG_BSSID_LEN);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305678
Gopichand Nakkala29149562013-05-10 21:43:41 +05305679 if (Keys->KeyLength[key_index] == CSR_WEP40_KEY_LEN &&
5680 pWextState->roamProfile.EncryptionType.encryptionType[0] ==
5681 eCSR_ENCRYPT_TYPE_WEP104)
5682 {
5683 /*In the case of dynamic wep supplicant hardcodes DWEP type to eCSR_ENCRYPT_TYPE_WEP104
5684 even though ap is configured for WEP-40 encryption. In this canse the key length
5685 is 5 but the encryption type is 104 hence checking the key langht(5) and encryption
5686 type(104) and switching encryption type to 40*/
5687 pWextState->roamProfile.EncryptionType.encryptionType[0] =
5688 eCSR_ENCRYPT_TYPE_WEP40;
5689 pWextState->roamProfile.mcEncryptionType.encryptionType[0] =
5690 eCSR_ENCRYPT_TYPE_WEP40;
5691 }
5692
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305693 setKey.encType =
Jeff Johnson295189b2012-06-20 16:38:30 -07005694 pWextState->roamProfile.EncryptionType.encryptionType[0];
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305695
Jeff Johnson295189b2012-06-20 16:38:30 -07005696 /* issue set key request */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305697 status = sme_RoamSetKey( WLAN_HDD_GET_HAL_CTX(pAdapter),
Jeff Johnson295189b2012-06-20 16:38:30 -07005698 pAdapter->sessionId, &setKey, &roamId );
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305699
Jeff Johnson295189b2012-06-20 16:38:30 -07005700 if ( 0 != status )
5701 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305702 hddLog(VOS_TRACE_LEVEL_ERROR,
5703 "%s: sme_RoamSetKey failed, returned %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07005704 status);
5705 return -EINVAL;
5706 }
5707 }
5708 }
5709
5710 /* In SoftAp mode setting key direction for default mode */
5711 else if ( WLAN_HDD_SOFTAP == pAdapter->device_mode )
5712 {
5713 if ( (eCSR_ENCRYPT_TYPE_TKIP !=
5714 pWextState->roamProfile.EncryptionType.encryptionType[0]) &&
5715 (eCSR_ENCRYPT_TYPE_AES !=
5716 pWextState->roamProfile.EncryptionType.encryptionType[0])
5717 )
5718 {
5719 /* Saving key direction for default key index to TX default */
5720 hdd_ap_ctx_t *pAPCtx = WLAN_HDD_GET_AP_CTX_PTR(pAdapter);
5721 pAPCtx->wepKey[key_index].keyDirection = eSIR_TX_DEFAULT;
5722 }
5723 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305724
Jeff Johnson295189b2012-06-20 16:38:30 -07005725 return status;
5726}
5727
Mahesh A Saptasagar1a51bc02014-06-02 18:28:08 +05305728#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
5729static int wlan_hdd_cfg80211_set_default_key( struct wiphy *wiphy,
5730 struct net_device *ndev,
5731 u8 key_index,
5732 bool unicast, bool multicast)
5733#else
5734static int wlan_hdd_cfg80211_set_default_key( struct wiphy *wiphy,
5735 struct net_device *ndev,
5736 u8 key_index)
5737#endif
5738{
5739 int ret;
5740 vos_ssr_protect(__func__);
5741#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
5742 ret = __wlan_hdd_cfg80211_set_default_key(wiphy, ndev, key_index, unicast,
5743 multicast);
5744#else
5745 ret = __wlan_hdd_cfg80211_set_default_key(wiphy, ndev, key_index);
5746#endif
5747 vos_ssr_unprotect(__func__);
5748
5749 return ret;
5750}
5751
Jeff Johnson295189b2012-06-20 16:38:30 -07005752/*
5753 * FUNCTION: wlan_hdd_cfg80211_inform_bss
5754 * This function is used to inform the BSS details to nl80211 interface.
5755 */
5756static struct cfg80211_bss* wlan_hdd_cfg80211_inform_bss(
5757 hdd_adapter_t *pAdapter, tCsrRoamConnectedProfile *roamProfile)
5758{
5759 struct net_device *dev = pAdapter->dev;
5760 struct wireless_dev *wdev = dev->ieee80211_ptr;
5761 struct wiphy *wiphy = wdev->wiphy;
5762 tSirBssDescription *pBssDesc = roamProfile->pBssDesc;
5763 int chan_no;
5764 int ie_length;
5765 const char *ie;
5766 unsigned int freq;
5767 struct ieee80211_channel *chan;
5768 int rssi = 0;
5769 struct cfg80211_bss *bss = NULL;
5770
5771 ENTER();
5772
5773 if( NULL == pBssDesc )
5774 {
Arif Hussain6d2a3322013-11-17 19:50:10 -08005775 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: pBssDesc is NULL", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07005776 return bss;
5777 }
5778
5779 chan_no = pBssDesc->channelId;
5780 ie_length = GET_IE_LEN_IN_BSS_DESC( pBssDesc->length );
5781 ie = ((ie_length != 0) ? (const char *)&pBssDesc->ieFields: NULL);
5782
5783 if( NULL == ie )
5784 {
Arif Hussain6d2a3322013-11-17 19:50:10 -08005785 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: IE of BSS descriptor is NULL", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07005786 return bss;
5787 }
5788
5789#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,38))
5790 if (chan_no <= ARRAY_SIZE(hdd_channels_2_4_GHZ))
5791 {
5792 freq = ieee80211_channel_to_frequency(chan_no, IEEE80211_BAND_2GHZ);
5793 }
5794 else
5795 {
5796 freq = ieee80211_channel_to_frequency(chan_no, IEEE80211_BAND_5GHZ);
5797 }
5798#else
5799 freq = ieee80211_channel_to_frequency(chan_no);
5800#endif
5801
5802 chan = __ieee80211_get_channel(wiphy, freq);
5803
Santhosh Kumar Padmaa45fdb12014-04-15 15:54:38 +05305804 if (!chan) {
5805 hddLog(VOS_TRACE_LEVEL_ERROR, "%s chan pointer is NULL", __func__);
5806 return NULL;
5807 }
5808
Jeff Johnson295189b2012-06-20 16:38:30 -07005809 bss = cfg80211_get_bss(wiphy, chan, pBssDesc->bssId,
5810 &roamProfile->SSID.ssId[0], roamProfile->SSID.length,
5811 WLAN_CAPABILITY_ESS, WLAN_CAPABILITY_ESS);
5812 if (bss == NULL)
5813 {
5814 rssi = (VOS_MIN ((pBssDesc->rssi + pBssDesc->sinr), 0))*100;
5815
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305816 return (cfg80211_inform_bss(wiphy, chan, pBssDesc->bssId,
5817 le64_to_cpu(*(__le64 *)pBssDesc->timeStamp),
Jeff Johnson295189b2012-06-20 16:38:30 -07005818 pBssDesc->capabilityInfo,
5819 pBssDesc->beaconInterval, ie, ie_length,
5820 rssi, GFP_KERNEL ));
5821}
5822 else
5823 {
5824 return bss;
5825 }
5826}
5827
5828
5829
5830/*
5831 * FUNCTION: wlan_hdd_cfg80211_inform_bss_frame
5832 * This function is used to inform the BSS details to nl80211 interface.
5833 */
5834struct cfg80211_bss*
5835wlan_hdd_cfg80211_inform_bss_frame( hdd_adapter_t *pAdapter,
5836 tSirBssDescription *bss_desc
5837 )
5838{
5839 /*
5840 cfg80211_inform_bss() is not updating ie field of bss entry, if entry
5841 already exists in bss data base of cfg80211 for that particular BSS ID.
5842 Using cfg80211_inform_bss_frame to update the bss entry instead of
5843 cfg80211_inform_bss, But this call expects mgmt packet as input. As of
5844 now there is no possibility to get the mgmt(probe response) frame from PE,
5845 converting bss_desc to ieee80211_mgmt(probe response) and passing to
5846 cfg80211_inform_bss_frame.
5847 */
5848 struct net_device *dev = pAdapter->dev;
5849 struct wireless_dev *wdev = dev->ieee80211_ptr;
5850 struct wiphy *wiphy = wdev->wiphy;
5851 int chan_no = bss_desc->channelId;
Madan Mohan Koyyalamudi86f629e2012-11-09 16:27:29 -08005852#ifdef WLAN_ENABLE_AGEIE_ON_SCAN_RESULTS
5853 qcom_ie_age *qie_age = NULL;
5854 int ie_length = GET_IE_LEN_IN_BSS_DESC( bss_desc->length ) + sizeof(qcom_ie_age);
5855#else
Jeff Johnson295189b2012-06-20 16:38:30 -07005856 int ie_length = GET_IE_LEN_IN_BSS_DESC( bss_desc->length );
Madan Mohan Koyyalamudi86f629e2012-11-09 16:27:29 -08005857#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07005858 const char *ie =
5859 ((ie_length != 0) ? (const char *)&bss_desc->ieFields: NULL);
5860 unsigned int freq;
5861 struct ieee80211_channel *chan;
Abhishek Singh1e2bfa32014-01-02 15:44:15 +05305862 struct ieee80211_mgmt *mgmt = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07005863 struct cfg80211_bss *bss_status = NULL;
5864 size_t frame_len = sizeof (struct ieee80211_mgmt) + ie_length;
5865 int rssi = 0;
Wilson Yangf80a0542013-10-07 13:02:37 -07005866 hdd_context_t *pHddCtx;
5867 int status;
Jeff Johnsone7245742012-09-05 17:12:55 -07005868#ifdef WLAN_OPEN_SOURCE
5869 struct timespec ts;
5870#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07005871
Wilson Yangf80a0542013-10-07 13:02:37 -07005872 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
5873 status = wlan_hdd_validate_context(pHddCtx);
5874
5875 /*bss_update is not allowed during wlan driver loading or unloading*/
Mihir Shete18156292014-03-11 15:38:30 +05305876 if (WLAN_HDD_IS_LOAD_UNLOAD_IN_PROGRESS(pHddCtx))
Wilson Yangf80a0542013-10-07 13:02:37 -07005877 {
5878 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
5879 "%s:Loading_unloading in Progress. Ignore!!!",__func__);
5880 return NULL;
5881 }
5882
5883
5884 if (0 != status)
5885 {
5886 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
5887 "%s: HDD context is not valid", __func__);
Madan Mohan Koyyalamudi2e5c9142012-11-02 13:17:48 -07005888 return NULL;
Wilson Yangf80a0542013-10-07 13:02:37 -07005889 }
5890
Abhishek Singh1e2bfa32014-01-02 15:44:15 +05305891 mgmt = kzalloc((sizeof (struct ieee80211_mgmt) + ie_length), GFP_KERNEL);
Wilson Yangf80a0542013-10-07 13:02:37 -07005892 if (!mgmt)
5893 {
5894 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
5895 "%s: memory allocation failed ", __func__);
5896 return NULL;
5897 }
Madan Mohan Koyyalamudi2e5c9142012-11-02 13:17:48 -07005898
Jeff Johnson295189b2012-06-20 16:38:30 -07005899 memcpy(mgmt->bssid, bss_desc->bssId, ETH_ALEN);
Jeff Johnsone7245742012-09-05 17:12:55 -07005900
5901#ifdef WLAN_OPEN_SOURCE
5902 /* Android does not want the timestamp from the frame.
5903 Instead it wants a monotonic increasing value */
5904 get_monotonic_boottime(&ts);
5905 mgmt->u.probe_resp.timestamp =
5906 ((u64)ts.tv_sec * 1000000) + (ts.tv_nsec / 1000);
5907#else
5908 /* keep old behavior for non-open source (for now) */
Jeff Johnson295189b2012-06-20 16:38:30 -07005909 memcpy(&mgmt->u.probe_resp.timestamp, bss_desc->timeStamp,
5910 sizeof (bss_desc->timeStamp));
Jeff Johnsone7245742012-09-05 17:12:55 -07005911
5912#endif
5913
Jeff Johnson295189b2012-06-20 16:38:30 -07005914 mgmt->u.probe_resp.beacon_int = bss_desc->beaconInterval;
5915 mgmt->u.probe_resp.capab_info = bss_desc->capabilityInfo;
Madan Mohan Koyyalamudi86f629e2012-11-09 16:27:29 -08005916
5917#ifdef WLAN_ENABLE_AGEIE_ON_SCAN_RESULTS
5918 /* GPS Requirement: need age ie per entry. Using vendor specific. */
5919 /* Assuming this is the last IE, copy at the end */
5920 ie_length -=sizeof(qcom_ie_age);
5921 qie_age = (qcom_ie_age *)(mgmt->u.probe_resp.variable + ie_length);
5922 qie_age->element_id = QCOM_VENDOR_IE_ID;
5923 qie_age->len = QCOM_VENDOR_IE_AGE_LEN;
5924 qie_age->oui_1 = QCOM_OUI1;
5925 qie_age->oui_2 = QCOM_OUI2;
5926 qie_age->oui_3 = QCOM_OUI3;
5927 qie_age->type = QCOM_VENDOR_IE_AGE_TYPE;
5928 qie_age->age = vos_timer_get_system_ticks() - bss_desc->nReceivedTime;
5929#endif
5930
Jeff Johnson295189b2012-06-20 16:38:30 -07005931 memcpy(mgmt->u.probe_resp.variable, ie, ie_length);
Gopichand Nakkalad908ec82013-05-16 19:32:19 +05305932 if (bss_desc->fProbeRsp)
5933 {
5934 mgmt->frame_control |=
5935 (u16)(IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_PROBE_RESP);
5936 }
5937 else
5938 {
5939 mgmt->frame_control |=
5940 (u16)(IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_BEACON);
5941 }
Jeff Johnson295189b2012-06-20 16:38:30 -07005942
5943#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,38))
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305944 if (chan_no <= ARRAY_SIZE(hdd_channels_2_4_GHZ) &&
Jeff Johnson295189b2012-06-20 16:38:30 -07005945 (wiphy->bands[IEEE80211_BAND_2GHZ] != NULL))
5946 {
5947 freq = ieee80211_channel_to_frequency(chan_no, IEEE80211_BAND_2GHZ);
5948 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305949 else if ((chan_no > ARRAY_SIZE(hdd_channels_2_4_GHZ)) &&
Jeff Johnson295189b2012-06-20 16:38:30 -07005950 (wiphy->bands[IEEE80211_BAND_5GHZ] != NULL))
5951
5952 {
5953 freq = ieee80211_channel_to_frequency(chan_no, IEEE80211_BAND_5GHZ);
5954 }
5955 else
5956 {
Nirav Shah20ac06f2013-12-12 18:14:06 +05305957 hddLog(VOS_TRACE_LEVEL_ERROR, "%s Invalid chan_no:%d",
5958 __func__, chan_no);
Jeff Johnson295189b2012-06-20 16:38:30 -07005959 kfree(mgmt);
5960 return NULL;
5961 }
5962#else
5963 freq = ieee80211_channel_to_frequency(chan_no);
5964#endif
5965 chan = __ieee80211_get_channel(wiphy, freq);
Leela V Kiran Kumar Reddy90032de2013-01-24 18:33:30 -08005966 /*when the band is changed on the fly using the GUI, three things are done
5967 * 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)
5968 * as part of the scan abort, message willbe queued to PE and we proceed with flushing and changinh the band.
5969 * pe will stop the scanning further and report back the results what ever it had till now by calling the call back function.
5970 * if the time between update band and scandone call back is sufficent enough the band change reflects in SME, SME validates the channels
5971 * and discards the channels correponding to previous band and calls back with zero bss results.
5972 * 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
5973 * all the channels correponding to previous band.this is due to race condition.but those channels are invalid to the new band and so
5974 * this function __ieee80211_get_channel will return NULL.Each time we report scan result with this pointer null warning kernel trace is printed.
5975 * if the scan results contain large number of APs continuosly kernel warning trace is printed and it will lead to apps watch dog bark.
5976 * So drop the bss and continue to next bss.
5977 */
5978 if(chan == NULL)
5979 {
Nirav Shah20ac06f2013-12-12 18:14:06 +05305980 hddLog(VOS_TRACE_LEVEL_ERROR, "%s chan pointer is NULL", __func__);
Chilam Ngc4244af2013-04-01 15:37:32 -07005981 kfree(mgmt);
Leela V Kiran Kumar Reddy90032de2013-01-24 18:33:30 -08005982 return NULL;
5983 }
Jeff Johnson295189b2012-06-20 16:38:30 -07005984 /*To keep the rssi icon of the connected AP in the scan window
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305985 *and the rssi icon of the wireless networks in sync
Jeff Johnson295189b2012-06-20 16:38:30 -07005986 * */
5987 if (( eConnectionState_Associated ==
5988 pAdapter->sessionCtx.station.conn_info.connState ) &&
5989 ( VOS_TRUE == vos_mem_compare(bss_desc->bssId,
5990 pAdapter->sessionCtx.station.conn_info.bssId,
5991 WNI_CFG_BSSID_LEN)))
5992 {
5993 /* supplicant takes the signal strength in terms of mBm(100*dBm) */
5994 rssi = (pAdapter->rssi * 100);
5995 }
5996 else
5997 {
5998 rssi = (VOS_MIN ((bss_desc->rssi + bss_desc->sinr), 0))*100;
5999 }
6000
Nirav Shah20ac06f2013-12-12 18:14:06 +05306001 hddLog(VOS_TRACE_LEVEL_INFO, "%s: BSSID:" MAC_ADDRESS_STR " Channel:%d"
6002 "RSSI:%d", __func__, MAC_ADDR_ARRAY(mgmt->bssid),
6003 chan->center_freq, (int)(rssi/100));
6004
Jeff Johnson295189b2012-06-20 16:38:30 -07006005 bss_status = cfg80211_inform_bss_frame(wiphy, chan, mgmt,
6006 frame_len, rssi, GFP_KERNEL);
6007 kfree(mgmt);
6008 return bss_status;
6009}
6010
6011/*
6012 * FUNCTION: wlan_hdd_cfg80211_update_bss_db
6013 * This function is used to update the BSS data base of CFG8011
6014 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306015struct cfg80211_bss* wlan_hdd_cfg80211_update_bss_db( hdd_adapter_t *pAdapter,
Jeff Johnson295189b2012-06-20 16:38:30 -07006016 tCsrRoamInfo *pRoamInfo
6017 )
6018{
6019 tCsrRoamConnectedProfile roamProfile;
6020 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
6021 struct cfg80211_bss *bss = NULL;
6022
6023 ENTER();
6024
6025 memset(&roamProfile, 0, sizeof(tCsrRoamConnectedProfile));
6026 sme_RoamGetConnectProfile(hHal, pAdapter->sessionId, &roamProfile);
6027
6028 if (NULL != roamProfile.pBssDesc)
6029 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306030 bss = wlan_hdd_cfg80211_inform_bss(pAdapter,
Jeff Johnson295189b2012-06-20 16:38:30 -07006031 &roamProfile);
6032
6033 if (NULL == bss)
6034 {
6035 hddLog(VOS_TRACE_LEVEL_INFO, "%s: cfg80211_inform_bss return NULL",
6036 __func__);
6037 }
6038
6039 sme_RoamFreeConnectProfile(hHal, &roamProfile);
6040 }
6041 else
6042 {
6043 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: roamProfile.pBssDesc is NULL",
6044 __func__);
6045 }
6046 return bss;
6047}
6048
6049/*
6050 * FUNCTION: wlan_hdd_cfg80211_update_bss
6051 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306052static int wlan_hdd_cfg80211_update_bss( struct wiphy *wiphy,
6053 hdd_adapter_t *pAdapter
Jeff Johnson295189b2012-06-20 16:38:30 -07006054 )
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306055{
Jeff Johnson295189b2012-06-20 16:38:30 -07006056 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
6057 tCsrScanResultInfo *pScanResult;
6058 eHalStatus status = 0;
6059 tScanResultHandle pResult;
6060 struct cfg80211_bss *bss_status = NULL;
Wilson Yangf80a0542013-10-07 13:02:37 -07006061 hdd_context_t *pHddCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -07006062
6063 ENTER();
6064
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05306065 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
6066 TRACE_CODE_HDD_CFG80211_UPDATE_BSS,
6067 NO_SESSION, pAdapter->sessionId));
6068
Wilson Yangf80a0542013-10-07 13:02:37 -07006069 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
6070
6071 if (pHddCtx->isLogpInProgress)
Jeff Johnson295189b2012-06-20 16:38:30 -07006072 {
Wilson Yangf80a0542013-10-07 13:02:37 -07006073 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
6074 "%s:LOGP in Progress. Ignore!!!",__func__);
6075 return -EAGAIN;
Jeff Johnson295189b2012-06-20 16:38:30 -07006076 }
6077
Wilson Yangf80a0542013-10-07 13:02:37 -07006078
6079 /*bss_update is not allowed during wlan driver loading or unloading*/
Mihir Shete18156292014-03-11 15:38:30 +05306080 if (WLAN_HDD_IS_LOAD_UNLOAD_IN_PROGRESS(pHddCtx))
Wilson Yangf80a0542013-10-07 13:02:37 -07006081 {
6082 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6083 "%s:Loading_unloading in Progress. Ignore!!!",__func__);
6084 return VOS_STATUS_E_PERM;
6085 }
6086
6087
Jeff Johnson295189b2012-06-20 16:38:30 -07006088 /*
6089 * start getting scan results and populate cgf80211 BSS database
6090 */
6091 status = sme_ScanGetResult(hHal, pAdapter->sessionId, NULL, &pResult);
6092
6093 /* no scan results */
6094 if (NULL == pResult)
6095 {
Nirav Shah20ac06f2013-12-12 18:14:06 +05306096 hddLog(VOS_TRACE_LEVEL_INFO, "%s: No scan result Status %d",
6097 __func__, status);
Jeff Johnson295189b2012-06-20 16:38:30 -07006098 return status;
6099 }
6100
6101 pScanResult = sme_ScanResultGetFirst(hHal, pResult);
6102
6103 while (pScanResult)
6104 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306105 /*
6106 * cfg80211_inform_bss() is not updating ie field of bss entry, if
6107 * entry already exists in bss data base of cfg80211 for that
6108 * particular BSS ID. Using cfg80211_inform_bss_frame to update the
6109 * bss entry instead of cfg80211_inform_bss, But this call expects
6110 * mgmt packet as input. As of now there is no possibility to get
6111 * the mgmt(probe response) frame from PE, converting bss_desc to
Jeff Johnson295189b2012-06-20 16:38:30 -07006112 * ieee80211_mgmt(probe response) and passing to c
6113 * fg80211_inform_bss_frame.
6114 * */
6115
6116 bss_status = wlan_hdd_cfg80211_inform_bss_frame(pAdapter,
6117 &pScanResult->BssDescriptor);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306118
Jeff Johnson295189b2012-06-20 16:38:30 -07006119
6120 if (NULL == bss_status)
6121 {
6122 hddLog(VOS_TRACE_LEVEL_INFO,
Arif Hussain6d2a3322013-11-17 19:50:10 -08006123 "%s: NULL returned by cfg80211_inform_bss", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07006124 }
6125 else
6126 {
Yue Maf49ba872013-08-19 12:04:25 -07006127 cfg80211_put_bss(
6128#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,9,0))
6129 wiphy,
6130#endif
6131 bss_status);
Jeff Johnson295189b2012-06-20 16:38:30 -07006132 }
6133
6134 pScanResult = sme_ScanResultGetNext(hHal, pResult);
6135 }
6136
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306137 sme_ScanResultPurge(hHal, pResult);
Jeff Johnson295189b2012-06-20 16:38:30 -07006138
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306139 return 0;
Jeff Johnson295189b2012-06-20 16:38:30 -07006140}
6141
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006142void
6143hddPrintMacAddr(tCsrBssid macAddr, tANI_U8 logLevel)
6144{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306145 VOS_TRACE(VOS_MODULE_ID_HDD, logLevel,
Arif Hussaina7c8e412013-11-20 11:06:42 -08006146 MAC_ADDRESS_STR, MAC_ADDR_ARRAY(macAddr));
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006147} /****** end hddPrintMacAddr() ******/
6148
6149void
Madan Mohan Koyyalamudic75be962012-10-18 19:19:03 -07006150hddPrintPmkId(tANI_U8 *pmkId, tANI_U8 logLevel)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006151{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306152 VOS_TRACE(VOS_MODULE_ID_HDD, logLevel,
Arif Hussain6d2a3322013-11-17 19:50:10 -08006153 "%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X",
Madan Mohan Koyyalamudic75be962012-10-18 19:19:03 -07006154 pmkId[0], pmkId[1], pmkId[2], pmkId[3], pmkId[4],
6155 pmkId[5], pmkId[6], pmkId[7], pmkId[8], pmkId[9], pmkId[10],
6156 pmkId[11], pmkId[12], pmkId[13], pmkId[14], pmkId[15]);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006157} /****** end hddPrintPmkId() ******/
6158
6159//hddPrintMacAddr(tCsrBssid macAddr, tANI_U8 logLevel);
6160//hddPrintMacAddr(macAddr, VOS_TRACE_LEVEL_FATAL);
6161
6162//void sirDumpBuf(tpAniSirGlobal pMac, tANI_U8 modId, tANI_U32 level, tANI_U8 *buf, tANI_U32 size);
6163//sirDumpBuf(pMac, VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL, pmkid, 16);
6164
6165#define dump_bssid(bssid) \
6166 { \
Jeff Johnsone7245742012-09-05 17:12:55 -07006167 hddLog(VOS_TRACE_LEVEL_INFO, "BSSID (MAC) address:\t"); \
6168 hddPrintMacAddr(bssid, VOS_TRACE_LEVEL_INFO);\
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006169 }
6170
6171#define dump_pmkid(pMac, pmkid) \
6172 { \
Jeff Johnsone7245742012-09-05 17:12:55 -07006173 hddLog(VOS_TRACE_LEVEL_INFO, "PMKSA-ID:\t"); \
6174 hddPrintPmkId(pmkid, VOS_TRACE_LEVEL_INFO);\
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006175 }
6176
Madan Mohan Koyyalamudi1b4afb02012-10-22 15:25:16 -07006177#if defined(FEATURE_WLAN_LFR) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006178/*
6179 * FUNCTION: wlan_hdd_cfg80211_pmksa_candidate_notify
6180 * This function is used to notify the supplicant of a new PMKSA candidate.
6181 */
6182int wlan_hdd_cfg80211_pmksa_candidate_notify(
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306183 hdd_adapter_t *pAdapter, tCsrRoamInfo *pRoamInfo,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006184 int index, bool preauth )
6185{
Jeff Johnsone7245742012-09-05 17:12:55 -07006186#ifdef FEATURE_WLAN_OKC
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006187 struct net_device *dev = pAdapter->dev;
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07006188 hdd_context_t *pHddCtx = (hdd_context_t*)pAdapter->pHddCtx;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006189
6190 ENTER();
Jeff Johnsone7245742012-09-05 17:12:55 -07006191 hddLog(VOS_TRACE_LEVEL_INFO, "%s is going to notify supplicant of:", __func__);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006192
6193 if( NULL == pRoamInfo )
6194 {
Arif Hussain6d2a3322013-11-17 19:50:10 -08006195 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: pRoamInfo is NULL", __func__);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006196 return -EINVAL;
6197 }
6198
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07006199 if (eANI_BOOLEAN_TRUE == hdd_is_okc_mode_enabled(pHddCtx))
6200 {
6201 dump_bssid(pRoamInfo->bssid);
6202 cfg80211_pmksa_candidate_notify(dev, index,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006203 pRoamInfo->bssid, preauth, GFP_KERNEL);
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07006204 }
Jeff Johnsone7245742012-09-05 17:12:55 -07006205#endif /* FEATURE_WLAN_OKC */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306206 return 0;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006207}
6208#endif //FEATURE_WLAN_LFR
6209
Yue Maef608272013-04-08 23:09:17 -07006210#ifdef FEATURE_WLAN_LFR_METRICS
6211/*
6212 * FUNCTION: wlan_hdd_cfg80211_roam_metrics_preauth
6213 * 802.11r/LFR metrics reporting function to report preauth initiation
6214 *
6215 */
6216#define MAX_LFR_METRICS_EVENT_LENGTH 100
6217VOS_STATUS wlan_hdd_cfg80211_roam_metrics_preauth(hdd_adapter_t *pAdapter,
6218 tCsrRoamInfo *pRoamInfo)
6219{
6220 unsigned char metrics_notification[MAX_LFR_METRICS_EVENT_LENGTH + 1];
6221 union iwreq_data wrqu;
6222
6223 ENTER();
6224
6225 if (NULL == pAdapter)
6226 {
6227 hddLog(LOGE, "%s: pAdapter is NULL!", __func__);
6228 return VOS_STATUS_E_FAILURE;
6229 }
6230
6231 /* create the event */
6232 memset(&wrqu, 0, sizeof(wrqu));
6233 memset(metrics_notification, 0, sizeof(metrics_notification));
6234
6235 wrqu.data.pointer = metrics_notification;
6236 wrqu.data.length = scnprintf(metrics_notification,
6237 sizeof(metrics_notification), "QCOM: LFR_PREAUTH_INIT "
6238 MAC_ADDRESS_STR, MAC_ADDR_ARRAY(pRoamInfo->bssid));
6239
6240 wireless_send_event(pAdapter->dev, IWEVCUSTOM, &wrqu, metrics_notification);
6241
6242 EXIT();
6243
6244 return VOS_STATUS_SUCCESS;
6245}
6246
6247/*
6248 * FUNCTION: wlan_hdd_cfg80211_roam_metrics_preauth_status
6249 * 802.11r/LFR metrics reporting function to report preauth completion
6250 * or failure
6251 */
6252VOS_STATUS wlan_hdd_cfg80211_roam_metrics_preauth_status(
6253 hdd_adapter_t *pAdapter, tCsrRoamInfo *pRoamInfo, bool preauth_status)
6254{
6255 unsigned char metrics_notification[MAX_LFR_METRICS_EVENT_LENGTH + 1];
6256 union iwreq_data wrqu;
6257
6258 ENTER();
6259
6260 if (NULL == pAdapter)
6261 {
6262 hddLog(LOGE, "%s: pAdapter is NULL!", __func__);
6263 return VOS_STATUS_E_FAILURE;
6264 }
6265
6266 /* create the event */
6267 memset(&wrqu, 0, sizeof(wrqu));
6268 memset(metrics_notification, 0, sizeof(metrics_notification));
6269
6270 scnprintf(metrics_notification, sizeof(metrics_notification),
6271 "QCOM: LFR_PREAUTH_STATUS "MAC_ADDRESS_STR,
6272 MAC_ADDR_ARRAY(pRoamInfo->bssid));
6273
6274 if (1 == preauth_status)
6275 strncat(metrics_notification, " TRUE", 5);
6276 else
6277 strncat(metrics_notification, " FALSE", 6);
6278
6279 wrqu.data.pointer = metrics_notification;
6280 wrqu.data.length = strlen(metrics_notification);
6281
6282 wireless_send_event(pAdapter->dev, IWEVCUSTOM, &wrqu, metrics_notification);
6283
6284 EXIT();
6285
6286 return VOS_STATUS_SUCCESS;
6287}
6288
6289/*
6290 * FUNCTION: wlan_hdd_cfg80211_roam_metrics_handover
6291 * 802.11r/LFR metrics reporting function to report handover initiation
6292 *
6293 */
6294VOS_STATUS wlan_hdd_cfg80211_roam_metrics_handover(hdd_adapter_t * pAdapter,
6295 tCsrRoamInfo *pRoamInfo)
6296{
6297 unsigned char metrics_notification[MAX_LFR_METRICS_EVENT_LENGTH + 1];
6298 union iwreq_data wrqu;
6299
6300 ENTER();
6301
6302 if (NULL == pAdapter)
6303 {
6304 hddLog(LOGE, "%s: pAdapter is NULL!", __func__);
6305 return VOS_STATUS_E_FAILURE;
6306 }
6307
6308 /* create the event */
6309 memset(&wrqu, 0, sizeof(wrqu));
6310 memset(metrics_notification, 0, sizeof(metrics_notification));
6311
6312 wrqu.data.pointer = metrics_notification;
6313 wrqu.data.length = scnprintf(metrics_notification,
6314 sizeof(metrics_notification), "QCOM: LFR_PREAUTH_HANDOVER "
6315 MAC_ADDRESS_STR, MAC_ADDR_ARRAY(pRoamInfo->bssid));
6316
6317 wireless_send_event(pAdapter->dev, IWEVCUSTOM, &wrqu, metrics_notification);
6318
6319 EXIT();
6320
6321 return VOS_STATUS_SUCCESS;
6322}
6323#endif
6324
Jeff Johnson295189b2012-06-20 16:38:30 -07006325/*
6326 * FUNCTION: hdd_cfg80211_scan_done_callback
6327 * scanning callback function, called after finishing scan
6328 *
6329 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306330static eHalStatus hdd_cfg80211_scan_done_callback(tHalHandle halHandle,
Jeff Johnson295189b2012-06-20 16:38:30 -07006331 void *pContext, tANI_U32 scanId, eCsrScanStatus status)
6332{
6333 struct net_device *dev = (struct net_device *) pContext;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306334 //struct wireless_dev *wdev = dev->ieee80211_ptr;
Jeff Johnson295189b2012-06-20 16:38:30 -07006335 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07006336 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
6337 hdd_scaninfo_t *pScanInfo = &pHddCtx->scan_info;
Jeff Johnson295189b2012-06-20 16:38:30 -07006338 struct cfg80211_scan_request *req = NULL;
6339 int ret = 0;
Mahesh A Saptasagar05a357e2014-02-26 16:28:06 +05306340 bool aborted = false;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306341 long waitRet = 0;
Jeff Johnson295189b2012-06-20 16:38:30 -07006342
6343 ENTER();
6344
6345 hddLog(VOS_TRACE_LEVEL_INFO,
6346 "%s called with halHandle = %p, pContext = %p,"
Arif Hussain6d2a3322013-11-17 19:50:10 -08006347 "scanID = %d, returned status = %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07006348 __func__, halHandle, pContext, (int) scanId, (int) status);
6349
Kiet Lamac06e2c2013-10-23 16:25:07 +05306350 pScanInfo->mScanPendingCounter = 0;
6351
Jeff Johnson295189b2012-06-20 16:38:30 -07006352 //Block on scan req completion variable. Can't wait forever though.
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306353 waitRet = wait_for_completion_interruptible_timeout(
Jeff Johnson295189b2012-06-20 16:38:30 -07006354 &pScanInfo->scan_req_completion_event,
6355 msecs_to_jiffies(WLAN_WAIT_TIME_SCAN_REQ));
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306356 if (waitRet <= 0)
Jeff Johnson295189b2012-06-20 16:38:30 -07006357 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05306358 hddLog(VOS_TRACE_LEVEL_ERROR,
6359 "%s wait on scan_req_completion_event failed %ld",__func__, waitRet);
Jeff Johnson295189b2012-06-20 16:38:30 -07006360 VOS_ASSERT(pScanInfo->mScanPending);
Jeff Johnsone7245742012-09-05 17:12:55 -07006361 goto allow_suspend;
Jeff Johnson295189b2012-06-20 16:38:30 -07006362 }
6363
Yue Maef608272013-04-08 23:09:17 -07006364 if (pScanInfo->mScanPending != VOS_TRUE)
Jeff Johnson295189b2012-06-20 16:38:30 -07006365 {
6366 VOS_ASSERT(pScanInfo->mScanPending);
Jeff Johnsone7245742012-09-05 17:12:55 -07006367 goto allow_suspend;
Jeff Johnson295189b2012-06-20 16:38:30 -07006368 }
6369
6370 /* Check the scanId */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306371 if (pScanInfo->scanId != scanId)
Jeff Johnson295189b2012-06-20 16:38:30 -07006372 {
6373 hddLog(VOS_TRACE_LEVEL_INFO,
6374 "%s called with mismatched scanId pScanInfo->scanId = %d "
Arif Hussain6d2a3322013-11-17 19:50:10 -08006375 "scanId = %d", __func__, (int) pScanInfo->scanId,
Jeff Johnson295189b2012-06-20 16:38:30 -07006376 (int) scanId);
6377 }
6378
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306379 ret = wlan_hdd_cfg80211_update_bss((WLAN_HDD_GET_CTX(pAdapter))->wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07006380 pAdapter);
6381
6382 if (0 > ret)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306383 hddLog(VOS_TRACE_LEVEL_INFO, "%s: NO SCAN result", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07006384
6385
6386 /* If any client wait scan result through WEXT
6387 * send scan done event to client */
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07006388 if (pHddCtx->scan_info.waitScanResult)
Jeff Johnson295189b2012-06-20 16:38:30 -07006389 {
6390 /* The other scan request waiting for current scan finish
6391 * Send event to notify current scan finished */
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07006392 if(WEXT_SCAN_PENDING_DELAY == pHddCtx->scan_info.scan_pending_option)
Jeff Johnson295189b2012-06-20 16:38:30 -07006393 {
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07006394 vos_event_set(&pHddCtx->scan_info.scan_finished_event);
Jeff Johnson295189b2012-06-20 16:38:30 -07006395 }
6396 /* Send notify to WEXT client */
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07006397 else if(WEXT_SCAN_PENDING_PIGGYBACK == pHddCtx->scan_info.scan_pending_option)
Jeff Johnson295189b2012-06-20 16:38:30 -07006398 {
6399 struct net_device *dev = pAdapter->dev;
6400 union iwreq_data wrqu;
6401 int we_event;
6402 char *msg;
6403
6404 memset(&wrqu, '\0', sizeof(wrqu));
6405 we_event = SIOCGIWSCAN;
6406 msg = NULL;
6407 wireless_send_event(dev, we_event, &wrqu, msg);
6408 }
6409 }
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07006410 pHddCtx->scan_info.waitScanResult = FALSE;
Jeff Johnson295189b2012-06-20 16:38:30 -07006411
6412 /* Get the Scan Req */
6413 req = pAdapter->request;
6414
6415 if (!req)
6416 {
Arif Hussain6d2a3322013-11-17 19:50:10 -08006417 hddLog(VOS_TRACE_LEVEL_ERROR, "request is became NULL");
Madan Mohan Koyyalamudi9f5a10c2012-09-28 14:46:16 -07006418 pScanInfo->mScanPending = VOS_FALSE;
Jeff Johnsone7245742012-09-05 17:12:55 -07006419 goto allow_suspend;
Jeff Johnson295189b2012-06-20 16:38:30 -07006420 }
6421
6422 /*
6423 * setting up 0, just in case.
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306424 */
Jeff Johnson295189b2012-06-20 16:38:30 -07006425 req->n_ssids = 0;
6426 req->n_channels = 0;
6427 req->ie = 0;
6428
Jeff Johnson295189b2012-06-20 16:38:30 -07006429 pAdapter->request = NULL;
Jeff Johnsone7245742012-09-05 17:12:55 -07006430 /* Scan is no longer pending */
6431 pScanInfo->mScanPending = VOS_FALSE;
Jeff Johnson295189b2012-06-20 16:38:30 -07006432
Madan Mohan Koyyalamudib764bf82012-10-11 16:38:51 -07006433 /*
6434 * cfg80211_scan_done informing NL80211 about completion
6435 * of scanning
6436 */
Mahesh A Saptasagar05a357e2014-02-26 16:28:06 +05306437 if (status == eCSR_SCAN_ABORT || status == eCSR_SCAN_FAILURE)
6438 {
6439 aborted = true;
6440 }
6441 cfg80211_scan_done(req, aborted);
Madan Mohan Koyyalamudif4e81002012-11-13 10:46:38 -08006442 complete(&pScanInfo->abortscan_event_var);
Jeff Johnson295189b2012-06-20 16:38:30 -07006443
Jeff Johnsone7245742012-09-05 17:12:55 -07006444allow_suspend:
Madan Mohan Koyyalamudi9f5a10c2012-09-28 14:46:16 -07006445 /* release the wake lock at the end of the scan*/
6446 hdd_allow_suspend();
Jeff Johnsone7245742012-09-05 17:12:55 -07006447
Madan Mohan Koyyalamudi10d83a92012-09-28 15:47:05 -07006448 /* Acquire wakelock to handle the case where APP's tries to suspend
6449 * immediatly after the driver gets connect request(i.e after scan)
6450 * from supplicant, this result in app's is suspending and not able
6451 * to process the connect request to AP */
Mahesh A Saptasagarb9c50402014-01-16 15:49:22 +05306452 hdd_prevent_suspend_timeout(1000);
Madan Mohan Koyyalamudi10d83a92012-09-28 15:47:05 -07006453
Gopichand Nakkala638ebc72013-03-21 18:04:02 -07006454#ifdef FEATURE_WLAN_TDLS
c_hpothu3c8f8e82014-06-02 18:01:50 +05306455 if (!(eTDLS_SUPPORT_NOT_ENABLED == pHddCtx->tdls_mode))
6456 {
6457 wlan_hdd_tdls_scan_done_callback(pAdapter);
6458 }
Gopichand Nakkala638ebc72013-03-21 18:04:02 -07006459#endif
6460
Jeff Johnson295189b2012-06-20 16:38:30 -07006461 EXIT();
6462 return 0;
6463}
6464
6465/*
Rashmi Ramannab1429032014-04-26 14:59:09 +05306466 * FUNCTION: hdd_isConnectionInProgress
6467 * Go through each adapter and check if Connection is in progress
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08006468 *
6469 */
Rashmi Ramannab1429032014-04-26 14:59:09 +05306470v_BOOL_t hdd_isConnectionInProgress( hdd_context_t *pHddCtx )
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08006471{
6472 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
6473 hdd_station_ctx_t *pHddStaCtx = NULL;
6474 hdd_adapter_t *pAdapter = NULL;
6475 VOS_STATUS status = 0;
6476 v_U8_t staId = 0;
6477 v_U8_t *staMac = NULL;
6478
c_hpothu9b781ba2013-12-30 20:57:45 +05306479 if (TRUE == pHddCtx->btCoexModeSet)
6480 {
6481 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Rashmi Ramannab1429032014-04-26 14:59:09 +05306482 FL("BTCoex Mode operation in progress"));
6483 return VOS_TRUE;
c_hpothu9b781ba2013-12-30 20:57:45 +05306484 }
6485
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08006486 status = hdd_get_front_adapter ( pHddCtx, &pAdapterNode );
6487
6488 while ( NULL != pAdapterNode && VOS_STATUS_SUCCESS == status )
6489 {
6490 pAdapter = pAdapterNode->pAdapter;
6491
6492 if( pAdapter )
6493 {
6494 hddLog(VOS_TRACE_LEVEL_INFO,
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05306495 "%s: Adapter with device mode %s (%d) exists",
6496 __func__, hdd_device_modetoString(pAdapter->device_mode),
6497 pAdapter->device_mode);
Rashmi Ramannab1429032014-04-26 14:59:09 +05306498 if (((WLAN_HDD_INFRA_STATION == pAdapter->device_mode) ||
6499 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode) ||
6500 (WLAN_HDD_P2P_DEVICE == pAdapter->device_mode)) &&
6501 (eConnectionState_Connecting ==
6502 (WLAN_HDD_GET_STATION_CTX_PTR(pAdapter))->conn_info.connState))
6503 {
6504 hddLog(VOS_TRACE_LEVEL_ERROR,
6505 "%s: %p(%d) Connection is in progress", __func__,
6506 WLAN_HDD_GET_STATION_CTX_PTR(pAdapter), pAdapter->sessionId);
6507 return VOS_TRUE;
6508 }
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08006509 if ((WLAN_HDD_INFRA_STATION == pAdapter->device_mode) ||
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05306510 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode) ||
6511 (WLAN_HDD_P2P_DEVICE == pAdapter->device_mode))
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08006512 {
6513 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
6514 if ((eConnectionState_Associated == pHddStaCtx->conn_info.connState) &&
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05306515 (VOS_FALSE == pHddStaCtx->conn_info.uIsAuthenticated))
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08006516 {
6517 staMac = (v_U8_t *) &(pAdapter->macAddressCurrent.bytes[0]);
6518 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain24bafea2013-11-15 15:10:03 -08006519 "%s: client " MAC_ADDRESS_STR
6520 " is in the middle of WPS/EAPOL exchange.", __func__,
6521 MAC_ADDR_ARRAY(staMac));
Rashmi Ramannab1429032014-04-26 14:59:09 +05306522 return VOS_TRUE;
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08006523 }
6524 }
6525 else if ((WLAN_HDD_SOFTAP == pAdapter->device_mode) ||
6526 (WLAN_HDD_P2P_GO == pAdapter->device_mode))
6527 {
6528 for (staId = 0; staId < WLAN_MAX_STA_COUNT; staId++)
6529 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306530 if ((pAdapter->aStaInfo[staId].isUsed) &&
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08006531 (WLANTL_STA_CONNECTED == pAdapter->aStaInfo[staId].tlSTAState))
6532 {
6533 staMac = (v_U8_t *) &(pAdapter->aStaInfo[staId].macAddrSTA.bytes[0]);
6534
6535 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain24bafea2013-11-15 15:10:03 -08006536 "%s: client " MAC_ADDRESS_STR " of SoftAP/P2P-GO is in the "
6537 "middle of WPS/EAPOL exchange.", __func__,
6538 MAC_ADDR_ARRAY(staMac));
Rashmi Ramannab1429032014-04-26 14:59:09 +05306539 return VOS_TRUE;
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08006540 }
6541 }
6542 }
6543 }
6544 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
6545 pAdapterNode = pNext;
6546 }
Rashmi Ramannab1429032014-04-26 14:59:09 +05306547 return VOS_FALSE;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306548}
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08006549
6550/*
Mahesh A Saptasagarfafb7fe2014-05-16 13:19:37 +05306551 * FUNCTION: __wlan_hdd_cfg80211_scan
Jeff Johnson295189b2012-06-20 16:38:30 -07006552 * this scan respond to scan trigger and update cfg80211 scan database
6553 * later, scan dump command can be used to recieve scan results
6554 */
Mahesh A Saptasagarfafb7fe2014-05-16 13:19:37 +05306555int __wlan_hdd_cfg80211_scan( struct wiphy *wiphy,
Jeff Johnson3bbe4bf2013-01-18 17:05:29 -08006556#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,6,0))
6557 struct net_device *dev,
6558#endif
6559 struct cfg80211_scan_request *request)
6560{
Siddharth Bhal0c162d02014-05-06 19:50:42 +05306561 hdd_adapter_t *pAdapter = NULL;
6562 hdd_context_t *pHddCtx = NULL;
6563 hdd_wext_state_t *pwextBuf = NULL;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306564 hdd_config_t *cfg_param = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07006565 tCsrScanRequest scanRequest;
6566 tANI_U8 *channelList = NULL, i;
6567 v_U32_t scanId = 0;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306568 int status;
6569 hdd_scaninfo_t *pScanInfo = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07006570 v_U8_t* pP2pIe = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07006571
Siddharth Bhal0c162d02014-05-06 19:50:42 +05306572#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,6,0))
6573 struct net_device *dev = NULL;
6574 if (NULL == request)
6575 {
6576 hddLog(VOS_TRACE_LEVEL_ERROR,
6577 "%s: scan req param null", __func__);
6578 return -EINVAL;
6579 }
6580 dev = request->wdev->netdev;
6581#endif
6582
6583 pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
6584 pHddCtx = WLAN_HDD_GET_CTX( pAdapter );
6585 pwextBuf = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
6586
Jeff Johnson295189b2012-06-20 16:38:30 -07006587 ENTER();
6588
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05306589
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05306590 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s (%d)",
6591 __func__, hdd_device_modetoString(pAdapter->device_mode),
6592 pAdapter->device_mode);
Madan Mohan Koyyalamudifd4e1da2012-11-09 17:50:19 -08006593
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306594 status = wlan_hdd_validate_context(pHddCtx);
6595
6596 if (0 != status)
6597 {
6598 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6599 "%s: HDD context is not valid", __func__);
6600 return status;
6601 }
6602
Siddharth Bhal0c162d02014-05-06 19:50:42 +05306603 if (NULL == pwextBuf)
6604 {
6605 hddLog (VOS_TRACE_LEVEL_ERROR, "%s ERROR: invalid WEXT state\n",
6606 __func__);
6607 return -EIO;
6608 }
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306609 cfg_param = pHddCtx->cfg_ini;
6610 pScanInfo = &pHddCtx->scan_info;
6611
Jeff Johnson295189b2012-06-20 16:38:30 -07006612#ifdef WLAN_BTAMP_FEATURE
6613 //Scan not supported when AMP traffic is on.
Gopichand Nakkala681989c2013-03-06 22:27:48 -08006614 if (VOS_TRUE == WLANBAP_AmpSessionOn())
Jeff Johnson295189b2012-06-20 16:38:30 -07006615 {
Madan Mohan Koyyalamudifd4e1da2012-11-09 17:50:19 -08006616 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07006617 "%s: No scanning when AMP is on", __func__);
6618 return -EOPNOTSUPP;
6619 }
6620#endif
6621 //Scan on any other interface is not supported.
Gopichand Nakkala681989c2013-03-06 22:27:48 -08006622 if (pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -07006623 {
Gopichand Nakkala681989c2013-03-06 22:27:48 -08006624 hddLog(VOS_TRACE_LEVEL_ERROR,
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05306625 "%s: Not scanning on device_mode = %s (%d)",
6626 __func__, hdd_device_modetoString(pAdapter->device_mode),
6627 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07006628 return -EOPNOTSUPP;
6629 }
6630
6631 if (TRUE == pScanInfo->mScanPending)
6632 {
Kiet Lamac06e2c2013-10-23 16:25:07 +05306633 if ( MAX_PENDING_LOG > pScanInfo->mScanPendingCounter++ )
6634 {
6635 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: mScanPending is TRUE", __func__);
6636 }
Gopichand Nakkala681989c2013-03-06 22:27:48 -08006637 return -EBUSY;
Jeff Johnson295189b2012-06-20 16:38:30 -07006638 }
6639
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306640 //Don't Allow Scan and return busy if Remain On
Jeff Johnson32d95a32012-09-10 13:15:23 -07006641 //Channel and action frame is pending
6642 //Otherwise Cancel Remain On Channel and allow Scan
6643 //If no action frame pending
Gopichand Nakkala681989c2013-03-06 22:27:48 -08006644 if (0 != wlan_hdd_check_remain_on_channel(pAdapter))
Jeff Johnson32d95a32012-09-10 13:15:23 -07006645 {
Kiet Lamac06e2c2013-10-23 16:25:07 +05306646 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Remain On Channel Pending", __func__);
Jeff Johnson32d95a32012-09-10 13:15:23 -07006647 return -EBUSY;
6648 }
Gopichand Nakkala681989c2013-03-06 22:27:48 -08006649#ifdef FEATURE_WLAN_TDLS
Gopichand Nakkala638ebc72013-03-21 18:04:02 -07006650 /* if tdls disagree scan right now, return immediately.
6651 tdls will schedule the scan when scan is allowed. (return SUCCESS)
6652 or will reject the scan if any TDLS is in progress. (return -EBUSY)
6653 */
6654 status = wlan_hdd_tdls_scan_callback (pAdapter,
6655 wiphy,
6656#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,6,0))
6657 dev,
Gopichand Nakkalac3c42b92013-03-20 19:42:34 -07006658#endif
Gopichand Nakkala638ebc72013-03-21 18:04:02 -07006659 request);
6660 if(status <= 0)
6661 {
Nirav Shah20ac06f2013-12-12 18:14:06 +05306662 if(!status)
6663 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: TDLS in progress."
6664 "scan rejected %d", __func__, status);
6665 else
6666 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: TDLS teardown is ongoing %d",
6667 __func__, status);
6668
Gopichand Nakkala638ebc72013-03-21 18:04:02 -07006669 return status;
Gopichand Nakkala681989c2013-03-06 22:27:48 -08006670 }
6671#endif
Jeff Johnson32d95a32012-09-10 13:15:23 -07006672
Jeff Johnson295189b2012-06-20 16:38:30 -07006673 if (mutex_lock_interruptible(&pHddCtx->tmInfo.tmOperationLock))
6674 {
6675 VOS_TRACE(VOS_MODULE_ID_HDD,VOS_TRACE_LEVEL_ERROR,
Jeff Johnson1250df42012-12-10 14:31:52 -08006676 "%s: Acquire lock fail", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07006677 return -EAGAIN;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306678 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006679 if (TRUE == pHddCtx->tmInfo.tmAction.enterImps)
6680 {
Nirav Shah20ac06f2013-12-12 18:14:06 +05306681 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07006682 "%s: MAX TM Level Scan not allowed", __func__);
6683 mutex_unlock(&pHddCtx->tmInfo.tmOperationLock);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306684 return -EBUSY;
Jeff Johnson295189b2012-06-20 16:38:30 -07006685 }
6686 mutex_unlock(&pHddCtx->tmInfo.tmOperationLock);
6687
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08006688 /* Check if scan is allowed at this point of time.
6689 */
Rashmi Ramannab1429032014-04-26 14:59:09 +05306690 if (hdd_isConnectionInProgress(pHddCtx))
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08006691 {
6692 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Scan not allowed", __func__);
6693 return -EBUSY;
6694 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306695
Jeff Johnson295189b2012-06-20 16:38:30 -07006696 vos_mem_zero( &scanRequest, sizeof(scanRequest));
6697
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05306698 hddLog(VOS_TRACE_LEVEL_INFO, "scan request for ssid = %d",
6699 (int)request->n_ssids);
6700
6701 /* Even though supplicant doesn't provide any SSIDs, n_ssids is set to 1.
6702 * Becasue of this, driver is assuming that this is not wildcard scan and so
6703 * is not aging out the scan results.
6704 */
6705 if (request->ssids && '\0' == request->ssids->ssid[0])
Jeff Johnson295189b2012-06-20 16:38:30 -07006706 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05306707 request->n_ssids = 0;
Jeff Johnson295189b2012-06-20 16:38:30 -07006708 }
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05306709
6710 if ((request->ssids) && (0 < request->n_ssids))
6711 {
6712 tCsrSSIDInfo *SsidInfo;
6713 int j;
6714 scanRequest.SSIDs.numOfSSIDs = request->n_ssids;
6715 /* Allocate num_ssid tCsrSSIDInfo structure */
6716 SsidInfo = scanRequest.SSIDs.SSIDList =
6717 ( tCsrSSIDInfo *)vos_mem_malloc(
6718 request->n_ssids*sizeof(tCsrSSIDInfo));
6719
6720 if(NULL == scanRequest.SSIDs.SSIDList)
6721 {
6722 hddLog(VOS_TRACE_LEVEL_ERROR,
6723 "%s: memory alloc failed SSIDInfo buffer", __func__);
6724 return -ENOMEM;
6725 }
6726
6727 /* copy all the ssid's and their length */
6728 for(j = 0; j < request->n_ssids; j++, SsidInfo++)
6729 {
6730 /* get the ssid length */
6731 SsidInfo->SSID.length = request->ssids[j].ssid_len;
6732 vos_mem_copy(SsidInfo->SSID.ssId, &request->ssids[j].ssid[0],
6733 SsidInfo->SSID.length);
6734 SsidInfo->SSID.ssId[SsidInfo->SSID.length] = '\0';
6735 hddLog(VOS_TRACE_LEVEL_INFO, "SSID number %d: %s",
6736 j, SsidInfo->SSID.ssId);
6737 }
6738 /* set the scan type to active */
6739 scanRequest.scanType = eSIR_ACTIVE_SCAN;
6740 }
6741 else if(WLAN_HDD_P2P_GO == pAdapter->device_mode)
Jeff Johnson295189b2012-06-20 16:38:30 -07006742 {
Siddharth Bhal0c162d02014-05-06 19:50:42 +05306743 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
6744 TRACE_CODE_HDD_CFG80211_SCAN,
6745 pAdapter->sessionId, 0));
Jeff Johnson295189b2012-06-20 16:38:30 -07006746 /* set the scan type to active */
6747 scanRequest.scanType = eSIR_ACTIVE_SCAN;
Jeff Johnson295189b2012-06-20 16:38:30 -07006748 }
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05306749 else
6750 {
6751 /*Set the scan type to default type, in this case it is ACTIVE*/
6752 scanRequest.scanType = pScanInfo->scan_mode;
6753 }
6754 scanRequest.minChnTime = cfg_param->nActiveMinChnTime;
6755 scanRequest.maxChnTime = cfg_param->nActiveMaxChnTime;
Jeff Johnson295189b2012-06-20 16:38:30 -07006756
6757 /* set BSSType to default type */
6758 scanRequest.BSSType = eCSR_BSS_TYPE_ANY;
6759
6760 /*TODO: scan the requested channels only*/
6761
6762 /*Right now scanning all the channels */
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05306763 if (MAX_CHANNEL < request->n_channels)
Jeff Johnson295189b2012-06-20 16:38:30 -07006764 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05306765 hddLog(VOS_TRACE_LEVEL_WARN,
6766 "No of Scan Channels exceeded limit: %d", request->n_channels);
6767 request->n_channels = MAX_CHANNEL;
6768 }
6769
6770 hddLog(VOS_TRACE_LEVEL_INFO,
6771 "No of Scan Channels: %d", request->n_channels);
6772
6773
6774 if( request->n_channels )
6775 {
6776 char chList [(request->n_channels*5)+1];
6777 int len;
6778 channelList = vos_mem_malloc( request->n_channels );
6779 if( NULL == channelList )
c_hpothu53512302014-04-15 18:49:53 +05306780 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05306781 hddLog(VOS_TRACE_LEVEL_ERROR,
6782 "%s: memory alloc failed channelList", __func__);
6783 status = -ENOMEM;
6784 goto free_mem;
c_hpothu53512302014-04-15 18:49:53 +05306785 }
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05306786
6787 for( i = 0, len = 0; i < request->n_channels ; i++ )
6788 {
6789 channelList[i] = request->channels[i]->hw_value;
6790 len += snprintf(chList+len, 5, "%d ", channelList[i]);
6791 }
6792
Nirav Shah20ac06f2013-12-12 18:14:06 +05306793 hddLog(VOS_TRACE_LEVEL_INFO,
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05306794 "Channel-List: %s ", chList);
6795 }
c_hpothu53512302014-04-15 18:49:53 +05306796
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05306797 scanRequest.ChannelInfo.numOfChannels = request->n_channels;
6798 scanRequest.ChannelInfo.ChannelList = channelList;
6799
6800 /* set requestType to full scan */
6801 scanRequest.requestType = eCSR_SCAN_REQUEST_FULL_SCAN;
6802
6803 /* Flush the scan results(only p2p beacons) for STA scan and P2P
6804 * search (Flush on both full scan and social scan but not on single
6805 * channel scan).P2P search happens on 3 social channels (1, 6, 11)
6806 */
6807
6808 /* Supplicant does single channel scan after 8-way handshake
6809 * and in that case driver shoudnt flush scan results. If
6810 * driver flushes the scan results here and unfortunately if
6811 * the AP doesnt respond to our probe req then association
6812 * fails which is not desired
6813 */
6814
6815 if( request->n_channels != WLAN_HDD_P2P_SINGLE_CHANNEL_SCAN )
6816 {
6817 hddLog(VOS_TRACE_LEVEL_DEBUG, "Flushing P2P Results");
6818 sme_ScanFlushP2PResult( WLAN_HDD_GET_HAL_CTX(pAdapter),
6819 pAdapter->sessionId );
6820 }
6821
6822 if( request->ie_len )
6823 {
6824 /* save this for future association (join requires this) */
6825 /*TODO: Array needs to be converted to dynamic allocation,
6826 * as multiple ie.s can be sent in cfg80211_scan_request structure
6827 * CR 597966
6828 */
6829 memset( &pScanInfo->scanAddIE, 0, sizeof(pScanInfo->scanAddIE) );
6830 memcpy( pScanInfo->scanAddIE.addIEdata, request->ie, request->ie_len);
6831 pScanInfo->scanAddIE.length = request->ie_len;
6832
6833 if ((WLAN_HDD_INFRA_STATION == pAdapter->device_mode) ||
6834 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode) ||
6835 (WLAN_HDD_P2P_DEVICE == pAdapter->device_mode))
Jeff Johnson295189b2012-06-20 16:38:30 -07006836 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05306837 if ( request->ie_len <= SIR_MAC_MAX_IE_LENGTH)
Jeff Johnson295189b2012-06-20 16:38:30 -07006838 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05306839 pwextBuf->roamProfile.nAddIEScanLength = request->ie_len;
6840 memcpy( pwextBuf->roamProfile.addIEScan,
6841 request->ie, request->ie_len);
6842 }
6843 else
6844 {
6845 hddLog(VOS_TRACE_LEVEL_ERROR, "Scan Ie length is invalid:"
6846 "%zu", request->ie_len);
Jeff Johnson295189b2012-06-20 16:38:30 -07006847 }
6848
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05306849 }
6850 scanRequest.uIEFieldLen = pScanInfo->scanAddIE.length;
6851 scanRequest.pIEField = pScanInfo->scanAddIE.addIEdata;
6852
6853 pP2pIe = wlan_hdd_get_p2p_ie_ptr((v_U8_t*)request->ie,
6854 request->ie_len);
6855 if (pP2pIe != NULL)
6856 {
6857#ifdef WLAN_FEATURE_P2P_DEBUG
6858 if (((globalP2PConnectionStatus == P2P_GO_NEG_COMPLETED) ||
6859 (globalP2PConnectionStatus == P2P_GO_NEG_PROCESS)) &&
6860 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode))
Nirav Shah20ac06f2013-12-12 18:14:06 +05306861 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05306862 globalP2PConnectionStatus = P2P_CLIENT_CONNECTING_STATE_1;
6863 hddLog(VOS_TRACE_LEVEL_ERROR,"[P2P State] Changing state from "
6864 "Go nego completed to Connection is started");
6865 hddLog(VOS_TRACE_LEVEL_ERROR,"[P2P]P2P Scanning is started "
6866 "for 8way Handshake");
Nirav Shah20ac06f2013-12-12 18:14:06 +05306867 }
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05306868 else if((globalP2PConnectionStatus == P2P_CLIENT_DISCONNECTED_STATE) &&
6869 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode))
Jeff Johnson295189b2012-06-20 16:38:30 -07006870 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05306871 globalP2PConnectionStatus = P2P_CLIENT_CONNECTING_STATE_2;
6872 hddLog(VOS_TRACE_LEVEL_ERROR,"[P2P State] Changing state from "
6873 "Disconnected state to Connection is started");
6874 hddLog(VOS_TRACE_LEVEL_ERROR,"[P2P]P2P Scanning is started "
6875 "for 4way Handshake");
6876 }
6877#endif
6878
6879 /* no_cck will be set during p2p find to disable 11b rates */
6880 if(TRUE == request->no_cck)
6881 {
6882 hddLog(VOS_TRACE_LEVEL_INFO,
6883 "%s: This is a P2P Search", __func__);
6884 scanRequest.p2pSearch = 1;
6885
6886 if( request->n_channels == WLAN_HDD_P2P_SOCIAL_CHANNELS )
Agarwal Ashish4f616132013-12-30 23:32:50 +05306887 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05306888 /* set requestType to P2P Discovery */
6889 scanRequest.requestType = eCSR_SCAN_P2P_DISCOVERY;
6890 }
6891
6892 /*
6893 Skip Dfs Channel in case of P2P Search
6894 if it is set in ini file
6895 */
6896 if(cfg_param->skipDfsChnlInP2pSearch)
6897 {
6898 scanRequest.skipDfsChnlInP2pSearch = 1;
Agarwal Ashish4f616132013-12-30 23:32:50 +05306899 }
6900 else
6901 {
Padma, Santhosh Kumar787bd5c2014-05-15 20:09:31 +05306902 scanRequest.skipDfsChnlInP2pSearch = 0;
Agarwal Ashish4f616132013-12-30 23:32:50 +05306903 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006904
Agarwal Ashish4f616132013-12-30 23:32:50 +05306905 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006906 }
6907 }
6908
6909 INIT_COMPLETION(pScanInfo->scan_req_completion_event);
6910
Madan Mohan Koyyalamudi9f5a10c2012-09-28 14:46:16 -07006911 /* acquire the wakelock to avoid the apps suspend during the scan. To
6912 * address the following issues.
6913 * 1) Disconnected scenario: we are not allowing the suspend as WLAN is not in
6914 * BMPS/IMPS this result in android trying to suspend aggressively and backing off
6915 * for long time, this result in apps running at full power for long time.
6916 * 2) Connected scenario: If we allow the suspend during the scan, RIVA will
6917 * be stuck in full power because of resume BMPS
6918 */
6919 hdd_prevent_suspend();
Jeff Johnsone7245742012-09-05 17:12:55 -07006920
Nirav Shah20ac06f2013-12-12 18:14:06 +05306921 hddLog(VOS_TRACE_LEVEL_INFO_HIGH,
6922 "requestType %d, scanType %d, minChnTime %d, maxChnTime %d,"
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05306923 "p2pSearch %d, skipDfsChnlInP2pSearch %d",
6924 scanRequest.requestType, scanRequest.scanType,
6925 scanRequest.minChnTime, scanRequest.maxChnTime,
Nirav Shah20ac06f2013-12-12 18:14:06 +05306926 scanRequest.p2pSearch, scanRequest.skipDfsChnlInP2pSearch);
6927
Jeff Johnsone7245742012-09-05 17:12:55 -07006928 status = sme_ScanRequest( WLAN_HDD_GET_HAL_CTX(pAdapter),
Jeff Johnson295189b2012-06-20 16:38:30 -07006929 pAdapter->sessionId, &scanRequest, &scanId,
6930 &hdd_cfg80211_scan_done_callback, dev );
Jeff Johnsone7245742012-09-05 17:12:55 -07006931
Jeff Johnson295189b2012-06-20 16:38:30 -07006932 if (eHAL_STATUS_SUCCESS != status)
6933 {
6934 hddLog(VOS_TRACE_LEVEL_ERROR,
6935 "%s: sme_ScanRequest returned error %d", __func__, status);
6936 complete(&pScanInfo->scan_req_completion_event);
Madan Mohan Koyyalamudi3b230fe2012-10-18 14:46:32 -07006937 if(eHAL_STATUS_RESOURCES == status)
6938 {
Nirav Shah20ac06f2013-12-12 18:14:06 +05306939 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: HO is in progress."
6940 "So defer the scan by informing busy",__func__);
Madan Mohan Koyyalamudi3b230fe2012-10-18 14:46:32 -07006941 status = -EBUSY;
6942 } else {
6943 status = -EIO;
6944 }
Madan Mohan Koyyalamudi9f5a10c2012-09-28 14:46:16 -07006945 hdd_allow_suspend();
Jeff Johnson295189b2012-06-20 16:38:30 -07006946 goto free_mem;
6947 }
6948
6949 pScanInfo->mScanPending = TRUE;
6950 pAdapter->request = request;
6951 pScanInfo->scanId = scanId;
6952
6953 complete(&pScanInfo->scan_req_completion_event);
6954
6955free_mem:
6956 if( scanRequest.SSIDs.SSIDList )
6957 {
6958 vos_mem_free(scanRequest.SSIDs.SSIDList);
6959 }
6960
6961 if( channelList )
6962 vos_mem_free( channelList );
6963
6964 EXIT();
6965
6966 return status;
6967}
6968
Mahesh A Saptasagarfafb7fe2014-05-16 13:19:37 +05306969int wlan_hdd_cfg80211_scan( struct wiphy *wiphy,
6970#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,6,0))
6971 struct net_device *dev,
6972#endif
6973 struct cfg80211_scan_request *request)
6974{
6975 int ret;
6976
6977 vos_ssr_protect(__func__);
6978 ret = __wlan_hdd_cfg80211_scan(wiphy,
6979#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,6,0))
6980 dev,
6981#endif
6982 request);
6983 vos_ssr_unprotect(__func__);
6984
6985 return ret;
6986}
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07006987
6988void hdd_select_cbmode( hdd_adapter_t *pAdapter,v_U8_t operationChannel)
6989{
6990 v_U8_t iniDot11Mode =
6991 (WLAN_HDD_GET_CTX(pAdapter))->cfg_ini->dot11Mode;
6992 eHddDot11Mode hddDot11Mode = iniDot11Mode;
6993
Arun Kumar Khandavalli94a2bb02013-12-28 19:17:25 +05306994 hddLog(LOG1, FL("Channel Bonding Mode Selected is %u"),
6995 iniDot11Mode);
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07006996 switch ( iniDot11Mode )
6997 {
6998 case eHDD_DOT11_MODE_AUTO:
6999 case eHDD_DOT11_MODE_11ac:
7000 case eHDD_DOT11_MODE_11ac_ONLY:
7001#ifdef WLAN_FEATURE_11AC
7002 hddDot11Mode = eHDD_DOT11_MODE_11ac;
7003#else
7004 hddDot11Mode = eHDD_DOT11_MODE_11n;
7005#endif
7006 break;
7007 case eHDD_DOT11_MODE_11n:
7008 case eHDD_DOT11_MODE_11n_ONLY:
7009 hddDot11Mode = eHDD_DOT11_MODE_11n;
7010 break;
7011 default:
7012 hddDot11Mode = iniDot11Mode;
7013 break;
7014 }
7015 /* This call decides required channel bonding mode */
7016 sme_SelectCBMode((WLAN_HDD_GET_CTX(pAdapter)->hHal),
7017 hdd_cfg_xlate_to_csr_phy_mode(hddDot11Mode),
7018 operationChannel);
7019}
7020
Jeff Johnson295189b2012-06-20 16:38:30 -07007021/*
7022 * FUNCTION: wlan_hdd_cfg80211_connect_start
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307023 * This function is used to start the association process
Jeff Johnson295189b2012-06-20 16:38:30 -07007024 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307025int wlan_hdd_cfg80211_connect_start( hdd_adapter_t *pAdapter,
Jeff Johnson32d95a32012-09-10 13:15:23 -07007026 const u8 *ssid, size_t ssid_len, const u8 *bssid, u8 operatingChannel)
Jeff Johnson295189b2012-06-20 16:38:30 -07007027{
7028 int status = 0;
7029 hdd_wext_state_t *pWextState;
Yue Mae36e3552014-03-05 17:06:20 -08007030 hdd_context_t *pHddCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -07007031 v_U32_t roamId;
7032 tCsrRoamProfile *pRoamProfile;
Jeff Johnson295189b2012-06-20 16:38:30 -07007033 eCsrAuthType RSNAuthType;
7034
7035 ENTER();
7036
7037 pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Yue Mae36e3552014-03-05 17:06:20 -08007038 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
7039
7040 status = wlan_hdd_validate_context(pHddCtx);
7041 if (status)
7042 {
7043 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7044 "%s: HDD context is not valid!", __func__);
7045 return status;
7046 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307047
Jeff Johnson295189b2012-06-20 16:38:30 -07007048 if (SIR_MAC_MAX_SSID_LENGTH < ssid_len)
7049 {
7050 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: wrong SSID len", __func__);
7051 return -EINVAL;
7052 }
7053
7054 pRoamProfile = &pWextState->roamProfile;
7055
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307056 if (pRoamProfile)
Jeff Johnson295189b2012-06-20 16:38:30 -07007057 {
Jeff Johnsone7245742012-09-05 17:12:55 -07007058 hdd_station_ctx_t *pHddStaCtx;
7059 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07007060
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307061 if (HDD_WMM_USER_MODE_NO_QOS ==
Jeff Johnson295189b2012-06-20 16:38:30 -07007062 (WLAN_HDD_GET_CTX(pAdapter))->cfg_ini->WmmMode)
7063 {
7064 /*QoS not enabled in cfg file*/
7065 pRoamProfile->uapsd_mask = 0;
7066 }
7067 else
7068 {
7069 /*QoS enabled, update uapsd mask from cfg file*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307070 pRoamProfile->uapsd_mask =
Jeff Johnson295189b2012-06-20 16:38:30 -07007071 (WLAN_HDD_GET_CTX(pAdapter))->cfg_ini->UapsdMask;
7072 }
7073
7074 pRoamProfile->SSIDs.numOfSSIDs = 1;
7075 pRoamProfile->SSIDs.SSIDList->SSID.length = ssid_len;
7076 vos_mem_zero(pRoamProfile->SSIDs.SSIDList->SSID.ssId,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307077 sizeof(pRoamProfile->SSIDs.SSIDList->SSID.ssId));
Jeff Johnson295189b2012-06-20 16:38:30 -07007078 vos_mem_copy((void *)(pRoamProfile->SSIDs.SSIDList->SSID.ssId),
7079 ssid, ssid_len);
7080
7081 if (bssid)
7082 {
7083 pRoamProfile->BSSIDs.numOfBSSIDs = 1;
7084 vos_mem_copy((void *)(pRoamProfile->BSSIDs.bssid), bssid,
7085 WNI_CFG_BSSID_LEN);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307086 /* Save BSSID in seperate variable as well, as RoamProfile
7087 BSSID is getting zeroed out in the association process. And in
Jeff Johnson295189b2012-06-20 16:38:30 -07007088 case of join failure we should send valid BSSID to supplicant
7089 */
7090 vos_mem_copy((void *)(pWextState->req_bssId), bssid,
7091 WNI_CFG_BSSID_LEN);
7092 }
Dhanashri Atre51981c62013-06-13 11:47:57 -07007093 else
7094 {
7095 vos_mem_zero((void *)(pRoamProfile->BSSIDs.bssid),WNI_CFG_BSSID_LEN);
7096 }
Jeff Johnson295189b2012-06-20 16:38:30 -07007097
Arun Kumar Khandavalli94a2bb02013-12-28 19:17:25 +05307098 hddLog(LOG1, FL("Connect to SSID: %s opertating Channel: %u"),
7099 pRoamProfile->SSIDs.SSIDList->SSID.ssId, operatingChannel);
Jeff Johnson295189b2012-06-20 16:38:30 -07007100 if ((IW_AUTH_WPA_VERSION_WPA == pWextState->wpaVersion) ||
7101 (IW_AUTH_WPA_VERSION_WPA2 == pWextState->wpaVersion))
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307102 {
Jeff Johnson295189b2012-06-20 16:38:30 -07007103 /*set gen ie*/
7104 hdd_SetGENIEToCsr(pAdapter, &RSNAuthType);
7105 /*set auth*/
7106 hdd_set_csr_auth_type(pAdapter, RSNAuthType);
7107 }
Jeff Johnson295189b2012-06-20 16:38:30 -07007108#ifdef FEATURE_WLAN_WAPI
7109 if (pAdapter->wapi_info.nWapiMode)
7110 {
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07007111 hddLog(LOG1, "%s: Setting WAPI AUTH Type and Encryption Mode values", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07007112 switch (pAdapter->wapi_info.wapiAuthMode)
7113 {
7114 case WAPI_AUTH_MODE_PSK:
7115 {
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07007116 hddLog(LOG1, "%s: WAPI AUTH TYPE: PSK: %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07007117 pAdapter->wapi_info.wapiAuthMode);
7118 pRoamProfile->AuthType.authType[0] = eCSR_AUTH_TYPE_WAPI_WAI_PSK;
7119 break;
7120 }
7121 case WAPI_AUTH_MODE_CERT:
7122 {
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07007123 hddLog(LOG1, "%s: WAPI AUTH TYPE: CERT: %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07007124 pAdapter->wapi_info.wapiAuthMode);
7125 pRoamProfile->AuthType.authType[0] = eCSR_AUTH_TYPE_WAPI_WAI_CERTIFICATE;
7126 break;
7127 }
7128 } // End of switch
7129 if ( pAdapter->wapi_info.wapiAuthMode == WAPI_AUTH_MODE_PSK ||
7130 pAdapter->wapi_info.wapiAuthMode == WAPI_AUTH_MODE_CERT)
7131 {
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07007132 hddLog(LOG1, "%s: WAPI PAIRWISE/GROUP ENCRYPTION: WPI", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07007133 pRoamProfile->AuthType.numEntries = 1;
7134 pRoamProfile->EncryptionType.numEntries = 1;
7135 pRoamProfile->EncryptionType.encryptionType[0] = eCSR_ENCRYPT_TYPE_WPI;
7136 pRoamProfile->mcEncryptionType.numEntries = 1;
7137 pRoamProfile->mcEncryptionType.encryptionType[0] = eCSR_ENCRYPT_TYPE_WPI;
7138 }
7139 }
7140#endif /* FEATURE_WLAN_WAPI */
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307141#ifdef WLAN_FEATURE_GTK_OFFLOAD
Gopichand Nakkalad36ee622013-05-07 14:13:27 +05307142 /* Initializing gtkOffloadReqParams */
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307143 if ((WLAN_HDD_INFRA_STATION == pAdapter->device_mode) ||
7144 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode))
7145 {
Gopichand Nakkalad36ee622013-05-07 14:13:27 +05307146 memset(&pHddStaCtx->gtkOffloadReqParams, 0,
7147 sizeof (tSirGtkOffloadParams));
7148 pHddStaCtx->gtkOffloadReqParams.ulFlags = GTK_OFFLOAD_DISABLE;
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307149 }
7150#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07007151 pRoamProfile->csrPersona = pAdapter->device_mode;
7152
Jeff Johnson32d95a32012-09-10 13:15:23 -07007153 if( operatingChannel )
7154 {
7155 pRoamProfile->ChannelInfo.ChannelList = &operatingChannel;
7156 pRoamProfile->ChannelInfo.numOfChannels = 1;
7157 }
Chet Lanctot186b5732013-03-18 10:26:30 -07007158 else
7159 {
7160 pRoamProfile->ChannelInfo.ChannelList = NULL;
7161 pRoamProfile->ChannelInfo.numOfChannels = 0;
7162 }
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07007163 if ( (WLAN_HDD_IBSS == pAdapter->device_mode) && operatingChannel)
7164 {
7165 hdd_select_cbmode(pAdapter,operatingChannel);
7166 }
Arun Kumar Khandavalli94a2bb02013-12-28 19:17:25 +05307167
Madan Mohan Koyyalamudi42dcd162012-12-03 16:34:04 -08007168 /* change conn_state to connecting before sme_RoamConnect(), because sme_RoamConnect()
7169 * has a direct path to call hdd_smeRoamCallback(), which will change the conn_state
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307170 * If direct path, conn_state will be accordingly changed to NotConnected or Associated
Madan Mohan Koyyalamudi42dcd162012-12-03 16:34:04 -08007171 * by either hdd_AssociationCompletionHandler() or hdd_DisConnectHandler() in sme_RoamCallback()
Madan Mohan Koyyalamudidf86c422012-12-04 17:03:44 -08007172 * if sme_RomConnect is to be queued, Connecting state will remain until it is completed.
7173 */
Gopichand Nakkalaa3c8fb62013-06-21 15:36:42 +05307174 if (WLAN_HDD_INFRA_STATION == pAdapter->device_mode ||
7175 WLAN_HDD_P2P_CLIENT == pAdapter->device_mode)
Abhishek Singhf4669da2014-05-26 15:07:49 +05307176 {
7177 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
7178 "%s: Set HDD connState to eConnectionState_Connecting",
7179 __func__);
Madan Mohan Koyyalamudidf86c422012-12-04 17:03:44 -08007180 hdd_connSetConnectionState(WLAN_HDD_GET_STATION_CTX_PTR(pAdapter),
7181 eConnectionState_Connecting);
Abhishek Singhf4669da2014-05-26 15:07:49 +05307182 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307183 status = sme_RoamConnect( WLAN_HDD_GET_HAL_CTX(pAdapter),
Jeff Johnson295189b2012-06-20 16:38:30 -07007184 pAdapter->sessionId, pRoamProfile, &roamId);
7185
Gopichand Nakkalaa3c8fb62013-06-21 15:36:42 +05307186 if ((eHAL_STATUS_SUCCESS != status) &&
7187 (WLAN_HDD_INFRA_STATION == pAdapter->device_mode ||
7188 WLAN_HDD_P2P_CLIENT == pAdapter->device_mode))
Madan Mohan Koyyalamudid5acbf52012-11-28 01:45:08 +05307189
7190 {
Madan Mohan Koyyalamudi42dcd162012-12-03 16:34:04 -08007191 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: sme_RoamConnect (session %d) failed with "
7192 "status %d. -> NotConnected", __func__, pAdapter->sessionId, status);
7193 /* change back to NotAssociated */
Madan Mohan Koyyalamudid5acbf52012-11-28 01:45:08 +05307194 hdd_connSetConnectionState(WLAN_HDD_GET_STATION_CTX_PTR(pAdapter),
Madan Mohan Koyyalamudi42dcd162012-12-03 16:34:04 -08007195 eConnectionState_NotConnected);
Madan Mohan Koyyalamudid5acbf52012-11-28 01:45:08 +05307196 }
Madan Mohan Koyyalamudidf86c422012-12-04 17:03:44 -08007197
7198 pRoamProfile->ChannelInfo.ChannelList = NULL;
7199 pRoamProfile->ChannelInfo.numOfChannels = 0;
7200
Jeff Johnson295189b2012-06-20 16:38:30 -07007201 }
7202 else
7203 {
7204 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: No valid Roam profile", __func__);
7205 return -EINVAL;
7206 }
Madan Mohan Koyyalamudifd4e1da2012-11-09 17:50:19 -08007207 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -07007208 return status;
7209}
7210
7211/*
7212 * FUNCTION: wlan_hdd_set_cfg80211_auth_type
7213 * This function is used to set the authentication type (OPEN/SHARED).
7214 *
7215 */
7216static int wlan_hdd_cfg80211_set_auth_type(hdd_adapter_t *pAdapter,
7217 enum nl80211_auth_type auth_type)
7218{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307219 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07007220 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
7221
7222 ENTER();
7223
7224 /*set authentication type*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307225 switch (auth_type)
Jeff Johnson295189b2012-06-20 16:38:30 -07007226 {
Jeff Johnson295189b2012-06-20 16:38:30 -07007227 case NL80211_AUTHTYPE_AUTOMATIC:
Gopichand Nakkala29149562013-05-10 21:43:41 +05307228 hddLog(VOS_TRACE_LEVEL_INFO,
7229 "%s: set authentication type to AUTOSWITCH", __func__);
7230 pHddStaCtx->conn_info.authType = eCSR_AUTH_TYPE_AUTOSWITCH;
7231 break;
7232
7233 case NL80211_AUTHTYPE_OPEN_SYSTEM:
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07007234#ifdef WLAN_FEATURE_VOWIFI_11R
7235 case NL80211_AUTHTYPE_FT:
7236#endif /* WLAN_FEATURE_VOWIFI_11R */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307237 hddLog(VOS_TRACE_LEVEL_INFO,
Jeff Johnson295189b2012-06-20 16:38:30 -07007238 "%s: set authentication type to OPEN", __func__);
7239 pHddStaCtx->conn_info.authType = eCSR_AUTH_TYPE_OPEN_SYSTEM;
7240 break;
7241
7242 case NL80211_AUTHTYPE_SHARED_KEY:
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307243 hddLog(VOS_TRACE_LEVEL_INFO,
Jeff Johnson295189b2012-06-20 16:38:30 -07007244 "%s: set authentication type to SHARED", __func__);
7245 pHddStaCtx->conn_info.authType = eCSR_AUTH_TYPE_SHARED_KEY;
7246 break;
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08007247#ifdef FEATURE_WLAN_ESE
Jeff Johnson295189b2012-06-20 16:38:30 -07007248 case NL80211_AUTHTYPE_NETWORK_EAP:
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307249 hddLog(VOS_TRACE_LEVEL_INFO,
Jeff Johnson295189b2012-06-20 16:38:30 -07007250 "%s: set authentication type to CCKM WPA", __func__);
7251 pHddStaCtx->conn_info.authType = eCSR_AUTH_TYPE_CCKM_WPA;//eCSR_AUTH_TYPE_CCKM_RSN needs to be handled as well if required.
7252 break;
7253#endif
7254
7255
7256 default:
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307257 hddLog(VOS_TRACE_LEVEL_ERROR,
7258 "%s: Unsupported authentication type %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07007259 auth_type);
7260 pHddStaCtx->conn_info.authType = eCSR_AUTH_TYPE_UNKNOWN;
7261 return -EINVAL;
7262 }
7263
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307264 pWextState->roamProfile.AuthType.authType[0] =
Jeff Johnson295189b2012-06-20 16:38:30 -07007265 pHddStaCtx->conn_info.authType;
7266 return 0;
7267}
7268
7269/*
7270 * FUNCTION: wlan_hdd_set_akm_suite
7271 * This function is used to set the key mgmt type(PSK/8021x).
7272 *
7273 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307274static int wlan_hdd_set_akm_suite( hdd_adapter_t *pAdapter,
Jeff Johnson295189b2012-06-20 16:38:30 -07007275 u32 key_mgmt
7276 )
7277{
7278 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
7279 ENTER();
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307280
Jeff Johnson295189b2012-06-20 16:38:30 -07007281 /*set key mgmt type*/
7282 switch(key_mgmt)
7283 {
7284 case WLAN_AKM_SUITE_PSK:
Gopichand Nakkala356fb102013-03-06 12:34:04 +05307285#ifdef WLAN_FEATURE_VOWIFI_11R
7286 case WLAN_AKM_SUITE_FT_PSK:
7287#endif
7288 hddLog(VOS_TRACE_LEVEL_INFO, "%s: setting key mgmt type to PSK",
Jeff Johnson295189b2012-06-20 16:38:30 -07007289 __func__);
7290 pWextState->authKeyMgmt |= IW_AUTH_KEY_MGMT_PSK;
7291 break;
7292
7293 case WLAN_AKM_SUITE_8021X:
Gopichand Nakkala356fb102013-03-06 12:34:04 +05307294#ifdef WLAN_FEATURE_VOWIFI_11R
7295 case WLAN_AKM_SUITE_FT_8021X:
7296#endif
7297 hddLog(VOS_TRACE_LEVEL_INFO, "%s: setting key mgmt type to 8021x",
Jeff Johnson295189b2012-06-20 16:38:30 -07007298 __func__);
7299 pWextState->authKeyMgmt |= IW_AUTH_KEY_MGMT_802_1X;
7300 break;
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08007301#ifdef FEATURE_WLAN_ESE
Jeff Johnson295189b2012-06-20 16:38:30 -07007302#define WLAN_AKM_SUITE_CCKM 0x00409600 /* Should be in ieee802_11_defs.h */
7303#define IW_AUTH_KEY_MGMT_CCKM 8 /* Should be in linux/wireless.h */
7304 case WLAN_AKM_SUITE_CCKM:
7305 hddLog(VOS_TRACE_LEVEL_INFO, "%s: setting key mgmt type to CCKM",
7306 __func__);
7307 pWextState->authKeyMgmt |= IW_AUTH_KEY_MGMT_CCKM;
7308 break;
7309#endif
Leela Venkata Kiran Kumar Reddy Chiralae208a832014-04-27 22:34:25 -07007310#ifndef WLAN_AKM_SUITE_OSEN
7311#define WLAN_AKM_SUITE_OSEN 0x506f9a01 /* Should be in ieee802_11_defs.h */
7312 case WLAN_AKM_SUITE_OSEN:
7313 hddLog(VOS_TRACE_LEVEL_INFO, "%s: setting key mgmt type to OSEN",
7314 __func__);
7315 pWextState->authKeyMgmt |= IW_AUTH_KEY_MGMT_802_1X;
7316 break;
7317#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07007318
7319 default:
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307320 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Unsupported key mgmt type %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07007321 __func__, key_mgmt);
7322 return -EINVAL;
7323
7324 }
7325 return 0;
7326}
7327
7328/*
7329 * FUNCTION: wlan_hdd_cfg80211_set_cipher
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307330 * This function is used to set the encryption type
Jeff Johnson295189b2012-06-20 16:38:30 -07007331 * (NONE/WEP40/WEP104/TKIP/CCMP).
7332 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307333static int wlan_hdd_cfg80211_set_cipher( hdd_adapter_t *pAdapter,
7334 u32 cipher,
Jeff Johnson295189b2012-06-20 16:38:30 -07007335 bool ucast
7336 )
7337{
7338 eCsrEncryptionType encryptionType = eCSR_ENCRYPT_TYPE_NONE;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307339 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07007340 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
7341
7342 ENTER();
7343
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307344 if (!cipher)
Jeff Johnson295189b2012-06-20 16:38:30 -07007345 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307346 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: received cipher %d - considering none",
Jeff Johnson295189b2012-06-20 16:38:30 -07007347 __func__, cipher);
7348 encryptionType = eCSR_ENCRYPT_TYPE_NONE;
7349 }
7350 else
7351 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307352
Jeff Johnson295189b2012-06-20 16:38:30 -07007353 /*set encryption method*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307354 switch (cipher)
Jeff Johnson295189b2012-06-20 16:38:30 -07007355 {
7356 case IW_AUTH_CIPHER_NONE:
7357 encryptionType = eCSR_ENCRYPT_TYPE_NONE;
7358 break;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307359
Jeff Johnson295189b2012-06-20 16:38:30 -07007360 case WLAN_CIPHER_SUITE_WEP40:
Gopichand Nakkala29149562013-05-10 21:43:41 +05307361 encryptionType = eCSR_ENCRYPT_TYPE_WEP40;
Jeff Johnson295189b2012-06-20 16:38:30 -07007362 break;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307363
Jeff Johnson295189b2012-06-20 16:38:30 -07007364 case WLAN_CIPHER_SUITE_WEP104:
Gopichand Nakkala29149562013-05-10 21:43:41 +05307365 encryptionType = eCSR_ENCRYPT_TYPE_WEP104;
Jeff Johnson295189b2012-06-20 16:38:30 -07007366 break;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307367
Jeff Johnson295189b2012-06-20 16:38:30 -07007368 case WLAN_CIPHER_SUITE_TKIP:
7369 encryptionType = eCSR_ENCRYPT_TYPE_TKIP;
7370 break;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307371
Jeff Johnson295189b2012-06-20 16:38:30 -07007372 case WLAN_CIPHER_SUITE_CCMP:
7373 encryptionType = eCSR_ENCRYPT_TYPE_AES;
7374 break;
7375#ifdef FEATURE_WLAN_WAPI
7376 case WLAN_CIPHER_SUITE_SMS4:
7377 encryptionType = eCSR_ENCRYPT_TYPE_WPI;
7378 break;
7379#endif
7380
Varun Reddy Yeturu5d5e2c62014-02-27 13:31:29 -08007381#ifdef FEATURE_WLAN_ESE
Jeff Johnson295189b2012-06-20 16:38:30 -07007382 case WLAN_CIPHER_SUITE_KRK:
7383 encryptionType = eCSR_ENCRYPT_TYPE_KRK;
7384 break;
7385#endif
7386 default:
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307387 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Unsupported cipher type %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07007388 __func__, cipher);
7389 return -EOPNOTSUPP;
7390 }
7391 }
7392
7393 if (ucast)
7394 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307395 hddLog(VOS_TRACE_LEVEL_INFO, "%s: setting unicast cipher type to %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07007396 __func__, encryptionType);
7397 pHddStaCtx->conn_info.ucEncryptionType = encryptionType;
7398 pWextState->roamProfile.EncryptionType.numEntries = 1;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307399 pWextState->roamProfile.EncryptionType.encryptionType[0] =
Jeff Johnson295189b2012-06-20 16:38:30 -07007400 encryptionType;
7401 }
7402 else
7403 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307404 hddLog(VOS_TRACE_LEVEL_INFO, "%s: setting mcast cipher type to %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07007405 __func__, encryptionType);
7406 pHddStaCtx->conn_info.mcEncryptionType = encryptionType;
7407 pWextState->roamProfile.mcEncryptionType.numEntries = 1;
7408 pWextState->roamProfile.mcEncryptionType.encryptionType[0] = encryptionType;
7409 }
7410
7411 return 0;
7412}
7413
7414
7415/*
7416 * FUNCTION: wlan_hdd_cfg80211_set_ie
7417 * This function is used to parse WPA/RSN IE's.
7418 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307419int wlan_hdd_cfg80211_set_ie( hdd_adapter_t *pAdapter,
7420 u8 *ie,
Jeff Johnson295189b2012-06-20 16:38:30 -07007421 size_t ie_len
7422 )
7423{
7424 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
7425 u8 *genie = ie;
7426 v_U16_t remLen = ie_len;
7427#ifdef FEATURE_WLAN_WAPI
7428 v_U32_t akmsuite[MAX_NUM_AKM_SUITES];
7429 u16 *tmp;
7430 v_U16_t akmsuiteCount;
7431 int *akmlist;
7432#endif
7433 ENTER();
7434
7435 /* clear previous assocAddIE */
7436 pWextState->assocAddIE.length = 0;
7437 pWextState->roamProfile.bWPSAssociation = VOS_FALSE;
Leela Venkata Kiran Kumar Reddy Chiralaf257bef2014-04-11 18:48:12 -07007438 pWextState->roamProfile.bOSENAssociation = VOS_FALSE;
Jeff Johnson295189b2012-06-20 16:38:30 -07007439
7440 while (remLen >= 2)
7441 {
7442 v_U16_t eLen = 0;
7443 v_U8_t elementId;
7444 elementId = *genie++;
7445 eLen = *genie++;
7446 remLen -= 2;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307447
Arif Hussain6d2a3322013-11-17 19:50:10 -08007448 hddLog(VOS_TRACE_LEVEL_INFO, "%s: IE[0x%X], LEN[%d]",
Jeff Johnson295189b2012-06-20 16:38:30 -07007449 __func__, elementId, eLen);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307450
7451 switch ( elementId )
Jeff Johnson295189b2012-06-20 16:38:30 -07007452 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307453 case DOT11F_EID_WPA:
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -07007454 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 -07007455 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307456 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07007457 "%s: Invalid WPA IE", __func__);
7458 return -EINVAL;
7459 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307460 else if (0 == memcmp(&genie[0], "\x00\x50\xf2\x04", 4))
Jeff Johnson295189b2012-06-20 16:38:30 -07007461 {
7462 v_U16_t curAddIELen = pWextState->assocAddIE.length;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307463 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set WPS IE(len %d)",
Jeff Johnson295189b2012-06-20 16:38:30 -07007464 __func__, eLen + 2);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307465
Jeff Johnson295189b2012-06-20 16:38:30 -07007466 if( SIR_MAC_MAX_IE_LENGTH < (pWextState->assocAddIE.length + eLen) )
7467 {
Jeff Johnson902c9832012-12-10 14:28:09 -08007468 hddLog(VOS_TRACE_LEVEL_FATAL, "Cannot accommodate assocAddIE. "
7469 "Need bigger buffer space");
Jeff Johnson295189b2012-06-20 16:38:30 -07007470 VOS_ASSERT(0);
7471 return -ENOMEM;
7472 }
7473 // WSC IE is saved to Additional IE ; it should be accumulated to handle WPS IE + P2P IE
7474 memcpy( pWextState->assocAddIE.addIEdata + curAddIELen, genie - 2, eLen + 2);
7475 pWextState->assocAddIE.length += eLen + 2;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307476
Jeff Johnson295189b2012-06-20 16:38:30 -07007477 pWextState->roamProfile.bWPSAssociation = VOS_TRUE;
7478 pWextState->roamProfile.pAddIEAssoc = pWextState->assocAddIE.addIEdata;
7479 pWextState->roamProfile.nAddIEAssocLength = pWextState->assocAddIE.length;
7480 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307481 else if (0 == memcmp(&genie[0], "\x00\x50\xf2", 3))
7482 {
Jeff Johnson295189b2012-06-20 16:38:30 -07007483 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set WPA IE (len %d)",__func__, eLen + 2);
7484 memset( pWextState->WPARSNIE, 0, MAX_WPA_RSN_IE_LEN );
7485 memcpy( pWextState->WPARSNIE, genie - 2, (eLen + 2) /*ie_len*/);
7486 pWextState->roamProfile.pWPAReqIE = pWextState->WPARSNIE;
7487 pWextState->roamProfile.nWPAReqIELength = eLen + 2;//ie_len;
7488 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307489 else if ( (0 == memcmp(&genie[0], P2P_OUI_TYPE,
Kiet Lam8da98992013-11-21 15:59:07 +05307490 P2P_OUI_TYPE_SIZE)))
Jeff Johnson295189b2012-06-20 16:38:30 -07007491 {
7492 v_U16_t curAddIELen = pWextState->assocAddIE.length;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307493 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set P2P IE(len %d)",
Jeff Johnson295189b2012-06-20 16:38:30 -07007494 __func__, eLen + 2);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307495
Jeff Johnson295189b2012-06-20 16:38:30 -07007496 if( SIR_MAC_MAX_IE_LENGTH < (pWextState->assocAddIE.length + eLen) )
7497 {
Jeff Johnson902c9832012-12-10 14:28:09 -08007498 hddLog(VOS_TRACE_LEVEL_FATAL, "Cannot accommodate assocAddIE "
7499 "Need bigger buffer space");
Jeff Johnson295189b2012-06-20 16:38:30 -07007500 VOS_ASSERT(0);
7501 return -ENOMEM;
7502 }
7503 // P2P IE is saved to Additional IE ; it should be accumulated to handle WPS IE + P2P IE
7504 memcpy( pWextState->assocAddIE.addIEdata + curAddIELen, genie - 2, eLen + 2);
7505 pWextState->assocAddIE.length += eLen + 2;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307506
Jeff Johnson295189b2012-06-20 16:38:30 -07007507 pWextState->roamProfile.pAddIEAssoc = pWextState->assocAddIE.addIEdata;
7508 pWextState->roamProfile.nAddIEAssocLength = pWextState->assocAddIE.length;
7509 }
Jeff Johnson295189b2012-06-20 16:38:30 -07007510#ifdef WLAN_FEATURE_WFD
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307511 else if ( (0 == memcmp(&genie[0], WFD_OUI_TYPE,
7512 WFD_OUI_TYPE_SIZE))
Jeff Johnson295189b2012-06-20 16:38:30 -07007513 /*Consider WFD IE, only for P2P Client */
7514 && (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode) )
7515 {
7516 v_U16_t curAddIELen = pWextState->assocAddIE.length;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307517 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set WFD IE(len %d)",
Jeff Johnson295189b2012-06-20 16:38:30 -07007518 __func__, eLen + 2);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307519
Jeff Johnson295189b2012-06-20 16:38:30 -07007520 if( SIR_MAC_MAX_IE_LENGTH < (pWextState->assocAddIE.length + eLen) )
7521 {
Jeff Johnson902c9832012-12-10 14:28:09 -08007522 hddLog(VOS_TRACE_LEVEL_FATAL, "Cannot accommodate assocAddIE "
7523 "Need bigger buffer space");
Jeff Johnson295189b2012-06-20 16:38:30 -07007524 VOS_ASSERT(0);
7525 return -ENOMEM;
7526 }
7527 // WFD IE is saved to Additional IE ; it should be accumulated to handle
7528 // WPS IE + P2P IE + WFD IE
7529 memcpy( pWextState->assocAddIE.addIEdata + curAddIELen, genie - 2, eLen + 2);
7530 pWextState->assocAddIE.length += eLen + 2;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307531
Jeff Johnson295189b2012-06-20 16:38:30 -07007532 pWextState->roamProfile.pAddIEAssoc = pWextState->assocAddIE.addIEdata;
7533 pWextState->roamProfile.nAddIEAssocLength = pWextState->assocAddIE.length;
7534 }
7535#endif
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -07007536 /* Appending HS 2.0 Indication Element in Assiciation Request */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307537 else if ( (0 == memcmp(&genie[0], HS20_OUI_TYPE,
Madan Mohan Koyyalamudi1bed5982012-10-22 14:38:06 -07007538 HS20_OUI_TYPE_SIZE)) )
7539 {
7540 v_U16_t curAddIELen = pWextState->assocAddIE.length;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307541 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set HS20 IE(len %d)",
Madan Mohan Koyyalamudi1bed5982012-10-22 14:38:06 -07007542 __func__, eLen + 2);
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -07007543
Madan Mohan Koyyalamudi1bed5982012-10-22 14:38:06 -07007544 if( SIR_MAC_MAX_IE_LENGTH < (pWextState->assocAddIE.length + eLen) )
7545 {
Jeff Johnson902c9832012-12-10 14:28:09 -08007546 hddLog(VOS_TRACE_LEVEL_FATAL, "Cannot accommodate assocAddIE "
7547 "Need bigger buffer space");
Madan Mohan Koyyalamudi1bed5982012-10-22 14:38:06 -07007548 VOS_ASSERT(0);
7549 return -ENOMEM;
7550 }
7551 memcpy( pWextState->assocAddIE.addIEdata + curAddIELen, genie - 2, eLen + 2);
7552 pWextState->assocAddIE.length += eLen + 2;
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -07007553
Madan Mohan Koyyalamudi1bed5982012-10-22 14:38:06 -07007554 pWextState->roamProfile.pAddIEAssoc = pWextState->assocAddIE.addIEdata;
7555 pWextState->roamProfile.nAddIEAssocLength = pWextState->assocAddIE.length;
7556 }
Leela Venkata Kiran Kumar Reddy Chiralaf257bef2014-04-11 18:48:12 -07007557 /* Appending OSEN Information Element in Assiciation Request */
7558 else if ( (0 == memcmp(&genie[0], OSEN_OUI_TYPE,
7559 OSEN_OUI_TYPE_SIZE)) )
7560 {
7561 v_U16_t curAddIELen = pWextState->assocAddIE.length;
7562 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set OSEN IE(len %d)",
7563 __func__, eLen + 2);
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -07007564
Leela Venkata Kiran Kumar Reddy Chiralaf257bef2014-04-11 18:48:12 -07007565 if( SIR_MAC_MAX_IE_LENGTH < (pWextState->assocAddIE.length + eLen) )
7566 {
7567 hddLog(VOS_TRACE_LEVEL_FATAL, "Cannot accommodate assocAddIE "
7568 "Need bigger buffer space");
7569 VOS_ASSERT(0);
7570 return -ENOMEM;
7571 }
7572 memcpy( pWextState->assocAddIE.addIEdata + curAddIELen, genie - 2, eLen + 2);
7573 pWextState->assocAddIE.length += eLen + 2;
7574
7575 pWextState->roamProfile.bOSENAssociation = VOS_TRUE;
7576 pWextState->roamProfile.pAddIEAssoc = pWextState->assocAddIE.addIEdata;
7577 pWextState->roamProfile.nAddIEAssocLength = pWextState->assocAddIE.length;
7578 }
7579
7580 break;
Praveen Kumar Sirisilla7d68b7b2013-09-22 14:01:42 -07007581 if (WLAN_HDD_IBSS == pAdapter->device_mode) {
7582
7583 /* populating as ADDIE in beacon frames */
7584 if (ccmCfgSetStr(WLAN_HDD_GET_HAL_CTX(pAdapter),
7585 WNI_CFG_PROBE_RSP_BCN_ADDNIE_DATA, genie - 2, eLen + 2,
7586 NULL, eANI_BOOLEAN_FALSE)== eHAL_STATUS_SUCCESS)
7587 {
7588 if (ccmCfgSetInt(WLAN_HDD_GET_HAL_CTX(pAdapter),
7589 WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG, 1,NULL,
7590 eANI_BOOLEAN_FALSE) == eHAL_STATUS_FAILURE)
7591 {
7592 hddLog(LOGE,
7593 "Coldn't pass "
7594 "WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG to CCM");
7595 }
7596 }/* ccmCfgSetStr(,WNI_CFG_PROBE_RSP_BCN_ADDNIE_DATA, , )*/
7597 else
7598 hddLog(LOGE,
7599 "Could not pass on "
7600 "WNI_CFG_PROBE_RSP_BCN_ADDNIE_DATA to CCM");
7601
7602 /* IBSS mode doesn't contain params->proberesp_ies still
7603 beaconIE's need to be populated in probe response frames */
7604 if ( (NULL != (genie - 2)) && (0 != eLen + 2) )
7605 {
7606 u16 rem_probe_resp_ie_len = eLen + 2;
7607 u8 probe_rsp_ie_len[3] = {0};
7608 u8 counter = 0;
7609
7610 /* Check Probe Resp Length if it is greater then 255 then
7611 Store Probe Rsp IEs into WNI_CFG_PROBE_RSP_ADDNIE_DATA1
7612 & WNI_CFG_PROBE_RSP_ADDNIE_DATA2 CFG Variable As We are
7613 not able Store More then 255 bytes into One Variable */
7614
7615 while ((rem_probe_resp_ie_len > 0) && (counter < 3))
7616 {
7617 if (rem_probe_resp_ie_len > MAX_CFG_STRING_LEN)
7618 {
7619 probe_rsp_ie_len[counter++] = MAX_CFG_STRING_LEN;
7620 rem_probe_resp_ie_len -= MAX_CFG_STRING_LEN;
7621 }
7622 else
7623 {
7624 probe_rsp_ie_len[counter++] = rem_probe_resp_ie_len;
7625 rem_probe_resp_ie_len = 0;
7626 }
7627 }
7628
7629 rem_probe_resp_ie_len = 0;
7630
7631 if (probe_rsp_ie_len[0] > 0)
7632 {
7633 if (ccmCfgSetStr(WLAN_HDD_GET_HAL_CTX(pAdapter),
7634 WNI_CFG_PROBE_RSP_ADDNIE_DATA1,
7635 (tANI_U8*)(genie - 2),
7636 probe_rsp_ie_len[0], NULL,
7637 eANI_BOOLEAN_FALSE)
7638 == eHAL_STATUS_FAILURE)
7639 {
7640 hddLog(LOGE,
7641 "Could not pass"
7642 "on WNI_CFG_PROBE_RSP_ADDNIE_DATA1 to CCM");
7643 }
7644 rem_probe_resp_ie_len += probe_rsp_ie_len[0];
7645 }
7646
7647 if (probe_rsp_ie_len[1] > 0)
7648 {
7649 if (ccmCfgSetStr(WLAN_HDD_GET_HAL_CTX(pAdapter),
7650 WNI_CFG_PROBE_RSP_ADDNIE_DATA2,
7651 (tANI_U8*)(genie - (2 + rem_probe_resp_ie_len)),
7652 probe_rsp_ie_len[1], NULL,
7653 eANI_BOOLEAN_FALSE)
7654 == eHAL_STATUS_FAILURE)
7655 {
7656 hddLog(LOGE,
7657 "Could not pass"
7658 "on WNI_CFG_PROBE_RSP_ADDNIE_DATA2 to CCM");
7659 }
7660 rem_probe_resp_ie_len += probe_rsp_ie_len[1];
7661 }
7662
7663 if (probe_rsp_ie_len[2] > 0)
7664 {
7665 if (ccmCfgSetStr(WLAN_HDD_GET_HAL_CTX(pAdapter),
7666 WNI_CFG_PROBE_RSP_ADDNIE_DATA3,
7667 (tANI_U8*)(genie - (2 + rem_probe_resp_ie_len)),
7668 probe_rsp_ie_len[2], NULL,
7669 eANI_BOOLEAN_FALSE)
7670 == eHAL_STATUS_FAILURE)
7671 {
7672 hddLog(LOGE,
7673 "Could not pass"
7674 "on WNI_CFG_PROBE_RSP_ADDNIE_DATA3 to CCM");
7675 }
7676 rem_probe_resp_ie_len += probe_rsp_ie_len[2];
7677 }
7678
7679 if (ccmCfgSetInt(WLAN_HDD_GET_HAL_CTX(pAdapter),
7680 WNI_CFG_PROBE_RSP_ADDNIE_FLAG, 1,NULL,
7681 eANI_BOOLEAN_FALSE) == eHAL_STATUS_FAILURE)
7682 {
7683 hddLog(LOGE,
7684 "Could not pass"
7685 "on WNI_CFG_PROBE_RSP_ADDNIE_FLAG to CCM");
7686 }
7687 }
7688 else
7689 {
7690 // Reset WNI_CFG_PROBE_RSP Flags
7691 wlan_hdd_reset_prob_rspies(pAdapter);
7692
7693 hddLog(VOS_TRACE_LEVEL_INFO,
7694 "%s: No Probe Response IE received in set beacon",
7695 __func__);
7696 }
7697 } /* end of if (WLAN_HDD_IBSS == pAdapter->device_mode) */
Jeff Johnson295189b2012-06-20 16:38:30 -07007698 break;
7699 case DOT11F_EID_RSN:
7700 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set RSN IE(len %d)",__func__, eLen + 2);
7701 memset( pWextState->WPARSNIE, 0, MAX_WPA_RSN_IE_LEN );
7702 memcpy( pWextState->WPARSNIE, genie - 2, (eLen + 2)/*ie_len*/);
7703 pWextState->roamProfile.pRSNReqIE = pWextState->WPARSNIE;
7704 pWextState->roamProfile.nRSNReqIELength = eLen + 2; //ie_len;
7705 break;
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -07007706 /* Appending Extended Capabilities with Interworking bit set in Assoc Req */
7707 case DOT11F_EID_EXTCAP:
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307708 {
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -07007709 v_U16_t curAddIELen = pWextState->assocAddIE.length;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307710 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set Extended CAPS IE(len %d)",
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -07007711 __func__, eLen + 2);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307712
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -07007713 if( SIR_MAC_MAX_IE_LENGTH < (pWextState->assocAddIE.length + eLen) )
7714 {
Jeff Johnson902c9832012-12-10 14:28:09 -08007715 hddLog(VOS_TRACE_LEVEL_FATAL, "Cannot accommodate assocAddIE "
7716 "Need bigger buffer space");
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -07007717 VOS_ASSERT(0);
7718 return -ENOMEM;
7719 }
7720 memcpy( pWextState->assocAddIE.addIEdata + curAddIELen, genie - 2, eLen + 2);
7721 pWextState->assocAddIE.length += eLen + 2;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307722
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -07007723 pWextState->roamProfile.pAddIEAssoc = pWextState->assocAddIE.addIEdata;
7724 pWextState->roamProfile.nAddIEAssocLength = pWextState->assocAddIE.length;
7725 break;
7726 }
Jeff Johnson295189b2012-06-20 16:38:30 -07007727#ifdef FEATURE_WLAN_WAPI
7728 case WLAN_EID_WAPI:
7729 pAdapter->wapi_info.nWapiMode = 1; //Setting WAPI Mode to ON=1
Jeff Johnson0299d0a2013-10-30 12:37:43 -07007730 hddLog(VOS_TRACE_LEVEL_INFO, "WAPI MODE IS %u",
Jeff Johnson295189b2012-06-20 16:38:30 -07007731 pAdapter->wapi_info.nWapiMode);
7732 tmp = (u16 *)ie;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307733 tmp = tmp + 2; // Skip element Id and Len, Version
Jeff Johnson295189b2012-06-20 16:38:30 -07007734 akmsuiteCount = WPA_GET_LE16(tmp);
7735 tmp = tmp + 1;
7736 akmlist = (int *)(tmp);
7737 if(akmsuiteCount <= MAX_NUM_AKM_SUITES)
7738 {
7739 memcpy(akmsuite, akmlist, (4*akmsuiteCount));
7740 }
7741 else
7742 {
Arif Hussain6d2a3322013-11-17 19:50:10 -08007743 hddLog(VOS_TRACE_LEVEL_FATAL, "Invalid akmSuite count");
Jeff Johnson295189b2012-06-20 16:38:30 -07007744 VOS_ASSERT(0);
7745 return -EINVAL;
7746 }
7747
7748 if (WAPI_PSK_AKM_SUITE == akmsuite[0])
7749 {
7750 hddLog(VOS_TRACE_LEVEL_INFO, "%s: WAPI AUTH MODE SET TO PSK",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07007751 __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07007752 pAdapter->wapi_info.wapiAuthMode = WAPI_AUTH_MODE_PSK;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307753 }
Jeff Johnson295189b2012-06-20 16:38:30 -07007754 if (WAPI_CERT_AKM_SUITE == akmsuite[0])
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307755 {
Jeff Johnson295189b2012-06-20 16:38:30 -07007756 hddLog(VOS_TRACE_LEVEL_INFO, "%s: WAPI AUTH MODE SET TO CERTIFICATE",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07007757 __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07007758 pAdapter->wapi_info.wapiAuthMode = WAPI_AUTH_MODE_CERT;
7759 }
7760 break;
7761#endif
7762 default:
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307763 hddLog (VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07007764 "%s Set UNKNOWN IE %X", __func__, elementId);
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -07007765 /* when Unknown IE is received we should break and continue
7766 * to the next IE in the buffer instead we were returning
7767 * so changing this to break */
7768 break;
Jeff Johnson295189b2012-06-20 16:38:30 -07007769 }
7770 genie += eLen;
7771 remLen -= eLen;
7772 }
7773 EXIT();
7774 return 0;
7775}
7776
7777/*
Gopichand Nakkala18f0c262013-05-07 23:25:08 +05307778 * FUNCTION: hdd_isWPAIEPresent
7779 * Parse the received IE to find the WPA IE
7780 *
7781 */
7782static bool hdd_isWPAIEPresent(u8 *ie, u8 ie_len)
7783{
7784 v_U8_t eLen = 0;
7785 v_U16_t remLen = ie_len;
7786 v_U8_t elementId = 0;
7787
7788 while (remLen >= 2)
7789 {
7790 elementId = *ie++;
7791 eLen = *ie++;
7792 remLen -= 2;
7793 if (eLen > remLen)
7794 {
7795 hddLog(VOS_TRACE_LEVEL_ERROR,
7796 "%s: IE length is wrong %d", __func__, eLen);
7797 return FALSE;
7798 }
7799 if ((elementId == DOT11F_EID_WPA) && (remLen > 5))
7800 {
7801 /* OUI - 0x00 0X50 0XF2
7802 WPA Information Element - 0x01
7803 WPA version - 0x01*/
7804 if (0 == memcmp(&ie[0], "\x00\x50\xf2\x01\x01", 5))
7805 return TRUE;
7806 }
7807 ie += eLen;
7808 remLen -= eLen;
7809 }
7810 return FALSE;
7811}
7812
7813/*
Jeff Johnson295189b2012-06-20 16:38:30 -07007814 * FUNCTION: wlan_hdd_cfg80211_set_privacy
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307815 * This function is used to initialize the security
Jeff Johnson295189b2012-06-20 16:38:30 -07007816 * parameters during connect operation.
7817 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307818int wlan_hdd_cfg80211_set_privacy( hdd_adapter_t *pAdapter,
Jeff Johnson295189b2012-06-20 16:38:30 -07007819 struct cfg80211_connect_params *req
7820 )
7821{
7822 int status = 0;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307823 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07007824 ENTER();
7825
7826 /*set wpa version*/
7827 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_DISABLED;
7828
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307829 if (req->crypto.wpa_versions)
Jeff Johnson295189b2012-06-20 16:38:30 -07007830 {
Gopichand Nakkala781ded42013-06-28 12:10:45 +05307831 if (NL80211_WPA_VERSION_1 == req->crypto.wpa_versions)
Jeff Johnson295189b2012-06-20 16:38:30 -07007832 {
7833 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_WPA;
7834 }
7835 else if (NL80211_WPA_VERSION_2 == req->crypto.wpa_versions)
7836 {
7837 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_WPA2;
7838 }
7839 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307840
7841 hddLog(VOS_TRACE_LEVEL_INFO, "%s: set wpa version to %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07007842 pWextState->wpaVersion);
7843
7844 /*set authentication type*/
7845 status = wlan_hdd_cfg80211_set_auth_type(pAdapter, req->auth_type);
7846
7847 if (0 > status)
7848 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307849 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07007850 "%s: failed to set authentication type ", __func__);
7851 return status;
7852 }
7853
7854 /*set key mgmt type*/
7855 if (req->crypto.n_akm_suites)
7856 {
7857 status = wlan_hdd_set_akm_suite(pAdapter, req->crypto.akm_suites[0]);
7858 if (0 > status)
7859 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307860 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to set akm suite",
Jeff Johnson295189b2012-06-20 16:38:30 -07007861 __func__);
7862 return status;
7863 }
7864 }
7865
7866 /*set pairwise cipher type*/
7867 if (req->crypto.n_ciphers_pairwise)
7868 {
7869 status = wlan_hdd_cfg80211_set_cipher(pAdapter,
7870 req->crypto.ciphers_pairwise[0], true);
7871 if (0 > status)
7872 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307873 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07007874 "%s: failed to set unicast cipher type", __func__);
7875 return status;
7876 }
7877 }
7878 else
7879 {
7880 /*Reset previous cipher suite to none*/
7881 status = wlan_hdd_cfg80211_set_cipher(pAdapter, 0, true);
7882 if (0 > status)
7883 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307884 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07007885 "%s: failed to set unicast cipher type", __func__);
7886 return status;
7887 }
7888 }
7889
7890 /*set group cipher type*/
7891 status = wlan_hdd_cfg80211_set_cipher(pAdapter, req->crypto.cipher_group,
7892 false);
7893
7894 if (0 > status)
7895 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307896 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to set mcast cipher type",
Jeff Johnson295189b2012-06-20 16:38:30 -07007897 __func__);
7898 return status;
7899 }
7900
Chet Lanctot186b5732013-03-18 10:26:30 -07007901#ifdef WLAN_FEATURE_11W
7902 pWextState->roamProfile.MFPEnabled = (req->mfp == NL80211_MFP_REQUIRED);
7903#endif
7904
Jeff Johnson295189b2012-06-20 16:38:30 -07007905 /*parse WPA/RSN IE, and set the correspoing fileds in Roam profile*/
7906 if (req->ie_len)
7907 {
7908 status = wlan_hdd_cfg80211_set_ie(pAdapter, req->ie, req->ie_len);
7909 if ( 0 > status)
7910 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307911 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to parse the WPA/RSN IE",
Jeff Johnson295189b2012-06-20 16:38:30 -07007912 __func__);
7913 return status;
7914 }
7915 }
7916
7917 /*incase of WEP set default key information*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307918 if (req->key && req->key_len)
Jeff Johnson295189b2012-06-20 16:38:30 -07007919 {
7920 if ( (WLAN_CIPHER_SUITE_WEP40 == req->crypto.ciphers_pairwise[0])
7921 || (WLAN_CIPHER_SUITE_WEP104 == req->crypto.ciphers_pairwise[0])
7922 )
7923 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307924 if ( IW_AUTH_KEY_MGMT_802_1X
Jeff Johnson295189b2012-06-20 16:38:30 -07007925 == (pWextState->authKeyMgmt & IW_AUTH_KEY_MGMT_802_1X ))
7926 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307927 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Dynamic WEP not supported",
Jeff Johnson295189b2012-06-20 16:38:30 -07007928 __func__);
7929 return -EOPNOTSUPP;
7930 }
7931 else
7932 {
7933 u8 key_len = req->key_len;
7934 u8 key_idx = req->key_idx;
7935
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307936 if ((eCSR_SECURITY_WEP_KEYSIZE_MAX_BYTES >= key_len)
Jeff Johnson295189b2012-06-20 16:38:30 -07007937 && (CSR_MAX_NUM_KEY > key_idx)
7938 )
7939 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307940 hddLog(VOS_TRACE_LEVEL_INFO,
7941 "%s: setting default wep key, key_idx = %hu key_len %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07007942 __func__, key_idx, key_len);
7943 vos_mem_copy(
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307944 &pWextState->roamProfile.Keys.KeyMaterial[key_idx][0],
Jeff Johnson295189b2012-06-20 16:38:30 -07007945 req->key, key_len);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307946 pWextState->roamProfile.Keys.KeyLength[key_idx] =
Jeff Johnson295189b2012-06-20 16:38:30 -07007947 (u8)key_len;
7948 pWextState->roamProfile.Keys.defaultIndex = (u8)key_idx;
7949 }
7950 }
7951 }
7952 }
7953
7954 return status;
7955}
7956
7957/*
Vinay Krishna Eranna21042322014-01-08 19:21:39 +05307958 * FUNCTION: wlan_hdd_try_disconnect
7959 * This function is used to disconnect from previous
7960 * connection
7961 */
7962static int wlan_hdd_try_disconnect( hdd_adapter_t *pAdapter )
7963{
7964 long ret = 0;
7965 hdd_station_ctx_t *pHddStaCtx;
7966 eMib_dot11DesiredBssType connectedBssType;
7967
7968 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
7969
7970 hdd_connGetConnectedBssType(pHddStaCtx,&connectedBssType );
7971
7972 if((eMib_dot11DesiredBssType_independent == connectedBssType) ||
7973 (eConnectionState_Associated == pHddStaCtx->conn_info.connState) ||
7974 (eConnectionState_IbssConnected == pHddStaCtx->conn_info.connState))
7975 {
7976 /* Issue disconnect to CSR */
7977 INIT_COMPLETION(pAdapter->disconnect_comp_var);
7978 if( eHAL_STATUS_SUCCESS ==
7979 sme_RoamDisconnect( WLAN_HDD_GET_HAL_CTX(pAdapter),
7980 pAdapter->sessionId,
7981 eCSR_DISCONNECT_REASON_UNSPECIFIED ) )
7982 {
7983 ret = wait_for_completion_interruptible_timeout(
7984 &pAdapter->disconnect_comp_var,
7985 msecs_to_jiffies(WLAN_WAIT_TIME_DISCONNECT));
7986 if (0 >= ret)
7987 {
7988 hddLog(LOGE, FL("Failed to receive disconnect event"));
7989 return -EALREADY;
7990 }
7991 }
7992 }
7993 else if(eConnectionState_Disconnecting == pHddStaCtx->conn_info.connState)
7994 {
7995 ret = wait_for_completion_interruptible_timeout(
7996 &pAdapter->disconnect_comp_var,
7997 msecs_to_jiffies(WLAN_WAIT_TIME_DISCONNECT));
7998 if (0 >= ret)
7999 {
8000 hddLog(LOGE, FL("Failed to receive disconnect event"));
8001 return -EALREADY;
8002 }
8003 }
8004
8005 return 0;
8006}
8007
8008/*
Mahesh A Saptasagarfafb7fe2014-05-16 13:19:37 +05308009 * FUNCTION: __wlan_hdd_cfg80211_set_privacy
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308010 * This function is used to initialize the security
Jeff Johnson295189b2012-06-20 16:38:30 -07008011 * parameters during connect operation.
8012 */
Mahesh A Saptasagarfafb7fe2014-05-16 13:19:37 +05308013static int __wlan_hdd_cfg80211_connect( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07008014 struct net_device *ndev,
8015 struct cfg80211_connect_params *req
8016 )
8017{
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308018 int status;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308019 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( ndev );
Jeff Johnson295189b2012-06-20 16:38:30 -07008020 VOS_STATUS exitbmpsStatus = VOS_STATUS_E_INVAL;
Rajesh Chauhana0516c62014-01-30 16:11:18 -08008021 hdd_context_t *pHddCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -07008022
8023 ENTER();
8024
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05308025 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
8026 TRACE_CODE_HDD_CFG80211_CONNECT,
8027 pAdapter->sessionId, pAdapter->device_mode));
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308028 hddLog(VOS_TRACE_LEVEL_INFO,
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05308029 "%s: device_mode = %s (%d)", __func__,
8030 hdd_device_modetoString(pAdapter->device_mode),
8031 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07008032
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308033 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Rajesh Chauhana0516c62014-01-30 16:11:18 -08008034 if (!pHddCtx)
8035 {
8036 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8037 "%s: HDD context is null", __func__);
8038 return VOS_STATUS_E_FAILURE;
8039 }
8040
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308041 status = wlan_hdd_validate_context(pHddCtx);
8042
8043 if (0 != status)
Jeff Johnson295189b2012-06-20 16:38:30 -07008044 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308045 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8046 "%s: HDD context is not valid", __func__);
8047 return status;
Jeff Johnson295189b2012-06-20 16:38:30 -07008048 }
8049
8050#ifdef WLAN_BTAMP_FEATURE
8051 //Infra connect not supported when AMP traffic is on.
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308052 if( VOS_TRUE == WLANBAP_AmpSessionOn() )
Jeff Johnson295189b2012-06-20 16:38:30 -07008053 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308054 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07008055 "%s: No connection when AMP is on", __func__);
Madan Mohan Koyyalamudicae253a2012-11-06 19:10:35 -08008056 return -ECONNREFUSED;
Jeff Johnson295189b2012-06-20 16:38:30 -07008057 }
8058#endif
Vinay Krishna Eranna21042322014-01-08 19:21:39 +05308059
8060 //If Device Mode is Station Concurrent Sessions Exit BMps
8061 //P2P Mode will be taken care in Open/close adapter
8062 if((WLAN_HDD_INFRA_STATION == pAdapter->device_mode) &&
8063 (vos_concurrent_sessions_running()))
8064 {
8065 exitbmpsStatus = hdd_disable_bmps_imps(pHddCtx, WLAN_HDD_INFRA_STATION);
8066 }
8067
8068 /*Try disconnecting if already in connected state*/
8069 status = wlan_hdd_try_disconnect(pAdapter);
8070 if ( 0 > status)
8071 {
8072 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Failed to disconnect the existing"
8073 " connection"));
8074 return -EALREADY;
8075 }
8076
Jeff Johnson295189b2012-06-20 16:38:30 -07008077 /*initialise security parameters*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308078 status = wlan_hdd_cfg80211_set_privacy(pAdapter, req);
Jeff Johnson295189b2012-06-20 16:38:30 -07008079
8080 if ( 0 > status)
8081 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308082 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to set security params",
Jeff Johnson295189b2012-06-20 16:38:30 -07008083 __func__);
8084 return status;
8085 }
8086
Mohit Khanna765234a2012-09-11 15:08:35 -07008087 if ( req->channel )
8088 {
8089 status = wlan_hdd_cfg80211_connect_start(pAdapter, req->ssid,
8090 req->ssid_len, req->bssid,
8091 req->channel->hw_value);
8092 }
8093 else
8094 {
8095 status = wlan_hdd_cfg80211_connect_start(pAdapter, req->ssid,
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308096 req->ssid_len, req->bssid, 0);
Mohit Khanna765234a2012-09-11 15:08:35 -07008097 }
Jeff Johnson295189b2012-06-20 16:38:30 -07008098
8099 if (0 > status)
8100 {
8101 //ReEnable BMPS if disabled
8102 if((VOS_STATUS_SUCCESS == exitbmpsStatus) &&
8103 (NULL != pHddCtx))
8104 {
Gopichand Nakkalaa2fe5b02013-06-06 16:32:28 +05308105 if (pHddCtx->hdd_wlan_suspended)
8106 {
8107 hdd_set_pwrparams(pHddCtx);
8108 }
Jeff Johnson295189b2012-06-20 16:38:30 -07008109 //ReEnable Bmps and Imps back
8110 hdd_enable_bmps_imps(pHddCtx);
8111 }
8112
8113 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: connect failed", __func__);
8114 return status;
8115 }
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308116 pHddCtx->isAmpAllowed = VOS_FALSE;
Jeff Johnson295189b2012-06-20 16:38:30 -07008117 EXIT();
8118 return status;
8119}
8120
Mahesh A Saptasagarfafb7fe2014-05-16 13:19:37 +05308121static int wlan_hdd_cfg80211_connect( struct wiphy *wiphy,
8122 struct net_device *ndev,
8123 struct cfg80211_connect_params *req)
8124{
8125 int ret;
8126 vos_ssr_protect(__func__);
8127 ret = __wlan_hdd_cfg80211_connect(wiphy, ndev, req);
8128 vos_ssr_unprotect(__func__);
8129
8130 return ret;
8131}
Jeff Johnson295189b2012-06-20 16:38:30 -07008132
8133/*
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05308134 * FUNCTION: wlan_hdd_disconnect
8135 * This function is used to issue a disconnect request to SME
8136 */
8137int wlan_hdd_disconnect( hdd_adapter_t *pAdapter, u16 reason )
8138{
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308139 int status;
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05308140 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308141 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
8142
8143 status = wlan_hdd_validate_context(pHddCtx);
8144
8145 if (0 != status)
8146 {
8147 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8148 "%s: HDD context is not valid", __func__);
8149 return status;
8150 }
8151
8152 pHddCtx->isAmpAllowed = VOS_TRUE;
Abhishek Singhf4669da2014-05-26 15:07:49 +05308153 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
8154 "%s: Set HDD connState to eConnectionState_Disconnecting",
8155 __func__);
Vinay Krishna Erannab09d3e72014-03-26 21:23:55 +05308156 pHddStaCtx->conn_info.connState = eConnectionState_Disconnecting;
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05308157 INIT_COMPLETION(pAdapter->disconnect_comp_var);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308158
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05308159 /*issue disconnect*/
Arun Kumar Khandavalli94a2bb02013-12-28 19:17:25 +05308160
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05308161 status = sme_RoamDisconnect( WLAN_HDD_GET_HAL_CTX(pAdapter),
8162 pAdapter->sessionId, reason);
8163
8164 if ( 0 != status )
8165 {
8166 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08008167 "%s csrRoamDisconnect failure, returned %d",
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05308168 __func__, (int)status );
8169 return -EINVAL;
8170 }
Mahesh A Saptasagar05a357e2014-02-26 16:28:06 +05308171 status = wait_for_completion_interruptible_timeout(
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05308172 &pAdapter->disconnect_comp_var,
8173 msecs_to_jiffies(WLAN_WAIT_TIME_DISCONNECT));
Mahesh A Saptasagar05a357e2014-02-26 16:28:06 +05308174 if (!status)
c_hpothu6ff1c3c2013-10-01 19:01:57 +05308175 {
8176 hddLog(VOS_TRACE_LEVEL_ERROR,
Mahesh A Saptasagar05a357e2014-02-26 16:28:06 +05308177 "%s: Failed to disconnect, timed out", __func__);
8178 return -ETIMEDOUT;
8179 }
8180 else if (status == -ERESTARTSYS)
8181 {
8182 hddLog(VOS_TRACE_LEVEL_ERROR,
8183 "%s: Failed to disconnect, wait interrupted", __func__);
8184 return status;
c_hpothu6ff1c3c2013-10-01 19:01:57 +05308185 }
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05308186 /*stop tx queues*/
8187 netif_tx_disable(pAdapter->dev);
8188 netif_carrier_off(pAdapter->dev);
Mahesh A Saptasagar05a357e2014-02-26 16:28:06 +05308189 return 0;
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05308190}
8191
8192
8193/*
Mahesh A Saptasagarfafb7fe2014-05-16 13:19:37 +05308194 * FUNCTION: __wlan_hdd_cfg80211_disconnect
Jeff Johnson295189b2012-06-20 16:38:30 -07008195 * This function is used to issue a disconnect request to SME
8196 */
Mahesh A Saptasagarfafb7fe2014-05-16 13:19:37 +05308197static int __wlan_hdd_cfg80211_disconnect( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07008198 struct net_device *dev,
8199 u16 reason
8200 )
8201{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308202 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
8203 tCsrRoamProfile *pRoamProfile =
Jeff Johnson295189b2012-06-20 16:38:30 -07008204 &(WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter))->roamProfile;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308205 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07008206 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Gopichand Nakkala4327a152013-03-04 23:22:42 -08008207 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Gopichand Nakkalaaa353782013-05-17 20:36:22 +05308208#ifdef FEATURE_WLAN_TDLS
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -08008209 tANI_U8 staIdx;
8210#endif
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308211
Jeff Johnson295189b2012-06-20 16:38:30 -07008212 ENTER();
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308213
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05308214 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
8215 TRACE_CODE_HDD_CFG80211_DISCONNECT,
8216 pAdapter->sessionId, reason));
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05308217 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s(%d)",
8218 __func__, hdd_device_modetoString(pAdapter->device_mode),
8219 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07008220
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308221 hddLog(VOS_TRACE_LEVEL_INFO, "%s: Disconnect called with reason code %d",
8222 __func__, reason);
Jeff Johnson295189b2012-06-20 16:38:30 -07008223
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308224 status = wlan_hdd_validate_context(pHddCtx);
8225
8226 if (0 != status)
Jeff Johnson295189b2012-06-20 16:38:30 -07008227 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308228 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8229 "%s: HDD context is not valid", __func__);
8230 return status;
Jeff Johnson295189b2012-06-20 16:38:30 -07008231 }
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308232
Jeff Johnson295189b2012-06-20 16:38:30 -07008233 if (NULL != pRoamProfile)
8234 {
8235 /*issue disconnect request to SME, if station is in connected state*/
Mahesh A Saptasagar280fd5a2013-12-05 15:38:31 +05308236 if ((pHddStaCtx->conn_info.connState == eConnectionState_Associated) ||
8237 (pHddStaCtx->conn_info.connState == eConnectionState_Connecting))
Jeff Johnson295189b2012-06-20 16:38:30 -07008238 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308239 eCsrRoamDisconnectReason reasonCode =
Jeff Johnson295189b2012-06-20 16:38:30 -07008240 eCSR_DISCONNECT_REASON_UNSPECIFIED;
Gopichand Nakkalaaa353782013-05-17 20:36:22 +05308241 hdd_scaninfo_t *pScanInfo;
Jeff Johnson295189b2012-06-20 16:38:30 -07008242 switch(reason)
8243 {
8244 case WLAN_REASON_MIC_FAILURE:
8245 reasonCode = eCSR_DISCONNECT_REASON_MIC_ERROR;
8246 break;
8247
8248 case WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY:
8249 case WLAN_REASON_DISASSOC_AP_BUSY:
8250 case WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA:
8251 reasonCode = eCSR_DISCONNECT_REASON_DISASSOC;
8252 break;
8253
8254 case WLAN_REASON_PREV_AUTH_NOT_VALID:
8255 case WLAN_REASON_CLASS2_FRAME_FROM_NONAUTH_STA:
Abhishek Singhc3269a52014-05-21 17:22:24 +05308256 case WLAN_REASON_DEAUTH_LEAVING:
Jeff Johnson295189b2012-06-20 16:38:30 -07008257 reasonCode = eCSR_DISCONNECT_REASON_DEAUTH;
8258 break;
8259
Jeff Johnson295189b2012-06-20 16:38:30 -07008260 default:
8261 reasonCode = eCSR_DISCONNECT_REASON_UNSPECIFIED;
8262 break;
8263 }
Gopichand Nakkalaaa353782013-05-17 20:36:22 +05308264 pScanInfo = &pHddCtx->scan_info;
8265 if (pScanInfo->mScanPending)
8266 {
Srinivas, Dasari138af4f2014-02-07 11:13:45 +05308267 hddLog(VOS_TRACE_LEVEL_INFO, "Disconnect is in progress, "
Gopichand Nakkalaaa353782013-05-17 20:36:22 +05308268 "Aborting Scan");
Srinivas, Dasari138af4f2014-02-07 11:13:45 +05308269 hdd_abort_mac_scan(pHddCtx, pAdapter->sessionId,
8270 eCSR_SCAN_ABORT_DEFAULT);
Gopichand Nakkalaaa353782013-05-17 20:36:22 +05308271 }
Jeff Johnson295189b2012-06-20 16:38:30 -07008272
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -08008273#ifdef FEATURE_WLAN_TDLS
8274 /* First clean up the tdls peers if any */
Gopichand Nakkala4327a152013-03-04 23:22:42 -08008275 for (staIdx = 0 ; staIdx < HDD_MAX_NUM_TDLS_STA; staIdx++)
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -08008276 {
Gopichand Nakkala4327a152013-03-04 23:22:42 -08008277 if ((pHddCtx->tdlsConnInfo[staIdx].sessionId == pAdapter->sessionId) &&
8278 (pHddCtx->tdlsConnInfo[staIdx].staId))
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -08008279 {
Hoonki Lee11f7dda2013-02-14 16:55:44 -08008280 uint8 *mac;
Gopichand Nakkala4327a152013-03-04 23:22:42 -08008281 mac = pHddCtx->tdlsConnInfo[staIdx].peerMac.bytes;
Hoonki Lee11f7dda2013-02-14 16:55:44 -08008282 VOS_TRACE(VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07008283 "%s: call sme_DeleteTdlsPeerSta staId %d sessionId %d " MAC_ADDRESS_STR,
Gopichand Nakkala4327a152013-03-04 23:22:42 -08008284 __func__, pHddCtx->tdlsConnInfo[staIdx].staId, pAdapter->sessionId,
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07008285 MAC_ADDR_ARRAY(mac));
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -08008286 sme_DeleteTdlsPeerSta(WLAN_HDD_GET_HAL_CTX(pAdapter),
Gopichand Nakkala4327a152013-03-04 23:22:42 -08008287 pAdapter->sessionId,
8288 mac);
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -08008289 }
8290 }
8291#endif
Arun Kumar Khandavalli94a2bb02013-12-28 19:17:25 +05308292 hddLog(LOG1, FL("Disconnecting with reasoncode:%u"), reasonCode);
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05308293 status = wlan_hdd_disconnect(pAdapter, reasonCode);
8294 if ( 0 != status )
Jeff Johnson295189b2012-06-20 16:38:30 -07008295 {
8296 hddLog(VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08008297 "%s wlan_hdd_disconnect failure, returned %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07008298 __func__, (int)status );
8299 return -EINVAL;
8300 }
Jeff Johnson295189b2012-06-20 16:38:30 -07008301 }
Mahesh A Saptasagar280fd5a2013-12-05 15:38:31 +05308302 else
8303 {
8304 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: unexpected cfg disconnect API"
8305 "called while in %d state", __func__,
8306 pHddStaCtx->conn_info.connState);
8307 }
Jeff Johnson295189b2012-06-20 16:38:30 -07008308 }
8309 else
8310 {
8311 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: No valid roam profile", __func__);
8312 }
8313
8314 return status;
8315}
8316
Mahesh A Saptasagarfafb7fe2014-05-16 13:19:37 +05308317static int wlan_hdd_cfg80211_disconnect( struct wiphy *wiphy,
8318 struct net_device *dev,
8319 u16 reason
8320 )
8321{
8322 int ret;
8323 vos_ssr_protect(__func__);
8324 ret = __wlan_hdd_cfg80211_disconnect(wiphy, dev, reason);
8325 vos_ssr_unprotect(__func__);
8326
8327 return ret;
8328}
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05308329
Jeff Johnson295189b2012-06-20 16:38:30 -07008330/*
8331 * FUNCTION: wlan_hdd_cfg80211_set_privacy_ibss
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308332 * This function is used to initialize the security
Jeff Johnson295189b2012-06-20 16:38:30 -07008333 * settings in IBSS mode.
8334 */
8335static int wlan_hdd_cfg80211_set_privacy_ibss(
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308336 hdd_adapter_t *pAdapter,
Jeff Johnson295189b2012-06-20 16:38:30 -07008337 struct cfg80211_ibss_params *params
8338 )
8339{
8340 int status = 0;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308341 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07008342 eCsrEncryptionType encryptionType = eCSR_ENCRYPT_TYPE_NONE;
8343 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308344
Jeff Johnson295189b2012-06-20 16:38:30 -07008345 ENTER();
8346
8347 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_DISABLED;
Ravi Joshib58ca0d2013-10-29 09:50:23 -07008348 vos_mem_zero(&pHddStaCtx->ibss_enc_key, sizeof(tCsrRoamSetKey));
Jeff Johnson295189b2012-06-20 16:38:30 -07008349
8350 if (params->ie_len && ( NULL != params->ie) )
8351 {
Shailender Karmuchi67edd312013-06-18 16:30:48 -07008352 if (wlan_hdd_cfg80211_get_ie_ptr (params->ie,
8353 params->ie_len, WLAN_EID_RSN ))
Jeff Johnson295189b2012-06-20 16:38:30 -07008354 {
8355 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_WPA2;
8356 encryptionType = eCSR_ENCRYPT_TYPE_AES;
8357 }
Shailender Karmuchi67edd312013-06-18 16:30:48 -07008358 else if ( hdd_isWPAIEPresent (params->ie, params->ie_len ))
Jeff Johnson295189b2012-06-20 16:38:30 -07008359 {
Shailender Karmuchi642e9812013-05-30 14:34:49 -07008360 tDot11fIEWPA dot11WPAIE;
8361 tHalHandle halHandle = WLAN_HDD_GET_HAL_CTX(pAdapter);
Shailender Karmuchi67edd312013-06-18 16:30:48 -07008362 u8 *ie;
Shailender Karmuchi642e9812013-05-30 14:34:49 -07008363
Wilson Yang00256342013-10-10 23:13:38 -07008364 memset(&dot11WPAIE, 0, sizeof(dot11WPAIE));
Shailender Karmuchi67edd312013-06-18 16:30:48 -07008365 ie = wlan_hdd_cfg80211_get_ie_ptr (params->ie,
8366 params->ie_len, DOT11F_EID_WPA);
8367 if ( NULL != ie )
8368 {
8369 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_WPA;
8370 // Unpack the WPA IE
8371 //Skip past the EID byte and length byte - and four byte WiFi OUI
8372 dot11fUnpackIeWPA((tpAniSirGlobal) halHandle,
8373 &ie[2+4],
8374 ie[1] - 4,
8375 &dot11WPAIE);
8376 /*Extract the multicast cipher, the encType for unicast
8377 cipher for wpa-none is none*/
8378 encryptionType =
8379 hdd_TranslateWPAToCsrEncryptionType(dot11WPAIE.multicast_cipher);
8380 }
Jeff Johnson295189b2012-06-20 16:38:30 -07008381 }
Shailender Karmuchi67edd312013-06-18 16:30:48 -07008382
Jeff Johnson295189b2012-06-20 16:38:30 -07008383 status = wlan_hdd_cfg80211_set_ie(pAdapter, params->ie, params->ie_len);
8384
8385 if (0 > status)
8386 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308387 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to parse WPA/RSN IE",
Jeff Johnson295189b2012-06-20 16:38:30 -07008388 __func__);
8389 return status;
8390 }
8391 }
8392
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308393 pWextState->roamProfile.AuthType.authType[0] =
8394 pHddStaCtx->conn_info.authType =
Jeff Johnson295189b2012-06-20 16:38:30 -07008395 eCSR_AUTH_TYPE_OPEN_SYSTEM;
8396
8397 if (params->privacy)
8398 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308399 /* Security enabled IBSS, At this time there is no information available
8400 * about the security paramters, so initialise the encryption type to
Jeff Johnson295189b2012-06-20 16:38:30 -07008401 * eCSR_ENCRYPT_TYPE_WEP40_STATICKEY.
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308402 * The correct security parameters will be updated later in
Jeff Johnson295189b2012-06-20 16:38:30 -07008403 * wlan_hdd_cfg80211_add_key */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308404 /* Hal expects encryption type to be set inorder
Jeff Johnson295189b2012-06-20 16:38:30 -07008405 *enable privacy bit in beacons */
8406
8407 encryptionType = eCSR_ENCRYPT_TYPE_WEP40_STATICKEY;
8408 }
Shailender Karmuchi642e9812013-05-30 14:34:49 -07008409 VOS_TRACE (VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO_HIGH,
8410 "encryptionType=%d", encryptionType);
Jeff Johnson295189b2012-06-20 16:38:30 -07008411 pHddStaCtx->conn_info.ucEncryptionType = encryptionType;
8412 pWextState->roamProfile.EncryptionType.numEntries = 1;
8413 pWextState->roamProfile.EncryptionType.encryptionType[0] = encryptionType;
Jeff Johnson295189b2012-06-20 16:38:30 -07008414 return status;
8415}
8416
8417/*
8418 * FUNCTION: wlan_hdd_cfg80211_join_ibss
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308419 * This function is used to create/join an IBSS
Jeff Johnson295189b2012-06-20 16:38:30 -07008420 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308421static int wlan_hdd_cfg80211_join_ibss( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07008422 struct net_device *dev,
8423 struct cfg80211_ibss_params *params
8424 )
8425{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308426 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
Jeff Johnson295189b2012-06-20 16:38:30 -07008427 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
8428 tCsrRoamProfile *pRoamProfile;
8429 int status;
krunal sonie9002db2013-11-25 14:24:17 -08008430 bool alloc_bssid = VOS_FALSE;
Jeff Johnson295189b2012-06-20 16:38:30 -07008431 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308432 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07008433
8434 ENTER();
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308435
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05308436 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
8437 TRACE_CODE_HDD_CFG80211_JOIN_IBSS,
8438 pAdapter->sessionId, pAdapter->device_mode));
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308439 hddLog(VOS_TRACE_LEVEL_INFO,
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05308440 "%s: device_mode = %s (%d)", __func__,
8441 hdd_device_modetoString(pAdapter->device_mode),
8442 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07008443
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308444 status = wlan_hdd_validate_context(pHddCtx);
8445
8446 if (0 != status)
Jeff Johnson295189b2012-06-20 16:38:30 -07008447 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308448 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8449 "%s: HDD context is not valid", __func__);
8450 return status;
Jeff Johnson295189b2012-06-20 16:38:30 -07008451 }
8452
8453 if (NULL == pWextState)
8454 {
Arif Hussain6d2a3322013-11-17 19:50:10 -08008455 hddLog (VOS_TRACE_LEVEL_ERROR, "%s ERROR: Data Storage Corruption",
Jeff Johnson295189b2012-06-20 16:38:30 -07008456 __func__);
8457 return -EIO;
8458 }
8459
Vinay Krishna Eranna21042322014-01-08 19:21:39 +05308460 /*Try disconnecting if already in connected state*/
8461 status = wlan_hdd_try_disconnect(pAdapter);
8462 if ( 0 > status)
8463 {
8464 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Failed to disconnect the existing"
8465 " IBSS connection"));
8466 return -EALREADY;
8467 }
8468
Jeff Johnson295189b2012-06-20 16:38:30 -07008469 pRoamProfile = &pWextState->roamProfile;
8470
8471 if ( eCSR_BSS_TYPE_START_IBSS != pRoamProfile->BSSType )
8472 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308473 hddLog (VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -08008474 "%s Interface type is not set to IBSS", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07008475 return -EINVAL;
8476 }
8477
Praveen Kumar Sirisillad123d142013-09-24 16:50:13 -07008478 /* BSSID is provided by upper layers hence no need to AUTO generate */
8479 if (NULL != params->bssid) {
8480 if (ccmCfgSetInt(pHddCtx->hHal, WNI_CFG_IBSS_AUTO_BSSID, 0,
8481 NULL, eANI_BOOLEAN_FALSE)==eHAL_STATUS_FAILURE) {
8482 hddLog (VOS_TRACE_LEVEL_ERROR,
8483 "%s:ccmCfgStInt faild for WNI_CFG_IBSS_AUTO_BSSID", __func__);
8484 return -EIO;
8485 }
8486 }
krunal sonie9002db2013-11-25 14:24:17 -08008487 else if(pHddCtx->cfg_ini->isCoalesingInIBSSAllowed == 0)
8488 {
8489 if (ccmCfgSetInt(pHddCtx->hHal, WNI_CFG_IBSS_AUTO_BSSID, 0,
8490 NULL, eANI_BOOLEAN_FALSE)==eHAL_STATUS_FAILURE)
8491 {
8492 hddLog (VOS_TRACE_LEVEL_ERROR,
8493 "%s:ccmCfgStInt faild for WNI_CFG_IBSS_AUTO_BSSID", __func__);
8494 return -EIO;
8495 }
8496 params->bssid = vos_mem_malloc(sizeof(VOS_MAC_ADDR_SIZE));
8497 if (!params->bssid)
8498 {
8499 hddLog (VOS_TRACE_LEVEL_ERROR,
8500 "%s:Failed memory allocation", __func__);
8501 return -EIO;
8502 }
8503 vos_mem_copy((v_U8_t *)params->bssid,
8504 (v_U8_t *)&pHddCtx->cfg_ini->IbssBssid.bytes[0],
8505 VOS_MAC_ADDR_SIZE);
8506 alloc_bssid = VOS_TRUE;
8507 }
Praveen Kumar Sirisillad123d142013-09-24 16:50:13 -07008508
Jeff Johnson295189b2012-06-20 16:38:30 -07008509 /* Set Channel */
Yue Maf49ba872013-08-19 12:04:25 -07008510 if (NULL !=
8511#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0))
8512 params->chandef.chan)
8513#else
8514 params->channel)
8515#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07008516 {
8517 u8 channelNum;
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07008518 v_U32_t numChans = WNI_CFG_VALID_CHANNEL_LIST_LEN;
8519 v_U8_t validChan[WNI_CFG_VALID_CHANNEL_LIST_LEN];
8520 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
8521 int indx;
Jeff Johnson295189b2012-06-20 16:38:30 -07008522
8523 /* Get channel number */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308524 channelNum =
Yue Maf49ba872013-08-19 12:04:25 -07008525 ieee80211_frequency_to_channel(
8526#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0))
8527 params->chandef.chan->center_freq);
8528#else
8529 params->channel->center_freq);
8530#endif
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07008531
8532 if (0 != ccmCfgGetStr(hHal, WNI_CFG_VALID_CHANNEL_LIST,
8533 validChan, &numChans))
Jeff Johnson295189b2012-06-20 16:38:30 -07008534 {
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07008535 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: No valid channel list",
8536 __func__);
8537 return -EOPNOTSUPP;
Jeff Johnson295189b2012-06-20 16:38:30 -07008538 }
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07008539
8540 for (indx = 0; indx < numChans; indx++)
Jeff Johnson295189b2012-06-20 16:38:30 -07008541 {
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07008542 if (channelNum == validChan[indx])
8543 {
8544 break;
8545 }
8546 }
8547 if (indx >= numChans)
8548 {
8549 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Not valid Channel %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07008550 __func__, channelNum);
8551 return -EINVAL;
8552 }
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07008553 /* Set the Operational Channel */
8554 hddLog(VOS_TRACE_LEVEL_INFO_HIGH, "%s: set channel %d", __func__,
8555 channelNum);
8556 pRoamProfile->ChannelInfo.numOfChannels = 1;
8557 pHddStaCtx->conn_info.operationChannel = channelNum;
8558 pRoamProfile->ChannelInfo.ChannelList =
8559 &pHddStaCtx->conn_info.operationChannel;
Jeff Johnson295189b2012-06-20 16:38:30 -07008560 }
8561
8562 /* Initialize security parameters */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308563 status = wlan_hdd_cfg80211_set_privacy_ibss(pAdapter, params);
Jeff Johnson295189b2012-06-20 16:38:30 -07008564 if (status < 0)
8565 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308566 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to set security parameters",
Jeff Johnson295189b2012-06-20 16:38:30 -07008567 __func__);
8568 return status;
8569 }
8570
8571 /* Issue connect start */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308572 status = wlan_hdd_cfg80211_connect_start(pAdapter, params->ssid,
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07008573 params->ssid_len, params->bssid,
8574 pHddStaCtx->conn_info.operationChannel);
Jeff Johnson295189b2012-06-20 16:38:30 -07008575
8576 if (0 > status)
8577 {
8578 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: connect failed", __func__);
8579 return status;
8580 }
8581
krunal sonie9002db2013-11-25 14:24:17 -08008582 if (NULL != params->bssid &&
8583 pHddCtx->cfg_ini->isCoalesingInIBSSAllowed == 0 &&
8584 alloc_bssid == VOS_TRUE)
8585 {
8586 vos_mem_free(params->bssid);
8587 }
Jeff Johnson295189b2012-06-20 16:38:30 -07008588 return 0;
8589}
8590
8591/*
8592 * FUNCTION: wlan_hdd_cfg80211_leave_ibss
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308593 * This function is used to leave an IBSS
Jeff Johnson295189b2012-06-20 16:38:30 -07008594 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308595static int wlan_hdd_cfg80211_leave_ibss( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07008596 struct net_device *dev
8597 )
8598{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308599 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
Jeff Johnson295189b2012-06-20 16:38:30 -07008600 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
8601 tCsrRoamProfile *pRoamProfile;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308602 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
8603 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07008604
8605 ENTER();
8606
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05308607 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
8608 TRACE_CODE_HDD_CFG80211_LEAVE_IBSS,
8609 pAdapter->sessionId, eCSR_DISCONNECT_REASON_IBSS_LEAVE));
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308610 status = wlan_hdd_validate_context(pHddCtx);
8611
8612 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008613 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308614 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8615 "%s: HDD context is not valid", __func__);
8616 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008617 }
8618
Sushant Kaushik8bc7df22014-04-09 17:55:29 +05308619 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %s (%d)", __func__,
8620 hdd_device_modetoString(pAdapter->device_mode),
8621 pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07008622 if (NULL == pWextState)
8623 {
Arif Hussain6d2a3322013-11-17 19:50:10 -08008624 hddLog (VOS_TRACE_LEVEL_ERROR, "%s ERROR: Data Storage Corruption",
Jeff Johnson295189b2012-06-20 16:38:30 -07008625 __func__);
8626 return -EIO;
8627 }
8628
8629 pRoamProfile = &pWextState->roamProfile;
8630
8631 /* Issue disconnect only if interface type is set to IBSS */
8632 if (eCSR_BSS_TYPE_START_IBSS != pRoamProfile->BSSType)
8633 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308634 hddLog (VOS_TRACE_LEVEL_ERROR, "%s: BSS Type is not set to IBSS",
Jeff Johnson295189b2012-06-20 16:38:30 -07008635 __func__);
8636 return -EINVAL;
8637 }
8638
8639 /* Issue Disconnect request */
8640 INIT_COMPLETION(pAdapter->disconnect_comp_var);
8641 sme_RoamDisconnect( WLAN_HDD_GET_HAL_CTX(pAdapter), pAdapter->sessionId,
8642 eCSR_DISCONNECT_REASON_IBSS_LEAVE);
8643
8644 return 0;
8645}
8646
8647/*
Mahesh A Saptasagar179d2252014-06-02 21:32:21 +05308648 * FUNCTION: __wlan_hdd_cfg80211_set_wiphy_params
Jeff Johnson295189b2012-06-20 16:38:30 -07008649 * This function is used to set the phy parameters
8650 * (RTS Threshold/FRAG Threshold/Retry Count etc ...)
8651 */
Mahesh A Saptasagar179d2252014-06-02 21:32:21 +05308652static int __wlan_hdd_cfg80211_set_wiphy_params(struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07008653 u32 changed)
8654{
8655 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
8656 tHalHandle hHal = pHddCtx->hHal;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308657 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07008658
8659 ENTER();
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05308660 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
8661 TRACE_CODE_HDD_CFG80211_SET_WIPHY_PARAMS,
8662 NO_SESSION, wiphy->rts_threshold));
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308663 status = wlan_hdd_validate_context(pHddCtx);
8664
8665 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008666 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308667 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8668 "%s: HDD context is not valid", __func__);
8669 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008670 }
8671
Jeff Johnson295189b2012-06-20 16:38:30 -07008672 if (changed & WIPHY_PARAM_RTS_THRESHOLD)
8673 {
8674 u16 rts_threshold = (wiphy->rts_threshold == -1) ?
8675 WNI_CFG_RTS_THRESHOLD_STAMAX :
8676 wiphy->rts_threshold;
8677
8678 if ((WNI_CFG_RTS_THRESHOLD_STAMIN > rts_threshold) ||
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308679 (WNI_CFG_RTS_THRESHOLD_STAMAX < rts_threshold))
Jeff Johnson295189b2012-06-20 16:38:30 -07008680 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308681 hddLog(VOS_TRACE_LEVEL_ERROR,
8682 "%s: Invalid RTS Threshold value %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07008683 __func__, rts_threshold);
8684 return -EINVAL;
8685 }
8686
8687 if (0 != ccmCfgSetInt(hHal, WNI_CFG_RTS_THRESHOLD,
8688 rts_threshold, ccmCfgSetCallback,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308689 eANI_BOOLEAN_TRUE))
Jeff Johnson295189b2012-06-20 16:38:30 -07008690 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308691 hddLog(VOS_TRACE_LEVEL_ERROR,
8692 "%s: ccmCfgSetInt failed for rts_threshold value %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07008693 __func__, rts_threshold);
8694 return -EIO;
8695 }
8696
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308697 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: set rts threshold %hu", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07008698 rts_threshold);
8699 }
8700
8701 if (changed & WIPHY_PARAM_FRAG_THRESHOLD)
8702 {
8703 u16 frag_threshold = (wiphy->frag_threshold == -1) ?
8704 WNI_CFG_FRAGMENTATION_THRESHOLD_STAMAX :
8705 wiphy->frag_threshold;
8706
8707 if ((WNI_CFG_FRAGMENTATION_THRESHOLD_STAMIN > frag_threshold)||
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308708 (WNI_CFG_FRAGMENTATION_THRESHOLD_STAMAX < frag_threshold) )
Jeff Johnson295189b2012-06-20 16:38:30 -07008709 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308710 hddLog(VOS_TRACE_LEVEL_ERROR,
8711 "%s: Invalid frag_threshold value %hu", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07008712 frag_threshold);
8713 return -EINVAL;
8714 }
8715
8716 if (0 != ccmCfgSetInt(hHal, WNI_CFG_FRAGMENTATION_THRESHOLD,
8717 frag_threshold, ccmCfgSetCallback,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308718 eANI_BOOLEAN_TRUE))
Jeff Johnson295189b2012-06-20 16:38:30 -07008719 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308720 hddLog(VOS_TRACE_LEVEL_ERROR,
8721 "%s: ccmCfgSetInt failed for frag_threshold value %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07008722 __func__, frag_threshold);
8723 return -EIO;
8724 }
8725
8726 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: set frag threshold %hu", __func__,
8727 frag_threshold);
8728 }
8729
8730 if ((changed & WIPHY_PARAM_RETRY_SHORT)
8731 || (changed & WIPHY_PARAM_RETRY_LONG))
8732 {
8733 u8 retry_value = (changed & WIPHY_PARAM_RETRY_SHORT) ?
8734 wiphy->retry_short :
8735 wiphy->retry_long;
8736
8737 if ((WNI_CFG_LONG_RETRY_LIMIT_STAMIN > retry_value) ||
8738 (WNI_CFG_LONG_RETRY_LIMIT_STAMAX < retry_value))
8739 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308740 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid Retry count %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07008741 __func__, retry_value);
8742 return -EINVAL;
8743 }
8744
8745 if (changed & WIPHY_PARAM_RETRY_SHORT)
8746 {
8747 if (0 != ccmCfgSetInt(hHal, WNI_CFG_LONG_RETRY_LIMIT,
8748 retry_value, ccmCfgSetCallback,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308749 eANI_BOOLEAN_TRUE))
Jeff Johnson295189b2012-06-20 16:38:30 -07008750 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308751 hddLog(VOS_TRACE_LEVEL_ERROR,
8752 "%s: ccmCfgSetInt failed for long retry count %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07008753 __func__, retry_value);
8754 return -EIO;
8755 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308756 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: set long retry count %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07008757 __func__, retry_value);
8758 }
8759 else if (changed & WIPHY_PARAM_RETRY_SHORT)
8760 {
8761 if (0 != ccmCfgSetInt(hHal, WNI_CFG_SHORT_RETRY_LIMIT,
8762 retry_value, ccmCfgSetCallback,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308763 eANI_BOOLEAN_TRUE))
Jeff Johnson295189b2012-06-20 16:38:30 -07008764 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308765 hddLog(VOS_TRACE_LEVEL_ERROR,
8766 "%s: ccmCfgSetInt failed for short retry count %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07008767 __func__, retry_value);
8768 return -EIO;
8769 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308770 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: set short retry count %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07008771 __func__, retry_value);
8772 }
8773 }
8774
8775 return 0;
8776}
8777
Mahesh A Saptasagar179d2252014-06-02 21:32:21 +05308778static int wlan_hdd_cfg80211_set_wiphy_params(struct wiphy *wiphy,
8779 u32 changed)
8780{
8781 int ret;
8782
8783 vos_ssr_protect(__func__);
8784 ret = __wlan_hdd_cfg80211_set_wiphy_params(wiphy, changed);
8785 vos_ssr_unprotect(__func__);
8786
8787 return ret;
8788}
8789
Jeff Johnson295189b2012-06-20 16:38:30 -07008790/*
Mahesh A Saptasagar179d2252014-06-02 21:32:21 +05308791 * FUNCTION: __wlan_hdd_cfg80211_set_txpower
Jeff Johnson295189b2012-06-20 16:38:30 -07008792 * This function is used to set the txpower
8793 */
Mahesh A Saptasagar179d2252014-06-02 21:32:21 +05308794static int __wlan_hdd_cfg80211_set_txpower(struct wiphy *wiphy,
Yue Maf49ba872013-08-19 12:04:25 -07008795#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0)
8796 struct wireless_dev *wdev,
8797#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07008798#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,35)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308799 enum tx_power_setting type,
Jeff Johnson295189b2012-06-20 16:38:30 -07008800#else
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308801 enum nl80211_tx_power_setting type,
Jeff Johnson295189b2012-06-20 16:38:30 -07008802#endif
8803 int dbm)
8804{
8805 hdd_context_t *pHddCtx = (hdd_context_t*) wiphy_priv(wiphy);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308806 tHalHandle hHal = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07008807 tSirMacAddr bssid = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF};
8808 tSirMacAddr selfMac = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF};
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308809 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07008810
8811 ENTER();
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05308812 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
8813 TRACE_CODE_HDD_CFG80211_SET_TXPOWER,
8814 NO_SESSION, type ));
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308815 status = wlan_hdd_validate_context(pHddCtx);
8816
8817 if (0 != status)
8818 {
8819 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8820 "%s: HDD context is not valid", __func__);
8821 return status;
8822 }
8823
8824 hHal = pHddCtx->hHal;
8825
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308826 if (0 != ccmCfgSetInt(hHal, WNI_CFG_CURRENT_TX_POWER_LEVEL,
8827 dbm, ccmCfgSetCallback,
8828 eANI_BOOLEAN_TRUE))
Jeff Johnson295189b2012-06-20 16:38:30 -07008829 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308830 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07008831 "%s: ccmCfgSetInt failed for tx power %hu", __func__, dbm);
8832 return -EIO;
8833 }
8834
8835 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: set tx power level %d dbm", __func__,
8836 dbm);
8837
8838 switch(type)
8839 {
8840 case NL80211_TX_POWER_AUTOMATIC: /*automatically determine transmit power*/
8841 /* Fall through */
8842 case NL80211_TX_POWER_LIMITED: /*limit TX power by the mBm parameter*/
8843 if( sme_SetMaxTxPower(hHal, bssid, selfMac, dbm) != eHAL_STATUS_SUCCESS )
8844 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308845 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Setting maximum tx power failed",
8846 __func__);
8847 return -EIO;
Jeff Johnson295189b2012-06-20 16:38:30 -07008848 }
8849 break;
8850 case NL80211_TX_POWER_FIXED: /*fix TX power to the mBm parameter*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308851 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: NL80211_TX_POWER_FIXED not supported",
Jeff Johnson295189b2012-06-20 16:38:30 -07008852 __func__);
8853 return -EOPNOTSUPP;
8854 break;
8855 default:
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308856 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid power setting type %d",
8857 __func__, type);
Jeff Johnson295189b2012-06-20 16:38:30 -07008858 return -EIO;
8859 }
8860
8861 return 0;
8862}
8863
Mahesh A Saptasagar179d2252014-06-02 21:32:21 +05308864static int wlan_hdd_cfg80211_set_txpower(struct wiphy *wiphy,
8865#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0)
8866 struct wireless_dev *wdev,
8867#endif
8868#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,35)
8869 enum tx_power_setting type,
8870#else
8871 enum nl80211_tx_power_setting type,
8872#endif
8873 int dbm)
8874{
8875 int ret;
8876 vos_ssr_protect(__func__);
8877 ret = __wlan_hdd_cfg80211_set_txpower(wiphy,
8878#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0)
8879 wdev,
8880#endif
8881#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,35)
8882 type,
8883#else
8884 type,
8885#endif
8886 dbm);
8887 vos_ssr_unprotect(__func__);
8888
8889 return ret;
8890}
8891
Jeff Johnson295189b2012-06-20 16:38:30 -07008892/*
8893 * FUNCTION: wlan_hdd_cfg80211_get_txpower
8894 * This function is used to read the txpower
8895 */
Yue Maf49ba872013-08-19 12:04:25 -07008896static int wlan_hdd_cfg80211_get_txpower(struct wiphy *wiphy,
8897#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0)
8898 struct wireless_dev *wdev,
8899#endif
8900 int *dbm)
Jeff Johnson295189b2012-06-20 16:38:30 -07008901{
8902
8903 hdd_adapter_t *pAdapter;
8904 hdd_context_t *pHddCtx = (hdd_context_t*) wiphy_priv(wiphy);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308905 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07008906
Jeff Johnsone7245742012-09-05 17:12:55 -07008907 ENTER();
8908
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308909 status = wlan_hdd_validate_context(pHddCtx);
Jeff Johnson295189b2012-06-20 16:38:30 -07008910
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308911 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008912 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308913 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8914 "%s: HDD context is not valid", __func__);
8915 *dbm = 0;
8916 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008917 }
8918
Jeff Johnson295189b2012-06-20 16:38:30 -07008919 pAdapter = hdd_get_adapter(pHddCtx, WLAN_HDD_INFRA_STATION);
8920 if (NULL == pAdapter)
8921 {
8922 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: Not in station context " ,__func__);
8923 return -ENOENT;
8924 }
8925
8926 wlan_hdd_get_classAstats(pAdapter);
8927 *dbm = pAdapter->hdd_stats.ClassA_stat.max_pwr;
8928
Jeff Johnsone7245742012-09-05 17:12:55 -07008929 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -07008930 return 0;
8931}
8932
8933static int wlan_hdd_cfg80211_get_station(struct wiphy *wiphy, struct net_device *dev,
8934 u8* mac, struct station_info *sinfo)
8935{
8936 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
8937 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
8938 int ssidlen = pHddStaCtx->conn_info.SSID.SSID.length;
c_hpothu44ff4e02014-05-08 00:13:57 +05308939 tANI_U32 rate_flags;
Jeff Johnson295189b2012-06-20 16:38:30 -07008940
8941 hdd_context_t *pHddCtx = (hdd_context_t*) wiphy_priv(wiphy);
8942 hdd_config_t *pCfg = pHddCtx->cfg_ini;
Jeff Johnson295189b2012-06-20 16:38:30 -07008943
8944 tANI_U8 OperationalRates[CSR_DOT11_SUPPORTED_RATES_MAX];
8945 tANI_U32 ORLeng = CSR_DOT11_SUPPORTED_RATES_MAX;
8946 tANI_U8 ExtendedRates[CSR_DOT11_EXTENDED_SUPPORTED_RATES_MAX];
8947 tANI_U32 ERLeng = CSR_DOT11_EXTENDED_SUPPORTED_RATES_MAX;
8948 tANI_U8 MCSRates[SIZE_OF_BASIC_MCS_SET];
8949 tANI_U32 MCSLeng = SIZE_OF_BASIC_MCS_SET;
8950 tANI_U16 maxRate = 0;
8951 tANI_U16 myRate;
8952 tANI_U16 currentRate = 0;
8953 tANI_U8 maxSpeedMCS = 0;
8954 tANI_U8 maxMCSIdx = 0;
8955 tANI_U8 rateFlag = 1;
8956 tANI_U8 i, j, rssidx;
Madan Mohan Koyyalamudic75be962012-10-18 19:19:03 -07008957 tANI_U16 temp;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308958 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07008959
Leo Chang6f8870f2013-03-26 18:11:36 -07008960#ifdef WLAN_FEATURE_11AC
8961 tANI_U32 vht_mcs_map;
8962 eDataRate11ACMaxMcs vhtMaxMcs;
8963#endif /* WLAN_FEATURE_11AC */
8964
Jeff Johnsone7245742012-09-05 17:12:55 -07008965 ENTER();
8966
Jeff Johnson295189b2012-06-20 16:38:30 -07008967 if ((eConnectionState_Associated != pHddStaCtx->conn_info.connState) ||
8968 (0 == ssidlen))
8969 {
8970 hddLog(VOS_TRACE_LEVEL_INFO, "%s: Not associated or"
8971 " Invalid ssidlen, %d", __func__, ssidlen);
8972 /*To keep GUI happy*/
8973 return 0;
8974 }
8975
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308976 status = wlan_hdd_validate_context(pHddCtx);
8977
8978 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008979 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05308980 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8981 "%s: HDD context is not valid", __func__);
8982 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008983 }
8984
Jeff Johnson295189b2012-06-20 16:38:30 -07008985
Kiet Lam3b17fc82013-09-27 05:24:08 +05308986 wlan_hdd_get_rssi(pAdapter, &sinfo->signal);
8987 sinfo->filled |= STATION_INFO_SIGNAL;
8988
c_hpothu09f19542014-05-30 21:53:31 +05308989 wlan_hdd_get_station_stats(pAdapter);
8990 rate_flags = pAdapter->hdd_stats.ClassA_stat.tx_rate_flags;
8991
8992 /*overwrite rate_flags if MAX link-speed need to be reported*/
c_hpothu44ff4e02014-05-08 00:13:57 +05308993 if ((eHDD_LINK_SPEED_REPORT_MAX == pCfg->reportMaxLinkSpeed) ||
8994 (eHDD_LINK_SPEED_REPORT_MAX_SCALED == pCfg->reportMaxLinkSpeed &&
8995 sinfo->signal >= pCfg->linkSpeedRssiHigh))
8996 {
8997 rate_flags = pAdapter->maxRateFlags;
8998 }
c_hpothu44ff4e02014-05-08 00:13:57 +05308999
Jeff Johnson295189b2012-06-20 16:38:30 -07009000 //convert to the UI units of 100kbps
9001 myRate = pAdapter->hdd_stats.ClassA_stat.tx_rate * 5;
9002
9003#ifdef LINKSPEED_DEBUG_ENABLED
Leo Chang6f8870f2013-03-26 18:11:36 -07009004 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 -07009005 sinfo->signal,
9006 pCfg->reportMaxLinkSpeed,
9007 myRate,
9008 (int) pCfg->linkSpeedRssiHigh,
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -07009009 (int) pCfg->linkSpeedRssiMid,
9010 (int) pCfg->linkSpeedRssiLow,
Leo Chang6f8870f2013-03-26 18:11:36 -07009011 (int) rate_flags,
9012 (int) pAdapter->hdd_stats.ClassA_stat.mcs_index);
Jeff Johnson295189b2012-06-20 16:38:30 -07009013#endif //LINKSPEED_DEBUG_ENABLED
9014
9015 if (eHDD_LINK_SPEED_REPORT_ACTUAL != pCfg->reportMaxLinkSpeed)
9016 {
9017 // we do not want to necessarily report the current speed
9018 if (eHDD_LINK_SPEED_REPORT_MAX == pCfg->reportMaxLinkSpeed)
9019 {
9020 // report the max possible speed
9021 rssidx = 0;
9022 }
9023 else if (eHDD_LINK_SPEED_REPORT_MAX_SCALED == pCfg->reportMaxLinkSpeed)
9024 {
9025 // report the max possible speed with RSSI scaling
9026 if (sinfo->signal >= pCfg->linkSpeedRssiHigh)
9027 {
9028 // report the max possible speed
9029 rssidx = 0;
9030 }
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -07009031 else if (sinfo->signal >= pCfg->linkSpeedRssiMid)
Jeff Johnson295189b2012-06-20 16:38:30 -07009032 {
9033 // report middle speed
9034 rssidx = 1;
9035 }
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -07009036 else if (sinfo->signal >= pCfg->linkSpeedRssiLow)
9037 {
9038 // report middle speed
9039 rssidx = 2;
9040 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009041 else
9042 {
9043 // report actual speed
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -07009044 rssidx = 3;
Jeff Johnson295189b2012-06-20 16:38:30 -07009045 }
9046 }
9047 else
9048 {
9049 // unknown, treat as eHDD_LINK_SPEED_REPORT_MAX
9050 hddLog(VOS_TRACE_LEVEL_ERROR,
9051 "%s: Invalid value for reportMaxLinkSpeed: %u",
9052 __func__, pCfg->reportMaxLinkSpeed);
9053 rssidx = 0;
9054 }
9055
9056 maxRate = 0;
9057
9058 /* Get Basic Rate Set */
Gopichand Nakkala05ab1322013-02-15 11:28:38 +05309059 if (0 != ccmCfgGetStr(WLAN_HDD_GET_HAL_CTX(pAdapter), WNI_CFG_OPERATIONAL_RATE_SET,
9060 OperationalRates, &ORLeng))
9061 {
9062 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: ccm api returned failure", __func__);
9063 /*To keep GUI happy*/
9064 return 0;
9065 }
9066
Jeff Johnson295189b2012-06-20 16:38:30 -07009067 for (i = 0; i < ORLeng; i++)
9068 {
Jeff Johnsone7245742012-09-05 17:12:55 -07009069 for (j = 0; j < (sizeof(supported_data_rate) / sizeof(supported_data_rate[0])); j ++)
Jeff Johnson295189b2012-06-20 16:38:30 -07009070 {
9071 /* Validate Rate Set */
9072 if (supported_data_rate[j].beacon_rate_index == (OperationalRates[i] & 0x7F))
9073 {
9074 currentRate = supported_data_rate[j].supported_rate[rssidx];
9075 break;
9076 }
9077 }
9078 /* Update MAX rate */
9079 maxRate = (currentRate > maxRate)?currentRate:maxRate;
9080 }
9081
9082 /* Get Extended Rate Set */
Gopichand Nakkala05ab1322013-02-15 11:28:38 +05309083 if (0 != ccmCfgGetStr(WLAN_HDD_GET_HAL_CTX(pAdapter), WNI_CFG_EXTENDED_OPERATIONAL_RATE_SET,
9084 ExtendedRates, &ERLeng))
9085 {
9086 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: ccm api returned failure", __func__);
9087 /*To keep GUI happy*/
9088 return 0;
9089 }
9090
Jeff Johnson295189b2012-06-20 16:38:30 -07009091 for (i = 0; i < ERLeng; i++)
9092 {
Jeff Johnsone7245742012-09-05 17:12:55 -07009093 for (j = 0; j < (sizeof(supported_data_rate) / sizeof(supported_data_rate[0])); j ++)
Jeff Johnson295189b2012-06-20 16:38:30 -07009094 {
9095 if (supported_data_rate[j].beacon_rate_index == (ExtendedRates[i] & 0x7F))
9096 {
9097 currentRate = supported_data_rate[j].supported_rate[rssidx];
9098 break;
9099 }
9100 }
9101 /* Update MAX rate */
9102 maxRate = (currentRate > maxRate)?currentRate:maxRate;
9103 }
Kiet Lamb69f8dc2013-11-15 15:34:27 +05309104 /* Get MCS Rate Set --
Kaushik, Sushantdc304d82014-01-22 10:58:37 +05309105 Only if we are always reporting max speed (or)
Kiet Lamb69f8dc2013-11-15 15:34:27 +05309106 if we have good rssi */
Kaushik, Sushantdc304d82014-01-22 10:58:37 +05309107 if ((0 == rssidx) ||
Kiet Lamb69f8dc2013-11-15 15:34:27 +05309108 (eHDD_LINK_SPEED_REPORT_MAX == pCfg->reportMaxLinkSpeed))
Jeff Johnson295189b2012-06-20 16:38:30 -07009109 {
Gopichand Nakkala05ab1322013-02-15 11:28:38 +05309110 if (0 != ccmCfgGetStr(WLAN_HDD_GET_HAL_CTX(pAdapter), WNI_CFG_CURRENT_MCS_SET,
9111 MCSRates, &MCSLeng))
9112 {
9113 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: ccm api returned failure", __func__);
9114 /*To keep GUI happy*/
9115 return 0;
9116 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009117 rateFlag = 0;
Leo Chang6f8870f2013-03-26 18:11:36 -07009118#ifdef WLAN_FEATURE_11AC
9119 /* VHT80 rate has seperate rate table */
Gopichand Nakkala4c705372013-04-24 13:20:33 +05309120 if (rate_flags & (eHAL_TX_RATE_VHT20|eHAL_TX_RATE_VHT40|eHAL_TX_RATE_VHT80))
Jeff Johnson295189b2012-06-20 16:38:30 -07009121 {
Leo Chang6f8870f2013-03-26 18:11:36 -07009122 ccmCfgGetInt(WLAN_HDD_GET_HAL_CTX(pAdapter), WNI_CFG_VHT_TX_MCS_MAP, &vht_mcs_map);
Gopichand Nakkala4c705372013-04-24 13:20:33 +05309123 vhtMaxMcs = (eDataRate11ACMaxMcs)(vht_mcs_map & DATA_RATE_11AC_MCS_MASK );
Leo Chang6f8870f2013-03-26 18:11:36 -07009124 if (rate_flags & eHAL_TX_RATE_SGI)
Jeff Johnson295189b2012-06-20 16:38:30 -07009125 {
Leo Chang6f8870f2013-03-26 18:11:36 -07009126 rateFlag |= 1;
Jeff Johnson295189b2012-06-20 16:38:30 -07009127 }
Leo Chang6f8870f2013-03-26 18:11:36 -07009128 if (DATA_RATE_11AC_MAX_MCS_7 == vhtMaxMcs)
Jeff Johnson295189b2012-06-20 16:38:30 -07009129 {
Leo Chang6f8870f2013-03-26 18:11:36 -07009130 maxMCSIdx = 7;
9131 }
9132 else if (DATA_RATE_11AC_MAX_MCS_8 == vhtMaxMcs)
9133 {
9134 maxMCSIdx = 8;
9135 }
9136 else if (DATA_RATE_11AC_MAX_MCS_9 == vhtMaxMcs)
9137 {
Gopichand Nakkala4c705372013-04-24 13:20:33 +05309138 //VHT20 is supporting 0~8
9139 if (rate_flags & eHAL_TX_RATE_VHT20)
9140 maxMCSIdx = 8;
9141 else
9142 maxMCSIdx = 9;
Leo Chang6f8870f2013-03-26 18:11:36 -07009143 }
Gopichand Nakkala4c705372013-04-24 13:20:33 +05309144
9145 if (rate_flags & eHAL_TX_RATE_VHT80)
9146 {
9147 currentRate = supported_vht_mcs_rate[pAdapter->hdd_stats.ClassA_stat.mcs_index].supported_VHT80_rate[rateFlag];
9148 maxRate = supported_vht_mcs_rate[maxMCSIdx].supported_VHT80_rate[rateFlag];
9149 }
9150 else if (rate_flags & eHAL_TX_RATE_VHT40)
9151 {
9152 currentRate = supported_vht_mcs_rate[pAdapter->hdd_stats.ClassA_stat.mcs_index].supported_VHT40_rate[rateFlag];
9153 maxRate = supported_vht_mcs_rate[maxMCSIdx].supported_VHT40_rate[rateFlag];
9154 }
9155 else if (rate_flags & eHAL_TX_RATE_VHT20)
9156 {
9157 currentRate = supported_vht_mcs_rate[pAdapter->hdd_stats.ClassA_stat.mcs_index].supported_VHT20_rate[rateFlag];
9158 maxRate = supported_vht_mcs_rate[maxMCSIdx].supported_VHT20_rate[rateFlag];
9159 }
9160
Leo Chang6f8870f2013-03-26 18:11:36 -07009161 maxSpeedMCS = 1;
9162 if (currentRate > maxRate)
9163 {
9164 maxRate = currentRate;
9165 }
Gopichand Nakkala4c705372013-04-24 13:20:33 +05309166
Leo Chang6f8870f2013-03-26 18:11:36 -07009167 }
9168 else
9169#endif /* WLAN_FEATURE_11AC */
9170 {
9171 if (rate_flags & eHAL_TX_RATE_HT40)
9172 {
9173 rateFlag |= 1;
9174 }
9175 if (rate_flags & eHAL_TX_RATE_SGI)
9176 {
9177 rateFlag |= 2;
9178 }
9179
9180 for (i = 0; i < MCSLeng; i++)
9181 {
9182 temp = sizeof(supported_mcs_rate) / sizeof(supported_mcs_rate[0]);
9183 for (j = 0; j < temp; j++)
9184 {
9185 if (supported_mcs_rate[j].beacon_rate_index == MCSRates[i])
9186 {
9187 currentRate = supported_mcs_rate[j].supported_rate[rateFlag];
9188 break;
9189 }
9190 }
9191 if ((j < temp) && (currentRate > maxRate))
9192 {
9193 maxRate = currentRate;
9194 maxSpeedMCS = 1;
9195 maxMCSIdx = supported_mcs_rate[j].beacon_rate_index;
9196 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009197 }
9198 }
9199 }
9200
Gopichand Nakkala4c705372013-04-24 13:20:33 +05309201 else if (!(rate_flags & eHAL_TX_RATE_LEGACY))
9202 {
9203 maxRate = myRate;
9204 maxSpeedMCS = 1;
9205 maxMCSIdx = pAdapter->hdd_stats.ClassA_stat.mcs_index;
9206 }
9207
Jeff Johnson295189b2012-06-20 16:38:30 -07009208 // make sure we report a value at least as big as our current rate
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -07009209 if (((maxRate < myRate) && (0 == rssidx)) ||
9210 (0 == maxRate))
Jeff Johnson295189b2012-06-20 16:38:30 -07009211 {
9212 maxRate = myRate;
9213 if (rate_flags & eHAL_TX_RATE_LEGACY)
9214 {
9215 maxSpeedMCS = 0;
9216 }
9217 else
9218 {
9219 maxSpeedMCS = 1;
9220 maxMCSIdx = pAdapter->hdd_stats.ClassA_stat.mcs_index;
9221 }
9222 }
9223
Gopichand Nakkala4c705372013-04-24 13:20:33 +05309224 if (rate_flags & eHAL_TX_RATE_LEGACY)
Jeff Johnson295189b2012-06-20 16:38:30 -07009225 {
9226 sinfo->txrate.legacy = maxRate;
9227#ifdef LINKSPEED_DEBUG_ENABLED
9228 pr_info("Reporting legacy rate %d\n", sinfo->txrate.legacy);
9229#endif //LINKSPEED_DEBUG_ENABLED
9230 }
9231 else
9232 {
9233 sinfo->txrate.mcs = maxMCSIdx;
Leo Chang6f8870f2013-03-26 18:11:36 -07009234#ifdef WLAN_FEATURE_11AC
9235 sinfo->txrate.nss = 1;
9236 if (rate_flags & eHAL_TX_RATE_VHT80)
9237 {
9238 sinfo->txrate.flags |= RATE_INFO_FLAGS_VHT_MCS;
Gopichand Nakkala4c705372013-04-24 13:20:33 +05309239 sinfo->txrate.flags |= RATE_INFO_FLAGS_80_MHZ_WIDTH;
Leo Chang6f8870f2013-03-26 18:11:36 -07009240 }
Gopichand Nakkala4c705372013-04-24 13:20:33 +05309241 else if (rate_flags & eHAL_TX_RATE_VHT40)
Leo Chang6f8870f2013-03-26 18:11:36 -07009242 {
Gopichand Nakkala4c705372013-04-24 13:20:33 +05309243 sinfo->txrate.flags |= RATE_INFO_FLAGS_VHT_MCS;
9244 sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
9245 }
9246 else if (rate_flags & eHAL_TX_RATE_VHT20)
9247 {
9248 sinfo->txrate.flags |= RATE_INFO_FLAGS_VHT_MCS;
9249 }
9250#endif /* WLAN_FEATURE_11AC */
9251 if (rate_flags & (eHAL_TX_RATE_HT20 | eHAL_TX_RATE_HT40))
9252 {
9253 sinfo->txrate.flags |= RATE_INFO_FLAGS_MCS;
9254 if (rate_flags & eHAL_TX_RATE_HT40)
9255 {
9256 sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
9257 }
Leo Chang6f8870f2013-03-26 18:11:36 -07009258 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009259 if (rate_flags & eHAL_TX_RATE_SGI)
9260 {
9261 sinfo->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
9262 }
Gopichand Nakkala4c705372013-04-24 13:20:33 +05309263
Jeff Johnson295189b2012-06-20 16:38:30 -07009264#ifdef LINKSPEED_DEBUG_ENABLED
9265 pr_info("Reporting MCS rate %d flags %x\n",
9266 sinfo->txrate.mcs,
9267 sinfo->txrate.flags );
9268#endif //LINKSPEED_DEBUG_ENABLED
9269 }
9270 }
9271 else
9272 {
9273 // report current rate instead of max rate
9274
9275 if (rate_flags & eHAL_TX_RATE_LEGACY)
9276 {
9277 //provide to the UI in units of 100kbps
9278 sinfo->txrate.legacy = myRate;
9279#ifdef LINKSPEED_DEBUG_ENABLED
9280 pr_info("Reporting actual legacy rate %d\n", sinfo->txrate.legacy);
9281#endif //LINKSPEED_DEBUG_ENABLED
9282 }
9283 else
9284 {
9285 //must be MCS
9286 sinfo->txrate.mcs = pAdapter->hdd_stats.ClassA_stat.mcs_index;
Leo Chang6f8870f2013-03-26 18:11:36 -07009287#ifdef WLAN_FEATURE_11AC
9288 sinfo->txrate.nss = 1;
9289 if (rate_flags & eHAL_TX_RATE_VHT80)
9290 {
9291 sinfo->txrate.flags |= RATE_INFO_FLAGS_VHT_MCS;
9292 }
9293 else
9294#endif /* WLAN_FEATURE_11AC */
9295 {
9296 sinfo->txrate.flags |= RATE_INFO_FLAGS_MCS;
9297 }
Jeff Johnson295189b2012-06-20 16:38:30 -07009298 if (rate_flags & eHAL_TX_RATE_SGI)
9299 {
9300 sinfo->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
9301 }
9302 if (rate_flags & eHAL_TX_RATE_HT40)
9303 {
9304 sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
9305 }
Leo Chang6f8870f2013-03-26 18:11:36 -07009306#ifdef WLAN_FEATURE_11AC
9307 else if (rate_flags & eHAL_TX_RATE_VHT80)
9308 {
9309 sinfo->txrate.flags |= RATE_INFO_FLAGS_80_MHZ_WIDTH;
9310 }
9311#endif /* WLAN_FEATURE_11AC */
Jeff Johnson295189b2012-06-20 16:38:30 -07009312#ifdef LINKSPEED_DEBUG_ENABLED
9313 pr_info("Reporting actual MCS rate %d flags %x\n",
9314 sinfo->txrate.mcs,
9315 sinfo->txrate.flags );
9316#endif //LINKSPEED_DEBUG_ENABLED
9317 }
9318 }
9319 sinfo->filled |= STATION_INFO_TX_BITRATE;
9320
Madan Mohan Koyyalamudi4d4d2812012-09-24 14:08:29 -07009321 sinfo->tx_packets =
9322 pAdapter->hdd_stats.summary_stat.tx_frm_cnt[0] +
9323 pAdapter->hdd_stats.summary_stat.tx_frm_cnt[1] +
9324 pAdapter->hdd_stats.summary_stat.tx_frm_cnt[2] +
9325 pAdapter->hdd_stats.summary_stat.tx_frm_cnt[3];
9326
9327 sinfo->tx_retries =
9328 pAdapter->hdd_stats.summary_stat.retry_cnt[0] +
9329 pAdapter->hdd_stats.summary_stat.retry_cnt[1] +
9330 pAdapter->hdd_stats.summary_stat.retry_cnt[2] +
9331 pAdapter->hdd_stats.summary_stat.retry_cnt[3];
9332
9333 sinfo->tx_failed =
9334 pAdapter->hdd_stats.summary_stat.fail_cnt[0] +
9335 pAdapter->hdd_stats.summary_stat.fail_cnt[1] +
9336 pAdapter->hdd_stats.summary_stat.fail_cnt[2] +
9337 pAdapter->hdd_stats.summary_stat.fail_cnt[3];
9338
9339 sinfo->filled |=
9340 STATION_INFO_TX_PACKETS |
9341 STATION_INFO_TX_RETRIES |
9342 STATION_INFO_TX_FAILED;
9343
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05309344 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
9345 TRACE_CODE_HDD_CFG80211_GET_STA,
9346 pAdapter->sessionId, maxRate));
Madan Mohan Koyyalamudi4d4d2812012-09-24 14:08:29 -07009347 EXIT();
9348 return 0;
Jeff Johnson295189b2012-06-20 16:38:30 -07009349}
9350
9351static int wlan_hdd_cfg80211_set_power_mgmt(struct wiphy *wiphy,
Sameer Thalappilc9f26e92013-06-07 10:11:06 -07009352 struct net_device *dev, bool mode, int timeout)
Jeff Johnson295189b2012-06-20 16:38:30 -07009353{
9354 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Gopichand Nakkala20c4c042013-04-19 22:08:55 +05309355 hdd_context_t *pHddCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -07009356 VOS_STATUS vos_status;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309357 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07009358
Jeff Johnsone7245742012-09-05 17:12:55 -07009359 ENTER();
9360
Jeff Johnson295189b2012-06-20 16:38:30 -07009361 if (NULL == pAdapter)
9362 {
Arif Hussain6d2a3322013-11-17 19:50:10 -08009363 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Adapter is NULL", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07009364 return -ENODEV;
9365 }
9366
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05309367 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
9368 TRACE_CODE_HDD_CFG80211_SET_POWER_MGMT,
9369 pAdapter->sessionId, timeout));
9370
Gopichand Nakkala20c4c042013-04-19 22:08:55 +05309371 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309372 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkala20c4c042013-04-19 22:08:55 +05309373
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309374 if (0 != status)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309375 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309376 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
9377 "%s: HDD context is not valid", __func__);
9378 return status;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309379 }
9380
Gopichand Nakkala20c4c042013-04-19 22:08:55 +05309381 if ((DRIVER_POWER_MODE_AUTO == !mode) &&
9382 (TRUE == pHddCtx->hdd_wlan_suspended) &&
9383 (pHddCtx->cfg_ini->fhostArpOffload) &&
9384 (eConnectionState_Associated ==
9385 (WLAN_HDD_GET_STATION_CTX_PTR(pAdapter))->conn_info.connState))
9386 {
Amar Singhald53568e2013-09-26 11:03:45 -07009387
9388 hddLog(VOS_TRACE_LEVEL_INFO,
9389 "offload: in cfg80211_set_power_mgmt, calling arp offload");
Gopichand Nakkalab03e8082013-05-30 18:09:25 +05309390 vos_status = hdd_conf_arp_offload(pAdapter, TRUE);
Gopichand Nakkala20c4c042013-04-19 22:08:55 +05309391 if (!VOS_IS_STATUS_SUCCESS(vos_status))
9392 {
9393 hddLog(VOS_TRACE_LEVEL_INFO,
Arif Hussain6d2a3322013-11-17 19:50:10 -08009394 "%s:Failed to enable ARPOFFLOAD Feature %d",
Gopichand Nakkala20c4c042013-04-19 22:08:55 +05309395 __func__, vos_status);
9396 }
9397 }
9398
Jeff Johnson295189b2012-06-20 16:38:30 -07009399 /**The get power cmd from the supplicant gets updated by the nl only
9400 *on successful execution of the function call
9401 *we are oppositely mapped w.r.t mode in the driver
9402 **/
9403 vos_status = wlan_hdd_enter_bmps(pAdapter, !mode);
9404
Jeff Johnsone7245742012-09-05 17:12:55 -07009405 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -07009406 if (VOS_STATUS_E_FAILURE == vos_status)
9407 {
c_hpothu6ff1c3c2013-10-01 19:01:57 +05309408 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
9409 "%s: failed to enter bmps mode", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07009410 return -EINVAL;
9411 }
9412 return 0;
9413}
9414
9415
9416#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
9417static int wlan_hdd_set_default_mgmt_key(struct wiphy *wiphy,
9418 struct net_device *netdev,
9419 u8 key_index)
9420{
Jeff Johnsone7245742012-09-05 17:12:55 -07009421 ENTER();
Jeff Johnson295189b2012-06-20 16:38:30 -07009422 return 0;
9423}
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309424#endif //LINUX_VERSION_CODE
Jeff Johnson295189b2012-06-20 16:38:30 -07009425
9426#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
9427static int wlan_hdd_set_txq_params(struct wiphy *wiphy,
9428 struct net_device *dev,
9429 struct ieee80211_txq_params *params)
9430{
Jeff Johnsone7245742012-09-05 17:12:55 -07009431 ENTER();
Jeff Johnson295189b2012-06-20 16:38:30 -07009432 return 0;
9433}
9434#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
9435static int wlan_hdd_set_txq_params(struct wiphy *wiphy,
9436 struct ieee80211_txq_params *params)
9437{
Jeff Johnsone7245742012-09-05 17:12:55 -07009438 ENTER();
Jeff Johnson295189b2012-06-20 16:38:30 -07009439 return 0;
9440}
9441#endif //LINUX_VERSION_CODE
9442
9443static int wlan_hdd_cfg80211_del_station(struct wiphy *wiphy,
9444 struct net_device *dev, u8 *mac)
9445{
9446 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309447 hdd_context_t *pHddCtx;
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -08009448 VOS_STATUS vos_status;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309449 int status;
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -08009450 v_U8_t staId;
Jeff Johnson295189b2012-06-20 16:38:30 -07009451
Jeff Johnsone7245742012-09-05 17:12:55 -07009452 ENTER();
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05309453
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309454 if ( NULL == pAdapter )
Jeff Johnson295189b2012-06-20 16:38:30 -07009455 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309456 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid Adapter" ,__func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07009457 return -EINVAL;
9458 }
9459
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05309460 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
9461 TRACE_CODE_HDD_CFG80211_DEL_STA,
9462 pAdapter->sessionId, pAdapter->device_mode));
9463
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309464 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
9465 status = wlan_hdd_validate_context(pHddCtx);
Jeff Johnson295189b2012-06-20 16:38:30 -07009466
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309467 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009468 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309469 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
9470 "%s: HDD context is not valid", __func__);
9471 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009472 }
9473
Jeff Johnson295189b2012-06-20 16:38:30 -07009474 if ( (WLAN_HDD_SOFTAP == pAdapter->device_mode)
Jeff Johnson295189b2012-06-20 16:38:30 -07009475 || (WLAN_HDD_P2P_GO == pAdapter->device_mode)
Jeff Johnson295189b2012-06-20 16:38:30 -07009476 )
9477 {
9478 if( NULL == mac )
9479 {
9480 v_U16_t i;
9481 for(i = 0; i < WLAN_MAX_STA_COUNT; i++)
9482 {
Rajesh Chauhan18488fc2013-08-22 10:15:03 -07009483 if ((pAdapter->aStaInfo[i].isUsed) &&
9484 (!pAdapter->aStaInfo[i].isDeauthInProgress))
Jeff Johnson295189b2012-06-20 16:38:30 -07009485 {
9486 u8 *macAddr = pAdapter->aStaInfo[i].macAddrSTA.bytes;
9487 hddLog(VOS_TRACE_LEVEL_INFO,
Arif Hussain24bafea2013-11-15 15:10:03 -08009488 "%s: Delete STA with MAC::"
9489 MAC_ADDRESS_STR,
9490 __func__, MAC_ADDR_ARRAY(macAddr));
Rajesh Chauhan18488fc2013-08-22 10:15:03 -07009491 vos_status = hdd_softap_sta_deauth(pAdapter, macAddr);
9492 if (VOS_IS_STATUS_SUCCESS(vos_status))
9493 pAdapter->aStaInfo[i].isDeauthInProgress = TRUE;
Jeff Johnson295189b2012-06-20 16:38:30 -07009494 }
9495 }
9496 }
9497 else
9498 {
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -08009499
9500 vos_status = hdd_softap_GetStaId(pAdapter,(v_MACADDR_t *)mac, &staId);
9501 if (!VOS_IS_STATUS_SUCCESS(vos_status))
9502 {
9503 hddLog(VOS_TRACE_LEVEL_INFO,
Arif Hussain24bafea2013-11-15 15:10:03 -08009504 "%s: Skip this DEL STA as this is not used::"
9505 MAC_ADDRESS_STR,
9506 __func__, MAC_ADDR_ARRAY(mac));
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -08009507 return -ENOENT;
9508 }
9509
9510 if( pAdapter->aStaInfo[staId].isDeauthInProgress == TRUE)
9511 {
9512 hddLog(VOS_TRACE_LEVEL_INFO,
Arif Hussain24bafea2013-11-15 15:10:03 -08009513 "%s: Skip this DEL STA as deauth is in progress::"
9514 MAC_ADDRESS_STR,
9515 __func__, MAC_ADDR_ARRAY(mac));
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -08009516 return -ENOENT;
9517 }
9518
9519 pAdapter->aStaInfo[staId].isDeauthInProgress = TRUE;
9520
Jeff Johnson295189b2012-06-20 16:38:30 -07009521 hddLog(VOS_TRACE_LEVEL_INFO,
9522 "%s: Delete STA with MAC::"
Arif Hussain24bafea2013-11-15 15:10:03 -08009523 MAC_ADDRESS_STR,
Jeff Johnson295189b2012-06-20 16:38:30 -07009524 __func__,
Arif Hussain24bafea2013-11-15 15:10:03 -08009525 MAC_ADDR_ARRAY(mac));
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -08009526
9527 vos_status = hdd_softap_sta_deauth(pAdapter, mac);
9528 if (!VOS_IS_STATUS_SUCCESS(vos_status))
9529 {
9530 pAdapter->aStaInfo[staId].isDeauthInProgress = FALSE;
9531 hddLog(VOS_TRACE_LEVEL_INFO,
9532 "%s: STA removal failed for ::"
Arif Hussain24bafea2013-11-15 15:10:03 -08009533 MAC_ADDRESS_STR,
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -08009534 __func__,
Arif Hussain24bafea2013-11-15 15:10:03 -08009535 MAC_ADDR_ARRAY(mac));
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -08009536 return -ENOENT;
9537 }
9538
Jeff Johnson295189b2012-06-20 16:38:30 -07009539 }
9540 }
9541
9542 EXIT();
9543
9544 return 0;
9545}
9546
Hoonki Lee11f7dda2013-02-14 16:55:44 -08009547static int wlan_hdd_cfg80211_add_station(struct wiphy *wiphy,
9548 struct net_device *dev, u8 *mac, struct station_parameters *params)
9549{
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05309550 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Gopichand Nakkalab977a972013-02-18 19:15:09 -08009551 int status = -EPERM;
Hoonki Lee11f7dda2013-02-14 16:55:44 -08009552#ifdef FEATURE_WLAN_TDLS
9553 u32 mask, set;
Hoonki Lee11f7dda2013-02-14 16:55:44 -08009554 ENTER();
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05309555
9556 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
9557 TRACE_CODE_HDD_CFG80211_ADD_STA,
9558 pAdapter->sessionId, params->listen_interval));
Mohit Khanna698ba2a2012-12-04 15:08:18 -08009559 mask = params->sta_flags_mask;
9560
9561 set = params->sta_flags_set;
9562
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07009563#ifdef WLAN_FEATURE_TDLS_DEBUG
9564 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
9565 "%s: mask 0x%x set 0x%x " MAC_ADDRESS_STR,
9566 __func__, mask, set, MAC_ADDR_ARRAY(mac));
9567#endif
Mohit Khanna698ba2a2012-12-04 15:08:18 -08009568
9569 if (mask & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
9570 if (set & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
Gopichand Nakkala681989c2013-03-06 22:27:48 -08009571 status = wlan_hdd_tdls_add_station(wiphy, dev, mac, 0, NULL);
Mohit Khanna698ba2a2012-12-04 15:08:18 -08009572 }
9573 }
9574#endif
Gopichand Nakkalab977a972013-02-18 19:15:09 -08009575 return status;
Jeff Johnson295189b2012-06-20 16:38:30 -07009576}
9577
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009578
9579#ifdef FEATURE_WLAN_LFR
Wilson Yang6507c4e2013-10-01 20:11:19 -07009580
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009581static int wlan_hdd_cfg80211_set_pmksa(struct wiphy *wiphy, struct net_device *dev,
Jeff Johnsond13512a2012-07-17 11:42:19 -07009582 struct cfg80211_pmksa *pmksa)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009583{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309584 tANI_U32 j=0;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009585 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Agarwal Ashish3da95242014-05-21 14:57:17 +05309586 hdd_station_ctx_t *pHddStaCtx;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009587 tHalHandle halHandle;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309588 eHalStatus result;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309589 int status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009590 tANI_U8 BSSIDMatched = 0;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309591 hdd_context_t *pHddCtx;
Jeff Johnson0299d0a2013-10-30 12:37:43 -07009592 hddLog(VOS_TRACE_LEVEL_DEBUG, "%s: set PMKSA for " MAC_ADDRESS_STR,
9593 __func__, MAC_ADDR_ARRAY(pmksa->bssid));
Jeff Johnsone7245742012-09-05 17:12:55 -07009594
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309595 // Validate pAdapter
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309596 if ( NULL == pAdapter )
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009597 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309598 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid Adapter" ,__func__);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009599 return -EINVAL;
9600 }
9601
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309602 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
9603 status = wlan_hdd_validate_context(pHddCtx);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009604
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309605 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009606 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05309607 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
9608 "%s: HDD context is not valid", __func__);
9609 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009610 }
9611
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309612 // Retrieve halHandle
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009613 halHandle = WLAN_HDD_GET_HAL_CTX(pAdapter);
Agarwal Ashish3da95242014-05-21 14:57:17 +05309614 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009615
Agarwal Ashish3da95242014-05-21 14:57:17 +05309616 for (j = 0; j < pHddStaCtx->PMKIDCacheIndex; j++)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009617 {
Agarwal Ashish3da95242014-05-21 14:57:17 +05309618 if (vos_mem_compare(pHddStaCtx->PMKIDCache[j].BSSID,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009619 pmksa->bssid, WNI_CFG_BSSID_LEN))
9620 {
9621 /* BSSID matched previous entry. Overwrite it. */
9622 BSSIDMatched = 1;
Agarwal Ashish3da95242014-05-21 14:57:17 +05309623 vos_mem_copy(pHddStaCtx->PMKIDCache[j].BSSID,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009624 pmksa->bssid, WNI_CFG_BSSID_LEN);
Agarwal Ashish3da95242014-05-21 14:57:17 +05309625 vos_mem_copy(pHddStaCtx->PMKIDCache[j].PMKID,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309626 pmksa->pmkid,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009627 CSR_RSN_PMKID_SIZE);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309628 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: Reusing cache entry %d.",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07009629 __func__, j );
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009630 dump_bssid(pmksa->bssid);
9631 dump_pmkid(halHandle, pmksa->pmkid);
9632 break;
9633 }
9634 }
9635
Madan Mohan Koyyalamudic4b317d2012-10-18 19:43:08 -07009636 /* Check we compared all entries,if then take the first slot now */
Agarwal Ashish3da95242014-05-21 14:57:17 +05309637 if (j == MAX_PMKSAIDS_IN_CACHE) pHddStaCtx->PMKIDCacheIndex=0;
Madan Mohan Koyyalamudic4b317d2012-10-18 19:43:08 -07009638
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009639 if (!BSSIDMatched)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309640 {
9641 // Now, we DON'T have a BSSID match, so take a new entry in the cache.
Agarwal Ashish3da95242014-05-21 14:57:17 +05309642 vos_mem_copy(pHddStaCtx->PMKIDCache[pHddStaCtx->PMKIDCacheIndex].BSSID,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309643 pmksa->bssid, ETHER_ADDR_LEN);
Agarwal Ashish3da95242014-05-21 14:57:17 +05309644 vos_mem_copy(pHddStaCtx->PMKIDCache[pHddStaCtx->PMKIDCacheIndex].PMKID,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309645 pmksa->pmkid,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009646 CSR_RSN_PMKID_SIZE);
Agarwal Ashish3da95242014-05-21 14:57:17 +05309647 hddLog(VOS_TRACE_LEVEL_DEBUG, "%s: Adding a new cache entry %d.",
9648 __func__, pHddStaCtx->PMKIDCacheIndex );
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009649 dump_bssid(pmksa->bssid);
9650 dump_pmkid(halHandle, pmksa->pmkid);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309651 // Increment the HDD Local Cache index
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009652 // The "i=0" doesn't work for the call to sme_RoamSetPMKIDCache() - LFR FIXME
Agarwal Ashish3da95242014-05-21 14:57:17 +05309653 if (pHddStaCtx->PMKIDCacheIndex <= (MAX_PMKSAIDS_IN_CACHE-1))
9654 pHddStaCtx->PMKIDCacheIndex++;
9655 else
9656 pHddStaCtx->PMKIDCacheIndex = 0;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009657 }
9658
9659
9660 // Calling csrRoamSetPMKIDCache to configure the PMKIDs into the cache
Agarwal Ashish3da95242014-05-21 14:57:17 +05309661 hddLog(VOS_TRACE_LEVEL_DEBUG, "%s: Calling csrRoamSetPMKIDCache with %d cache entries.",
9662 __func__, pHddStaCtx->PMKIDCacheIndex );
9663
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009664 // Finally set the PMKSA ID Cache in CSR
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309665 result = sme_RoamSetPMKIDCache(halHandle,pAdapter->sessionId,
Agarwal Ashish3da95242014-05-21 14:57:17 +05309666 pHddStaCtx->PMKIDCache,
9667 pHddStaCtx->PMKIDCacheIndex);
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05309668 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
9669 TRACE_CODE_HDD_CFG80211_SET_PMKSA,
9670 pAdapter->sessionId, result));
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009671 return 0;
9672}
9673
9674
Wilson Yang6507c4e2013-10-01 20:11:19 -07009675
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009676static int wlan_hdd_cfg80211_del_pmksa(struct wiphy *wiphy, struct net_device *dev,
Wilson Yang6507c4e2013-10-01 20:11:19 -07009677 struct cfg80211_pmksa *pmksa)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009678{
Wilson Yang6507c4e2013-10-01 20:11:19 -07009679 tANI_U32 j=0;
9680 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Agarwal Ashish3da95242014-05-21 14:57:17 +05309681 hdd_station_ctx_t *pHddStaCtx;
Wilson Yang6507c4e2013-10-01 20:11:19 -07009682 tHalHandle halHandle;
Wilson Yang6507c4e2013-10-01 20:11:19 -07009683 tANI_U8 BSSIDMatched = 0;
Wilson Yang6507c4e2013-10-01 20:11:19 -07009684 hdd_context_t *pHddCtx;
Wilson Yangef657d32014-01-15 19:19:23 -08009685 int status = 0;
Wilson Yang6507c4e2013-10-01 20:11:19 -07009686
Jeff Johnson0299d0a2013-10-30 12:37:43 -07009687 hddLog(VOS_TRACE_LEVEL_DEBUG, "%s: deleting PMKSA for " MAC_ADDRESS_STR,
9688 __func__, MAC_ADDR_ARRAY(pmksa->bssid));
Wilson Yang6507c4e2013-10-01 20:11:19 -07009689
9690 /* Validate pAdapter */
9691 if (NULL == pAdapter)
9692 {
9693 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid Adapter" ,__func__);
9694 return -EINVAL;
9695 }
9696
9697 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
9698 status = wlan_hdd_validate_context(pHddCtx);
9699
9700 if (0 != status)
9701 {
9702 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
9703 "%s: HDD context is not valid", __func__);
9704 return status;
9705 }
9706
9707 /*Retrieve halHandle*/
9708 halHandle = WLAN_HDD_GET_HAL_CTX(pAdapter);
Agarwal Ashish3da95242014-05-21 14:57:17 +05309709 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Wilson Yang6507c4e2013-10-01 20:11:19 -07009710
9711 /*in case index is 0,no entry to delete*/
Agarwal Ashish3da95242014-05-21 14:57:17 +05309712 if (0 == pHddStaCtx->PMKIDCacheIndex)
Wilson Yang6507c4e2013-10-01 20:11:19 -07009713 {
Agarwal Ashish3da95242014-05-21 14:57:17 +05309714 hddLog(VOS_TRACE_LEVEL_INFO, FL("No entries to flush"));
9715 return 0;
Wilson Yang6507c4e2013-10-01 20:11:19 -07009716 }
9717
9718 /*find the matching PMKSA entry from j=0 to (index-1),
9719 * and delete the matched one
9720 */
Agarwal Ashish3da95242014-05-21 14:57:17 +05309721 for (j = 0; j < pHddStaCtx->PMKIDCacheIndex; j++)
Wilson Yang6507c4e2013-10-01 20:11:19 -07009722 {
Agarwal Ashish3da95242014-05-21 14:57:17 +05309723 if (vos_mem_compare(pHddStaCtx->PMKIDCache[j].BSSID,
Wilson Yang6507c4e2013-10-01 20:11:19 -07009724 pmksa->bssid,
9725 WNI_CFG_BSSID_LEN))
9726 {
9727 /* BSSID matched entry */
9728 BSSIDMatched = 1;
Agarwal Ashish3da95242014-05-21 14:57:17 +05309729 if (j < pHddStaCtx->PMKIDCacheIndex-1)
Wilson Yang6507c4e2013-10-01 20:11:19 -07009730 {
9731 /*replace the matching entry with the last entry in HDD local cache*/
Agarwal Ashish3da95242014-05-21 14:57:17 +05309732 vos_mem_copy(pHddStaCtx->PMKIDCache[j].BSSID,
9733 pHddStaCtx->PMKIDCache[pHddStaCtx->PMKIDCacheIndex-1].BSSID,
9734 VOS_MAC_ADDR_SIZE);
9735 vos_mem_copy(pHddStaCtx->PMKIDCache[j].PMKID,
9736 pHddStaCtx->PMKIDCache[pHddStaCtx->PMKIDCacheIndex-1].PMKID,
9737 CSR_RSN_PMKID_SIZE);
9738 }
Wilson Yang6507c4e2013-10-01 20:11:19 -07009739
9740 /*clear the last entry in HDD cache ---[index-1]*/
Agarwal Ashish3da95242014-05-21 14:57:17 +05309741 vos_mem_zero(pHddStaCtx->PMKIDCache[pHddStaCtx->PMKIDCacheIndex-1].BSSID,
9742 VOS_MAC_ADDR_SIZE);
9743 vos_mem_zero(pHddStaCtx->PMKIDCache[pHddStaCtx->PMKIDCacheIndex-1].PMKID,
9744 CSR_RSN_PMKID_SIZE);
Wilson Yang6507c4e2013-10-01 20:11:19 -07009745 /*reduce the PMKID array index*/
Agarwal Ashish3da95242014-05-21 14:57:17 +05309746 pHddStaCtx->PMKIDCacheIndex--;
Wilson Yang6507c4e2013-10-01 20:11:19 -07009747 /*delete the last PMKID cache in CSR*/
Wilson Yangef657d32014-01-15 19:19:23 -08009748 if (eHAL_STATUS_SUCCESS !=
9749 sme_RoamDelPMKIDfromCache(halHandle, pAdapter->sessionId, pmksa->bssid))
Wilson Yang6507c4e2013-10-01 20:11:19 -07009750 {
9751 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: cannot delete PMKSA %d CONTENT.",
Agarwal Ashish3da95242014-05-21 14:57:17 +05309752 __func__, pHddStaCtx->PMKIDCacheIndex);
Wilson Yangef657d32014-01-15 19:19:23 -08009753 status = -EINVAL;
Wilson Yang6507c4e2013-10-01 20:11:19 -07009754 }
9755
9756 dump_bssid(pmksa->bssid);
9757 dump_pmkid(halHandle,pmksa->pmkid);
9758
9759 break;
9760 }
9761 }
9762
9763 /* we compare all entries,but cannot find matching entry */
9764 if (j == MAX_PMKSAIDS_IN_CACHE && !BSSIDMatched)
9765 {
Jeff Johnson0299d0a2013-10-30 12:37:43 -07009766 hddLog(VOS_TRACE_LEVEL_FATAL,
9767 "%s: No such PMKSA entry existed " MAC_ADDRESS_STR,
9768 __func__, MAC_ADDR_ARRAY(pmksa->bssid));
Wilson Yang6507c4e2013-10-01 20:11:19 -07009769 dump_bssid(pmksa->bssid);
9770 dump_pmkid(halHandle, pmksa->pmkid);
9771 return -EINVAL;
9772 }
Wilson Yangef657d32014-01-15 19:19:23 -08009773 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009774}
9775
Wilson Yang6507c4e2013-10-01 20:11:19 -07009776
9777
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009778static int wlan_hdd_cfg80211_flush_pmksa(struct wiphy *wiphy, struct net_device *dev)
9779{
Wilson Yang6507c4e2013-10-01 20:11:19 -07009780 tANI_U32 j=0;
9781 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Agarwal Ashish3da95242014-05-21 14:57:17 +05309782 hdd_station_ctx_t *pHddStaCtx;
Wilson Yang6507c4e2013-10-01 20:11:19 -07009783 tHalHandle halHandle;
9784 hdd_context_t *pHddCtx;
9785 tANI_U8 *pBSSId;
Wilson Yangef657d32014-01-15 19:19:23 -08009786 int status = 0;
Wilson Yang6507c4e2013-10-01 20:11:19 -07009787
9788 hddLog(VOS_TRACE_LEVEL_DEBUG, "%s: flushing PMKSA ",__func__);
9789
9790 /* Validate pAdapter */
9791 if (NULL == pAdapter)
9792 {
9793 hddLog(VOS_TRACE_LEVEL_ERROR,
9794 "%s: Invalid Adapter" ,__func__);
9795 return -EINVAL;
9796 }
9797
9798 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
9799 status = wlan_hdd_validate_context(pHddCtx);
9800
9801 if (0 != status)
9802 {
9803 hddLog(VOS_TRACE_LEVEL_ERROR,
9804 "%s: HDD context is not valid", __func__);
9805 return status;
9806 }
9807
9808 /*Retrieve halHandle*/
9809 halHandle = WLAN_HDD_GET_HAL_CTX(pAdapter);
Agarwal Ashish3da95242014-05-21 14:57:17 +05309810 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Wilson Yang6507c4e2013-10-01 20:11:19 -07009811
9812 /*in case index is 0,no entry to delete*/
Agarwal Ashish3da95242014-05-21 14:57:17 +05309813 if (0 == pHddStaCtx->PMKIDCacheIndex)
Wilson Yang6507c4e2013-10-01 20:11:19 -07009814 {
Vinay Krishna Erannacbf75f42014-02-26 17:35:20 +05309815 hddLog(VOS_TRACE_LEVEL_ERROR, FL("No entries to flush"));
Agarwal Ashish3da95242014-05-21 14:57:17 +05309816 return 0;
Wilson Yang6507c4e2013-10-01 20:11:19 -07009817 }
9818
9819 /*delete all the PMKSA one by one */
Agarwal Ashish3da95242014-05-21 14:57:17 +05309820 for (j = 0; j < pHddStaCtx->PMKIDCacheIndex; j++)
Wilson Yang6507c4e2013-10-01 20:11:19 -07009821 {
Agarwal Ashish3da95242014-05-21 14:57:17 +05309822 pBSSId =(tANI_U8 *)(pHddStaCtx->PMKIDCache[j].BSSID);
Wilson Yang6507c4e2013-10-01 20:11:19 -07009823 /*delete the PMKID in CSR*/
Wilson Yangef657d32014-01-15 19:19:23 -08009824 if (eHAL_STATUS_SUCCESS !=
9825 sme_RoamDelPMKIDfromCache(halHandle, pAdapter->sessionId, pBSSId))
Wilson Yang6507c4e2013-10-01 20:11:19 -07009826 {
9827 hddLog(VOS_TRACE_LEVEL_ERROR ,"%s cannot flush PMKIDCache %d.",
9828 __func__,j);
Wilson Yangef657d32014-01-15 19:19:23 -08009829 status = -EINVAL;
Wilson Yang6507c4e2013-10-01 20:11:19 -07009830 }
Kiet Lam8d21d5b2013-10-31 17:18:29 +05309831 /*clear the entry in HDD cache 0--index-1 */
Agarwal Ashish3da95242014-05-21 14:57:17 +05309832 vos_mem_zero(pHddStaCtx->PMKIDCache[j].BSSID, VOS_MAC_ADDR_SIZE);
9833 vos_mem_zero(pHddStaCtx->PMKIDCache[j].PMKID, CSR_RSN_PMKID_SIZE);
9834 }
Wilson Yang6507c4e2013-10-01 20:11:19 -07009835
Agarwal Ashish3da95242014-05-21 14:57:17 +05309836 pHddStaCtx->PMKIDCacheIndex = 0;
Wilson Yangef657d32014-01-15 19:19:23 -08009837 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009838}
9839#endif
9840
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07009841#if defined(WLAN_FEATURE_VOWIFI_11R) && defined(KERNEL_SUPPORT_11R_CFG80211)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05309842static int wlan_hdd_cfg80211_update_ft_ies(struct wiphy *wiphy,
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07009843 struct net_device *dev, struct cfg80211_update_ft_ies_params *ftie)
9844{
9845 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
9846 hdd_station_ctx_t *pHddStaCtx;
9847
9848 if (NULL == pAdapter)
9849 {
Arif Hussain6d2a3322013-11-17 19:50:10 -08009850 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Adapter is NULL", __func__);
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07009851 return -ENODEV;
9852 }
9853
9854 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
9855
Sushant Kaushik4b7cb302014-01-06 17:45:01 +05309856 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
9857 TRACE_CODE_HDD_CFG80211_UPDATE_FT_IES,
9858 pAdapter->sessionId, pHddStaCtx->conn_info.connState));
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07009859 // Added for debug on reception of Re-assoc Req.
9860 if (eConnectionState_Associated != pHddStaCtx->conn_info.connState)
9861 {
Arif Hussain6d2a3322013-11-17 19:50:10 -08009862 hddLog(LOGE, FL("Called with Ie of length = %zu when not associated"),
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07009863 ftie->ie_len);
Arif Hussain6d2a3322013-11-17 19:50:10 -08009864 hddLog(LOGE, FL("Should be Re-assoc Req IEs"));
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07009865 }
9866
9867#ifdef WLAN_FEATURE_VOWIFI_11R_DEBUG
Arif Hussain6d2a3322013-11-17 19:50:10 -08009868 hddLog(LOGE, FL("%s called with Ie of length = %zu"), __func__,
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07009869 ftie->ie_len);
9870#endif
9871
9872 // Pass the received FT IEs to SME
Gopichand Nakkala356fb102013-03-06 12:34:04 +05309873 sme_SetFTIEs( WLAN_HDD_GET_HAL_CTX(pAdapter), pAdapter->sessionId,
9874 (const u8 *)ftie->ie,
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07009875 ftie->ie_len);
9876 return 0;
9877}
9878#endif
Jeff Johnson04dd8a82012-06-29 20:41:40 -07009879
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05309880#ifdef FEATURE_WLAN_SCAN_PNO
9881
9882void hdd_cfg80211_sched_scan_done_callback(void *callbackContext,
9883 tSirPrefNetworkFoundInd *pPrefNetworkFoundInd)
9884{
9885 int ret;
9886 hdd_adapter_t* pAdapter = (hdd_adapter_t*)callbackContext;
9887 hdd_context_t *pHddCtx;
9888
Nirav Shah80830bf2013-12-31 16:35:12 +05309889 ENTER();
9890
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05309891 if (NULL == pAdapter)
9892 {
Agarwal Ashish971c2882013-10-30 20:11:12 +05309893 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05309894 "%s: HDD adapter is Null", __func__);
9895 return ;
9896 }
9897
9898 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
9899 if (NULL == pHddCtx)
9900 {
9901 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
9902 "%s: HDD context is Null!!!", __func__);
9903 return ;
9904 }
9905
Kamath Vinayak4000c9a2013-08-23 14:24:27 +05309906 spin_lock(&pHddCtx->schedScan_lock);
9907 if (TRUE == pHddCtx->isWiphySuspended)
9908 {
9909 pHddCtx->isSchedScanUpdatePending = TRUE;
9910 spin_unlock(&pHddCtx->schedScan_lock);
9911 hddLog(VOS_TRACE_LEVEL_INFO,
9912 "%s: Update cfg80211 scan database after it resume", __func__);
9913 return ;
9914 }
9915 spin_unlock(&pHddCtx->schedScan_lock);
9916
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05309917 ret = wlan_hdd_cfg80211_update_bss(pHddCtx->wiphy, pAdapter);
9918
9919 if (0 > ret)
9920 hddLog(VOS_TRACE_LEVEL_INFO, "%s: NO SCAN result", __func__);
9921
9922 cfg80211_sched_scan_results(pHddCtx->wiphy);
Kamath Vinayak4000c9a2013-08-23 14:24:27 +05309923 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
9924 "%s: cfg80211 scan result database updated", __func__);
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05309925}
9926
9927/*
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +05309928 * FUNCTION: wlan_hdd_is_pno_allowed
Vinay Krishna Erannacbf75f42014-02-26 17:35:20 +05309929 * Disallow pno if any session is active
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +05309930 */
9931static eHalStatus wlan_hdd_is_pno_allowed(hdd_adapter_t *pAdapter)
9932{
9933 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
9934 hdd_adapter_t *pTempAdapter = NULL;
Vinay Krishna Eranna23ffd182013-12-26 19:16:55 +05309935 hdd_station_ctx_t *pStaCtx;
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +05309936 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
9937 int status = 0;
9938 status = hdd_get_front_adapter(pHddCtx, &pAdapterNode);
9939
Vinay Krishna Erannacbf75f42014-02-26 17:35:20 +05309940 /* The current firmware design does not allow PNO during any
9941 * active sessions. Hence, determine the active sessions
9942 * and return a failure.
9943 */
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +05309944 while ((NULL != pAdapterNode) && (VOS_STATUS_SUCCESS == status))
9945 {
9946 pTempAdapter = pAdapterNode->pAdapter;
Vinay Krishna Eranna23ffd182013-12-26 19:16:55 +05309947 pStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pTempAdapter);
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +05309948
Vinay Krishna Eranna23ffd182013-12-26 19:16:55 +05309949 if (((WLAN_HDD_INFRA_STATION == pTempAdapter->device_mode)
9950 && (eConnectionState_NotConnected != pStaCtx->conn_info.connState))
9951 || (WLAN_HDD_P2P_CLIENT == pTempAdapter->device_mode)
9952 || (WLAN_HDD_P2P_GO == pTempAdapter->device_mode)
9953 || (WLAN_HDD_SOFTAP == pTempAdapter->device_mode)
9954 )
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +05309955 {
Vinay Krishna Eranna23ffd182013-12-26 19:16:55 +05309956 return eHAL_STATUS_FAILURE;
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +05309957 }
9958 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
9959 pAdapterNode = pNext;
9960 }
Vinay Krishna Eranna23ffd182013-12-26 19:16:55 +05309961 return eHAL_STATUS_SUCCESS;
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +05309962}
9963
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +05309964void hdd_cfg80211_sched_scan_start_status_cb(void *callbackContext, VOS_STATUS status)
9965{
9966 hdd_adapter_t *pAdapter = callbackContext;
9967 hdd_context_t *pHddCtx;
9968
9969 if ((NULL == pAdapter) || (WLAN_HDD_ADAPTER_MAGIC != pAdapter->magic))
9970 {
9971 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
9972 FL("Invalid adapter or adapter has invalid magic"));
9973 return;
9974 }
9975
9976 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
9977 if (0 != wlan_hdd_validate_context(pHddCtx))
9978 {
9979 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
9980 FL("HDD context is not valid"));
9981 return;
9982 }
9983
9984 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
9985 FL("PNO enable response status = %d"), status);
9986
9987 pAdapter->pno_req_status = (status == VOS_STATUS_SUCCESS) ? 0 : -EBUSY;
9988 complete(&pAdapter->pno_comp_var);
9989}
9990
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +05309991/*
Mahesh A Saptasagar6cc38562014-05-23 21:22:17 +05309992 * FUNCTION: __wlan_hdd_cfg80211_sched_scan_start
9993 * Function to enable PNO
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05309994 */
Mahesh A Saptasagar6cc38562014-05-23 21:22:17 +05309995static int __wlan_hdd_cfg80211_sched_scan_start(struct wiphy *wiphy,
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05309996 struct net_device *dev, struct cfg80211_sched_scan_request *request)
9997{
9998 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
9999 tpSirPNOScanReq pPnoRequest = NULL;
10000 hdd_context_t *pHddCtx;
10001 tHalHandle hHal;
Madan Mohan Koyyalamudi1d16f462013-08-27 16:25:34 +053010002 v_U32_t i, indx, num_ch, tempInterval;
Sushant Kaushikd62d9782014-02-19 15:39:40 +053010003 u8 valid_ch[WNI_CFG_VALID_CHANNEL_LIST_LEN] = {0};
10004 u8 channels_allowed[WNI_CFG_VALID_CHANNEL_LIST_LEN] = {0};
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010005 v_U32_t num_channels_allowed = WNI_CFG_VALID_CHANNEL_LIST_LEN;
10006 eHalStatus status = eHAL_STATUS_FAILURE;
Kamath Vinayakba5313f2013-08-22 15:52:39 +053010007 int ret = 0;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010008
10009 if (NULL == pAdapter)
10010 {
10011 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
10012 "%s: HDD adapter is Null", __func__);
10013 return -ENODEV;
10014 }
10015
10016 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053010017 ret = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010018
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053010019 if (0 != ret)
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010020 {
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +053010021 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10022 "%s: HDD context is not valid", __func__);
Kamath Vinayakba5313f2013-08-22 15:52:39 +053010023 return -EINVAL;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010024 }
10025
10026 hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
10027 if (NULL == hHal)
10028 {
10029 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10030 "%s: HAL context is Null!!!", __func__);
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053010031 return -EINVAL;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010032 }
Vinay Krishna Eranna23ffd182013-12-26 19:16:55 +053010033
Mahesh A Saptasagar2395ee62014-05-21 19:12:21 +053010034 ret = wlan_hdd_scan_abort(pAdapter);
10035 if (ret <= 0)
10036 {
10037 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10038 "%s: aborting the existing scan is unsuccessfull", __func__);
10039 return -EBUSY;
10040 }
10041
Vinay Krishna Eranna23ffd182013-12-26 19:16:55 +053010042 if (eHAL_STATUS_SUCCESS != wlan_hdd_is_pno_allowed(pAdapter))
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +053010043 {
Vinay Krishna Erannacbf75f42014-02-26 17:35:20 +053010044 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_WARN,
Vinay Krishna Eranna23ffd182013-12-26 19:16:55 +053010045 FL("Cannot handle sched_scan"));
Mahesh A Saptasagar0f7b0372013-11-28 23:23:07 +053010046 return -EBUSY;
10047 }
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010048
c_hpothu37f21312014-04-09 21:49:54 +053010049 if (TRUE == pHddCtx->isPnoEnable)
10050 {
10051 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_WARN,
10052 FL("already PNO is enabled"));
10053 return -EBUSY;
10054 }
10055 pHddCtx->isPnoEnable = TRUE;
10056
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010057 pPnoRequest = (tpSirPNOScanReq) vos_mem_malloc(sizeof (tSirPNOScanReq));
10058 if (NULL == pPnoRequest)
10059 {
10060 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
10061 "%s: vos_mem_malloc failed", __func__);
c_hpothu37f21312014-04-09 21:49:54 +053010062 pHddCtx->isPnoEnable = FALSE;
Kamath Vinayakba5313f2013-08-22 15:52:39 +053010063 return -ENOMEM;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010064 }
10065
Madan Mohan Koyyalamudic3f04352013-09-26 19:21:48 +053010066 memset(pPnoRequest, 0, sizeof (tSirPNOScanReq));
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010067 pPnoRequest->enable = 1; /*Enable PNO */
10068 pPnoRequest->ucNetworksCount = request->n_match_sets;
10069
10070 if (( !pPnoRequest->ucNetworksCount ) ||
10071 ( pPnoRequest->ucNetworksCount > SIR_PNO_MAX_SUPP_NETWORKS ))
10072 {
10073 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Sushant Kaushik1e406c32014-05-09 15:57:52 +053010074 "%s: Network input is not correct %d Max Network supported is %d",
10075 __func__, pPnoRequest->ucNetworksCount,
10076 SIR_PNO_MAX_SUPP_NETWORKS);
Kamath Vinayakba5313f2013-08-22 15:52:39 +053010077 ret = -EINVAL;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010078 goto error;
10079 }
10080
10081 if ( SIR_PNO_MAX_NETW_CHANNELS_EX < request->n_channels )
10082 {
10083 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Nirav Shah80830bf2013-12-31 16:35:12 +053010084 "%s: Incorrect number of channels %d",
10085 __func__, request->n_channels);
Kamath Vinayakba5313f2013-08-22 15:52:39 +053010086 ret = -EINVAL;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010087 goto error;
10088 }
10089
10090 /* Framework provides one set of channels(all)
10091 * common for all saved profile */
10092 if (0 != ccmCfgGetStr(hHal, WNI_CFG_VALID_CHANNEL_LIST,
10093 channels_allowed, &num_channels_allowed))
10094 {
10095 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10096 "%s: failed to get valid channel list", __func__);
Kamath Vinayakba5313f2013-08-22 15:52:39 +053010097 ret = -EINVAL;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010098 goto error;
10099 }
10100 /* Checking each channel against allowed channel list */
10101 num_ch = 0;
Nirav Shah80830bf2013-12-31 16:35:12 +053010102 if (request->n_channels)
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010103 {
Nirav Shah80830bf2013-12-31 16:35:12 +053010104 char chList [(request->n_channels*5)+1];
10105 int len;
10106 for (i = 0, len = 0; i < request->n_channels; i++)
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010107 {
Nirav Shah80830bf2013-12-31 16:35:12 +053010108 for (indx = 0; indx < num_channels_allowed; indx++)
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010109 {
Nirav Shah80830bf2013-12-31 16:35:12 +053010110 if (request->channels[i]->hw_value == channels_allowed[indx])
10111 {
10112 valid_ch[num_ch++] = request->channels[i]->hw_value;
10113 len += snprintf(chList+len, 5, "%d ",
10114 request->channels[i]->hw_value);
10115 break ;
10116 }
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010117 }
10118 }
Nirav Shah80830bf2013-12-31 16:35:12 +053010119 hddLog(VOS_TRACE_LEVEL_INFO,"Channel-List: %s ", chList);
10120 }
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010121
10122 /* Filling per profile params */
10123 for (i = 0; i < pPnoRequest->ucNetworksCount; i++)
10124 {
10125 pPnoRequest->aNetworks[i].ssId.length =
10126 request->match_sets[i].ssid.ssid_len;
10127
10128 if (( 0 == pPnoRequest->aNetworks[i].ssId.length ) ||
10129 ( pPnoRequest->aNetworks[i].ssId.length > 32 ) )
10130 {
10131 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Nirav Shah80830bf2013-12-31 16:35:12 +053010132 "%s: SSID Len %d is not correct for network %d",
10133 __func__, pPnoRequest->aNetworks[i].ssId.length, i);
Kamath Vinayakba5313f2013-08-22 15:52:39 +053010134 ret = -EINVAL;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010135 goto error;
10136 }
10137
10138 memcpy(pPnoRequest->aNetworks[i].ssId.ssId,
10139 request->match_sets[i].ssid.ssid,
10140 request->match_sets[i].ssid.ssid_len);
Sushant Kaushik1e406c32014-05-09 15:57:52 +053010141 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
10142 "%s: SSID of network %d is %s ", __func__,
10143 i, pPnoRequest->aNetworks[i].ssId.ssId);
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010144 pPnoRequest->aNetworks[i].authentication = 0; /*eAUTH_TYPE_ANY*/
10145 pPnoRequest->aNetworks[i].encryption = 0; /*eED_ANY*/
10146 pPnoRequest->aNetworks[i].bcastNetwType = 0; /*eBCAST_UNKNOWN*/
10147
10148 /*Copying list of valid channel into request */
10149 memcpy(pPnoRequest->aNetworks[i].aChannels, valid_ch, num_ch);
10150 pPnoRequest->aNetworks[i].ucChannelCount = num_ch;
10151
10152 pPnoRequest->aNetworks[i].rssiThreshold = 0; //Default value
10153 }
10154
Madan Mohan Koyyalamudia7765d52013-09-18 16:49:56 +053010155 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Jeff Johnson59a121e2013-11-30 09:46:08 -080010156 "request->ie_len = %zu", request->ie_len);
Madan Mohan Koyyalamudia7765d52013-09-18 16:49:56 +053010157 if ((0 < request->ie_len) && (NULL != request->ie))
10158 {
10159 pPnoRequest->us24GProbeTemplateLen = request->ie_len;
10160 memcpy(&pPnoRequest->p24GProbeTemplate, request->ie,
10161 pPnoRequest->us24GProbeTemplateLen);
10162
10163 pPnoRequest->us5GProbeTemplateLen = request->ie_len;
10164 memcpy(&pPnoRequest->p5GProbeTemplate, request->ie,
10165 pPnoRequest->us5GProbeTemplateLen);
10166 }
10167
Madan Mohan Koyyalamudi1d16f462013-08-27 16:25:34 +053010168 /* Driver gets only one time interval which is hardcoded in
10169 * supplicant for 10000ms. Taking power consumption into account 6 timers
10170 * will be used, Timervalue is increased exponentially i.e 10,20,40,
10171 * 80,160,320 secs. And number of scan cycle for each timer
10172 * is configurable through INI param gPNOScanTimerRepeatValue.
10173 * If it is set to 0 only one timer will be used and PNO scan cycle
10174 * will be repeated after each interval specified by supplicant
10175 * till PNO is disabled.
10176 */
10177 if (0 == pHddCtx->cfg_ini->configPNOScanTimerRepeatValue)
10178 pPnoRequest->scanTimers.ucScanTimersCount = HDD_PNO_SCAN_TIMERS_SET_ONE;
10179 else
10180 pPnoRequest->scanTimers.ucScanTimersCount =
10181 HDD_PNO_SCAN_TIMERS_SET_MULTIPLE;
10182
10183 tempInterval = (request->interval)/1000;
10184 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
10185 "Base scan interval = %d PNOScanTimerRepeatValue = %d",
10186 tempInterval, pHddCtx->cfg_ini->configPNOScanTimerRepeatValue);
10187 for ( i = 0; i < pPnoRequest->scanTimers.ucScanTimersCount; i++)
10188 {
10189 pPnoRequest->scanTimers.aTimerValues[i].uTimerRepeat =
10190 pHddCtx->cfg_ini->configPNOScanTimerRepeatValue;
10191 pPnoRequest->scanTimers.aTimerValues[i].uTimerValue = tempInterval;
10192 tempInterval *= 2;
10193 }
10194 //Repeat last timer until pno disabled.
10195 pPnoRequest->scanTimers.aTimerValues[i-1].uTimerRepeat = 0;
10196
Madan Mohan Koyyalamudid206c7b2013-09-26 22:54:51 +053010197 pPnoRequest->modePNO = SIR_PNO_MODE_IMMEDIATE;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010198
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053010199 INIT_COMPLETION(pAdapter->pno_comp_var);
10200 pPnoRequest->statusCallback = hdd_cfg80211_sched_scan_start_status_cb;
10201 pPnoRequest->callbackContext = pAdapter;
10202 pAdapter->pno_req_status = 0;
10203
Nirav Shah80830bf2013-12-31 16:35:12 +053010204 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
10205 "SessionId %d, enable %d, modePNO %d, ucScanTimersCount %d",
10206 pAdapter->sessionId, pPnoRequest->enable, pPnoRequest->modePNO,
10207 pPnoRequest->scanTimers.ucScanTimersCount);
10208
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010209 status = sme_SetPreferredNetworkList(WLAN_HDD_GET_HAL_CTX(pAdapter),
10210 pPnoRequest, pAdapter->sessionId,
10211 hdd_cfg80211_sched_scan_done_callback, pAdapter);
10212 if (eHAL_STATUS_SUCCESS != status)
10213 {
10214 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Nirav Shah80830bf2013-12-31 16:35:12 +053010215 "%s: Failed to enable PNO", __func__);
Kamath Vinayakba5313f2013-08-22 15:52:39 +053010216 ret = -EINVAL;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010217 goto error;
10218 }
10219
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053010220 ret = wait_for_completion_timeout(
10221 &pAdapter->pno_comp_var,
10222 msecs_to_jiffies(WLAN_WAIT_TIME_PNO));
10223 if (0 >= ret)
10224 {
10225 // Did not receive the response for PNO enable in time.
10226 // Assuming the PNO enable was success.
10227 // Returning error from here, because we timeout, results
10228 // in side effect of Wifi (Wifi Setting) not to work.
10229 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10230 FL("Timed out waiting for PNO to be Enabled"));
10231 ret = 0;
10232 goto error;
10233 }
10234
10235 ret = pAdapter->pno_req_status;
c_hpothu37f21312014-04-09 21:49:54 +053010236 return ret;
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053010237
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010238error:
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053010239 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
10240 FL("PNO scanRequest offloaded ret = %d"), ret);
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010241 vos_mem_free(pPnoRequest);
c_hpothu37f21312014-04-09 21:49:54 +053010242 pHddCtx->isPnoEnable = FALSE;
Kamath Vinayakba5313f2013-08-22 15:52:39 +053010243 return ret;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010244}
10245
10246/*
Mahesh A Saptasagar6cc38562014-05-23 21:22:17 +053010247 * FUNCTION: wlan_hdd_cfg80211_sched_scan_start
10248 * NL interface to enable PNO
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010249 */
Mahesh A Saptasagar6cc38562014-05-23 21:22:17 +053010250static int wlan_hdd_cfg80211_sched_scan_start(struct wiphy *wiphy,
10251 struct net_device *dev, struct cfg80211_sched_scan_request *request)
10252{
10253 int ret;
10254
10255 vos_ssr_protect(__func__);
10256 ret = __wlan_hdd_cfg80211_sched_scan_start(wiphy, dev, request);
10257 vos_ssr_unprotect(__func__);
10258
10259 return ret;
10260}
10261
10262/*
10263 * FUNCTION: __wlan_hdd_cfg80211_sched_scan_stop
10264 * Function to disable PNO
10265 */
10266static int __wlan_hdd_cfg80211_sched_scan_stop(struct wiphy *wiphy,
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010267 struct net_device *dev)
10268{
10269 eHalStatus status = eHAL_STATUS_FAILURE;
10270 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
10271 hdd_context_t *pHddCtx;
10272 tHalHandle hHal;
10273 tpSirPNOScanReq pPnoRequest = NULL;
Kamath Vinayakba5313f2013-08-22 15:52:39 +053010274 int ret = 0;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010275
10276 ENTER();
10277
10278 if (NULL == pAdapter)
10279 {
10280 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
10281 "%s: HDD adapter is Null", __func__);
10282 return -ENODEV;
10283 }
10284
10285 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010286
Kamath Vinayakba5313f2013-08-22 15:52:39 +053010287 if (NULL == pHddCtx)
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010288 {
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +053010289 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Kamath Vinayakba5313f2013-08-22 15:52:39 +053010290 "%s: HDD context is Null", __func__);
10291 return -ENODEV;
10292 }
10293
10294 /* The return 0 is intentional when isLogpInProgress and
10295 * isLoadUnloadInProgress. We did observe a crash due to a return of
10296 * failure in sched_scan_stop , especially for a case where the unload
10297 * of the happens at the same time. The function __cfg80211_stop_sched_scan
10298 * was clearing rdev->sched_scan_req only when the sched_scan_stop returns
10299 * success. If it returns a failure , then its next invocation due to the
10300 * clean up of the second interface will have the dev pointer corresponding
10301 * to the first one leading to a crash.
10302 */
10303 if (pHddCtx->isLogpInProgress)
10304 {
10305 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10306 "%s: LOGP in Progress. Ignore!!!", __func__);
10307 return ret;
10308 }
10309
Mihir Shete18156292014-03-11 15:38:30 +053010310 if (WLAN_HDD_IS_LOAD_UNLOAD_IN_PROGRESS(pHddCtx))
Kamath Vinayakba5313f2013-08-22 15:52:39 +053010311 {
10312 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10313 "%s: Unloading/Loading in Progress. Ignore!!!", __func__);
10314 return ret;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010315 }
10316
10317 hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
10318 if (NULL == hHal)
10319 {
10320 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10321 "%s: HAL context is Null!!!", __func__);
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053010322 return -EINVAL;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010323 }
10324
10325 pPnoRequest = (tpSirPNOScanReq) vos_mem_malloc(sizeof (tSirPNOScanReq));
10326 if (NULL == pPnoRequest)
10327 {
10328 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
10329 "%s: vos_mem_malloc failed", __func__);
Kamath Vinayakba5313f2013-08-22 15:52:39 +053010330 return -ENOMEM;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010331 }
10332
10333 memset(pPnoRequest, 0, sizeof (tSirPNOScanReq));
10334 pPnoRequest->enable = 0; /* Disable PNO */
10335 pPnoRequest->ucNetworksCount = 0;
10336
10337 status = sme_SetPreferredNetworkList(hHal, pPnoRequest,
10338 pAdapter->sessionId,
10339 NULL, pAdapter);
10340 if (eHAL_STATUS_SUCCESS != status)
10341 {
10342 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10343 "Failed to disabled PNO");
Kamath Vinayakba5313f2013-08-22 15:52:39 +053010344 ret = -EINVAL;
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053010345 goto error;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010346 }
c_hpothu37f21312014-04-09 21:49:54 +053010347 pHddCtx->isPnoEnable = FALSE;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010348
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053010349error:
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053010350 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Vinay Krishna Erannaf0e523b2014-03-01 21:00:16 +053010351 FL("PNO scan disabled ret = %d"), ret);
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010352 vos_mem_free(pPnoRequest);
10353
10354 EXIT();
Kamath Vinayakba5313f2013-08-22 15:52:39 +053010355 return ret;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010356}
10357
Mahesh A Saptasagar6cc38562014-05-23 21:22:17 +053010358/*
10359 * FUNCTION: wlan_hdd_cfg80211_sched_scan_stop
10360 * NL interface to disable PNO
10361 */
10362static int wlan_hdd_cfg80211_sched_scan_stop(struct wiphy *wiphy,
10363 struct net_device *dev)
10364{
10365 int ret;
10366
10367 vos_ssr_protect(__func__);
10368 ret = __wlan_hdd_cfg80211_sched_scan_stop(wiphy, dev);
10369 vos_ssr_unprotect(__func__);
10370
10371 return ret;
10372}
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053010373#endif /*FEATURE_WLAN_SCAN_PNO*/
10374
10375
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010376#ifdef FEATURE_WLAN_TDLS
Sunil Dutt Undekarieacac6f2014-03-21 14:08:53 +053010377#if TDLS_MGMT_VERSION2
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010378static int wlan_hdd_cfg80211_tdls_mgmt(struct wiphy *wiphy, struct net_device *dev,
10379 u8 *peer, u8 action_code, u8 dialog_token,
Sunil Dutt Undekarieacac6f2014-03-21 14:08:53 +053010380 u16 status_code, u32 peer_capability, const u8 *buf, size_t len)
10381#else
10382static int wlan_hdd_cfg80211_tdls_mgmt(struct wiphy *wiphy, struct net_device *dev,
10383 u8 *peer, u8 action_code, u8 dialog_token,
10384 u16 status_code, const u8 *buf, size_t len)
10385#endif
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010386{
10387
10388 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
10389 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010390 u8 peerMac[6];
10391 VOS_STATUS status;
Gopichand Nakkala05922802013-03-14 12:23:19 -070010392 int max_sta_failed = 0;
Hoonki Leea34dd892013-02-05 22:56:02 -080010393 int responder;
Hoonki Leed37cbb32013-04-20 00:31:14 -070010394 long rc;
Sunil Dutt Undekarieacac6f2014-03-21 14:08:53 +053010395#if !(TDLS_MGMT_VERSION2)
10396 u32 peer_capability = 0;
10397#endif
Rajesh Chauhana34c6e62014-03-25 16:37:58 +053010398 tANI_U16 numCurrTdlsPeers;
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010399
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053010400 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
10401 TRACE_CODE_HDD_CFG80211_TDLS_MGMT,
10402 pAdapter->sessionId, action_code));
Hoonki Lee11f7dda2013-02-14 16:55:44 -080010403 if (NULL == pHddCtx || NULL == pHddCtx->cfg_ini)
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010404 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +053010405 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010406 "Invalid arguments");
10407 return -EINVAL;
10408 }
10409
Sameer Thalappil75ea31a2013-02-21 19:38:16 -080010410 if (pHddCtx->isLogpInProgress)
10411 {
10412 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10413 "%s:LOGP in Progress. Ignore!!!", __func__);
Gopichand Nakkala05922802013-03-14 12:23:19 -070010414 wlan_hdd_tdls_set_link_status(pAdapter, peer, eTDLS_LINK_IDLE);
Sameer Thalappil75ea31a2013-02-21 19:38:16 -080010415 return -EBUSY;
10416 }
10417
Hoonki Lee27511902013-03-14 18:19:06 -070010418 if (eTDLS_SUPPORT_NOT_ENABLED == pHddCtx->tdls_mode)
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010419 {
Hoonki Lee27511902013-03-14 18:19:06 -070010420 VOS_TRACE( VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
10421 "%s: TDLS mode is disabled OR not enabled in FW."
10422 MAC_ADDRESS_STR " action %d declined.",
10423 __func__, MAC_ADDR_ARRAY(peer), action_code);
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010424 return -ENOTSUPP;
10425 }
Lee Hoonkic1262f22013-01-24 21:59:00 -080010426
Hoonki Lee27511902013-03-14 18:19:06 -070010427 /* other than teardown frame, other mgmt frames are not sent if disabled */
10428 if (SIR_MAC_TDLS_TEARDOWN != action_code)
10429 {
10430 /* if tdls_mode is disabled to respond to peer's request */
10431 if (eTDLS_SUPPORT_DISABLED == pHddCtx->tdls_mode)
10432 {
10433 VOS_TRACE( VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
10434 "%s: " MAC_ADDRESS_STR
Gopichand Nakkala34d1b062013-03-19 15:28:33 -070010435 " TDLS mode is disabled. action %d declined.",
10436 __func__, MAC_ADDR_ARRAY(peer), action_code);
Hoonki Lee27511902013-03-14 18:19:06 -070010437
10438 return -ENOTSUPP;
10439 }
10440 }
10441
Gopichand Nakkalab977a972013-02-18 19:15:09 -080010442 if (WLAN_IS_TDLS_SETUP_ACTION(action_code))
10443 {
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +053010444 if (NULL != wlan_hdd_tdls_is_progress(pHddCtx, peer, TRUE))
Gopichand Nakkalab977a972013-02-18 19:15:09 -080010445 {
10446 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070010447 "%s: " MAC_ADDRESS_STR
Gopichand Nakkala34d1b062013-03-19 15:28:33 -070010448 " TDLS setup is ongoing. action %d declined.",
10449 __func__, MAC_ADDR_ARRAY(peer), action_code);
10450 return -EPERM;
Gopichand Nakkalab977a972013-02-18 19:15:09 -080010451 }
10452 }
10453
Hoonki Lee11f7dda2013-02-14 16:55:44 -080010454 if (SIR_MAC_TDLS_SETUP_REQ == action_code ||
10455 SIR_MAC_TDLS_SETUP_RSP == action_code )
Lee Hoonkic1262f22013-01-24 21:59:00 -080010456 {
Rajesh Chauhana34c6e62014-03-25 16:37:58 +053010457 numCurrTdlsPeers = wlan_hdd_tdlsConnectedPeers(pAdapter);
10458 if (HDD_MAX_NUM_TDLS_STA <= numCurrTdlsPeers)
Lee Hoonkic1262f22013-01-24 21:59:00 -080010459 {
10460 /* supplicant still sends tdls_mgmt(SETUP_REQ) even after
10461 we return error code at 'add_station()'. Hence we have this
10462 check again in addtion to add_station().
10463 Anyway, there is no hard to double-check. */
Hoonki Lee11f7dda2013-02-14 16:55:44 -080010464 if (SIR_MAC_TDLS_SETUP_REQ == action_code)
Lee Hoonkic1262f22013-01-24 21:59:00 -080010465 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070010466 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10467 "%s: " MAC_ADDRESS_STR
Rajesh Chauhana34c6e62014-03-25 16:37:58 +053010468 " TDLS Max peer already connected. action (%d) declined. Num of peers (%d), Max allowed (%d).",
10469 __func__, MAC_ADDR_ARRAY(peer), action_code,
10470 numCurrTdlsPeers, HDD_MAX_NUM_TDLS_STA);
Sunil Dutt388ac8f2013-11-28 18:06:52 +053010471 return -EINVAL;
Lee Hoonkic1262f22013-01-24 21:59:00 -080010472 }
10473 else
10474 {
Gopichand Nakkalab977a972013-02-18 19:15:09 -080010475 /* maximum reached. tweak to send error code to peer and return
10476 error code to supplicant */
Lee Hoonkic1262f22013-01-24 21:59:00 -080010477 status_code = eSIR_MAC_UNSPEC_FAILURE_STATUS;
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070010478 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10479 "%s: " MAC_ADDRESS_STR
Rajesh Chauhana34c6e62014-03-25 16:37:58 +053010480 " TDLS Max peer already connected, send response status (%d). Num of peers (%d), Max allowed (%d).",
10481 __func__, MAC_ADDR_ARRAY(peer), status_code,
10482 numCurrTdlsPeers, HDD_MAX_NUM_TDLS_STA);
Gopichand Nakkala05922802013-03-14 12:23:19 -070010483 max_sta_failed = -EPERM;
Gopichand Nakkalab977a972013-02-18 19:15:09 -080010484 /* fall through to send setup resp with failure status
10485 code */
Lee Hoonkic1262f22013-01-24 21:59:00 -080010486 }
10487 }
Hoonki Lee11f7dda2013-02-14 16:55:44 -080010488 else
10489 {
10490 hddTdlsPeer_t *pTdlsPeer;
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +053010491 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peer, TRUE);
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070010492 if (pTdlsPeer && TDLS_IS_CONNECTED(pTdlsPeer))
Hoonki Lee11f7dda2013-02-14 16:55:44 -080010493 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070010494 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkala34d1b062013-03-19 15:28:33 -070010495 "%s:" MAC_ADDRESS_STR " already connected. action %d declined.",
10496 __func__, MAC_ADDR_ARRAY(peer), action_code);
Hoonki Lee11f7dda2013-02-14 16:55:44 -080010497 return -EPERM;
10498 }
10499 }
Lee Hoonkic1262f22013-01-24 21:59:00 -080010500 }
Hoonki Lee11f7dda2013-02-14 16:55:44 -080010501 vos_mem_copy(peerMac, peer, 6);
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010502
Hoonki Lee1090c6a2013-01-16 17:40:54 -080010503#ifdef WLAN_FEATURE_TDLS_DEBUG
10504 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Arun Kumar Khandavalli9fb625e2014-03-17 16:07:40 +053010505 "%s: " MAC_ADDRESS_STR " action %d, dialog_token %d status %d, len = %zu",
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070010506 "tdls_mgmt", MAC_ADDR_ARRAY(peer),
10507 action_code, dialog_token, status_code, len);
Hoonki Lee1090c6a2013-01-16 17:40:54 -080010508#endif
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010509
Hoonki Leea34dd892013-02-05 22:56:02 -080010510 /*Except teardown responder will not be used so just make 0*/
10511 responder = 0;
Hoonki Lee11f7dda2013-02-14 16:55:44 -080010512 if (SIR_MAC_TDLS_TEARDOWN == action_code)
Hoonki Leea34dd892013-02-05 22:56:02 -080010513 {
Gopichand Nakkala97a65fd2013-04-16 16:59:38 -070010514
10515 hddTdlsPeer_t *pTdlsPeer;
Madan Mohan Koyyalamudi96797442013-10-08 16:04:42 +053010516 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peerMac, TRUE);
Gopichand Nakkala97a65fd2013-04-16 16:59:38 -070010517
10518 if(pTdlsPeer && TDLS_IS_CONNECTED(pTdlsPeer))
10519 responder = pTdlsPeer->is_responder;
10520 else
Hoonki Leea34dd892013-02-05 22:56:02 -080010521 {
Gopichand Nakkala97a65fd2013-04-16 16:59:38 -070010522 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Arun Kumar Khandavalli9fb625e2014-03-17 16:07:40 +053010523 "%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 -070010524 __func__, MAC_ADDR_ARRAY(peer), (NULL == pTdlsPeer) ? -1 : pTdlsPeer->link_status,
10525 dialog_token, status_code, len);
10526 return -EPERM;
Hoonki Leea34dd892013-02-05 22:56:02 -080010527 }
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010528 }
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010529
Gopichand Nakkala2f1ff152013-07-01 11:27:43 +053010530 /* For explicit trigger of DIS_REQ come out of BMPS for
10531 successfully receiving DIS_RSP from peer. */
Hoonki Lee14621352013-04-16 17:51:19 -070010532 if ((SIR_MAC_TDLS_SETUP_RSP == action_code) ||
Gopichand Nakkala2f1ff152013-07-01 11:27:43 +053010533 (SIR_MAC_TDLS_DIS_RSP == action_code) ||
10534 (SIR_MAC_TDLS_DIS_REQ == action_code))
Hoonki Lee14621352013-04-16 17:51:19 -070010535 {
10536 if (TRUE == sme_IsPmcBmps(WLAN_HDD_GET_HAL_CTX(pAdapter)))
10537 {
10538 VOS_TRACE( VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
Gopichand Nakkala2f1ff152013-07-01 11:27:43 +053010539 "%s: Sending frame action_code %u.Disable BMPS", __func__, action_code);
Hoonki Lee14621352013-04-16 17:51:19 -070010540 hdd_disable_bmps_imps(pHddCtx, WLAN_HDD_INFRA_STATION);
10541 }
Gopichand Nakkala2f1ff152013-07-01 11:27:43 +053010542 if (SIR_MAC_TDLS_DIS_REQ != action_code)
10543 wlan_hdd_tdls_set_cap(pAdapter, peerMac, eTDLS_CAP_SUPPORTED);
Hoonki Lee14621352013-04-16 17:51:19 -070010544 }
10545
Hoonki Lee5305c3a2013-04-29 23:28:59 -070010546 /* make sure doesn't call send_mgmt() while it is pending */
10547 if (TDLS_CTX_MAGIC == pAdapter->mgmtTxCompletionStatus)
10548 {
10549 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Arif Hussain6d2a3322013-11-17 19:50:10 -080010550 "%s: " MAC_ADDRESS_STR " action %d couldn't sent, as one is pending. return EBUSY",
Hoonki Lee5305c3a2013-04-29 23:28:59 -070010551 __func__, MAC_ADDR_ARRAY(peer), action_code);
10552 return -EBUSY;
10553 }
10554
10555 pAdapter->mgmtTxCompletionStatus = TDLS_CTX_MAGIC;
Gopichand Nakkalab977a972013-02-18 19:15:09 -080010556 INIT_COMPLETION(pAdapter->tdls_mgmt_comp);
10557
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010558 status = sme_SendTdlsMgmtFrame(WLAN_HDD_GET_HAL_CTX(pAdapter), pAdapter->sessionId,
Pradeep Reddy POTTETIca171f82014-03-21 14:17:35 +053010559 peerMac, action_code, dialog_token, status_code, peer_capability, (tANI_U8 *)buf, len, responder);
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010560
Gopichand Nakkalab977a972013-02-18 19:15:09 -080010561 if (VOS_STATUS_SUCCESS != status)
10562 {
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010563 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10564 "%s: sme_SendTdlsMgmtFrame failed!", __func__);
Hoonki Lee5305c3a2013-04-29 23:28:59 -070010565 pAdapter->mgmtTxCompletionStatus = FALSE;
Hoonki Lee14621352013-04-16 17:51:19 -070010566 wlan_hdd_tdls_check_bmps(pAdapter);
Sunil Dutt388ac8f2013-11-28 18:06:52 +053010567 return -EINVAL;
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010568 }
10569
Hoonki Leed37cbb32013-04-20 00:31:14 -070010570 rc = wait_for_completion_interruptible_timeout(&pAdapter->tdls_mgmt_comp,
10571 msecs_to_jiffies(WAIT_TIME_TDLS_MGMT));
10572
10573 if ((rc <= 0) || (TRUE != pAdapter->mgmtTxCompletionStatus))
Gopichand Nakkalab977a972013-02-18 19:15:09 -080010574 {
Hoonki Leed37cbb32013-04-20 00:31:14 -070010575 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Jeff Johnson0299d0a2013-10-30 12:37:43 -070010576 "%s: Mgmt Tx Completion failed status %ld TxCompletion %u",
Hoonki Leed37cbb32013-04-20 00:31:14 -070010577 __func__, rc, pAdapter->mgmtTxCompletionStatus);
Hoonki Lee5305c3a2013-04-29 23:28:59 -070010578 pAdapter->mgmtTxCompletionStatus = FALSE;
Yue Ma4f55ef32014-01-23 16:45:33 -080010579
10580 if (pHddCtx->isLogpInProgress)
10581 {
10582 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10583 "%s: LOGP in Progress. Ignore!!!", __func__);
10584 return -EAGAIN;
10585 }
10586
Hoonki Leed37cbb32013-04-20 00:31:14 -070010587 wlan_hdd_tdls_check_bmps(pAdapter);
Sunil Dutt388ac8f2013-11-28 18:06:52 +053010588 return -EINVAL;
Gopichand Nakkalab977a972013-02-18 19:15:09 -080010589 }
10590
Gopichand Nakkala05922802013-03-14 12:23:19 -070010591 if (max_sta_failed)
Hoonki Lee14621352013-04-16 17:51:19 -070010592 {
10593 wlan_hdd_tdls_check_bmps(pAdapter);
Gopichand Nakkala05922802013-03-14 12:23:19 -070010594 return max_sta_failed;
Hoonki Lee14621352013-04-16 17:51:19 -070010595 }
Gopichand Nakkalab977a972013-02-18 19:15:09 -080010596
Hoonki Leea34dd892013-02-05 22:56:02 -080010597 if (SIR_MAC_TDLS_SETUP_RSP == action_code)
10598 {
Gopichand Nakkala4327a152013-03-04 23:22:42 -080010599 wlan_hdd_tdls_set_responder(pAdapter, peerMac, TRUE);
Hoonki Leea34dd892013-02-05 22:56:02 -080010600 }
10601 else if (SIR_MAC_TDLS_SETUP_CNF == action_code)
10602 {
Gopichand Nakkala4327a152013-03-04 23:22:42 -080010603 wlan_hdd_tdls_set_responder(pAdapter, peerMac, FALSE);
Hoonki Leea34dd892013-02-05 22:56:02 -080010604 }
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010605
10606 return 0;
10607}
10608
10609static int wlan_hdd_cfg80211_tdls_oper(struct wiphy *wiphy, struct net_device *dev,
10610 u8 *peer, enum nl80211_tdls_operation oper)
10611{
10612 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
10613 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010614 int status;
Hoonki Lee5305c3a2013-04-29 23:28:59 -070010615 hddTdlsPeer_t *pTdlsPeer;
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010616
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053010617 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
10618 TRACE_CODE_HDD_CFG80211_TDLS_OPER,
10619 pAdapter->sessionId, oper));
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010620 if ( NULL == peer )
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010621 {
Gopichand Nakkalab977a972013-02-18 19:15:09 -080010622 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Chilam Ngc4244af2013-04-01 15:37:32 -070010623 "%s: Invalid arguments", __func__);
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010624 return -EINVAL;
10625 }
Hoonki Lee1090c6a2013-01-16 17:40:54 -080010626
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010627 status = wlan_hdd_validate_context(pHddCtx);
10628
10629 if (0 != status)
Sameer Thalappil75ea31a2013-02-21 19:38:16 -080010630 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010631 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10632 "%s: HDD context is not valid", __func__);
10633 return status;
Sameer Thalappil75ea31a2013-02-21 19:38:16 -080010634 }
10635
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010636
10637 if( FALSE == pHddCtx->cfg_ini->fEnableTDLSSupport ||
Hoonki Lee1090c6a2013-01-16 17:40:54 -080010638 FALSE == sme_IsFeatureSupportedByFW(TDLS))
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010639 {
Hoonki Lee1090c6a2013-01-16 17:40:54 -080010640 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Chilam Ngc4244af2013-04-01 15:37:32 -070010641 "TDLS Disabled in INI OR not enabled in FW. "
10642 "Cannot process TDLS commands");
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010643 return -ENOTSUPP;
10644 }
10645
10646 switch (oper) {
10647 case NL80211_TDLS_ENABLE_LINK:
10648 {
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010649 VOS_STATUS status;
c_hpothu6ff1c3c2013-10-01 19:01:57 +053010650 long ret;
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +053010651 tCsrTdlsLinkEstablishParams tdlsLinkEstablishParams;
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010652
Sunil Dutt41de4e22013-11-14 18:09:02 +053010653 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peer, TRUE);
10654
10655 if ( NULL == pTdlsPeer ) {
10656 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: " MAC_ADDRESS_STR
10657 " (oper %d) not exsting. ignored",
10658 __func__, MAC_ADDR_ARRAY(peer), (int)oper);
10659 return -EINVAL;
10660 }
10661
10662 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10663 "%s: " MAC_ADDRESS_STR " link_status %d (%s) ", "tdls_oper",
10664 MAC_ADDR_ARRAY(peer), pTdlsPeer->link_status,
10665 "NL80211_TDLS_ENABLE_LINK");
10666
Gopichand Nakkala2f4a2822013-04-17 11:22:01 -070010667 if (!TDLS_STA_INDEX_VALID(pTdlsPeer->staId))
10668 {
10669 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid Staion Index %u "
10670 MAC_ADDRESS_STR " failed",
10671 __func__, pTdlsPeer->staId, MAC_ADDR_ARRAY(peer));
10672 return -EINVAL;
10673 }
10674
Hoonki Lee5305c3a2013-04-29 23:28:59 -070010675 if (eTDLS_LINK_CONNECTED != pTdlsPeer->link_status)
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070010676 {
Madan Mohan Koyyalamudice419872013-09-13 19:36:52 +053010677 if (IS_ADVANCE_TDLS_ENABLE) {
Gopichand Nakkala24be5312013-07-02 16:47:12 +053010678
Madan Mohan Koyyalamudice419872013-09-13 19:36:52 +053010679 if (0 != wlan_hdd_tdls_get_link_establish_params(
10680 pAdapter, peer,&tdlsLinkEstablishParams)) {
10681 return -EINVAL;
10682 }
10683 INIT_COMPLETION(pAdapter->tdls_link_establish_req_comp);
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +053010684
Madan Mohan Koyyalamudice419872013-09-13 19:36:52 +053010685 sme_SendTdlsLinkEstablishParams(WLAN_HDD_GET_HAL_CTX(pAdapter),
10686 pAdapter->sessionId, peer, &tdlsLinkEstablishParams);
10687 /* Send TDLS peer UAPSD capabilities to the firmware and
10688 * register with the TL on after the response for this operation
10689 * is received .
10690 */
10691 ret = wait_for_completion_interruptible_timeout(
10692 &pAdapter->tdls_link_establish_req_comp,
10693 msecs_to_jiffies(WAIT_TIME_TDLS_LINK_ESTABLISH_REQ));
10694 if (ret <= 0)
10695 {
10696 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10697 "%s: Link Establish Request Faled Status %ld",
10698 __func__, ret);
10699 return -EINVAL;
10700 }
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +053010701 }
Gopichand Nakkalaccd3a382013-03-19 13:56:10 -070010702 wlan_hdd_tdls_set_peer_link_status(pTdlsPeer, eTDLS_LINK_CONNECTED);
Gopichand Nakkala471708b2013-06-04 20:03:01 +053010703 /* Mark TDLS client Authenticated .*/
10704 status = WLANTL_ChangeSTAState( pHddCtx->pvosContext,
10705 pTdlsPeer->staId,
10706 WLANTL_STA_AUTHENTICATED);
Gopichand Nakkalaccd3a382013-03-19 13:56:10 -070010707 if (VOS_STATUS_SUCCESS == status)
10708 {
Hoonki Lee14621352013-04-16 17:51:19 -070010709 if (pTdlsPeer->is_responder == 0)
10710 {
10711 v_U8_t staId = (v_U8_t)pTdlsPeer->staId;
10712
10713 wlan_hdd_tdls_timer_restart(pAdapter,
10714 &pTdlsPeer->initiatorWaitTimeoutTimer,
10715 WAIT_TIME_TDLS_INITIATOR);
10716 /* suspend initiator TX until it receives direct packet from the
10717 reponder or WAIT_TIME_TDLS_INITIATOR timer expires */
10718 WLANTL_SuspendDataTx( (WLAN_HDD_GET_CTX(pAdapter))->pvosContext,
10719 &staId, NULL);
10720 }
Gopichand Nakkalaccd3a382013-03-19 13:56:10 -070010721 wlan_hdd_tdls_increment_peer_count(pAdapter);
10722 }
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070010723 wlan_hdd_tdls_check_bmps(pAdapter);
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +053010724
10725 /* Update TL about the UAPSD masks , to route the packets to firmware */
Gopichand Nakkala574f6d12013-06-27 19:38:43 +053010726 if ((TRUE == pHddCtx->cfg_ini->fEnableTDLSBufferSta)
10727 || pHddCtx->cfg_ini->fTDLSUapsdMask )
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +053010728 {
Gopichand Nakkala574f6d12013-06-27 19:38:43 +053010729 int ac;
10730 uint8 ucAc[4] = { WLANTL_AC_VO,
10731 WLANTL_AC_VI,
10732 WLANTL_AC_BK,
10733 WLANTL_AC_BE };
10734 uint8 tlTid[4] = { 7, 5, 2, 3 } ;
10735 for(ac=0; ac < 4; ac++)
10736 {
10737 status = WLANTL_EnableUAPSDForAC( (WLAN_HDD_GET_CTX(pAdapter))->pvosContext,
10738 pTdlsPeer->staId, ucAc[ac],
10739 tlTid[ac], tlTid[ac], 0, 0,
10740 WLANTL_BI_DIR );
10741 }
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +053010742 }
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070010743 }
10744
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010745 }
10746 break;
10747 case NL80211_TDLS_DISABLE_LINK:
Lee Hoonkic1262f22013-01-24 21:59:00 -080010748 {
Sunil Dutt41de4e22013-11-14 18:09:02 +053010749 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peer, TRUE);
10750
10751 if ( NULL == pTdlsPeer ) {
10752 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: " MAC_ADDRESS_STR
10753 " (oper %d) not exsting. ignored",
10754 __func__, MAC_ADDR_ARRAY(peer), (int)oper);
10755 return -EINVAL;
10756 }
10757
10758 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10759 "%s: " MAC_ADDRESS_STR " link_status %d (%s) ", "tdls_oper",
10760 MAC_ADDR_ARRAY(peer), pTdlsPeer->link_status,
10761 "NL80211_TDLS_DISABLE_LINK");
10762
Hoonki Lee5305c3a2013-04-29 23:28:59 -070010763 if(TDLS_STA_INDEX_VALID(pTdlsPeer->staId))
Lee Hoonkic1262f22013-01-24 21:59:00 -080010764 {
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070010765 long status;
10766
10767 INIT_COMPLETION(pAdapter->tdls_del_station_comp);
10768
Lee Hoonkic1262f22013-01-24 21:59:00 -080010769 sme_DeleteTdlsPeerSta( WLAN_HDD_GET_HAL_CTX(pAdapter),
10770 pAdapter->sessionId, peer );
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070010771
10772 status = wait_for_completion_interruptible_timeout(&pAdapter->tdls_del_station_comp,
10773 msecs_to_jiffies(WAIT_TIME_TDLS_DEL_STA));
10774 if (status <= 0)
10775 {
Hoonki Lee5305c3a2013-04-29 23:28:59 -070010776 wlan_hdd_tdls_set_peer_link_status(pTdlsPeer, eTDLS_LINK_IDLE);
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -070010777 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10778 "%s: Del station failed status %ld",
10779 __func__, status);
10780 return -EPERM;
10781 }
Hoonki Lee5305c3a2013-04-29 23:28:59 -070010782 wlan_hdd_tdls_set_peer_link_status(pTdlsPeer, eTDLS_LINK_IDLE);
Lee Hoonkic1262f22013-01-24 21:59:00 -080010783 }
10784 else
10785 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070010786 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10787 "%s: TDLS Peer Station doesn't exist.", __func__);
Lee Hoonkic1262f22013-01-24 21:59:00 -080010788 }
Lee Hoonkic1262f22013-01-24 21:59:00 -080010789 }
Gopichand Nakkalac87400e2013-03-13 18:51:00 -070010790 break;
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010791 case NL80211_TDLS_TEARDOWN:
Sunil Dutt41de4e22013-11-14 18:09:02 +053010792 {
10793 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
10794 " %s : NL80211_TDLS_TEARDOWN for " MAC_ADDRESS_STR,
10795 __func__, MAC_ADDR_ARRAY(peer));
10796
10797 if ( (FALSE == pHddCtx->cfg_ini->fTDLSExternalControl) ||
10798 (FALSE == pHddCtx->cfg_ini->fEnableTDLSImplicitTrigger) ) {
10799
10800 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
10801 " %s TDLS External control and Implicit Trigger not enabled ",
10802 __func__);
10803 return -ENOTSUPP;
10804 }
10805
Sunil Dutt41de4e22013-11-14 18:09:02 +053010806
10807 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peer, TRUE);
10808
10809 if ( NULL == pTdlsPeer ) {
10810 hddLog(VOS_TRACE_LEVEL_INFO, "%s: " MAC_ADDRESS_STR
10811 " peer not exsting",
10812 __func__, MAC_ADDR_ARRAY(peer));
Naresh Jayaram937abdf2013-11-26 19:50:25 +053010813 return -EINVAL;
Sunil Dutt41de4e22013-11-14 18:09:02 +053010814 }
10815 else {
10816 wlan_hdd_tdls_indicate_teardown(pAdapter, pTdlsPeer,
10817 eSIR_MAC_TDLS_TEARDOWN_UNSPEC_REASON);
10818 }
Naresh Jayaram937abdf2013-11-26 19:50:25 +053010819
10820 if ( 0 != wlan_hdd_tdls_set_force_peer(pAdapter, peer, FALSE) )
10821 return -EINVAL;
Sunil Dutt41de4e22013-11-14 18:09:02 +053010822 break;
10823 }
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010824 case NL80211_TDLS_SETUP:
Sunil Dutt41de4e22013-11-14 18:09:02 +053010825 {
Naresh Jayaramdb4514b2013-11-25 18:08:10 +053010826 hddTdlsPeer_t *pTdlsPeer;
Sunil Dutt41de4e22013-11-14 18:09:02 +053010827 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
10828 " %s : NL80211_TDLS_SETUP for " MAC_ADDRESS_STR,
10829 __func__, MAC_ADDR_ARRAY(peer));
10830
10831 if ( (FALSE == pHddCtx->cfg_ini->fTDLSExternalControl) ||
10832 (FALSE == pHddCtx->cfg_ini->fEnableTDLSImplicitTrigger) ) {
10833
10834 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
10835 " %s TDLS External control and Implicit Trigger not enabled ",
10836 __func__);
10837 return -ENOTSUPP;
10838 }
10839
Naresh Jayaramdb4514b2013-11-25 18:08:10 +053010840 /* To cater the requirement of establishing the TDLS link
10841 * irrespective of the data traffic , get an entry of TDLS peer.
10842 */
10843 pTdlsPeer = wlan_hdd_tdls_get_peer(pAdapter, peer);
10844 if (pTdlsPeer == NULL) {
10845 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10846 "%s: peer " MAC_ADDRESS_STR " not existing",
10847 __func__, MAC_ADDR_ARRAY(peer));
10848 return -EINVAL;
10849 }
Naresh Jayaram937abdf2013-11-26 19:50:25 +053010850
10851 if ( 0 != wlan_hdd_tdls_set_force_peer(pAdapter, peer, TRUE) ) {
10852
10853 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10854 " %s TDLS Add Force Peer Failed",
10855 __func__);
10856 return -EINVAL;
10857 }
Naresh Jayaramdb4514b2013-11-25 18:08:10 +053010858 break;
Sunil Dutt41de4e22013-11-14 18:09:02 +053010859 }
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010860 case NL80211_TDLS_DISCOVERY_REQ:
10861 /* We don't support in-driver setup/teardown/discovery */
c_hpothu6ff1c3c2013-10-01 19:01:57 +053010862 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_WARN,
10863 "%s: We don't support in-driver setup/teardown/discovery "
10864 ,__func__);
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010865 return -ENOTSUPP;
10866 default:
c_hpothu6ff1c3c2013-10-01 19:01:57 +053010867 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10868 "%s: unsupported event",__func__);
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010869 return -ENOTSUPP;
10870 }
10871 return 0;
10872}
Chilam NG571c65a2013-01-19 12:27:36 +053010873
10874int wlan_hdd_cfg80211_send_tdls_discover_req(struct wiphy *wiphy,
10875 struct net_device *dev, u8 *peer)
10876{
Arif Hussaina7c8e412013-11-20 11:06:42 -080010877 hddLog(VOS_TRACE_LEVEL_INFO,
10878 "tdls send discover req: "MAC_ADDRESS_STR,
10879 MAC_ADDR_ARRAY(peer));
Chilam NG571c65a2013-01-19 12:27:36 +053010880
Sunil Dutt Undekarieacac6f2014-03-21 14:08:53 +053010881#if TDLS_MGMT_VERSION2
10882 return wlan_hdd_cfg80211_tdls_mgmt(wiphy, dev, peer,
10883 WLAN_TDLS_DISCOVERY_REQUEST, 1, 0, 0, NULL, 0);
10884#else
Chilam NG571c65a2013-01-19 12:27:36 +053010885 return wlan_hdd_cfg80211_tdls_mgmt(wiphy, dev, peer,
10886 WLAN_TDLS_DISCOVERY_REQUEST, 1, 0, NULL, 0);
Sunil Dutt Undekarieacac6f2014-03-21 14:08:53 +053010887#endif
Chilam NG571c65a2013-01-19 12:27:36 +053010888}
Mohit Khanna698ba2a2012-12-04 15:08:18 -080010889#endif
10890
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053010891#ifdef WLAN_FEATURE_GTK_OFFLOAD
10892/*
10893 * FUNCTION: wlan_hdd_cfg80211_update_replayCounterCallback
10894 * Callback rountine called upon receiving response for
10895 * get offload info
10896 */
10897void wlan_hdd_cfg80211_update_replayCounterCallback(void *callbackContext,
10898 tpSirGtkOffloadGetInfoRspParams pGtkOffloadGetInfoRsp)
10899{
10900
10901 hdd_adapter_t *pAdapter = (hdd_adapter_t *)callbackContext;
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053010902 tANI_U8 tempReplayCounter[8];
10903 hdd_station_ctx_t *pHddStaCtx;
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053010904
10905 ENTER();
10906
10907 if (NULL == pAdapter)
10908 {
Agarwal Ashish971c2882013-10-30 20:11:12 +053010909 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053010910 "%s: HDD adapter is Null", __func__);
10911 return ;
10912 }
10913
10914 if (NULL == pGtkOffloadGetInfoRsp)
10915 {
10916 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10917 "%s: pGtkOffloadGetInfoRsp is Null", __func__);
10918 return ;
10919 }
10920
10921 if (VOS_STATUS_SUCCESS != pGtkOffloadGetInfoRsp->ulStatus)
10922 {
10923 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10924 "%s: wlan Failed to get replay counter value",
10925 __func__);
10926 return ;
10927 }
10928
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053010929 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
10930 /* Update replay counter */
10931 pHddStaCtx->gtkOffloadReqParams.ullKeyReplayCounter =
10932 pGtkOffloadGetInfoRsp->ullKeyReplayCounter;
10933
10934 {
10935 /* changing from little to big endian since supplicant
10936 * works on big endian format
10937 */
10938 int i;
10939 tANI_U8 *p = (tANI_U8 *)&pGtkOffloadGetInfoRsp->ullKeyReplayCounter;
10940
10941 for (i = 0; i < 8; i++)
10942 {
10943 tempReplayCounter[7-i] = (tANI_U8)p[i];
10944 }
10945 }
10946
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053010947 /* Update replay counter to NL */
10948 cfg80211_gtk_rekey_notify(pAdapter->dev, pGtkOffloadGetInfoRsp->bssId,
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053010949 tempReplayCounter, GFP_KERNEL);
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053010950}
10951
10952/*
10953 * FUNCTION: wlan_hdd_cfg80211_set_rekey_data
10954 * This function is used to offload GTK rekeying job to the firmware.
10955 */
10956int wlan_hdd_cfg80211_set_rekey_data(struct wiphy *wiphy, struct net_device *dev,
10957 struct cfg80211_gtk_rekey_data *data)
10958{
10959 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
10960 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
10961 hdd_station_ctx_t *pHddStaCtx;
10962 tHalHandle hHal;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010963 int result;
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053010964 tSirGtkOffloadParams hddGtkOffloadReqParams;
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053010965 eHalStatus status = eHAL_STATUS_FAILURE;
10966
10967 ENTER();
10968
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053010969
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053010970 if (NULL == pAdapter)
10971 {
10972 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
10973 "%s: HDD adapter is Null", __func__);
10974 return -ENODEV;
10975 }
10976
Sushant Kaushik4b7cb302014-01-06 17:45:01 +053010977 MTRACE(vos_trace(VOS_MODULE_ID_HDD,
10978 TRACE_CODE_HDD_CFG80211_SET_REKEY_DATA,
10979 pAdapter->sessionId, pAdapter->device_mode));
10980
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010981 result = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053010982
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010983 if (0 != result)
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053010984 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +053010985 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10986 "%s: HDD context is not valid", __func__);
10987 return result;
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053010988 }
10989
10990 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
10991 hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
10992 if (NULL == hHal)
10993 {
10994 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
10995 "%s: HAL context is Null!!!", __func__);
10996 return -EAGAIN;
10997 }
10998
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053010999 pHddStaCtx->gtkOffloadReqParams.ulFlags = GTK_OFFLOAD_ENABLE;
11000 memcpy(pHddStaCtx->gtkOffloadReqParams.aKCK, data->kck, NL80211_KCK_LEN);
11001 memcpy(pHddStaCtx->gtkOffloadReqParams.aKEK, data->kek, NL80211_KEK_LEN);
11002 memcpy(pHddStaCtx->gtkOffloadReqParams.bssId, &pHddStaCtx->conn_info.bssId,
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053011003 WNI_CFG_BSSID_LEN);
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053011004 {
11005 /* changing from big to little endian since driver
11006 * works on little endian format
11007 */
11008 tANI_U8 *p =
11009 (tANI_U8 *)&pHddStaCtx->gtkOffloadReqParams.ullKeyReplayCounter;
11010 int i;
11011
11012 for (i = 0; i < 8; i++)
11013 {
11014 p[7-i] = data->replay_ctr[i];
11015 }
11016 }
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053011017
11018 if (TRUE == pHddCtx->hdd_wlan_suspended)
11019 {
11020 /* if wlan is suspended, enable GTK offload directly from here */
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053011021 memcpy(&hddGtkOffloadReqParams, &pHddStaCtx->gtkOffloadReqParams,
11022 sizeof (tSirGtkOffloadParams));
11023 status = sme_SetGTKOffload(hHal, &hddGtkOffloadReqParams,
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053011024 pAdapter->sessionId);
11025
11026 if (eHAL_STATUS_SUCCESS != status)
11027 {
11028 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11029 "%s: sme_SetGTKOffload failed, returned %d",
11030 __func__, status);
11031 return status;
11032 }
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053011033 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
11034 "%s: sme_SetGTKOffload successfull", __func__);
11035 }
11036 else
11037 {
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053011038 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
11039 "%s: wlan not suspended GTKOffload request is stored",
11040 __func__);
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053011041 }
Gopichand Nakkalad36ee622013-05-07 14:13:27 +053011042
11043 return eHAL_STATUS_SUCCESS;
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053011044}
11045#endif /*WLAN_FEATURE_GTK_OFFLOAD*/
11046
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +053011047/*
11048 * FUNCTION: wlan_hdd_cfg80211_set_mac_acl
11049 * This function is used to set access control policy
11050 */
11051static int wlan_hdd_cfg80211_set_mac_acl(struct wiphy *wiphy,
11052 struct net_device *dev, const struct cfg80211_acl_data *params)
11053{
11054 int i;
11055 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
11056 hdd_hostapd_state_t *pHostapdState;
11057 tsap_Config_t *pConfig;
11058 v_CONTEXT_t pVosContext = NULL;
11059 hdd_context_t *pHddCtx;
11060 int status;
11061
11062 ENTER();
11063
11064 if (NULL == pAdapter)
11065 {
11066 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
11067 "%s: HDD adapter is Null", __func__);
11068 return -ENODEV;
11069 }
11070
11071 if (NULL == params)
11072 {
11073 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
11074 "%s: params is Null", __func__);
11075 return -EINVAL;
11076 }
11077
11078 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
11079 status = wlan_hdd_validate_context(pHddCtx);
11080
11081 if (0 != status)
11082 {
11083 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11084 "%s: HDD context is not valid", __func__);
11085 return status;
11086 }
11087
11088 pVosContext = pHddCtx->pvosContext;
11089 pHostapdState = WLAN_HDD_GET_HOSTAP_STATE_PTR(pAdapter);
11090
11091 if (NULL == pHostapdState)
11092 {
11093 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
11094 "%s: pHostapdState is Null", __func__);
11095 return -EINVAL;
11096 }
11097
11098 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,"acl policy: = %d"
11099 "no acl entries = %d", params->acl_policy, params->n_acl_entries);
11100
11101 if (WLAN_HDD_SOFTAP == pAdapter->device_mode)
11102 {
11103 pConfig = &pAdapter->sessionCtx.ap.sapConfig;
11104
11105 /* default value */
11106 pConfig->num_accept_mac = 0;
11107 pConfig->num_deny_mac = 0;
11108
11109 /**
11110 * access control policy
11111 * @NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED: Deny stations which are
11112 * listed in hostapd.deny file.
11113 * @NL80211_ACL_POLICY_DENY_UNLESS_LISTED: Allow stations which are
11114 * listed in hostapd.accept file.
11115 */
11116 if (NL80211_ACL_POLICY_DENY_UNLESS_LISTED == params->acl_policy)
11117 {
11118 pConfig->SapMacaddr_acl = eSAP_DENY_UNLESS_ACCEPTED;
11119 }
11120 else if (NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED == params->acl_policy)
11121 {
11122 pConfig->SapMacaddr_acl = eSAP_ACCEPT_UNLESS_DENIED;
11123 }
11124 else
11125 {
11126 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11127 "%s:Acl Policy : %d is not supported",
11128 __func__, params->acl_policy);
11129 return -ENOTSUPP;
11130 }
11131
11132 if (eSAP_DENY_UNLESS_ACCEPTED == pConfig->SapMacaddr_acl)
11133 {
11134 pConfig->num_accept_mac = params->n_acl_entries;
11135 for (i = 0; i < params->n_acl_entries; i++)
11136 {
11137 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
11138 "** Add ACL MAC entry %i in WhiletList :"
11139 MAC_ADDRESS_STR, i,
11140 MAC_ADDR_ARRAY(params->mac_addrs[i].addr));
11141
11142 vos_mem_copy(&pConfig->accept_mac[i], params->mac_addrs[i].addr,
11143 sizeof(qcmacaddr));
11144 }
11145 }
11146 else if (eSAP_ACCEPT_UNLESS_DENIED == pConfig->SapMacaddr_acl)
11147 {
11148 pConfig->num_deny_mac = params->n_acl_entries;
11149 for (i = 0; i < params->n_acl_entries; i++)
11150 {
11151 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
11152 "** Add ACL MAC entry %i in BlackList :"
11153 MAC_ADDRESS_STR, i,
11154 MAC_ADDR_ARRAY(params->mac_addrs[i].addr));
11155
11156 vos_mem_copy(&pConfig->deny_mac[i], params->mac_addrs[i].addr,
11157 sizeof(qcmacaddr));
11158 }
11159 }
11160
11161 if (VOS_STATUS_SUCCESS != WLANSAP_SetMacACL(pVosContext, pConfig))
11162 {
11163 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11164 "%s: SAP Set Mac Acl fail", __func__);
11165 return -EINVAL;
11166 }
11167 }
11168 else
11169 {
11170 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Sushant Kaushik8bc7df22014-04-09 17:55:29 +053011171 "%s: Invalid device_mode = %s (%d)",
11172 __func__, hdd_device_modetoString(pAdapter->device_mode),
11173 pAdapter->device_mode);
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +053011174 return -EINVAL;
11175 }
11176
11177 return 0;
11178}
11179
Leo Chang9056f462013-08-01 19:21:11 -070011180#ifdef WLAN_NL80211_TESTMODE
11181#ifdef FEATURE_WLAN_LPHB
Leo Changd9df8aa2013-09-26 13:32:26 -070011182void wlan_hdd_cfg80211_lphb_ind_handler
Leo Chang9056f462013-08-01 19:21:11 -070011183(
11184 void *pAdapter,
11185 void *indCont
11186)
11187{
Leo Changd9df8aa2013-09-26 13:32:26 -070011188 tSirLPHBInd *lphbInd;
11189 struct sk_buff *skb;
c_hpothu73f35e62014-04-18 13:40:08 +053011190 hdd_context_t *pHddCtxt;
Leo Chang9056f462013-08-01 19:21:11 -070011191
11192 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Leo Changd9df8aa2013-09-26 13:32:26 -070011193 "LPHB indication arrived");
Leo Chang9056f462013-08-01 19:21:11 -070011194
c_hpothu73f35e62014-04-18 13:40:08 +053011195 if (pAdapter == NULL)
11196 {
11197 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11198 "%s: pAdapter is NULL\n",__func__);
11199 return;
11200 }
11201
Leo Chang9056f462013-08-01 19:21:11 -070011202 if (NULL == indCont)
11203 {
11204 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Leo Changd9df8aa2013-09-26 13:32:26 -070011205 "LPHB IND, invalid argument");
Leo Chang9056f462013-08-01 19:21:11 -070011206 return;
11207 }
11208
c_hpothu73f35e62014-04-18 13:40:08 +053011209 pHddCtxt = (hdd_context_t *)pAdapter;
Leo Changd9df8aa2013-09-26 13:32:26 -070011210 lphbInd = (tSirLPHBInd *)indCont;
Leo Chang9056f462013-08-01 19:21:11 -070011211 skb = cfg80211_testmode_alloc_event_skb(
c_hpothu73f35e62014-04-18 13:40:08 +053011212 pHddCtxt->wiphy,
Leo Changd9df8aa2013-09-26 13:32:26 -070011213 sizeof(tSirLPHBInd),
Leo Chang9056f462013-08-01 19:21:11 -070011214 GFP_ATOMIC);
11215 if (!skb)
11216 {
11217 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11218 "LPHB timeout, NL buffer alloc fail");
11219 return;
11220 }
11221
Leo Changac3ba772013-10-07 09:47:04 -070011222 if(nla_put_u32(skb, WLAN_HDD_TM_ATTR_CMD, WLAN_HDD_TM_CMD_WLAN_HB))
Leo Changd9df8aa2013-09-26 13:32:26 -070011223 {
11224 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11225 "WLAN_HDD_TM_ATTR_CMD put fail");
11226 goto nla_put_failure;
11227 }
Leo Changac3ba772013-10-07 09:47:04 -070011228 if(nla_put_u32(skb, WLAN_HDD_TM_ATTR_TYPE, lphbInd->protocolType))
Leo Changd9df8aa2013-09-26 13:32:26 -070011229 {
11230 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11231 "WLAN_HDD_TM_ATTR_TYPE put fail");
11232 goto nla_put_failure;
11233 }
Leo Changac3ba772013-10-07 09:47:04 -070011234 if(nla_put(skb, WLAN_HDD_TM_ATTR_DATA,
Leo Changd9df8aa2013-09-26 13:32:26 -070011235 sizeof(tSirLPHBInd), lphbInd))
11236 {
11237 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11238 "WLAN_HDD_TM_ATTR_DATA put fail");
11239 goto nla_put_failure;
11240 }
Leo Chang9056f462013-08-01 19:21:11 -070011241 cfg80211_testmode_event(skb, GFP_ATOMIC);
11242 return;
11243
11244nla_put_failure:
11245 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11246 "NLA Put fail");
11247 kfree_skb(skb);
11248
11249 return;
11250}
11251#endif /* FEATURE_WLAN_LPHB */
11252
11253static int wlan_hdd_cfg80211_testmode(struct wiphy *wiphy, void *data, int len)
11254{
11255 struct nlattr *tb[WLAN_HDD_TM_ATTR_MAX + 1];
11256 int err = 0;
11257#ifdef FEATURE_WLAN_LPHB
11258 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
Leo Changd9df8aa2013-09-26 13:32:26 -070011259 eHalStatus smeStatus;
Leo Chang9056f462013-08-01 19:21:11 -070011260#endif /* FEATURE_WLAN_LPHB */
11261
11262 err = nla_parse(tb, WLAN_HDD_TM_ATTR_MAX, data, len, wlan_hdd_tm_policy);
11263 if (err)
11264 {
11265 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11266 "%s Testmode INV ATTR", __func__);
11267 return err;
11268 }
11269
11270 if (!tb[WLAN_HDD_TM_ATTR_CMD])
11271 {
11272 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11273 "%s Testmode INV CMD", __func__);
11274 return -EINVAL;
11275 }
11276
11277 switch (nla_get_u32(tb[WLAN_HDD_TM_ATTR_CMD]))
11278 {
11279#ifdef FEATURE_WLAN_LPHB
11280 /* Low Power Heartbeat configuration request */
11281 case WLAN_HDD_TM_CMD_WLAN_HB:
11282 {
11283 int buf_len;
11284 void *buf;
11285 tSirLPHBReq *hb_params = NULL;
Amar Singhal05852702014-02-04 14:40:00 -080011286 tSirLPHBReq *hb_params_temp = NULL;
Leo Chang9056f462013-08-01 19:21:11 -070011287
11288 if (!tb[WLAN_HDD_TM_ATTR_DATA])
11289 {
11290 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11291 "%s Testmode INV DATA", __func__);
11292 return -EINVAL;
11293 }
11294
11295 buf = nla_data(tb[WLAN_HDD_TM_ATTR_DATA]);
11296 buf_len = nla_len(tb[WLAN_HDD_TM_ATTR_DATA]);
Amar Singhal05852702014-02-04 14:40:00 -080011297
11298 hb_params_temp =(tSirLPHBReq *)buf;
11299 if ((hb_params_temp->cmd == LPHB_SET_TCP_PARAMS_INDID) &&
11300 (hb_params_temp->params.lphbTcpParamReq.timePeriodSec == 0))
11301 return -EINVAL;
11302
Leo Chang9056f462013-08-01 19:21:11 -070011303 hb_params = (tSirLPHBReq *)vos_mem_malloc(sizeof(tSirLPHBReq));
11304 if (NULL == hb_params)
11305 {
11306 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11307 "%s Request Buffer Alloc Fail", __func__);
11308 return -EINVAL;
11309 }
11310
11311 vos_mem_copy(hb_params, buf, buf_len);
Leo Changd9df8aa2013-09-26 13:32:26 -070011312 smeStatus = sme_LPHBConfigReq((tHalHandle)(pHddCtx->hHal),
11313 hb_params,
11314 wlan_hdd_cfg80211_lphb_ind_handler);
11315 if (eHAL_STATUS_SUCCESS != smeStatus)
Leo Chang9056f462013-08-01 19:21:11 -070011316 {
Leo Changd9df8aa2013-09-26 13:32:26 -070011317 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11318 "LPHB Config Fail, disable");
Leo Chang9056f462013-08-01 19:21:11 -070011319 vos_mem_free(hb_params);
11320 }
Leo Chang9056f462013-08-01 19:21:11 -070011321 return 0;
11322 }
11323#endif /* FEATURE_WLAN_LPHB */
11324 default:
c_hpothu6ff1c3c2013-10-01 19:01:57 +053011325 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11326 "%s: unsupported event",__func__);
Leo Chang9056f462013-08-01 19:21:11 -070011327 return -EOPNOTSUPP;
11328 }
11329
11330 return err;
11331}
11332#endif /* CONFIG_NL80211_TESTMODE */
11333
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053011334static int wlan_hdd_cfg80211_dump_survey(struct wiphy *wiphy,
11335 struct net_device *dev,
11336 int idx, struct survey_info *survey)
11337{
11338 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
11339 hdd_context_t *pHddCtx;
Mihir Sheted9072e02013-08-21 17:02:29 +053011340 hdd_station_ctx_t *pHddStaCtx;
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053011341 tHalHandle halHandle;
Mihir Sheted9072e02013-08-21 17:02:29 +053011342 v_U32_t channel = 0, freq = 0; /* Initialization Required */
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053011343 v_S7_t snr,rssi;
11344 int status, i, j, filled = 0;
11345
11346 ENTER();
11347
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053011348 if (NULL == pAdapter)
11349 {
11350 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
11351 "%s: HDD adapter is Null", __func__);
11352 return -ENODEV;
11353 }
11354
11355 if (NULL == wiphy)
11356 {
11357 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
11358 "%s: wiphy is Null", __func__);
11359 return -ENODEV;
11360 }
11361
11362 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
11363 status = wlan_hdd_validate_context(pHddCtx);
11364
11365 if (0 != status)
11366 {
11367 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11368 "%s: HDD context is not valid", __func__);
11369 return status;
11370 }
11371
Mihir Sheted9072e02013-08-21 17:02:29 +053011372 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
11373
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053011374 if (0 == pHddCtx->cfg_ini->fEnableSNRMonitoring ||
Mihir Sheted9072e02013-08-21 17:02:29 +053011375 0 != pAdapter->survey_idx ||
11376 eConnectionState_Associated != pHddStaCtx->conn_info.connState)
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053011377 {
11378 /* The survey dump ops when implemented completely is expected to
11379 * return a survey of all channels and the ops is called by the
11380 * kernel with incremental values of the argument 'idx' till it
11381 * returns -ENONET. But we can only support the survey for the
11382 * operating channel for now. survey_idx is used to track
11383 * that the ops is called only once and then return -ENONET for
11384 * the next iteration
11385 */
11386 pAdapter->survey_idx = 0;
11387 return -ENONET;
11388 }
11389
11390 halHandle = WLAN_HDD_GET_HAL_CTX(pAdapter);
11391
11392 wlan_hdd_get_snr(pAdapter, &snr);
11393 wlan_hdd_get_rssi(pAdapter, &rssi);
11394
11395 sme_GetOperationChannel(halHandle, &channel, pAdapter->sessionId);
11396 hdd_wlan_get_freq(channel, &freq);
11397
11398
11399 for (i = 0; i < IEEE80211_NUM_BANDS; i++)
11400 {
11401 if (NULL == wiphy->bands[i])
11402 {
11403 VOS_TRACE(VOS_MODULE_ID_VOSS, VOS_TRACE_LEVEL_INFO,
11404 "%s: wiphy->bands[i] is NULL, i = %d", __func__, i);
11405 continue;
11406 }
11407
11408 for (j = 0; j < wiphy->bands[i]->n_channels; j++)
11409 {
11410 struct ieee80211_supported_band *band = wiphy->bands[i];
11411
11412 if (band->channels[j].center_freq == (v_U16_t)freq)
11413 {
11414 survey->channel = &band->channels[j];
11415 /* The Rx BDs contain SNR values in dB for the received frames
11416 * while the supplicant expects noise. So we calculate and
11417 * return the value of noise (dBm)
11418 * SNR (dB) = RSSI (dBm) - NOISE (dBm)
11419 */
11420 survey->noise = rssi - snr;
11421 survey->filled = SURVEY_INFO_NOISE_DBM;
11422 filled = 1;
11423 }
11424 }
11425 }
11426
11427 if (filled)
11428 pAdapter->survey_idx = 1;
11429 else
11430 {
11431 pAdapter->survey_idx = 0;
11432 return -ENONET;
11433 }
11434
11435 return 0;
11436}
11437
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053011438/*
Mahesh A Saptasagarbcc5b662014-06-02 21:46:23 +053011439 * FUNCTION: __wlan_hdd_cfg80211_resume_wlan
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053011440 * this is called when cfg80211 driver resume
11441 * driver updates latest sched_scan scan result(if any) to cfg80211 database
11442 */
Mahesh A Saptasagarbcc5b662014-06-02 21:46:23 +053011443int __wlan_hdd_cfg80211_resume_wlan(struct wiphy *wiphy)
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053011444{
11445 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
11446 hdd_adapter_t *pAdapter;
11447 hdd_adapter_list_node_t *pAdapterNode, *pNext;
11448 VOS_STATUS status = VOS_STATUS_SUCCESS;
11449
11450 ENTER();
11451
11452 if ( NULL == pHddCtx )
11453 {
11454 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
11455 "%s: HddCtx validation failed", __func__);
11456 return 0;
11457 }
11458
11459 if (pHddCtx->isLogpInProgress)
11460 {
11461 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11462 "%s: LOGP in Progress. Ignore!!!", __func__);
11463 return 0;
11464 }
11465
Mihir Shete18156292014-03-11 15:38:30 +053011466 if (WLAN_HDD_IS_LOAD_UNLOAD_IN_PROGRESS(pHddCtx))
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053011467 {
11468 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
11469 "%s: Unloading/Loading in Progress. Ignore!!!", __func__);
11470 return 0;
11471 }
11472
11473 spin_lock(&pHddCtx->schedScan_lock);
11474 pHddCtx->isWiphySuspended = FALSE;
11475 if (TRUE != pHddCtx->isSchedScanUpdatePending)
11476 {
11477 spin_unlock(&pHddCtx->schedScan_lock);
11478 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
11479 "%s: Return resume is not due to PNO indication", __func__);
11480 return 0;
11481 }
11482 // Reset flag to avoid updatating cfg80211 data old results again
11483 pHddCtx->isSchedScanUpdatePending = FALSE;
11484 spin_unlock(&pHddCtx->schedScan_lock);
11485
Mahesh A Saptasagarb9c50402014-01-16 15:49:22 +053011486
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053011487 status = hdd_get_front_adapter ( pHddCtx, &pAdapterNode );
11488
11489 while ( NULL != pAdapterNode && VOS_STATUS_SUCCESS == status )
11490 {
11491 pAdapter = pAdapterNode->pAdapter;
11492 if ( (NULL != pAdapter) &&
11493 (WLAN_HDD_INFRA_STATION == pAdapter->device_mode) )
11494 {
11495 if (0 != wlan_hdd_cfg80211_update_bss(pHddCtx->wiphy, pAdapter))
Mahesh A Saptasagarb9c50402014-01-16 15:49:22 +053011496 {
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053011497 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_WARN,
11498 "%s: NO SCAN result", __func__);
Mahesh A Saptasagarb9c50402014-01-16 15:49:22 +053011499 }
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053011500 else
Mahesh A Saptasagarb9c50402014-01-16 15:49:22 +053011501 {
11502 /* Acquire wakelock to handle the case where APP's tries to
11503 * suspend immediately after updating the scan results. Whis
11504 * results in app's is in suspended state and not able to
11505 * process the connect request to AP
11506 */
11507 hdd_prevent_suspend_timeout(2000);
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053011508 cfg80211_sched_scan_results(pHddCtx->wiphy);
Mahesh A Saptasagarb9c50402014-01-16 15:49:22 +053011509 }
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053011510
11511 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
11512 "%s : cfg80211 scan result database updated", __func__);
11513
11514 return 0;
11515
11516 }
11517 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
11518 pAdapterNode = pNext;
11519 }
11520
11521 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
11522 "%s: Failed to find Adapter", __func__);
11523 return 0;
11524}
11525
Mahesh A Saptasagarbcc5b662014-06-02 21:46:23 +053011526int wlan_hdd_cfg80211_resume_wlan(struct wiphy *wiphy)
11527{
11528 int ret;
11529
11530 vos_ssr_protect(__func__);
11531 ret = __wlan_hdd_cfg80211_resume_wlan(wiphy);
11532 vos_ssr_unprotect(__func__);
11533
11534 return ret;
11535}
11536
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053011537/*
Mahesh A Saptasagarbcc5b662014-06-02 21:46:23 +053011538 * FUNCTION: __wlan_hdd_cfg80211_suspend_wlan
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053011539 * this is called when cfg80211 driver suspends
11540 */
Mahesh A Saptasagarbcc5b662014-06-02 21:46:23 +053011541int __wlan_hdd_cfg80211_suspend_wlan(struct wiphy *wiphy,
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053011542 struct cfg80211_wowlan *wow)
11543{
11544 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
11545
11546 ENTER();
11547 if (NULL == pHddCtx)
11548 {
11549 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
11550 "%s: HddCtx validation failed", __func__);
11551 return 0;
11552 }
11553
11554 pHddCtx->isWiphySuspended = TRUE;
11555
11556 EXIT();
11557
11558 return 0;
11559}
11560
Mahesh A Saptasagarbcc5b662014-06-02 21:46:23 +053011561int wlan_hdd_cfg80211_suspend_wlan(struct wiphy *wiphy,
11562 struct cfg80211_wowlan *wow)
11563{
11564 int ret;
11565
11566 vos_ssr_protect(__func__);
11567 ret = __wlan_hdd_cfg80211_suspend_wlan(wiphy, wow);
11568 vos_ssr_unprotect(__func__);
11569
11570 return ret;
11571}
Jeff Johnson295189b2012-06-20 16:38:30 -070011572/* cfg80211_ops */
Gopichand Nakkala747461f2013-04-24 19:24:45 +053011573static struct cfg80211_ops wlan_hdd_cfg80211_ops =
Jeff Johnson295189b2012-06-20 16:38:30 -070011574{
11575 .add_virtual_intf = wlan_hdd_add_virtual_intf,
11576 .del_virtual_intf = wlan_hdd_del_virtual_intf,
11577 .change_virtual_intf = wlan_hdd_cfg80211_change_iface,
11578 .change_station = wlan_hdd_change_station,
11579#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
11580 .add_beacon = wlan_hdd_cfg80211_add_beacon,
11581 .del_beacon = wlan_hdd_cfg80211_del_beacon,
11582 .set_beacon = wlan_hdd_cfg80211_set_beacon,
Jeff Johnson04dd8a82012-06-29 20:41:40 -070011583#else
11584 .start_ap = wlan_hdd_cfg80211_start_ap,
11585 .change_beacon = wlan_hdd_cfg80211_change_beacon,
11586 .stop_ap = wlan_hdd_cfg80211_stop_ap,
Jeff Johnson295189b2012-06-20 16:38:30 -070011587#endif
11588 .change_bss = wlan_hdd_cfg80211_change_bss,
11589 .add_key = wlan_hdd_cfg80211_add_key,
11590 .get_key = wlan_hdd_cfg80211_get_key,
11591 .del_key = wlan_hdd_cfg80211_del_key,
11592 .set_default_key = wlan_hdd_cfg80211_set_default_key,
Jeff Johnson3bbe4bf2013-01-18 17:05:29 -080011593#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,6,0))
Jeff Johnson295189b2012-06-20 16:38:30 -070011594 .set_channel = wlan_hdd_cfg80211_set_channel,
Jeff Johnson3bbe4bf2013-01-18 17:05:29 -080011595#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070011596 .scan = wlan_hdd_cfg80211_scan,
11597 .connect = wlan_hdd_cfg80211_connect,
11598 .disconnect = wlan_hdd_cfg80211_disconnect,
11599 .join_ibss = wlan_hdd_cfg80211_join_ibss,
11600 .leave_ibss = wlan_hdd_cfg80211_leave_ibss,
11601 .set_wiphy_params = wlan_hdd_cfg80211_set_wiphy_params,
11602 .set_tx_power = wlan_hdd_cfg80211_set_txpower,
11603 .get_tx_power = wlan_hdd_cfg80211_get_txpower,
Jeff Johnson295189b2012-06-20 16:38:30 -070011604 .remain_on_channel = wlan_hdd_cfg80211_remain_on_channel,
11605 .cancel_remain_on_channel = wlan_hdd_cfg80211_cancel_remain_on_channel,
DARAM SUDHA39eede62014-02-12 11:16:40 +053011606 .mgmt_tx = wlan_hdd_mgmt_tx,
Jeff Johnson295189b2012-06-20 16:38:30 -070011607#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
11608 .mgmt_tx_cancel_wait = wlan_hdd_cfg80211_mgmt_tx_cancel_wait,
11609 .set_default_mgmt_key = wlan_hdd_set_default_mgmt_key,
11610 .set_txq_params = wlan_hdd_set_txq_params,
11611#endif
Jeff Johnson295189b2012-06-20 16:38:30 -070011612 .get_station = wlan_hdd_cfg80211_get_station,
11613 .set_power_mgmt = wlan_hdd_cfg80211_set_power_mgmt,
11614 .del_station = wlan_hdd_cfg80211_del_station,
Jeff Johnson04dd8a82012-06-29 20:41:40 -070011615 .add_station = wlan_hdd_cfg80211_add_station,
11616#ifdef FEATURE_WLAN_LFR
11617 .set_pmksa = wlan_hdd_cfg80211_set_pmksa,
11618 .del_pmksa = wlan_hdd_cfg80211_del_pmksa,
11619 .flush_pmksa = wlan_hdd_cfg80211_flush_pmksa,
11620#endif
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -070011621#if defined(WLAN_FEATURE_VOWIFI_11R) && defined(KERNEL_SUPPORT_11R_CFG80211)
11622 .update_ft_ies = wlan_hdd_cfg80211_update_ft_ies,
11623#endif
Mohit Khanna698ba2a2012-12-04 15:08:18 -080011624#ifdef FEATURE_WLAN_TDLS
11625 .tdls_mgmt = wlan_hdd_cfg80211_tdls_mgmt,
11626 .tdls_oper = wlan_hdd_cfg80211_tdls_oper,
11627#endif
Gopichand Nakkala870cbae2013-03-15 21:16:09 +053011628#ifdef WLAN_FEATURE_GTK_OFFLOAD
11629 .set_rekey_data = wlan_hdd_cfg80211_set_rekey_data,
11630#endif /* WLAN_FEATURE_GTK_OFFLOAD */
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +053011631#ifdef FEATURE_WLAN_SCAN_PNO
11632 .sched_scan_start = wlan_hdd_cfg80211_sched_scan_start,
11633 .sched_scan_stop = wlan_hdd_cfg80211_sched_scan_stop,
11634#endif /*FEATURE_WLAN_SCAN_PNO */
Kamath Vinayak4000c9a2013-08-23 14:24:27 +053011635 .resume = wlan_hdd_cfg80211_resume_wlan,
11636 .suspend = wlan_hdd_cfg80211_suspend_wlan,
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +053011637 .set_mac_acl = wlan_hdd_cfg80211_set_mac_acl,
Leo Chang9056f462013-08-01 19:21:11 -070011638#ifdef WLAN_NL80211_TESTMODE
11639 .testmode_cmd = wlan_hdd_cfg80211_testmode,
11640#endif
Madan Mohan Koyyalamudid9383fd2013-08-13 09:27:30 +053011641 .dump_survey = wlan_hdd_cfg80211_dump_survey,
Jeff Johnson295189b2012-06-20 16:38:30 -070011642};
11643