blob: efaf26ccd6ba920895141d792d30a1c6fba63114 [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 ==
156 WLAN_EID_WPA))) {
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 !=
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700205 WLAN_EID_WPA)) &&
206 ((!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) &&
240 ((*(bss_desc->bcn_wpa_ie)).vend_hdr.element_id == WLAN_EID_WPA))
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700241 /*
242 * Privacy bit may NOT be set in some APs like
243 * LinkSys WRT54G && bss_desc->privacy
244 */
245 ) {
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700246 dev_dbg(priv->adapter->dev, "info: %s: WPA:"
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700247 " wpa_ie=%#x wpa2_ie=%#x WEP=%s WPA=%s WPA2=%s "
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700248 "EncMode=%#x privacy=%#x\n", __func__,
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700249 (bss_desc->bcn_wpa_ie) ?
250 (*(bss_desc->bcn_wpa_ie)).
251 vend_hdr.element_id : 0,
252 (bss_desc->bcn_rsn_ie) ?
253 (*(bss_desc->bcn_rsn_ie)).
254 ieee_hdr.element_id : 0,
Amitkumar Karwar5eb02e42012-02-24 21:36:04 -0800255 (priv->sec_info.wep_enabled) ? "e" : "d",
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700256 (priv->sec_info.wpa_enabled) ? "e" : "d",
257 (priv->sec_info.wpa2_enabled) ? "e" : "d",
258 priv->sec_info.encryption_mode,
259 bss_desc->privacy);
260 return true;
261 }
262 return false;
263}
264
265/*
266 * This function checks if wpa2 is enabled in driver and scanned network is
267 * compatible with it.
268 */
269static bool
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700270mwifiex_is_bss_wpa2(struct mwifiex_private *priv,
271 struct mwifiex_bssdescriptor *bss_desc)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700272{
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700273 if (!priv->sec_info.wep_enabled &&
274 !priv->sec_info.wpa_enabled &&
275 priv->sec_info.wpa2_enabled &&
276 ((bss_desc->bcn_rsn_ie) &&
277 ((*(bss_desc->bcn_rsn_ie)).ieee_hdr.element_id == WLAN_EID_RSN))) {
278 /*
279 * Privacy bit may NOT be set in some APs like
280 * LinkSys WRT54G && bss_desc->privacy
281 */
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700282 dev_dbg(priv->adapter->dev, "info: %s: WPA2: "
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700283 " wpa_ie=%#x wpa2_ie=%#x WEP=%s WPA=%s WPA2=%s "
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700284 "EncMode=%#x privacy=%#x\n", __func__,
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700285 (bss_desc->bcn_wpa_ie) ?
286 (*(bss_desc->bcn_wpa_ie)).
287 vend_hdr.element_id : 0,
288 (bss_desc->bcn_rsn_ie) ?
289 (*(bss_desc->bcn_rsn_ie)).
290 ieee_hdr.element_id : 0,
Amitkumar Karwar5eb02e42012-02-24 21:36:04 -0800291 (priv->sec_info.wep_enabled) ? "e" : "d",
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700292 (priv->sec_info.wpa_enabled) ? "e" : "d",
293 (priv->sec_info.wpa2_enabled) ? "e" : "d",
294 priv->sec_info.encryption_mode,
295 bss_desc->privacy);
296 return true;
297 }
298 return false;
299}
300
301/*
302 * This function checks if adhoc AES is enabled in driver and scanned network is
303 * compatible with it.
304 */
305static bool
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700306mwifiex_is_bss_adhoc_aes(struct mwifiex_private *priv,
307 struct mwifiex_bssdescriptor *bss_desc)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700308{
Amitkumar Karwar5eb02e42012-02-24 21:36:04 -0800309 if (!priv->sec_info.wep_enabled && !priv->sec_info.wpa_enabled &&
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700310 !priv->sec_info.wpa2_enabled &&
311 ((!bss_desc->bcn_wpa_ie) ||
312 ((*(bss_desc->bcn_wpa_ie)).vend_hdr.element_id != WLAN_EID_WPA)) &&
313 ((!bss_desc->bcn_rsn_ie) ||
314 ((*(bss_desc->bcn_rsn_ie)).ieee_hdr.element_id != WLAN_EID_RSN)) &&
315 !priv->sec_info.encryption_mode && bss_desc->privacy) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700316 return true;
317 }
318 return false;
319}
320
321/*
322 * This function checks if dynamic WEP is enabled in driver and scanned network
323 * is compatible with it.
324 */
325static bool
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700326mwifiex_is_bss_dynamic_wep(struct mwifiex_private *priv,
327 struct mwifiex_bssdescriptor *bss_desc)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700328{
Amitkumar Karwar5eb02e42012-02-24 21:36:04 -0800329 if (!priv->sec_info.wep_enabled && !priv->sec_info.wpa_enabled &&
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700330 !priv->sec_info.wpa2_enabled &&
331 ((!bss_desc->bcn_wpa_ie) ||
332 ((*(bss_desc->bcn_wpa_ie)).vend_hdr.element_id != WLAN_EID_WPA)) &&
333 ((!bss_desc->bcn_rsn_ie) ||
334 ((*(bss_desc->bcn_rsn_ie)).ieee_hdr.element_id != WLAN_EID_RSN)) &&
335 priv->sec_info.encryption_mode && bss_desc->privacy) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700336 dev_dbg(priv->adapter->dev, "info: %s: dynamic "
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700337 "WEP: wpa_ie=%#x wpa2_ie=%#x "
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700338 "EncMode=%#x privacy=%#x\n",
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700339 __func__,
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700340 (bss_desc->bcn_wpa_ie) ?
341 (*(bss_desc->bcn_wpa_ie)).
342 vend_hdr.element_id : 0,
343 (bss_desc->bcn_rsn_ie) ?
344 (*(bss_desc->bcn_rsn_ie)).
345 ieee_hdr.element_id : 0,
346 priv->sec_info.encryption_mode,
347 bss_desc->privacy);
348 return true;
349 }
350 return false;
351}
352
353/*
354 * This function checks if a scanned network is compatible with the driver
355 * settings.
356 *
357 * WEP WPA WPA2 ad-hoc encrypt Network
358 * enabled enabled enabled AES mode Privacy WPA WPA2 Compatible
359 * 0 0 0 0 NONE 0 0 0 yes No security
360 * 0 1 0 0 x 1x 1 x yes WPA (disable
361 * HT if no AES)
362 * 0 0 1 0 x 1x x 1 yes WPA2 (disable
363 * HT if no AES)
364 * 0 0 0 1 NONE 1 0 0 yes Ad-hoc AES
365 * 1 0 0 0 NONE 1 0 0 yes Static WEP
366 * (disable HT)
367 * 0 0 0 0 !=NONE 1 0 0 yes Dynamic WEP
368 *
369 * Compatibility is not matched while roaming, except for mode.
370 */
371static s32
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700372mwifiex_is_network_compatible(struct mwifiex_private *priv,
373 struct mwifiex_bssdescriptor *bss_desc, u32 mode)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700374{
375 struct mwifiex_adapter *adapter = priv->adapter;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700376
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700377 bss_desc->disable_11n = false;
378
379 /* Don't check for compatibility if roaming */
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700380 if (priv->media_connected &&
381 (priv->bss_mode == NL80211_IFTYPE_STATION) &&
382 (bss_desc->bss_mode == NL80211_IFTYPE_STATION))
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700383 return 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700384
385 if (priv->wps.session_enable) {
386 dev_dbg(adapter->dev,
387 "info: return success directly in WPS period\n");
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700388 return 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700389 }
390
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700391 if (mwifiex_is_bss_wapi(priv, bss_desc)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700392 dev_dbg(adapter->dev, "info: return success for WAPI AP\n");
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700393 return 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700394 }
395
396 if (bss_desc->bss_mode == mode) {
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700397 if (mwifiex_is_bss_no_sec(priv, bss_desc)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700398 /* No security */
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700399 return 0;
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700400 } else if (mwifiex_is_bss_static_wep(priv, bss_desc)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700401 /* Static WEP enabled */
402 dev_dbg(adapter->dev, "info: Disable 11n in WEP mode.\n");
403 bss_desc->disable_11n = true;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700404 return 0;
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700405 } else if (mwifiex_is_bss_wpa(priv, bss_desc)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700406 /* WPA enabled */
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700407 if (((priv->adapter->config_bands & BAND_GN ||
408 priv->adapter->config_bands & BAND_AN) &&
409 bss_desc->bcn_ht_cap) &&
410 !mwifiex_is_wpa_oui_present(bss_desc,
411 CIPHER_SUITE_CCMP)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700412
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700413 if (mwifiex_is_wpa_oui_present
414 (bss_desc, CIPHER_SUITE_TKIP)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700415 dev_dbg(adapter->dev,
416 "info: Disable 11n if AES "
417 "is not supported by AP\n");
418 bss_desc->disable_11n = true;
419 } else {
420 return -1;
421 }
422 }
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700423 return 0;
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700424 } else if (mwifiex_is_bss_wpa2(priv, bss_desc)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700425 /* WPA2 enabled */
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700426 if (((priv->adapter->config_bands & BAND_GN ||
427 priv->adapter->config_bands & BAND_AN) &&
428 bss_desc->bcn_ht_cap) &&
429 !mwifiex_is_rsn_oui_present(bss_desc,
430 CIPHER_SUITE_CCMP)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700431
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700432 if (mwifiex_is_rsn_oui_present
433 (bss_desc, CIPHER_SUITE_TKIP)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700434 dev_dbg(adapter->dev,
435 "info: Disable 11n if AES "
436 "is not supported by AP\n");
437 bss_desc->disable_11n = true;
438 } else {
439 return -1;
440 }
441 }
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700442 return 0;
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700443 } else if (mwifiex_is_bss_adhoc_aes(priv, bss_desc)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700444 /* Ad-hoc AES enabled */
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700445 return 0;
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700446 } else if (mwifiex_is_bss_dynamic_wep(priv, bss_desc)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700447 /* Dynamic WEP enabled */
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -0700448 return 0;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700449 }
450
451 /* Security doesn't match */
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700452 dev_dbg(adapter->dev,
453 "info: %s: failed: wpa_ie=%#x wpa2_ie=%#x WEP=%s "
454 "WPA=%s WPA2=%s EncMode=%#x privacy=%#x\n", __func__,
455 (bss_desc->bcn_wpa_ie) ?
456 (*(bss_desc->bcn_wpa_ie)).vend_hdr.element_id : 0,
457 (bss_desc->bcn_rsn_ie) ?
458 (*(bss_desc->bcn_rsn_ie)).ieee_hdr.element_id : 0,
459 (priv->sec_info.wep_enabled) ? "e" : "d",
460 (priv->sec_info.wpa_enabled) ? "e" : "d",
461 (priv->sec_info.wpa2_enabled) ? "e" : "d",
462 priv->sec_info.encryption_mode, bss_desc->privacy);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700463 return -1;
464 }
465
466 /* Mode doesn't match */
467 return -1;
468}
469
470/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700471 * This function creates a channel list for the driver to scan, based
472 * on region/band information.
473 *
474 * This routine is used for any scan that is not provided with a
475 * specific channel list to scan.
476 */
Amitkumar Karwar658f37b2012-06-06 21:12:42 -0700477static int
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700478mwifiex_scan_create_channel_list(struct mwifiex_private *priv,
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700479 const struct mwifiex_user_scan_cfg
480 *user_scan_in,
481 struct mwifiex_chan_scan_param_set
482 *scan_chan_list,
483 u8 filtered_scan)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700484{
485 enum ieee80211_band band;
486 struct ieee80211_supported_band *sband;
487 struct ieee80211_channel *ch;
488 struct mwifiex_adapter *adapter = priv->adapter;
489 int chan_idx = 0, i;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700490
491 for (band = 0; (band < IEEE80211_NUM_BANDS) ; band++) {
492
493 if (!priv->wdev->wiphy->bands[band])
494 continue;
495
496 sband = priv->wdev->wiphy->bands[band];
497
Amitkumar Karward06b7b92011-09-21 21:43:22 -0700498 for (i = 0; (i < sband->n_channels) ; i++) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700499 ch = &sband->channels[i];
500 if (ch->flags & IEEE80211_CHAN_DISABLED)
501 continue;
502 scan_chan_list[chan_idx].radio_type = band;
Amitkumar Karwar186630c2011-12-15 21:00:37 -0800503
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700504 if (user_scan_in &&
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700505 user_scan_in->chan_list[0].scan_time)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700506 scan_chan_list[chan_idx].max_scan_time =
507 cpu_to_le16((u16) user_scan_in->
508 chan_list[0].scan_time);
Amitkumar Karwar186630c2011-12-15 21:00:37 -0800509 else if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700510 scan_chan_list[chan_idx].max_scan_time =
511 cpu_to_le16(adapter->passive_scan_time);
512 else
513 scan_chan_list[chan_idx].max_scan_time =
514 cpu_to_le16(adapter->active_scan_time);
Amitkumar Karwar186630c2011-12-15 21:00:37 -0800515
516 if (ch->flags & IEEE80211_CHAN_PASSIVE_SCAN)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700517 scan_chan_list[chan_idx].chan_scan_mode_bitmap
518 |= MWIFIEX_PASSIVE_SCAN;
519 else
520 scan_chan_list[chan_idx].chan_scan_mode_bitmap
521 &= ~MWIFIEX_PASSIVE_SCAN;
522 scan_chan_list[chan_idx].chan_number =
523 (u32) ch->hw_value;
524 if (filtered_scan) {
525 scan_chan_list[chan_idx].max_scan_time =
526 cpu_to_le16(adapter->specific_scan_time);
527 scan_chan_list[chan_idx].chan_scan_mode_bitmap
528 |= MWIFIEX_DISABLE_CHAN_FILT;
529 }
Amitkumar Karward06b7b92011-09-21 21:43:22 -0700530 chan_idx++;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700531 }
532
533 }
Amitkumar Karwar658f37b2012-06-06 21:12:42 -0700534 return chan_idx;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700535}
536
537/*
538 * This function constructs and sends multiple scan config commands to
539 * the firmware.
540 *
541 * Previous routines in the code flow have created a scan command configuration
542 * with any requested TLVs. This function splits the channel TLV into maximum
543 * channels supported per scan lists and sends the portion of the channel TLV,
544 * along with the other TLVs, to the firmware.
545 */
546static int
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700547mwifiex_scan_channel_list(struct mwifiex_private *priv,
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700548 u32 max_chan_per_scan, u8 filtered_scan,
549 struct mwifiex_scan_cmd_config *scan_cfg_out,
550 struct mwifiex_ie_types_chan_list_param_set
551 *chan_tlv_out,
552 struct mwifiex_chan_scan_param_set *scan_chan_list)
553{
554 int ret = 0;
555 struct mwifiex_chan_scan_param_set *tmp_chan_list;
556 struct mwifiex_chan_scan_param_set *start_chan;
557
558 u32 tlv_idx;
559 u32 total_scan_time;
560 u32 done_early;
561
562 if (!scan_cfg_out || !chan_tlv_out || !scan_chan_list) {
563 dev_dbg(priv->adapter->dev,
564 "info: Scan: Null detect: %p, %p, %p\n",
565 scan_cfg_out, chan_tlv_out, scan_chan_list);
566 return -1;
567 }
568
569 chan_tlv_out->header.type = cpu_to_le16(TLV_TYPE_CHANLIST);
570
571 /* Set the temp channel struct pointer to the start of the desired
572 list */
573 tmp_chan_list = scan_chan_list;
574
575 /* Loop through the desired channel list, sending a new firmware scan
576 commands for each max_chan_per_scan channels (or for 1,6,11
577 individually if configured accordingly) */
578 while (tmp_chan_list->chan_number) {
579
580 tlv_idx = 0;
581 total_scan_time = 0;
582 chan_tlv_out->header.len = 0;
583 start_chan = tmp_chan_list;
584 done_early = false;
585
586 /*
587 * Construct the Channel TLV for the scan command. Continue to
588 * insert channel TLVs until:
589 * - the tlv_idx hits the maximum configured per scan command
590 * - the next channel to insert is 0 (end of desired channel
591 * list)
592 * - done_early is set (controlling individual scanning of
593 * 1,6,11)
594 */
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700595 while (tlv_idx < max_chan_per_scan &&
596 tmp_chan_list->chan_number && !done_early) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700597
598 dev_dbg(priv->adapter->dev,
599 "info: Scan: Chan(%3d), Radio(%d),"
600 " Mode(%d, %d), Dur(%d)\n",
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700601 tmp_chan_list->chan_number,
602 tmp_chan_list->radio_type,
603 tmp_chan_list->chan_scan_mode_bitmap
604 & MWIFIEX_PASSIVE_SCAN,
605 (tmp_chan_list->chan_scan_mode_bitmap
606 & MWIFIEX_DISABLE_CHAN_FILT) >> 1,
607 le16_to_cpu(tmp_chan_list->max_scan_time));
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700608
609 /* Copy the current channel TLV to the command being
610 prepared */
611 memcpy(chan_tlv_out->chan_scan_param + tlv_idx,
612 tmp_chan_list,
613 sizeof(chan_tlv_out->chan_scan_param));
614
615 /* Increment the TLV header length by the size
616 appended */
617 chan_tlv_out->header.len =
618 cpu_to_le16(le16_to_cpu(chan_tlv_out->header.len) +
619 (sizeof(chan_tlv_out->chan_scan_param)));
620
621 /*
622 * The tlv buffer length is set to the number of bytes
623 * of the between the channel tlv pointer and the start
624 * of the tlv buffer. This compensates for any TLVs
625 * that were appended before the channel list.
626 */
627 scan_cfg_out->tlv_buf_len = (u32) ((u8 *) chan_tlv_out -
628 scan_cfg_out->tlv_buf);
629
630 /* Add the size of the channel tlv header and the data
631 length */
632 scan_cfg_out->tlv_buf_len +=
633 (sizeof(chan_tlv_out->header)
634 + le16_to_cpu(chan_tlv_out->header.len));
635
636 /* Increment the index to the channel tlv we are
637 constructing */
638 tlv_idx++;
639
640 /* Count the total scan time per command */
641 total_scan_time +=
642 le16_to_cpu(tmp_chan_list->max_scan_time);
643
644 done_early = false;
645
646 /* Stop the loop if the *current* channel is in the
647 1,6,11 set and we are not filtering on a BSSID
648 or SSID. */
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700649 if (!filtered_scan &&
650 (tmp_chan_list->chan_number == 1 ||
651 tmp_chan_list->chan_number == 6 ||
652 tmp_chan_list->chan_number == 11))
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700653 done_early = true;
654
655 /* Increment the tmp pointer to the next channel to
656 be scanned */
657 tmp_chan_list++;
658
659 /* Stop the loop if the *next* channel is in the 1,6,11
660 set. This will cause it to be the only channel
661 scanned on the next interation */
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700662 if (!filtered_scan &&
663 (tmp_chan_list->chan_number == 1 ||
664 tmp_chan_list->chan_number == 6 ||
665 tmp_chan_list->chan_number == 11))
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700666 done_early = true;
667 }
668
669 /* The total scan time should be less than scan command timeout
670 value */
671 if (total_scan_time > MWIFIEX_MAX_TOTAL_SCAN_TIME) {
672 dev_err(priv->adapter->dev, "total scan time %dms"
673 " is over limit (%dms), scan skipped\n",
674 total_scan_time, MWIFIEX_MAX_TOTAL_SCAN_TIME);
675 ret = -1;
676 break;
677 }
678
679 priv->adapter->scan_channels = start_chan;
680
681 /* Send the scan command to the firmware with the specified
682 cfg */
Amitkumar Karwar600f5d92011-04-13 17:27:06 -0700683 ret = mwifiex_send_cmd_async(priv, HostCmd_CMD_802_11_SCAN,
684 HostCmd_ACT_GEN_SET, 0,
685 scan_cfg_out);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700686 if (ret)
687 break;
688 }
689
690 if (ret)
691 return -1;
692
693 return 0;
694}
695
696/*
697 * This function constructs a scan command configuration structure to use
698 * in scan commands.
699 *
700 * Application layer or other functions can invoke network scanning
701 * with a scan configuration supplied in a user scan configuration structure.
702 * This structure is used as the basis of one or many scan command configuration
703 * commands that are sent to the command processing module and eventually to the
704 * firmware.
705 *
706 * This function creates a scan command configuration structure based on the
707 * following user supplied parameters (if present):
708 * - SSID filter
709 * - BSSID filter
710 * - Number of Probes to be sent
711 * - Channel list
712 *
713 * If the SSID or BSSID filter is not present, the filter is disabled/cleared.
714 * If the number of probes is not set, adapter default setting is used.
715 */
716static void
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700717mwifiex_config_scan(struct mwifiex_private *priv,
718 const struct mwifiex_user_scan_cfg *user_scan_in,
719 struct mwifiex_scan_cmd_config *scan_cfg_out,
720 struct mwifiex_ie_types_chan_list_param_set **chan_list_out,
721 struct mwifiex_chan_scan_param_set *scan_chan_list,
722 u8 *max_chan_per_scan, u8 *filtered_scan,
723 u8 *scan_current_only)
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700724{
725 struct mwifiex_adapter *adapter = priv->adapter;
726 struct mwifiex_ie_types_num_probes *num_probes_tlv;
727 struct mwifiex_ie_types_wildcard_ssid_params *wildcard_ssid_tlv;
728 struct mwifiex_ie_types_rates_param_set *rates_tlv;
729 const u8 zero_mac[ETH_ALEN] = { 0, 0, 0, 0, 0, 0 };
730 u8 *tlv_pos;
731 u32 num_probes;
732 u32 ssid_len;
733 u32 chan_idx;
Amitkumar Karwar658f37b2012-06-06 21:12:42 -0700734 u32 chan_num;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700735 u32 scan_type;
736 u16 scan_dur;
737 u8 channel;
738 u8 radio_type;
Amitkumar Karwarbe0b2812012-02-27 22:04:15 -0800739 int i;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700740 u8 ssid_filter;
741 u8 rates[MWIFIEX_SUPPORTED_RATES];
742 u32 rates_size;
743 struct mwifiex_ie_types_htcap *ht_cap;
744
745 /* The tlv_buf_len is calculated for each scan command. The TLVs added
746 in this routine will be preserved since the routine that sends the
747 command will append channelTLVs at *chan_list_out. The difference
748 between the *chan_list_out and the tlv_buf start will be used to
749 calculate the size of anything we add in this routine. */
750 scan_cfg_out->tlv_buf_len = 0;
751
752 /* Running tlv pointer. Assigned to chan_list_out at end of function
753 so later routines know where channels can be added to the command
754 buf */
755 tlv_pos = scan_cfg_out->tlv_buf;
756
757 /* Initialize the scan as un-filtered; the flag is later set to TRUE
758 below if a SSID or BSSID filter is sent in the command */
759 *filtered_scan = false;
760
761 /* Initialize the scan as not being only on the current channel. If
762 the channel list is customized, only contains one channel, and is
763 the active channel, this is set true and data flow is not halted. */
764 *scan_current_only = false;
765
766 if (user_scan_in) {
767
768 /* Default the ssid_filter flag to TRUE, set false under
769 certain wildcard conditions and qualified by the existence
770 of an SSID list before marking the scan as filtered */
771 ssid_filter = true;
772
773 /* Set the BSS type scan filter, use Adapter setting if
774 unset */
775 scan_cfg_out->bss_mode =
776 (user_scan_in->bss_mode ? (u8) user_scan_in->
777 bss_mode : (u8) adapter->scan_mode);
778
779 /* Set the number of probes to send, use Adapter setting
780 if unset */
781 num_probes =
782 (user_scan_in->num_probes ? user_scan_in->
783 num_probes : adapter->scan_probes);
784
785 /*
786 * Set the BSSID filter to the incoming configuration,
787 * if non-zero. If not set, it will remain disabled
788 * (all zeros).
789 */
790 memcpy(scan_cfg_out->specific_bssid,
791 user_scan_in->specific_bssid,
792 sizeof(scan_cfg_out->specific_bssid));
793
Amitkumar Karwarbe0b2812012-02-27 22:04:15 -0800794 for (i = 0; i < user_scan_in->num_ssids; i++) {
795 ssid_len = user_scan_in->ssid_list[i].ssid_len;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700796
797 wildcard_ssid_tlv =
798 (struct mwifiex_ie_types_wildcard_ssid_params *)
799 tlv_pos;
800 wildcard_ssid_tlv->header.type =
801 cpu_to_le16(TLV_TYPE_WILDCARDSSID);
802 wildcard_ssid_tlv->header.len = cpu_to_le16(
803 (u16) (ssid_len + sizeof(wildcard_ssid_tlv->
804 max_ssid_length)));
Amitkumar Karwarfada1052011-11-09 21:36:21 -0800805
Amitkumar Karwarbe0b2812012-02-27 22:04:15 -0800806 /*
807 * max_ssid_length = 0 tells firmware to perform
808 * specific scan for the SSID filled, whereas
809 * max_ssid_length = IEEE80211_MAX_SSID_LEN is for
810 * wildcard scan.
811 */
812 if (ssid_len)
813 wildcard_ssid_tlv->max_ssid_length = 0;
814 else
815 wildcard_ssid_tlv->max_ssid_length =
816 IEEE80211_MAX_SSID_LEN;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700817
818 memcpy(wildcard_ssid_tlv->ssid,
Amitkumar Karwarbe0b2812012-02-27 22:04:15 -0800819 user_scan_in->ssid_list[i].ssid, ssid_len);
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700820
821 tlv_pos += (sizeof(wildcard_ssid_tlv->header)
822 + le16_to_cpu(wildcard_ssid_tlv->header.len));
823
Amitkumar Karwarbe0b2812012-02-27 22:04:15 -0800824 dev_dbg(adapter->dev, "info: scan: ssid[%d]: %s, %d\n",
825 i, wildcard_ssid_tlv->ssid,
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700826 wildcard_ssid_tlv->max_ssid_length);
827
828 /* Empty wildcard ssid with a maxlen will match many or
829 potentially all SSIDs (maxlen == 32), therefore do
830 not treat the scan as
831 filtered. */
832 if (!ssid_len && wildcard_ssid_tlv->max_ssid_length)
833 ssid_filter = false;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700834 }
835
836 /*
837 * The default number of channels sent in the command is low to
838 * ensure the response buffer from the firmware does not
839 * truncate scan results. That is not an issue with an SSID
840 * or BSSID filter applied to the scan results in the firmware.
841 */
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700842 if ((i && ssid_filter) ||
843 memcmp(scan_cfg_out->specific_bssid, &zero_mac,
844 sizeof(zero_mac)))
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
944 if (user_scan_in->chan_list[chan_idx].scan_time) {
945 scan_dur = (u16) user_scan_in->
946 chan_list[chan_idx].scan_time;
947 } else {
948 if (scan_type == MWIFIEX_SCAN_TYPE_PASSIVE)
949 scan_dur = adapter->passive_scan_time;
950 else if (*filtered_scan)
951 scan_dur = adapter->specific_scan_time;
952 else
953 scan_dur = adapter->active_scan_time;
954 }
955
956 (scan_chan_list + chan_idx)->min_scan_time =
957 cpu_to_le16(scan_dur);
958 (scan_chan_list + chan_idx)->max_scan_time =
959 cpu_to_le16(scan_dur);
960 }
961
962 /* Check if we are only scanning the current channel */
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700963 if ((chan_idx == 1) &&
964 (user_scan_in->chan_list[0].chan_number ==
965 priv->curr_bss_params.bss_descriptor.channel)) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700966 *scan_current_only = true;
967 dev_dbg(adapter->dev,
968 "info: Scan: Scanning current channel only\n");
969 }
Amitkumar Karwar658f37b2012-06-06 21:12:42 -0700970 chan_num = chan_idx;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700971 } else {
972 dev_dbg(adapter->dev,
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -0700973 "info: Scan: Creating full region channel list\n");
Amitkumar Karwar658f37b2012-06-06 21:12:42 -0700974 chan_num = mwifiex_scan_create_channel_list(priv, user_scan_in,
975 scan_chan_list,
976 *filtered_scan);
977 }
978
979 /*
980 * In associated state we will reduce the number of channels scanned per
981 * scan command to avoid any traffic delay/loss. This number is decided
982 * based on total number of channels to be scanned due to constraints
983 * of command buffers.
984 */
985 if (priv->media_connected) {
986 if (chan_num < MWIFIEX_LIMIT_1_CHANNEL_PER_SCAN_CMD)
987 *max_chan_per_scan = 1;
988 else if (chan_num < MWIFIEX_LIMIT_2_CHANNELS_PER_SCAN_CMD)
989 *max_chan_per_scan = 2;
990 else if (chan_num < MWIFIEX_LIMIT_3_CHANNELS_PER_SCAN_CMD)
991 *max_chan_per_scan = 3;
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700992 }
993}
994
995/*
996 * This function inspects the scan response buffer for pointers to
997 * expected TLVs.
998 *
999 * TLVs can be included at the end of the scan response BSS information.
1000 *
1001 * Data in the buffer is parsed pointers to TLVs that can potentially
1002 * be passed back in the response.
1003 */
1004static void
1005mwifiex_ret_802_11_scan_get_tlv_ptrs(struct mwifiex_adapter *adapter,
1006 struct mwifiex_ie_types_data *tlv,
1007 u32 tlv_buf_size, u32 req_tlv_type,
1008 struct mwifiex_ie_types_data **tlv_data)
1009{
1010 struct mwifiex_ie_types_data *current_tlv;
1011 u32 tlv_buf_left;
1012 u32 tlv_type;
1013 u32 tlv_len;
1014
1015 current_tlv = tlv;
1016 tlv_buf_left = tlv_buf_size;
1017 *tlv_data = NULL;
1018
1019 dev_dbg(adapter->dev, "info: SCAN_RESP: tlv_buf_size = %d\n",
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001020 tlv_buf_size);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001021
1022 while (tlv_buf_left >= sizeof(struct mwifiex_ie_types_header)) {
1023
1024 tlv_type = le16_to_cpu(current_tlv->header.type);
1025 tlv_len = le16_to_cpu(current_tlv->header.len);
1026
1027 if (sizeof(tlv->header) + tlv_len > tlv_buf_left) {
1028 dev_err(adapter->dev, "SCAN_RESP: TLV buffer corrupt\n");
1029 break;
1030 }
1031
1032 if (req_tlv_type == tlv_type) {
1033 switch (tlv_type) {
1034 case TLV_TYPE_TSFTIMESTAMP:
1035 dev_dbg(adapter->dev, "info: SCAN_RESP: TSF "
1036 "timestamp TLV, len = %d\n", tlv_len);
1037 *tlv_data = (struct mwifiex_ie_types_data *)
1038 current_tlv;
1039 break;
1040 case TLV_TYPE_CHANNELBANDLIST:
1041 dev_dbg(adapter->dev, "info: SCAN_RESP: channel"
1042 " band list TLV, len = %d\n", tlv_len);
1043 *tlv_data = (struct mwifiex_ie_types_data *)
1044 current_tlv;
1045 break;
1046 default:
1047 dev_err(adapter->dev,
1048 "SCAN_RESP: unhandled TLV = %d\n",
1049 tlv_type);
1050 /* Give up, this seems corrupted */
1051 return;
1052 }
1053 }
1054
1055 if (*tlv_data)
1056 break;
1057
1058
1059 tlv_buf_left -= (sizeof(tlv->header) + tlv_len);
1060 current_tlv =
1061 (struct mwifiex_ie_types_data *) (current_tlv->data +
1062 tlv_len);
1063
1064 } /* while */
1065}
1066
1067/*
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001068 * This function parses provided beacon buffer and updates
1069 * respective fields in bss descriptor structure.
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001070 */
Amitkumar Karwar9558a402012-04-16 21:36:51 -07001071int mwifiex_update_bss_desc_with_ie(struct mwifiex_adapter *adapter,
1072 struct mwifiex_bssdescriptor *bss_entry)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001073{
1074 int ret = 0;
1075 u8 element_id;
1076 struct ieee_types_fh_param_set *fh_param_set;
1077 struct ieee_types_ds_param_set *ds_param_set;
1078 struct ieee_types_cf_param_set *cf_param_set;
1079 struct ieee_types_ibss_param_set *ibss_param_set;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001080 u8 *current_ptr;
1081 u8 *rate;
1082 u8 element_len;
1083 u16 total_ie_len;
1084 u8 bytes_to_copy;
1085 u8 rate_size;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001086 u8 found_data_rate_ie;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001087 u32 bytes_left;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001088 struct ieee_types_vendor_specific *vendor_ie;
1089 const u8 wpa_oui[4] = { 0x00, 0x50, 0xf2, 0x01 };
1090 const u8 wmm_oui[4] = { 0x00, 0x50, 0xf2, 0x02 };
1091
1092 found_data_rate_ie = false;
1093 rate_size = 0;
Amitkumar Karwar9558a402012-04-16 21:36:51 -07001094 current_ptr = bss_entry->beacon_buf;
1095 bytes_left = bss_entry->beacon_buf_size;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001096
1097 /* Process variable IE */
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001098 while (bytes_left >= 2) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001099 element_id = *current_ptr;
1100 element_len = *(current_ptr + 1);
1101 total_ie_len = element_len + sizeof(struct ieee_types_header);
1102
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001103 if (bytes_left < total_ie_len) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001104 dev_err(adapter->dev, "err: InterpretIE: in processing"
1105 " IE, bytes left < IE length\n");
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001106 return -1;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001107 }
1108 switch (element_id) {
1109 case WLAN_EID_SSID:
1110 bss_entry->ssid.ssid_len = element_len;
1111 memcpy(bss_entry->ssid.ssid, (current_ptr + 2),
1112 element_len);
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001113 dev_dbg(adapter->dev,
1114 "info: InterpretIE: ssid: %-32s\n",
1115 bss_entry->ssid.ssid);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001116 break;
1117
1118 case WLAN_EID_SUPP_RATES:
1119 memcpy(bss_entry->data_rates, current_ptr + 2,
1120 element_len);
1121 memcpy(bss_entry->supported_rates, current_ptr + 2,
1122 element_len);
1123 rate_size = element_len;
1124 found_data_rate_ie = true;
1125 break;
1126
1127 case WLAN_EID_FH_PARAMS:
1128 fh_param_set =
1129 (struct ieee_types_fh_param_set *) current_ptr;
1130 memcpy(&bss_entry->phy_param_set.fh_param_set,
1131 fh_param_set,
1132 sizeof(struct ieee_types_fh_param_set));
1133 break;
1134
1135 case WLAN_EID_DS_PARAMS:
1136 ds_param_set =
1137 (struct ieee_types_ds_param_set *) current_ptr;
1138
1139 bss_entry->channel = ds_param_set->current_chan;
1140
1141 memcpy(&bss_entry->phy_param_set.ds_param_set,
1142 ds_param_set,
1143 sizeof(struct ieee_types_ds_param_set));
1144 break;
1145
1146 case WLAN_EID_CF_PARAMS:
1147 cf_param_set =
1148 (struct ieee_types_cf_param_set *) current_ptr;
1149 memcpy(&bss_entry->ss_param_set.cf_param_set,
1150 cf_param_set,
1151 sizeof(struct ieee_types_cf_param_set));
1152 break;
1153
1154 case WLAN_EID_IBSS_PARAMS:
1155 ibss_param_set =
1156 (struct ieee_types_ibss_param_set *)
1157 current_ptr;
1158 memcpy(&bss_entry->ss_param_set.ibss_param_set,
1159 ibss_param_set,
1160 sizeof(struct ieee_types_ibss_param_set));
1161 break;
1162
1163 case WLAN_EID_ERP_INFO:
1164 bss_entry->erp_flags = *(current_ptr + 2);
1165 break;
1166
1167 case WLAN_EID_EXT_SUPP_RATES:
1168 /*
1169 * Only process extended supported rate
1170 * if data rate is already found.
1171 * Data rate IE should come before
1172 * extended supported rate IE
1173 */
1174 if (found_data_rate_ie) {
1175 if ((element_len + rate_size) >
1176 MWIFIEX_SUPPORTED_RATES)
1177 bytes_to_copy =
1178 (MWIFIEX_SUPPORTED_RATES -
1179 rate_size);
1180 else
1181 bytes_to_copy = element_len;
1182
1183 rate = (u8 *) bss_entry->data_rates;
1184 rate += rate_size;
1185 memcpy(rate, current_ptr + 2, bytes_to_copy);
1186
1187 rate = (u8 *) bss_entry->supported_rates;
1188 rate += rate_size;
1189 memcpy(rate, current_ptr + 2, bytes_to_copy);
1190 }
1191 break;
1192
1193 case WLAN_EID_VENDOR_SPECIFIC:
1194 vendor_ie = (struct ieee_types_vendor_specific *)
1195 current_ptr;
1196
1197 if (!memcmp
1198 (vendor_ie->vend_hdr.oui, wpa_oui,
1199 sizeof(wpa_oui))) {
1200 bss_entry->bcn_wpa_ie =
1201 (struct ieee_types_vendor_specific *)
1202 current_ptr;
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001203 bss_entry->wpa_offset = (u16)
1204 (current_ptr - bss_entry->beacon_buf);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001205 } else if (!memcmp(vendor_ie->vend_hdr.oui, wmm_oui,
1206 sizeof(wmm_oui))) {
1207 if (total_ie_len ==
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001208 sizeof(struct ieee_types_wmm_parameter) ||
1209 total_ie_len ==
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001210 sizeof(struct ieee_types_wmm_info))
1211 /*
1212 * Only accept and copy the WMM IE if
1213 * it matches the size expected for the
1214 * WMM Info IE or the WMM Parameter IE.
1215 */
1216 memcpy((u8 *) &bss_entry->wmm_ie,
1217 current_ptr, total_ie_len);
1218 }
1219 break;
1220 case WLAN_EID_RSN:
1221 bss_entry->bcn_rsn_ie =
1222 (struct ieee_types_generic *) current_ptr;
1223 bss_entry->rsn_offset = (u16) (current_ptr -
1224 bss_entry->beacon_buf);
1225 break;
1226 case WLAN_EID_BSS_AC_ACCESS_DELAY:
1227 bss_entry->bcn_wapi_ie =
1228 (struct ieee_types_generic *) current_ptr;
1229 bss_entry->wapi_offset = (u16) (current_ptr -
1230 bss_entry->beacon_buf);
1231 break;
1232 case WLAN_EID_HT_CAPABILITY:
1233 bss_entry->bcn_ht_cap = (struct ieee80211_ht_cap *)
1234 (current_ptr +
1235 sizeof(struct ieee_types_header));
1236 bss_entry->ht_cap_offset = (u16) (current_ptr +
1237 sizeof(struct ieee_types_header) -
1238 bss_entry->beacon_buf);
1239 break;
Johannes Berg074d46d2012-03-15 19:45:16 +01001240 case WLAN_EID_HT_OPERATION:
1241 bss_entry->bcn_ht_oper =
1242 (struct ieee80211_ht_operation *)(current_ptr +
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001243 sizeof(struct ieee_types_header));
1244 bss_entry->ht_info_offset = (u16) (current_ptr +
1245 sizeof(struct ieee_types_header) -
1246 bss_entry->beacon_buf);
1247 break;
1248 case WLAN_EID_BSS_COEX_2040:
1249 bss_entry->bcn_bss_co_2040 = (u8 *) (current_ptr +
1250 sizeof(struct ieee_types_header));
1251 bss_entry->bss_co_2040_offset = (u16) (current_ptr +
1252 sizeof(struct ieee_types_header) -
1253 bss_entry->beacon_buf);
1254 break;
1255 case WLAN_EID_EXT_CAPABILITY:
1256 bss_entry->bcn_ext_cap = (u8 *) (current_ptr +
1257 sizeof(struct ieee_types_header));
1258 bss_entry->ext_cap_offset = (u16) (current_ptr +
1259 sizeof(struct ieee_types_header) -
1260 bss_entry->beacon_buf);
1261 break;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001262 default:
1263 break;
1264 }
1265
1266 current_ptr += element_len + 2;
1267
1268 /* Need to account for IE ID and IE Len */
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001269 bytes_left -= (element_len + 2);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001270
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001271 } /* while (bytes_left > 2) */
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001272 return ret;
1273}
1274
1275/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001276 * This function converts radio type scan parameter to a band configuration
1277 * to be used in join command.
1278 */
1279static u8
1280mwifiex_radio_type_to_band(u8 radio_type)
1281{
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001282 switch (radio_type) {
1283 case HostCmd_SCAN_RADIO_TYPE_A:
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -07001284 return BAND_A;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001285 case HostCmd_SCAN_RADIO_TYPE_BG:
1286 default:
Yogesh Ashok Powar636c4592011-04-15 20:50:40 -07001287 return BAND_G;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001288 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001289}
1290
1291/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001292 * This is an internal function used to start a scan based on an input
1293 * configuration.
1294 *
1295 * This uses the input user scan configuration information when provided in
1296 * order to send the appropriate scan commands to firmware to populate or
1297 * update the internal driver scan table.
1298 */
Amitkumar Karwar711825a2011-10-12 20:29:33 -07001299static int mwifiex_scan_networks(struct mwifiex_private *priv,
1300 const struct mwifiex_user_scan_cfg *user_scan_in)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001301{
1302 int ret = 0;
1303 struct mwifiex_adapter *adapter = priv->adapter;
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -07001304 struct cmd_ctrl_node *cmd_node;
1305 union mwifiex_scan_cmd_config_tlv *scan_cfg_out;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001306 struct mwifiex_ie_types_chan_list_param_set *chan_list_out;
1307 u32 buf_size;
1308 struct mwifiex_chan_scan_param_set *scan_chan_list;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001309 u8 filtered_scan;
1310 u8 scan_current_chan_only;
1311 u8 max_chan_per_scan;
1312 unsigned long flags;
1313
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001314 if (adapter->scan_processing) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001315 dev_dbg(adapter->dev, "cmd: Scan already in process...\n");
1316 return ret;
1317 }
1318
1319 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
1320 adapter->scan_processing = true;
1321 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
1322
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001323 if (priv->scan_block) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001324 dev_dbg(adapter->dev,
1325 "cmd: Scan is blocked during association...\n");
1326 return ret;
1327 }
1328
1329 scan_cfg_out = kzalloc(sizeof(union mwifiex_scan_cmd_config_tlv),
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001330 GFP_KERNEL);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001331 if (!scan_cfg_out) {
1332 dev_err(adapter->dev, "failed to alloc scan_cfg_out\n");
Christoph Fritzb53575e2011-05-08 22:50:09 +02001333 return -ENOMEM;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001334 }
1335
1336 buf_size = sizeof(struct mwifiex_chan_scan_param_set) *
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001337 MWIFIEX_USER_SCAN_CHAN_MAX;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001338 scan_chan_list = kzalloc(buf_size, GFP_KERNEL);
1339 if (!scan_chan_list) {
1340 dev_err(adapter->dev, "failed to alloc scan_chan_list\n");
1341 kfree(scan_cfg_out);
Christoph Fritzb53575e2011-05-08 22:50:09 +02001342 return -ENOMEM;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001343 }
1344
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001345 mwifiex_config_scan(priv, user_scan_in, &scan_cfg_out->config,
1346 &chan_list_out, scan_chan_list, &max_chan_per_scan,
1347 &filtered_scan, &scan_current_chan_only);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001348
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001349 ret = mwifiex_scan_channel_list(priv, max_chan_per_scan, filtered_scan,
1350 &scan_cfg_out->config, chan_list_out,
1351 scan_chan_list);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001352
1353 /* Get scan command from scan_pending_q and put to cmd_pending_q */
1354 if (!ret) {
1355 spin_lock_irqsave(&adapter->scan_pending_q_lock, flags);
1356 if (!list_empty(&adapter->scan_pending_q)) {
1357 cmd_node = list_first_entry(&adapter->scan_pending_q,
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001358 struct cmd_ctrl_node, list);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001359 list_del(&cmd_node->list);
1360 spin_unlock_irqrestore(&adapter->scan_pending_q_lock,
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001361 flags);
Amitkumar Karwarefaaa8b2011-10-12 20:28:06 -07001362 adapter->cmd_queued = cmd_node;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001363 mwifiex_insert_cmd_to_pending_q(adapter, cmd_node,
1364 true);
1365 } else {
1366 spin_unlock_irqrestore(&adapter->scan_pending_q_lock,
1367 flags);
1368 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001369 } else {
1370 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
1371 adapter->scan_processing = true;
1372 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
1373 }
1374
1375 kfree(scan_cfg_out);
1376 kfree(scan_chan_list);
1377 return ret;
1378}
1379
1380/*
Amitkumar Karwar711825a2011-10-12 20:29:33 -07001381 * Sends IOCTL request to start a scan with user configurations.
1382 *
1383 * This function allocates the IOCTL request buffer, fills it
1384 * with requisite parameters and calls the IOCTL handler.
1385 *
1386 * Upon completion, it also generates a wireless event to notify
1387 * applications.
1388 */
1389int mwifiex_set_user_scan_ioctl(struct mwifiex_private *priv,
1390 struct mwifiex_user_scan_cfg *scan_req)
1391{
1392 int status;
1393
Amitkumar Karwar711825a2011-10-12 20:29:33 -07001394 status = mwifiex_scan_networks(priv, scan_req);
Amitkumar Karwar38c9d662011-12-13 20:43:17 -08001395 queue_work(priv->adapter->workqueue, &priv->adapter->main_work);
Amitkumar Karwar711825a2011-10-12 20:29:33 -07001396
1397 return status;
1398}
1399
1400/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001401 * This function prepares a scan command to be sent to the firmware.
1402 *
1403 * This uses the scan command configuration sent to the command processing
1404 * module in command preparation stage to configure a scan command structure
1405 * to send to firmware.
1406 *
1407 * The fixed fields specifying the BSS type and BSSID filters as well as a
1408 * variable number/length of TLVs are sent in the command to firmware.
1409 *
1410 * Preparation also includes -
1411 * - Setting command ID, and proper size
1412 * - Ensuring correct endian-ness
1413 */
Amitkumar Karwara5ffddb2011-06-20 15:21:48 -07001414int mwifiex_cmd_802_11_scan(struct host_cmd_ds_command *cmd,
1415 struct mwifiex_scan_cmd_config *scan_cfg)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001416{
1417 struct host_cmd_ds_802_11_scan *scan_cmd = &cmd->params.scan;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001418
1419 /* Set fixed field variables in scan command */
1420 scan_cmd->bss_mode = scan_cfg->bss_mode;
1421 memcpy(scan_cmd->bssid, scan_cfg->specific_bssid,
1422 sizeof(scan_cmd->bssid));
1423 memcpy(scan_cmd->tlv_buffer, scan_cfg->tlv_buf, scan_cfg->tlv_buf_len);
1424
1425 cmd->command = cpu_to_le16(HostCmd_CMD_802_11_SCAN);
1426
1427 /* Size is equal to the sizeof(fixed portions) + the TLV len + header */
1428 cmd->size = cpu_to_le16((u16) (sizeof(scan_cmd->bss_mode)
1429 + sizeof(scan_cmd->bssid)
1430 + scan_cfg->tlv_buf_len + S_DS_GEN));
1431
1432 return 0;
1433}
1434
1435/*
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001436 * This function checks compatibility of requested network with current
1437 * driver settings.
1438 */
1439int mwifiex_check_network_compatibility(struct mwifiex_private *priv,
1440 struct mwifiex_bssdescriptor *bss_desc)
1441{
1442 int ret = -1;
1443
1444 if (!bss_desc)
1445 return -1;
1446
Yogesh Ashok Powar6685d102012-03-12 19:35:10 -07001447 if ((mwifiex_get_cfp(priv, (u8) bss_desc->bss_band,
1448 (u16) bss_desc->channel, 0))) {
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001449 switch (priv->bss_mode) {
1450 case NL80211_IFTYPE_STATION:
1451 case NL80211_IFTYPE_ADHOC:
1452 ret = mwifiex_is_network_compatible(priv, bss_desc,
1453 priv->bss_mode);
1454 if (ret)
1455 dev_err(priv->adapter->dev, "cannot find ssid "
1456 "%s\n", bss_desc->ssid.ssid);
1457 break;
1458 default:
1459 ret = 0;
1460 }
1461 }
1462
1463 return ret;
1464}
1465
Amitkumar Karwar9558a402012-04-16 21:36:51 -07001466static int mwifiex_update_curr_bss_params(struct mwifiex_private *priv,
1467 struct cfg80211_bss *bss)
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001468{
Jesper Juhldb652e42011-11-06 22:58:31 +01001469 struct mwifiex_bssdescriptor *bss_desc;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001470 int ret;
1471 unsigned long flags;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001472
1473 /* Allocate and fill new bss descriptor */
1474 bss_desc = kzalloc(sizeof(struct mwifiex_bssdescriptor),
1475 GFP_KERNEL);
1476 if (!bss_desc) {
1477 dev_err(priv->adapter->dev, " failed to alloc bss_desc\n");
1478 return -ENOMEM;
1479 }
Yogesh Ashok Powar5982b472011-08-29 13:21:10 -07001480
Amitkumar Karwar9558a402012-04-16 21:36:51 -07001481 ret = mwifiex_fill_new_bss_desc(priv, bss, bss_desc);
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001482 if (ret)
1483 goto done;
1484
1485 ret = mwifiex_check_network_compatibility(priv, bss_desc);
1486 if (ret)
1487 goto done;
1488
1489 /* Update current bss descriptor parameters */
1490 spin_lock_irqsave(&priv->curr_bcn_buf_lock, flags);
1491 priv->curr_bss_params.bss_descriptor.bcn_wpa_ie = NULL;
1492 priv->curr_bss_params.bss_descriptor.wpa_offset = 0;
1493 priv->curr_bss_params.bss_descriptor.bcn_rsn_ie = NULL;
1494 priv->curr_bss_params.bss_descriptor.rsn_offset = 0;
1495 priv->curr_bss_params.bss_descriptor.bcn_wapi_ie = NULL;
1496 priv->curr_bss_params.bss_descriptor.wapi_offset = 0;
1497 priv->curr_bss_params.bss_descriptor.bcn_ht_cap = NULL;
1498 priv->curr_bss_params.bss_descriptor.ht_cap_offset =
1499 0;
Johannes Berg074d46d2012-03-15 19:45:16 +01001500 priv->curr_bss_params.bss_descriptor.bcn_ht_oper = NULL;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001501 priv->curr_bss_params.bss_descriptor.ht_info_offset =
1502 0;
1503 priv->curr_bss_params.bss_descriptor.bcn_bss_co_2040 =
1504 NULL;
1505 priv->curr_bss_params.bss_descriptor.
1506 bss_co_2040_offset = 0;
1507 priv->curr_bss_params.bss_descriptor.bcn_ext_cap = NULL;
1508 priv->curr_bss_params.bss_descriptor.ext_cap_offset = 0;
1509 priv->curr_bss_params.bss_descriptor.beacon_buf = NULL;
1510 priv->curr_bss_params.bss_descriptor.beacon_buf_size =
1511 0;
1512
1513 /* Make a copy of current BSSID descriptor */
1514 memcpy(&priv->curr_bss_params.bss_descriptor, bss_desc,
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001515 sizeof(priv->curr_bss_params.bss_descriptor));
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001516 mwifiex_save_curr_bcn(priv);
1517 spin_unlock_irqrestore(&priv->curr_bcn_buf_lock, flags);
1518
1519done:
1520 kfree(bss_desc);
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001521 return 0;
1522}
1523
1524/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001525 * This function handles the command response of scan.
1526 *
1527 * The response buffer for the scan command has the following
1528 * memory layout:
1529 *
1530 * .-------------------------------------------------------------.
1531 * | Header (4 * sizeof(t_u16)): Standard command response hdr |
1532 * .-------------------------------------------------------------.
1533 * | BufSize (t_u16) : sizeof the BSS Description data |
1534 * .-------------------------------------------------------------.
1535 * | NumOfSet (t_u8) : Number of BSS Descs returned |
1536 * .-------------------------------------------------------------.
1537 * | BSSDescription data (variable, size given in BufSize) |
1538 * .-------------------------------------------------------------.
1539 * | TLV data (variable, size calculated using Header->Size, |
1540 * | BufSize and sizeof the fixed fields above) |
1541 * .-------------------------------------------------------------.
1542 */
1543int mwifiex_ret_802_11_scan(struct mwifiex_private *priv,
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001544 struct host_cmd_ds_command *resp)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001545{
1546 int ret = 0;
1547 struct mwifiex_adapter *adapter = priv->adapter;
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -07001548 struct cmd_ctrl_node *cmd_node;
1549 struct host_cmd_ds_802_11_scan_rsp *scan_rsp;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001550 struct mwifiex_ie_types_data *tlv_data;
1551 struct mwifiex_ie_types_tsf_timestamp *tsf_tlv;
1552 u8 *bss_info;
1553 u32 scan_resp_size;
1554 u32 bytes_left;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001555 u32 idx;
1556 u32 tlv_buf_size;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001557 struct mwifiex_chan_freq_power *cfp;
1558 struct mwifiex_ie_types_chan_band_list_param_set *chan_band_tlv;
1559 struct chan_band_param_set *chan_band;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001560 u8 is_bgscan_resp;
1561 unsigned long flags;
Amitkumar Karwar5116f3c2011-09-21 21:43:23 -07001562 struct cfg80211_bss *bss;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001563
1564 is_bgscan_resp = (le16_to_cpu(resp->command)
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001565 == HostCmd_CMD_802_11_BG_SCAN_QUERY);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001566 if (is_bgscan_resp)
1567 scan_rsp = &resp->params.bg_scan_query_resp.scan_resp;
1568 else
1569 scan_rsp = &resp->params.scan_resp;
1570
1571
Bing Zhao67a50032011-07-13 18:38:34 -07001572 if (scan_rsp->number_of_sets > MWIFIEX_MAX_AP) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001573 dev_err(adapter->dev, "SCAN_RESP: too many AP returned (%d)\n",
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001574 scan_rsp->number_of_sets);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001575 ret = -1;
1576 goto done;
1577 }
1578
1579 bytes_left = le16_to_cpu(scan_rsp->bss_descript_size);
1580 dev_dbg(adapter->dev, "info: SCAN_RESP: bss_descript_size %d\n",
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001581 bytes_left);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001582
1583 scan_resp_size = le16_to_cpu(resp->size);
1584
1585 dev_dbg(adapter->dev,
1586 "info: SCAN_RESP: returned %d APs before parsing\n",
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001587 scan_rsp->number_of_sets);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001588
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001589 bss_info = scan_rsp->bss_desc_and_tlv_buffer;
1590
1591 /*
1592 * The size of the TLV buffer is equal to the entire command response
1593 * size (scan_resp_size) minus the fixed fields (sizeof()'s), the
1594 * BSS Descriptions (bss_descript_size as bytesLef) and the command
1595 * response header (S_DS_GEN)
1596 */
1597 tlv_buf_size = scan_resp_size - (bytes_left
1598 + sizeof(scan_rsp->bss_descript_size)
1599 + sizeof(scan_rsp->number_of_sets)
1600 + S_DS_GEN);
1601
1602 tlv_data = (struct mwifiex_ie_types_data *) (scan_rsp->
1603 bss_desc_and_tlv_buffer +
1604 bytes_left);
1605
1606 /* Search the TLV buffer space in the scan response for any valid
1607 TLVs */
1608 mwifiex_ret_802_11_scan_get_tlv_ptrs(adapter, tlv_data, tlv_buf_size,
1609 TLV_TYPE_TSFTIMESTAMP,
1610 (struct mwifiex_ie_types_data **)
1611 &tsf_tlv);
1612
1613 /* Search the TLV buffer space in the scan response for any valid
1614 TLVs */
1615 mwifiex_ret_802_11_scan_get_tlv_ptrs(adapter, tlv_data, tlv_buf_size,
1616 TLV_TYPE_CHANNELBANDLIST,
1617 (struct mwifiex_ie_types_data **)
1618 &chan_band_tlv);
1619
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001620 for (idx = 0; idx < scan_rsp->number_of_sets && bytes_left; idx++) {
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001621 u8 bssid[ETH_ALEN];
1622 s32 rssi;
1623 const u8 *ie_buf;
1624 size_t ie_len;
Yogesh Ashok Powar6685d102012-03-12 19:35:10 -07001625 u16 channel = 0;
Amitkumar Karwarb5abcf02012-04-16 21:36:52 -07001626 u64 fw_tsf = 0;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001627 u16 beacon_size = 0;
1628 u32 curr_bcn_bytes;
1629 u32 freq;
1630 u16 beacon_period;
1631 u16 cap_info_bitmap;
1632 u8 *current_ptr;
Amitkumar Karwarb5abcf02012-04-16 21:36:52 -07001633 u64 timestamp;
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001634 struct mwifiex_bcn_param *bcn_param;
Amitkumar Karwarb5abcf02012-04-16 21:36:52 -07001635 struct mwifiex_bss_priv *bss_priv;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001636
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001637 if (bytes_left >= sizeof(beacon_size)) {
1638 /* Extract & convert beacon size from command buffer */
1639 memcpy(&beacon_size, bss_info, sizeof(beacon_size));
1640 bytes_left -= sizeof(beacon_size);
1641 bss_info += sizeof(beacon_size);
1642 }
1643
1644 if (!beacon_size || beacon_size > bytes_left) {
1645 bss_info += bytes_left;
1646 bytes_left = 0;
1647 return -1;
1648 }
1649
1650 /* Initialize the current working beacon pointer for this BSS
1651 * iteration */
1652 current_ptr = bss_info;
1653
1654 /* Advance the return beacon pointer past the current beacon */
1655 bss_info += beacon_size;
1656 bytes_left -= beacon_size;
1657
1658 curr_bcn_bytes = beacon_size;
1659
1660 /*
1661 * First 5 fields are bssid, RSSI, time stamp, beacon interval,
1662 * and capability information
1663 */
1664 if (curr_bcn_bytes < sizeof(struct mwifiex_bcn_param)) {
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001665 dev_err(adapter->dev,
1666 "InterpretIE: not enough bytes left\n");
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001667 continue;
1668 }
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001669 bcn_param = (struct mwifiex_bcn_param *)current_ptr;
1670 current_ptr += sizeof(*bcn_param);
1671 curr_bcn_bytes -= sizeof(*bcn_param);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001672
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001673 memcpy(bssid, bcn_param->bssid, ETH_ALEN);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001674
Amitkumar Karwarc9919be2012-03-15 20:51:47 -07001675 rssi = (s32) bcn_param->rssi;
1676 rssi = (-rssi) * 100; /* Convert dBm to mBm */
1677 dev_dbg(adapter->dev, "info: InterpretIE: RSSI=%d\n", rssi);
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001678
Amitkumar Karwarb5abcf02012-04-16 21:36:52 -07001679 timestamp = le64_to_cpu(bcn_param->timestamp);
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001680 beacon_period = le16_to_cpu(bcn_param->beacon_period);
1681
1682 cap_info_bitmap = le16_to_cpu(bcn_param->cap_info_bitmap);
1683 dev_dbg(adapter->dev, "info: InterpretIE: capabilities=0x%X\n",
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001684 cap_info_bitmap);
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001685
1686 /* Rest of the current buffer are IE's */
1687 ie_buf = current_ptr;
1688 ie_len = curr_bcn_bytes;
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001689 dev_dbg(adapter->dev,
1690 "info: InterpretIE: IELength for this AP = %d\n",
1691 curr_bcn_bytes);
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001692
1693 while (curr_bcn_bytes >= sizeof(struct ieee_types_header)) {
1694 u8 element_id, element_len;
1695
1696 element_id = *current_ptr;
1697 element_len = *(current_ptr + 1);
1698 if (curr_bcn_bytes < element_len +
1699 sizeof(struct ieee_types_header)) {
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001700 dev_err(priv->adapter->dev,
1701 "%s: bytes left < IE length\n",
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001702 __func__);
1703 goto done;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001704 }
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001705 if (element_id == WLAN_EID_DS_PARAMS) {
1706 channel = *(u8 *) (current_ptr +
1707 sizeof(struct ieee_types_header));
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001708 break;
1709 }
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001710
1711 current_ptr += element_len +
1712 sizeof(struct ieee_types_header);
1713 curr_bcn_bytes -= element_len +
1714 sizeof(struct ieee_types_header);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001715 }
1716
1717 /*
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001718 * If the TSF TLV was appended to the scan results, save this
Amitkumar Karwarb5abcf02012-04-16 21:36:52 -07001719 * entry's TSF value in the fw_tsf field. It is the firmware's
1720 * TSF value at the time the beacon or probe response was
1721 * received.
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001722 */
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001723 if (tsf_tlv)
Amitkumar Karwarb5abcf02012-04-16 21:36:52 -07001724 memcpy(&fw_tsf, &tsf_tlv->tsf_data[idx * TSF_DATA_SIZE],
1725 sizeof(fw_tsf));
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001726
Yogesh Ashok Powar6685d102012-03-12 19:35:10 -07001727 if (channel) {
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001728 struct ieee80211_channel *chan;
1729 u8 band;
1730
1731 band = BAND_G;
1732 if (chan_band_tlv) {
1733 chan_band =
1734 &chan_band_tlv->chan_band_param[idx];
1735 band = mwifiex_radio_type_to_band(
1736 chan_band->radio_type
1737 & (BIT(0) | BIT(1)));
1738 }
1739
Yogesh Ashok Powar6685d102012-03-12 19:35:10 -07001740 cfp = mwifiex_get_cfp(priv, band, channel, 0);
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001741
1742 freq = cfp ? cfp->freq : 0;
1743
1744 chan = ieee80211_get_channel(priv->wdev->wiphy, freq);
1745
1746 if (chan && !(chan->flags & IEEE80211_CHAN_DISABLED)) {
Amitkumar Karwar5116f3c2011-09-21 21:43:23 -07001747 bss = cfg80211_inform_bss(priv->wdev->wiphy,
Amitkumar Karwarb5abcf02012-04-16 21:36:52 -07001748 chan, bssid, timestamp,
Amitkumar Karwar5116f3c2011-09-21 21:43:23 -07001749 cap_info_bitmap, beacon_period,
1750 ie_buf, ie_len, rssi, GFP_KERNEL);
Amitkumar Karwarb5abcf02012-04-16 21:36:52 -07001751 bss_priv = (struct mwifiex_bss_priv *)bss->priv;
1752 bss_priv->band = band;
1753 bss_priv->fw_tsf = fw_tsf;
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001754 if (priv->media_connected &&
1755 !memcmp(bssid,
1756 priv->curr_bss_params.bss_descriptor
1757 .mac_address, ETH_ALEN))
Amitkumar Karwar9558a402012-04-16 21:36:51 -07001758 mwifiex_update_curr_bss_params(priv,
1759 bss);
1760 cfg80211_put_bss(bss);
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07001761 }
1762 } else {
1763 dev_dbg(adapter->dev, "missing BSS channel IE\n");
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001764 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001765 }
1766
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001767 spin_lock_irqsave(&adapter->scan_pending_q_lock, flags);
1768 if (list_empty(&adapter->scan_pending_q)) {
1769 spin_unlock_irqrestore(&adapter->scan_pending_q_lock, flags);
1770 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
1771 adapter->scan_processing = false;
1772 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001773
1774 /* Need to indicate IOCTL complete */
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001775 if (adapter->curr_cmd->wait_q_enabled) {
1776 adapter->cmd_wait_q.status = 0;
Amitkumar Karwarefaaa8b2011-10-12 20:28:06 -07001777 mwifiex_complete_cmd(adapter, adapter->curr_cmd);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001778 }
1779 if (priv->report_scan_result)
1780 priv->report_scan_result = false;
1781 if (priv->scan_pending_on_block) {
1782 priv->scan_pending_on_block = false;
1783 up(&priv->async_sem);
1784 }
1785
Amitkumar Karwar38c9d662011-12-13 20:43:17 -08001786 if (priv->user_scan_cfg) {
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001787 dev_dbg(priv->adapter->dev,
1788 "info: %s: sending scan results\n", __func__);
Amitkumar Karwar38c9d662011-12-13 20:43:17 -08001789 cfg80211_scan_done(priv->scan_request, 0);
1790 priv->scan_request = NULL;
1791 kfree(priv->user_scan_cfg);
1792 priv->user_scan_cfg = NULL;
1793 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001794 } else {
Amitkumar Karwar3249ba72012-06-06 21:12:41 -07001795 if (!mwifiex_wmm_lists_empty(adapter)) {
1796 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));
1801 } else {
1802 /* Get scan command from scan_pending_q and put to
1803 cmd_pending_q */
1804 cmd_node = list_first_entry(&adapter->scan_pending_q,
1805 struct cmd_ctrl_node, list);
1806 list_del(&cmd_node->list);
1807 spin_unlock_irqrestore(&adapter->scan_pending_q_lock,
1808 flags);
1809 mwifiex_insert_cmd_to_pending_q(adapter, cmd_node,
1810 true);
1811 }
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001812 }
1813
1814done:
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001815 return ret;
1816}
1817
1818/*
1819 * This function prepares command for background scan query.
1820 *
1821 * Preparation includes -
1822 * - Setting command ID and proper size
1823 * - Setting background scan flush parameter
1824 * - Ensuring correct endian-ness
1825 */
Amitkumar Karwar572e8f32011-04-13 17:27:08 -07001826int mwifiex_cmd_802_11_bg_scan_query(struct host_cmd_ds_command *cmd)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001827{
1828 struct host_cmd_ds_802_11_bg_scan_query *bg_query =
1829 &cmd->params.bg_scan_query;
1830
1831 cmd->command = cpu_to_le16(HostCmd_CMD_802_11_BG_SCAN_QUERY);
1832 cmd->size = cpu_to_le16(sizeof(struct host_cmd_ds_802_11_bg_scan_query)
1833 + S_DS_GEN);
1834
1835 bg_query->flush = 1;
1836
1837 return 0;
1838}
1839
1840/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001841 * This function inserts scan command node to the scan pending queue.
1842 */
1843void
1844mwifiex_queue_scan_cmd(struct mwifiex_private *priv,
1845 struct cmd_ctrl_node *cmd_node)
1846{
1847 struct mwifiex_adapter *adapter = priv->adapter;
1848 unsigned long flags;
1849
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001850 cmd_node->wait_q_enabled = true;
Amitkumar Karwarefaaa8b2011-10-12 20:28:06 -07001851 cmd_node->condition = &adapter->scan_wait_q_woken;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001852 spin_lock_irqsave(&adapter->scan_pending_q_lock, flags);
1853 list_add_tail(&cmd_node->list, &adapter->scan_pending_q);
1854 spin_unlock_irqrestore(&adapter->scan_pending_q_lock, flags);
1855}
1856
1857/*
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001858 * This function sends a scan command for all available channels to the
1859 * firmware, filtered on a specific SSID.
1860 */
1861static int mwifiex_scan_specific_ssid(struct mwifiex_private *priv,
Amitkumar Karwarb9be5f32012-02-27 22:04:14 -08001862 struct cfg80211_ssid *req_ssid)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001863{
1864 struct mwifiex_adapter *adapter = priv->adapter;
1865 int ret = 0;
1866 struct mwifiex_user_scan_cfg *scan_cfg;
1867
1868 if (!req_ssid)
1869 return -1;
1870
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001871 if (adapter->scan_processing) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001872 dev_dbg(adapter->dev, "cmd: Scan already in process...\n");
1873 return ret;
1874 }
1875
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001876 if (priv->scan_block) {
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001877 dev_dbg(adapter->dev,
1878 "cmd: Scan is blocked during association...\n");
1879 return ret;
1880 }
1881
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001882 scan_cfg = kzalloc(sizeof(struct mwifiex_user_scan_cfg), GFP_KERNEL);
1883 if (!scan_cfg) {
1884 dev_err(adapter->dev, "failed to alloc scan_cfg\n");
Christoph Fritzb53575e2011-05-08 22:50:09 +02001885 return -ENOMEM;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001886 }
1887
Amitkumar Karwarbe0b2812012-02-27 22:04:15 -08001888 scan_cfg->ssid_list = req_ssid;
1889 scan_cfg->num_ssids = 1;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001890
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001891 ret = mwifiex_scan_networks(priv, scan_cfg);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001892
1893 kfree(scan_cfg);
1894 return ret;
1895}
1896
1897/*
1898 * Sends IOCTL request to start a scan.
1899 *
1900 * This function allocates the IOCTL request buffer, fills it
1901 * with requisite parameters and calls the IOCTL handler.
1902 *
1903 * Scan command can be issued for both normal scan and specific SSID
1904 * scan, depending upon whether an SSID is provided or not.
1905 */
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001906int mwifiex_request_scan(struct mwifiex_private *priv,
Amitkumar Karwarb9be5f32012-02-27 22:04:14 -08001907 struct cfg80211_ssid *req_ssid)
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001908{
Yogesh Ashok Powar270e58e2011-05-03 20:11:46 -07001909 int ret;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001910
1911 if (down_interruptible(&priv->async_sem)) {
1912 dev_err(priv->adapter->dev, "%s: acquire semaphore\n",
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001913 __func__);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001914 return -1;
1915 }
1916 priv->scan_pending_on_block = true;
1917
Amitkumar Karwarefaaa8b2011-10-12 20:28:06 -07001918 priv->adapter->scan_wait_q_woken = false;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001919
1920 if (req_ssid && req_ssid->ssid_len != 0)
1921 /* Specific SSID scan */
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001922 ret = mwifiex_scan_specific_ssid(priv, req_ssid);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001923 else
1924 /* Normal scan */
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001925 ret = mwifiex_scan_networks(priv, NULL);
1926
1927 if (!ret)
1928 ret = mwifiex_wait_queue_complete(priv->adapter);
1929
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001930 if (ret == -1) {
1931 priv->scan_pending_on_block = false;
1932 up(&priv->async_sem);
1933 }
Amitkumar Karwar600f5d92011-04-13 17:27:06 -07001934
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001935 return ret;
1936}
1937
1938/*
1939 * This function appends the vendor specific IE TLV to a buffer.
1940 */
1941int
1942mwifiex_cmd_append_vsie_tlv(struct mwifiex_private *priv,
1943 u16 vsie_mask, u8 **buffer)
1944{
1945 int id, ret_len = 0;
1946 struct mwifiex_ie_types_vendor_param_set *vs_param_set;
1947
1948 if (!buffer)
1949 return 0;
1950 if (!(*buffer))
1951 return 0;
1952
1953 /*
1954 * Traverse through the saved vendor specific IE array and append
1955 * the selected(scan/assoc/adhoc) IE as TLV to the command
1956 */
1957 for (id = 0; id < MWIFIEX_MAX_VSIE_NUM; id++) {
1958 if (priv->vs_ie[id].mask & vsie_mask) {
1959 vs_param_set =
1960 (struct mwifiex_ie_types_vendor_param_set *)
1961 *buffer;
1962 vs_param_set->header.type =
1963 cpu_to_le16(TLV_TYPE_PASSTHROUGH);
1964 vs_param_set->header.len =
1965 cpu_to_le16((((u16) priv->vs_ie[id].ie[1])
1966 & 0x00FF) + 2);
1967 memcpy(vs_param_set->ie, priv->vs_ie[id].ie,
1968 le16_to_cpu(vs_param_set->header.len));
1969 *buffer += le16_to_cpu(vs_param_set->header.len) +
1970 sizeof(struct mwifiex_ie_types_header);
1971 ret_len += le16_to_cpu(vs_param_set->header.len) +
1972 sizeof(struct mwifiex_ie_types_header);
1973 }
1974 }
1975 return ret_len;
1976}
1977
1978/*
1979 * This function saves a beacon buffer of the current BSS descriptor.
1980 *
1981 * The current beacon buffer is saved so that it can be restored in the
1982 * following cases that makes the beacon buffer not to contain the current
1983 * ssid's beacon buffer.
1984 * - The current ssid was not found somehow in the last scan.
1985 * - The current ssid was the last entry of the scan table and overloaded.
1986 */
1987void
1988mwifiex_save_curr_bcn(struct mwifiex_private *priv)
1989{
1990 struct mwifiex_bssdescriptor *curr_bss =
1991 &priv->curr_bss_params.bss_descriptor;
1992
Amitkumar Karwar030fe792011-04-27 19:13:13 -07001993 if (!curr_bss->beacon_buf_size)
1994 return;
1995
1996 /* allocate beacon buffer at 1st time; or if it's size has changed */
1997 if (!priv->curr_bcn_buf ||
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07001998 priv->curr_bcn_size != curr_bss->beacon_buf_size) {
Amitkumar Karwar030fe792011-04-27 19:13:13 -07001999 priv->curr_bcn_size = curr_bss->beacon_buf_size;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002000
2001 kfree(priv->curr_bcn_buf);
Yogesh Ashok Powar5982b472011-08-29 13:21:10 -07002002 priv->curr_bcn_buf = kmalloc(curr_bss->beacon_buf_size,
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07002003 GFP_ATOMIC);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002004 if (!priv->curr_bcn_buf) {
2005 dev_err(priv->adapter->dev,
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07002006 "failed to alloc curr_bcn_buf\n");
Amitkumar Karwar030fe792011-04-27 19:13:13 -07002007 return;
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002008 }
2009 }
Amitkumar Karwar030fe792011-04-27 19:13:13 -07002010
2011 memcpy(priv->curr_bcn_buf, curr_bss->beacon_buf,
Yogesh Ashok Powarcff23ce2012-03-13 19:22:38 -07002012 curr_bss->beacon_buf_size);
Amitkumar Karwar030fe792011-04-27 19:13:13 -07002013 dev_dbg(priv->adapter->dev, "info: current beacon saved %d\n",
2014 priv->curr_bcn_size);
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07002015
2016 curr_bss->beacon_buf = priv->curr_bcn_buf;
2017
2018 /* adjust the pointers in the current BSS descriptor */
2019 if (curr_bss->bcn_wpa_ie)
2020 curr_bss->bcn_wpa_ie =
2021 (struct ieee_types_vendor_specific *)
2022 (curr_bss->beacon_buf +
2023 curr_bss->wpa_offset);
2024
2025 if (curr_bss->bcn_rsn_ie)
2026 curr_bss->bcn_rsn_ie = (struct ieee_types_generic *)
2027 (curr_bss->beacon_buf +
2028 curr_bss->rsn_offset);
2029
2030 if (curr_bss->bcn_ht_cap)
2031 curr_bss->bcn_ht_cap = (struct ieee80211_ht_cap *)
2032 (curr_bss->beacon_buf +
2033 curr_bss->ht_cap_offset);
2034
Johannes Berg074d46d2012-03-15 19:45:16 +01002035 if (curr_bss->bcn_ht_oper)
2036 curr_bss->bcn_ht_oper = (struct ieee80211_ht_operation *)
Amitkumar Karwar7c6fa2a2011-08-10 18:53:57 -07002037 (curr_bss->beacon_buf +
2038 curr_bss->ht_info_offset);
2039
2040 if (curr_bss->bcn_bss_co_2040)
2041 curr_bss->bcn_bss_co_2040 =
2042 (u8 *) (curr_bss->beacon_buf +
2043 curr_bss->bss_co_2040_offset);
2044
2045 if (curr_bss->bcn_ext_cap)
2046 curr_bss->bcn_ext_cap = (u8 *) (curr_bss->beacon_buf +
2047 curr_bss->ext_cap_offset);
Bing Zhao5e6e3a92011-03-21 18:00:50 -07002048}
2049
2050/*
2051 * This function frees the current BSS descriptor beacon buffer.
2052 */
2053void
2054mwifiex_free_curr_bcn(struct mwifiex_private *priv)
2055{
2056 kfree(priv->curr_bcn_buf);
2057 priv->curr_bcn_buf = NULL;
2058}