blob: 232492487527aad0601bdb8913989954783c63f1 [file] [log] [blame]
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001/*
2 * Marvell Wireless LAN device driver: scan ioctl and command handling
3 *
4 * Copyright (C) 2011, Marvell International Ltd.
5 *
6 * This software file (the "File") is distributed by Marvell International
7 * Ltd. under the terms of the GNU General Public License Version 2, June 1991
8 * (the "License"). You may use, redistribute and/or modify this File in
9 * accordance with the terms and conditions of the License, a copy of which
10 * is available by writing to the Free Software Foundation, Inc.,
11 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
12 * worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
13 *
14 * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
16 * ARE EXPRESSLY DISCLAIMED. The License provides additional details about
17 * this warranty disclaimer.
18 */
19
20#include "decl.h"
21#include "ioctl.h"
22#include "util.h"
23#include "fw.h"
24#include "main.h"
25#include "11n.h"
26#include "cfg80211.h"
27
28/* The maximum number of channels the firmware can scan per command */
29#define MWIFIEX_MAX_CHANNELS_PER_SPECIFIC_SCAN 14
30
Amitkumar Karwar658f37b2012-06-06 21:12:42 -070031#define MWIFIEX_DEF_CHANNELS_PER_SCAN_CMD 4
32#define MWIFIEX_LIMIT_1_CHANNEL_PER_SCAN_CMD 15
33#define MWIFIEX_LIMIT_2_CHANNELS_PER_SCAN_CMD 27
34#define MWIFIEX_LIMIT_3_CHANNELS_PER_SCAN_CMD 35
Bing Zhao5e6e3a92011-03-21 18:00:50 -070035
36/* Memory needed to store a max sized Channel List TLV for a firmware scan */
37#define CHAN_TLV_MAX_SIZE (sizeof(struct mwifiex_ie_types_header) \
38 + (MWIFIEX_MAX_CHANNELS_PER_SPECIFIC_SCAN \
39 *sizeof(struct mwifiex_chan_scan_param_set)))
40
41/* Memory needed to store supported rate */
42#define RATE_TLV_MAX_SIZE (sizeof(struct mwifiex_ie_types_rates_param_set) \
43 + HOSTCMD_SUPPORTED_RATES)
44
45/* Memory needed to store a max number/size WildCard SSID TLV for a firmware
46 scan */
47#define WILDCARD_SSID_TLV_MAX_SIZE \
48 (MWIFIEX_MAX_SSID_LIST_LENGTH * \
49 (sizeof(struct mwifiex_ie_types_wildcard_ssid_params) \
50 + IEEE80211_MAX_SSID_LEN))
51
52/* Maximum memory needed for a mwifiex_scan_cmd_config with all TLVs at max */
53#define MAX_SCAN_CFG_ALLOC (sizeof(struct mwifiex_scan_cmd_config) \
54 + sizeof(struct mwifiex_ie_types_num_probes) \
55 + sizeof(struct mwifiex_ie_types_htcap) \
56 + CHAN_TLV_MAX_SIZE \
57 + RATE_TLV_MAX_SIZE \
58 + WILDCARD_SSID_TLV_MAX_SIZE)
59
60
61union mwifiex_scan_cmd_config_tlv {
62 /* Scan configuration (variable length) */
63 struct mwifiex_scan_cmd_config config;
64 /* Max allocated block */
65 u8 config_alloc_buf[MAX_SCAN_CFG_ALLOC];
66};
67
68enum cipher_suite {
69 CIPHER_SUITE_TKIP,
70 CIPHER_SUITE_CCMP,
71 CIPHER_SUITE_MAX
72};
73static u8 mwifiex_wpa_oui[CIPHER_SUITE_MAX][4] = {
74 { 0x00, 0x50, 0xf2, 0x02 }, /* TKIP */
75 { 0x00, 0x50, 0xf2, 0x04 }, /* AES */
76};
77static u8 mwifiex_rsn_oui[CIPHER_SUITE_MAX][4] = {
78 { 0x00, 0x0f, 0xac, 0x02 }, /* TKIP */
79 { 0x00, 0x0f, 0xac, 0x04 }, /* AES */
80};
81
82/*
83 * This function parses a given IE for a given OUI.
84 *
85 * This is used to parse a WPA/RSN IE to find if it has
86 * a given oui in PTK.
87 */
88static u8
89mwifiex_search_oui_in_ie(struct ie_body *iebody, u8 *oui)
90{
91 u8 count;
92
93 count = iebody->ptk_cnt[0];
94
95 /* There could be multiple OUIs for PTK hence
96 1) Take the length.
97 2) Check all the OUIs for AES.
98 3) If one of them is AES then pass success. */
99 while (count) {
100 if (!memcmp(iebody->ptk_body, oui, sizeof(iebody->ptk_body)))
101 return MWIFIEX_OUI_PRESENT;
102
103 --count;
104 if (count)
105 iebody = (struct ie_body *) ((u8 *) iebody +
106 sizeof(iebody->ptk_body));
107 }
108
109 pr_debug("info: %s: OUI is not found in PTK\n", __func__);
110 return MWIFIEX_OUI_NOT_PRESENT;
111}
112
113/*
114 * This function checks if a given OUI is present in a RSN IE.
115 *
116 * The function first checks if a RSN IE is present or not in the
117 * BSS descriptor. It tries to locate the OUI only if such an IE is
118 * present.
119 */
120static u8
121mwifiex_is_rsn_oui_present(struct mwifiex_bssdescriptor *bss_desc, u32 cipher)
122{
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700123 u8 *oui;
124 struct ie_body *iebody;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700125 u8 ret = MWIFIEX_OUI_NOT_PRESENT;
126
127 if (((bss_desc->bcn_rsn_ie) && ((*(bss_desc->bcn_rsn_ie)).
128 ieee_hdr.element_id == WLAN_EID_RSN))) {
129 iebody = (struct ie_body *)
130 (((u8 *) bss_desc->bcn_rsn_ie->data) +
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700131 RSN_GTK_OUI_OFFSET);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700132 oui = &mwifiex_rsn_oui[cipher][0];
133 ret = mwifiex_search_oui_in_ie(iebody, oui);
134 if (ret)
135 return ret;
136 }
137 return ret;
138}
139
140/*
141 * This function checks if a given OUI is present in a WPA IE.
142 *
143 * The function first checks if a WPA IE is present or not in the
144 * BSS descriptor. It tries to locate the OUI only if such an IE is
145 * present.
146 */
147static u8
148mwifiex_is_wpa_oui_present(struct mwifiex_bssdescriptor *bss_desc, u32 cipher)
149{
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -0700150 u8 *oui;
151 struct ie_body *iebody;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700152 u8 ret = MWIFIEX_OUI_NOT_PRESENT;
153
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700154 if (((bss_desc->bcn_wpa_ie) &&
155 ((*(bss_desc->bcn_wpa_ie)).vend_hdr.element_id ==
Arend van Spriel04b23122012-10-12 12:28:14 +0200156 WLAN_EID_VENDOR_SPECIFIC))) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700157 iebody = (struct ie_body *) bss_desc->bcn_wpa_ie->data;
158 oui = &mwifiex_wpa_oui[cipher][0];
159 ret = mwifiex_search_oui_in_ie(iebody, oui);
160 if (ret)
161 return ret;
162 }
163 return ret;
164}
165
166/*
167 * This function compares two SSIDs and checks if they match.
168 */
169s32
Amitkumar Karwarb9be5f32012-02-27 22:04:14 -0800170mwifiex_ssid_cmp(struct cfg80211_ssid *ssid1, struct cfg80211_ssid *ssid2)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700171{
172 if (!ssid1 || !ssid2 || (ssid1->ssid_len != ssid2->ssid_len))
173 return -1;
174 return memcmp(ssid1->ssid, ssid2->ssid, ssid1->ssid_len);
175}
176
177/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700178 * This function checks if wapi is enabled in driver and scanned network is
179 * compatible with it.
180 */
181static bool
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700182mwifiex_is_bss_wapi(struct mwifiex_private *priv,
183 struct mwifiex_bssdescriptor *bss_desc)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700184{
185 if (priv->sec_info.wapi_enabled &&
186 (bss_desc->bcn_wapi_ie &&
187 ((*(bss_desc->bcn_wapi_ie)).ieee_hdr.element_id ==
188 WLAN_EID_BSS_AC_ACCESS_DELAY))) {
189 return true;
190 }
191 return false;
192}
193
194/*
195 * This function checks if driver is configured with no security mode and
196 * scanned network is compatible with it.
197 */
198static bool
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700199mwifiex_is_bss_no_sec(struct mwifiex_private *priv,
200 struct mwifiex_bssdescriptor *bss_desc)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700201{
Amitkumar Karwar5eb02e42012-02-24 21:36:04 -0800202 if (!priv->sec_info.wep_enabled && !priv->sec_info.wpa_enabled &&
203 !priv->sec_info.wpa2_enabled && ((!bss_desc->bcn_wpa_ie) ||
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700204 ((*(bss_desc->bcn_wpa_ie)).vend_hdr.element_id !=
Arend van Spriel04b23122012-10-12 12:28:14 +0200205 WLAN_EID_VENDOR_SPECIFIC)) &&
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700206 ((!bss_desc->bcn_rsn_ie) ||
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700207 ((*(bss_desc->bcn_rsn_ie)).ieee_hdr.element_id !=
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700208 WLAN_EID_RSN)) &&
209 !priv->sec_info.encryption_mode && !bss_desc->privacy) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700210 return true;
211 }
212 return false;
213}
214
215/*
216 * This function checks if static WEP is enabled in driver and scanned network
217 * is compatible with it.
218 */
219static bool
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700220mwifiex_is_bss_static_wep(struct mwifiex_private *priv,
221 struct mwifiex_bssdescriptor *bss_desc)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700222{
Amitkumar Karwar5eb02e42012-02-24 21:36:04 -0800223 if (priv->sec_info.wep_enabled && !priv->sec_info.wpa_enabled &&
224 !priv->sec_info.wpa2_enabled && bss_desc->privacy) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700225 return true;
226 }
227 return false;
228}
229
230/*
231 * This function checks if wpa is enabled in driver and scanned network is
232 * compatible with it.
233 */
234static bool
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700235mwifiex_is_bss_wpa(struct mwifiex_private *priv,
236 struct mwifiex_bssdescriptor *bss_desc)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700237{
Amitkumar Karwar5eb02e42012-02-24 21:36:04 -0800238 if (!priv->sec_info.wep_enabled && priv->sec_info.wpa_enabled &&
239 !priv->sec_info.wpa2_enabled && ((bss_desc->bcn_wpa_ie) &&
Arend van Spriel04b23122012-10-12 12:28:14 +0200240 ((*(bss_desc->bcn_wpa_ie)).
241 vend_hdr.element_id == WLAN_EID_VENDOR_SPECIFIC))
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700242 /*
243 * Privacy bit may NOT be set in some APs like
244 * LinkSys WRT54G && bss_desc->privacy
245 */
246 ) {
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700247 dev_dbg(priv->adapter->dev, "info: %s: WPA:"
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700248 " wpa_ie=%#x wpa2_ie=%#x WEP=%s WPA=%s WPA2=%s "
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700249 "EncMode=%#x privacy=%#x\n", __func__,
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700250 (bss_desc->bcn_wpa_ie) ?
251 (*(bss_desc->bcn_wpa_ie)).
252 vend_hdr.element_id : 0,
253 (bss_desc->bcn_rsn_ie) ?
254 (*(bss_desc->bcn_rsn_ie)).
255 ieee_hdr.element_id : 0,
Amitkumar Karwar5eb02e42012-02-24 21:36:04 -0800256 (priv->sec_info.wep_enabled) ? "e" : "d",
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700257 (priv->sec_info.wpa_enabled) ? "e" : "d",
258 (priv->sec_info.wpa2_enabled) ? "e" : "d",
259 priv->sec_info.encryption_mode,
260 bss_desc->privacy);
261 return true;
262 }
263 return false;
264}
265
266/*
267 * This function checks if wpa2 is enabled in driver and scanned network is
268 * compatible with it.
269 */
270static bool
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700271mwifiex_is_bss_wpa2(struct mwifiex_private *priv,
272 struct mwifiex_bssdescriptor *bss_desc)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700273{
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700274 if (!priv->sec_info.wep_enabled &&
275 !priv->sec_info.wpa_enabled &&
276 priv->sec_info.wpa2_enabled &&
277 ((bss_desc->bcn_rsn_ie) &&
278 ((*(bss_desc->bcn_rsn_ie)).ieee_hdr.element_id == WLAN_EID_RSN))) {
279 /*
280 * Privacy bit may NOT be set in some APs like
281 * LinkSys WRT54G && bss_desc->privacy
282 */
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700283 dev_dbg(priv->adapter->dev, "info: %s: WPA2: "
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700284 " wpa_ie=%#x wpa2_ie=%#x WEP=%s WPA=%s WPA2=%s "
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700285 "EncMode=%#x privacy=%#x\n", __func__,
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700286 (bss_desc->bcn_wpa_ie) ?
287 (*(bss_desc->bcn_wpa_ie)).
288 vend_hdr.element_id : 0,
289 (bss_desc->bcn_rsn_ie) ?
290 (*(bss_desc->bcn_rsn_ie)).
291 ieee_hdr.element_id : 0,
Amitkumar Karwar5eb02e42012-02-24 21:36:04 -0800292 (priv->sec_info.wep_enabled) ? "e" : "d",
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700293 (priv->sec_info.wpa_enabled) ? "e" : "d",
294 (priv->sec_info.wpa2_enabled) ? "e" : "d",
295 priv->sec_info.encryption_mode,
296 bss_desc->privacy);
297 return true;
298 }
299 return false;
300}
301
302/*
303 * This function checks if adhoc AES is enabled in driver and scanned network is
304 * compatible with it.
305 */
306static bool
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700307mwifiex_is_bss_adhoc_aes(struct mwifiex_private *priv,
308 struct mwifiex_bssdescriptor *bss_desc)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700309{
Amitkumar Karwar5eb02e42012-02-24 21:36:04 -0800310 if (!priv->sec_info.wep_enabled && !priv->sec_info.wpa_enabled &&
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700311 !priv->sec_info.wpa2_enabled &&
312 ((!bss_desc->bcn_wpa_ie) ||
Arend van Spriel04b23122012-10-12 12:28:14 +0200313 ((*(bss_desc->bcn_wpa_ie)).
314 vend_hdr.element_id != WLAN_EID_VENDOR_SPECIFIC)) &&
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700315 ((!bss_desc->bcn_rsn_ie) ||
316 ((*(bss_desc->bcn_rsn_ie)).ieee_hdr.element_id != WLAN_EID_RSN)) &&
317 !priv->sec_info.encryption_mode && bss_desc->privacy) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700318 return true;
319 }
320 return false;
321}
322
323/*
324 * This function checks if dynamic WEP is enabled in driver and scanned network
325 * is compatible with it.
326 */
327static bool
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700328mwifiex_is_bss_dynamic_wep(struct mwifiex_private *priv,
329 struct mwifiex_bssdescriptor *bss_desc)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700330{
Amitkumar Karwar5eb02e42012-02-24 21:36:04 -0800331 if (!priv->sec_info.wep_enabled && !priv->sec_info.wpa_enabled &&
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700332 !priv->sec_info.wpa2_enabled &&
333 ((!bss_desc->bcn_wpa_ie) ||
Arend van Spriel04b23122012-10-12 12:28:14 +0200334 ((*(bss_desc->bcn_wpa_ie)).
335 vend_hdr.element_id != WLAN_EID_VENDOR_SPECIFIC)) &&
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700336 ((!bss_desc->bcn_rsn_ie) ||
337 ((*(bss_desc->bcn_rsn_ie)).ieee_hdr.element_id != WLAN_EID_RSN)) &&
338 priv->sec_info.encryption_mode && bss_desc->privacy) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700339 dev_dbg(priv->adapter->dev, "info: %s: dynamic "
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700340 "WEP: wpa_ie=%#x wpa2_ie=%#x "
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700341 "EncMode=%#x privacy=%#x\n",
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700342 __func__,
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700343 (bss_desc->bcn_wpa_ie) ?
344 (*(bss_desc->bcn_wpa_ie)).
345 vend_hdr.element_id : 0,
346 (bss_desc->bcn_rsn_ie) ?
347 (*(bss_desc->bcn_rsn_ie)).
348 ieee_hdr.element_id : 0,
349 priv->sec_info.encryption_mode,
350 bss_desc->privacy);
351 return true;
352 }
353 return false;
354}
355
356/*
357 * This function checks if a scanned network is compatible with the driver
358 * settings.
359 *
360 * WEP WPA WPA2 ad-hoc encrypt Network
361 * enabled enabled enabled AES mode Privacy WPA WPA2 Compatible
362 * 0 0 0 0 NONE 0 0 0 yes No security
363 * 0 1 0 0 x 1x 1 x yes WPA (disable
364 * HT if no AES)
365 * 0 0 1 0 x 1x x 1 yes WPA2 (disable
366 * HT if no AES)
367 * 0 0 0 1 NONE 1 0 0 yes Ad-hoc AES
368 * 1 0 0 0 NONE 1 0 0 yes Static WEP
369 * (disable HT)
370 * 0 0 0 0 !=NONE 1 0 0 yes Dynamic WEP
371 *
372 * Compatibility is not matched while roaming, except for mode.
373 */
374static s32
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700375mwifiex_is_network_compatible(struct mwifiex_private *priv,
376 struct mwifiex_bssdescriptor *bss_desc, u32 mode)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700377{
378 struct mwifiex_adapter *adapter = priv->adapter;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700379
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700380 bss_desc->disable_11n = false;
381
382 /* Don't check for compatibility if roaming */
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700383 if (priv->media_connected &&
384 (priv->bss_mode == NL80211_IFTYPE_STATION) &&
385 (bss_desc->bss_mode == NL80211_IFTYPE_STATION))
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700386 return 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700387
388 if (priv->wps.session_enable) {
389 dev_dbg(adapter->dev,
390 "info: return success directly in WPS period\n");
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700391 return 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700392 }
393
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700394 if (mwifiex_is_bss_wapi(priv, bss_desc)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700395 dev_dbg(adapter->dev, "info: return success for WAPI AP\n");
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700396 return 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700397 }
398
399 if (bss_desc->bss_mode == mode) {
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700400 if (mwifiex_is_bss_no_sec(priv, bss_desc)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700401 /* No security */
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700402 return 0;
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700403 } else if (mwifiex_is_bss_static_wep(priv, bss_desc)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700404 /* Static WEP enabled */
405 dev_dbg(adapter->dev, "info: Disable 11n in WEP mode.\n");
406 bss_desc->disable_11n = true;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700407 return 0;
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700408 } else if (mwifiex_is_bss_wpa(priv, bss_desc)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700409 /* WPA enabled */
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700410 if (((priv->adapter->config_bands & BAND_GN ||
411 priv->adapter->config_bands & BAND_AN) &&
412 bss_desc->bcn_ht_cap) &&
413 !mwifiex_is_wpa_oui_present(bss_desc,
414 CIPHER_SUITE_CCMP)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700415
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700416 if (mwifiex_is_wpa_oui_present
417 (bss_desc, CIPHER_SUITE_TKIP)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700418 dev_dbg(adapter->dev,
419 "info: Disable 11n if AES "
420 "is not supported by AP\n");
421 bss_desc->disable_11n = true;
422 } else {
423 return -1;
424 }
425 }
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700426 return 0;
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700427 } else if (mwifiex_is_bss_wpa2(priv, bss_desc)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700428 /* WPA2 enabled */
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700429 if (((priv->adapter->config_bands & BAND_GN ||
430 priv->adapter->config_bands & BAND_AN) &&
431 bss_desc->bcn_ht_cap) &&
432 !mwifiex_is_rsn_oui_present(bss_desc,
433 CIPHER_SUITE_CCMP)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700434
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700435 if (mwifiex_is_rsn_oui_present
436 (bss_desc, CIPHER_SUITE_TKIP)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700437 dev_dbg(adapter->dev,
438 "info: Disable 11n if AES "
439 "is not supported by AP\n");
440 bss_desc->disable_11n = true;
441 } else {
442 return -1;
443 }
444 }
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700445 return 0;
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700446 } else if (mwifiex_is_bss_adhoc_aes(priv, bss_desc)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700447 /* Ad-hoc AES enabled */
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700448 return 0;
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700449 } else if (mwifiex_is_bss_dynamic_wep(priv, bss_desc)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700450 /* Dynamic WEP enabled */
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700451 return 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700452 }
453
454 /* Security doesn't match */
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700455 dev_dbg(adapter->dev,
456 "info: %s: failed: wpa_ie=%#x wpa2_ie=%#x WEP=%s "
457 "WPA=%s WPA2=%s EncMode=%#x privacy=%#x\n", __func__,
458 (bss_desc->bcn_wpa_ie) ?
459 (*(bss_desc->bcn_wpa_ie)).vend_hdr.element_id : 0,
460 (bss_desc->bcn_rsn_ie) ?
461 (*(bss_desc->bcn_rsn_ie)).ieee_hdr.element_id : 0,
462 (priv->sec_info.wep_enabled) ? "e" : "d",
463 (priv->sec_info.wpa_enabled) ? "e" : "d",
464 (priv->sec_info.wpa2_enabled) ? "e" : "d",
465 priv->sec_info.encryption_mode, bss_desc->privacy);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700466 return -1;
467 }
468
469 /* Mode doesn't match */
470 return -1;
471}
472
473/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700474 * This function creates a channel list for the driver to scan, based
475 * on region/band information.
476 *
477 * This routine is used for any scan that is not provided with a
478 * specific channel list to scan.
479 */
Amitkumar Karwar658f37b2012-06-06 21:12:42 -0700480static int
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700481mwifiex_scan_create_channel_list(struct mwifiex_private *priv,
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700482 const struct mwifiex_user_scan_cfg
483 *user_scan_in,
484 struct mwifiex_chan_scan_param_set
485 *scan_chan_list,
486 u8 filtered_scan)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700487{
488 enum ieee80211_band band;
489 struct ieee80211_supported_band *sband;
490 struct ieee80211_channel *ch;
491 struct mwifiex_adapter *adapter = priv->adapter;
492 int chan_idx = 0, i;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700493
494 for (band = 0; (band < IEEE80211_NUM_BANDS) ; band++) {
495
496 if (!priv->wdev->wiphy->bands[band])
497 continue;
498
499 sband = priv->wdev->wiphy->bands[band];
500
Amitkumar Karward06b7b92011-09-21 21:43:22 -0700501 for (i = 0; (i < sband->n_channels) ; i++) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700502 ch = &sband->channels[i];
503 if (ch->flags & IEEE80211_CHAN_DISABLED)
504 continue;
505 scan_chan_list[chan_idx].radio_type = band;
Amitkumar Karwar186630c2011-12-15 21:00:37 -0800506
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700507 if (user_scan_in &&
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700508 user_scan_in->chan_list[0].scan_time)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700509 scan_chan_list[chan_idx].max_scan_time =
510 cpu_to_le16((u16) user_scan_in->
511 chan_list[0].scan_time);
Amitkumar Karwar186630c2011-12-15 21:00:37 -0800512 else if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700513 scan_chan_list[chan_idx].max_scan_time =
514 cpu_to_le16(adapter->passive_scan_time);
515 else
516 scan_chan_list[chan_idx].max_scan_time =
517 cpu_to_le16(adapter->active_scan_time);
Amitkumar Karwar186630c2011-12-15 21:00:37 -0800518
519 if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700520 scan_chan_list[chan_idx].chan_scan_mode_bitmap
521 |= MWIFIEX_PASSIVE_SCAN;
522 else
523 scan_chan_list[chan_idx].chan_scan_mode_bitmap
524 &= ~MWIFIEX_PASSIVE_SCAN;
525 scan_chan_list[chan_idx].chan_number =
526 (u32) ch->hw_value;
527 if (filtered_scan) {
528 scan_chan_list[chan_idx].max_scan_time =
529 cpu_to_le16(adapter->specific_scan_time);
530 scan_chan_list[chan_idx].chan_scan_mode_bitmap
531 |= MWIFIEX_DISABLE_CHAN_FILT;
532 }
Amitkumar Karward06b7b92011-09-21 21:43:22 -0700533 chan_idx++;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700534 }
535
536 }
Amitkumar Karwar658f37b2012-06-06 21:12:42 -0700537 return chan_idx;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700538}
539
540/*
541 * This function constructs and sends multiple scan config commands to
542 * the firmware.
543 *
544 * Previous routines in the code flow have created a scan command configuration
545 * with any requested TLVs. This function splits the channel TLV into maximum
546 * channels supported per scan lists and sends the portion of the channel TLV,
547 * along with the other TLVs, to the firmware.
548 */
549static int
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700550mwifiex_scan_channel_list(struct mwifiex_private *priv,
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700551 u32 max_chan_per_scan, u8 filtered_scan,
552 struct mwifiex_scan_cmd_config *scan_cfg_out,
553 struct mwifiex_ie_types_chan_list_param_set
554 *chan_tlv_out,
555 struct mwifiex_chan_scan_param_set *scan_chan_list)
556{
557 int ret = 0;
558 struct mwifiex_chan_scan_param_set *tmp_chan_list;
559 struct mwifiex_chan_scan_param_set *start_chan;
560
561 u32 tlv_idx;
562 u32 total_scan_time;
563 u32 done_early;
564
565 if (!scan_cfg_out || !chan_tlv_out || !scan_chan_list) {
566 dev_dbg(priv->adapter->dev,
567 "info: Scan: Null detect: %p, %p, %p\n",
568 scan_cfg_out, chan_tlv_out, scan_chan_list);
569 return -1;
570 }
571
572 chan_tlv_out->header.type = cpu_to_le16(TLV_TYPE_CHANLIST);
573
574 /* Set the temp channel struct pointer to the start of the desired
575 list */
576 tmp_chan_list = scan_chan_list;
577
578 /* Loop through the desired channel list, sending a new firmware scan
579 commands for each max_chan_per_scan channels (or for 1,6,11
580 individually if configured accordingly) */
581 while (tmp_chan_list->chan_number) {
582
583 tlv_idx = 0;
584 total_scan_time = 0;
585 chan_tlv_out->header.len = 0;
586 start_chan = tmp_chan_list;
587 done_early = false;
588
589 /*
590 * Construct the Channel TLV for the scan command. Continue to
591 * insert channel TLVs until:
592 * - the tlv_idx hits the maximum configured per scan command
593 * - the next channel to insert is 0 (end of desired channel
594 * list)
595 * - done_early is set (controlling individual scanning of
596 * 1,6,11)
597 */
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700598 while (tlv_idx < max_chan_per_scan &&
599 tmp_chan_list->chan_number && !done_early) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700600
601 dev_dbg(priv->adapter->dev,
602 "info: Scan: Chan(%3d), Radio(%d),"
603 " Mode(%d, %d), Dur(%d)\n",
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700604 tmp_chan_list->chan_number,
605 tmp_chan_list->radio_type,
606 tmp_chan_list->chan_scan_mode_bitmap
607 & MWIFIEX_PASSIVE_SCAN,
608 (tmp_chan_list->chan_scan_mode_bitmap
609 & MWIFIEX_DISABLE_CHAN_FILT) >> 1,
610 le16_to_cpu(tmp_chan_list->max_scan_time));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700611
612 /* Copy the current channel TLV to the command being
613 prepared */
614 memcpy(chan_tlv_out->chan_scan_param + tlv_idx,
615 tmp_chan_list,
616 sizeof(chan_tlv_out->chan_scan_param));
617
618 /* Increment the TLV header length by the size
619 appended */
Wei Yongjun5570a912012-09-28 12:59:43 +0800620 le16_add_cpu(&chan_tlv_out->header.len,
621 sizeof(chan_tlv_out->chan_scan_param));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700622
623 /*
624 * The tlv buffer length is set to the number of bytes
625 * of the between the channel tlv pointer and the start
626 * of the tlv buffer. This compensates for any TLVs
627 * that were appended before the channel list.
628 */
629 scan_cfg_out->tlv_buf_len = (u32) ((u8 *) chan_tlv_out -
630 scan_cfg_out->tlv_buf);
631
632 /* Add the size of the channel tlv header and the data
633 length */
634 scan_cfg_out->tlv_buf_len +=
635 (sizeof(chan_tlv_out->header)
636 + le16_to_cpu(chan_tlv_out->header.len));
637
638 /* Increment the index to the channel tlv we are
639 constructing */
640 tlv_idx++;
641
642 /* Count the total scan time per command */
643 total_scan_time +=
644 le16_to_cpu(tmp_chan_list->max_scan_time);
645
646 done_early = false;
647
648 /* Stop the loop if the *current* channel is in the
649 1,6,11 set and we are not filtering on a BSSID
650 or SSID. */
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700651 if (!filtered_scan &&
652 (tmp_chan_list->chan_number == 1 ||
653 tmp_chan_list->chan_number == 6 ||
654 tmp_chan_list->chan_number == 11))
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700655 done_early = true;
656
657 /* Increment the tmp pointer to the next channel to
658 be scanned */
659 tmp_chan_list++;
660
661 /* Stop the loop if the *next* channel is in the 1,6,11
662 set. This will cause it to be the only channel
663 scanned on the next interation */
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700664 if (!filtered_scan &&
665 (tmp_chan_list->chan_number == 1 ||
666 tmp_chan_list->chan_number == 6 ||
667 tmp_chan_list->chan_number == 11))
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700668 done_early = true;
669 }
670
671 /* The total scan time should be less than scan command timeout
672 value */
673 if (total_scan_time > MWIFIEX_MAX_TOTAL_SCAN_TIME) {
674 dev_err(priv->adapter->dev, "total scan time %dms"
675 " is over limit (%dms), scan skipped\n",
676 total_scan_time, MWIFIEX_MAX_TOTAL_SCAN_TIME);
677 ret = -1;
678 break;
679 }
680
681 priv->adapter->scan_channels = start_chan;
682
683 /* Send the scan command to the firmware with the specified
684 cfg */
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700685 ret = mwifiex_send_cmd_async(priv, HostCmd_CMD_802_11_SCAN,
686 HostCmd_ACT_GEN_SET, 0,
687 scan_cfg_out);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700688 if (ret)
689 break;
690 }
691
692 if (ret)
693 return -1;
694
695 return 0;
696}
697
698/*
699 * This function constructs a scan command configuration structure to use
700 * in scan commands.
701 *
702 * Application layer or other functions can invoke network scanning
703 * with a scan configuration supplied in a user scan configuration structure.
704 * This structure is used as the basis of one or many scan command configuration
705 * commands that are sent to the command processing module and eventually to the
706 * firmware.
707 *
708 * This function creates a scan command configuration structure based on the
709 * following user supplied parameters (if present):
710 * - SSID filter
711 * - BSSID filter
712 * - Number of Probes to be sent
713 * - Channel list
714 *
715 * If the SSID or BSSID filter is not present, the filter is disabled/cleared.
716 * If the number of probes is not set, adapter default setting is used.
717 */
718static void
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700719mwifiex_config_scan(struct mwifiex_private *priv,
720 const struct mwifiex_user_scan_cfg *user_scan_in,
721 struct mwifiex_scan_cmd_config *scan_cfg_out,
722 struct mwifiex_ie_types_chan_list_param_set **chan_list_out,
723 struct mwifiex_chan_scan_param_set *scan_chan_list,
724 u8 *max_chan_per_scan, u8 *filtered_scan,
725 u8 *scan_current_only)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700726{
727 struct mwifiex_adapter *adapter = priv->adapter;
728 struct mwifiex_ie_types_num_probes *num_probes_tlv;
729 struct mwifiex_ie_types_wildcard_ssid_params *wildcard_ssid_tlv;
730 struct mwifiex_ie_types_rates_param_set *rates_tlv;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700731 u8 *tlv_pos;
732 u32 num_probes;
733 u32 ssid_len;
734 u32 chan_idx;
Amitkumar Karwar658f37b2012-06-06 21:12:42 -0700735 u32 chan_num;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700736 u32 scan_type;
737 u16 scan_dur;
738 u8 channel;
739 u8 radio_type;
Amitkumar Karwarbe0b2812012-02-27 22:04:15 -0800740 int i;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700741 u8 ssid_filter;
742 u8 rates[MWIFIEX_SUPPORTED_RATES];
743 u32 rates_size;
744 struct mwifiex_ie_types_htcap *ht_cap;
745
746 /* The tlv_buf_len is calculated for each scan command. The TLVs added
747 in this routine will be preserved since the routine that sends the
748 command will append channelTLVs at *chan_list_out. The difference
749 between the *chan_list_out and the tlv_buf start will be used to
750 calculate the size of anything we add in this routine. */
751 scan_cfg_out->tlv_buf_len = 0;
752
753 /* Running tlv pointer. Assigned to chan_list_out at end of function
754 so later routines know where channels can be added to the command
755 buf */
756 tlv_pos = scan_cfg_out->tlv_buf;
757
758 /* Initialize the scan as un-filtered; the flag is later set to TRUE
759 below if a SSID or BSSID filter is sent in the command */
760 *filtered_scan = false;
761
762 /* Initialize the scan as not being only on the current channel. If
763 the channel list is customized, only contains one channel, and is
764 the active channel, this is set true and data flow is not halted. */
765 *scan_current_only = false;
766
767 if (user_scan_in) {
768
769 /* Default the ssid_filter flag to TRUE, set false under
770 certain wildcard conditions and qualified by the existence
771 of an SSID list before marking the scan as filtered */
772 ssid_filter = true;
773
774 /* Set the BSS type scan filter, use Adapter setting if
775 unset */
776 scan_cfg_out->bss_mode =
777 (user_scan_in->bss_mode ? (u8) user_scan_in->
778 bss_mode : (u8) adapter->scan_mode);
779
780 /* Set the number of probes to send, use Adapter setting
781 if unset */
782 num_probes =
783 (user_scan_in->num_probes ? user_scan_in->
784 num_probes : adapter->scan_probes);
785
786 /*
787 * Set the BSSID filter to the incoming configuration,
788 * if non-zero. If not set, it will remain disabled
789 * (all zeros).
790 */
791 memcpy(scan_cfg_out->specific_bssid,
792 user_scan_in->specific_bssid,
793 sizeof(scan_cfg_out->specific_bssid));
794
Amitkumar Karwarbe0b2812012-02-27 22:04:15 -0800795 for (i = 0; i < user_scan_in->num_ssids; i++) {
796 ssid_len = user_scan_in->ssid_list[i].ssid_len;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700797
798 wildcard_ssid_tlv =
799 (struct mwifiex_ie_types_wildcard_ssid_params *)
800 tlv_pos;
801 wildcard_ssid_tlv->header.type =
802 cpu_to_le16(TLV_TYPE_WILDCARDSSID);
803 wildcard_ssid_tlv->header.len = cpu_to_le16(
804 (u16) (ssid_len + sizeof(wildcard_ssid_tlv->
805 max_ssid_length)));
Amitkumar Karwarfada1052011-11-09 21:36:21 -0800806
Amitkumar Karwarbe0b2812012-02-27 22:04:15 -0800807 /*
808 * max_ssid_length = 0 tells firmware to perform
809 * specific scan for the SSID filled, whereas
810 * max_ssid_length = IEEE80211_MAX_SSID_LEN is for
811 * wildcard scan.
812 */
813 if (ssid_len)
814 wildcard_ssid_tlv->max_ssid_length = 0;
815 else
816 wildcard_ssid_tlv->max_ssid_length =
817 IEEE80211_MAX_SSID_LEN;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700818
819 memcpy(wildcard_ssid_tlv->ssid,
Amitkumar Karwarbe0b2812012-02-27 22:04:15 -0800820 user_scan_in->ssid_list[i].ssid, ssid_len);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700821
822 tlv_pos += (sizeof(wildcard_ssid_tlv->header)
823 + le16_to_cpu(wildcard_ssid_tlv->header.len));
824
Amitkumar Karwarbe0b2812012-02-27 22:04:15 -0800825 dev_dbg(adapter->dev, "info: scan: ssid[%d]: %s, %d\n",
826 i, wildcard_ssid_tlv->ssid,
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700827 wildcard_ssid_tlv->max_ssid_length);
828
829 /* Empty wildcard ssid with a maxlen will match many or
830 potentially all SSIDs (maxlen == 32), therefore do
831 not treat the scan as
832 filtered. */
833 if (!ssid_len && wildcard_ssid_tlv->max_ssid_length)
834 ssid_filter = false;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700835 }
836
837 /*
838 * The default number of channels sent in the command is low to
839 * ensure the response buffer from the firmware does not
840 * truncate scan results. That is not an issue with an SSID
841 * or BSSID filter applied to the scan results in the firmware.
842 */
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700843 if ((i && ssid_filter) ||
Bing Zhao84f6a952012-08-27 20:32:54 -0700844 !is_zero_ether_addr(scan_cfg_out->specific_bssid))
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700845 *filtered_scan = true;
846 } else {
847 scan_cfg_out->bss_mode = (u8) adapter->scan_mode;
848 num_probes = adapter->scan_probes;
849 }
850
851 /*
852 * If a specific BSSID or SSID is used, the number of channels in the
853 * scan command will be increased to the absolute maximum.
854 */
855 if (*filtered_scan)
856 *max_chan_per_scan = MWIFIEX_MAX_CHANNELS_PER_SPECIFIC_SCAN;
857 else
Amitkumar Karwar658f37b2012-06-06 21:12:42 -0700858 *max_chan_per_scan = MWIFIEX_DEF_CHANNELS_PER_SCAN_CMD;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700859
860 /* If the input config or adapter has the number of Probes set,
861 add tlv */
862 if (num_probes) {
863
864 dev_dbg(adapter->dev, "info: scan: num_probes = %d\n",
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700865 num_probes);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700866
867 num_probes_tlv = (struct mwifiex_ie_types_num_probes *) tlv_pos;
868 num_probes_tlv->header.type = cpu_to_le16(TLV_TYPE_NUMPROBES);
869 num_probes_tlv->header.len =
870 cpu_to_le16(sizeof(num_probes_tlv->num_probes));
871 num_probes_tlv->num_probes = cpu_to_le16((u16) num_probes);
872
873 tlv_pos += sizeof(num_probes_tlv->header) +
874 le16_to_cpu(num_probes_tlv->header.len);
875
876 }
877
878 /* Append rates tlv */
879 memset(rates, 0, sizeof(rates));
880
881 rates_size = mwifiex_get_supported_rates(priv, rates);
882
883 rates_tlv = (struct mwifiex_ie_types_rates_param_set *) tlv_pos;
884 rates_tlv->header.type = cpu_to_le16(WLAN_EID_SUPP_RATES);
885 rates_tlv->header.len = cpu_to_le16((u16) rates_size);
886 memcpy(rates_tlv->rates, rates, rates_size);
887 tlv_pos += sizeof(rates_tlv->header) + rates_size;
888
889 dev_dbg(adapter->dev, "info: SCAN_CMD: Rates size = %d\n", rates_size);
890
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700891 if (ISSUPP_11NENABLED(priv->adapter->fw_cap_info) &&
892 (priv->adapter->config_bands & BAND_GN ||
893 priv->adapter->config_bands & BAND_AN)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700894 ht_cap = (struct mwifiex_ie_types_htcap *) tlv_pos;
895 memset(ht_cap, 0, sizeof(struct mwifiex_ie_types_htcap));
896 ht_cap->header.type = cpu_to_le16(WLAN_EID_HT_CAPABILITY);
897 ht_cap->header.len =
898 cpu_to_le16(sizeof(struct ieee80211_ht_cap));
Amitkumar Karwara46b7b52011-04-27 19:13:12 -0700899 radio_type =
900 mwifiex_band_to_radio_type(priv->adapter->config_bands);
901 mwifiex_fill_cap_info(priv, radio_type, ht_cap);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700902 tlv_pos += sizeof(struct mwifiex_ie_types_htcap);
903 }
904
905 /* Append vendor specific IE TLV */
906 mwifiex_cmd_append_vsie_tlv(priv, MWIFIEX_VSIE_MASK_SCAN, &tlv_pos);
907
908 /*
909 * Set the output for the channel TLV to the address in the tlv buffer
910 * past any TLVs that were added in this function (SSID, num_probes).
911 * Channel TLVs will be added past this for each scan command,
912 * preserving the TLVs that were previously added.
913 */
914 *chan_list_out =
915 (struct mwifiex_ie_types_chan_list_param_set *) tlv_pos;
916
917 if (user_scan_in && user_scan_in->chan_list[0].chan_number) {
918
919 dev_dbg(adapter->dev, "info: Scan: Using supplied channel list\n");
920
921 for (chan_idx = 0;
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700922 chan_idx < MWIFIEX_USER_SCAN_CHAN_MAX &&
923 user_scan_in->chan_list[chan_idx].chan_number;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700924 chan_idx++) {
925
926 channel = user_scan_in->chan_list[chan_idx].chan_number;
927 (scan_chan_list + chan_idx)->chan_number = channel;
928
929 radio_type =
930 user_scan_in->chan_list[chan_idx].radio_type;
931 (scan_chan_list + chan_idx)->radio_type = radio_type;
932
933 scan_type = user_scan_in->chan_list[chan_idx].scan_type;
934
935 if (scan_type == MWIFIEX_SCAN_TYPE_PASSIVE)
936 (scan_chan_list +
937 chan_idx)->chan_scan_mode_bitmap
938 |= MWIFIEX_PASSIVE_SCAN;
939 else
940 (scan_chan_list +
941 chan_idx)->chan_scan_mode_bitmap
942 &= ~MWIFIEX_PASSIVE_SCAN;
943
Amitkumar Karwarf3e1af32012-10-19 19:19:18 -0700944 if (*filtered_scan)
945 (scan_chan_list +
946 chan_idx)->chan_scan_mode_bitmap
947 |= MWIFIEX_DISABLE_CHAN_FILT;
948
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700949 if (user_scan_in->chan_list[chan_idx].scan_time) {
950 scan_dur = (u16) user_scan_in->
951 chan_list[chan_idx].scan_time;
952 } else {
953 if (scan_type == MWIFIEX_SCAN_TYPE_PASSIVE)
954 scan_dur = adapter->passive_scan_time;
955 else if (*filtered_scan)
956 scan_dur = adapter->specific_scan_time;
957 else
958 scan_dur = adapter->active_scan_time;
959 }
960
961 (scan_chan_list + chan_idx)->min_scan_time =
962 cpu_to_le16(scan_dur);
963 (scan_chan_list + chan_idx)->max_scan_time =
964 cpu_to_le16(scan_dur);
965 }
966
967 /* Check if we are only scanning the current channel */
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700968 if ((chan_idx == 1) &&
969 (user_scan_in->chan_list[0].chan_number ==
970 priv->curr_bss_params.bss_descriptor.channel)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700971 *scan_current_only = true;
972 dev_dbg(adapter->dev,
973 "info: Scan: Scanning current channel only\n");
974 }
Amitkumar Karwar658f37b2012-06-06 21:12:42 -0700975 chan_num = chan_idx;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700976 } else {
977 dev_dbg(adapter->dev,
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700978 "info: Scan: Creating full region channel list\n");
Amitkumar Karwar658f37b2012-06-06 21:12:42 -0700979 chan_num = mwifiex_scan_create_channel_list(priv, user_scan_in,
980 scan_chan_list,
981 *filtered_scan);
982 }
983
984 /*
985 * In associated state we will reduce the number of channels scanned per
986 * scan command to avoid any traffic delay/loss. This number is decided
987 * based on total number of channels to be scanned due to constraints
988 * of command buffers.
989 */
990 if (priv->media_connected) {
991 if (chan_num < MWIFIEX_LIMIT_1_CHANNEL_PER_SCAN_CMD)
992 *max_chan_per_scan = 1;
993 else if (chan_num < MWIFIEX_LIMIT_2_CHANNELS_PER_SCAN_CMD)
994 *max_chan_per_scan = 2;
995 else if (chan_num < MWIFIEX_LIMIT_3_CHANNELS_PER_SCAN_CMD)
996 *max_chan_per_scan = 3;
Amitkumar Karwarb7525db2012-08-03 18:06:03 -0700997 else
998 *max_chan_per_scan = 4;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700999 }
1000}
1001
1002/*
1003 * This function inspects the scan response buffer for pointers to
1004 * expected TLVs.
1005 *
1006 * TLVs can be included at the end of the scan response BSS information.
1007 *
1008 * Data in the buffer is parsed pointers to TLVs that can potentially
1009 * be passed back in the response.
1010 */
1011static void
1012mwifiex_ret_802_11_scan_get_tlv_ptrs(struct mwifiex_adapter *adapter,
1013 struct mwifiex_ie_types_data *tlv,
1014 u32 tlv_buf_size, u32 req_tlv_type,
1015 struct mwifiex_ie_types_data **tlv_data)
1016{
1017 struct mwifiex_ie_types_data *current_tlv;
1018 u32 tlv_buf_left;
1019 u32 tlv_type;
1020 u32 tlv_len;
1021
1022 current_tlv = tlv;
1023 tlv_buf_left = tlv_buf_size;
1024 *tlv_data = NULL;
1025
1026 dev_dbg(adapter->dev, "info: SCAN_RESP: tlv_buf_size = %d\n",
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001027 tlv_buf_size);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001028
1029 while (tlv_buf_left >= sizeof(struct mwifiex_ie_types_header)) {
1030
1031 tlv_type = le16_to_cpu(current_tlv->header.type);
1032 tlv_len = le16_to_cpu(current_tlv->header.len);
1033
1034 if (sizeof(tlv->header) + tlv_len > tlv_buf_left) {
1035 dev_err(adapter->dev, "SCAN_RESP: TLV buffer corrupt\n");
1036 break;
1037 }
1038
1039 if (req_tlv_type == tlv_type) {
1040 switch (tlv_type) {
1041 case TLV_TYPE_TSFTIMESTAMP:
1042 dev_dbg(adapter->dev, "info: SCAN_RESP: TSF "
1043 "timestamp TLV, len = %d\n", tlv_len);
Joe Perches2c208892012-06-04 12:44:17 +00001044 *tlv_data = current_tlv;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001045 break;
1046 case TLV_TYPE_CHANNELBANDLIST:
1047 dev_dbg(adapter->dev, "info: SCAN_RESP: channel"
1048 " band list TLV, len = %d\n", tlv_len);
Joe Perches2c208892012-06-04 12:44:17 +00001049 *tlv_data = current_tlv;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001050 break;
1051 default:
1052 dev_err(adapter->dev,
1053 "SCAN_RESP: unhandled TLV = %d\n",
1054 tlv_type);
1055 /* Give up, this seems corrupted */
1056 return;
1057 }
1058 }
1059
1060 if (*tlv_data)
1061 break;
1062
1063
1064 tlv_buf_left -= (sizeof(tlv->header) + tlv_len);
1065 current_tlv =
1066 (struct mwifiex_ie_types_data *) (current_tlv->data +
1067 tlv_len);
1068
1069 } /* while */
1070}
1071
1072/*
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001073 * This function parses provided beacon buffer and updates
1074 * respective fields in bss descriptor structure.
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001075 */
Amitkumar Karwar9558a402012-04-16 21:36:51 -07001076int mwifiex_update_bss_desc_with_ie(struct mwifiex_adapter *adapter,
1077 struct mwifiex_bssdescriptor *bss_entry)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001078{
1079 int ret = 0;
1080 u8 element_id;
1081 struct ieee_types_fh_param_set *fh_param_set;
1082 struct ieee_types_ds_param_set *ds_param_set;
1083 struct ieee_types_cf_param_set *cf_param_set;
1084 struct ieee_types_ibss_param_set *ibss_param_set;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001085 u8 *current_ptr;
1086 u8 *rate;
1087 u8 element_len;
1088 u16 total_ie_len;
1089 u8 bytes_to_copy;
1090 u8 rate_size;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001091 u8 found_data_rate_ie;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001092 u32 bytes_left;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001093 struct ieee_types_vendor_specific *vendor_ie;
1094 const u8 wpa_oui[4] = { 0x00, 0x50, 0xf2, 0x01 };
1095 const u8 wmm_oui[4] = { 0x00, 0x50, 0xf2, 0x02 };
1096
1097 found_data_rate_ie = false;
1098 rate_size = 0;
Amitkumar Karwar9558a402012-04-16 21:36:51 -07001099 current_ptr = bss_entry->beacon_buf;
1100 bytes_left = bss_entry->beacon_buf_size;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001101
1102 /* Process variable IE */
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001103 while (bytes_left >= 2) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001104 element_id = *current_ptr;
1105 element_len = *(current_ptr + 1);
1106 total_ie_len = element_len + sizeof(struct ieee_types_header);
1107
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001108 if (bytes_left < total_ie_len) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001109 dev_err(adapter->dev, "err: InterpretIE: in processing"
1110 " IE, bytes left < IE length\n");
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001111 return -1;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001112 }
1113 switch (element_id) {
1114 case WLAN_EID_SSID:
1115 bss_entry->ssid.ssid_len = element_len;
1116 memcpy(bss_entry->ssid.ssid, (current_ptr + 2),
1117 element_len);
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001118 dev_dbg(adapter->dev,
1119 "info: InterpretIE: ssid: %-32s\n",
1120 bss_entry->ssid.ssid);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001121 break;
1122
1123 case WLAN_EID_SUPP_RATES:
1124 memcpy(bss_entry->data_rates, current_ptr + 2,
1125 element_len);
1126 memcpy(bss_entry->supported_rates, current_ptr + 2,
1127 element_len);
1128 rate_size = element_len;
1129 found_data_rate_ie = true;
1130 break;
1131
1132 case WLAN_EID_FH_PARAMS:
1133 fh_param_set =
1134 (struct ieee_types_fh_param_set *) current_ptr;
1135 memcpy(&bss_entry->phy_param_set.fh_param_set,
1136 fh_param_set,
1137 sizeof(struct ieee_types_fh_param_set));
1138 break;
1139
1140 case WLAN_EID_DS_PARAMS:
1141 ds_param_set =
1142 (struct ieee_types_ds_param_set *) current_ptr;
1143
1144 bss_entry->channel = ds_param_set->current_chan;
1145
1146 memcpy(&bss_entry->phy_param_set.ds_param_set,
1147 ds_param_set,
1148 sizeof(struct ieee_types_ds_param_set));
1149 break;
1150
1151 case WLAN_EID_CF_PARAMS:
1152 cf_param_set =
1153 (struct ieee_types_cf_param_set *) current_ptr;
1154 memcpy(&bss_entry->ss_param_set.cf_param_set,
1155 cf_param_set,
1156 sizeof(struct ieee_types_cf_param_set));
1157 break;
1158
1159 case WLAN_EID_IBSS_PARAMS:
1160 ibss_param_set =
1161 (struct ieee_types_ibss_param_set *)
1162 current_ptr;
1163 memcpy(&bss_entry->ss_param_set.ibss_param_set,
1164 ibss_param_set,
1165 sizeof(struct ieee_types_ibss_param_set));
1166 break;
1167
1168 case WLAN_EID_ERP_INFO:
1169 bss_entry->erp_flags = *(current_ptr + 2);
1170 break;
1171
1172 case WLAN_EID_EXT_SUPP_RATES:
1173 /*
1174 * Only process extended supported rate
1175 * if data rate is already found.
1176 * Data rate IE should come before
1177 * extended supported rate IE
1178 */
1179 if (found_data_rate_ie) {
1180 if ((element_len + rate_size) >
1181 MWIFIEX_SUPPORTED_RATES)
1182 bytes_to_copy =
1183 (MWIFIEX_SUPPORTED_RATES -
1184 rate_size);
1185 else
1186 bytes_to_copy = element_len;
1187
1188 rate = (u8 *) bss_entry->data_rates;
1189 rate += rate_size;
1190 memcpy(rate, current_ptr + 2, bytes_to_copy);
1191
1192 rate = (u8 *) bss_entry->supported_rates;
1193 rate += rate_size;
1194 memcpy(rate, current_ptr + 2, bytes_to_copy);
1195 }
1196 break;
1197
1198 case WLAN_EID_VENDOR_SPECIFIC:
1199 vendor_ie = (struct ieee_types_vendor_specific *)
1200 current_ptr;
1201
1202 if (!memcmp
1203 (vendor_ie->vend_hdr.oui, wpa_oui,
1204 sizeof(wpa_oui))) {
1205 bss_entry->bcn_wpa_ie =
1206 (struct ieee_types_vendor_specific *)
1207 current_ptr;
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001208 bss_entry->wpa_offset = (u16)
1209 (current_ptr - bss_entry->beacon_buf);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001210 } else if (!memcmp(vendor_ie->vend_hdr.oui, wmm_oui,
1211 sizeof(wmm_oui))) {
1212 if (total_ie_len ==
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001213 sizeof(struct ieee_types_wmm_parameter) ||
1214 total_ie_len ==
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001215 sizeof(struct ieee_types_wmm_info))
1216 /*
1217 * Only accept and copy the WMM IE if
1218 * it matches the size expected for the
1219 * WMM Info IE or the WMM Parameter IE.
1220 */
1221 memcpy((u8 *) &bss_entry->wmm_ie,
1222 current_ptr, total_ie_len);
1223 }
1224 break;
1225 case WLAN_EID_RSN:
1226 bss_entry->bcn_rsn_ie =
1227 (struct ieee_types_generic *) current_ptr;
1228 bss_entry->rsn_offset = (u16) (current_ptr -
1229 bss_entry->beacon_buf);
1230 break;
1231 case WLAN_EID_BSS_AC_ACCESS_DELAY:
1232 bss_entry->bcn_wapi_ie =
1233 (struct ieee_types_generic *) current_ptr;
1234 bss_entry->wapi_offset = (u16) (current_ptr -
1235 bss_entry->beacon_buf);
1236 break;
1237 case WLAN_EID_HT_CAPABILITY:
1238 bss_entry->bcn_ht_cap = (struct ieee80211_ht_cap *)
1239 (current_ptr +
1240 sizeof(struct ieee_types_header));
1241 bss_entry->ht_cap_offset = (u16) (current_ptr +
1242 sizeof(struct ieee_types_header) -
1243 bss_entry->beacon_buf);
1244 break;
Johannes Berg074d46d2012-03-15 19:45:16 +01001245 case WLAN_EID_HT_OPERATION:
1246 bss_entry->bcn_ht_oper =
1247 (struct ieee80211_ht_operation *)(current_ptr +
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001248 sizeof(struct ieee_types_header));
1249 bss_entry->ht_info_offset = (u16) (current_ptr +
1250 sizeof(struct ieee_types_header) -
1251 bss_entry->beacon_buf);
1252 break;
1253 case WLAN_EID_BSS_COEX_2040:
Joe Perches2c208892012-06-04 12:44:17 +00001254 bss_entry->bcn_bss_co_2040 = current_ptr +
1255 sizeof(struct ieee_types_header);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001256 bss_entry->bss_co_2040_offset = (u16) (current_ptr +
1257 sizeof(struct ieee_types_header) -
1258 bss_entry->beacon_buf);
1259 break;
1260 case WLAN_EID_EXT_CAPABILITY:
Joe Perches2c208892012-06-04 12:44:17 +00001261 bss_entry->bcn_ext_cap = current_ptr +
1262 sizeof(struct ieee_types_header);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001263 bss_entry->ext_cap_offset = (u16) (current_ptr +
1264 sizeof(struct ieee_types_header) -
1265 bss_entry->beacon_buf);
1266 break;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001267 default:
1268 break;
1269 }
1270
1271 current_ptr += element_len + 2;
1272
1273 /* Need to account for IE ID and IE Len */
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001274 bytes_left -= (element_len + 2);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001275
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001276 } /* while (bytes_left > 2) */
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001277 return ret;
1278}
1279
1280/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001281 * This function converts radio type scan parameter to a band configuration
1282 * to be used in join command.
1283 */
1284static u8
1285mwifiex_radio_type_to_band(u8 radio_type)
1286{
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001287 switch (radio_type) {
1288 case HostCmd_SCAN_RADIO_TYPE_A:
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -07001289 return BAND_A;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001290 case HostCmd_SCAN_RADIO_TYPE_BG:
1291 default:
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -07001292 return BAND_G;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001293 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001294}
1295
1296/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001297 * This is an internal function used to start a scan based on an input
1298 * configuration.
1299 *
1300 * This uses the input user scan configuration information when provided in
1301 * order to send the appropriate scan commands to firmware to populate or
1302 * update the internal driver scan table.
1303 */
Amitkumar Karwar1a1fb972012-06-27 19:57:56 -07001304int mwifiex_scan_networks(struct mwifiex_private *priv,
1305 const struct mwifiex_user_scan_cfg *user_scan_in)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001306{
Bing Zhaoc2476332012-10-05 20:21:40 -07001307 int ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001308 struct mwifiex_adapter *adapter = priv->adapter;
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -07001309 struct cmd_ctrl_node *cmd_node;
1310 union mwifiex_scan_cmd_config_tlv *scan_cfg_out;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001311 struct mwifiex_ie_types_chan_list_param_set *chan_list_out;
1312 u32 buf_size;
1313 struct mwifiex_chan_scan_param_set *scan_chan_list;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001314 u8 filtered_scan;
1315 u8 scan_current_chan_only;
1316 u8 max_chan_per_scan;
1317 unsigned long flags;
1318
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001319 if (adapter->scan_processing) {
Bing Zhaoc2476332012-10-05 20:21:40 -07001320 dev_err(adapter->dev, "cmd: Scan already in process...\n");
1321 return -EBUSY;
1322 }
1323
1324 if (priv->scan_block) {
1325 dev_err(adapter->dev,
1326 "cmd: Scan is blocked during association...\n");
1327 return -EBUSY;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001328 }
1329
1330 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
1331 adapter->scan_processing = true;
1332 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
1333
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001334 scan_cfg_out = kzalloc(sizeof(union mwifiex_scan_cmd_config_tlv),
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001335 GFP_KERNEL);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001336 if (!scan_cfg_out) {
1337 dev_err(adapter->dev, "failed to alloc scan_cfg_out\n");
Amitkumar Karwar061f2e62012-10-05 20:21:41 -07001338 ret = -ENOMEM;
1339 goto done;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001340 }
1341
1342 buf_size = sizeof(struct mwifiex_chan_scan_param_set) *
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001343 MWIFIEX_USER_SCAN_CHAN_MAX;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001344 scan_chan_list = kzalloc(buf_size, GFP_KERNEL);
1345 if (!scan_chan_list) {
1346 dev_err(adapter->dev, "failed to alloc scan_chan_list\n");
1347 kfree(scan_cfg_out);
Amitkumar Karwar061f2e62012-10-05 20:21:41 -07001348 ret = -ENOMEM;
1349 goto done;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001350 }
1351
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001352 mwifiex_config_scan(priv, user_scan_in, &scan_cfg_out->config,
1353 &chan_list_out, scan_chan_list, &max_chan_per_scan,
1354 &filtered_scan, &scan_current_chan_only);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001355
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001356 ret = mwifiex_scan_channel_list(priv, max_chan_per_scan, filtered_scan,
1357 &scan_cfg_out->config, chan_list_out,
1358 scan_chan_list);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001359
1360 /* Get scan command from scan_pending_q and put to cmd_pending_q */
1361 if (!ret) {
1362 spin_lock_irqsave(&adapter->scan_pending_q_lock, flags);
1363 if (!list_empty(&adapter->scan_pending_q)) {
1364 cmd_node = list_first_entry(&adapter->scan_pending_q,
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001365 struct cmd_ctrl_node, list);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001366 list_del(&cmd_node->list);
1367 spin_unlock_irqrestore(&adapter->scan_pending_q_lock,
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001368 flags);
Amitkumar Karwarefaaa8b2011-10-12 20:28:06 -07001369 adapter->cmd_queued = cmd_node;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001370 mwifiex_insert_cmd_to_pending_q(adapter, cmd_node,
1371 true);
Amitkumar Karwar1a1fb972012-06-27 19:57:56 -07001372 queue_work(adapter->workqueue, &adapter->main_work);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001373 } else {
1374 spin_unlock_irqrestore(&adapter->scan_pending_q_lock,
1375 flags);
1376 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001377 }
1378
1379 kfree(scan_cfg_out);
1380 kfree(scan_chan_list);
Amitkumar Karwar061f2e62012-10-05 20:21:41 -07001381done:
1382 if (ret) {
1383 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
1384 adapter->scan_processing = false;
1385 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
1386 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001387 return ret;
1388}
1389
1390/*
1391 * This function prepares a scan command to be sent to the firmware.
1392 *
1393 * This uses the scan command configuration sent to the command processing
1394 * module in command preparation stage to configure a scan command structure
1395 * to send to firmware.
1396 *
1397 * The fixed fields specifying the BSS type and BSSID filters as well as a
1398 * variable number/length of TLVs are sent in the command to firmware.
1399 *
1400 * Preparation also includes -
1401 * - Setting command ID, and proper size
1402 * - Ensuring correct endian-ness
1403 */
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -07001404int mwifiex_cmd_802_11_scan(struct host_cmd_ds_command *cmd,
1405 struct mwifiex_scan_cmd_config *scan_cfg)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001406{
1407 struct host_cmd_ds_802_11_scan *scan_cmd = &cmd->params.scan;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001408
1409 /* Set fixed field variables in scan command */
1410 scan_cmd->bss_mode = scan_cfg->bss_mode;
1411 memcpy(scan_cmd->bssid, scan_cfg->specific_bssid,
1412 sizeof(scan_cmd->bssid));
1413 memcpy(scan_cmd->tlv_buffer, scan_cfg->tlv_buf, scan_cfg->tlv_buf_len);
1414
1415 cmd->command = cpu_to_le16(HostCmd_CMD_802_11_SCAN);
1416
1417 /* Size is equal to the sizeof(fixed portions) + the TLV len + header */
1418 cmd->size = cpu_to_le16((u16) (sizeof(scan_cmd->bss_mode)
1419 + sizeof(scan_cmd->bssid)
1420 + scan_cfg->tlv_buf_len + S_DS_GEN));
1421
1422 return 0;
1423}
1424
1425/*
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001426 * This function checks compatibility of requested network with current
1427 * driver settings.
1428 */
1429int mwifiex_check_network_compatibility(struct mwifiex_private *priv,
1430 struct mwifiex_bssdescriptor *bss_desc)
1431{
1432 int ret = -1;
1433
1434 if (!bss_desc)
1435 return -1;
1436
Yogesh Ashok Powar6685d102012-03-12 19:35:10 -07001437 if ((mwifiex_get_cfp(priv, (u8) bss_desc->bss_band,
1438 (u16) bss_desc->channel, 0))) {
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001439 switch (priv->bss_mode) {
1440 case NL80211_IFTYPE_STATION:
1441 case NL80211_IFTYPE_ADHOC:
1442 ret = mwifiex_is_network_compatible(priv, bss_desc,
1443 priv->bss_mode);
1444 if (ret)
Amitkumar Karwar06975882012-10-05 20:21:42 -07001445 dev_err(priv->adapter->dev,
1446 "Incompatible network settings\n");
Fengguang Wu2f9279b2012-08-07 10:26:53 +08001447 break;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001448 default:
Fengguang Wu2f9279b2012-08-07 10:26:53 +08001449 ret = 0;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001450 }
1451 }
1452
1453 return ret;
1454}
1455
Amitkumar Karwar9558a402012-04-16 21:36:51 -07001456static int mwifiex_update_curr_bss_params(struct mwifiex_private *priv,
1457 struct cfg80211_bss *bss)
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001458{
Jesper Juhldb652e42011-11-06 22:58:31 +01001459 struct mwifiex_bssdescriptor *bss_desc;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001460 int ret;
1461 unsigned long flags;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001462
1463 /* Allocate and fill new bss descriptor */
1464 bss_desc = kzalloc(sizeof(struct mwifiex_bssdescriptor),
1465 GFP_KERNEL);
1466 if (!bss_desc) {
1467 dev_err(priv->adapter->dev, " failed to alloc bss_desc\n");
1468 return -ENOMEM;
1469 }
Yogesh Ashok Powar5982b472011-08-29 13:21:10 -07001470
Amitkumar Karwar9558a402012-04-16 21:36:51 -07001471 ret = mwifiex_fill_new_bss_desc(priv, bss, bss_desc);
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001472 if (ret)
1473 goto done;
1474
1475 ret = mwifiex_check_network_compatibility(priv, bss_desc);
1476 if (ret)
1477 goto done;
1478
1479 /* Update current bss descriptor parameters */
1480 spin_lock_irqsave(&priv->curr_bcn_buf_lock, flags);
1481 priv->curr_bss_params.bss_descriptor.bcn_wpa_ie = NULL;
1482 priv->curr_bss_params.bss_descriptor.wpa_offset = 0;
1483 priv->curr_bss_params.bss_descriptor.bcn_rsn_ie = NULL;
1484 priv->curr_bss_params.bss_descriptor.rsn_offset = 0;
1485 priv->curr_bss_params.bss_descriptor.bcn_wapi_ie = NULL;
1486 priv->curr_bss_params.bss_descriptor.wapi_offset = 0;
1487 priv->curr_bss_params.bss_descriptor.bcn_ht_cap = NULL;
1488 priv->curr_bss_params.bss_descriptor.ht_cap_offset =
1489 0;
Johannes Berg074d46d2012-03-15 19:45:16 +01001490 priv->curr_bss_params.bss_descriptor.bcn_ht_oper = NULL;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001491 priv->curr_bss_params.bss_descriptor.ht_info_offset =
1492 0;
1493 priv->curr_bss_params.bss_descriptor.bcn_bss_co_2040 =
1494 NULL;
1495 priv->curr_bss_params.bss_descriptor.
1496 bss_co_2040_offset = 0;
1497 priv->curr_bss_params.bss_descriptor.bcn_ext_cap = NULL;
1498 priv->curr_bss_params.bss_descriptor.ext_cap_offset = 0;
1499 priv->curr_bss_params.bss_descriptor.beacon_buf = NULL;
1500 priv->curr_bss_params.bss_descriptor.beacon_buf_size =
1501 0;
1502
1503 /* Make a copy of current BSSID descriptor */
1504 memcpy(&priv->curr_bss_params.bss_descriptor, bss_desc,
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001505 sizeof(priv->curr_bss_params.bss_descriptor));
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001506 mwifiex_save_curr_bcn(priv);
1507 spin_unlock_irqrestore(&priv->curr_bcn_buf_lock, flags);
1508
1509done:
1510 kfree(bss_desc);
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001511 return 0;
1512}
1513
1514/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001515 * This function handles the command response of scan.
1516 *
1517 * The response buffer for the scan command has the following
1518 * memory layout:
1519 *
1520 * .-------------------------------------------------------------.
1521 * | Header (4 * sizeof(t_u16)): Standard command response hdr |
1522 * .-------------------------------------------------------------.
1523 * | BufSize (t_u16) : sizeof the BSS Description data |
1524 * .-------------------------------------------------------------.
1525 * | NumOfSet (t_u8) : Number of BSS Descs returned |
1526 * .-------------------------------------------------------------.
1527 * | BSSDescription data (variable, size given in BufSize) |
1528 * .-------------------------------------------------------------.
1529 * | TLV data (variable, size calculated using Header->Size, |
1530 * | BufSize and sizeof the fixed fields above) |
1531 * .-------------------------------------------------------------.
1532 */
1533int mwifiex_ret_802_11_scan(struct mwifiex_private *priv,
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001534 struct host_cmd_ds_command *resp)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001535{
1536 int ret = 0;
1537 struct mwifiex_adapter *adapter = priv->adapter;
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -07001538 struct cmd_ctrl_node *cmd_node;
1539 struct host_cmd_ds_802_11_scan_rsp *scan_rsp;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001540 struct mwifiex_ie_types_data *tlv_data;
1541 struct mwifiex_ie_types_tsf_timestamp *tsf_tlv;
1542 u8 *bss_info;
1543 u32 scan_resp_size;
1544 u32 bytes_left;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001545 u32 idx;
1546 u32 tlv_buf_size;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001547 struct mwifiex_chan_freq_power *cfp;
1548 struct mwifiex_ie_types_chan_band_list_param_set *chan_band_tlv;
1549 struct chan_band_param_set *chan_band;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001550 u8 is_bgscan_resp;
1551 unsigned long flags;
Amitkumar Karwar5116f3c2011-09-21 21:43:23 -07001552 struct cfg80211_bss *bss;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001553
1554 is_bgscan_resp = (le16_to_cpu(resp->command)
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001555 == HostCmd_CMD_802_11_BG_SCAN_QUERY);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001556 if (is_bgscan_resp)
1557 scan_rsp = &resp->params.bg_scan_query_resp.scan_resp;
1558 else
1559 scan_rsp = &resp->params.scan_resp;
1560
1561
Bing Zhao67a50032011-07-13 18:38:34 -07001562 if (scan_rsp->number_of_sets > MWIFIEX_MAX_AP) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001563 dev_err(adapter->dev, "SCAN_RESP: too many AP returned (%d)\n",
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001564 scan_rsp->number_of_sets);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001565 ret = -1;
1566 goto done;
1567 }
1568
1569 bytes_left = le16_to_cpu(scan_rsp->bss_descript_size);
1570 dev_dbg(adapter->dev, "info: SCAN_RESP: bss_descript_size %d\n",
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001571 bytes_left);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001572
1573 scan_resp_size = le16_to_cpu(resp->size);
1574
1575 dev_dbg(adapter->dev,
1576 "info: SCAN_RESP: returned %d APs before parsing\n",
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001577 scan_rsp->number_of_sets);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001578
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001579 bss_info = scan_rsp->bss_desc_and_tlv_buffer;
1580
1581 /*
1582 * The size of the TLV buffer is equal to the entire command response
1583 * size (scan_resp_size) minus the fixed fields (sizeof()'s), the
1584 * BSS Descriptions (bss_descript_size as bytesLef) and the command
1585 * response header (S_DS_GEN)
1586 */
1587 tlv_buf_size = scan_resp_size - (bytes_left
1588 + sizeof(scan_rsp->bss_descript_size)
1589 + sizeof(scan_rsp->number_of_sets)
1590 + S_DS_GEN);
1591
1592 tlv_data = (struct mwifiex_ie_types_data *) (scan_rsp->
1593 bss_desc_and_tlv_buffer +
1594 bytes_left);
1595
1596 /* Search the TLV buffer space in the scan response for any valid
1597 TLVs */
1598 mwifiex_ret_802_11_scan_get_tlv_ptrs(adapter, tlv_data, tlv_buf_size,
1599 TLV_TYPE_TSFTIMESTAMP,
1600 (struct mwifiex_ie_types_data **)
1601 &tsf_tlv);
1602
1603 /* Search the TLV buffer space in the scan response for any valid
1604 TLVs */
1605 mwifiex_ret_802_11_scan_get_tlv_ptrs(adapter, tlv_data, tlv_buf_size,
1606 TLV_TYPE_CHANNELBANDLIST,
1607 (struct mwifiex_ie_types_data **)
1608 &chan_band_tlv);
1609
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001610 for (idx = 0; idx < scan_rsp->number_of_sets && bytes_left; idx++) {
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001611 u8 bssid[ETH_ALEN];
1612 s32 rssi;
1613 const u8 *ie_buf;
1614 size_t ie_len;
Yogesh Ashok Powar6685d102012-03-12 19:35:10 -07001615 u16 channel = 0;
Amitkumar Karwarb5abcf02012-04-16 21:36:52 -07001616 u64 fw_tsf = 0;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001617 u16 beacon_size = 0;
1618 u32 curr_bcn_bytes;
1619 u32 freq;
1620 u16 beacon_period;
1621 u16 cap_info_bitmap;
1622 u8 *current_ptr;
Amitkumar Karwarb5abcf02012-04-16 21:36:52 -07001623 u64 timestamp;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001624 struct mwifiex_bcn_param *bcn_param;
Amitkumar Karwarb5abcf02012-04-16 21:36:52 -07001625 struct mwifiex_bss_priv *bss_priv;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001626
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001627 if (bytes_left >= sizeof(beacon_size)) {
1628 /* Extract & convert beacon size from command buffer */
1629 memcpy(&beacon_size, bss_info, sizeof(beacon_size));
1630 bytes_left -= sizeof(beacon_size);
1631 bss_info += sizeof(beacon_size);
1632 }
1633
1634 if (!beacon_size || beacon_size > bytes_left) {
1635 bss_info += bytes_left;
1636 bytes_left = 0;
1637 return -1;
1638 }
1639
1640 /* Initialize the current working beacon pointer for this BSS
1641 * iteration */
1642 current_ptr = bss_info;
1643
1644 /* Advance the return beacon pointer past the current beacon */
1645 bss_info += beacon_size;
1646 bytes_left -= beacon_size;
1647
1648 curr_bcn_bytes = beacon_size;
1649
1650 /*
1651 * First 5 fields are bssid, RSSI, time stamp, beacon interval,
1652 * and capability information
1653 */
1654 if (curr_bcn_bytes < sizeof(struct mwifiex_bcn_param)) {
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001655 dev_err(adapter->dev,
1656 "InterpretIE: not enough bytes left\n");
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001657 continue;
1658 }
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001659 bcn_param = (struct mwifiex_bcn_param *)current_ptr;
1660 current_ptr += sizeof(*bcn_param);
1661 curr_bcn_bytes -= sizeof(*bcn_param);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001662
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001663 memcpy(bssid, bcn_param->bssid, ETH_ALEN);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001664
Amitkumar Karwarc9919be2012-03-15 20:51:47 -07001665 rssi = (s32) bcn_param->rssi;
1666 rssi = (-rssi) * 100; /* Convert dBm to mBm */
1667 dev_dbg(adapter->dev, "info: InterpretIE: RSSI=%d\n", rssi);
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001668
Amitkumar Karwarb5abcf02012-04-16 21:36:52 -07001669 timestamp = le64_to_cpu(bcn_param->timestamp);
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001670 beacon_period = le16_to_cpu(bcn_param->beacon_period);
1671
1672 cap_info_bitmap = le16_to_cpu(bcn_param->cap_info_bitmap);
1673 dev_dbg(adapter->dev, "info: InterpretIE: capabilities=0x%X\n",
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001674 cap_info_bitmap);
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001675
1676 /* Rest of the current buffer are IE's */
1677 ie_buf = current_ptr;
1678 ie_len = curr_bcn_bytes;
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001679 dev_dbg(adapter->dev,
1680 "info: InterpretIE: IELength for this AP = %d\n",
1681 curr_bcn_bytes);
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001682
1683 while (curr_bcn_bytes >= sizeof(struct ieee_types_header)) {
1684 u8 element_id, element_len;
1685
1686 element_id = *current_ptr;
1687 element_len = *(current_ptr + 1);
1688 if (curr_bcn_bytes < element_len +
1689 sizeof(struct ieee_types_header)) {
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001690 dev_err(priv->adapter->dev,
1691 "%s: bytes left < IE length\n",
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001692 __func__);
1693 goto done;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001694 }
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001695 if (element_id == WLAN_EID_DS_PARAMS) {
Joe Perches2c208892012-06-04 12:44:17 +00001696 channel = *(current_ptr + sizeof(struct ieee_types_header));
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001697 break;
1698 }
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001699
1700 current_ptr += element_len +
1701 sizeof(struct ieee_types_header);
1702 curr_bcn_bytes -= element_len +
1703 sizeof(struct ieee_types_header);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001704 }
1705
1706 /*
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001707 * If the TSF TLV was appended to the scan results, save this
Amitkumar Karwarb5abcf02012-04-16 21:36:52 -07001708 * entry's TSF value in the fw_tsf field. It is the firmware's
1709 * TSF value at the time the beacon or probe response was
1710 * received.
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001711 */
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001712 if (tsf_tlv)
Amitkumar Karwarb5abcf02012-04-16 21:36:52 -07001713 memcpy(&fw_tsf, &tsf_tlv->tsf_data[idx * TSF_DATA_SIZE],
1714 sizeof(fw_tsf));
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001715
Yogesh Ashok Powar6685d102012-03-12 19:35:10 -07001716 if (channel) {
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001717 struct ieee80211_channel *chan;
1718 u8 band;
1719
1720 band = BAND_G;
1721 if (chan_band_tlv) {
1722 chan_band =
1723 &chan_band_tlv->chan_band_param[idx];
1724 band = mwifiex_radio_type_to_band(
1725 chan_band->radio_type
1726 & (BIT(0) | BIT(1)));
1727 }
1728
Yogesh Ashok Powar6685d102012-03-12 19:35:10 -07001729 cfp = mwifiex_get_cfp(priv, band, channel, 0);
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001730
1731 freq = cfp ? cfp->freq : 0;
1732
1733 chan = ieee80211_get_channel(priv->wdev->wiphy, freq);
1734
1735 if (chan && !(chan->flags & IEEE80211_CHAN_DISABLED)) {
Amitkumar Karwar5116f3c2011-09-21 21:43:23 -07001736 bss = cfg80211_inform_bss(priv->wdev->wiphy,
Amitkumar Karwarb5abcf02012-04-16 21:36:52 -07001737 chan, bssid, timestamp,
Amitkumar Karwar5116f3c2011-09-21 21:43:23 -07001738 cap_info_bitmap, beacon_period,
1739 ie_buf, ie_len, rssi, GFP_KERNEL);
Amitkumar Karwarb5abcf02012-04-16 21:36:52 -07001740 bss_priv = (struct mwifiex_bss_priv *)bss->priv;
1741 bss_priv->band = band;
1742 bss_priv->fw_tsf = fw_tsf;
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001743 if (priv->media_connected &&
1744 !memcmp(bssid,
1745 priv->curr_bss_params.bss_descriptor
1746 .mac_address, ETH_ALEN))
Amitkumar Karwar9558a402012-04-16 21:36:51 -07001747 mwifiex_update_curr_bss_params(priv,
1748 bss);
Johannes Berg5b112d32013-02-01 01:49:58 +01001749 cfg80211_put_bss(priv->wdev->wiphy, bss);
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001750 }
1751 } else {
1752 dev_dbg(adapter->dev, "missing BSS channel IE\n");
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001753 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001754 }
1755
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001756 spin_lock_irqsave(&adapter->scan_pending_q_lock, flags);
1757 if (list_empty(&adapter->scan_pending_q)) {
1758 spin_unlock_irqrestore(&adapter->scan_pending_q_lock, flags);
1759 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
1760 adapter->scan_processing = false;
1761 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001762
1763 /* Need to indicate IOCTL complete */
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001764 if (adapter->curr_cmd->wait_q_enabled) {
1765 adapter->cmd_wait_q.status = 0;
Amitkumar Karwarefaaa8b2011-10-12 20:28:06 -07001766 mwifiex_complete_cmd(adapter, adapter->curr_cmd);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001767 }
1768 if (priv->report_scan_result)
1769 priv->report_scan_result = false;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001770
Amitkumar Karwar38c9d662011-12-13 20:43:17 -08001771 if (priv->user_scan_cfg) {
Amitkumar Karwarf162cac2012-10-19 19:19:16 -07001772 if (priv->scan_request) {
1773 dev_dbg(priv->adapter->dev,
1774 "info: notifying scan done\n");
1775 cfg80211_scan_done(priv->scan_request, 0);
1776 priv->scan_request = NULL;
1777 } else {
1778 dev_dbg(priv->adapter->dev,
1779 "info: scan already aborted\n");
1780 }
1781
Amitkumar Karwar38c9d662011-12-13 20:43:17 -08001782 kfree(priv->user_scan_cfg);
1783 priv->user_scan_cfg = NULL;
1784 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001785 } else {
Amitkumar Karwarf162cac2012-10-19 19:19:16 -07001786 if (priv->user_scan_cfg && !priv->scan_request) {
1787 spin_unlock_irqrestore(&adapter->scan_pending_q_lock,
1788 flags);
1789 adapter->scan_delay_cnt = MWIFIEX_MAX_SCAN_DELAY_CNT;
1790 mod_timer(&priv->scan_delay_timer, jiffies);
1791 dev_dbg(priv->adapter->dev,
1792 "info: %s: triggerring scan abort\n", __func__);
1793 } else if (!mwifiex_wmm_lists_empty(adapter) &&
1794 (priv->scan_request && (priv->scan_request->flags &
Amitkumar Karware45a8412012-10-19 19:19:15 -07001795 NL80211_SCAN_FLAG_LOW_PRIORITY))) {
Amitkumar Karwar3249ba72012-06-06 21:12:41 -07001796 spin_unlock_irqrestore(&adapter->scan_pending_q_lock,
1797 flags);
1798 adapter->scan_delay_cnt = 1;
1799 mod_timer(&priv->scan_delay_timer, jiffies +
1800 msecs_to_jiffies(MWIFIEX_SCAN_DELAY_MSEC));
Amitkumar Karware45a8412012-10-19 19:19:15 -07001801 dev_dbg(priv->adapter->dev,
1802 "info: %s: deferring scan\n", __func__);
Amitkumar Karwar3249ba72012-06-06 21:12:41 -07001803 } else {
1804 /* Get scan command from scan_pending_q and put to
1805 cmd_pending_q */
1806 cmd_node = list_first_entry(&adapter->scan_pending_q,
1807 struct cmd_ctrl_node, list);
1808 list_del(&cmd_node->list);
1809 spin_unlock_irqrestore(&adapter->scan_pending_q_lock,
1810 flags);
1811 mwifiex_insert_cmd_to_pending_q(adapter, cmd_node,
1812 true);
1813 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001814 }
1815
1816done:
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001817 return ret;
1818}
1819
1820/*
1821 * This function prepares command for background scan query.
1822 *
1823 * Preparation includes -
1824 * - Setting command ID and proper size
1825 * - Setting background scan flush parameter
1826 * - Ensuring correct endian-ness
1827 */
Amitkumar Karwar572e8f32011-04-13 17:27:08 -07001828int mwifiex_cmd_802_11_bg_scan_query(struct host_cmd_ds_command *cmd)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001829{
1830 struct host_cmd_ds_802_11_bg_scan_query *bg_query =
1831 &cmd->params.bg_scan_query;
1832
1833 cmd->command = cpu_to_le16(HostCmd_CMD_802_11_BG_SCAN_QUERY);
1834 cmd->size = cpu_to_le16(sizeof(struct host_cmd_ds_802_11_bg_scan_query)
1835 + S_DS_GEN);
1836
1837 bg_query->flush = 1;
1838
1839 return 0;
1840}
1841
1842/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001843 * This function inserts scan command node to the scan pending queue.
1844 */
1845void
1846mwifiex_queue_scan_cmd(struct mwifiex_private *priv,
1847 struct cmd_ctrl_node *cmd_node)
1848{
1849 struct mwifiex_adapter *adapter = priv->adapter;
1850 unsigned long flags;
1851
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001852 cmd_node->wait_q_enabled = true;
Amitkumar Karwarefaaa8b2011-10-12 20:28:06 -07001853 cmd_node->condition = &adapter->scan_wait_q_woken;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001854 spin_lock_irqsave(&adapter->scan_pending_q_lock, flags);
1855 list_add_tail(&cmd_node->list, &adapter->scan_pending_q);
1856 spin_unlock_irqrestore(&adapter->scan_pending_q_lock, flags);
1857}
1858
1859/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001860 * This function sends a scan command for all available channels to the
1861 * firmware, filtered on a specific SSID.
1862 */
1863static int mwifiex_scan_specific_ssid(struct mwifiex_private *priv,
Amitkumar Karwarb9be5f32012-02-27 22:04:14 -08001864 struct cfg80211_ssid *req_ssid)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001865{
1866 struct mwifiex_adapter *adapter = priv->adapter;
Bing Zhaodcd5c792012-10-19 19:01:59 -07001867 int ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001868 struct mwifiex_user_scan_cfg *scan_cfg;
1869
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001870 if (adapter->scan_processing) {
Bing Zhaodcd5c792012-10-19 19:01:59 -07001871 dev_err(adapter->dev, "cmd: Scan already in process...\n");
1872 return -EBUSY;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001873 }
1874
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001875 if (priv->scan_block) {
Bing Zhaodcd5c792012-10-19 19:01:59 -07001876 dev_err(adapter->dev,
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001877 "cmd: Scan is blocked during association...\n");
Bing Zhaodcd5c792012-10-19 19:01:59 -07001878 return -EBUSY;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001879 }
1880
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001881 scan_cfg = kzalloc(sizeof(struct mwifiex_user_scan_cfg), GFP_KERNEL);
1882 if (!scan_cfg) {
1883 dev_err(adapter->dev, "failed to alloc scan_cfg\n");
Christoph Fritzb53575e2011-05-08 22:50:09 +02001884 return -ENOMEM;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001885 }
1886
Amitkumar Karwarbe0b2812012-02-27 22:04:15 -08001887 scan_cfg->ssid_list = req_ssid;
1888 scan_cfg->num_ssids = 1;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001889
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001890 ret = mwifiex_scan_networks(priv, scan_cfg);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001891
1892 kfree(scan_cfg);
1893 return ret;
1894}
1895
1896/*
1897 * Sends IOCTL request to start a scan.
1898 *
1899 * This function allocates the IOCTL request buffer, fills it
1900 * with requisite parameters and calls the IOCTL handler.
1901 *
1902 * Scan command can be issued for both normal scan and specific SSID
1903 * scan, depending upon whether an SSID is provided or not.
1904 */
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001905int mwifiex_request_scan(struct mwifiex_private *priv,
Amitkumar Karwarb9be5f32012-02-27 22:04:14 -08001906 struct cfg80211_ssid *req_ssid)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001907{
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -07001908 int ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001909
1910 if (down_interruptible(&priv->async_sem)) {
1911 dev_err(priv->adapter->dev, "%s: acquire semaphore\n",
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001912 __func__);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001913 return -1;
1914 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001915
Amitkumar Karwarefaaa8b2011-10-12 20:28:06 -07001916 priv->adapter->scan_wait_q_woken = false;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001917
1918 if (req_ssid && req_ssid->ssid_len != 0)
1919 /* Specific SSID scan */
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001920 ret = mwifiex_scan_specific_ssid(priv, req_ssid);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001921 else
1922 /* Normal scan */
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001923 ret = mwifiex_scan_networks(priv, NULL);
1924
1925 if (!ret)
1926 ret = mwifiex_wait_queue_complete(priv->adapter);
1927
Amitkumar Karwarb0e70c22012-10-19 19:19:17 -07001928 up(&priv->async_sem);
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001929
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001930 return ret;
1931}
1932
1933/*
1934 * This function appends the vendor specific IE TLV to a buffer.
1935 */
1936int
1937mwifiex_cmd_append_vsie_tlv(struct mwifiex_private *priv,
1938 u16 vsie_mask, u8 **buffer)
1939{
1940 int id, ret_len = 0;
1941 struct mwifiex_ie_types_vendor_param_set *vs_param_set;
1942
1943 if (!buffer)
1944 return 0;
1945 if (!(*buffer))
1946 return 0;
1947
1948 /*
1949 * Traverse through the saved vendor specific IE array and append
1950 * the selected(scan/assoc/adhoc) IE as TLV to the command
1951 */
1952 for (id = 0; id < MWIFIEX_MAX_VSIE_NUM; id++) {
1953 if (priv->vs_ie[id].mask & vsie_mask) {
1954 vs_param_set =
1955 (struct mwifiex_ie_types_vendor_param_set *)
1956 *buffer;
1957 vs_param_set->header.type =
1958 cpu_to_le16(TLV_TYPE_PASSTHROUGH);
1959 vs_param_set->header.len =
1960 cpu_to_le16((((u16) priv->vs_ie[id].ie[1])
1961 & 0x00FF) + 2);
1962 memcpy(vs_param_set->ie, priv->vs_ie[id].ie,
1963 le16_to_cpu(vs_param_set->header.len));
1964 *buffer += le16_to_cpu(vs_param_set->header.len) +
1965 sizeof(struct mwifiex_ie_types_header);
1966 ret_len += le16_to_cpu(vs_param_set->header.len) +
1967 sizeof(struct mwifiex_ie_types_header);
1968 }
1969 }
1970 return ret_len;
1971}
1972
1973/*
1974 * This function saves a beacon buffer of the current BSS descriptor.
1975 *
1976 * The current beacon buffer is saved so that it can be restored in the
1977 * following cases that makes the beacon buffer not to contain the current
1978 * ssid's beacon buffer.
1979 * - The current ssid was not found somehow in the last scan.
1980 * - The current ssid was the last entry of the scan table and overloaded.
1981 */
1982void
1983mwifiex_save_curr_bcn(struct mwifiex_private *priv)
1984{
1985 struct mwifiex_bssdescriptor *curr_bss =
1986 &priv->curr_bss_params.bss_descriptor;
1987
Amitkumar Karwar030fe792011-04-27 19:13:13 -07001988 if (!curr_bss->beacon_buf_size)
1989 return;
1990
1991 /* allocate beacon buffer at 1st time; or if it's size has changed */
1992 if (!priv->curr_bcn_buf ||
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001993 priv->curr_bcn_size != curr_bss->beacon_buf_size) {
Amitkumar Karwar030fe792011-04-27 19:13:13 -07001994 priv->curr_bcn_size = curr_bss->beacon_buf_size;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001995
1996 kfree(priv->curr_bcn_buf);
Yogesh Ashok Powar5982b472011-08-29 13:21:10 -07001997 priv->curr_bcn_buf = kmalloc(curr_bss->beacon_buf_size,
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001998 GFP_ATOMIC);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001999 if (!priv->curr_bcn_buf) {
2000 dev_err(priv->adapter->dev,
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07002001 "failed to alloc curr_bcn_buf\n");
Amitkumar Karwar030fe792011-04-27 19:13:13 -07002002 return;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002003 }
2004 }
Amitkumar Karwar030fe792011-04-27 19:13:13 -07002005
2006 memcpy(priv->curr_bcn_buf, curr_bss->beacon_buf,
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07002007 curr_bss->beacon_buf_size);
Amitkumar Karwar030fe792011-04-27 19:13:13 -07002008 dev_dbg(priv->adapter->dev, "info: current beacon saved %d\n",
2009 priv->curr_bcn_size);
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07002010
2011 curr_bss->beacon_buf = priv->curr_bcn_buf;
2012
2013 /* adjust the pointers in the current BSS descriptor */
2014 if (curr_bss->bcn_wpa_ie)
2015 curr_bss->bcn_wpa_ie =
2016 (struct ieee_types_vendor_specific *)
2017 (curr_bss->beacon_buf +
2018 curr_bss->wpa_offset);
2019
2020 if (curr_bss->bcn_rsn_ie)
2021 curr_bss->bcn_rsn_ie = (struct ieee_types_generic *)
2022 (curr_bss->beacon_buf +
2023 curr_bss->rsn_offset);
2024
2025 if (curr_bss->bcn_ht_cap)
2026 curr_bss->bcn_ht_cap = (struct ieee80211_ht_cap *)
2027 (curr_bss->beacon_buf +
2028 curr_bss->ht_cap_offset);
2029
Johannes Berg074d46d2012-03-15 19:45:16 +01002030 if (curr_bss->bcn_ht_oper)
2031 curr_bss->bcn_ht_oper = (struct ieee80211_ht_operation *)
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07002032 (curr_bss->beacon_buf +
2033 curr_bss->ht_info_offset);
2034
2035 if (curr_bss->bcn_bss_co_2040)
2036 curr_bss->bcn_bss_co_2040 =
Joe Perches2c208892012-06-04 12:44:17 +00002037 (curr_bss->beacon_buf + curr_bss->bss_co_2040_offset);
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07002038
2039 if (curr_bss->bcn_ext_cap)
Joe Perches2c208892012-06-04 12:44:17 +00002040 curr_bss->bcn_ext_cap = curr_bss->beacon_buf +
2041 curr_bss->ext_cap_offset;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002042}
2043
2044/*
2045 * This function frees the current BSS descriptor beacon buffer.
2046 */
2047void
2048mwifiex_free_curr_bcn(struct mwifiex_private *priv)
2049{
2050 kfree(priv->curr_bcn_buf);
2051 priv->curr_bcn_buf = NULL;
2052}