]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - drivers/net/wireless/mwifiex/scan.c
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless
[mirror_ubuntu-jammy-kernel.git] / drivers / net / wireless / mwifiex / scan.c
1 /*
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
31 #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
35
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
61 union 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
68 enum cipher_suite {
69 CIPHER_SUITE_TKIP,
70 CIPHER_SUITE_CCMP,
71 CIPHER_SUITE_MAX
72 };
73 static u8 mwifiex_wpa_oui[CIPHER_SUITE_MAX][4] = {
74 { 0x00, 0x50, 0xf2, 0x02 }, /* TKIP */
75 { 0x00, 0x50, 0xf2, 0x04 }, /* AES */
76 };
77 static 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 */
88 static u8
89 mwifiex_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 */
120 static u8
121 mwifiex_is_rsn_oui_present(struct mwifiex_bssdescriptor *bss_desc, u32 cipher)
122 {
123 u8 *oui;
124 struct ie_body *iebody;
125 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) +
131 RSN_GTK_OUI_OFFSET);
132 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 */
147 static u8
148 mwifiex_is_wpa_oui_present(struct mwifiex_bssdescriptor *bss_desc, u32 cipher)
149 {
150 u8 *oui;
151 struct ie_body *iebody;
152 u8 ret = MWIFIEX_OUI_NOT_PRESENT;
153
154 if (((bss_desc->bcn_wpa_ie) &&
155 ((*(bss_desc->bcn_wpa_ie)).vend_hdr.element_id ==
156 WLAN_EID_VENDOR_SPECIFIC))) {
157 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 */
169 s32
170 mwifiex_ssid_cmp(struct cfg80211_ssid *ssid1, struct cfg80211_ssid *ssid2)
171 {
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 /*
178 * This function checks if wapi is enabled in driver and scanned network is
179 * compatible with it.
180 */
181 static bool
182 mwifiex_is_bss_wapi(struct mwifiex_private *priv,
183 struct mwifiex_bssdescriptor *bss_desc)
184 {
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 */
198 static bool
199 mwifiex_is_bss_no_sec(struct mwifiex_private *priv,
200 struct mwifiex_bssdescriptor *bss_desc)
201 {
202 if (!priv->sec_info.wep_enabled && !priv->sec_info.wpa_enabled &&
203 !priv->sec_info.wpa2_enabled && ((!bss_desc->bcn_wpa_ie) ||
204 ((*(bss_desc->bcn_wpa_ie)).vend_hdr.element_id !=
205 WLAN_EID_VENDOR_SPECIFIC)) &&
206 ((!bss_desc->bcn_rsn_ie) ||
207 ((*(bss_desc->bcn_rsn_ie)).ieee_hdr.element_id !=
208 WLAN_EID_RSN)) &&
209 !priv->sec_info.encryption_mode && !bss_desc->privacy) {
210 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 */
219 static bool
220 mwifiex_is_bss_static_wep(struct mwifiex_private *priv,
221 struct mwifiex_bssdescriptor *bss_desc)
222 {
223 if (priv->sec_info.wep_enabled && !priv->sec_info.wpa_enabled &&
224 !priv->sec_info.wpa2_enabled && bss_desc->privacy) {
225 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 */
234 static bool
235 mwifiex_is_bss_wpa(struct mwifiex_private *priv,
236 struct mwifiex_bssdescriptor *bss_desc)
237 {
238 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)).
241 vend_hdr.element_id == WLAN_EID_VENDOR_SPECIFIC))
242 /*
243 * Privacy bit may NOT be set in some APs like
244 * LinkSys WRT54G && bss_desc->privacy
245 */
246 ) {
247 dev_dbg(priv->adapter->dev, "info: %s: WPA:"
248 " wpa_ie=%#x wpa2_ie=%#x WEP=%s WPA=%s WPA2=%s "
249 "EncMode=%#x privacy=%#x\n", __func__,
250 (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,
256 (priv->sec_info.wep_enabled) ? "e" : "d",
257 (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 */
270 static bool
271 mwifiex_is_bss_wpa2(struct mwifiex_private *priv,
272 struct mwifiex_bssdescriptor *bss_desc)
273 {
274 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 */
283 dev_dbg(priv->adapter->dev, "info: %s: WPA2: "
284 " wpa_ie=%#x wpa2_ie=%#x WEP=%s WPA=%s WPA2=%s "
285 "EncMode=%#x privacy=%#x\n", __func__,
286 (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,
292 (priv->sec_info.wep_enabled) ? "e" : "d",
293 (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 */
306 static bool
307 mwifiex_is_bss_adhoc_aes(struct mwifiex_private *priv,
308 struct mwifiex_bssdescriptor *bss_desc)
309 {
310 if (!priv->sec_info.wep_enabled && !priv->sec_info.wpa_enabled &&
311 !priv->sec_info.wpa2_enabled &&
312 ((!bss_desc->bcn_wpa_ie) ||
313 ((*(bss_desc->bcn_wpa_ie)).
314 vend_hdr.element_id != WLAN_EID_VENDOR_SPECIFIC)) &&
315 ((!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) {
318 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 */
327 static bool
328 mwifiex_is_bss_dynamic_wep(struct mwifiex_private *priv,
329 struct mwifiex_bssdescriptor *bss_desc)
330 {
331 if (!priv->sec_info.wep_enabled && !priv->sec_info.wpa_enabled &&
332 !priv->sec_info.wpa2_enabled &&
333 ((!bss_desc->bcn_wpa_ie) ||
334 ((*(bss_desc->bcn_wpa_ie)).
335 vend_hdr.element_id != WLAN_EID_VENDOR_SPECIFIC)) &&
336 ((!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) {
339 dev_dbg(priv->adapter->dev, "info: %s: dynamic "
340 "WEP: wpa_ie=%#x wpa2_ie=%#x "
341 "EncMode=%#x privacy=%#x\n",
342 __func__,
343 (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 */
374 static s32
375 mwifiex_is_network_compatible(struct mwifiex_private *priv,
376 struct mwifiex_bssdescriptor *bss_desc, u32 mode)
377 {
378 struct mwifiex_adapter *adapter = priv->adapter;
379
380 bss_desc->disable_11n = false;
381
382 /* Don't check for compatibility if roaming */
383 if (priv->media_connected &&
384 (priv->bss_mode == NL80211_IFTYPE_STATION) &&
385 (bss_desc->bss_mode == NL80211_IFTYPE_STATION))
386 return 0;
387
388 if (priv->wps.session_enable) {
389 dev_dbg(adapter->dev,
390 "info: return success directly in WPS period\n");
391 return 0;
392 }
393
394 if (bss_desc->chan_sw_ie_present) {
395 dev_err(adapter->dev,
396 "Don't connect to AP with WLAN_EID_CHANNEL_SWITCH\n");
397 return -1;
398 }
399
400 if (mwifiex_is_bss_wapi(priv, bss_desc)) {
401 dev_dbg(adapter->dev, "info: return success for WAPI AP\n");
402 return 0;
403 }
404
405 if (bss_desc->bss_mode == mode) {
406 if (mwifiex_is_bss_no_sec(priv, bss_desc)) {
407 /* No security */
408 return 0;
409 } else if (mwifiex_is_bss_static_wep(priv, bss_desc)) {
410 /* Static WEP enabled */
411 dev_dbg(adapter->dev, "info: Disable 11n in WEP mode.\n");
412 bss_desc->disable_11n = true;
413 return 0;
414 } else if (mwifiex_is_bss_wpa(priv, bss_desc)) {
415 /* WPA enabled */
416 if (((priv->adapter->config_bands & BAND_GN ||
417 priv->adapter->config_bands & BAND_AN) &&
418 bss_desc->bcn_ht_cap) &&
419 !mwifiex_is_wpa_oui_present(bss_desc,
420 CIPHER_SUITE_CCMP)) {
421
422 if (mwifiex_is_wpa_oui_present
423 (bss_desc, CIPHER_SUITE_TKIP)) {
424 dev_dbg(adapter->dev,
425 "info: Disable 11n if AES "
426 "is not supported by AP\n");
427 bss_desc->disable_11n = true;
428 } else {
429 return -1;
430 }
431 }
432 return 0;
433 } else if (mwifiex_is_bss_wpa2(priv, bss_desc)) {
434 /* WPA2 enabled */
435 if (((priv->adapter->config_bands & BAND_GN ||
436 priv->adapter->config_bands & BAND_AN) &&
437 bss_desc->bcn_ht_cap) &&
438 !mwifiex_is_rsn_oui_present(bss_desc,
439 CIPHER_SUITE_CCMP)) {
440
441 if (mwifiex_is_rsn_oui_present
442 (bss_desc, CIPHER_SUITE_TKIP)) {
443 dev_dbg(adapter->dev,
444 "info: Disable 11n if AES "
445 "is not supported by AP\n");
446 bss_desc->disable_11n = true;
447 } else {
448 return -1;
449 }
450 }
451 return 0;
452 } else if (mwifiex_is_bss_adhoc_aes(priv, bss_desc)) {
453 /* Ad-hoc AES enabled */
454 return 0;
455 } else if (mwifiex_is_bss_dynamic_wep(priv, bss_desc)) {
456 /* Dynamic WEP enabled */
457 return 0;
458 }
459
460 /* Security doesn't match */
461 dev_dbg(adapter->dev,
462 "info: %s: failed: wpa_ie=%#x wpa2_ie=%#x WEP=%s "
463 "WPA=%s WPA2=%s EncMode=%#x privacy=%#x\n", __func__,
464 (bss_desc->bcn_wpa_ie) ?
465 (*(bss_desc->bcn_wpa_ie)).vend_hdr.element_id : 0,
466 (bss_desc->bcn_rsn_ie) ?
467 (*(bss_desc->bcn_rsn_ie)).ieee_hdr.element_id : 0,
468 (priv->sec_info.wep_enabled) ? "e" : "d",
469 (priv->sec_info.wpa_enabled) ? "e" : "d",
470 (priv->sec_info.wpa2_enabled) ? "e" : "d",
471 priv->sec_info.encryption_mode, bss_desc->privacy);
472 return -1;
473 }
474
475 /* Mode doesn't match */
476 return -1;
477 }
478
479 /*
480 * This function creates a channel list for the driver to scan, based
481 * on region/band information.
482 *
483 * This routine is used for any scan that is not provided with a
484 * specific channel list to scan.
485 */
486 static int
487 mwifiex_scan_create_channel_list(struct mwifiex_private *priv,
488 const struct mwifiex_user_scan_cfg
489 *user_scan_in,
490 struct mwifiex_chan_scan_param_set
491 *scan_chan_list,
492 u8 filtered_scan)
493 {
494 enum ieee80211_band band;
495 struct ieee80211_supported_band *sband;
496 struct ieee80211_channel *ch;
497 struct mwifiex_adapter *adapter = priv->adapter;
498 int chan_idx = 0, i;
499
500 for (band = 0; (band < IEEE80211_NUM_BANDS) ; band++) {
501
502 if (!priv->wdev->wiphy->bands[band])
503 continue;
504
505 sband = priv->wdev->wiphy->bands[band];
506
507 for (i = 0; (i < sband->n_channels) ; i++) {
508 ch = &sband->channels[i];
509 if (ch->flags & IEEE80211_CHAN_DISABLED)
510 continue;
511 scan_chan_list[chan_idx].radio_type = band;
512
513 if (user_scan_in &&
514 user_scan_in->chan_list[0].scan_time)
515 scan_chan_list[chan_idx].max_scan_time =
516 cpu_to_le16((u16) user_scan_in->
517 chan_list[0].scan_time);
518 else if (ch->flags & IEEE80211_CHAN_NO_IR)
519 scan_chan_list[chan_idx].max_scan_time =
520 cpu_to_le16(adapter->passive_scan_time);
521 else
522 scan_chan_list[chan_idx].max_scan_time =
523 cpu_to_le16(adapter->active_scan_time);
524
525 if (ch->flags & IEEE80211_CHAN_NO_IR)
526 scan_chan_list[chan_idx].chan_scan_mode_bitmap
527 |= MWIFIEX_PASSIVE_SCAN;
528 else
529 scan_chan_list[chan_idx].chan_scan_mode_bitmap
530 &= ~MWIFIEX_PASSIVE_SCAN;
531 scan_chan_list[chan_idx].chan_number =
532 (u32) ch->hw_value;
533 if (filtered_scan) {
534 scan_chan_list[chan_idx].max_scan_time =
535 cpu_to_le16(adapter->specific_scan_time);
536 scan_chan_list[chan_idx].chan_scan_mode_bitmap
537 |= MWIFIEX_DISABLE_CHAN_FILT;
538 }
539 chan_idx++;
540 }
541
542 }
543 return chan_idx;
544 }
545
546 /* This function appends rate TLV to scan config command. */
547 static int
548 mwifiex_append_rate_tlv(struct mwifiex_private *priv,
549 struct mwifiex_scan_cmd_config *scan_cfg_out,
550 u8 radio)
551 {
552 struct mwifiex_ie_types_rates_param_set *rates_tlv;
553 u8 rates[MWIFIEX_SUPPORTED_RATES], *tlv_pos;
554 u32 rates_size;
555
556 memset(rates, 0, sizeof(rates));
557
558 tlv_pos = (u8 *)scan_cfg_out->tlv_buf + scan_cfg_out->tlv_buf_len;
559
560 if (priv->scan_request)
561 rates_size = mwifiex_get_rates_from_cfg80211(priv, rates,
562 radio);
563 else
564 rates_size = mwifiex_get_supported_rates(priv, rates);
565
566 dev_dbg(priv->adapter->dev, "info: SCAN_CMD: Rates size = %d\n",
567 rates_size);
568 rates_tlv = (struct mwifiex_ie_types_rates_param_set *)tlv_pos;
569 rates_tlv->header.type = cpu_to_le16(WLAN_EID_SUPP_RATES);
570 rates_tlv->header.len = cpu_to_le16((u16) rates_size);
571 memcpy(rates_tlv->rates, rates, rates_size);
572 scan_cfg_out->tlv_buf_len += sizeof(rates_tlv->header) + rates_size;
573
574 return rates_size;
575 }
576
577 /*
578 * This function constructs and sends multiple scan config commands to
579 * the firmware.
580 *
581 * Previous routines in the code flow have created a scan command configuration
582 * with any requested TLVs. This function splits the channel TLV into maximum
583 * channels supported per scan lists and sends the portion of the channel TLV,
584 * along with the other TLVs, to the firmware.
585 */
586 static int
587 mwifiex_scan_channel_list(struct mwifiex_private *priv,
588 u32 max_chan_per_scan, u8 filtered_scan,
589 struct mwifiex_scan_cmd_config *scan_cfg_out,
590 struct mwifiex_ie_types_chan_list_param_set
591 *chan_tlv_out,
592 struct mwifiex_chan_scan_param_set *scan_chan_list)
593 {
594 int ret = 0;
595 struct mwifiex_chan_scan_param_set *tmp_chan_list;
596 struct mwifiex_chan_scan_param_set *start_chan;
597
598 u32 tlv_idx, rates_size, cmd_no;
599 u32 total_scan_time;
600 u32 done_early;
601 u8 radio_type;
602
603 if (!scan_cfg_out || !chan_tlv_out || !scan_chan_list) {
604 dev_dbg(priv->adapter->dev,
605 "info: Scan: Null detect: %p, %p, %p\n",
606 scan_cfg_out, chan_tlv_out, scan_chan_list);
607 return -1;
608 }
609
610 /* Check csa channel expiry before preparing scan list */
611 mwifiex_11h_get_csa_closed_channel(priv);
612
613 chan_tlv_out->header.type = cpu_to_le16(TLV_TYPE_CHANLIST);
614
615 /* Set the temp channel struct pointer to the start of the desired
616 list */
617 tmp_chan_list = scan_chan_list;
618
619 /* Loop through the desired channel list, sending a new firmware scan
620 commands for each max_chan_per_scan channels (or for 1,6,11
621 individually if configured accordingly) */
622 while (tmp_chan_list->chan_number) {
623
624 tlv_idx = 0;
625 total_scan_time = 0;
626 radio_type = 0;
627 chan_tlv_out->header.len = 0;
628 start_chan = tmp_chan_list;
629 done_early = false;
630
631 /*
632 * Construct the Channel TLV for the scan command. Continue to
633 * insert channel TLVs until:
634 * - the tlv_idx hits the maximum configured per scan command
635 * - the next channel to insert is 0 (end of desired channel
636 * list)
637 * - done_early is set (controlling individual scanning of
638 * 1,6,11)
639 */
640 while (tlv_idx < max_chan_per_scan &&
641 tmp_chan_list->chan_number && !done_early) {
642
643 if (tmp_chan_list->chan_number == priv->csa_chan) {
644 tmp_chan_list++;
645 continue;
646 }
647
648 radio_type = tmp_chan_list->radio_type;
649 dev_dbg(priv->adapter->dev,
650 "info: Scan: Chan(%3d), Radio(%d),"
651 " Mode(%d, %d), Dur(%d)\n",
652 tmp_chan_list->chan_number,
653 tmp_chan_list->radio_type,
654 tmp_chan_list->chan_scan_mode_bitmap
655 & MWIFIEX_PASSIVE_SCAN,
656 (tmp_chan_list->chan_scan_mode_bitmap
657 & MWIFIEX_DISABLE_CHAN_FILT) >> 1,
658 le16_to_cpu(tmp_chan_list->max_scan_time));
659
660 /* Copy the current channel TLV to the command being
661 prepared */
662 memcpy(chan_tlv_out->chan_scan_param + tlv_idx,
663 tmp_chan_list,
664 sizeof(chan_tlv_out->chan_scan_param));
665
666 /* Increment the TLV header length by the size
667 appended */
668 le16_add_cpu(&chan_tlv_out->header.len,
669 sizeof(chan_tlv_out->chan_scan_param));
670
671 /*
672 * The tlv buffer length is set to the number of bytes
673 * of the between the channel tlv pointer and the start
674 * of the tlv buffer. This compensates for any TLVs
675 * that were appended before the channel list.
676 */
677 scan_cfg_out->tlv_buf_len = (u32) ((u8 *) chan_tlv_out -
678 scan_cfg_out->tlv_buf);
679
680 /* Add the size of the channel tlv header and the data
681 length */
682 scan_cfg_out->tlv_buf_len +=
683 (sizeof(chan_tlv_out->header)
684 + le16_to_cpu(chan_tlv_out->header.len));
685
686 /* Increment the index to the channel tlv we are
687 constructing */
688 tlv_idx++;
689
690 /* Count the total scan time per command */
691 total_scan_time +=
692 le16_to_cpu(tmp_chan_list->max_scan_time);
693
694 done_early = false;
695
696 /* Stop the loop if the *current* channel is in the
697 1,6,11 set and we are not filtering on a BSSID
698 or SSID. */
699 if (!filtered_scan &&
700 (tmp_chan_list->chan_number == 1 ||
701 tmp_chan_list->chan_number == 6 ||
702 tmp_chan_list->chan_number == 11))
703 done_early = true;
704
705 /* Increment the tmp pointer to the next channel to
706 be scanned */
707 tmp_chan_list++;
708
709 /* Stop the loop if the *next* channel is in the 1,6,11
710 set. This will cause it to be the only channel
711 scanned on the next interation */
712 if (!filtered_scan &&
713 (tmp_chan_list->chan_number == 1 ||
714 tmp_chan_list->chan_number == 6 ||
715 tmp_chan_list->chan_number == 11))
716 done_early = true;
717 }
718
719 /* The total scan time should be less than scan command timeout
720 value */
721 if (total_scan_time > MWIFIEX_MAX_TOTAL_SCAN_TIME) {
722 dev_err(priv->adapter->dev, "total scan time %dms"
723 " is over limit (%dms), scan skipped\n",
724 total_scan_time, MWIFIEX_MAX_TOTAL_SCAN_TIME);
725 ret = -1;
726 break;
727 }
728
729 rates_size = mwifiex_append_rate_tlv(priv, scan_cfg_out,
730 radio_type);
731
732 priv->adapter->scan_channels = start_chan;
733
734 /* Send the scan command to the firmware with the specified
735 cfg */
736 if (priv->adapter->ext_scan)
737 cmd_no = HostCmd_CMD_802_11_SCAN_EXT;
738 else
739 cmd_no = HostCmd_CMD_802_11_SCAN;
740
741 ret = mwifiex_send_cmd(priv, cmd_no, HostCmd_ACT_GEN_SET,
742 0, scan_cfg_out, false);
743
744 /* rate IE is updated per scan command but same starting
745 * pointer is used each time so that rate IE from earlier
746 * scan_cfg_out->buf is overwritten with new one.
747 */
748 scan_cfg_out->tlv_buf_len -=
749 sizeof(struct mwifiex_ie_types_header) + rates_size;
750
751 if (ret)
752 break;
753 }
754
755 if (ret)
756 return -1;
757
758 return 0;
759 }
760
761 /*
762 * This function constructs a scan command configuration structure to use
763 * in scan commands.
764 *
765 * Application layer or other functions can invoke network scanning
766 * with a scan configuration supplied in a user scan configuration structure.
767 * This structure is used as the basis of one or many scan command configuration
768 * commands that are sent to the command processing module and eventually to the
769 * firmware.
770 *
771 * This function creates a scan command configuration structure based on the
772 * following user supplied parameters (if present):
773 * - SSID filter
774 * - BSSID filter
775 * - Number of Probes to be sent
776 * - Channel list
777 *
778 * If the SSID or BSSID filter is not present, the filter is disabled/cleared.
779 * If the number of probes is not set, adapter default setting is used.
780 */
781 static void
782 mwifiex_config_scan(struct mwifiex_private *priv,
783 const struct mwifiex_user_scan_cfg *user_scan_in,
784 struct mwifiex_scan_cmd_config *scan_cfg_out,
785 struct mwifiex_ie_types_chan_list_param_set **chan_list_out,
786 struct mwifiex_chan_scan_param_set *scan_chan_list,
787 u8 *max_chan_per_scan, u8 *filtered_scan,
788 u8 *scan_current_only)
789 {
790 struct mwifiex_adapter *adapter = priv->adapter;
791 struct mwifiex_ie_types_num_probes *num_probes_tlv;
792 struct mwifiex_ie_types_wildcard_ssid_params *wildcard_ssid_tlv;
793 struct mwifiex_ie_types_bssid_list *bssid_tlv;
794 u8 *tlv_pos;
795 u32 num_probes;
796 u32 ssid_len;
797 u32 chan_idx;
798 u32 chan_num;
799 u32 scan_type;
800 u16 scan_dur;
801 u8 channel;
802 u8 radio_type;
803 int i;
804 u8 ssid_filter;
805 struct mwifiex_ie_types_htcap *ht_cap;
806
807 /* The tlv_buf_len is calculated for each scan command. The TLVs added
808 in this routine will be preserved since the routine that sends the
809 command will append channelTLVs at *chan_list_out. The difference
810 between the *chan_list_out and the tlv_buf start will be used to
811 calculate the size of anything we add in this routine. */
812 scan_cfg_out->tlv_buf_len = 0;
813
814 /* Running tlv pointer. Assigned to chan_list_out at end of function
815 so later routines know where channels can be added to the command
816 buf */
817 tlv_pos = scan_cfg_out->tlv_buf;
818
819 /* Initialize the scan as un-filtered; the flag is later set to TRUE
820 below if a SSID or BSSID filter is sent in the command */
821 *filtered_scan = false;
822
823 /* Initialize the scan as not being only on the current channel. If
824 the channel list is customized, only contains one channel, and is
825 the active channel, this is set true and data flow is not halted. */
826 *scan_current_only = false;
827
828 if (user_scan_in) {
829
830 /* Default the ssid_filter flag to TRUE, set false under
831 certain wildcard conditions and qualified by the existence
832 of an SSID list before marking the scan as filtered */
833 ssid_filter = true;
834
835 /* Set the BSS type scan filter, use Adapter setting if
836 unset */
837 scan_cfg_out->bss_mode =
838 (user_scan_in->bss_mode ? (u8) user_scan_in->
839 bss_mode : (u8) adapter->scan_mode);
840
841 /* Set the number of probes to send, use Adapter setting
842 if unset */
843 num_probes =
844 (user_scan_in->num_probes ? user_scan_in->
845 num_probes : adapter->scan_probes);
846
847 /*
848 * Set the BSSID filter to the incoming configuration,
849 * if non-zero. If not set, it will remain disabled
850 * (all zeros).
851 */
852 memcpy(scan_cfg_out->specific_bssid,
853 user_scan_in->specific_bssid,
854 sizeof(scan_cfg_out->specific_bssid));
855
856 if (adapter->ext_scan &&
857 !is_zero_ether_addr(scan_cfg_out->specific_bssid)) {
858 bssid_tlv =
859 (struct mwifiex_ie_types_bssid_list *)tlv_pos;
860 bssid_tlv->header.type = cpu_to_le16(TLV_TYPE_BSSID);
861 bssid_tlv->header.len = cpu_to_le16(ETH_ALEN);
862 memcpy(bssid_tlv->bssid, user_scan_in->specific_bssid,
863 ETH_ALEN);
864 tlv_pos += sizeof(struct mwifiex_ie_types_bssid_list);
865 }
866
867 for (i = 0; i < user_scan_in->num_ssids; i++) {
868 ssid_len = user_scan_in->ssid_list[i].ssid_len;
869
870 wildcard_ssid_tlv =
871 (struct mwifiex_ie_types_wildcard_ssid_params *)
872 tlv_pos;
873 wildcard_ssid_tlv->header.type =
874 cpu_to_le16(TLV_TYPE_WILDCARDSSID);
875 wildcard_ssid_tlv->header.len = cpu_to_le16(
876 (u16) (ssid_len + sizeof(wildcard_ssid_tlv->
877 max_ssid_length)));
878
879 /*
880 * max_ssid_length = 0 tells firmware to perform
881 * specific scan for the SSID filled, whereas
882 * max_ssid_length = IEEE80211_MAX_SSID_LEN is for
883 * wildcard scan.
884 */
885 if (ssid_len)
886 wildcard_ssid_tlv->max_ssid_length = 0;
887 else
888 wildcard_ssid_tlv->max_ssid_length =
889 IEEE80211_MAX_SSID_LEN;
890
891 memcpy(wildcard_ssid_tlv->ssid,
892 user_scan_in->ssid_list[i].ssid, ssid_len);
893
894 tlv_pos += (sizeof(wildcard_ssid_tlv->header)
895 + le16_to_cpu(wildcard_ssid_tlv->header.len));
896
897 dev_dbg(adapter->dev, "info: scan: ssid[%d]: %s, %d\n",
898 i, wildcard_ssid_tlv->ssid,
899 wildcard_ssid_tlv->max_ssid_length);
900
901 /* Empty wildcard ssid with a maxlen will match many or
902 potentially all SSIDs (maxlen == 32), therefore do
903 not treat the scan as
904 filtered. */
905 if (!ssid_len && wildcard_ssid_tlv->max_ssid_length)
906 ssid_filter = false;
907 }
908
909 /*
910 * The default number of channels sent in the command is low to
911 * ensure the response buffer from the firmware does not
912 * truncate scan results. That is not an issue with an SSID
913 * or BSSID filter applied to the scan results in the firmware.
914 */
915 if ((i && ssid_filter) ||
916 !is_zero_ether_addr(scan_cfg_out->specific_bssid))
917 *filtered_scan = true;
918 } else {
919 scan_cfg_out->bss_mode = (u8) adapter->scan_mode;
920 num_probes = adapter->scan_probes;
921 }
922
923 /*
924 * If a specific BSSID or SSID is used, the number of channels in the
925 * scan command will be increased to the absolute maximum.
926 */
927 if (*filtered_scan)
928 *max_chan_per_scan = MWIFIEX_MAX_CHANNELS_PER_SPECIFIC_SCAN;
929 else
930 *max_chan_per_scan = MWIFIEX_DEF_CHANNELS_PER_SCAN_CMD;
931
932 /* If the input config or adapter has the number of Probes set,
933 add tlv */
934 if (num_probes) {
935
936 dev_dbg(adapter->dev, "info: scan: num_probes = %d\n",
937 num_probes);
938
939 num_probes_tlv = (struct mwifiex_ie_types_num_probes *) tlv_pos;
940 num_probes_tlv->header.type = cpu_to_le16(TLV_TYPE_NUMPROBES);
941 num_probes_tlv->header.len =
942 cpu_to_le16(sizeof(num_probes_tlv->num_probes));
943 num_probes_tlv->num_probes = cpu_to_le16((u16) num_probes);
944
945 tlv_pos += sizeof(num_probes_tlv->header) +
946 le16_to_cpu(num_probes_tlv->header.len);
947
948 }
949
950 if (ISSUPP_11NENABLED(priv->adapter->fw_cap_info) &&
951 (priv->adapter->config_bands & BAND_GN ||
952 priv->adapter->config_bands & BAND_AN)) {
953 ht_cap = (struct mwifiex_ie_types_htcap *) tlv_pos;
954 memset(ht_cap, 0, sizeof(struct mwifiex_ie_types_htcap));
955 ht_cap->header.type = cpu_to_le16(WLAN_EID_HT_CAPABILITY);
956 ht_cap->header.len =
957 cpu_to_le16(sizeof(struct ieee80211_ht_cap));
958 radio_type =
959 mwifiex_band_to_radio_type(priv->adapter->config_bands);
960 mwifiex_fill_cap_info(priv, radio_type, &ht_cap->ht_cap);
961 tlv_pos += sizeof(struct mwifiex_ie_types_htcap);
962 }
963
964 /* Append vendor specific IE TLV */
965 mwifiex_cmd_append_vsie_tlv(priv, MWIFIEX_VSIE_MASK_SCAN, &tlv_pos);
966
967 /*
968 * Set the output for the channel TLV to the address in the tlv buffer
969 * past any TLVs that were added in this function (SSID, num_probes).
970 * Channel TLVs will be added past this for each scan command,
971 * preserving the TLVs that were previously added.
972 */
973 *chan_list_out =
974 (struct mwifiex_ie_types_chan_list_param_set *) tlv_pos;
975
976 if (user_scan_in && user_scan_in->chan_list[0].chan_number) {
977
978 dev_dbg(adapter->dev, "info: Scan: Using supplied channel list\n");
979
980 for (chan_idx = 0;
981 chan_idx < MWIFIEX_USER_SCAN_CHAN_MAX &&
982 user_scan_in->chan_list[chan_idx].chan_number;
983 chan_idx++) {
984
985 channel = user_scan_in->chan_list[chan_idx].chan_number;
986 (scan_chan_list + chan_idx)->chan_number = channel;
987
988 radio_type =
989 user_scan_in->chan_list[chan_idx].radio_type;
990 (scan_chan_list + chan_idx)->radio_type = radio_type;
991
992 scan_type = user_scan_in->chan_list[chan_idx].scan_type;
993
994 if (scan_type == MWIFIEX_SCAN_TYPE_PASSIVE)
995 (scan_chan_list +
996 chan_idx)->chan_scan_mode_bitmap
997 |= MWIFIEX_PASSIVE_SCAN;
998 else
999 (scan_chan_list +
1000 chan_idx)->chan_scan_mode_bitmap
1001 &= ~MWIFIEX_PASSIVE_SCAN;
1002
1003 if (*filtered_scan)
1004 (scan_chan_list +
1005 chan_idx)->chan_scan_mode_bitmap
1006 |= MWIFIEX_DISABLE_CHAN_FILT;
1007
1008 if (user_scan_in->chan_list[chan_idx].scan_time) {
1009 scan_dur = (u16) user_scan_in->
1010 chan_list[chan_idx].scan_time;
1011 } else {
1012 if (scan_type == MWIFIEX_SCAN_TYPE_PASSIVE)
1013 scan_dur = adapter->passive_scan_time;
1014 else if (*filtered_scan)
1015 scan_dur = adapter->specific_scan_time;
1016 else
1017 scan_dur = adapter->active_scan_time;
1018 }
1019
1020 (scan_chan_list + chan_idx)->min_scan_time =
1021 cpu_to_le16(scan_dur);
1022 (scan_chan_list + chan_idx)->max_scan_time =
1023 cpu_to_le16(scan_dur);
1024 }
1025
1026 /* Check if we are only scanning the current channel */
1027 if ((chan_idx == 1) &&
1028 (user_scan_in->chan_list[0].chan_number ==
1029 priv->curr_bss_params.bss_descriptor.channel)) {
1030 *scan_current_only = true;
1031 dev_dbg(adapter->dev,
1032 "info: Scan: Scanning current channel only\n");
1033 }
1034 chan_num = chan_idx;
1035 } else {
1036 dev_dbg(adapter->dev,
1037 "info: Scan: Creating full region channel list\n");
1038 chan_num = mwifiex_scan_create_channel_list(priv, user_scan_in,
1039 scan_chan_list,
1040 *filtered_scan);
1041 }
1042
1043 /*
1044 * In associated state we will reduce the number of channels scanned per
1045 * scan command to avoid any traffic delay/loss. This number is decided
1046 * based on total number of channels to be scanned due to constraints
1047 * of command buffers.
1048 */
1049 if (priv->media_connected) {
1050 if (chan_num < MWIFIEX_LIMIT_1_CHANNEL_PER_SCAN_CMD)
1051 *max_chan_per_scan = 1;
1052 else if (chan_num < MWIFIEX_LIMIT_2_CHANNELS_PER_SCAN_CMD)
1053 *max_chan_per_scan = 2;
1054 else if (chan_num < MWIFIEX_LIMIT_3_CHANNELS_PER_SCAN_CMD)
1055 *max_chan_per_scan = 3;
1056 else
1057 *max_chan_per_scan = 4;
1058 }
1059 }
1060
1061 /*
1062 * This function inspects the scan response buffer for pointers to
1063 * expected TLVs.
1064 *
1065 * TLVs can be included at the end of the scan response BSS information.
1066 *
1067 * Data in the buffer is parsed pointers to TLVs that can potentially
1068 * be passed back in the response.
1069 */
1070 static void
1071 mwifiex_ret_802_11_scan_get_tlv_ptrs(struct mwifiex_adapter *adapter,
1072 struct mwifiex_ie_types_data *tlv,
1073 u32 tlv_buf_size, u32 req_tlv_type,
1074 struct mwifiex_ie_types_data **tlv_data)
1075 {
1076 struct mwifiex_ie_types_data *current_tlv;
1077 u32 tlv_buf_left;
1078 u32 tlv_type;
1079 u32 tlv_len;
1080
1081 current_tlv = tlv;
1082 tlv_buf_left = tlv_buf_size;
1083 *tlv_data = NULL;
1084
1085 dev_dbg(adapter->dev, "info: SCAN_RESP: tlv_buf_size = %d\n",
1086 tlv_buf_size);
1087
1088 while (tlv_buf_left >= sizeof(struct mwifiex_ie_types_header)) {
1089
1090 tlv_type = le16_to_cpu(current_tlv->header.type);
1091 tlv_len = le16_to_cpu(current_tlv->header.len);
1092
1093 if (sizeof(tlv->header) + tlv_len > tlv_buf_left) {
1094 dev_err(adapter->dev, "SCAN_RESP: TLV buffer corrupt\n");
1095 break;
1096 }
1097
1098 if (req_tlv_type == tlv_type) {
1099 switch (tlv_type) {
1100 case TLV_TYPE_TSFTIMESTAMP:
1101 dev_dbg(adapter->dev, "info: SCAN_RESP: TSF "
1102 "timestamp TLV, len = %d\n", tlv_len);
1103 *tlv_data = current_tlv;
1104 break;
1105 case TLV_TYPE_CHANNELBANDLIST:
1106 dev_dbg(adapter->dev, "info: SCAN_RESP: channel"
1107 " band list TLV, len = %d\n", tlv_len);
1108 *tlv_data = current_tlv;
1109 break;
1110 default:
1111 dev_err(adapter->dev,
1112 "SCAN_RESP: unhandled TLV = %d\n",
1113 tlv_type);
1114 /* Give up, this seems corrupted */
1115 return;
1116 }
1117 }
1118
1119 if (*tlv_data)
1120 break;
1121
1122
1123 tlv_buf_left -= (sizeof(tlv->header) + tlv_len);
1124 current_tlv =
1125 (struct mwifiex_ie_types_data *) (current_tlv->data +
1126 tlv_len);
1127
1128 } /* while */
1129 }
1130
1131 /*
1132 * This function parses provided beacon buffer and updates
1133 * respective fields in bss descriptor structure.
1134 */
1135 int mwifiex_update_bss_desc_with_ie(struct mwifiex_adapter *adapter,
1136 struct mwifiex_bssdescriptor *bss_entry)
1137 {
1138 int ret = 0;
1139 u8 element_id;
1140 struct ieee_types_fh_param_set *fh_param_set;
1141 struct ieee_types_ds_param_set *ds_param_set;
1142 struct ieee_types_cf_param_set *cf_param_set;
1143 struct ieee_types_ibss_param_set *ibss_param_set;
1144 u8 *current_ptr;
1145 u8 *rate;
1146 u8 element_len;
1147 u16 total_ie_len;
1148 u8 bytes_to_copy;
1149 u8 rate_size;
1150 u8 found_data_rate_ie;
1151 u32 bytes_left;
1152 struct ieee_types_vendor_specific *vendor_ie;
1153 const u8 wpa_oui[4] = { 0x00, 0x50, 0xf2, 0x01 };
1154 const u8 wmm_oui[4] = { 0x00, 0x50, 0xf2, 0x02 };
1155
1156 found_data_rate_ie = false;
1157 rate_size = 0;
1158 current_ptr = bss_entry->beacon_buf;
1159 bytes_left = bss_entry->beacon_buf_size;
1160
1161 /* Process variable IE */
1162 while (bytes_left >= 2) {
1163 element_id = *current_ptr;
1164 element_len = *(current_ptr + 1);
1165 total_ie_len = element_len + sizeof(struct ieee_types_header);
1166
1167 if (bytes_left < total_ie_len) {
1168 dev_err(adapter->dev, "err: InterpretIE: in processing"
1169 " IE, bytes left < IE length\n");
1170 return -1;
1171 }
1172 switch (element_id) {
1173 case WLAN_EID_SSID:
1174 bss_entry->ssid.ssid_len = element_len;
1175 memcpy(bss_entry->ssid.ssid, (current_ptr + 2),
1176 element_len);
1177 dev_dbg(adapter->dev,
1178 "info: InterpretIE: ssid: %-32s\n",
1179 bss_entry->ssid.ssid);
1180 break;
1181
1182 case WLAN_EID_SUPP_RATES:
1183 memcpy(bss_entry->data_rates, current_ptr + 2,
1184 element_len);
1185 memcpy(bss_entry->supported_rates, current_ptr + 2,
1186 element_len);
1187 rate_size = element_len;
1188 found_data_rate_ie = true;
1189 break;
1190
1191 case WLAN_EID_FH_PARAMS:
1192 fh_param_set =
1193 (struct ieee_types_fh_param_set *) current_ptr;
1194 memcpy(&bss_entry->phy_param_set.fh_param_set,
1195 fh_param_set,
1196 sizeof(struct ieee_types_fh_param_set));
1197 break;
1198
1199 case WLAN_EID_DS_PARAMS:
1200 ds_param_set =
1201 (struct ieee_types_ds_param_set *) current_ptr;
1202
1203 bss_entry->channel = ds_param_set->current_chan;
1204
1205 memcpy(&bss_entry->phy_param_set.ds_param_set,
1206 ds_param_set,
1207 sizeof(struct ieee_types_ds_param_set));
1208 break;
1209
1210 case WLAN_EID_CF_PARAMS:
1211 cf_param_set =
1212 (struct ieee_types_cf_param_set *) current_ptr;
1213 memcpy(&bss_entry->ss_param_set.cf_param_set,
1214 cf_param_set,
1215 sizeof(struct ieee_types_cf_param_set));
1216 break;
1217
1218 case WLAN_EID_IBSS_PARAMS:
1219 ibss_param_set =
1220 (struct ieee_types_ibss_param_set *)
1221 current_ptr;
1222 memcpy(&bss_entry->ss_param_set.ibss_param_set,
1223 ibss_param_set,
1224 sizeof(struct ieee_types_ibss_param_set));
1225 break;
1226
1227 case WLAN_EID_ERP_INFO:
1228 bss_entry->erp_flags = *(current_ptr + 2);
1229 break;
1230
1231 case WLAN_EID_PWR_CONSTRAINT:
1232 bss_entry->local_constraint = *(current_ptr + 2);
1233 bss_entry->sensed_11h = true;
1234 break;
1235
1236 case WLAN_EID_CHANNEL_SWITCH:
1237 bss_entry->chan_sw_ie_present = true;
1238 case WLAN_EID_PWR_CAPABILITY:
1239 case WLAN_EID_TPC_REPORT:
1240 case WLAN_EID_QUIET:
1241 bss_entry->sensed_11h = true;
1242 break;
1243
1244 case WLAN_EID_EXT_SUPP_RATES:
1245 /*
1246 * Only process extended supported rate
1247 * if data rate is already found.
1248 * Data rate IE should come before
1249 * extended supported rate IE
1250 */
1251 if (found_data_rate_ie) {
1252 if ((element_len + rate_size) >
1253 MWIFIEX_SUPPORTED_RATES)
1254 bytes_to_copy =
1255 (MWIFIEX_SUPPORTED_RATES -
1256 rate_size);
1257 else
1258 bytes_to_copy = element_len;
1259
1260 rate = (u8 *) bss_entry->data_rates;
1261 rate += rate_size;
1262 memcpy(rate, current_ptr + 2, bytes_to_copy);
1263
1264 rate = (u8 *) bss_entry->supported_rates;
1265 rate += rate_size;
1266 memcpy(rate, current_ptr + 2, bytes_to_copy);
1267 }
1268 break;
1269
1270 case WLAN_EID_VENDOR_SPECIFIC:
1271 vendor_ie = (struct ieee_types_vendor_specific *)
1272 current_ptr;
1273
1274 if (!memcmp
1275 (vendor_ie->vend_hdr.oui, wpa_oui,
1276 sizeof(wpa_oui))) {
1277 bss_entry->bcn_wpa_ie =
1278 (struct ieee_types_vendor_specific *)
1279 current_ptr;
1280 bss_entry->wpa_offset = (u16)
1281 (current_ptr - bss_entry->beacon_buf);
1282 } else if (!memcmp(vendor_ie->vend_hdr.oui, wmm_oui,
1283 sizeof(wmm_oui))) {
1284 if (total_ie_len ==
1285 sizeof(struct ieee_types_wmm_parameter) ||
1286 total_ie_len ==
1287 sizeof(struct ieee_types_wmm_info))
1288 /*
1289 * Only accept and copy the WMM IE if
1290 * it matches the size expected for the
1291 * WMM Info IE or the WMM Parameter IE.
1292 */
1293 memcpy((u8 *) &bss_entry->wmm_ie,
1294 current_ptr, total_ie_len);
1295 }
1296 break;
1297 case WLAN_EID_RSN:
1298 bss_entry->bcn_rsn_ie =
1299 (struct ieee_types_generic *) current_ptr;
1300 bss_entry->rsn_offset = (u16) (current_ptr -
1301 bss_entry->beacon_buf);
1302 break;
1303 case WLAN_EID_BSS_AC_ACCESS_DELAY:
1304 bss_entry->bcn_wapi_ie =
1305 (struct ieee_types_generic *) current_ptr;
1306 bss_entry->wapi_offset = (u16) (current_ptr -
1307 bss_entry->beacon_buf);
1308 break;
1309 case WLAN_EID_HT_CAPABILITY:
1310 bss_entry->bcn_ht_cap = (struct ieee80211_ht_cap *)
1311 (current_ptr +
1312 sizeof(struct ieee_types_header));
1313 bss_entry->ht_cap_offset = (u16) (current_ptr +
1314 sizeof(struct ieee_types_header) -
1315 bss_entry->beacon_buf);
1316 break;
1317 case WLAN_EID_HT_OPERATION:
1318 bss_entry->bcn_ht_oper =
1319 (struct ieee80211_ht_operation *)(current_ptr +
1320 sizeof(struct ieee_types_header));
1321 bss_entry->ht_info_offset = (u16) (current_ptr +
1322 sizeof(struct ieee_types_header) -
1323 bss_entry->beacon_buf);
1324 break;
1325 case WLAN_EID_VHT_CAPABILITY:
1326 bss_entry->disable_11ac = false;
1327 bss_entry->bcn_vht_cap =
1328 (void *)(current_ptr +
1329 sizeof(struct ieee_types_header));
1330 bss_entry->vht_cap_offset =
1331 (u16)((u8 *)bss_entry->bcn_vht_cap -
1332 bss_entry->beacon_buf);
1333 break;
1334 case WLAN_EID_VHT_OPERATION:
1335 bss_entry->bcn_vht_oper =
1336 (void *)(current_ptr +
1337 sizeof(struct ieee_types_header));
1338 bss_entry->vht_info_offset =
1339 (u16)((u8 *)bss_entry->bcn_vht_oper -
1340 bss_entry->beacon_buf);
1341 break;
1342 case WLAN_EID_BSS_COEX_2040:
1343 bss_entry->bcn_bss_co_2040 = current_ptr +
1344 sizeof(struct ieee_types_header);
1345 bss_entry->bss_co_2040_offset = (u16) (current_ptr +
1346 sizeof(struct ieee_types_header) -
1347 bss_entry->beacon_buf);
1348 break;
1349 case WLAN_EID_EXT_CAPABILITY:
1350 bss_entry->bcn_ext_cap = current_ptr +
1351 sizeof(struct ieee_types_header);
1352 bss_entry->ext_cap_offset = (u16) (current_ptr +
1353 sizeof(struct ieee_types_header) -
1354 bss_entry->beacon_buf);
1355 break;
1356 case WLAN_EID_OPMODE_NOTIF:
1357 bss_entry->oper_mode =
1358 (void *)(current_ptr +
1359 sizeof(struct ieee_types_header));
1360 bss_entry->oper_mode_offset =
1361 (u16)((u8 *)bss_entry->oper_mode -
1362 bss_entry->beacon_buf);
1363 break;
1364 default:
1365 break;
1366 }
1367
1368 current_ptr += element_len + 2;
1369
1370 /* Need to account for IE ID and IE Len */
1371 bytes_left -= (element_len + 2);
1372
1373 } /* while (bytes_left > 2) */
1374 return ret;
1375 }
1376
1377 /*
1378 * This function converts radio type scan parameter to a band configuration
1379 * to be used in join command.
1380 */
1381 static u8
1382 mwifiex_radio_type_to_band(u8 radio_type)
1383 {
1384 switch (radio_type) {
1385 case HostCmd_SCAN_RADIO_TYPE_A:
1386 return BAND_A;
1387 case HostCmd_SCAN_RADIO_TYPE_BG:
1388 default:
1389 return BAND_G;
1390 }
1391 }
1392
1393 /*
1394 * This is an internal function used to start a scan based on an input
1395 * configuration.
1396 *
1397 * This uses the input user scan configuration information when provided in
1398 * order to send the appropriate scan commands to firmware to populate or
1399 * update the internal driver scan table.
1400 */
1401 int mwifiex_scan_networks(struct mwifiex_private *priv,
1402 const struct mwifiex_user_scan_cfg *user_scan_in)
1403 {
1404 int ret;
1405 struct mwifiex_adapter *adapter = priv->adapter;
1406 struct cmd_ctrl_node *cmd_node;
1407 union mwifiex_scan_cmd_config_tlv *scan_cfg_out;
1408 struct mwifiex_ie_types_chan_list_param_set *chan_list_out;
1409 struct mwifiex_chan_scan_param_set *scan_chan_list;
1410 u8 filtered_scan;
1411 u8 scan_current_chan_only;
1412 u8 max_chan_per_scan;
1413 unsigned long flags;
1414
1415 if (adapter->scan_processing) {
1416 dev_err(adapter->dev, "cmd: Scan already in process...\n");
1417 return -EBUSY;
1418 }
1419
1420 if (priv->scan_block) {
1421 dev_err(adapter->dev,
1422 "cmd: Scan is blocked during association...\n");
1423 return -EBUSY;
1424 }
1425
1426 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
1427 adapter->scan_processing = true;
1428 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
1429
1430 scan_cfg_out = kzalloc(sizeof(union mwifiex_scan_cmd_config_tlv),
1431 GFP_KERNEL);
1432 if (!scan_cfg_out) {
1433 ret = -ENOMEM;
1434 goto done;
1435 }
1436
1437 scan_chan_list = kcalloc(MWIFIEX_USER_SCAN_CHAN_MAX,
1438 sizeof(struct mwifiex_chan_scan_param_set),
1439 GFP_KERNEL);
1440 if (!scan_chan_list) {
1441 kfree(scan_cfg_out);
1442 ret = -ENOMEM;
1443 goto done;
1444 }
1445
1446 mwifiex_config_scan(priv, user_scan_in, &scan_cfg_out->config,
1447 &chan_list_out, scan_chan_list, &max_chan_per_scan,
1448 &filtered_scan, &scan_current_chan_only);
1449
1450 ret = mwifiex_scan_channel_list(priv, max_chan_per_scan, filtered_scan,
1451 &scan_cfg_out->config, chan_list_out,
1452 scan_chan_list);
1453
1454 /* Get scan command from scan_pending_q and put to cmd_pending_q */
1455 if (!ret) {
1456 spin_lock_irqsave(&adapter->scan_pending_q_lock, flags);
1457 if (!list_empty(&adapter->scan_pending_q)) {
1458 cmd_node = list_first_entry(&adapter->scan_pending_q,
1459 struct cmd_ctrl_node, list);
1460 list_del(&cmd_node->list);
1461 spin_unlock_irqrestore(&adapter->scan_pending_q_lock,
1462 flags);
1463 mwifiex_insert_cmd_to_pending_q(adapter, cmd_node,
1464 true);
1465 queue_work(adapter->workqueue, &adapter->main_work);
1466
1467 /* Perform internal scan synchronously */
1468 if (!priv->scan_request) {
1469 dev_dbg(adapter->dev, "wait internal scan\n");
1470 mwifiex_wait_queue_complete(adapter, cmd_node);
1471 }
1472 } else {
1473 spin_unlock_irqrestore(&adapter->scan_pending_q_lock,
1474 flags);
1475 }
1476 }
1477
1478 kfree(scan_cfg_out);
1479 kfree(scan_chan_list);
1480 done:
1481 if (ret) {
1482 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
1483 adapter->scan_processing = false;
1484 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
1485 }
1486 return ret;
1487 }
1488
1489 /*
1490 * This function prepares a scan command to be sent to the firmware.
1491 *
1492 * This uses the scan command configuration sent to the command processing
1493 * module in command preparation stage to configure a scan command structure
1494 * to send to firmware.
1495 *
1496 * The fixed fields specifying the BSS type and BSSID filters as well as a
1497 * variable number/length of TLVs are sent in the command to firmware.
1498 *
1499 * Preparation also includes -
1500 * - Setting command ID, and proper size
1501 * - Ensuring correct endian-ness
1502 */
1503 int mwifiex_cmd_802_11_scan(struct host_cmd_ds_command *cmd,
1504 struct mwifiex_scan_cmd_config *scan_cfg)
1505 {
1506 struct host_cmd_ds_802_11_scan *scan_cmd = &cmd->params.scan;
1507
1508 /* Set fixed field variables in scan command */
1509 scan_cmd->bss_mode = scan_cfg->bss_mode;
1510 memcpy(scan_cmd->bssid, scan_cfg->specific_bssid,
1511 sizeof(scan_cmd->bssid));
1512 memcpy(scan_cmd->tlv_buffer, scan_cfg->tlv_buf, scan_cfg->tlv_buf_len);
1513
1514 cmd->command = cpu_to_le16(HostCmd_CMD_802_11_SCAN);
1515
1516 /* Size is equal to the sizeof(fixed portions) + the TLV len + header */
1517 cmd->size = cpu_to_le16((u16) (sizeof(scan_cmd->bss_mode)
1518 + sizeof(scan_cmd->bssid)
1519 + scan_cfg->tlv_buf_len + S_DS_GEN));
1520
1521 return 0;
1522 }
1523
1524 /*
1525 * This function checks compatibility of requested network with current
1526 * driver settings.
1527 */
1528 int mwifiex_check_network_compatibility(struct mwifiex_private *priv,
1529 struct mwifiex_bssdescriptor *bss_desc)
1530 {
1531 int ret = -1;
1532
1533 if (!bss_desc)
1534 return -1;
1535
1536 if ((mwifiex_get_cfp(priv, (u8) bss_desc->bss_band,
1537 (u16) bss_desc->channel, 0))) {
1538 switch (priv->bss_mode) {
1539 case NL80211_IFTYPE_STATION:
1540 case NL80211_IFTYPE_ADHOC:
1541 ret = mwifiex_is_network_compatible(priv, bss_desc,
1542 priv->bss_mode);
1543 if (ret)
1544 dev_err(priv->adapter->dev,
1545 "Incompatible network settings\n");
1546 break;
1547 default:
1548 ret = 0;
1549 }
1550 }
1551
1552 return ret;
1553 }
1554
1555 static int mwifiex_update_curr_bss_params(struct mwifiex_private *priv,
1556 struct cfg80211_bss *bss)
1557 {
1558 struct mwifiex_bssdescriptor *bss_desc;
1559 int ret;
1560 unsigned long flags;
1561
1562 /* Allocate and fill new bss descriptor */
1563 bss_desc = kzalloc(sizeof(struct mwifiex_bssdescriptor), GFP_KERNEL);
1564 if (!bss_desc)
1565 return -ENOMEM;
1566
1567 ret = mwifiex_fill_new_bss_desc(priv, bss, bss_desc);
1568 if (ret)
1569 goto done;
1570
1571 ret = mwifiex_check_network_compatibility(priv, bss_desc);
1572 if (ret)
1573 goto done;
1574
1575 spin_lock_irqsave(&priv->curr_bcn_buf_lock, flags);
1576 /* Make a copy of current BSSID descriptor */
1577 memcpy(&priv->curr_bss_params.bss_descriptor, bss_desc,
1578 sizeof(priv->curr_bss_params.bss_descriptor));
1579
1580 /* The contents of beacon_ie will be copied to its own buffer
1581 * in mwifiex_save_curr_bcn()
1582 */
1583 mwifiex_save_curr_bcn(priv);
1584 spin_unlock_irqrestore(&priv->curr_bcn_buf_lock, flags);
1585
1586 done:
1587 /* beacon_ie buffer was allocated in function
1588 * mwifiex_fill_new_bss_desc(). Free it now.
1589 */
1590 kfree(bss_desc->beacon_buf);
1591 kfree(bss_desc);
1592 return 0;
1593 }
1594
1595 static int
1596 mwifiex_parse_single_response_buf(struct mwifiex_private *priv, u8 **bss_info,
1597 u32 *bytes_left, u64 fw_tsf, u8 *radio_type,
1598 bool ext_scan, s32 rssi_val)
1599 {
1600 struct mwifiex_adapter *adapter = priv->adapter;
1601 struct mwifiex_chan_freq_power *cfp;
1602 struct cfg80211_bss *bss;
1603 u8 bssid[ETH_ALEN];
1604 s32 rssi;
1605 const u8 *ie_buf;
1606 size_t ie_len;
1607 u16 channel = 0;
1608 u16 beacon_size = 0;
1609 u32 curr_bcn_bytes;
1610 u32 freq;
1611 u16 beacon_period;
1612 u16 cap_info_bitmap;
1613 u8 *current_ptr;
1614 u64 timestamp;
1615 struct mwifiex_fixed_bcn_param *bcn_param;
1616 struct mwifiex_bss_priv *bss_priv;
1617
1618 if (*bytes_left >= sizeof(beacon_size)) {
1619 /* Extract & convert beacon size from command buffer */
1620 memcpy(&beacon_size, *bss_info, sizeof(beacon_size));
1621 *bytes_left -= sizeof(beacon_size);
1622 *bss_info += sizeof(beacon_size);
1623 }
1624
1625 if (!beacon_size || beacon_size > *bytes_left) {
1626 *bss_info += *bytes_left;
1627 *bytes_left = 0;
1628 return -EFAULT;
1629 }
1630
1631 /* Initialize the current working beacon pointer for this BSS
1632 * iteration
1633 */
1634 current_ptr = *bss_info;
1635
1636 /* Advance the return beacon pointer past the current beacon */
1637 *bss_info += beacon_size;
1638 *bytes_left -= beacon_size;
1639
1640 curr_bcn_bytes = beacon_size;
1641
1642 /* First 5 fields are bssid, RSSI(for legacy scan only),
1643 * time stamp, beacon interval, and capability information
1644 */
1645 if (curr_bcn_bytes < ETH_ALEN + sizeof(u8) +
1646 sizeof(struct mwifiex_fixed_bcn_param)) {
1647 dev_err(adapter->dev, "InterpretIE: not enough bytes left\n");
1648 return -EFAULT;
1649 }
1650
1651 memcpy(bssid, current_ptr, ETH_ALEN);
1652 current_ptr += ETH_ALEN;
1653 curr_bcn_bytes -= ETH_ALEN;
1654
1655 if (!ext_scan) {
1656 rssi = (s32) *(u8 *)current_ptr;
1657 rssi = (-rssi) * 100; /* Convert dBm to mBm */
1658 current_ptr += sizeof(u8);
1659 curr_bcn_bytes -= sizeof(u8);
1660 dev_dbg(adapter->dev, "info: InterpretIE: RSSI=%d\n", rssi);
1661 } else {
1662 rssi = rssi_val;
1663 }
1664
1665 bcn_param = (struct mwifiex_fixed_bcn_param *)current_ptr;
1666 current_ptr += sizeof(*bcn_param);
1667 curr_bcn_bytes -= sizeof(*bcn_param);
1668
1669 timestamp = le64_to_cpu(bcn_param->timestamp);
1670 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",
1674 cap_info_bitmap);
1675
1676 /* Rest of the current buffer are IE's */
1677 ie_buf = current_ptr;
1678 ie_len = curr_bcn_bytes;
1679 dev_dbg(adapter->dev, "info: InterpretIE: IELength for this AP = %d\n",
1680 curr_bcn_bytes);
1681
1682 while (curr_bcn_bytes >= sizeof(struct ieee_types_header)) {
1683 u8 element_id, element_len;
1684
1685 element_id = *current_ptr;
1686 element_len = *(current_ptr + 1);
1687 if (curr_bcn_bytes < element_len +
1688 sizeof(struct ieee_types_header)) {
1689 dev_err(adapter->dev,
1690 "%s: bytes left < IE length\n", __func__);
1691 return -EFAULT;
1692 }
1693 if (element_id == WLAN_EID_DS_PARAMS) {
1694 channel = *(current_ptr +
1695 sizeof(struct ieee_types_header));
1696 break;
1697 }
1698
1699 current_ptr += element_len + sizeof(struct ieee_types_header);
1700 curr_bcn_bytes -= element_len +
1701 sizeof(struct ieee_types_header);
1702 }
1703
1704 if (channel) {
1705 struct ieee80211_channel *chan;
1706 u8 band;
1707
1708 /* Skip entry if on csa closed channel */
1709 if (channel == priv->csa_chan) {
1710 dev_dbg(adapter->dev,
1711 "Dropping entry on csa closed channel\n");
1712 return 0;
1713 }
1714
1715 band = BAND_G;
1716 if (radio_type)
1717 band = mwifiex_radio_type_to_band(*radio_type &
1718 (BIT(0) | BIT(1)));
1719
1720 cfp = mwifiex_get_cfp(priv, band, channel, 0);
1721
1722 freq = cfp ? cfp->freq : 0;
1723
1724 chan = ieee80211_get_channel(priv->wdev->wiphy, freq);
1725
1726 if (chan && !(chan->flags & IEEE80211_CHAN_DISABLED)) {
1727 bss = cfg80211_inform_bss(priv->wdev->wiphy,
1728 chan, bssid, timestamp,
1729 cap_info_bitmap, beacon_period,
1730 ie_buf, ie_len, rssi, GFP_KERNEL);
1731 bss_priv = (struct mwifiex_bss_priv *)bss->priv;
1732 bss_priv->band = band;
1733 bss_priv->fw_tsf = fw_tsf;
1734 if (priv->media_connected &&
1735 !memcmp(bssid, priv->curr_bss_params.bss_descriptor
1736 .mac_address, ETH_ALEN))
1737 mwifiex_update_curr_bss_params(priv, bss);
1738 cfg80211_put_bss(priv->wdev->wiphy, bss);
1739 }
1740 } else {
1741 dev_dbg(adapter->dev, "missing BSS channel IE\n");
1742 }
1743
1744 return 0;
1745 }
1746
1747 static void mwifiex_check_next_scan_command(struct mwifiex_private *priv)
1748 {
1749 struct mwifiex_adapter *adapter = priv->adapter;
1750 struct cmd_ctrl_node *cmd_node;
1751 unsigned long flags;
1752
1753 spin_lock_irqsave(&adapter->scan_pending_q_lock, flags);
1754 if (list_empty(&adapter->scan_pending_q)) {
1755 spin_unlock_irqrestore(&adapter->scan_pending_q_lock, flags);
1756 spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags);
1757 adapter->scan_processing = false;
1758 spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags);
1759
1760 /* Need to indicate IOCTL complete */
1761 if (adapter->curr_cmd->wait_q_enabled) {
1762 adapter->cmd_wait_q.status = 0;
1763 if (!priv->scan_request) {
1764 dev_dbg(adapter->dev,
1765 "complete internal scan\n");
1766 mwifiex_complete_cmd(adapter,
1767 adapter->curr_cmd);
1768 }
1769 }
1770 if (priv->report_scan_result)
1771 priv->report_scan_result = false;
1772
1773 if (priv->scan_request) {
1774 dev_dbg(adapter->dev, "info: notifying scan done\n");
1775 cfg80211_scan_done(priv->scan_request, 0);
1776 priv->scan_request = NULL;
1777 } else {
1778 priv->scan_aborting = false;
1779 dev_dbg(adapter->dev, "info: scan already aborted\n");
1780 }
1781 } else {
1782 if ((priv->scan_aborting && !priv->scan_request) ||
1783 priv->scan_block) {
1784 spin_unlock_irqrestore(&adapter->scan_pending_q_lock,
1785 flags);
1786 adapter->scan_delay_cnt = MWIFIEX_MAX_SCAN_DELAY_CNT;
1787 mod_timer(&priv->scan_delay_timer, jiffies);
1788 dev_dbg(priv->adapter->dev,
1789 "info: %s: triggerring scan abort\n", __func__);
1790 } else if (!mwifiex_wmm_lists_empty(adapter) &&
1791 (priv->scan_request && (priv->scan_request->flags &
1792 NL80211_SCAN_FLAG_LOW_PRIORITY))) {
1793 spin_unlock_irqrestore(&adapter->scan_pending_q_lock,
1794 flags);
1795 adapter->scan_delay_cnt = 1;
1796 mod_timer(&priv->scan_delay_timer, jiffies +
1797 msecs_to_jiffies(MWIFIEX_SCAN_DELAY_MSEC));
1798 dev_dbg(priv->adapter->dev,
1799 "info: %s: deferring scan\n", __func__);
1800 } else {
1801 /* Get scan command from scan_pending_q and put to
1802 * cmd_pending_q
1803 */
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 }
1812 }
1813
1814 return;
1815 }
1816
1817 /*
1818 * This function handles the command response of scan.
1819 *
1820 * The response buffer for the scan command has the following
1821 * memory layout:
1822 *
1823 * .-------------------------------------------------------------.
1824 * | Header (4 * sizeof(t_u16)): Standard command response hdr |
1825 * .-------------------------------------------------------------.
1826 * | BufSize (t_u16) : sizeof the BSS Description data |
1827 * .-------------------------------------------------------------.
1828 * | NumOfSet (t_u8) : Number of BSS Descs returned |
1829 * .-------------------------------------------------------------.
1830 * | BSSDescription data (variable, size given in BufSize) |
1831 * .-------------------------------------------------------------.
1832 * | TLV data (variable, size calculated using Header->Size, |
1833 * | BufSize and sizeof the fixed fields above) |
1834 * .-------------------------------------------------------------.
1835 */
1836 int mwifiex_ret_802_11_scan(struct mwifiex_private *priv,
1837 struct host_cmd_ds_command *resp)
1838 {
1839 int ret = 0;
1840 struct mwifiex_adapter *adapter = priv->adapter;
1841 struct host_cmd_ds_802_11_scan_rsp *scan_rsp;
1842 struct mwifiex_ie_types_data *tlv_data;
1843 struct mwifiex_ie_types_tsf_timestamp *tsf_tlv;
1844 u8 *bss_info;
1845 u32 scan_resp_size;
1846 u32 bytes_left;
1847 u32 idx;
1848 u32 tlv_buf_size;
1849 struct mwifiex_ie_types_chan_band_list_param_set *chan_band_tlv;
1850 struct chan_band_param_set *chan_band;
1851 u8 is_bgscan_resp;
1852 __le64 fw_tsf = 0;
1853 u8 *radio_type;
1854
1855 is_bgscan_resp = (le16_to_cpu(resp->command)
1856 == HostCmd_CMD_802_11_BG_SCAN_QUERY);
1857 if (is_bgscan_resp)
1858 scan_rsp = &resp->params.bg_scan_query_resp.scan_resp;
1859 else
1860 scan_rsp = &resp->params.scan_resp;
1861
1862
1863 if (scan_rsp->number_of_sets > MWIFIEX_MAX_AP) {
1864 dev_err(adapter->dev, "SCAN_RESP: too many AP returned (%d)\n",
1865 scan_rsp->number_of_sets);
1866 ret = -1;
1867 goto check_next_scan;
1868 }
1869
1870 /* Check csa channel expiry before parsing scan response */
1871 mwifiex_11h_get_csa_closed_channel(priv);
1872
1873 bytes_left = le16_to_cpu(scan_rsp->bss_descript_size);
1874 dev_dbg(adapter->dev, "info: SCAN_RESP: bss_descript_size %d\n",
1875 bytes_left);
1876
1877 scan_resp_size = le16_to_cpu(resp->size);
1878
1879 dev_dbg(adapter->dev,
1880 "info: SCAN_RESP: returned %d APs before parsing\n",
1881 scan_rsp->number_of_sets);
1882
1883 bss_info = scan_rsp->bss_desc_and_tlv_buffer;
1884
1885 /*
1886 * The size of the TLV buffer is equal to the entire command response
1887 * size (scan_resp_size) minus the fixed fields (sizeof()'s), the
1888 * BSS Descriptions (bss_descript_size as bytesLef) and the command
1889 * response header (S_DS_GEN)
1890 */
1891 tlv_buf_size = scan_resp_size - (bytes_left
1892 + sizeof(scan_rsp->bss_descript_size)
1893 + sizeof(scan_rsp->number_of_sets)
1894 + S_DS_GEN);
1895
1896 tlv_data = (struct mwifiex_ie_types_data *) (scan_rsp->
1897 bss_desc_and_tlv_buffer +
1898 bytes_left);
1899
1900 /* Search the TLV buffer space in the scan response for any valid
1901 TLVs */
1902 mwifiex_ret_802_11_scan_get_tlv_ptrs(adapter, tlv_data, tlv_buf_size,
1903 TLV_TYPE_TSFTIMESTAMP,
1904 (struct mwifiex_ie_types_data **)
1905 &tsf_tlv);
1906
1907 /* Search the TLV buffer space in the scan response for any valid
1908 TLVs */
1909 mwifiex_ret_802_11_scan_get_tlv_ptrs(adapter, tlv_data, tlv_buf_size,
1910 TLV_TYPE_CHANNELBANDLIST,
1911 (struct mwifiex_ie_types_data **)
1912 &chan_band_tlv);
1913
1914 for (idx = 0; idx < scan_rsp->number_of_sets && bytes_left; idx++) {
1915 /*
1916 * If the TSF TLV was appended to the scan results, save this
1917 * entry's TSF value in the fw_tsf field. It is the firmware's
1918 * TSF value at the time the beacon or probe response was
1919 * received.
1920 */
1921 if (tsf_tlv)
1922 memcpy(&fw_tsf, &tsf_tlv->tsf_data[idx * TSF_DATA_SIZE],
1923 sizeof(fw_tsf));
1924
1925 if (chan_band_tlv) {
1926 chan_band = &chan_band_tlv->chan_band_param[idx];
1927 radio_type = &chan_band->radio_type;
1928 } else {
1929 radio_type = NULL;
1930 }
1931
1932 ret = mwifiex_parse_single_response_buf(priv, &bss_info,
1933 &bytes_left,
1934 le64_to_cpu(fw_tsf),
1935 radio_type, false, 0);
1936 if (ret)
1937 goto check_next_scan;
1938 }
1939
1940 check_next_scan:
1941 mwifiex_check_next_scan_command(priv);
1942 return ret;
1943 }
1944
1945 /*
1946 * This function prepares an extended scan command to be sent to the firmware
1947 *
1948 * This uses the scan command configuration sent to the command processing
1949 * module in command preparation stage to configure a extended scan command
1950 * structure to send to firmware.
1951 */
1952 int mwifiex_cmd_802_11_scan_ext(struct mwifiex_private *priv,
1953 struct host_cmd_ds_command *cmd,
1954 void *data_buf)
1955 {
1956 struct host_cmd_ds_802_11_scan_ext *ext_scan = &cmd->params.ext_scan;
1957 struct mwifiex_scan_cmd_config *scan_cfg = data_buf;
1958
1959 memcpy(ext_scan->tlv_buffer, scan_cfg->tlv_buf, scan_cfg->tlv_buf_len);
1960
1961 cmd->command = cpu_to_le16(HostCmd_CMD_802_11_SCAN_EXT);
1962
1963 /* Size is equal to the sizeof(fixed portions) + the TLV len + header */
1964 cmd->size = cpu_to_le16((u16)(sizeof(ext_scan->reserved)
1965 + scan_cfg->tlv_buf_len + S_DS_GEN));
1966
1967 return 0;
1968 }
1969
1970 /* This function handles the command response of extended scan */
1971 int mwifiex_ret_802_11_scan_ext(struct mwifiex_private *priv)
1972 {
1973 dev_dbg(priv->adapter->dev, "info: EXT scan returns successfully\n");
1974 return 0;
1975 }
1976
1977 /* This function This function handles the event extended scan report. It
1978 * parses extended scan results and informs to cfg80211 stack.
1979 */
1980 int mwifiex_handle_event_ext_scan_report(struct mwifiex_private *priv,
1981 void *buf)
1982 {
1983 int ret = 0;
1984 struct mwifiex_adapter *adapter = priv->adapter;
1985 u8 *bss_info;
1986 u32 bytes_left, bytes_left_for_tlv, idx;
1987 u16 type, len;
1988 struct mwifiex_ie_types_data *tlv;
1989 struct mwifiex_ie_types_bss_scan_rsp *scan_rsp_tlv;
1990 struct mwifiex_ie_types_bss_scan_info *scan_info_tlv;
1991 u8 *radio_type;
1992 u64 fw_tsf = 0;
1993 s32 rssi = 0;
1994 struct mwifiex_event_scan_result *event_scan = buf;
1995 u8 num_of_set = event_scan->num_of_set;
1996 u8 *scan_resp = buf + sizeof(struct mwifiex_event_scan_result);
1997 u16 scan_resp_size = le16_to_cpu(event_scan->buf_size);
1998
1999 if (num_of_set > MWIFIEX_MAX_AP) {
2000 dev_err(adapter->dev,
2001 "EXT_SCAN: Invalid number of AP returned (%d)!!\n",
2002 num_of_set);
2003 ret = -1;
2004 goto check_next_scan;
2005 }
2006
2007 bytes_left = scan_resp_size;
2008 dev_dbg(adapter->dev,
2009 "EXT_SCAN: size %d, returned %d APs...",
2010 scan_resp_size, num_of_set);
2011
2012 tlv = (struct mwifiex_ie_types_data *)scan_resp;
2013
2014 for (idx = 0; idx < num_of_set && bytes_left; idx++) {
2015 type = le16_to_cpu(tlv->header.type);
2016 len = le16_to_cpu(tlv->header.len);
2017 if (bytes_left < sizeof(struct mwifiex_ie_types_header) + len) {
2018 dev_err(adapter->dev, "EXT_SCAN: Error bytes left < TLV length\n");
2019 break;
2020 }
2021 scan_rsp_tlv = NULL;
2022 scan_info_tlv = NULL;
2023 bytes_left_for_tlv = bytes_left;
2024
2025 /* BSS response TLV with beacon or probe response buffer
2026 * at the initial position of each descriptor
2027 */
2028 if (type != TLV_TYPE_BSS_SCAN_RSP)
2029 break;
2030
2031 bss_info = (u8 *)tlv;
2032 scan_rsp_tlv = (struct mwifiex_ie_types_bss_scan_rsp *)tlv;
2033 tlv = (struct mwifiex_ie_types_data *)(tlv->data + len);
2034 bytes_left_for_tlv -=
2035 (len + sizeof(struct mwifiex_ie_types_header));
2036
2037 while (bytes_left_for_tlv >=
2038 sizeof(struct mwifiex_ie_types_header) &&
2039 le16_to_cpu(tlv->header.type) != TLV_TYPE_BSS_SCAN_RSP) {
2040 type = le16_to_cpu(tlv->header.type);
2041 len = le16_to_cpu(tlv->header.len);
2042 if (bytes_left_for_tlv <
2043 sizeof(struct mwifiex_ie_types_header) + len) {
2044 dev_err(adapter->dev,
2045 "EXT_SCAN: Error in processing TLV, bytes left < TLV length\n");
2046 scan_rsp_tlv = NULL;
2047 bytes_left_for_tlv = 0;
2048 continue;
2049 }
2050 switch (type) {
2051 case TLV_TYPE_BSS_SCAN_INFO:
2052 scan_info_tlv =
2053 (struct mwifiex_ie_types_bss_scan_info *)tlv;
2054 if (len !=
2055 sizeof(struct mwifiex_ie_types_bss_scan_info) -
2056 sizeof(struct mwifiex_ie_types_header)) {
2057 bytes_left_for_tlv = 0;
2058 continue;
2059 }
2060 break;
2061 default:
2062 break;
2063 }
2064 tlv = (struct mwifiex_ie_types_data *)(tlv->data + len);
2065 bytes_left -=
2066 (len + sizeof(struct mwifiex_ie_types_header));
2067 bytes_left_for_tlv -=
2068 (len + sizeof(struct mwifiex_ie_types_header));
2069 }
2070
2071 if (!scan_rsp_tlv)
2072 break;
2073
2074 /* Advance pointer to the beacon buffer length and
2075 * update the bytes count so that the function
2076 * wlan_interpret_bss_desc_with_ie() can handle the
2077 * scan buffer withut any change
2078 */
2079 bss_info += sizeof(u16);
2080 bytes_left -= sizeof(u16);
2081
2082 if (scan_info_tlv) {
2083 rssi = (s32)(s16)(le16_to_cpu(scan_info_tlv->rssi));
2084 rssi *= 100; /* Convert dBm to mBm */
2085 dev_dbg(adapter->dev,
2086 "info: InterpretIE: RSSI=%d\n", rssi);
2087 fw_tsf = le64_to_cpu(scan_info_tlv->tsf);
2088 radio_type = &scan_info_tlv->radio_type;
2089 } else {
2090 radio_type = NULL;
2091 }
2092 ret = mwifiex_parse_single_response_buf(priv, &bss_info,
2093 &bytes_left, fw_tsf,
2094 radio_type, true, rssi);
2095 if (ret)
2096 goto check_next_scan;
2097 }
2098
2099 check_next_scan:
2100 if (!event_scan->more_event)
2101 mwifiex_check_next_scan_command(priv);
2102
2103 return ret;
2104 }
2105
2106 /*
2107 * This function prepares command for background scan query.
2108 *
2109 * Preparation includes -
2110 * - Setting command ID and proper size
2111 * - Setting background scan flush parameter
2112 * - Ensuring correct endian-ness
2113 */
2114 int mwifiex_cmd_802_11_bg_scan_query(struct host_cmd_ds_command *cmd)
2115 {
2116 struct host_cmd_ds_802_11_bg_scan_query *bg_query =
2117 &cmd->params.bg_scan_query;
2118
2119 cmd->command = cpu_to_le16(HostCmd_CMD_802_11_BG_SCAN_QUERY);
2120 cmd->size = cpu_to_le16(sizeof(struct host_cmd_ds_802_11_bg_scan_query)
2121 + S_DS_GEN);
2122
2123 bg_query->flush = 1;
2124
2125 return 0;
2126 }
2127
2128 /*
2129 * This function inserts scan command node to the scan pending queue.
2130 */
2131 void
2132 mwifiex_queue_scan_cmd(struct mwifiex_private *priv,
2133 struct cmd_ctrl_node *cmd_node)
2134 {
2135 struct mwifiex_adapter *adapter = priv->adapter;
2136 unsigned long flags;
2137
2138 cmd_node->wait_q_enabled = true;
2139 cmd_node->condition = &adapter->scan_wait_q_woken;
2140 spin_lock_irqsave(&adapter->scan_pending_q_lock, flags);
2141 list_add_tail(&cmd_node->list, &adapter->scan_pending_q);
2142 spin_unlock_irqrestore(&adapter->scan_pending_q_lock, flags);
2143 }
2144
2145 /*
2146 * This function sends a scan command for all available channels to the
2147 * firmware, filtered on a specific SSID.
2148 */
2149 static int mwifiex_scan_specific_ssid(struct mwifiex_private *priv,
2150 struct cfg80211_ssid *req_ssid)
2151 {
2152 struct mwifiex_adapter *adapter = priv->adapter;
2153 int ret;
2154 struct mwifiex_user_scan_cfg *scan_cfg;
2155
2156 if (adapter->scan_processing) {
2157 dev_err(adapter->dev, "cmd: Scan already in process...\n");
2158 return -EBUSY;
2159 }
2160
2161 if (priv->scan_block) {
2162 dev_err(adapter->dev,
2163 "cmd: Scan is blocked during association...\n");
2164 return -EBUSY;
2165 }
2166
2167 scan_cfg = kzalloc(sizeof(struct mwifiex_user_scan_cfg), GFP_KERNEL);
2168 if (!scan_cfg)
2169 return -ENOMEM;
2170
2171 scan_cfg->ssid_list = req_ssid;
2172 scan_cfg->num_ssids = 1;
2173
2174 ret = mwifiex_scan_networks(priv, scan_cfg);
2175
2176 kfree(scan_cfg);
2177 return ret;
2178 }
2179
2180 /*
2181 * Sends IOCTL request to start a scan.
2182 *
2183 * This function allocates the IOCTL request buffer, fills it
2184 * with requisite parameters and calls the IOCTL handler.
2185 *
2186 * Scan command can be issued for both normal scan and specific SSID
2187 * scan, depending upon whether an SSID is provided or not.
2188 */
2189 int mwifiex_request_scan(struct mwifiex_private *priv,
2190 struct cfg80211_ssid *req_ssid)
2191 {
2192 int ret;
2193
2194 if (down_interruptible(&priv->async_sem)) {
2195 dev_err(priv->adapter->dev, "%s: acquire semaphore\n",
2196 __func__);
2197 return -1;
2198 }
2199
2200 priv->adapter->scan_wait_q_woken = false;
2201
2202 if (req_ssid && req_ssid->ssid_len != 0)
2203 /* Specific SSID scan */
2204 ret = mwifiex_scan_specific_ssid(priv, req_ssid);
2205 else
2206 /* Normal scan */
2207 ret = mwifiex_scan_networks(priv, NULL);
2208
2209 up(&priv->async_sem);
2210
2211 return ret;
2212 }
2213
2214 /*
2215 * This function appends the vendor specific IE TLV to a buffer.
2216 */
2217 int
2218 mwifiex_cmd_append_vsie_tlv(struct mwifiex_private *priv,
2219 u16 vsie_mask, u8 **buffer)
2220 {
2221 int id, ret_len = 0;
2222 struct mwifiex_ie_types_vendor_param_set *vs_param_set;
2223
2224 if (!buffer)
2225 return 0;
2226 if (!(*buffer))
2227 return 0;
2228
2229 /*
2230 * Traverse through the saved vendor specific IE array and append
2231 * the selected(scan/assoc/adhoc) IE as TLV to the command
2232 */
2233 for (id = 0; id < MWIFIEX_MAX_VSIE_NUM; id++) {
2234 if (priv->vs_ie[id].mask & vsie_mask) {
2235 vs_param_set =
2236 (struct mwifiex_ie_types_vendor_param_set *)
2237 *buffer;
2238 vs_param_set->header.type =
2239 cpu_to_le16(TLV_TYPE_PASSTHROUGH);
2240 vs_param_set->header.len =
2241 cpu_to_le16((((u16) priv->vs_ie[id].ie[1])
2242 & 0x00FF) + 2);
2243 memcpy(vs_param_set->ie, priv->vs_ie[id].ie,
2244 le16_to_cpu(vs_param_set->header.len));
2245 *buffer += le16_to_cpu(vs_param_set->header.len) +
2246 sizeof(struct mwifiex_ie_types_header);
2247 ret_len += le16_to_cpu(vs_param_set->header.len) +
2248 sizeof(struct mwifiex_ie_types_header);
2249 }
2250 }
2251 return ret_len;
2252 }
2253
2254 /*
2255 * This function saves a beacon buffer of the current BSS descriptor.
2256 *
2257 * The current beacon buffer is saved so that it can be restored in the
2258 * following cases that makes the beacon buffer not to contain the current
2259 * ssid's beacon buffer.
2260 * - The current ssid was not found somehow in the last scan.
2261 * - The current ssid was the last entry of the scan table and overloaded.
2262 */
2263 void
2264 mwifiex_save_curr_bcn(struct mwifiex_private *priv)
2265 {
2266 struct mwifiex_bssdescriptor *curr_bss =
2267 &priv->curr_bss_params.bss_descriptor;
2268
2269 if (!curr_bss->beacon_buf_size)
2270 return;
2271
2272 /* allocate beacon buffer at 1st time; or if it's size has changed */
2273 if (!priv->curr_bcn_buf ||
2274 priv->curr_bcn_size != curr_bss->beacon_buf_size) {
2275 priv->curr_bcn_size = curr_bss->beacon_buf_size;
2276
2277 kfree(priv->curr_bcn_buf);
2278 priv->curr_bcn_buf = kmalloc(curr_bss->beacon_buf_size,
2279 GFP_ATOMIC);
2280 if (!priv->curr_bcn_buf)
2281 return;
2282 }
2283
2284 memcpy(priv->curr_bcn_buf, curr_bss->beacon_buf,
2285 curr_bss->beacon_buf_size);
2286 dev_dbg(priv->adapter->dev, "info: current beacon saved %d\n",
2287 priv->curr_bcn_size);
2288
2289 curr_bss->beacon_buf = priv->curr_bcn_buf;
2290
2291 /* adjust the pointers in the current BSS descriptor */
2292 if (curr_bss->bcn_wpa_ie)
2293 curr_bss->bcn_wpa_ie =
2294 (struct ieee_types_vendor_specific *)
2295 (curr_bss->beacon_buf +
2296 curr_bss->wpa_offset);
2297
2298 if (curr_bss->bcn_rsn_ie)
2299 curr_bss->bcn_rsn_ie = (struct ieee_types_generic *)
2300 (curr_bss->beacon_buf +
2301 curr_bss->rsn_offset);
2302
2303 if (curr_bss->bcn_ht_cap)
2304 curr_bss->bcn_ht_cap = (struct ieee80211_ht_cap *)
2305 (curr_bss->beacon_buf +
2306 curr_bss->ht_cap_offset);
2307
2308 if (curr_bss->bcn_ht_oper)
2309 curr_bss->bcn_ht_oper = (struct ieee80211_ht_operation *)
2310 (curr_bss->beacon_buf +
2311 curr_bss->ht_info_offset);
2312
2313 if (curr_bss->bcn_vht_cap)
2314 curr_bss->bcn_ht_cap = (void *)(curr_bss->beacon_buf +
2315 curr_bss->vht_cap_offset);
2316
2317 if (curr_bss->bcn_vht_oper)
2318 curr_bss->bcn_ht_oper = (void *)(curr_bss->beacon_buf +
2319 curr_bss->vht_info_offset);
2320
2321 if (curr_bss->bcn_bss_co_2040)
2322 curr_bss->bcn_bss_co_2040 =
2323 (curr_bss->beacon_buf + curr_bss->bss_co_2040_offset);
2324
2325 if (curr_bss->bcn_ext_cap)
2326 curr_bss->bcn_ext_cap = curr_bss->beacon_buf +
2327 curr_bss->ext_cap_offset;
2328
2329 if (curr_bss->oper_mode)
2330 curr_bss->oper_mode = (void *)(curr_bss->beacon_buf +
2331 curr_bss->oper_mode_offset);
2332 }
2333
2334 /*
2335 * This function frees the current BSS descriptor beacon buffer.
2336 */
2337 void
2338 mwifiex_free_curr_bcn(struct mwifiex_private *priv)
2339 {
2340 kfree(priv->curr_bcn_buf);
2341 priv->curr_bcn_buf = NULL;
2342 }