blob: 438ea273dd9f6d6e022786d4723173ca5370d718 [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 {
5450 if ( (NL80211_WPA_VERSION_1 == req->crypto.wpa_versions)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305451 && ( (req->ie_len)
Gopichand Nakkala18f0c262013-05-07 23:25:08 +05305452 && (hdd_isWPAIEPresent(req->ie, req->ie_len) ) ) )
Jeff Johnson295189b2012-06-20 16:38:30 -07005453 // Make sure that it is including a WPA IE.
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305454 /* Currently NL is putting WPA version 1 even for open,
Jeff Johnson295189b2012-06-20 16:38:30 -07005455 * since p2p ie is also put in same buffer.
5456 * */
5457 {
5458 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_WPA;
5459 }
5460 else if (NL80211_WPA_VERSION_2 == req->crypto.wpa_versions)
5461 {
5462 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_WPA2;
5463 }
5464 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305465
5466 hddLog(VOS_TRACE_LEVEL_INFO, "%s: set wpa version to %d", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07005467 pWextState->wpaVersion);
5468
5469 /*set authentication type*/
5470 status = wlan_hdd_cfg80211_set_auth_type(pAdapter, req->auth_type);
5471
5472 if (0 > status)
5473 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305474 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07005475 "%s: failed to set authentication type ", __func__);
5476 return status;
5477 }
5478
5479 /*set key mgmt type*/
5480 if (req->crypto.n_akm_suites)
5481 {
5482 status = wlan_hdd_set_akm_suite(pAdapter, req->crypto.akm_suites[0]);
5483 if (0 > status)
5484 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305485 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to set akm suite",
Jeff Johnson295189b2012-06-20 16:38:30 -07005486 __func__);
5487 return status;
5488 }
5489 }
5490
5491 /*set pairwise cipher type*/
5492 if (req->crypto.n_ciphers_pairwise)
5493 {
5494 status = wlan_hdd_cfg80211_set_cipher(pAdapter,
5495 req->crypto.ciphers_pairwise[0], true);
5496 if (0 > status)
5497 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305498 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07005499 "%s: failed to set unicast cipher type", __func__);
5500 return status;
5501 }
5502 }
5503 else
5504 {
5505 /*Reset previous cipher suite to none*/
5506 status = wlan_hdd_cfg80211_set_cipher(pAdapter, 0, true);
5507 if (0 > status)
5508 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305509 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07005510 "%s: failed to set unicast cipher type", __func__);
5511 return status;
5512 }
5513 }
5514
5515 /*set group cipher type*/
5516 status = wlan_hdd_cfg80211_set_cipher(pAdapter, req->crypto.cipher_group,
5517 false);
5518
5519 if (0 > status)
5520 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305521 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to set mcast cipher type",
Jeff Johnson295189b2012-06-20 16:38:30 -07005522 __func__);
5523 return status;
5524 }
5525
Chet Lanctot186b5732013-03-18 10:26:30 -07005526#ifdef WLAN_FEATURE_11W
5527 pWextState->roamProfile.MFPEnabled = (req->mfp == NL80211_MFP_REQUIRED);
5528#endif
5529
Jeff Johnson295189b2012-06-20 16:38:30 -07005530 /*parse WPA/RSN IE, and set the correspoing fileds in Roam profile*/
5531 if (req->ie_len)
5532 {
5533 status = wlan_hdd_cfg80211_set_ie(pAdapter, req->ie, req->ie_len);
5534 if ( 0 > status)
5535 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305536 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to parse the WPA/RSN IE",
Jeff Johnson295189b2012-06-20 16:38:30 -07005537 __func__);
5538 return status;
5539 }
5540 }
5541
5542 /*incase of WEP set default key information*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305543 if (req->key && req->key_len)
Jeff Johnson295189b2012-06-20 16:38:30 -07005544 {
5545 if ( (WLAN_CIPHER_SUITE_WEP40 == req->crypto.ciphers_pairwise[0])
5546 || (WLAN_CIPHER_SUITE_WEP104 == req->crypto.ciphers_pairwise[0])
5547 )
5548 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305549 if ( IW_AUTH_KEY_MGMT_802_1X
Jeff Johnson295189b2012-06-20 16:38:30 -07005550 == (pWextState->authKeyMgmt & IW_AUTH_KEY_MGMT_802_1X ))
5551 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305552 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Dynamic WEP not supported",
Jeff Johnson295189b2012-06-20 16:38:30 -07005553 __func__);
5554 return -EOPNOTSUPP;
5555 }
5556 else
5557 {
5558 u8 key_len = req->key_len;
5559 u8 key_idx = req->key_idx;
5560
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305561 if ((eCSR_SECURITY_WEP_KEYSIZE_MAX_BYTES >= key_len)
Jeff Johnson295189b2012-06-20 16:38:30 -07005562 && (CSR_MAX_NUM_KEY > key_idx)
5563 )
5564 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305565 hddLog(VOS_TRACE_LEVEL_INFO,
5566 "%s: setting default wep key, key_idx = %hu key_len %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07005567 __func__, key_idx, key_len);
5568 vos_mem_copy(
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305569 &pWextState->roamProfile.Keys.KeyMaterial[key_idx][0],
Jeff Johnson295189b2012-06-20 16:38:30 -07005570 req->key, key_len);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305571 pWextState->roamProfile.Keys.KeyLength[key_idx] =
Jeff Johnson295189b2012-06-20 16:38:30 -07005572 (u8)key_len;
5573 pWextState->roamProfile.Keys.defaultIndex = (u8)key_idx;
5574 }
5575 }
5576 }
5577 }
5578
5579 return status;
5580}
5581
5582/*
5583 * FUNCTION: wlan_hdd_cfg80211_set_privacy
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305584 * This function is used to initialize the security
Jeff Johnson295189b2012-06-20 16:38:30 -07005585 * parameters during connect operation.
5586 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305587static int wlan_hdd_cfg80211_connect( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07005588 struct net_device *ndev,
5589 struct cfg80211_connect_params *req
5590 )
5591{
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305592 int status;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305593 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( ndev );
Jeff Johnson295189b2012-06-20 16:38:30 -07005594 VOS_STATUS exitbmpsStatus = VOS_STATUS_E_INVAL;
5595 hdd_context_t *pHddCtx = NULL;
5596
5597 ENTER();
5598
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305599 hddLog(VOS_TRACE_LEVEL_INFO,
Jeff Johnson295189b2012-06-20 16:38:30 -07005600 "%s: device_mode = %d\n",__func__,pAdapter->device_mode);
5601
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305602 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
5603 status = wlan_hdd_validate_context(pHddCtx);
5604
5605 if (0 != status)
Jeff Johnson295189b2012-06-20 16:38:30 -07005606 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305607 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
5608 "%s: HDD context is not valid", __func__);
5609 return status;
Jeff Johnson295189b2012-06-20 16:38:30 -07005610 }
5611
5612#ifdef WLAN_BTAMP_FEATURE
5613 //Infra connect not supported when AMP traffic is on.
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305614 if( VOS_TRUE == WLANBAP_AmpSessionOn() )
Jeff Johnson295189b2012-06-20 16:38:30 -07005615 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305616 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07005617 "%s: No connection when AMP is on", __func__);
Madan Mohan Koyyalamudicae253a2012-11-06 19:10:35 -08005618 return -ECONNREFUSED;
Jeff Johnson295189b2012-06-20 16:38:30 -07005619 }
5620#endif
5621 /*initialise security parameters*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305622 status = wlan_hdd_cfg80211_set_privacy(pAdapter, req);
Jeff Johnson295189b2012-06-20 16:38:30 -07005623
5624 if ( 0 > status)
5625 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305626 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to set security params",
Jeff Johnson295189b2012-06-20 16:38:30 -07005627 __func__);
5628 return status;
5629 }
5630
5631 //If Device Mode is Station Concurrent Sessions Exit BMps
Jeff Johnsona8a1a482012-12-12 16:49:33 -08005632 //P2P Mode will be taken care in Open/close adapter
Jeff Johnson295189b2012-06-20 16:38:30 -07005633 if((WLAN_HDD_INFRA_STATION == pAdapter->device_mode) &&
5634 (vos_concurrent_sessions_running()))
5635 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305636 exitbmpsStatus = hdd_disable_bmps_imps(pHddCtx, WLAN_HDD_INFRA_STATION);
Jeff Johnson295189b2012-06-20 16:38:30 -07005637 }
5638
Mohit Khanna765234a2012-09-11 15:08:35 -07005639 if ( req->channel )
5640 {
5641 status = wlan_hdd_cfg80211_connect_start(pAdapter, req->ssid,
5642 req->ssid_len, req->bssid,
5643 req->channel->hw_value);
5644 }
5645 else
5646 {
5647 status = wlan_hdd_cfg80211_connect_start(pAdapter, req->ssid,
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305648 req->ssid_len, req->bssid, 0);
Mohit Khanna765234a2012-09-11 15:08:35 -07005649 }
Jeff Johnson295189b2012-06-20 16:38:30 -07005650
5651 if (0 > status)
5652 {
5653 //ReEnable BMPS if disabled
5654 if((VOS_STATUS_SUCCESS == exitbmpsStatus) &&
5655 (NULL != pHddCtx))
5656 {
Gopichand Nakkalaa2fe5b02013-06-06 16:32:28 +05305657 if (pHddCtx->hdd_wlan_suspended)
5658 {
5659 hdd_set_pwrparams(pHddCtx);
5660 }
Jeff Johnson295189b2012-06-20 16:38:30 -07005661 //ReEnable Bmps and Imps back
5662 hdd_enable_bmps_imps(pHddCtx);
5663 }
5664
5665 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: connect failed", __func__);
5666 return status;
5667 }
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305668 pHddCtx->isAmpAllowed = VOS_FALSE;
Jeff Johnson295189b2012-06-20 16:38:30 -07005669 EXIT();
5670 return status;
5671}
5672
5673
5674/*
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05305675 * FUNCTION: wlan_hdd_disconnect
5676 * This function is used to issue a disconnect request to SME
5677 */
5678int wlan_hdd_disconnect( hdd_adapter_t *pAdapter, u16 reason )
5679{
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305680 int status;
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05305681 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305682 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
5683
5684 status = wlan_hdd_validate_context(pHddCtx);
5685
5686 if (0 != status)
5687 {
5688 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
5689 "%s: HDD context is not valid", __func__);
5690 return status;
5691 }
5692
5693 pHddCtx->isAmpAllowed = VOS_TRUE;
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05305694 pHddStaCtx->conn_info.connState = eConnectionState_NotConnected;
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05305695 INIT_COMPLETION(pAdapter->disconnect_comp_var);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305696
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05305697 /*issue disconnect*/
5698 status = sme_RoamDisconnect( WLAN_HDD_GET_HAL_CTX(pAdapter),
5699 pAdapter->sessionId, reason);
5700
5701 if ( 0 != status )
5702 {
5703 hddLog(VOS_TRACE_LEVEL_ERROR,
5704 "%s csrRoamDisconnect failure, returned %d \n",
5705 __func__, (int)status );
5706 return -EINVAL;
5707 }
5708 wait_for_completion_interruptible_timeout(
5709 &pAdapter->disconnect_comp_var,
5710 msecs_to_jiffies(WLAN_WAIT_TIME_DISCONNECT));
5711 /*stop tx queues*/
5712 netif_tx_disable(pAdapter->dev);
5713 netif_carrier_off(pAdapter->dev);
5714 return status;
5715}
5716
5717
5718/*
Jeff Johnson295189b2012-06-20 16:38:30 -07005719 * FUNCTION: wlan_hdd_cfg80211_disconnect
5720 * This function is used to issue a disconnect request to SME
5721 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305722static int wlan_hdd_cfg80211_disconnect( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07005723 struct net_device *dev,
5724 u16 reason
5725 )
5726{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305727 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
5728 tCsrRoamProfile *pRoamProfile =
Jeff Johnson295189b2012-06-20 16:38:30 -07005729 &(WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter))->roamProfile;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305730 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07005731 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Gopichand Nakkala4327a152013-03-04 23:22:42 -08005732 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Gopichand Nakkalaaa353782013-05-17 20:36:22 +05305733#ifdef FEATURE_WLAN_TDLS
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -08005734 tANI_U8 staIdx;
5735#endif
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305736
Jeff Johnson295189b2012-06-20 16:38:30 -07005737 ENTER();
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305738
5739 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %d\n",
Jeff Johnson295189b2012-06-20 16:38:30 -07005740 __func__,pAdapter->device_mode);
5741
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305742 hddLog(VOS_TRACE_LEVEL_INFO, "%s: Disconnect called with reason code %d",
5743 __func__, reason);
Jeff Johnson295189b2012-06-20 16:38:30 -07005744
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305745 status = wlan_hdd_validate_context(pHddCtx);
5746
5747 if (0 != status)
Jeff Johnson295189b2012-06-20 16:38:30 -07005748 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305749 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
5750 "%s: HDD context is not valid", __func__);
5751 return status;
Jeff Johnson295189b2012-06-20 16:38:30 -07005752 }
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305753
Jeff Johnson295189b2012-06-20 16:38:30 -07005754 if (NULL != pRoamProfile)
5755 {
5756 /*issue disconnect request to SME, if station is in connected state*/
5757 if (pHddStaCtx->conn_info.connState == eConnectionState_Associated)
5758 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305759 eCsrRoamDisconnectReason reasonCode =
Jeff Johnson295189b2012-06-20 16:38:30 -07005760 eCSR_DISCONNECT_REASON_UNSPECIFIED;
Gopichand Nakkalaaa353782013-05-17 20:36:22 +05305761 hdd_scaninfo_t *pScanInfo;
Jeff Johnson295189b2012-06-20 16:38:30 -07005762 switch(reason)
5763 {
5764 case WLAN_REASON_MIC_FAILURE:
5765 reasonCode = eCSR_DISCONNECT_REASON_MIC_ERROR;
5766 break;
5767
5768 case WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY:
5769 case WLAN_REASON_DISASSOC_AP_BUSY:
5770 case WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA:
5771 reasonCode = eCSR_DISCONNECT_REASON_DISASSOC;
5772 break;
5773
5774 case WLAN_REASON_PREV_AUTH_NOT_VALID:
5775 case WLAN_REASON_CLASS2_FRAME_FROM_NONAUTH_STA:
5776 reasonCode = eCSR_DISCONNECT_REASON_DEAUTH;
5777 break;
5778
5779 case WLAN_REASON_DEAUTH_LEAVING:
5780 default:
5781 reasonCode = eCSR_DISCONNECT_REASON_UNSPECIFIED;
5782 break;
5783 }
Gopichand Nakkalaaa353782013-05-17 20:36:22 +05305784 pHddStaCtx->conn_info.connState = eConnectionState_NotConnected;
5785 pScanInfo = &pHddCtx->scan_info;
5786 if (pScanInfo->mScanPending)
5787 {
5788 hddLog(VOS_TRACE_LEVEL_INFO, "Disconnect is in progress, "
5789 "Aborting Scan");
5790 hdd_abort_mac_scan(pHddCtx);
5791 }
Jeff Johnson295189b2012-06-20 16:38:30 -07005792
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -08005793#ifdef FEATURE_WLAN_TDLS
5794 /* First clean up the tdls peers if any */
Gopichand Nakkala4327a152013-03-04 23:22:42 -08005795 for (staIdx = 0 ; staIdx < HDD_MAX_NUM_TDLS_STA; staIdx++)
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -08005796 {
Gopichand Nakkala4327a152013-03-04 23:22:42 -08005797 if ((pHddCtx->tdlsConnInfo[staIdx].sessionId == pAdapter->sessionId) &&
5798 (pHddCtx->tdlsConnInfo[staIdx].staId))
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -08005799 {
Hoonki Lee11f7dda2013-02-14 16:55:44 -08005800 uint8 *mac;
Gopichand Nakkala4327a152013-03-04 23:22:42 -08005801 mac = pHddCtx->tdlsConnInfo[staIdx].peerMac.bytes;
Hoonki Lee11f7dda2013-02-14 16:55:44 -08005802 VOS_TRACE(VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07005803 "%s: call sme_DeleteTdlsPeerSta staId %d sessionId %d " MAC_ADDRESS_STR,
Gopichand Nakkala4327a152013-03-04 23:22:42 -08005804 __func__, pHddCtx->tdlsConnInfo[staIdx].staId, pAdapter->sessionId,
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07005805 MAC_ADDR_ARRAY(mac));
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -08005806 sme_DeleteTdlsPeerSta(WLAN_HDD_GET_HAL_CTX(pAdapter),
Gopichand Nakkala4327a152013-03-04 23:22:42 -08005807 pAdapter->sessionId,
5808 mac);
Gopichand Nakkala2a0a1572013-02-10 21:39:16 -08005809 }
5810 }
5811#endif
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05305812 status = wlan_hdd_disconnect(pAdapter, reasonCode);
5813 if ( 0 != status )
Jeff Johnson295189b2012-06-20 16:38:30 -07005814 {
5815 hddLog(VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05305816 "%s wlan_hdd_disconnect failure, returned %d \n",
Jeff Johnson295189b2012-06-20 16:38:30 -07005817 __func__, (int)status );
5818 return -EINVAL;
5819 }
Jeff Johnson295189b2012-06-20 16:38:30 -07005820 }
5821 }
5822 else
5823 {
5824 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: No valid roam profile", __func__);
5825 }
5826
5827 return status;
5828}
5829
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05305830
Jeff Johnson295189b2012-06-20 16:38:30 -07005831/*
5832 * FUNCTION: wlan_hdd_cfg80211_set_privacy_ibss
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305833 * This function is used to initialize the security
Jeff Johnson295189b2012-06-20 16:38:30 -07005834 * settings in IBSS mode.
5835 */
5836static int wlan_hdd_cfg80211_set_privacy_ibss(
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305837 hdd_adapter_t *pAdapter,
Jeff Johnson295189b2012-06-20 16:38:30 -07005838 struct cfg80211_ibss_params *params
5839 )
5840{
5841 int status = 0;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305842 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07005843 eCsrEncryptionType encryptionType = eCSR_ENCRYPT_TYPE_NONE;
5844 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305845
Jeff Johnson295189b2012-06-20 16:38:30 -07005846 ENTER();
5847
5848 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_DISABLED;
5849
5850 if (params->ie_len && ( NULL != params->ie) )
5851 {
Shailender Karmuchi67edd312013-06-18 16:30:48 -07005852 if (wlan_hdd_cfg80211_get_ie_ptr (params->ie,
5853 params->ie_len, WLAN_EID_RSN ))
Jeff Johnson295189b2012-06-20 16:38:30 -07005854 {
5855 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_WPA2;
5856 encryptionType = eCSR_ENCRYPT_TYPE_AES;
5857 }
Shailender Karmuchi67edd312013-06-18 16:30:48 -07005858 else if ( hdd_isWPAIEPresent (params->ie, params->ie_len ))
Jeff Johnson295189b2012-06-20 16:38:30 -07005859 {
Shailender Karmuchi642e9812013-05-30 14:34:49 -07005860 tDot11fIEWPA dot11WPAIE;
5861 tHalHandle halHandle = WLAN_HDD_GET_HAL_CTX(pAdapter);
Shailender Karmuchi67edd312013-06-18 16:30:48 -07005862 u8 *ie;
Shailender Karmuchi642e9812013-05-30 14:34:49 -07005863
Shailender Karmuchi67edd312013-06-18 16:30:48 -07005864 ie = wlan_hdd_cfg80211_get_ie_ptr (params->ie,
5865 params->ie_len, DOT11F_EID_WPA);
5866 if ( NULL != ie )
5867 {
5868 pWextState->wpaVersion = IW_AUTH_WPA_VERSION_WPA;
5869 // Unpack the WPA IE
5870 //Skip past the EID byte and length byte - and four byte WiFi OUI
5871 dot11fUnpackIeWPA((tpAniSirGlobal) halHandle,
5872 &ie[2+4],
5873 ie[1] - 4,
5874 &dot11WPAIE);
5875 /*Extract the multicast cipher, the encType for unicast
5876 cipher for wpa-none is none*/
5877 encryptionType =
5878 hdd_TranslateWPAToCsrEncryptionType(dot11WPAIE.multicast_cipher);
5879 }
Jeff Johnson295189b2012-06-20 16:38:30 -07005880 }
Shailender Karmuchi67edd312013-06-18 16:30:48 -07005881
Jeff Johnson295189b2012-06-20 16:38:30 -07005882 status = wlan_hdd_cfg80211_set_ie(pAdapter, params->ie, params->ie_len);
5883
5884 if (0 > status)
5885 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305886 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to parse WPA/RSN IE",
Jeff Johnson295189b2012-06-20 16:38:30 -07005887 __func__);
5888 return status;
5889 }
5890 }
5891
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305892 pWextState->roamProfile.AuthType.authType[0] =
5893 pHddStaCtx->conn_info.authType =
Jeff Johnson295189b2012-06-20 16:38:30 -07005894 eCSR_AUTH_TYPE_OPEN_SYSTEM;
5895
5896 if (params->privacy)
5897 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305898 /* Security enabled IBSS, At this time there is no information available
5899 * about the security paramters, so initialise the encryption type to
Jeff Johnson295189b2012-06-20 16:38:30 -07005900 * eCSR_ENCRYPT_TYPE_WEP40_STATICKEY.
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305901 * The correct security parameters will be updated later in
Jeff Johnson295189b2012-06-20 16:38:30 -07005902 * wlan_hdd_cfg80211_add_key */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305903 /* Hal expects encryption type to be set inorder
Jeff Johnson295189b2012-06-20 16:38:30 -07005904 *enable privacy bit in beacons */
5905
5906 encryptionType = eCSR_ENCRYPT_TYPE_WEP40_STATICKEY;
5907 }
Shailender Karmuchi642e9812013-05-30 14:34:49 -07005908 VOS_TRACE (VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO_HIGH,
5909 "encryptionType=%d", encryptionType);
Jeff Johnson295189b2012-06-20 16:38:30 -07005910 pHddStaCtx->conn_info.ucEncryptionType = encryptionType;
5911 pWextState->roamProfile.EncryptionType.numEntries = 1;
5912 pWextState->roamProfile.EncryptionType.encryptionType[0] = encryptionType;
Jeff Johnson295189b2012-06-20 16:38:30 -07005913 return status;
5914}
5915
5916/*
5917 * FUNCTION: wlan_hdd_cfg80211_join_ibss
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305918 * This function is used to create/join an IBSS
Jeff Johnson295189b2012-06-20 16:38:30 -07005919 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305920static int wlan_hdd_cfg80211_join_ibss( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07005921 struct net_device *dev,
5922 struct cfg80211_ibss_params *params
5923 )
5924{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305925 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
Jeff Johnson295189b2012-06-20 16:38:30 -07005926 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
5927 tCsrRoamProfile *pRoamProfile;
5928 int status;
5929 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305930 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07005931
5932 ENTER();
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305933
5934 hddLog(VOS_TRACE_LEVEL_INFO,
Jeff Johnson295189b2012-06-20 16:38:30 -07005935 "%s: device_mode = %d\n",__func__,pAdapter->device_mode);
5936
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305937 status = wlan_hdd_validate_context(pHddCtx);
5938
5939 if (0 != status)
Jeff Johnson295189b2012-06-20 16:38:30 -07005940 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05305941 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
5942 "%s: HDD context is not valid", __func__);
5943 return status;
Jeff Johnson295189b2012-06-20 16:38:30 -07005944 }
5945
5946 if (NULL == pWextState)
5947 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305948 hddLog (VOS_TRACE_LEVEL_ERROR, "%s ERROR: Data Storage Corruption\n",
Jeff Johnson295189b2012-06-20 16:38:30 -07005949 __func__);
5950 return -EIO;
5951 }
5952
5953 pRoamProfile = &pWextState->roamProfile;
5954
5955 if ( eCSR_BSS_TYPE_START_IBSS != pRoamProfile->BSSType )
5956 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305957 hddLog (VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07005958 "%s Interface type is not set to IBSS \n", __func__);
5959 return -EINVAL;
5960 }
5961
5962 /* Set Channel */
5963 if (NULL != params->channel)
5964 {
5965 u8 channelNum;
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07005966 v_U32_t numChans = WNI_CFG_VALID_CHANNEL_LIST_LEN;
5967 v_U8_t validChan[WNI_CFG_VALID_CHANNEL_LIST_LEN];
5968 tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
5969 int indx;
Jeff Johnson295189b2012-06-20 16:38:30 -07005970
5971 /* Get channel number */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05305972 channelNum =
Jeff Johnson295189b2012-06-20 16:38:30 -07005973 ieee80211_frequency_to_channel(params->channel->center_freq);
5974
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07005975
5976 if (0 != ccmCfgGetStr(hHal, WNI_CFG_VALID_CHANNEL_LIST,
5977 validChan, &numChans))
Jeff Johnson295189b2012-06-20 16:38:30 -07005978 {
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07005979 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: No valid channel list",
5980 __func__);
5981 return -EOPNOTSUPP;
Jeff Johnson295189b2012-06-20 16:38:30 -07005982 }
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07005983
5984 for (indx = 0; indx < numChans; indx++)
Jeff Johnson295189b2012-06-20 16:38:30 -07005985 {
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07005986 if (channelNum == validChan[indx])
5987 {
5988 break;
5989 }
5990 }
5991 if (indx >= numChans)
5992 {
5993 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Not valid Channel %d",
Jeff Johnson295189b2012-06-20 16:38:30 -07005994 __func__, channelNum);
5995 return -EINVAL;
5996 }
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07005997 /* Set the Operational Channel */
5998 hddLog(VOS_TRACE_LEVEL_INFO_HIGH, "%s: set channel %d", __func__,
5999 channelNum);
6000 pRoamProfile->ChannelInfo.numOfChannels = 1;
6001 pHddStaCtx->conn_info.operationChannel = channelNum;
6002 pRoamProfile->ChannelInfo.ChannelList =
6003 &pHddStaCtx->conn_info.operationChannel;
Jeff Johnson295189b2012-06-20 16:38:30 -07006004 }
6005
6006 /* Initialize security parameters */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306007 status = wlan_hdd_cfg80211_set_privacy_ibss(pAdapter, params);
Jeff Johnson295189b2012-06-20 16:38:30 -07006008 if (status < 0)
6009 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306010 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: failed to set security parameters",
Jeff Johnson295189b2012-06-20 16:38:30 -07006011 __func__);
6012 return status;
6013 }
6014
6015 /* Issue connect start */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306016 status = wlan_hdd_cfg80211_connect_start(pAdapter, params->ssid,
Shailender Karmuchi15cd0672013-05-15 19:50:04 -07006017 params->ssid_len, params->bssid,
6018 pHddStaCtx->conn_info.operationChannel);
Jeff Johnson295189b2012-06-20 16:38:30 -07006019
6020 if (0 > status)
6021 {
6022 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: connect failed", __func__);
6023 return status;
6024 }
6025
6026 return 0;
6027}
6028
6029/*
6030 * FUNCTION: wlan_hdd_cfg80211_leave_ibss
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306031 * This function is used to leave an IBSS
Jeff Johnson295189b2012-06-20 16:38:30 -07006032 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306033static int wlan_hdd_cfg80211_leave_ibss( struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07006034 struct net_device *dev
6035 )
6036{
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306037 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
Jeff Johnson295189b2012-06-20 16:38:30 -07006038 hdd_wext_state_t *pWextState = WLAN_HDD_GET_WEXT_STATE_PTR(pAdapter);
6039 tCsrRoamProfile *pRoamProfile;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306040 hdd_context_t *pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
6041 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07006042
6043 ENTER();
6044
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306045 status = wlan_hdd_validate_context(pHddCtx);
6046
6047 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006048 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306049 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6050 "%s: HDD context is not valid", __func__);
6051 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006052 }
6053
Jeff Johnson295189b2012-06-20 16:38:30 -07006054 hddLog(VOS_TRACE_LEVEL_INFO, "%s: device_mode = %d\n",__func__,pAdapter->device_mode);
6055 if (NULL == pWextState)
6056 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306057 hddLog (VOS_TRACE_LEVEL_ERROR, "%s ERROR: Data Storage Corruption\n",
Jeff Johnson295189b2012-06-20 16:38:30 -07006058 __func__);
6059 return -EIO;
6060 }
6061
6062 pRoamProfile = &pWextState->roamProfile;
6063
6064 /* Issue disconnect only if interface type is set to IBSS */
6065 if (eCSR_BSS_TYPE_START_IBSS != pRoamProfile->BSSType)
6066 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306067 hddLog (VOS_TRACE_LEVEL_ERROR, "%s: BSS Type is not set to IBSS",
Jeff Johnson295189b2012-06-20 16:38:30 -07006068 __func__);
6069 return -EINVAL;
6070 }
6071
6072 /* Issue Disconnect request */
6073 INIT_COMPLETION(pAdapter->disconnect_comp_var);
6074 sme_RoamDisconnect( WLAN_HDD_GET_HAL_CTX(pAdapter), pAdapter->sessionId,
6075 eCSR_DISCONNECT_REASON_IBSS_LEAVE);
6076
6077 return 0;
6078}
6079
6080/*
6081 * FUNCTION: wlan_hdd_cfg80211_set_wiphy_params
6082 * This function is used to set the phy parameters
6083 * (RTS Threshold/FRAG Threshold/Retry Count etc ...)
6084 */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306085static int wlan_hdd_cfg80211_set_wiphy_params(struct wiphy *wiphy,
Jeff Johnson295189b2012-06-20 16:38:30 -07006086 u32 changed)
6087{
6088 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
6089 tHalHandle hHal = pHddCtx->hHal;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306090 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07006091
6092 ENTER();
6093
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306094 status = wlan_hdd_validate_context(pHddCtx);
6095
6096 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006097 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306098 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6099 "%s: HDD context is not valid", __func__);
6100 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006101 }
6102
Jeff Johnson295189b2012-06-20 16:38:30 -07006103 if (changed & WIPHY_PARAM_RTS_THRESHOLD)
6104 {
6105 u16 rts_threshold = (wiphy->rts_threshold == -1) ?
6106 WNI_CFG_RTS_THRESHOLD_STAMAX :
6107 wiphy->rts_threshold;
6108
6109 if ((WNI_CFG_RTS_THRESHOLD_STAMIN > rts_threshold) ||
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306110 (WNI_CFG_RTS_THRESHOLD_STAMAX < rts_threshold))
Jeff Johnson295189b2012-06-20 16:38:30 -07006111 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306112 hddLog(VOS_TRACE_LEVEL_ERROR,
6113 "%s: Invalid RTS Threshold value %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07006114 __func__, rts_threshold);
6115 return -EINVAL;
6116 }
6117
6118 if (0 != ccmCfgSetInt(hHal, WNI_CFG_RTS_THRESHOLD,
6119 rts_threshold, ccmCfgSetCallback,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306120 eANI_BOOLEAN_TRUE))
Jeff Johnson295189b2012-06-20 16:38:30 -07006121 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306122 hddLog(VOS_TRACE_LEVEL_ERROR,
6123 "%s: ccmCfgSetInt failed for rts_threshold value %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07006124 __func__, rts_threshold);
6125 return -EIO;
6126 }
6127
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306128 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: set rts threshold %hu", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07006129 rts_threshold);
6130 }
6131
6132 if (changed & WIPHY_PARAM_FRAG_THRESHOLD)
6133 {
6134 u16 frag_threshold = (wiphy->frag_threshold == -1) ?
6135 WNI_CFG_FRAGMENTATION_THRESHOLD_STAMAX :
6136 wiphy->frag_threshold;
6137
6138 if ((WNI_CFG_FRAGMENTATION_THRESHOLD_STAMIN > frag_threshold)||
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306139 (WNI_CFG_FRAGMENTATION_THRESHOLD_STAMAX < frag_threshold) )
Jeff Johnson295189b2012-06-20 16:38:30 -07006140 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306141 hddLog(VOS_TRACE_LEVEL_ERROR,
6142 "%s: Invalid frag_threshold value %hu", __func__,
Jeff Johnson295189b2012-06-20 16:38:30 -07006143 frag_threshold);
6144 return -EINVAL;
6145 }
6146
6147 if (0 != ccmCfgSetInt(hHal, WNI_CFG_FRAGMENTATION_THRESHOLD,
6148 frag_threshold, ccmCfgSetCallback,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306149 eANI_BOOLEAN_TRUE))
Jeff Johnson295189b2012-06-20 16:38:30 -07006150 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306151 hddLog(VOS_TRACE_LEVEL_ERROR,
6152 "%s: ccmCfgSetInt failed for frag_threshold value %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07006153 __func__, frag_threshold);
6154 return -EIO;
6155 }
6156
6157 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: set frag threshold %hu", __func__,
6158 frag_threshold);
6159 }
6160
6161 if ((changed & WIPHY_PARAM_RETRY_SHORT)
6162 || (changed & WIPHY_PARAM_RETRY_LONG))
6163 {
6164 u8 retry_value = (changed & WIPHY_PARAM_RETRY_SHORT) ?
6165 wiphy->retry_short :
6166 wiphy->retry_long;
6167
6168 if ((WNI_CFG_LONG_RETRY_LIMIT_STAMIN > retry_value) ||
6169 (WNI_CFG_LONG_RETRY_LIMIT_STAMAX < retry_value))
6170 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306171 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid Retry count %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07006172 __func__, retry_value);
6173 return -EINVAL;
6174 }
6175
6176 if (changed & WIPHY_PARAM_RETRY_SHORT)
6177 {
6178 if (0 != ccmCfgSetInt(hHal, WNI_CFG_LONG_RETRY_LIMIT,
6179 retry_value, ccmCfgSetCallback,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306180 eANI_BOOLEAN_TRUE))
Jeff Johnson295189b2012-06-20 16:38:30 -07006181 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306182 hddLog(VOS_TRACE_LEVEL_ERROR,
6183 "%s: ccmCfgSetInt failed for long retry count %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07006184 __func__, retry_value);
6185 return -EIO;
6186 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306187 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: set long retry count %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07006188 __func__, retry_value);
6189 }
6190 else if (changed & WIPHY_PARAM_RETRY_SHORT)
6191 {
6192 if (0 != ccmCfgSetInt(hHal, WNI_CFG_SHORT_RETRY_LIMIT,
6193 retry_value, ccmCfgSetCallback,
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306194 eANI_BOOLEAN_TRUE))
Jeff Johnson295189b2012-06-20 16:38:30 -07006195 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306196 hddLog(VOS_TRACE_LEVEL_ERROR,
6197 "%s: ccmCfgSetInt failed for short retry count %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07006198 __func__, retry_value);
6199 return -EIO;
6200 }
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306201 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: set short retry count %hu",
Jeff Johnson295189b2012-06-20 16:38:30 -07006202 __func__, retry_value);
6203 }
6204 }
6205
6206 return 0;
6207}
6208
6209/*
6210 * FUNCTION: wlan_hdd_cfg80211_set_txpower
6211 * This function is used to set the txpower
6212 */
6213static int wlan_hdd_cfg80211_set_txpower(struct wiphy *wiphy,
6214#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,35)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306215 enum tx_power_setting type,
Jeff Johnson295189b2012-06-20 16:38:30 -07006216#else
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306217 enum nl80211_tx_power_setting type,
Jeff Johnson295189b2012-06-20 16:38:30 -07006218#endif
6219 int dbm)
6220{
6221 hdd_context_t *pHddCtx = (hdd_context_t*) wiphy_priv(wiphy);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306222 tHalHandle hHal = NULL;
Jeff Johnson295189b2012-06-20 16:38:30 -07006223 tSirMacAddr bssid = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF};
6224 tSirMacAddr selfMac = {0xFF,0xFF,0xFF,0xFF,0xFF,0xFF};
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306225 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07006226
6227 ENTER();
6228
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306229 status = wlan_hdd_validate_context(pHddCtx);
6230
6231 if (0 != status)
6232 {
6233 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6234 "%s: HDD context is not valid", __func__);
6235 return status;
6236 }
6237
6238 hHal = pHddCtx->hHal;
6239
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306240 if (0 != ccmCfgSetInt(hHal, WNI_CFG_CURRENT_TX_POWER_LEVEL,
6241 dbm, ccmCfgSetCallback,
6242 eANI_BOOLEAN_TRUE))
Jeff Johnson295189b2012-06-20 16:38:30 -07006243 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306244 hddLog(VOS_TRACE_LEVEL_ERROR,
Jeff Johnson295189b2012-06-20 16:38:30 -07006245 "%s: ccmCfgSetInt failed for tx power %hu", __func__, dbm);
6246 return -EIO;
6247 }
6248
6249 hddLog(VOS_TRACE_LEVEL_INFO_MED, "%s: set tx power level %d dbm", __func__,
6250 dbm);
6251
6252 switch(type)
6253 {
6254 case NL80211_TX_POWER_AUTOMATIC: /*automatically determine transmit power*/
6255 /* Fall through */
6256 case NL80211_TX_POWER_LIMITED: /*limit TX power by the mBm parameter*/
6257 if( sme_SetMaxTxPower(hHal, bssid, selfMac, dbm) != eHAL_STATUS_SUCCESS )
6258 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306259 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Setting maximum tx power failed",
6260 __func__);
6261 return -EIO;
Jeff Johnson295189b2012-06-20 16:38:30 -07006262 }
6263 break;
6264 case NL80211_TX_POWER_FIXED: /*fix TX power to the mBm parameter*/
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306265 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: NL80211_TX_POWER_FIXED not supported",
Jeff Johnson295189b2012-06-20 16:38:30 -07006266 __func__);
6267 return -EOPNOTSUPP;
6268 break;
6269 default:
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306270 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid power setting type %d",
6271 __func__, type);
Jeff Johnson295189b2012-06-20 16:38:30 -07006272 return -EIO;
6273 }
6274
6275 return 0;
6276}
6277
6278/*
6279 * FUNCTION: wlan_hdd_cfg80211_get_txpower
6280 * This function is used to read the txpower
6281 */
6282static int wlan_hdd_cfg80211_get_txpower(struct wiphy *wiphy, int *dbm)
6283{
6284
6285 hdd_adapter_t *pAdapter;
6286 hdd_context_t *pHddCtx = (hdd_context_t*) wiphy_priv(wiphy);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306287 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07006288
Jeff Johnsone7245742012-09-05 17:12:55 -07006289 ENTER();
6290
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306291 status = wlan_hdd_validate_context(pHddCtx);
Jeff Johnson295189b2012-06-20 16:38:30 -07006292
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306293 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006294 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306295 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6296 "%s: HDD context is not valid", __func__);
6297 *dbm = 0;
6298 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006299 }
6300
Jeff Johnson295189b2012-06-20 16:38:30 -07006301 pAdapter = hdd_get_adapter(pHddCtx, WLAN_HDD_INFRA_STATION);
6302 if (NULL == pAdapter)
6303 {
6304 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: Not in station context " ,__func__);
6305 return -ENOENT;
6306 }
6307
6308 wlan_hdd_get_classAstats(pAdapter);
6309 *dbm = pAdapter->hdd_stats.ClassA_stat.max_pwr;
6310
Jeff Johnsone7245742012-09-05 17:12:55 -07006311 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -07006312 return 0;
6313}
6314
6315static int wlan_hdd_cfg80211_get_station(struct wiphy *wiphy, struct net_device *dev,
6316 u8* mac, struct station_info *sinfo)
6317{
6318 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR( dev );
6319 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
6320 int ssidlen = pHddStaCtx->conn_info.SSID.SSID.length;
6321 tANI_U8 rate_flags;
6322
6323 hdd_context_t *pHddCtx = (hdd_context_t*) wiphy_priv(wiphy);
6324 hdd_config_t *pCfg = pHddCtx->cfg_ini;
Jeff Johnson295189b2012-06-20 16:38:30 -07006325
6326 tANI_U8 OperationalRates[CSR_DOT11_SUPPORTED_RATES_MAX];
6327 tANI_U32 ORLeng = CSR_DOT11_SUPPORTED_RATES_MAX;
6328 tANI_U8 ExtendedRates[CSR_DOT11_EXTENDED_SUPPORTED_RATES_MAX];
6329 tANI_U32 ERLeng = CSR_DOT11_EXTENDED_SUPPORTED_RATES_MAX;
6330 tANI_U8 MCSRates[SIZE_OF_BASIC_MCS_SET];
6331 tANI_U32 MCSLeng = SIZE_OF_BASIC_MCS_SET;
6332 tANI_U16 maxRate = 0;
6333 tANI_U16 myRate;
6334 tANI_U16 currentRate = 0;
6335 tANI_U8 maxSpeedMCS = 0;
6336 tANI_U8 maxMCSIdx = 0;
6337 tANI_U8 rateFlag = 1;
6338 tANI_U8 i, j, rssidx;
Madan Mohan Koyyalamudic75be962012-10-18 19:19:03 -07006339 tANI_U16 temp;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306340 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07006341
Leo Chang6f8870f2013-03-26 18:11:36 -07006342#ifdef WLAN_FEATURE_11AC
6343 tANI_U32 vht_mcs_map;
6344 eDataRate11ACMaxMcs vhtMaxMcs;
6345#endif /* WLAN_FEATURE_11AC */
6346
Jeff Johnsone7245742012-09-05 17:12:55 -07006347 ENTER();
6348
Jeff Johnson295189b2012-06-20 16:38:30 -07006349 if ((eConnectionState_Associated != pHddStaCtx->conn_info.connState) ||
6350 (0 == ssidlen))
6351 {
6352 hddLog(VOS_TRACE_LEVEL_INFO, "%s: Not associated or"
6353 " Invalid ssidlen, %d", __func__, ssidlen);
6354 /*To keep GUI happy*/
6355 return 0;
6356 }
6357
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306358 status = wlan_hdd_validate_context(pHddCtx);
6359
6360 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006361 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306362 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6363 "%s: HDD context is not valid", __func__);
6364 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006365 }
6366
Jeff Johnson295189b2012-06-20 16:38:30 -07006367 wlan_hdd_get_rssi(pAdapter, &sinfo->signal);
6368 sinfo->filled |= STATION_INFO_SIGNAL;
6369
Madan Mohan Koyyalamudi4d4d2812012-09-24 14:08:29 -07006370 wlan_hdd_get_station_stats(pAdapter);
Jeff Johnson295189b2012-06-20 16:38:30 -07006371 rate_flags = pAdapter->hdd_stats.ClassA_stat.tx_rate_flags;
6372
6373 //convert to the UI units of 100kbps
6374 myRate = pAdapter->hdd_stats.ClassA_stat.tx_rate * 5;
6375
6376#ifdef LINKSPEED_DEBUG_ENABLED
Leo Chang6f8870f2013-03-26 18:11:36 -07006377 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 -07006378 sinfo->signal,
6379 pCfg->reportMaxLinkSpeed,
6380 myRate,
6381 (int) pCfg->linkSpeedRssiHigh,
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -07006382 (int) pCfg->linkSpeedRssiMid,
6383 (int) pCfg->linkSpeedRssiLow,
Leo Chang6f8870f2013-03-26 18:11:36 -07006384 (int) rate_flags,
6385 (int) pAdapter->hdd_stats.ClassA_stat.mcs_index);
Jeff Johnson295189b2012-06-20 16:38:30 -07006386#endif //LINKSPEED_DEBUG_ENABLED
6387
6388 if (eHDD_LINK_SPEED_REPORT_ACTUAL != pCfg->reportMaxLinkSpeed)
6389 {
6390 // we do not want to necessarily report the current speed
6391 if (eHDD_LINK_SPEED_REPORT_MAX == pCfg->reportMaxLinkSpeed)
6392 {
6393 // report the max possible speed
6394 rssidx = 0;
6395 }
6396 else if (eHDD_LINK_SPEED_REPORT_MAX_SCALED == pCfg->reportMaxLinkSpeed)
6397 {
6398 // report the max possible speed with RSSI scaling
6399 if (sinfo->signal >= pCfg->linkSpeedRssiHigh)
6400 {
6401 // report the max possible speed
6402 rssidx = 0;
6403 }
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -07006404 else if (sinfo->signal >= pCfg->linkSpeedRssiMid)
Jeff Johnson295189b2012-06-20 16:38:30 -07006405 {
6406 // report middle speed
6407 rssidx = 1;
6408 }
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -07006409 else if (sinfo->signal >= pCfg->linkSpeedRssiLow)
6410 {
6411 // report middle speed
6412 rssidx = 2;
6413 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006414 else
6415 {
6416 // report actual speed
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -07006417 rssidx = 3;
Jeff Johnson295189b2012-06-20 16:38:30 -07006418 }
6419 }
6420 else
6421 {
6422 // unknown, treat as eHDD_LINK_SPEED_REPORT_MAX
6423 hddLog(VOS_TRACE_LEVEL_ERROR,
6424 "%s: Invalid value for reportMaxLinkSpeed: %u",
6425 __func__, pCfg->reportMaxLinkSpeed);
6426 rssidx = 0;
6427 }
6428
6429 maxRate = 0;
6430
6431 /* Get Basic Rate Set */
Gopichand Nakkala05ab1322013-02-15 11:28:38 +05306432 if (0 != ccmCfgGetStr(WLAN_HDD_GET_HAL_CTX(pAdapter), WNI_CFG_OPERATIONAL_RATE_SET,
6433 OperationalRates, &ORLeng))
6434 {
6435 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: ccm api returned failure", __func__);
6436 /*To keep GUI happy*/
6437 return 0;
6438 }
6439
Jeff Johnson295189b2012-06-20 16:38:30 -07006440 for (i = 0; i < ORLeng; i++)
6441 {
Jeff Johnsone7245742012-09-05 17:12:55 -07006442 for (j = 0; j < (sizeof(supported_data_rate) / sizeof(supported_data_rate[0])); j ++)
Jeff Johnson295189b2012-06-20 16:38:30 -07006443 {
6444 /* Validate Rate Set */
6445 if (supported_data_rate[j].beacon_rate_index == (OperationalRates[i] & 0x7F))
6446 {
6447 currentRate = supported_data_rate[j].supported_rate[rssidx];
6448 break;
6449 }
6450 }
6451 /* Update MAX rate */
6452 maxRate = (currentRate > maxRate)?currentRate:maxRate;
6453 }
6454
6455 /* Get Extended Rate Set */
Gopichand Nakkala05ab1322013-02-15 11:28:38 +05306456 if (0 != ccmCfgGetStr(WLAN_HDD_GET_HAL_CTX(pAdapter), WNI_CFG_EXTENDED_OPERATIONAL_RATE_SET,
6457 ExtendedRates, &ERLeng))
6458 {
6459 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: ccm api returned failure", __func__);
6460 /*To keep GUI happy*/
6461 return 0;
6462 }
6463
Jeff Johnson295189b2012-06-20 16:38:30 -07006464 for (i = 0; i < ERLeng; i++)
6465 {
Jeff Johnsone7245742012-09-05 17:12:55 -07006466 for (j = 0; j < (sizeof(supported_data_rate) / sizeof(supported_data_rate[0])); j ++)
Jeff Johnson295189b2012-06-20 16:38:30 -07006467 {
6468 if (supported_data_rate[j].beacon_rate_index == (ExtendedRates[i] & 0x7F))
6469 {
6470 currentRate = supported_data_rate[j].supported_rate[rssidx];
6471 break;
6472 }
6473 }
6474 /* Update MAX rate */
6475 maxRate = (currentRate > maxRate)?currentRate:maxRate;
6476 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006477 /* Get MCS Rate Set -- but only if we are connected at MCS
6478 rates or if we are always reporting max speed or if we have
6479 good rssi */
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -07006480 if ((0 == rssidx) && !(rate_flags & eHAL_TX_RATE_LEGACY))
Jeff Johnson295189b2012-06-20 16:38:30 -07006481 {
Gopichand Nakkala05ab1322013-02-15 11:28:38 +05306482 if (0 != ccmCfgGetStr(WLAN_HDD_GET_HAL_CTX(pAdapter), WNI_CFG_CURRENT_MCS_SET,
6483 MCSRates, &MCSLeng))
6484 {
6485 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: ccm api returned failure", __func__);
6486 /*To keep GUI happy*/
6487 return 0;
6488 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006489 rateFlag = 0;
Leo Chang6f8870f2013-03-26 18:11:36 -07006490#ifdef WLAN_FEATURE_11AC
6491 /* VHT80 rate has seperate rate table */
Gopichand Nakkala4c705372013-04-24 13:20:33 +05306492 if (rate_flags & (eHAL_TX_RATE_VHT20|eHAL_TX_RATE_VHT40|eHAL_TX_RATE_VHT80))
Jeff Johnson295189b2012-06-20 16:38:30 -07006493 {
Leo Chang6f8870f2013-03-26 18:11:36 -07006494 ccmCfgGetInt(WLAN_HDD_GET_HAL_CTX(pAdapter), WNI_CFG_VHT_TX_MCS_MAP, &vht_mcs_map);
Gopichand Nakkala4c705372013-04-24 13:20:33 +05306495 vhtMaxMcs = (eDataRate11ACMaxMcs)(vht_mcs_map & DATA_RATE_11AC_MCS_MASK );
Leo Chang6f8870f2013-03-26 18:11:36 -07006496 if (rate_flags & eHAL_TX_RATE_SGI)
Jeff Johnson295189b2012-06-20 16:38:30 -07006497 {
Leo Chang6f8870f2013-03-26 18:11:36 -07006498 rateFlag |= 1;
Jeff Johnson295189b2012-06-20 16:38:30 -07006499 }
Leo Chang6f8870f2013-03-26 18:11:36 -07006500 if (DATA_RATE_11AC_MAX_MCS_7 == vhtMaxMcs)
Jeff Johnson295189b2012-06-20 16:38:30 -07006501 {
Leo Chang6f8870f2013-03-26 18:11:36 -07006502 maxMCSIdx = 7;
6503 }
6504 else if (DATA_RATE_11AC_MAX_MCS_8 == vhtMaxMcs)
6505 {
6506 maxMCSIdx = 8;
6507 }
6508 else if (DATA_RATE_11AC_MAX_MCS_9 == vhtMaxMcs)
6509 {
Gopichand Nakkala4c705372013-04-24 13:20:33 +05306510 //VHT20 is supporting 0~8
6511 if (rate_flags & eHAL_TX_RATE_VHT20)
6512 maxMCSIdx = 8;
6513 else
6514 maxMCSIdx = 9;
Leo Chang6f8870f2013-03-26 18:11:36 -07006515 }
Gopichand Nakkala4c705372013-04-24 13:20:33 +05306516
6517 if (rate_flags & eHAL_TX_RATE_VHT80)
6518 {
6519 currentRate = supported_vht_mcs_rate[pAdapter->hdd_stats.ClassA_stat.mcs_index].supported_VHT80_rate[rateFlag];
6520 maxRate = supported_vht_mcs_rate[maxMCSIdx].supported_VHT80_rate[rateFlag];
6521 }
6522 else if (rate_flags & eHAL_TX_RATE_VHT40)
6523 {
6524 currentRate = supported_vht_mcs_rate[pAdapter->hdd_stats.ClassA_stat.mcs_index].supported_VHT40_rate[rateFlag];
6525 maxRate = supported_vht_mcs_rate[maxMCSIdx].supported_VHT40_rate[rateFlag];
6526 }
6527 else if (rate_flags & eHAL_TX_RATE_VHT20)
6528 {
6529 currentRate = supported_vht_mcs_rate[pAdapter->hdd_stats.ClassA_stat.mcs_index].supported_VHT20_rate[rateFlag];
6530 maxRate = supported_vht_mcs_rate[maxMCSIdx].supported_VHT20_rate[rateFlag];
6531 }
6532
Leo Chang6f8870f2013-03-26 18:11:36 -07006533 maxSpeedMCS = 1;
6534 if (currentRate > maxRate)
6535 {
6536 maxRate = currentRate;
6537 }
Gopichand Nakkala4c705372013-04-24 13:20:33 +05306538
Leo Chang6f8870f2013-03-26 18:11:36 -07006539 }
6540 else
6541#endif /* WLAN_FEATURE_11AC */
6542 {
6543 if (rate_flags & eHAL_TX_RATE_HT40)
6544 {
6545 rateFlag |= 1;
6546 }
6547 if (rate_flags & eHAL_TX_RATE_SGI)
6548 {
6549 rateFlag |= 2;
6550 }
6551
6552 for (i = 0; i < MCSLeng; i++)
6553 {
6554 temp = sizeof(supported_mcs_rate) / sizeof(supported_mcs_rate[0]);
6555 for (j = 0; j < temp; j++)
6556 {
6557 if (supported_mcs_rate[j].beacon_rate_index == MCSRates[i])
6558 {
6559 currentRate = supported_mcs_rate[j].supported_rate[rateFlag];
6560 break;
6561 }
6562 }
6563 if ((j < temp) && (currentRate > maxRate))
6564 {
6565 maxRate = currentRate;
6566 maxSpeedMCS = 1;
6567 maxMCSIdx = supported_mcs_rate[j].beacon_rate_index;
6568 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006569 }
6570 }
6571 }
6572
Gopichand Nakkala4c705372013-04-24 13:20:33 +05306573 else if (!(rate_flags & eHAL_TX_RATE_LEGACY))
6574 {
6575 maxRate = myRate;
6576 maxSpeedMCS = 1;
6577 maxMCSIdx = pAdapter->hdd_stats.ClassA_stat.mcs_index;
6578 }
6579
Jeff Johnson295189b2012-06-20 16:38:30 -07006580 // make sure we report a value at least as big as our current rate
Madan Mohan Koyyalamudi8df78d52012-11-02 12:30:06 -07006581 if (((maxRate < myRate) && (0 == rssidx)) ||
6582 (0 == maxRate))
Jeff Johnson295189b2012-06-20 16:38:30 -07006583 {
6584 maxRate = myRate;
6585 if (rate_flags & eHAL_TX_RATE_LEGACY)
6586 {
6587 maxSpeedMCS = 0;
6588 }
6589 else
6590 {
6591 maxSpeedMCS = 1;
6592 maxMCSIdx = pAdapter->hdd_stats.ClassA_stat.mcs_index;
6593 }
6594 }
6595
Gopichand Nakkala4c705372013-04-24 13:20:33 +05306596 if (rate_flags & eHAL_TX_RATE_LEGACY)
Jeff Johnson295189b2012-06-20 16:38:30 -07006597 {
6598 sinfo->txrate.legacy = maxRate;
6599#ifdef LINKSPEED_DEBUG_ENABLED
6600 pr_info("Reporting legacy rate %d\n", sinfo->txrate.legacy);
6601#endif //LINKSPEED_DEBUG_ENABLED
6602 }
6603 else
6604 {
6605 sinfo->txrate.mcs = maxMCSIdx;
Leo Chang6f8870f2013-03-26 18:11:36 -07006606#ifdef WLAN_FEATURE_11AC
6607 sinfo->txrate.nss = 1;
6608 if (rate_flags & eHAL_TX_RATE_VHT80)
6609 {
6610 sinfo->txrate.flags |= RATE_INFO_FLAGS_VHT_MCS;
Gopichand Nakkala4c705372013-04-24 13:20:33 +05306611 sinfo->txrate.flags |= RATE_INFO_FLAGS_80_MHZ_WIDTH;
Leo Chang6f8870f2013-03-26 18:11:36 -07006612 }
Gopichand Nakkala4c705372013-04-24 13:20:33 +05306613 else if (rate_flags & eHAL_TX_RATE_VHT40)
Leo Chang6f8870f2013-03-26 18:11:36 -07006614 {
Gopichand Nakkala4c705372013-04-24 13:20:33 +05306615 sinfo->txrate.flags |= RATE_INFO_FLAGS_VHT_MCS;
6616 sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
6617 }
6618 else if (rate_flags & eHAL_TX_RATE_VHT20)
6619 {
6620 sinfo->txrate.flags |= RATE_INFO_FLAGS_VHT_MCS;
6621 }
6622#endif /* WLAN_FEATURE_11AC */
6623 if (rate_flags & (eHAL_TX_RATE_HT20 | eHAL_TX_RATE_HT40))
6624 {
6625 sinfo->txrate.flags |= RATE_INFO_FLAGS_MCS;
6626 if (rate_flags & eHAL_TX_RATE_HT40)
6627 {
6628 sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
6629 }
Leo Chang6f8870f2013-03-26 18:11:36 -07006630 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006631 if (rate_flags & eHAL_TX_RATE_SGI)
6632 {
6633 sinfo->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
6634 }
Gopichand Nakkala4c705372013-04-24 13:20:33 +05306635
Jeff Johnson295189b2012-06-20 16:38:30 -07006636#ifdef LINKSPEED_DEBUG_ENABLED
6637 pr_info("Reporting MCS rate %d flags %x\n",
6638 sinfo->txrate.mcs,
6639 sinfo->txrate.flags );
6640#endif //LINKSPEED_DEBUG_ENABLED
6641 }
6642 }
6643 else
6644 {
6645 // report current rate instead of max rate
6646
6647 if (rate_flags & eHAL_TX_RATE_LEGACY)
6648 {
6649 //provide to the UI in units of 100kbps
6650 sinfo->txrate.legacy = myRate;
6651#ifdef LINKSPEED_DEBUG_ENABLED
6652 pr_info("Reporting actual legacy rate %d\n", sinfo->txrate.legacy);
6653#endif //LINKSPEED_DEBUG_ENABLED
6654 }
6655 else
6656 {
6657 //must be MCS
6658 sinfo->txrate.mcs = pAdapter->hdd_stats.ClassA_stat.mcs_index;
Leo Chang6f8870f2013-03-26 18:11:36 -07006659#ifdef WLAN_FEATURE_11AC
6660 sinfo->txrate.nss = 1;
6661 if (rate_flags & eHAL_TX_RATE_VHT80)
6662 {
6663 sinfo->txrate.flags |= RATE_INFO_FLAGS_VHT_MCS;
6664 }
6665 else
6666#endif /* WLAN_FEATURE_11AC */
6667 {
6668 sinfo->txrate.flags |= RATE_INFO_FLAGS_MCS;
6669 }
Jeff Johnson295189b2012-06-20 16:38:30 -07006670 if (rate_flags & eHAL_TX_RATE_SGI)
6671 {
6672 sinfo->txrate.flags |= RATE_INFO_FLAGS_SHORT_GI;
6673 }
6674 if (rate_flags & eHAL_TX_RATE_HT40)
6675 {
6676 sinfo->txrate.flags |= RATE_INFO_FLAGS_40_MHZ_WIDTH;
6677 }
Leo Chang6f8870f2013-03-26 18:11:36 -07006678#ifdef WLAN_FEATURE_11AC
6679 else if (rate_flags & eHAL_TX_RATE_VHT80)
6680 {
6681 sinfo->txrate.flags |= RATE_INFO_FLAGS_80_MHZ_WIDTH;
6682 }
6683#endif /* WLAN_FEATURE_11AC */
Jeff Johnson295189b2012-06-20 16:38:30 -07006684#ifdef LINKSPEED_DEBUG_ENABLED
6685 pr_info("Reporting actual MCS rate %d flags %x\n",
6686 sinfo->txrate.mcs,
6687 sinfo->txrate.flags );
6688#endif //LINKSPEED_DEBUG_ENABLED
6689 }
6690 }
6691 sinfo->filled |= STATION_INFO_TX_BITRATE;
6692
Madan Mohan Koyyalamudi4d4d2812012-09-24 14:08:29 -07006693 sinfo->tx_packets =
6694 pAdapter->hdd_stats.summary_stat.tx_frm_cnt[0] +
6695 pAdapter->hdd_stats.summary_stat.tx_frm_cnt[1] +
6696 pAdapter->hdd_stats.summary_stat.tx_frm_cnt[2] +
6697 pAdapter->hdd_stats.summary_stat.tx_frm_cnt[3];
6698
6699 sinfo->tx_retries =
6700 pAdapter->hdd_stats.summary_stat.retry_cnt[0] +
6701 pAdapter->hdd_stats.summary_stat.retry_cnt[1] +
6702 pAdapter->hdd_stats.summary_stat.retry_cnt[2] +
6703 pAdapter->hdd_stats.summary_stat.retry_cnt[3];
6704
6705 sinfo->tx_failed =
6706 pAdapter->hdd_stats.summary_stat.fail_cnt[0] +
6707 pAdapter->hdd_stats.summary_stat.fail_cnt[1] +
6708 pAdapter->hdd_stats.summary_stat.fail_cnt[2] +
6709 pAdapter->hdd_stats.summary_stat.fail_cnt[3];
6710
6711 sinfo->filled |=
6712 STATION_INFO_TX_PACKETS |
6713 STATION_INFO_TX_RETRIES |
6714 STATION_INFO_TX_FAILED;
6715
6716 EXIT();
6717 return 0;
Jeff Johnson295189b2012-06-20 16:38:30 -07006718}
6719
6720static int wlan_hdd_cfg80211_set_power_mgmt(struct wiphy *wiphy,
Sameer Thalappilc9f26e92013-06-07 10:11:06 -07006721 struct net_device *dev, bool mode, int timeout)
Jeff Johnson295189b2012-06-20 16:38:30 -07006722{
6723 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Gopichand Nakkala20c4c042013-04-19 22:08:55 +05306724 hdd_context_t *pHddCtx;
Jeff Johnson295189b2012-06-20 16:38:30 -07006725 VOS_STATUS vos_status;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306726 int status;
Jeff Johnson295189b2012-06-20 16:38:30 -07006727
Jeff Johnsone7245742012-09-05 17:12:55 -07006728 ENTER();
6729
Jeff Johnson295189b2012-06-20 16:38:30 -07006730 if (NULL == pAdapter)
6731 {
6732 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Adapter is NULL\n", __func__);
6733 return -ENODEV;
6734 }
6735
Gopichand Nakkala20c4c042013-04-19 22:08:55 +05306736 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306737 status = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkala20c4c042013-04-19 22:08:55 +05306738
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306739 if (0 != status)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306740 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306741 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6742 "%s: HDD context is not valid", __func__);
6743 return status;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306744 }
6745
Gopichand Nakkala20c4c042013-04-19 22:08:55 +05306746 if ((DRIVER_POWER_MODE_AUTO == !mode) &&
6747 (TRUE == pHddCtx->hdd_wlan_suspended) &&
6748 (pHddCtx->cfg_ini->fhostArpOffload) &&
6749 (eConnectionState_Associated ==
6750 (WLAN_HDD_GET_STATION_CTX_PTR(pAdapter))->conn_info.connState))
6751 {
Gopichand Nakkalab03e8082013-05-30 18:09:25 +05306752 vos_status = hdd_conf_arp_offload(pAdapter, TRUE);
Gopichand Nakkala20c4c042013-04-19 22:08:55 +05306753 if (!VOS_IS_STATUS_SUCCESS(vos_status))
6754 {
6755 hddLog(VOS_TRACE_LEVEL_INFO,
6756 "%s:Failed to enable ARPOFFLOAD Feature %d\n",
6757 __func__, vos_status);
6758 }
6759 }
6760
Jeff Johnson295189b2012-06-20 16:38:30 -07006761 /**The get power cmd from the supplicant gets updated by the nl only
6762 *on successful execution of the function call
6763 *we are oppositely mapped w.r.t mode in the driver
6764 **/
6765 vos_status = wlan_hdd_enter_bmps(pAdapter, !mode);
6766
Jeff Johnsone7245742012-09-05 17:12:55 -07006767 EXIT();
Jeff Johnson295189b2012-06-20 16:38:30 -07006768 if (VOS_STATUS_E_FAILURE == vos_status)
6769 {
6770 return -EINVAL;
6771 }
6772 return 0;
6773}
6774
6775
6776#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
6777static int wlan_hdd_set_default_mgmt_key(struct wiphy *wiphy,
6778 struct net_device *netdev,
6779 u8 key_index)
6780{
Jeff Johnsone7245742012-09-05 17:12:55 -07006781 ENTER();
Jeff Johnson295189b2012-06-20 16:38:30 -07006782 return 0;
6783}
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306784#endif //LINUX_VERSION_CODE
Jeff Johnson295189b2012-06-20 16:38:30 -07006785
6786#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
6787static int wlan_hdd_set_txq_params(struct wiphy *wiphy,
6788 struct net_device *dev,
6789 struct ieee80211_txq_params *params)
6790{
Jeff Johnsone7245742012-09-05 17:12:55 -07006791 ENTER();
Jeff Johnson295189b2012-06-20 16:38:30 -07006792 return 0;
6793}
6794#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
6795static int wlan_hdd_set_txq_params(struct wiphy *wiphy,
6796 struct ieee80211_txq_params *params)
6797{
Jeff Johnsone7245742012-09-05 17:12:55 -07006798 ENTER();
Jeff Johnson295189b2012-06-20 16:38:30 -07006799 return 0;
6800}
6801#endif //LINUX_VERSION_CODE
6802
6803static int wlan_hdd_cfg80211_del_station(struct wiphy *wiphy,
6804 struct net_device *dev, u8 *mac)
6805{
6806 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306807 hdd_context_t *pHddCtx;
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -08006808 VOS_STATUS vos_status;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306809 int status;
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -08006810 v_U8_t staId;
Jeff Johnson295189b2012-06-20 16:38:30 -07006811
Jeff Johnsone7245742012-09-05 17:12:55 -07006812 ENTER();
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306813 if ( NULL == pAdapter )
Jeff Johnson295189b2012-06-20 16:38:30 -07006814 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306815 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid Adapter" ,__func__);
Jeff Johnson295189b2012-06-20 16:38:30 -07006816 return -EINVAL;
6817 }
6818
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306819 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
6820 status = wlan_hdd_validate_context(pHddCtx);
Jeff Johnson295189b2012-06-20 16:38:30 -07006821
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306822 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006823 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306824 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6825 "%s: HDD context is not valid", __func__);
6826 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006827 }
6828
Jeff Johnson295189b2012-06-20 16:38:30 -07006829 if ( (WLAN_HDD_SOFTAP == pAdapter->device_mode)
Jeff Johnson295189b2012-06-20 16:38:30 -07006830 || (WLAN_HDD_P2P_GO == pAdapter->device_mode)
Jeff Johnson295189b2012-06-20 16:38:30 -07006831 )
6832 {
6833 if( NULL == mac )
6834 {
6835 v_U16_t i;
6836 for(i = 0; i < WLAN_MAX_STA_COUNT; i++)
6837 {
6838 if(pAdapter->aStaInfo[i].isUsed)
6839 {
6840 u8 *macAddr = pAdapter->aStaInfo[i].macAddrSTA.bytes;
6841 hddLog(VOS_TRACE_LEVEL_INFO,
6842 "%s: Delete STA with MAC::"
6843 "%02x:%02x:%02x:%02x:%02x:%02x",
6844 __func__,
6845 macAddr[0], macAddr[1], macAddr[2],
6846 macAddr[3], macAddr[4], macAddr[5]);
6847 hdd_softap_sta_deauth(pAdapter, macAddr);
6848 }
6849 }
6850 }
6851 else
6852 {
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -08006853
6854 vos_status = hdd_softap_GetStaId(pAdapter,(v_MACADDR_t *)mac, &staId);
6855 if (!VOS_IS_STATUS_SUCCESS(vos_status))
6856 {
6857 hddLog(VOS_TRACE_LEVEL_INFO,
6858 "%s: Skip this DEL STA as this is not used::"
6859 "%02x:%02x:%02x:%02x:%02x:%02x",
6860 __func__,
6861 mac[0], mac[1], mac[2],
6862 mac[3], mac[4], mac[5]);
6863 return -ENOENT;
6864 }
6865
6866 if( pAdapter->aStaInfo[staId].isDeauthInProgress == TRUE)
6867 {
6868 hddLog(VOS_TRACE_LEVEL_INFO,
6869 "%s: Skip this DEL STA as deauth is in progress::"
6870 "%02x:%02x:%02x:%02x:%02x:%02x",
6871 __func__,
6872 mac[0], mac[1], mac[2],
6873 mac[3], mac[4], mac[5]);
6874 return -ENOENT;
6875 }
6876
6877 pAdapter->aStaInfo[staId].isDeauthInProgress = TRUE;
6878
Jeff Johnson295189b2012-06-20 16:38:30 -07006879 hddLog(VOS_TRACE_LEVEL_INFO,
6880 "%s: Delete STA with MAC::"
6881 "%02x:%02x:%02x:%02x:%02x:%02x",
6882 __func__,
6883 mac[0], mac[1], mac[2],
6884 mac[3], mac[4], mac[5]);
Madan Mohan Koyyalamudicd784992013-01-11 15:30:36 -08006885
6886 vos_status = hdd_softap_sta_deauth(pAdapter, mac);
6887 if (!VOS_IS_STATUS_SUCCESS(vos_status))
6888 {
6889 pAdapter->aStaInfo[staId].isDeauthInProgress = FALSE;
6890 hddLog(VOS_TRACE_LEVEL_INFO,
6891 "%s: STA removal failed for ::"
6892 "%02x:%02x:%02x:%02x:%02x:%02x",
6893 __func__,
6894 mac[0], mac[1], mac[2],
6895 mac[3], mac[4], mac[5]);
6896 return -ENOENT;
6897 }
6898
Jeff Johnson295189b2012-06-20 16:38:30 -07006899 }
6900 }
6901
6902 EXIT();
6903
6904 return 0;
6905}
6906
Hoonki Lee11f7dda2013-02-14 16:55:44 -08006907static int wlan_hdd_cfg80211_add_station(struct wiphy *wiphy,
6908 struct net_device *dev, u8 *mac, struct station_parameters *params)
6909{
Gopichand Nakkalab977a972013-02-18 19:15:09 -08006910 int status = -EPERM;
Hoonki Lee11f7dda2013-02-14 16:55:44 -08006911#ifdef FEATURE_WLAN_TDLS
6912 u32 mask, set;
Hoonki Lee11f7dda2013-02-14 16:55:44 -08006913 ENTER();
Mohit Khanna698ba2a2012-12-04 15:08:18 -08006914 mask = params->sta_flags_mask;
6915
6916 set = params->sta_flags_set;
6917
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07006918#ifdef WLAN_FEATURE_TDLS_DEBUG
6919 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6920 "%s: mask 0x%x set 0x%x " MAC_ADDRESS_STR,
6921 __func__, mask, set, MAC_ADDR_ARRAY(mac));
6922#endif
Mohit Khanna698ba2a2012-12-04 15:08:18 -08006923
6924 if (mask & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
6925 if (set & BIT(NL80211_STA_FLAG_TDLS_PEER)) {
Gopichand Nakkala681989c2013-03-06 22:27:48 -08006926 status = wlan_hdd_tdls_add_station(wiphy, dev, mac, 0, NULL);
Mohit Khanna698ba2a2012-12-04 15:08:18 -08006927 }
6928 }
6929#endif
Gopichand Nakkalab977a972013-02-18 19:15:09 -08006930 return status;
Jeff Johnson295189b2012-06-20 16:38:30 -07006931}
6932
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006933
6934#ifdef FEATURE_WLAN_LFR
6935static int wlan_hdd_cfg80211_set_pmksa(struct wiphy *wiphy, struct net_device *dev,
Jeff Johnsond13512a2012-07-17 11:42:19 -07006936 struct cfg80211_pmksa *pmksa)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006937{
6938#define MAX_PMKSAIDS_IN_CACHE 8
6939 static tPmkidCacheInfo PMKIDCache[MAX_PMKSAIDS_IN_CACHE]; // HDD Local cache
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306940 static tANI_U32 i; // HDD Local Cache index
6941 tANI_U32 j=0;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006942 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
6943 tHalHandle halHandle;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306944 eHalStatus result;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306945 int status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006946 tANI_U8 BSSIDMatched = 0;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306947 hdd_context_t *pHddCtx;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306948
Jeff Johnsone7245742012-09-05 17:12:55 -07006949 ENTER();
6950
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306951 // Validate pAdapter
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306952 if ( NULL == pAdapter )
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006953 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306954 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid Adapter" ,__func__);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006955 return -EINVAL;
6956 }
6957
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306958 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
6959 status = wlan_hdd_validate_context(pHddCtx);
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006960
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306961 if (0 != status)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006962 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05306963 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
6964 "%s: HDD context is not valid", __func__);
6965 return status;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006966 }
6967
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306968 // Retrieve halHandle
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006969 halHandle = WLAN_HDD_GET_HAL_CTX(pAdapter);
6970
6971 for (j = 0; j < i; j++)
6972 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306973 if(vos_mem_compare(PMKIDCache[j].BSSID,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006974 pmksa->bssid, WNI_CFG_BSSID_LEN))
6975 {
6976 /* BSSID matched previous entry. Overwrite it. */
6977 BSSIDMatched = 1;
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306978 vos_mem_copy(PMKIDCache[j].BSSID,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006979 pmksa->bssid, WNI_CFG_BSSID_LEN);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306980 vos_mem_copy(PMKIDCache[j].PMKID,
6981 pmksa->pmkid,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006982 CSR_RSN_PMKID_SIZE);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306983 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: Reusing cache entry %d.",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07006984 __func__, j );
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006985 dump_bssid(pmksa->bssid);
6986 dump_pmkid(halHandle, pmksa->pmkid);
6987 break;
6988 }
6989 }
6990
Madan Mohan Koyyalamudic4b317d2012-10-18 19:43:08 -07006991 /* Check we compared all entries,if then take the first slot now */
6992 if(j == MAX_PMKSAIDS_IN_CACHE) i=0;
6993
Jeff Johnson04dd8a82012-06-29 20:41:40 -07006994 if (!BSSIDMatched)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05306995 {
6996 // Now, we DON'T have a BSSID match, so take a new entry in the cache.
6997 vos_mem_copy(PMKIDCache[i].BSSID,
6998 pmksa->bssid, ETHER_ADDR_LEN);
6999 vos_mem_copy(PMKIDCache[i].PMKID,
7000 pmksa->pmkid,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07007001 CSR_RSN_PMKID_SIZE);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307002 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: Adding a new cache entry %d.",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07007003 __func__, i );
Jeff Johnson04dd8a82012-06-29 20:41:40 -07007004 dump_bssid(pmksa->bssid);
7005 dump_pmkid(halHandle, pmksa->pmkid);
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307006 // Increment the HDD Local Cache index
Jeff Johnson04dd8a82012-06-29 20:41:40 -07007007 // The "i=0" doesn't work for the call to sme_RoamSetPMKIDCache() - LFR FIXME
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307008 if (i<=(MAX_PMKSAIDS_IN_CACHE-1)) i++; else i=0;
Jeff Johnson04dd8a82012-06-29 20:41:40 -07007009 }
7010
7011
7012 // Calling csrRoamSetPMKIDCache to configure the PMKIDs into the cache
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307013 //hddLog(LOG1, FL("%s: Calling csrRoamSetPMKIDCache with %d cache entries."),
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07007014 // __func__, i );
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307015 hddLog(VOS_TRACE_LEVEL_FATAL, "%s: Calling csrRoamSetPMKIDCache with %d cache entries.",
Madan Mohan Koyyalamudi87054ba2012-11-02 13:24:12 -07007016 __func__, i );
Jeff Johnson04dd8a82012-06-29 20:41:40 -07007017 // Finally set the PMKSA ID Cache in CSR
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307018 result = sme_RoamSetPMKIDCache(halHandle,pAdapter->sessionId,
7019 PMKIDCache,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07007020 i );
7021 return 0;
7022}
7023
7024
7025static int wlan_hdd_cfg80211_del_pmksa(struct wiphy *wiphy, struct net_device *dev,
Jeff Johnsond13512a2012-07-17 11:42:19 -07007026 struct cfg80211_pmksa *pmksa)
Jeff Johnson04dd8a82012-06-29 20:41:40 -07007027{
Jeff Johnsone7245742012-09-05 17:12:55 -07007028 ENTER();
Jeff Johnson04dd8a82012-06-29 20:41:40 -07007029 // TODO: Implement this later.
7030 return 0;
7031}
7032
7033static int wlan_hdd_cfg80211_flush_pmksa(struct wiphy *wiphy, struct net_device *dev)
7034{
Jeff Johnsone7245742012-09-05 17:12:55 -07007035 ENTER();
Jeff Johnson04dd8a82012-06-29 20:41:40 -07007036 // TODO: Implement this later.
7037 return 0;
7038}
7039#endif
7040
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07007041#if defined(WLAN_FEATURE_VOWIFI_11R) && defined(KERNEL_SUPPORT_11R_CFG80211)
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307042static int wlan_hdd_cfg80211_update_ft_ies(struct wiphy *wiphy,
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07007043 struct net_device *dev, struct cfg80211_update_ft_ies_params *ftie)
7044{
7045 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
7046 hdd_station_ctx_t *pHddStaCtx;
7047
7048 if (NULL == pAdapter)
7049 {
7050 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Adapter is NULL\n", __func__);
7051 return -ENODEV;
7052 }
7053
7054 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
7055
7056 // Added for debug on reception of Re-assoc Req.
7057 if (eConnectionState_Associated != pHddStaCtx->conn_info.connState)
7058 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307059 hddLog(LOGE, FL("Called with Ie of length = %d when not associated\n"),
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07007060 ftie->ie_len);
7061 hddLog(LOGE, FL("Should be Re-assoc Req IEs\n"));
7062 }
7063
7064#ifdef WLAN_FEATURE_VOWIFI_11R_DEBUG
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307065 hddLog(LOGE, FL("%s called with Ie of length = %d\n"), __func__,
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07007066 ftie->ie_len);
7067#endif
7068
7069 // Pass the received FT IEs to SME
Gopichand Nakkala356fb102013-03-06 12:34:04 +05307070 sme_SetFTIEs( WLAN_HDD_GET_HAL_CTX(pAdapter), pAdapter->sessionId,
7071 (const u8 *)ftie->ie,
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07007072 ftie->ie_len);
7073 return 0;
7074}
7075#endif
Jeff Johnson04dd8a82012-06-29 20:41:40 -07007076
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05307077#ifdef FEATURE_WLAN_SCAN_PNO
7078
7079void hdd_cfg80211_sched_scan_done_callback(void *callbackContext,
7080 tSirPrefNetworkFoundInd *pPrefNetworkFoundInd)
7081{
7082 int ret;
7083 hdd_adapter_t* pAdapter = (hdd_adapter_t*)callbackContext;
7084 hdd_context_t *pHddCtx;
7085
7086 if (NULL == pAdapter)
7087 {
7088 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
7089 "%s: HDD adapter is Null", __func__);
7090 return ;
7091 }
7092
7093 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
7094 if (NULL == pHddCtx)
7095 {
7096 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7097 "%s: HDD context is Null!!!", __func__);
7098 return ;
7099 }
7100
7101 ret = wlan_hdd_cfg80211_update_bss(pHddCtx->wiphy, pAdapter);
7102
7103 if (0 > ret)
7104 hddLog(VOS_TRACE_LEVEL_INFO, "%s: NO SCAN result", __func__);
7105
7106 cfg80211_sched_scan_results(pHddCtx->wiphy);
7107}
7108
7109/*
7110 * FUNCTION: wlan_hdd_cfg80211_sched_scan_start
7111 * NL interface to enable PNO
7112 */
7113static int wlan_hdd_cfg80211_sched_scan_start(struct wiphy *wiphy,
7114 struct net_device *dev, struct cfg80211_sched_scan_request *request)
7115{
7116 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
7117 tpSirPNOScanReq pPnoRequest = NULL;
7118 hdd_context_t *pHddCtx;
7119 tHalHandle hHal;
7120 v_U32_t i, indx, num_ch;
7121 u8 valid_ch[WNI_CFG_VALID_CHANNEL_LIST_LEN];
7122 u8 channels_allowed[WNI_CFG_VALID_CHANNEL_LIST_LEN];
7123 v_U32_t num_channels_allowed = WNI_CFG_VALID_CHANNEL_LIST_LEN;
7124 eHalStatus status = eHAL_STATUS_FAILURE;
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05307125 int result;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05307126
7127 if (NULL == pAdapter)
7128 {
7129 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
7130 "%s: HDD adapter is Null", __func__);
7131 return -ENODEV;
7132 }
7133
7134 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05307135 result = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05307136
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05307137 if (0 != result)
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05307138 {
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05307139 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7140 "%s: HDD context is not valid", __func__);
7141 return result;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05307142 }
7143
7144 hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
7145 if (NULL == hHal)
7146 {
7147 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7148 "%s: HAL context is Null!!!", __func__);
7149 return -EAGAIN;
7150 }
7151
7152 pPnoRequest = (tpSirPNOScanReq) vos_mem_malloc(sizeof (tSirPNOScanReq));
7153 if (NULL == pPnoRequest)
7154 {
7155 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
7156 "%s: vos_mem_malloc failed", __func__);
7157 return -ENODEV;
7158 }
7159
7160 pPnoRequest->enable = 1; /*Enable PNO */
7161 pPnoRequest->ucNetworksCount = request->n_match_sets;
7162
7163 if (( !pPnoRequest->ucNetworksCount ) ||
7164 ( pPnoRequest->ucNetworksCount > SIR_PNO_MAX_SUPP_NETWORKS ))
7165 {
7166 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7167 "Network input is not correct");
7168 goto error;
7169 }
7170
7171 if ( SIR_PNO_MAX_NETW_CHANNELS_EX < request->n_channels )
7172 {
7173 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7174 "Incorrect number of channels");
7175 goto error;
7176 }
7177
7178 /* Framework provides one set of channels(all)
7179 * common for all saved profile */
7180 if (0 != ccmCfgGetStr(hHal, WNI_CFG_VALID_CHANNEL_LIST,
7181 channels_allowed, &num_channels_allowed))
7182 {
7183 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7184 "%s: failed to get valid channel list", __func__);
7185 goto error;
7186 }
7187 /* Checking each channel against allowed channel list */
7188 num_ch = 0;
7189 for (i = 0; i < request->n_channels; i++)
7190 {
7191 for (indx = 0; indx < num_channels_allowed; indx++)
7192 {
7193 if (request->channels[i]->hw_value == channels_allowed[indx])
7194 {
7195 valid_ch[num_ch++] = request->channels[i]->hw_value;
7196 break ;
7197 }
7198 }
7199 }
7200
7201 /* Filling per profile params */
7202 for (i = 0; i < pPnoRequest->ucNetworksCount; i++)
7203 {
7204 pPnoRequest->aNetworks[i].ssId.length =
7205 request->match_sets[i].ssid.ssid_len;
7206
7207 if (( 0 == pPnoRequest->aNetworks[i].ssId.length ) ||
7208 ( pPnoRequest->aNetworks[i].ssId.length > 32 ) )
7209 {
7210 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7211 "SSID Len %d is not correct for network %d",
7212 pPnoRequest->aNetworks[i].ssId.length, i);
7213 goto error;
7214 }
7215
7216 memcpy(pPnoRequest->aNetworks[i].ssId.ssId,
7217 request->match_sets[i].ssid.ssid,
7218 request->match_sets[i].ssid.ssid_len);
7219 pPnoRequest->aNetworks[i].authentication = 0; /*eAUTH_TYPE_ANY*/
7220 pPnoRequest->aNetworks[i].encryption = 0; /*eED_ANY*/
7221 pPnoRequest->aNetworks[i].bcastNetwType = 0; /*eBCAST_UNKNOWN*/
7222
7223 /*Copying list of valid channel into request */
7224 memcpy(pPnoRequest->aNetworks[i].aChannels, valid_ch, num_ch);
7225 pPnoRequest->aNetworks[i].ucChannelCount = num_ch;
7226
7227 pPnoRequest->aNetworks[i].rssiThreshold = 0; //Default value
7228 }
7229
7230 /* framework provides interval in ms */
7231 pPnoRequest->scanTimers.ucScanTimersCount = 1;
7232 pPnoRequest->scanTimers.aTimerValues[0].uTimerValue =
7233 (request->interval)/1000;
7234 pPnoRequest->scanTimers.aTimerValues[0].uTimerRepeat = 0;
7235 pPnoRequest->modePNO = SIR_PNO_MODE_ON_SUSPEND;
7236
7237 status = sme_SetPreferredNetworkList(WLAN_HDD_GET_HAL_CTX(pAdapter),
7238 pPnoRequest, pAdapter->sessionId,
7239 hdd_cfg80211_sched_scan_done_callback, pAdapter);
7240 if (eHAL_STATUS_SUCCESS != status)
7241 {
7242 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7243 "Failed to enable PNO");
7244 goto error;
7245 }
7246
7247error:
7248 vos_mem_free(pPnoRequest);
7249 return status;
7250}
7251
7252/*
7253 * FUNCTION: wlan_hdd_cfg80211_sched_scan_stop
7254 * NL interface to disable PNO
7255 */
7256static int wlan_hdd_cfg80211_sched_scan_stop(struct wiphy *wiphy,
7257 struct net_device *dev)
7258{
7259 eHalStatus status = eHAL_STATUS_FAILURE;
7260 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
7261 hdd_context_t *pHddCtx;
7262 tHalHandle hHal;
7263 tpSirPNOScanReq pPnoRequest = NULL;
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05307264 int result;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05307265
7266 ENTER();
7267
7268 if (NULL == pAdapter)
7269 {
7270 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
7271 "%s: HDD adapter is Null", __func__);
7272 return -ENODEV;
7273 }
7274
7275 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05307276 result = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05307277
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05307278 if (0 != result)
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05307279 {
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05307280 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7281 "%s: HDD context is not valid", __func__);
7282 return result;
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05307283 }
7284
7285 hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
7286 if (NULL == hHal)
7287 {
7288 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7289 "%s: HAL context is Null!!!", __func__);
7290 return -EAGAIN;
7291 }
7292
7293 pPnoRequest = (tpSirPNOScanReq) vos_mem_malloc(sizeof (tSirPNOScanReq));
7294 if (NULL == pPnoRequest)
7295 {
7296 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
7297 "%s: vos_mem_malloc failed", __func__);
7298 return -ENODEV;
7299 }
7300
7301 memset(pPnoRequest, 0, sizeof (tSirPNOScanReq));
7302 pPnoRequest->enable = 0; /* Disable PNO */
7303 pPnoRequest->ucNetworksCount = 0;
7304
7305 status = sme_SetPreferredNetworkList(hHal, pPnoRequest,
7306 pAdapter->sessionId,
7307 NULL, pAdapter);
7308 if (eHAL_STATUS_SUCCESS != status)
7309 {
7310 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7311 "Failed to disabled PNO");
7312 }
7313
7314 vos_mem_free(pPnoRequest);
7315
7316 EXIT();
7317 return status;
7318}
7319
7320#endif /*FEATURE_WLAN_SCAN_PNO*/
7321
7322
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007323#ifdef FEATURE_WLAN_TDLS
7324static int wlan_hdd_cfg80211_tdls_mgmt(struct wiphy *wiphy, struct net_device *dev,
7325 u8 *peer, u8 action_code, u8 dialog_token,
7326 u16 status_code, const u8 *buf, size_t len)
7327{
7328
7329 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
7330 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007331 u8 peerMac[6];
7332 VOS_STATUS status;
Gopichand Nakkala05922802013-03-14 12:23:19 -07007333 int max_sta_failed = 0;
Hoonki Leea34dd892013-02-05 22:56:02 -08007334 int responder;
Hoonki Leed37cbb32013-04-20 00:31:14 -07007335 long rc;
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007336
Hoonki Lee11f7dda2013-02-14 16:55:44 -08007337 if (NULL == pHddCtx || NULL == pHddCtx->cfg_ini)
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007338 {
Gopichand Nakkala747461f2013-04-24 19:24:45 +05307339 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007340 "Invalid arguments");
7341 return -EINVAL;
7342 }
7343
Sameer Thalappil75ea31a2013-02-21 19:38:16 -08007344 if (pHddCtx->isLogpInProgress)
7345 {
7346 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7347 "%s:LOGP in Progress. Ignore!!!", __func__);
Gopichand Nakkala05922802013-03-14 12:23:19 -07007348 wlan_hdd_tdls_set_link_status(pAdapter, peer, eTDLS_LINK_IDLE);
Sameer Thalappil75ea31a2013-02-21 19:38:16 -08007349 return -EBUSY;
7350 }
7351
Hoonki Lee27511902013-03-14 18:19:06 -07007352 if (eTDLS_SUPPORT_NOT_ENABLED == pHddCtx->tdls_mode)
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007353 {
Hoonki Lee27511902013-03-14 18:19:06 -07007354 VOS_TRACE( VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
7355 "%s: TDLS mode is disabled OR not enabled in FW."
7356 MAC_ADDRESS_STR " action %d declined.",
7357 __func__, MAC_ADDR_ARRAY(peer), action_code);
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007358 return -ENOTSUPP;
7359 }
Lee Hoonkic1262f22013-01-24 21:59:00 -08007360
Hoonki Lee27511902013-03-14 18:19:06 -07007361 /* other than teardown frame, other mgmt frames are not sent if disabled */
7362 if (SIR_MAC_TDLS_TEARDOWN != action_code)
7363 {
7364 /* if tdls_mode is disabled to respond to peer's request */
7365 if (eTDLS_SUPPORT_DISABLED == pHddCtx->tdls_mode)
7366 {
7367 VOS_TRACE( VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
7368 "%s: " MAC_ADDRESS_STR
Gopichand Nakkala34d1b062013-03-19 15:28:33 -07007369 " TDLS mode is disabled. action %d declined.",
7370 __func__, MAC_ADDR_ARRAY(peer), action_code);
Hoonki Lee27511902013-03-14 18:19:06 -07007371
7372 return -ENOTSUPP;
7373 }
7374 }
7375
Gopichand Nakkalab977a972013-02-18 19:15:09 -08007376 if (WLAN_IS_TDLS_SETUP_ACTION(action_code))
7377 {
Hoonki Leefb8df672013-04-10 18:20:34 -07007378 if (NULL != wlan_hdd_tdls_is_progress(pHddCtx, peer, TRUE, TRUE))
Gopichand Nakkalab977a972013-02-18 19:15:09 -08007379 {
7380 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007381 "%s: " MAC_ADDRESS_STR
Gopichand Nakkala34d1b062013-03-19 15:28:33 -07007382 " TDLS setup is ongoing. action %d declined.",
7383 __func__, MAC_ADDR_ARRAY(peer), action_code);
7384 return -EPERM;
Gopichand Nakkalab977a972013-02-18 19:15:09 -08007385 }
7386 }
7387
Hoonki Lee11f7dda2013-02-14 16:55:44 -08007388 if (SIR_MAC_TDLS_SETUP_REQ == action_code ||
7389 SIR_MAC_TDLS_SETUP_RSP == action_code )
Lee Hoonkic1262f22013-01-24 21:59:00 -08007390 {
Gopichand Nakkala4327a152013-03-04 23:22:42 -08007391 if (HDD_MAX_NUM_TDLS_STA <= wlan_hdd_tdlsConnectedPeers(pAdapter))
Lee Hoonkic1262f22013-01-24 21:59:00 -08007392 {
7393 /* supplicant still sends tdls_mgmt(SETUP_REQ) even after
7394 we return error code at 'add_station()'. Hence we have this
7395 check again in addtion to add_station().
7396 Anyway, there is no hard to double-check. */
Hoonki Lee11f7dda2013-02-14 16:55:44 -08007397 if (SIR_MAC_TDLS_SETUP_REQ == action_code)
Lee Hoonkic1262f22013-01-24 21:59:00 -08007398 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007399 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7400 "%s: " MAC_ADDRESS_STR
Gopichand Nakkala34d1b062013-03-19 15:28:33 -07007401 " TDLS Max peer already connected. action %d declined.",
7402 __func__, MAC_ADDR_ARRAY(peer), action_code);
Gopichand Nakkala05922802013-03-14 12:23:19 -07007403 goto error;
Lee Hoonkic1262f22013-01-24 21:59:00 -08007404 }
7405 else
7406 {
Gopichand Nakkalab977a972013-02-18 19:15:09 -08007407 /* maximum reached. tweak to send error code to peer and return
7408 error code to supplicant */
Lee Hoonkic1262f22013-01-24 21:59:00 -08007409 status_code = eSIR_MAC_UNSPEC_FAILURE_STATUS;
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007410 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7411 "%s: " MAC_ADDRESS_STR
7412 " TDLS Max peer already connected send response status %d",
7413 __func__, MAC_ADDR_ARRAY(peer), status_code);
Gopichand Nakkala05922802013-03-14 12:23:19 -07007414 max_sta_failed = -EPERM;
Gopichand Nakkalab977a972013-02-18 19:15:09 -08007415 /* fall through to send setup resp with failure status
7416 code */
Lee Hoonkic1262f22013-01-24 21:59:00 -08007417 }
7418 }
Hoonki Lee11f7dda2013-02-14 16:55:44 -08007419 else
7420 {
7421 hddTdlsPeer_t *pTdlsPeer;
Gopichand Nakkala4327a152013-03-04 23:22:42 -08007422 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peer);
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07007423 if (pTdlsPeer && TDLS_IS_CONNECTED(pTdlsPeer))
Hoonki Lee11f7dda2013-02-14 16:55:44 -08007424 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007425 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkala34d1b062013-03-19 15:28:33 -07007426 "%s:" MAC_ADDRESS_STR " already connected. action %d declined.",
7427 __func__, MAC_ADDR_ARRAY(peer), action_code);
Hoonki Lee11f7dda2013-02-14 16:55:44 -08007428 return -EPERM;
7429 }
7430 }
Lee Hoonkic1262f22013-01-24 21:59:00 -08007431 }
Hoonki Lee11f7dda2013-02-14 16:55:44 -08007432 vos_mem_copy(peerMac, peer, 6);
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007433
Hoonki Lee1090c6a2013-01-16 17:40:54 -08007434#ifdef WLAN_FEATURE_TDLS_DEBUG
7435 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007436 "%s: " MAC_ADDRESS_STR " action %d, dialog_token %d status %d, len = %d",
7437 "tdls_mgmt", MAC_ADDR_ARRAY(peer),
7438 action_code, dialog_token, status_code, len);
Hoonki Lee1090c6a2013-01-16 17:40:54 -08007439#endif
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007440
Hoonki Leea34dd892013-02-05 22:56:02 -08007441 /*Except teardown responder will not be used so just make 0*/
7442 responder = 0;
Hoonki Lee11f7dda2013-02-14 16:55:44 -08007443 if (SIR_MAC_TDLS_TEARDOWN == action_code)
Hoonki Leea34dd892013-02-05 22:56:02 -08007444 {
Gopichand Nakkala97a65fd2013-04-16 16:59:38 -07007445
7446 hddTdlsPeer_t *pTdlsPeer;
7447 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peerMac);
7448
7449 if(pTdlsPeer && TDLS_IS_CONNECTED(pTdlsPeer))
7450 responder = pTdlsPeer->is_responder;
7451 else
Hoonki Leea34dd892013-02-05 22:56:02 -08007452 {
Gopichand Nakkala97a65fd2013-04-16 16:59:38 -07007453 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7454 "%s: " MAC_ADDRESS_STR " peer doesn't exist or not connected %d dialog_token %d status %d, len = %d",
7455 __func__, MAC_ADDR_ARRAY(peer), (NULL == pTdlsPeer) ? -1 : pTdlsPeer->link_status,
7456 dialog_token, status_code, len);
7457 return -EPERM;
Hoonki Leea34dd892013-02-05 22:56:02 -08007458 }
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007459 }
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007460
Gopichand Nakkala2f1ff152013-07-01 11:27:43 +05307461 /* For explicit trigger of DIS_REQ come out of BMPS for
7462 successfully receiving DIS_RSP from peer. */
Hoonki Lee14621352013-04-16 17:51:19 -07007463 if ((SIR_MAC_TDLS_SETUP_RSP == action_code) ||
Gopichand Nakkala2f1ff152013-07-01 11:27:43 +05307464 (SIR_MAC_TDLS_DIS_RSP == action_code) ||
7465 (SIR_MAC_TDLS_DIS_REQ == action_code))
Hoonki Lee14621352013-04-16 17:51:19 -07007466 {
7467 if (TRUE == sme_IsPmcBmps(WLAN_HDD_GET_HAL_CTX(pAdapter)))
7468 {
7469 VOS_TRACE( VOS_MODULE_ID_HDD, TDLS_LOG_LEVEL,
Gopichand Nakkala2f1ff152013-07-01 11:27:43 +05307470 "%s: Sending frame action_code %u.Disable BMPS", __func__, action_code);
Hoonki Lee14621352013-04-16 17:51:19 -07007471 hdd_disable_bmps_imps(pHddCtx, WLAN_HDD_INFRA_STATION);
7472 }
Gopichand Nakkala2f1ff152013-07-01 11:27:43 +05307473 if (SIR_MAC_TDLS_DIS_REQ != action_code)
7474 wlan_hdd_tdls_set_cap(pAdapter, peerMac, eTDLS_CAP_SUPPORTED);
Hoonki Lee14621352013-04-16 17:51:19 -07007475 }
7476
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007477 /* make sure doesn't call send_mgmt() while it is pending */
7478 if (TDLS_CTX_MAGIC == pAdapter->mgmtTxCompletionStatus)
7479 {
7480 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7481 "%s: " MAC_ADDRESS_STR " action %d couldn't sent, as one is pending. return EBUSY\n",
7482 __func__, MAC_ADDR_ARRAY(peer), action_code);
7483 return -EBUSY;
7484 }
7485
7486 pAdapter->mgmtTxCompletionStatus = TDLS_CTX_MAGIC;
Gopichand Nakkalab977a972013-02-18 19:15:09 -08007487 INIT_COMPLETION(pAdapter->tdls_mgmt_comp);
7488
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007489 status = sme_SendTdlsMgmtFrame(WLAN_HDD_GET_HAL_CTX(pAdapter), pAdapter->sessionId,
Hoonki Leea34dd892013-02-05 22:56:02 -08007490 peerMac, action_code, dialog_token, status_code, (tANI_U8 *)buf, len, responder);
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007491
Gopichand Nakkalab977a972013-02-18 19:15:09 -08007492 if (VOS_STATUS_SUCCESS != status)
7493 {
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007494 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7495 "%s: sme_SendTdlsMgmtFrame failed!", __func__);
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007496 pAdapter->mgmtTxCompletionStatus = FALSE;
Hoonki Lee14621352013-04-16 17:51:19 -07007497 wlan_hdd_tdls_check_bmps(pAdapter);
7498 goto error;
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007499 }
7500
Hoonki Leed37cbb32013-04-20 00:31:14 -07007501 rc = wait_for_completion_interruptible_timeout(&pAdapter->tdls_mgmt_comp,
7502 msecs_to_jiffies(WAIT_TIME_TDLS_MGMT));
7503
7504 if ((rc <= 0) || (TRUE != pAdapter->mgmtTxCompletionStatus))
Gopichand Nakkalab977a972013-02-18 19:15:09 -08007505 {
Hoonki Leed37cbb32013-04-20 00:31:14 -07007506 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7507 "%s: Mgmt Tx Completion failed status %ld TxCompletion %lu",
7508 __func__, rc, pAdapter->mgmtTxCompletionStatus);
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007509 pAdapter->mgmtTxCompletionStatus = FALSE;
Hoonki Leed37cbb32013-04-20 00:31:14 -07007510 wlan_hdd_tdls_check_bmps(pAdapter);
7511 goto error;
Gopichand Nakkalab977a972013-02-18 19:15:09 -08007512 }
7513
Gopichand Nakkala05922802013-03-14 12:23:19 -07007514 if (max_sta_failed)
Hoonki Lee14621352013-04-16 17:51:19 -07007515 {
7516 wlan_hdd_tdls_check_bmps(pAdapter);
Gopichand Nakkala05922802013-03-14 12:23:19 -07007517 return max_sta_failed;
Hoonki Lee14621352013-04-16 17:51:19 -07007518 }
Gopichand Nakkalab977a972013-02-18 19:15:09 -08007519
Hoonki Leea34dd892013-02-05 22:56:02 -08007520 if (SIR_MAC_TDLS_SETUP_RSP == action_code)
7521 {
Gopichand Nakkala4327a152013-03-04 23:22:42 -08007522 wlan_hdd_tdls_set_responder(pAdapter, peerMac, TRUE);
Hoonki Leea34dd892013-02-05 22:56:02 -08007523 }
7524 else if (SIR_MAC_TDLS_SETUP_CNF == action_code)
7525 {
Gopichand Nakkala4327a152013-03-04 23:22:42 -08007526 wlan_hdd_tdls_set_responder(pAdapter, peerMac, FALSE);
Hoonki Leea34dd892013-02-05 22:56:02 -08007527 }
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007528
7529 return 0;
Gopichand Nakkala05922802013-03-14 12:23:19 -07007530error:
7531 /* max_sta_failed ; we didn't set to CONNECTING for this case,
7532 because we already know that this transaction will be failed,
7533 but we weren't sure if supplicant call DISABLE_LINK or not. So,
7534 to be safe, do not change the state mahine.
7535 */
7536 if(max_sta_failed == 0 &&
7537 (WLAN_IS_TDLS_SETUP_ACTION(action_code)))
7538 wlan_hdd_tdls_set_link_status(pAdapter, peerMac, eTDLS_LINK_IDLE);
7539 return -EPERM;
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007540}
7541
7542static int wlan_hdd_cfg80211_tdls_oper(struct wiphy *wiphy, struct net_device *dev,
7543 u8 *peer, enum nl80211_tdls_operation oper)
7544{
7545 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
7546 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05307547 int status;
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05307548#ifdef FEATURE_WLAN_TDLS_OXYGEN_DISAPPEAR_AP
7549 hdd_station_ctx_t *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05307550 tANI_U8 staIdx;
7551#endif
Hoonki Lee1090c6a2013-01-16 17:40:54 -08007552#ifdef WLAN_FEATURE_TDLS_DEBUG
7553 const char *tdls_oper_str[]= {
7554 "NL80211_TDLS_DISCOVERY_REQ",
7555 "NL80211_TDLS_SETUP",
7556 "NL80211_TDLS_TEARDOWN",
7557 "NL80211_TDLS_ENABLE_LINK",
7558 "NL80211_TDLS_DISABLE_LINK",
Gopichand Nakkala29d00192013-06-20 19:03:52 +05307559 "NL80211_TDLS_UNKNOWN_OPER"};
Hoonki Lee1090c6a2013-01-16 17:40:54 -08007560#endif
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007561 hddTdlsPeer_t *pTdlsPeer;
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007562
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05307563 if ( NULL == peer )
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007564 {
Gopichand Nakkalab977a972013-02-18 19:15:09 -08007565 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Chilam Ngc4244af2013-04-01 15:37:32 -07007566 "%s: Invalid arguments", __func__);
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007567 return -EINVAL;
7568 }
Hoonki Lee1090c6a2013-01-16 17:40:54 -08007569
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05307570 status = wlan_hdd_validate_context(pHddCtx);
7571
7572 if (0 != status)
Sameer Thalappil75ea31a2013-02-21 19:38:16 -08007573 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05307574 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7575 "%s: HDD context is not valid", __func__);
7576 return status;
Sameer Thalappil75ea31a2013-02-21 19:38:16 -08007577 }
7578
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007579 pTdlsPeer = wlan_hdd_tdls_find_peer(pAdapter, peer);
7580
7581 if ( NULL == pTdlsPeer ) {
7582 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: " MAC_ADDRESS_STR " (oper %d) not exsting. ignored",
7583 __func__, MAC_ADDR_ARRAY(peer), (int)oper);
7584 return -EINVAL;
7585 }
7586
Hoonki Lee1090c6a2013-01-16 17:40:54 -08007587#ifdef WLAN_FEATURE_TDLS_DEBUG
7588 if((int)oper > 4)
7589 oper = 5;
7590
7591 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007592 "%s: " MAC_ADDRESS_STR " link_status %d (%s) ", "tdls_oper",
7593 MAC_ADDR_ARRAY(peer), pTdlsPeer->link_status,
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007594 tdls_oper_str[(int)oper]);
Hoonki Lee1090c6a2013-01-16 17:40:54 -08007595#endif
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007596
7597 if( FALSE == pHddCtx->cfg_ini->fEnableTDLSSupport ||
Hoonki Lee1090c6a2013-01-16 17:40:54 -08007598 FALSE == sme_IsFeatureSupportedByFW(TDLS))
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007599 {
Hoonki Lee1090c6a2013-01-16 17:40:54 -08007600 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
Chilam Ngc4244af2013-04-01 15:37:32 -07007601 "TDLS Disabled in INI OR not enabled in FW. "
7602 "Cannot process TDLS commands");
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007603 return -ENOTSUPP;
7604 }
7605
7606 switch (oper) {
7607 case NL80211_TDLS_ENABLE_LINK:
7608 {
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007609 VOS_STATUS status;
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +05307610 tCsrTdlsLinkEstablishParams tdlsLinkEstablishParams;
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007611
Gopichand Nakkala2f4a2822013-04-17 11:22:01 -07007612 if (!TDLS_STA_INDEX_VALID(pTdlsPeer->staId))
7613 {
7614 hddLog(VOS_TRACE_LEVEL_ERROR, "%s: Invalid Staion Index %u "
7615 MAC_ADDRESS_STR " failed",
7616 __func__, pTdlsPeer->staId, MAC_ADDR_ARRAY(peer));
7617 return -EINVAL;
7618 }
7619
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007620 if (eTDLS_LINK_CONNECTED != pTdlsPeer->link_status)
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007621 {
Gopichand Nakkala24be5312013-07-02 16:47:12 +05307622 long ret;
7623
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +05307624 if (0 != wlan_hdd_tdls_get_link_establish_params(pAdapter, peer,&tdlsLinkEstablishParams)) {
7625 return -EINVAL;
7626 }
7627 INIT_COMPLETION(pAdapter->tdls_link_establish_req_comp);
7628
7629 sme_SendTdlsLinkEstablishParams(WLAN_HDD_GET_HAL_CTX(pAdapter),
7630 pAdapter->sessionId, peer, &tdlsLinkEstablishParams);
7631 /* Send TDLS peer UAPSD capabilities to the firmware and
7632 * register with the TL on after the response for this operation
7633 * is received .
7634 */
Gopichand Nakkala24be5312013-07-02 16:47:12 +05307635 ret = wait_for_completion_interruptible_timeout(&pAdapter->tdls_link_establish_req_comp,
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +05307636 msecs_to_jiffies(WAIT_TIME_TDLS_LINK_ESTABLISH_REQ));
Gopichand Nakkala24be5312013-07-02 16:47:12 +05307637 if (ret <= 0)
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +05307638 {
7639 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7640 "%s: Link Establish Request Faled Status %ld",
Gopichand Nakkala24be5312013-07-02 16:47:12 +05307641 __func__, ret);
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +05307642 return -EINVAL;
7643 }
Gopichand Nakkalaccd3a382013-03-19 13:56:10 -07007644 wlan_hdd_tdls_set_peer_link_status(pTdlsPeer, eTDLS_LINK_CONNECTED);
Gopichand Nakkala471708b2013-06-04 20:03:01 +05307645 /* Mark TDLS client Authenticated .*/
7646 status = WLANTL_ChangeSTAState( pHddCtx->pvosContext,
7647 pTdlsPeer->staId,
7648 WLANTL_STA_AUTHENTICATED);
Gopichand Nakkalaccd3a382013-03-19 13:56:10 -07007649 if (VOS_STATUS_SUCCESS == status)
7650 {
Hoonki Lee14621352013-04-16 17:51:19 -07007651 if (pTdlsPeer->is_responder == 0)
7652 {
7653 v_U8_t staId = (v_U8_t)pTdlsPeer->staId;
7654
7655 wlan_hdd_tdls_timer_restart(pAdapter,
7656 &pTdlsPeer->initiatorWaitTimeoutTimer,
7657 WAIT_TIME_TDLS_INITIATOR);
7658 /* suspend initiator TX until it receives direct packet from the
7659 reponder or WAIT_TIME_TDLS_INITIATOR timer expires */
7660 WLANTL_SuspendDataTx( (WLAN_HDD_GET_CTX(pAdapter))->pvosContext,
7661 &staId, NULL);
7662 }
Gopichand Nakkalaccd3a382013-03-19 13:56:10 -07007663 wlan_hdd_tdls_increment_peer_count(pAdapter);
7664 }
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007665 wlan_hdd_tdls_check_bmps(pAdapter);
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +05307666
7667 /* Update TL about the UAPSD masks , to route the packets to firmware */
Gopichand Nakkala574f6d12013-06-27 19:38:43 +05307668 if ((TRUE == pHddCtx->cfg_ini->fEnableTDLSBufferSta)
7669 || pHddCtx->cfg_ini->fTDLSUapsdMask )
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +05307670 {
Gopichand Nakkala574f6d12013-06-27 19:38:43 +05307671 int ac;
7672 uint8 ucAc[4] = { WLANTL_AC_VO,
7673 WLANTL_AC_VI,
7674 WLANTL_AC_BK,
7675 WLANTL_AC_BE };
7676 uint8 tlTid[4] = { 7, 5, 2, 3 } ;
7677 for(ac=0; ac < 4; ac++)
7678 {
7679 status = WLANTL_EnableUAPSDForAC( (WLAN_HDD_GET_CTX(pAdapter))->pvosContext,
7680 pTdlsPeer->staId, ucAc[ac],
7681 tlTid[ac], tlTid[ac], 0, 0,
7682 WLANTL_BI_DIR );
7683 }
Gopichand Nakkala79ff85d2013-05-27 17:05:29 +05307684 }
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007685 }
7686
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007687 }
7688 break;
7689 case NL80211_TDLS_DISABLE_LINK:
Lee Hoonkic1262f22013-01-24 21:59:00 -08007690 {
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007691 if(TDLS_STA_INDEX_VALID(pTdlsPeer->staId))
Lee Hoonkic1262f22013-01-24 21:59:00 -08007692 {
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07007693 long status;
7694
7695 INIT_COMPLETION(pAdapter->tdls_del_station_comp);
7696
Lee Hoonkic1262f22013-01-24 21:59:00 -08007697 sme_DeleteTdlsPeerSta( WLAN_HDD_GET_HAL_CTX(pAdapter),
7698 pAdapter->sessionId, peer );
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07007699
7700 status = wait_for_completion_interruptible_timeout(&pAdapter->tdls_del_station_comp,
7701 msecs_to_jiffies(WAIT_TIME_TDLS_DEL_STA));
7702 if (status <= 0)
7703 {
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007704 wlan_hdd_tdls_set_peer_link_status(pTdlsPeer, eTDLS_LINK_IDLE);
Gopichand Nakkalae7cbc5d2013-03-27 21:09:23 -07007705 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7706 "%s: Del station failed status %ld",
7707 __func__, status);
7708 return -EPERM;
7709 }
Hoonki Lee5305c3a2013-04-29 23:28:59 -07007710 wlan_hdd_tdls_set_peer_link_status(pTdlsPeer, eTDLS_LINK_IDLE);
Lee Hoonkic1262f22013-01-24 21:59:00 -08007711 }
7712 else
7713 {
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007714 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7715 "%s: TDLS Peer Station doesn't exist.", __func__);
Lee Hoonkic1262f22013-01-24 21:59:00 -08007716 }
Gopichand Nakkala78a6c812013-05-13 16:39:49 +05307717#ifdef FEATURE_WLAN_TDLS_OXYGEN_DISAPPEAR_AP
7718 if (pHddTdlsCtx->defer_link_lost_indication)
7719 {
7720 if (( TRUE == pHddCtx->cfg_ini->fEnableTDLSOxygenSupport ) &&
7721 (wlan_hdd_tdlsConnectedPeers(pAdapter) == 0))
7722 {
7723 status = wlan_hdd_disconnect(pAdapter, eCSR_DISCONNECT_REASON_UNSPECIFIED);
7724 if ( 0 != status)
7725 {
7726 hddLog(VOS_TRACE_LEVEL_ERROR,
7727 "%s wlan_hdd_disconnect failure, returned %d \n",
7728 __func__, (int)status );
7729 return -EINVAL;
7730 }
7731 }
7732 }
7733#endif
Lee Hoonkic1262f22013-01-24 21:59:00 -08007734 }
Gopichand Nakkalac87400e2013-03-13 18:51:00 -07007735 break;
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007736 case NL80211_TDLS_TEARDOWN:
7737 case NL80211_TDLS_SETUP:
7738 case NL80211_TDLS_DISCOVERY_REQ:
7739 /* We don't support in-driver setup/teardown/discovery */
7740 return -ENOTSUPP;
7741 default:
7742 return -ENOTSUPP;
7743 }
7744 return 0;
7745}
Chilam NG571c65a2013-01-19 12:27:36 +05307746
7747int wlan_hdd_cfg80211_send_tdls_discover_req(struct wiphy *wiphy,
7748 struct net_device *dev, u8 *peer)
7749{
7750 hddLog(VOS_TRACE_LEVEL_INFO, "tdls send discover req: %x %x %x %x %x %x",
7751 peer[0], peer[1], peer[2], peer[3], peer[4], peer[5]);
7752
7753 return wlan_hdd_cfg80211_tdls_mgmt(wiphy, dev, peer,
7754 WLAN_TDLS_DISCOVERY_REQUEST, 1, 0, NULL, 0);
7755}
Mohit Khanna698ba2a2012-12-04 15:08:18 -08007756#endif
7757
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307758#ifdef WLAN_FEATURE_GTK_OFFLOAD
7759/*
7760 * FUNCTION: wlan_hdd_cfg80211_update_replayCounterCallback
7761 * Callback rountine called upon receiving response for
7762 * get offload info
7763 */
7764void wlan_hdd_cfg80211_update_replayCounterCallback(void *callbackContext,
7765 tpSirGtkOffloadGetInfoRspParams pGtkOffloadGetInfoRsp)
7766{
7767
7768 hdd_adapter_t *pAdapter = (hdd_adapter_t *)callbackContext;
Gopichand Nakkalad36ee622013-05-07 14:13:27 +05307769 tANI_U8 tempReplayCounter[8];
7770 hdd_station_ctx_t *pHddStaCtx;
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307771
7772 ENTER();
7773
7774 if (NULL == pAdapter)
7775 {
7776 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
7777 "%s: HDD adapter is Null", __func__);
7778 return ;
7779 }
7780
7781 if (NULL == pGtkOffloadGetInfoRsp)
7782 {
7783 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7784 "%s: pGtkOffloadGetInfoRsp is Null", __func__);
7785 return ;
7786 }
7787
7788 if (VOS_STATUS_SUCCESS != pGtkOffloadGetInfoRsp->ulStatus)
7789 {
7790 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7791 "%s: wlan Failed to get replay counter value",
7792 __func__);
7793 return ;
7794 }
7795
Gopichand Nakkalad36ee622013-05-07 14:13:27 +05307796 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
7797 /* Update replay counter */
7798 pHddStaCtx->gtkOffloadReqParams.ullKeyReplayCounter =
7799 pGtkOffloadGetInfoRsp->ullKeyReplayCounter;
7800
7801 {
7802 /* changing from little to big endian since supplicant
7803 * works on big endian format
7804 */
7805 int i;
7806 tANI_U8 *p = (tANI_U8 *)&pGtkOffloadGetInfoRsp->ullKeyReplayCounter;
7807
7808 for (i = 0; i < 8; i++)
7809 {
7810 tempReplayCounter[7-i] = (tANI_U8)p[i];
7811 }
7812 }
7813
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307814 /* Update replay counter to NL */
7815 cfg80211_gtk_rekey_notify(pAdapter->dev, pGtkOffloadGetInfoRsp->bssId,
Gopichand Nakkalad36ee622013-05-07 14:13:27 +05307816 tempReplayCounter, GFP_KERNEL);
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307817}
7818
7819/*
7820 * FUNCTION: wlan_hdd_cfg80211_set_rekey_data
7821 * This function is used to offload GTK rekeying job to the firmware.
7822 */
7823int wlan_hdd_cfg80211_set_rekey_data(struct wiphy *wiphy, struct net_device *dev,
7824 struct cfg80211_gtk_rekey_data *data)
7825{
7826 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
7827 hdd_context_t *pHddCtx = wiphy_priv(wiphy);
7828 hdd_station_ctx_t *pHddStaCtx;
7829 tHalHandle hHal;
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05307830 int result;
Gopichand Nakkalad36ee622013-05-07 14:13:27 +05307831 tSirGtkOffloadParams hddGtkOffloadReqParams;
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307832 eHalStatus status = eHAL_STATUS_FAILURE;
7833
7834 ENTER();
7835
7836 if (NULL == pAdapter)
7837 {
7838 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
7839 "%s: HDD adapter is Null", __func__);
7840 return -ENODEV;
7841 }
7842
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05307843 result = wlan_hdd_validate_context(pHddCtx);
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307844
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05307845 if (0 != result)
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307846 {
Gopichand Nakkalaf502e2b2013-05-24 18:34:25 +05307847 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7848 "%s: HDD context is not valid", __func__);
7849 return result;
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307850 }
7851
7852 pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(pAdapter);
7853 hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
7854 if (NULL == hHal)
7855 {
7856 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7857 "%s: HAL context is Null!!!", __func__);
7858 return -EAGAIN;
7859 }
7860
Gopichand Nakkalad36ee622013-05-07 14:13:27 +05307861 pHddStaCtx->gtkOffloadReqParams.ulFlags = GTK_OFFLOAD_ENABLE;
7862 memcpy(pHddStaCtx->gtkOffloadReqParams.aKCK, data->kck, NL80211_KCK_LEN);
7863 memcpy(pHddStaCtx->gtkOffloadReqParams.aKEK, data->kek, NL80211_KEK_LEN);
7864 memcpy(pHddStaCtx->gtkOffloadReqParams.bssId, &pHddStaCtx->conn_info.bssId,
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307865 WNI_CFG_BSSID_LEN);
Gopichand Nakkalad36ee622013-05-07 14:13:27 +05307866 {
7867 /* changing from big to little endian since driver
7868 * works on little endian format
7869 */
7870 tANI_U8 *p =
7871 (tANI_U8 *)&pHddStaCtx->gtkOffloadReqParams.ullKeyReplayCounter;
7872 int i;
7873
7874 for (i = 0; i < 8; i++)
7875 {
7876 p[7-i] = data->replay_ctr[i];
7877 }
7878 }
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307879
7880 if (TRUE == pHddCtx->hdd_wlan_suspended)
7881 {
7882 /* if wlan is suspended, enable GTK offload directly from here */
Gopichand Nakkalad36ee622013-05-07 14:13:27 +05307883 memcpy(&hddGtkOffloadReqParams, &pHddStaCtx->gtkOffloadReqParams,
7884 sizeof (tSirGtkOffloadParams));
7885 status = sme_SetGTKOffload(hHal, &hddGtkOffloadReqParams,
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307886 pAdapter->sessionId);
7887
7888 if (eHAL_STATUS_SUCCESS != status)
7889 {
7890 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7891 "%s: sme_SetGTKOffload failed, returned %d",
7892 __func__, status);
7893 return status;
7894 }
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307895 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
7896 "%s: sme_SetGTKOffload successfull", __func__);
7897 }
7898 else
7899 {
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307900 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
7901 "%s: wlan not suspended GTKOffload request is stored",
7902 __func__);
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307903 }
Gopichand Nakkalad36ee622013-05-07 14:13:27 +05307904
7905 return eHAL_STATUS_SUCCESS;
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05307906}
7907#endif /*WLAN_FEATURE_GTK_OFFLOAD*/
7908
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05307909/*
7910 * FUNCTION: wlan_hdd_cfg80211_set_mac_acl
7911 * This function is used to set access control policy
7912 */
7913static int wlan_hdd_cfg80211_set_mac_acl(struct wiphy *wiphy,
7914 struct net_device *dev, const struct cfg80211_acl_data *params)
7915{
7916 int i;
7917 hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
7918 hdd_hostapd_state_t *pHostapdState;
7919 tsap_Config_t *pConfig;
7920 v_CONTEXT_t pVosContext = NULL;
7921 hdd_context_t *pHddCtx;
7922 int status;
7923
7924 ENTER();
7925
7926 if (NULL == pAdapter)
7927 {
7928 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
7929 "%s: HDD adapter is Null", __func__);
7930 return -ENODEV;
7931 }
7932
7933 if (NULL == params)
7934 {
7935 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
7936 "%s: params is Null", __func__);
7937 return -EINVAL;
7938 }
7939
7940 pHddCtx = WLAN_HDD_GET_CTX(pAdapter);
7941 status = wlan_hdd_validate_context(pHddCtx);
7942
7943 if (0 != status)
7944 {
7945 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7946 "%s: HDD context is not valid", __func__);
7947 return status;
7948 }
7949
7950 pVosContext = pHddCtx->pvosContext;
7951 pHostapdState = WLAN_HDD_GET_HOSTAP_STATE_PTR(pAdapter);
7952
7953 if (NULL == pHostapdState)
7954 {
7955 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_FATAL,
7956 "%s: pHostapdState is Null", __func__);
7957 return -EINVAL;
7958 }
7959
7960 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,"acl policy: = %d"
7961 "no acl entries = %d", params->acl_policy, params->n_acl_entries);
7962
7963 if (WLAN_HDD_SOFTAP == pAdapter->device_mode)
7964 {
7965 pConfig = &pAdapter->sessionCtx.ap.sapConfig;
7966
7967 /* default value */
7968 pConfig->num_accept_mac = 0;
7969 pConfig->num_deny_mac = 0;
7970
7971 /**
7972 * access control policy
7973 * @NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED: Deny stations which are
7974 * listed in hostapd.deny file.
7975 * @NL80211_ACL_POLICY_DENY_UNLESS_LISTED: Allow stations which are
7976 * listed in hostapd.accept file.
7977 */
7978 if (NL80211_ACL_POLICY_DENY_UNLESS_LISTED == params->acl_policy)
7979 {
7980 pConfig->SapMacaddr_acl = eSAP_DENY_UNLESS_ACCEPTED;
7981 }
7982 else if (NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED == params->acl_policy)
7983 {
7984 pConfig->SapMacaddr_acl = eSAP_ACCEPT_UNLESS_DENIED;
7985 }
7986 else
7987 {
7988 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
7989 "%s:Acl Policy : %d is not supported",
7990 __func__, params->acl_policy);
7991 return -ENOTSUPP;
7992 }
7993
7994 if (eSAP_DENY_UNLESS_ACCEPTED == pConfig->SapMacaddr_acl)
7995 {
7996 pConfig->num_accept_mac = params->n_acl_entries;
7997 for (i = 0; i < params->n_acl_entries; i++)
7998 {
7999 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
8000 "** Add ACL MAC entry %i in WhiletList :"
8001 MAC_ADDRESS_STR, i,
8002 MAC_ADDR_ARRAY(params->mac_addrs[i].addr));
8003
8004 vos_mem_copy(&pConfig->accept_mac[i], params->mac_addrs[i].addr,
8005 sizeof(qcmacaddr));
8006 }
8007 }
8008 else if (eSAP_ACCEPT_UNLESS_DENIED == pConfig->SapMacaddr_acl)
8009 {
8010 pConfig->num_deny_mac = params->n_acl_entries;
8011 for (i = 0; i < params->n_acl_entries; i++)
8012 {
8013 VOS_TRACE( VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_INFO,
8014 "** Add ACL MAC entry %i in BlackList :"
8015 MAC_ADDRESS_STR, i,
8016 MAC_ADDR_ARRAY(params->mac_addrs[i].addr));
8017
8018 vos_mem_copy(&pConfig->deny_mac[i], params->mac_addrs[i].addr,
8019 sizeof(qcmacaddr));
8020 }
8021 }
8022
8023 if (VOS_STATUS_SUCCESS != WLANSAP_SetMacACL(pVosContext, pConfig))
8024 {
8025 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8026 "%s: SAP Set Mac Acl fail", __func__);
8027 return -EINVAL;
8028 }
8029 }
8030 else
8031 {
8032 VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
8033 "%s: Invalid device_mode = %d",
8034 __func__, pAdapter->device_mode);
8035 return -EINVAL;
8036 }
8037
8038 return 0;
8039}
8040
Jeff Johnson295189b2012-06-20 16:38:30 -07008041/* cfg80211_ops */
Gopichand Nakkala747461f2013-04-24 19:24:45 +05308042static struct cfg80211_ops wlan_hdd_cfg80211_ops =
Jeff Johnson295189b2012-06-20 16:38:30 -07008043{
8044 .add_virtual_intf = wlan_hdd_add_virtual_intf,
8045 .del_virtual_intf = wlan_hdd_del_virtual_intf,
8046 .change_virtual_intf = wlan_hdd_cfg80211_change_iface,
8047 .change_station = wlan_hdd_change_station,
8048#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0))
8049 .add_beacon = wlan_hdd_cfg80211_add_beacon,
8050 .del_beacon = wlan_hdd_cfg80211_del_beacon,
8051 .set_beacon = wlan_hdd_cfg80211_set_beacon,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008052#else
8053 .start_ap = wlan_hdd_cfg80211_start_ap,
8054 .change_beacon = wlan_hdd_cfg80211_change_beacon,
8055 .stop_ap = wlan_hdd_cfg80211_stop_ap,
Jeff Johnson295189b2012-06-20 16:38:30 -07008056#endif
8057 .change_bss = wlan_hdd_cfg80211_change_bss,
8058 .add_key = wlan_hdd_cfg80211_add_key,
8059 .get_key = wlan_hdd_cfg80211_get_key,
8060 .del_key = wlan_hdd_cfg80211_del_key,
8061 .set_default_key = wlan_hdd_cfg80211_set_default_key,
Jeff Johnson3bbe4bf2013-01-18 17:05:29 -08008062#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,6,0))
Jeff Johnson295189b2012-06-20 16:38:30 -07008063 .set_channel = wlan_hdd_cfg80211_set_channel,
Jeff Johnson3bbe4bf2013-01-18 17:05:29 -08008064#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07008065 .scan = wlan_hdd_cfg80211_scan,
8066 .connect = wlan_hdd_cfg80211_connect,
8067 .disconnect = wlan_hdd_cfg80211_disconnect,
8068 .join_ibss = wlan_hdd_cfg80211_join_ibss,
8069 .leave_ibss = wlan_hdd_cfg80211_leave_ibss,
8070 .set_wiphy_params = wlan_hdd_cfg80211_set_wiphy_params,
8071 .set_tx_power = wlan_hdd_cfg80211_set_txpower,
8072 .get_tx_power = wlan_hdd_cfg80211_get_txpower,
Jeff Johnson295189b2012-06-20 16:38:30 -07008073 .remain_on_channel = wlan_hdd_cfg80211_remain_on_channel,
8074 .cancel_remain_on_channel = wlan_hdd_cfg80211_cancel_remain_on_channel,
8075 .mgmt_tx = wlan_hdd_action,
8076#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
8077 .mgmt_tx_cancel_wait = wlan_hdd_cfg80211_mgmt_tx_cancel_wait,
8078 .set_default_mgmt_key = wlan_hdd_set_default_mgmt_key,
8079 .set_txq_params = wlan_hdd_set_txq_params,
8080#endif
Jeff Johnson295189b2012-06-20 16:38:30 -07008081 .get_station = wlan_hdd_cfg80211_get_station,
8082 .set_power_mgmt = wlan_hdd_cfg80211_set_power_mgmt,
8083 .del_station = wlan_hdd_cfg80211_del_station,
Jeff Johnson04dd8a82012-06-29 20:41:40 -07008084 .add_station = wlan_hdd_cfg80211_add_station,
8085#ifdef FEATURE_WLAN_LFR
8086 .set_pmksa = wlan_hdd_cfg80211_set_pmksa,
8087 .del_pmksa = wlan_hdd_cfg80211_del_pmksa,
8088 .flush_pmksa = wlan_hdd_cfg80211_flush_pmksa,
8089#endif
Madan Mohan Koyyalamudiea773882012-11-02 13:37:21 -07008090#if defined(WLAN_FEATURE_VOWIFI_11R) && defined(KERNEL_SUPPORT_11R_CFG80211)
8091 .update_ft_ies = wlan_hdd_cfg80211_update_ft_ies,
8092#endif
Mohit Khanna698ba2a2012-12-04 15:08:18 -08008093#ifdef FEATURE_WLAN_TDLS
8094 .tdls_mgmt = wlan_hdd_cfg80211_tdls_mgmt,
8095 .tdls_oper = wlan_hdd_cfg80211_tdls_oper,
8096#endif
Gopichand Nakkala870cbae2013-03-15 21:16:09 +05308097#ifdef WLAN_FEATURE_GTK_OFFLOAD
8098 .set_rekey_data = wlan_hdd_cfg80211_set_rekey_data,
8099#endif /* WLAN_FEATURE_GTK_OFFLOAD */
Gopichand Nakkala8e93fde2013-05-10 17:40:12 +05308100#ifdef FEATURE_WLAN_SCAN_PNO
8101 .sched_scan_start = wlan_hdd_cfg80211_sched_scan_start,
8102 .sched_scan_stop = wlan_hdd_cfg80211_sched_scan_stop,
8103#endif /*FEATURE_WLAN_SCAN_PNO */
Gopichand Nakkalac005b7c2013-05-14 16:04:14 +05308104 .set_mac_acl = wlan_hdd_cfg80211_set_mac_acl,
Jeff Johnson295189b2012-06-20 16:38:30 -07008105};
8106