blob: fbea7ed518ee51f2b3328b94cd5ac9e93a502c26 [file] [log] [blame]
Jeff Johnson295189b2012-06-20 16:38:30 -07001/*
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302 * Copyright (c) 2012-2013, 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*/
Jeff Johnson295189b2012-06-20 16:38:30 -070021
22/**========================================================================
23
24 \file wlan_hdd_cfg80211.c
25
26 \brief WLAN Host Device Driver implementation
27
Gopichand Nakkala747461f2013-04-24 19:24:45 +053028 Copyright 2008 (c) Qualcomm Technologies, Inc. All Rights Reserved.
Jeff Johnson295189b2012-06-20 16:38:30 -070029
Gopichand Nakkala747461f2013-04-24 19:24:45 +053030 Qualcomm Technologies Confidential and Proprietary.
Jeff Johnson295189b2012-06-20 16:38:30 -070031
32 ========================================================================*/
33
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070034/**=========================================================================
Jeff Johnson295189b2012-06-20 16:38:30 -070035
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070036 EDIT HISTORY FOR FILE
Jeff Johnson295189b2012-06-20 16:38:30 -070037
38
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070039 This section contains comments describing changes made to the module.
40 Notice that changes are listed in reverse chronological order.
Jeff Johnson295189b2012-06-20 16:38:30 -070041
42
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070043 $Header:$ $DateTime: $ $Author: $
Jeff Johnson295189b2012-06-20 16:38:30 -070044
45
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070046 when who what, where, why
Jeff Johnson295189b2012-06-20 16:38:30 -070047 -------- --- --------------------------------------------------------
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070048 21/12/09 Ashwani Created module.
Jeff Johnson295189b2012-06-20 16:38:30 -070049
50 07/06/10 Kumar Deepak Implemented cfg80211 callbacks for ANDROID
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -070051 Ganesh K
Jeff Johnson295189b2012-06-20 16:38:30 -070052 ==========================================================================*/
53
Jeff Johnson295189b2012-06-20 16:38:30 -070054
55#include <linux/version.h>
56#include <linux/module.h>
57#include <linux/kernel.h>
58#include <linux/init.h>
59#include <linux/wireless.h>
60#include <wlan_hdd_includes.h>
61#include <net/arp.h>
62#include <net/cfg80211.h>
63#include <linux/wireless.h>
64#include <wlan_hdd_wowl.h>
65#include <aniGlobal.h>
66#include "ccmApi.h"
67#include "sirParams.h"
68#include "dot11f.h"
69#include "wlan_hdd_assoc.h"
70#include "wlan_hdd_wext.h"
71#include "sme_Api.h"
72#include "wlan_hdd_p2p.h"
73#include "wlan_hdd_cfg80211.h"
74#include "wlan_hdd_hostapd.h"
75#include "sapInternal.h"
76#include "wlan_hdd_softap_tx_rx.h"
77#include "wlan_hdd_main.h"
Madan Mohan Koyyalamudid5acbf52012-11-28 01:45:08 +053078#include "wlan_hdd_assoc.h"
Gopichand Nakkala20c4c042013-04-19 22:08:55 +053079#include "wlan_hdd_power.h"
Jeff Johnson295189b2012-06-20 16:38:30 -070080#ifdef WLAN_BTAMP_FEATURE
81#include "bap_hdd_misc.h"
82#endif
83#include <qc_sap_ioctl.h>
Mohit Khanna698ba2a2012-12-04 15:08:18 -080084#ifdef FEATURE_WLAN_TDLS
85#include "wlan_hdd_tdls.h"
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +053086#include "wlan_hdd_wmm.h"
Mohit Khanna698ba2a2012-12-04 15:08:18 -080087#endif
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +053088#include "wlan_nv.h"
Leo Chang6fe1f922013-06-07 19:21:24 -070089#include "wlan_hdd_dev_pwr.h"
Jeff Johnson295189b2012-06-20 16:38:30 -070090
91#define g_mode_rates_size (12)
92#define a_mode_rates_size (8)
93#define FREQ_BASE_80211G (2407)
94#define FREQ_BAND_DIFF_80211G (5)
Jeff Johnson04dd8a82012-06-29 20:41:40 -070095#define MAX_SCAN_SSID 9
Jeff Johnson295189b2012-06-20 16:38:30 -070096#define GET_IE_LEN_IN_BSS_DESC(lenInBss) ( lenInBss + sizeof(lenInBss) - \
97 ((int) OFFSET_OF( tSirBssDescription, ieFields)))
98
99#define HDD2GHZCHAN(freq, chan, flag) { \
100 .band = IEEE80211_BAND_2GHZ, \
101 .center_freq = (freq), \
102 .hw_value = (chan),\
103 .flags = (flag), \
104 .max_antenna_gain = 0 ,\
105 .max_power = 30, \
106}
107
108#define HDD5GHZCHAN(freq, chan, flag) { \
109 .band = IEEE80211_BAND_5GHZ, \
110 .center_freq = (freq), \
111 .hw_value = (chan),\
112 .flags = (flag), \
113 .max_antenna_gain = 0 ,\
114 .max_power = 30, \
115}
116
117#define HDD_G_MODE_RATETAB(rate, rate_id, flag)\
118{\
119 .bitrate = rate, \
120 .hw_value = rate_id, \
121 .flags = flag, \
122}
123
Lee Hoonkic1262f22013-01-24 21:59:00 -0800124#ifndef WLAN_FEATURE_TDLS_DEBUG
125#define TDLS_LOG_LEVEL VOS_TRACE_LEVEL_INFO
126#else
127#define TDLS_LOG_LEVEL VOS_TRACE_LEVEL_ERROR
128#endif
129
Gopichand Nakkala356fb102013-03-06 12:34:04 +0530130#ifdef WLAN_FEATURE_VOWIFI_11R
131#define WLAN_AKM_SUITE_FT_8021X 0x000FAC03
132#define WLAN_AKM_SUITE_FT_PSK 0x000FAC04
133#endif
134
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530135static const u32 hdd_cipher_suites[] =
Jeff Johnson295189b2012-06-20 16:38:30 -0700136{
137 WLAN_CIPHER_SUITE_WEP40,
138 WLAN_CIPHER_SUITE_WEP104,
139 WLAN_CIPHER_SUITE_TKIP,
140#ifdef FEATURE_WLAN_CCX
141#define WLAN_CIPHER_SUITE_KRK 0x004096ff /* use for KRK */
142 WLAN_CIPHER_SUITE_KRK,
143 WLAN_CIPHER_SUITE_CCMP,
144#else
145 WLAN_CIPHER_SUITE_CCMP,
146#endif
147#ifdef FEATURE_WLAN_WAPI
148 WLAN_CIPHER_SUITE_SMS4,
149#endif
Chet Lanctot186b5732013-03-18 10:26:30 -0700150#ifdef WLAN_FEATURE_11W
151 WLAN_CIPHER_SUITE_AES_CMAC,
152#endif
Jeff Johnson295189b2012-06-20 16:38:30 -0700153};
154
155static inline int is_broadcast_ether_addr(const u8 *addr)
156{
157 return ((addr[0] == 0xff) && (addr[1] == 0xff) && (addr[2] == 0xff) &&
158 (addr[3] == 0xff) && (addr[4] == 0xff) && (addr[5] == 0xff));
159}
160
161static struct ieee80211_channel hdd_channels_2_4_GHZ[] =
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530162{
Jeff Johnson295189b2012-06-20 16:38:30 -0700163 HDD2GHZCHAN(2412, 1, 0) ,
164 HDD2GHZCHAN(2417, 2, 0) ,
165 HDD2GHZCHAN(2422, 3, 0) ,
166 HDD2GHZCHAN(2427, 4, 0) ,
167 HDD2GHZCHAN(2432, 5, 0) ,
168 HDD2GHZCHAN(2437, 6, 0) ,
169 HDD2GHZCHAN(2442, 7, 0) ,
170 HDD2GHZCHAN(2447, 8, 0) ,
171 HDD2GHZCHAN(2452, 9, 0) ,
172 HDD2GHZCHAN(2457, 10, 0) ,
173 HDD2GHZCHAN(2462, 11, 0) ,
174 HDD2GHZCHAN(2467, 12, 0) ,
175 HDD2GHZCHAN(2472, 13, 0) ,
176 HDD2GHZCHAN(2484, 14, 0) ,
177};
178
Jeff Johnson295189b2012-06-20 16:38:30 -0700179static struct ieee80211_channel hdd_social_channels_2_4_GHZ[] =
180{
181 HDD2GHZCHAN(2412, 1, 0) ,
182 HDD2GHZCHAN(2437, 6, 0) ,
183 HDD2GHZCHAN(2462, 11, 0) ,
184};
Jeff Johnson295189b2012-06-20 16:38:30 -0700185
186static struct ieee80211_channel hdd_channels_5_GHZ[] =
187{
Madan Mohan Koyyalamudic3a240c2012-09-28 15:34:08 -0700188 HDD5GHZCHAN(4920, 240, 0) ,
189 HDD5GHZCHAN(4940, 244, 0) ,
190 HDD5GHZCHAN(4960, 248, 0) ,
191 HDD5GHZCHAN(4980, 252, 0) ,
192 HDD5GHZCHAN(5040, 208, 0) ,
193 HDD5GHZCHAN(5060, 212, 0) ,
194 HDD5GHZCHAN(5080, 216, 0) ,
Jeff Johnson295189b2012-06-20 16:38:30 -0700195 HDD5GHZCHAN(5180, 36, 0) ,
196 HDD5GHZCHAN(5200, 40, 0) ,
197 HDD5GHZCHAN(5220, 44, 0) ,
198 HDD5GHZCHAN(5240, 48, 0) ,
199 HDD5GHZCHAN(5260, 52, 0) ,
200 HDD5GHZCHAN(5280, 56, 0) ,
201 HDD5GHZCHAN(5300, 60, 0) ,
202 HDD5GHZCHAN(5320, 64, 0) ,
203 HDD5GHZCHAN(5500,100, 0) ,
204 HDD5GHZCHAN(5520,104, 0) ,
205 HDD5GHZCHAN(5540,108, 0) ,
206 HDD5GHZCHAN(5560,112, 0) ,
207 HDD5GHZCHAN(5580,116, 0) ,
208 HDD5GHZCHAN(5600,120, 0) ,
209 HDD5GHZCHAN(5620,124, 0) ,
210 HDD5GHZCHAN(5640,128, 0) ,
211 HDD5GHZCHAN(5660,132, 0) ,
212 HDD5GHZCHAN(5680,136, 0) ,
213 HDD5GHZCHAN(5700,140, 0) ,
214 HDD5GHZCHAN(5745,149, 0) ,
215 HDD5GHZCHAN(5765,153, 0) ,
216 HDD5GHZCHAN(5785,157, 0) ,
217 HDD5GHZCHAN(5805,161, 0) ,
218 HDD5GHZCHAN(5825,165, 0) ,
219};
220
221static struct ieee80211_rate g_mode_rates[] =
222{
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530223 HDD_G_MODE_RATETAB(10, 0x1, 0),
224 HDD_G_MODE_RATETAB(20, 0x2, 0),
225 HDD_G_MODE_RATETAB(55, 0x4, 0),
226 HDD_G_MODE_RATETAB(110, 0x8, 0),
227 HDD_G_MODE_RATETAB(60, 0x10, 0),
228 HDD_G_MODE_RATETAB(90, 0x20, 0),
229 HDD_G_MODE_RATETAB(120, 0x40, 0),
230 HDD_G_MODE_RATETAB(180, 0x80, 0),
231 HDD_G_MODE_RATETAB(240, 0x100, 0),
232 HDD_G_MODE_RATETAB(360, 0x200, 0),
233 HDD_G_MODE_RATETAB(480, 0x400, 0),
Jeff Johnson295189b2012-06-20 16:38:30 -0700234 HDD_G_MODE_RATETAB(540, 0x800, 0),
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530235};
Jeff Johnson295189b2012-06-20 16:38:30 -0700236
237static struct ieee80211_rate a_mode_rates[] =
238{
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530239 HDD_G_MODE_RATETAB(60, 0x10, 0),
240 HDD_G_MODE_RATETAB(90, 0x20, 0),
241 HDD_G_MODE_RATETAB(120, 0x40, 0),
242 HDD_G_MODE_RATETAB(180, 0x80, 0),
243 HDD_G_MODE_RATETAB(240, 0x100, 0),
244 HDD_G_MODE_RATETAB(360, 0x200, 0),
245 HDD_G_MODE_RATETAB(480, 0x400, 0),
Jeff Johnson295189b2012-06-20 16:38:30 -0700246 HDD_G_MODE_RATETAB(540, 0x800, 0),
247};
248
249static struct ieee80211_supported_band wlan_hdd_band_2_4_GHZ =
250{
251 .channels = hdd_channels_2_4_GHZ,
252 .n_channels = ARRAY_SIZE(hdd_channels_2_4_GHZ),
253 .band = IEEE80211_BAND_2GHZ,
254 .bitrates = g_mode_rates,
255 .n_bitrates = g_mode_rates_size,
256 .ht_cap.ht_supported = 1,
257 .ht_cap.cap = IEEE80211_HT_CAP_SGI_20
258 | IEEE80211_HT_CAP_GRN_FLD
259 | IEEE80211_HT_CAP_DSSSCCK40
260 | IEEE80211_HT_CAP_LSIG_TXOP_PROT,
261 .ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K,
262 .ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_16,
263 .ht_cap.mcs.rx_mask = { 0xff, 0, 0, 0, 0, 0, 0, 0, 0, 0, },
264 .ht_cap.mcs.rx_highest = cpu_to_le16( 72 ),
265 .ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED,
266};
267
Jeff Johnson295189b2012-06-20 16:38:30 -0700268static struct ieee80211_supported_band wlan_hdd_band_p2p_2_4_GHZ =
269{
270 .channels = hdd_social_channels_2_4_GHZ,
271 .n_channels = ARRAY_SIZE(hdd_social_channels_2_4_GHZ),
272 .band = IEEE80211_BAND_2GHZ,
273 .bitrates = g_mode_rates,
274 .n_bitrates = g_mode_rates_size,
275 .ht_cap.ht_supported = 1,
276 .ht_cap.cap = IEEE80211_HT_CAP_SGI_20
277 | IEEE80211_HT_CAP_GRN_FLD
278 | IEEE80211_HT_CAP_DSSSCCK40
279 | IEEE80211_HT_CAP_LSIG_TXOP_PROT,
280 .ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K,
281 .ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_16,
282 .ht_cap.mcs.rx_mask = { 0xff, 0, 0, 0, 0, 0, 0, 0, 0, 0, },
283 .ht_cap.mcs.rx_highest = cpu_to_le16( 72 ),
284 .ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED,
285};
Jeff Johnson295189b2012-06-20 16:38:30 -0700286
287static struct ieee80211_supported_band wlan_hdd_band_5_GHZ =
288{
289 .channels = hdd_channels_5_GHZ,
290 .n_channels = ARRAY_SIZE(hdd_channels_5_GHZ),
291 .band = IEEE80211_BAND_5GHZ,
292 .bitrates = a_mode_rates,
293 .n_bitrates = a_mode_rates_size,
294 .ht_cap.ht_supported = 1,
295 .ht_cap.cap = IEEE80211_HT_CAP_SGI_20
296 | IEEE80211_HT_CAP_GRN_FLD
297 | IEEE80211_HT_CAP_DSSSCCK40
298 | IEEE80211_HT_CAP_LSIG_TXOP_PROT
299 | IEEE80211_HT_CAP_SGI_40
300 | IEEE80211_HT_CAP_SUP_WIDTH_20_40,
301 .ht_cap.ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K,
302 .ht_cap.ampdu_density = IEEE80211_HT_MPDU_DENSITY_16,
303 .ht_cap.mcs.rx_mask = { 0xff, 0, 0, 0, 0, 0, 0, 0, 0, 0, },
304 .ht_cap.mcs.rx_highest = cpu_to_le16( 72 ),
305 .ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED,
306};
307
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530308/* This structure contain information what kind of frame are expected in
Jeff Johnson295189b2012-06-20 16:38:30 -0700309 TX/RX direction for each kind of interface */
310static const struct ieee80211_txrx_stypes
311wlan_hdd_txrx_stypes[NUM_NL80211_IFTYPES] = {
312 [NL80211_IFTYPE_STATION] = {
313 .tx = 0xffff,
314 .rx = BIT(SIR_MAC_MGMT_ACTION) |
315 BIT(SIR_MAC_MGMT_PROBE_REQ),
316 },
317 [NL80211_IFTYPE_AP] = {
318 .tx = 0xffff,
319 .rx = BIT(SIR_MAC_MGMT_ASSOC_REQ) |
320 BIT(SIR_MAC_MGMT_REASSOC_REQ) |
321 BIT(SIR_MAC_MGMT_PROBE_REQ) |
322 BIT(SIR_MAC_MGMT_DISASSOC) |
323 BIT(SIR_MAC_MGMT_AUTH) |
324 BIT(SIR_MAC_MGMT_DEAUTH) |
325 BIT(SIR_MAC_MGMT_ACTION),
326 },
Jeff Johnsonbc006202013-04-29 14:05:30 -0700327 [NL80211_IFTYPE_ADHOC] = {
328 .tx = 0xffff,
329 .rx = BIT(SIR_MAC_MGMT_ASSOC_REQ) |
330 BIT(SIR_MAC_MGMT_REASSOC_REQ) |
331 BIT(SIR_MAC_MGMT_PROBE_REQ) |
332 BIT(SIR_MAC_MGMT_DISASSOC) |
333 BIT(SIR_MAC_MGMT_AUTH) |
334 BIT(SIR_MAC_MGMT_DEAUTH) |
335 BIT(SIR_MAC_MGMT_ACTION),
336 },
Jeff Johnson295189b2012-06-20 16:38:30 -0700337 [NL80211_IFTYPE_P2P_CLIENT] = {
338 .tx = 0xffff,
339 .rx = BIT(SIR_MAC_MGMT_ACTION) |
340 BIT(SIR_MAC_MGMT_PROBE_REQ),
341 },
342 [NL80211_IFTYPE_P2P_GO] = {
343 /* This is also same as for SoftAP */
344 .tx = 0xffff,
345 .rx = BIT(SIR_MAC_MGMT_ASSOC_REQ) |
346 BIT(SIR_MAC_MGMT_REASSOC_REQ) |
347 BIT(SIR_MAC_MGMT_PROBE_REQ) |
348 BIT(SIR_MAC_MGMT_DISASSOC) |
349 BIT(SIR_MAC_MGMT_AUTH) |
350 BIT(SIR_MAC_MGMT_DEAUTH) |
351 BIT(SIR_MAC_MGMT_ACTION),
352 },
Jeff Johnson295189b2012-06-20 16:38:30 -0700353};
354
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800355#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800356static const struct ieee80211_iface_limit
357wlan_hdd_iface_limit[] = {
358 {
Sunil Ravia72c3992013-01-31 06:12:22 -0800359 /* max = 3 ; Our driver create two interfaces during driver init
360 * wlan0 and p2p0 interfaces. p2p0 is considered as station
361 * interface until a group is formed. In JB architecture, once the
362 * group is formed, interface type of p2p0 is changed to P2P GO or
363 * Client.
364 * When supplicant remove the group, it first issue a set interface
365 * cmd to change the mode back to Station. In JB this works fine as
366 * we advertize two station type interface during driver init.
367 * Some vendors create separate interface for P2P GO/Client,
368 * after group formation(Third one). But while group remove
369 * supplicant first tries to change the mode(3rd interface) to STATION
370 * But as we advertized only two sta type interfaces nl80211 was
371 * returning error for the third one which was leading to failure in
372 * delete interface. Ideally while removing the group, supplicant
373 * should not try to change the 3rd interface mode to Station type.
374 * Till we get a fix in wpa_supplicant, we advertize max STA
375 * interface type to 3
376 */
377 .max = 3,
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800378 .types = BIT(NL80211_IFTYPE_STATION),
379 },
380 {
381 .max = 1,
Jeff Johnsonbc006202013-04-29 14:05:30 -0700382 .types = BIT(NL80211_IFTYPE_ADHOC) | BIT(NL80211_IFTYPE_AP),
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800383 },
384 {
385 .max = 1,
386 .types = BIT(NL80211_IFTYPE_P2P_GO) |
387 BIT(NL80211_IFTYPE_P2P_CLIENT),
388 },
389};
390
391/* By default, only single channel concurrency is allowed */
392static struct ieee80211_iface_combination
393wlan_hdd_iface_combination = {
394 .limits = wlan_hdd_iface_limit,
395 .num_different_channels = 1,
Sunil Ravia72c3992013-01-31 06:12:22 -0800396 /*
397 * max = WLAN_MAX_INTERFACES ; JellyBean architecture creates wlan0
398 * and p2p0 interfaces during driver init
399 * Some vendors create separate interface for P2P operations.
400 * wlan0: STA interface
401 * p2p0: P2P Device interface, action frames goes
402 * through this interface.
403 * p2p-xx: P2P interface, After GO negotiation this interface is
404 * created for p2p operations(GO/CLIENT interface).
405 */
406 .max_interfaces = WLAN_MAX_INTERFACES,
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800407 .n_limits = ARRAY_SIZE(wlan_hdd_iface_limit),
408 .beacon_int_infra_match = false,
409};
410#endif
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800411
Jeff Johnson295189b2012-06-20 16:38:30 -0700412static struct cfg80211_ops wlan_hdd_cfg80211_ops;
413
414/* Data rate 100KBPS based on IE Index */
415struct index_data_rate_type
416{
417 v_U8_t beacon_rate_index;
418 v_U16_t supported_rate[4];
419};
420
421/* 11B, 11G Rate table include Basic rate and Extended rate
422 The IDX field is the rate index
423 The HI field is the rate when RSSI is strong or being ignored
424 (in this case we report actual rate)
425 The MID field is the rate when RSSI is moderate
426 (in this case we cap 11b rates at 5.5 and 11g rates at 24)
427 The LO field is the rate when RSSI is low
428 (in this case we don't report rates, actual current rate used)
429 */
430static const struct
431{
432 v_U8_t beacon_rate_index;
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -0700433 v_U16_t supported_rate[4];
Jeff Johnson295189b2012-06-20 16:38:30 -0700434} supported_data_rate[] =
435{
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -0700436/* IDX HI HM LM LO (RSSI-based index */
437 {2, { 10, 10, 10, 0}},
438 {4, { 20, 20, 10, 0}},
439 {11, { 55, 20, 10, 0}},
440 {12, { 60, 55, 20, 0}},
441 {18, { 90, 55, 20, 0}},
442 {22, {110, 55, 20, 0}},
443 {24, {120, 90, 60, 0}},
444 {36, {180, 120, 60, 0}},
445 {44, {220, 180, 60, 0}},
446 {48, {240, 180, 90, 0}},
447 {66, {330, 180, 90, 0}},
448 {72, {360, 240, 90, 0}},
449 {96, {480, 240, 120, 0}},
450 {108, {540, 240, 120, 0}}
Jeff Johnson295189b2012-06-20 16:38:30 -0700451};
452
453/* MCS Based rate table */
454static struct index_data_rate_type supported_mcs_rate[] =
455{
456/* MCS L20 L40 S20 S40 */
457 {0, {65, 135, 72, 150}},
458 {1, {130, 270, 144, 300}},
459 {2, {195, 405, 217, 450}},
460 {3, {260, 540, 289, 600}},
461 {4, {390, 810, 433, 900}},
462 {5, {520, 1080, 578, 1200}},
463 {6, {585, 1215, 650, 1350}},
464 {7, {650, 1350, 722, 1500}}
465};
466
Leo Chang6f8870f2013-03-26 18:11:36 -0700467#ifdef WLAN_FEATURE_11AC
468
Gopichand Nakkala4c705372013-04-24 13:20:33 +0530469#define DATA_RATE_11AC_MCS_MASK 0x03
Leo Chang6f8870f2013-03-26 18:11:36 -0700470
471struct index_vht_data_rate_type
472{
473 v_U8_t beacon_rate_index;
Gopichand Nakkala4c705372013-04-24 13:20:33 +0530474 v_U16_t supported_VHT80_rate[2];
475 v_U16_t supported_VHT40_rate[2];
476 v_U16_t supported_VHT20_rate[2];
Leo Chang6f8870f2013-03-26 18:11:36 -0700477};
478
479typedef enum
480{
481 DATA_RATE_11AC_MAX_MCS_7,
482 DATA_RATE_11AC_MAX_MCS_8,
483 DATA_RATE_11AC_MAX_MCS_9,
484 DATA_RATE_11AC_MAX_MCS_NA
485} eDataRate11ACMaxMcs;
486
487/* MCS Based VHT rate table */
488static struct index_vht_data_rate_type supported_vht_mcs_rate[] =
489{
Gopichand Nakkala4c705372013-04-24 13:20:33 +0530490/* MCS L80 S80 L40 S40 L20 S40*/
491 {0, {293, 325}, {135, 150}, {65, 72}},
492 {1, {585, 650}, {270, 300}, {130, 144}},
493 {2, {878, 975}, {405, 450}, {195, 217}},
494 {3, {1170, 1300}, {540, 600}, {260, 289}},
495 {4, {1755, 1950}, {810, 900}, {390, 433}},
496 {5, {2340, 2600}, {1080, 1200}, {520, 578}},
497 {6, {2633, 2925}, {1215, 1350}, {585, 650}},
498 {7, {2925, 3250}, {1350, 1500}, {650, 722}},
499 {8, {3510, 3900}, {1620, 1800}, {780, 867}},
500 {9, {3900, 4333}, {1800, 2000}, {780, 867}}
Leo Chang6f8870f2013-03-26 18:11:36 -0700501};
502#endif /* WLAN_FEATURE_11AC */
503
Jeff Johnson295189b2012-06-20 16:38:30 -0700504extern struct net_device_ops net_ops_struct;
505
506/*
507 * FUNCTION: wlan_hdd_cfg80211_init
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530508 * This function is called by hdd_wlan_startup()
509 * during initialization.
Jeff Johnson295189b2012-06-20 16:38:30 -0700510 * This function is used to initialize and register wiphy structure.
511 */
512struct wiphy *wlan_hdd_cfg80211_init(int priv_size)
513{
514 struct wiphy *wiphy;
515 ENTER();
516
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530517 /*
518 * Create wiphy device
Jeff Johnson295189b2012-06-20 16:38:30 -0700519 */
520 wiphy = wiphy_new(&wlan_hdd_cfg80211_ops, priv_size);
521
522 if (!wiphy)
523 {
524 /* Print error and jump into err label and free the memory */
525 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: wiphy init failed", __func__);
526 return NULL;
527 }
528
529 return wiphy;
530}
531
532/*
533 * FUNCTION: wlan_hdd_cfg80211_update_band
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530534 * This function is called from the supplicant through a
Jeff Johnson295189b2012-06-20 16:38:30 -0700535 * private ioctl to change the band value
536 */
537int wlan_hdd_cfg80211_update_band(struct wiphy *wiphy, eCsrBand eBand)
538{
Gopichand Nakkala1f7a64f2013-04-01 18:37:17 +0530539 int i, j;
540 eNVChannelEnabledType channelEnabledState;
541
Jeff Johnsone7245742012-09-05 17:12:55 -0700542 ENTER();
Gopichand Nakkala1f7a64f2013-04-01 18:37:17 +0530543 for (i = 0; i < IEEE80211_NUM_BANDS; i++)
Jeff Johnson295189b2012-06-20 16:38:30 -0700544 {
Gopichand Nakkala1f7a64f2013-04-01 18:37:17 +0530545
546 if (NULL == wiphy->bands[i])
547 {
548 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: wiphy->bands[i] is NULL, i = %d",
549 __func__, i);
550 continue;
551 }
552
553 for (j = 0; j < wiphy->bands[i]->n_channels; j++)
554 {
555 struct ieee80211_supported_band *band = wiphy->bands[i];
556
557 channelEnabledState = vos_nv_getChannelEnabledState(
558 band->channels[j].hw_value);
559
560 if (IEEE80211_BAND_2GHZ == i && eCSR_BAND_5G == eBand) // 5G only
561 {
562 // Enable Social channels for P2P
563 if (WLAN_HDD_IS_SOCIAL_CHANNEL(band->channels[j].center_freq) &&
564 NV_CHANNEL_ENABLE == channelEnabledState)
565 band->channels[j].flags &= ~IEEE80211_CHAN_DISABLED;
566 else
567 band->channels[j].flags |= IEEE80211_CHAN_DISABLED;
568 continue;
569 }
570 else if (IEEE80211_BAND_5GHZ == i && eCSR_BAND_24 == eBand) // 2G only
571 {
572 band->channels[j].flags |= IEEE80211_CHAN_DISABLED;
573 continue;
574 }
575
576 if (NV_CHANNEL_DISABLE == channelEnabledState ||
577 NV_CHANNEL_INVALID == channelEnabledState)
578 {
579 band->channels[j].flags |= IEEE80211_CHAN_DISABLED;
580 }
581 else if (NV_CHANNEL_DFS == channelEnabledState)
582 {
583 band->channels[j].flags &= ~IEEE80211_CHAN_DISABLED;
584 band->channels[j].flags |= IEEE80211_CHAN_RADAR;
585 }
586 else
587 {
588 band->channels[j].flags &= ~(IEEE80211_CHAN_DISABLED
589 |IEEE80211_CHAN_RADAR);
590 }
591 }
Jeff Johnson295189b2012-06-20 16:38:30 -0700592 }
593 return 0;
594}
595/*
596 * FUNCTION: wlan_hdd_cfg80211_init
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530597 * This function is called by hdd_wlan_startup()
598 * during initialization.
Jeff Johnson295189b2012-06-20 16:38:30 -0700599 * This function is used to initialize and register wiphy structure.
600 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530601int wlan_hdd_cfg80211_register(struct device *dev,
Jeff Johnson295189b2012-06-20 16:38:30 -0700602 struct wiphy *wiphy,
603 hdd_config_t *pCfg
604 )
605{
Gopichand Nakkala1f7a64f2013-04-01 18:37:17 +0530606
607 int i, j;
608
Jeff Johnsone7245742012-09-05 17:12:55 -0700609 ENTER();
610
Jeff Johnson295189b2012-06-20 16:38:30 -0700611 /* Now bind the underlying wlan device with wiphy */
612 set_wiphy_dev(wiphy, dev);
613
614 wiphy->mgmt_stypes = wlan_hdd_txrx_stypes;
615
Madan Mohan Koyyalamudi1b4afb02012-10-22 15:25:16 -0700616 wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY;
Jeff Johnson295189b2012-06-20 16:38:30 -0700617
Jeff Johnson04dd8a82012-06-29 20:41:40 -0700618#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
Madan Mohan Koyyalamudi1b4afb02012-10-22 15:25:16 -0700619 wiphy->flags |= WIPHY_FLAG_HAVE_AP_SME
620 | WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD
621 | WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL
Jeff Johnsone7245742012-09-05 17:12:55 -0700622 | WIPHY_FLAG_OFFCHAN_TX;
Jeff Johnson04dd8a82012-06-29 20:41:40 -0700623#endif
Srinivas Girigowda640728a2013-03-28 12:21:54 -0700624#if defined (WLAN_FEATURE_VOWIFI_11R) || defined (FEATURE_WLAN_CCX) || defined(FEATURE_WLAN_LFR)
625 if (pCfg->isFastTransitionEnabled
James Zmuda77fb5ae2013-01-29 08:00:17 -0800626#ifdef FEATURE_WLAN_LFR
Srinivas Girigowda640728a2013-03-28 12:21:54 -0700627 || pCfg->isFastRoamIniFeatureEnabled
628#endif
629#ifdef FEATURE_WLAN_CCX
630 || pCfg->isCcxIniFeatureEnabled
631#endif
632 )
633 {
634 wiphy->flags |= WIPHY_FLAG_SUPPORTS_FW_ROAM;
635 }
James Zmuda77fb5ae2013-01-29 08:00:17 -0800636#endif
Mohit Khanna698ba2a2012-12-04 15:08:18 -0800637#ifdef FEATURE_WLAN_TDLS
638 wiphy->flags |= WIPHY_FLAG_SUPPORTS_TDLS
639 | WIPHY_FLAG_TDLS_EXTERNAL_SETUP;
640#endif
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +0530641#ifdef FEATURE_WLAN_SCAN_PNO
642 wiphy->flags |= WIPHY_FLAG_SUPPORTS_SCHED_SCAN;
643 wiphy->max_sched_scan_ssids = MAX_SCAN_SSID;
644 wiphy->max_match_sets = SIR_PNO_MAX_SUPP_NETWORKS;
645#endif/*FEATURE_WLAN_SCAN_PNO*/
Mohit Khanna698ba2a2012-12-04 15:08:18 -0800646
Madan Mohan Koyyalamudic3a240c2012-09-28 15:34:08 -0700647 /* even with WIPHY_FLAG_CUSTOM_REGULATORY,
648 driver can still register regulatory callback and
649 it will get CRDA setting in wiphy->band[], but
650 driver need to determine what to do with both
651 regulatory settings */
652 wiphy->reg_notifier = wlan_hdd_crda_reg_notifier;
Jeff Johnson04dd8a82012-06-29 20:41:40 -0700653
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530654 wiphy->max_scan_ssids = MAX_SCAN_SSID;
655
Jeff Johnson295189b2012-06-20 16:38:30 -0700656 wiphy->max_scan_ie_len = 200 ; //TODO: define a macro
657
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +0530658 wiphy->max_acl_mac_addrs = MAX_ACL_MAC_ADDRESS;
659
Jeff Johnson295189b2012-06-20 16:38:30 -0700660 /* Supports STATION & AD-HOC modes right now */
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530661 wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION)
Jeff Johnson295189b2012-06-20 16:38:30 -0700662 | BIT(NL80211_IFTYPE_ADHOC)
Jeff Johnson295189b2012-06-20 16:38:30 -0700663 | BIT(NL80211_IFTYPE_P2P_CLIENT)
664 | BIT(NL80211_IFTYPE_P2P_GO)
Jeff Johnson295189b2012-06-20 16:38:30 -0700665 | BIT(NL80211_IFTYPE_AP);
666
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800667#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800668 if( pCfg->enableMCC )
669 {
670 /* Currently, supports up to two channels */
671 wlan_hdd_iface_combination.num_different_channels = 2;
672
673 if( !pCfg->allowMCCGODiffBI )
674 wlan_hdd_iface_combination.beacon_int_infra_match = true;
675
676 }
677 wiphy->iface_combinations = &wlan_hdd_iface_combination;
678 wiphy->n_iface_combinations = 1;
679#endif
Sudhir Sattayappa Kohalli278eee52013-01-16 17:35:13 -0800680
Jeff Johnson295189b2012-06-20 16:38:30 -0700681 /* Before registering we need to update the ht capabilitied based
682 * on ini values*/
683 if( !pCfg->ShortGI20MhzEnable )
684 {
685 wlan_hdd_band_2_4_GHZ.ht_cap.cap &= ~IEEE80211_HT_CAP_SGI_20;
686 wlan_hdd_band_5_GHZ.ht_cap.cap &= ~IEEE80211_HT_CAP_SGI_20;
687 wlan_hdd_band_p2p_2_4_GHZ.ht_cap.cap &= ~IEEE80211_HT_CAP_SGI_20;
688 }
689
690 if( !pCfg->ShortGI40MhzEnable )
691 {
692 wlan_hdd_band_5_GHZ.ht_cap.cap &= ~IEEE80211_HT_CAP_SGI_40;
693 }
694
695 if( !pCfg->nChannelBondingMode5GHz )
696 {
697 wlan_hdd_band_5_GHZ.ht_cap.cap &= ~IEEE80211_HT_CAP_SUP_WIDTH_20_40;
698 }
699
Gopichand Nakkala1f7a64f2013-04-01 18:37:17 +0530700 wiphy->bands[IEEE80211_BAND_2GHZ] = &wlan_hdd_band_2_4_GHZ;
701 wiphy->bands[IEEE80211_BAND_5GHZ] = &wlan_hdd_band_5_GHZ;
702
703 for (i = 0; i < IEEE80211_NUM_BANDS; i++)
704 {
705
706 if (NULL == wiphy->bands[i])
707 {
708 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: wiphy->bands[i] is NULL, i = %d",
709 __func__, i);
710 continue;
711 }
712
713 for (j = 0; j < wiphy->bands[i]->n_channels; j++)
714 {
715 struct ieee80211_supported_band *band = wiphy->bands[i];
716
717 if (IEEE80211_BAND_2GHZ == i && eCSR_BAND_5G == pCfg->nBandCapability) // 5G only
718 {
719 // Enable social channels for P2P
720 if (WLAN_HDD_IS_SOCIAL_CHANNEL(band->channels[j].center_freq))
721 band->channels[j].flags &= ~IEEE80211_CHAN_DISABLED;
722 else
723 band->channels[j].flags |= IEEE80211_CHAN_DISABLED;
724 continue;
725 }
726 else if (IEEE80211_BAND_5GHZ == i && eCSR_BAND_24 == pCfg->nBandCapability) // 2G only
727 {
728 band->channels[j].flags |= IEEE80211_CHAN_DISABLED;
729 continue;
730 }
731 }
Jeff Johnson295189b2012-06-20 16:38:30 -0700732 }
733 /*Initialise the supported cipher suite details*/
734 wiphy->cipher_suites = hdd_cipher_suites;
735 wiphy->n_cipher_suites = ARRAY_SIZE(hdd_cipher_suites);
736
737 /*signal strength in mBm (100*dBm) */
738 wiphy->signal_type = CFG80211_SIGNAL_TYPE_MBM;
739
740#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
Jeff Johnson295189b2012-06-20 16:38:30 -0700741 wiphy->max_remain_on_channel_duration = 1000;
742#endif
Jeff Johnson295189b2012-06-20 16:38:30 -0700743
744 /* Register our wiphy dev with cfg80211 */
745 if (0 > wiphy_register(wiphy))
746 {
747 /* print eror */
748 hddLog(VOS_TRACE_LEVEL_ERROR,"%s: wiphy register failed", __func__);
749 return -EIO;
750 }
751
752 EXIT();
753 return 0;
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530754}
Jeff Johnson295189b2012-06-20 16:38:30 -0700755
Madan Mohan Koyyalamudic3a240c2012-09-28 15:34:08 -0700756/* In this function we will try to get default country code from crda.
757 If the gCrdaDefaultCountryCode is configured in ini file,
758 we will try to call user space crda to get the regulatory settings for
759 that country. We will timeout if we can't get it from crda.
760 It's called by hdd_wlan_startup() after wlan_hdd_cfg80211_register.
761*/
762int wlan_hdd_get_crda_regd_entry(struct wiphy *wiphy, hdd_config_t *pCfg)
763{
764 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
765 if (memcmp(pCfg->crdaDefaultCountryCode,
766 CFG_CRDA_DEFAULT_COUNTRY_CODE_DEFAULT , 2) != 0)
767 {
768 init_completion(&pHddCtx->driver_crda_req);
769 regulatory_hint(wiphy, pCfg->crdaDefaultCountryCode);
770 wait_for_completion_interruptible_timeout(&pHddCtx->driver_crda_req,
771 CRDA_WAIT_TIME);
Yunsen Wange3ba1fb2013-04-05 15:04:43 -0700772 /* if the country is not found from current regulatory.bin,
773 fall back to world domain */
774 if (is_crda_regulatory_entry_valid() == VOS_FALSE)
775 crda_regulatory_entry_default(pCfg->crdaDefaultCountryCode, NUM_REG_DOMAINS-1);
Madan Mohan Koyyalamudic3a240c2012-09-28 15:34:08 -0700776 }
777 return 0;
778}
779
Jeff Johnson295189b2012-06-20 16:38:30 -0700780/* In this function we will do all post VOS start initialization.
781 In this function we will register for all frame in which supplicant
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530782 is interested.
Jeff Johnson295189b2012-06-20 16:38:30 -0700783*/
784void wlan_hdd_cfg80211_post_voss_start(hdd_adapter_t* pAdapter)
785{
Jeff Johnson295189b2012-06-20 16:38:30 -0700786 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
787 /* Register for all P2P action, public action etc frames */
788 v_U16_t type = (SIR_MAC_MGMT_FRAME << 2) | ( SIR_MAC_MGMT_ACTION << 4);
789
Jeff Johnsone7245742012-09-05 17:12:55 -0700790 ENTER();
791
Jeff Johnson295189b2012-06-20 16:38:30 -0700792 /* Right now we are registering these frame when driver is getting
793 initialized. Once we will move to 2.6.37 kernel, in which we have
794 frame register ops, we will move this code as a part of that */
795 /* GAS Initial Request */
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530796 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
Jeff Johnson295189b2012-06-20 16:38:30 -0700797 (v_U8_t*)GAS_INITIAL_REQ, GAS_INITIAL_REQ_SIZE );
798
799 /* GAS Initial Response */
800 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
801 (v_U8_t*)GAS_INITIAL_RSP, GAS_INITIAL_RSP_SIZE );
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530802
Jeff Johnson295189b2012-06-20 16:38:30 -0700803 /* GAS Comeback Request */
804 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
805 (v_U8_t*)GAS_COMEBACK_REQ, GAS_COMEBACK_REQ_SIZE );
806
807 /* GAS Comeback Response */
808 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
809 (v_U8_t*)GAS_COMEBACK_RSP, GAS_COMEBACK_RSP_SIZE );
810
811 /* P2P Public Action */
812 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530813 (v_U8_t*)P2P_PUBLIC_ACTION_FRAME,
Jeff Johnson295189b2012-06-20 16:38:30 -0700814 P2P_PUBLIC_ACTION_FRAME_SIZE );
815
816 /* P2P Action */
817 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
818 (v_U8_t*)P2P_ACTION_FRAME,
819 P2P_ACTION_FRAME_SIZE );
Chet Lanctot186b5732013-03-18 10:26:30 -0700820
Gopichand Nakkalae3d56e72013-04-21 23:33:32 +0530821 /* WNM BSS Transition Request frame */
822 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
823 (v_U8_t*)WNM_BSS_ACTION_FRAME,
824 WNM_BSS_ACTION_FRAME_SIZE );
825
Chet Lanctot186b5732013-03-18 10:26:30 -0700826#ifdef WLAN_FEATURE_11W
827 /* SA Query Response Action Frame */
828 sme_RegisterMgmtFrame(hHal, pAdapter->sessionId, type,
829 (v_U8_t*)SA_QUERY_FRAME_RSP,
830 SA_QUERY_FRAME_RSP_SIZE );
831#endif /* WLAN_FEATURE_11W */
Jeff Johnson295189b2012-06-20 16:38:30 -0700832}
833
834void wlan_hdd_cfg80211_pre_voss_stop(hdd_adapter_t* pAdapter)
835{
Jeff Johnson295189b2012-06-20 16:38:30 -0700836 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
837 /* Register for all P2P action, public action etc frames */
838 v_U16_t type = (SIR_MAC_MGMT_FRAME << 2) | ( SIR_MAC_MGMT_ACTION << 4);
839
Jeff Johnsone7245742012-09-05 17:12:55 -0700840 ENTER();
841
Jeff Johnson295189b2012-06-20 16:38:30 -0700842 /* Right now we are registering these frame when driver is getting
843 initialized. Once we will move to 2.6.37 kernel, in which we have
844 frame register ops, we will move this code as a part of that */
845 /* GAS Initial Request */
846
847 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
848 (v_U8_t*)GAS_INITIAL_REQ, GAS_INITIAL_REQ_SIZE );
849
850 /* GAS Initial Response */
851 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
852 (v_U8_t*)GAS_INITIAL_RSP, GAS_INITIAL_RSP_SIZE );
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530853
Jeff Johnson295189b2012-06-20 16:38:30 -0700854 /* GAS Comeback Request */
855 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
856 (v_U8_t*)GAS_COMEBACK_REQ, GAS_COMEBACK_REQ_SIZE );
857
858 /* GAS Comeback Response */
859 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
860 (v_U8_t*)GAS_COMEBACK_RSP, GAS_COMEBACK_RSP_SIZE );
861
862 /* P2P Public Action */
863 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530864 (v_U8_t*)P2P_PUBLIC_ACTION_FRAME,
Jeff Johnson295189b2012-06-20 16:38:30 -0700865 P2P_PUBLIC_ACTION_FRAME_SIZE );
866
867 /* P2P Action */
868 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
869 (v_U8_t*)P2P_ACTION_FRAME,
870 P2P_ACTION_FRAME_SIZE );
Chet Lanctot186b5732013-03-18 10:26:30 -0700871
872#ifdef WLAN_FEATURE_11W
873 /* SA Query Response Action Frame */
874 sme_DeregisterMgmtFrame(hHal, pAdapter->sessionId, type,
875 (v_U8_t*)SA_QUERY_FRAME_RSP,
876 SA_QUERY_FRAME_RSP_SIZE );
877#endif /* WLAN_FEATURE_11W */
Jeff Johnson295189b2012-06-20 16:38:30 -0700878}
879
880#ifdef FEATURE_WLAN_WAPI
881void wlan_hdd_cfg80211_set_key_wapi(hdd_adapter_t* pAdapter, u8 key_index,
882 const u8 *mac_addr, u8 *key , int key_Len)
883{
884 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
885 tCsrRoamSetKey setKey;
886 v_BOOL_t isConnected = TRUE;
887 int status = 0;
888 v_U32_t roamId= 0xFF;
889 tANI_U8 *pKeyPtr = NULL;
890 int n = 0;
891
892 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %d\n",
893 __func__,pAdapter->device_mode);
894
Gopichand Nakkalae7480202013-02-11 15:24:22 +0530895 vos_mem_zero(&setKey, sizeof(tCsrRoamSetKey));
Jeff Johnson295189b2012-06-20 16:38:30 -0700896 setKey.keyId = key_index; // Store Key ID
897 setKey.encType = eCSR_ENCRYPT_TYPE_WPI; // SET WAPI Encryption
898 setKey.keyDirection = eSIR_TX_RX; // Key Directionn both TX and RX
899 setKey.paeRole = 0 ; // the PAE role
900 if (!mac_addr || is_broadcast_ether_addr(mac_addr))
901 {
902 vos_set_macaddr_broadcast( (v_MACADDR_t *)setKey.peerMac );
903 }
904 else
905 {
906 isConnected = hdd_connIsConnected(pHddStaCtx);
907 vos_mem_copy(setKey.peerMac,&pHddStaCtx->conn_info.bssId,WNI_CFG_BSSID_LEN);
908 }
909 setKey.keyLength = key_Len;
910 pKeyPtr = setKey.Key;
911 memcpy( pKeyPtr, key, key_Len);
912
913 hddLog(VOS_TRACE_LEVEL_INFO,"\n%s: WAPI KEY LENGTH:0x%04x",
914 __func__, key_Len);
915 for (n = 0 ; n < key_Len; n++)
916 hddLog(VOS_TRACE_LEVEL_INFO, "%s WAPI KEY Data[%d]:%02x ",
917 __func__,n,setKey.Key[n]);
918
919 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_SETTING_KEY;
920 if ( isConnected )
921 {
922 status= sme_RoamSetKey( WLAN_HDD_GET_HAL_CTX(pAdapter),
923 pAdapter->sessionId, &setKey, &roamId );
924 }
925 if ( status != 0 )
926 {
927 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
928 "[%4d] sme_RoamSetKey returned ERROR status= %d",
929 __LINE__, status );
930 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_NONE;
931 }
932}
933#endif /* FEATURE_WLAN_WAPI*/
934
935#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530936int wlan_hdd_cfg80211_alloc_new_beacon(hdd_adapter_t *pAdapter,
Jeff Johnson295189b2012-06-20 16:38:30 -0700937 beacon_data_t **ppBeacon,
938 struct beacon_parameters *params)
Jeff Johnson04dd8a82012-06-29 20:41:40 -0700939#else
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530940int wlan_hdd_cfg80211_alloc_new_beacon(hdd_adapter_t *pAdapter,
Jeff Johnson04dd8a82012-06-29 20:41:40 -0700941 beacon_data_t **ppBeacon,
942 struct cfg80211_beacon_data *params,
943 int dtim_period)
944#endif
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530945{
Jeff Johnson295189b2012-06-20 16:38:30 -0700946 int size;
947 beacon_data_t *beacon = NULL;
948 beacon_data_t *old = NULL;
949 int head_len,tail_len;
950
Jeff Johnsone7245742012-09-05 17:12:55 -0700951 ENTER();
Jeff Johnson295189b2012-06-20 16:38:30 -0700952 if (params->head && !params->head_len)
953 return -EINVAL;
954
955 old = pAdapter->sessionCtx.ap.beacon;
956
957 if (!params->head && !old)
958 return -EINVAL;
959
960 if (params->tail && !params->tail_len)
961 return -EINVAL;
962
963#if (LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,38))
964 /* Kernel 3.0 is not updating dtim_period for set beacon */
965 if (!params->dtim_period)
966 return -EINVAL;
967#endif
968
969 if(params->head)
970 head_len = params->head_len;
971 else
972 head_len = old->head_len;
973
974 if(params->tail || !old)
975 tail_len = params->tail_len;
976 else
977 tail_len = old->tail_len;
978
979 size = sizeof(beacon_data_t) + head_len + tail_len;
980
981 beacon = kzalloc(size, GFP_KERNEL);
982
983 if( beacon == NULL )
984 return -ENOMEM;
985
Jeff Johnson04dd8a82012-06-29 20:41:40 -0700986#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
Jeff Johnson295189b2012-06-20 16:38:30 -0700987 if(params->dtim_period || !old )
988 beacon->dtim_period = params->dtim_period;
989 else
990 beacon->dtim_period = old->dtim_period;
Jeff Johnson04dd8a82012-06-29 20:41:40 -0700991#else
992 if(dtim_period || !old )
993 beacon->dtim_period = dtim_period;
994 else
995 beacon->dtim_period = old->dtim_period;
996#endif
Gopichand Nakkala747461f2013-04-24 19:24:45 +0530997
Jeff Johnson295189b2012-06-20 16:38:30 -0700998 beacon->head = ((u8 *) beacon) + sizeof(beacon_data_t);
999 beacon->tail = beacon->head + head_len;
1000 beacon->head_len = head_len;
1001 beacon->tail_len = tail_len;
1002
1003 if(params->head) {
1004 memcpy (beacon->head,params->head,beacon->head_len);
1005 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301006 else {
Jeff Johnson295189b2012-06-20 16:38:30 -07001007 if(old)
1008 memcpy (beacon->head,old->head,beacon->head_len);
1009 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301010
Jeff Johnson295189b2012-06-20 16:38:30 -07001011 if(params->tail) {
1012 memcpy (beacon->tail,params->tail,beacon->tail_len);
1013 }
1014 else {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301015 if(old)
Jeff Johnson295189b2012-06-20 16:38:30 -07001016 memcpy (beacon->tail,old->tail,beacon->tail_len);
1017 }
1018
1019 *ppBeacon = beacon;
1020
1021 kfree(old);
1022
1023 return 0;
1024
1025}
Jeff Johnson295189b2012-06-20 16:38:30 -07001026
1027v_U8_t* wlan_hdd_cfg80211_get_ie_ptr(v_U8_t *pIes, int length, v_U8_t eid)
1028{
1029 int left = length;
1030 v_U8_t *ptr = pIes;
1031 v_U8_t elem_id,elem_len;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301032
Jeff Johnson295189b2012-06-20 16:38:30 -07001033 while(left >= 2)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301034 {
Jeff Johnson295189b2012-06-20 16:38:30 -07001035 elem_id = ptr[0];
1036 elem_len = ptr[1];
1037 left -= 2;
1038 if(elem_len > left)
1039 {
1040 hddLog(VOS_TRACE_LEVEL_FATAL,
Madan Mohan Koyyalamudi8bdd3112012-09-24 13:55:14 -07001041 FL("****Invalid IEs eid = %d elem_len=%d left=%d*****"),
Jeff Johnson295189b2012-06-20 16:38:30 -07001042 eid,elem_len,left);
1043 return NULL;
1044 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301045 if (elem_id == eid)
Jeff Johnson295189b2012-06-20 16:38:30 -07001046 {
1047 return ptr;
1048 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301049
Jeff Johnson295189b2012-06-20 16:38:30 -07001050 left -= elem_len;
1051 ptr += (elem_len + 2);
1052 }
1053 return NULL;
1054}
1055
Jeff Johnson295189b2012-06-20 16:38:30 -07001056/* Check if rate is 11g rate or not */
1057static int wlan_hdd_rate_is_11g(u8 rate)
1058{
Sanjay Devnani28322e22013-06-21 16:13:40 -07001059 static const u8 gRateArray[8] = {12, 18, 24, 36, 48, 72, 96, 108}; /* actual rate * 2 */
Jeff Johnson295189b2012-06-20 16:38:30 -07001060 u8 i;
1061 for (i = 0; i < 8; i++)
1062 {
1063 if(rate == gRateArray[i])
1064 return TRUE;
1065 }
1066 return FALSE;
1067}
1068
1069/* Check for 11g rate and set proper 11g only mode */
1070static void wlan_hdd_check_11gmode(u8 *pIe, u8* require_ht,
1071 u8* pCheckRatesfor11g, eSapPhyMode* pSapHw_mode)
1072{
1073 u8 i, num_rates = pIe[0];
1074
1075 pIe += 1;
1076 for ( i = 0; i < num_rates; i++)
1077 {
1078 if( *pCheckRatesfor11g && (TRUE == wlan_hdd_rate_is_11g(pIe[i] & RATE_MASK)))
1079 {
1080 /* If rate set have 11g rate than change the mode to 11G */
1081 *pSapHw_mode = eSAP_DOT11_MODE_11g;
1082 if (pIe[i] & BASIC_RATE_MASK)
1083 {
1084 /* If we have 11g rate as basic rate, it means mode
1085 is 11g only mode.
1086 */
1087 *pSapHw_mode = eSAP_DOT11_MODE_11g_ONLY;
1088 *pCheckRatesfor11g = FALSE;
1089 }
1090 }
1091 else if((BASIC_RATE_MASK | WLAN_BSS_MEMBERSHIP_SELECTOR_HT_PHY) == pIe[i])
1092 {
1093 *require_ht = TRUE;
1094 }
1095 }
1096 return;
1097}
1098
1099static void wlan_hdd_set_sapHwmode(hdd_adapter_t *pHostapdAdapter)
1100{
1101 tsap_Config_t *pConfig = &pHostapdAdapter->sessionCtx.ap.sapConfig;
1102 beacon_data_t *pBeacon = pHostapdAdapter->sessionCtx.ap.beacon;
1103 struct ieee80211_mgmt *pMgmt_frame = (struct ieee80211_mgmt*)pBeacon->head;
1104 u8 checkRatesfor11g = TRUE;
1105 u8 require_ht = FALSE;
1106 u8 *pIe=NULL;
1107
1108 pConfig->SapHw_mode= eSAP_DOT11_MODE_11b;
1109
1110 pIe = wlan_hdd_cfg80211_get_ie_ptr(&pMgmt_frame->u.beacon.variable[0],
1111 pBeacon->head_len, WLAN_EID_SUPP_RATES);
1112 if (pIe != NULL)
1113 {
1114 pIe += 1;
1115 wlan_hdd_check_11gmode(pIe, &require_ht, &checkRatesfor11g,
1116 &pConfig->SapHw_mode);
1117 }
1118
1119 pIe = wlan_hdd_cfg80211_get_ie_ptr(pBeacon->tail, pBeacon->tail_len,
1120 WLAN_EID_EXT_SUPP_RATES);
1121 if (pIe != NULL)
1122 {
1123
1124 pIe += 1;
1125 wlan_hdd_check_11gmode(pIe, &require_ht, &checkRatesfor11g,
1126 &pConfig->SapHw_mode);
1127 }
1128
1129 if( pConfig->channel > 14 )
1130 {
1131 pConfig->SapHw_mode= eSAP_DOT11_MODE_11a;
1132 }
1133
1134 pIe = wlan_hdd_cfg80211_get_ie_ptr(pBeacon->tail, pBeacon->tail_len,
1135 WLAN_EID_HT_CAPABILITY);
1136
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301137 if(pIe)
Jeff Johnson295189b2012-06-20 16:38:30 -07001138 {
1139 pConfig->SapHw_mode= eSAP_DOT11_MODE_11n;
1140 if(require_ht)
1141 pConfig->SapHw_mode= eSAP_DOT11_MODE_11n_ONLY;
1142 }
1143}
1144
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05301145static int wlan_hdd_add_ie(hdd_adapter_t* pHostapdAdapter, v_U8_t *genie,
1146 v_U8_t *total_ielen, v_U8_t *oui, v_U8_t oui_size)
1147{
1148 v_U8_t ielen = 0;
1149 v_U8_t *pIe = NULL;
1150 beacon_data_t *pBeacon = pHostapdAdapter->sessionCtx.ap.beacon;
1151
1152 pIe = wlan_hdd_get_vendor_oui_ie_ptr(oui, oui_size,
1153 pBeacon->tail, pBeacon->tail_len);
1154
1155 if (pIe)
1156 {
1157 ielen = pIe[1] + 2;
1158 if ((*total_ielen + ielen) <= MAX_GENIE_LEN)
1159 {
1160 vos_mem_copy(&genie[*total_ielen], pIe, ielen);
1161 }
1162 else
1163 {
1164 hddLog( VOS_TRACE_LEVEL_ERROR, "**Ie Length is too big***");
1165 return -EINVAL;
1166 }
1167 *total_ielen += ielen;
1168 }
1169 return 0;
1170}
1171
Jeff Johnson04dd8a82012-06-29 20:41:40 -07001172#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
Jeff Johnson295189b2012-06-20 16:38:30 -07001173static int wlan_hdd_cfg80211_update_apies(hdd_adapter_t* pHostapdAdapter,
1174 struct beacon_parameters *params)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07001175#else
1176static int wlan_hdd_cfg80211_update_apies(hdd_adapter_t* pHostapdAdapter,
1177 struct cfg80211_beacon_data *params)
1178#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07001179{
1180 v_U8_t *genie;
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05301181 v_U8_t total_ielen = 0;
Jeff Johnson295189b2012-06-20 16:38:30 -07001182 v_U8_t addIE[1] = {0};
Jeff Johnsone7245742012-09-05 17:12:55 -07001183 int ret = 0;
Jeff Johnson295189b2012-06-20 16:38:30 -07001184
1185 genie = vos_mem_malloc(MAX_GENIE_LEN);
1186
1187 if(genie == NULL) {
1188
1189 return -ENOMEM;
1190 }
1191
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05301192 if (0 != wlan_hdd_add_ie(pHostapdAdapter, genie,
1193 &total_ielen, WPS_OUI_TYPE, WPS_OUI_TYPE_SIZE))
Jeff Johnson295189b2012-06-20 16:38:30 -07001194 {
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05301195 ret = -EINVAL;
1196 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07001197 }
1198
1199#ifdef WLAN_FEATURE_WFD
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05301200 if (0 != wlan_hdd_add_ie(pHostapdAdapter, genie,
1201 &total_ielen, WFD_OUI_TYPE, WFD_OUI_TYPE_SIZE))
1202 {
1203 ret = -EINVAL;
1204 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07001205 }
1206#endif
1207
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05301208 if (0 != wlan_hdd_add_ie(pHostapdAdapter, genie,
1209 &total_ielen, P2P_OUI_TYPE, P2P_OUI_TYPE_SIZE))
Jeff Johnson295189b2012-06-20 16:38:30 -07001210 {
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05301211 ret = -EINVAL;
1212 goto done;
1213 }
1214
1215 if (WLAN_HDD_SOFTAP == pHostapdAdapter->device_mode)
1216 {
1217 if (0 != wlan_hdd_add_ie(pHostapdAdapter, genie,
1218 &total_ielen, SS_OUI_TYPE, SS_OUI_TYPE_SIZE))
Jeff Johnson295189b2012-06-20 16:38:30 -07001219 {
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05301220 ret = -EINVAL;
1221 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07001222 }
Jeff Johnson295189b2012-06-20 16:38:30 -07001223 }
Jeff Johnson295189b2012-06-20 16:38:30 -07001224
1225 if (ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
1226 WNI_CFG_PROBE_RSP_BCN_ADDNIE_DATA, genie, total_ielen, NULL,
1227 eANI_BOOLEAN_FALSE)==eHAL_STATUS_FAILURE)
1228 {
1229 hddLog(LOGE,
1230 "Could not pass on WNI_CFG_PROBE_RSP_BCN_ADDNIE_DATA to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07001231 ret = -EINVAL;
1232 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07001233 }
1234
1235 if (ccmCfgSetInt((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
1236 WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG, 1,NULL,
1237 test_bit(SOFTAP_BSS_STARTED, &pHostapdAdapter->event_flags) ?
1238 eANI_BOOLEAN_TRUE : eANI_BOOLEAN_FALSE)
1239 ==eHAL_STATUS_FAILURE)
1240 {
1241 hddLog(LOGE,
1242 "Could not pass on WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07001243 ret = -EINVAL;
1244 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07001245 }
1246
1247 // Added for ProResp IE
1248 if ( (params->proberesp_ies != NULL) && (params->proberesp_ies_len != 0) )
1249 {
1250 u16 rem_probe_resp_ie_len = params->proberesp_ies_len;
1251 u8 probe_rsp_ie_len[3] = {0};
1252 u8 counter = 0;
1253 /* Check Probe Resp Length if it is greater then 255 then Store
1254 Probe Resp IEs into WNI_CFG_PROBE_RSP_ADDNIE_DATA1 &
1255 WNI_CFG_PROBE_RSP_ADDNIE_DATA2 CFG Variable As We are not able
1256 Store More then 255 bytes into One Variable.
1257 */
1258 while ((rem_probe_resp_ie_len > 0) && (counter < 3))
1259 {
1260 if (rem_probe_resp_ie_len > MAX_CFG_STRING_LEN)
1261 {
1262 probe_rsp_ie_len[counter++] = MAX_CFG_STRING_LEN;
1263 rem_probe_resp_ie_len -= MAX_CFG_STRING_LEN;
1264 }
1265 else
1266 {
1267 probe_rsp_ie_len[counter++] = rem_probe_resp_ie_len;
1268 rem_probe_resp_ie_len = 0;
1269 }
1270 }
1271
1272 rem_probe_resp_ie_len = 0;
1273
1274 if (probe_rsp_ie_len[0] > 0)
1275 {
1276 if (ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
1277 WNI_CFG_PROBE_RSP_ADDNIE_DATA1,
1278 (tANI_U8*)&params->proberesp_ies[rem_probe_resp_ie_len],
1279 probe_rsp_ie_len[0], NULL,
1280 eANI_BOOLEAN_FALSE) == eHAL_STATUS_FAILURE)
1281 {
1282 hddLog(LOGE,
1283 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_DATA1 to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07001284 ret = -EINVAL;
1285 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07001286 }
1287 rem_probe_resp_ie_len += probe_rsp_ie_len[0];
1288 }
1289
1290 if (probe_rsp_ie_len[1] > 0)
1291 {
1292 if (ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
1293 WNI_CFG_PROBE_RSP_ADDNIE_DATA2,
1294 (tANI_U8*)&params->proberesp_ies[rem_probe_resp_ie_len],
1295 probe_rsp_ie_len[1], NULL,
1296 eANI_BOOLEAN_FALSE) == eHAL_STATUS_FAILURE)
1297 {
1298 hddLog(LOGE,
1299 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_DATA2 to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07001300 ret = -EINVAL;
1301 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07001302 }
1303 rem_probe_resp_ie_len += probe_rsp_ie_len[1];
1304 }
1305
1306 if (probe_rsp_ie_len[2] > 0)
1307 {
1308 if (ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
1309 WNI_CFG_PROBE_RSP_ADDNIE_DATA3,
1310 (tANI_U8*)&params->proberesp_ies[rem_probe_resp_ie_len],
1311 probe_rsp_ie_len[2], NULL,
1312 eANI_BOOLEAN_FALSE) == eHAL_STATUS_FAILURE)
1313 {
1314 hddLog(LOGE,
1315 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_DATA3 to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07001316 ret = -EINVAL;
1317 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07001318 }
1319 rem_probe_resp_ie_len += probe_rsp_ie_len[2];
1320 }
1321
1322 if (probe_rsp_ie_len[1] == 0 )
1323 {
1324 if ( eHAL_STATUS_FAILURE == ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
1325 WNI_CFG_PROBE_RSP_ADDNIE_DATA2, (tANI_U8*)addIE, 0, NULL,
1326 eANI_BOOLEAN_FALSE) )
1327 {
1328 hddLog(LOGE,
1329 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_DATA2 to CCM\n");
1330 }
1331 }
1332
1333 if (probe_rsp_ie_len[2] == 0 )
1334 {
1335 if ( eHAL_STATUS_FAILURE == ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
1336 WNI_CFG_PROBE_RSP_ADDNIE_DATA3, (tANI_U8*)addIE, 0, NULL,
1337 eANI_BOOLEAN_FALSE) )
1338 {
1339 hddLog(LOGE,
1340 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_DATA3 to CCM\n");
1341 }
1342 }
1343
1344 if (ccmCfgSetInt((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
1345 WNI_CFG_PROBE_RSP_ADDNIE_FLAG, 1,NULL,
1346 test_bit(SOFTAP_BSS_STARTED, &pHostapdAdapter->event_flags) ?
1347 eANI_BOOLEAN_TRUE : eANI_BOOLEAN_FALSE)
1348 == eHAL_STATUS_FAILURE)
1349 {
1350 hddLog(LOGE,
1351 "Could not pass on WNI_CFG_PROBE_RSP_ADDNIE_FLAG to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07001352 ret = -EINVAL;
1353 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07001354 }
1355 }
1356 else
1357 {
1358 // Reset WNI_CFG_PROBE_RSP Flags
1359 wlan_hdd_reset_prob_rspies(pHostapdAdapter);
1360
1361 hddLog(VOS_TRACE_LEVEL_INFO,
1362 "%s: No Probe Response IE received in set beacon",
1363 __func__);
1364 }
1365
1366 // Added for AssocResp IE
1367 if ( (params->assocresp_ies != NULL) && (params->assocresp_ies_len != 0) )
1368 {
1369 if (ccmCfgSetStr((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
1370 WNI_CFG_ASSOC_RSP_ADDNIE_DATA, (tANI_U8*)params->assocresp_ies,
1371 params->assocresp_ies_len, NULL,
1372 eANI_BOOLEAN_FALSE) == eHAL_STATUS_FAILURE)
1373 {
1374 hddLog(LOGE,
1375 "Could not pass on WNI_CFG_ASSOC_RSP_ADDNIE_DATA to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07001376 ret = -EINVAL;
1377 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07001378 }
1379
1380 if (ccmCfgSetInt((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
1381 WNI_CFG_ASSOC_RSP_ADDNIE_FLAG, 1, NULL,
1382 test_bit(SOFTAP_BSS_STARTED, &pHostapdAdapter->event_flags) ?
1383 eANI_BOOLEAN_TRUE : eANI_BOOLEAN_FALSE)
1384 == eHAL_STATUS_FAILURE)
1385 {
1386 hddLog(LOGE,
1387 "Could not pass on WNI_CFG_ASSOC_RSP_ADDNIE_FLAG to CCM");
Jeff Johnsone7245742012-09-05 17:12:55 -07001388 ret = -EINVAL;
1389 goto done;
Jeff Johnson295189b2012-06-20 16:38:30 -07001390 }
1391 }
1392 else
1393 {
1394 hddLog(VOS_TRACE_LEVEL_INFO,
1395 "%s: No Assoc Response IE received in set beacon",
1396 __func__);
1397
1398 if ( eHAL_STATUS_FAILURE == ccmCfgSetInt((WLAN_HDD_GET_CTX(pHostapdAdapter))->hHal,
1399 WNI_CFG_ASSOC_RSP_ADDNIE_FLAG, 0, NULL,
1400 eANI_BOOLEAN_FALSE) )
1401 {
1402 hddLog(LOGE,
1403 "Could not pass on WNI_CFG_ASSOC_RSP_ADDNIE_FLAG to CCM\n");
1404 }
1405 }
1406
Jeff Johnsone7245742012-09-05 17:12:55 -07001407done:
Jeff Johnson295189b2012-06-20 16:38:30 -07001408 vos_mem_free(genie);
Gopichand Nakkala2b25f4e2013-03-21 19:14:07 +05301409 return ret;
Jeff Johnson295189b2012-06-20 16:38:30 -07001410}
Jeff Johnson295189b2012-06-20 16:38:30 -07001411
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301412/*
Jeff Johnson295189b2012-06-20 16:38:30 -07001413 * FUNCTION: wlan_hdd_validate_operation_channel
1414 * called by wlan_hdd_cfg80211_start_bss() and
1415 * wlan_hdd_cfg80211_set_channel()
1416 * This function validates whether given channel is part of valid
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301417 * channel list.
1418 */
Varun Reddy Yeturu920df212013-05-22 08:07:23 -07001419VOS_STATUS wlan_hdd_validate_operation_channel(hdd_adapter_t *pAdapter,int channel)
Jeff Johnson295189b2012-06-20 16:38:30 -07001420{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301421
Jeff Johnson295189b2012-06-20 16:38:30 -07001422 v_U32_t num_ch = 0;
1423 u8 valid_ch[WNI_CFG_VALID_CHANNEL_LIST_LEN];
1424 u32 indx = 0;
1425 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +05301426 v_U8_t fValidChannel = FALSE, count = 0;
1427 hdd_config_t *hdd_pConfig_ini= (WLAN_HDD_GET_CTX(pAdapter))->cfg_ini;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301428
Jeff Johnson295189b2012-06-20 16:38:30 -07001429 num_ch = WNI_CFG_VALID_CHANNEL_LIST_LEN;
1430
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +05301431 if ( hdd_pConfig_ini->sapAllowAllChannel)
Jeff Johnson295189b2012-06-20 16:38:30 -07001432 {
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +05301433 /* Validate the channel */
1434 for (count = RF_CHAN_1 ; count <= RF_CHAN_165 ; count++)
Jeff Johnson295189b2012-06-20 16:38:30 -07001435 {
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +05301436 if ( channel == rfChannels[count].channelNum )
1437 {
1438 fValidChannel = TRUE;
1439 break;
1440 }
1441 }
1442 if (fValidChannel != TRUE)
1443 {
1444 hddLog(VOS_TRACE_LEVEL_ERROR,
1445 "%s: Invalid Channel [%d]", __func__, channel);
1446 return VOS_STATUS_E_FAILURE;
Jeff Johnson295189b2012-06-20 16:38:30 -07001447 }
1448 }
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +05301449 else
Jeff Johnson295189b2012-06-20 16:38:30 -07001450 {
Madan Mohan Koyylamudi64267f72013-02-05 14:07:08 +05301451 if (0 != ccmCfgGetStr(hHal, WNI_CFG_VALID_CHANNEL_LIST,
1452 valid_ch, &num_ch))
1453 {
1454 hddLog(VOS_TRACE_LEVEL_ERROR,
1455 "%s: failed to get valid channel list", __func__);
1456 return VOS_STATUS_E_FAILURE;
1457 }
1458 for (indx = 0; indx < num_ch; indx++)
1459 {
1460 if (channel == valid_ch[indx])
1461 {
1462 break;
1463 }
1464 }
1465
1466 if (indx >= num_ch)
1467 {
1468 hddLog(VOS_TRACE_LEVEL_ERROR,
1469 "%s: Invalid Channel [%d]", __func__, channel);
1470 return VOS_STATUS_E_FAILURE;
1471 }
Jeff Johnson295189b2012-06-20 16:38:30 -07001472 }
1473 return VOS_STATUS_SUCCESS;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301474
Jeff Johnson295189b2012-06-20 16:38:30 -07001475}
1476
Viral Modi3a32cc52013-02-08 11:14:52 -08001477/**
1478 * FUNCTION: wlan_hdd_cfg80211_set_channel
1479 * This function is used to set the channel number
1480 */
1481static int wlan_hdd_cfg80211_set_channel( struct wiphy *wiphy, struct net_device *dev,
1482 struct ieee80211_channel *chan,
1483 enum nl80211_channel_type channel_type
1484 )
1485{
1486 v_U32_t num_ch = 0;
Jeff Johnson4416a782013-03-25 14:17:50 -07001487 int channel = 0;
Viral Modi3a32cc52013-02-08 11:14:52 -08001488 hdd_adapter_t *pAdapter = NULL;
1489 int freq = chan->center_freq; /* freq is in MHZ */
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05301490 hdd_context_t *pHddCtx;
1491 int status;
Viral Modi3a32cc52013-02-08 11:14:52 -08001492
1493 ENTER();
1494
1495 if( NULL == dev )
1496 {
1497 hddLog(VOS_TRACE_LEVEL_ERROR,
1498 "%s: Called with dev = NULL.\n", __func__);
1499 return -ENODEV;
1500 }
1501 pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
1502
1503 hddLog(VOS_TRACE_LEVEL_INFO,
1504 "%s: device_mode = %d freq = %d \n",__func__,
1505 pAdapter->device_mode, chan->center_freq);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05301506
1507 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
1508 status = wlan_hdd_validate_context(pHddCtx);
1509
1510 if (0 != status)
Viral Modi3a32cc52013-02-08 11:14:52 -08001511 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05301512 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
1513 "%s: HDD context is not valid", __func__);
1514 return status;
Viral Modi3a32cc52013-02-08 11:14:52 -08001515 }
1516
1517 /*
1518 * Do freq to chan conversion
1519 * TODO: for 11a
1520 */
1521
1522 channel = ieee80211_frequency_to_channel(freq);
1523
1524 /* Check freq range */
1525 if ((WNI_CFG_CURRENT_CHANNEL_STAMIN > channel) ||
1526 (WNI_CFG_CURRENT_CHANNEL_STAMAX < channel))
1527 {
1528 hddLog(VOS_TRACE_LEVEL_ERROR,
1529 "%s: Channel [%d] is outside valid range from %d to %d\n",
1530 __func__, channel, WNI_CFG_CURRENT_CHANNEL_STAMIN,
1531 WNI_CFG_CURRENT_CHANNEL_STAMAX);
1532 return -EINVAL;
1533 }
1534
1535 num_ch = WNI_CFG_VALID_CHANNEL_LIST_LEN;
1536
Gopichand Nakkala6ab19562013-03-07 13:59:42 +05301537 if ((WLAN_HDD_SOFTAP != pAdapter->device_mode) &&
1538 (WLAN_HDD_P2P_GO != pAdapter->device_mode))
Viral Modi3a32cc52013-02-08 11:14:52 -08001539 {
1540 if(VOS_STATUS_SUCCESS != wlan_hdd_validate_operation_channel(pAdapter,channel))
1541 {
1542 hddLog(VOS_TRACE_LEVEL_ERROR,
1543 "%s: Invalid Channel [%d] \n", __func__, channel);
1544 return -EINVAL;
1545 }
1546 hddLog(VOS_TRACE_LEVEL_INFO_HIGH,
1547 "%s: set channel to [%d] for device mode =%d",
1548 __func__, channel,pAdapter->device_mode);
1549 }
1550 if( (pAdapter->device_mode == WLAN_HDD_INFRA_STATION)
Viral Modi3a32cc52013-02-08 11:14:52 -08001551 || (pAdapter->device_mode == WLAN_HDD_P2P_CLIENT)
Viral Modi3a32cc52013-02-08 11:14:52 -08001552 )
1553 {
1554 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
1555 tCsrRoamProfile * pRoamProfile = &pWextState->roamProfile;
1556 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
1557
1558 if (eConnectionState_IbssConnected == pHddStaCtx->conn_info.connState)
1559 {
1560 /* Link is up then return cant set channel*/
1561 hddLog( VOS_TRACE_LEVEL_ERROR,
1562 "%s: IBSS Associated, can't set the channel\n", __func__);
1563 return -EINVAL;
1564 }
1565
1566 num_ch = pRoamProfile->ChannelInfo.numOfChannels = 1;
1567 pHddStaCtx->conn_info.operationChannel = channel;
1568 pRoamProfile->ChannelInfo.ChannelList =
1569 &pHddStaCtx->conn_info.operationChannel;
1570 }
1571 else if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Viral Modi3a32cc52013-02-08 11:14:52 -08001572 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Viral Modi3a32cc52013-02-08 11:14:52 -08001573 )
1574 {
Gopichand Nakkalac8fa7b62013-03-11 13:56:41 +05301575 if (WLAN_HDD_P2P_GO == pAdapter->device_mode)
1576 {
1577 if(VOS_STATUS_SUCCESS !=
1578 wlan_hdd_validate_operation_channel(pAdapter,channel))
1579 {
1580 hddLog(VOS_TRACE_LEVEL_ERROR,
1581 "%s: Invalid Channel [%d] \n", __func__, channel);
1582 return -EINVAL;
1583 }
1584 (WLAN_HDD_GET_AP_CTX_PTR(pAdapter))->sapConfig.channel = channel;
1585 }
1586 else if ( WLAN_HDD_SOFTAP == pAdapter->device_mode )
Viral Modi3a32cc52013-02-08 11:14:52 -08001587 {
1588 hdd_config_t *cfg_param = (WLAN_HDD_GET_CTX(pAdapter))->cfg_ini;
1589
1590 /* If auto channel selection is configured as enable/ 1 then ignore
1591 channel set by supplicant
1592 */
1593 if ( cfg_param->apAutoChannelSelection )
1594 {
Gopichand Nakkalac8fa7b62013-03-11 13:56:41 +05301595 (WLAN_HDD_GET_AP_CTX_PTR(pAdapter))->sapConfig.channel =
1596 AUTO_CHANNEL_SELECT;
Viral Modi3a32cc52013-02-08 11:14:52 -08001597 hddLog(VOS_TRACE_LEVEL_INFO_HIGH,
1598 "%s: set channel to auto channel (0) for device mode =%d",
1599 __func__, pAdapter->device_mode);
1600 }
Gopichand Nakkalac8fa7b62013-03-11 13:56:41 +05301601 else
1602 {
1603 if(VOS_STATUS_SUCCESS !=
1604 wlan_hdd_validate_operation_channel(pAdapter,channel))
1605 {
1606 hddLog(VOS_TRACE_LEVEL_ERROR,
1607 "%s: Invalid Channel [%d] \n", __func__, channel);
1608 return -EINVAL;
1609 }
1610 (WLAN_HDD_GET_AP_CTX_PTR(pAdapter))->sapConfig.channel = channel;
1611 }
Viral Modi3a32cc52013-02-08 11:14:52 -08001612 }
1613 }
1614 else
1615 {
1616 hddLog(VOS_TRACE_LEVEL_FATAL,
1617 "%s: Invalid device mode failed to set valid channel", __func__);
1618 return -EINVAL;
1619 }
1620 EXIT();
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05301621 return status;
Viral Modi3a32cc52013-02-08 11:14:52 -08001622}
1623
Jeff Johnson295189b2012-06-20 16:38:30 -07001624#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
1625static int wlan_hdd_cfg80211_start_bss(hdd_adapter_t *pHostapdAdapter,
1626 struct beacon_parameters *params)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07001627#else
1628static int wlan_hdd_cfg80211_start_bss(hdd_adapter_t *pHostapdAdapter,
1629 struct cfg80211_beacon_data *params,
1630 const u8 *ssid, size_t ssid_len,
1631 enum nl80211_hidden_ssid hidden_ssid)
1632#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07001633{
1634 tsap_Config_t *pConfig;
1635 beacon_data_t *pBeacon = NULL;
1636 struct ieee80211_mgmt *pMgmt_frame;
1637 v_U8_t *pIe=NULL;
1638 v_U16_t capab_info;
1639 eCsrAuthType RSNAuthType;
1640 eCsrEncryptionType RSNEncryptType;
1641 eCsrEncryptionType mcRSNEncryptType;
1642 int status = VOS_STATUS_SUCCESS;
1643 tpWLAN_SAPEventCB pSapEventCallback;
1644 hdd_hostapd_state_t *pHostapdState;
1645 v_U8_t wpaRsnIEdata[(SIR_MAC_MAX_IE_LENGTH * 2)+4]; //Max ie length 255 * 2(WPA+RSN) + 2 bytes (vendor specific ID) * 2
1646 v_CONTEXT_t pVosContext = (WLAN_HDD_GET_CTX(pHostapdAdapter))->pvosContext;
Madan Mohan Koyylamudia16d0202013-02-01 11:05:57 +05301647 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pHostapdAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07001648 struct qc_mac_acl_entry *acl_entry = NULL;
1649 v_SINT_t i;
Madan Mohan Koyyalamudi543172b2012-12-05 16:40:18 -08001650 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pHostapdAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07001651
1652 ENTER();
1653
1654 pHostapdState = WLAN_HDD_GET_HOSTAP_STATE_PTR(pHostapdAdapter);
1655
1656 pConfig = &pHostapdAdapter->sessionCtx.ap.sapConfig;
1657
1658 pBeacon = pHostapdAdapter->sessionCtx.ap.beacon;
1659
1660 pMgmt_frame = (struct ieee80211_mgmt*)pBeacon->head;
1661
1662 pConfig->beacon_int = pMgmt_frame->u.beacon.beacon_int;
1663
1664 //channel is already set in the set_channel Call back
1665 //pConfig->channel = pCommitConfig->channel;
1666
1667 /*Protection parameter to enable or disable*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301668 pConfig->protEnabled =
Jeff Johnson295189b2012-06-20 16:38:30 -07001669 (WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini->apProtEnabled;
1670
1671 pConfig->dtim_period = pBeacon->dtim_period;
1672
1673 hddLog(VOS_TRACE_LEVEL_INFO_HIGH,"****pConfig->dtim_period=%d***\n",
1674 pConfig->dtim_period);
1675
1676
Madan Mohan Koyyalamudie0ca11f2012-11-27 15:57:52 -08001677 if (pHostapdAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson32d95a32012-09-10 13:15:23 -07001678 {
1679 pIe = wlan_hdd_cfg80211_get_ie_ptr(pBeacon->tail, pBeacon->tail_len,
Jeff Johnson295189b2012-06-20 16:38:30 -07001680 WLAN_EID_COUNTRY);
Jeff Johnson32d95a32012-09-10 13:15:23 -07001681 if(pIe)
Jeff Johnson295189b2012-06-20 16:38:30 -07001682 {
Jeff Johnson32d95a32012-09-10 13:15:23 -07001683 tANI_BOOLEAN restartNeeded;
Jeff Johnson32d95a32012-09-10 13:15:23 -07001684 pConfig->ieee80211d = 1;
1685 vos_mem_copy(pConfig->countryCode, &pIe[2], 3);
1686 sme_setRegInfo(hHal, pConfig->countryCode);
1687 sme_ResetCountryCodeInformation(hHal, &restartNeeded);
Jeff Johnson295189b2012-06-20 16:38:30 -07001688 }
Jeff Johnson32d95a32012-09-10 13:15:23 -07001689 else
1690 {
1691 pConfig->ieee80211d = 0;
1692 }
Madan Mohan Koyylamudia16d0202013-02-01 11:05:57 +05301693 /*
1694 * If auto channel is configured i.e. channel is 0,
1695 * so skip channel validation.
1696 */
1697 if( AUTO_CHANNEL_SELECT != pConfig->channel )
1698 {
1699 if(VOS_STATUS_SUCCESS != wlan_hdd_validate_operation_channel(pHostapdAdapter,pConfig->channel))
1700 {
1701 hddLog(VOS_TRACE_LEVEL_ERROR,
1702 "%s: Invalid Channel [%d] \n", __func__, pConfig->channel);
1703 return -EINVAL;
1704 }
1705 }
1706 else
1707 {
1708 if(1 != pHddCtx->is_dynamic_channel_range_set)
1709 {
1710 hdd_config_t *hdd_pConfig= (WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini;
1711 WLANSAP_SetChannelRange(hHal, hdd_pConfig->apStartChannelNum,
1712 hdd_pConfig->apEndChannelNum,hdd_pConfig->apOperatingBand);
1713 }
1714 pHddCtx->is_dynamic_channel_range_set = 0;
1715 }
Jeff Johnson295189b2012-06-20 16:38:30 -07001716 }
Jeff Johnson32d95a32012-09-10 13:15:23 -07001717 else
Jeff Johnson295189b2012-06-20 16:38:30 -07001718 {
1719 pConfig->ieee80211d = 0;
1720 }
1721 pConfig->authType = eSAP_AUTO_SWITCH;
1722
1723 capab_info = pMgmt_frame->u.beacon.capab_info;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301724
1725 pConfig->privacy = (pMgmt_frame->u.beacon.capab_info &
Jeff Johnson295189b2012-06-20 16:38:30 -07001726 WLAN_CAPABILITY_PRIVACY) ? VOS_TRUE : VOS_FALSE;
1727
1728 (WLAN_HDD_GET_AP_CTX_PTR(pHostapdAdapter))->uPrivacy = pConfig->privacy;
1729
1730 /*Set wps station to configured*/
1731 pIe = wlan_hdd_get_wps_ie_ptr(pBeacon->tail, pBeacon->tail_len);
1732
1733 if(pIe)
1734 {
1735 if(pIe[1] < (2 + WPS_OUI_TYPE_SIZE))
1736 {
1737 hddLog( VOS_TRACE_LEVEL_ERROR, "**Wps Ie Length is too small***\n");
1738 return -EINVAL;
1739 }
1740 else if(memcmp(&pIe[2], WPS_OUI_TYPE, WPS_OUI_TYPE_SIZE) == 0)
1741 {
Madan Mohan Koyyalamudi8bdd3112012-09-24 13:55:14 -07001742 hddLog( VOS_TRACE_LEVEL_INFO, "** WPS IE(len %d) ***", (pIe[1]+2));
Jeff Johnson295189b2012-06-20 16:38:30 -07001743 /* Check 15 bit of WPS IE as it contain information for wps state
1744 * WPS state
1745 */
1746 if(SAP_WPS_ENABLED_UNCONFIGURED == pIe[15])
1747 {
1748 pConfig->wps_state = SAP_WPS_ENABLED_UNCONFIGURED;
1749 } else if(SAP_WPS_ENABLED_CONFIGURED == pIe[15])
1750 {
1751 pConfig->wps_state = SAP_WPS_ENABLED_CONFIGURED;
1752 }
1753 }
1754 }
1755 else
1756 {
1757 pConfig->wps_state = SAP_WPS_DISABLED;
1758 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301759 pConfig->fwdWPSPBCProbeReq = 1; // Forward WPS PBC probe request frame up
Jeff Johnson295189b2012-06-20 16:38:30 -07001760
1761 pConfig->RSNWPAReqIELength = 0;
1762 pConfig->pRSNWPAReqIE = NULL;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301763 pIe = wlan_hdd_cfg80211_get_ie_ptr(pBeacon->tail, pBeacon->tail_len,
Jeff Johnson295189b2012-06-20 16:38:30 -07001764 WLAN_EID_RSN);
1765 if(pIe && pIe[1])
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301766 {
Jeff Johnson295189b2012-06-20 16:38:30 -07001767 pConfig->RSNWPAReqIELength = pIe[1] + 2;
1768 memcpy(&wpaRsnIEdata[0], pIe, pConfig->RSNWPAReqIELength);
1769 pConfig->pRSNWPAReqIE = &wpaRsnIEdata[0];
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301770 /* The actual processing may eventually be more extensive than
1771 * this. Right now, just consume any PMKIDs that are sent in
Jeff Johnson295189b2012-06-20 16:38:30 -07001772 * by the app.
1773 * */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301774 status = hdd_softap_unpackIE(
Jeff Johnson295189b2012-06-20 16:38:30 -07001775 vos_get_context( VOS_MODULE_ID_SME, pVosContext),
1776 &RSNEncryptType,
1777 &mcRSNEncryptType,
1778 &RSNAuthType,
1779 pConfig->pRSNWPAReqIE[1]+2,
1780 pConfig->pRSNWPAReqIE );
1781
1782 if( VOS_STATUS_SUCCESS == status )
1783 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301784 /* Now copy over all the security attributes you have
1785 * parsed out
Jeff Johnson295189b2012-06-20 16:38:30 -07001786 * */
1787 pConfig->RSNEncryptType = RSNEncryptType; // Use the cipher type in the RSN IE
1788 pConfig->mcRSNEncryptType = mcRSNEncryptType;
1789 (WLAN_HDD_GET_AP_CTX_PTR(pHostapdAdapter))->ucEncryptType
1790 = RSNEncryptType;
Gopichand Nakkala66c0bd02013-04-10 11:36:29 +05301791 hddLog( LOG1, FL("CSR AuthType = %d, "
Jeff Johnson295189b2012-06-20 16:38:30 -07001792 "EncryptionType = %d mcEncryptionType = %d\n"),
1793 RSNAuthType, RSNEncryptType, mcRSNEncryptType);
1794 }
1795 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301796
Jeff Johnson295189b2012-06-20 16:38:30 -07001797 pIe = wlan_hdd_get_vendor_oui_ie_ptr(WPA_OUI_TYPE, WPA_OUI_TYPE_SIZE,
1798 pBeacon->tail, pBeacon->tail_len);
1799
1800 if(pIe && pIe[1] && (pIe[0] == DOT11F_EID_WPA))
1801 {
1802 if (pConfig->pRSNWPAReqIE)
1803 {
1804 /*Mixed mode WPA/WPA2*/
1805 memcpy((&wpaRsnIEdata[0] + pConfig->RSNWPAReqIELength), pIe, pIe[1] + 2);
1806 pConfig->RSNWPAReqIELength += pIe[1] + 2;
1807 }
1808 else
1809 {
1810 pConfig->RSNWPAReqIELength = pIe[1] + 2;
1811 memcpy(&wpaRsnIEdata[0], pIe, pConfig->RSNWPAReqIELength);
1812 pConfig->pRSNWPAReqIE = &wpaRsnIEdata[0];
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301813 status = hdd_softap_unpackIE(
Jeff Johnson295189b2012-06-20 16:38:30 -07001814 vos_get_context( VOS_MODULE_ID_SME, pVosContext),
1815 &RSNEncryptType,
1816 &mcRSNEncryptType,
1817 &RSNAuthType,
1818 pConfig->pRSNWPAReqIE[1]+2,
1819 pConfig->pRSNWPAReqIE );
1820
1821 if( VOS_STATUS_SUCCESS == status )
1822 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301823 /* Now copy over all the security attributes you have
1824 * parsed out
Jeff Johnson295189b2012-06-20 16:38:30 -07001825 * */
1826 pConfig->RSNEncryptType = RSNEncryptType; // Use the cipher type in the RSN IE
1827 pConfig->mcRSNEncryptType = mcRSNEncryptType;
1828 (WLAN_HDD_GET_AP_CTX_PTR(pHostapdAdapter))->ucEncryptType
1829 = RSNEncryptType;
Gopichand Nakkala66c0bd02013-04-10 11:36:29 +05301830 hddLog( LOG1, FL("CSR AuthType = %d, "
Jeff Johnson295189b2012-06-20 16:38:30 -07001831 "EncryptionType = %d mcEncryptionType = %d\n"),
1832 RSNAuthType, RSNEncryptType, mcRSNEncryptType);
1833 }
1834 }
1835 }
1836
Jeff Johnson4416a782013-03-25 14:17:50 -07001837 if (pConfig->RSNWPAReqIELength > sizeof wpaRsnIEdata) {
1838 hddLog( VOS_TRACE_LEVEL_ERROR, "**RSNWPAReqIELength is too large***");
1839 return -EINVAL;
1840 }
1841
Jeff Johnson295189b2012-06-20 16:38:30 -07001842 pConfig->SSIDinfo.ssidHidden = VOS_FALSE;
1843
Jeff Johnson04dd8a82012-06-29 20:41:40 -07001844#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
Jeff Johnson295189b2012-06-20 16:38:30 -07001845 if (params->ssid != NULL)
1846 {
1847 memcpy(pConfig->SSIDinfo.ssid.ssId, params->ssid, params->ssid_len);
1848 pConfig->SSIDinfo.ssid.length = params->ssid_len;
1849 if (params->hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE)
1850 pConfig->SSIDinfo.ssidHidden = VOS_TRUE;
1851 }
Jeff Johnson04dd8a82012-06-29 20:41:40 -07001852#else
1853 if (ssid != NULL)
1854 {
1855 memcpy(pConfig->SSIDinfo.ssid.ssId, ssid, ssid_len);
1856 pConfig->SSIDinfo.ssid.length = ssid_len;
1857 if (hidden_ssid != NL80211_HIDDEN_SSID_NOT_IN_USE)
1858 pConfig->SSIDinfo.ssidHidden = VOS_TRUE;
1859 }
1860#endif
1861
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301862 vos_mem_copy(pConfig->self_macaddr.bytes,
Jeff Johnson295189b2012-06-20 16:38:30 -07001863 pHostapdAdapter->macAddressCurrent.bytes, sizeof(v_MACADDR_t));
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301864
Jeff Johnson295189b2012-06-20 16:38:30 -07001865 /* default value */
1866 pConfig->SapMacaddr_acl = eSAP_ACCEPT_UNLESS_DENIED;
1867 pConfig->num_accept_mac = 0;
1868 pConfig->num_deny_mac = 0;
1869
1870 pIe = wlan_hdd_get_vendor_oui_ie_ptr(BLACKLIST_OUI_TYPE, WPA_OUI_TYPE_SIZE,
1871 pBeacon->tail, pBeacon->tail_len);
1872
1873 /* pIe for black list is following form:
1874 type : 1 byte
1875 length : 1 byte
1876 OUI : 4 bytes
1877 acl type : 1 byte
1878 no of mac addr in black list: 1 byte
1879 list of mac_acl_entries: variable, 6 bytes per mac address + sizeof(int) for vlan id
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301880 */
1881 if ((pIe != NULL) && (pIe[1] != 0))
Jeff Johnson295189b2012-06-20 16:38:30 -07001882 {
1883 pConfig->SapMacaddr_acl = pIe[6];
1884 pConfig->num_deny_mac = pIe[7];
1885 hddLog(VOS_TRACE_LEVEL_INFO,"acl type = %d no deny mac = %d\n",
1886 pIe[6], pIe[7]);
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05301887 if (pConfig->num_deny_mac > MAX_ACL_MAC_ADDRESS)
1888 pConfig->num_deny_mac = MAX_ACL_MAC_ADDRESS;
Jeff Johnson295189b2012-06-20 16:38:30 -07001889 acl_entry = (struct qc_mac_acl_entry *)(pIe + 8);
1890 for (i = 0; i < pConfig->num_deny_mac; i++)
1891 {
1892 vos_mem_copy(&pConfig->deny_mac[i], acl_entry->addr, sizeof(qcmacaddr));
1893 acl_entry++;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301894 }
Jeff Johnson295189b2012-06-20 16:38:30 -07001895 }
1896 pIe = wlan_hdd_get_vendor_oui_ie_ptr(WHITELIST_OUI_TYPE, WPA_OUI_TYPE_SIZE,
1897 pBeacon->tail, pBeacon->tail_len);
1898
1899 /* pIe for white list is following form:
1900 type : 1 byte
1901 length : 1 byte
1902 OUI : 4 bytes
1903 acl type : 1 byte
1904 no of mac addr in white list: 1 byte
1905 list of mac_acl_entries: variable, 6 bytes per mac address + sizeof(int) for vlan id
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301906 */
1907 if ((pIe != NULL) && (pIe[1] != 0))
Jeff Johnson295189b2012-06-20 16:38:30 -07001908 {
1909 pConfig->SapMacaddr_acl = pIe[6];
1910 pConfig->num_accept_mac = pIe[7];
1911 hddLog(VOS_TRACE_LEVEL_INFO,"acl type = %d no accept mac = %d\n",
1912 pIe[6], pIe[7]);
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05301913 if (pConfig->num_accept_mac > MAX_ACL_MAC_ADDRESS)
1914 pConfig->num_accept_mac = MAX_ACL_MAC_ADDRESS;
Jeff Johnson295189b2012-06-20 16:38:30 -07001915 acl_entry = (struct qc_mac_acl_entry *)(pIe + 8);
1916 for (i = 0; i < pConfig->num_accept_mac; i++)
1917 {
1918 vos_mem_copy(&pConfig->accept_mac[i], acl_entry->addr, sizeof(qcmacaddr));
1919 acl_entry++;
1920 }
1921 }
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05301922
Jeff Johnson295189b2012-06-20 16:38:30 -07001923 wlan_hdd_set_sapHwmode(pHostapdAdapter);
1924
Jeff Johnsone7245742012-09-05 17:12:55 -07001925#ifdef WLAN_FEATURE_11AC
Ravi Kumar Vaishnavbbaebbe2013-01-15 17:09:48 -08001926 /* Overwrite the hostapd setting for HW mode only for 11ac.
1927 * This is valid only if mode is set to 11n in hostapd and either AUTO or 11ac in .ini .
1928 * Otherwise, leave whatever is set in hostapd (a OR b OR g OR n mode) */
1929 if( ((pConfig->SapHw_mode == eSAP_DOT11_MODE_11n) ||
1930 (pConfig->SapHw_mode == eSAP_DOT11_MODE_11n_ONLY)) &&
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301931 (((WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini->dot11Mode == eHDD_DOT11_MODE_AUTO) ||
Ravi Kumar Vaishnavbbaebbe2013-01-15 17:09:48 -08001932 ((WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini->dot11Mode == eHDD_DOT11_MODE_11ac) ||
1933 ((WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini->dot11Mode == eHDD_DOT11_MODE_11ac_ONLY)) )
Jeff Johnsone7245742012-09-05 17:12:55 -07001934 {
1935 pConfig->SapHw_mode = eSAP_DOT11_MODE_11ac;
Ravi Joshi83bfaa12013-05-28 22:12:08 -07001936
1937 /* Disable VHT support in 2.4 GHz band */
1938 if (pConfig->channel <= 14 &&
1939 (WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini->enableVhtFor24GHzBand == FALSE)
1940 {
1941 pConfig->SapHw_mode = eSAP_DOT11_MODE_11n;
1942 }
Jeff Johnsone7245742012-09-05 17:12:55 -07001943 }
1944#endif
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301945
Ravi Joshiaeb7d9e2013-05-02 12:28:14 -07001946 if ( AUTO_CHANNEL_SELECT != pConfig->channel )
1947 {
1948 sme_SelectCBMode(hHal,
1949 sapConvertSapPhyModeToCsrPhyMode(pConfig->SapHw_mode),
1950 pConfig->channel);
1951 }
Jeff Johnson295189b2012-06-20 16:38:30 -07001952 // ht_capab is not what the name conveys,this is used for protection bitmap
1953 pConfig->ht_capab =
1954 (WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini->apProtection;
1955
1956 if ( 0 != wlan_hdd_cfg80211_update_apies(pHostapdAdapter, params) )
1957 {
1958 hddLog(LOGE, FL("SAP Not able to set AP IEs"));
1959 return -EINVAL;
1960 }
1961
1962 //Uapsd Enabled Bit
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301963 pConfig->UapsdEnable =
Jeff Johnson295189b2012-06-20 16:38:30 -07001964 (WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini->apUapsdEnabled;
1965 //Enable OBSS protection
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301966 pConfig->obssProtEnabled =
1967 (WLAN_HDD_GET_CTX(pHostapdAdapter))->cfg_ini->apOBSSProtEnabled;
Jeff Johnson295189b2012-06-20 16:38:30 -07001968
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301969 hddLog(LOGW, FL("SOftAP macaddress : "MAC_ADDRESS_STR"\n"),
Jeff Johnson295189b2012-06-20 16:38:30 -07001970 MAC_ADDR_ARRAY(pHostapdAdapter->macAddressCurrent.bytes));
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301971 hddLog(LOGW,FL("ssid =%s\n"), pConfig->SSIDinfo.ssid.ssId);
Jeff Johnson295189b2012-06-20 16:38:30 -07001972 hddLog(LOGW,FL("beaconint=%d, channel=%d\n"), (int)pConfig->beacon_int,
1973 (int)pConfig->channel);
1974 hddLog(LOGW,FL("hw_mode=%x\n"), pConfig->SapHw_mode);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301975 hddLog(LOGW,FL("privacy=%d, authType=%d\n"), pConfig->privacy,
1976 pConfig->authType);
Jeff Johnson295189b2012-06-20 16:38:30 -07001977 hddLog(LOGW,FL("RSN/WPALen=%d, \n"),(int)pConfig->RSNWPAReqIELength);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301978 hddLog(LOGW,FL("Uapsd = %d\n"),pConfig->UapsdEnable);
Jeff Johnson295189b2012-06-20 16:38:30 -07001979 hddLog(LOGW,FL("ProtEnabled = %d, OBSSProtEnabled = %d\n"),
1980 pConfig->protEnabled, pConfig->obssProtEnabled);
1981
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301982 if(test_bit(SOFTAP_BSS_STARTED, &pHostapdAdapter->event_flags))
Jeff Johnson295189b2012-06-20 16:38:30 -07001983 {
1984 //Bss already started. just return.
1985 //TODO Probably it should update some beacon params.
1986 hddLog( LOGE, "Bss Already started...Ignore the request");
1987 EXIT();
1988 return 0;
1989 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05301990
Jeff Johnson295189b2012-06-20 16:38:30 -07001991 pConfig->persona = pHostapdAdapter->device_mode;
1992
1993 pSapEventCallback = hdd_hostapd_SAPEventCB;
1994 if(WLANSAP_StartBss(pVosContext, pSapEventCallback, pConfig,
1995 (v_PVOID_t)pHostapdAdapter->dev) != VOS_STATUS_SUCCESS)
1996 {
1997 hddLog(LOGE,FL("SAP Start Bss fail\n"));
1998 return -EINVAL;
1999 }
2000
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302001 hddLog(LOG1,
Jeff Johnson295189b2012-06-20 16:38:30 -07002002 FL("Waiting for Scan to complete(auto mode) and BSS to start"));
2003
2004 status = vos_wait_single_event(&pHostapdState->vosEvent, 10000);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302005
Jeff Johnson295189b2012-06-20 16:38:30 -07002006 if (!VOS_IS_STATUS_SUCCESS(status))
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302007 {
2008 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07002009 ("ERROR: HDD vos wait for single_event failed!!\n"));
2010 VOS_ASSERT(0);
2011 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302012
Jeff Johnson295189b2012-06-20 16:38:30 -07002013 //Succesfully started Bss update the state bit.
2014 set_bit(SOFTAP_BSS_STARTED, &pHostapdAdapter->event_flags);
2015
Madan Mohan Koyyalamudi26bd7142012-10-30 18:14:19 -07002016#ifdef WLAN_FEATURE_P2P_DEBUG
2017 if (pHostapdAdapter->device_mode == WLAN_HDD_P2P_GO)
2018 {
2019 if(globalP2PConnectionStatus == P2P_GO_NEG_COMPLETED)
2020 {
2021 globalP2PConnectionStatus = P2P_GO_COMPLETED_STATE;
2022 hddLog(LOGE,"[P2P State] From Go nego completed to "
Jeff Johnson1250df42012-12-10 14:31:52 -08002023 "Non-autonomous Group started");
Madan Mohan Koyyalamudi26bd7142012-10-30 18:14:19 -07002024 }
2025 else if(globalP2PConnectionStatus == P2P_NOT_ACTIVE)
2026 {
2027 globalP2PConnectionStatus = P2P_GO_COMPLETED_STATE;
2028 hddLog(LOGE,"[P2P State] From Inactive to "
Jeff Johnson1250df42012-12-10 14:31:52 -08002029 "Autonomous Group started");
Madan Mohan Koyyalamudi26bd7142012-10-30 18:14:19 -07002030 }
2031 }
2032#endif
2033
Jeff Johnson295189b2012-06-20 16:38:30 -07002034 pHostapdState->bCommit = TRUE;
2035 EXIT();
2036
2037 return 0;
2038}
2039
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002040#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302041static int wlan_hdd_cfg80211_add_beacon(struct wiphy *wiphy,
2042 struct net_device *dev,
Jeff Johnson295189b2012-06-20 16:38:30 -07002043 struct beacon_parameters *params)
2044{
2045 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05302046 hdd_context_t *pHddCtx;
2047 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07002048
2049 ENTER();
2050
2051 hddLog(VOS_TRACE_LEVEL_INFO_HIGH, "device mode=%d\n",pAdapter->device_mode);
2052
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05302053 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
2054 status = wlan_hdd_validate_context(pHddCtx);
2055
2056 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002057 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05302058 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2059 "%s: HDD context is not valid", __func__);
2060 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002061 }
2062
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302063 if ( (pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -07002064 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Jeff Johnson295189b2012-06-20 16:38:30 -07002065 )
2066 {
2067 beacon_data_t *old,*new;
2068
2069 old = pAdapter->sessionCtx.ap.beacon;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302070
Jeff Johnson295189b2012-06-20 16:38:30 -07002071 if (old)
2072 return -EALREADY;
2073
2074 status = wlan_hdd_cfg80211_alloc_new_beacon(pAdapter,&new,params);
2075
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302076 if(status != VOS_STATUS_SUCCESS)
Jeff Johnson295189b2012-06-20 16:38:30 -07002077 {
2078 hddLog(VOS_TRACE_LEVEL_FATAL,
2079 "%s:Error!!! Allocating the new beacon\n",__func__);
2080 return -EINVAL;
2081 }
2082
2083 pAdapter->sessionCtx.ap.beacon = new;
2084
2085 status = wlan_hdd_cfg80211_start_bss(pAdapter, params);
2086 }
2087
2088 EXIT();
2089 return status;
2090}
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302091
2092static int wlan_hdd_cfg80211_set_beacon(struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07002093 struct net_device *dev,
2094 struct beacon_parameters *params)
2095{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302096 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05302097 hdd_context_t *pHddCtx;
2098 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07002099
2100 ENTER();
2101
2102 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %d\n",
2103 __func__,pAdapter->device_mode);
2104
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05302105 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
2106 status = wlan_hdd_validate_context(pHddCtx);
2107
2108 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002109 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05302110 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2111 "%s: HDD context is not valid", __func__);
2112 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002113 }
2114
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302115 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -07002116 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302117 )
Jeff Johnson295189b2012-06-20 16:38:30 -07002118 {
2119 beacon_data_t *old,*new;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302120
Jeff Johnson295189b2012-06-20 16:38:30 -07002121 old = pAdapter->sessionCtx.ap.beacon;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302122
Jeff Johnson295189b2012-06-20 16:38:30 -07002123 if (!old)
2124 return -ENOENT;
2125
2126 status = wlan_hdd_cfg80211_alloc_new_beacon(pAdapter,&new,params);
2127
2128 if(status != VOS_STATUS_SUCCESS) {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302129 hddLog(VOS_TRACE_LEVEL_FATAL,
Jeff Johnson295189b2012-06-20 16:38:30 -07002130 "%s: Error!!! Allocating the new beacon\n",__func__);
2131 return -EINVAL;
2132 }
2133
2134 pAdapter->sessionCtx.ap.beacon = new;
2135
2136 status = wlan_hdd_cfg80211_start_bss(pAdapter, params);
2137 }
2138
2139 EXIT();
2140 return status;
2141}
2142
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002143#endif //(LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
2144
2145#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
Jeff Johnson295189b2012-06-20 16:38:30 -07002146static int wlan_hdd_cfg80211_del_beacon(struct wiphy *wiphy,
2147 struct net_device *dev)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002148#else
2149static int wlan_hdd_cfg80211_stop_ap (struct wiphy *wiphy,
2150 struct net_device *dev)
2151#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07002152{
2153 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Jeff Johnsone7245742012-09-05 17:12:55 -07002154 hdd_context_t *pHddCtx = NULL;
2155 hdd_scaninfo_t *pScanInfo = NULL;
2156 hdd_adapter_t *staAdapter = NULL;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05302157 VOS_STATUS status;
Jeff Johnson295189b2012-06-20 16:38:30 -07002158
2159 ENTER();
2160
2161 if (NULL == pAdapter)
2162 {
2163 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07002164 "%s: HDD adapter context is Null", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07002165 return -ENODEV;
2166 }
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07002167
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05302168 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
2169 status = wlan_hdd_validate_context(pHddCtx);
2170
2171 if (0 != status)
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07002172 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05302173 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2174 "%s: HDD context is not valid", __func__);
2175 return status;
Jeff Johnson4416a782013-03-25 14:17:50 -07002176 }
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07002177
2178 staAdapter = hdd_get_adapter(pAdapter->pHddCtx, WLAN_HDD_INFRA_STATION);
2179 if (NULL == staAdapter)
2180 {
2181 staAdapter = hdd_get_adapter(pAdapter->pHddCtx, WLAN_HDD_P2P_CLIENT);
2182 if (NULL == staAdapter)
2183 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05302184 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07002185 "%s: HDD adapter context is Null", __func__);
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07002186 return -ENODEV;
2187 }
2188 }
2189
2190 pScanInfo = &pHddCtx->scan_info;
2191
Jeff Johnson295189b2012-06-20 16:38:30 -07002192 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %d\n",
2193 __func__,pAdapter->device_mode);
2194
Jeff Johnsone7245742012-09-05 17:12:55 -07002195 if ((pScanInfo != NULL) && pScanInfo->mScanPending)
2196 {
Madan Mohan Koyyalamudif4e81002012-11-13 10:46:38 -08002197 INIT_COMPLETION(pScanInfo->abortscan_event_var);
Jeff Johnsone7245742012-09-05 17:12:55 -07002198 hdd_abort_mac_scan(staAdapter->pHddCtx);
2199 status = wait_for_completion_interruptible_timeout(
Madan Mohan Koyyalamudif4e81002012-11-13 10:46:38 -08002200 &pScanInfo->abortscan_event_var,
Jeff Johnsone7245742012-09-05 17:12:55 -07002201 msecs_to_jiffies(WLAN_WAIT_TIME_ABORTSCAN));
2202 if (!status)
2203 {
2204 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
Jeff Johnson902c9832012-12-10 14:28:09 -08002205 "%s: Timeout occurred while waiting for abortscan" ,
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07002206 __func__);
Jeff Johnsone7245742012-09-05 17:12:55 -07002207 VOS_ASSERT(pScanInfo->mScanPending);
2208 return 0;
2209 }
2210 }
2211
Jeff Johnson295189b2012-06-20 16:38:30 -07002212 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -07002213 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Jeff Johnson295189b2012-06-20 16:38:30 -07002214 )
2215 {
2216 beacon_data_t *old;
2217
2218 old = pAdapter->sessionCtx.ap.beacon;
2219
2220 if (!old)
2221 return -ENOENT;
2222
Jeff Johnson295189b2012-06-20 16:38:30 -07002223 hdd_cleanup_actionframe(pHddCtx, pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07002224
2225 mutex_lock(&pHddCtx->sap_lock);
2226 if(test_bit(SOFTAP_BSS_STARTED, &pAdapter->event_flags))
2227 {
Jeff Johnson4416a782013-03-25 14:17:50 -07002228 if ( VOS_STATUS_SUCCESS == (status = WLANSAP_StopBss(pHddCtx->pvosContext) ) )
Jeff Johnson295189b2012-06-20 16:38:30 -07002229 {
2230 hdd_hostapd_state_t *pHostapdState = WLAN_HDD_GET_HOSTAP_STATE_PTR(pAdapter);
2231
2232 status = vos_wait_single_event(&pHostapdState->vosEvent, 10000);
2233
2234 if (!VOS_IS_STATUS_SUCCESS(status))
2235 {
2236 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2237 ("ERROR: HDD vos wait for single_event failed!!\n"));
2238 VOS_ASSERT(0);
2239 }
2240 }
2241 clear_bit(SOFTAP_BSS_STARTED, &pAdapter->event_flags);
2242 }
2243 mutex_unlock(&pHddCtx->sap_lock);
2244
2245 if(status != VOS_STATUS_SUCCESS)
2246 {
2247 hddLog(VOS_TRACE_LEVEL_FATAL,
2248 "%s:Error!!! Stopping the BSS\n",__func__);
2249 return -EINVAL;
2250 }
2251
Jeff Johnson4416a782013-03-25 14:17:50 -07002252 if (ccmCfgSetInt(pHddCtx->hHal,
Jeff Johnson295189b2012-06-20 16:38:30 -07002253 WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG, 0,NULL, eANI_BOOLEAN_FALSE)
2254 ==eHAL_STATUS_FAILURE)
2255 {
2256 hddLog(LOGE,
2257 "Could not pass on WNI_CFG_PROBE_RSP_BCN_ADDNIE_FLAG to CCM\n");
2258 }
2259
Jeff Johnson4416a782013-03-25 14:17:50 -07002260 if ( eHAL_STATUS_FAILURE == ccmCfgSetInt(pHddCtx->hHal,
Jeff Johnson295189b2012-06-20 16:38:30 -07002261 WNI_CFG_ASSOC_RSP_ADDNIE_FLAG, 0, NULL,
2262 eANI_BOOLEAN_FALSE) )
2263 {
2264 hddLog(LOGE,
2265 "Could not pass on WNI_CFG_ASSOC_RSP_ADDNIE_FLAG to CCM\n");
2266 }
2267
2268 // Reset WNI_CFG_PROBE_RSP Flags
2269 wlan_hdd_reset_prob_rspies(pAdapter);
2270
2271 pAdapter->sessionCtx.ap.beacon = NULL;
2272 kfree(old);
Madan Mohan Koyyalamudi26bd7142012-10-30 18:14:19 -07002273#ifdef WLAN_FEATURE_P2P_DEBUG
2274 if((pAdapter->device_mode == WLAN_HDD_P2P_GO) &&
2275 (globalP2PConnectionStatus == P2P_GO_COMPLETED_STATE))
2276 {
2277 hddLog(LOGE,"[P2P State] From GO completed to Inactive state "
2278 "GO got removed");
2279 globalP2PConnectionStatus = P2P_NOT_ACTIVE;
2280 }
2281#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07002282 }
2283 EXIT();
2284 return status;
2285}
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002286
2287#if (LINUX_VERSION_CODE > KERNEL_VERSION(3,3,0))
2288
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05302289static int wlan_hdd_cfg80211_start_ap(struct wiphy *wiphy,
2290 struct net_device *dev,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002291 struct cfg80211_ap_settings *params)
2292{
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05302293 hdd_adapter_t *pAdapter;
2294 hdd_context_t *pHddCtx;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05302295 int status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002296
2297 ENTER();
2298
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05302299 if (NULL == dev)
Madan Mohan Koyyalamudib2c36892012-10-18 20:52:38 -07002300 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05302301 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05302302 "%s: Device is Null", __func__);
2303 return -ENODEV;
2304 }
2305
2306 pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
2307 if (NULL == pAdapter)
2308 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05302309 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05302310 "%s: HDD adapter is Null", __func__);
2311 return -ENODEV;
2312 }
2313
2314 if (WLAN_HDD_ADAPTER_MAGIC != pAdapter->magic)
2315 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05302316 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05302317 "%s: HDD adapter magic is invalid", __func__);
2318 return -ENODEV;
2319 }
2320
2321 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05302322 status = wlan_hdd_validate_context(pHddCtx);
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05302323
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05302324 if (0 != status)
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05302325 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05302326 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2327 "%s: HDD context is not valid", __func__);
2328 return status;
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05302329 }
2330
2331 hddLog(VOS_TRACE_LEVEL_INFO_HIGH, "%s: device mode = %d",
2332 __func__, pAdapter->device_mode);
2333
2334 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002335 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002336 )
2337 {
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05302338 beacon_data_t *old, *new;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002339
2340 old = pAdapter->sessionCtx.ap.beacon;
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05302341
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002342 if (old)
2343 return -EALREADY;
2344
2345 status = wlan_hdd_cfg80211_alloc_new_beacon(pAdapter, &new, &params->beacon, params->dtim_period);
2346
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05302347 if (status != 0)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002348 {
2349 hddLog(VOS_TRACE_LEVEL_FATAL,
Pratik Bhalgata0c7f262012-11-22 17:40:24 +05302350 "%s:Error!!! Allocating the new beacon", __func__);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002351 return -EINVAL;
2352 }
2353 pAdapter->sessionCtx.ap.beacon = new;
Viral Modi3a32cc52013-02-08 11:14:52 -08002354#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,6,0))
2355 wlan_hdd_cfg80211_set_channel(wiphy, dev, params->channel, params->channel_type);
2356#endif
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002357 status = wlan_hdd_cfg80211_start_bss(pAdapter, &params->beacon, params->ssid,
2358 params->ssid_len, params->hidden_ssid);
2359 }
2360
2361 EXIT();
2362 return status;
2363}
2364
2365
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302366static int wlan_hdd_cfg80211_change_beacon(struct wiphy *wiphy,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002367 struct net_device *dev,
2368 struct cfg80211_beacon_data *params)
2369{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302370 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05302371 hdd_context_t *pHddCtx;
2372 int status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002373
2374 ENTER();
2375
2376 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %d\n",
2377 __func__, pAdapter->device_mode);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05302378
2379 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
2380 status = wlan_hdd_validate_context(pHddCtx);
2381
2382 if (0 != status)
Madan Mohan Koyyalamudib2c36892012-10-18 20:52:38 -07002383 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05302384 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2385 "%s: HDD context is not valid", __func__);
2386 return status;
Madan Mohan Koyyalamudib2c36892012-10-18 20:52:38 -07002387 }
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002388
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302389 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002390 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302391 )
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002392 {
2393 beacon_data_t *old,*new;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302394
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002395 old = pAdapter->sessionCtx.ap.beacon;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302396
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002397 if (!old)
2398 return -ENOENT;
2399
2400 status = wlan_hdd_cfg80211_alloc_new_beacon(pAdapter, &new, params, 0);
2401
2402 if(status != VOS_STATUS_SUCCESS) {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302403 hddLog(VOS_TRACE_LEVEL_FATAL,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002404 "%s: Error!!! Allocating the new beacon\n",__func__);
2405 return -EINVAL;
2406 }
2407
2408 pAdapter->sessionCtx.ap.beacon = new;
2409
2410 status = wlan_hdd_cfg80211_start_bss(pAdapter, params, NULL, 0, 0);
2411 }
2412
2413 EXIT();
2414 return status;
2415}
2416
2417#endif //(LINUX_VERSION_CODE > KERNEL_VERSION(3,3,0))
2418
Jeff Johnson295189b2012-06-20 16:38:30 -07002419
2420static int wlan_hdd_cfg80211_change_bss (struct wiphy *wiphy,
2421 struct net_device *dev,
2422 struct bss_parameters *params)
2423{
2424 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
2425
2426 ENTER();
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302427
Jeff Johnson295189b2012-06-20 16:38:30 -07002428 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %d\n",
2429 __func__,pAdapter->device_mode);
2430
2431 if((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -07002432 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302433 )
Jeff Johnson295189b2012-06-20 16:38:30 -07002434 {
2435 /* ap_isolate == -1 means that in change bss, upper layer doesn't
2436 * want to update this parameter */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302437 if (-1 != params->ap_isolate)
Jeff Johnson295189b2012-06-20 16:38:30 -07002438 {
2439 pAdapter->sessionCtx.ap.apDisableIntraBssFwd = !!params->ap_isolate;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302440 }
Jeff Johnson295189b2012-06-20 16:38:30 -07002441 }
2442
2443 EXIT();
2444 return 0;
2445}
2446
2447/*
2448 * FUNCTION: wlan_hdd_cfg80211_change_iface
2449 * This function is used to set the interface type (INFRASTRUCTURE/ADHOC)
2450 */
2451int wlan_hdd_cfg80211_change_iface( struct wiphy *wiphy,
2452 struct net_device *ndev,
2453 enum nl80211_iftype type,
2454 u32 *flags,
2455 struct vif_params *params
2456 )
2457{
2458 struct wireless_dev *wdev;
2459 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( ndev );
2460 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX( pAdapter );
Mohit Khanna0f232092012-09-11 14:46:08 -07002461 hdd_adapter_t *pP2pAdapter = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07002462 tCsrRoamProfile *pRoamProfile = NULL;
2463 eCsrRoamBssType LastBSSType;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05302464 hdd_config_t *pConfig = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07002465 eMib_dot11DesiredBssType connectedBssType;
2466 VOS_STATUS status;
2467
2468 ENTER();
2469
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05302470 status = wlan_hdd_validate_context(pHddCtx);
2471
2472 if (0 != status)
Jeff Johnson295189b2012-06-20 16:38:30 -07002473 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05302474 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2475 "%s: HDD context is not valid", __func__);
2476 return status;
Jeff Johnson295189b2012-06-20 16:38:30 -07002477 }
2478
2479 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %d",
2480 __func__, pAdapter->device_mode);
2481
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05302482 pConfig = pHddCtx->cfg_ini;
Jeff Johnson295189b2012-06-20 16:38:30 -07002483 wdev = ndev->ieee80211_ptr;
2484
2485#ifdef WLAN_BTAMP_FEATURE
2486 if((NL80211_IFTYPE_P2P_CLIENT == type)||
2487 (NL80211_IFTYPE_ADHOC == type)||
2488 (NL80211_IFTYPE_AP == type)||
2489 (NL80211_IFTYPE_P2P_GO == type))
2490 {
2491 pHddCtx->isAmpAllowed = VOS_FALSE;
2492 // stop AMP traffic
2493 status = WLANBAP_StopAmp();
2494 if(VOS_STATUS_SUCCESS != status )
2495 {
2496 pHddCtx->isAmpAllowed = VOS_TRUE;
2497 hddLog(VOS_TRACE_LEVEL_FATAL,
2498 "%s: Failed to stop AMP", __func__);
2499 return -EINVAL;
2500 }
2501 }
2502#endif //WLAN_BTAMP_FEATURE
2503 /* Reset the current device mode bit mask*/
2504 wlan_hdd_clear_concurrency_mode(pHddCtx, pAdapter->device_mode);
2505
2506 if( (pAdapter->device_mode == WLAN_HDD_INFRA_STATION)
Jeff Johnson295189b2012-06-20 16:38:30 -07002507 || (pAdapter->device_mode == WLAN_HDD_P2P_CLIENT)
Jeff Johnsone7245742012-09-05 17:12:55 -07002508 || (pAdapter->device_mode == WLAN_HDD_P2P_DEVICE)
Jeff Johnson295189b2012-06-20 16:38:30 -07002509 )
2510 {
2511 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
2512 pRoamProfile = &pWextState->roamProfile;
2513 LastBSSType = pRoamProfile->BSSType;
2514
2515 switch (type)
2516 {
2517 case NL80211_IFTYPE_STATION:
Jeff Johnson295189b2012-06-20 16:38:30 -07002518 case NL80211_IFTYPE_P2P_CLIENT:
Jeff Johnson295189b2012-06-20 16:38:30 -07002519 hddLog(VOS_TRACE_LEVEL_INFO,
2520 "%s: setting interface Type to INFRASTRUCTURE", __func__);
2521 pRoamProfile->BSSType = eCSR_BSS_TYPE_INFRASTRUCTURE;
Jeff Johnsone7245742012-09-05 17:12:55 -07002522#ifdef WLAN_FEATURE_11AC
2523 if(pConfig->dot11Mode == eHDD_DOT11_MODE_AUTO)
2524 {
2525 pConfig->dot11Mode = eHDD_DOT11_MODE_11ac;
2526 }
2527#endif
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302528 pRoamProfile->phyMode =
Jeff Johnsone7245742012-09-05 17:12:55 -07002529 hdd_cfg_xlate_to_csr_phy_mode(pConfig->dot11Mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07002530 wdev->iftype = type;
Gopichand Nakkalaf527dc62012-12-31 16:35:10 -08002531 //Check for sub-string p2p to confirm its a p2p interface
2532 if (NULL != strstr(ndev->name,"p2p"))
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302533 {
Gopichand Nakkala864d3552012-12-31 16:08:51 -08002534 pAdapter->device_mode = (type == NL80211_IFTYPE_STATION) ?
2535 WLAN_HDD_P2P_DEVICE : WLAN_HDD_P2P_CLIENT;
2536 }
2537 else
2538 {
2539 pAdapter->device_mode = (type == NL80211_IFTYPE_STATION) ?
Jeff Johnson295189b2012-06-20 16:38:30 -07002540 WLAN_HDD_INFRA_STATION: WLAN_HDD_P2P_CLIENT;
Gopichand Nakkala864d3552012-12-31 16:08:51 -08002541 }
Jeff Johnson295189b2012-06-20 16:38:30 -07002542 break;
2543 case NL80211_IFTYPE_ADHOC:
2544 hddLog(VOS_TRACE_LEVEL_INFO,
2545 "%s: setting interface Type to ADHOC", __func__);
2546 pRoamProfile->BSSType = eCSR_BSS_TYPE_START_IBSS;
2547 pRoamProfile->phyMode =
2548 hdd_cfg_xlate_to_csr_phy_mode(pConfig->dot11Mode);
Shailender Karmuchia734f332013-04-19 14:02:48 -07002549 pAdapter->device_mode = WLAN_HDD_IBSS;
Jeff Johnson295189b2012-06-20 16:38:30 -07002550 wdev->iftype = type;
2551 break;
2552
2553 case NL80211_IFTYPE_AP:
Jeff Johnson295189b2012-06-20 16:38:30 -07002554 case NL80211_IFTYPE_P2P_GO:
Jeff Johnson295189b2012-06-20 16:38:30 -07002555 {
2556 hddLog(VOS_TRACE_LEVEL_INFO_HIGH,
2557 "%s: setting interface Type to %s", __func__,
2558 (type == NL80211_IFTYPE_AP) ? "SoftAP" : "P2pGo");
2559
Gopichand Nakkalaf527dc62012-12-31 16:35:10 -08002560 //Cancel any remain on channel for GO mode
2561 if (NL80211_IFTYPE_P2P_GO == type)
2562 {
2563 wlan_hdd_cancel_existing_remain_on_channel(pAdapter);
2564 }
Mohit Khanna0f232092012-09-11 14:46:08 -07002565 if (NL80211_IFTYPE_AP == type)
2566 {
2567 /* As Loading WLAN Driver one interface being created for p2p device
2568 * address. This will take one HW STA and the max number of clients
2569 * that can connect to softAP will be reduced by one. so while changing
2570 * the interface type to NL80211_IFTYPE_AP (SoftAP) remove p2p0
2571 * interface as it is not required in SoftAP mode.
2572 */
2573
2574 // Get P2P Adapter
2575 pP2pAdapter = hdd_get_adapter(pHddCtx, WLAN_HDD_P2P_DEVICE);
2576
2577 if (pP2pAdapter)
2578 {
2579 hdd_stop_adapter(pHddCtx, pP2pAdapter);
2580 hdd_deinit_adapter(pHddCtx, pP2pAdapter);
2581 hdd_close_adapter(pHddCtx, pP2pAdapter, VOS_TRUE);
2582 }
2583 }
2584
Jeff Johnson295189b2012-06-20 16:38:30 -07002585 //De-init the adapter.
2586 hdd_stop_adapter( pHddCtx, pAdapter );
2587 hdd_deinit_adapter( pHddCtx, pAdapter );
2588 memset(&pAdapter->sessionCtx, 0, sizeof(pAdapter->sessionCtx));
Jeff Johnson295189b2012-06-20 16:38:30 -07002589 pAdapter->device_mode = (type == NL80211_IFTYPE_AP) ?
2590 WLAN_HDD_SOFTAP : WLAN_HDD_P2P_GO;
Jeff Johnson32d95a32012-09-10 13:15:23 -07002591
2592 //Disable BMPS and IMPS if enabled
2593 //before starting Go
2594 if(WLAN_HDD_P2P_GO == pAdapter->device_mode)
2595 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302596 if(VOS_STATUS_E_FAILURE ==
Jeff Johnson32d95a32012-09-10 13:15:23 -07002597 hdd_disable_bmps_imps(pHddCtx, WLAN_HDD_P2P_GO))
2598 {
2599 //Fail to Exit BMPS
2600 VOS_ASSERT(0);
2601 }
2602 }
2603
Madan Mohan Koyyalamudi3ff2a0b2012-10-15 14:33:46 -07002604 if ((WLAN_HDD_SOFTAP == pAdapter->device_mode) &&
2605 (pConfig->apRandomBssidEnabled))
2606 {
2607 /* To meet Android requirements create a randomized
2608 MAC address of the form 02:1A:11:Fx:xx:xx */
2609 get_random_bytes(&ndev->dev_addr[3], 3);
2610 ndev->dev_addr[0] = 0x02;
2611 ndev->dev_addr[1] = 0x1A;
2612 ndev->dev_addr[2] = 0x11;
2613 ndev->dev_addr[3] |= 0xF0;
2614 memcpy(pAdapter->macAddressCurrent.bytes, ndev->dev_addr,
2615 VOS_MAC_ADDR_SIZE);
2616 pr_info("wlan: Generated HotSpot BSSID "
2617 "%02x:%02x:%02x:%02x:%02x:%02x\n",
2618 ndev->dev_addr[0],
2619 ndev->dev_addr[1],
2620 ndev->dev_addr[2],
2621 ndev->dev_addr[3],
2622 ndev->dev_addr[4],
2623 ndev->dev_addr[5]);
2624 }
2625
Jeff Johnson295189b2012-06-20 16:38:30 -07002626 hdd_set_ap_ops( pAdapter->dev );
2627
2628 status = hdd_init_ap_mode(pAdapter);
2629 if(status != VOS_STATUS_SUCCESS)
2630 {
2631 hddLog(VOS_TRACE_LEVEL_FATAL,
2632 "%s: Error initializing the ap mode", __func__);
2633 return -EINVAL;
2634 }
2635 hdd_set_conparam(1);
2636
Jeff Johnson295189b2012-06-20 16:38:30 -07002637 /*interface type changed update in wiphy structure*/
2638 if(wdev)
2639 {
2640 wdev->iftype = type;
2641 pHddCtx->change_iface = type;
2642 }
2643 else
2644 {
2645 hddLog(VOS_TRACE_LEVEL_ERROR,
2646 "%s: ERROR !!!! Wireless dev is NULL", __func__);
2647 return -EINVAL;
2648 }
2649 goto done;
2650 }
2651
2652 default:
2653 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Unsupported interface Type",
2654 __func__);
2655 return -EOPNOTSUPP;
2656 }
2657 }
2658 else if ( (pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -07002659 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Jeff Johnson295189b2012-06-20 16:38:30 -07002660 )
2661 {
2662 switch(type)
2663 {
2664 case NL80211_IFTYPE_STATION:
Jeff Johnson295189b2012-06-20 16:38:30 -07002665 case NL80211_IFTYPE_P2P_CLIENT:
Jeff Johnson295189b2012-06-20 16:38:30 -07002666 case NL80211_IFTYPE_ADHOC:
Jeff Johnson32d95a32012-09-10 13:15:23 -07002667 hdd_stop_adapter( pHddCtx, pAdapter );
2668 hdd_deinit_adapter( pHddCtx, pAdapter );
Jeff Johnson295189b2012-06-20 16:38:30 -07002669 wdev->iftype = type;
Gopichand Nakkalaf527dc62012-12-31 16:35:10 -08002670 //Check for sub-string p2p to confirm its a p2p interface
2671 if (NULL != strstr(ndev->name,"p2p"))
Gopichand Nakkala864d3552012-12-31 16:08:51 -08002672 {
2673 pAdapter->device_mode = (type == NL80211_IFTYPE_STATION) ?
2674 WLAN_HDD_P2P_DEVICE : WLAN_HDD_P2P_CLIENT;
2675 }
2676 else
2677 {
2678 pAdapter->device_mode = (type == NL80211_IFTYPE_STATION) ?
Jeff Johnson295189b2012-06-20 16:38:30 -07002679 WLAN_HDD_INFRA_STATION: WLAN_HDD_P2P_CLIENT;
Gopichand Nakkala864d3552012-12-31 16:08:51 -08002680 }
Jeff Johnson295189b2012-06-20 16:38:30 -07002681 hdd_set_conparam(0);
2682 pHddCtx->change_iface = type;
Jeff Johnson295189b2012-06-20 16:38:30 -07002683 memset(&pAdapter->sessionCtx, 0, sizeof(pAdapter->sessionCtx));
2684 hdd_set_station_ops( pAdapter->dev );
2685 status = hdd_init_station_mode( pAdapter );
2686 if( VOS_STATUS_SUCCESS != status )
2687 return -EOPNOTSUPP;
Jeff Johnsone7245742012-09-05 17:12:55 -07002688 /* In case of JB, for P2P-GO, only change interface will be called,
2689 * This is the right place to enable back bmps_imps()
2690 */
Gopichand Nakkalaa2fe5b02013-06-06 16:32:28 +05302691 if (pHddCtx->hdd_wlan_suspended)
2692 {
2693 hdd_set_pwrparams(pHddCtx);
2694 }
Jeff Johnsone7245742012-09-05 17:12:55 -07002695 hdd_enable_bmps_imps(pHddCtx);
Jeff Johnson295189b2012-06-20 16:38:30 -07002696 goto done;
2697 case NL80211_IFTYPE_AP:
Jeff Johnson295189b2012-06-20 16:38:30 -07002698 case NL80211_IFTYPE_P2P_GO:
Jeff Johnson295189b2012-06-20 16:38:30 -07002699 wdev->iftype = type;
Jeff Johnson295189b2012-06-20 16:38:30 -07002700 pAdapter->device_mode = (type == NL80211_IFTYPE_AP) ?
2701 WLAN_HDD_SOFTAP : WLAN_HDD_P2P_GO;
Jeff Johnson295189b2012-06-20 16:38:30 -07002702 goto done;
2703 default:
2704 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Unsupported interface Type",
2705 __func__);
2706 return -EOPNOTSUPP;
2707
2708 }
2709
2710 }
2711 else
2712 {
2713 return -EOPNOTSUPP;
2714 }
2715
2716
2717 if(pRoamProfile)
2718 {
2719 if ( LastBSSType != pRoamProfile->BSSType )
2720 {
2721 /*interface type changed update in wiphy structure*/
2722 wdev->iftype = type;
2723
2724 /*the BSS mode changed, We need to issue disconnect
2725 if connected or in IBSS disconnect state*/
2726 if ( hdd_connGetConnectedBssType(
2727 WLAN_HDD_GET_STATION_CTX_PTR(pAdapter), &connectedBssType ) ||
2728 ( eCSR_BSS_TYPE_START_IBSS == LastBSSType ) )
2729 {
2730 /*need to issue a disconnect to CSR.*/
2731 INIT_COMPLETION(pAdapter->disconnect_comp_var);
2732 if( eHAL_STATUS_SUCCESS ==
2733 sme_RoamDisconnect( WLAN_HDD_GET_HAL_CTX(pAdapter),
2734 pAdapter->sessionId,
2735 eCSR_DISCONNECT_REASON_UNSPECIFIED ) )
2736 {
2737 wait_for_completion_interruptible_timeout(
2738 &pAdapter->disconnect_comp_var,
2739 msecs_to_jiffies(WLAN_WAIT_TIME_DISCONNECT));
2740 }
2741 }
2742 }
2743 }
2744
2745done:
2746 /*set bitmask based on updated value*/
2747 wlan_hdd_set_concurrency_mode(pHddCtx, pAdapter->device_mode);
Leo Chang6fe1f922013-06-07 19:21:24 -07002748
2749 /* Only STA mode support TM now
2750 * all other mode, TM feature should be disabled */
2751 if ( (pHddCtx->cfg_ini->thermalMitigationEnable) &&
2752 (~VOS_STA & pHddCtx->concurrency_mode) )
2753 {
2754 hddDevTmLevelChangedHandler(pHddCtx->parent_dev, 0);
2755 }
2756
Jeff Johnson295189b2012-06-20 16:38:30 -07002757#ifdef WLAN_BTAMP_FEATURE
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302758 if((NL80211_IFTYPE_STATION == type) && (pHddCtx->concurrency_mode <= 1) &&
Jeff Johnson295189b2012-06-20 16:38:30 -07002759 (pHddCtx->no_of_sessions[WLAN_HDD_INFRA_STATION] <=1))
2760 {
2761 //we are ok to do AMP
2762 pHddCtx->isAmpAllowed = VOS_TRUE;
2763 }
2764#endif //WLAN_BTAMP_FEATURE
2765 EXIT();
2766 return 0;
2767}
2768
Gopichand Nakkala681989c2013-03-06 22:27:48 -08002769#ifdef FEATURE_WLAN_TDLS
2770static int wlan_hdd_tdls_add_station(struct wiphy *wiphy,
2771 struct net_device *dev, u8 *mac, bool update, tCsrStaParams *StaParams)
2772{
2773 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
2774 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
2775 VOS_STATUS status;
Hoonki Lee5305c3a2013-04-29 23:28:59 -07002776 hddTdlsPeer_t *pTdlsPeer;
Gopichand Nakkala681989c2013-03-06 22:27:48 -08002777
2778 ENTER();
2779
Gopichand Nakkala838be5d2013-04-10 22:41:51 +05302780 if (NULL == pHddCtx || NULL == pHddCtx->cfg_ini)
Gopichand Nakkala681989c2013-03-06 22:27:48 -08002781 {
2782 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2783 "Invalid arguments");
2784 return -EINVAL;
2785 }
Hoonki Lee27511902013-03-14 18:19:06 -07002786
2787 if ((eTDLS_SUPPORT_NOT_ENABLED == pHddCtx->tdls_mode) ||
2788 (eTDLS_SUPPORT_DISABLED == pHddCtx->tdls_mode))
2789 {
2790 VOS_TRACE( VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
2791 "%s: TDLS mode is disabled OR not enabled in FW."
2792 MAC_ADDRESS_STR " Request declined.",
2793 __func__, MAC_ADDR_ARRAY(mac));
2794 return -ENOTSUPP;
2795 }
2796
Gopichand Nakkala681989c2013-03-06 22:27:48 -08002797 if (pHddCtx->isLogpInProgress)
2798 {
2799 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2800 "%s:LOGP in Progress. Ignore!!!", __func__);
Gopichand Nakkala05922802013-03-14 12:23:19 -07002801 wlan_hdd_tdls_set_link_status(pAdapter, mac, eTDLS_LINK_IDLE);
Gopichand Nakkala681989c2013-03-06 22:27:48 -08002802 return -EBUSY;
2803 }
2804
Hoonki Lee5305c3a2013-04-29 23:28:59 -07002805 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, mac);
2806
2807 if ( NULL == pTdlsPeer ) {
2808 VOS_TRACE( VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
2809 "%s: " MAC_ADDRESS_STR " (update %d) not exist. return invalid",
2810 __func__, MAC_ADDR_ARRAY(mac), update);
2811 return -EINVAL;
Gopichand Nakkala34d1b062013-03-19 15:28:33 -07002812 }
Hoonki Lee5305c3a2013-04-29 23:28:59 -07002813
2814 /* in add station, we accept existing valid staId if there is */
2815 if ((0 == update) &&
2816 ((pTdlsPeer->link_status >= eTDLS_LINK_CONNECTING) ||
2817 (TDLS_STA_INDEX_VALID(pTdlsPeer->staId))))
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07002818 {
Hoonki Lee5305c3a2013-04-29 23:28:59 -07002819 VOS_TRACE( VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07002820 "%s: " MAC_ADDRESS_STR
Hoonki Lee5305c3a2013-04-29 23:28:59 -07002821 " link_status %d. staId %d. add station ignored.",
2822 __func__, MAC_ADDR_ARRAY(mac), pTdlsPeer->link_status, pTdlsPeer->staId);
2823 return 0;
2824 }
2825 /* in change station, we accept only when staId is valid */
2826 if ((1 == update) &&
2827 ((pTdlsPeer->link_status > eTDLS_LINK_CONNECTING) ||
2828 (!TDLS_STA_INDEX_VALID(pTdlsPeer->staId))))
2829 {
2830 VOS_TRACE( VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
2831 "%s: " MAC_ADDRESS_STR
2832 " link status %d. staId %d. change station %s.",
2833 __func__, MAC_ADDR_ARRAY(mac), pTdlsPeer->link_status, pTdlsPeer->staId,
2834 (TDLS_STA_INDEX_VALID(pTdlsPeer->staId)) ? "ignored" : "declined");
2835 return (TDLS_STA_INDEX_VALID(pTdlsPeer->staId)) ? 0 : -EPERM;
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07002836 }
Gopichand Nakkala34d1b062013-03-19 15:28:33 -07002837
2838 /* when others are on-going, we want to change link_status to idle */
Hoonki Leefb8df672013-04-10 18:20:34 -07002839 if (NULL != wlan_hdd_tdls_is_progress(pHddCtx, mac, TRUE, TRUE))
Gopichand Nakkala681989c2013-03-06 22:27:48 -08002840 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07002841 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2842 "%s: " MAC_ADDRESS_STR
2843 " TDLS setup is ongoing. Request declined.",
2844 __func__, MAC_ADDR_ARRAY(mac));
Gopichand Nakkala05922802013-03-14 12:23:19 -07002845 goto error;
Gopichand Nakkala681989c2013-03-06 22:27:48 -08002846 }
2847
2848 /* first to check if we reached to maximum supported TDLS peer.
2849 TODO: for now, return -EPERM looks working fine,
2850 but need to check if any other errno fit into this category.*/
2851 if (HDD_MAX_NUM_TDLS_STA <= wlan_hdd_tdlsConnectedPeers(pAdapter))
2852 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07002853 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2854 "%s: " MAC_ADDRESS_STR
2855 " TDLS Max peer already connected. Request declined.",
2856 __func__, MAC_ADDR_ARRAY(mac));
Gopichand Nakkala05922802013-03-14 12:23:19 -07002857 goto error;
Gopichand Nakkala681989c2013-03-06 22:27:48 -08002858 }
2859 else
2860 {
2861 hddTdlsPeer_t *pTdlsPeer;
2862 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, mac);
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07002863 if (pTdlsPeer && TDLS_IS_CONNECTED(pTdlsPeer))
Gopichand Nakkala681989c2013-03-06 22:27:48 -08002864 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07002865 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2866 "%s: " MAC_ADDRESS_STR " already connected. Request declined.",
2867 __func__, MAC_ADDR_ARRAY(mac));
Gopichand Nakkala681989c2013-03-06 22:27:48 -08002868 return -EPERM;
2869 }
2870 }
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07002871 if (0 == update)
2872 wlan_hdd_tdls_set_link_status(pAdapter, mac, eTDLS_LINK_CONNECTING);
Gopichand Nakkala681989c2013-03-06 22:27:48 -08002873
Jeff Johnsond75fe012013-04-06 10:53:06 -07002874 /* debug code */
Gopichand Nakkala838be5d2013-04-10 22:41:51 +05302875 if (NULL != StaParams)
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07002876 {
2877 VOS_TRACE(VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
2878 "%s: TDLS Peer Parameters.", __func__);
Hoonki Lee66b75f32013-04-16 18:30:07 -07002879 if(StaParams->htcap_present)
2880 {
2881 VOS_TRACE(VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
2882 "ht_capa->cap_info: %0x", StaParams->HTCap.capInfo);
2883 VOS_TRACE(VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
2884 "ht_capa->extended_capabilities: %0x",
2885 StaParams->HTCap.extendedHtCapInfo);
2886 }
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07002887 VOS_TRACE(VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
2888 "params->capability: %0x",StaParams->capability);
2889 VOS_TRACE(VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
2890 "params->ext_capab_len: %0x",StaParams->extn_capability);
Hoonki Lee66b75f32013-04-16 18:30:07 -07002891 if(StaParams->vhtcap_present)
2892 {
2893 VOS_TRACE(VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
2894 "rxMcsMap %x rxHighest %x txMcsMap %x txHighest %x",
2895 StaParams->VHTCap.suppMcs.rxMcsMap, StaParams->VHTCap.suppMcs.rxHighest,
2896 StaParams->VHTCap.suppMcs.txMcsMap, StaParams->VHTCap.suppMcs.txHighest);
2897 }
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07002898 {
2899 int i = 0;
Hoonki Lee5305c3a2013-04-29 23:28:59 -07002900 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO, "Supported rates:");
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07002901 for (i = 0; i < sizeof(StaParams->supported_rates); i++)
2902 VOS_TRACE(VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
2903 "[%d]: %x ", i, StaParams->supported_rates[i]);
2904 }
Jeff Johnsond75fe012013-04-06 10:53:06 -07002905 } /* end debug code */
Gopichand Nakkala838be5d2013-04-10 22:41:51 +05302906 else if ((1 == update) && (NULL == StaParams))
2907 {
2908 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2909 "%s : update is true, but staParams is NULL. Error!", __func__);
2910 return -EPERM;
2911 }
Gopichand Nakkala681989c2013-03-06 22:27:48 -08002912
2913 INIT_COMPLETION(pAdapter->tdls_add_station_comp);
2914
2915 if (!update)
2916 {
2917 status = sme_AddTdlsPeerSta(WLAN_HDD_GET_HAL_CTX(pAdapter),
2918 pAdapter->sessionId, mac);
2919 }
2920 else
2921 {
2922 status = sme_ChangeTdlsPeerSta(WLAN_HDD_GET_HAL_CTX(pAdapter),
2923 pAdapter->sessionId, mac, StaParams);
2924 }
2925
2926 status = wait_for_completion_interruptible_timeout(&pAdapter->tdls_add_station_comp,
2927 msecs_to_jiffies(WAIT_TIME_TDLS_ADD_STA));
2928
2929 if (!status)
2930 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07002931 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkala681989c2013-03-06 22:27:48 -08002932 "%s: timeout waiting for tdls add station indication",
2933 __func__);
Gopichand Nakkala34d1b062013-03-19 15:28:33 -07002934 return -EPERM;
Gopichand Nakkala681989c2013-03-06 22:27:48 -08002935 }
2936 if ( eHAL_STATUS_SUCCESS != pAdapter->tdlsAddStaStatus)
2937 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07002938 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkala681989c2013-03-06 22:27:48 -08002939 "%s: Add Station is unsucessful", __func__);
Gopichand Nakkala34d1b062013-03-19 15:28:33 -07002940 return -EPERM;
Gopichand Nakkala681989c2013-03-06 22:27:48 -08002941 }
2942
2943 return 0;
Gopichand Nakkala05922802013-03-14 12:23:19 -07002944
2945error:
2946 wlan_hdd_tdls_set_link_status(pAdapter, mac, eTDLS_LINK_IDLE);
2947 return -EPERM;
2948
Gopichand Nakkala681989c2013-03-06 22:27:48 -08002949}
2950#endif
2951
Jeff Johnson295189b2012-06-20 16:38:30 -07002952static int wlan_hdd_change_station(struct wiphy *wiphy,
2953 struct net_device *dev,
2954 u8 *mac,
2955 struct station_parameters *params)
2956{
2957 VOS_STATUS status = VOS_STATUS_SUCCESS;
2958 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
Gopichand Nakkala29149562013-05-10 21:43:41 +05302959 hdd_context_t *pHddCtx;
2960 hdd_station_ctx_t *pHddStaCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -07002961 v_MACADDR_t STAMacAddress;
Gopichand Nakkalab0856222013-03-12 22:39:05 -07002962#ifdef FEATURE_WLAN_TDLS
Gopichand Nakkala681989c2013-03-06 22:27:48 -08002963 tCsrStaParams StaParams = {0};
Gopichand Nakkala681989c2013-03-06 22:27:48 -08002964 tANI_U8 isBufSta = 0;
Gopichand Nakkalab0856222013-03-12 22:39:05 -07002965#endif
Jeff Johnsone7245742012-09-05 17:12:55 -07002966 ENTER();
2967
Gopichand Nakkala29149562013-05-10 21:43:41 +05302968 if ((NULL == pAdapter))
2969 {
2970 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
2971 "invalid adapter ");
2972 return -EINVAL;
2973 }
2974
2975 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
2976 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
2977
2978 if ((NULL == pHddCtx) || (NULL == pHddStaCtx))
2979 {
2980 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
2981 "invalid HDD state or HDD station context");
2982 return -EINVAL;
2983 }
2984
2985 if (pHddCtx->isLogpInProgress)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07002986 {
2987 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
2988 "%s:LOGP in Progress. Ignore!!!", __func__);
2989 return -EAGAIN;
2990 }
2991
Jeff Johnson295189b2012-06-20 16:38:30 -07002992 vos_mem_copy(STAMacAddress.bytes, mac, sizeof(v_MACADDR_t));
2993
Gopichand Nakkala681989c2013-03-06 22:27:48 -08002994 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
2995 || (pAdapter->device_mode == WLAN_HDD_P2P_GO))
Jeff Johnson295189b2012-06-20 16:38:30 -07002996 {
Gopichand Nakkala681989c2013-03-06 22:27:48 -08002997 if (params->sta_flags_set & BIT(NL80211_STA_FLAG_AUTHORIZED))
Jeff Johnson295189b2012-06-20 16:38:30 -07002998 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05302999 status = hdd_softap_change_STA_state( pAdapter, &STAMacAddress,
Jeff Johnson295189b2012-06-20 16:38:30 -07003000 WLANTL_STA_AUTHENTICATED);
3001
Gopichand Nakkala29149562013-05-10 21:43:41 +05303002 if (status != VOS_STATUS_SUCCESS)
3003 {
3004 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
3005 "%s: Not able to change TL state to AUTHENTICATED", __func__);
3006 return -EINVAL;
3007 }
Jeff Johnson295189b2012-06-20 16:38:30 -07003008 }
3009 }
Hoonki Leea6d49be2013-04-05 09:43:25 -07003010 else if ((pAdapter->device_mode == WLAN_HDD_INFRA_STATION)
3011 || (pAdapter->device_mode == WLAN_HDD_P2P_CLIENT)) {
Gopichand Nakkala29149562013-05-10 21:43:41 +05303012#ifdef FEATURE_WLAN_TDLS
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07003013 if (params->sta_flags_set & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
3014 StaParams.capability = params->capability;
3015 StaParams.uapsd_queues = params->uapsd_queues;
3016 StaParams.max_sp = params->max_sp;
3017
3018 if (0 != params->ext_capab_len)
3019 vos_mem_copy(StaParams.extn_capability, params->ext_capab,
3020 sizeof(StaParams.extn_capability));
3021
3022 if (NULL != params->ht_capa)
Hoonki Lee66b75f32013-04-16 18:30:07 -07003023 {
3024 StaParams.htcap_present = 1;
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07003025 vos_mem_copy(&StaParams.HTCap, params->ht_capa, sizeof(tSirHTCap));
Hoonki Lee66b75f32013-04-16 18:30:07 -07003026 }
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07003027
3028 StaParams.supported_rates_len = params->supported_rates_len;
3029
3030 /* Note : The Maximum sizeof supported_rates sent by the Supplicant is 32.
3031 * The supported_rates array , for all the structures propogating till Add Sta
3032 * to the firmware has to be modified , if the supplicant (ieee80211) is
3033 * modified to send more rates.
3034 */
3035
3036 /* To avoid Data Currption , set to max length to SIR_MAC_MAX_SUPP_RATES
3037 */
3038 if (StaParams.supported_rates_len > SIR_MAC_MAX_SUPP_RATES)
3039 StaParams.supported_rates_len = SIR_MAC_MAX_SUPP_RATES;
3040
3041 if (0 != StaParams.supported_rates_len) {
3042 int i = 0;
3043 vos_mem_copy(StaParams.supported_rates, params->supported_rates,
3044 StaParams.supported_rates_len);
Hoonki Lee5305c3a2013-04-29 23:28:59 -07003045 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07003046 "Supported Rates with Length %d", StaParams.supported_rates_len);
3047 for (i=0; i < StaParams.supported_rates_len; i++)
Hoonki Lee5305c3a2013-04-29 23:28:59 -07003048 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07003049 "[%d]: %0x", i, StaParams.supported_rates[i]);
3050 }
3051
3052 if (NULL != params->vht_capa)
Hoonki Lee66b75f32013-04-16 18:30:07 -07003053 {
3054 StaParams.vhtcap_present = 1;
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07003055 vos_mem_copy(&StaParams.VHTCap, params->vht_capa, sizeof(tSirVHTCap));
Hoonki Lee66b75f32013-04-16 18:30:07 -07003056 }
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07003057
Gopichand Nakkala681989c2013-03-06 22:27:48 -08003058 if (0 != params->ext_capab_len ) {
3059 /*Define A Macro : TODO Sunil*/
3060 if ((1<<4) & StaParams.extn_capability[3]) {
3061 isBufSta = 1;
3062 }
3063 }
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +05303064 status = wlan_hdd_tdls_set_peer_caps( pAdapter, mac, params->uapsd_queues,
3065 params->max_sp, isBufSta);
3066 if (VOS_STATUS_SUCCESS != status) {
3067 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3068 "%s: wlan_hdd_tdls_set_peer_caps failed!", __func__);
3069 return -EINVAL;
3070 }
Gopichand Nakkala681989c2013-03-06 22:27:48 -08003071 status = wlan_hdd_tdls_add_station(wiphy, dev, mac, 1, &StaParams);
3072
3073 if (VOS_STATUS_SUCCESS != status) {
3074 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3075 "%s: sme_ChangeTdlsPeerSta failed!", __func__);
3076 return -EINVAL;
3077 }
3078 }
Gopichand Nakkalab0856222013-03-12 22:39:05 -07003079#endif
Gopichand Nakkala6239acd2013-06-14 14:48:00 +05303080 }
Jeff Johnsone7245742012-09-05 17:12:55 -07003081 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -07003082 return status;
3083}
3084
3085/*
Jeff Johnson295189b2012-06-20 16:38:30 -07003086 * FUNCTION: wlan_hdd_cfg80211_add_key
3087 * This function is used to initialize the key information
3088 */
3089#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07003090static int wlan_hdd_cfg80211_add_key( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07003091 struct net_device *ndev,
3092 u8 key_index, bool pairwise,
3093 const u8 *mac_addr,
3094 struct key_params *params
3095 )
3096#else
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07003097static int wlan_hdd_cfg80211_add_key( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07003098 struct net_device *ndev,
3099 u8 key_index, const u8 *mac_addr,
3100 struct key_params *params
3101 )
3102#endif
3103{
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07003104 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( ndev );
Jeff Johnson295189b2012-06-20 16:38:30 -07003105 tCsrRoamSetKey setKey;
3106 u8 groupmacaddr[WNI_CFG_BSSID_LEN] = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF};
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303107 int status;
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07003108 v_U32_t roamId= 0xFF;
3109 v_CONTEXT_t pVosContext = (WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
Jeff Johnson295189b2012-06-20 16:38:30 -07003110 hdd_hostapd_state_t *pHostapdState;
3111 VOS_STATUS vos_status;
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07003112 eHalStatus halStatus;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303113 hdd_context_t *pHddCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -07003114
3115 ENTER();
3116
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303117 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
3118 status = wlan_hdd_validate_context(pHddCtx);
3119
3120 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07003121 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303122 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3123 "%s: HDD context is not valid", __func__);
3124 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07003125 }
3126
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07003127 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %d",
3128 __func__, pAdapter->device_mode);
Jeff Johnson295189b2012-06-20 16:38:30 -07003129
3130 if (CSR_MAX_NUM_KEY <= key_index)
3131 {
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07003132 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid key index %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07003133 key_index);
3134
3135 return -EINVAL;
3136 }
3137
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07003138 if (CSR_MAX_KEY_LEN < params->key_len)
3139 {
3140 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid key length %d", __func__,
3141 params->key_len);
3142
3143 return -EINVAL;
3144 }
3145
3146 hddLog(VOS_TRACE_LEVEL_INFO,
3147 "%s: called with key index = %d & key length %d",
3148 __func__, key_index, params->key_len);
Jeff Johnson295189b2012-06-20 16:38:30 -07003149
3150 /*extract key idx, key len and key*/
3151 vos_mem_zero(&setKey,sizeof(tCsrRoamSetKey));
3152 setKey.keyId = key_index;
3153 setKey.keyLength = params->key_len;
3154 vos_mem_copy(&setKey.Key[0],params->key, params->key_len);
3155
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07003156 switch (params->cipher)
Jeff Johnson295189b2012-06-20 16:38:30 -07003157 {
3158 case WLAN_CIPHER_SUITE_WEP40:
3159 setKey.encType = eCSR_ENCRYPT_TYPE_WEP40_STATICKEY;
3160 break;
3161
3162 case WLAN_CIPHER_SUITE_WEP104:
3163 setKey.encType = eCSR_ENCRYPT_TYPE_WEP104_STATICKEY;
3164 break;
3165
3166 case WLAN_CIPHER_SUITE_TKIP:
3167 {
3168 u8 *pKey = &setKey.Key[0];
3169 setKey.encType = eCSR_ENCRYPT_TYPE_TKIP;
3170
3171 vos_mem_zero(pKey, CSR_MAX_KEY_LEN);
3172
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07003173 /*Supplicant sends the 32bytes key in this order
Jeff Johnson295189b2012-06-20 16:38:30 -07003174
3175 |--------------|----------|----------|
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07003176 | Tk1 |TX-MIC | RX Mic |
Jeff Johnson295189b2012-06-20 16:38:30 -07003177 |--------------|----------|----------|
3178 <---16bytes---><--8bytes--><--8bytes-->
3179
3180 */
3181 /*Sme expects the 32 bytes key to be in the below order
3182
3183 |--------------|----------|----------|
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07003184 | Tk1 |RX-MIC | TX Mic |
Jeff Johnson295189b2012-06-20 16:38:30 -07003185 |--------------|----------|----------|
3186 <---16bytes---><--8bytes--><--8bytes-->
3187 */
3188 /* Copy the Temporal Key 1 (TK1) */
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07003189 vos_mem_copy(pKey, params->key, 16);
Jeff Johnson295189b2012-06-20 16:38:30 -07003190
3191 /*Copy the rx mic first*/
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07003192 vos_mem_copy(&pKey[16], &params->key[24], 8);
Jeff Johnson295189b2012-06-20 16:38:30 -07003193
3194 /*Copy the tx mic */
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07003195 vos_mem_copy(&pKey[24], &params->key[16], 8);
Jeff Johnson295189b2012-06-20 16:38:30 -07003196
3197
3198 break;
3199 }
3200
3201 case WLAN_CIPHER_SUITE_CCMP:
3202 setKey.encType = eCSR_ENCRYPT_TYPE_AES;
3203 break;
3204
3205#ifdef FEATURE_WLAN_WAPI
3206 case WLAN_CIPHER_SUITE_SMS4:
3207 {
3208 vos_mem_zero(&setKey,sizeof(tCsrRoamSetKey));
3209 wlan_hdd_cfg80211_set_key_wapi(pAdapter, key_index, mac_addr,
3210 params->key, params->key_len);
3211 return 0;
3212 }
3213#endif
Chet Lanctot186b5732013-03-18 10:26:30 -07003214
Jeff Johnson295189b2012-06-20 16:38:30 -07003215#ifdef FEATURE_WLAN_CCX
3216 case WLAN_CIPHER_SUITE_KRK:
3217 setKey.encType = eCSR_ENCRYPT_TYPE_KRK;
3218 break;
3219#endif
Chet Lanctot186b5732013-03-18 10:26:30 -07003220
3221#ifdef WLAN_FEATURE_11W
3222 case WLAN_CIPHER_SUITE_AES_CMAC:
3223 setKey.encType = eCSR_ENCRYPT_TYPE_AES_CMAC;
Chet Lanctot3b5158a2013-03-31 16:45:21 -07003224 break;
Chet Lanctot186b5732013-03-18 10:26:30 -07003225#endif
3226
Jeff Johnson295189b2012-06-20 16:38:30 -07003227 default:
3228 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: unsupported cipher type %lu",
3229 __func__, params->cipher);
3230 return -EOPNOTSUPP;
3231 }
3232
3233 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: encryption type %d",
3234 __func__, setKey.encType);
3235
Shailender Karmuchi642e9812013-05-30 14:34:49 -07003236 if (
Jeff Johnson295189b2012-06-20 16:38:30 -07003237#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
3238 (!pairwise)
3239#else
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07003240 (!mac_addr || is_broadcast_ether_addr(mac_addr))
Jeff Johnson295189b2012-06-20 16:38:30 -07003241#endif
Shailender Karmuchi642e9812013-05-30 14:34:49 -07003242 )
3243 {
3244 /* set group key*/
3245 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
3246 "%s- %d: setting Broadcast key",
3247 __func__, __LINE__);
3248 setKey.keyDirection = eSIR_RX_ONLY;
3249 vos_mem_copy(setKey.peerMac,groupmacaddr,WNI_CFG_BSSID_LEN);
3250 }
3251 else
3252 {
3253 /* set pairwise key*/
3254 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
3255 "%s- %d: setting pairwise key",
3256 __func__, __LINE__);
3257 setKey.keyDirection = eSIR_TX_RX;
3258 vos_mem_copy(setKey.peerMac, mac_addr,WNI_CFG_BSSID_LEN);
3259 }
3260 if ((WLAN_HDD_IBSS == pAdapter->device_mode) && !pairwise)
3261 {
3262 setKey.keyDirection = eSIR_TX_RX;
3263 /*Set the group key*/
3264 status = sme_RoamSetKey( WLAN_HDD_GET_HAL_CTX(pAdapter),
3265 pAdapter->sessionId, &setKey, &roamId );
Jeff Johnson295189b2012-06-20 16:38:30 -07003266
Shailender Karmuchi642e9812013-05-30 14:34:49 -07003267 if ( 0 != status )
3268 {
3269 hddLog(VOS_TRACE_LEVEL_ERROR,
3270 "%s: sme_RoamSetKey failed, returned %d", __func__, status);
3271 return -EINVAL;
3272 }
3273 /*Save the keys here and call sme_RoamSetKey for setting
3274 the PTK after peer joins the IBSS network*/
3275 vos_mem_copy(&pAdapter->sessionCtx.station.ibss_enc_key,
3276 &setKey, sizeof(tCsrRoamSetKey));
3277 return status;
3278 }
Gopichand Nakkala29149562013-05-10 21:43:41 +05303279 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP) ||
3280 (pAdapter->device_mode == WLAN_HDD_P2P_GO))
3281 {
Jeff Johnson295189b2012-06-20 16:38:30 -07003282 pHostapdState = WLAN_HDD_GET_HOSTAP_STATE_PTR(pAdapter);
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07003283 if( pHostapdState->bssState == BSS_START )
3284 {
Jeff Johnson295189b2012-06-20 16:38:30 -07003285 status = WLANSAP_SetKeySta( pVosContext, &setKey);
3286
3287 if ( status != eHAL_STATUS_SUCCESS )
3288 {
3289 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3290 "[%4d] WLANSAP_SetKeySta returned ERROR status= %d",
3291 __LINE__, status );
3292 }
3293 }
3294
3295 /* Saving WEP keys */
3296 else if( eCSR_ENCRYPT_TYPE_WEP40_STATICKEY == setKey.encType ||
3297 eCSR_ENCRYPT_TYPE_WEP104_STATICKEY == setKey.encType )
3298 {
3299 //Save the wep key in ap context. Issue setkey after the BSS is started.
3300 hdd_ap_ctx_t *pAPCtx = WLAN_HDD_GET_AP_CTX_PTR(pAdapter);
3301 vos_mem_copy(&pAPCtx->wepKey[key_index], &setKey, sizeof(tCsrRoamSetKey));
3302 }
3303 else
3304 {
3305 //Save the key in ap context. Issue setkey after the BSS is started.
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07003306 hdd_ap_ctx_t *pAPCtx = WLAN_HDD_GET_AP_CTX_PTR(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07003307 vos_mem_copy(&pAPCtx->groupKey, &setKey, sizeof(tCsrRoamSetKey));
3308 }
3309 }
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07003310 else if ( (pAdapter->device_mode == WLAN_HDD_INFRA_STATION) ||
3311 (pAdapter->device_mode == WLAN_HDD_P2P_CLIENT) )
Jeff Johnson295189b2012-06-20 16:38:30 -07003312 {
3313 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
3314 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
3315
Gopichand Nakkala3d295922013-05-07 16:19:14 +05303316#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
3317 if (!pairwise)
3318#else
3319 if (!mac_addr || is_broadcast_ether_addr(mac_addr))
3320#endif
3321 {
3322 /* set group key*/
3323 if (pHddStaCtx->roam_info.deferKeyComplete)
3324 {
3325 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
3326 "%s- %d: Perform Set key Complete",
3327 __func__, __LINE__);
3328 hdd_PerformRoamSetKeyComplete(pAdapter);
3329 }
3330 }
3331
Jeff Johnson295189b2012-06-20 16:38:30 -07003332 pWextState->roamProfile.Keys.KeyLength[key_index] = (u8)params->key_len;
3333
Venkata Prathyusha Kuntupalliee2ce712013-01-17 14:09:24 -08003334 pWextState->roamProfile.Keys.defaultIndex = key_index;
3335
3336
Jeff Johnsonf77ef0a2013-03-27 09:29:14 -07003337 vos_mem_copy(&pWextState->roamProfile.Keys.KeyMaterial[key_index][0],
Jeff Johnson295189b2012-06-20 16:38:30 -07003338 params->key, params->key_len);
3339
Gopichand Nakkala3d295922013-05-07 16:19:14 +05303340
Jeff Johnson295189b2012-06-20 16:38:30 -07003341 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_SETTING_KEY;
3342
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303343 hddLog(VOS_TRACE_LEVEL_INFO_MED,
Jeff Johnson295189b2012-06-20 16:38:30 -07003344 "%s: set key for peerMac %2x:%2x:%2x:%2x:%2x:%2x, direction %d",
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303345 __func__, setKey.peerMac[0], setKey.peerMac[1],
3346 setKey.peerMac[2], setKey.peerMac[3],
3347 setKey.peerMac[4], setKey.peerMac[5],
Jeff Johnson295189b2012-06-20 16:38:30 -07003348 setKey.keyDirection);
3349
3350 vos_status = wlan_hdd_check_ula_done(pAdapter);
3351
3352 if ( vos_status != VOS_STATUS_SUCCESS )
3353 {
3354 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3355 "[%4d] wlan_hdd_check_ula_done returned ERROR status= %d",
3356 __LINE__, vos_status );
3357
3358 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_NONE;
3359
3360 return -EINVAL;
3361
3362 }
3363
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07003364#ifdef WLAN_FEATURE_VOWIFI_11R
Gopichand Nakkala3d295922013-05-07 16:19:14 +05303365 /* The supplicant may attempt to set the PTK once pre-authentication
3366 is done. Save the key in the UMAC and include it in the ADD BSS
3367 request */
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07003368 halStatus = sme_FTUpdateKey( WLAN_HDD_GET_HAL_CTX(pAdapter), &setKey);
Gopichand Nakkala3d295922013-05-07 16:19:14 +05303369 if ( halStatus == eHAL_STATUS_FT_PREAUTH_KEY_SUCCESS )
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07003370 {
Gopichand Nakkala3d295922013-05-07 16:19:14 +05303371 hddLog(VOS_TRACE_LEVEL_INFO_MED,
3372 "%s: Update PreAuth Key success", __func__);
3373 return 0;
3374 }
3375 else if ( halStatus == eHAL_STATUS_FT_PREAUTH_KEY_FAILED )
3376 {
3377 hddLog(VOS_TRACE_LEVEL_ERROR,
3378 "%s: Update PreAuth Key failed", __func__);
Gopichand Nakkalad7d13652013-02-15 01:48:00 +05303379 return -EINVAL;
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07003380 }
3381#endif /* WLAN_FEATURE_VOWIFI_11R */
Jeff Johnson295189b2012-06-20 16:38:30 -07003382
3383 /* issue set key request to SME*/
3384 status = sme_RoamSetKey( WLAN_HDD_GET_HAL_CTX(pAdapter),
3385 pAdapter->sessionId, &setKey, &roamId );
3386
3387 if ( 0 != status )
3388 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303389 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07003390 "%s: sme_RoamSetKey failed, returned %d", __func__, status);
3391 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_NONE;
3392 return -EINVAL;
3393 }
3394
3395
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303396 /* in case of IBSS as there was no information available about WEP keys during
3397 * IBSS join, group key intialized with NULL key, so re-initialize group key
Jeff Johnson295189b2012-06-20 16:38:30 -07003398 * with correct value*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303399 if ( (eCSR_BSS_TYPE_START_IBSS == pWextState->roamProfile.BSSType) &&
3400 !( ( IW_AUTH_KEY_MGMT_802_1X
3401 == (pWextState->authKeyMgmt & IW_AUTH_KEY_MGMT_802_1X))
Jeff Johnson295189b2012-06-20 16:38:30 -07003402 && (eCSR_AUTH_TYPE_OPEN_SYSTEM == pHddStaCtx->conn_info.authType)
3403 )
3404 &&
3405 ( (WLAN_CIPHER_SUITE_WEP40 == params->cipher)
3406 || (WLAN_CIPHER_SUITE_WEP104 == params->cipher)
3407 )
3408 )
3409 {
3410 setKey.keyDirection = eSIR_RX_ONLY;
3411 vos_mem_copy(setKey.peerMac,groupmacaddr,WNI_CFG_BSSID_LEN);
3412
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303413 hddLog(VOS_TRACE_LEVEL_INFO_MED,
Jeff Johnson295189b2012-06-20 16:38:30 -07003414 "%s: set key peerMac %2x:%2x:%2x:%2x:%2x:%2x, direction %d",
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303415 __func__, setKey.peerMac[0], setKey.peerMac[1],
3416 setKey.peerMac[2], setKey.peerMac[3],
3417 setKey.peerMac[4], setKey.peerMac[5],
Jeff Johnson295189b2012-06-20 16:38:30 -07003418 setKey.keyDirection);
3419
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303420 status = sme_RoamSetKey( WLAN_HDD_GET_HAL_CTX(pAdapter),
Jeff Johnson295189b2012-06-20 16:38:30 -07003421 pAdapter->sessionId, &setKey, &roamId );
3422
3423 if ( 0 != status )
3424 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303425 hddLog(VOS_TRACE_LEVEL_ERROR,
3426 "%s: sme_RoamSetKey failed for group key (IBSS), returned %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07003427 __func__, status);
3428 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_NONE;
3429 return -EINVAL;
3430 }
3431 }
3432 }
3433
3434 return 0;
3435}
3436
3437/*
3438 * FUNCTION: wlan_hdd_cfg80211_get_key
3439 * This function is used to get the key information
3440 */
3441#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303442static int wlan_hdd_cfg80211_get_key(
3443 struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07003444 struct net_device *ndev,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303445 u8 key_index, bool pairwise,
Jeff Johnson295189b2012-06-20 16:38:30 -07003446 const u8 *mac_addr, void *cookie,
3447 void (*callback)(void *cookie, struct key_params*)
3448 )
3449#else
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303450static int wlan_hdd_cfg80211_get_key(
3451 struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07003452 struct net_device *ndev,
3453 u8 key_index, const u8 *mac_addr, void *cookie,
3454 void (*callback)(void *cookie, struct key_params*)
3455 )
3456#endif
3457{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303458 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( ndev );
Jeff Johnson295189b2012-06-20 16:38:30 -07003459 hdd_wext_state_t *pWextState= WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
3460 tCsrRoamProfile *pRoamProfile = &(pWextState->roamProfile);
3461 struct key_params params;
3462
3463 ENTER();
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303464
Jeff Johnson295189b2012-06-20 16:38:30 -07003465 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %d\n",
3466 __func__,pAdapter->device_mode);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303467
Jeff Johnson295189b2012-06-20 16:38:30 -07003468 memset(&params, 0, sizeof(params));
3469
3470 if (CSR_MAX_NUM_KEY <= key_index)
3471 {
3472 return -EINVAL;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303473 }
Jeff Johnson295189b2012-06-20 16:38:30 -07003474
3475 switch(pRoamProfile->EncryptionType.encryptionType[0])
3476 {
3477 case eCSR_ENCRYPT_TYPE_NONE:
3478 params.cipher = IW_AUTH_CIPHER_NONE;
3479 break;
3480
3481 case eCSR_ENCRYPT_TYPE_WEP40_STATICKEY:
3482 case eCSR_ENCRYPT_TYPE_WEP40:
3483 params.cipher = WLAN_CIPHER_SUITE_WEP40;
3484 break;
3485
3486 case eCSR_ENCRYPT_TYPE_WEP104_STATICKEY:
3487 case eCSR_ENCRYPT_TYPE_WEP104:
3488 params.cipher = WLAN_CIPHER_SUITE_WEP104;
3489 break;
3490
3491 case eCSR_ENCRYPT_TYPE_TKIP:
3492 params.cipher = WLAN_CIPHER_SUITE_TKIP;
3493 break;
3494
3495 case eCSR_ENCRYPT_TYPE_AES:
3496 params.cipher = WLAN_CIPHER_SUITE_AES_CMAC;
3497 break;
3498
3499 default:
3500 params.cipher = IW_AUTH_CIPHER_NONE;
3501 break;
3502 }
3503
3504 params.key_len = pRoamProfile->Keys.KeyLength[key_index];
3505 params.seq_len = 0;
3506 params.seq = NULL;
3507 params.key = &pRoamProfile->Keys.KeyMaterial[key_index][0];
3508 callback(cookie, &params);
3509 return 0;
3510}
3511
3512/*
3513 * FUNCTION: wlan_hdd_cfg80211_del_key
3514 * This function is used to delete the key information
3515 */
3516#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303517static int wlan_hdd_cfg80211_del_key( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07003518 struct net_device *ndev,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303519 u8 key_index,
3520 bool pairwise,
Jeff Johnson295189b2012-06-20 16:38:30 -07003521 const u8 *mac_addr
3522 )
3523#else
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303524static int wlan_hdd_cfg80211_del_key( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07003525 struct net_device *ndev,
3526 u8 key_index,
3527 const u8 *mac_addr
3528 )
3529#endif
3530{
3531 int status = 0;
3532
3533 //This code needs to be revisited. There is sme_removeKey API, we should
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303534 //plan to use that. After the change to use correct index in setkey,
Jeff Johnson295189b2012-06-20 16:38:30 -07003535 //it is observed that this is invalidating peer
3536 //key index whenever re-key is done. This is affecting data link.
3537 //It should be ok to ignore del_key.
3538#if 0
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303539 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( ndev );
3540 v_CONTEXT_t pVosContext = (WLAN_HDD_GET_CTX(pAdapter))->pvosContext;
Jeff Johnson295189b2012-06-20 16:38:30 -07003541 u8 groupmacaddr[WNI_CFG_BSSID_LEN] = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF};
3542 tCsrRoamSetKey setKey;
3543 v_U32_t roamId= 0xFF;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303544
Jeff Johnson295189b2012-06-20 16:38:30 -07003545 ENTER();
3546
3547 hddLog(VOS_TRACE_LEVEL_INFO_HIGH, "%s: device_mode = %d\n",
3548 __func__,pAdapter->device_mode);
3549
3550 if (CSR_MAX_NUM_KEY <= key_index)
3551 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303552 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid key index %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07003553 key_index);
3554
3555 return -EINVAL;
3556 }
3557
3558 vos_mem_zero(&setKey,sizeof(tCsrRoamSetKey));
3559 setKey.keyId = key_index;
3560
3561 if (mac_addr)
3562 vos_mem_copy(setKey.peerMac, mac_addr,WNI_CFG_BSSID_LEN);
3563 else
3564 vos_mem_copy(setKey.peerMac, groupmacaddr, WNI_CFG_BSSID_LEN);
3565
3566 setKey.encType = eCSR_ENCRYPT_TYPE_NONE;
3567
3568 if ((pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -07003569 || (pAdapter->device_mode == WLAN_HDD_P2P_GO)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303570 )
3571 {
3572
3573 hdd_hostapd_state_t *pHostapdState =
Jeff Johnson295189b2012-06-20 16:38:30 -07003574 WLAN_HDD_GET_HOSTAP_STATE_PTR(pAdapter);
3575 if( pHostapdState->bssState == BSS_START)
3576 {
3577 status = WLANSAP_SetKeySta( pVosContext, &setKey);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303578
Jeff Johnson295189b2012-06-20 16:38:30 -07003579 if ( status != eHAL_STATUS_SUCCESS )
3580 {
3581 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3582 "[%4d] WLANSAP_SetKeySta returned ERROR status= %d",
3583 __LINE__, status );
3584 }
3585 }
3586 }
3587 else if ( (pAdapter->device_mode == WLAN_HDD_INFRA_STATION)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303588 || (pAdapter->device_mode == WLAN_HDD_P2P_CLIENT)
Jeff Johnson295189b2012-06-20 16:38:30 -07003589 )
3590 {
3591 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
3592
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303593 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_SETTING_KEY;
3594
3595 hddLog(VOS_TRACE_LEVEL_INFO_MED,
Jeff Johnson295189b2012-06-20 16:38:30 -07003596 "%s: delete key for peerMac %2x:%2x:%2x:%2x:%2x:%2x",
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303597 __func__, setKey.peerMac[0], setKey.peerMac[1],
3598 setKey.peerMac[2], setKey.peerMac[3],
Jeff Johnson295189b2012-06-20 16:38:30 -07003599 setKey.peerMac[4], setKey.peerMac[5]);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303600 if(pAdapter->sessionCtx.station.conn_info.connState ==
3601 eConnectionState_Associated)
Jeff Johnson295189b2012-06-20 16:38:30 -07003602 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303603 status = sme_RoamSetKey( WLAN_HDD_GET_HAL_CTX(pAdapter),
Jeff Johnson295189b2012-06-20 16:38:30 -07003604 pAdapter->sessionId, &setKey, &roamId );
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303605
Jeff Johnson295189b2012-06-20 16:38:30 -07003606 if ( 0 != status )
3607 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303608 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07003609 "%s: sme_RoamSetKey failure, returned %d",
3610 __func__, status);
3611 pHddStaCtx->roam_info.roamingState = HDD_ROAM_STATE_NONE;
3612 return -EINVAL;
3613 }
3614 }
3615 }
3616#endif
Jeff Johnsone7245742012-09-05 17:12:55 -07003617 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -07003618 return status;
3619}
3620
3621/*
3622 * FUNCTION: wlan_hdd_cfg80211_set_default_key
3623 * This function is used to set the default tx key index
3624 */
3625#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
3626static int wlan_hdd_cfg80211_set_default_key( struct wiphy *wiphy,
3627 struct net_device *ndev,
3628 u8 key_index,
3629 bool unicast, bool multicast)
3630#else
3631static int wlan_hdd_cfg80211_set_default_key( struct wiphy *wiphy,
3632 struct net_device *ndev,
3633 u8 key_index)
3634#endif
3635{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303636 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( ndev );
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303637 int status;
Gopichand Nakkala29149562013-05-10 21:43:41 +05303638 hdd_wext_state_t *pWextState;
3639 hdd_station_ctx_t *pHddStaCtx;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303640 hdd_context_t *pHddCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -07003641
3642 ENTER();
3643
Gopichand Nakkala29149562013-05-10 21:43:41 +05303644 if ((NULL == pAdapter))
3645 {
3646 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
3647 "invalid adapter");
3648 return -EINVAL;
3649 }
3650
3651 pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
3652 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
3653
3654 if ((NULL == pWextState) || (NULL == pHddStaCtx))
3655 {
3656 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
3657 "invalid Wext state or HDD context");
3658 return -EINVAL;
3659 }
3660
Jeff Johnson295189b2012-06-20 16:38:30 -07003661 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %d key_index = %d \n",
3662 __func__,pAdapter->device_mode, key_index);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303663
Jeff Johnson295189b2012-06-20 16:38:30 -07003664 if (CSR_MAX_NUM_KEY <= key_index)
3665 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303666 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid key index %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07003667 key_index);
3668
3669 return -EINVAL;
3670 }
3671
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303672 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
3673 status = wlan_hdd_validate_context(pHddCtx);
3674
3675 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07003676 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05303677 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
3678 "%s: HDD context is not valid", __func__);
3679 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07003680 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303681
Jeff Johnson295189b2012-06-20 16:38:30 -07003682 if ((pAdapter->device_mode == WLAN_HDD_INFRA_STATION)
Jeff Johnson295189b2012-06-20 16:38:30 -07003683 || (pAdapter->device_mode == WLAN_HDD_P2P_CLIENT)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303684 )
Jeff Johnson295189b2012-06-20 16:38:30 -07003685 {
Gopichand Nakkala29149562013-05-10 21:43:41 +05303686 if ( (eCSR_ENCRYPT_TYPE_TKIP !=
Jeff Johnson295189b2012-06-20 16:38:30 -07003687 pWextState->roamProfile.EncryptionType.encryptionType[0]) &&
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303688 (eCSR_ENCRYPT_TYPE_AES !=
Jeff Johnson295189b2012-06-20 16:38:30 -07003689 pWextState->roamProfile.EncryptionType.encryptionType[0])
3690 )
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303691 {
3692 /* if default key index is not same as previous one,
Jeff Johnson295189b2012-06-20 16:38:30 -07003693 * then update the default key index */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303694
Jeff Johnson295189b2012-06-20 16:38:30 -07003695 tCsrRoamSetKey setKey;
3696 v_U32_t roamId= 0xFF;
3697 tCsrKeys *Keys = &pWextState->roamProfile.Keys;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303698
3699 hddLog(VOS_TRACE_LEVEL_INFO_HIGH, "%s: default tx key index %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07003700 __func__, key_index);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303701
Jeff Johnson295189b2012-06-20 16:38:30 -07003702 Keys->defaultIndex = (u8)key_index;
3703 vos_mem_zero(&setKey,sizeof(tCsrRoamSetKey));
3704 setKey.keyId = key_index;
3705 setKey.keyLength = Keys->KeyLength[key_index];
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303706
3707 vos_mem_copy(&setKey.Key[0],
3708 &Keys->KeyMaterial[key_index][0],
Jeff Johnson295189b2012-06-20 16:38:30 -07003709 Keys->KeyLength[key_index]);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303710
Gopichand Nakkala29149562013-05-10 21:43:41 +05303711 setKey.keyDirection = eSIR_TX_RX;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303712
3713 vos_mem_copy(setKey.peerMac,
Jeff Johnson295189b2012-06-20 16:38:30 -07003714 &pHddStaCtx->conn_info.bssId[0],
3715 WNI_CFG_BSSID_LEN);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303716
Gopichand Nakkala29149562013-05-10 21:43:41 +05303717 if (Keys->KeyLength[key_index] == CSR_WEP40_KEY_LEN &&
3718 pWextState->roamProfile.EncryptionType.encryptionType[0] ==
3719 eCSR_ENCRYPT_TYPE_WEP104)
3720 {
3721 /*In the case of dynamic wep supplicant hardcodes DWEP type to eCSR_ENCRYPT_TYPE_WEP104
3722 even though ap is configured for WEP-40 encryption. In this canse the key length
3723 is 5 but the encryption type is 104 hence checking the key langht(5) and encryption
3724 type(104) and switching encryption type to 40*/
3725 pWextState->roamProfile.EncryptionType.encryptionType[0] =
3726 eCSR_ENCRYPT_TYPE_WEP40;
3727 pWextState->roamProfile.mcEncryptionType.encryptionType[0] =
3728 eCSR_ENCRYPT_TYPE_WEP40;
3729 }
3730
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303731 setKey.encType =
Jeff Johnson295189b2012-06-20 16:38:30 -07003732 pWextState->roamProfile.EncryptionType.encryptionType[0];
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303733
Jeff Johnson295189b2012-06-20 16:38:30 -07003734 /* issue set key request */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303735 status = sme_RoamSetKey( WLAN_HDD_GET_HAL_CTX(pAdapter),
Jeff Johnson295189b2012-06-20 16:38:30 -07003736 pAdapter->sessionId, &setKey, &roamId );
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303737
Jeff Johnson295189b2012-06-20 16:38:30 -07003738 if ( 0 != status )
3739 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303740 hddLog(VOS_TRACE_LEVEL_ERROR,
3741 "%s: sme_RoamSetKey failed, returned %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07003742 status);
3743 return -EINVAL;
3744 }
3745 }
3746 }
3747
3748 /* In SoftAp mode setting key direction for default mode */
3749 else if ( WLAN_HDD_SOFTAP == pAdapter->device_mode )
3750 {
3751 if ( (eCSR_ENCRYPT_TYPE_TKIP !=
3752 pWextState->roamProfile.EncryptionType.encryptionType[0]) &&
3753 (eCSR_ENCRYPT_TYPE_AES !=
3754 pWextState->roamProfile.EncryptionType.encryptionType[0])
3755 )
3756 {
3757 /* Saving key direction for default key index to TX default */
3758 hdd_ap_ctx_t *pAPCtx = WLAN_HDD_GET_AP_CTX_PTR(pAdapter);
3759 pAPCtx->wepKey[key_index].keyDirection = eSIR_TX_DEFAULT;
3760 }
3761 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303762
Jeff Johnson295189b2012-06-20 16:38:30 -07003763 return status;
3764}
3765
Jeff Johnson295189b2012-06-20 16:38:30 -07003766/*
3767 * FUNCTION: wlan_hdd_cfg80211_inform_bss
3768 * This function is used to inform the BSS details to nl80211 interface.
3769 */
3770static struct cfg80211_bss* wlan_hdd_cfg80211_inform_bss(
3771 hdd_adapter_t *pAdapter, tCsrRoamConnectedProfile *roamProfile)
3772{
3773 struct net_device *dev = pAdapter->dev;
3774 struct wireless_dev *wdev = dev->ieee80211_ptr;
3775 struct wiphy *wiphy = wdev->wiphy;
3776 tSirBssDescription *pBssDesc = roamProfile->pBssDesc;
3777 int chan_no;
3778 int ie_length;
3779 const char *ie;
3780 unsigned int freq;
3781 struct ieee80211_channel *chan;
3782 int rssi = 0;
3783 struct cfg80211_bss *bss = NULL;
3784
3785 ENTER();
3786
3787 if( NULL == pBssDesc )
3788 {
3789 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: pBssDesc is NULL\n", __func__);
3790 return bss;
3791 }
3792
3793 chan_no = pBssDesc->channelId;
3794 ie_length = GET_IE_LEN_IN_BSS_DESC( pBssDesc->length );
3795 ie = ((ie_length != 0) ? (const char *)&pBssDesc->ieFields: NULL);
3796
3797 if( NULL == ie )
3798 {
3799 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: IE of BSS descriptor is NULL\n", __func__);
3800 return bss;
3801 }
3802
3803#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,38))
3804 if (chan_no <= ARRAY_SIZE(hdd_channels_2_4_GHZ))
3805 {
3806 freq = ieee80211_channel_to_frequency(chan_no, IEEE80211_BAND_2GHZ);
3807 }
3808 else
3809 {
3810 freq = ieee80211_channel_to_frequency(chan_no, IEEE80211_BAND_5GHZ);
3811 }
3812#else
3813 freq = ieee80211_channel_to_frequency(chan_no);
3814#endif
3815
3816 chan = __ieee80211_get_channel(wiphy, freq);
3817
3818 bss = cfg80211_get_bss(wiphy, chan, pBssDesc->bssId,
3819 &roamProfile->SSID.ssId[0], roamProfile->SSID.length,
3820 WLAN_CAPABILITY_ESS, WLAN_CAPABILITY_ESS);
3821 if (bss == NULL)
3822 {
3823 rssi = (VOS_MIN ((pBssDesc->rssi + pBssDesc->sinr), 0))*100;
3824
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303825 return (cfg80211_inform_bss(wiphy, chan, pBssDesc->bssId,
3826 le64_to_cpu(*(__le64 *)pBssDesc->timeStamp),
Jeff Johnson295189b2012-06-20 16:38:30 -07003827 pBssDesc->capabilityInfo,
3828 pBssDesc->beaconInterval, ie, ie_length,
3829 rssi, GFP_KERNEL ));
3830}
3831 else
3832 {
3833 return bss;
3834 }
3835}
3836
3837
3838
3839/*
3840 * FUNCTION: wlan_hdd_cfg80211_inform_bss_frame
3841 * This function is used to inform the BSS details to nl80211 interface.
3842 */
3843struct cfg80211_bss*
3844wlan_hdd_cfg80211_inform_bss_frame( hdd_adapter_t *pAdapter,
3845 tSirBssDescription *bss_desc
3846 )
3847{
3848 /*
3849 cfg80211_inform_bss() is not updating ie field of bss entry, if entry
3850 already exists in bss data base of cfg80211 for that particular BSS ID.
3851 Using cfg80211_inform_bss_frame to update the bss entry instead of
3852 cfg80211_inform_bss, But this call expects mgmt packet as input. As of
3853 now there is no possibility to get the mgmt(probe response) frame from PE,
3854 converting bss_desc to ieee80211_mgmt(probe response) and passing to
3855 cfg80211_inform_bss_frame.
3856 */
3857 struct net_device *dev = pAdapter->dev;
3858 struct wireless_dev *wdev = dev->ieee80211_ptr;
3859 struct wiphy *wiphy = wdev->wiphy;
3860 int chan_no = bss_desc->channelId;
Madan Mohan Koyyalamudi86f629e2012-11-09 16:27:29 -08003861#ifdef WLAN_ENABLE_AGEIE_ON_SCAN_RESULTS
3862 qcom_ie_age *qie_age = NULL;
3863 int ie_length = GET_IE_LEN_IN_BSS_DESC( bss_desc->length ) + sizeof(qcom_ie_age);
3864#else
Jeff Johnson295189b2012-06-20 16:38:30 -07003865 int ie_length = GET_IE_LEN_IN_BSS_DESC( bss_desc->length );
Madan Mohan Koyyalamudi86f629e2012-11-09 16:27:29 -08003866#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07003867 const char *ie =
3868 ((ie_length != 0) ? (const char *)&bss_desc->ieFields: NULL);
3869 unsigned int freq;
3870 struct ieee80211_channel *chan;
3871 struct ieee80211_mgmt *mgmt =
3872 kzalloc((sizeof (struct ieee80211_mgmt) + ie_length), GFP_KERNEL);
3873 struct cfg80211_bss *bss_status = NULL;
3874 size_t frame_len = sizeof (struct ieee80211_mgmt) + ie_length;
3875 int rssi = 0;
Jeff Johnsone7245742012-09-05 17:12:55 -07003876#ifdef WLAN_OPEN_SOURCE
3877 struct timespec ts;
3878#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07003879
3880 ENTER();
3881
Madan Mohan Koyyalamudi2e5c9142012-11-02 13:17:48 -07003882 if (!mgmt)
3883 return NULL;
3884
Jeff Johnson295189b2012-06-20 16:38:30 -07003885 memcpy(mgmt->bssid, bss_desc->bssId, ETH_ALEN);
Jeff Johnsone7245742012-09-05 17:12:55 -07003886
3887#ifdef WLAN_OPEN_SOURCE
3888 /* Android does not want the timestamp from the frame.
3889 Instead it wants a monotonic increasing value */
3890 get_monotonic_boottime(&ts);
3891 mgmt->u.probe_resp.timestamp =
3892 ((u64)ts.tv_sec * 1000000) + (ts.tv_nsec / 1000);
3893#else
3894 /* keep old behavior for non-open source (for now) */
Jeff Johnson295189b2012-06-20 16:38:30 -07003895 memcpy(&mgmt->u.probe_resp.timestamp, bss_desc->timeStamp,
3896 sizeof (bss_desc->timeStamp));
Jeff Johnsone7245742012-09-05 17:12:55 -07003897
3898#endif
3899
Jeff Johnson295189b2012-06-20 16:38:30 -07003900 mgmt->u.probe_resp.beacon_int = bss_desc->beaconInterval;
3901 mgmt->u.probe_resp.capab_info = bss_desc->capabilityInfo;
Madan Mohan Koyyalamudi86f629e2012-11-09 16:27:29 -08003902
3903#ifdef WLAN_ENABLE_AGEIE_ON_SCAN_RESULTS
3904 /* GPS Requirement: need age ie per entry. Using vendor specific. */
3905 /* Assuming this is the last IE, copy at the end */
3906 ie_length -=sizeof(qcom_ie_age);
3907 qie_age = (qcom_ie_age *)(mgmt->u.probe_resp.variable + ie_length);
3908 qie_age->element_id = QCOM_VENDOR_IE_ID;
3909 qie_age->len = QCOM_VENDOR_IE_AGE_LEN;
3910 qie_age->oui_1 = QCOM_OUI1;
3911 qie_age->oui_2 = QCOM_OUI2;
3912 qie_age->oui_3 = QCOM_OUI3;
3913 qie_age->type = QCOM_VENDOR_IE_AGE_TYPE;
3914 qie_age->age = vos_timer_get_system_ticks() - bss_desc->nReceivedTime;
3915#endif
3916
Jeff Johnson295189b2012-06-20 16:38:30 -07003917 memcpy(mgmt->u.probe_resp.variable, ie, ie_length);
Gopichand Nakkalad908ec82013-05-16 19:32:19 +05303918 if (bss_desc->fProbeRsp)
3919 {
3920 mgmt->frame_control |=
3921 (u16)(IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_PROBE_RESP);
3922 }
3923 else
3924 {
3925 mgmt->frame_control |=
3926 (u16)(IEEE80211_FTYPE_MGMT | IEEE80211_STYPE_BEACON);
3927 }
Jeff Johnson295189b2012-06-20 16:38:30 -07003928
3929#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,38))
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303930 if (chan_no <= ARRAY_SIZE(hdd_channels_2_4_GHZ) &&
Jeff Johnson295189b2012-06-20 16:38:30 -07003931 (wiphy->bands[IEEE80211_BAND_2GHZ] != NULL))
3932 {
3933 freq = ieee80211_channel_to_frequency(chan_no, IEEE80211_BAND_2GHZ);
3934 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303935 else if ((chan_no > ARRAY_SIZE(hdd_channels_2_4_GHZ)) &&
Jeff Johnson295189b2012-06-20 16:38:30 -07003936 (wiphy->bands[IEEE80211_BAND_5GHZ] != NULL))
3937
3938 {
3939 freq = ieee80211_channel_to_frequency(chan_no, IEEE80211_BAND_5GHZ);
3940 }
3941 else
3942 {
3943 kfree(mgmt);
3944 return NULL;
3945 }
3946#else
3947 freq = ieee80211_channel_to_frequency(chan_no);
3948#endif
3949 chan = __ieee80211_get_channel(wiphy, freq);
Leela V Kiran Kumar Reddy90032de2013-01-24 18:33:30 -08003950 /*when the band is changed on the fly using the GUI, three things are done
3951 * 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)
3952 * as part of the scan abort, message willbe queued to PE and we proceed with flushing and changinh the band.
3953 * pe will stop the scanning further and report back the results what ever it had till now by calling the call back function.
3954 * if the time between update band and scandone call back is sufficent enough the band change reflects in SME, SME validates the channels
3955 * and discards the channels correponding to previous band and calls back with zero bss results.
3956 * 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
3957 * all the channels correponding to previous band.this is due to race condition.but those channels are invalid to the new band and so
3958 * this function __ieee80211_get_channel will return NULL.Each time we report scan result with this pointer null warning kernel trace is printed.
3959 * if the scan results contain large number of APs continuosly kernel warning trace is printed and it will lead to apps watch dog bark.
3960 * So drop the bss and continue to next bss.
3961 */
3962 if(chan == NULL)
3963 {
3964 hddLog(VOS_TRACE_LEVEL_INFO, "%s chan pointer is NULL", __func__);
Chilam Ngc4244af2013-04-01 15:37:32 -07003965 kfree(mgmt);
Leela V Kiran Kumar Reddy90032de2013-01-24 18:33:30 -08003966 return NULL;
3967 }
Jeff Johnson295189b2012-06-20 16:38:30 -07003968 /*To keep the rssi icon of the connected AP in the scan window
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303969 *and the rssi icon of the wireless networks in sync
Jeff Johnson295189b2012-06-20 16:38:30 -07003970 * */
3971 if (( eConnectionState_Associated ==
3972 pAdapter->sessionCtx.station.conn_info.connState ) &&
3973 ( VOS_TRUE == vos_mem_compare(bss_desc->bssId,
3974 pAdapter->sessionCtx.station.conn_info.bssId,
3975 WNI_CFG_BSSID_LEN)))
3976 {
3977 /* supplicant takes the signal strength in terms of mBm(100*dBm) */
3978 rssi = (pAdapter->rssi * 100);
3979 }
3980 else
3981 {
3982 rssi = (VOS_MIN ((bss_desc->rssi + bss_desc->sinr), 0))*100;
3983 }
3984
3985 bss_status = cfg80211_inform_bss_frame(wiphy, chan, mgmt,
3986 frame_len, rssi, GFP_KERNEL);
3987 kfree(mgmt);
3988 return bss_status;
3989}
3990
3991/*
3992 * FUNCTION: wlan_hdd_cfg80211_update_bss_db
3993 * This function is used to update the BSS data base of CFG8011
3994 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05303995struct cfg80211_bss* wlan_hdd_cfg80211_update_bss_db( hdd_adapter_t *pAdapter,
Jeff Johnson295189b2012-06-20 16:38:30 -07003996 tCsrRoamInfo *pRoamInfo
3997 )
3998{
3999 tCsrRoamConnectedProfile roamProfile;
4000 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
4001 struct cfg80211_bss *bss = NULL;
4002
4003 ENTER();
4004
4005 memset(&roamProfile, 0, sizeof(tCsrRoamConnectedProfile));
4006 sme_RoamGetConnectProfile(hHal, pAdapter->sessionId, &roamProfile);
4007
4008 if (NULL != roamProfile.pBssDesc)
4009 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304010 bss = wlan_hdd_cfg80211_inform_bss(pAdapter,
Jeff Johnson295189b2012-06-20 16:38:30 -07004011 &roamProfile);
4012
4013 if (NULL == bss)
4014 {
4015 hddLog(VOS_TRACE_LEVEL_INFO, "%s: cfg80211_inform_bss return NULL",
4016 __func__);
4017 }
4018
4019 sme_RoamFreeConnectProfile(hHal, &roamProfile);
4020 }
4021 else
4022 {
4023 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: roamProfile.pBssDesc is NULL",
4024 __func__);
4025 }
4026 return bss;
4027}
4028
4029/*
4030 * FUNCTION: wlan_hdd_cfg80211_update_bss
4031 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304032static int wlan_hdd_cfg80211_update_bss( struct wiphy *wiphy,
4033 hdd_adapter_t *pAdapter
Jeff Johnson295189b2012-06-20 16:38:30 -07004034 )
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304035{
Jeff Johnson295189b2012-06-20 16:38:30 -07004036 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
4037 tCsrScanResultInfo *pScanResult;
4038 eHalStatus status = 0;
4039 tScanResultHandle pResult;
4040 struct cfg80211_bss *bss_status = NULL;
4041
4042 ENTER();
4043
4044 if ((WLAN_HDD_GET_CTX(pAdapter))->isLogpInProgress)
4045 {
4046 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL, "%s:LOGP in Progress. Ignore!!!",__func__);
4047 return -EAGAIN;
4048 }
4049
4050 /*
4051 * start getting scan results and populate cgf80211 BSS database
4052 */
4053 status = sme_ScanGetResult(hHal, pAdapter->sessionId, NULL, &pResult);
4054
4055 /* no scan results */
4056 if (NULL == pResult)
4057 {
4058 hddLog(VOS_TRACE_LEVEL_INFO, "%s: No scan result\n", __func__);
4059 return status;
4060 }
4061
4062 pScanResult = sme_ScanResultGetFirst(hHal, pResult);
4063
4064 while (pScanResult)
4065 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304066 /*
4067 * cfg80211_inform_bss() is not updating ie field of bss entry, if
4068 * entry already exists in bss data base of cfg80211 for that
4069 * particular BSS ID. Using cfg80211_inform_bss_frame to update the
4070 * bss entry instead of cfg80211_inform_bss, But this call expects
4071 * mgmt packet as input. As of now there is no possibility to get
4072 * the mgmt(probe response) frame from PE, converting bss_desc to
Jeff Johnson295189b2012-06-20 16:38:30 -07004073 * ieee80211_mgmt(probe response) and passing to c
4074 * fg80211_inform_bss_frame.
4075 * */
4076
4077 bss_status = wlan_hdd_cfg80211_inform_bss_frame(pAdapter,
4078 &pScanResult->BssDescriptor);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304079
Jeff Johnson295189b2012-06-20 16:38:30 -07004080
4081 if (NULL == bss_status)
4082 {
4083 hddLog(VOS_TRACE_LEVEL_INFO,
4084 "%s: NULL returned by cfg80211_inform_bss\n", __func__);
4085 }
4086 else
4087 {
4088 cfg80211_put_bss(bss_status);
4089 }
4090
4091 pScanResult = sme_ScanResultGetNext(hHal, pResult);
4092 }
4093
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304094 sme_ScanResultPurge(hHal, pResult);
Jeff Johnson295189b2012-06-20 16:38:30 -07004095
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304096 return 0;
Jeff Johnson295189b2012-06-20 16:38:30 -07004097}
4098
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004099void
4100hddPrintMacAddr(tCsrBssid macAddr, tANI_U8 logLevel)
4101{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304102 VOS_TRACE(VOS_MODULE_ID_HDD, logLevel,
Madan Mohan Koyyalamudic75be962012-10-18 19:19:03 -07004103 "%02X:%02X:%02X:%02X:%02X:%02X\n",
4104 macAddr[0], macAddr[1], macAddr[2], macAddr[3], macAddr[4],
4105 macAddr[5]);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004106} /****** end hddPrintMacAddr() ******/
4107
4108void
Madan Mohan Koyyalamudic75be962012-10-18 19:19:03 -07004109hddPrintPmkId(tANI_U8 *pmkId, tANI_U8 logLevel)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004110{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304111 VOS_TRACE(VOS_MODULE_ID_HDD, logLevel,
Madan Mohan Koyyalamudic75be962012-10-18 19:19:03 -07004112 "%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X\n",
4113 pmkId[0], pmkId[1], pmkId[2], pmkId[3], pmkId[4],
4114 pmkId[5], pmkId[6], pmkId[7], pmkId[8], pmkId[9], pmkId[10],
4115 pmkId[11], pmkId[12], pmkId[13], pmkId[14], pmkId[15]);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004116} /****** end hddPrintPmkId() ******/
4117
4118//hddPrintMacAddr(tCsrBssid macAddr, tANI_U8 logLevel);
4119//hddPrintMacAddr(macAddr, VOS_TRACE_LEVEL_FATAL);
4120
4121//void sirDumpBuf(tpAniSirGlobal pMac, tANI_U8 modId, tANI_U32 level, tANI_U8 *buf, tANI_U32 size);
4122//sirDumpBuf(pMac, VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL, pmkid, 16);
4123
4124#define dump_bssid(bssid) \
4125 { \
Jeff Johnsone7245742012-09-05 17:12:55 -07004126 hddLog(VOS_TRACE_LEVEL_INFO, "BSSID (MAC) address:\t"); \
4127 hddPrintMacAddr(bssid, VOS_TRACE_LEVEL_INFO);\
4128 hddLog(VOS_TRACE_LEVEL_INFO, "\n"); \
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004129 }
4130
4131#define dump_pmkid(pMac, pmkid) \
4132 { \
Jeff Johnsone7245742012-09-05 17:12:55 -07004133 hddLog(VOS_TRACE_LEVEL_INFO, "PMKSA-ID:\t"); \
4134 hddPrintPmkId(pmkid, VOS_TRACE_LEVEL_INFO);\
4135 hddLog(VOS_TRACE_LEVEL_INFO, "\n"); \
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004136 }
4137
Madan Mohan Koyyalamudi1b4afb02012-10-22 15:25:16 -07004138#if defined(FEATURE_WLAN_LFR) && (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004139/*
4140 * FUNCTION: wlan_hdd_cfg80211_pmksa_candidate_notify
4141 * This function is used to notify the supplicant of a new PMKSA candidate.
4142 */
4143int wlan_hdd_cfg80211_pmksa_candidate_notify(
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304144 hdd_adapter_t *pAdapter, tCsrRoamInfo *pRoamInfo,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004145 int index, bool preauth )
4146{
Jeff Johnsone7245742012-09-05 17:12:55 -07004147#ifdef FEATURE_WLAN_OKC
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004148 struct net_device *dev = pAdapter->dev;
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07004149 hdd_context_t *pHddCtx = (hdd_context_t*)pAdapter->pHddCtx;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004150
4151 ENTER();
Jeff Johnsone7245742012-09-05 17:12:55 -07004152 hddLog(VOS_TRACE_LEVEL_INFO, "%s is going to notify supplicant of:", __func__);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004153
4154 if( NULL == pRoamInfo )
4155 {
4156 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: pRoamInfo is NULL\n", __func__);
4157 return -EINVAL;
4158 }
4159
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07004160 if (eANI_BOOLEAN_TRUE == hdd_is_okc_mode_enabled(pHddCtx))
4161 {
4162 dump_bssid(pRoamInfo->bssid);
4163 cfg80211_pmksa_candidate_notify(dev, index,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004164 pRoamInfo->bssid, preauth, GFP_KERNEL);
Srinivas Girigowdabbd16eb2013-03-21 12:34:46 -07004165 }
Jeff Johnsone7245742012-09-05 17:12:55 -07004166#endif /* FEATURE_WLAN_OKC */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304167 return 0;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07004168}
4169#endif //FEATURE_WLAN_LFR
4170
Jeff Johnson295189b2012-06-20 16:38:30 -07004171/*
4172 * FUNCTION: hdd_cfg80211_scan_done_callback
4173 * scanning callback function, called after finishing scan
4174 *
4175 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304176static eHalStatus hdd_cfg80211_scan_done_callback(tHalHandle halHandle,
Jeff Johnson295189b2012-06-20 16:38:30 -07004177 void *pContext, tANI_U32 scanId, eCsrScanStatus status)
4178{
4179 struct net_device *dev = (struct net_device *) pContext;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304180 //struct wireless_dev *wdev = dev->ieee80211_ptr;
Jeff Johnson295189b2012-06-20 16:38:30 -07004181 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07004182 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
4183 hdd_scaninfo_t *pScanInfo = &pHddCtx->scan_info;
Jeff Johnson295189b2012-06-20 16:38:30 -07004184 struct cfg80211_scan_request *req = NULL;
4185 int ret = 0;
4186
4187 ENTER();
4188
4189 hddLog(VOS_TRACE_LEVEL_INFO,
4190 "%s called with halHandle = %p, pContext = %p,"
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304191 "scanID = %d, returned status = %d\n",
Jeff Johnson295189b2012-06-20 16:38:30 -07004192 __func__, halHandle, pContext, (int) scanId, (int) status);
4193
4194 //Block on scan req completion variable. Can't wait forever though.
4195 ret = wait_for_completion_interruptible_timeout(
4196 &pScanInfo->scan_req_completion_event,
4197 msecs_to_jiffies(WLAN_WAIT_TIME_SCAN_REQ));
4198 if (!ret)
4199 {
4200 VOS_ASSERT(pScanInfo->mScanPending);
Jeff Johnsone7245742012-09-05 17:12:55 -07004201 goto allow_suspend;
Jeff Johnson295189b2012-06-20 16:38:30 -07004202 }
4203
4204 if(pScanInfo->mScanPending != VOS_TRUE)
4205 {
4206 VOS_ASSERT(pScanInfo->mScanPending);
Jeff Johnsone7245742012-09-05 17:12:55 -07004207 goto allow_suspend;
Jeff Johnson295189b2012-06-20 16:38:30 -07004208 }
4209
4210 /* Check the scanId */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304211 if (pScanInfo->scanId != scanId)
Jeff Johnson295189b2012-06-20 16:38:30 -07004212 {
4213 hddLog(VOS_TRACE_LEVEL_INFO,
4214 "%s called with mismatched scanId pScanInfo->scanId = %d "
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304215 "scanId = %d \n", __func__, (int) pScanInfo->scanId,
Jeff Johnson295189b2012-06-20 16:38:30 -07004216 (int) scanId);
4217 }
4218
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304219 ret = wlan_hdd_cfg80211_update_bss((WLAN_HDD_GET_CTX(pAdapter))->wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07004220 pAdapter);
4221
4222 if (0 > ret)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304223 hddLog(VOS_TRACE_LEVEL_INFO, "%s: NO SCAN result", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07004224
4225
4226 /* If any client wait scan result through WEXT
4227 * send scan done event to client */
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07004228 if (pHddCtx->scan_info.waitScanResult)
Jeff Johnson295189b2012-06-20 16:38:30 -07004229 {
4230 /* The other scan request waiting for current scan finish
4231 * Send event to notify current scan finished */
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07004232 if(WEXT_SCAN_PENDING_DELAY == pHddCtx->scan_info.scan_pending_option)
Jeff Johnson295189b2012-06-20 16:38:30 -07004233 {
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07004234 vos_event_set(&pHddCtx->scan_info.scan_finished_event);
Jeff Johnson295189b2012-06-20 16:38:30 -07004235 }
4236 /* Send notify to WEXT client */
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07004237 else if(WEXT_SCAN_PENDING_PIGGYBACK == pHddCtx->scan_info.scan_pending_option)
Jeff Johnson295189b2012-06-20 16:38:30 -07004238 {
4239 struct net_device *dev = pAdapter->dev;
4240 union iwreq_data wrqu;
4241 int we_event;
4242 char *msg;
4243
4244 memset(&wrqu, '\0', sizeof(wrqu));
4245 we_event = SIOCGIWSCAN;
4246 msg = NULL;
4247 wireless_send_event(dev, we_event, &wrqu, msg);
4248 }
4249 }
Madan Mohan Koyyalamudi2a1ba772012-10-11 14:59:06 -07004250 pHddCtx->scan_info.waitScanResult = FALSE;
Jeff Johnson295189b2012-06-20 16:38:30 -07004251
4252 /* Get the Scan Req */
4253 req = pAdapter->request;
4254
4255 if (!req)
4256 {
4257 hddLog(VOS_TRACE_LEVEL_ERROR, "request is became NULL\n");
Madan Mohan Koyyalamudi9f5a10c2012-09-28 14:46:16 -07004258 pScanInfo->mScanPending = VOS_FALSE;
Jeff Johnsone7245742012-09-05 17:12:55 -07004259 goto allow_suspend;
Jeff Johnson295189b2012-06-20 16:38:30 -07004260 }
4261
4262 /*
4263 * setting up 0, just in case.
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304264 */
Jeff Johnson295189b2012-06-20 16:38:30 -07004265 req->n_ssids = 0;
4266 req->n_channels = 0;
4267 req->ie = 0;
4268
Jeff Johnson295189b2012-06-20 16:38:30 -07004269 pAdapter->request = NULL;
Jeff Johnsone7245742012-09-05 17:12:55 -07004270 /* Scan is no longer pending */
4271 pScanInfo->mScanPending = VOS_FALSE;
Jeff Johnson295189b2012-06-20 16:38:30 -07004272
Madan Mohan Koyyalamudib764bf82012-10-11 16:38:51 -07004273 /*
4274 * cfg80211_scan_done informing NL80211 about completion
4275 * of scanning
4276 */
4277 cfg80211_scan_done(req, false);
Madan Mohan Koyyalamudif4e81002012-11-13 10:46:38 -08004278 complete(&pScanInfo->abortscan_event_var);
Jeff Johnson295189b2012-06-20 16:38:30 -07004279
Jeff Johnsone7245742012-09-05 17:12:55 -07004280allow_suspend:
Madan Mohan Koyyalamudi9f5a10c2012-09-28 14:46:16 -07004281 /* release the wake lock at the end of the scan*/
4282 hdd_allow_suspend();
Jeff Johnsone7245742012-09-05 17:12:55 -07004283
Madan Mohan Koyyalamudi10d83a92012-09-28 15:47:05 -07004284 /* Acquire wakelock to handle the case where APP's tries to suspend
4285 * immediatly after the driver gets connect request(i.e after scan)
4286 * from supplicant, this result in app's is suspending and not able
4287 * to process the connect request to AP */
Amar Singhal6144c002013-05-03 16:11:42 -07004288 hdd_allow_suspend_timeout(1000);
Madan Mohan Koyyalamudi10d83a92012-09-28 15:47:05 -07004289
Gopichand Nakkala638ebc72013-03-21 18:04:02 -07004290#ifdef FEATURE_WLAN_TDLS
4291 wlan_hdd_tdls_scan_done_callback(pAdapter);
4292#endif
4293
Jeff Johnson295189b2012-06-20 16:38:30 -07004294 EXIT();
4295 return 0;
4296}
4297
4298/*
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08004299 * FUNCTION: hdd_isScanAllowed
4300 * Go through each adapter and check if scan allowed
4301 *
4302 */
4303v_BOOL_t hdd_isScanAllowed( hdd_context_t *pHddCtx )
4304{
4305 hdd_adapter_list_node_t *pAdapterNode = NULL, *pNext = NULL;
4306 hdd_station_ctx_t *pHddStaCtx = NULL;
4307 hdd_adapter_t *pAdapter = NULL;
4308 VOS_STATUS status = 0;
4309 v_U8_t staId = 0;
4310 v_U8_t *staMac = NULL;
4311
4312 status = hdd_get_front_adapter ( pHddCtx, &pAdapterNode );
4313
4314 while ( NULL != pAdapterNode && VOS_STATUS_SUCCESS == status )
4315 {
4316 pAdapter = pAdapterNode->pAdapter;
4317
4318 if( pAdapter )
4319 {
4320 hddLog(VOS_TRACE_LEVEL_INFO,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304321 "%s: Adapter with device mode %d exists",
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08004322 __func__, pAdapter->device_mode);
4323 if ((WLAN_HDD_INFRA_STATION == pAdapter->device_mode) ||
4324 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode) ||
4325 (WLAN_HDD_P2P_DEVICE == pAdapter->device_mode))
4326 {
4327 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
4328 if ((eConnectionState_Associated == pHddStaCtx->conn_info.connState) &&
4329 (VOS_FALSE == pHddStaCtx->conn_info.uIsAuthenticated))
4330 {
4331 staMac = (v_U8_t *) &(pAdapter->macAddressCurrent.bytes[0]);
4332 hddLog(VOS_TRACE_LEVEL_ERROR,
4333 "%s: client %02x:%02x:%02x:%02x:%02x:%02x is in the "
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304334 "middle of WPS/EAPOL exchange.", __func__,
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08004335 staMac[0], staMac[1], staMac[2],
4336 staMac[3], staMac[4], staMac[5]);
4337 return VOS_FALSE;
4338 }
4339 }
4340 else if ((WLAN_HDD_SOFTAP == pAdapter->device_mode) ||
4341 (WLAN_HDD_P2P_GO == pAdapter->device_mode))
4342 {
4343 for (staId = 0; staId < WLAN_MAX_STA_COUNT; staId++)
4344 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304345 if ((pAdapter->aStaInfo[staId].isUsed) &&
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08004346 (WLANTL_STA_CONNECTED == pAdapter->aStaInfo[staId].tlSTAState))
4347 {
4348 staMac = (v_U8_t *) &(pAdapter->aStaInfo[staId].macAddrSTA.bytes[0]);
4349
4350 hddLog(VOS_TRACE_LEVEL_ERROR,
4351 "%s: client %02x:%02x:%02x:%02x:%02x:%02x of SoftAP/P2P-GO is in the "
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304352 "middle of WPS/EAPOL exchange.", __func__,
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08004353 staMac[0], staMac[1], staMac[2],
4354 staMac[3], staMac[4], staMac[5]);
4355 return VOS_FALSE;
4356 }
4357 }
4358 }
4359 }
4360 status = hdd_get_next_adapter ( pHddCtx, pAdapterNode, &pNext );
4361 pAdapterNode = pNext;
4362 }
4363 hddLog(VOS_TRACE_LEVEL_INFO,
4364 "%s: Scan allowed", __func__);
4365 return VOS_TRUE;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304366}
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08004367
4368/*
Jeff Johnson295189b2012-06-20 16:38:30 -07004369 * FUNCTION: wlan_hdd_cfg80211_scan
4370 * this scan respond to scan trigger and update cfg80211 scan database
4371 * later, scan dump command can be used to recieve scan results
4372 */
Jeff Johnson3bbe4bf2013-01-18 17:05:29 -08004373int wlan_hdd_cfg80211_scan( struct wiphy *wiphy,
4374#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,6,0))
4375 struct net_device *dev,
4376#endif
4377 struct cfg80211_scan_request *request)
4378{
4379#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,6,0))
4380 struct net_device *dev = request->wdev->netdev;
4381#endif
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304382 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
Jeff Johnson295189b2012-06-20 16:38:30 -07004383 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX( pAdapter );
4384 hdd_wext_state_t *pwextBuf = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05304385 hdd_config_t *cfg_param = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07004386 tCsrScanRequest scanRequest;
4387 tANI_U8 *channelList = NULL, i;
4388 v_U32_t scanId = 0;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05304389 int status;
4390 hdd_scaninfo_t *pScanInfo = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07004391 v_U8_t* pP2pIe = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07004392
4393 ENTER();
4394
4395 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %d\n",
4396 __func__,pAdapter->device_mode);
Madan Mohan Koyyalamudifd4e1da2012-11-09 17:50:19 -08004397
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05304398 status = wlan_hdd_validate_context(pHddCtx);
4399
4400 if (0 != status)
4401 {
4402 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
4403 "%s: HDD context is not valid", __func__);
4404 return status;
4405 }
4406
4407 cfg_param = pHddCtx->cfg_ini;
4408 pScanInfo = &pHddCtx->scan_info;
4409
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004410 if ((WLAN_HDD_INFRA_STATION == pAdapter->device_mode) &&
Madan Mohan Koyyalamudifd4e1da2012-11-09 17:50:19 -08004411 (eConnectionState_Connecting ==
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004412 (WLAN_HDD_GET_STATION_CTX_PTR(pAdapter))->conn_info.connState))
Madan Mohan Koyyalamudifd4e1da2012-11-09 17:50:19 -08004413 {
4414 hddLog(VOS_TRACE_LEVEL_ERROR,
Madan Mohan Koyyalamudi42dcd162012-12-03 16:34:04 -08004415 "%s: %p(%d) Connection in progress: Scan request denied (EBUSY)", __func__, \
4416 WLAN_HDD_GET_STATION_CTX_PTR(pAdapter), pAdapter->sessionId);
Madan Mohan Koyyalamudifd4e1da2012-11-09 17:50:19 -08004417 return -EBUSY;
4418 }
4419
Jeff Johnson295189b2012-06-20 16:38:30 -07004420#ifdef WLAN_BTAMP_FEATURE
4421 //Scan not supported when AMP traffic is on.
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004422 if (VOS_TRUE == WLANBAP_AmpSessionOn())
Jeff Johnson295189b2012-06-20 16:38:30 -07004423 {
Madan Mohan Koyyalamudifd4e1da2012-11-09 17:50:19 -08004424 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07004425 "%s: No scanning when AMP is on", __func__);
4426 return -EOPNOTSUPP;
4427 }
4428#endif
4429 //Scan on any other interface is not supported.
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004430 if (pAdapter->device_mode == WLAN_HDD_SOFTAP)
Jeff Johnson295189b2012-06-20 16:38:30 -07004431 {
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004432 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07004433 "%s: Not scanning on device_mode = %d",
4434 __func__, pAdapter->device_mode);
4435 return -EOPNOTSUPP;
4436 }
4437
4438 if (TRUE == pScanInfo->mScanPending)
4439 {
4440 hddLog(VOS_TRACE_LEVEL_INFO, "%s: mScanPending is TRUE", __func__);
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004441 return -EBUSY;
Jeff Johnson295189b2012-06-20 16:38:30 -07004442 }
4443
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304444 //Don't Allow Scan and return busy if Remain On
Jeff Johnson32d95a32012-09-10 13:15:23 -07004445 //Channel and action frame is pending
4446 //Otherwise Cancel Remain On Channel and allow Scan
4447 //If no action frame pending
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004448 if (0 != wlan_hdd_check_remain_on_channel(pAdapter))
Jeff Johnson32d95a32012-09-10 13:15:23 -07004449 {
4450 hddLog(VOS_TRACE_LEVEL_INFO, "%s: Remain On Channel Pending", __func__);
4451 return -EBUSY;
4452 }
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004453#ifdef FEATURE_WLAN_TDLS
Gopichand Nakkala638ebc72013-03-21 18:04:02 -07004454 /* if tdls disagree scan right now, return immediately.
4455 tdls will schedule the scan when scan is allowed. (return SUCCESS)
4456 or will reject the scan if any TDLS is in progress. (return -EBUSY)
4457 */
4458 status = wlan_hdd_tdls_scan_callback (pAdapter,
4459 wiphy,
4460#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,6,0))
4461 dev,
Gopichand Nakkalac3c42b92013-03-20 19:42:34 -07004462#endif
Gopichand Nakkala638ebc72013-03-21 18:04:02 -07004463 request);
4464 if(status <= 0)
4465 {
4466 hddLog(VOS_TRACE_LEVEL_INFO, "%s: TDLS Pending %d", __func__, status);
4467 return status;
Gopichand Nakkala681989c2013-03-06 22:27:48 -08004468 }
4469#endif
Jeff Johnson32d95a32012-09-10 13:15:23 -07004470
Jeff Johnson295189b2012-06-20 16:38:30 -07004471 if (mutex_lock_interruptible(&pHddCtx->tmInfo.tmOperationLock))
4472 {
4473 VOS_TRACE(VOS_MODULE_ID_HDD,VOS_TRACE_LEVEL_ERROR,
Jeff Johnson1250df42012-12-10 14:31:52 -08004474 "%s: Acquire lock fail", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07004475 return -EAGAIN;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304476 }
Jeff Johnson295189b2012-06-20 16:38:30 -07004477 if (TRUE == pHddCtx->tmInfo.tmAction.enterImps)
4478 {
4479 hddLog(VOS_TRACE_LEVEL_WARN,
4480 "%s: MAX TM Level Scan not allowed", __func__);
4481 mutex_unlock(&pHddCtx->tmInfo.tmOperationLock);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304482 return -EBUSY;
Jeff Johnson295189b2012-06-20 16:38:30 -07004483 }
4484 mutex_unlock(&pHddCtx->tmInfo.tmOperationLock);
4485
Madan Mohan Koyyalamudicfd53742013-01-11 15:29:03 -08004486 /* Check if scan is allowed at this point of time.
4487 */
4488 if (!hdd_isScanAllowed(pHddCtx))
4489 {
4490 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Scan not allowed", __func__);
4491 return -EBUSY;
4492 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304493
Jeff Johnson295189b2012-06-20 16:38:30 -07004494 vos_mem_zero( &scanRequest, sizeof(scanRequest));
4495
4496 if (NULL != request)
4497 {
4498 hddLog(VOS_TRACE_LEVEL_INFO, "scan request for ssid = %d",
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304499 (int)request->n_ssids);
Jeff Johnson295189b2012-06-20 16:38:30 -07004500
4501 /* Even though supplicant doesn't provide any SSIDs, n_ssids is set to 1.
4502 * Becasue of this, driver is assuming that this is not wildcard scan and so
4503 * is not aging out the scan results.
4504 */
Jeff Johnson32d95a32012-09-10 13:15:23 -07004505 if (request->ssids && '\0' == request->ssids->ssid[0])
Jeff Johnson295189b2012-06-20 16:38:30 -07004506 {
4507 request->n_ssids = 0;
4508 }
4509
Madan Mohan Koyyalamudic75be962012-10-18 19:19:03 -07004510 if ((request->ssids) && (0 < request->n_ssids))
Jeff Johnson295189b2012-06-20 16:38:30 -07004511 {
4512 tCsrSSIDInfo *SsidInfo;
4513 int j;
4514 scanRequest.SSIDs.numOfSSIDs = request->n_ssids;
4515 /* Allocate num_ssid tCsrSSIDInfo structure */
4516 SsidInfo = scanRequest.SSIDs.SSIDList =
4517 ( tCsrSSIDInfo *)vos_mem_malloc(
4518 request->n_ssids*sizeof(tCsrSSIDInfo));
4519
4520 if(NULL == scanRequest.SSIDs.SSIDList)
4521 {
4522 hddLog(VOS_TRACE_LEVEL_ERROR,
4523 "memory alloc failed SSIDInfo buffer");
4524 return -ENOMEM;
4525 }
4526
4527 /* copy all the ssid's and their length */
4528 for(j = 0; j < request->n_ssids; j++, SsidInfo++)
4529 {
4530 /* get the ssid length */
4531 SsidInfo->SSID.length = request->ssids[j].ssid_len;
4532 vos_mem_copy(SsidInfo->SSID.ssId, &request->ssids[j].ssid[0],
4533 SsidInfo->SSID.length);
4534 SsidInfo->SSID.ssId[SsidInfo->SSID.length] = '\0';
4535 hddLog(VOS_TRACE_LEVEL_INFO_HIGH, "SSID number %d: %s",
4536 j, SsidInfo->SSID.ssId);
4537 }
4538 /* set the scan type to active */
4539 scanRequest.scanType = eSIR_ACTIVE_SCAN;
4540 }
4541 else if(WLAN_HDD_P2P_GO == pAdapter->device_mode)
4542 {
4543 /* set the scan type to active */
4544 scanRequest.scanType = eSIR_ACTIVE_SCAN;
4545 }
4546 else
4547 {
4548 /*Set the scan type to default type, in this case it is ACTIVE*/
4549 scanRequest.scanType = pScanInfo->scan_mode;
4550 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304551 scanRequest.minChnTime = cfg_param->nActiveMinChnTime;
Jeff Johnson295189b2012-06-20 16:38:30 -07004552 scanRequest.maxChnTime = cfg_param->nActiveMaxChnTime;
4553 }
4554 else
4555 {
4556 /* set the scan type to active */
4557 scanRequest.scanType = eSIR_ACTIVE_SCAN;
4558 vos_mem_set( scanRequest.bssid, sizeof( tCsrBssid ), 0xff );
4559
4560 /* set min and max channel time to zero */
4561 scanRequest.minChnTime = 0;
4562 scanRequest.maxChnTime = 0;
4563 }
4564
4565 /* set BSSType to default type */
4566 scanRequest.BSSType = eCSR_BSS_TYPE_ANY;
4567
4568 /*TODO: scan the requested channels only*/
4569
4570 /*Right now scanning all the channels */
4571 if( request )
4572 {
4573 if( request->n_channels )
4574 {
4575 channelList = vos_mem_malloc( request->n_channels );
4576 if( NULL == channelList )
4577 {
4578 status = -ENOMEM;
4579 goto free_mem;
4580 }
4581
4582 for( i = 0 ; i < request->n_channels ; i++ )
4583 channelList[i] = request->channels[i]->hw_value;
4584 }
4585
4586 scanRequest.ChannelInfo.numOfChannels = request->n_channels;
4587 scanRequest.ChannelInfo.ChannelList = channelList;
4588
4589 /* set requestType to full scan */
4590 scanRequest.requestType = eCSR_SCAN_REQUEST_FULL_SCAN;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304591
4592 /* Flush the scan results(only p2p beacons) for STA scan and P2P
Madan Mohan Koyyalamudi8d50f312012-11-27 15:48:57 -08004593 * search (Flush on both full scan and social scan but not on single
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304594 * channel scan).P2P search happens on 3 social channels (1, 6, 11)
Madan Mohan Koyyalamudi8d50f312012-11-27 15:48:57 -08004595 */
4596
4597 /* Supplicant does single channel scan after 8-way handshake
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304598 * and in that case driver shoudnt flush scan results. If
4599 * driver flushes the scan results here and unfortunately if
4600 * the AP doesnt respond to our probe req then association
Madan Mohan Koyyalamudi8d50f312012-11-27 15:48:57 -08004601 * fails which is not desired
4602 */
4603
4604 if( request->n_channels != WLAN_HDD_P2P_SINGLE_CHANNEL_SCAN )
4605 {
4606 sme_ScanFlushP2PResult( WLAN_HDD_GET_HAL_CTX(pAdapter),
4607 pAdapter->sessionId );
4608 }
Jeff Johnson295189b2012-06-20 16:38:30 -07004609
4610 if( request->ie_len )
4611 {
4612 /* save this for future association (join requires this) */
4613 memset( &pScanInfo->scanAddIE, 0, sizeof(pScanInfo->scanAddIE) );
4614 memcpy( pScanInfo->scanAddIE.addIEdata, request->ie, request->ie_len);
4615 pScanInfo->scanAddIE.length = request->ie_len;
4616
4617 if((WLAN_HDD_INFRA_STATION == pAdapter->device_mode) ||
Jeff Johnsone7245742012-09-05 17:12:55 -07004618 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode) ||
4619 (WLAN_HDD_P2P_DEVICE == pAdapter->device_mode)
Jeff Johnson295189b2012-06-20 16:38:30 -07004620 )
4621 {
4622 pwextBuf->roamProfile.pAddIEScan = pScanInfo->scanAddIE.addIEdata;
4623 pwextBuf->roamProfile.nAddIEScanLength = pScanInfo->scanAddIE.length;
4624 }
4625
4626 scanRequest.uIEFieldLen = pScanInfo->scanAddIE.length;
4627 scanRequest.pIEField = pScanInfo->scanAddIE.addIEdata;
4628
Jeff Johnson295189b2012-06-20 16:38:30 -07004629 pP2pIe = wlan_hdd_get_p2p_ie_ptr((v_U8_t*)request->ie,
4630 request->ie_len);
4631 if (pP2pIe != NULL)
4632 {
Madan Mohan Koyyalamudi26bd7142012-10-30 18:14:19 -07004633#ifdef WLAN_FEATURE_P2P_DEBUG
4634 if (((globalP2PConnectionStatus == P2P_GO_NEG_COMPLETED) ||
4635 (globalP2PConnectionStatus == P2P_GO_NEG_PROCESS)) &&
4636 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode))
4637 {
4638 globalP2PConnectionStatus = P2P_CLIENT_CONNECTING_STATE_1;
4639 hddLog(VOS_TRACE_LEVEL_ERROR,"[P2P State] Changing state from "
4640 "Go nego completed to Connection is started");
4641 hddLog(VOS_TRACE_LEVEL_ERROR,"[P2P]P2P Scanning is started "
4642 "for 8way Handshake");
4643 }
4644 else if((globalP2PConnectionStatus == P2P_CLIENT_DISCONNECTED_STATE) &&
4645 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode))
4646 {
4647 globalP2PConnectionStatus = P2P_CLIENT_CONNECTING_STATE_2;
4648 hddLog(VOS_TRACE_LEVEL_ERROR,"[P2P State] Changing state from "
4649 "Disconnected state to Connection is started");
4650 hddLog(VOS_TRACE_LEVEL_ERROR,"[P2P]P2P Scanning is started "
4651 "for 4way Handshake");
4652 }
4653#endif
4654
Jeff Johnsone7245742012-09-05 17:12:55 -07004655 /* no_cck will be set during p2p find to disable 11b rates */
4656 if(TRUE == request->no_cck)
Jeff Johnson295189b2012-06-20 16:38:30 -07004657 {
Jeff Johnson295189b2012-06-20 16:38:30 -07004658 hddLog(VOS_TRACE_LEVEL_INFO,
4659 "%s: This is a P2P Search", __func__);
4660 scanRequest.p2pSearch = 1;
Jeff Johnsone7245742012-09-05 17:12:55 -07004661
Jeff Johnsone7245742012-09-05 17:12:55 -07004662 if( request->n_channels == WLAN_HDD_P2P_SOCIAL_CHANNELS )
4663 {
Madan Mohan Koyyalamudi1b1d9e82012-10-21 11:38:33 -07004664 /* set requestType to P2P Discovery */
4665 scanRequest.requestType = eCSR_SCAN_P2P_DISCOVERY;
Jeff Johnsone7245742012-09-05 17:12:55 -07004666 }
4667
4668 /*
4669 Skip Dfs Channel in case of P2P Search
4670 if it is set in ini file
4671 */
4672 if(cfg_param->skipDfsChnlInP2pSearch)
4673 {
4674 scanRequest.skipDfsChnlInP2pSearch = 1;
4675 }
4676 else
4677 {
4678 scanRequest.skipDfsChnlInP2pSearch = 0;
4679 }
Jeff Johnson295189b2012-06-20 16:38:30 -07004680
Jeff Johnson295189b2012-06-20 16:38:30 -07004681 }
4682 }
Jeff Johnson295189b2012-06-20 16:38:30 -07004683 }
4684 }
4685
4686 INIT_COMPLETION(pScanInfo->scan_req_completion_event);
4687
Madan Mohan Koyyalamudi9f5a10c2012-09-28 14:46:16 -07004688 /* acquire the wakelock to avoid the apps suspend during the scan. To
4689 * address the following issues.
4690 * 1) Disconnected scenario: we are not allowing the suspend as WLAN is not in
4691 * BMPS/IMPS this result in android trying to suspend aggressively and backing off
4692 * for long time, this result in apps running at full power for long time.
4693 * 2) Connected scenario: If we allow the suspend during the scan, RIVA will
4694 * be stuck in full power because of resume BMPS
4695 */
4696 hdd_prevent_suspend();
Jeff Johnsone7245742012-09-05 17:12:55 -07004697
4698 status = sme_ScanRequest( WLAN_HDD_GET_HAL_CTX(pAdapter),
Jeff Johnson295189b2012-06-20 16:38:30 -07004699 pAdapter->sessionId, &scanRequest, &scanId,
4700 &hdd_cfg80211_scan_done_callback, dev );
Jeff Johnsone7245742012-09-05 17:12:55 -07004701
Jeff Johnson295189b2012-06-20 16:38:30 -07004702 if (eHAL_STATUS_SUCCESS != status)
4703 {
4704 hddLog(VOS_TRACE_LEVEL_ERROR,
4705 "%s: sme_ScanRequest returned error %d", __func__, status);
4706 complete(&pScanInfo->scan_req_completion_event);
Madan Mohan Koyyalamudi3b230fe2012-10-18 14:46:32 -07004707 if(eHAL_STATUS_RESOURCES == status)
4708 {
Madan Mohan Koyyalamudia3fcf142012-10-18 15:01:20 -07004709 hddLog(VOS_TRACE_LEVEL_INFO, "%s: HO is in progress.So defer the scan by informing busy",__func__);
Madan Mohan Koyyalamudi3b230fe2012-10-18 14:46:32 -07004710 status = -EBUSY;
4711 } else {
4712 status = -EIO;
4713 }
Madan Mohan Koyyalamudi9f5a10c2012-09-28 14:46:16 -07004714 hdd_allow_suspend();
Jeff Johnson295189b2012-06-20 16:38:30 -07004715 goto free_mem;
4716 }
4717
4718 pScanInfo->mScanPending = TRUE;
4719 pAdapter->request = request;
4720 pScanInfo->scanId = scanId;
4721
4722 complete(&pScanInfo->scan_req_completion_event);
4723
4724free_mem:
4725 if( scanRequest.SSIDs.SSIDList )
4726 {
4727 vos_mem_free(scanRequest.SSIDs.SSIDList);
4728 }
4729
4730 if( channelList )
4731 vos_mem_free( channelList );
4732
4733 EXIT();
4734
4735 return status;
4736}
4737
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07004738
4739void hdd_select_cbmode( hdd_adapter_t *pAdapter,v_U8_t operationChannel)
4740{
4741 v_U8_t iniDot11Mode =
4742 (WLAN_HDD_GET_CTX(pAdapter))->cfg_ini->dot11Mode;
4743 eHddDot11Mode hddDot11Mode = iniDot11Mode;
4744
4745 switch ( iniDot11Mode )
4746 {
4747 case eHDD_DOT11_MODE_AUTO:
4748 case eHDD_DOT11_MODE_11ac:
4749 case eHDD_DOT11_MODE_11ac_ONLY:
4750#ifdef WLAN_FEATURE_11AC
4751 hddDot11Mode = eHDD_DOT11_MODE_11ac;
4752#else
4753 hddDot11Mode = eHDD_DOT11_MODE_11n;
4754#endif
4755 break;
4756 case eHDD_DOT11_MODE_11n:
4757 case eHDD_DOT11_MODE_11n_ONLY:
4758 hddDot11Mode = eHDD_DOT11_MODE_11n;
4759 break;
4760 default:
4761 hddDot11Mode = iniDot11Mode;
4762 break;
4763 }
4764 /* This call decides required channel bonding mode */
4765 sme_SelectCBMode((WLAN_HDD_GET_CTX(pAdapter)->hHal),
4766 hdd_cfg_xlate_to_csr_phy_mode(hddDot11Mode),
4767 operationChannel);
4768}
4769
Jeff Johnson295189b2012-06-20 16:38:30 -07004770/*
4771 * FUNCTION: wlan_hdd_cfg80211_connect_start
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304772 * This function is used to start the association process
Jeff Johnson295189b2012-06-20 16:38:30 -07004773 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304774int wlan_hdd_cfg80211_connect_start( hdd_adapter_t *pAdapter,
Jeff Johnson32d95a32012-09-10 13:15:23 -07004775 const u8 *ssid, size_t ssid_len, const u8 *bssid, u8 operatingChannel)
Jeff Johnson295189b2012-06-20 16:38:30 -07004776{
4777 int status = 0;
4778 hdd_wext_state_t *pWextState;
4779 v_U32_t roamId;
4780 tCsrRoamProfile *pRoamProfile;
4781 eMib_dot11DesiredBssType connectedBssType;
4782 eCsrAuthType RSNAuthType;
4783
4784 ENTER();
4785
4786 pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304787
Jeff Johnson295189b2012-06-20 16:38:30 -07004788 if (SIR_MAC_MAX_SSID_LENGTH < ssid_len)
4789 {
4790 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: wrong SSID len", __func__);
4791 return -EINVAL;
4792 }
4793
4794 pRoamProfile = &pWextState->roamProfile;
4795
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304796 if (pRoamProfile)
Jeff Johnson295189b2012-06-20 16:38:30 -07004797 {
Jeff Johnsone7245742012-09-05 17:12:55 -07004798 int ret = 0;
4799 hdd_station_ctx_t *pHddStaCtx;
4800 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
4801 hdd_connGetConnectedBssType(pHddStaCtx,&connectedBssType );
4802
4803 if((eMib_dot11DesiredBssType_independent == connectedBssType) ||
4804 (eConnectionState_Associated == pHddStaCtx->conn_info.connState) ||
4805 (eConnectionState_IbssConnected == pHddStaCtx->conn_info.connState))
Jeff Johnson295189b2012-06-20 16:38:30 -07004806 {
4807 /* Issue disconnect to CSR */
4808 INIT_COMPLETION(pAdapter->disconnect_comp_var);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304809 if( eHAL_STATUS_SUCCESS ==
Jeff Johnson295189b2012-06-20 16:38:30 -07004810 sme_RoamDisconnect( WLAN_HDD_GET_HAL_CTX(pAdapter),
4811 pAdapter->sessionId,
4812 eCSR_DISCONNECT_REASON_UNSPECIFIED ) )
4813 {
Jeff Johnsone7245742012-09-05 17:12:55 -07004814 ret = wait_for_completion_interruptible_timeout(
4815 &pAdapter->disconnect_comp_var,
4816 msecs_to_jiffies(WLAN_WAIT_TIME_DISCONNECT));
4817 if (0 == ret)
4818 {
4819 VOS_ASSERT(0);
4820 }
4821 }
4822 }
4823 else if(eConnectionState_Disconnecting == pHddStaCtx->conn_info.connState)
4824 {
4825 ret = wait_for_completion_interruptible_timeout(
4826 &pAdapter->disconnect_comp_var,
4827 msecs_to_jiffies(WLAN_WAIT_TIME_DISCONNECT));
4828 if (0 == ret)
4829 {
4830 VOS_ASSERT(0);
Jeff Johnson295189b2012-06-20 16:38:30 -07004831 }
4832 }
4833
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304834 if (HDD_WMM_USER_MODE_NO_QOS ==
Jeff Johnson295189b2012-06-20 16:38:30 -07004835 (WLAN_HDD_GET_CTX(pAdapter))->cfg_ini->WmmMode)
4836 {
4837 /*QoS not enabled in cfg file*/
4838 pRoamProfile->uapsd_mask = 0;
4839 }
4840 else
4841 {
4842 /*QoS enabled, update uapsd mask from cfg file*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304843 pRoamProfile->uapsd_mask =
Jeff Johnson295189b2012-06-20 16:38:30 -07004844 (WLAN_HDD_GET_CTX(pAdapter))->cfg_ini->UapsdMask;
4845 }
4846
4847 pRoamProfile->SSIDs.numOfSSIDs = 1;
4848 pRoamProfile->SSIDs.SSIDList->SSID.length = ssid_len;
4849 vos_mem_zero(pRoamProfile->SSIDs.SSIDList->SSID.ssId,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304850 sizeof(pRoamProfile->SSIDs.SSIDList->SSID.ssId));
Jeff Johnson295189b2012-06-20 16:38:30 -07004851 vos_mem_copy((void *)(pRoamProfile->SSIDs.SSIDList->SSID.ssId),
4852 ssid, ssid_len);
4853
4854 if (bssid)
4855 {
4856 pRoamProfile->BSSIDs.numOfBSSIDs = 1;
4857 vos_mem_copy((void *)(pRoamProfile->BSSIDs.bssid), bssid,
4858 WNI_CFG_BSSID_LEN);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304859 /* Save BSSID in seperate variable as well, as RoamProfile
4860 BSSID is getting zeroed out in the association process. And in
Jeff Johnson295189b2012-06-20 16:38:30 -07004861 case of join failure we should send valid BSSID to supplicant
4862 */
4863 vos_mem_copy((void *)(pWextState->req_bssId), bssid,
4864 WNI_CFG_BSSID_LEN);
4865 }
Dhanashri Atre51981c62013-06-13 11:47:57 -07004866 else
4867 {
4868 vos_mem_zero((void *)(pRoamProfile->BSSIDs.bssid),WNI_CFG_BSSID_LEN);
4869 }
Jeff Johnson295189b2012-06-20 16:38:30 -07004870
4871 if ((IW_AUTH_WPA_VERSION_WPA == pWextState->wpaVersion) ||
4872 (IW_AUTH_WPA_VERSION_WPA2 == pWextState->wpaVersion))
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304873 {
Jeff Johnson295189b2012-06-20 16:38:30 -07004874 /*set gen ie*/
4875 hdd_SetGENIEToCsr(pAdapter, &RSNAuthType);
4876 /*set auth*/
4877 hdd_set_csr_auth_type(pAdapter, RSNAuthType);
4878 }
Jeff Johnson295189b2012-06-20 16:38:30 -07004879#ifdef FEATURE_WLAN_WAPI
4880 if (pAdapter->wapi_info.nWapiMode)
4881 {
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07004882 hddLog(LOG1, "%s: Setting WAPI AUTH Type and Encryption Mode values", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07004883 switch (pAdapter->wapi_info.wapiAuthMode)
4884 {
4885 case WAPI_AUTH_MODE_PSK:
4886 {
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07004887 hddLog(LOG1, "%s: WAPI AUTH TYPE: PSK: %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07004888 pAdapter->wapi_info.wapiAuthMode);
4889 pRoamProfile->AuthType.authType[0] = eCSR_AUTH_TYPE_WAPI_WAI_PSK;
4890 break;
4891 }
4892 case WAPI_AUTH_MODE_CERT:
4893 {
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07004894 hddLog(LOG1, "%s: WAPI AUTH TYPE: CERT: %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07004895 pAdapter->wapi_info.wapiAuthMode);
4896 pRoamProfile->AuthType.authType[0] = eCSR_AUTH_TYPE_WAPI_WAI_CERTIFICATE;
4897 break;
4898 }
4899 } // End of switch
4900 if ( pAdapter->wapi_info.wapiAuthMode == WAPI_AUTH_MODE_PSK ||
4901 pAdapter->wapi_info.wapiAuthMode == WAPI_AUTH_MODE_CERT)
4902 {
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07004903 hddLog(LOG1, "%s: WAPI PAIRWISE/GROUP ENCRYPTION: WPI", __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07004904 pRoamProfile->AuthType.numEntries = 1;
4905 pRoamProfile->EncryptionType.numEntries = 1;
4906 pRoamProfile->EncryptionType.encryptionType[0] = eCSR_ENCRYPT_TYPE_WPI;
4907 pRoamProfile->mcEncryptionType.numEntries = 1;
4908 pRoamProfile->mcEncryptionType.encryptionType[0] = eCSR_ENCRYPT_TYPE_WPI;
4909 }
4910 }
4911#endif /* FEATURE_WLAN_WAPI */
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05304912#ifdef WLAN_FEATURE_GTK_OFFLOAD
Gopichand Nakkalad36ee622013-05-07 14:13:27 +05304913 /* Initializing gtkOffloadReqParams */
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05304914 if ((WLAN_HDD_INFRA_STATION == pAdapter->device_mode) ||
4915 (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode))
4916 {
Gopichand Nakkalad36ee622013-05-07 14:13:27 +05304917 memset(&pHddStaCtx->gtkOffloadReqParams, 0,
4918 sizeof (tSirGtkOffloadParams));
4919 pHddStaCtx->gtkOffloadReqParams.ulFlags = GTK_OFFLOAD_DISABLE;
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05304920 }
4921#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07004922 pRoamProfile->csrPersona = pAdapter->device_mode;
4923
Jeff Johnson32d95a32012-09-10 13:15:23 -07004924 if( operatingChannel )
4925 {
4926 pRoamProfile->ChannelInfo.ChannelList = &operatingChannel;
4927 pRoamProfile->ChannelInfo.numOfChannels = 1;
4928 }
Chet Lanctot186b5732013-03-18 10:26:30 -07004929 else
4930 {
4931 pRoamProfile->ChannelInfo.ChannelList = NULL;
4932 pRoamProfile->ChannelInfo.numOfChannels = 0;
4933 }
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07004934 if ( (WLAN_HDD_IBSS == pAdapter->device_mode) && operatingChannel)
4935 {
4936 hdd_select_cbmode(pAdapter,operatingChannel);
4937 }
Madan Mohan Koyyalamudi42dcd162012-12-03 16:34:04 -08004938 /* change conn_state to connecting before sme_RoamConnect(), because sme_RoamConnect()
4939 * has a direct path to call hdd_smeRoamCallback(), which will change the conn_state
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304940 * If direct path, conn_state will be accordingly changed to NotConnected or Associated
Madan Mohan Koyyalamudi42dcd162012-12-03 16:34:04 -08004941 * by either hdd_AssociationCompletionHandler() or hdd_DisConnectHandler() in sme_RoamCallback()
Madan Mohan Koyyalamudidf86c422012-12-04 17:03:44 -08004942 * if sme_RomConnect is to be queued, Connecting state will remain until it is completed.
4943 */
Gopichand Nakkalaa3c8fb62013-06-21 15:36:42 +05304944 if (WLAN_HDD_INFRA_STATION == pAdapter->device_mode ||
4945 WLAN_HDD_P2P_CLIENT == pAdapter->device_mode)
Madan Mohan Koyyalamudidf86c422012-12-04 17:03:44 -08004946 hdd_connSetConnectionState(WLAN_HDD_GET_STATION_CTX_PTR(pAdapter),
4947 eConnectionState_Connecting);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304948
4949 status = sme_RoamConnect( WLAN_HDD_GET_HAL_CTX(pAdapter),
Jeff Johnson295189b2012-06-20 16:38:30 -07004950 pAdapter->sessionId, pRoamProfile, &roamId);
4951
Gopichand Nakkalaa3c8fb62013-06-21 15:36:42 +05304952 if ((eHAL_STATUS_SUCCESS != status) &&
4953 (WLAN_HDD_INFRA_STATION == pAdapter->device_mode ||
4954 WLAN_HDD_P2P_CLIENT == pAdapter->device_mode))
Madan Mohan Koyyalamudid5acbf52012-11-28 01:45:08 +05304955
4956 {
Madan Mohan Koyyalamudi42dcd162012-12-03 16:34:04 -08004957 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: sme_RoamConnect (session %d) failed with "
4958 "status %d. -> NotConnected", __func__, pAdapter->sessionId, status);
4959 /* change back to NotAssociated */
Madan Mohan Koyyalamudid5acbf52012-11-28 01:45:08 +05304960 hdd_connSetConnectionState(WLAN_HDD_GET_STATION_CTX_PTR(pAdapter),
Madan Mohan Koyyalamudi42dcd162012-12-03 16:34:04 -08004961 eConnectionState_NotConnected);
Madan Mohan Koyyalamudid5acbf52012-11-28 01:45:08 +05304962 }
Madan Mohan Koyyalamudidf86c422012-12-04 17:03:44 -08004963
4964 pRoamProfile->ChannelInfo.ChannelList = NULL;
4965 pRoamProfile->ChannelInfo.numOfChannels = 0;
4966
Jeff Johnson295189b2012-06-20 16:38:30 -07004967 }
4968 else
4969 {
4970 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: No valid Roam profile", __func__);
4971 return -EINVAL;
4972 }
Madan Mohan Koyyalamudifd4e1da2012-11-09 17:50:19 -08004973 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -07004974 return status;
4975}
4976
4977/*
4978 * FUNCTION: wlan_hdd_set_cfg80211_auth_type
4979 * This function is used to set the authentication type (OPEN/SHARED).
4980 *
4981 */
4982static int wlan_hdd_cfg80211_set_auth_type(hdd_adapter_t *pAdapter,
4983 enum nl80211_auth_type auth_type)
4984{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304985 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07004986 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
4987
4988 ENTER();
4989
4990 /*set authentication type*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +05304991 switch (auth_type)
Jeff Johnson295189b2012-06-20 16:38:30 -07004992 {
Jeff Johnson295189b2012-06-20 16:38:30 -07004993 case NL80211_AUTHTYPE_AUTOMATIC:
Gopichand Nakkala29149562013-05-10 21:43:41 +05304994 hddLog(VOS_TRACE_LEVEL_INFO,
4995 "%s: set authentication type to AUTOSWITCH", __func__);
4996 pHddStaCtx->conn_info.authType = eCSR_AUTH_TYPE_AUTOSWITCH;
4997 break;
4998
4999 case NL80211_AUTHTYPE_OPEN_SYSTEM:
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07005000#ifdef WLAN_FEATURE_VOWIFI_11R
5001 case NL80211_AUTHTYPE_FT:
5002#endif /* WLAN_FEATURE_VOWIFI_11R */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305003 hddLog(VOS_TRACE_LEVEL_INFO,
Jeff Johnson295189b2012-06-20 16:38:30 -07005004 "%s: set authentication type to OPEN", __func__);
5005 pHddStaCtx->conn_info.authType = eCSR_AUTH_TYPE_OPEN_SYSTEM;
5006 break;
5007
5008 case NL80211_AUTHTYPE_SHARED_KEY:
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305009 hddLog(VOS_TRACE_LEVEL_INFO,
Jeff Johnson295189b2012-06-20 16:38:30 -07005010 "%s: set authentication type to SHARED", __func__);
5011 pHddStaCtx->conn_info.authType = eCSR_AUTH_TYPE_SHARED_KEY;
5012 break;
5013#ifdef FEATURE_WLAN_CCX
5014 case NL80211_AUTHTYPE_NETWORK_EAP:
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305015 hddLog(VOS_TRACE_LEVEL_INFO,
Jeff Johnson295189b2012-06-20 16:38:30 -07005016 "%s: set authentication type to CCKM WPA", __func__);
5017 pHddStaCtx->conn_info.authType = eCSR_AUTH_TYPE_CCKM_WPA;//eCSR_AUTH_TYPE_CCKM_RSN needs to be handled as well if required.
5018 break;
5019#endif
5020
5021
5022 default:
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305023 hddLog(VOS_TRACE_LEVEL_ERROR,
5024 "%s: Unsupported authentication type %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07005025 auth_type);
5026 pHddStaCtx->conn_info.authType = eCSR_AUTH_TYPE_UNKNOWN;
5027 return -EINVAL;
5028 }
5029
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305030 pWextState->roamProfile.AuthType.authType[0] =
Jeff Johnson295189b2012-06-20 16:38:30 -07005031 pHddStaCtx->conn_info.authType;
5032 return 0;
5033}
5034
5035/*
5036 * FUNCTION: wlan_hdd_set_akm_suite
5037 * This function is used to set the key mgmt type(PSK/8021x).
5038 *
5039 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305040static int wlan_hdd_set_akm_suite( hdd_adapter_t *pAdapter,
Jeff Johnson295189b2012-06-20 16:38:30 -07005041 u32 key_mgmt
5042 )
5043{
5044 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
5045 ENTER();
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305046
Jeff Johnson295189b2012-06-20 16:38:30 -07005047 /*set key mgmt type*/
5048 switch(key_mgmt)
5049 {
5050 case WLAN_AKM_SUITE_PSK:
Gopichand Nakkala356fb102013-03-06 12:34:04 +05305051#ifdef WLAN_FEATURE_VOWIFI_11R
5052 case WLAN_AKM_SUITE_FT_PSK:
5053#endif
5054 hddLog(VOS_TRACE_LEVEL_INFO, "%s: setting key mgmt type to PSK",
Jeff Johnson295189b2012-06-20 16:38:30 -07005055 __func__);
5056 pWextState->authKeyMgmt |= IW_AUTH_KEY_MGMT_PSK;
5057 break;
5058
5059 case WLAN_AKM_SUITE_8021X:
Gopichand Nakkala356fb102013-03-06 12:34:04 +05305060#ifdef WLAN_FEATURE_VOWIFI_11R
5061 case WLAN_AKM_SUITE_FT_8021X:
5062#endif
5063 hddLog(VOS_TRACE_LEVEL_INFO, "%s: setting key mgmt type to 8021x",
Jeff Johnson295189b2012-06-20 16:38:30 -07005064 __func__);
5065 pWextState->authKeyMgmt |= IW_AUTH_KEY_MGMT_802_1X;
5066 break;
5067#ifdef FEATURE_WLAN_CCX
5068#define WLAN_AKM_SUITE_CCKM 0x00409600 /* Should be in ieee802_11_defs.h */
5069#define IW_AUTH_KEY_MGMT_CCKM 8 /* Should be in linux/wireless.h */
5070 case WLAN_AKM_SUITE_CCKM:
5071 hddLog(VOS_TRACE_LEVEL_INFO, "%s: setting key mgmt type to CCKM",
5072 __func__);
5073 pWextState->authKeyMgmt |= IW_AUTH_KEY_MGMT_CCKM;
5074 break;
5075#endif
5076
5077 default:
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305078 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Unsupported key mgmt type %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07005079 __func__, key_mgmt);
5080 return -EINVAL;
5081
5082 }
5083 return 0;
5084}
5085
5086/*
5087 * FUNCTION: wlan_hdd_cfg80211_set_cipher
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305088 * This function is used to set the encryption type
Jeff Johnson295189b2012-06-20 16:38:30 -07005089 * (NONE/WEP40/WEP104/TKIP/CCMP).
5090 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305091static int wlan_hdd_cfg80211_set_cipher( hdd_adapter_t *pAdapter,
5092 u32 cipher,
Jeff Johnson295189b2012-06-20 16:38:30 -07005093 bool ucast
5094 )
5095{
5096 eCsrEncryptionType encryptionType = eCSR_ENCRYPT_TYPE_NONE;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305097 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07005098 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
5099
5100 ENTER();
5101
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305102 if (!cipher)
Jeff Johnson295189b2012-06-20 16:38:30 -07005103 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305104 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: received cipher %d - considering none",
Jeff Johnson295189b2012-06-20 16:38:30 -07005105 __func__, cipher);
5106 encryptionType = eCSR_ENCRYPT_TYPE_NONE;
5107 }
5108 else
5109 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305110
Jeff Johnson295189b2012-06-20 16:38:30 -07005111 /*set encryption method*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305112 switch (cipher)
Jeff Johnson295189b2012-06-20 16:38:30 -07005113 {
5114 case IW_AUTH_CIPHER_NONE:
5115 encryptionType = eCSR_ENCRYPT_TYPE_NONE;
5116 break;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305117
Jeff Johnson295189b2012-06-20 16:38:30 -07005118 case WLAN_CIPHER_SUITE_WEP40:
Gopichand Nakkala29149562013-05-10 21:43:41 +05305119 encryptionType = eCSR_ENCRYPT_TYPE_WEP40;
Jeff Johnson295189b2012-06-20 16:38:30 -07005120 break;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305121
Jeff Johnson295189b2012-06-20 16:38:30 -07005122 case WLAN_CIPHER_SUITE_WEP104:
Gopichand Nakkala29149562013-05-10 21:43:41 +05305123 encryptionType = eCSR_ENCRYPT_TYPE_WEP104;
Jeff Johnson295189b2012-06-20 16:38:30 -07005124 break;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305125
Jeff Johnson295189b2012-06-20 16:38:30 -07005126 case WLAN_CIPHER_SUITE_TKIP:
5127 encryptionType = eCSR_ENCRYPT_TYPE_TKIP;
5128 break;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305129
Jeff Johnson295189b2012-06-20 16:38:30 -07005130 case WLAN_CIPHER_SUITE_CCMP:
5131 encryptionType = eCSR_ENCRYPT_TYPE_AES;
5132 break;
5133#ifdef FEATURE_WLAN_WAPI
5134 case WLAN_CIPHER_SUITE_SMS4:
5135 encryptionType = eCSR_ENCRYPT_TYPE_WPI;
5136 break;
5137#endif
5138
5139#ifdef FEATURE_WLAN_CCX
5140 case WLAN_CIPHER_SUITE_KRK:
5141 encryptionType = eCSR_ENCRYPT_TYPE_KRK;
5142 break;
5143#endif
5144 default:
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305145 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Unsupported cipher type %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07005146 __func__, cipher);
5147 return -EOPNOTSUPP;
5148 }
5149 }
5150
5151 if (ucast)
5152 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305153 hddLog(VOS_TRACE_LEVEL_INFO, "%s: setting unicast cipher type to %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07005154 __func__, encryptionType);
5155 pHddStaCtx->conn_info.ucEncryptionType = encryptionType;
5156 pWextState->roamProfile.EncryptionType.numEntries = 1;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305157 pWextState->roamProfile.EncryptionType.encryptionType[0] =
Jeff Johnson295189b2012-06-20 16:38:30 -07005158 encryptionType;
5159 }
5160 else
5161 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305162 hddLog(VOS_TRACE_LEVEL_INFO, "%s: setting mcast cipher type to %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07005163 __func__, encryptionType);
5164 pHddStaCtx->conn_info.mcEncryptionType = encryptionType;
5165 pWextState->roamProfile.mcEncryptionType.numEntries = 1;
5166 pWextState->roamProfile.mcEncryptionType.encryptionType[0] = encryptionType;
5167 }
5168
5169 return 0;
5170}
5171
5172
5173/*
5174 * FUNCTION: wlan_hdd_cfg80211_set_ie
5175 * This function is used to parse WPA/RSN IE's.
5176 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305177int wlan_hdd_cfg80211_set_ie( hdd_adapter_t *pAdapter,
5178 u8 *ie,
Jeff Johnson295189b2012-06-20 16:38:30 -07005179 size_t ie_len
5180 )
5181{
5182 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
5183 u8 *genie = ie;
5184 v_U16_t remLen = ie_len;
5185#ifdef FEATURE_WLAN_WAPI
5186 v_U32_t akmsuite[MAX_NUM_AKM_SUITES];
5187 u16 *tmp;
5188 v_U16_t akmsuiteCount;
5189 int *akmlist;
5190#endif
5191 ENTER();
5192
5193 /* clear previous assocAddIE */
5194 pWextState->assocAddIE.length = 0;
5195 pWextState->roamProfile.bWPSAssociation = VOS_FALSE;
5196
5197 while (remLen >= 2)
5198 {
5199 v_U16_t eLen = 0;
5200 v_U8_t elementId;
5201 elementId = *genie++;
5202 eLen = *genie++;
5203 remLen -= 2;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305204
5205 hddLog(VOS_TRACE_LEVEL_INFO, "%s: IE[0x%X], LEN[%d]\n",
Jeff Johnson295189b2012-06-20 16:38:30 -07005206 __func__, elementId, eLen);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305207
5208 switch ( elementId )
Jeff Johnson295189b2012-06-20 16:38:30 -07005209 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305210 case DOT11F_EID_WPA:
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -07005211 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 -07005212 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305213 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07005214 "%s: Invalid WPA IE", __func__);
5215 return -EINVAL;
5216 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305217 else if (0 == memcmp(&genie[0], "\x00\x50\xf2\x04", 4))
Jeff Johnson295189b2012-06-20 16:38:30 -07005218 {
5219 v_U16_t curAddIELen = pWextState->assocAddIE.length;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305220 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set WPS IE(len %d)",
Jeff Johnson295189b2012-06-20 16:38:30 -07005221 __func__, eLen + 2);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305222
Jeff Johnson295189b2012-06-20 16:38:30 -07005223 if( SIR_MAC_MAX_IE_LENGTH < (pWextState->assocAddIE.length + eLen) )
5224 {
Jeff Johnson902c9832012-12-10 14:28:09 -08005225 hddLog(VOS_TRACE_LEVEL_FATAL, "Cannot accommodate assocAddIE. "
5226 "Need bigger buffer space");
Jeff Johnson295189b2012-06-20 16:38:30 -07005227 VOS_ASSERT(0);
5228 return -ENOMEM;
5229 }
5230 // WSC IE is saved to Additional IE ; it should be accumulated to handle WPS IE + P2P IE
5231 memcpy( pWextState->assocAddIE.addIEdata + curAddIELen, genie - 2, eLen + 2);
5232 pWextState->assocAddIE.length += eLen + 2;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305233
Jeff Johnson295189b2012-06-20 16:38:30 -07005234 pWextState->roamProfile.bWPSAssociation = VOS_TRUE;
5235 pWextState->roamProfile.pAddIEAssoc = pWextState->assocAddIE.addIEdata;
5236 pWextState->roamProfile.nAddIEAssocLength = pWextState->assocAddIE.length;
5237 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305238 else if (0 == memcmp(&genie[0], "\x00\x50\xf2", 3))
5239 {
Jeff Johnson295189b2012-06-20 16:38:30 -07005240 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set WPA IE (len %d)",__func__, eLen + 2);
5241 memset( pWextState->WPARSNIE, 0, MAX_WPA_RSN_IE_LEN );
5242 memcpy( pWextState->WPARSNIE, genie - 2, (eLen + 2) /*ie_len*/);
5243 pWextState->roamProfile.pWPAReqIE = pWextState->WPARSNIE;
5244 pWextState->roamProfile.nWPAReqIELength = eLen + 2;//ie_len;
5245 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305246 else if ( (0 == memcmp(&genie[0], P2P_OUI_TYPE,
5247 P2P_OUI_TYPE_SIZE))
Jeff Johnson295189b2012-06-20 16:38:30 -07005248 /*Consider P2P IE, only for P2P Client */
5249 && (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode) )
5250 {
5251 v_U16_t curAddIELen = pWextState->assocAddIE.length;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305252 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set P2P IE(len %d)",
Jeff Johnson295189b2012-06-20 16:38:30 -07005253 __func__, eLen + 2);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305254
Jeff Johnson295189b2012-06-20 16:38:30 -07005255 if( SIR_MAC_MAX_IE_LENGTH < (pWextState->assocAddIE.length + eLen) )
5256 {
Jeff Johnson902c9832012-12-10 14:28:09 -08005257 hddLog(VOS_TRACE_LEVEL_FATAL, "Cannot accommodate assocAddIE "
5258 "Need bigger buffer space");
Jeff Johnson295189b2012-06-20 16:38:30 -07005259 VOS_ASSERT(0);
5260 return -ENOMEM;
5261 }
5262 // P2P IE is saved to Additional IE ; it should be accumulated to handle WPS IE + P2P IE
5263 memcpy( pWextState->assocAddIE.addIEdata + curAddIELen, genie - 2, eLen + 2);
5264 pWextState->assocAddIE.length += eLen + 2;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305265
Jeff Johnson295189b2012-06-20 16:38:30 -07005266 pWextState->roamProfile.pAddIEAssoc = pWextState->assocAddIE.addIEdata;
5267 pWextState->roamProfile.nAddIEAssocLength = pWextState->assocAddIE.length;
5268 }
Jeff Johnson295189b2012-06-20 16:38:30 -07005269#ifdef WLAN_FEATURE_WFD
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305270 else if ( (0 == memcmp(&genie[0], WFD_OUI_TYPE,
5271 WFD_OUI_TYPE_SIZE))
Jeff Johnson295189b2012-06-20 16:38:30 -07005272 /*Consider WFD IE, only for P2P Client */
5273 && (WLAN_HDD_P2P_CLIENT == pAdapter->device_mode) )
5274 {
5275 v_U16_t curAddIELen = pWextState->assocAddIE.length;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305276 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set WFD IE(len %d)",
Jeff Johnson295189b2012-06-20 16:38:30 -07005277 __func__, eLen + 2);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305278
Jeff Johnson295189b2012-06-20 16:38:30 -07005279 if( SIR_MAC_MAX_IE_LENGTH < (pWextState->assocAddIE.length + eLen) )
5280 {
Jeff Johnson902c9832012-12-10 14:28:09 -08005281 hddLog(VOS_TRACE_LEVEL_FATAL, "Cannot accommodate assocAddIE "
5282 "Need bigger buffer space");
Jeff Johnson295189b2012-06-20 16:38:30 -07005283 VOS_ASSERT(0);
5284 return -ENOMEM;
5285 }
5286 // WFD IE is saved to Additional IE ; it should be accumulated to handle
5287 // WPS IE + P2P IE + WFD IE
5288 memcpy( pWextState->assocAddIE.addIEdata + curAddIELen, genie - 2, eLen + 2);
5289 pWextState->assocAddIE.length += eLen + 2;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305290
Jeff Johnson295189b2012-06-20 16:38:30 -07005291 pWextState->roamProfile.pAddIEAssoc = pWextState->assocAddIE.addIEdata;
5292 pWextState->roamProfile.nAddIEAssocLength = pWextState->assocAddIE.length;
5293 }
5294#endif
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -07005295 /* Appending HS 2.0 Indication Element in Assiciation Request */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305296 else if ( (0 == memcmp(&genie[0], HS20_OUI_TYPE,
Madan Mohan Koyyalamudi1bed5982012-10-22 14:38:06 -07005297 HS20_OUI_TYPE_SIZE)) )
5298 {
5299 v_U16_t curAddIELen = pWextState->assocAddIE.length;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305300 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set HS20 IE(len %d)",
Madan Mohan Koyyalamudi1bed5982012-10-22 14:38:06 -07005301 __func__, eLen + 2);
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -07005302
Madan Mohan Koyyalamudi1bed5982012-10-22 14:38:06 -07005303 if( SIR_MAC_MAX_IE_LENGTH < (pWextState->assocAddIE.length + eLen) )
5304 {
Jeff Johnson902c9832012-12-10 14:28:09 -08005305 hddLog(VOS_TRACE_LEVEL_FATAL, "Cannot accommodate assocAddIE "
5306 "Need bigger buffer space");
Madan Mohan Koyyalamudi1bed5982012-10-22 14:38:06 -07005307 VOS_ASSERT(0);
5308 return -ENOMEM;
5309 }
5310 memcpy( pWextState->assocAddIE.addIEdata + curAddIELen, genie - 2, eLen + 2);
5311 pWextState->assocAddIE.length += eLen + 2;
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -07005312
Madan Mohan Koyyalamudi1bed5982012-10-22 14:38:06 -07005313 pWextState->roamProfile.pAddIEAssoc = pWextState->assocAddIE.addIEdata;
5314 pWextState->roamProfile.nAddIEAssocLength = pWextState->assocAddIE.length;
5315 }
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -07005316
Jeff Johnson295189b2012-06-20 16:38:30 -07005317 break;
5318 case DOT11F_EID_RSN:
5319 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set RSN IE(len %d)",__func__, eLen + 2);
5320 memset( pWextState->WPARSNIE, 0, MAX_WPA_RSN_IE_LEN );
5321 memcpy( pWextState->WPARSNIE, genie - 2, (eLen + 2)/*ie_len*/);
5322 pWextState->roamProfile.pRSNReqIE = pWextState->WPARSNIE;
5323 pWextState->roamProfile.nRSNReqIELength = eLen + 2; //ie_len;
5324 break;
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -07005325 /* Appending Extended Capabilities with Interworking bit set in Assoc Req */
5326 case DOT11F_EID_EXTCAP:
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305327 {
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -07005328 v_U16_t curAddIELen = pWextState->assocAddIE.length;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305329 hddLog (VOS_TRACE_LEVEL_INFO, "%s Set Extended CAPS IE(len %d)",
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -07005330 __func__, eLen + 2);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305331
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -07005332 if( SIR_MAC_MAX_IE_LENGTH < (pWextState->assocAddIE.length + eLen) )
5333 {
Jeff Johnson902c9832012-12-10 14:28:09 -08005334 hddLog(VOS_TRACE_LEVEL_FATAL, "Cannot accommodate assocAddIE "
5335 "Need bigger buffer space");
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -07005336 VOS_ASSERT(0);
5337 return -ENOMEM;
5338 }
5339 memcpy( pWextState->assocAddIE.addIEdata + curAddIELen, genie - 2, eLen + 2);
5340 pWextState->assocAddIE.length += eLen + 2;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305341
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -07005342 pWextState->roamProfile.pAddIEAssoc = pWextState->assocAddIE.addIEdata;
5343 pWextState->roamProfile.nAddIEAssocLength = pWextState->assocAddIE.length;
5344 break;
5345 }
Jeff Johnson295189b2012-06-20 16:38:30 -07005346#ifdef FEATURE_WLAN_WAPI
5347 case WLAN_EID_WAPI:
5348 pAdapter->wapi_info.nWapiMode = 1; //Setting WAPI Mode to ON=1
5349 hddLog(VOS_TRACE_LEVEL_INFO,"WAPI MODE IS %lu \n",
5350 pAdapter->wapi_info.nWapiMode);
5351 tmp = (u16 *)ie;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305352 tmp = tmp + 2; // Skip element Id and Len, Version
Jeff Johnson295189b2012-06-20 16:38:30 -07005353 akmsuiteCount = WPA_GET_LE16(tmp);
5354 tmp = tmp + 1;
5355 akmlist = (int *)(tmp);
5356 if(akmsuiteCount <= MAX_NUM_AKM_SUITES)
5357 {
5358 memcpy(akmsuite, akmlist, (4*akmsuiteCount));
5359 }
5360 else
5361 {
5362 hddLog(VOS_TRACE_LEVEL_FATAL, "Invalid akmSuite count\n");
5363 VOS_ASSERT(0);
5364 return -EINVAL;
5365 }
5366
5367 if (WAPI_PSK_AKM_SUITE == akmsuite[0])
5368 {
5369 hddLog(VOS_TRACE_LEVEL_INFO, "%s: WAPI AUTH MODE SET TO PSK",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07005370 __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07005371 pAdapter->wapi_info.wapiAuthMode = WAPI_AUTH_MODE_PSK;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305372 }
Jeff Johnson295189b2012-06-20 16:38:30 -07005373 if (WAPI_CERT_AKM_SUITE == akmsuite[0])
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305374 {
Jeff Johnson295189b2012-06-20 16:38:30 -07005375 hddLog(VOS_TRACE_LEVEL_INFO, "%s: WAPI AUTH MODE SET TO CERTIFICATE",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07005376 __func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07005377 pAdapter->wapi_info.wapiAuthMode = WAPI_AUTH_MODE_CERT;
5378 }
5379 break;
5380#endif
5381 default:
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305382 hddLog (VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07005383 "%s Set UNKNOWN IE %X", __func__, elementId);
Madan Mohan Koyyalamudief3b66e2012-10-11 14:29:42 -07005384 /* when Unknown IE is received we should break and continue
5385 * to the next IE in the buffer instead we were returning
5386 * so changing this to break */
5387 break;
Jeff Johnson295189b2012-06-20 16:38:30 -07005388 }
5389 genie += eLen;
5390 remLen -= eLen;
5391 }
5392 EXIT();
5393 return 0;
5394}
5395
5396/*
Gopichand Nakkala18f0c262013-05-07 23:25:08 +05305397 * FUNCTION: hdd_isWPAIEPresent
5398 * Parse the received IE to find the WPA IE
5399 *
5400 */
5401static bool hdd_isWPAIEPresent(u8 *ie, u8 ie_len)
5402{
5403 v_U8_t eLen = 0;
5404 v_U16_t remLen = ie_len;
5405 v_U8_t elementId = 0;
5406
5407 while (remLen >= 2)
5408 {
5409 elementId = *ie++;
5410 eLen = *ie++;
5411 remLen -= 2;
5412 if (eLen > remLen)
5413 {
5414 hddLog(VOS_TRACE_LEVEL_ERROR,
5415 "%s: IE length is wrong %d", __func__, eLen);
5416 return FALSE;
5417 }
5418 if ((elementId == DOT11F_EID_WPA) && (remLen > 5))
5419 {
5420 /* OUI - 0x00 0X50 0XF2
5421 WPA Information Element - 0x01
5422 WPA version - 0x01*/
5423 if (0 == memcmp(&ie[0], "\x00\x50\xf2\x01\x01", 5))
5424 return TRUE;
5425 }
5426 ie += eLen;
5427 remLen -= eLen;
5428 }
5429 return FALSE;
5430}
5431
5432/*
Jeff Johnson295189b2012-06-20 16:38:30 -07005433 * FUNCTION: wlan_hdd_cfg80211_set_privacy
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305434 * This function is used to initialize the security
Jeff Johnson295189b2012-06-20 16:38:30 -07005435 * parameters during connect operation.
5436 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305437int wlan_hdd_cfg80211_set_privacy( hdd_adapter_t *pAdapter,
Jeff Johnson295189b2012-06-20 16:38:30 -07005438 struct cfg80211_connect_params *req
5439 )
5440{
5441 int status = 0;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305442 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07005443 ENTER();
5444
5445 /*set wpa version*/
5446 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_DISABLED;
5447
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305448 if (req->crypto.wpa_versions)
Jeff Johnson295189b2012-06-20 16:38:30 -07005449 {
Gopichand Nakkala781ded42013-06-28 12:10:45 +05305450 if (NL80211_WPA_VERSION_1 == req->crypto.wpa_versions)
Jeff Johnson295189b2012-06-20 16:38:30 -07005451 {
5452 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_WPA;
5453 }
5454 else if (NL80211_WPA_VERSION_2 == req->crypto.wpa_versions)
5455 {
5456 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_WPA2;
5457 }
5458 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305459
5460 hddLog(VOS_TRACE_LEVEL_INFO, "%s: set wpa version to %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07005461 pWextState->wpaVersion);
5462
5463 /*set authentication type*/
5464 status = wlan_hdd_cfg80211_set_auth_type(pAdapter, req->auth_type);
5465
5466 if (0 > status)
5467 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305468 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07005469 "%s: failed to set authentication type ", __func__);
5470 return status;
5471 }
5472
5473 /*set key mgmt type*/
5474 if (req->crypto.n_akm_suites)
5475 {
5476 status = wlan_hdd_set_akm_suite(pAdapter, req->crypto.akm_suites[0]);
5477 if (0 > status)
5478 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305479 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to set akm suite",
Jeff Johnson295189b2012-06-20 16:38:30 -07005480 __func__);
5481 return status;
5482 }
5483 }
5484
5485 /*set pairwise cipher type*/
5486 if (req->crypto.n_ciphers_pairwise)
5487 {
5488 status = wlan_hdd_cfg80211_set_cipher(pAdapter,
5489 req->crypto.ciphers_pairwise[0], true);
5490 if (0 > status)
5491 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305492 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07005493 "%s: failed to set unicast cipher type", __func__);
5494 return status;
5495 }
5496 }
5497 else
5498 {
5499 /*Reset previous cipher suite to none*/
5500 status = wlan_hdd_cfg80211_set_cipher(pAdapter, 0, true);
5501 if (0 > status)
5502 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305503 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07005504 "%s: failed to set unicast cipher type", __func__);
5505 return status;
5506 }
5507 }
5508
5509 /*set group cipher type*/
5510 status = wlan_hdd_cfg80211_set_cipher(pAdapter, req->crypto.cipher_group,
5511 false);
5512
5513 if (0 > status)
5514 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305515 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to set mcast cipher type",
Jeff Johnson295189b2012-06-20 16:38:30 -07005516 __func__);
5517 return status;
5518 }
5519
Chet Lanctot186b5732013-03-18 10:26:30 -07005520#ifdef WLAN_FEATURE_11W
5521 pWextState->roamProfile.MFPEnabled = (req->mfp == NL80211_MFP_REQUIRED);
5522#endif
5523
Jeff Johnson295189b2012-06-20 16:38:30 -07005524 /*parse WPA/RSN IE, and set the correspoing fileds in Roam profile*/
5525 if (req->ie_len)
5526 {
5527 status = wlan_hdd_cfg80211_set_ie(pAdapter, req->ie, req->ie_len);
5528 if ( 0 > status)
5529 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305530 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to parse the WPA/RSN IE",
Jeff Johnson295189b2012-06-20 16:38:30 -07005531 __func__);
5532 return status;
5533 }
5534 }
5535
5536 /*incase of WEP set default key information*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305537 if (req->key && req->key_len)
Jeff Johnson295189b2012-06-20 16:38:30 -07005538 {
5539 if ( (WLAN_CIPHER_SUITE_WEP40 == req->crypto.ciphers_pairwise[0])
5540 || (WLAN_CIPHER_SUITE_WEP104 == req->crypto.ciphers_pairwise[0])
5541 )
5542 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305543 if ( IW_AUTH_KEY_MGMT_802_1X
Jeff Johnson295189b2012-06-20 16:38:30 -07005544 == (pWextState->authKeyMgmt & IW_AUTH_KEY_MGMT_802_1X ))
5545 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305546 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Dynamic WEP not supported",
Jeff Johnson295189b2012-06-20 16:38:30 -07005547 __func__);
5548 return -EOPNOTSUPP;
5549 }
5550 else
5551 {
5552 u8 key_len = req->key_len;
5553 u8 key_idx = req->key_idx;
5554
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305555 if ((eCSR_SECURITY_WEP_KEYSIZE_MAX_BYTES >= key_len)
Jeff Johnson295189b2012-06-20 16:38:30 -07005556 && (CSR_MAX_NUM_KEY > key_idx)
5557 )
5558 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305559 hddLog(VOS_TRACE_LEVEL_INFO,
5560 "%s: setting default wep key, key_idx = %hu key_len %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07005561 __func__, key_idx, key_len);
5562 vos_mem_copy(
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305563 &pWextState->roamProfile.Keys.KeyMaterial[key_idx][0],
Jeff Johnson295189b2012-06-20 16:38:30 -07005564 req->key, key_len);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305565 pWextState->roamProfile.Keys.KeyLength[key_idx] =
Jeff Johnson295189b2012-06-20 16:38:30 -07005566 (u8)key_len;
5567 pWextState->roamProfile.Keys.defaultIndex = (u8)key_idx;
5568 }
5569 }
5570 }
5571 }
5572
5573 return status;
5574}
5575
5576/*
5577 * FUNCTION: wlan_hdd_cfg80211_set_privacy
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305578 * This function is used to initialize the security
Jeff Johnson295189b2012-06-20 16:38:30 -07005579 * parameters during connect operation.
5580 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305581static int wlan_hdd_cfg80211_connect( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07005582 struct net_device *ndev,
5583 struct cfg80211_connect_params *req
5584 )
5585{
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305586 int status;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305587 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( ndev );
Jeff Johnson295189b2012-06-20 16:38:30 -07005588 VOS_STATUS exitbmpsStatus = VOS_STATUS_E_INVAL;
5589 hdd_context_t *pHddCtx = NULL;
5590
5591 ENTER();
5592
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305593 hddLog(VOS_TRACE_LEVEL_INFO,
Jeff Johnson295189b2012-06-20 16:38:30 -07005594 "%s: device_mode = %d\n",__func__,pAdapter->device_mode);
5595
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305596 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
5597 status = wlan_hdd_validate_context(pHddCtx);
5598
5599 if (0 != status)
Jeff Johnson295189b2012-06-20 16:38:30 -07005600 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305601 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
5602 "%s: HDD context is not valid", __func__);
5603 return status;
Jeff Johnson295189b2012-06-20 16:38:30 -07005604 }
5605
5606#ifdef WLAN_BTAMP_FEATURE
5607 //Infra connect not supported when AMP traffic is on.
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305608 if( VOS_TRUE == WLANBAP_AmpSessionOn() )
Jeff Johnson295189b2012-06-20 16:38:30 -07005609 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305610 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07005611 "%s: No connection when AMP is on", __func__);
Madan Mohan Koyyalamudicae253a2012-11-06 19:10:35 -08005612 return -ECONNREFUSED;
Jeff Johnson295189b2012-06-20 16:38:30 -07005613 }
5614#endif
5615 /*initialise security parameters*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305616 status = wlan_hdd_cfg80211_set_privacy(pAdapter, req);
Jeff Johnson295189b2012-06-20 16:38:30 -07005617
5618 if ( 0 > status)
5619 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305620 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to set security params",
Jeff Johnson295189b2012-06-20 16:38:30 -07005621 __func__);
5622 return status;
5623 }
5624
5625 //If Device Mode is Station Concurrent Sessions Exit BMps
Jeff Johnsona8a1a482012-12-12 16:49:33 -08005626 //P2P Mode will be taken care in Open/close adapter
Jeff Johnson295189b2012-06-20 16:38:30 -07005627 if((WLAN_HDD_INFRA_STATION == pAdapter->device_mode) &&
5628 (vos_concurrent_sessions_running()))
5629 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305630 exitbmpsStatus = hdd_disable_bmps_imps(pHddCtx, WLAN_HDD_INFRA_STATION);
Jeff Johnson295189b2012-06-20 16:38:30 -07005631 }
5632
Mohit Khanna765234a2012-09-11 15:08:35 -07005633 if ( req->channel )
5634 {
5635 status = wlan_hdd_cfg80211_connect_start(pAdapter, req->ssid,
5636 req->ssid_len, req->bssid,
5637 req->channel->hw_value);
5638 }
5639 else
5640 {
5641 status = wlan_hdd_cfg80211_connect_start(pAdapter, req->ssid,
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305642 req->ssid_len, req->bssid, 0);
Mohit Khanna765234a2012-09-11 15:08:35 -07005643 }
Jeff Johnson295189b2012-06-20 16:38:30 -07005644
5645 if (0 > status)
5646 {
5647 //ReEnable BMPS if disabled
5648 if((VOS_STATUS_SUCCESS == exitbmpsStatus) &&
5649 (NULL != pHddCtx))
5650 {
Gopichand Nakkalaa2fe5b02013-06-06 16:32:28 +05305651 if (pHddCtx->hdd_wlan_suspended)
5652 {
5653 hdd_set_pwrparams(pHddCtx);
5654 }
Jeff Johnson295189b2012-06-20 16:38:30 -07005655 //ReEnable Bmps and Imps back
5656 hdd_enable_bmps_imps(pHddCtx);
5657 }
5658
5659 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: connect failed", __func__);
5660 return status;
5661 }
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305662 pHddCtx->isAmpAllowed = VOS_FALSE;
Jeff Johnson295189b2012-06-20 16:38:30 -07005663 EXIT();
5664 return status;
5665}
5666
5667
5668/*
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05305669 * FUNCTION: wlan_hdd_disconnect
5670 * This function is used to issue a disconnect request to SME
5671 */
5672int wlan_hdd_disconnect( hdd_adapter_t *pAdapter, u16 reason )
5673{
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305674 int status;
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05305675 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305676 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
5677
5678 status = wlan_hdd_validate_context(pHddCtx);
5679
5680 if (0 != status)
5681 {
5682 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
5683 "%s: HDD context is not valid", __func__);
5684 return status;
5685 }
5686
5687 pHddCtx->isAmpAllowed = VOS_TRUE;
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05305688 pHddStaCtx->conn_info.connState = eConnectionState_NotConnected;
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05305689 INIT_COMPLETION(pAdapter->disconnect_comp_var);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305690
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05305691 /*issue disconnect*/
5692 status = sme_RoamDisconnect( WLAN_HDD_GET_HAL_CTX(pAdapter),
5693 pAdapter->sessionId, reason);
5694
5695 if ( 0 != status )
5696 {
5697 hddLog(VOS_TRACE_LEVEL_ERROR,
5698 "%s csrRoamDisconnect failure, returned %d \n",
5699 __func__, (int)status );
5700 return -EINVAL;
5701 }
5702 wait_for_completion_interruptible_timeout(
5703 &pAdapter->disconnect_comp_var,
5704 msecs_to_jiffies(WLAN_WAIT_TIME_DISCONNECT));
5705 /*stop tx queues*/
5706 netif_tx_disable(pAdapter->dev);
5707 netif_carrier_off(pAdapter->dev);
5708 return status;
5709}
5710
5711
5712/*
Jeff Johnson295189b2012-06-20 16:38:30 -07005713 * FUNCTION: wlan_hdd_cfg80211_disconnect
5714 * This function is used to issue a disconnect request to SME
5715 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305716static int wlan_hdd_cfg80211_disconnect( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07005717 struct net_device *dev,
5718 u16 reason
5719 )
5720{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305721 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
5722 tCsrRoamProfile *pRoamProfile =
Jeff Johnson295189b2012-06-20 16:38:30 -07005723 &(WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter))->roamProfile;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305724 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07005725 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Gopichand Nakkala4327a152013-03-04 23:22:42 -08005726 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Gopichand Nakkalaaa353782013-05-17 20:36:22 +05305727#ifdef FEATURE_WLAN_TDLS
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -08005728 tANI_U8 staIdx;
5729#endif
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305730
Jeff Johnson295189b2012-06-20 16:38:30 -07005731 ENTER();
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305732
5733 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %d\n",
Jeff Johnson295189b2012-06-20 16:38:30 -07005734 __func__,pAdapter->device_mode);
5735
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305736 hddLog(VOS_TRACE_LEVEL_INFO, "%s: Disconnect called with reason code %d",
5737 __func__, reason);
Jeff Johnson295189b2012-06-20 16:38:30 -07005738
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305739 status = wlan_hdd_validate_context(pHddCtx);
5740
5741 if (0 != status)
Jeff Johnson295189b2012-06-20 16:38:30 -07005742 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305743 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
5744 "%s: HDD context is not valid", __func__);
5745 return status;
Jeff Johnson295189b2012-06-20 16:38:30 -07005746 }
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305747
Jeff Johnson295189b2012-06-20 16:38:30 -07005748 if (NULL != pRoamProfile)
5749 {
5750 /*issue disconnect request to SME, if station is in connected state*/
5751 if (pHddStaCtx->conn_info.connState == eConnectionState_Associated)
5752 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305753 eCsrRoamDisconnectReason reasonCode =
Jeff Johnson295189b2012-06-20 16:38:30 -07005754 eCSR_DISCONNECT_REASON_UNSPECIFIED;
Gopichand Nakkalaaa353782013-05-17 20:36:22 +05305755 hdd_scaninfo_t *pScanInfo;
Jeff Johnson295189b2012-06-20 16:38:30 -07005756 switch(reason)
5757 {
5758 case WLAN_REASON_MIC_FAILURE:
5759 reasonCode = eCSR_DISCONNECT_REASON_MIC_ERROR;
5760 break;
5761
5762 case WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY:
5763 case WLAN_REASON_DISASSOC_AP_BUSY:
5764 case WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA:
5765 reasonCode = eCSR_DISCONNECT_REASON_DISASSOC;
5766 break;
5767
5768 case WLAN_REASON_PREV_AUTH_NOT_VALID:
5769 case WLAN_REASON_CLASS2_FRAME_FROM_NONAUTH_STA:
5770 reasonCode = eCSR_DISCONNECT_REASON_DEAUTH;
5771 break;
5772
5773 case WLAN_REASON_DEAUTH_LEAVING:
5774 default:
5775 reasonCode = eCSR_DISCONNECT_REASON_UNSPECIFIED;
5776 break;
5777 }
Gopichand Nakkalaaa353782013-05-17 20:36:22 +05305778 pHddStaCtx->conn_info.connState = eConnectionState_NotConnected;
5779 pScanInfo = &pHddCtx->scan_info;
5780 if (pScanInfo->mScanPending)
5781 {
5782 hddLog(VOS_TRACE_LEVEL_INFO, "Disconnect is in progress, "
5783 "Aborting Scan");
5784 hdd_abort_mac_scan(pHddCtx);
5785 }
Jeff Johnson295189b2012-06-20 16:38:30 -07005786
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -08005787#ifdef FEATURE_WLAN_TDLS
5788 /* First clean up the tdls peers if any */
Gopichand Nakkala4327a152013-03-04 23:22:42 -08005789 for (staIdx = 0 ; staIdx < HDD_MAX_NUM_TDLS_STA; staIdx++)
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -08005790 {
Gopichand Nakkala4327a152013-03-04 23:22:42 -08005791 if ((pHddCtx->tdlsConnInfo[staIdx].sessionId == pAdapter->sessionId) &&
5792 (pHddCtx->tdlsConnInfo[staIdx].staId))
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -08005793 {
Hoonki Lee11f7dda2013-02-14 16:55:44 -08005794 uint8 *mac;
Gopichand Nakkala4327a152013-03-04 23:22:42 -08005795 mac = pHddCtx->tdlsConnInfo[staIdx].peerMac.bytes;
Hoonki Lee11f7dda2013-02-14 16:55:44 -08005796 VOS_TRACE(VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07005797 "%s: call sme_DeleteTdlsPeerSta staId %d sessionId %d " MAC_ADDRESS_STR,
Gopichand Nakkala4327a152013-03-04 23:22:42 -08005798 __func__, pHddCtx->tdlsConnInfo[staIdx].staId, pAdapter->sessionId,
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07005799 MAC_ADDR_ARRAY(mac));
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -08005800 sme_DeleteTdlsPeerSta(WLAN_HDD_GET_HAL_CTX(pAdapter),
Gopichand Nakkala4327a152013-03-04 23:22:42 -08005801 pAdapter->sessionId,
5802 mac);
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -08005803 }
5804 }
5805#endif
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05305806 status = wlan_hdd_disconnect(pAdapter, reasonCode);
5807 if ( 0 != status )
Jeff Johnson295189b2012-06-20 16:38:30 -07005808 {
5809 hddLog(VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05305810 "%s wlan_hdd_disconnect failure, returned %d \n",
Jeff Johnson295189b2012-06-20 16:38:30 -07005811 __func__, (int)status );
5812 return -EINVAL;
5813 }
Jeff Johnson295189b2012-06-20 16:38:30 -07005814 }
5815 }
5816 else
5817 {
5818 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: No valid roam profile", __func__);
5819 }
5820
5821 return status;
5822}
5823
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05305824
Jeff Johnson295189b2012-06-20 16:38:30 -07005825/*
5826 * FUNCTION: wlan_hdd_cfg80211_set_privacy_ibss
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305827 * This function is used to initialize the security
Jeff Johnson295189b2012-06-20 16:38:30 -07005828 * settings in IBSS mode.
5829 */
5830static int wlan_hdd_cfg80211_set_privacy_ibss(
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305831 hdd_adapter_t *pAdapter,
Jeff Johnson295189b2012-06-20 16:38:30 -07005832 struct cfg80211_ibss_params *params
5833 )
5834{
5835 int status = 0;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305836 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07005837 eCsrEncryptionType encryptionType = eCSR_ENCRYPT_TYPE_NONE;
5838 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305839
Jeff Johnson295189b2012-06-20 16:38:30 -07005840 ENTER();
5841
5842 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_DISABLED;
5843
5844 if (params->ie_len && ( NULL != params->ie) )
5845 {
Shailender Karmuchi67edd312013-06-18 16:30:48 -07005846 if (wlan_hdd_cfg80211_get_ie_ptr (params->ie,
5847 params->ie_len, WLAN_EID_RSN ))
Jeff Johnson295189b2012-06-20 16:38:30 -07005848 {
5849 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_WPA2;
5850 encryptionType = eCSR_ENCRYPT_TYPE_AES;
5851 }
Shailender Karmuchi67edd312013-06-18 16:30:48 -07005852 else if ( hdd_isWPAIEPresent (params->ie, params->ie_len ))
Jeff Johnson295189b2012-06-20 16:38:30 -07005853 {
Shailender Karmuchi642e9812013-05-30 14:34:49 -07005854 tDot11fIEWPA dot11WPAIE;
5855 tHalHandle halHandle = WLAN_HDD_GET_HAL_CTX(pAdapter);
Shailender Karmuchi67edd312013-06-18 16:30:48 -07005856 u8 *ie;
Shailender Karmuchi642e9812013-05-30 14:34:49 -07005857
Shailender Karmuchi67edd312013-06-18 16:30:48 -07005858 ie = wlan_hdd_cfg80211_get_ie_ptr (params->ie,
5859 params->ie_len, DOT11F_EID_WPA);
5860 if ( NULL != ie )
5861 {
5862 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_WPA;
5863 // Unpack the WPA IE
5864 //Skip past the EID byte and length byte - and four byte WiFi OUI
5865 dot11fUnpackIeWPA((tpAniSirGlobal) halHandle,
5866 &ie[2+4],
5867 ie[1] - 4,
5868 &dot11WPAIE);
5869 /*Extract the multicast cipher, the encType for unicast
5870 cipher for wpa-none is none*/
5871 encryptionType =
5872 hdd_TranslateWPAToCsrEncryptionType(dot11WPAIE.multicast_cipher);
5873 }
Jeff Johnson295189b2012-06-20 16:38:30 -07005874 }
Shailender Karmuchi67edd312013-06-18 16:30:48 -07005875
Jeff Johnson295189b2012-06-20 16:38:30 -07005876 status = wlan_hdd_cfg80211_set_ie(pAdapter, params->ie, params->ie_len);
5877
5878 if (0 > status)
5879 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305880 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to parse WPA/RSN IE",
Jeff Johnson295189b2012-06-20 16:38:30 -07005881 __func__);
5882 return status;
5883 }
5884 }
5885
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305886 pWextState->roamProfile.AuthType.authType[0] =
5887 pHddStaCtx->conn_info.authType =
Jeff Johnson295189b2012-06-20 16:38:30 -07005888 eCSR_AUTH_TYPE_OPEN_SYSTEM;
5889
5890 if (params->privacy)
5891 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305892 /* Security enabled IBSS, At this time there is no information available
5893 * about the security paramters, so initialise the encryption type to
Jeff Johnson295189b2012-06-20 16:38:30 -07005894 * eCSR_ENCRYPT_TYPE_WEP40_STATICKEY.
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305895 * The correct security parameters will be updated later in
Jeff Johnson295189b2012-06-20 16:38:30 -07005896 * wlan_hdd_cfg80211_add_key */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305897 /* Hal expects encryption type to be set inorder
Jeff Johnson295189b2012-06-20 16:38:30 -07005898 *enable privacy bit in beacons */
5899
5900 encryptionType = eCSR_ENCRYPT_TYPE_WEP40_STATICKEY;
5901 }
Shailender Karmuchi642e9812013-05-30 14:34:49 -07005902 VOS_TRACE (VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO_HIGH,
5903 "encryptionType=%d", encryptionType);
Jeff Johnson295189b2012-06-20 16:38:30 -07005904 pHddStaCtx->conn_info.ucEncryptionType = encryptionType;
5905 pWextState->roamProfile.EncryptionType.numEntries = 1;
5906 pWextState->roamProfile.EncryptionType.encryptionType[0] = encryptionType;
Jeff Johnson295189b2012-06-20 16:38:30 -07005907 return status;
5908}
5909
5910/*
5911 * FUNCTION: wlan_hdd_cfg80211_join_ibss
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305912 * This function is used to create/join an IBSS
Jeff Johnson295189b2012-06-20 16:38:30 -07005913 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305914static int wlan_hdd_cfg80211_join_ibss( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07005915 struct net_device *dev,
5916 struct cfg80211_ibss_params *params
5917 )
5918{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305919 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
Jeff Johnson295189b2012-06-20 16:38:30 -07005920 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
5921 tCsrRoamProfile *pRoamProfile;
5922 int status;
5923 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305924 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07005925
5926 ENTER();
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305927
5928 hddLog(VOS_TRACE_LEVEL_INFO,
Jeff Johnson295189b2012-06-20 16:38:30 -07005929 "%s: device_mode = %d\n",__func__,pAdapter->device_mode);
5930
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305931 status = wlan_hdd_validate_context(pHddCtx);
5932
5933 if (0 != status)
Jeff Johnson295189b2012-06-20 16:38:30 -07005934 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305935 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
5936 "%s: HDD context is not valid", __func__);
5937 return status;
Jeff Johnson295189b2012-06-20 16:38:30 -07005938 }
5939
5940 if (NULL == pWextState)
5941 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305942 hddLog (VOS_TRACE_LEVEL_ERROR, "%s ERROR: Data Storage Corruption\n",
Jeff Johnson295189b2012-06-20 16:38:30 -07005943 __func__);
5944 return -EIO;
5945 }
5946
5947 pRoamProfile = &pWextState->roamProfile;
5948
5949 if ( eCSR_BSS_TYPE_START_IBSS != pRoamProfile->BSSType )
5950 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305951 hddLog (VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07005952 "%s Interface type is not set to IBSS \n", __func__);
5953 return -EINVAL;
5954 }
5955
5956 /* Set Channel */
5957 if (NULL != params->channel)
5958 {
5959 u8 channelNum;
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07005960 v_U32_t numChans = WNI_CFG_VALID_CHANNEL_LIST_LEN;
5961 v_U8_t validChan[WNI_CFG_VALID_CHANNEL_LIST_LEN];
5962 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
5963 int indx;
Jeff Johnson295189b2012-06-20 16:38:30 -07005964
5965 /* Get channel number */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305966 channelNum =
Jeff Johnson295189b2012-06-20 16:38:30 -07005967 ieee80211_frequency_to_channel(params->channel->center_freq);
5968
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07005969
5970 if (0 != ccmCfgGetStr(hHal, WNI_CFG_VALID_CHANNEL_LIST,
5971 validChan, &numChans))
Jeff Johnson295189b2012-06-20 16:38:30 -07005972 {
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07005973 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: No valid channel list",
5974 __func__);
5975 return -EOPNOTSUPP;
Jeff Johnson295189b2012-06-20 16:38:30 -07005976 }
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07005977
5978 for (indx = 0; indx < numChans; indx++)
Jeff Johnson295189b2012-06-20 16:38:30 -07005979 {
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07005980 if (channelNum == validChan[indx])
5981 {
5982 break;
5983 }
5984 }
5985 if (indx >= numChans)
5986 {
5987 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Not valid Channel %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07005988 __func__, channelNum);
5989 return -EINVAL;
5990 }
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07005991 /* Set the Operational Channel */
5992 hddLog(VOS_TRACE_LEVEL_INFO_HIGH, "%s: set channel %d", __func__,
5993 channelNum);
5994 pRoamProfile->ChannelInfo.numOfChannels = 1;
5995 pHddStaCtx->conn_info.operationChannel = channelNum;
5996 pRoamProfile->ChannelInfo.ChannelList =
5997 &pHddStaCtx->conn_info.operationChannel;
Jeff Johnson295189b2012-06-20 16:38:30 -07005998 }
5999
6000 /* Initialize security parameters */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306001 status = wlan_hdd_cfg80211_set_privacy_ibss(pAdapter, params);
Jeff Johnson295189b2012-06-20 16:38:30 -07006002 if (status < 0)
6003 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306004 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to set security parameters",
Jeff Johnson295189b2012-06-20 16:38:30 -07006005 __func__);
6006 return status;
6007 }
6008
6009 /* Issue connect start */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306010 status = wlan_hdd_cfg80211_connect_start(pAdapter, params->ssid,
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07006011 params->ssid_len, params->bssid,
6012 pHddStaCtx->conn_info.operationChannel);
Jeff Johnson295189b2012-06-20 16:38:30 -07006013
6014 if (0 > status)
6015 {
6016 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: connect failed", __func__);
6017 return status;
6018 }
6019
6020 return 0;
6021}
6022
6023/*
6024 * FUNCTION: wlan_hdd_cfg80211_leave_ibss
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306025 * This function is used to leave an IBSS
Jeff Johnson295189b2012-06-20 16:38:30 -07006026 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306027static int wlan_hdd_cfg80211_leave_ibss( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07006028 struct net_device *dev
6029 )
6030{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306031 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
Jeff Johnson295189b2012-06-20 16:38:30 -07006032 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
6033 tCsrRoamProfile *pRoamProfile;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306034 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
6035 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07006036
6037 ENTER();
6038
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306039 status = wlan_hdd_validate_context(pHddCtx);
6040
6041 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006042 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306043 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6044 "%s: HDD context is not valid", __func__);
6045 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006046 }
6047
Jeff Johnson295189b2012-06-20 16:38:30 -07006048 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %d\n",__func__,pAdapter->device_mode);
6049 if (NULL == pWextState)
6050 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306051 hddLog (VOS_TRACE_LEVEL_ERROR, "%s ERROR: Data Storage Corruption\n",
Jeff Johnson295189b2012-06-20 16:38:30 -07006052 __func__);
6053 return -EIO;
6054 }
6055
6056 pRoamProfile = &pWextState->roamProfile;
6057
6058 /* Issue disconnect only if interface type is set to IBSS */
6059 if (eCSR_BSS_TYPE_START_IBSS != pRoamProfile->BSSType)
6060 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306061 hddLog (VOS_TRACE_LEVEL_ERROR, "%s: BSS Type is not set to IBSS",
Jeff Johnson295189b2012-06-20 16:38:30 -07006062 __func__);
6063 return -EINVAL;
6064 }
6065
6066 /* Issue Disconnect request */
6067 INIT_COMPLETION(pAdapter->disconnect_comp_var);
6068 sme_RoamDisconnect( WLAN_HDD_GET_HAL_CTX(pAdapter), pAdapter->sessionId,
6069 eCSR_DISCONNECT_REASON_IBSS_LEAVE);
6070
6071 return 0;
6072}
6073
6074/*
6075 * FUNCTION: wlan_hdd_cfg80211_set_wiphy_params
6076 * This function is used to set the phy parameters
6077 * (RTS Threshold/FRAG Threshold/Retry Count etc ...)
6078 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306079static int wlan_hdd_cfg80211_set_wiphy_params(struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07006080 u32 changed)
6081{
6082 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
6083 tHalHandle hHal = pHddCtx->hHal;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306084 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07006085
6086 ENTER();
6087
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306088 status = wlan_hdd_validate_context(pHddCtx);
6089
6090 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006091 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306092 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6093 "%s: HDD context is not valid", __func__);
6094 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006095 }
6096
Jeff Johnson295189b2012-06-20 16:38:30 -07006097 if (changed & WIPHY_PARAM_RTS_THRESHOLD)
6098 {
6099 u16 rts_threshold = (wiphy->rts_threshold == -1) ?
6100 WNI_CFG_RTS_THRESHOLD_STAMAX :
6101 wiphy->rts_threshold;
6102
6103 if ((WNI_CFG_RTS_THRESHOLD_STAMIN > rts_threshold) ||
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306104 (WNI_CFG_RTS_THRESHOLD_STAMAX < rts_threshold))
Jeff Johnson295189b2012-06-20 16:38:30 -07006105 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306106 hddLog(VOS_TRACE_LEVEL_ERROR,
6107 "%s: Invalid RTS Threshold value %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07006108 __func__, rts_threshold);
6109 return -EINVAL;
6110 }
6111
6112 if (0 != ccmCfgSetInt(hHal, WNI_CFG_RTS_THRESHOLD,
6113 rts_threshold, ccmCfgSetCallback,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306114 eANI_BOOLEAN_TRUE))
Jeff Johnson295189b2012-06-20 16:38:30 -07006115 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306116 hddLog(VOS_TRACE_LEVEL_ERROR,
6117 "%s: ccmCfgSetInt failed for rts_threshold value %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07006118 __func__, rts_threshold);
6119 return -EIO;
6120 }
6121
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306122 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: set rts threshold %hu", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07006123 rts_threshold);
6124 }
6125
6126 if (changed & WIPHY_PARAM_FRAG_THRESHOLD)
6127 {
6128 u16 frag_threshold = (wiphy->frag_threshold == -1) ?
6129 WNI_CFG_FRAGMENTATION_THRESHOLD_STAMAX :
6130 wiphy->frag_threshold;
6131
6132 if ((WNI_CFG_FRAGMENTATION_THRESHOLD_STAMIN > frag_threshold)||
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306133 (WNI_CFG_FRAGMENTATION_THRESHOLD_STAMAX < frag_threshold) )
Jeff Johnson295189b2012-06-20 16:38:30 -07006134 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306135 hddLog(VOS_TRACE_LEVEL_ERROR,
6136 "%s: Invalid frag_threshold value %hu", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07006137 frag_threshold);
6138 return -EINVAL;
6139 }
6140
6141 if (0 != ccmCfgSetInt(hHal, WNI_CFG_FRAGMENTATION_THRESHOLD,
6142 frag_threshold, ccmCfgSetCallback,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306143 eANI_BOOLEAN_TRUE))
Jeff Johnson295189b2012-06-20 16:38:30 -07006144 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306145 hddLog(VOS_TRACE_LEVEL_ERROR,
6146 "%s: ccmCfgSetInt failed for frag_threshold value %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07006147 __func__, frag_threshold);
6148 return -EIO;
6149 }
6150
6151 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: set frag threshold %hu", __func__,
6152 frag_threshold);
6153 }
6154
6155 if ((changed & WIPHY_PARAM_RETRY_SHORT)
6156 || (changed & WIPHY_PARAM_RETRY_LONG))
6157 {
6158 u8 retry_value = (changed & WIPHY_PARAM_RETRY_SHORT) ?
6159 wiphy->retry_short :
6160 wiphy->retry_long;
6161
6162 if ((WNI_CFG_LONG_RETRY_LIMIT_STAMIN > retry_value) ||
6163 (WNI_CFG_LONG_RETRY_LIMIT_STAMAX < retry_value))
6164 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306165 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid Retry count %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07006166 __func__, retry_value);
6167 return -EINVAL;
6168 }
6169
6170 if (changed & WIPHY_PARAM_RETRY_SHORT)
6171 {
6172 if (0 != ccmCfgSetInt(hHal, WNI_CFG_LONG_RETRY_LIMIT,
6173 retry_value, ccmCfgSetCallback,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306174 eANI_BOOLEAN_TRUE))
Jeff Johnson295189b2012-06-20 16:38:30 -07006175 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306176 hddLog(VOS_TRACE_LEVEL_ERROR,
6177 "%s: ccmCfgSetInt failed for long retry count %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07006178 __func__, retry_value);
6179 return -EIO;
6180 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306181 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: set long retry count %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07006182 __func__, retry_value);
6183 }
6184 else if (changed & WIPHY_PARAM_RETRY_SHORT)
6185 {
6186 if (0 != ccmCfgSetInt(hHal, WNI_CFG_SHORT_RETRY_LIMIT,
6187 retry_value, ccmCfgSetCallback,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306188 eANI_BOOLEAN_TRUE))
Jeff Johnson295189b2012-06-20 16:38:30 -07006189 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306190 hddLog(VOS_TRACE_LEVEL_ERROR,
6191 "%s: ccmCfgSetInt failed for short retry count %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07006192 __func__, retry_value);
6193 return -EIO;
6194 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306195 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: set short retry count %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07006196 __func__, retry_value);
6197 }
6198 }
6199
6200 return 0;
6201}
6202
6203/*
6204 * FUNCTION: wlan_hdd_cfg80211_set_txpower
6205 * This function is used to set the txpower
6206 */
6207static int wlan_hdd_cfg80211_set_txpower(struct wiphy *wiphy,
6208#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,35)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306209 enum tx_power_setting type,
Jeff Johnson295189b2012-06-20 16:38:30 -07006210#else
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306211 enum nl80211_tx_power_setting type,
Jeff Johnson295189b2012-06-20 16:38:30 -07006212#endif
6213 int dbm)
6214{
6215 hdd_context_t *pHddCtx = (hdd_context_t*) wiphy_priv(wiphy);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306216 tHalHandle hHal = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07006217 tSirMacAddr bssid = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF};
6218 tSirMacAddr selfMac = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF};
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306219 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07006220
6221 ENTER();
6222
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306223 status = wlan_hdd_validate_context(pHddCtx);
6224
6225 if (0 != status)
6226 {
6227 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6228 "%s: HDD context is not valid", __func__);
6229 return status;
6230 }
6231
6232 hHal = pHddCtx->hHal;
6233
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306234 if (0 != ccmCfgSetInt(hHal, WNI_CFG_CURRENT_TX_POWER_LEVEL,
6235 dbm, ccmCfgSetCallback,
6236 eANI_BOOLEAN_TRUE))
Jeff Johnson295189b2012-06-20 16:38:30 -07006237 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306238 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07006239 "%s: ccmCfgSetInt failed for tx power %hu", __func__, dbm);
6240 return -EIO;
6241 }
6242
6243 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: set tx power level %d dbm", __func__,
6244 dbm);
6245
6246 switch(type)
6247 {
6248 case NL80211_TX_POWER_AUTOMATIC: /*automatically determine transmit power*/
6249 /* Fall through */
6250 case NL80211_TX_POWER_LIMITED: /*limit TX power by the mBm parameter*/
6251 if( sme_SetMaxTxPower(hHal, bssid, selfMac, dbm) != eHAL_STATUS_SUCCESS )
6252 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306253 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Setting maximum tx power failed",
6254 __func__);
6255 return -EIO;
Jeff Johnson295189b2012-06-20 16:38:30 -07006256 }
6257 break;
6258 case NL80211_TX_POWER_FIXED: /*fix TX power to the mBm parameter*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306259 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: NL80211_TX_POWER_FIXED not supported",
Jeff Johnson295189b2012-06-20 16:38:30 -07006260 __func__);
6261 return -EOPNOTSUPP;
6262 break;
6263 default:
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306264 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid power setting type %d",
6265 __func__, type);
Jeff Johnson295189b2012-06-20 16:38:30 -07006266 return -EIO;
6267 }
6268
6269 return 0;
6270}
6271
6272/*
6273 * FUNCTION: wlan_hdd_cfg80211_get_txpower
6274 * This function is used to read the txpower
6275 */
6276static int wlan_hdd_cfg80211_get_txpower(struct wiphy *wiphy, int *dbm)
6277{
6278
6279 hdd_adapter_t *pAdapter;
6280 hdd_context_t *pHddCtx = (hdd_context_t*) wiphy_priv(wiphy);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306281 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07006282
Jeff Johnsone7245742012-09-05 17:12:55 -07006283 ENTER();
6284
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306285 status = wlan_hdd_validate_context(pHddCtx);
Jeff Johnson295189b2012-06-20 16:38:30 -07006286
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306287 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006288 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306289 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6290 "%s: HDD context is not valid", __func__);
6291 *dbm = 0;
6292 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006293 }
6294
Jeff Johnson295189b2012-06-20 16:38:30 -07006295 pAdapter = hdd_get_adapter(pHddCtx, WLAN_HDD_INFRA_STATION);
6296 if (NULL == pAdapter)
6297 {
6298 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: Not in station context " ,__func__);
6299 return -ENOENT;
6300 }
6301
6302 wlan_hdd_get_classAstats(pAdapter);
6303 *dbm = pAdapter->hdd_stats.ClassA_stat.max_pwr;
6304
Jeff Johnsone7245742012-09-05 17:12:55 -07006305 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -07006306 return 0;
6307}
6308
6309static int wlan_hdd_cfg80211_get_station(struct wiphy *wiphy, struct net_device *dev,
6310 u8* mac, struct station_info *sinfo)
6311{
6312 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
6313 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
6314 int ssidlen = pHddStaCtx->conn_info.SSID.SSID.length;
6315 tANI_U8 rate_flags;
6316
6317 hdd_context_t *pHddCtx = (hdd_context_t*) wiphy_priv(wiphy);
6318 hdd_config_t *pCfg = pHddCtx->cfg_ini;
Jeff Johnson295189b2012-06-20 16:38:30 -07006319
6320 tANI_U8 OperationalRates[CSR_DOT11_SUPPORTED_RATES_MAX];
6321 tANI_U32 ORLeng = CSR_DOT11_SUPPORTED_RATES_MAX;
6322 tANI_U8 ExtendedRates[CSR_DOT11_EXTENDED_SUPPORTED_RATES_MAX];
6323 tANI_U32 ERLeng = CSR_DOT11_EXTENDED_SUPPORTED_RATES_MAX;
6324 tANI_U8 MCSRates[SIZE_OF_BASIC_MCS_SET];
6325 tANI_U32 MCSLeng = SIZE_OF_BASIC_MCS_SET;
6326 tANI_U16 maxRate = 0;
6327 tANI_U16 myRate;
6328 tANI_U16 currentRate = 0;
6329 tANI_U8 maxSpeedMCS = 0;
6330 tANI_U8 maxMCSIdx = 0;
6331 tANI_U8 rateFlag = 1;
6332 tANI_U8 i, j, rssidx;
Madan Mohan Koyyalamudic75be962012-10-18 19:19:03 -07006333 tANI_U16 temp;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306334 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07006335
Leo Chang6f8870f2013-03-26 18:11:36 -07006336#ifdef WLAN_FEATURE_11AC
6337 tANI_U32 vht_mcs_map;
6338 eDataRate11ACMaxMcs vhtMaxMcs;
6339#endif /* WLAN_FEATURE_11AC */
6340
Jeff Johnsone7245742012-09-05 17:12:55 -07006341 ENTER();
6342
Jeff Johnson295189b2012-06-20 16:38:30 -07006343 if ((eConnectionState_Associated != pHddStaCtx->conn_info.connState) ||
6344 (0 == ssidlen))
6345 {
6346 hddLog(VOS_TRACE_LEVEL_INFO, "%s: Not associated or"
6347 " Invalid ssidlen, %d", __func__, ssidlen);
6348 /*To keep GUI happy*/
6349 return 0;
6350 }
6351
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306352 status = wlan_hdd_validate_context(pHddCtx);
6353
6354 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006355 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306356 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6357 "%s: HDD context is not valid", __func__);
6358 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006359 }
6360
Jeff Johnson295189b2012-06-20 16:38:30 -07006361 wlan_hdd_get_rssi(pAdapter, &sinfo->signal);
6362 sinfo->filled |= STATION_INFO_SIGNAL;
6363
Madan Mohan Koyyalamudi4d4d2812012-09-24 14:08:29 -07006364 wlan_hdd_get_station_stats(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07006365 rate_flags = pAdapter->hdd_stats.ClassA_stat.tx_rate_flags;
6366
6367 //convert to the UI units of 100kbps
6368 myRate = pAdapter->hdd_stats.ClassA_stat.tx_rate * 5;
6369
6370#ifdef LINKSPEED_DEBUG_ENABLED
Leo Chang6f8870f2013-03-26 18:11:36 -07006371 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 -07006372 sinfo->signal,
6373 pCfg->reportMaxLinkSpeed,
6374 myRate,
6375 (int) pCfg->linkSpeedRssiHigh,
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -07006376 (int) pCfg->linkSpeedRssiMid,
6377 (int) pCfg->linkSpeedRssiLow,
Leo Chang6f8870f2013-03-26 18:11:36 -07006378 (int) rate_flags,
6379 (int) pAdapter->hdd_stats.ClassA_stat.mcs_index);
Jeff Johnson295189b2012-06-20 16:38:30 -07006380#endif //LINKSPEED_DEBUG_ENABLED
6381
6382 if (eHDD_LINK_SPEED_REPORT_ACTUAL != pCfg->reportMaxLinkSpeed)
6383 {
6384 // we do not want to necessarily report the current speed
6385 if (eHDD_LINK_SPEED_REPORT_MAX == pCfg->reportMaxLinkSpeed)
6386 {
6387 // report the max possible speed
6388 rssidx = 0;
6389 }
6390 else if (eHDD_LINK_SPEED_REPORT_MAX_SCALED == pCfg->reportMaxLinkSpeed)
6391 {
6392 // report the max possible speed with RSSI scaling
6393 if (sinfo->signal >= pCfg->linkSpeedRssiHigh)
6394 {
6395 // report the max possible speed
6396 rssidx = 0;
6397 }
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -07006398 else if (sinfo->signal >= pCfg->linkSpeedRssiMid)
Jeff Johnson295189b2012-06-20 16:38:30 -07006399 {
6400 // report middle speed
6401 rssidx = 1;
6402 }
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -07006403 else if (sinfo->signal >= pCfg->linkSpeedRssiLow)
6404 {
6405 // report middle speed
6406 rssidx = 2;
6407 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006408 else
6409 {
6410 // report actual speed
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -07006411 rssidx = 3;
Jeff Johnson295189b2012-06-20 16:38:30 -07006412 }
6413 }
6414 else
6415 {
6416 // unknown, treat as eHDD_LINK_SPEED_REPORT_MAX
6417 hddLog(VOS_TRACE_LEVEL_ERROR,
6418 "%s: Invalid value for reportMaxLinkSpeed: %u",
6419 __func__, pCfg->reportMaxLinkSpeed);
6420 rssidx = 0;
6421 }
6422
6423 maxRate = 0;
6424
6425 /* Get Basic Rate Set */
Gopichand Nakkala05ab1322013-02-15 11:28:38 +05306426 if (0 != ccmCfgGetStr(WLAN_HDD_GET_HAL_CTX(pAdapter), WNI_CFG_OPERATIONAL_RATE_SET,
6427 OperationalRates, &ORLeng))
6428 {
6429 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: ccm api returned failure", __func__);
6430 /*To keep GUI happy*/
6431 return 0;
6432 }
6433
Jeff Johnson295189b2012-06-20 16:38:30 -07006434 for (i = 0; i < ORLeng; i++)
6435 {
Jeff Johnsone7245742012-09-05 17:12:55 -07006436 for (j = 0; j < (sizeof(supported_data_rate) / sizeof(supported_data_rate[0])); j ++)
Jeff Johnson295189b2012-06-20 16:38:30 -07006437 {
6438 /* Validate Rate Set */
6439 if (supported_data_rate[j].beacon_rate_index == (OperationalRates[i] & 0x7F))
6440 {
6441 currentRate = supported_data_rate[j].supported_rate[rssidx];
6442 break;
6443 }
6444 }
6445 /* Update MAX rate */
6446 maxRate = (currentRate > maxRate)?currentRate:maxRate;
6447 }
6448
6449 /* Get Extended Rate Set */
Gopichand Nakkala05ab1322013-02-15 11:28:38 +05306450 if (0 != ccmCfgGetStr(WLAN_HDD_GET_HAL_CTX(pAdapter), WNI_CFG_EXTENDED_OPERATIONAL_RATE_SET,
6451 ExtendedRates, &ERLeng))
6452 {
6453 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: ccm api returned failure", __func__);
6454 /*To keep GUI happy*/
6455 return 0;
6456 }
6457
Jeff Johnson295189b2012-06-20 16:38:30 -07006458 for (i = 0; i < ERLeng; i++)
6459 {
Jeff Johnsone7245742012-09-05 17:12:55 -07006460 for (j = 0; j < (sizeof(supported_data_rate) / sizeof(supported_data_rate[0])); j ++)
Jeff Johnson295189b2012-06-20 16:38:30 -07006461 {
6462 if (supported_data_rate[j].beacon_rate_index == (ExtendedRates[i] & 0x7F))
6463 {
6464 currentRate = supported_data_rate[j].supported_rate[rssidx];
6465 break;
6466 }
6467 }
6468 /* Update MAX rate */
6469 maxRate = (currentRate > maxRate)?currentRate:maxRate;
6470 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006471 /* Get MCS Rate Set -- but only if we are connected at MCS
6472 rates or if we are always reporting max speed or if we have
6473 good rssi */
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -07006474 if ((0 == rssidx) && !(rate_flags & eHAL_TX_RATE_LEGACY))
Jeff Johnson295189b2012-06-20 16:38:30 -07006475 {
Gopichand Nakkala05ab1322013-02-15 11:28:38 +05306476 if (0 != ccmCfgGetStr(WLAN_HDD_GET_HAL_CTX(pAdapter), WNI_CFG_CURRENT_MCS_SET,
6477 MCSRates, &MCSLeng))
6478 {
6479 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: ccm api returned failure", __func__);
6480 /*To keep GUI happy*/
6481 return 0;
6482 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006483 rateFlag = 0;
Leo Chang6f8870f2013-03-26 18:11:36 -07006484#ifdef WLAN_FEATURE_11AC
6485 /* VHT80 rate has seperate rate table */
Gopichand Nakkala4c705372013-04-24 13:20:33 +05306486 if (rate_flags & (eHAL_TX_RATE_VHT20|eHAL_TX_RATE_VHT40|eHAL_TX_RATE_VHT80))
Jeff Johnson295189b2012-06-20 16:38:30 -07006487 {
Leo Chang6f8870f2013-03-26 18:11:36 -07006488 ccmCfgGetInt(WLAN_HDD_GET_HAL_CTX(pAdapter), WNI_CFG_VHT_TX_MCS_MAP, &vht_mcs_map);
Gopichand Nakkala4c705372013-04-24 13:20:33 +05306489 vhtMaxMcs = (eDataRate11ACMaxMcs)(vht_mcs_map & DATA_RATE_11AC_MCS_MASK );
Leo Chang6f8870f2013-03-26 18:11:36 -07006490 if (rate_flags & eHAL_TX_RATE_SGI)
Jeff Johnson295189b2012-06-20 16:38:30 -07006491 {
Leo Chang6f8870f2013-03-26 18:11:36 -07006492 rateFlag |= 1;
Jeff Johnson295189b2012-06-20 16:38:30 -07006493 }
Leo Chang6f8870f2013-03-26 18:11:36 -07006494 if (DATA_RATE_11AC_MAX_MCS_7 == vhtMaxMcs)
Jeff Johnson295189b2012-06-20 16:38:30 -07006495 {
Leo Chang6f8870f2013-03-26 18:11:36 -07006496 maxMCSIdx = 7;
6497 }
6498 else if (DATA_RATE_11AC_MAX_MCS_8 == vhtMaxMcs)
6499 {
6500 maxMCSIdx = 8;
6501 }
6502 else if (DATA_RATE_11AC_MAX_MCS_9 == vhtMaxMcs)
6503 {
Gopichand Nakkala4c705372013-04-24 13:20:33 +05306504 //VHT20 is supporting 0~8
6505 if (rate_flags & eHAL_TX_RATE_VHT20)
6506 maxMCSIdx = 8;
6507 else
6508 maxMCSIdx = 9;
Leo Chang6f8870f2013-03-26 18:11:36 -07006509 }
Gopichand Nakkala4c705372013-04-24 13:20:33 +05306510
6511 if (rate_flags & eHAL_TX_RATE_VHT80)
6512 {
6513 currentRate = supported_vht_mcs_rate[pAdapter->hdd_stats.ClassA_stat.mcs_index].supported_VHT80_rate[rateFlag];
6514 maxRate = supported_vht_mcs_rate[maxMCSIdx].supported_VHT80_rate[rateFlag];
6515 }
6516 else if (rate_flags & eHAL_TX_RATE_VHT40)
6517 {
6518 currentRate = supported_vht_mcs_rate[pAdapter->hdd_stats.ClassA_stat.mcs_index].supported_VHT40_rate[rateFlag];
6519 maxRate = supported_vht_mcs_rate[maxMCSIdx].supported_VHT40_rate[rateFlag];
6520 }
6521 else if (rate_flags & eHAL_TX_RATE_VHT20)
6522 {
6523 currentRate = supported_vht_mcs_rate[pAdapter->hdd_stats.ClassA_stat.mcs_index].supported_VHT20_rate[rateFlag];
6524 maxRate = supported_vht_mcs_rate[maxMCSIdx].supported_VHT20_rate[rateFlag];
6525 }
6526
Leo Chang6f8870f2013-03-26 18:11:36 -07006527 maxSpeedMCS = 1;
6528 if (currentRate > maxRate)
6529 {
6530 maxRate = currentRate;
6531 }
Gopichand Nakkala4c705372013-04-24 13:20:33 +05306532
Leo Chang6f8870f2013-03-26 18:11:36 -07006533 }
6534 else
6535#endif /* WLAN_FEATURE_11AC */
6536 {
6537 if (rate_flags & eHAL_TX_RATE_HT40)
6538 {
6539 rateFlag |= 1;
6540 }
6541 if (rate_flags & eHAL_TX_RATE_SGI)
6542 {
6543 rateFlag |= 2;
6544 }
6545
6546 for (i = 0; i < MCSLeng; i++)
6547 {
6548 temp = sizeof(supported_mcs_rate) / sizeof(supported_mcs_rate[0]);
6549 for (j = 0; j < temp; j++)
6550 {
6551 if (supported_mcs_rate[j].beacon_rate_index == MCSRates[i])
6552 {
6553 currentRate = supported_mcs_rate[j].supported_rate[rateFlag];
6554 break;
6555 }
6556 }
6557 if ((j < temp) && (currentRate > maxRate))
6558 {
6559 maxRate = currentRate;
6560 maxSpeedMCS = 1;
6561 maxMCSIdx = supported_mcs_rate[j].beacon_rate_index;
6562 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006563 }
6564 }
6565 }
6566
Gopichand Nakkala4c705372013-04-24 13:20:33 +05306567 else if (!(rate_flags & eHAL_TX_RATE_LEGACY))
6568 {
6569 maxRate = myRate;
6570 maxSpeedMCS = 1;
6571 maxMCSIdx = pAdapter->hdd_stats.ClassA_stat.mcs_index;
6572 }
6573
Jeff Johnson295189b2012-06-20 16:38:30 -07006574 // make sure we report a value at least as big as our current rate
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -07006575 if (((maxRate < myRate) && (0 == rssidx)) ||
6576 (0 == maxRate))
Jeff Johnson295189b2012-06-20 16:38:30 -07006577 {
6578 maxRate = myRate;
6579 if (rate_flags & eHAL_TX_RATE_LEGACY)
6580 {
6581 maxSpeedMCS = 0;
6582 }
6583 else
6584 {
6585 maxSpeedMCS = 1;
6586 maxMCSIdx = pAdapter->hdd_stats.ClassA_stat.mcs_index;
6587 }
6588 }
6589
Gopichand Nakkala4c705372013-04-24 13:20:33 +05306590 if (rate_flags & eHAL_TX_RATE_LEGACY)
Jeff Johnson295189b2012-06-20 16:38:30 -07006591 {
6592 sinfo->txrate.legacy = maxRate;
6593#ifdef LINKSPEED_DEBUG_ENABLED
6594 pr_info("Reporting legacy rate %d\n", sinfo->txrate.legacy);
6595#endif //LINKSPEED_DEBUG_ENABLED
6596 }
6597 else
6598 {
6599 sinfo->txrate.mcs = maxMCSIdx;
Leo Chang6f8870f2013-03-26 18:11:36 -07006600#ifdef WLAN_FEATURE_11AC
6601 sinfo->txrate.nss = 1;
6602 if (rate_flags & eHAL_TX_RATE_VHT80)
6603 {
6604 sinfo->txrate.flags |= RATE_INFO_FLAGS_VHT_MCS;
Gopichand Nakkala4c705372013-04-24 13:20:33 +05306605 sinfo->txrate.flags |= RATE_INFO_FLAGS_80_MHZ_WIDTH;
Leo Chang6f8870f2013-03-26 18:11:36 -07006606 }
Gopichand Nakkala4c705372013-04-24 13:20:33 +05306607 else if (rate_flags & eHAL_TX_RATE_VHT40)
Leo Chang6f8870f2013-03-26 18:11:36 -07006608 {
Gopichand Nakkala4c705372013-04-24 13:20:33 +05306609 sinfo->txrate.flags |= RATE_INFO_FLAGS_VHT_MCS;
6610 sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
6611 }
6612 else if (rate_flags & eHAL_TX_RATE_VHT20)
6613 {
6614 sinfo->txrate.flags |= RATE_INFO_FLAGS_VHT_MCS;
6615 }
6616#endif /* WLAN_FEATURE_11AC */
6617 if (rate_flags & (eHAL_TX_RATE_HT20 | eHAL_TX_RATE_HT40))
6618 {
6619 sinfo->txrate.flags |= RATE_INFO_FLAGS_MCS;
6620 if (rate_flags & eHAL_TX_RATE_HT40)
6621 {
6622 sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
6623 }
Leo Chang6f8870f2013-03-26 18:11:36 -07006624 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006625 if (rate_flags & eHAL_TX_RATE_SGI)
6626 {
6627 sinfo->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
6628 }
Gopichand Nakkala4c705372013-04-24 13:20:33 +05306629
Jeff Johnson295189b2012-06-20 16:38:30 -07006630#ifdef LINKSPEED_DEBUG_ENABLED
6631 pr_info("Reporting MCS rate %d flags %x\n",
6632 sinfo->txrate.mcs,
6633 sinfo->txrate.flags );
6634#endif //LINKSPEED_DEBUG_ENABLED
6635 }
6636 }
6637 else
6638 {
6639 // report current rate instead of max rate
6640
6641 if (rate_flags & eHAL_TX_RATE_LEGACY)
6642 {
6643 //provide to the UI in units of 100kbps
6644 sinfo->txrate.legacy = myRate;
6645#ifdef LINKSPEED_DEBUG_ENABLED
6646 pr_info("Reporting actual legacy rate %d\n", sinfo->txrate.legacy);
6647#endif //LINKSPEED_DEBUG_ENABLED
6648 }
6649 else
6650 {
6651 //must be MCS
6652 sinfo->txrate.mcs = pAdapter->hdd_stats.ClassA_stat.mcs_index;
Leo Chang6f8870f2013-03-26 18:11:36 -07006653#ifdef WLAN_FEATURE_11AC
6654 sinfo->txrate.nss = 1;
6655 if (rate_flags & eHAL_TX_RATE_VHT80)
6656 {
6657 sinfo->txrate.flags |= RATE_INFO_FLAGS_VHT_MCS;
6658 }
6659 else
6660#endif /* WLAN_FEATURE_11AC */
6661 {
6662 sinfo->txrate.flags |= RATE_INFO_FLAGS_MCS;
6663 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006664 if (rate_flags & eHAL_TX_RATE_SGI)
6665 {
6666 sinfo->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
6667 }
6668 if (rate_flags & eHAL_TX_RATE_HT40)
6669 {
6670 sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
6671 }
Leo Chang6f8870f2013-03-26 18:11:36 -07006672#ifdef WLAN_FEATURE_11AC
6673 else if (rate_flags & eHAL_TX_RATE_VHT80)
6674 {
6675 sinfo->txrate.flags |= RATE_INFO_FLAGS_80_MHZ_WIDTH;
6676 }
6677#endif /* WLAN_FEATURE_11AC */
Jeff Johnson295189b2012-06-20 16:38:30 -07006678#ifdef LINKSPEED_DEBUG_ENABLED
6679 pr_info("Reporting actual MCS rate %d flags %x\n",
6680 sinfo->txrate.mcs,
6681 sinfo->txrate.flags );
6682#endif //LINKSPEED_DEBUG_ENABLED
6683 }
6684 }
6685 sinfo->filled |= STATION_INFO_TX_BITRATE;
6686
Madan Mohan Koyyalamudi4d4d2812012-09-24 14:08:29 -07006687 sinfo->tx_packets =
6688 pAdapter->hdd_stats.summary_stat.tx_frm_cnt[0] +
6689 pAdapter->hdd_stats.summary_stat.tx_frm_cnt[1] +
6690 pAdapter->hdd_stats.summary_stat.tx_frm_cnt[2] +
6691 pAdapter->hdd_stats.summary_stat.tx_frm_cnt[3];
6692
6693 sinfo->tx_retries =
6694 pAdapter->hdd_stats.summary_stat.retry_cnt[0] +
6695 pAdapter->hdd_stats.summary_stat.retry_cnt[1] +
6696 pAdapter->hdd_stats.summary_stat.retry_cnt[2] +
6697 pAdapter->hdd_stats.summary_stat.retry_cnt[3];
6698
6699 sinfo->tx_failed =
6700 pAdapter->hdd_stats.summary_stat.fail_cnt[0] +
6701 pAdapter->hdd_stats.summary_stat.fail_cnt[1] +
6702 pAdapter->hdd_stats.summary_stat.fail_cnt[2] +
6703 pAdapter->hdd_stats.summary_stat.fail_cnt[3];
6704
6705 sinfo->filled |=
6706 STATION_INFO_TX_PACKETS |
6707 STATION_INFO_TX_RETRIES |
6708 STATION_INFO_TX_FAILED;
6709
6710 EXIT();
6711 return 0;
Jeff Johnson295189b2012-06-20 16:38:30 -07006712}
6713
6714static int wlan_hdd_cfg80211_set_power_mgmt(struct wiphy *wiphy,
Sameer Thalappilc9f26e92013-06-07 10:11:06 -07006715 struct net_device *dev, bool mode, int timeout)
Jeff Johnson295189b2012-06-20 16:38:30 -07006716{
6717 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Gopichand Nakkala20c4c042013-04-19 22:08:55 +05306718 hdd_context_t *pHddCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -07006719 VOS_STATUS vos_status;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306720 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07006721
Jeff Johnsone7245742012-09-05 17:12:55 -07006722 ENTER();
6723
Jeff Johnson295189b2012-06-20 16:38:30 -07006724 if (NULL == pAdapter)
6725 {
6726 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Adapter is NULL\n", __func__);
6727 return -ENODEV;
6728 }
6729
Gopichand Nakkala20c4c042013-04-19 22:08:55 +05306730 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306731 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkala20c4c042013-04-19 22:08:55 +05306732
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306733 if (0 != status)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306734 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306735 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6736 "%s: HDD context is not valid", __func__);
6737 return status;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306738 }
6739
Gopichand Nakkala20c4c042013-04-19 22:08:55 +05306740 if ((DRIVER_POWER_MODE_AUTO == !mode) &&
6741 (TRUE == pHddCtx->hdd_wlan_suspended) &&
6742 (pHddCtx->cfg_ini->fhostArpOffload) &&
6743 (eConnectionState_Associated ==
6744 (WLAN_HDD_GET_STATION_CTX_PTR(pAdapter))->conn_info.connState))
6745 {
Gopichand Nakkalab03e8082013-05-30 18:09:25 +05306746 vos_status = hdd_conf_arp_offload(pAdapter, TRUE);
Gopichand Nakkala20c4c042013-04-19 22:08:55 +05306747 if (!VOS_IS_STATUS_SUCCESS(vos_status))
6748 {
6749 hddLog(VOS_TRACE_LEVEL_INFO,
6750 "%s:Failed to enable ARPOFFLOAD Feature %d\n",
6751 __func__, vos_status);
6752 }
6753 }
6754
Jeff Johnson295189b2012-06-20 16:38:30 -07006755 /**The get power cmd from the supplicant gets updated by the nl only
6756 *on successful execution of the function call
6757 *we are oppositely mapped w.r.t mode in the driver
6758 **/
6759 vos_status = wlan_hdd_enter_bmps(pAdapter, !mode);
6760
Jeff Johnsone7245742012-09-05 17:12:55 -07006761 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -07006762 if (VOS_STATUS_E_FAILURE == vos_status)
6763 {
6764 return -EINVAL;
6765 }
6766 return 0;
6767}
6768
6769
6770#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
6771static int wlan_hdd_set_default_mgmt_key(struct wiphy *wiphy,
6772 struct net_device *netdev,
6773 u8 key_index)
6774{
Jeff Johnsone7245742012-09-05 17:12:55 -07006775 ENTER();
Jeff Johnson295189b2012-06-20 16:38:30 -07006776 return 0;
6777}
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306778#endif //LINUX_VERSION_CODE
Jeff Johnson295189b2012-06-20 16:38:30 -07006779
6780#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
6781static int wlan_hdd_set_txq_params(struct wiphy *wiphy,
6782 struct net_device *dev,
6783 struct ieee80211_txq_params *params)
6784{
Jeff Johnsone7245742012-09-05 17:12:55 -07006785 ENTER();
Jeff Johnson295189b2012-06-20 16:38:30 -07006786 return 0;
6787}
6788#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
6789static int wlan_hdd_set_txq_params(struct wiphy *wiphy,
6790 struct ieee80211_txq_params *params)
6791{
Jeff Johnsone7245742012-09-05 17:12:55 -07006792 ENTER();
Jeff Johnson295189b2012-06-20 16:38:30 -07006793 return 0;
6794}
6795#endif //LINUX_VERSION_CODE
6796
6797static int wlan_hdd_cfg80211_del_station(struct wiphy *wiphy,
6798 struct net_device *dev, u8 *mac)
6799{
6800 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306801 hdd_context_t *pHddCtx;
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -08006802 VOS_STATUS vos_status;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306803 int status;
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -08006804 v_U8_t staId;
Jeff Johnson295189b2012-06-20 16:38:30 -07006805
Jeff Johnsone7245742012-09-05 17:12:55 -07006806 ENTER();
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306807 if ( NULL == pAdapter )
Jeff Johnson295189b2012-06-20 16:38:30 -07006808 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306809 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid Adapter" ,__func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07006810 return -EINVAL;
6811 }
6812
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306813 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
6814 status = wlan_hdd_validate_context(pHddCtx);
Jeff Johnson295189b2012-06-20 16:38:30 -07006815
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306816 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006817 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306818 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6819 "%s: HDD context is not valid", __func__);
6820 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006821 }
6822
Jeff Johnson295189b2012-06-20 16:38:30 -07006823 if ( (WLAN_HDD_SOFTAP == pAdapter->device_mode)
Jeff Johnson295189b2012-06-20 16:38:30 -07006824 || (WLAN_HDD_P2P_GO == pAdapter->device_mode)
Jeff Johnson295189b2012-06-20 16:38:30 -07006825 )
6826 {
6827 if( NULL == mac )
6828 {
6829 v_U16_t i;
6830 for(i = 0; i < WLAN_MAX_STA_COUNT; i++)
6831 {
6832 if(pAdapter->aStaInfo[i].isUsed)
6833 {
6834 u8 *macAddr = pAdapter->aStaInfo[i].macAddrSTA.bytes;
6835 hddLog(VOS_TRACE_LEVEL_INFO,
6836 "%s: Delete STA with MAC::"
6837 "%02x:%02x:%02x:%02x:%02x:%02x",
6838 __func__,
6839 macAddr[0], macAddr[1], macAddr[2],
6840 macAddr[3], macAddr[4], macAddr[5]);
6841 hdd_softap_sta_deauth(pAdapter, macAddr);
6842 }
6843 }
6844 }
6845 else
6846 {
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -08006847
6848 vos_status = hdd_softap_GetStaId(pAdapter,(v_MACADDR_t *)mac, &staId);
6849 if (!VOS_IS_STATUS_SUCCESS(vos_status))
6850 {
6851 hddLog(VOS_TRACE_LEVEL_INFO,
6852 "%s: Skip this DEL STA as this is not used::"
6853 "%02x:%02x:%02x:%02x:%02x:%02x",
6854 __func__,
6855 mac[0], mac[1], mac[2],
6856 mac[3], mac[4], mac[5]);
6857 return -ENOENT;
6858 }
6859
6860 if( pAdapter->aStaInfo[staId].isDeauthInProgress == TRUE)
6861 {
6862 hddLog(VOS_TRACE_LEVEL_INFO,
6863 "%s: Skip this DEL STA as deauth is in progress::"
6864 "%02x:%02x:%02x:%02x:%02x:%02x",
6865 __func__,
6866 mac[0], mac[1], mac[2],
6867 mac[3], mac[4], mac[5]);
6868 return -ENOENT;
6869 }
6870
6871 pAdapter->aStaInfo[staId].isDeauthInProgress = TRUE;
6872
Jeff Johnson295189b2012-06-20 16:38:30 -07006873 hddLog(VOS_TRACE_LEVEL_INFO,
6874 "%s: Delete STA with MAC::"
6875 "%02x:%02x:%02x:%02x:%02x:%02x",
6876 __func__,
6877 mac[0], mac[1], mac[2],
6878 mac[3], mac[4], mac[5]);
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -08006879
6880 vos_status = hdd_softap_sta_deauth(pAdapter, mac);
6881 if (!VOS_IS_STATUS_SUCCESS(vos_status))
6882 {
6883 pAdapter->aStaInfo[staId].isDeauthInProgress = FALSE;
6884 hddLog(VOS_TRACE_LEVEL_INFO,
6885 "%s: STA removal failed for ::"
6886 "%02x:%02x:%02x:%02x:%02x:%02x",
6887 __func__,
6888 mac[0], mac[1], mac[2],
6889 mac[3], mac[4], mac[5]);
6890 return -ENOENT;
6891 }
6892
Jeff Johnson295189b2012-06-20 16:38:30 -07006893 }
6894 }
6895
6896 EXIT();
6897
6898 return 0;
6899}
6900
Hoonki Lee11f7dda2013-02-14 16:55:44 -08006901static int wlan_hdd_cfg80211_add_station(struct wiphy *wiphy,
6902 struct net_device *dev, u8 *mac, struct station_parameters *params)
6903{
Gopichand Nakkalab977a972013-02-18 19:15:09 -08006904 int status = -EPERM;
Hoonki Lee11f7dda2013-02-14 16:55:44 -08006905#ifdef FEATURE_WLAN_TDLS
6906 u32 mask, set;
Hoonki Lee11f7dda2013-02-14 16:55:44 -08006907 ENTER();
Mohit Khanna698ba2a2012-12-04 15:08:18 -08006908 mask = params->sta_flags_mask;
6909
6910 set = params->sta_flags_set;
6911
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07006912#ifdef WLAN_FEATURE_TDLS_DEBUG
6913 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6914 "%s: mask 0x%x set 0x%x " MAC_ADDRESS_STR,
6915 __func__, mask, set, MAC_ADDR_ARRAY(mac));
6916#endif
Mohit Khanna698ba2a2012-12-04 15:08:18 -08006917
6918 if (mask & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
6919 if (set & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
Gopichand Nakkala681989c2013-03-06 22:27:48 -08006920 status = wlan_hdd_tdls_add_station(wiphy, dev, mac, 0, NULL);
Mohit Khanna698ba2a2012-12-04 15:08:18 -08006921 }
6922 }
6923#endif
Gopichand Nakkalab977a972013-02-18 19:15:09 -08006924 return status;
Jeff Johnson295189b2012-06-20 16:38:30 -07006925}
6926
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006927
6928#ifdef FEATURE_WLAN_LFR
6929static int wlan_hdd_cfg80211_set_pmksa(struct wiphy *wiphy, struct net_device *dev,
Jeff Johnsond13512a2012-07-17 11:42:19 -07006930 struct cfg80211_pmksa *pmksa)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006931{
6932#define MAX_PMKSAIDS_IN_CACHE 8
6933 static tPmkidCacheInfo PMKIDCache[MAX_PMKSAIDS_IN_CACHE]; // HDD Local cache
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306934 static tANI_U32 i; // HDD Local Cache index
6935 tANI_U32 j=0;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006936 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
6937 tHalHandle halHandle;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306938 eHalStatus result;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306939 int status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006940 tANI_U8 BSSIDMatched = 0;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306941 hdd_context_t *pHddCtx;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306942
Jeff Johnsone7245742012-09-05 17:12:55 -07006943 ENTER();
6944
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306945 // Validate pAdapter
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306946 if ( NULL == pAdapter )
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006947 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306948 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid Adapter" ,__func__);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006949 return -EINVAL;
6950 }
6951
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306952 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
6953 status = wlan_hdd_validate_context(pHddCtx);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006954
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306955 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006956 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306957 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6958 "%s: HDD context is not valid", __func__);
6959 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006960 }
6961
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306962 // Retrieve halHandle
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006963 halHandle = WLAN_HDD_GET_HAL_CTX(pAdapter);
6964
6965 for (j = 0; j < i; j++)
6966 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306967 if(vos_mem_compare(PMKIDCache[j].BSSID,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006968 pmksa->bssid, WNI_CFG_BSSID_LEN))
6969 {
6970 /* BSSID matched previous entry. Overwrite it. */
6971 BSSIDMatched = 1;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306972 vos_mem_copy(PMKIDCache[j].BSSID,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006973 pmksa->bssid, WNI_CFG_BSSID_LEN);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306974 vos_mem_copy(PMKIDCache[j].PMKID,
6975 pmksa->pmkid,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006976 CSR_RSN_PMKID_SIZE);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306977 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: Reusing cache entry %d.",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07006978 __func__, j );
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006979 dump_bssid(pmksa->bssid);
6980 dump_pmkid(halHandle, pmksa->pmkid);
6981 break;
6982 }
6983 }
6984
Madan Mohan Koyyalamudic4b317d2012-10-18 19:43:08 -07006985 /* Check we compared all entries,if then take the first slot now */
6986 if(j == MAX_PMKSAIDS_IN_CACHE) i=0;
6987
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006988 if (!BSSIDMatched)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306989 {
6990 // Now, we DON'T have a BSSID match, so take a new entry in the cache.
6991 vos_mem_copy(PMKIDCache[i].BSSID,
6992 pmksa->bssid, ETHER_ADDR_LEN);
6993 vos_mem_copy(PMKIDCache[i].PMKID,
6994 pmksa->pmkid,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006995 CSR_RSN_PMKID_SIZE);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306996 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: Adding a new cache entry %d.",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07006997 __func__, i );
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006998 dump_bssid(pmksa->bssid);
6999 dump_pmkid(halHandle, pmksa->pmkid);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307000 // Increment the HDD Local Cache index
Jeff Johnson04dd8a82012-06-29 20:41:40 -07007001 // The "i=0" doesn't work for the call to sme_RoamSetPMKIDCache() - LFR FIXME
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307002 if (i<=(MAX_PMKSAIDS_IN_CACHE-1)) i++; else i=0;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07007003 }
7004
7005
7006 // Calling csrRoamSetPMKIDCache to configure the PMKIDs into the cache
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307007 //hddLog(LOG1, FL("%s: Calling csrRoamSetPMKIDCache with %d cache entries."),
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07007008 // __func__, i );
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307009 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: Calling csrRoamSetPMKIDCache with %d cache entries.",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07007010 __func__, i );
Jeff Johnson04dd8a82012-06-29 20:41:40 -07007011 // Finally set the PMKSA ID Cache in CSR
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307012 result = sme_RoamSetPMKIDCache(halHandle,pAdapter->sessionId,
7013 PMKIDCache,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07007014 i );
7015 return 0;
7016}
7017
7018
7019static int wlan_hdd_cfg80211_del_pmksa(struct wiphy *wiphy, struct net_device *dev,
Jeff Johnsond13512a2012-07-17 11:42:19 -07007020 struct cfg80211_pmksa *pmksa)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07007021{
Jeff Johnsone7245742012-09-05 17:12:55 -07007022 ENTER();
Jeff Johnson04dd8a82012-06-29 20:41:40 -07007023 // TODO: Implement this later.
7024 return 0;
7025}
7026
7027static int wlan_hdd_cfg80211_flush_pmksa(struct wiphy *wiphy, struct net_device *dev)
7028{
Jeff Johnsone7245742012-09-05 17:12:55 -07007029 ENTER();
Jeff Johnson04dd8a82012-06-29 20:41:40 -07007030 // TODO: Implement this later.
7031 return 0;
7032}
7033#endif
7034
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07007035#if defined(WLAN_FEATURE_VOWIFI_11R) && defined(KERNEL_SUPPORT_11R_CFG80211)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307036static int wlan_hdd_cfg80211_update_ft_ies(struct wiphy *wiphy,
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07007037 struct net_device *dev, struct cfg80211_update_ft_ies_params *ftie)
7038{
7039 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
7040 hdd_station_ctx_t *pHddStaCtx;
7041
7042 if (NULL == pAdapter)
7043 {
7044 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Adapter is NULL\n", __func__);
7045 return -ENODEV;
7046 }
7047
7048 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
7049
7050 // Added for debug on reception of Re-assoc Req.
7051 if (eConnectionState_Associated != pHddStaCtx->conn_info.connState)
7052 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307053 hddLog(LOGE, FL("Called with Ie of length = %d when not associated\n"),
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07007054 ftie->ie_len);
7055 hddLog(LOGE, FL("Should be Re-assoc Req IEs\n"));
7056 }
7057
7058#ifdef WLAN_FEATURE_VOWIFI_11R_DEBUG
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307059 hddLog(LOGE, FL("%s called with Ie of length = %d\n"), __func__,
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07007060 ftie->ie_len);
7061#endif
7062
7063 // Pass the received FT IEs to SME
Gopichand Nakkala356fb102013-03-06 12:34:04 +05307064 sme_SetFTIEs( WLAN_HDD_GET_HAL_CTX(pAdapter), pAdapter->sessionId,
7065 (const u8 *)ftie->ie,
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07007066 ftie->ie_len);
7067 return 0;
7068}
7069#endif
Jeff Johnson04dd8a82012-06-29 20:41:40 -07007070
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05307071#ifdef FEATURE_WLAN_SCAN_PNO
7072
7073void hdd_cfg80211_sched_scan_done_callback(void *callbackContext,
7074 tSirPrefNetworkFoundInd *pPrefNetworkFoundInd)
7075{
7076 int ret;
7077 hdd_adapter_t* pAdapter = (hdd_adapter_t*)callbackContext;
7078 hdd_context_t *pHddCtx;
7079
7080 if (NULL == pAdapter)
7081 {
7082 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
7083 "%s: HDD adapter is Null", __func__);
7084 return ;
7085 }
7086
7087 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
7088 if (NULL == pHddCtx)
7089 {
7090 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7091 "%s: HDD context is Null!!!", __func__);
7092 return ;
7093 }
7094
7095 ret = wlan_hdd_cfg80211_update_bss(pHddCtx->wiphy, pAdapter);
7096
7097 if (0 > ret)
7098 hddLog(VOS_TRACE_LEVEL_INFO, "%s: NO SCAN result", __func__);
7099
7100 cfg80211_sched_scan_results(pHddCtx->wiphy);
7101}
7102
7103/*
7104 * FUNCTION: wlan_hdd_cfg80211_sched_scan_start
7105 * NL interface to enable PNO
7106 */
7107static int wlan_hdd_cfg80211_sched_scan_start(struct wiphy *wiphy,
7108 struct net_device *dev, struct cfg80211_sched_scan_request *request)
7109{
7110 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
7111 tpSirPNOScanReq pPnoRequest = NULL;
7112 hdd_context_t *pHddCtx;
7113 tHalHandle hHal;
7114 v_U32_t i, indx, num_ch;
7115 u8 valid_ch[WNI_CFG_VALID_CHANNEL_LIST_LEN];
7116 u8 channels_allowed[WNI_CFG_VALID_CHANNEL_LIST_LEN];
7117 v_U32_t num_channels_allowed = WNI_CFG_VALID_CHANNEL_LIST_LEN;
7118 eHalStatus status = eHAL_STATUS_FAILURE;
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05307119 int result;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05307120
7121 if (NULL == pAdapter)
7122 {
7123 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
7124 "%s: HDD adapter is Null", __func__);
7125 return -ENODEV;
7126 }
7127
7128 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05307129 result = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05307130
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05307131 if (0 != result)
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05307132 {
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05307133 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7134 "%s: HDD context is not valid", __func__);
7135 return result;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05307136 }
7137
7138 hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
7139 if (NULL == hHal)
7140 {
7141 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7142 "%s: HAL context is Null!!!", __func__);
7143 return -EAGAIN;
7144 }
7145
7146 pPnoRequest = (tpSirPNOScanReq) vos_mem_malloc(sizeof (tSirPNOScanReq));
7147 if (NULL == pPnoRequest)
7148 {
7149 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
7150 "%s: vos_mem_malloc failed", __func__);
7151 return -ENODEV;
7152 }
7153
7154 pPnoRequest->enable = 1; /*Enable PNO */
7155 pPnoRequest->ucNetworksCount = request->n_match_sets;
7156
7157 if (( !pPnoRequest->ucNetworksCount ) ||
7158 ( pPnoRequest->ucNetworksCount > SIR_PNO_MAX_SUPP_NETWORKS ))
7159 {
7160 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7161 "Network input is not correct");
7162 goto error;
7163 }
7164
7165 if ( SIR_PNO_MAX_NETW_CHANNELS_EX < request->n_channels )
7166 {
7167 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7168 "Incorrect number of channels");
7169 goto error;
7170 }
7171
7172 /* Framework provides one set of channels(all)
7173 * common for all saved profile */
7174 if (0 != ccmCfgGetStr(hHal, WNI_CFG_VALID_CHANNEL_LIST,
7175 channels_allowed, &num_channels_allowed))
7176 {
7177 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7178 "%s: failed to get valid channel list", __func__);
7179 goto error;
7180 }
7181 /* Checking each channel against allowed channel list */
7182 num_ch = 0;
7183 for (i = 0; i < request->n_channels; i++)
7184 {
7185 for (indx = 0; indx < num_channels_allowed; indx++)
7186 {
7187 if (request->channels[i]->hw_value == channels_allowed[indx])
7188 {
7189 valid_ch[num_ch++] = request->channels[i]->hw_value;
7190 break ;
7191 }
7192 }
7193 }
7194
7195 /* Filling per profile params */
7196 for (i = 0; i < pPnoRequest->ucNetworksCount; i++)
7197 {
7198 pPnoRequest->aNetworks[i].ssId.length =
7199 request->match_sets[i].ssid.ssid_len;
7200
7201 if (( 0 == pPnoRequest->aNetworks[i].ssId.length ) ||
7202 ( pPnoRequest->aNetworks[i].ssId.length > 32 ) )
7203 {
7204 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7205 "SSID Len %d is not correct for network %d",
7206 pPnoRequest->aNetworks[i].ssId.length, i);
7207 goto error;
7208 }
7209
7210 memcpy(pPnoRequest->aNetworks[i].ssId.ssId,
7211 request->match_sets[i].ssid.ssid,
7212 request->match_sets[i].ssid.ssid_len);
7213 pPnoRequest->aNetworks[i].authentication = 0; /*eAUTH_TYPE_ANY*/
7214 pPnoRequest->aNetworks[i].encryption = 0; /*eED_ANY*/
7215 pPnoRequest->aNetworks[i].bcastNetwType = 0; /*eBCAST_UNKNOWN*/
7216
7217 /*Copying list of valid channel into request */
7218 memcpy(pPnoRequest->aNetworks[i].aChannels, valid_ch, num_ch);
7219 pPnoRequest->aNetworks[i].ucChannelCount = num_ch;
7220
7221 pPnoRequest->aNetworks[i].rssiThreshold = 0; //Default value
7222 }
7223
7224 /* framework provides interval in ms */
7225 pPnoRequest->scanTimers.ucScanTimersCount = 1;
7226 pPnoRequest->scanTimers.aTimerValues[0].uTimerValue =
7227 (request->interval)/1000;
7228 pPnoRequest->scanTimers.aTimerValues[0].uTimerRepeat = 0;
7229 pPnoRequest->modePNO = SIR_PNO_MODE_ON_SUSPEND;
7230
7231 status = sme_SetPreferredNetworkList(WLAN_HDD_GET_HAL_CTX(pAdapter),
7232 pPnoRequest, pAdapter->sessionId,
7233 hdd_cfg80211_sched_scan_done_callback, pAdapter);
7234 if (eHAL_STATUS_SUCCESS != status)
7235 {
7236 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7237 "Failed to enable PNO");
7238 goto error;
7239 }
7240
7241error:
7242 vos_mem_free(pPnoRequest);
7243 return status;
7244}
7245
7246/*
7247 * FUNCTION: wlan_hdd_cfg80211_sched_scan_stop
7248 * NL interface to disable PNO
7249 */
7250static int wlan_hdd_cfg80211_sched_scan_stop(struct wiphy *wiphy,
7251 struct net_device *dev)
7252{
7253 eHalStatus status = eHAL_STATUS_FAILURE;
7254 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
7255 hdd_context_t *pHddCtx;
7256 tHalHandle hHal;
7257 tpSirPNOScanReq pPnoRequest = NULL;
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05307258 int result;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05307259
7260 ENTER();
7261
7262 if (NULL == pAdapter)
7263 {
7264 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
7265 "%s: HDD adapter is Null", __func__);
7266 return -ENODEV;
7267 }
7268
7269 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05307270 result = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05307271
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05307272 if (0 != result)
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05307273 {
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05307274 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7275 "%s: HDD context is not valid", __func__);
7276 return result;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05307277 }
7278
7279 hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
7280 if (NULL == hHal)
7281 {
7282 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7283 "%s: HAL context is Null!!!", __func__);
7284 return -EAGAIN;
7285 }
7286
7287 pPnoRequest = (tpSirPNOScanReq) vos_mem_malloc(sizeof (tSirPNOScanReq));
7288 if (NULL == pPnoRequest)
7289 {
7290 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
7291 "%s: vos_mem_malloc failed", __func__);
7292 return -ENODEV;
7293 }
7294
7295 memset(pPnoRequest, 0, sizeof (tSirPNOScanReq));
7296 pPnoRequest->enable = 0; /* Disable PNO */
7297 pPnoRequest->ucNetworksCount = 0;
7298
7299 status = sme_SetPreferredNetworkList(hHal, pPnoRequest,
7300 pAdapter->sessionId,
7301 NULL, pAdapter);
7302 if (eHAL_STATUS_SUCCESS != status)
7303 {
7304 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7305 "Failed to disabled PNO");
7306 }
7307
7308 vos_mem_free(pPnoRequest);
7309
7310 EXIT();
7311 return status;
7312}
7313
7314#endif /*FEATURE_WLAN_SCAN_PNO*/
7315
7316
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007317#ifdef FEATURE_WLAN_TDLS
7318static int wlan_hdd_cfg80211_tdls_mgmt(struct wiphy *wiphy, struct net_device *dev,
7319 u8 *peer, u8 action_code, u8 dialog_token,
7320 u16 status_code, const u8 *buf, size_t len)
7321{
7322
7323 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
7324 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007325 u8 peerMac[6];
7326 VOS_STATUS status;
Gopichand Nakkala05922802013-03-14 12:23:19 -07007327 int max_sta_failed = 0;
Hoonki Leea34dd892013-02-05 22:56:02 -08007328 int responder;
Hoonki Leed37cbb32013-04-20 00:31:14 -07007329 long rc;
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007330
Hoonki Lee11f7dda2013-02-14 16:55:44 -08007331 if (NULL == pHddCtx || NULL == pHddCtx->cfg_ini)
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007332 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307333 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007334 "Invalid arguments");
7335 return -EINVAL;
7336 }
7337
Sameer Thalappil75ea31a2013-02-21 19:38:16 -08007338 if (pHddCtx->isLogpInProgress)
7339 {
7340 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7341 "%s:LOGP in Progress. Ignore!!!", __func__);
Gopichand Nakkala05922802013-03-14 12:23:19 -07007342 wlan_hdd_tdls_set_link_status(pAdapter, peer, eTDLS_LINK_IDLE);
Sameer Thalappil75ea31a2013-02-21 19:38:16 -08007343 return -EBUSY;
7344 }
7345
Hoonki Lee27511902013-03-14 18:19:06 -07007346 if (eTDLS_SUPPORT_NOT_ENABLED == pHddCtx->tdls_mode)
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007347 {
Hoonki Lee27511902013-03-14 18:19:06 -07007348 VOS_TRACE( VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
7349 "%s: TDLS mode is disabled OR not enabled in FW."
7350 MAC_ADDRESS_STR " action %d declined.",
7351 __func__, MAC_ADDR_ARRAY(peer), action_code);
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007352 return -ENOTSUPP;
7353 }
Lee Hoonkic1262f22013-01-24 21:59:00 -08007354
Hoonki Lee27511902013-03-14 18:19:06 -07007355 /* other than teardown frame, other mgmt frames are not sent if disabled */
7356 if (SIR_MAC_TDLS_TEARDOWN != action_code)
7357 {
7358 /* if tdls_mode is disabled to respond to peer's request */
7359 if (eTDLS_SUPPORT_DISABLED == pHddCtx->tdls_mode)
7360 {
7361 VOS_TRACE( VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
7362 "%s: " MAC_ADDRESS_STR
Gopichand Nakkala34d1b062013-03-19 15:28:33 -07007363 " TDLS mode is disabled. action %d declined.",
7364 __func__, MAC_ADDR_ARRAY(peer), action_code);
Hoonki Lee27511902013-03-14 18:19:06 -07007365
7366 return -ENOTSUPP;
7367 }
7368 }
7369
Gopichand Nakkalab977a972013-02-18 19:15:09 -08007370 if (WLAN_IS_TDLS_SETUP_ACTION(action_code))
7371 {
Hoonki Leefb8df672013-04-10 18:20:34 -07007372 if (NULL != wlan_hdd_tdls_is_progress(pHddCtx, peer, TRUE, TRUE))
Gopichand Nakkalab977a972013-02-18 19:15:09 -08007373 {
7374 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007375 "%s: " MAC_ADDRESS_STR
Gopichand Nakkala34d1b062013-03-19 15:28:33 -07007376 " TDLS setup is ongoing. action %d declined.",
7377 __func__, MAC_ADDR_ARRAY(peer), action_code);
7378 return -EPERM;
Gopichand Nakkalab977a972013-02-18 19:15:09 -08007379 }
7380 }
7381
Hoonki Lee11f7dda2013-02-14 16:55:44 -08007382 if (SIR_MAC_TDLS_SETUP_REQ == action_code ||
7383 SIR_MAC_TDLS_SETUP_RSP == action_code )
Lee Hoonkic1262f22013-01-24 21:59:00 -08007384 {
Gopichand Nakkala4327a152013-03-04 23:22:42 -08007385 if (HDD_MAX_NUM_TDLS_STA <= wlan_hdd_tdlsConnectedPeers(pAdapter))
Lee Hoonkic1262f22013-01-24 21:59:00 -08007386 {
7387 /* supplicant still sends tdls_mgmt(SETUP_REQ) even after
7388 we return error code at 'add_station()'. Hence we have this
7389 check again in addtion to add_station().
7390 Anyway, there is no hard to double-check. */
Hoonki Lee11f7dda2013-02-14 16:55:44 -08007391 if (SIR_MAC_TDLS_SETUP_REQ == action_code)
Lee Hoonkic1262f22013-01-24 21:59:00 -08007392 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007393 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7394 "%s: " MAC_ADDRESS_STR
Gopichand Nakkala34d1b062013-03-19 15:28:33 -07007395 " TDLS Max peer already connected. action %d declined.",
7396 __func__, MAC_ADDR_ARRAY(peer), action_code);
Gopichand Nakkala05922802013-03-14 12:23:19 -07007397 goto error;
Lee Hoonkic1262f22013-01-24 21:59:00 -08007398 }
7399 else
7400 {
Gopichand Nakkalab977a972013-02-18 19:15:09 -08007401 /* maximum reached. tweak to send error code to peer and return
7402 error code to supplicant */
Lee Hoonkic1262f22013-01-24 21:59:00 -08007403 status_code = eSIR_MAC_UNSPEC_FAILURE_STATUS;
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007404 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7405 "%s: " MAC_ADDRESS_STR
7406 " TDLS Max peer already connected send response status %d",
7407 __func__, MAC_ADDR_ARRAY(peer), status_code);
Gopichand Nakkala05922802013-03-14 12:23:19 -07007408 max_sta_failed = -EPERM;
Gopichand Nakkalab977a972013-02-18 19:15:09 -08007409 /* fall through to send setup resp with failure status
7410 code */
Lee Hoonkic1262f22013-01-24 21:59:00 -08007411 }
7412 }
Hoonki Lee11f7dda2013-02-14 16:55:44 -08007413 else
7414 {
7415 hddTdlsPeer_t *pTdlsPeer;
Gopichand Nakkala4327a152013-03-04 23:22:42 -08007416 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peer);
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07007417 if (pTdlsPeer && TDLS_IS_CONNECTED(pTdlsPeer))
Hoonki Lee11f7dda2013-02-14 16:55:44 -08007418 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007419 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkala34d1b062013-03-19 15:28:33 -07007420 "%s:" MAC_ADDRESS_STR " already connected. action %d declined.",
7421 __func__, MAC_ADDR_ARRAY(peer), action_code);
Hoonki Lee11f7dda2013-02-14 16:55:44 -08007422 return -EPERM;
7423 }
7424 }
Lee Hoonkic1262f22013-01-24 21:59:00 -08007425 }
Hoonki Lee11f7dda2013-02-14 16:55:44 -08007426 vos_mem_copy(peerMac, peer, 6);
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007427
Hoonki Lee1090c6a2013-01-16 17:40:54 -08007428#ifdef WLAN_FEATURE_TDLS_DEBUG
7429 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007430 "%s: " MAC_ADDRESS_STR " action %d, dialog_token %d status %d, len = %d",
7431 "tdls_mgmt", MAC_ADDR_ARRAY(peer),
7432 action_code, dialog_token, status_code, len);
Hoonki Lee1090c6a2013-01-16 17:40:54 -08007433#endif
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007434
Hoonki Leea34dd892013-02-05 22:56:02 -08007435 /*Except teardown responder will not be used so just make 0*/
7436 responder = 0;
Hoonki Lee11f7dda2013-02-14 16:55:44 -08007437 if (SIR_MAC_TDLS_TEARDOWN == action_code)
Hoonki Leea34dd892013-02-05 22:56:02 -08007438 {
Gopichand Nakkala97a65fd2013-04-16 16:59:38 -07007439
7440 hddTdlsPeer_t *pTdlsPeer;
7441 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peerMac);
7442
7443 if(pTdlsPeer && TDLS_IS_CONNECTED(pTdlsPeer))
7444 responder = pTdlsPeer->is_responder;
7445 else
Hoonki Leea34dd892013-02-05 22:56:02 -08007446 {
Gopichand Nakkala97a65fd2013-04-16 16:59:38 -07007447 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7448 "%s: " MAC_ADDRESS_STR " peer doesn't exist or not connected %d dialog_token %d status %d, len = %d",
7449 __func__, MAC_ADDR_ARRAY(peer), (NULL == pTdlsPeer) ? -1 : pTdlsPeer->link_status,
7450 dialog_token, status_code, len);
7451 return -EPERM;
Hoonki Leea34dd892013-02-05 22:56:02 -08007452 }
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007453 }
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007454
Gopichand Nakkala2f1ff152013-07-01 11:27:43 +05307455 /* For explicit trigger of DIS_REQ come out of BMPS for
7456 successfully receiving DIS_RSP from peer. */
Hoonki Lee14621352013-04-16 17:51:19 -07007457 if ((SIR_MAC_TDLS_SETUP_RSP == action_code) ||
Gopichand Nakkala2f1ff152013-07-01 11:27:43 +05307458 (SIR_MAC_TDLS_DIS_RSP == action_code) ||
7459 (SIR_MAC_TDLS_DIS_REQ == action_code))
Hoonki Lee14621352013-04-16 17:51:19 -07007460 {
7461 if (TRUE == sme_IsPmcBmps(WLAN_HDD_GET_HAL_CTX(pAdapter)))
7462 {
7463 VOS_TRACE( VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
Gopichand Nakkala2f1ff152013-07-01 11:27:43 +05307464 "%s: Sending frame action_code %u.Disable BMPS", __func__, action_code);
Hoonki Lee14621352013-04-16 17:51:19 -07007465 hdd_disable_bmps_imps(pHddCtx, WLAN_HDD_INFRA_STATION);
7466 }
Gopichand Nakkala2f1ff152013-07-01 11:27:43 +05307467 if (SIR_MAC_TDLS_DIS_REQ != action_code)
7468 wlan_hdd_tdls_set_cap(pAdapter, peerMac, eTDLS_CAP_SUPPORTED);
Hoonki Lee14621352013-04-16 17:51:19 -07007469 }
7470
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007471 /* make sure doesn't call send_mgmt() while it is pending */
7472 if (TDLS_CTX_MAGIC == pAdapter->mgmtTxCompletionStatus)
7473 {
7474 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7475 "%s: " MAC_ADDRESS_STR " action %d couldn't sent, as one is pending. return EBUSY\n",
7476 __func__, MAC_ADDR_ARRAY(peer), action_code);
7477 return -EBUSY;
7478 }
7479
7480 pAdapter->mgmtTxCompletionStatus = TDLS_CTX_MAGIC;
Gopichand Nakkalab977a972013-02-18 19:15:09 -08007481 INIT_COMPLETION(pAdapter->tdls_mgmt_comp);
7482
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007483 status = sme_SendTdlsMgmtFrame(WLAN_HDD_GET_HAL_CTX(pAdapter), pAdapter->sessionId,
Hoonki Leea34dd892013-02-05 22:56:02 -08007484 peerMac, action_code, dialog_token, status_code, (tANI_U8 *)buf, len, responder);
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007485
Gopichand Nakkalab977a972013-02-18 19:15:09 -08007486 if (VOS_STATUS_SUCCESS != status)
7487 {
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007488 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7489 "%s: sme_SendTdlsMgmtFrame failed!", __func__);
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007490 pAdapter->mgmtTxCompletionStatus = FALSE;
Hoonki Lee14621352013-04-16 17:51:19 -07007491 wlan_hdd_tdls_check_bmps(pAdapter);
7492 goto error;
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007493 }
7494
Hoonki Leed37cbb32013-04-20 00:31:14 -07007495 rc = wait_for_completion_interruptible_timeout(&pAdapter->tdls_mgmt_comp,
7496 msecs_to_jiffies(WAIT_TIME_TDLS_MGMT));
7497
7498 if ((rc <= 0) || (TRUE != pAdapter->mgmtTxCompletionStatus))
Gopichand Nakkalab977a972013-02-18 19:15:09 -08007499 {
Hoonki Leed37cbb32013-04-20 00:31:14 -07007500 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7501 "%s: Mgmt Tx Completion failed status %ld TxCompletion %lu",
7502 __func__, rc, pAdapter->mgmtTxCompletionStatus);
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007503 pAdapter->mgmtTxCompletionStatus = FALSE;
Hoonki Leed37cbb32013-04-20 00:31:14 -07007504 wlan_hdd_tdls_check_bmps(pAdapter);
7505 goto error;
Gopichand Nakkalab977a972013-02-18 19:15:09 -08007506 }
7507
Gopichand Nakkala05922802013-03-14 12:23:19 -07007508 if (max_sta_failed)
Hoonki Lee14621352013-04-16 17:51:19 -07007509 {
7510 wlan_hdd_tdls_check_bmps(pAdapter);
Gopichand Nakkala05922802013-03-14 12:23:19 -07007511 return max_sta_failed;
Hoonki Lee14621352013-04-16 17:51:19 -07007512 }
Gopichand Nakkalab977a972013-02-18 19:15:09 -08007513
Hoonki Leea34dd892013-02-05 22:56:02 -08007514 if (SIR_MAC_TDLS_SETUP_RSP == action_code)
7515 {
Gopichand Nakkala4327a152013-03-04 23:22:42 -08007516 wlan_hdd_tdls_set_responder(pAdapter, peerMac, TRUE);
Hoonki Leea34dd892013-02-05 22:56:02 -08007517 }
7518 else if (SIR_MAC_TDLS_SETUP_CNF == action_code)
7519 {
Gopichand Nakkala4327a152013-03-04 23:22:42 -08007520 wlan_hdd_tdls_set_responder(pAdapter, peerMac, FALSE);
Hoonki Leea34dd892013-02-05 22:56:02 -08007521 }
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007522
7523 return 0;
Gopichand Nakkala05922802013-03-14 12:23:19 -07007524error:
7525 /* max_sta_failed ; we didn't set to CONNECTING for this case,
7526 because we already know that this transaction will be failed,
7527 but we weren't sure if supplicant call DISABLE_LINK or not. So,
7528 to be safe, do not change the state mahine.
7529 */
7530 if(max_sta_failed == 0 &&
7531 (WLAN_IS_TDLS_SETUP_ACTION(action_code)))
7532 wlan_hdd_tdls_set_link_status(pAdapter, peerMac, eTDLS_LINK_IDLE);
7533 return -EPERM;
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007534}
7535
7536static int wlan_hdd_cfg80211_tdls_oper(struct wiphy *wiphy, struct net_device *dev,
7537 u8 *peer, enum nl80211_tdls_operation oper)
7538{
7539 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
7540 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05307541 int status;
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05307542#ifdef FEATURE_WLAN_TDLS_OXYGEN_DISAPPEAR_AP
7543 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05307544 tANI_U8 staIdx;
7545#endif
Hoonki Lee1090c6a2013-01-16 17:40:54 -08007546#ifdef WLAN_FEATURE_TDLS_DEBUG
7547 const char *tdls_oper_str[]= {
7548 "NL80211_TDLS_DISCOVERY_REQ",
7549 "NL80211_TDLS_SETUP",
7550 "NL80211_TDLS_TEARDOWN",
7551 "NL80211_TDLS_ENABLE_LINK",
7552 "NL80211_TDLS_DISABLE_LINK",
Gopichand Nakkala29d00192013-06-20 19:03:52 +05307553 "NL80211_TDLS_UNKNOWN_OPER"};
Hoonki Lee1090c6a2013-01-16 17:40:54 -08007554#endif
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007555 hddTdlsPeer_t *pTdlsPeer;
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007556
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05307557 if ( NULL == peer )
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007558 {
Gopichand Nakkalab977a972013-02-18 19:15:09 -08007559 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Chilam Ngc4244af2013-04-01 15:37:32 -07007560 "%s: Invalid arguments", __func__);
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007561 return -EINVAL;
7562 }
Hoonki Lee1090c6a2013-01-16 17:40:54 -08007563
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05307564 status = wlan_hdd_validate_context(pHddCtx);
7565
7566 if (0 != status)
Sameer Thalappil75ea31a2013-02-21 19:38:16 -08007567 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05307568 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7569 "%s: HDD context is not valid", __func__);
7570 return status;
Sameer Thalappil75ea31a2013-02-21 19:38:16 -08007571 }
7572
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007573 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peer);
7574
7575 if ( NULL == pTdlsPeer ) {
7576 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: " MAC_ADDRESS_STR " (oper %d) not exsting. ignored",
7577 __func__, MAC_ADDR_ARRAY(peer), (int)oper);
7578 return -EINVAL;
7579 }
7580
Hoonki Lee1090c6a2013-01-16 17:40:54 -08007581#ifdef WLAN_FEATURE_TDLS_DEBUG
7582 if((int)oper > 4)
7583 oper = 5;
7584
7585 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007586 "%s: " MAC_ADDRESS_STR " link_status %d (%s) ", "tdls_oper",
7587 MAC_ADDR_ARRAY(peer), pTdlsPeer->link_status,
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007588 tdls_oper_str[(int)oper]);
Hoonki Lee1090c6a2013-01-16 17:40:54 -08007589#endif
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007590
7591 if( FALSE == pHddCtx->cfg_ini->fEnableTDLSSupport ||
Hoonki Lee1090c6a2013-01-16 17:40:54 -08007592 FALSE == sme_IsFeatureSupportedByFW(TDLS))
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007593 {
Hoonki Lee1090c6a2013-01-16 17:40:54 -08007594 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Chilam Ngc4244af2013-04-01 15:37:32 -07007595 "TDLS Disabled in INI OR not enabled in FW. "
7596 "Cannot process TDLS commands");
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007597 return -ENOTSUPP;
7598 }
7599
7600 switch (oper) {
7601 case NL80211_TDLS_ENABLE_LINK:
7602 {
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007603 VOS_STATUS status;
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +05307604 tCsrTdlsLinkEstablishParams tdlsLinkEstablishParams;
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007605
Gopichand Nakkala2f4a2822013-04-17 11:22:01 -07007606 if (!TDLS_STA_INDEX_VALID(pTdlsPeer->staId))
7607 {
7608 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid Staion Index %u "
7609 MAC_ADDRESS_STR " failed",
7610 __func__, pTdlsPeer->staId, MAC_ADDR_ARRAY(peer));
7611 return -EINVAL;
7612 }
7613
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007614 if (eTDLS_LINK_CONNECTED != pTdlsPeer->link_status)
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007615 {
Gopichand Nakkala24be5312013-07-02 16:47:12 +05307616 long ret;
7617
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +05307618 if (0 != wlan_hdd_tdls_get_link_establish_params(pAdapter, peer,&tdlsLinkEstablishParams)) {
7619 return -EINVAL;
7620 }
7621 INIT_COMPLETION(pAdapter->tdls_link_establish_req_comp);
7622
7623 sme_SendTdlsLinkEstablishParams(WLAN_HDD_GET_HAL_CTX(pAdapter),
7624 pAdapter->sessionId, peer, &tdlsLinkEstablishParams);
7625 /* Send TDLS peer UAPSD capabilities to the firmware and
7626 * register with the TL on after the response for this operation
7627 * is received .
7628 */
Gopichand Nakkala24be5312013-07-02 16:47:12 +05307629 ret = wait_for_completion_interruptible_timeout(&pAdapter->tdls_link_establish_req_comp,
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +05307630 msecs_to_jiffies(WAIT_TIME_TDLS_LINK_ESTABLISH_REQ));
Gopichand Nakkala24be5312013-07-02 16:47:12 +05307631 if (ret <= 0)
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +05307632 {
7633 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7634 "%s: Link Establish Request Faled Status %ld",
Gopichand Nakkala24be5312013-07-02 16:47:12 +05307635 __func__, ret);
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +05307636 return -EINVAL;
7637 }
Gopichand Nakkalaccd3a382013-03-19 13:56:10 -07007638 wlan_hdd_tdls_set_peer_link_status(pTdlsPeer, eTDLS_LINK_CONNECTED);
Gopichand Nakkala471708b2013-06-04 20:03:01 +05307639 /* Mark TDLS client Authenticated .*/
7640 status = WLANTL_ChangeSTAState( pHddCtx->pvosContext,
7641 pTdlsPeer->staId,
7642 WLANTL_STA_AUTHENTICATED);
Gopichand Nakkalaccd3a382013-03-19 13:56:10 -07007643 if (VOS_STATUS_SUCCESS == status)
7644 {
Hoonki Lee14621352013-04-16 17:51:19 -07007645 if (pTdlsPeer->is_responder == 0)
7646 {
7647 v_U8_t staId = (v_U8_t)pTdlsPeer->staId;
7648
7649 wlan_hdd_tdls_timer_restart(pAdapter,
7650 &pTdlsPeer->initiatorWaitTimeoutTimer,
7651 WAIT_TIME_TDLS_INITIATOR);
7652 /* suspend initiator TX until it receives direct packet from the
7653 reponder or WAIT_TIME_TDLS_INITIATOR timer expires */
7654 WLANTL_SuspendDataTx( (WLAN_HDD_GET_CTX(pAdapter))->pvosContext,
7655 &staId, NULL);
7656 }
Gopichand Nakkalaccd3a382013-03-19 13:56:10 -07007657 wlan_hdd_tdls_increment_peer_count(pAdapter);
7658 }
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007659 wlan_hdd_tdls_check_bmps(pAdapter);
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +05307660
7661 /* Update TL about the UAPSD masks , to route the packets to firmware */
Gopichand Nakkala574f6d12013-06-27 19:38:43 +05307662 if ((TRUE == pHddCtx->cfg_ini->fEnableTDLSBufferSta)
7663 || pHddCtx->cfg_ini->fTDLSUapsdMask )
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +05307664 {
Gopichand Nakkala574f6d12013-06-27 19:38:43 +05307665 int ac;
7666 uint8 ucAc[4] = { WLANTL_AC_VO,
7667 WLANTL_AC_VI,
7668 WLANTL_AC_BK,
7669 WLANTL_AC_BE };
7670 uint8 tlTid[4] = { 7, 5, 2, 3 } ;
7671 for(ac=0; ac < 4; ac++)
7672 {
7673 status = WLANTL_EnableUAPSDForAC( (WLAN_HDD_GET_CTX(pAdapter))->pvosContext,
7674 pTdlsPeer->staId, ucAc[ac],
7675 tlTid[ac], tlTid[ac], 0, 0,
7676 WLANTL_BI_DIR );
7677 }
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +05307678 }
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007679 }
7680
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007681 }
7682 break;
7683 case NL80211_TDLS_DISABLE_LINK:
Lee Hoonkic1262f22013-01-24 21:59:00 -08007684 {
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007685 if(TDLS_STA_INDEX_VALID(pTdlsPeer->staId))
Lee Hoonkic1262f22013-01-24 21:59:00 -08007686 {
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07007687 long status;
7688
7689 INIT_COMPLETION(pAdapter->tdls_del_station_comp);
7690
Lee Hoonkic1262f22013-01-24 21:59:00 -08007691 sme_DeleteTdlsPeerSta( WLAN_HDD_GET_HAL_CTX(pAdapter),
7692 pAdapter->sessionId, peer );
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07007693
7694 status = wait_for_completion_interruptible_timeout(&pAdapter->tdls_del_station_comp,
7695 msecs_to_jiffies(WAIT_TIME_TDLS_DEL_STA));
7696 if (status <= 0)
7697 {
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007698 wlan_hdd_tdls_set_peer_link_status(pTdlsPeer, eTDLS_LINK_IDLE);
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07007699 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7700 "%s: Del station failed status %ld",
7701 __func__, status);
7702 return -EPERM;
7703 }
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007704 wlan_hdd_tdls_set_peer_link_status(pTdlsPeer, eTDLS_LINK_IDLE);
Lee Hoonkic1262f22013-01-24 21:59:00 -08007705 }
7706 else
7707 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007708 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7709 "%s: TDLS Peer Station doesn't exist.", __func__);
Lee Hoonkic1262f22013-01-24 21:59:00 -08007710 }
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05307711#ifdef FEATURE_WLAN_TDLS_OXYGEN_DISAPPEAR_AP
7712 if (pHddTdlsCtx->defer_link_lost_indication)
7713 {
7714 if (( TRUE == pHddCtx->cfg_ini->fEnableTDLSOxygenSupport ) &&
7715 (wlan_hdd_tdlsConnectedPeers(pAdapter) == 0))
7716 {
7717 status = wlan_hdd_disconnect(pAdapter, eCSR_DISCONNECT_REASON_UNSPECIFIED);
7718 if ( 0 != status)
7719 {
7720 hddLog(VOS_TRACE_LEVEL_ERROR,
7721 "%s wlan_hdd_disconnect failure, returned %d \n",
7722 __func__, (int)status );
7723 return -EINVAL;
7724 }
7725 }
7726 }
7727#endif
Lee Hoonkic1262f22013-01-24 21:59:00 -08007728 }
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007729 break;
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007730 case NL80211_TDLS_TEARDOWN:
7731 case NL80211_TDLS_SETUP:
7732 case NL80211_TDLS_DISCOVERY_REQ:
7733 /* We don't support in-driver setup/teardown/discovery */
7734 return -ENOTSUPP;
7735 default:
7736 return -ENOTSUPP;
7737 }
7738 return 0;
7739}
Chilam NG571c65a2013-01-19 12:27:36 +05307740
7741int wlan_hdd_cfg80211_send_tdls_discover_req(struct wiphy *wiphy,
7742 struct net_device *dev, u8 *peer)
7743{
7744 hddLog(VOS_TRACE_LEVEL_INFO, "tdls send discover req: %x %x %x %x %x %x",
7745 peer[0], peer[1], peer[2], peer[3], peer[4], peer[5]);
7746
7747 return wlan_hdd_cfg80211_tdls_mgmt(wiphy, dev, peer,
7748 WLAN_TDLS_DISCOVERY_REQUEST, 1, 0, NULL, 0);
7749}
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007750#endif
7751
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307752#ifdef WLAN_FEATURE_GTK_OFFLOAD
7753/*
7754 * FUNCTION: wlan_hdd_cfg80211_update_replayCounterCallback
7755 * Callback rountine called upon receiving response for
7756 * get offload info
7757 */
7758void wlan_hdd_cfg80211_update_replayCounterCallback(void *callbackContext,
7759 tpSirGtkOffloadGetInfoRspParams pGtkOffloadGetInfoRsp)
7760{
7761
7762 hdd_adapter_t *pAdapter = (hdd_adapter_t *)callbackContext;
Gopichand Nakkalad36ee622013-05-07 14:13:27 +05307763 tANI_U8 tempReplayCounter[8];
7764 hdd_station_ctx_t *pHddStaCtx;
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307765
7766 ENTER();
7767
7768 if (NULL == pAdapter)
7769 {
7770 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
7771 "%s: HDD adapter is Null", __func__);
7772 return ;
7773 }
7774
7775 if (NULL == pGtkOffloadGetInfoRsp)
7776 {
7777 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7778 "%s: pGtkOffloadGetInfoRsp is Null", __func__);
7779 return ;
7780 }
7781
7782 if (VOS_STATUS_SUCCESS != pGtkOffloadGetInfoRsp->ulStatus)
7783 {
7784 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7785 "%s: wlan Failed to get replay counter value",
7786 __func__);
7787 return ;
7788 }
7789
Gopichand Nakkalad36ee622013-05-07 14:13:27 +05307790 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
7791 /* Update replay counter */
7792 pHddStaCtx->gtkOffloadReqParams.ullKeyReplayCounter =
7793 pGtkOffloadGetInfoRsp->ullKeyReplayCounter;
7794
7795 {
7796 /* changing from little to big endian since supplicant
7797 * works on big endian format
7798 */
7799 int i;
7800 tANI_U8 *p = (tANI_U8 *)&pGtkOffloadGetInfoRsp->ullKeyReplayCounter;
7801
7802 for (i = 0; i < 8; i++)
7803 {
7804 tempReplayCounter[7-i] = (tANI_U8)p[i];
7805 }
7806 }
7807
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307808 /* Update replay counter to NL */
7809 cfg80211_gtk_rekey_notify(pAdapter->dev, pGtkOffloadGetInfoRsp->bssId,
Gopichand Nakkalad36ee622013-05-07 14:13:27 +05307810 tempReplayCounter, GFP_KERNEL);
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307811}
7812
7813/*
7814 * FUNCTION: wlan_hdd_cfg80211_set_rekey_data
7815 * This function is used to offload GTK rekeying job to the firmware.
7816 */
7817int wlan_hdd_cfg80211_set_rekey_data(struct wiphy *wiphy, struct net_device *dev,
7818 struct cfg80211_gtk_rekey_data *data)
7819{
7820 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
7821 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
7822 hdd_station_ctx_t *pHddStaCtx;
7823 tHalHandle hHal;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05307824 int result;
Gopichand Nakkalad36ee622013-05-07 14:13:27 +05307825 tSirGtkOffloadParams hddGtkOffloadReqParams;
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307826 eHalStatus status = eHAL_STATUS_FAILURE;
7827
7828 ENTER();
7829
7830 if (NULL == pAdapter)
7831 {
7832 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
7833 "%s: HDD adapter is Null", __func__);
7834 return -ENODEV;
7835 }
7836
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05307837 result = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307838
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05307839 if (0 != result)
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307840 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05307841 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7842 "%s: HDD context is not valid", __func__);
7843 return result;
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307844 }
7845
7846 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
7847 hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
7848 if (NULL == hHal)
7849 {
7850 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7851 "%s: HAL context is Null!!!", __func__);
7852 return -EAGAIN;
7853 }
7854
Gopichand Nakkalad36ee622013-05-07 14:13:27 +05307855 pHddStaCtx->gtkOffloadReqParams.ulFlags = GTK_OFFLOAD_ENABLE;
7856 memcpy(pHddStaCtx->gtkOffloadReqParams.aKCK, data->kck, NL80211_KCK_LEN);
7857 memcpy(pHddStaCtx->gtkOffloadReqParams.aKEK, data->kek, NL80211_KEK_LEN);
7858 memcpy(pHddStaCtx->gtkOffloadReqParams.bssId, &pHddStaCtx->conn_info.bssId,
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307859 WNI_CFG_BSSID_LEN);
Gopichand Nakkalad36ee622013-05-07 14:13:27 +05307860 {
7861 /* changing from big to little endian since driver
7862 * works on little endian format
7863 */
7864 tANI_U8 *p =
7865 (tANI_U8 *)&pHddStaCtx->gtkOffloadReqParams.ullKeyReplayCounter;
7866 int i;
7867
7868 for (i = 0; i < 8; i++)
7869 {
7870 p[7-i] = data->replay_ctr[i];
7871 }
7872 }
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307873
7874 if (TRUE == pHddCtx->hdd_wlan_suspended)
7875 {
7876 /* if wlan is suspended, enable GTK offload directly from here */
Gopichand Nakkalad36ee622013-05-07 14:13:27 +05307877 memcpy(&hddGtkOffloadReqParams, &pHddStaCtx->gtkOffloadReqParams,
7878 sizeof (tSirGtkOffloadParams));
7879 status = sme_SetGTKOffload(hHal, &hddGtkOffloadReqParams,
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307880 pAdapter->sessionId);
7881
7882 if (eHAL_STATUS_SUCCESS != status)
7883 {
7884 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7885 "%s: sme_SetGTKOffload failed, returned %d",
7886 __func__, status);
7887 return status;
7888 }
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307889 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
7890 "%s: sme_SetGTKOffload successfull", __func__);
7891 }
7892 else
7893 {
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307894 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
7895 "%s: wlan not suspended GTKOffload request is stored",
7896 __func__);
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307897 }
Gopichand Nakkalad36ee622013-05-07 14:13:27 +05307898
7899 return eHAL_STATUS_SUCCESS;
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307900}
7901#endif /*WLAN_FEATURE_GTK_OFFLOAD*/
7902
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05307903/*
7904 * FUNCTION: wlan_hdd_cfg80211_set_mac_acl
7905 * This function is used to set access control policy
7906 */
7907static int wlan_hdd_cfg80211_set_mac_acl(struct wiphy *wiphy,
7908 struct net_device *dev, const struct cfg80211_acl_data *params)
7909{
7910 int i;
7911 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
7912 hdd_hostapd_state_t *pHostapdState;
7913 tsap_Config_t *pConfig;
7914 v_CONTEXT_t pVosContext = NULL;
7915 hdd_context_t *pHddCtx;
7916 int status;
7917
7918 ENTER();
7919
7920 if (NULL == pAdapter)
7921 {
7922 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
7923 "%s: HDD adapter is Null", __func__);
7924 return -ENODEV;
7925 }
7926
7927 if (NULL == params)
7928 {
7929 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
7930 "%s: params is Null", __func__);
7931 return -EINVAL;
7932 }
7933
7934 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
7935 status = wlan_hdd_validate_context(pHddCtx);
7936
7937 if (0 != status)
7938 {
7939 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7940 "%s: HDD context is not valid", __func__);
7941 return status;
7942 }
7943
7944 pVosContext = pHddCtx->pvosContext;
7945 pHostapdState = WLAN_HDD_GET_HOSTAP_STATE_PTR(pAdapter);
7946
7947 if (NULL == pHostapdState)
7948 {
7949 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
7950 "%s: pHostapdState is Null", __func__);
7951 return -EINVAL;
7952 }
7953
7954 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,"acl policy: = %d"
7955 "no acl entries = %d", params->acl_policy, params->n_acl_entries);
7956
7957 if (WLAN_HDD_SOFTAP == pAdapter->device_mode)
7958 {
7959 pConfig = &pAdapter->sessionCtx.ap.sapConfig;
7960
7961 /* default value */
7962 pConfig->num_accept_mac = 0;
7963 pConfig->num_deny_mac = 0;
7964
7965 /**
7966 * access control policy
7967 * @NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED: Deny stations which are
7968 * listed in hostapd.deny file.
7969 * @NL80211_ACL_POLICY_DENY_UNLESS_LISTED: Allow stations which are
7970 * listed in hostapd.accept file.
7971 */
7972 if (NL80211_ACL_POLICY_DENY_UNLESS_LISTED == params->acl_policy)
7973 {
7974 pConfig->SapMacaddr_acl = eSAP_DENY_UNLESS_ACCEPTED;
7975 }
7976 else if (NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED == params->acl_policy)
7977 {
7978 pConfig->SapMacaddr_acl = eSAP_ACCEPT_UNLESS_DENIED;
7979 }
7980 else
7981 {
7982 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7983 "%s:Acl Policy : %d is not supported",
7984 __func__, params->acl_policy);
7985 return -ENOTSUPP;
7986 }
7987
7988 if (eSAP_DENY_UNLESS_ACCEPTED == pConfig->SapMacaddr_acl)
7989 {
7990 pConfig->num_accept_mac = params->n_acl_entries;
7991 for (i = 0; i < params->n_acl_entries; i++)
7992 {
7993 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
7994 "** Add ACL MAC entry %i in WhiletList :"
7995 MAC_ADDRESS_STR, i,
7996 MAC_ADDR_ARRAY(params->mac_addrs[i].addr));
7997
7998 vos_mem_copy(&pConfig->accept_mac[i], params->mac_addrs[i].addr,
7999 sizeof(qcmacaddr));
8000 }
8001 }
8002 else if (eSAP_ACCEPT_UNLESS_DENIED == pConfig->SapMacaddr_acl)
8003 {
8004 pConfig->num_deny_mac = params->n_acl_entries;
8005 for (i = 0; i < params->n_acl_entries; i++)
8006 {
8007 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
8008 "** Add ACL MAC entry %i in BlackList :"
8009 MAC_ADDRESS_STR, i,
8010 MAC_ADDR_ARRAY(params->mac_addrs[i].addr));
8011
8012 vos_mem_copy(&pConfig->deny_mac[i], params->mac_addrs[i].addr,
8013 sizeof(qcmacaddr));
8014 }
8015 }
8016
8017 if (VOS_STATUS_SUCCESS != WLANSAP_SetMacACL(pVosContext, pConfig))
8018 {
8019 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8020 "%s: SAP Set Mac Acl fail", __func__);
8021 return -EINVAL;
8022 }
8023 }
8024 else
8025 {
8026 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8027 "%s: Invalid device_mode = %d",
8028 __func__, pAdapter->device_mode);
8029 return -EINVAL;
8030 }
8031
8032 return 0;
8033}
8034
Jeff Johnson295189b2012-06-20 16:38:30 -07008035/* cfg80211_ops */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308036static struct cfg80211_ops wlan_hdd_cfg80211_ops =
Jeff Johnson295189b2012-06-20 16:38:30 -07008037{
8038 .add_virtual_intf = wlan_hdd_add_virtual_intf,
8039 .del_virtual_intf = wlan_hdd_del_virtual_intf,
8040 .change_virtual_intf = wlan_hdd_cfg80211_change_iface,
8041 .change_station = wlan_hdd_change_station,
8042#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
8043 .add_beacon = wlan_hdd_cfg80211_add_beacon,
8044 .del_beacon = wlan_hdd_cfg80211_del_beacon,
8045 .set_beacon = wlan_hdd_cfg80211_set_beacon,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008046#else
8047 .start_ap = wlan_hdd_cfg80211_start_ap,
8048 .change_beacon = wlan_hdd_cfg80211_change_beacon,
8049 .stop_ap = wlan_hdd_cfg80211_stop_ap,
Jeff Johnson295189b2012-06-20 16:38:30 -07008050#endif
8051 .change_bss = wlan_hdd_cfg80211_change_bss,
8052 .add_key = wlan_hdd_cfg80211_add_key,
8053 .get_key = wlan_hdd_cfg80211_get_key,
8054 .del_key = wlan_hdd_cfg80211_del_key,
8055 .set_default_key = wlan_hdd_cfg80211_set_default_key,
Jeff Johnson3bbe4bf2013-01-18 17:05:29 -08008056#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,6,0))
Jeff Johnson295189b2012-06-20 16:38:30 -07008057 .set_channel = wlan_hdd_cfg80211_set_channel,
Jeff Johnson3bbe4bf2013-01-18 17:05:29 -08008058#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07008059 .scan = wlan_hdd_cfg80211_scan,
8060 .connect = wlan_hdd_cfg80211_connect,
8061 .disconnect = wlan_hdd_cfg80211_disconnect,
8062 .join_ibss = wlan_hdd_cfg80211_join_ibss,
8063 .leave_ibss = wlan_hdd_cfg80211_leave_ibss,
8064 .set_wiphy_params = wlan_hdd_cfg80211_set_wiphy_params,
8065 .set_tx_power = wlan_hdd_cfg80211_set_txpower,
8066 .get_tx_power = wlan_hdd_cfg80211_get_txpower,
Jeff Johnson295189b2012-06-20 16:38:30 -07008067 .remain_on_channel = wlan_hdd_cfg80211_remain_on_channel,
8068 .cancel_remain_on_channel = wlan_hdd_cfg80211_cancel_remain_on_channel,
8069 .mgmt_tx = wlan_hdd_action,
8070#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
8071 .mgmt_tx_cancel_wait = wlan_hdd_cfg80211_mgmt_tx_cancel_wait,
8072 .set_default_mgmt_key = wlan_hdd_set_default_mgmt_key,
8073 .set_txq_params = wlan_hdd_set_txq_params,
8074#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07008075 .get_station = wlan_hdd_cfg80211_get_station,
8076 .set_power_mgmt = wlan_hdd_cfg80211_set_power_mgmt,
8077 .del_station = wlan_hdd_cfg80211_del_station,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008078 .add_station = wlan_hdd_cfg80211_add_station,
8079#ifdef FEATURE_WLAN_LFR
8080 .set_pmksa = wlan_hdd_cfg80211_set_pmksa,
8081 .del_pmksa = wlan_hdd_cfg80211_del_pmksa,
8082 .flush_pmksa = wlan_hdd_cfg80211_flush_pmksa,
8083#endif
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07008084#if defined(WLAN_FEATURE_VOWIFI_11R) && defined(KERNEL_SUPPORT_11R_CFG80211)
8085 .update_ft_ies = wlan_hdd_cfg80211_update_ft_ies,
8086#endif
Mohit Khanna698ba2a2012-12-04 15:08:18 -08008087#ifdef FEATURE_WLAN_TDLS
8088 .tdls_mgmt = wlan_hdd_cfg80211_tdls_mgmt,
8089 .tdls_oper = wlan_hdd_cfg80211_tdls_oper,
8090#endif
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05308091#ifdef WLAN_FEATURE_GTK_OFFLOAD
8092 .set_rekey_data = wlan_hdd_cfg80211_set_rekey_data,
8093#endif /* WLAN_FEATURE_GTK_OFFLOAD */
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05308094#ifdef FEATURE_WLAN_SCAN_PNO
8095 .sched_scan_start = wlan_hdd_cfg80211_sched_scan_start,
8096 .sched_scan_stop = wlan_hdd_cfg80211_sched_scan_stop,
8097#endif /*FEATURE_WLAN_SCAN_PNO */
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05308098 .set_mac_acl = wlan_hdd_cfg80211_set_mac_acl,
Jeff Johnson295189b2012-06-20 16:38:30 -07008099};
8100